Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.cc342 return HotMethodThreshold() == 0; in JitAtFirstUse()
854 if (HotMethodThreshold() == 0) { in MaybeCompileMethod()
860 DCHECK_GT(HotMethodThreshold(), WarmMethodThreshold()); in MaybeCompileMethod()
861 DCHECK_GT(OSRMethodThreshold(), HotMethodThreshold()); in MaybeCompileMethod()
863 DCHECK_LE(PriorityThreadWeight(), HotMethodThreshold()); in MaybeCompileMethod()
896 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod()
Djit.h202 uint16_t HotMethodThreshold() const { in HotMethodThreshold() function
Djit_code_cache.cc1605 uint16_t new_counter = Runtime::Current()->GetJit()->HotMethodThreshold() - 1u; in GarbageCollectCache()
/art/test/common/
Druntime_state.cc365 return (jit != nullptr) ? jit->HotMethodThreshold() : 0; in Java_Main_getJitThreshold()
/art/runtime/interpreter/mterp/
Dmterp.cc893 int32_t hot_threshold = jit->HotMethodThreshold(); in MterpSetUpHotnessCountdown()