获取栈的起始地址
可能的重复:
在 C++ 函数内执行汇编
long getesp() {
__asm__("movl %esp,%eax");
}
void main() {
printf("%08X\n",getesp()+4);
}
为什么打印的esp是在之前堆栈建立了吗?(在pushl %ebp, movl %esp,%ebp之前) 提前致谢
Possible Duplicate:
executing assembly within a function in c++
long getesp() {
__asm__("movl %esp,%eax");
}
void main() {
printf("%08X\n",getesp()+4);
}
why is the esp printed is before the stack is set up?(before the pushl %ebp, movl %esp,%ebp)
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测:不需要框架,因此在 getesp 中没有分配任何框架。详细信息取决于您使用的编译器和编译器标志。
My guess: there is no need for a frame, so none is allocated in getesp. The particulars depend on the compiler and compiler flags you are using.