2 instantiations of FatFunctionPointerNode
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
326
return new
FatFunctionPointerNode
(method.Method, method.IsUnboxingStub, addressTaken: false);
331
return new
FatFunctionPointerNode
(method.Method, method.IsUnboxingStub, addressTaken: true);
7 references to FatFunctionPointerNode
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\FatFunctionPointerNode.cs (3)
101
var compare = _isUnboxingStub.CompareTo(((
FatFunctionPointerNode
)other)._isUnboxingStub);
105
compare = _isAddressTaken.CompareTo(((
FatFunctionPointerNode
)other)._isAddressTaken);
109
return 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 =>
1142
private NodeCache<MethodKey,
FatFunctionPointerNode
> _fatFunctionPointers;
1149
private NodeCache<MethodKey,
FatFunctionPointerNode
> _fatAddressTakenFunctionPointers;