shithub: mc

ref: b321f9668ab0b35228945ab9481e6d7a27fe635d
dir: /lib/std/syscall+freebsd-x64.s/

View raw version
.globl sys$syscall
sys$syscall:
	/*
	hack: We load 6 args regardless of
	how many we actually have. This may
	load junk values, but if the syscall
	doesn't use them, it's going to be
	harmless.
	 */
	movq %rdi,%rax
	movq %rsi,%rdi
	movq %rdx,%rsi
	movq %rcx,%rdx
	movq %r8,%r10
	movq %r9,%r8
	movq 8(%rsp),%r9

	syscall

	ret