1 implementation of ITypeHandle
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem\TypeHandleImplementations.cs (1)
10internal sealed class TargetTypeHandle : ITypeHandle
498 references to ITypeHandle
Microsoft.Diagnostics.DataContractReader.Abstractions (70)
Contracts\IManagedTypeSource.cs (2)
20bool TryGetTypeHandle(string fullyQualifiedName, [NotNullWhen(true)] out ITypeHandle? typeHandle) => throw new NotImplementedException(); 21ITypeHandle GetTypeHandle(string fullyQualifiedName) => throw new NotImplementedException();
Contracts\IRuntimeMutableTypeSystem.cs (1)
12IEnumerable<TargetPointer> EnumerateAddedFieldDescs(ITypeHandle typeHandle, bool staticFields) => throw new NotImplementedException();
Contracts\IRuntimeTypeSystem.cs (65)
152ITypeHandle GetTypeHandle(TargetPointer address) => throw new NotImplementedException(); 153TargetPointer GetModule(ITypeHandle typeHandle) => throw new NotImplementedException(); 154TargetPointer GetLoaderModule(ITypeHandle typeHandle) => throw new NotImplementedException(); 158TargetPointer GetCanonicalMethodTable(ITypeHandle typeHandle) => throw new NotImplementedException(); 160bool IsCanonicalMethodTable(ITypeHandle typeHandle) => throw new NotImplementedException(); 161TargetPointer GetParentMethodTable(ITypeHandle typeHandle) => throw new NotImplementedException(); 163TargetPointer GetMethodDescForSlot(ITypeHandle methodTable, ushort slot) => throw new NotImplementedException(); 164IEnumerable<TargetPointer> GetIntroducedMethodDescs(ITypeHandle methodTable) => throw new NotImplementedException(); 165TargetCodePointer GetSlot(ITypeHandle typeHandle, uint slot) => throw new NotImplementedException(); 167uint GetBaseSize(ITypeHandle typeHandle) => throw new NotImplementedException(); 168uint GetNumInstanceFieldBytes(ITypeHandle typeHandle) => throw new NotImplementedException(); 170uint GetComponentSize(ITypeHandle typeHandle) => throw new NotImplementedException(); 173bool IsFreeObjectMethodTable(ITypeHandle typeHandle) => throw new NotImplementedException(); 175bool IsObject(ITypeHandle typeHandle) => throw new NotImplementedException(); 176bool IsString(ITypeHandle typeHandle) => throw new NotImplementedException(); 183bool ContainsGCPointers(ITypeHandle typeHandle) => throw new NotImplementedException(); 185bool IsByRefLike(ITypeHandle typeHandle) => throw new NotImplementedException(); 190bool TryGetHFAElementSize(ITypeHandle typeHandle, out int elementSize) => throw new NotImplementedException(); 192bool RequiresAlign8(ITypeHandle typeHandle) => throw new NotImplementedException(); 197bool TryGetSystemVAmd64EightByteClassification(ITypeHandle typeHandle, out SystemVAmd64EightByteClassification classification) => throw new NotImplementedException(); 199bool IsContinuationWithoutMetadata(ITypeHandle typeHandle) => throw new NotImplementedException(); 205IEnumerable<(uint Offset, uint Size)> GetGCDescSeries(ITypeHandle typeHandle, uint numComponents = 0) => throw new NotImplementedException(); 206bool IsDynamicStatics(ITypeHandle typeHandle) => throw new NotImplementedException(); 207ushort GetNumInterfaces(ITypeHandle typeHandle) => throw new NotImplementedException(); 210uint GetTypeDefToken(ITypeHandle typeHandle) => throw new NotImplementedException(); 211ushort GetNumVtableSlots(ITypeHandle typeHandle) => throw new NotImplementedException(); 212ushort GetNumMethods(ITypeHandle typeHandle) => throw new NotImplementedException(); 215uint GetTypeDefTypeAttributes(ITypeHandle typeHandle) => throw new NotImplementedException(); 216ushort GetNumInstanceFields(ITypeHandle typeHandle) => throw new NotImplementedException(); 217ushort GetNumStaticFields(ITypeHandle typeHandle) => throw new NotImplementedException(); 218ushort GetNumThreadStaticFields(ITypeHandle typeHandle) => throw new NotImplementedException(); 219IEnumerable<TargetPointer> GetFieldDescList(ITypeHandle typeHandle) => throw new NotImplementedException(); 221bool IsTrackedReferenceWithFinalizer(ITypeHandle typeHandle) => throw new NotImplementedException(); 222TargetPointer GetGCStaticsBasePointer(ITypeHandle typeHandle) => throw new NotImplementedException(); 223TargetPointer GetNonGCStaticsBasePointer(ITypeHandle typeHandle) => throw new NotImplementedException(); 224TargetPointer GetGCThreadStaticsBasePointer(ITypeHandle typeHandle, TargetPointer threadPtr) => throw new NotImplementedException(); 225TargetPointer GetNonGCThreadStaticsBasePointer(ITypeHandle typeHandle, TargetPointer threadPtr) => throw new NotImplementedException(); 228ReadOnlySpan<ITypeHandle> GetInstantiation(ITypeHandle typeHandle) => throw new NotImplementedException(); 229public bool IsClassInited(ITypeHandle typeHandle) => throw new NotImplementedException(); 230public bool IsInitError(ITypeHandle typeHandle) => throw new NotImplementedException(); 231bool IsGenericTypeDefinition(ITypeHandle typeHandle) => throw new NotImplementedException(); 232bool ContainsGenericVariables(ITypeHandle typeHandle) => throw new NotImplementedException(); 233bool IsCollectible(ITypeHandle typeHandle) => throw new NotImplementedException(); 235bool HasTypeParam(ITypeHandle typeHandle) => throw new NotImplementedException(); 240CorElementType GetSignatureCorElementType(ITypeHandle typeHandle) => throw new NotImplementedException(); 241bool IsValueType(ITypeHandle typeHandle) => throw new NotImplementedException(); 246CorElementType GetInternalCorElementType(ITypeHandle typeHandle) => throw new NotImplementedException(); 249bool IsEnum(ITypeHandle typeHandle) => throw new NotImplementedException(); 252bool IsDelegate(ITypeHandle typeHandle) => throw new NotImplementedException(); 255bool IsArray(ITypeHandle typeHandle, out uint rank) => throw new NotImplementedException(); 256ITypeHandle GetTypeParam(ITypeHandle typeHandle) => throw new NotImplementedException(); 257ITypeHandle? GetConstructedType(ITypeHandle? typeHandle, CorElementType corElementType, int rank, ImmutableArray<ITypeHandle?> typeArguments, SignatureCallingConvention callConv = SignatureCallingConvention.Default) => throw new NotImplementedException(); 258ITypeHandle GetPrimitiveType(CorElementType typeCode) => throw new NotImplementedException(); 259bool IsGenericVariable(ITypeHandle typeHandle, out TargetPointer module, out uint token, out uint index) => throw new NotImplementedException(); 260bool IsFunctionPointer(ITypeHandle typeHandle, out ReadOnlySpan<ITypeHandle> retAndArgTypes, out SignatureCallingConvention callConv) => throw new NotImplementedException(); 261bool IsPointer(ITypeHandle typeHandle) => throw new NotImplementedException(); 262bool IsTypeDesc(ITypeHandle typeHandle) => throw new NotImplementedException(); 272ReadOnlySpan<ITypeHandle> GetGenericMethodInstantiation(MethodDescHandle methodDesc) => throw new NotImplementedException(); 345ITypeHandle? GetFieldDescApproxTypeHandle(TargetPointer fieldDescPointer) => throw new NotImplementedException(); 347TargetPointer GetFieldDescByName(ITypeHandle typeHandle, string fieldName) => throw new NotImplementedException();
Contracts\ISignature.cs (2)
12ITypeHandle? DecodeFieldSignature(BlobHandle blobHandle, ModuleHandle moduleHandle, ITypeHandle? ctx) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (218)
_generated\1\TypeNameResolver.g.cs (2)
11public static ITypeHandle GetTypeHandle(Target target, string[] names) 15if (target.Contracts.ManagedTypeSource.TryGetTypeHandle(name, out ITypeHandle? th))
_generated\147\Microsoft_Diagnostics_DataContractReader_Data.NativeObjectWrapper.g.cs (1)
15public static ITypeHandle TypeHandle(Target target)
Contracts\CallingConvention\CallingConvention_1.cs (8)
60ITypeHandle owningTypeHandle = rts.GetTypeHandle(rts.GetMethodTable(methodDesc)); 87ITypeHandle enclosingType = rts.GetTypeHandle(rts.GetMTOfEnclosingClass(fieldDesc)); 114private ModuleHandle GetModuleHandle(ITypeHandle typeHandle) 197ITypeHandle owningType = rts.GetTypeHandle(methodTablePtr); 287ITypeHandle? probe = typeInfo.ExactTypeHandle ?? typeInfo.GenericTypeDefinition; 483if (arg.TypeInfo.ExactTypeHandle is ITypeHandle typeHandle && rts.ContainsGCPointers(typeHandle)) 645ITypeHandle? layoutType = byRefLikeType.ExactTypeHandle ?? byRefLikeType.GenericTypeDefinition; 695ITypeHandle? nestedProbe =
Contracts\CallingConvention\CdacTypeHandle.cs (4)
10using CdacITypeHandle = Microsoft.Diagnostics.DataContractReader.Contracts.ITypeHandle; 17/// Adapts cDAC signature type information to the shared <see cref="ITypeHandle"/> 26public CdacTypeHandle(CdacITypeHandle? typeHandle, Target target, CallingConvention_1 callingConvention) 45private CdacITypeHandle? ExactTypeHandle => _typeInfo.ExactTypeHandle;
Contracts\CallingConvention\SignatureTypeInfo.cs (4)
13ITypeHandle? exactTypeHandle, 14ITypeHandle? genericTypeDefinition = null, 24public ITypeHandle? ExactTypeHandle { get; } 25public ITypeHandle? GenericTypeDefinition { get; }
Contracts\CallingConvention\SignatureTypeInfoProvider.cs (9)
47ITypeHandle? exactType = null; 50ImmutableArray<ITypeHandle?> exactArguments = typeArguments 74ITypeHandle exactType = _rts.GetGenericMethodInstantiation(method)[index]; 85if (context.OwningType.ExactTypeHandle is ITypeHandle exactOwningType) 87ITypeHandle exactType = _rts.GetInstantiation(exactOwningType)[index]; 156internal SignatureTypeInfo FromExactType(ITypeHandle exactType) 158ReadOnlySpan<ITypeHandle> exactArguments = _rts.GetInstantiation(exactType); 178ITypeHandle? exactType = elementType.ExactTypeHandle is null 191ITypeHandle? exactType = typeHandlePointer == TargetPointer.Null
Contracts\CodeVersions_1.cs (1)
339ITypeHandle typeHandle = rts.GetTypeHandle(mtAddr);
Contracts\ConditionalWeakTable_1.cs (1)
37ITypeHandle entriesTypeHandle = _target.Contracts.RuntimeTypeSystem.GetTypeHandle(entriesMT);
Contracts\Exception_1.cs (1)
67ITypeHandle stackTraceHandle = rtsContract.GetTypeHandle(mt);
Contracts\ExecutionManager\ExecutionManagerCore.cs (1)
600ITypeHandle th = rts.GetTypeHandle(mtPtr);
Contracts\ManagedTypeSource_1.cs (10)
17private readonly Dictionary<string, ITypeHandle?> _typeHandleCache = new(); 88public ITypeHandle GetTypeHandle(string fullyQualifiedName) 90if (!TryGetTypeHandle(fullyQualifiedName, out ITypeHandle? typeHandle)) 96public bool TryGetTypeHandle(string fullyQualifiedName, [NotNullWhen(true)] out ITypeHandle? typeHandle) 98if (_typeHandleCache.TryGetValue(fullyQualifiedName, out ITypeHandle? cached)) 139ITypeHandle ctx = rts.GetTypeHandle(enclosingMT); 174ITypeHandle ctx = rts.GetTypeHandle(enclosingMT); 193if (!TryResolveType(fullyQualifiedName, out ITypeHandle? th, out _, out _)) 209if (!TryResolveType(managedFqName, out ITypeHandle? th, out MetadataReader? mdReader, out TypeDefinition typeDef)) 254private bool TryResolveType(string managedFqName, [NotNullWhen(true)] out ITypeHandle? th, [NotNullWhen(true)] out MetadataReader? mdReader, out TypeDefinition typeDef)
Contracts\Object_1.cs (2)
78ITypeHandle typeHandle = typeSystemContract.GetTypeHandle(mt); 235ITypeHandle typeHandle = typeSystemContract.GetTypeHandle(mt);
Contracts\RuntimeMutableTypeSystem_1.cs (1)
29IEnumerable<TargetPointer> IRuntimeMutableTypeSystem.EnumerateAddedFieldDescs(ITypeHandle typeHandle, bool staticFields)
Contracts\RuntimeTypeSystem_1.cs (127)
35private readonly Dictionary<TypeKey, ITypeHandle> _typeHandles = new(); 92public TypeKey(ITypeHandle? typeHandle, CorElementType elementType, int rank, ImmutableArray<ITypeHandle?> typeArgs, SignatureCallingConvention callConv = SignatureCallingConvention.Default) 100public ITypeHandle? TypeHandle { get; } 103public ImmutableArray<ITypeHandle?> TypeArgs { get; } 124foreach (ITypeHandle? th in TypeArgs) 374Instantiation = System.Array.Empty<ITypeHandle>(); 378Instantiation = new ITypeHandle[numGenericArgs]; 391public ITypeHandle[] Instantiation { get; } 485public ITypeHandle GetTypeHandle(TargetPointer typeHandlePointer) 538public TargetPointer GetModule(ITypeHandle typeHandle) 565public TargetPointer GetCanonicalMethodTable(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? TargetPointer.Null : GetClassData(typeHandle).MethodTable; 566public bool IsCanonicalMethodTable(ITypeHandle typeHandle) => typeHandle.IsMethodTable() && _methodTables[typeHandle.Address].IsCanonMT; 567public TargetPointer GetParentMethodTable(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? TargetPointer.Null : _methodTables[typeHandle.Address].ParentMethodTable; 569public uint GetBaseSize(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (uint)0 : _methodTables[typeHandle.Address].Flags.BaseSize; 571public uint GetNumInstanceFieldBytes(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (uint)0 : _methodTables[typeHandle.Address].Flags.BaseSize - GetClassData(typeHandle).BaseSizePadding; 573public uint GetComponentSize(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (uint)0 : _methodTables[typeHandle.Address].Flags.ComponentSize; 575private TargetPointer GetClassPointer(ITypeHandle typeHandle) 586ITypeHandle canonMTHandle = GetTypeHandle(canonMTPtr); 594public bool TryGetSystemVAmd64EightByteClassification(ITypeHandle typeHandle, out SystemVAmd64EightByteClassification classification) 626private Data.EEClass GetClassData(ITypeHandle typeHandle) 633public bool IsFreeObjectMethodTable(ITypeHandle typeHandle) => FreeObjectMethodTablePointer == typeHandle.Address; 635public bool IsObject(ITypeHandle typeHandle) => ObjectMethodTablePointer != TargetPointer.Null && ObjectMethodTablePointer == typeHandle.Address; 637public bool IsString(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.IsString; 666public bool ContainsGCPointers(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.ContainsGCPointers; 667public bool IsByRefLike(ITypeHandle typeHandle) => typeHandle.IsMethodTable() && _methodTables[typeHandle.Address].Flags.IsByRefLike; 675public bool TryGetHFAElementSize(ITypeHandle typeHandle, out int elementSize) 694ITypeHandle current = typeHandle; 726ITypeHandle? next = ((IRuntimeTypeSystem)this).GetFieldDescApproxTypeHandle(firstField); 741private int GetVectorHFAElementSize(ITypeHandle typeHandle) 795ReadOnlySpan<ITypeHandle> instantiation = ((IRuntimeTypeSystem)this).GetInstantiation(typeHandle); 816public bool RequiresAlign8(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.RequiresAlign8; 817public bool IsContinuationWithoutMetadata(ITypeHandle typeHandle) => typeHandle.IsMethodTable() 823IEnumerable<(uint Offset, uint Size)> IRuntimeTypeSystem.GetGCDescSeries(ITypeHandle typeHandle, uint numComponents) 897public bool IsDynamicStatics(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.IsDynamicStatics; 898public ushort GetNumInterfaces(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (ushort)0 : _methodTables[typeHandle.Address].NumInterfaces; 900public uint GetTypeDefToken(ITypeHandle typeHandle) 907public ushort GetNumVtableSlots(ITypeHandle typeHandle) 915public ushort GetNumMethods(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (ushort)0 : GetClassData(typeHandle).NumMethods; 916public uint GetTypeDefTypeAttributes(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (uint)0 : GetClassData(typeHandle).CorTypeAttr; 917public ushort GetNumInstanceFields(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (ushort)0 : GetClassData(typeHandle).NumInstanceFields; 918public ushort GetNumStaticFields(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (ushort)0 : GetClassData(typeHandle).NumStaticFields; 919public ushort GetNumThreadStaticFields(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (ushort)0 : GetClassData(typeHandle).NumThreadStaticFields; 920public IEnumerable<TargetPointer> GetFieldDescList(ITypeHandle typeHandle) 934private (TargetPointer ListStart, uint FieldDescSize, int TotalFields) GetFieldDescListLayout(ITypeHandle typeHandle) 943ITypeHandle parentHandle = GetTypeHandle(parentMT); 949public bool IsTrackedReferenceWithFinalizer(ITypeHandle typeHandle) => typeHandle.IsMethodTable() && _methodTables[typeHandle.Address].Flags.IsTrackedReferenceWithFinalizer; 950private TargetPointer GetDynamicStaticsInfo(ITypeHandle typeHandle) 963private Data.ThreadStaticsInfo GetThreadStaticsInfo(ITypeHandle typeHandle) 972public TargetPointer GetGCThreadStaticsBasePointer(ITypeHandle typeHandle, TargetPointer threadPtr) 981public TargetPointer GetNonGCThreadStaticsBasePointer(ITypeHandle typeHandle, TargetPointer threadPtr) 990public TargetPointer GetGCStaticsBasePointer(ITypeHandle typeHandle) 999public TargetPointer GetNonGCStaticsBasePointer(ITypeHandle typeHandle) 1008public ReadOnlySpan<ITypeHandle> GetInstantiation(ITypeHandle typeHandle) 1020public bool IsClassInited(ITypeHandle typeHandle) 1029public bool IsInitError(ITypeHandle typeHandle) 1042public ITypeHandle[] TypeHandles { get; } 1058TypeHandles = new ITypeHandle[numberOfGenericArgs]; 1066public bool IsGenericTypeDefinition(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.IsGenericTypeDefinition; 1067public bool ContainsGenericVariables(ITypeHandle typeHandle) 1082_ = IsFunctionPointer(typeHandle, out ReadOnlySpan<ITypeHandle> signatureTypeArgs, out _); 1083foreach (ITypeHandle sigTypeArg in signatureTypeArgs) 1095public bool IsCollectible(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.IsCollectible; 1096public bool HasTypeParam(ITypeHandle typeHandle) 1118public CorElementType GetSignatureCorElementType(ITypeHandle typeHandle) 1149public CorElementType GetInternalCorElementType(ITypeHandle typeHandle) 1162public bool IsValueType(ITypeHandle typeHandle) 1178public bool IsEnum(ITypeHandle typeHandle) 1190public bool IsDelegate(ITypeHandle typeHandle) 1200public bool IsArray(ITypeHandle typeHandle, out uint rank) 1225public ITypeHandle GetTypeParam(ITypeHandle typeHandle) 1251private ITypeHandle GetRootTypeParam(ITypeHandle typeHandle) 1253ITypeHandle current = typeHandle; 1261private bool GenericInstantiationMatch(ITypeHandle genericType, ITypeHandle potentialMatch, ImmutableArray<ITypeHandle?> typeArguments) 1263ReadOnlySpan<ITypeHandle> instantiation = GetInstantiation(potentialMatch); 1275if (typeArguments[i] is not ITypeHandle typeArgument || instantiation[i].Address != typeArgument.Address) 1281private bool ArrayPtrMatch(ITypeHandle elementType, CorElementType corElementType, int rank, ITypeHandle potentialMatch) 1291private bool FnPtrMatch(ITypeHandle candidate, ImmutableArray<ITypeHandle?> retAndArgTypes, SignatureCallingConvention callConv) 1293if (!IsFunctionPointer(candidate, out ReadOnlySpan<ITypeHandle> candidateRetAndArgs, out SignatureCallingConvention candidateCallConv)) 1301if (retAndArgTypes[i] is not ITypeHandle retOrArgType || candidateRetAndArgs[i].Address != retOrArgType.Address) 1307private bool IsLoaded(ITypeHandle typeHandle) 1322ITypeHandle? IRuntimeTypeSystem.GetConstructedType(ITypeHandle? typeHandle, CorElementType corElementType, int rank, ImmutableArray<ITypeHandle?> typeArguments, SignatureCallingConvention callConv) 1326foreach (ITypeHandle? typeArgument in typeArguments) 1331if (_typeHandles.TryGetValue(new TypeKey(typeHandle, corElementType, rank, typeArguments, callConv), out ITypeHandle? existing) && existing is not null) 1343ITypeHandle potentialMatch; 1373private TargetPointer ComputeLoaderModule(TargetPointer definitionModule, ImmutableArray<ITypeHandle?> inst) 1388foreach (ITypeHandle? nullableArg in inst) 1390ITypeHandle arg = nullableArg!; 1444ITypeHandle IRuntimeTypeSystem.GetPrimitiveType(CorElementType typeCode) 1452public bool IsGenericVariable(ITypeHandle typeHandle, out TargetPointer module, out uint token, out uint index) 1476public bool IsFunctionPointer(ITypeHandle typeHandle, out ReadOnlySpan<ITypeHandle> retAndArgTypes, out SignatureCallingConvention callConv) 1495public bool IsPointer(ITypeHandle typeHandle) 1505public bool IsTypeDesc(ITypeHandle typeHandle) => typeHandle.IsTypeDesc(); 1513public TargetPointer GetLoaderModule(ITypeHandle typeHandle) 1543public ITypeHandle[] TypeHandles { get; } 1552TypeHandles = new ITypeHandle[numberOfRetAndArgTypes]; 1624public ReadOnlySpan<ITypeHandle> GetGenericMethodInstantiation(MethodDescHandle methodDescHandle) 1906private TargetPointer GetAddressOfSlot(ITypeHandle typeHandle, uint slotNum) 1967ITypeHandle mt = GetTypeHandle(mtAddr); 2026private IEnumerable<MethodDescHandle> GetIntroducedMethods(ITypeHandle typeHandle) 2055ITypeHandle methodTable = GetTypeHandle(methodDesc.MethodTable); 2056ITypeHandle canonicalMethodTable = GetTypeHandle(GetCanonicalMethodTable(methodTable)); 2072IEnumerable<TargetPointer> IRuntimeTypeSystem.GetIntroducedMethodDescs(ITypeHandle typeHandle) 2077ITypeHandle canonMT = GetTypeHandle(GetCanonicalMethodTable(typeHandle)); 2086TargetPointer IRuntimeTypeSystem.GetMethodDescForSlot(ITypeHandle typeHandle, ushort slot) 2092ITypeHandle canonMT = GetTypeHandle(GetCanonicalMethodTable(typeHandle)); 2111private TargetPointer GetMethodDescForVtableSlot(ITypeHandle typeHandle, ushort slot) 2119ITypeHandle canonMT = GetTypeHandle(cannonMTPTr); 2132ITypeHandle lookupMT = GetTypeHandle(lookupMTPtr); 2168TargetCodePointer IRuntimeTypeSystem.GetSlot(ITypeHandle typeHandle, uint slot) 2230ITypeHandle typeHandle = GetTypeHandle(methodTablePointer); 2340ITypeHandle typeHandle = GetTypeHandle(methodTablePointer); 2348ITypeHandle typeHandle = GetTypeHandle(methodTablePointer); 2404ITypeHandle? IRuntimeTypeSystem.GetFieldDescApproxTypeHandle(TargetPointer fieldDescPointer) 2411ITypeHandle enclosingType = GetTypeHandle(enclosingMT); 2451TargetPointer IRuntimeTypeSystem.GetFieldDescByName(ITypeHandle typeHandle, string fieldName) 2512ITypeHandle ctx = GetTypeHandle(enclosingMT);
Contracts\Signature\Signature_1.cs (9)
21private readonly Dictionary<ModuleHandle, SignatureTypeProvider<ITypeHandle?>> _thProviders = []; 33private SignatureTypeProvider<ITypeHandle?> GetTypeHandleProvider(ModuleHandle moduleHandle) 35if (_thProviders.TryGetValue(moduleHandle, out SignatureTypeProvider<ITypeHandle?>? thProvider)) 40SignatureTypeProvider<ITypeHandle?> newProvider = new(_target, moduleHandle); 45ITypeHandle? ISignature.DecodeFieldSignature(BlobHandle blobHandle, ModuleHandle moduleHandle, ITypeHandle? ctx) 47SignatureTypeProvider<ITypeHandle?> provider = GetTypeHandleProvider(moduleHandle); 51RuntimeSignatureDecoder<ITypeHandle?, ITypeHandle?> decoder = new(provider, _target, mdReader, ctx);
Contracts\Signature\SignatureTypeProvider.cs (32)
13public class SignatureTypeProvider<T> : IRuntimeSignatureTypeProvider<ITypeHandle?, T> 28public ITypeHandle? GetArrayType(ITypeHandle? elementType, ArrayShape shape) 31public ITypeHandle? GetByReferenceType(ITypeHandle? elementType) 34public ITypeHandle? GetFunctionPointerType(MethodSignature<ITypeHandle?> signature) 37public ITypeHandle? GetGenericInstantiation(ITypeHandle? genericType, ImmutableArray<ITypeHandle?> typeArguments) 40public ITypeHandle? GetGenericMethodParameter(T context, int index) 49public ITypeHandle? GetGenericTypeParameter(T context, int index) 51if (typeof(T) == typeof(ITypeHandle)) 53ITypeHandle? typeContext = (ITypeHandle?)(object?)context; 61ITypeHandle declaringType = _runtimeTypeSystem.GetTypeHandle(_runtimeTypeSystem.GetMethodTable(methodContext)); 66public ITypeHandle? GetModifiedType(ITypeHandle? modifier, ITypeHandle? unmodifiedType, bool isRequired) 69public ITypeHandle? GetPinnedType(ITypeHandle? elementType) 72public ITypeHandle? GetPointerType(ITypeHandle? elementType) 75public ITypeHandle? GetPrimitiveType(PrimitiveTypeCode typeCode) 78public ITypeHandle? GetSZArrayType(ITypeHandle? elementType) 81public ITypeHandle? GetTypeFromDefinition(MetadataReader reader, TypeDefinitionHandle handle, byte rawTypeKind) 92public ITypeHandle? GetTypeFromReference(MetadataReader reader, TypeReferenceHandle handle, byte rawTypeKind) 103public ITypeHandle? GetTypeFromSpecification(MetadataReader reader, T context, TypeSpecificationHandle handle, byte rawTypeKind) 106public ITypeHandle? GetInternalType(TargetPointer typeHandlePointer) 111public ITypeHandle? GetInternalModifiedType(TargetPointer typeHandlePointer, ITypeHandle? unmodifiedType, bool isRequired)
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (1)
120ITypeHandle mtHandle = rtsContract.GetTypeHandle(stubDispatchFrame.RepresentativeMTPtr);
Contracts\StackWalk\GC\GcScanContext.cs (1)
174ITypeHandle handle = _rts.GetTypeHandle(mt);
RuntimeTypeSystemHelpers\ExtensionMethods.cs (3)
10public static bool IsTypeDesc(this ITypeHandle type) 15public static bool IsMethodTable(this ITypeHandle type) 20public static TargetPointer TypeDescAddress(this ITypeHandle type)
Microsoft.Diagnostics.DataContractReader.Legacy (210)
ClrDataExceptionState.cs (1)
155ITypeHandle typeHandle = _target.Contracts.RuntimeTypeSystem.GetTypeHandle(
ClrDataFrame.cs (10)
469ITypeHandle typeHandle = rts.GetTypeHandle(mtAddr); 503ITypeHandle? typeHandle; 660private ITypeHandle? GetTypeHandleFromSignature( 670SignatureDecoder<ITypeHandle?, MethodDescHandle> decoder = new(provider, mdReader, mdh); 675MethodSignature<ITypeHandle?> methodSig = decoder.DecodeMethodSignature(ref sigReader); 685ImmutableArray<ITypeHandle?> localTypes = decoder.DecodeLocalSignature(ref localSigReader); 837ReadOnlySpan<ITypeHandle> methodInst = rts.GetGenericMethodInstantiation(mdh); 849ITypeHandle declaringType = rts.GetTypeHandle(mtAddr); 850ReadOnlySpan<ITypeHandle> typeInst = rts.GetInstantiation(declaringType); 856private static (uint Flags, int Size) ResolveGenericParam(IRuntimeTypeSystem rts, ITypeHandle resolvedType)
ClrDataMethodDefinition.cs (1)
97ITypeHandle mt = rts.GetTypeHandle(mtAddr);
ClrDataMethodInstance.cs (1)
119ITypeHandle mainMT = rts.GetTypeHandle(mtAddr);
ClrDataTypeDefinition.cs (2)
22private readonly ITypeHandle? _typeHandle; 29ITypeHandle? typeHandle,
ClrDataTypeInstance.cs (4)
17private readonly ITypeHandle _typeHandle; 20internal ITypeHandle TypeHandle => _typeHandle; 23public ClrDataTypeInstance(Target target, ITypeHandle typeHandle, IXCLRDataTypeInstance? legacyImpl, Lock apiLock) 199ITypeHandle? definitionType = null;
ClrDataValue.cs (16)
38private readonly ITypeHandle? _typeHandle; 47ITypeHandle? typeHandle, 508ITypeHandle? typeHandle = null; 589ITypeHandle arrayType = rts.GetTypeHandle(_target.Contracts.Object.GetMethodTableAddress(_baseAddress)); 649ITypeHandle arrayType = rts.GetTypeHandle(_target.Contracts.Object.GetMethodTableAddress(_baseAddress)); 653ITypeHandle elementType = rts.GetTypeParam(arrayType); 813(string fieldName, uint fieldToken, FieldDefinition fieldDefinition, ITypeHandle enclosingType) = GetFieldMetadata(entry.FieldDesc); 903ITypeHandle? typeHandle = !includeParents && fromType is ClrDataTypeInstance fromTypeInstance 912List<ITypeHandle> types = []; 913ITypeHandle current = typeHandle; 939private (string Name, uint Token, FieldDefinition Definition, ITypeHandle EnclosingType) GetFieldMetadata(TargetPointer fieldDesc) 942ITypeHandle enclosingType = rts.GetTypeHandle(rts.GetMTOfEnclosingClass(fieldDesc)); 954ITypeHandle enclosingType, 959ITypeHandle? fieldType = rts.GetFieldDescApproxTypeHandle(fieldDesc); 1012ITypeHandle? typeHandle, 1070private ulong GetTypeSize(ITypeHandle typeHandle)
Dbi\DacDbiImpl.cs (87)
297ITypeHandle typeHandle = rts.GetTypeHandle(methodTable); 2319ITypeHandle mt = rts.GetTypeHandle(mtAddr); 2487ITypeHandle typeHandle = rts.GetTypeHandle(mtPtr); 2725ITypeHandle th = rts.GetTypeHandle(new TargetPointer(thExact)); 3071ITypeHandle th = rts.GetTypeHandle(new TargetPointer(vmTypeHandle)); 3099ITypeHandle typeHandle = rts.GetTypeHandle(new TargetPointer(vmTypeHandle)); 3138ITypeHandle thExactHandle = rts.GetTypeHandle(thExact); 3140ITypeHandle thApprox = thExactHandle; 3192ITypeHandle? thExactHandle = vmThExact == 0 ? null : rts.GetTypeHandle(vmThExact); 3196ITypeHandle thApproxHandle = rts.GetTypeHandle(vmThApprox); 3227ITypeHandle? thExact, 3228ITypeHandle thApprox, 3300ITypeHandle enclosingTh = rts.GetTypeHandle(enclosingMT); 3401ITypeHandle th = rts.GetTypeHandle(new TargetPointer(vmTypeHandle)); 3431ITypeHandle th = rts.GetTypeHandle(mtAddr); 3556ITypeHandle canonTh = rts.GetTypeHandle(canonMtPtr); 3559ITypeHandle? th = walk.ReadLoadedTypeHandle(); 3592ITypeHandle? th = null; 3636private ITypeHandle BasicTypeInfoToTypeHandle(IRuntimeTypeSystem rts, DebuggerIPCE_BasicTypeData* pData) 3639ITypeHandle th; 3665private ITypeHandle GetClassOrValueTypeHandle(IRuntimeTypeSystem rts, DebuggerIPCE_BasicTypeData* pData) 3676private ITypeHandle GetExactArrayTypeHandle(IRuntimeTypeSystem rts, DebuggerIPCE_ExpandedTypeData* pTopLevel, ArgInfoList* pArgInfo) 3680ITypeHandle elementType = BasicTypeInfoToTypeHandle(rts, &pArgInfo->m_pList[0]); 3683return rts.GetConstructedType(elementType, et, rank, ImmutableArray<ITypeHandle?>.Empty) 3687private ITypeHandle GetExactPtrOrByRefTypeHandle(IRuntimeTypeSystem rts, DebuggerIPCE_ExpandedTypeData* pTopLevel, ArgInfoList* pArgInfo) 3691ITypeHandle referent = BasicTypeInfoToTypeHandle(rts, &pArgInfo->m_pList[0]); 3693return rts.GetConstructedType(referent, et, 0, ImmutableArray<ITypeHandle?>.Empty) 3697private ITypeHandle GetExactClassTypeHandle(IRuntimeTypeSystem rts, DebuggerIPCE_ExpandedTypeData* pTopLevel, ArgInfoList* pArgInfo) 3701ITypeHandle typeConstructor = LookupTypeDefOrRefInAssembly(vmAssembly, metadataToken); 3707ImmutableArray<ITypeHandle?>.Builder builder = ImmutableArray.CreateBuilder<ITypeHandle?>(argCount); 3715private ITypeHandle GetExactFnPtrTypeHandle(IRuntimeTypeSystem rts, ArgInfoList* pArgInfo) 3718ImmutableArray<ITypeHandle?>.Builder builder = ImmutableArray.CreateBuilder<ITypeHandle?>(argCount); 3749ITypeHandle thRepMt = rts.GetTypeHandle(rts.GetMethodTable(pRepMethod)); 3755ITypeHandle thSpecificClass = thRepMt; 3784ITypeHandle thFromThis = rts.GetTypeHandle(new TargetPointer(genericsToken)); 3785ITypeHandle? thMatch = GetMethodTableMatchingParentClass(rts, thFromThis, thRepMt); 3808ITypeHandle thSpecMethodMt = rts.GetTypeHandle(specMethodMtPtr); 3809ITypeHandle? thMatchingParent = GetMethodTableMatchingParentClass(rts, thSpecificClass, thSpecMethodMt); 3810ReadOnlySpan<ITypeHandle> classInst = thMatchingParent is null 3813ReadOnlySpan<ITypeHandle> methodInst = rts.GetGenericMethodInstantiation(pSpecificMethod); 3820ITypeHandle thCanon = rts.GetTypeHandle(canonMtPtr); 4042internal ITypeHandle LookupTypeDefOrRefInAssembly(ulong vmAssembly, uint metadataToken) 4044ITypeHandle? th = TryLookupTypeDefOrRefInAssembly(vmAssembly, metadataToken); 4050internal ITypeHandle? TryLookupTypeDefOrRefInAssembly(ulong vmAssembly, uint metadataToken) 4086ITypeHandle typeHandle = rts.GetTypeHandle(new TargetPointer(vmTypeHandle)); 4087ReadOnlySpan<ITypeHandle> instantiation = rts.GetInstantiation(typeHandle); 4164ITypeHandle typeHandle = rts.GetPrimitiveType((CorElementType)simpleType); 4216ITypeHandle typeHandle = rts.GetTypeHandle(parentMT); 4406ITypeHandle th = rts.GetTypeHandle(info.TypeHandle); 4445ITypeHandle th = rts.GetTypeHandle(mtAddr); 4485ITypeHandle th = rts.GetTypeHandle(mt); 4548ITypeHandle? th = null; 5462ITypeHandle typeHandle = rts.GetTypeHandle(new TargetPointer(id)); 5474ITypeHandle parentHandle = rts.GetTypeHandle(parentMT); 5515ITypeHandle enclosingTypeHandle = rts.GetTypeHandle(enclosingMT); 5530ITypeHandle? fieldTypeHandle = signature.DecodeFieldSignature(fieldDef.Signature, enclosingModuleHandle, enclosingTypeHandle); 5548ITypeHandle mtHandle = (signatureType == CorElementType.Ptr || signatureType == CorElementType.FnPtr) 5614ITypeHandle typeHandle = rts.GetTypeHandle(new TargetPointer((ulong)id)); 5623ITypeHandle parentHandle = rts.GetTypeHandle(parentMT); 5671ITypeHandle arrayOrStringTypeHandle = rts.GetTypeHandle(new TargetPointer(id)); 5676ITypeHandle charTypeHandle = rts.GetPrimitiveType(CorElementType.Char); 5692ITypeHandle componentTypeHandle = rts.GetTypeParam(arrayOrStringTypeHandle); 6210ITypeHandle typeHandle = rts.GetTypeHandle(mtPtr); 6276ITypeHandle typeHandle = rts.GetTypeHandle(mt); 6567private void FillExpandedTypeDataWithCanonFallback(IRuntimeTypeSystem rts, ITypeHandle typeHandle, ITypeHandle thCanon, DebuggerIPCE_ExpandedTypeData* pTypeInfo) 6581private static bool HasSameTypeDefAs(IRuntimeTypeSystem rts, ITypeHandle a, ITypeHandle b) 6595private static ITypeHandle? GetMethodTableMatchingParentClass(IRuntimeTypeSystem rts, ITypeHandle start, ITypeHandle parent) 6597ITypeHandle current = start; 6613private void TypeHandleToExpandedTypeInfoImpl(IRuntimeTypeSystem rts, AreValueTypesBoxed boxed, ITypeHandle typeHandle, DebuggerIPCE_ExpandedTypeData* pTypeInfo) 6660private static CorElementType GetElementType(IRuntimeTypeSystem rts, ITypeHandle? typeHandle) 6676private static ITypeHandle UpCastTypeIfNeeded(IRuntimeTypeSystem rts, ITypeHandle typeHandle) 6689private void FillArrayTypeInfo(IRuntimeTypeSystem rts, ITypeHandle typeHandle, DebuggerIPCE_ExpandedTypeData* pTypeInfo) 6694ITypeHandle elemTypeHandle = rts.GetTypeParam(typeHandle); 6699private void FillPtrTypeInfo(IRuntimeTypeSystem rts, AreValueTypesBoxed boxed, ITypeHandle typeHandle, DebuggerIPCE_ExpandedTypeData* pTypeInfo) 6707ITypeHandle paramTypeHandle = rts.GetTypeParam(typeHandle); 6713private void FillClassTypeInfo(IRuntimeTypeSystem rts, ITypeHandle typeHandle, DebuggerIPCE_ExpandedTypeData* pTypeInfo) 6721ReadOnlySpan<ITypeHandle> instantiation = rts.GetInstantiation(typeHandle); 6736private void FillFnPtrTypeInfo(IRuntimeTypeSystem rts, AreValueTypesBoxed boxed, ITypeHandle typeHandle, DebuggerIPCE_ExpandedTypeData* pTypeInfo) 6751internal void FillBasicTypeInfo(IRuntimeTypeSystem rts, ITypeHandle typeHandle, out DebuggerIPCE_BasicTypeData typeInfo) 6777ReadOnlySpan<ITypeHandle> instantiation = rts.GetInstantiation(typeHandle);
Dbi\Helpers\HeapWalk.cs (1)
116ITypeHandle handle = _rts.GetTypeHandle(mt);
Dbi\TypeDataWalk.cs (23)
22private readonly ITypeHandle _canonTh; 26public TypeDataWalk(Target target, IRuntimeTypeSystem rts, ITypeHandle canonTh, DebuggerIPCE_TypeArgData* pData, uint nData) 58public ITypeHandle? ReadLoadedTypeHandle() 92private ITypeHandle? ReadLoadedTypeArg() 117private ITypeHandle? ReadLoadedInstantiation(ulong vmAssembly, uint metadataToken, uint nTypeArgs) 119ITypeHandle? typeDef = TryLookupTypeDefOrRefInAssembly(vmAssembly, metadataToken); 126ImmutableArray<ITypeHandle?>.Builder builder = ImmutableArray.CreateBuilder<ITypeHandle?>((int)nTypeArgs); 129ITypeHandle? th = ReadLoadedTypeArg(); 138private ITypeHandle? ArrayTypeArg(DebuggerIPCE_TypeArgData* pInfo) 140ITypeHandle? elem = ReadLoadedTypeArg(); 145return _rts.GetConstructedType(elem, et, rank, ImmutableArray<ITypeHandle?>.Empty); 148private ITypeHandle? PtrOrByRefTypeArg(DebuggerIPCE_TypeArgData* pInfo) 150ITypeHandle? referent = ReadLoadedTypeArg(); 154return _rts.GetConstructedType(referent, et, 0, ImmutableArray<ITypeHandle?>.Empty); 160private ITypeHandle? ClassTypeArg(DebuggerIPCE_TypeArgData* pInfo) 167ITypeHandle? typeDef = TryLookupTypeDefOrRefInAssembly(vmAssembly, metadataToken); 181private ITypeHandle? FnPtrTypeArg(DebuggerIPCE_TypeArgData* pInfo) 184ImmutableArray<ITypeHandle?>.Builder builder = ImmutableArray.CreateBuilder<ITypeHandle?>((int)numTypeArgs); 187ITypeHandle? th = ReadLoadedTypeArg(); 197private ITypeHandle ObjRefOrPrimitiveTypeArg(DebuggerIPCE_TypeArgData* pInfo, CorElementType elementType) 209private ITypeHandle? TryLookupTypeDefOrRefInAssembly(ulong vmAssembly, uint metadataToken)
SigFormat.cs (10)
21ReadOnlySpan<ITypeHandle> typeInstantiation, 22ReadOnlySpan<ITypeHandle> methodInstantiation, 39ReadOnlySpan<ITypeHandle> typeInstantiation, 40ReadOnlySpan<ITypeHandle> methodInstantiation, 98ReadOnlySpan<ITypeHandle> typeInstantiation, 99ReadOnlySpan<ITypeHandle> methodInstantiation, 160ITypeHandle th = runtimeTypeSystem.GetTypeHandle(typeHandlePointer); 311private static void AddType(Target target, StringBuilder stringBuilder, ITypeHandle? typeHandle) 364ReadOnlySpan<ITypeHandle> instantiation = runtimeTypeSystem.GetInstantiation(typeHandle); 420runtimeTypeSystem.IsFunctionPointer(typeHandle, out ReadOnlySpan<ITypeHandle> retAndArgTypes, out SignatureCallingConvention callConv);
SOSDacImpl.cs (25)
1113ITypeHandle ctx = rtsContract.GetTypeHandle(enclosingMT); 1119ITypeHandle? foundTypeHandle = rtsContract.GetFieldDescApproxTypeHandle(fieldDescTargetPtr); 1138ITypeHandle paramTypeHandle = rtsContract.GetTypeParam(foundTypeHandle); 2400ITypeHandle typeHandle = rtsContract.GetTypeHandle(methodTableAddr); 2888ITypeHandle methodTable = contract.GetTypeHandle(mt.ToTargetPointer(_target)); 2962ITypeHandle typeHandle = rtsContract.GetTypeHandle(mtAddress); 3003ITypeHandle methodTableHandle = contract.GetTypeHandle(eeClassReallyCanonMT.ToTargetPointer(_target)); 3034ITypeHandle methodTableHandle = typeSystemContract.GetTypeHandle(mt.ToTargetPointer(_target, overrideCheck: true)); 3107ITypeHandle methodTableHandle = rts.GetTypeHandle(methodTable); // validate MT 3349ITypeHandle typeHandle = rts.GetTypeHandle(mt); 3422ITypeHandle handle = runtimeTypeSystemContract.GetTypeHandle(mt); 3464ITypeHandle element = runtimeTypeSystemContract.GetTypeParam(handle); 5565ITypeHandle typeHandle = rtsContract.GetTypeHandle(mt.ToTargetPointer(_target)); 5726ITypeHandle typeHandle = rts.GetTypeHandle(mt); 5788ITypeHandle typeHandle = rts.GetTypeHandle(ptr); 6155ITypeHandle methodTableHandle = rtsContract.GetTypeHandle(methodTable.ToTargetPointer(_target)); 6448ITypeHandle mtHandle = rtsContract.GetTypeHandle(mt); 6900ITypeHandle typeHandle = rtsContract.GetTypeHandle(methodTable.ToTargetPointer(_target)); 6942ITypeHandle typeHandle = rtsContract.GetTypeHandle(methodTablePtr); 6996ITypeHandle methodTableHandle = rtsContract.GetTypeHandle(methodTable.ToTargetPointer(_target)); 7031private readonly ITypeHandle _methodTable; 7038public SOSMethodEnum(Target target, ITypeHandle methodTable, ISOSMethodEnum? legacyMethodEnum, Lock apiLock) 7075ITypeHandle typeHandle = _rts.GetTypeHandle(mtAddr); 7099ITypeHandle typeHandle = _rts.GetTypeHandle(mtAddr); 7223ITypeHandle methodTableHandle = rts.GetTypeHandle(mt.ToTargetPointer(_target));
SOSDacImpl.IXCLRDataProcess.cs (6)
844private IEnumerable<ITypeHandle> IterateTypeParams(Contracts.ModuleHandle moduleHandle) 891ITypeHandle mainMT = _rts.GetTypeHandle(mtAddr); 905ITypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 928foreach (ITypeHandle typeParam in IterateTypeParams(moduleHandle)) 942ITypeHandle cmtHandle = _rts.GetTypeHandle(cmt); 971ITypeHandle mt = rts.GetTypeHandle(mtAddr);
TypeHandleExtensions.cs (4)
15public static string GetName(this ITypeHandle typeHandle, Target target) 22private static void AppendName(ITypeHandle typeHandle, Target target, StringBuilder result) 55ReadOnlySpan<ITypeHandle> instantiation = runtimeTypeSystem.GetInstantiation(typeHandle); 62private static void AppendTypeDescName(ITypeHandle typeHandle, Target target, StringBuilder result)
TypeNameBuilder.cs (19)
65public static void AppendMethodImpl(Target target, StringBuilder stringBuilder, Contracts.MethodDescHandle method, ReadOnlySpan<ITypeHandle> typeInstantiation, TypeNameFormat format) 70ITypeHandle? th = null; 125ITypeHandle methodType = th ?? throw new InvalidOperationException("Metadata-backed method has no declaring type."); 133ReadOnlySpan<ITypeHandle> genericMethodInstantiation = runtimeTypeSystem.GetGenericMethodInstantiation(method); 146ReadOnlySpan<ITypeHandle> typeInstantiationSigFormat = default; 162public static ITypeHandle GetExactOwningType(IRuntimeTypeSystem runtimeTypeSystem, ITypeHandle possiblyDerivedType, MethodDescHandle method) 164ITypeHandle approxOwner = runtimeTypeSystem.GetTypeHandle(runtimeTypeSystem.GetMethodTable(method)); 188public static void AppendType(Target target, StringBuilder stringBuilder, ITypeHandle? typeHandle, TypeNameFormat format) 193public static void AppendType(Target target, StringBuilder stringBuilder, ITypeHandle? typeHandle, ReadOnlySpan<ITypeHandle> typeInstantiation, TypeNameFormat format) 199private static void AppendTypeCore(ref TypeNameBuilder tnb, ITypeHandle? typeHandle, ReadOnlySpan<ITypeHandle> instantiation, TypeNameFormat format) 245else if (typeSystemContract.IsFunctionPointer(typeHandle, out ReadOnlySpan<ITypeHandle> retAndArgTypes, out SignatureCallingConvention callConv)) 303ReadOnlySpan<ITypeHandle> instantiationSpan = typeSystemContract.GetInstantiation(typeHandle); 333internal static void AppendInst(Target target, StringBuilder stringBuilder, ReadOnlySpan<ITypeHandle> inst, TypeNameFormat format) 339private static void AppendInst(ref TypeNameBuilder tnb, ReadOnlySpan<ITypeHandle> inst, TypeNameFormat format) 342foreach (ITypeHandle arg in inst) 510private static void AppendContinuationName(ref TypeNameBuilder tnb, IRuntimeTypeSystem typeSystemContract, ITypeHandle typeHandle)