Windbg 命令“d esp”是什么意思?到底是怎么做的?
我知道windbg命令“d esp”显示esp指向的内容。但是,它的范围是什么? 结局如何呢?
I know that windbg command "d esp" display the content that esp points. But, what range of it?
How does it get the end?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
d
命令显示内存。如果您不输入范围,则默认值为 128 字节。大多数d
命令使用默认值128 字节,但例如df
使用64 字节。所以
d esp
本质上意味着显示从esp
中保存的地址开始的128字节内存。The
d
command displays memory. If you don't enter a range the default is 128 bytes. Most of thed
commands use a default of 128 bytes, but e.g. thedf
uses 64 bytes.So
d esp
essentially means display 128 bytes of memory starting from the address held inesp
.微软文档
所以
d esp
的作用取决于与您之前运行的内容不同,如果您首先运行 dd esp 或 dq esp ,则输出会有所不同microsoft documentation
so what
d esp
does depends on what you ran before, the outputs will be different if you first randd esp
ordq esp