Searched refs:RuntimeArgumentMap (Results 1 – 13 of 13) sorted by relevance
/art/runtime/ |
D | parsed_options.h | 36 struct RuntimeArgumentMap; 46 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>; 55 RuntimeArgumentMap* runtime_options); 66 RuntimeArgumentMap* runtime_options, 78 RuntimeArgumentMap* runtime_options);
|
D | runtime_options.h | 67 struct RuntimeArgumentMap : VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey> { struct 69 using VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey>::VariantMap;
|
D | runtime_options.cc | 32 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap…
|
D | parsed_options_test.cc | 74 RuntimeArgumentMap map; in TEST_F() 79 using Opt = RuntimeArgumentMap; in TEST_F() 118 RuntimeArgumentMap map; in TEST_F() 123 using Opt = RuntimeArgumentMap; in TEST_F() 132 using Opt = RuntimeArgumentMap; in TEST_F() 137 RuntimeArgumentMap map; in TEST_F() 156 RuntimeArgumentMap map; in TEST_F()
|
D | parsed_options.cc | 46 RuntimeArgumentMap* runtime_options) { in Parse() 53 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>; 62 using M = RuntimeArgumentMap; in MakeParser() 320 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions() 322 using M = RuntimeArgumentMap; in ProcessSpecialOptions() 430 RuntimeArgumentMap* runtime_options) { in DoParse() 463 using M = RuntimeArgumentMap; in DoParse() 464 RuntimeArgumentMap args = parser->ReleaseArgumentsMap(); in DoParse()
|
D | java_vm_ext.h | 37 struct RuntimeArgumentMap; 41 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options);
|
D | runtime.h | 88 struct RuntimeArgumentMap; 118 RuntimeArgumentMap* runtime_options); 121 static bool Create(RuntimeArgumentMap&& runtime_options) 658 bool Init(RuntimeArgumentMap&& runtime_options)
|
D | java_vm_ext.cc | 423 JavaVMExt::JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options) in JavaVMExt() 428 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt() 429 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt() 431 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt() 441 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
|
D | runtime.cc | 451 RuntimeArgumentMap* runtime_options) { in ParseOptions() 461 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create() 478 RuntimeArgumentMap runtime_options; in Create() 907 bool Runtime::Init(RuntimeArgumentMap&& runtime_options_in) { in Init() 908 RuntimeArgumentMap runtime_options(std::move(runtime_options_in)); in Init() 914 using Opt = RuntimeArgumentMap; in Init()
|
/art/runtime/jit/ |
D | jit.cc | 52 JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) { in CreateFromRuntimeArguments() 54 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation); in CreateFromRuntimeArguments() 57 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity); in CreateFromRuntimeArguments() 59 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity); in CreateFromRuntimeArguments() 61 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments() 63 options.GetOrDefault(RuntimeArgumentMap::JITSaveProfilingInfo); in CreateFromRuntimeArguments() 65 jit_options->compile_threshold_ = options.GetOrDefault(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments() 70 if (options.Exists(RuntimeArgumentMap::JITWarmupThreshold)) { in CreateFromRuntimeArguments() 71 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold); in CreateFromRuntimeArguments() 79 if (options.Exists(RuntimeArgumentMap::JITOsrThreshold)) { in CreateFromRuntimeArguments() [all …]
|
D | jit.h | 32 struct RuntimeArgumentMap; 206 static JitOptions* CreateFromRuntimeArguments(const RuntimeArgumentMap& options);
|
/art/cmdline/ |
D | cmdline_parser_test.cc | 124 using M = RuntimeArgumentMap; 175 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \ 182 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \ 201 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap();\ 213 RuntimeArgumentMap args = parser.ReleaseArgumentsMap(); in TEST_F()
|
/art/dex2oat/ |
D | dex2oat.cc | 1305 RuntimeArgumentMap runtime_options; in Setup() 1426 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup() 2163 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options) { in PrepareRuntimeOptions() 2222 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime()
|