Searched defs:counter_life (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp764 int counter_life; local
768 counter_life = MAX2(method_data()->invocation_count(), method_data()->backedge_count());
772 counter_life = current_mileage - creation_mileage;
775 // counter_life due to backedge_counter could be > method_life
776 if (counter_life > method_life)
777 counter_life = method_life;
778 if (0 < counter_life && counter_life <= method_life) {
779 count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);

Completed in 962 milliseconds