调用栈地址

发布于 2024-09-25 01:21:43 字数 72 浏览 2 评论 0原文

有谁知道我是否/如何从特定地址读取调用堆栈? 假设我有一个距调用堆栈基地址的偏移地址,如何获取基地址?

谢谢 :)

Does anybody know if/how I can read from the callstack from a specific address?
suppose I have a offset address from the base address of the callstack, how can I get the base address?

thanks :)

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

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

发布评论

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

评论(3

不即不离 2024-10-02 01:21:43

这很大程度上取决于运行可执行文件的平台 ABI。我建议您使用适合您选择的平台的公认反汇编工具之一,这些工具通常可以帮助获取此类信息。例如,适用于 Windows 和 Linux 的 IDA Pro

This mightily depends on the platform ABI on which the executable is running. I'd recommend using one of the accepted disassembly tools for your platform of choice, these tools can usually help obtain such information. For example, IDA Pro for Windows and Linux.

风蛊 2024-10-02 01:21:43

在 Windows 中,您有一个 API 来遍历完整的调用堆栈:

请参阅以下示例codeproject.com

In windows, you have an API to walk the complete callstack:

See this example in codeproject.com

油饼 2024-10-02 01:21:43

在 Windows x86 架构上,堆栈的基地址位于寄存器 ESP 中。您可以在VS调试器的“寄存器”窗口中查看ESP

Base address of the stack is in the register ESP on Windows x86 architecture. You can view ESP in the 'Registers' Windows of VS debugger

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