Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.cc174 jit->hot_method_threshold_ = options->GetCompileThreshold(); in Create()
603 DCHECK_GT(hot_method_threshold_, warm_method_threshold_); in AddSamples()
604 DCHECK_GT(osr_method_threshold_, hot_method_threshold_); in AddSamples()
606 DCHECK_LE(priority_thread_weight_, hot_method_threshold_); in AddSamples()
635 new_count = std::min(new_count, hot_method_threshold_ - 1); in AddSamples()
637 if (starting_count < hot_method_threshold_) { in AddSamples()
638 if ((new_count >= hot_method_threshold_) && in AddSamples()
Djit.h79 return hot_method_threshold_; in HotMethodThreshold()
194 uint16_t hot_method_threshold_; variable