src/share/vm/oops/method.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/oops/method.hpp	Tue May  6 15:13:01 2014
--- new/src/share/vm/oops/method.hpp	Tue May  6 15:13:01 2014

*** 369,378 **** --- 369,385 ---- if (mcs != NULL) { mcs->set_rate(rate); } } #endif + int nmethod_age() const { + if (method_counters() == NULL) { + return INT_MAX; + } else { + return method_counters()->nmethod_age(); + } + } int invocation_count(); int backedge_count(); bool was_executed_more_than(int n);

src/share/vm/oops/method.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File