mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
Added a function to get the callsite of the current function invocation.
27 lines
354 B
ArmAsm
27 lines
354 B
ArmAsm
global get_rsp
|
|
get_rsp:
|
|
mov rax, rsp
|
|
ret
|
|
|
|
global get_rip
|
|
get_rip:
|
|
pop rax ; do the same thing as 'ret', except with 'jmp'
|
|
jmp rax ; with the return address still in rax
|
|
|
|
global get_caller
|
|
get_caller:
|
|
; No prelude - don't touch rsp or rbp
|
|
mov rax, [rbp+8]
|
|
ret
|
|
|
|
global get_gsbase
|
|
get_gsbase:
|
|
rdgsbase rax
|
|
ret
|
|
|
|
global _halt
|
|
_halt:
|
|
hlt
|
|
jmp _halt
|
|
|