2 instantiations of FatFunctionPointerNode
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
319return new FatFunctionPointerNode(method.Method, method.IsUnboxingStub, addressTaken: false); 324return new FatFunctionPointerNode(method.Method, method.IsUnboxingStub, addressTaken: true);
7 references to FatFunctionPointerNode
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\FatFunctionPointerNode.cs (3)
101var compare = _isUnboxingStub.CompareTo(((FatFunctionPointerNode)other)._isUnboxingStub); 105compare = _isAddressTaken.CompareTo(((FatFunctionPointerNode)other)._isAddressTaken); 109return comparer.Compare(Method, ((FatFunctionPointerNode)other).Method);
Compiler\DependencyAnalysis\NodeFactory.cs (4)
317_fatFunctionPointers = new NodeCache<MethodKey, FatFunctionPointerNode>(method => 322_fatAddressTakenFunctionPointers = new NodeCache<MethodKey, FatFunctionPointerNode>(method => 1135private NodeCache<MethodKey, FatFunctionPointerNode> _fatFunctionPointers; 1142private NodeCache<MethodKey, FatFunctionPointerNode> _fatAddressTakenFunctionPointers;