1 instantiation of VirtualMethodUseNode
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
1387return new VirtualMethodUseNode(key);
7 references to VirtualMethodUseNode
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
1376private sealed class VirtualMethodUseHashtable : LockFreeReaderHashtable<MethodDesc, VirtualMethodUseNode> 1380protected override bool CompareKeyToValue(MethodDesc key, VirtualMethodUseNode value) => key == value.Method; 1381protected override bool CompareValueToValue(VirtualMethodUseNode value1, VirtualMethodUseNode value2) => value1.Method == value2.Method; 1382protected override VirtualMethodUseNode CreateValueFromKey(MethodDesc key) 1390protected override int GetValueHashCode(VirtualMethodUseNode value) => value.Method.GetHashCode();
Compiler\DependencyAnalysis\VTableSliceNode.cs (1)
68/// Gets a value indicating whether <see cref="VirtualMethodUseNode"> is needed to track virtual method uses