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