来自 PDB 的 AST(例如通过 DIA)

发布于 2024-12-27 21:16:35 字数 120 浏览 1 评论 0原文

我目前正在使用 DIA SDK 从 PDB 文件中获取一些非常有用的信息...现在,基本问题是:我可以深入到什么程度?最佳方案是能够将所有内容都精确到抽象语法树......这甚至有可能吗?如果没有,使用调试数据分析可以走多远?

I'm currently using the DIA SDK to get some very useful information from a PDB file... Now, the basic question is: how deep can I go with that? The optimum would be to able to get everything right down to the abstract syntax tree... Is that even remotely possible? If not, how far can I go using the analysis of debug data?

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

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

发布评论

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

评论(1

时光暖心i 2025-01-03 21:16:35

DIA SDK 仅允许您通过 COM 接口访问 PDB 中可用的调试信息。为了让您有一个大概的了解,这与 Visual Studio 调试器可用的任何内容(符号、行号等)类似。这意味着,一般来说,如果调试器似乎了解某些信息,那么该信息应该可以通过 DIA SDK 获得。具体细节需要参考msdn中的在线文档。

具体来说,Visual Studio 内部的抽象语法树无法通过任何 api 获得 - 不仅仅是 DIA SDK。即使是局部变量类型符号也无法通过 DIA SDK 进行枚举。

获取我的 VC++ 代码使用的符号列表

DIA SDK gives you access only to the debug information available in the PDB through the COM interface. To give you a general idea, this is similar to whatever available to the visual studio debugger (symbols, line numbers, etc). That means, in general, if the debugger appears to know about something, then that information should be available through the DIA SDK. For the specific details, you need to refer to the online documentation in msdn.

To be specific, the abstract syntax tree intenal to Visual Studio is NOT available through any api - not just DIA SDK. Even local variable type symbols cannot be enumerated through the DIA SDK.

Getting a List of Symbols Used by My VC++ Code

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