FPO 数据和系统 dll
我一直在研究调用堆栈,我注意到有时我会遇到 FPO 框架。
dbgHelp 以某种方式可以找出每个帧的结束位置及其符号,但我没有 DLL 的 PDBS,例如 kernel32 等。Windows
中的系统 DLL 是否包含 FPO 数据? 在客户计算机上使用我的程序时我可以信赖它吗? 它们是否包含任何其他调试信息?
I have been playing around with the callstack and I noticed that sometimes I run into an FPO frame.
dbgHelp somehow can figure out where each frame ends and its symbols but I don't have the PDBS of DLLS such as kernel32 etc.
Do the system DLLs in windows contain FPO data?
can I rely on it when using my program on a client's computer?
Do they contain any other debug information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将符号路径设置为 ://msdl.microsoft.com/download/symbols,则系统 DLL 的公共符号可用。 IIRC 许多 Windows 组件都是在关闭 FPO 的情况下编译的。但你究竟想实现什么目标?您在寻找什么“调试”信息?
Public symbols for system DLLs are available if you set your symbols path to ://msdl.microsoft.com/download/symbols. IIRC many Windows components are compiled with FPO turned off. But what exactly are you trying to accomplish? What "debug" info are you looking for?