Div, Rem int/unsigned int
[oota-llvm.git] / lib / Target / Mips / Mips16InstrInfo.cpp
1 //===-- Mips16InstrInfo.cpp - Mips16 Instruction Information --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the Mips16 implementation of the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "Mips16InstrInfo.h"
15 #include "MipsTargetMachine.h"
16 #include "MipsMachineFunction.h"
17 #include "InstPrinter/MipsInstPrinter.h"
18 #include "llvm/CodeGen/MachineInstrBuilder.h"
19 #include "llvm/CodeGen/MachineRegisterInfo.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/TargetRegistry.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/StringRef.h"
24
25 using namespace llvm;
26
27 Mips16InstrInfo::Mips16InstrInfo(MipsTargetMachine &tm)
28   : MipsInstrInfo(tm, /* FIXME: set mips16 unconditional br */ 0),
29     RI(*tm.getSubtargetImpl()) {}
30
31 const MipsRegisterInfo &Mips16InstrInfo::getRegisterInfo() const {
32   return RI;
33 }
34
35 /// isLoadFromStackSlot - If the specified machine instruction is a direct
36 /// load from a stack slot, return the virtual or physical register number of
37 /// the destination along with the FrameIndex of the loaded stack slot.  If
38 /// not, return 0.  This predicate must return 0 if the instruction has
39 /// any side effects other than loading from the stack slot.
40 unsigned Mips16InstrInfo::
41 isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const
42 {
43   return 0;
44 }
45
46 /// isStoreToStackSlot - If the specified machine instruction is a direct
47 /// store to a stack slot, return the virtual or physical register number of
48 /// the source reg along with the FrameIndex of the loaded stack slot.  If
49 /// not, return 0.  This predicate must return 0 if the instruction has
50 /// any side effects other than storing to the stack slot.
51 unsigned Mips16InstrInfo::
52 isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const
53 {
54   return 0;
55 }
56
57 void Mips16InstrInfo::copyPhysReg(MachineBasicBlock &MBB,
58                                   MachineBasicBlock::iterator I, DebugLoc DL,
59                                   unsigned DestReg, unsigned SrcReg,
60                                   bool KillSrc) const {
61   unsigned Opc = 0;
62
63   if (Mips::CPU16RegsRegClass.contains(DestReg) &&
64       Mips::CPURegsRegClass.contains(SrcReg))
65     Opc = Mips::MoveR3216;
66   else if (Mips::CPURegsRegClass.contains(DestReg) &&
67            Mips::CPU16RegsRegClass.contains(SrcReg))
68     Opc = Mips::Move32R16;
69   else if ((SrcReg == Mips::HI) &&
70            (Mips::CPU16RegsRegClass.contains(DestReg)))
71     Opc = Mips::Mfhi16, SrcReg = 0;
72
73   else if ((SrcReg == Mips::LO) &&
74            (Mips::CPU16RegsRegClass.contains(DestReg)))
75     Opc = Mips::Mflo16, SrcReg = 0;
76
77
78   assert(Opc && "Cannot copy registers");
79
80   MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
81
82   if (DestReg)
83     MIB.addReg(DestReg, RegState::Define);
84
85   if (SrcReg)
86     MIB.addReg(SrcReg, getKillRegState(KillSrc));
87 }
88
89 void Mips16InstrInfo::
90 storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
91                     unsigned SrcReg, bool isKill, int FI,
92                     const TargetRegisterClass *RC,
93                     const TargetRegisterInfo *TRI) const {
94   DebugLoc DL;
95   if (I != MBB.end()) DL = I->getDebugLoc();
96   MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOStore);
97   unsigned Opc = 0;
98   if (Mips::CPU16RegsRegClass.hasSubClassEq(RC))
99     Opc = Mips::SwRxSpImmX16;
100   assert(Opc && "Register class not handled!");
101   BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill))
102     .addFrameIndex(FI).addImm(0).addMemOperand(MMO);
103 }
104
105 void Mips16InstrInfo::
106 loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
107                      unsigned DestReg, int FI,
108                      const TargetRegisterClass *RC,
109                      const TargetRegisterInfo *TRI) const {
110   DebugLoc DL;
111   if (I != MBB.end()) DL = I->getDebugLoc();
112   MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOLoad);
113   unsigned Opc = 0;
114
115   if (Mips::CPU16RegsRegClass.hasSubClassEq(RC))
116     Opc = Mips::LwRxSpImmX16;
117   assert(Opc && "Register class not handled!");
118   BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(0)
119     .addMemOperand(MMO);
120 }
121
122 bool Mips16InstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
123   MachineBasicBlock &MBB = *MI->getParent();
124
125   switch(MI->getDesc().getOpcode()) {
126   default:
127     return false;
128   case Mips::RetRA16:
129     ExpandRetRA16(MBB, MI, Mips::JrRa16);
130     break;
131   }
132
133   MBB.erase(MI);
134   return true;
135 }
136
137 /// GetOppositeBranchOpc - Return the inverse of the specified
138 /// opcode, e.g. turning BEQ to BNE.
139 unsigned Mips16InstrInfo::GetOppositeBranchOpc(unsigned Opc) const {
140   assert(false && "Implement this function.");
141   return 0;
142 }
143
144 unsigned Mips16InstrInfo::GetAnalyzableBrOpc(unsigned Opc) const {
145   return 0;
146 }
147
148 void Mips16InstrInfo::ExpandRetRA16(MachineBasicBlock &MBB,
149                                   MachineBasicBlock::iterator I,
150                                   unsigned Opc) const {
151   BuildMI(MBB, I, I->getDebugLoc(), get(Opc));
152 }
153
154 const MipsInstrInfo *llvm::createMips16InstrInfo(MipsTargetMachine &TM) {
155   return new Mips16InstrInfo(TM);
156 }