Home
last modified time | relevance | path

Searched refs:hotness_count (Results 1 – 3 of 3) sorted by relevance

/art/runtime/interpreter/mterp/
Dmterp.cc885 uint16_t hotness_count = method->GetCounter(); in MterpSetUpHotnessCountdown() local
892 if (hotness_count < warm_threshold) { in MterpSetUpHotnessCountdown()
893 countdown_value = warm_threshold - hotness_count; in MterpSetUpHotnessCountdown()
894 } else if (hotness_count < hot_threshold) { in MterpSetUpHotnessCountdown()
895 countdown_value = hot_threshold - hotness_count; in MterpSetUpHotnessCountdown()
896 } else if (hotness_count < osr_threshold) { in MterpSetUpHotnessCountdown()
897 countdown_value = osr_threshold - hotness_count; in MterpSetUpHotnessCountdown()
/art/runtime/
Dart_method-inl.h409 inline void ArtMethod::SetCounter(uint16_t hotness_count) { in SetCounter() argument
411 hotness_count_ = hotness_count; in SetCounter()
Dart_method.h712 ALWAYS_INLINE void SetCounter(uint16_t hotness_count) REQUIRES_SHARED(Locks::mutator_lock_);