1 implementation of GetMethodTable
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
1310public TargetPointer GetMethodTable(MethodDescHandle methodDescHandle) => _methodDescs[methodDescHandle.Address].MethodTable;
19 references to GetMethodTable
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CodeVersions_1.cs (2)
156TargetPointer mtAddr = rts.GetMethodTable(md); 344TargetPointer mtAddr = rts.GetMethodTable(md);
Contracts\ExecutionManager\ExecutionManagerCore.cs (1)
518TargetPointer mtPtr = rts.GetMethodTable(mdHandle);
Contracts\StackWalk\GC\GcScanner.cs (1)
335TargetPointer methodTablePtr = rts.GetMethodTable(mdh);
Microsoft.Diagnostics.DataContractReader.Legacy (15)
ClrDataFrame.cs (2)
414TargetPointer mtAddr = rts.GetMethodTable(mdh); 762TargetPointer mtAddr = rts.GetMethodTable(mdh);
ClrDataMethodDefinition.cs (1)
47TargetPointer mtAddr = rts.GetMethodTable(md);
ClrDataMethodInstance.cs (1)
65TargetPointer mtAddr = rts.GetMethodTable(_methodDesc);
SOSDacImpl.cs (6)
2335TargetPointer methodTableAddr = rtsContract.GetMethodTable(methodDescHandle); 2646TargetPointer modulePtr = rtsContract.GetModule(rtsContract.GetTypeHandle(rtsContract.GetMethodTable(methodDescHandle))); 5318TargetPointer modulePtr = runtimeTypeSystemContract.GetModule(runtimeTypeSystemContract.GetTypeHandle(runtimeTypeSystemContract.GetMethodTable(methodDescHandle))); 5588TargetPointer mt = rts.GetMethodTable(mdh); 6905TargetPointer mtAddr = _rts.GetMethodTable(mdh); 6929TargetPointer mtAddr = _rts.GetMethodTable(mdh);
SOSDacImpl.IXCLRDataProcess.cs (3)
348TargetPointer mtAddr = _rts.GetMethodTable(mainMD); 363TypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 428TargetPointer mtAddr = rts.GetMethodTable(md);
TypeNameBuilder.cs (2)
87th = runtimeTypeSystem.GetTypeHandle(runtimeTypeSystem.GetMethodTable(method)); 167TypeHandle approxOwner = runtimeTypeSystem.GetTypeHandle(runtimeTypeSystem.GetMethodTable(method));