Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.cc173 hot_method_threshold_(0), in Jit()
205 jit->hot_method_threshold_ = options->GetCompileThreshold(); in Create()
654 if (hot_method_threshold_ == 0) { in AddSamples()
660 DCHECK_GT(hot_method_threshold_, warm_method_threshold_); in AddSamples()
661 DCHECK_GT(osr_method_threshold_, hot_method_threshold_); in AddSamples()
663 DCHECK_LE(priority_thread_weight_, hot_method_threshold_); in AddSamples()
693 new_count = std::min(new_count, hot_method_threshold_ - 1); in AddSamples()
695 if (starting_count < hot_method_threshold_) { in AddSamples()
696 if ((new_count >= hot_method_threshold_) && in AddSamples()
Djit.h85 return hot_method_threshold_; in HotMethodThreshold()
203 uint16_t hot_method_threshold_; variable