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