Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.h72 return compile_threshold_; in GetCompileThreshold()
143 compile_threshold_ = 0; in SetJitAtFirstUse()
164 uint32_t compile_threshold_; variable
179 compile_threshold_(0), in JitOptions()
Djit.cc107 jit_options->compile_threshold_ = in CreateFromRuntimeArguments()
126 DCHECK_LT(jit_options->warmup_threshold_, jit_options->compile_threshold_); in CreateFromRuntimeArguments()
131 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments()
133 jit_options->compile_threshold_ = RoundUp(jit_options->compile_threshold_, kJitThresholdStep); in CreateFromRuntimeArguments()
143 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2; in CreateFromRuntimeArguments()
153 if (jit_options->compile_threshold_ != 0) { in CreateFromRuntimeArguments()
158 jit_options->compile_threshold_ = std::clamp(jit_options->compile_threshold_, in CreateFromRuntimeArguments()
164 jit_options->compile_threshold_ - kJitThresholdStep); in CreateFromRuntimeArguments()