Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.h85 return osr_threshold_; in GetOsrThreshold()
169 uint32_t osr_threshold_; variable
185 osr_threshold_(0), in JitOptions()
Djit.cc144 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold); in CreateFromRuntimeArguments()
146 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2; in CreateFromRuntimeArguments()
147 if (jit_options->osr_threshold_ > kJitMaxThreshold) { in CreateFromRuntimeArguments()
148 jit_options->osr_threshold_ = in CreateFromRuntimeArguments()
152 jit_options->osr_threshold_ = RoundUp(jit_options->osr_threshold_, kJitThresholdStep); in CreateFromRuntimeArguments()
158 jit_options->osr_threshold_ = std::clamp(jit_options->osr_threshold_, in CreateFromRuntimeArguments()
163 jit_options->osr_threshold_ - kJitThresholdStep); in CreateFromRuntimeArguments()