AT&T汇编指令enter、leave、call、ret

AT&T汇编enter指令和leave指令

enter指令

在AT&T汇编中,enter等效于以下汇编指令:

pushl %ebp        # 将%ebp压栈
movl %esp %ebp    # 将%esp保存到%ebp, 这两步是函数的标准开头

leave指令

在AT&T汇编中,leave等效于以下汇编指令:

movl %ebp, %esp
popl %ebp

call指令

在AT&T汇编中,call foo(foo是一个标号)等效于以下汇编指令:

pushl %eip
movl f, %eip

ret指令

在AT&T汇编中,ret等效于以下汇编指令:

popl %eip

你可能感兴趣的:(汇编,call,enter,leave,ret)