Windbg调试托管代码
- Windbg调试.net托管代码需要借助于SOS.dll,.Net 4.0的32位sos.dll的路径在C:\Windows\Microsoft.NET\Framework\v4.0.30319,64为的路径在C:\Windows\Microsoft.NET\Framework64\v4.0.30319,加载哪个版本的sos.dll要与调试的应用程序的位数一致。关于SOS调试扩展的详细介绍请参考:https://msdn.microsoft.com/zh-cn/library/bb190764(v=vs.100).aspx
- Windbg的可以通过Open Executable直接在windbg中启动程序调试,也可以通过Attach to a process attach到一个已经启动的进程进行调试,本例使用Open Executable方式调试程序
- 示例代码
static void Main(string[] args) { System.IO.FileSystemInfo fileSystemPath = GetFileSystemPath(); if (!fileSystemPath.Exists) { throw new System.IO.FileNotFoundException(fileSystemPath.FullName); } Console.ReadLine(); } private static FileSystemInfo GetFileSystemPath() { FileInfo fileInfo = new FileInfo(@"x:\Dev\TempLibrary.mdb"); return fileInfo; }
- 在Windbg中选择Open Executable打开应用程序,
- 如何在某个函数中设置断点:
- Open Executable的调试方法首先要执行sxe ld:clrjit命令,该命令的作用是表示当程序加载完clrjit.dll后中断到调试器,即在调试器中中断运行
- 执行g命令,运行程序,当程序加载完clrjit.dll时就会中断
- 执行.loadby sos clr命令加载扩展信息
- 执行lm命令查看加载的所有模块,lmvm可以查看某个模块的详细信息,本例中执行lmvm Console1
- 执行!Name2EE <模块名> <类型名或方法名> 命令获取模块中指定类型或方法的MethodTable结构和EEClass结构,本例中获取Program类的信息
- 调用DumpMT –md <MethodTable地址>获取类中方法信息,本例中methodtable地址由name2ee命令获取
- 执行!bpmd <模块名> <方法名>设置断点,本例中执行!bpmd Console1 Console1.Program.GetFileSystemPath
- 执行命令g,运行到断点就会停止
- 如何查看变量信息:
- 如何分析内存泄露:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。