2 instantiations of ReadyToRunCompilerContext
crossgen2 (2)
Program.cs (2)
144_typeSystemContext = new ReadyToRunCompilerContext(targetDetails, genericsMode, versionBubbleIncludesCoreLib, 288typeSystemContext = new ReadyToRunCompilerContext(targetDetails, genericsMode, singleCompilationVersionBubbleIncludesCoreLib,
14 references to ReadyToRunCompilerContext
crossgen2 (5)
Crossgen2RootCommand.cs (2)
94new("--maxgenericcycle") { DefaultValueFactory = _ => ReadyToRunCompilerContext.DefaultGenericCycleDepthCutoff, Description = SR.GenericCycleDepthCutoff }; 96new("--maxgenericcyclebreadth") { DefaultValueFactory = _ => ReadyToRunCompilerContext.DefaultGenericCycleBreadthCutoff, Description = SR.GenericCycleBreadthCutoff };
Program.cs (3)
35private ReadyToRunCompilerContext _typeSystemContext; 270ReadyToRunCompilerContext typeSystemContext = _typeSystemContext; 320private void RunSingleCompilation(Dictionary<string, string> inFilePaths, InstructionSetSupport instructionSetSupport, string compositeRootPath, Dictionary<string, string> unrootedInputFilePaths, HashSet<ModuleDesc> versionBubbleModulesHash, ReadyToRunCompilerContext typeSystemContext, Logger logger)
ILCompiler.ReadyToRun (9)
Compiler\DependencyAnalysis\ReadyToRun\TypeFixupSignature.cs (2)
225ReadyToRunCompilerContext context = (ReadyToRunCompilerContext)type.Context;
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)
554bool targetAllowsRuntimeCodeGeneration = ((ReadyToRunCompilerContext)methodNeedingCode.Context).TargetAllowsRuntimeCodeGeneration;