comparison graal/GraalCompiler/src/com/sun/c1x/ir/IfOp.java @ 2594:092e628ddd5d

changed Constant and Convert, more StoreIndexed changes
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 15:43:23 +0200
parents 51ebe5f0516f
children c3f64b66fc78
comparison
equal deleted inserted replaced
2593:25c278ab287c 2594:092e628ddd5d
29 29
30 /** 30 /**
31 * The {@code IfOp} class represents a comparison that yields one of two values. 31 * The {@code IfOp} class represents a comparison that yields one of two values.
32 * Note that these nodes are not built directly from the bytecode but are introduced 32 * Note that these nodes are not built directly from the bytecode but are introduced
33 * by conditional expression elimination. 33 * by conditional expression elimination.
34 *
35 * @author Ben L. Titzer
36 */ 34 */
37 public final class IfOp extends Op2 { 35 public final class IfOp extends Op2 {
38 36
39 private static final int INPUT_COUNT = 2; 37 private static final int INPUT_COUNT = 2;
40 private static final int INPUT_TRUE_VALUE = 0; 38 private static final int INPUT_TRUE_VALUE = 0;