Home
last modified time | relevance | path

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

/art/runtime/
Dparsed_options.h38 struct RuntimeArgumentMap;
48 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
57 RuntimeArgumentMap* runtime_options);
68 RuntimeArgumentMap* runtime_options,
80 RuntimeArgumentMap* runtime_options);
Druntime_options.h65 struct RuntimeArgumentMap : VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey> { struct
67 using VariantMap<RuntimeArgumentMap, RuntimeArgumentMapKey>::VariantMap;
Druntime_options.cc34 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap
Dparsed_options_test.cc75 RuntimeArgumentMap map; in TEST_F()
80 using Opt = RuntimeArgumentMap; in TEST_F()
123 RuntimeArgumentMap map; in TEST_F()
128 using Opt = RuntimeArgumentMap; in TEST_F()
140 RuntimeArgumentMap map; in TEST_F()
145 using Opt = RuntimeArgumentMap; in TEST_F()
154 using Opt = RuntimeArgumentMap; in TEST_F()
159 RuntimeArgumentMap map; in TEST_F()
176 RuntimeArgumentMap map; in TEST_F()
Dparsed_options.cc54 RuntimeArgumentMap* runtime_options) { in Parse()
61 using RuntimeParser = CmdlineParser<RuntimeArgumentMap, RuntimeArgumentMap::Key>;
72 using M = RuntimeArgumentMap; in MakeParser()
453 RuntimeArgumentMap* runtime_options, in ProcessSpecialOptions()
455 using M = RuntimeArgumentMap; in ProcessSpecialOptions()
564 RuntimeArgumentMap* runtime_options) { in DoParse()
597 using M = RuntimeArgumentMap; in DoParse()
598 RuntimeArgumentMap args = parser->ReleaseArgumentsMap(); in DoParse()
Druntime.h103 struct RuntimeArgumentMap;
121 RuntimeArgumentMap* runtime_options);
124 static bool Create(RuntimeArgumentMap&& runtime_options)
989 bool Init(RuntimeArgumentMap&& runtime_options)
Druntime.cc726 RuntimeArgumentMap* runtime_options) { in ParseOptions()
745 bool Runtime::Create(RuntimeArgumentMap&& runtime_options) { in Create()
763 RuntimeArgumentMap runtime_options; in Create()
1185 bool Runtime::Init(RuntimeArgumentMap&& runtime_options_in) { in Init()
1190 using Opt = RuntimeArgumentMap; in Init()
/art/runtime/jit/
Djit.cc90 JitOptions* JitOptions::CreateFromRuntimeArguments(const RuntimeArgumentMap& options) { in CreateFromRuntimeArguments()
92 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation); in CreateFromRuntimeArguments()
94 options.GetOrDefault(RuntimeArgumentMap::UseTieredJitCompilation); in CreateFromRuntimeArguments()
97 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheInitialCapacity); in CreateFromRuntimeArguments()
99 options.GetOrDefault(RuntimeArgumentMap::JITCodeCacheMaxCapacity); in CreateFromRuntimeArguments()
101 options.Exists(RuntimeArgumentMap::DumpJITInfoOnShutdown); in CreateFromRuntimeArguments()
103 options.GetOrDefault(RuntimeArgumentMap::ProfileSaverOpts); in CreateFromRuntimeArguments()
105 options.GetOrDefault(RuntimeArgumentMap::JITPoolThreadPthreadPriority); in CreateFromRuntimeArguments()
131 if (options.Exists(RuntimeArgumentMap::JITCompileThreshold)) { in CreateFromRuntimeArguments()
132 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments()
[all …]
Djit.h42 struct RuntimeArgumentMap;
70 static JitOptions* CreateFromRuntimeArguments(const RuntimeArgumentMap& options);
/art/runtime/jni/
Djava_vm_ext.h39 struct RuntimeArgumentMap;
51 const RuntimeArgumentMap& runtime_options,
216 JavaVMExt(Runtime* runtime, const RuntimeArgumentMap& runtime_options, std::string* error_msg);
Djava_vm_ext.cc491 const RuntimeArgumentMap& runtime_options, in JavaVMExt()
497 force_copy_(runtime_options.Exists(RuntimeArgumentMap::JniOptsForceCopy)), in JavaVMExt()
498 tracing_enabled_(runtime_options.Exists(RuntimeArgumentMap::JniTrace) in JavaVMExt()
500 trace_(runtime_options.GetOrDefault(RuntimeArgumentMap::JniTrace)), in JavaVMExt()
514 runtime_options.GetOrDefault(RuntimeArgumentMap::GlobalRefAllocStackTraceLimit)), in JavaVMExt()
518 SetCheckJniEnabled(runtime_options.Exists(RuntimeArgumentMap::CheckJni)); in JavaVMExt()
529 const RuntimeArgumentMap& runtime_options, in Create()
/art/cmdline/
Dcmdline_parser_test.cc131 using M = RuntimeArgumentMap;
183 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \
190 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap(); \
209 RuntimeArgumentMap args = parser_->ReleaseArgumentsMap();\
221 RuntimeArgumentMap args = parser.ReleaseArgumentsMap(); in TEST_F()
/art/dex2oat/
Ddex2oat.cc1692 RuntimeArgumentMap runtime_options; in Setup()
1772 runtime_options.Set(RuntimeArgumentMap::BootClassPathDexList, &opened_dex_files_); in Setup()
2776 bool PrepareRuntimeOptions(RuntimeArgumentMap* runtime_options, in PrepareRuntimeOptions()
2818 bool CreateRuntime(RuntimeArgumentMap&& runtime_options) { in CreateRuntime()