1 instantiation of MethodFixupKey
ILCompiler.ReadyToRun (1)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
618
return _methodSignatures.GetOrAdd(new
MethodFixupKey
(fixupKind, key));
5 references to MethodFixupKey
ILCompiler.ReadyToRun (5)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (5)
325
_methodSignatures = new NodeCache<
MethodFixupKey
, MethodFixupSignature>(key =>
583
private struct MethodFixupKey : IEquatable<
MethodFixupKey
>
594
public bool Equals(
MethodFixupKey
other)
601
return obj is
MethodFixupKey
other && Equals(other);
610
private NodeCache<
MethodFixupKey
, MethodFixupSignature> _methodSignatures;