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

/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp765 int method_life = interpreter_invocation_count(); local
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 94 milliseconds