comparison agent/src/share/classes/sun/jvm/hotspot/ci/ciEnv.java @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 89152779163c
children
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
93 CompileTask task = task(); 93 CompileTask task = task();
94 Method method = task.method(); 94 Method method = task.method();
95 int entryBci = task.osrBci(); 95 int entryBci = task.osrBci();
96 int compLevel = task.compLevel(); 96 int compLevel = task.compLevel();
97 Klass holder = method.getMethodHolder(); 97 Klass holder = method.getMethodHolder();
98 out.println("compile " + holder.getName().asString() + " " + 98 out.print("compile " + holder.getName().asString() + " " +
99 OopUtilities.escapeString(method.getName().asString()) + " " + 99 OopUtilities.escapeString(method.getName().asString()) + " " +
100 method.getSignature().asString() + " " + 100 method.getSignature().asString() + " " +
101 entryBci + " " + compLevel); 101 entryBci + " " + compLevel);
102 Compile compiler = compilerData();
103 if (compiler != null) {
104 // Dump inlining data.
105 compiler.dumpInlineData(out);
106 }
107 out.println();
102 } 108 }
103 } 109 }