2 instantiations of ReadyToRunCompilerContext
crossgen2 (2)
Program.cs (2)
149_typeSystemContext = new ReadyToRunCompilerContext(targetDetails, genericsMode, versionBubbleIncludesCoreLib, 294typeSystemContext = new ReadyToRunCompilerContext(targetDetails, genericsMode, singleCompilationVersionBubbleIncludesCoreLib,
16 references to ReadyToRunCompilerContext
crossgen2 (5)
Crossgen2RootCommand.cs (2)
92new("--maxgenericcycle") { DefaultValueFactory = _ => ReadyToRunCompilerContext.DefaultGenericCycleDepthCutoff, Description = SR.GenericCycleDepthCutoff }; 94new("--maxgenericcyclebreadth") { DefaultValueFactory = _ => ReadyToRunCompilerContext.DefaultGenericCycleBreadthCutoff, Description = SR.GenericCycleBreadthCutoff };
Program.cs (3)
35private ReadyToRunCompilerContext _typeSystemContext; 276ReadyToRunCompilerContext typeSystemContext = _typeSystemContext; 327private void RunSingleCompilation(Dictionary<string, string> inFilePaths, InstructionSetSupport instructionSetSupport, string compositeRootPath, Dictionary<string, string> unrootedInputFilePaths, HashSet<ModuleDesc> versionBubbleModulesHash, ReadyToRunCompilerContext typeSystemContext, Logger logger)
ILCompiler.ReadyToRun (11)
Compiler\DependencyAnalysis\ReadyToRun\TypeFixupSignature.cs (2)
227ReadyToRunCompilerContext context = (ReadyToRunCompilerContext)type.Context;
Compiler\ReadyToRunCodegenCompilation.cs (1)
388bool targetAllowsRuntimeCodeGeneration = ((ReadyToRunCompilerContext)nodeFactory.TypeSystemContext).TargetAllowsRuntimeCodeGeneration;
Compiler\ReadyToRunHardwareIntrinsicRootProvider.cs (1)
15public class ReadyToRunHardwareIntrinsicRootProvider(ReadyToRunCompilerContext context) : ICompilationRootProvider
Compiler\ReadyToRunLibraryRootProvider.cs (1)
24_instructionSetSupport = ((ReadyToRunCompilerContext)module.Context).InstructionSetSupport;
Compiler\ReadyToRunMetadataFieldLayoutAlgorithm.cs (1)
23return ((ReadyToRunCompilerContext)type.Context).CalculateFieldBaseOffset(type);
Compiler\ReadyToRunProfilingRootProvider.cs (1)
28_instructionSetSupport = ((ReadyToRunCompilerContext)module.Context).InstructionSetSupport;
Compiler\ReadyToRunVisibilityRootProvider.cs (1)
24_instructionSetSupport = ((ReadyToRunCompilerContext)module.Context).InstructionSetSupport;
Compiler\ReadyToRunXmlRootProvider.cs (1)
90_instructionSetSupport = ((ReadyToRunCompilerContext)owningModule.Context).InstructionSetSupport;
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)