WinDbg SOS 异常堆栈中函数地址旁边的+0x10 是什么意思?

发布于 2024-08-13 15:51:28 字数 162 浏览 7 评论 0原文

示例:

内部异常: 堆栈跟踪(生成): SP IP功能 003D8E9C 03B21BD7 Something!Blah.Blah.FunctionName(System.String)+0xa8

+0xa8 部分表示什么?

Example:

InnerException:
StackTrace (generated):
SP IP Function
003D8E9C 03B21BD7 Something!Blah.Blah.FunctionName(System.String)+0xa8

What does the +0xa8 part indicate?

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

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

发布评论

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

评论(1

雨的味道风的声音 2024-08-20 15:51:28

它是代码中的偏移量,因此它不是方法中的第一条指令,而是方法内偏移量 0xa8 或 0x10 处的指令(从入口点开始计算)。

It's the offset into the code, so it's not the very first instruction in the method, rather the instruction at offset 0xa8 or 0x10 inside the method, counted from the entry point.

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