Home
last modified time | relevance | path

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

/art/runtime/jit/
Djit.cc1817 auto it = shared_method_counters_.find(method); in MaybeEnqueueCompilation()
1818 if (it == shared_method_counters_.end()) { in MaybeEnqueueCompilation()
1819 shared_method_counters_[method] = kIndividualSharedMethodHotnessThreshold; in MaybeEnqueueCompilation()
1823 shared_method_counters_[method] = it->second - 1; in MaybeEnqueueCompilation()
1826 shared_method_counters_[method] = kIndividualSharedMethodHotnessThreshold; in MaybeEnqueueCompilation()
Djit.h521 std::map<ArtMethod*, uint16_t> shared_method_counters_; variable