Home
last modified time | relevance | path

Searched refs:jit_options (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jit/
Djit.cc53 auto* jit_options = new JitOptions; in CreateFromRuntimeArguments() local
54 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation); in CreateFromRuntimeArguments()
56 jit_options->code_cache_initial_capacity_ = in CreateFromRuntimeArguments()
58 jit_options->code_cache_max_capacity_ = in CreateFromRuntimeArguments()
60 jit_options->dump_info_on_shutdown_ = in CreateFromRuntimeArguments()
62 jit_options->save_profiling_info_ = in CreateFromRuntimeArguments()
65 jit_options->compile_threshold_ = options.GetOrDefault(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments()
66 if (jit_options->compile_threshold_ > std::numeric_limits<uint16_t>::max()) { in CreateFromRuntimeArguments()
71 jit_options->warmup_threshold_ = *options.Get(RuntimeArgumentMap::JITWarmupThreshold); in CreateFromRuntimeArguments()
72 if (jit_options->warmup_threshold_ > std::numeric_limits<uint16_t>::max()) { in CreateFromRuntimeArguments()
[all …]
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc125 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures() local
126 CHECK(jit_options != nullptr); in EnableDebugFeatures()
127 jit_options->SetJitAtFirstUse(); in EnableDebugFeatures()