Windbg中gdb的list,disas,x对应的命令是什么?

发布于 2024-11-03 06:25:10 字数 35 浏览 2 评论 0原文

我对windbg还很陌生,windbg中有这样的命令吗?

I'm pretty new to windbg ,is there such commands in windbg?

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

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

发布评论

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

评论(1

囚你心 2024-11-10 06:25:10

这些是模式或不太等效的命令。这些命令的参数不同(例如范围规范),但通常很容易通过在 WinDbg 中反复试验来学习。

  • list - 从源代码文件中打印行。在 WinDbg 中,命令是 ls . (即“ls”后跟点)。在使用此命令之前,您可能必须使用 .srcpath 命令设置对源代码位置的引用,除非您在进行构建的同一台计算机上进行调试。
  • disas - 打印组装说明。在WinDbg中命令是u [地址]。如果没有地址,则使用当前的 EIP/RIP。
  • x - 检查记忆。在 WinDbg 中,相应的命令是:
 da - dump ascii
 db - dump bytes
 dd - dump DWords
 dp - dump pointer-sized values
 dq - dump QWords
 du - dump Unicode (16 bit characters)
 dw - dump Words 

每个命令都采用一个可选的地址和范围作为参数。

These are mode or less equivalent commands. The arguments for these commands are different, (e.g. range specification), but it is usually easy to learn by trial and error right inside the WinDbg.

  • list - print lines from source code file. In WinDbg command is ls . (i.e. 'ls' followed by dot). Before using this command you might have to setup reference to source code location using .srcpath command, unless you are debugging on the same machine that did the build.
  • disas - print assembly instructions. In WinDbg command is u [address]. Without address the current EIP/RIP is used.
  • x - examine memory. In WinDbg corresponding commands are:
 da - dump ascii
 db - dump bytes
 dd - dump DWords
 dp - dump pointer-sized values
 dq - dump QWords
 du - dump Unicode (16 bit characters)
 dw - dump Words 

Each command takes an optional address and range as arguments.

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