1 instantiation of SealedVTableNode
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
472return new SealedVTableNode(type);
8 references to SealedVTableNode
ILCompiler.Compiler (8)
Compiler\DependencyAnalysis\EETypeNode.cs (2)
774SealedVTableNode sealedVTable = factory.SealedVTable(_type.ConvertToCanonForm(CanonicalFormKind.Specific)); 1117SealedVTableNode sealedVTable = factory.SealedVTable(_type.ConvertToCanonForm(CanonicalFormKind.Specific));
Compiler\DependencyAnalysis\NodeFactory.cs (3)
470_sealedVtableNodes = new NodeCache<TypeDesc, SealedVTableNode>((TypeDesc type) => 955private NodeCache<TypeDesc, SealedVTableNode> _sealedVtableNodes; 957internal SealedVTableNode SealedVTable(TypeDesc type)
Compiler\DependencyAnalysis\SealedVTableNode.cs (1)
294return comparer.Compare(_type, ((SealedVTableNode)other)._type);
Compiler\VirtualMethodCallHelper.cs (2)
17SealedVTableNode sealedVTable = factory.SealedVTable(implType); 46SealedVTableNode sealedVTable = factory.SealedVTable(implType);