unify stuffs

This commit is contained in:
Mirek Kratochvil 2023-08-15 11:19:56 +02:00
parent 27a869869a
commit 2e1dfe4b29
3 changed files with 10 additions and 10 deletions

View file

@ -7,7 +7,7 @@ _data_s_file:
CON_evacuate1: CON_evacuate1:
retq # TODO retq # TODO
CON_scavenge1: CON_scavenge1:
add $0x10, %rsi add $020, %rsi
retq retq
# Format of the info tables: # Format of the info tables:
@ -31,7 +31,7 @@ LIST_evacuate:
# [] | a : b # [] | a : b
retq #TODO retq #TODO
LIST_scavenge: LIST_scavenge:
mov 0x8(%rbp), %rax mov 010(%rbp), %rax
shl $1, %rax shl $1, %rax
add $2, %rax add $2, %rax
shl $3, %rax shl $3, %rax
@ -49,7 +49,7 @@ LIST_code:
FUN_evacuate: FUN_evacuate:
retq #TODO retq #TODO
FUN_scavenge: FUN_scavenge:
mov 0x10(%rbp), %rax mov 020(%rbp), %rax
add $3, %rax add $3, %rax
shl $3, %rax shl $3, %rax
add %rax, %rsi add %rax, %rsi
@ -98,14 +98,14 @@ FUN4_code:
IND_evacuate: IND_evacuate:
retq #TODO retq #TODO
IND_scavenge: IND_scavenge:
add $0x10,%rsi add $020,%rsi
retq retq
IND_info: IND_info:
cell IND_evacuate cell IND_evacuate
cell IND_scavenge cell IND_scavenge
cell 0 cell 0
IND_code: IND_code:
enter 0x8(%rbp) enter 010(%rbp)
# THU objects (gc implementation only, actual THUs are defined by functions) # THU objects (gc implementation only, actual THUs are defined by functions)
# | ptr | args | arg[0] | arg[1] | ... | arg[args] | # | ptr | args | arg[0] | arg[1] | ... | arg[args] |
@ -113,7 +113,7 @@ IND_code:
THU_evacuate: THU_evacuate:
retq #TODO retq #TODO
THU_scavenge: THU_scavenge:
mov 0x8(%rbp), %rax mov 010(%rbp), %rax
add $2,%rax add $2,%rax
shl $3,%rax shl $3,%rax
add %rax,%rsi add %rax,%rsi

View file

@ -15,14 +15,14 @@ _io_s_file:
mov %rsp, %r15 mov %rsp, %r15
sub $1, %r15 sub $1, %r15
movb $0x0a, (%r15) movb $0x0a, (%r15)
print_fini_next: print_fini_loop:
mov %al, %bl mov %al, %bl
and $1, %bl and $1, %bl
add $0x30, %bl add $0x30, %bl
sub $1, %r15 sub $1, %r15
movb %bl, (%r15) movb %bl, (%r15)
shr $1, %rax shr $1, %rax
jnz print_fini_next jnz print_fini_loop
mov $0, %rdi #stdin mov $0, %rdi #stdin
mov %rsp, %rdx mov %rsp, %rdx

View file

@ -20,10 +20,10 @@ _memory_state:
_uskel_alloc_basic_mem: _uskel_alloc_basic_mem:
mov $0x100000, %r15 # desired size mov $0x100000, %r15 # desired size
mov $0x9, %rax # mmap mov $9, %rax # mmap
mov $0, %rdi # addr = NULL mov $0, %rdi # addr = NULL
mov %r15, %rsi # len = %rcx mov %r15, %rsi # len = %rcx
mov $0x3, %rdx # prot = PROT_READ 0x1 | PROT_WRITE 0x2 mov $0b11, %rdx # prot = PROT_READ 0b1 | PROT_WRITE 0b10
mov $0x22, %r10 # flags = MAP_PRIVATE 0x2 | MAP_ANONYMOUS 0x20 mov $0x22, %r10 # flags = MAP_PRIVATE 0x2 | MAP_ANONYMOUS 0x20
mov $-1, %r8 # fd = -1 mov $-1, %r8 # fd = -1
mov $0, %r9 # off = 0 mov $0, %r9 # off = 0