Home
last modified time | relevance | path

Searched refs:HotMethodThreshold (Results 1 – 5 of 5) sorted by relevance

/art/runtime/jit/
Djit.cc406 return HotMethodThreshold() == 0; in JitAtFirstUse()
1527 if (HotMethodThreshold() == 0) { in MaybeCompileMethod()
1532 DCHECK_GT(HotMethodThreshold(), WarmMethodThreshold()); in MaybeCompileMethod()
1533 DCHECK_GT(OSRMethodThreshold(), HotMethodThreshold()); in MaybeCompileMethod()
1535 DCHECK_LE(PriorityThreadWeight(), HotMethodThreshold()); in MaybeCompileMethod()
1566 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod()
Djit.h280 uint16_t HotMethodThreshold() const { in HotMethodThreshold() function
Djit_code_cache.cc1222 uint16_t new_counter = Runtime::Current()->GetJit()->HotMethodThreshold() - 1u; in GarbageCollectCache()
/art/test/common/
Druntime_state.cc406 return (jit != nullptr) ? jit->HotMethodThreshold() : 0; in Java_Main_getJitThreshold()
/art/runtime/interpreter/mterp/
Dmterp.cc890 int32_t hot_threshold = jit->HotMethodThreshold(); in MterpSetUpHotnessCountdown()