mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
[kernel] Allow for more than three syscall args
The rcx register is used by the function call ABI for the 4th argument, but is also clobbered by SYSCALL to hold the IP. The r10 register is caller-saved but not part of the ABI, so stash rcx there when crossing the syscall boundary.
This commit is contained in:
@@ -5,9 +5,10 @@
|
||||
mov rbp, rsp
|
||||
|
||||
; args should already be in rdi, etc, but rcx will
|
||||
; get stomped, so shift args out one spot from rcx
|
||||
mov r9, r8
|
||||
mov r8, rcx
|
||||
; get stomped, so stash it in r10, which isn't a
|
||||
; callee-saved register, but also isn't used in the
|
||||
; function call ABI.
|
||||
mov r10, rcx
|
||||
|
||||
mov rax, %2
|
||||
syscall
|
||||
|
||||
Reference in New Issue
Block a user