comparison graal/GraalCompiler/src/com/sun/c1x/ir/Phi.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 6ab73784566a
comparison
equal deleted inserted replaced
2615:5768534fd4e5 2616:3558ca7088c0
165 165
166 @Override 166 @Override
167 public void print(LogStream out) { 167 public void print(LogStream out) {
168 out.print("phi function"); 168 out.print("phi function");
169 } 169 }
170
171 @Override
172 public String shortName() {
173 return "Phi: " + index;
174 }
175
176
170 } 177 }