Exemplo n.º 1
0
 /**
  * Map the registers defined in the instruction as destinations to the specified register. If the
  * register is not used as a destination register, no change is made.
  *
  * @param oldReg is the previous destination register
  * @param newReg is the new destination register
  */
 public void remapDestRegister(int oldReg, int newReg) {
   super.remapDestRegister(oldReg, newReg);
   if (delaySlot != null) delaySlot.remapDestRegister(oldReg, newReg);
 }