1 instantiation of MethodInternKey
ILCompiler.Compiler (1)
Compiler\MethodBodyDeduplicator.cs (1)
53
var key = new
MethodInternKey
(body, factory);
7 references to MethodInternKey
ILCompiler.Compiler (7)
Compiler\MethodBodyDeduplicator.cs (7)
37
var methodHash = new HashSet<
MethodInternKey
>(_previousHashCount, new MethodInternComparer(factory, previousSymbolRemapping, _genericsOnly));
53
var
key = new MethodInternKey(body, factory);
54
if (methodHash.TryGetValue(key, out
MethodInternKey
found))
96
private sealed class MethodInternComparer : IEqualityComparer<
MethodInternKey
>
105
public int GetHashCode(
MethodInternKey
key) => key.HashCode;
150
public bool Equals(
MethodInternKey
a,
MethodInternKey
b)