将错误的整数压入堆栈

发布于 2024-11-25 09:58:03 字数 204 浏览 0 评论 0原文

我试图理解为什么指令:

 pushl  0x4013ea

不推送预期的值,而是我在堆栈上有这个:

(gdb) x/wx $esp
0x22ff18:       0xc3899090

我在 Windows 上使用 gdb 如果这可以帮助

谢谢

Am trying to understand why is the instruction:

 pushl  0x4013ea

not pushing the value expected but rather I have this on the stack:

(gdb) x/wx $esp
0x22ff18:       0xc3899090

I am on windows using gdb if that could help

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

焚却相思 2024-12-02 09:58:03

我敢打赌 0x4013ea 被视为内存地址,因此,该地址处的值被推入堆栈而不是文字值本身。

尝试 pushl $4013ea (可能需要包含 0x,取决于您的汇编器语法)

I would bet that 0x4013ea is being treated as a memory address, therefore, the value at that address is being pushed onto stack rather than the literal value itself.

try pushl $4013ea (might need to include 0x, depends on your assembler syntax)

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