HomeSort by relevance Sort by last modified time
    Searched refs:osr_threshold_ (Results 1 - 2 of 2) sorted by null

  /art/runtime/jit/
jit.h 224 return osr_threshold_;
267 size_t osr_threshold_; member in class:art::jit::JitOptions
279 osr_threshold_(0),
jit.cc 105 jit_options->osr_threshold_ = *options.Get(RuntimeArgumentMap::JITOsrThreshold);
106 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
110 jit_options->osr_threshold_ = jit_options->compile_threshold_ * 2;
111 if (jit_options->osr_threshold_ > std::numeric_limits<uint16_t>::max()) {
112 jit_options->osr_threshold_ = std::numeric_limits<uint16_t>::max();

Completed in 82 milliseconds