概述
课本( P109 - P110 )
源程序代码如下:
int simple(int *xp, int y)
{
int t = *xp + y;
*xp = t;
return t;
}
汇编代码如下:
simple:
pushl %e bp //save frame pointer
movl %e sp, %e bp //create new frame pointer
movl 8(%e bp), %e dx //retrieve xp
movl 12(%e bp), %e ax //retrieve y
addl (%e dx), %e ax //add *xp to get t(这里完成了把t作为返回值)
movl %e ax, (%e dx) //store t at xp
popl %e bp //restore frame pointer
ret //return
疑点解答1: x32程序 中 ,函数用 %e ax 作为返回值。
疑点解答2: 这里将esp 赋给e bp 是为了方便计算偏移
pushl %e bp
movl %e sp,%e bp
此时堆栈情况:
int y ; e bp + 12
int *xp; e bp + 8
最后
以上就是高贵黑米为你收集整理的对于汇编代码pushl %ebp movl %esp,%ebp的全部内容,希望文章能够帮你解决对于汇编代码pushl %ebp movl %esp,%ebp所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复