D | RegisterMove.java | 17 Instruction definition; field in RegisterMove 25 public RegisterMove(int dst, MoveType type, Instruction definition) { in RegisterMove() argument 29 assert definition.isConstInstruction(); in RegisterMove() 30 this.definition = definition; in RegisterMove() 62 return src + dst * 3 + type.hashCode() * 5 + (definition == null ? 0 : definition.hashCode()); in hashCode() 71 return o.src == src && o.dst == dst && o.type == type && o.definition == definition; in equals()
|