获取栈的起始地址

发布于 2024-11-07 08:36:40 字数 376 浏览 0 评论 0原文

可能的重复:
在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风不识月 2024-11-14 08:36:40

我的猜测:不需要框架,因此在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文