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