Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.h73 return compile_threshold_; in GetCompileThreshold()
144 compile_threshold_ = 0; in SetJitAtFirstUse()
165 uint32_t compile_threshold_; variable
180 compile_threshold_(0), in JitOptions()
Djit.cc108 jit_options->compile_threshold_ = in CreateFromRuntimeArguments()
127 DCHECK_LT(jit_options->warmup_threshold_, jit_options->compile_threshold_); in CreateFromRuntimeArguments()
132 jit_options->compile_threshold_ = *options.Get(RuntimeArgumentMap::JITCompileThreshold); in CreateFromRuntimeArguments()
134 jit_options->compile_threshold_ = RoundUp(jit_options->compile_threshold_, kJitThresholdStep); in CreateFromRuntimeArguments()
144 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2; in CreateFromRuntimeArguments()
154 if (jit_options->compile_threshold_ != 0) { in CreateFromRuntimeArguments()
159 jit_options->compile_threshold_ = std::clamp(jit_options->compile_threshold_, in CreateFromRuntimeArguments()
165 jit_options->compile_threshold_ - kJitThresholdStep); in CreateFromRuntimeArguments()