Add default implementation of PredicateInstruction().
[oota-llvm.git] / lib / Target / TargetInstrInfo.cpp
1 //===-- TargetInstrInfo.cpp - Target Instruction Information --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Target/TargetInstrInfo.h"
15 #include "llvm/CodeGen/MachineInstr.h"
16 #include "llvm/Constant.h"
17 #include "llvm/DerivedTypes.h"
18 using namespace llvm;
19
20 /// findTiedToSrcOperand - Returns the operand that is tied to the specified
21 /// dest operand. Returns -1 if there isn't one.
22 int TargetInstrDescriptor::findTiedToSrcOperand(unsigned OpNum) const {
23   for (unsigned i = 0, e = numOperands; i != e; ++i) {
24     if (i == OpNum)
25       continue;
26     if (getOperandConstraint(i, TOI::TIED_TO) == (int)OpNum)
27       return i;
28   }
29   return -1;
30 }
31
32
33 TargetInstrInfo::TargetInstrInfo(const TargetInstrDescriptor* Desc,
34                                  unsigned numOpcodes)
35   : desc(Desc), NumOpcodes(numOpcodes) {
36 }
37
38 TargetInstrInfo::~TargetInstrInfo() {
39 }
40
41 // commuteInstruction - The default implementation of this method just exchanges
42 // operand 1 and 2.
43 MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr *MI) const {
44   assert(MI->getOperand(1).isRegister() && MI->getOperand(2).isRegister() &&
45          "This only knows how to commute register operands so far");
46   unsigned Reg1 = MI->getOperand(1).getReg();
47   unsigned Reg2 = MI->getOperand(2).getReg();
48   bool Reg1IsKill = MI->getOperand(1).isKill();
49   bool Reg2IsKill = MI->getOperand(2).isKill();
50   MI->getOperand(2).setReg(Reg1);
51   MI->getOperand(1).setReg(Reg2);
52   if (Reg1IsKill)
53     MI->getOperand(2).setIsKill();
54   else
55     MI->getOperand(2).unsetIsKill();
56   if (Reg2IsKill)
57     MI->getOperand(1).setIsKill();
58   else
59     MI->getOperand(1).unsetIsKill();
60   return MI;
61 }
62
63 void TargetInstrInfo::PredicateInstruction(MachineInstr *MI,
64                                       std::vector<MachineOperand> &Cond) const {
65   const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
66   assert((TID->Flags & M_PREDICABLE) &&
67          "Predicating an unpredicable instruction!");
68
69   for (unsigned j = 0, i = 0, e = MI->getNumOperands(); i != e; ++i) {
70     if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) {
71       MachineOperand &MO = MI->getOperand(i);
72       if (MO.isReg())
73         MO.setReg(Cond[j].getReg());
74       else if (MO.isImm())
75         MO.setImm(Cond[j].getImmedValue());
76       else if (MO.isMBB())
77         MO.setMachineBasicBlock(Cond[j].getMachineBasicBlock());
78       ++j;
79     }
80   }
81 }