1 instantiation of VirtualMethodUseNode
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
1380return new VirtualMethodUseNode(key);
7 references to VirtualMethodUseNode
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
1369private sealed class VirtualMethodUseHashtable : LockFreeReaderHashtable<MethodDesc, VirtualMethodUseNode> 1373protected override bool CompareKeyToValue(MethodDesc key, VirtualMethodUseNode value) => key == value.Method; 1374protected override bool CompareValueToValue(VirtualMethodUseNode value1, VirtualMethodUseNode value2) => value1.Method == value2.Method; 1375protected override VirtualMethodUseNode CreateValueFromKey(MethodDesc key) 1383protected 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