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