1 write to TargetAllowsRuntimeCodeGeneration
ILCompiler.ReadyToRun (1)
Compiler\ReadyToRunCompilerContext.cs (1)
68TargetAllowsRuntimeCodeGeneration = targetAllowsRuntimeCodeGeneration;
5 references to TargetAllowsRuntimeCodeGeneration
crossgen2 (2)
Program.cs (2)
602if (!typeSystemContext.TargetAllowsRuntimeCodeGeneration && typeSystemContext.BubbleIncludesCoreModule) 657nodeFactoryFlags.EnableCachedInterfaceDispatchSupport = Get(_command.EnableCachedInterfaceDispatchSupport) ?? !typeSystemContext.TargetAllowsRuntimeCodeGeneration;
ILCompiler.ReadyToRun (3)
Compiler\ReadyToRunCodegenCompilation.cs (1)
388bool targetAllowsRuntimeCodeGeneration = ((ReadyToRunCompilerContext)nodeFactory.TypeSystemContext).TargetAllowsRuntimeCodeGeneration;
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
552bool targetAllowsRuntimeCodeGeneration = ((ReadyToRunCompilerContext)methodNeedingCode.Context).TargetAllowsRuntimeCodeGeneration;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
3783if (((ReadyToRunCompilerContext)context).TargetAllowsRuntimeCodeGeneration)