7 references to GetModuleTokenForType
ILCompiler.ReadyToRun (7)
Compiler\DependencyAnalysis\ReadyToRun\ILBodyFixupSignature.cs (1)
98
if (factory.SignatureContext.Resolver.
GetModuleTokenForType
((EcmaType)typeRef, allowDynamicallyCreatedReference: true, throwIfNotFound: false).Module == null)
Compiler\DependencyAnalysis\ReadyToRun\SignatureContext.cs (1)
76
return Resolver.
GetModuleTokenForType
(type, allowDynamicallyCreatedReference:true, throwIfNotFound: throwIfNotFound);
Compiler\ExternalReferenceTokenManager.cs (1)
98
TypeDesc typeDesc => _tokenResolver.
GetModuleTokenForType
(typeDesc, allowDynamicallyCreatedReference: true, throwIfNotFound: false),
Compiler\ReadyToRunCompilationModuleGroupBase.cs (1)
845
return !_tokenResolver.
GetModuleTokenForType
(ecmaType, allowDynamicallyCreatedReference: false, throwIfNotFound: false).IsNull;
JitInterface\CorInfoImpl.ReadyToRun.cs (3)
1545
return _compilation.NodeFactory.Resolver.
GetModuleTokenForType
(paramType, allowDynamicallyCreatedReference: true, throwIfNotFound: true);
1549
return _compilation.NodeFactory.Resolver.
GetModuleTokenForType
(ecmaType, allowDynamicallyCreatedReference: true, throwIfNotFound: true);
1555
return _compilation.NodeFactory.Resolver.
GetModuleTokenForType
(typeDesc, allowDynamicallyCreatedReference: true, throwIfNotFound: true);