Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.cc85 auto* jit_options = new JitOptions; in CreateFromRuntimeArguments() local
86 jit_options->use_jit_compilation_ = options.GetOrDefault(RuntimeArgumentMap::UseJitCompilation); in CreateFromRuntimeArguments()
88 jit_options->code_cache_initial_capacity_ = in CreateFromRuntimeArguments()
90 jit_options->code_cache_max_capacity_ = in CreateFromRuntimeArguments()
92 jit_options->dump_info_on_shutdown_ = in CreateFromRuntimeArguments()
94 jit_options->profile_saver_options_ = in CreateFromRuntimeArguments()
96 jit_options->thread_pool_pthread_priority_ = in CreateFromRuntimeArguments()
100 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments()
102 jit_options->compile_threshold_ = in CreateFromRuntimeArguments()
109 jit_options->compile_threshold_ = RoundUpThreshold(jit_options->compile_threshold_); in CreateFromRuntimeArguments()
[all …]
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc194 jit::JitOptions* jit_options = runtime->GetJITOptions(); in EnableDebugFeatures() local
195 CHECK(jit_options != nullptr); in EnableDebugFeatures()
197 jit_options->SetJitAtFirstUse(); in EnableDebugFeatures()