65 references to Get
crossgen2 (65)
Program.cs (65)
46_inputBubble = Get(command.InputBubble);
47_singleFileCompilation = Get(command.SingleFileCompilation);
48_outNearInput = Get(command.OutNearInput);
49_outputFilePath = Get(command.OutputFilePath);
51if (Get(command.WaitForDebugger))
62string imageBaseArg = Get(_command.ImageBase);
77var logger = new Logger(Console.Out, Get(_command.IsVerbose));
86TargetArchitecture targetArchitecture = Get(_command.TargetArchitecture);
87TargetOS targetOS = Get(_command.TargetOS);
98InstructionSetSupport instructionSetSupport = Helpers.ConfigureInstructionSetSupport(Get(_command.InstructionSet), Get(_command.MaxVectorTBitWidth), isVectorTOptimistic, targetArchitecture, targetOS,
109Dictionary<string, string> unrootedInputFilePathsArg = Get(_command.UnrootedInputFilePaths);
148string compositeRootPath = Get(_command.CompositeRootPath);
154Dictionary<string, string> referenceFilePaths = Get(_command.ReferenceFilePaths);
230Dictionary<string, string> inputBubbleReferenceFilePaths = Get(_command.InputBubbleReferenceFilePaths);
268string systemModuleName = Get(_command.SystemModuleName) ?? Helpers.DefaultSystemModule;
343string dgmlLogFileName = Get(_command.DgmlLogFileName);
375string[] crossModuleInlining = Get(_command.CrossModuleInlining);
402foreach (var file in Get(_command.MibcFilePaths))
408bool composite = Get(_command.Composite);
414string rtrHeaderSymbolName = Get(_command.ReadyToRunHeaderSymbolName);
416ReadyToRunContainerFormat format = Get(_command.OutputFormat);
439bool compileBubbleGenerics = Get(_command.CompileBubbleGenerics);
457string nonLocalGenericsModule = Get(_command.NonLocalGenericsModule);
503bool compileNoMethods = Get(_command.CompileNoMethods);
527string callChainProfileFile = Get(_command.CallChainProfileFile);
556Get(_command.EmbedPgoData),
557Get(_command.SupportIbc),
559Get(_command.SynthesizeRandomMibc));
561bool partial = Get(_command.Partial);
607if (optimizationMode == OptimizationMode.None && !Get(_command.OptimizeDisabled) && !composite)
614string compositeKeyFile = Get(_command.CompositeKeyFile);
643DependencyTrackingLevel.None : (Get(_command.GenerateFullDgmlLog) ? DependencyTrackingLevel.All : DependencyTrackingLevel.First);
646nodeFactoryFlags.OptimizeAsyncMethods = Get(_command.AsyncMethodOptimization);
647nodeFactoryFlags.TypeValidation = Get(_command.TypeValidation);
648nodeFactoryFlags.DeterminismStress = Get(_command.DeterminismStress);
649nodeFactoryFlags.PrintReproArgs = Get(_command.PrintReproInstructions);
650nodeFactoryFlags.EnableCachedInterfaceDispatchSupport = Get(_command.EnableCachedInterfaceDispatchSupport) ?? !typeSystemContext.TargetAllowsRuntimeCodeGeneration;
651nodeFactoryFlags.StripInliningInfo = Get(_command.StripInliningInfo);
652nodeFactoryFlags.StripDebugInfo = Get(_command.StripDebugInfo);
653nodeFactoryFlags.StripILBodies = Get(_command.StripILBodies);
656.UseMapFile(Get(_command.Map))
657.UseMapCsvFile(Get(_command.MapCsv))
658.UsePdbFile(Get(_command.Pdb), Get(_command.PdbPath))
659.UsePerfMapFile(Get(_command.PerfMap), Get(_command.PerfMapPath), Get(_command.PerfMapFormatVersion))
663.FileLayoutAlgorithms(Get(_command.MethodLayout), Get(_command.FileLayout))
665.UseJitPath(Get(_command.JitPath))
667.UseCustomPESectionAlignment(Get(_command.CustomPESectionAlignment))
668.UseVerifyTypeAndFieldLayout(Get(_command.VerifyTypeAndFieldLayout))
669.UseHotColdSplitting(Get(_command.HotColdSplitting))
674.UseBackendOptions(Get(_command.CodegenOptions))
676.UseParallelism(Get(_command.Parallelism))
677.UseResilience(Get(_command.Resilient))
682if (Get(_command.EnableGenericCycleDetection))
685depthCutoff: Get(_command.GenericCycleDepthCutoff),
686breadthCutoff: Get(_command.GenericCycleBreadthCutoff));
733string[] singleMethodGenericArgs = Get(_command.SingleMethodGenericArgs);
734string singleMethodName = Get(_command.SingleMethodName);
735string singleMethodTypeName = Get(_command.SingleMethodTypeName);
754if (Get(_command.SingleMethodIndex) != 0)
756if (curIndex == Get(_command.SingleMethodIndex))