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