1 write to _command
crossgen2 (1)
Program.cs (1)
45_command = command;
66 references to _command
crossgen2 (66)
Program.cs (66)
62string imageBaseArg = Get(_command.ImageBase); 77var logger = new Logger(Console.Out, Get(_command.IsVerbose)); 80Helpers.GetTargetSpec(Get(_command.TargetArchitecture), Get(_command.TargetOS)); 91bool allowOptimistic = _command.OptimizationMode != OptimizationMode.PreferSize; 98InstructionSetSupport instructionSetSupport = Helpers.ConfigureInstructionSetSupport(Get(_command.InstructionSet), Get(_command.MaxVectorTBitWidth), isVectorTOptimistic, targetArchitecture, targetOS, 113Dictionary<string, string> inputFilePathsArg = _command.Result.GetValue(_command.InputFilePaths); 114Dictionary<string, string> unrootedInputFilePathsArg = Get(_command.UnrootedInputFilePaths); 154string compositeRootPath = Get(_command.CompositeRootPath); 160Dictionary<string, string> referenceFilePaths = Get(_command.ReferenceFilePaths); 236Dictionary<string, string> inputBubbleReferenceFilePaths = Get(_command.InputBubbleReferenceFilePaths); 274string systemModuleName = Get(_command.SystemModuleName) ?? Helpers.DefaultSystemModule; 350string dgmlLogFileName = Get(_command.DgmlLogFileName); 369if (!_command.CompositeOrInputBubble) 382string[] crossModuleInlining = Get(_command.CrossModuleInlining); 409foreach (var file in Get(_command.MibcFilePaths)) 415bool composite = Get(_command.Composite); 421string rtrHeaderSymbolName = Get(_command.ReadyToRunHeaderSymbolName); 423ReadyToRunContainerFormat format = Get(_command.OutputFormat); 446bool compileBubbleGenerics = Get(_command.CompileBubbleGenerics); 464string nonLocalGenericsModule = Get(_command.NonLocalGenericsModule); 510bool compileNoMethods = Get(_command.CompileNoMethods); 534string callChainProfileFile = Get(_command.CallChainProfileFile); 563Get(_command.EmbedPgoData), 564Get(_command.SupportIbc), 566Get(_command.SynthesizeRandomMibc)); 568bool partial = Get(_command.Partial); 595if (!_command.CompositeOrInputBubble) 613OptimizationMode optimizationMode = _command.OptimizationMode; 614if (optimizationMode == OptimizationMode.None && !Get(_command.OptimizeDisabled) && !composite) 621string compositeKeyFile = Get(_command.CompositeKeyFile); 650DependencyTrackingLevel.None : (Get(_command.GenerateFullDgmlLog) ? DependencyTrackingLevel.All : DependencyTrackingLevel.First); 653nodeFactoryFlags.OptimizeAsyncMethods = Get(_command.AsyncMethodOptimization); 654nodeFactoryFlags.TypeValidation = Get(_command.TypeValidation); 655nodeFactoryFlags.DeterminismStress = Get(_command.DeterminismStress); 656nodeFactoryFlags.PrintReproArgs = Get(_command.PrintReproInstructions); 657nodeFactoryFlags.EnableCachedInterfaceDispatchSupport = Get(_command.EnableCachedInterfaceDispatchSupport) ?? !typeSystemContext.TargetAllowsRuntimeCodeGeneration; 658nodeFactoryFlags.StripInliningInfo = Get(_command.StripInliningInfo); 659nodeFactoryFlags.StripDebugInfo = Get(_command.StripDebugInfo); 660nodeFactoryFlags.StripILBodies = Get(_command.StripILBodies); 663.UseMapFile(Get(_command.Map)) 664.UseMapCsvFile(Get(_command.MapCsv)) 665.UsePdbFile(Get(_command.Pdb), Get(_command.PdbPath)) 666.UsePerfMapFile(Get(_command.PerfMap), Get(_command.PerfMapPath), Get(_command.PerfMapFormatVersion)) 670.FileLayoutAlgorithms(Get(_command.MethodLayout), Get(_command.FileLayout)) 672.UseJitPath(Get(_command.JitPath)) 674.UseCustomPESectionAlignment(Get(_command.CustomPESectionAlignment)) 675.UseVerifyTypeAndFieldLayout(Get(_command.VerifyTypeAndFieldLayout)) 676.UseHotColdSplitting(Get(_command.HotColdSplitting)) 681.UseBackendOptions(Get(_command.CodegenOptions)) 683.UseParallelism(Get(_command.Parallelism)) 684.UseResilience(Get(_command.Resilient)) 690depthCutoff: Get(_command.GenericCycleDepthCutoff), 691breadthCutoff: Get(_command.GenericCycleBreadthCutoff)); 743string[] singleMethodGenericArgs = Get(_command.SingleMethodGenericArgs); 744string singleMethodName = Get(_command.SingleMethodName); 745string singleMethodTypeName = Get(_command.SingleMethodTypeName); 764if (Get(_command.SingleMethodIndex) != 0) 766if (curIndex == Get(_command.SingleMethodIndex)) 978private T Get<T>(Option<T> option) => _command.Result.GetValue(option);