Fix relocation selection for foo-. on mips.
[oota-llvm.git] / lib / Target / Mips / MipsSEInstrInfo.cpp
1 //===-- MipsSEInstrInfo.cpp - Mips32/64 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 Mips32/64 implementation of the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MipsSEInstrInfo.h"
15 #include "InstPrinter/MipsInstPrinter.h"
16 #include "MipsMachineFunction.h"
17 #include "MipsTargetMachine.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/CodeGen/MachineInstrBuilder.h"
20 #include "llvm/CodeGen/MachineRegisterInfo.h"
21 #include "llvm/Support/CommandLine.h"
22 #include "llvm/Support/ErrorHandling.h"
23 #include "llvm/Support/TargetRegistry.h"
24
25 using namespace llvm;
26
27 MipsSEInstrInfo::MipsSEInstrInfo(const MipsSubtarget &STI)
28     : MipsInstrInfo(STI, STI.getRelocationModel() == Reloc::PIC_ ? Mips::B
29                                                                  : Mips::J),
30       RI() {}
31
32 const MipsRegisterInfo &MipsSEInstrInfo::getRegisterInfo() const {
33   return RI;
34 }
35
36 /// isLoadFromStackSlot - If the specified machine instruction is a direct
37 /// load from a stack slot, return the virtual or physical register number of
38 /// the destination along with the FrameIndex of the loaded stack slot.  If
39 /// not, return 0.  This predicate must return 0 if the instruction has
40 /// any side effects other than loading from the stack slot.
41 unsigned MipsSEInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
42                                               int &FrameIndex) const {
43   unsigned Opc = MI->getOpcode();
44
45   if ((Opc == Mips::LW)   || (Opc == Mips::LD)   ||
46       (Opc == Mips::LWC1) || (Opc == Mips::LDC1) || (Opc == Mips::LDC164)) {
47     if ((MI->getOperand(1).isFI()) && // is a stack slot
48         (MI->getOperand(2).isImm()) &&  // the imm is zero
49         (isZeroImm(MI->getOperand(2)))) {
50       FrameIndex = MI->getOperand(1).getIndex();
51       return MI->getOperand(0).getReg();
52     }
53   }
54
55   return 0;
56 }
57
58 /// isStoreToStackSlot - If the specified machine instruction is a direct
59 /// store to a stack slot, return the virtual or physical register number of
60 /// the source reg along with the FrameIndex of the loaded stack slot.  If
61 /// not, return 0.  This predicate must return 0 if the instruction has
62 /// any side effects other than storing to the stack slot.
63 unsigned MipsSEInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
64                                              int &FrameIndex) const {
65   unsigned Opc = MI->getOpcode();
66
67   if ((Opc == Mips::SW)   || (Opc == Mips::SD)   ||
68       (Opc == Mips::SWC1) || (Opc == Mips::SDC1) || (Opc == Mips::SDC164)) {
69     if ((MI->getOperand(1).isFI()) && // is a stack slot
70         (MI->getOperand(2).isImm()) &&  // the imm is zero
71         (isZeroImm(MI->getOperand(2)))) {
72       FrameIndex = MI->getOperand(1).getIndex();
73       return MI->getOperand(0).getReg();
74     }
75   }
76   return 0;
77 }
78
79 void MipsSEInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
80                                   MachineBasicBlock::iterator I, DebugLoc DL,
81                                   unsigned DestReg, unsigned SrcReg,
82                                   bool KillSrc) const {
83   unsigned Opc = 0, ZeroReg = 0;
84   bool isMicroMips = Subtarget.inMicroMipsMode();
85
86   if (Mips::GPR32RegClass.contains(DestReg)) { // Copy to CPU Reg.
87     if (Mips::GPR32RegClass.contains(SrcReg)) {
88       if (isMicroMips)
89         Opc = Mips::MOVE16_MM;
90       else
91         Opc = Mips::ADDu, ZeroReg = Mips::ZERO;
92     } else if (Mips::CCRRegClass.contains(SrcReg))
93       Opc = Mips::CFC1;
94     else if (Mips::FGR32RegClass.contains(SrcReg))
95       Opc = Mips::MFC1;
96     else if (Mips::HI32RegClass.contains(SrcReg)) {
97       Opc = isMicroMips ? Mips::MFHI16_MM : Mips::MFHI;
98       SrcReg = 0;
99     } else if (Mips::LO32RegClass.contains(SrcReg)) {
100       Opc = isMicroMips ? Mips::MFLO16_MM : Mips::MFLO;
101       SrcReg = 0;
102     } else if (Mips::HI32DSPRegClass.contains(SrcReg))
103       Opc = Mips::MFHI_DSP;
104     else if (Mips::LO32DSPRegClass.contains(SrcReg))
105       Opc = Mips::MFLO_DSP;
106     else if (Mips::DSPCCRegClass.contains(SrcReg)) {
107       BuildMI(MBB, I, DL, get(Mips::RDDSP), DestReg).addImm(1 << 4)
108         .addReg(SrcReg, RegState::Implicit | getKillRegState(KillSrc));
109       return;
110     }
111     else if (Mips::MSACtrlRegClass.contains(SrcReg))
112       Opc = Mips::CFCMSA;
113   }
114   else if (Mips::GPR32RegClass.contains(SrcReg)) { // Copy from CPU Reg.
115     if (Mips::CCRRegClass.contains(DestReg))
116       Opc = Mips::CTC1;
117     else if (Mips::FGR32RegClass.contains(DestReg))
118       Opc = Mips::MTC1;
119     else if (Mips::HI32RegClass.contains(DestReg))
120       Opc = Mips::MTHI, DestReg = 0;
121     else if (Mips::LO32RegClass.contains(DestReg))
122       Opc = Mips::MTLO, DestReg = 0;
123     else if (Mips::HI32DSPRegClass.contains(DestReg))
124       Opc = Mips::MTHI_DSP;
125     else if (Mips::LO32DSPRegClass.contains(DestReg))
126       Opc = Mips::MTLO_DSP;
127     else if (Mips::DSPCCRegClass.contains(DestReg)) {
128       BuildMI(MBB, I, DL, get(Mips::WRDSP))
129         .addReg(SrcReg, getKillRegState(KillSrc)).addImm(1 << 4)
130         .addReg(DestReg, RegState::ImplicitDefine);
131       return;
132     }
133     else if (Mips::MSACtrlRegClass.contains(DestReg))
134       Opc = Mips::CTCMSA;
135   }
136   else if (Mips::FGR32RegClass.contains(DestReg, SrcReg))
137     Opc = Mips::FMOV_S;
138   else if (Mips::AFGR64RegClass.contains(DestReg, SrcReg))
139     Opc = Mips::FMOV_D32;
140   else if (Mips::FGR64RegClass.contains(DestReg, SrcReg))
141     Opc = Mips::FMOV_D64;
142   else if (Mips::GPR64RegClass.contains(DestReg)) { // Copy to CPU64 Reg.
143     if (Mips::GPR64RegClass.contains(SrcReg))
144       Opc = Mips::DADDu, ZeroReg = Mips::ZERO_64;
145     else if (Mips::HI64RegClass.contains(SrcReg))
146       Opc = Mips::MFHI64, SrcReg = 0;
147     else if (Mips::LO64RegClass.contains(SrcReg))
148       Opc = Mips::MFLO64, SrcReg = 0;
149     else if (Mips::FGR64RegClass.contains(SrcReg))
150       Opc = Mips::DMFC1;
151   }
152   else if (Mips::GPR64RegClass.contains(SrcReg)) { // Copy from CPU64 Reg.
153     if (Mips::HI64RegClass.contains(DestReg))
154       Opc = Mips::MTHI64, DestReg = 0;
155     else if (Mips::LO64RegClass.contains(DestReg))
156       Opc = Mips::MTLO64, DestReg = 0;
157     else if (Mips::FGR64RegClass.contains(DestReg))
158       Opc = Mips::DMTC1;
159   }
160   else if (Mips::MSA128BRegClass.contains(DestReg)) { // Copy to MSA reg
161     if (Mips::MSA128BRegClass.contains(SrcReg))
162       Opc = Mips::MOVE_V;
163   }
164
165   assert(Opc && "Cannot copy registers");
166
167   MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc));
168
169   if (DestReg)
170     MIB.addReg(DestReg, RegState::Define);
171
172   if (SrcReg)
173     MIB.addReg(SrcReg, getKillRegState(KillSrc));
174
175   if (ZeroReg)
176     MIB.addReg(ZeroReg);
177 }
178
179 void MipsSEInstrInfo::
180 storeRegToStack(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
181                 unsigned SrcReg, bool isKill, int FI,
182                 const TargetRegisterClass *RC, const TargetRegisterInfo *TRI,
183                 int64_t Offset) const {
184   DebugLoc DL;
185   if (I != MBB.end()) DL = I->getDebugLoc();
186   MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOStore);
187
188   unsigned Opc = 0;
189
190   if (Mips::GPR32RegClass.hasSubClassEq(RC))
191     Opc = Mips::SW;
192   else if (Mips::GPR64RegClass.hasSubClassEq(RC))
193     Opc = Mips::SD;
194   else if (Mips::ACC64RegClass.hasSubClassEq(RC))
195     Opc = Mips::STORE_ACC64;
196   else if (Mips::ACC64DSPRegClass.hasSubClassEq(RC))
197     Opc = Mips::STORE_ACC64DSP;
198   else if (Mips::ACC128RegClass.hasSubClassEq(RC))
199     Opc = Mips::STORE_ACC128;
200   else if (Mips::DSPCCRegClass.hasSubClassEq(RC))
201     Opc = Mips::STORE_CCOND_DSP;
202   else if (Mips::FGR32RegClass.hasSubClassEq(RC))
203     Opc = Mips::SWC1;
204   else if (Mips::AFGR64RegClass.hasSubClassEq(RC))
205     Opc = Mips::SDC1;
206   else if (Mips::FGR64RegClass.hasSubClassEq(RC))
207     Opc = Mips::SDC164;
208   else if (RC->hasType(MVT::v16i8))
209     Opc = Mips::ST_B;
210   else if (RC->hasType(MVT::v8i16) || RC->hasType(MVT::v8f16))
211     Opc = Mips::ST_H;
212   else if (RC->hasType(MVT::v4i32) || RC->hasType(MVT::v4f32))
213     Opc = Mips::ST_W;
214   else if (RC->hasType(MVT::v2i64) || RC->hasType(MVT::v2f64))
215     Opc = Mips::ST_D;
216
217   assert(Opc && "Register class not handled!");
218   BuildMI(MBB, I, DL, get(Opc)).addReg(SrcReg, getKillRegState(isKill))
219     .addFrameIndex(FI).addImm(Offset).addMemOperand(MMO);
220 }
221
222 void MipsSEInstrInfo::
223 loadRegFromStack(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
224                  unsigned DestReg, int FI, const TargetRegisterClass *RC,
225                  const TargetRegisterInfo *TRI, int64_t Offset) const {
226   DebugLoc DL;
227   if (I != MBB.end()) DL = I->getDebugLoc();
228   MachineMemOperand *MMO = GetMemOperand(MBB, FI, MachineMemOperand::MOLoad);
229   unsigned Opc = 0;
230
231   if (Mips::GPR32RegClass.hasSubClassEq(RC))
232     Opc = Mips::LW;
233   else if (Mips::GPR64RegClass.hasSubClassEq(RC))
234     Opc = Mips::LD;
235   else if (Mips::ACC64RegClass.hasSubClassEq(RC))
236     Opc = Mips::LOAD_ACC64;
237   else if (Mips::ACC64DSPRegClass.hasSubClassEq(RC))
238     Opc = Mips::LOAD_ACC64DSP;
239   else if (Mips::ACC128RegClass.hasSubClassEq(RC))
240     Opc = Mips::LOAD_ACC128;
241   else if (Mips::DSPCCRegClass.hasSubClassEq(RC))
242     Opc = Mips::LOAD_CCOND_DSP;
243   else if (Mips::FGR32RegClass.hasSubClassEq(RC))
244     Opc = Mips::LWC1;
245   else if (Mips::AFGR64RegClass.hasSubClassEq(RC))
246     Opc = Mips::LDC1;
247   else if (Mips::FGR64RegClass.hasSubClassEq(RC))
248     Opc = Mips::LDC164;
249   else if (RC->hasType(MVT::v16i8))
250     Opc = Mips::LD_B;
251   else if (RC->hasType(MVT::v8i16) || RC->hasType(MVT::v8f16))
252     Opc = Mips::LD_H;
253   else if (RC->hasType(MVT::v4i32) || RC->hasType(MVT::v4f32))
254     Opc = Mips::LD_W;
255   else if (RC->hasType(MVT::v2i64) || RC->hasType(MVT::v2f64))
256     Opc = Mips::LD_D;
257
258   assert(Opc && "Register class not handled!");
259   BuildMI(MBB, I, DL, get(Opc), DestReg).addFrameIndex(FI).addImm(Offset)
260     .addMemOperand(MMO);
261 }
262
263 bool MipsSEInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const {
264   MachineBasicBlock &MBB = *MI->getParent();
265   bool isMicroMips = Subtarget.inMicroMipsMode();
266   unsigned Opc;
267
268   switch(MI->getDesc().getOpcode()) {
269   default:
270     return false;
271   case Mips::RetRA:
272     expandRetRA(MBB, MI);
273     break;
274   case Mips::PseudoMFHI:
275     Opc = isMicroMips ? Mips::MFHI16_MM : Mips::MFHI;
276     expandPseudoMFHiLo(MBB, MI, Opc);
277     break;
278   case Mips::PseudoMFLO:
279     Opc = isMicroMips ? Mips::MFLO16_MM : Mips::MFLO;
280     expandPseudoMFHiLo(MBB, MI, Opc);
281     break;
282   case Mips::PseudoMFHI64:
283     expandPseudoMFHiLo(MBB, MI, Mips::MFHI64);
284     break;
285   case Mips::PseudoMFLO64:
286     expandPseudoMFHiLo(MBB, MI, Mips::MFLO64);
287     break;
288   case Mips::PseudoMTLOHI:
289     expandPseudoMTLoHi(MBB, MI, Mips::MTLO, Mips::MTHI, false);
290     break;
291   case Mips::PseudoMTLOHI64:
292     expandPseudoMTLoHi(MBB, MI, Mips::MTLO64, Mips::MTHI64, false);
293     break;
294   case Mips::PseudoMTLOHI_DSP:
295     expandPseudoMTLoHi(MBB, MI, Mips::MTLO_DSP, Mips::MTHI_DSP, true);
296     break;
297   case Mips::PseudoCVT_S_W:
298     expandCvtFPInt(MBB, MI, Mips::CVT_S_W, Mips::MTC1, false);
299     break;
300   case Mips::PseudoCVT_D32_W:
301     expandCvtFPInt(MBB, MI, Mips::CVT_D32_W, Mips::MTC1, false);
302     break;
303   case Mips::PseudoCVT_S_L:
304     expandCvtFPInt(MBB, MI, Mips::CVT_S_L, Mips::DMTC1, true);
305     break;
306   case Mips::PseudoCVT_D64_W:
307     expandCvtFPInt(MBB, MI, Mips::CVT_D64_W, Mips::MTC1, true);
308     break;
309   case Mips::PseudoCVT_D64_L:
310     expandCvtFPInt(MBB, MI, Mips::CVT_D64_L, Mips::DMTC1, true);
311     break;
312   case Mips::BuildPairF64:
313     expandBuildPairF64(MBB, MI, false);
314     break;
315   case Mips::BuildPairF64_64:
316     expandBuildPairF64(MBB, MI, true);
317     break;
318   case Mips::ExtractElementF64:
319     expandExtractElementF64(MBB, MI, false);
320     break;
321   case Mips::ExtractElementF64_64:
322     expandExtractElementF64(MBB, MI, true);
323     break;
324   case Mips::MIPSeh_return32:
325   case Mips::MIPSeh_return64:
326     expandEhReturn(MBB, MI);
327     break;
328   }
329
330   MBB.erase(MI);
331   return true;
332 }
333
334 /// getOppositeBranchOpc - Return the inverse of the specified
335 /// opcode, e.g. turning BEQ to BNE.
336 unsigned MipsSEInstrInfo::getOppositeBranchOpc(unsigned Opc) const {
337   switch (Opc) {
338   default:           llvm_unreachable("Illegal opcode!");
339   case Mips::BEQ:    return Mips::BNE;
340   case Mips::BNE:    return Mips::BEQ;
341   case Mips::BGTZ:   return Mips::BLEZ;
342   case Mips::BGEZ:   return Mips::BLTZ;
343   case Mips::BLTZ:   return Mips::BGEZ;
344   case Mips::BLEZ:   return Mips::BGTZ;
345   case Mips::BEQ64:  return Mips::BNE64;
346   case Mips::BNE64:  return Mips::BEQ64;
347   case Mips::BGTZ64: return Mips::BLEZ64;
348   case Mips::BGEZ64: return Mips::BLTZ64;
349   case Mips::BLTZ64: return Mips::BGEZ64;
350   case Mips::BLEZ64: return Mips::BGTZ64;
351   case Mips::BC1T:   return Mips::BC1F;
352   case Mips::BC1F:   return Mips::BC1T;
353   case Mips::BEQZC_MM: return Mips::BNEZC_MM;
354   case Mips::BNEZC_MM: return Mips::BEQZC_MM;
355   }
356 }
357
358 /// Adjust SP by Amount bytes.
359 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
360                                      MachineBasicBlock &MBB,
361                                      MachineBasicBlock::iterator I) const {
362   MipsABIInfo ABI = Subtarget.getABI();
363   DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc();
364   unsigned ADDu = ABI.GetPtrAdduOp();
365   unsigned ADDiu = ABI.GetPtrAddiuOp();
366
367   if (Amount == 0)
368     return;
369
370   if (isInt<16>(Amount))// addi sp, sp, amount
371     BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
372   else { // Expand immediate that doesn't fit in 16-bit.
373     unsigned Reg = loadImmediate(Amount, MBB, I, DL, nullptr);
374     BuildMI(MBB, I, DL, get(ADDu), SP).addReg(SP).addReg(Reg, RegState::Kill);
375   }
376 }
377
378 /// This function generates the sequence of instructions needed to get the
379 /// result of adding register REG and immediate IMM.
380 unsigned
381 MipsSEInstrInfo::loadImmediate(int64_t Imm, MachineBasicBlock &MBB,
382                                MachineBasicBlock::iterator II, DebugLoc DL,
383                                unsigned *NewImm) const {
384   MipsAnalyzeImmediate AnalyzeImm;
385   const MipsSubtarget &STI = Subtarget;
386   MachineRegisterInfo &RegInfo = MBB.getParent()->getRegInfo();
387   unsigned Size = STI.isABI_N64() ? 64 : 32;
388   unsigned LUi = STI.isABI_N64() ? Mips::LUi64 : Mips::LUi;
389   unsigned ZEROReg = STI.isABI_N64() ? Mips::ZERO_64 : Mips::ZERO;
390   const TargetRegisterClass *RC = STI.isABI_N64() ?
391     &Mips::GPR64RegClass : &Mips::GPR32RegClass;
392   bool LastInstrIsADDiu = NewImm;
393
394   const MipsAnalyzeImmediate::InstSeq &Seq =
395     AnalyzeImm.Analyze(Imm, Size, LastInstrIsADDiu);
396   MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
397
398   assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
399
400   // The first instruction can be a LUi, which is different from other
401   // instructions (ADDiu, ORI and SLL) in that it does not have a register
402   // operand.
403   unsigned Reg = RegInfo.createVirtualRegister(RC);
404
405   if (Inst->Opc == LUi)
406     BuildMI(MBB, II, DL, get(LUi), Reg).addImm(SignExtend64<16>(Inst->ImmOpnd));
407   else
408     BuildMI(MBB, II, DL, get(Inst->Opc), Reg).addReg(ZEROReg)
409       .addImm(SignExtend64<16>(Inst->ImmOpnd));
410
411   // Build the remaining instructions in Seq.
412   for (++Inst; Inst != Seq.end() - LastInstrIsADDiu; ++Inst)
413     BuildMI(MBB, II, DL, get(Inst->Opc), Reg).addReg(Reg, RegState::Kill)
414       .addImm(SignExtend64<16>(Inst->ImmOpnd));
415
416   if (LastInstrIsADDiu)
417     *NewImm = Inst->ImmOpnd;
418
419   return Reg;
420 }
421
422 unsigned MipsSEInstrInfo::getAnalyzableBrOpc(unsigned Opc) const {
423   return (Opc == Mips::BEQ    || Opc == Mips::BNE    || Opc == Mips::BGTZ   ||
424           Opc == Mips::BGEZ   || Opc == Mips::BLTZ   || Opc == Mips::BLEZ   ||
425           Opc == Mips::BEQ64  || Opc == Mips::BNE64  || Opc == Mips::BGTZ64 ||
426           Opc == Mips::BGEZ64 || Opc == Mips::BLTZ64 || Opc == Mips::BLEZ64 ||
427           Opc == Mips::BC1T   || Opc == Mips::BC1F   || Opc == Mips::B      ||
428           Opc == Mips::J || Opc == Mips::BEQZC_MM || Opc == Mips::BNEZC_MM) ?
429          Opc : 0;
430 }
431
432 void MipsSEInstrInfo::expandRetRA(MachineBasicBlock &MBB,
433                                   MachineBasicBlock::iterator I) const {
434   if (Subtarget.isGP64bit())
435     BuildMI(MBB, I, I->getDebugLoc(), get(Mips::PseudoReturn64))
436         .addReg(Mips::RA_64);
437   else
438     BuildMI(MBB, I, I->getDebugLoc(), get(Mips::PseudoReturn)).addReg(Mips::RA);
439 }
440
441 std::pair<bool, bool>
442 MipsSEInstrInfo::compareOpndSize(unsigned Opc,
443                                  const MachineFunction &MF) const {
444   const MCInstrDesc &Desc = get(Opc);
445   assert(Desc.NumOperands == 2 && "Unary instruction expected.");
446   const MipsRegisterInfo *RI = &getRegisterInfo();
447   unsigned DstRegSize = getRegClass(Desc, 0, RI, MF)->getSize();
448   unsigned SrcRegSize = getRegClass(Desc, 1, RI, MF)->getSize();
449
450   return std::make_pair(DstRegSize > SrcRegSize, DstRegSize < SrcRegSize);
451 }
452
453 void MipsSEInstrInfo::expandPseudoMFHiLo(MachineBasicBlock &MBB,
454                                          MachineBasicBlock::iterator I,
455                                          unsigned NewOpc) const {
456   BuildMI(MBB, I, I->getDebugLoc(), get(NewOpc), I->getOperand(0).getReg());
457 }
458
459 void MipsSEInstrInfo::expandPseudoMTLoHi(MachineBasicBlock &MBB,
460                                          MachineBasicBlock::iterator I,
461                                          unsigned LoOpc,
462                                          unsigned HiOpc,
463                                          bool HasExplicitDef) const {
464   // Expand
465   //  lo_hi pseudomtlohi $gpr0, $gpr1
466   // to these two instructions:
467   //  mtlo $gpr0
468   //  mthi $gpr1
469
470   DebugLoc DL = I->getDebugLoc();
471   const MachineOperand &SrcLo = I->getOperand(1), &SrcHi = I->getOperand(2);
472   MachineInstrBuilder LoInst = BuildMI(MBB, I, DL, get(LoOpc));
473   MachineInstrBuilder HiInst = BuildMI(MBB, I, DL, get(HiOpc));
474   LoInst.addReg(SrcLo.getReg(), getKillRegState(SrcLo.isKill()));
475   HiInst.addReg(SrcHi.getReg(), getKillRegState(SrcHi.isKill()));
476
477   // Add lo/hi registers if the mtlo/hi instructions created have explicit
478   // def registers.
479   if (HasExplicitDef) {
480     unsigned DstReg = I->getOperand(0).getReg();
481     unsigned DstLo = getRegisterInfo().getSubReg(DstReg, Mips::sub_lo);
482     unsigned DstHi = getRegisterInfo().getSubReg(DstReg, Mips::sub_hi);
483     LoInst.addReg(DstLo, RegState::Define);
484     HiInst.addReg(DstHi, RegState::Define);
485   }
486 }
487
488 void MipsSEInstrInfo::expandCvtFPInt(MachineBasicBlock &MBB,
489                                      MachineBasicBlock::iterator I,
490                                      unsigned CvtOpc, unsigned MovOpc,
491                                      bool IsI64) const {
492   const MCInstrDesc &CvtDesc = get(CvtOpc), &MovDesc = get(MovOpc);
493   const MachineOperand &Dst = I->getOperand(0), &Src = I->getOperand(1);
494   unsigned DstReg = Dst.getReg(), SrcReg = Src.getReg(), TmpReg = DstReg;
495   unsigned KillSrc =  getKillRegState(Src.isKill());
496   DebugLoc DL = I->getDebugLoc();
497   bool DstIsLarger, SrcIsLarger;
498
499   std::tie(DstIsLarger, SrcIsLarger) =
500       compareOpndSize(CvtOpc, *MBB.getParent());
501
502   if (DstIsLarger)
503     TmpReg = getRegisterInfo().getSubReg(DstReg, Mips::sub_lo);
504
505   if (SrcIsLarger)
506     DstReg = getRegisterInfo().getSubReg(DstReg, Mips::sub_lo);
507
508   BuildMI(MBB, I, DL, MovDesc, TmpReg).addReg(SrcReg, KillSrc);
509   BuildMI(MBB, I, DL, CvtDesc, DstReg).addReg(TmpReg, RegState::Kill);
510 }
511
512 void MipsSEInstrInfo::expandExtractElementF64(MachineBasicBlock &MBB,
513                                               MachineBasicBlock::iterator I,
514                                               bool FP64) const {
515   unsigned DstReg = I->getOperand(0).getReg();
516   unsigned SrcReg = I->getOperand(1).getReg();
517   unsigned N = I->getOperand(2).getImm();
518   DebugLoc dl = I->getDebugLoc();
519
520   assert(N < 2 && "Invalid immediate");
521   unsigned SubIdx = N ? Mips::sub_hi : Mips::sub_lo;
522   unsigned SubReg = getRegisterInfo().getSubReg(SrcReg, SubIdx);
523
524   // FPXX on MIPS-II or MIPS32r1 should have been handled with a spill/reload
525   // in MipsSEFrameLowering.cpp.
526   assert(!(Subtarget.isABI_FPXX() && !Subtarget.hasMips32r2()));
527
528   // FP64A (FP64 with nooddspreg) should have been handled with a spill/reload
529   // in MipsSEFrameLowering.cpp.
530   assert(!(Subtarget.isFP64bit() && !Subtarget.useOddSPReg()));
531
532   if (SubIdx == Mips::sub_hi && Subtarget.hasMTHC1()) {
533     // FIXME: Strictly speaking MFHC1 only reads the top 32-bits however, we
534     //        claim to read the whole 64-bits as part of a white lie used to
535     //        temporarily work around a widespread bug in the -mfp64 support.
536     //        The problem is that none of the 32-bit fpu ops mention the fact
537     //        that they clobber the upper 32-bits of the 64-bit FPR. Fixing that
538     //        requires a major overhaul of the FPU implementation which can't
539     //        be done right now due to time constraints.
540     //        MFHC1 is one of two instructions that are affected since they are
541     //        the only instructions that don't read the lower 32-bits.
542     //        We therefore pretend that it reads the bottom 32-bits to
543     //        artificially create a dependency and prevent the scheduler
544     //        changing the behaviour of the code.
545     BuildMI(MBB, I, dl, get(FP64 ? Mips::MFHC1_D64 : Mips::MFHC1_D32), DstReg)
546         .addReg(SrcReg);
547   } else
548     BuildMI(MBB, I, dl, get(Mips::MFC1), DstReg).addReg(SubReg);
549 }
550
551 void MipsSEInstrInfo::expandBuildPairF64(MachineBasicBlock &MBB,
552                                          MachineBasicBlock::iterator I,
553                                          bool FP64) const {
554   unsigned DstReg = I->getOperand(0).getReg();
555   unsigned LoReg = I->getOperand(1).getReg(), HiReg = I->getOperand(2).getReg();
556   const MCInstrDesc& Mtc1Tdd = get(Mips::MTC1);
557   DebugLoc dl = I->getDebugLoc();
558   const TargetRegisterInfo &TRI = getRegisterInfo();
559
560   // When mthc1 is available, use:
561   //   mtc1 Lo, $fp
562   //   mthc1 Hi, $fp
563   //
564   // Otherwise, for O32 FPXX ABI:
565   //   spill + reload via ldc1
566   // This case is handled by the frame lowering code.
567   //
568   // Otherwise, for FP32:
569   //   mtc1 Lo, $fp
570   //   mtc1 Hi, $fp + 1
571   //
572   // The case where dmtc1 is available doesn't need to be handled here
573   // because it never creates a BuildPairF64 node.
574
575   // FPXX on MIPS-II or MIPS32r1 should have been handled with a spill/reload
576   // in MipsSEFrameLowering.cpp.
577   assert(!(Subtarget.isABI_FPXX() && !Subtarget.hasMips32r2()));
578
579   // FP64A (FP64 with nooddspreg) should have been handled with a spill/reload
580   // in MipsSEFrameLowering.cpp.
581   assert(!(Subtarget.isFP64bit() && !Subtarget.useOddSPReg()));
582
583   BuildMI(MBB, I, dl, Mtc1Tdd, TRI.getSubReg(DstReg, Mips::sub_lo))
584     .addReg(LoReg);
585
586   if (Subtarget.hasMTHC1()) {
587     // FIXME: The .addReg(DstReg) is a white lie used to temporarily work
588     //        around a widespread bug in the -mfp64 support.
589     //        The problem is that none of the 32-bit fpu ops mention the fact
590     //        that they clobber the upper 32-bits of the 64-bit FPR. Fixing that
591     //        requires a major overhaul of the FPU implementation which can't
592     //        be done right now due to time constraints.
593     //        MTHC1 is one of two instructions that are affected since they are
594     //        the only instructions that don't read the lower 32-bits.
595     //        We therefore pretend that it reads the bottom 32-bits to
596     //        artificially create a dependency and prevent the scheduler
597     //        changing the behaviour of the code.
598     BuildMI(MBB, I, dl, get(FP64 ? Mips::MTHC1_D64 : Mips::MTHC1_D32), DstReg)
599         .addReg(DstReg)
600         .addReg(HiReg);
601   } else if (Subtarget.isABI_FPXX())
602     llvm_unreachable("BuildPairF64 not expanded in frame lowering code!");
603   else
604     BuildMI(MBB, I, dl, Mtc1Tdd, TRI.getSubReg(DstReg, Mips::sub_hi))
605       .addReg(HiReg);
606 }
607
608 void MipsSEInstrInfo::expandEhReturn(MachineBasicBlock &MBB,
609                                      MachineBasicBlock::iterator I) const {
610   // This pseudo instruction is generated as part of the lowering of
611   // ISD::EH_RETURN. We convert it to a stack increment by OffsetReg, and
612   // indirect jump to TargetReg
613   MipsABIInfo ABI = Subtarget.getABI();
614   unsigned ADDU = ABI.GetPtrAdduOp();
615   unsigned SP = Subtarget.isGP64bit() ? Mips::SP_64 : Mips::SP;
616   unsigned RA = Subtarget.isGP64bit() ? Mips::RA_64 : Mips::RA;
617   unsigned T9 = Subtarget.isGP64bit() ? Mips::T9_64 : Mips::T9;
618   unsigned ZERO = Subtarget.isGP64bit() ? Mips::ZERO_64 : Mips::ZERO;
619   unsigned OffsetReg = I->getOperand(0).getReg();
620   unsigned TargetReg = I->getOperand(1).getReg();
621
622   // addu $ra, $v0, $zero
623   // addu $sp, $sp, $v1
624   // jr   $ra (via RetRA)
625   const TargetMachine &TM = MBB.getParent()->getTarget();
626   if (TM.getRelocationModel() == Reloc::PIC_)
627     BuildMI(MBB, I, I->getDebugLoc(), get(ADDU), T9)
628         .addReg(TargetReg)
629         .addReg(ZERO);
630   BuildMI(MBB, I, I->getDebugLoc(), get(ADDU), RA)
631       .addReg(TargetReg)
632       .addReg(ZERO);
633   BuildMI(MBB, I, I->getDebugLoc(), get(ADDU), SP).addReg(SP).addReg(OffsetReg);
634   expandRetRA(MBB, I);
635 }
636
637 const MipsInstrInfo *llvm::createMipsSEInstrInfo(const MipsSubtarget &STI) {
638   return new MipsSEInstrInfo(STI);
639 }