Home
last modified time | relevance | path

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

/art/runtime/interpreter/mterp/
Dmterp.cc844 uint16_t hotness_count = method->GetCounter(); in MterpSetUpHotnessCountdown() local
851 if (hotness_count < warm_threshold) { in MterpSetUpHotnessCountdown()
852 countdown_value = warm_threshold - hotness_count; in MterpSetUpHotnessCountdown()
853 } else if (hotness_count < hot_threshold) { in MterpSetUpHotnessCountdown()
854 countdown_value = hot_threshold - hotness_count; in MterpSetUpHotnessCountdown()
855 } else if (hotness_count < osr_threshold) { in MterpSetUpHotnessCountdown()
856 countdown_value = osr_threshold - hotness_count; in MterpSetUpHotnessCountdown()
/art/runtime/
Dart_method-inl.h415 inline void ArtMethod::SetCounter(uint16_t hotness_count) { in SetCounter() argument
417 hotness_count_ = hotness_count; in SetCounter()
Dart_method.h707 ALWAYS_INLINE void SetCounter(uint16_t hotness_count);