Lines Matching refs:args
464 RuntimeArgumentMap args = parser->ReleaseArgumentsMap(); in DoParse() local
467 if (args.Exists(M::Help)) { in DoParse()
470 } else if (args.Exists(M::ShowVersion)) { in DoParse()
473 } else if (args.Exists(M::BootClassPath)) { in DoParse()
474 LOG(INFO) << "setting boot class path to " << *args.Get(M::BootClassPath); in DoParse()
477 if (args.GetOrDefault(M::UseJitCompilation) && args.GetOrDefault(M::Interpret)) { in DoParse()
484 args.SetIfMissing(M::BootClassPath, std::string(getenv("BOOTCLASSPATH"))); in DoParse()
489 args.SetIfMissing(M::ClassPath, std::string(getenv("CLASSPATH"))); in DoParse()
493 args.SetIfMissing(M::ParallelGCThreads, gc::Heap::kDefaultEnableParallelGC ? in DoParse()
498 LogVerbosity *log_verbosity = args.Get(M::Verbose); in DoParse()
507 Trace::SetDefaultClockSource(args.GetOrDefault(M::ProfileClock)); in DoParse()
509 if (!ProcessSpecialOptions(options, &args, nullptr)) { in DoParse()
520 bool low_memory_mode_ = args.Exists(M::LowMemoryMode); in DoParse()
522 background_collector_type_ = args.GetOrDefault(M::BackgroundGc); in DoParse()
524 XGcOption* xgc = args.Get(M::GcOption); in DoParse()
539 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ }); in DoParse()
554 auto boot_class_path_string = args.GetOrDefault(M::BootClassPath); in DoParse()
559 args.Set(M::BootClassPath, boot_class_path_string); in DoParse()
563 auto&& boot_class_path = args.GetOrDefault(M::BootClassPath); in DoParse()
564 auto&& boot_class_path_locations = args.GetOrDefault(M::BootClassPathLocations); in DoParse()
565 if (args.Exists(M::BootClassPathLocations)) { in DoParse()
580 if (!args.Exists(M::CompilerCallbacksPtr) && !args.Exists(M::Image)) { in DoParse()
583 args.Set(M::Image, image); in DoParse()
587 if (args.GetOrDefault(M::HeapGrowthLimit) <= 0u || in DoParse()
588 args.GetOrDefault(M::HeapGrowthLimit) > args.GetOrDefault(M::MemoryMaximumSize)) { in DoParse()
589 args.Set(M::HeapGrowthLimit, args.GetOrDefault(M::MemoryMaximumSize)); in DoParse()
592 if (args.GetOrDefault(M::Experimental) & ExperimentalFlags::kLambdas) { in DoParse()
598 *runtime_options = std::move(args); in DoParse()