在 Windows 98 上调试:从 EIP 获取代码行

发布于 2024-10-08 11:18:13 字数 226 浏览 1 评论 0原文

我在 Windows 98(DOS 模式)下编码,我的程序严重崩溃。我可以很好地重现崩溃,但是我的正常调试技巧(堆栈跟踪、printf 来隔离崩溃的整个过程)失败了,因为图形模式(VBE)、DOS 模式和中断处理的组合显然不是 GDB 的样子为.

我尝试注释部分代码来隔离问题,但无法准确跟踪崩溃的代码位置。

所以我能得到的只是一堆寄存器。有没有办法从寄存器(如EIP)中检索一行代码?我正在用 C 编码。

I am coding in Windows 98(DOS mode) and my program is crashing badly. I can reproduce the crash just fine, but my normal debugging tricks(stack trace, printf the whole thing to isolate the crash) are failing, because the combination of graphics mode(VBE), DOS mode and interrupt handling is apparently not what GDB was made for.

I've tried commenting parts of my code to isolate the problem but I can not trace the code location of the crash exactly.

So all I can get is a bunch of registers. Is there any way to retrieve a line of code from registers(like EIP)? I am coding in C.

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

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

发布评论

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

评论(1

木森分化 2024-10-15 11:18:13

经过一番谷歌搜索后,我发现了一些 GDB 文档 与此:

信息符号地址

使用此命令似乎是我能找到的从地址获取函数名称的最接近的命令。它不会给出确切的代码行,但总比没有好。

After some googling, I found some GDB documentation with this:

info symbol addr

Using this command seems to be the closest thing I could find to get a function name from an address. It won't give the exact line of code, but it's better than nothing.

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