Home
last modified time | relevance | path

Searched refs:RuntimeArgumentMap (Results 1 – 13 of 13) sorted by relevance

/art/runtime/
Dparsed_options.h36 struct RuntimeArgumentMap;
46 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
55 RuntimeArgumentMap* runtime_options);
66 RuntimeArgumentMap* runtime_options,
78 RuntimeArgumentMap* runtime_options);
Druntime_options.h67 struct RuntimeArgumentMap : VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey> { struct
69 using VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey>::VariantMap;
Druntime_options.cc32 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap
Dparsed_options_test.cc74 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()
Dparsed_options.cc46 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()
Djava_vm_ext.h37 struct RuntimeArgumentMap;
41 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options);
Druntime.h88 struct RuntimeArgumentMap;
118 RuntimeArgumentMap* runtime_options);
121 static bool Create(RuntimeArgumentMap&& runtime_options)
658 bool Init(RuntimeArgumentMap&& runtime_options)
Djava_vm_ext.cc423 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()
Druntime.cc451 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/
Djit.cc52 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 …]
Djit.h32 struct RuntimeArgumentMap;
206 static JitOptions* CreateFromRuntimeArguments(const RuntimeArgumentMap& options);
/art/cmdline/
Dcmdline_parser_test.cc124 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/
Ddex2oat.cc1305 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()