我正在使用 C# 中的DIA SDK。
现在我有类似的东西:
static void Main(string[] args)
{
var v = new DiaSource();
v.loadDataForExe("Temp.exe", null, null); // native, with symbols
Dia2Lib.IDiaSession session;
v.openSession(out session);
var items = new Stack<KeyValuePair<IDiaSymbol, int>>();
items.Push(new KeyValuePair<IDiaSymbol, int>(session.globalScope, 0));
while (items.Count > 0)
{
var pair = items.Pop();
var symbol = pair.Key;
if (symbol.function != 0)
{
// What do I do?
}
// Push child symbols onto stack
IDiaEnumSymbols enumSymbols;
symbol.findChildren(SymTagEnum.SymTagNull, null, 0, out enumSymbols);
if (enumSymbols != null)
{
foreach (IDiaSymbol child in enumSymbols)
{
if (symbol.symIndexId == child.symIndexId)
{
// Why do some nodes contain themselves?
// Break out if that's the case...
break;
}
items.Push(
new KeyValuePair<IDiaSymbol, int>(child, pair.Value + 1));
}
}
}
}
我将如何使用 DIA SDK 浏览代码,特别是switch
在我的可执行文件中找到任何跳转表及其目标地址(即语句生成的那些)?
我已经验证了它们的存在,我只是不知道如何访问它们。
我标记了 C#,因为我将 C# 与 COM 一起使用,但我也标记了 C++,因为 SDK 最初是在 C++ 中(使用 COM)。随意删除任何可能不合适的内容;谢谢。