55 references to GetTypeInfo
Microsoft.Diagnostics.DataContractReader (2)
ContractDescriptorTarget.cs (2)
646TypeInfo codePointerTypeInfo = this.GetTypeInfo(DataType.CodePointer); 660TypeInfo codePointerTypeInfo = this.GetTypeInfo(DataType.CodePointer);
Microsoft.Diagnostics.DataContractReader.Contracts (39)
Contracts\ExecutionManager\ExecutionManagerCore.EEJitManager.cs (1)
169uint runtimeFunctionSize = Target.GetTypeInfo(DataType.RuntimeFunction).Size!.Value;
Contracts\Loader_1.cs (3)
744Target.TypeInfo type = target.GetTypeInfo(DataType.DynamicILBlobTable); 785Target.TypeInfo laType = _target.GetTypeInfo(DataType.LoaderAllocator); 807Target.TypeInfo vcsType = _target.GetTypeInfo(DataType.VirtualCallStubManager);
Contracts\StackWalk\FrameHandling\BaseFrameHandler.cs (1)
96foreach (string name in _target.GetTypeInfo(DataType.CalleeSavedRegisters).Fields.Keys)
Data\Bucket.cs (2)
15Target.TypeInfo type = target.GetTypeInfo(DataType.Bucket); 30Target.TypeInfo type = target.GetTypeInfo(DataType.Bucket);
Data\ComInterfaceEntry.cs (1)
16Target.TypeInfo type = target.GetTypeInfo(DataType.ComInterfaceEntry);
Data\DynamicStaticsInfo.cs (2)
15Target.TypeInfo type = target.GetTypeInfo(DataType.DynamicStaticsInfo); 23Target.TypeInfo type = target.GetTypeInfo(DataType.DynamicStaticsInfo);
Data\EETypeHashTable.cs (1)
20Target.TypeInfo type = target.GetTypeInfo(DataType.EETypeHashTable);
Data\Frames\ArgumentRegisters.cs (1)
15Target.TypeInfo type = target.GetTypeInfo(DataType.ArgumentRegisters);
Data\Frames\CalleeSavedRegisters.cs (1)
15Target.TypeInfo type = target.GetTypeInfo(DataType.CalleeSavedRegisters);
Data\Frames\HijackArgs.cs (1)
15Target.TypeInfo type = target.GetTypeInfo(DataType.HijackArgs);
Data\HandleTableMap.cs (1)
17Target.TypeInfo type = target.GetTypeInfo(DataType.HandleTableMap);
Data\InstMethodHashTable.cs (1)
20Target.TypeInfo type = target.GetTypeInfo(DataType.InstMethodHashTable);
Data\InterpreterRealCodeHeader.cs (1)
17Target.TypeInfo type = target.GetTypeInfo(DataType.InterpreterRealCodeHeader);
Data\PrecodeMachineDescriptor.cs (2)
74Target.TypeInfo type = target.GetTypeInfo(DataType.PrecodeMachineDescriptor); 85Target.TypeInfo type = target.GetTypeInfo(DataType.PrecodeMachineDescriptor);
Data\RangeSectionFragment.cs (1)
23Target.TypeInfo type = target.GetTypeInfo(DataType.RangeSectionFragment);
Data\RCW.cs (1)
27Target.TypeInfo type = target.GetTypeInfo(DataType.RCW);
Data\ReadyToRunInfo.cs (4)
33Target.TypeInfo type = target.GetTypeInfo(DataType.ReadyToRunInfo); 43Target.TypeInfo type = target.GetTypeInfo(DataType.ReadyToRunInfo); 54Target.TypeInfo type = target.GetTypeInfo(DataType.ReadyToRunInfo); 64Target.TypeInfo type = target.GetTypeInfo(DataType.ReadyToRunInfo);
Data\SyncBlock.cs (3)
19Target.TypeInfo type = target.GetTypeInfo(DataType.SyncBlock); 29Target.TypeInfo type = target.GetTypeInfo(DataType.SyncBlock); 37Target.TypeInfo type = target.GetTypeInfo(DataType.SyncBlock);
Data\SyncTableEntry.cs (2)
15Target.TypeInfo type = target.GetTypeInfo(DataType.SyncTableEntry); 25Target.TypeInfo type = target.GetTypeInfo(DataType.SyncTableEntry);
Data\TableSegment.cs (3)
20Target.TypeInfo type = target.GetTypeInfo(DataType.TableSegment); 31Target.TypeInfo type = target.GetTypeInfo(DataType.TableSegment); 42Target.TypeInfo type = target.GetTypeInfo(DataType.TableSegment);
Data\Thread.cs (2)
40Target.TypeInfo type = target.GetTypeInfo(DataType.Thread); 49Target.TypeInfo type = target.GetTypeInfo(DataType.Thread);
Data\UnwindInfo.cs (2)
15Target.TypeInfo type = target.GetTypeInfo(DataType.UnwindInfo); 24Target.TypeInfo type = target.GetTypeInfo(DataType.UnwindInfo);
RuntimeTypeSystemHelpers\TypeValidation.cs (2)
59_type = target.GetTypeInfo(DataType.MethodTable); 114_type = target.GetTypeInfo(DataType.EEClass);
Microsoft.Diagnostics.DataContractReader.Legacy (14)
ClrDataExceptionState.cs (1)
324Target.TypeInfo exceptionInfoType = _target.GetTypeInfo(DataType.ExceptionInfo);
Dbi\DacDbiImpl.cs (4)
58Target.TypeInfo type = _target.GetTypeInfo(DataType.ProfControlBlock); 4468*pObjOffsetToVars = (uint)_target.GetTypeInfo(DataType.Object).Size!.Value; 5377uint firstFieldOffset = isReferenceType ? _target.GetTypeInfo(DataType.Object).Size!.Value : 0; 5575Target.TypeInfo objectHeaderTypeInfo = _target.GetTypeInfo(DataType.ObjectHeader);
Dbi\Helpers\HeapWalk.cs (3)
32_numComponentsOffsetArray = (uint)target.GetTypeInfo(DataType.Array).Fields[Constants.FieldNames.Array.NumComponents].Offset; 33_numComponentsOffsetString = (uint)target.GetTypeInfo(DataType.String).Fields["m_StringLength"].Offset; 34_methodTableOffset = (uint)target.GetTypeInfo(DataType.Object).Fields["m_pMethTab"].Offset;
SOSDacImpl.cs (3)
3337Target.TypeInfo arrayTypeInfo = _target.GetTypeInfo(DataType.Array); 6507Target.TypeInfo laType = _target.GetTypeInfo(DataType.LoaderAllocator); 6508Target.TypeInfo vcsType = _target.GetTypeInfo(DataType.VirtualCallStubManager);
SOSDacImpl.IXCLRDataProcess.cs (1)
50uint runtimeFunctionSize = _target.GetTypeInfo(DataType.RuntimeFunction).Size!.Value;
TypeNameBuilder.cs (2)
513uint continuationDataOffset = tnb.Target.GetTypeInfo(DataType.ContinuationObject).Size!.Value; 514uint objHeaderSize = tnb.Target.GetTypeInfo(DataType.ObjectHeader).Size!.Value;