Add default implementation of PredicateInstruction().
authorEvan Cheng <evan.cheng@apple.com>
Wed, 16 May 2007 21:20:37 +0000 (21:20 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 16 May 2007 21:20:37 +0000 (21:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37123 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetInstrInfo.cpp

index b9fca8a1bfde635b6dfb424967617988bc1046a4..fe5ee1d25e08e8ad8d5b779cd242f013582278e0 100644 (file)
@@ -59,3 +59,23 @@ MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr *MI) const {
     MI->getOperand(1).unsetIsKill();
   return MI;
 }
+
+void TargetInstrInfo::PredicateInstruction(MachineInstr *MI,
+                                      std::vector<MachineOperand> &Cond) const {
+  const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
+  assert((TID->Flags & M_PREDICABLE) &&
+         "Predicating an unpredicable instruction!");
+
+  for (unsigned j = 0, i = 0, e = MI->getNumOperands(); i != e; ++i) {
+    if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) {
+      MachineOperand &MO = MI->getOperand(i);
+      if (MO.isReg())
+        MO.setReg(Cond[j].getReg());
+      else if (MO.isImm())
+        MO.setImm(Cond[j].getImmedValue());
+      else if (MO.isMBB())
+        MO.setMachineBasicBlock(Cond[j].getMachineBasicBlock());
+      ++j;
+    }
+  }
+}