36 references to ReadyToRunFlags
ILCompiler.ReadyToRun (36)
Compiler\CompilationModuleGroup.ReadyToRun.cs (1)
88public abstract ReadyToRunFlags GetReadyToRunFlags();
Compiler\DependencyAnalysis\ReadyToRun\InliningInfoNode.cs (1)
239bool crossModuleMultiModuleFormat = (factory.CompilationModuleGroup.GetReadyToRunFlags() & ReadyToRunFlags.READYTORUN_FLAG_MultiModuleVersionBubble) != 0;
Compiler\DependencyAnalysis\ReadyToRun\ReadyToRunHeaderNode.cs (5)
99private readonly ReadyToRunFlags _flags; 102public ReadyToRunHeaderNode(ReadyToRunFlags flags, EcmaModule moduleToCheckForSkipTypeValidation) 161flagsInt |= (int)ReadyToRunFlags.READYTORUN_FLAG_SkipTypeValidation; 214public GlobalHeaderNode(ReadyToRunFlags flags, EcmaModule moduleToCheckForSkipValidation) 242public AssemblyHeaderNode(ReadyToRunFlags flags, int index)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (2)
344ReadyToRunFlags flags, 1108AssemblyHeaderNode perAssemblyHeader = new AssemblyHeaderNode(ReadyToRunFlags.READYTORUN_FLAG_Component, assemblyIndex);
Compiler\NoMethodsCompilationModuleGroup.cs (2)
28public override ReadyToRunFlags GetReadyToRunFlags() 31return base.GetReadyToRunFlags() | ReadyToRunFlags.READYTORUN_FLAG_Partial;
Compiler\ReadyToRunCodegenCompilation.cs (10)
493ReadyToRunFlags flags = 494ReadyToRunFlags.READYTORUN_FLAG_Component | 495ReadyToRunFlags.READYTORUN_FLAG_NonSharedPInvokeStubs; 499flags |= ReadyToRunFlags.READYTORUN_FLAG_PlatformNeutralSource; 504flags |= ReadyToRunFlags.READYTORUN_FLAG_SkipTypeValidation; 511flags |= ReadyToRunFlags.READYTORUN_FLAG_StrippedILBodies; 516flags |= ReadyToRunFlags.READYTORUN_FLAG_StrippedInliningInfo; 521flags |= ReadyToRunFlags.READYTORUN_FLAG_StrippedDebugInfo; 524flags |= _nodeFactory.CompilationModuleGroup.GetReadyToRunFlags() & ReadyToRunFlags.READYTORUN_FLAG_MultiModuleVersionBubble; 538flags |= ReadyToRunFlags.READYTORUN_FLAG_PlatformNativeImage;
Compiler\ReadyToRunCodegenCompilationBuilder.cs (4)
257ReadyToRunFlags flags = ReadyToRunFlags.READYTORUN_FLAG_NonSharedPInvokeStubs; 260flags |= ReadyToRunFlags.READYTORUN_FLAG_PlatformNeutralSource; 265flags |= ReadyToRunFlags.READYTORUN_FLAG_SkipTypeValidation;
Compiler\ReadyToRunCompilationModuleGroupBase.cs (5)
160public override ReadyToRunFlags GetReadyToRunFlags() 162ReadyToRunFlags flags = default(ReadyToRunFlags); 165flags |= ReadyToRunFlags.READYTORUN_FLAG_MultiModuleVersionBubble; 169flags |= ReadyToRunFlags.READYTORUN_FLAG_UnrelatedR2RCode;
Compiler\ReadyToRunSingleAssemblyCompilationModuleGroup.cs (3)
58public override ReadyToRunFlags GetReadyToRunFlags() 62ReadyToRunFlags flags = base.GetReadyToRunFlags(); 64flags |= ReadyToRunFlags.READYTORUN_FLAG_Partial;
Compiler\SingleMethodCompilationModuleGroup.cs (2)
32public override ReadyToRunFlags GetReadyToRunFlags() 35return base.GetReadyToRunFlags() | ReadyToRunFlags.READYTORUN_FLAG_Partial;
parent\ILCompiler.Reflection.ReadyToRun\PEReaderExtensions.cs (1)
188return (reader.ReadUInt32() & (uint)ReadyToRunFlags.READYTORUN_FLAG_PlatformNeutralSource) != 0;