17 references to AddressTakenMethodEntrypoint
ILCompiler.Compiler (17)
Compiler\DelegateCreationInfo.cs (1)
144return factory.AddressTakenMethodEntrypoint(TargetMethod, TargetMethodIsUnboxingThunk);
Compiler\DependencyAnalysis\EETypeNode.cs (4)
409factory.AddressTakenMethodEntrypoint(canonImpl, impl.OwningType.IsValueType), 487factory.AddressTakenMethodEntrypoint(defaultIntfMethod), 549factory.AddressTakenMethodEntrypoint(defaultIntfMethod), 1024implSymbol = factory.AddressTakenMethodEntrypoint(canonImplMethod, implMethod.OwningType.IsValueType);
Compiler\DependencyAnalysis\ExactMethodInstantiationsNode.cs (2)
57IMethodNode methodEntryPointNode = factory.AddressTakenMethodEntrypoint(method, getUnboxingStub); 110IMethodNode methodEntryPointNode = factory.AddressTakenMethodEntrypoint(method, getUnboxingStub);
Compiler\DependencyAnalysis\FatFunctionPointerNode.cs (1)
73? factory.AddressTakenMethodEntrypoint(canonMethod, _isUnboxingStub)
Compiler\DependencyAnalysis\GenericLookupResult.cs (2)
665factory.AddressTakenMethodEntrypoint(canonMethod, _isUnboxingThunk)); 1140return factory.AddressTakenMethodEntrypoint(implMethod);
Compiler\DependencyAnalysis\NativeLayoutVertexNode.cs (1)
676IMethodNode methodEntryPointNode = factory.AddressTakenMethodEntrypoint(_method, IsUnboxingStub);
Compiler\DependencyAnalysis\NodeFactory.cs (1)
1174return AddressTakenMethodEntrypoint(method, isUnboxingStub);
Compiler\DependencyAnalysis\ReflectionInvokeMapNode.cs (2)
69dependencies.Add(factory.AddressTakenMethodEntrypoint(method), "Body of a reflectable method"); 192factory.AddressTakenMethodEntrypoint(method,
Compiler\DependencyAnalysis\SealedVTableNode.cs (3)
139node = factory.AddressTakenMethodEntrypoint(implMethod.GetCanonMethodTarget(CanonicalFormKind.Specific), unboxingStub: !implMethod.Signature.IsStatic && declType.IsValueType); 199node = factory.AddressTakenMethodEntrypoint(targetMethod.GetCanonMethodTarget(CanonicalFormKind.Specific), unboxingStub: !targetMethod.Signature.IsStatic && declType.IsValueType); 234node = factory.AddressTakenMethodEntrypoint(canonImplMethod, unboxingStub: implMethod.OwningType.IsValueType && !implMethod.Signature.IsStatic);