调用栈地址
有谁知道我是否/如何从特定地址读取调用堆栈? 假设我有一个距调用堆栈基地址的偏移地址,如何获取基地址?
谢谢 :)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这很大程度上取决于运行可执行文件的平台 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.
在 Windows 中,您有一个 API 来遍历完整的调用堆栈:
请参阅以下示例codeproject.com
In windows, you have an API to walk the complete callstack:
See this example in codeproject.com
在 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