comparison graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2783:9bc0c2eb00d6

Made graph builder removal of BlockBegin work.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 25 May 2011 12:04:58 +0200
parents 915456e4959e
children df4c5254c5cc
comparison
equal deleted inserted replaced
2782:915456e4959e 2783:9bc0c2eb00d6
163 private void print(boolean cfgOnly) { 163 private void print(boolean cfgOnly) {
164 if (!TTY.isSuppressed()) { 164 if (!TTY.isSuppressed()) {
165 TTY.println("IR for " + compilation.method); 165 TTY.println("IR for " + compilation.method);
166 final InstructionPrinter ip = new InstructionPrinter(TTY.out()); 166 final InstructionPrinter ip = new InstructionPrinter(TTY.out());
167 final BlockPrinter bp = new BlockPrinter(this, ip, cfgOnly); 167 final BlockPrinter bp = new BlockPrinter(this, ip, cfgOnly);
168 getHIRStartBlock().iteratePreOrder(bp); 168 //getHIRStartBlock().iteratePreOrder(bp);
169 } 169 }
170 } 170 }
171 171
172 /** 172 /**
173 * Verifies the IR and prints it out if the relevant options are set. 173 * Verifies the IR and prints it out if the relevant options are set.