如何使用WinDBG / SOS和ClrMD检查WeakReference值?

时间:2015-10-22 21:18:49

标签: windbg weak-references sos clrmd

我正在调查生产中的内存泄漏问题并检索内存转储。我正在尝试转储累积对象的值,我遇到了WeakReference。这是我在WinDBG中得到的:

0:000> !do 000000011a306510 
Name:        System.WeakReference
MethodTable: 000007feeb3f9230
EEClass:     000007feeadda218
Size:        24(0x18) bytes
File:        C:\Windows\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll
Fields:
              MT    Field   Offset                 Type VT     Attr            Value Name
000007feeb3f4a00  400068d        8        System.IntPtr  1 instance         343620e0 m_handle
0:000> !do 343620e0 
<Note: this object has an invalid CLASS field>
Invalid object

我们可以发现我们不能使用m_handle值作为对象地址。我检查了WeakReference的代码,它是完全extern代码。

我的问题是,我们如何使用WinDBG / SOS检查它的价值?另外,我正在为ClrMD的问题编写ad-hoc分析器,那么我应该如何检查WeakReference对象的对象引用呢?

2 个答案:

答案 0 :(得分:5)

m_handleIntPtr,是值类型,因此请使用IntPtr获取!name2ee *!System.IntPtr的方法表,然后执行

!dumpvc <method table of IntPtr> <value of m_handle>

这将为您提供IntPtr指向的值。由于它指向一个对象,只需转储

!do <value of IntPtr>

答案 1 :(得分:2)

感谢Thomas的回答。

以下是在ClrMD中通过WeakReference对象获取对象地址引用的代码:

private static readonly ClrType WeakRefType = Heap.GetTypeByName("System.WeakReference");
private static readonly ClrInstanceField WeakRefHandleField = WeakRefType.GetFieldByName("m_handle");
private static readonly ClrType IntPtrType = Heap.GetTypeByName("System.IntPtr");
private static readonly ClrInstanceField IntPtrValueField = IntPtrType.GetFieldByName("m_value");

private static ulong GetWeakRefValue(ulong weakRefAddr)
{
    var handleAddr = (long)WeakRefHandleField.GetValue(weakRefAddr);
    var value = (ulong)IntPtrValueField.GetValue((ulong)handleAddr, true);

    return value;
}

希望它有所帮助。