3 instantiations of TypeAndMethod
ILCompiler.ReadyToRun (3)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (2)
528TypeAndMethod key = new TypeAndMethod(method.ConstrainedType, method, isInstantiatingStub, isPrecodeImportRequired, isJumpableImportRequired); 617TypeAndMethod key = new TypeAndMethod(method.ConstrainedType, method, isInstantiatingStub, false, false);
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (1)
485TypeAndMethod ctorKey = new TypeAndMethod(
14 references to TypeAndMethod
ILCompiler.ReadyToRun (14)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (7)
318_importMethods = new NodeCache<TypeAndMethod, IMethodNode>(CreateMethodEntrypoint); 488private NodeCache<TypeAndMethod, IMethodNode> _importMethods; 490private IMethodNode CreateMethodEntrypoint(TypeAndMethod key) 528TypeAndMethod key = new TypeAndMethod(method.ConstrainedType, method, isInstantiatingStub, isPrecodeImportRequired, isJumpableImportRequired); 586public readonly TypeAndMethod TypeAndMethod; 588public MethodFixupKey(ReadyToRunFixupKind fixupKind, TypeAndMethod typeAndMethod) 617TypeAndMethod key = new TypeAndMethod(method.ConstrainedType, method, isInstantiatingStub, false, false);
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (4)
134_delegateCtors = new NodeCache<TypeAndMethod, Import>(ctorKey => 481private NodeCache<TypeAndMethod, Import> _delegateCtors = new NodeCache<TypeAndMethod, Import>(); 485TypeAndMethod ctorKey = new TypeAndMethod(
Compiler\DependencyAnalysis\TypeAndMethod.cs (3)
13internal struct TypeAndMethod : IEquatable<TypeAndMethod> 30public bool Equals(TypeAndMethod other) 41return obj is TypeAndMethod other && Equals(other);