diff graal/GraalCompiler/src/com/sun/c1x/C1XCompiler.java @ 2616:3558ca7088c0

FrameState and Graphviz changes: * removed popx, pushx methods from GraphBuilder * FrameState subclass of Value * added String shortName() to Node * added GraphvizPrinter option to use short names * small hack in GraphvizPrinter: omit FrameState->Local connections * added GraalGraphviz to implicit classpatch (read from GRAAL env var)
author Lukas Stadler <lukas.stadler@jku.at>
date Mon, 09 May 2011 17:00:25 +0200
parents a57e051b33cd
children d456b679b6de
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/C1XCompiler.java	Mon May 09 14:11:13 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/C1XCompiler.java	Mon May 09 17:00:25 2011 +0200
@@ -155,7 +155,7 @@
                             ByteArrayOutputStream out = new ByteArrayOutputStream();
                             GraphvizPrinter printer = new GraphvizPrinter(out);
                             printer.begin(name);
-                            printer.print(graph);
+                            printer.print(graph, true);
                             printer.end();
 
                             try {