Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.h223 return osr_threshold_; in GetOsrThreshold()
273 size_t osr_threshold_; variable
285 osr_threshold_(0), in JitOptions()
Djit.cc106 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold); in CreateFromRuntimeArguments()
107 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) { in CreateFromRuntimeArguments()
111 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2; in CreateFromRuntimeArguments()
112 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) { in CreateFromRuntimeArguments()
113 jit_options->osr_threshold_ = std::numeric_limits<uint16_t>::max(); in CreateFromRuntimeArguments()