2023-04-07 02:27:15 +03:00
|
|
|
.section .text
|
|
|
|
|
|
|
|
.global _start
|
|
|
|
_start:
|
|
|
|
# Set up end of the stack frame linked list.
|
|
|
|
movq $0, %rbp
|
|
|
|
pushq %rbp # rip=0
|
|
|
|
pushq %rbp # rbp=0
|
|
|
|
movq %rsp, %rbp
|
|
|
|
|
|
|
|
# We need those in a moment when we call main.
|
|
|
|
pushq %rsi
|
|
|
|
pushq %rdi
|
|
|
|
|
|
|
|
# Prepare signals, memory allocation, stdio and such.
|
2023-04-12 17:53:02 +03:00
|
|
|
#call initialize_standard_library
|
2023-04-07 02:27:15 +03:00
|
|
|
|
|
|
|
# Run the global constructors.
|
|
|
|
call _init
|
|
|
|
|
|
|
|
# Restore argc and argv.
|
|
|
|
popq %rdi
|
|
|
|
popq %rsi
|
|
|
|
|
|
|
|
# Run main
|
|
|
|
call main
|
|
|
|
|
|
|
|
# Terminate the process with the exit code.
|
|
|
|
movl %eax, %edi
|
|
|
|
call exit
|
|
|
|
.size _start, . - _start
|