3 overrides of InstantiateSignature
ILCompiler.TypeSystem (3)
parent\parent\Common\TypeSystem\Common\ArrayType.cs (1)
328public override MethodDesc InstantiateSignature(Instantiation typeInstantiation, Instantiation methodInstantiation)
parent\parent\Common\TypeSystem\Common\MethodDelegator.cs (1)
57public abstract override MethodDesc InstantiateSignature(Instantiation typeInstantiation, Instantiation methodInstantiation);
parent\parent\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
605public override MethodDesc InstantiateSignature(Instantiation typeInstantiation, Instantiation methodInstantiation) => this;
12 references to InstantiateSignature
ILCompiler.Compiler (5)
Compiler\Dataflow\HandleCallAction.cs (1)
824MethodDesc instantiatedMethod = _method.InstantiateSignature(typeInstantiation, methodInstantiation);
Compiler\DependencyAnalysis\EETypeNode.cs (1)
530implMethod = implMethod.InstantiateSignature(defType.Instantiation, Instantiation.Empty);
Compiler\DependencyAnalysis\InterfaceDispatchMapNode.cs (1)
241implMethod = implMethod.InstantiateSignature(declType.Instantiation, Instantiation.Empty);
Compiler\DependencyAnalysis\SealedVTableNode.cs (1)
215implMethod = implMethod.InstantiateSignature(declType.Instantiation, Instantiation.Empty);
parent\parent\Common\Compiler\DependencyAnalysis\GVMDependenciesNode.cs (1)
161.InstantiateSignature(potentialOverrideType.Instantiation, _method.Instantiation);
ILCompiler.ReadyToRun (4)
Compiler\DependencyAnalysis\InheritedVirtualMethodsNode.cs (1)
121implMethod = implMethod.InstantiateSignature(defType.Instantiation, Instantiation.Empty);
parent\parent\Common\Compiler\DependencyAnalysis\GVMDependenciesNode.cs (1)
161.InstantiateSignature(potentialOverrideType.Instantiation, _method.Instantiation);
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
1872result = methodResult.InstantiateSignature(typeInst, methodInst);
parent\parent\Common\JitInterface\UnboxingMethodDesc.cs (1)
60MethodDesc realInstantiateSignature = _wrappedMethod.InstantiateSignature(typeInstantiation, methodInstantiation);
ILCompiler.RyuJit (2)
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
1872result = methodResult.InstantiateSignature(typeInst, methodInst);
parent\parent\Common\JitInterface\UnboxingMethodDesc.cs (1)
60MethodDesc realInstantiateSignature = _wrappedMethod.InstantiateSignature(typeInstantiation, methodInstantiation);
ILCompiler.TypeSystem (1)
parent\parent\Common\TypeSystem\IL\InstantiatedMethodIL.cs (1)
95o = ((MethodDesc)o).InstantiateSignature(_typeInstantiation, _methodInstantiation);