2 instantiations of FatFunctionPointerNode
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
326return new FatFunctionPointerNode(method.Method, method.IsUnboxingStub, addressTaken: false); 331return 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)
324_fatFunctionPointers = new NodeCache<MethodKey, FatFunctionPointerNode>(method => 329_fatAddressTakenFunctionPointers = new NodeCache<MethodKey, FatFunctionPointerNode>(method => 1142private NodeCache<MethodKey, FatFunctionPointerNode> _fatFunctionPointers; 1149private NodeCache<MethodKey, FatFunctionPointerNode> _fatAddressTakenFunctionPointers;