comparison graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java @ 2622:91d3952f7eb7

Framestate work : using stateAFter and reducting the number of nodes with framestates. Intermediate state (does not pass tests)
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 10 May 2011 12:37:46 +0200
parents e1b3db8031ee
children c1a9bf38da28
comparison
equal deleted inserted replaced
2621:dd115f80acf8 2622:91d3952f7eb7
141 String flags = instruction.flagsToString(); 141 String flags = instruction.flagsToString();
142 if (!flags.isEmpty()) { 142 if (!flags.isEmpty()) {
143 out.print(" [flags: " + flags + "]"); 143 out.print(" [flags: " + flags + "]");
144 } 144 }
145 if (instruction instanceof StateSplit) { 145 if (instruction instanceof StateSplit) {
146 out.print(" [state: " + ((StateSplit) instruction).stateBefore() + "]"); 146 out.print(" [state: " + ((StateSplit) instruction).stateAfter() + "]");
147 } 147 }
148 out.println(); 148 out.println();
149 } 149 }
150 } 150 }