diff graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.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 01c5c0443158
children 91d3952f7eb7 8e44074058af
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Mon May 09 14:11:13 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Mon May 09 17:00:25 2011 +0200
@@ -239,11 +239,11 @@
         inputValuesDo(closure);
         FrameState stateBefore = stateBefore();
         if (stateBefore != null) {
-            stateBefore.valuesDo(closure);
+            stateBefore.inputValuesDo(closure);
         }
         FrameState stateAfter = stateAfter();
         if (stateAfter != null) {
-            stateAfter.valuesDo(closure);
+            stateAfter.inputValuesDo(closure);
         }
     }