Home
last modified time | relevance | path

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

/aosp12/art/runtime/jit/
H A Djit.cc412 return HotMethodThreshold() == 0; in JitAtFirstUse()
1515 if (HotMethodThreshold() == 0) { in MaybeCompileMethod()
1520 DCHECK_GT(HotMethodThreshold(), WarmMethodThreshold()); in MaybeCompileMethod()
1521 DCHECK_GT(OSRMethodThreshold(), HotMethodThreshold()); in MaybeCompileMethod()
1523 DCHECK_LE(PriorityThreadWeight(), HotMethodThreshold()); in MaybeCompileMethod()
1526 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod()
H A Djit.h288 uint16_t HotMethodThreshold() const { in HotMethodThreshold() function
H A Djit_code_cache.cc1172 uint16_t new_counter = Runtime::Current()->GetJit()->HotMethodThreshold() - 1u; in GarbageCollectCache()
/aosp12/art/test/common/
H A Druntime_state.cc409 return (jit != nullptr) ? jit->HotMethodThreshold() : 0; in Java_Main_getJitThreshold()
/aosp12/art/runtime/interpreter/mterp/
H A Dmterp.cc849 int32_t hot_threshold = jit->HotMethodThreshold(); in MterpSetUpHotnessCountdown()