Home
last modified time | relevance | path

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

/art/runtime/interpreter/mterp/
Dmterp.cc902 uint16_t hotness_count = method->GetCounter(); in MterpSetUpHotnessCountdown() local
909 if (hotness_count < warm_threshold) { in MterpSetUpHotnessCountdown()
910 countdown_value = warm_threshold - hotness_count; in MterpSetUpHotnessCountdown()
911 } else if (hotness_count < hot_threshold) { in MterpSetUpHotnessCountdown()
912 countdown_value = hot_threshold - hotness_count; in MterpSetUpHotnessCountdown()
913 } else if (hotness_count < osr_threshold) { in MterpSetUpHotnessCountdown()
914 countdown_value = osr_threshold - hotness_count; in MterpSetUpHotnessCountdown()
/art/runtime/
Dart_method.h623 void SetCounter(int16_t hotness_count) { in SetCounter() argument
624 hotness_count_ = hotness_count; in SetCounter()