comparison graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java @ 2674:6ab73784566a

* BlockBegin.predecessors changed to List<BlockEnd> * Node: add input/successor with given back edge index, allows for explicit ordering of predecessors/usages * Graphviz: PDF output, option to omit FrameStates * runscimark.sh: forward additional options to JVM
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 13 May 2011 15:18:41 +0200
parents 9f557e940180
children 0ea5f12e873a
comparison
equal deleted inserted replaced
2673:98447ab8bd83 2674:6ab73784566a
436 436
437 // print predecessors and successors 437 // print predecessors and successors
438 if (x.numberOfPreds() > 0) { 438 if (x.numberOfPreds() > 0) {
439 TTY.print("preds: "); 439 TTY.print("preds: ");
440 for (int i = 0; i < x.numberOfPreds(); i++) { 440 for (int i = 0; i < x.numberOfPreds(); i++) {
441 TTY.print("B%d ", x.predAt(i).blockID); 441 TTY.print("B%d ", x.predAt(i).begin().blockID);
442 } 442 }
443 } 443 }
444 444
445 if (x.numberOfSux() > 0) { 445 if (x.numberOfSux() > 0) {
446 TTY.print("sux: "); 446 TTY.print("sux: ");