46 lines
511 B
ArmAsm
46 lines
511 B
ArmAsm
|
.section .userspace, "aw"
|
||
|
|
||
|
.global signal_trampoline
|
||
|
signal_trampoline:
|
||
|
pushq %rax
|
||
|
pushq %rbx
|
||
|
pushq %rcx
|
||
|
pushq %rdx
|
||
|
pushq %rbp
|
||
|
pushq %rdi
|
||
|
pushq %rsi
|
||
|
pushq %r8
|
||
|
pushq %r9
|
||
|
pushq %r10
|
||
|
pushq %r11
|
||
|
pushq %r12
|
||
|
pushq %r13
|
||
|
pushq %r14
|
||
|
pushq %r15
|
||
|
|
||
|
xchgw %bx, %bx
|
||
|
|
||
|
movq 128(%rsp), %rdi
|
||
|
movq 120(%rsp), %rax
|
||
|
call *%rax
|
||
|
|
||
|
popq %r15
|
||
|
popq %r14
|
||
|
popq %r13
|
||
|
popq %r12
|
||
|
popq %r11
|
||
|
popq %r10
|
||
|
popq %r9
|
||
|
popq %r8
|
||
|
popq %rsi
|
||
|
popq %rdi
|
||
|
popq %rbp
|
||
|
popq %rdx
|
||
|
popq %rcx
|
||
|
popq %rbx
|
||
|
popq %rax
|
||
|
|
||
|
addq $16, %rsp
|
||
|
|
||
|
ret
|