⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 varsyscall.s

📁 klibc精简化的c程序库
💻 S
字号:
/* * arch/i386/varsyscall.S * * Common tail-handling code for varadic system calls (which always * use the cdecl convention.) * * The arguments are on the stack; the system call number in %eax. */#ifdef	_REGPARM#define ARG(n)	(4*n+20)(%esp)	.text	.align	4	.globl	__syscall_varadic	.type	__syscall_varadic,@function__syscall_varadic:	popl	%eax	pushl	%ebx	pushl	%esi	pushl	%edi	pushl	%ebp	movl	ARG(0),%ebx		# Syscall arguments	movl	ARG(1),%ecx	movl	ARG(2),%edx	movl	ARG(3),%esi	movl	ARG(4),%edi	movl	ARG(5),%ebp	jmp	__syscall_common_tail	.size	__syscall_varadic,.-__syscall_varadic#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -