comparison graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java @ 13342:ebe32617cd65

cosmetic change in debug logging of graph builder
author Erik Eckstein <erik.eckstein@oracle.com>
date Fri, 13 Dec 2013 16:08:12 +0100
parents d5c6d9beebe3
children a245e3585ad4
comparison
equal deleted inserted replaced
13339:3603fab248a6 13342:ebe32617cd65
215 if (PrintProfilingInformation.getValue()) { 215 if (PrintProfilingInformation.getValue()) {
216 TTY.println("Profiling info for " + MetaUtil.format("%H.%n(%p)", method)); 216 TTY.println("Profiling info for " + MetaUtil.format("%H.%n(%p)", method));
217 TTY.println(MetaUtil.indent(MetaUtil.profileToString(profilingInfo, method, CodeUtil.NEW_LINE), " ")); 217 TTY.println(MetaUtil.indent(MetaUtil.profileToString(profilingInfo, method, CodeUtil.NEW_LINE), " "));
218 } 218 }
219 219
220 Indent indent = Debug.logAndIndent(false, "build graph for %s", method.toString()); 220 Indent indent = Debug.logAndIndent(false, "build graph for %s", method);
221 221
222 // compute the block map, setup exception handlers and get the entrypoint(s) 222 // compute the block map, setup exception handlers and get the entrypoint(s)
223 BciBlockMapping blockMap = createBlockMap(); 223 BciBlockMapping blockMap = createBlockMap();
224 loopHeaders = blockMap.loopHeaders; 224 loopHeaders = blockMap.loopHeaders;
225 225