comparison agent/src/share/classes/sun/jvm/hotspot/ci/ciMethod.java @ 10257:cbfe859bd244

8013591: compiler/ciReplay/TestSA.sh fails in nightly Reviewed-by: coleenp, rbackman, dholmes
author sla
date Wed, 08 May 2013 15:37:18 +0200
parents bd7a7ce2e264
children de6a9e811145
comparison
equal deleted inserted replaced
10255:28ae1d38d296 10257:cbfe859bd244
95 Klass holder = method.getMethodHolder(); 95 Klass holder = method.getMethodHolder();
96 out.println("ciMethod " + 96 out.println("ciMethod " +
97 holder.getName().asString() + " " + 97 holder.getName().asString() + " " +
98 OopUtilities.escapeString(method.getName().asString()) + " " + 98 OopUtilities.escapeString(method.getName().asString()) + " " +
99 method.getSignature().asString() + " " + 99 method.getSignature().asString() + " " +
100 method.getInvocationCounter() + " " + 100 method.getInvocationCount() + " " +
101 method.getBackedgeCounter() + " " + 101 method.getBackedgeCount() + " " +
102 interpreterInvocationCount() + " " + 102 interpreterInvocationCount() + " " +
103 interpreterThrowoutCount() + " " + 103 interpreterThrowoutCount() + " " +
104 instructionsSize()); 104 instructionsSize());
105 } 105 }
106 } 106 }