comparison graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java @ 2546:e1b3db8031ee

Removed liveness marking.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:54:31 +0200
parents 16b9a8b5ad39
children 91d3952f7eb7
comparison
equal deleted inserted replaced
2545:bb050fe2901d 2546:e1b3db8031ee
127 * columns specified by {@link InstructionLineColumn}. 127 * columns specified by {@link InstructionLineColumn}.
128 * 128 *
129 * @param instruction the instruction to print 129 * @param instruction the instruction to print
130 */ 130 */
131 public void printInstructionListing(Value instruction) { 131 public void printInstructionListing(Value instruction) {
132 if (instruction.isLive()) {
133 out.print('.');
134 }
135
136 int indentation = out.indentationLevel(); 132 int indentation = out.indentationLevel();
137 out.fillTo(BCI.position + indentation, ' '). 133 out.fillTo(BCI.position + indentation, ' ').
138 print(instruction instanceof Instruction ? ((Instruction) instruction).bci() : 0). 134 print(instruction instanceof Instruction ? ((Instruction) instruction).bci() : 0).
139 fillTo(USE.position + indentation, ' '). 135 fillTo(USE.position + indentation, ' ').
140 print("0"). 136 print("0").