コード例 #1
0
 public long getBackedgeCount() {
   MethodCounters mc = getMethodCounters();
   return mc == null ? 0 : mc.getBackedgeCounter();
 }
コード例 #2
0
 public long getInvocationCount() {
   MethodCounters mc = getMethodCounters();
   return mc == null ? 0 : mc.getInvocationCounter();
 }