comparison graal/GraalCompiler/src/com/sun/c1x/ir/NegateOp.java @ 2816:5526d82388be

Made more nodes floating (including the allocation nodes NewInstance, NewArray, and NewMultiArray).
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 30 May 2011 15:28:38 +0200
parents c3f64b66fc78
children bd17ac598c6e
comparison
equal deleted inserted replaced
2813:32fd5ea3a6cc 2816:5526d82388be
28 import com.sun.cri.bytecode.*; 28 import com.sun.cri.bytecode.*;
29 29
30 /** 30 /**
31 * The {@code NegateOp} instruction negates its operand. 31 * The {@code NegateOp} instruction negates its operand.
32 */ 32 */
33 public final class NegateOp extends Instruction { 33 public final class NegateOp extends Value {
34 34
35 private static final int INPUT_COUNT = 2; 35 private static final int INPUT_COUNT = 2;
36 private static final int INPUT_X = 0; 36 private static final int INPUT_X = 0;
37 private static final int INPUT_Y = 1; 37 private static final int INPUT_Y = 1;
38 38