comparison graal/GraalCompiler/src/com/sun/c1x/ir/Op2.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 fec99fc30af1
children c3f64b66fc78
comparison
equal deleted inserted replaced
2593:25c278ab287c 2594:092e628ddd5d
27 import com.sun.cri.bytecode.*; 27 import com.sun.cri.bytecode.*;
28 import com.sun.cri.ci.*; 28 import com.sun.cri.ci.*;
29 29
30 /** 30 /**
31 * The {@code Op2} class is the base of arithmetic and logic operations with two inputs. 31 * The {@code Op2} class is the base of arithmetic and logic operations with two inputs.
32 *
33 * @author Ben L. Titzer
34 */ 32 */
35 public abstract class Op2 extends Instruction { 33 public abstract class Op2 extends Instruction {
36 34
37 private static final int INPUT_COUNT = 2; 35 private static final int INPUT_COUNT = 2;
38 private static final int INPUT_X = 0; 36 private static final int INPUT_X = 0;