2 instantiations of ReadyToRunCompilerContext
crossgen2 (2)
Program.cs (2)
144
_typeSystemContext = new
ReadyToRunCompilerContext
(targetDetails, genericsMode, versionBubbleIncludesCoreLib,
288
typeSystemContext = new
ReadyToRunCompilerContext
(targetDetails, genericsMode, singleCompilationVersionBubbleIncludesCoreLib,
14 references to ReadyToRunCompilerContext
crossgen2 (5)
Crossgen2RootCommand.cs (2)
94
new("--maxgenericcycle") { DefaultValueFactory = _ =>
ReadyToRunCompilerContext
.DefaultGenericCycleDepthCutoff, Description = SR.GenericCycleDepthCutoff };
96
new("--maxgenericcyclebreadth") { DefaultValueFactory = _ =>
ReadyToRunCompilerContext
.DefaultGenericCycleBreadthCutoff, Description = SR.GenericCycleBreadthCutoff };
Program.cs (3)
35
private
ReadyToRunCompilerContext
_typeSystemContext;
270
ReadyToRunCompilerContext
typeSystemContext = _typeSystemContext;
320
private 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)
225
ReadyToRunCompilerContext
context = (
ReadyToRunCompilerContext
)type.Context;
Compiler\ReadyToRunHardwareIntrinsicRootProvider.cs (1)
15
public class ReadyToRunHardwareIntrinsicRootProvider(
ReadyToRunCompilerContext
context) : ICompilationRootProvider
Compiler\ReadyToRunLibraryRootProvider.cs (1)
24
_instructionSetSupport = ((
ReadyToRunCompilerContext
)module.Context).InstructionSetSupport;
Compiler\ReadyToRunMetadataFieldLayoutAlgorithm.cs (1)
23
return ((
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)
554
bool targetAllowsRuntimeCodeGeneration = ((
ReadyToRunCompilerContext
)methodNeedingCode.Context).TargetAllowsRuntimeCodeGeneration;