Home
last modified time | relevance | path

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

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