comparison graal/GraalCompiler/src/com/sun/c1x/ir/Op2.java @ 2592:fec99fc30af1

checkstyle fixes, updated AccessArray + subclasses
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 15:23:07 +0200
parents 51ebe5f0516f
children 092e628ddd5d
comparison
equal deleted inserted replaced
2587:51ebe5f0516f 2592:fec99fc30af1
49 protected int successorCount() { 49 protected int successorCount() {
50 return super.successorCount() + SUCCESSOR_COUNT; 50 return super.successorCount() + SUCCESSOR_COUNT;
51 } 51 }
52 52
53 /** 53 /**
54 * The first input to this instruction 54 * The first input to this instruction.
55 */ 55 */
56 public Value x() { 56 public Value x() {
57 return (Value) inputs().get(super.inputCount() + INPUT_X); 57 return (Value) inputs().get(super.inputCount() + INPUT_X);
58 } 58 }
59 59
60 public Value setX(Value n) { 60 public Value setX(Value n) {
61 return (Value) inputs().set(super.inputCount() + INPUT_X, n); 61 return (Value) inputs().set(super.inputCount() + INPUT_X, n);
62 } 62 }
63 63
64 /** 64 /**
65 * The second input to this instruction 65 * The second input to this instruction.
66 */ 66 */
67 public Value y() { 67 public Value y() {
68 return (Value) inputs().get(super.inputCount() + INPUT_Y); 68 return (Value) inputs().get(super.inputCount() + INPUT_Y);
69 } 69 }
70 70