Exemplo n.º 1
0
 public long getBackedgeCount() {
   MethodCounters mc = getMethodCounters();
   return mc == null ? 0 : mc.getBackedgeCounter();
 }
Exemplo n.º 2
0
 public long getInvocationCount() {
   MethodCounters mc = getMethodCounters();
   return mc == null ? 0 : mc.getInvocationCounter();
 }