ARM: fix bug in -Oz stack adjustment folding
[oota-llvm.git] / lib / Target / ARM / ARMBaseInstrInfo.cpp
1 //===-- ARMBaseInstrInfo.cpp - ARM 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 Base ARM implementation of the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARM.h"
15 #include "ARMBaseInstrInfo.h"
16 #include "ARMBaseRegisterInfo.h"
17 #include "ARMConstantPoolValue.h"
18 #include "ARMFeatures.h"
19 #include "ARMHazardRecognizer.h"
20 #include "ARMMachineFunctionInfo.h"
21 #include "MCTargetDesc/ARMAddressingModes.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/CodeGen/LiveVariables.h"
24 #include "llvm/CodeGen/MachineConstantPool.h"
25 #include "llvm/CodeGen/MachineFrameInfo.h"
26 #include "llvm/CodeGen/MachineInstrBuilder.h"
27 #include "llvm/CodeGen/MachineJumpTableInfo.h"
28 #include "llvm/CodeGen/MachineMemOperand.h"
29 #include "llvm/CodeGen/MachineRegisterInfo.h"
30 #include "llvm/CodeGen/SelectionDAGNodes.h"
31 #include "llvm/IR/Constants.h"
32 #include "llvm/IR/Function.h"
33 #include "llvm/IR/GlobalValue.h"
34 #include "llvm/MC/MCAsmInfo.h"
35 #include "llvm/Support/BranchProbability.h"
36 #include "llvm/Support/CommandLine.h"
37 #include "llvm/Support/Debug.h"
38 #include "llvm/Support/ErrorHandling.h"
39
40 #define GET_INSTRINFO_CTOR_DTOR
41 #include "ARMGenInstrInfo.inc"
42
43 using namespace llvm;
44
45 static cl::opt<bool>
46 EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden,
47                cl::desc("Enable ARM 2-addr to 3-addr conv"));
48
49 static cl::opt<bool>
50 WidenVMOVS("widen-vmovs", cl::Hidden, cl::init(true),
51            cl::desc("Widen ARM vmovs to vmovd when possible"));
52
53 static cl::opt<unsigned>
54 SwiftPartialUpdateClearance("swift-partial-update-clearance",
55      cl::Hidden, cl::init(12),
56      cl::desc("Clearance before partial register updates"));
57
58 /// ARM_MLxEntry - Record information about MLA / MLS instructions.
59 struct ARM_MLxEntry {
60   uint16_t MLxOpc;     // MLA / MLS opcode
61   uint16_t MulOpc;     // Expanded multiplication opcode
62   uint16_t AddSubOpc;  // Expanded add / sub opcode
63   bool NegAcc;         // True if the acc is negated before the add / sub.
64   bool HasLane;        // True if instruction has an extra "lane" operand.
65 };
66
67 static const ARM_MLxEntry ARM_MLxTable[] = {
68   // MLxOpc,          MulOpc,           AddSubOpc,       NegAcc, HasLane
69   // fp scalar ops
70   { ARM::VMLAS,       ARM::VMULS,       ARM::VADDS,      false,  false },
71   { ARM::VMLSS,       ARM::VMULS,       ARM::VSUBS,      false,  false },
72   { ARM::VMLAD,       ARM::VMULD,       ARM::VADDD,      false,  false },
73   { ARM::VMLSD,       ARM::VMULD,       ARM::VSUBD,      false,  false },
74   { ARM::VNMLAS,      ARM::VNMULS,      ARM::VSUBS,      true,   false },
75   { ARM::VNMLSS,      ARM::VMULS,       ARM::VSUBS,      true,   false },
76   { ARM::VNMLAD,      ARM::VNMULD,      ARM::VSUBD,      true,   false },
77   { ARM::VNMLSD,      ARM::VMULD,       ARM::VSUBD,      true,   false },
78
79   // fp SIMD ops
80   { ARM::VMLAfd,      ARM::VMULfd,      ARM::VADDfd,     false,  false },
81   { ARM::VMLSfd,      ARM::VMULfd,      ARM::VSUBfd,     false,  false },
82   { ARM::VMLAfq,      ARM::VMULfq,      ARM::VADDfq,     false,  false },
83   { ARM::VMLSfq,      ARM::VMULfq,      ARM::VSUBfq,     false,  false },
84   { ARM::VMLAslfd,    ARM::VMULslfd,    ARM::VADDfd,     false,  true  },
85   { ARM::VMLSslfd,    ARM::VMULslfd,    ARM::VSUBfd,     false,  true  },
86   { ARM::VMLAslfq,    ARM::VMULslfq,    ARM::VADDfq,     false,  true  },
87   { ARM::VMLSslfq,    ARM::VMULslfq,    ARM::VSUBfq,     false,  true  },
88 };
89
90 ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
91   : ARMGenInstrInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
92     Subtarget(STI) {
93   for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
94     if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
95       assert(false && "Duplicated entries?");
96     MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
97     MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
98   }
99 }
100
101 // Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
102 // currently defaults to no prepass hazard recognizer.
103 ScheduleHazardRecognizer *ARMBaseInstrInfo::
104 CreateTargetHazardRecognizer(const TargetMachine *TM,
105                              const ScheduleDAG *DAG) const {
106   if (usePreRAHazardRecognizer()) {
107     const InstrItineraryData *II = TM->getInstrItineraryData();
108     return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
109   }
110   return TargetInstrInfo::CreateTargetHazardRecognizer(TM, DAG);
111 }
112
113 ScheduleHazardRecognizer *ARMBaseInstrInfo::
114 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
115                                    const ScheduleDAG *DAG) const {
116   if (Subtarget.isThumb2() || Subtarget.hasVFP2())
117     return (ScheduleHazardRecognizer *)new ARMHazardRecognizer(II, DAG);
118   return TargetInstrInfo::CreateTargetPostRAHazardRecognizer(II, DAG);
119 }
120
121 MachineInstr *
122 ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
123                                         MachineBasicBlock::iterator &MBBI,
124                                         LiveVariables *LV) const {
125   // FIXME: Thumb2 support.
126
127   if (!EnableARM3Addr)
128     return NULL;
129
130   MachineInstr *MI = MBBI;
131   MachineFunction &MF = *MI->getParent()->getParent();
132   uint64_t TSFlags = MI->getDesc().TSFlags;
133   bool isPre = false;
134   switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
135   default: return NULL;
136   case ARMII::IndexModePre:
137     isPre = true;
138     break;
139   case ARMII::IndexModePost:
140     break;
141   }
142
143   // Try splitting an indexed load/store to an un-indexed one plus an add/sub
144   // operation.
145   unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
146   if (MemOpc == 0)
147     return NULL;
148
149   MachineInstr *UpdateMI = NULL;
150   MachineInstr *MemMI = NULL;
151   unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
152   const MCInstrDesc &MCID = MI->getDesc();
153   unsigned NumOps = MCID.getNumOperands();
154   bool isLoad = !MI->mayStore();
155   const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
156   const MachineOperand &Base = MI->getOperand(2);
157   const MachineOperand &Offset = MI->getOperand(NumOps-3);
158   unsigned WBReg = WB.getReg();
159   unsigned BaseReg = Base.getReg();
160   unsigned OffReg = Offset.getReg();
161   unsigned OffImm = MI->getOperand(NumOps-2).getImm();
162   ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
163   switch (AddrMode) {
164   default: llvm_unreachable("Unknown indexed op!");
165   case ARMII::AddrMode2: {
166     bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
167     unsigned Amt = ARM_AM::getAM2Offset(OffImm);
168     if (OffReg == 0) {
169       if (ARM_AM::getSOImmVal(Amt) == -1)
170         // Can't encode it in a so_imm operand. This transformation will
171         // add more than 1 instruction. Abandon!
172         return NULL;
173       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
174                          get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
175         .addReg(BaseReg).addImm(Amt)
176         .addImm(Pred).addReg(0).addReg(0);
177     } else if (Amt != 0) {
178       ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
179       unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
180       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
181                          get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
182         .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
183         .addImm(Pred).addReg(0).addReg(0);
184     } else
185       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
186                          get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
187         .addReg(BaseReg).addReg(OffReg)
188         .addImm(Pred).addReg(0).addReg(0);
189     break;
190   }
191   case ARMII::AddrMode3 : {
192     bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
193     unsigned Amt = ARM_AM::getAM3Offset(OffImm);
194     if (OffReg == 0)
195       // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
196       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
197                          get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
198         .addReg(BaseReg).addImm(Amt)
199         .addImm(Pred).addReg(0).addReg(0);
200     else
201       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
202                          get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
203         .addReg(BaseReg).addReg(OffReg)
204         .addImm(Pred).addReg(0).addReg(0);
205     break;
206   }
207   }
208
209   std::vector<MachineInstr*> NewMIs;
210   if (isPre) {
211     if (isLoad)
212       MemMI = BuildMI(MF, MI->getDebugLoc(),
213                       get(MemOpc), MI->getOperand(0).getReg())
214         .addReg(WBReg).addImm(0).addImm(Pred);
215     else
216       MemMI = BuildMI(MF, MI->getDebugLoc(),
217                       get(MemOpc)).addReg(MI->getOperand(1).getReg())
218         .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
219     NewMIs.push_back(MemMI);
220     NewMIs.push_back(UpdateMI);
221   } else {
222     if (isLoad)
223       MemMI = BuildMI(MF, MI->getDebugLoc(),
224                       get(MemOpc), MI->getOperand(0).getReg())
225         .addReg(BaseReg).addImm(0).addImm(Pred);
226     else
227       MemMI = BuildMI(MF, MI->getDebugLoc(),
228                       get(MemOpc)).addReg(MI->getOperand(1).getReg())
229         .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
230     if (WB.isDead())
231       UpdateMI->getOperand(0).setIsDead();
232     NewMIs.push_back(UpdateMI);
233     NewMIs.push_back(MemMI);
234   }
235
236   // Transfer LiveVariables states, kill / dead info.
237   if (LV) {
238     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
239       MachineOperand &MO = MI->getOperand(i);
240       if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
241         unsigned Reg = MO.getReg();
242
243         LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
244         if (MO.isDef()) {
245           MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
246           if (MO.isDead())
247             LV->addVirtualRegisterDead(Reg, NewMI);
248         }
249         if (MO.isUse() && MO.isKill()) {
250           for (unsigned j = 0; j < 2; ++j) {
251             // Look at the two new MI's in reverse order.
252             MachineInstr *NewMI = NewMIs[j];
253             if (!NewMI->readsRegister(Reg))
254               continue;
255             LV->addVirtualRegisterKilled(Reg, NewMI);
256             if (VI.removeKill(MI))
257               VI.Kills.push_back(NewMI);
258             break;
259           }
260         }
261       }
262     }
263   }
264
265   MFI->insert(MBBI, NewMIs[1]);
266   MFI->insert(MBBI, NewMIs[0]);
267   return NewMIs[0];
268 }
269
270 // Branch analysis.
271 bool
272 ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
273                                 MachineBasicBlock *&FBB,
274                                 SmallVectorImpl<MachineOperand> &Cond,
275                                 bool AllowModify) const {
276   TBB = 0;
277   FBB = 0;
278
279   MachineBasicBlock::iterator I = MBB.end();
280   if (I == MBB.begin())
281     return false; // Empty blocks are easy.
282   --I;
283
284   // Walk backwards from the end of the basic block until the branch is
285   // analyzed or we give up.
286   while (isPredicated(I) || I->isTerminator()) {
287
288     // Flag to be raised on unanalyzeable instructions. This is useful in cases
289     // where we want to clean up on the end of the basic block before we bail
290     // out.
291     bool CantAnalyze = false;
292
293     // Skip over DEBUG values and predicated nonterminators.
294     while (I->isDebugValue() || !I->isTerminator()) {
295       if (I == MBB.begin())
296         return false;
297       --I;
298     }
299
300     if (isIndirectBranchOpcode(I->getOpcode()) ||
301         isJumpTableBranchOpcode(I->getOpcode())) {
302       // Indirect branches and jump tables can't be analyzed, but we still want
303       // to clean up any instructions at the tail of the basic block.
304       CantAnalyze = true;
305     } else if (isUncondBranchOpcode(I->getOpcode())) {
306       TBB = I->getOperand(0).getMBB();
307     } else if (isCondBranchOpcode(I->getOpcode())) {
308       // Bail out if we encounter multiple conditional branches.
309       if (!Cond.empty())
310         return true;
311
312       assert(!FBB && "FBB should have been null.");
313       FBB = TBB;
314       TBB = I->getOperand(0).getMBB();
315       Cond.push_back(I->getOperand(1));
316       Cond.push_back(I->getOperand(2));
317     } else if (I->isReturn()) {
318       // Returns can't be analyzed, but we should run cleanup.
319       CantAnalyze = !isPredicated(I);
320     } else {
321       // We encountered other unrecognized terminator. Bail out immediately.
322       return true;
323     }
324
325     // Cleanup code - to be run for unpredicated unconditional branches and
326     //                returns.
327     if (!isPredicated(I) &&
328           (isUncondBranchOpcode(I->getOpcode()) ||
329            isIndirectBranchOpcode(I->getOpcode()) ||
330            isJumpTableBranchOpcode(I->getOpcode()) ||
331            I->isReturn())) {
332       // Forget any previous condition branch information - it no longer applies.
333       Cond.clear();
334       FBB = 0;
335
336       // If we can modify the function, delete everything below this
337       // unconditional branch.
338       if (AllowModify) {
339         MachineBasicBlock::iterator DI = llvm::next(I);
340         while (DI != MBB.end()) {
341           MachineInstr *InstToDelete = DI;
342           ++DI;
343           InstToDelete->eraseFromParent();
344         }
345       }
346     }
347
348     if (CantAnalyze)
349       return true;
350
351     if (I == MBB.begin())
352       return false;
353
354     --I;
355   }
356
357   // We made it past the terminators without bailing out - we must have
358   // analyzed this branch successfully.
359   return false;
360 }
361
362
363 unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
364   MachineBasicBlock::iterator I = MBB.end();
365   if (I == MBB.begin()) return 0;
366   --I;
367   while (I->isDebugValue()) {
368     if (I == MBB.begin())
369       return 0;
370     --I;
371   }
372   if (!isUncondBranchOpcode(I->getOpcode()) &&
373       !isCondBranchOpcode(I->getOpcode()))
374     return 0;
375
376   // Remove the branch.
377   I->eraseFromParent();
378
379   I = MBB.end();
380
381   if (I == MBB.begin()) return 1;
382   --I;
383   if (!isCondBranchOpcode(I->getOpcode()))
384     return 1;
385
386   // Remove the branch.
387   I->eraseFromParent();
388   return 2;
389 }
390
391 unsigned
392 ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
393                                MachineBasicBlock *FBB,
394                                const SmallVectorImpl<MachineOperand> &Cond,
395                                DebugLoc DL) const {
396   ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
397   int BOpc   = !AFI->isThumbFunction()
398     ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
399   int BccOpc = !AFI->isThumbFunction()
400     ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
401   bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
402
403   // Shouldn't be a fall through.
404   assert(TBB && "InsertBranch must not be told to insert a fallthrough");
405   assert((Cond.size() == 2 || Cond.size() == 0) &&
406          "ARM branch conditions have two components!");
407
408   if (FBB == 0) {
409     if (Cond.empty()) { // Unconditional branch?
410       if (isThumb)
411         BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0);
412       else
413         BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
414     } else
415       BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
416         .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
417     return 1;
418   }
419
420   // Two-way conditional branch.
421   BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
422     .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
423   if (isThumb)
424     BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0);
425   else
426     BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
427   return 2;
428 }
429
430 bool ARMBaseInstrInfo::
431 ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
432   ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
433   Cond[0].setImm(ARMCC::getOppositeCondition(CC));
434   return false;
435 }
436
437 bool ARMBaseInstrInfo::isPredicated(const MachineInstr *MI) const {
438   if (MI->isBundle()) {
439     MachineBasicBlock::const_instr_iterator I = MI;
440     MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
441     while (++I != E && I->isInsideBundle()) {
442       int PIdx = I->findFirstPredOperandIdx();
443       if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL)
444         return true;
445     }
446     return false;
447   }
448
449   int PIdx = MI->findFirstPredOperandIdx();
450   return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL;
451 }
452
453 bool ARMBaseInstrInfo::
454 PredicateInstruction(MachineInstr *MI,
455                      const SmallVectorImpl<MachineOperand> &Pred) const {
456   unsigned Opc = MI->getOpcode();
457   if (isUncondBranchOpcode(Opc)) {
458     MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
459     MachineInstrBuilder(*MI->getParent()->getParent(), MI)
460       .addImm(Pred[0].getImm())
461       .addReg(Pred[1].getReg());
462     return true;
463   }
464
465   int PIdx = MI->findFirstPredOperandIdx();
466   if (PIdx != -1) {
467     MachineOperand &PMO = MI->getOperand(PIdx);
468     PMO.setImm(Pred[0].getImm());
469     MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
470     return true;
471   }
472   return false;
473 }
474
475 bool ARMBaseInstrInfo::
476 SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
477                   const SmallVectorImpl<MachineOperand> &Pred2) const {
478   if (Pred1.size() > 2 || Pred2.size() > 2)
479     return false;
480
481   ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
482   ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
483   if (CC1 == CC2)
484     return true;
485
486   switch (CC1) {
487   default:
488     return false;
489   case ARMCC::AL:
490     return true;
491   case ARMCC::HS:
492     return CC2 == ARMCC::HI;
493   case ARMCC::LS:
494     return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
495   case ARMCC::GE:
496     return CC2 == ARMCC::GT;
497   case ARMCC::LE:
498     return CC2 == ARMCC::LT;
499   }
500 }
501
502 bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
503                                     std::vector<MachineOperand> &Pred) const {
504   bool Found = false;
505   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
506     const MachineOperand &MO = MI->getOperand(i);
507     if ((MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) ||
508         (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)) {
509       Pred.push_back(MO);
510       Found = true;
511     }
512   }
513
514   return Found;
515 }
516
517 /// isPredicable - Return true if the specified instruction can be predicated.
518 /// By default, this returns true for every instruction with a
519 /// PredicateOperand.
520 bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
521   if (!MI->isPredicable())
522     return false;
523
524   ARMFunctionInfo *AFI =
525     MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
526
527   if (AFI->isThumb2Function()) {
528     if (getSubtarget().restrictIT())
529       return isV8EligibleForIT(MI);
530   } else { // non-Thumb
531     if ((MI->getDesc().TSFlags & ARMII::DomainMask) == ARMII::DomainNEON)
532       return false;
533   }
534
535   return true;
536 }
537
538 /// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
539 LLVM_ATTRIBUTE_NOINLINE
540 static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
541                                 unsigned JTI);
542 static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
543                                 unsigned JTI) {
544   assert(JTI < JT.size());
545   return JT[JTI].MBBs.size();
546 }
547
548 /// GetInstSize - Return the size of the specified MachineInstr.
549 ///
550 unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
551   const MachineBasicBlock &MBB = *MI->getParent();
552   const MachineFunction *MF = MBB.getParent();
553   const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
554
555   const MCInstrDesc &MCID = MI->getDesc();
556   if (MCID.getSize())
557     return MCID.getSize();
558
559   // If this machine instr is an inline asm, measure it.
560   if (MI->getOpcode() == ARM::INLINEASM)
561     return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
562   if (MI->isLabel())
563     return 0;
564   unsigned Opc = MI->getOpcode();
565   switch (Opc) {
566   case TargetOpcode::IMPLICIT_DEF:
567   case TargetOpcode::KILL:
568   case TargetOpcode::PROLOG_LABEL:
569   case TargetOpcode::EH_LABEL:
570   case TargetOpcode::DBG_VALUE:
571     return 0;
572   case TargetOpcode::BUNDLE:
573     return getInstBundleLength(MI);
574   case ARM::MOVi16_ga_pcrel:
575   case ARM::MOVTi16_ga_pcrel:
576   case ARM::t2MOVi16_ga_pcrel:
577   case ARM::t2MOVTi16_ga_pcrel:
578     return 4;
579   case ARM::MOVi32imm:
580   case ARM::t2MOVi32imm:
581     return 8;
582   case ARM::CONSTPOOL_ENTRY:
583     // If this machine instr is a constant pool entry, its size is recorded as
584     // operand #2.
585     return MI->getOperand(2).getImm();
586   case ARM::Int_eh_sjlj_longjmp:
587     return 16;
588   case ARM::tInt_eh_sjlj_longjmp:
589     return 10;
590   case ARM::Int_eh_sjlj_setjmp:
591   case ARM::Int_eh_sjlj_setjmp_nofp:
592     return 20;
593   case ARM::tInt_eh_sjlj_setjmp:
594   case ARM::t2Int_eh_sjlj_setjmp:
595   case ARM::t2Int_eh_sjlj_setjmp_nofp:
596     return 12;
597   case ARM::BR_JTr:
598   case ARM::BR_JTm:
599   case ARM::BR_JTadd:
600   case ARM::tBR_JTr:
601   case ARM::t2BR_JT:
602   case ARM::t2TBB_JT:
603   case ARM::t2TBH_JT: {
604     // These are jumptable branches, i.e. a branch followed by an inlined
605     // jumptable. The size is 4 + 4 * number of entries. For TBB, each
606     // entry is one byte; TBH two byte each.
607     unsigned EntrySize = (Opc == ARM::t2TBB_JT)
608       ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
609     unsigned NumOps = MCID.getNumOperands();
610     MachineOperand JTOP =
611       MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
612     unsigned JTI = JTOP.getIndex();
613     const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
614     assert(MJTI != 0);
615     const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
616     assert(JTI < JT.size());
617     // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
618     // 4 aligned. The assembler / linker may add 2 byte padding just before
619     // the JT entries.  The size does not include this padding; the
620     // constant islands pass does separate bookkeeping for it.
621     // FIXME: If we know the size of the function is less than (1 << 16) *2
622     // bytes, we can use 16-bit entries instead. Then there won't be an
623     // alignment issue.
624     unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
625     unsigned NumEntries = getNumJTEntries(JT, JTI);
626     if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
627       // Make sure the instruction that follows TBB is 2-byte aligned.
628       // FIXME: Constant island pass should insert an "ALIGN" instruction
629       // instead.
630       ++NumEntries;
631     return NumEntries * EntrySize + InstSize;
632   }
633   default:
634     // Otherwise, pseudo-instruction sizes are zero.
635     return 0;
636   }
637 }
638
639 unsigned ARMBaseInstrInfo::getInstBundleLength(const MachineInstr *MI) const {
640   unsigned Size = 0;
641   MachineBasicBlock::const_instr_iterator I = MI;
642   MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
643   while (++I != E && I->isInsideBundle()) {
644     assert(!I->isBundle() && "No nested bundle!");
645     Size += GetInstSizeInBytes(&*I);
646   }
647   return Size;
648 }
649
650 void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
651                                    MachineBasicBlock::iterator I, DebugLoc DL,
652                                    unsigned DestReg, unsigned SrcReg,
653                                    bool KillSrc) const {
654   bool GPRDest = ARM::GPRRegClass.contains(DestReg);
655   bool GPRSrc = ARM::GPRRegClass.contains(SrcReg);
656
657   if (GPRDest && GPRSrc) {
658     AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
659                                     .addReg(SrcReg, getKillRegState(KillSrc))));
660     return;
661   }
662
663   bool SPRDest = ARM::SPRRegClass.contains(DestReg);
664   bool SPRSrc = ARM::SPRRegClass.contains(SrcReg);
665
666   unsigned Opc = 0;
667   if (SPRDest && SPRSrc)
668     Opc = ARM::VMOVS;
669   else if (GPRDest && SPRSrc)
670     Opc = ARM::VMOVRS;
671   else if (SPRDest && GPRSrc)
672     Opc = ARM::VMOVSR;
673   else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
674     Opc = ARM::VMOVD;
675   else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
676     Opc = ARM::VORRq;
677
678   if (Opc) {
679     MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
680     MIB.addReg(SrcReg, getKillRegState(KillSrc));
681     if (Opc == ARM::VORRq)
682       MIB.addReg(SrcReg, getKillRegState(KillSrc));
683     AddDefaultPred(MIB);
684     return;
685   }
686
687   // Handle register classes that require multiple instructions.
688   unsigned BeginIdx = 0;
689   unsigned SubRegs = 0;
690   int Spacing = 1;
691
692   // Use VORRq when possible.
693   if (ARM::QQPRRegClass.contains(DestReg, SrcReg)) {
694     Opc = ARM::VORRq;
695     BeginIdx = ARM::qsub_0;
696     SubRegs = 2;
697   } else if (ARM::QQQQPRRegClass.contains(DestReg, SrcReg)) {
698     Opc = ARM::VORRq;
699     BeginIdx = ARM::qsub_0;
700     SubRegs = 4;
701   // Fall back to VMOVD.
702   } else if (ARM::DPairRegClass.contains(DestReg, SrcReg)) {
703     Opc = ARM::VMOVD;
704     BeginIdx = ARM::dsub_0;
705     SubRegs = 2;
706   } else if (ARM::DTripleRegClass.contains(DestReg, SrcReg)) {
707     Opc = ARM::VMOVD;
708     BeginIdx = ARM::dsub_0;
709     SubRegs = 3;
710   } else if (ARM::DQuadRegClass.contains(DestReg, SrcReg)) {
711     Opc = ARM::VMOVD;
712     BeginIdx = ARM::dsub_0;
713     SubRegs = 4;
714   } else if (ARM::GPRPairRegClass.contains(DestReg, SrcReg)) {
715     Opc = Subtarget.isThumb2() ? ARM::tMOVr : ARM::MOVr;
716     BeginIdx = ARM::gsub_0;
717     SubRegs = 2;
718   } else if (ARM::DPairSpcRegClass.contains(DestReg, SrcReg)) {
719     Opc = ARM::VMOVD;
720     BeginIdx = ARM::dsub_0;
721     SubRegs = 2;
722     Spacing = 2;
723   } else if (ARM::DTripleSpcRegClass.contains(DestReg, SrcReg)) {
724     Opc = ARM::VMOVD;
725     BeginIdx = ARM::dsub_0;
726     SubRegs = 3;
727     Spacing = 2;
728   } else if (ARM::DQuadSpcRegClass.contains(DestReg, SrcReg)) {
729     Opc = ARM::VMOVD;
730     BeginIdx = ARM::dsub_0;
731     SubRegs = 4;
732     Spacing = 2;
733   }
734
735   assert(Opc && "Impossible reg-to-reg copy");
736
737   const TargetRegisterInfo *TRI = &getRegisterInfo();
738   MachineInstrBuilder Mov;
739
740   // Copy register tuples backward when the first Dest reg overlaps with SrcReg.
741   if (TRI->regsOverlap(SrcReg, TRI->getSubReg(DestReg, BeginIdx))) {
742     BeginIdx = BeginIdx + ((SubRegs - 1) * Spacing);
743     Spacing = -Spacing;
744   }
745 #ifndef NDEBUG
746   SmallSet<unsigned, 4> DstRegs;
747 #endif
748   for (unsigned i = 0; i != SubRegs; ++i) {
749     unsigned Dst = TRI->getSubReg(DestReg, BeginIdx + i * Spacing);
750     unsigned Src = TRI->getSubReg(SrcReg, BeginIdx + i * Spacing);
751     assert(Dst && Src && "Bad sub-register");
752 #ifndef NDEBUG
753     assert(!DstRegs.count(Src) && "destructive vector copy");
754     DstRegs.insert(Dst);
755 #endif
756     Mov = BuildMI(MBB, I, I->getDebugLoc(), get(Opc), Dst).addReg(Src);
757     // VORR takes two source operands.
758     if (Opc == ARM::VORRq)
759       Mov.addReg(Src);
760     Mov = AddDefaultPred(Mov);
761     // MOVr can set CC.
762     if (Opc == ARM::MOVr)
763       Mov = AddDefaultCC(Mov);
764   }
765   // Add implicit super-register defs and kills to the last instruction.
766   Mov->addRegisterDefined(DestReg, TRI);
767   if (KillSrc)
768     Mov->addRegisterKilled(SrcReg, TRI);
769 }
770
771 const MachineInstrBuilder &
772 ARMBaseInstrInfo::AddDReg(MachineInstrBuilder &MIB, unsigned Reg,
773                           unsigned SubIdx, unsigned State,
774                           const TargetRegisterInfo *TRI) const {
775   if (!SubIdx)
776     return MIB.addReg(Reg, State);
777
778   if (TargetRegisterInfo::isPhysicalRegister(Reg))
779     return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
780   return MIB.addReg(Reg, State, SubIdx);
781 }
782
783 void ARMBaseInstrInfo::
784 storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
785                     unsigned SrcReg, bool isKill, int FI,
786                     const TargetRegisterClass *RC,
787                     const TargetRegisterInfo *TRI) const {
788   DebugLoc DL;
789   if (I != MBB.end()) DL = I->getDebugLoc();
790   MachineFunction &MF = *MBB.getParent();
791   MachineFrameInfo &MFI = *MF.getFrameInfo();
792   unsigned Align = MFI.getObjectAlignment(FI);
793
794   MachineMemOperand *MMO =
795     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
796                             MachineMemOperand::MOStore,
797                             MFI.getObjectSize(FI),
798                             Align);
799
800   switch (RC->getSize()) {
801     case 4:
802       if (ARM::GPRRegClass.hasSubClassEq(RC)) {
803         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
804                    .addReg(SrcReg, getKillRegState(isKill))
805                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
806       } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
807         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
808                    .addReg(SrcReg, getKillRegState(isKill))
809                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
810       } else
811         llvm_unreachable("Unknown reg class!");
812       break;
813     case 8:
814       if (ARM::DPRRegClass.hasSubClassEq(RC)) {
815         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
816                    .addReg(SrcReg, getKillRegState(isKill))
817                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
818       } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
819         if (Subtarget.hasV5TEOps()) {
820           MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(ARM::STRD));
821           AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
822           AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
823           MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
824
825           AddDefaultPred(MIB);
826         } else {
827           // Fallback to STM instruction, which has existed since the dawn of
828           // time.
829           MachineInstrBuilder MIB =
830             AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STMIA))
831                              .addFrameIndex(FI).addMemOperand(MMO));
832           AddDReg(MIB, SrcReg, ARM::gsub_0, getKillRegState(isKill), TRI);
833           AddDReg(MIB, SrcReg, ARM::gsub_1, 0, TRI);
834         }
835       } else
836         llvm_unreachable("Unknown reg class!");
837       break;
838     case 16:
839       if (ARM::DPairRegClass.hasSubClassEq(RC)) {
840         // Use aligned spills if the stack can be realigned.
841         if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
842           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64))
843                      .addFrameIndex(FI).addImm(16)
844                      .addReg(SrcReg, getKillRegState(isKill))
845                      .addMemOperand(MMO));
846         } else {
847           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
848                      .addReg(SrcReg, getKillRegState(isKill))
849                      .addFrameIndex(FI)
850                      .addMemOperand(MMO));
851         }
852       } else
853         llvm_unreachable("Unknown reg class!");
854       break;
855     case 24:
856       if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
857         // Use aligned spills if the stack can be realigned.
858         if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
859           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64TPseudo))
860                      .addFrameIndex(FI).addImm(16)
861                      .addReg(SrcReg, getKillRegState(isKill))
862                      .addMemOperand(MMO));
863         } else {
864           MachineInstrBuilder MIB =
865           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
866                        .addFrameIndex(FI))
867                        .addMemOperand(MMO);
868           MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
869           MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
870           AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
871         }
872       } else
873         llvm_unreachable("Unknown reg class!");
874       break;
875     case 32:
876       if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
877         if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
878           // FIXME: It's possible to only store part of the QQ register if the
879           // spilled def has a sub-register index.
880           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
881                      .addFrameIndex(FI).addImm(16)
882                      .addReg(SrcReg, getKillRegState(isKill))
883                      .addMemOperand(MMO));
884         } else {
885           MachineInstrBuilder MIB =
886           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
887                        .addFrameIndex(FI))
888                        .addMemOperand(MMO);
889           MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
890           MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
891           MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
892                 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
893         }
894       } else
895         llvm_unreachable("Unknown reg class!");
896       break;
897     case 64:
898       if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
899         MachineInstrBuilder MIB =
900           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
901                          .addFrameIndex(FI))
902                          .addMemOperand(MMO);
903         MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
904         MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
905         MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
906         MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
907         MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
908         MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
909         MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
910               AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
911       } else
912         llvm_unreachable("Unknown reg class!");
913       break;
914     default:
915       llvm_unreachable("Unknown reg class!");
916   }
917 }
918
919 unsigned
920 ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
921                                      int &FrameIndex) const {
922   switch (MI->getOpcode()) {
923   default: break;
924   case ARM::STRrs:
925   case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
926     if (MI->getOperand(1).isFI() &&
927         MI->getOperand(2).isReg() &&
928         MI->getOperand(3).isImm() &&
929         MI->getOperand(2).getReg() == 0 &&
930         MI->getOperand(3).getImm() == 0) {
931       FrameIndex = MI->getOperand(1).getIndex();
932       return MI->getOperand(0).getReg();
933     }
934     break;
935   case ARM::STRi12:
936   case ARM::t2STRi12:
937   case ARM::tSTRspi:
938   case ARM::VSTRD:
939   case ARM::VSTRS:
940     if (MI->getOperand(1).isFI() &&
941         MI->getOperand(2).isImm() &&
942         MI->getOperand(2).getImm() == 0) {
943       FrameIndex = MI->getOperand(1).getIndex();
944       return MI->getOperand(0).getReg();
945     }
946     break;
947   case ARM::VST1q64:
948   case ARM::VST1d64TPseudo:
949   case ARM::VST1d64QPseudo:
950     if (MI->getOperand(0).isFI() &&
951         MI->getOperand(2).getSubReg() == 0) {
952       FrameIndex = MI->getOperand(0).getIndex();
953       return MI->getOperand(2).getReg();
954     }
955     break;
956   case ARM::VSTMQIA:
957     if (MI->getOperand(1).isFI() &&
958         MI->getOperand(0).getSubReg() == 0) {
959       FrameIndex = MI->getOperand(1).getIndex();
960       return MI->getOperand(0).getReg();
961     }
962     break;
963   }
964
965   return 0;
966 }
967
968 unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
969                                                     int &FrameIndex) const {
970   const MachineMemOperand *Dummy;
971   return MI->mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
972 }
973
974 void ARMBaseInstrInfo::
975 loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
976                      unsigned DestReg, int FI,
977                      const TargetRegisterClass *RC,
978                      const TargetRegisterInfo *TRI) const {
979   DebugLoc DL;
980   if (I != MBB.end()) DL = I->getDebugLoc();
981   MachineFunction &MF = *MBB.getParent();
982   MachineFrameInfo &MFI = *MF.getFrameInfo();
983   unsigned Align = MFI.getObjectAlignment(FI);
984   MachineMemOperand *MMO =
985     MF.getMachineMemOperand(
986                     MachinePointerInfo::getFixedStack(FI),
987                             MachineMemOperand::MOLoad,
988                             MFI.getObjectSize(FI),
989                             Align);
990
991   switch (RC->getSize()) {
992   case 4:
993     if (ARM::GPRRegClass.hasSubClassEq(RC)) {
994       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
995                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
996
997     } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
998       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
999                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
1000     } else
1001       llvm_unreachable("Unknown reg class!");
1002     break;
1003   case 8:
1004     if (ARM::DPRRegClass.hasSubClassEq(RC)) {
1005       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
1006                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
1007     } else if (ARM::GPRPairRegClass.hasSubClassEq(RC)) {
1008       MachineInstrBuilder MIB;
1009
1010       if (Subtarget.hasV5TEOps()) {
1011         MIB = BuildMI(MBB, I, DL, get(ARM::LDRD));
1012         AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1013         AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1014         MIB.addFrameIndex(FI).addReg(0).addImm(0).addMemOperand(MMO);
1015
1016         AddDefaultPred(MIB);
1017       } else {
1018         // Fallback to LDM instruction, which has existed since the dawn of
1019         // time.
1020         MIB = AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDMIA))
1021                                  .addFrameIndex(FI).addMemOperand(MMO));
1022         MIB = AddDReg(MIB, DestReg, ARM::gsub_0, RegState::DefineNoRead, TRI);
1023         MIB = AddDReg(MIB, DestReg, ARM::gsub_1, RegState::DefineNoRead, TRI);
1024       }
1025
1026       if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1027         MIB.addReg(DestReg, RegState::ImplicitDefine);
1028     } else
1029       llvm_unreachable("Unknown reg class!");
1030     break;
1031   case 16:
1032     if (ARM::DPairRegClass.hasSubClassEq(RC)) {
1033       if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1034         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64), DestReg)
1035                      .addFrameIndex(FI).addImm(16)
1036                      .addMemOperand(MMO));
1037       } else {
1038         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
1039                        .addFrameIndex(FI)
1040                        .addMemOperand(MMO));
1041       }
1042     } else
1043       llvm_unreachable("Unknown reg class!");
1044     break;
1045   case 24:
1046     if (ARM::DTripleRegClass.hasSubClassEq(RC)) {
1047       if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1048         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64TPseudo), DestReg)
1049                      .addFrameIndex(FI).addImm(16)
1050                      .addMemOperand(MMO));
1051       } else {
1052         MachineInstrBuilder MIB =
1053           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1054                          .addFrameIndex(FI)
1055                          .addMemOperand(MMO));
1056         MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1057         MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1058         MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1059         if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1060           MIB.addReg(DestReg, RegState::ImplicitDefine);
1061       }
1062     } else
1063       llvm_unreachable("Unknown reg class!");
1064     break;
1065    case 32:
1066     if (ARM::QQPRRegClass.hasSubClassEq(RC) || ARM::DQuadRegClass.hasSubClassEq(RC)) {
1067       if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
1068         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
1069                      .addFrameIndex(FI).addImm(16)
1070                      .addMemOperand(MMO));
1071       } else {
1072         MachineInstrBuilder MIB =
1073         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1074                        .addFrameIndex(FI))
1075                        .addMemOperand(MMO);
1076         MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1077         MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1078         MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1079         MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1080         if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1081           MIB.addReg(DestReg, RegState::ImplicitDefine);
1082       }
1083     } else
1084       llvm_unreachable("Unknown reg class!");
1085     break;
1086   case 64:
1087     if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
1088       MachineInstrBuilder MIB =
1089       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
1090                      .addFrameIndex(FI))
1091                      .addMemOperand(MMO);
1092       MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::DefineNoRead, TRI);
1093       MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::DefineNoRead, TRI);
1094       MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::DefineNoRead, TRI);
1095       MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::DefineNoRead, TRI);
1096       MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::DefineNoRead, TRI);
1097       MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::DefineNoRead, TRI);
1098       MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::DefineNoRead, TRI);
1099       MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::DefineNoRead, TRI);
1100       if (TargetRegisterInfo::isPhysicalRegister(DestReg))
1101         MIB.addReg(DestReg, RegState::ImplicitDefine);
1102     } else
1103       llvm_unreachable("Unknown reg class!");
1104     break;
1105   default:
1106     llvm_unreachable("Unknown regclass!");
1107   }
1108 }
1109
1110 unsigned
1111 ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
1112                                       int &FrameIndex) const {
1113   switch (MI->getOpcode()) {
1114   default: break;
1115   case ARM::LDRrs:
1116   case ARM::t2LDRs:  // FIXME: don't use t2LDRs to access frame.
1117     if (MI->getOperand(1).isFI() &&
1118         MI->getOperand(2).isReg() &&
1119         MI->getOperand(3).isImm() &&
1120         MI->getOperand(2).getReg() == 0 &&
1121         MI->getOperand(3).getImm() == 0) {
1122       FrameIndex = MI->getOperand(1).getIndex();
1123       return MI->getOperand(0).getReg();
1124     }
1125     break;
1126   case ARM::LDRi12:
1127   case ARM::t2LDRi12:
1128   case ARM::tLDRspi:
1129   case ARM::VLDRD:
1130   case ARM::VLDRS:
1131     if (MI->getOperand(1).isFI() &&
1132         MI->getOperand(2).isImm() &&
1133         MI->getOperand(2).getImm() == 0) {
1134       FrameIndex = MI->getOperand(1).getIndex();
1135       return MI->getOperand(0).getReg();
1136     }
1137     break;
1138   case ARM::VLD1q64:
1139   case ARM::VLD1d64TPseudo:
1140   case ARM::VLD1d64QPseudo:
1141     if (MI->getOperand(1).isFI() &&
1142         MI->getOperand(0).getSubReg() == 0) {
1143       FrameIndex = MI->getOperand(1).getIndex();
1144       return MI->getOperand(0).getReg();
1145     }
1146     break;
1147   case ARM::VLDMQIA:
1148     if (MI->getOperand(1).isFI() &&
1149         MI->getOperand(0).getSubReg() == 0) {
1150       FrameIndex = MI->getOperand(1).getIndex();
1151       return MI->getOperand(0).getReg();
1152     }
1153     break;
1154   }
1155
1156   return 0;
1157 }
1158
1159 unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1160                                              int &FrameIndex) const {
1161   const MachineMemOperand *Dummy;
1162   return MI->mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
1163 }
1164
1165 bool ARMBaseInstrInfo::expandPostRAPseudo(MachineBasicBlock::iterator MI) const{
1166   // This hook gets to expand COPY instructions before they become
1167   // copyPhysReg() calls.  Look for VMOVS instructions that can legally be
1168   // widened to VMOVD.  We prefer the VMOVD when possible because it may be
1169   // changed into a VORR that can go down the NEON pipeline.
1170   if (!WidenVMOVS || !MI->isCopy() || Subtarget.isCortexA15())
1171     return false;
1172
1173   // Look for a copy between even S-registers.  That is where we keep floats
1174   // when using NEON v2f32 instructions for f32 arithmetic.
1175   unsigned DstRegS = MI->getOperand(0).getReg();
1176   unsigned SrcRegS = MI->getOperand(1).getReg();
1177   if (!ARM::SPRRegClass.contains(DstRegS, SrcRegS))
1178     return false;
1179
1180   const TargetRegisterInfo *TRI = &getRegisterInfo();
1181   unsigned DstRegD = TRI->getMatchingSuperReg(DstRegS, ARM::ssub_0,
1182                                               &ARM::DPRRegClass);
1183   unsigned SrcRegD = TRI->getMatchingSuperReg(SrcRegS, ARM::ssub_0,
1184                                               &ARM::DPRRegClass);
1185   if (!DstRegD || !SrcRegD)
1186     return false;
1187
1188   // We want to widen this into a DstRegD = VMOVD SrcRegD copy.  This is only
1189   // legal if the COPY already defines the full DstRegD, and it isn't a
1190   // sub-register insertion.
1191   if (!MI->definesRegister(DstRegD, TRI) || MI->readsRegister(DstRegD, TRI))
1192     return false;
1193
1194   // A dead copy shouldn't show up here, but reject it just in case.
1195   if (MI->getOperand(0).isDead())
1196     return false;
1197
1198   // All clear, widen the COPY.
1199   DEBUG(dbgs() << "widening:    " << *MI);
1200   MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
1201
1202   // Get rid of the old <imp-def> of DstRegD.  Leave it if it defines a Q-reg
1203   // or some other super-register.
1204   int ImpDefIdx = MI->findRegisterDefOperandIdx(DstRegD);
1205   if (ImpDefIdx != -1)
1206     MI->RemoveOperand(ImpDefIdx);
1207
1208   // Change the opcode and operands.
1209   MI->setDesc(get(ARM::VMOVD));
1210   MI->getOperand(0).setReg(DstRegD);
1211   MI->getOperand(1).setReg(SrcRegD);
1212   AddDefaultPred(MIB);
1213
1214   // We are now reading SrcRegD instead of SrcRegS.  This may upset the
1215   // register scavenger and machine verifier, so we need to indicate that we
1216   // are reading an undefined value from SrcRegD, but a proper value from
1217   // SrcRegS.
1218   MI->getOperand(1).setIsUndef();
1219   MIB.addReg(SrcRegS, RegState::Implicit);
1220
1221   // SrcRegD may actually contain an unrelated value in the ssub_1
1222   // sub-register.  Don't kill it.  Only kill the ssub_0 sub-register.
1223   if (MI->getOperand(1).isKill()) {
1224     MI->getOperand(1).setIsKill(false);
1225     MI->addRegisterKilled(SrcRegS, TRI, true);
1226   }
1227
1228   DEBUG(dbgs() << "replaced by: " << *MI);
1229   return true;
1230 }
1231
1232 /// Create a copy of a const pool value. Update CPI to the new index and return
1233 /// the label UID.
1234 static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1235   MachineConstantPool *MCP = MF.getConstantPool();
1236   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1237
1238   const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1239   assert(MCPE.isMachineConstantPoolEntry() &&
1240          "Expecting a machine constantpool entry!");
1241   ARMConstantPoolValue *ACPV =
1242     static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1243
1244   unsigned PCLabelId = AFI->createPICLabelUId();
1245   ARMConstantPoolValue *NewCPV = 0;
1246   // FIXME: The below assumes PIC relocation model and that the function
1247   // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1248   // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1249   // instructions, so that's probably OK, but is PIC always correct when
1250   // we get here?
1251   if (ACPV->isGlobalValue())
1252     NewCPV = ARMConstantPoolConstant::
1253       Create(cast<ARMConstantPoolConstant>(ACPV)->getGV(), PCLabelId,
1254              ARMCP::CPValue, 4);
1255   else if (ACPV->isExtSymbol())
1256     NewCPV = ARMConstantPoolSymbol::
1257       Create(MF.getFunction()->getContext(),
1258              cast<ARMConstantPoolSymbol>(ACPV)->getSymbol(), PCLabelId, 4);
1259   else if (ACPV->isBlockAddress())
1260     NewCPV = ARMConstantPoolConstant::
1261       Create(cast<ARMConstantPoolConstant>(ACPV)->getBlockAddress(), PCLabelId,
1262              ARMCP::CPBlockAddress, 4);
1263   else if (ACPV->isLSDA())
1264     NewCPV = ARMConstantPoolConstant::Create(MF.getFunction(), PCLabelId,
1265                                              ARMCP::CPLSDA, 4);
1266   else if (ACPV->isMachineBasicBlock())
1267     NewCPV = ARMConstantPoolMBB::
1268       Create(MF.getFunction()->getContext(),
1269              cast<ARMConstantPoolMBB>(ACPV)->getMBB(), PCLabelId, 4);
1270   else
1271     llvm_unreachable("Unexpected ARM constantpool value type!!");
1272   CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1273   return PCLabelId;
1274 }
1275
1276 void ARMBaseInstrInfo::
1277 reMaterialize(MachineBasicBlock &MBB,
1278               MachineBasicBlock::iterator I,
1279               unsigned DestReg, unsigned SubIdx,
1280               const MachineInstr *Orig,
1281               const TargetRegisterInfo &TRI) const {
1282   unsigned Opcode = Orig->getOpcode();
1283   switch (Opcode) {
1284   default: {
1285     MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
1286     MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
1287     MBB.insert(I, MI);
1288     break;
1289   }
1290   case ARM::tLDRpci_pic:
1291   case ARM::t2LDRpci_pic: {
1292     MachineFunction &MF = *MBB.getParent();
1293     unsigned CPI = Orig->getOperand(1).getIndex();
1294     unsigned PCLabelId = duplicateCPV(MF, CPI);
1295     MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1296                                       DestReg)
1297       .addConstantPoolIndex(CPI).addImm(PCLabelId);
1298     MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
1299     break;
1300   }
1301   }
1302 }
1303
1304 MachineInstr *
1305 ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
1306   MachineInstr *MI = TargetInstrInfo::duplicate(Orig, MF);
1307   switch(Orig->getOpcode()) {
1308   case ARM::tLDRpci_pic:
1309   case ARM::t2LDRpci_pic: {
1310     unsigned CPI = Orig->getOperand(1).getIndex();
1311     unsigned PCLabelId = duplicateCPV(MF, CPI);
1312     Orig->getOperand(1).setIndex(CPI);
1313     Orig->getOperand(2).setImm(PCLabelId);
1314     break;
1315   }
1316   }
1317   return MI;
1318 }
1319
1320 bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
1321                                         const MachineInstr *MI1,
1322                                         const MachineRegisterInfo *MRI) const {
1323   int Opcode = MI0->getOpcode();
1324   if (Opcode == ARM::t2LDRpci ||
1325       Opcode == ARM::t2LDRpci_pic ||
1326       Opcode == ARM::tLDRpci ||
1327       Opcode == ARM::tLDRpci_pic ||
1328       Opcode == ARM::MOV_ga_pcrel ||
1329       Opcode == ARM::MOV_ga_pcrel_ldr ||
1330       Opcode == ARM::t2MOV_ga_pcrel) {
1331     if (MI1->getOpcode() != Opcode)
1332       return false;
1333     if (MI0->getNumOperands() != MI1->getNumOperands())
1334       return false;
1335
1336     const MachineOperand &MO0 = MI0->getOperand(1);
1337     const MachineOperand &MO1 = MI1->getOperand(1);
1338     if (MO0.getOffset() != MO1.getOffset())
1339       return false;
1340
1341     if (Opcode == ARM::MOV_ga_pcrel ||
1342         Opcode == ARM::MOV_ga_pcrel_ldr ||
1343         Opcode == ARM::t2MOV_ga_pcrel)
1344       // Ignore the PC labels.
1345       return MO0.getGlobal() == MO1.getGlobal();
1346
1347     const MachineFunction *MF = MI0->getParent()->getParent();
1348     const MachineConstantPool *MCP = MF->getConstantPool();
1349     int CPI0 = MO0.getIndex();
1350     int CPI1 = MO1.getIndex();
1351     const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1352     const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
1353     bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1354     bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1355     if (isARMCP0 && isARMCP1) {
1356       ARMConstantPoolValue *ACPV0 =
1357         static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1358       ARMConstantPoolValue *ACPV1 =
1359         static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1360       return ACPV0->hasSameValue(ACPV1);
1361     } else if (!isARMCP0 && !isARMCP1) {
1362       return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1363     }
1364     return false;
1365   } else if (Opcode == ARM::PICLDR) {
1366     if (MI1->getOpcode() != Opcode)
1367       return false;
1368     if (MI0->getNumOperands() != MI1->getNumOperands())
1369       return false;
1370
1371     unsigned Addr0 = MI0->getOperand(1).getReg();
1372     unsigned Addr1 = MI1->getOperand(1).getReg();
1373     if (Addr0 != Addr1) {
1374       if (!MRI ||
1375           !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1376           !TargetRegisterInfo::isVirtualRegister(Addr1))
1377         return false;
1378
1379       // This assumes SSA form.
1380       MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1381       MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1382       // Check if the loaded value, e.g. a constantpool of a global address, are
1383       // the same.
1384       if (!produceSameValue(Def0, Def1, MRI))
1385         return false;
1386     }
1387
1388     for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1389       // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1390       const MachineOperand &MO0 = MI0->getOperand(i);
1391       const MachineOperand &MO1 = MI1->getOperand(i);
1392       if (!MO0.isIdenticalTo(MO1))
1393         return false;
1394     }
1395     return true;
1396   }
1397
1398   return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
1399 }
1400
1401 /// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1402 /// determine if two loads are loading from the same base address. It should
1403 /// only return true if the base pointers are the same and the only differences
1404 /// between the two addresses is the offset. It also returns the offsets by
1405 /// reference.
1406 ///
1407 /// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1408 /// is permanently disabled.
1409 bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1410                                                int64_t &Offset1,
1411                                                int64_t &Offset2) const {
1412   // Don't worry about Thumb: just ARM and Thumb2.
1413   if (Subtarget.isThumb1Only()) return false;
1414
1415   if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1416     return false;
1417
1418   switch (Load1->getMachineOpcode()) {
1419   default:
1420     return false;
1421   case ARM::LDRi12:
1422   case ARM::LDRBi12:
1423   case ARM::LDRD:
1424   case ARM::LDRH:
1425   case ARM::LDRSB:
1426   case ARM::LDRSH:
1427   case ARM::VLDRD:
1428   case ARM::VLDRS:
1429   case ARM::t2LDRi8:
1430   case ARM::t2LDRBi8:
1431   case ARM::t2LDRDi8:
1432   case ARM::t2LDRSHi8:
1433   case ARM::t2LDRi12:
1434   case ARM::t2LDRBi12:
1435   case ARM::t2LDRSHi12:
1436     break;
1437   }
1438
1439   switch (Load2->getMachineOpcode()) {
1440   default:
1441     return false;
1442   case ARM::LDRi12:
1443   case ARM::LDRBi12:
1444   case ARM::LDRD:
1445   case ARM::LDRH:
1446   case ARM::LDRSB:
1447   case ARM::LDRSH:
1448   case ARM::VLDRD:
1449   case ARM::VLDRS:
1450   case ARM::t2LDRi8:
1451   case ARM::t2LDRBi8:
1452   case ARM::t2LDRSHi8:
1453   case ARM::t2LDRi12:
1454   case ARM::t2LDRBi12:
1455   case ARM::t2LDRSHi12:
1456     break;
1457   }
1458
1459   // Check if base addresses and chain operands match.
1460   if (Load1->getOperand(0) != Load2->getOperand(0) ||
1461       Load1->getOperand(4) != Load2->getOperand(4))
1462     return false;
1463
1464   // Index should be Reg0.
1465   if (Load1->getOperand(3) != Load2->getOperand(3))
1466     return false;
1467
1468   // Determine the offsets.
1469   if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1470       isa<ConstantSDNode>(Load2->getOperand(1))) {
1471     Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1472     Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1473     return true;
1474   }
1475
1476   return false;
1477 }
1478
1479 /// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
1480 /// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
1481 /// be scheduled togther. On some targets if two loads are loading from
1482 /// addresses in the same cache line, it's better if they are scheduled
1483 /// together. This function takes two integers that represent the load offsets
1484 /// from the common base address. It returns true if it decides it's desirable
1485 /// to schedule the two loads together. "NumLoads" is the number of loads that
1486 /// have already been scheduled after Load1.
1487 ///
1488 /// FIXME: remove this in favor of the MachineInstr interface once pre-RA-sched
1489 /// is permanently disabled.
1490 bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1491                                                int64_t Offset1, int64_t Offset2,
1492                                                unsigned NumLoads) const {
1493   // Don't worry about Thumb: just ARM and Thumb2.
1494   if (Subtarget.isThumb1Only()) return false;
1495
1496   assert(Offset2 > Offset1);
1497
1498   if ((Offset2 - Offset1) / 8 > 64)
1499     return false;
1500
1501   // Check if the machine opcodes are different. If they are different
1502   // then we consider them to not be of the same base address,
1503   // EXCEPT in the case of Thumb2 byte loads where one is LDRBi8 and the other LDRBi12.
1504   // In this case, they are considered to be the same because they are different
1505   // encoding forms of the same basic instruction.
1506   if ((Load1->getMachineOpcode() != Load2->getMachineOpcode()) &&
1507       !((Load1->getMachineOpcode() == ARM::t2LDRBi8 &&
1508          Load2->getMachineOpcode() == ARM::t2LDRBi12) ||
1509         (Load1->getMachineOpcode() == ARM::t2LDRBi12 &&
1510          Load2->getMachineOpcode() == ARM::t2LDRBi8)))
1511     return false;  // FIXME: overly conservative?
1512
1513   // Four loads in a row should be sufficient.
1514   if (NumLoads >= 3)
1515     return false;
1516
1517   return true;
1518 }
1519
1520 bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1521                                             const MachineBasicBlock *MBB,
1522                                             const MachineFunction &MF) const {
1523   // Debug info is never a scheduling boundary. It's necessary to be explicit
1524   // due to the special treatment of IT instructions below, otherwise a
1525   // dbg_value followed by an IT will result in the IT instruction being
1526   // considered a scheduling hazard, which is wrong. It should be the actual
1527   // instruction preceding the dbg_value instruction(s), just like it is
1528   // when debug info is not present.
1529   if (MI->isDebugValue())
1530     return false;
1531
1532   // Terminators and labels can't be scheduled around.
1533   if (MI->isTerminator() || MI->isLabel())
1534     return true;
1535
1536   // Treat the start of the IT block as a scheduling boundary, but schedule
1537   // t2IT along with all instructions following it.
1538   // FIXME: This is a big hammer. But the alternative is to add all potential
1539   // true and anti dependencies to IT block instructions as implicit operands
1540   // to the t2IT instruction. The added compile time and complexity does not
1541   // seem worth it.
1542   MachineBasicBlock::const_iterator I = MI;
1543   // Make sure to skip any dbg_value instructions
1544   while (++I != MBB->end() && I->isDebugValue())
1545     ;
1546   if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
1547     return true;
1548
1549   // Don't attempt to schedule around any instruction that defines
1550   // a stack-oriented pointer, as it's unlikely to be profitable. This
1551   // saves compile time, because it doesn't require every single
1552   // stack slot reference to depend on the instruction that does the
1553   // modification.
1554   // Calls don't actually change the stack pointer, even if they have imp-defs.
1555   // No ARM calling conventions change the stack pointer. (X86 calling
1556   // conventions sometimes do).
1557   if (!MI->isCall() && MI->definesRegister(ARM::SP))
1558     return true;
1559
1560   return false;
1561 }
1562
1563 bool ARMBaseInstrInfo::
1564 isProfitableToIfCvt(MachineBasicBlock &MBB,
1565                     unsigned NumCycles, unsigned ExtraPredCycles,
1566                     const BranchProbability &Probability) const {
1567   if (!NumCycles)
1568     return false;
1569
1570   // Attempt to estimate the relative costs of predication versus branching.
1571   unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1572   UnpredCost /= Probability.getDenominator();
1573   UnpredCost += 1; // The branch itself
1574   UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1575
1576   return (NumCycles + ExtraPredCycles) <= UnpredCost;
1577 }
1578
1579 bool ARMBaseInstrInfo::
1580 isProfitableToIfCvt(MachineBasicBlock &TMBB,
1581                     unsigned TCycles, unsigned TExtra,
1582                     MachineBasicBlock &FMBB,
1583                     unsigned FCycles, unsigned FExtra,
1584                     const BranchProbability &Probability) const {
1585   if (!TCycles || !FCycles)
1586     return false;
1587
1588   // Attempt to estimate the relative costs of predication versus branching.
1589   unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1590   TUnpredCost /= Probability.getDenominator();
1591
1592   uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1593   unsigned FUnpredCost = Comp * FCycles;
1594   FUnpredCost /= Probability.getDenominator();
1595
1596   unsigned UnpredCost = TUnpredCost + FUnpredCost;
1597   UnpredCost += 1; // The branch itself
1598   UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1599
1600   return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
1601 }
1602
1603 bool
1604 ARMBaseInstrInfo::isProfitableToUnpredicate(MachineBasicBlock &TMBB,
1605                                             MachineBasicBlock &FMBB) const {
1606   // Reduce false anti-dependencies to let Swift's out-of-order execution
1607   // engine do its thing.
1608   return Subtarget.isSwift();
1609 }
1610
1611 /// getInstrPredicate - If instruction is predicated, returns its predicate
1612 /// condition, otherwise returns AL. It also returns the condition code
1613 /// register by reference.
1614 ARMCC::CondCodes
1615 llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
1616   int PIdx = MI->findFirstPredOperandIdx();
1617   if (PIdx == -1) {
1618     PredReg = 0;
1619     return ARMCC::AL;
1620   }
1621
1622   PredReg = MI->getOperand(PIdx+1).getReg();
1623   return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1624 }
1625
1626
1627 int llvm::getMatchingCondBranchOpcode(int Opc) {
1628   if (Opc == ARM::B)
1629     return ARM::Bcc;
1630   if (Opc == ARM::tB)
1631     return ARM::tBcc;
1632   if (Opc == ARM::t2B)
1633     return ARM::t2Bcc;
1634
1635   llvm_unreachable("Unknown unconditional branch opcode!");
1636 }
1637
1638 /// commuteInstruction - Handle commutable instructions.
1639 MachineInstr *
1640 ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const {
1641   switch (MI->getOpcode()) {
1642   case ARM::MOVCCr:
1643   case ARM::t2MOVCCr: {
1644     // MOVCC can be commuted by inverting the condition.
1645     unsigned PredReg = 0;
1646     ARMCC::CondCodes CC = getInstrPredicate(MI, PredReg);
1647     // MOVCC AL can't be inverted. Shouldn't happen.
1648     if (CC == ARMCC::AL || PredReg != ARM::CPSR)
1649       return NULL;
1650     MI = TargetInstrInfo::commuteInstruction(MI, NewMI);
1651     if (!MI)
1652       return NULL;
1653     // After swapping the MOVCC operands, also invert the condition.
1654     MI->getOperand(MI->findFirstPredOperandIdx())
1655       .setImm(ARMCC::getOppositeCondition(CC));
1656     return MI;
1657   }
1658   }
1659   return TargetInstrInfo::commuteInstruction(MI, NewMI);
1660 }
1661
1662 /// Identify instructions that can be folded into a MOVCC instruction, and
1663 /// return the defining instruction.
1664 static MachineInstr *canFoldIntoMOVCC(unsigned Reg,
1665                                       const MachineRegisterInfo &MRI,
1666                                       const TargetInstrInfo *TII) {
1667   if (!TargetRegisterInfo::isVirtualRegister(Reg))
1668     return 0;
1669   if (!MRI.hasOneNonDBGUse(Reg))
1670     return 0;
1671   MachineInstr *MI = MRI.getVRegDef(Reg);
1672   if (!MI)
1673     return 0;
1674   // MI is folded into the MOVCC by predicating it.
1675   if (!MI->isPredicable())
1676     return 0;
1677   // Check if MI has any non-dead defs or physreg uses. This also detects
1678   // predicated instructions which will be reading CPSR.
1679   for (unsigned i = 1, e = MI->getNumOperands(); i != e; ++i) {
1680     const MachineOperand &MO = MI->getOperand(i);
1681     // Reject frame index operands, PEI can't handle the predicated pseudos.
1682     if (MO.isFI() || MO.isCPI() || MO.isJTI())
1683       return 0;
1684     if (!MO.isReg())
1685       continue;
1686     // MI can't have any tied operands, that would conflict with predication.
1687     if (MO.isTied())
1688       return 0;
1689     if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
1690       return 0;
1691     if (MO.isDef() && !MO.isDead())
1692       return 0;
1693   }
1694   bool DontMoveAcrossStores = true;
1695   if (!MI->isSafeToMove(TII, /* AliasAnalysis = */ 0, DontMoveAcrossStores))
1696     return 0;
1697   return MI;
1698 }
1699
1700 bool ARMBaseInstrInfo::analyzeSelect(const MachineInstr *MI,
1701                                      SmallVectorImpl<MachineOperand> &Cond,
1702                                      unsigned &TrueOp, unsigned &FalseOp,
1703                                      bool &Optimizable) const {
1704   assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1705          "Unknown select instruction");
1706   // MOVCC operands:
1707   // 0: Def.
1708   // 1: True use.
1709   // 2: False use.
1710   // 3: Condition code.
1711   // 4: CPSR use.
1712   TrueOp = 1;
1713   FalseOp = 2;
1714   Cond.push_back(MI->getOperand(3));
1715   Cond.push_back(MI->getOperand(4));
1716   // We can always fold a def.
1717   Optimizable = true;
1718   return false;
1719 }
1720
1721 MachineInstr *ARMBaseInstrInfo::optimizeSelect(MachineInstr *MI,
1722                                                bool PreferFalse) const {
1723   assert((MI->getOpcode() == ARM::MOVCCr || MI->getOpcode() == ARM::t2MOVCCr) &&
1724          "Unknown select instruction");
1725   MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
1726   MachineInstr *DefMI = canFoldIntoMOVCC(MI->getOperand(2).getReg(), MRI, this);
1727   bool Invert = !DefMI;
1728   if (!DefMI)
1729     DefMI = canFoldIntoMOVCC(MI->getOperand(1).getReg(), MRI, this);
1730   if (!DefMI)
1731     return 0;
1732
1733   // Find new register class to use.
1734   MachineOperand FalseReg = MI->getOperand(Invert ? 2 : 1);
1735   unsigned       DestReg  = MI->getOperand(0).getReg();
1736   const TargetRegisterClass *PreviousClass = MRI.getRegClass(FalseReg.getReg());
1737   if (!MRI.constrainRegClass(DestReg, PreviousClass))
1738     return 0;
1739
1740   // Create a new predicated version of DefMI.
1741   // Rfalse is the first use.
1742   MachineInstrBuilder NewMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1743                                       DefMI->getDesc(), DestReg);
1744
1745   // Copy all the DefMI operands, excluding its (null) predicate.
1746   const MCInstrDesc &DefDesc = DefMI->getDesc();
1747   for (unsigned i = 1, e = DefDesc.getNumOperands();
1748        i != e && !DefDesc.OpInfo[i].isPredicate(); ++i)
1749     NewMI.addOperand(DefMI->getOperand(i));
1750
1751   unsigned CondCode = MI->getOperand(3).getImm();
1752   if (Invert)
1753     NewMI.addImm(ARMCC::getOppositeCondition(ARMCC::CondCodes(CondCode)));
1754   else
1755     NewMI.addImm(CondCode);
1756   NewMI.addOperand(MI->getOperand(4));
1757
1758   // DefMI is not the -S version that sets CPSR, so add an optional %noreg.
1759   if (NewMI->hasOptionalDef())
1760     AddDefaultCC(NewMI);
1761
1762   // The output register value when the predicate is false is an implicit
1763   // register operand tied to the first def.
1764   // The tie makes the register allocator ensure the FalseReg is allocated the
1765   // same register as operand 0.
1766   FalseReg.setImplicit();
1767   NewMI.addOperand(FalseReg);
1768   NewMI->tieOperands(0, NewMI->getNumOperands() - 1);
1769
1770   // The caller will erase MI, but not DefMI.
1771   DefMI->eraseFromParent();
1772   return NewMI;
1773 }
1774
1775 /// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1776 /// instruction is encoded with an 'S' bit is determined by the optional CPSR
1777 /// def operand.
1778 ///
1779 /// This will go away once we can teach tblgen how to set the optional CPSR def
1780 /// operand itself.
1781 struct AddSubFlagsOpcodePair {
1782   uint16_t PseudoOpc;
1783   uint16_t MachineOpc;
1784 };
1785
1786 static const AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
1787   {ARM::ADDSri, ARM::ADDri},
1788   {ARM::ADDSrr, ARM::ADDrr},
1789   {ARM::ADDSrsi, ARM::ADDrsi},
1790   {ARM::ADDSrsr, ARM::ADDrsr},
1791
1792   {ARM::SUBSri, ARM::SUBri},
1793   {ARM::SUBSrr, ARM::SUBrr},
1794   {ARM::SUBSrsi, ARM::SUBrsi},
1795   {ARM::SUBSrsr, ARM::SUBrsr},
1796
1797   {ARM::RSBSri, ARM::RSBri},
1798   {ARM::RSBSrsi, ARM::RSBrsi},
1799   {ARM::RSBSrsr, ARM::RSBrsr},
1800
1801   {ARM::t2ADDSri, ARM::t2ADDri},
1802   {ARM::t2ADDSrr, ARM::t2ADDrr},
1803   {ARM::t2ADDSrs, ARM::t2ADDrs},
1804
1805   {ARM::t2SUBSri, ARM::t2SUBri},
1806   {ARM::t2SUBSrr, ARM::t2SUBrr},
1807   {ARM::t2SUBSrs, ARM::t2SUBrs},
1808
1809   {ARM::t2RSBSri, ARM::t2RSBri},
1810   {ARM::t2RSBSrs, ARM::t2RSBrs},
1811 };
1812
1813 unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
1814   for (unsigned i = 0, e = array_lengthof(AddSubFlagsOpcodeMap); i != e; ++i)
1815     if (OldOpc == AddSubFlagsOpcodeMap[i].PseudoOpc)
1816       return AddSubFlagsOpcodeMap[i].MachineOpc;
1817   return 0;
1818 }
1819
1820 void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1821                                MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1822                                unsigned DestReg, unsigned BaseReg, int NumBytes,
1823                                ARMCC::CondCodes Pred, unsigned PredReg,
1824                                const ARMBaseInstrInfo &TII, unsigned MIFlags) {
1825   if (NumBytes == 0 && DestReg != BaseReg) {
1826     BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), DestReg)
1827       .addReg(BaseReg, RegState::Kill)
1828       .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1829       .setMIFlags(MIFlags);
1830     return;
1831   }
1832
1833   bool isSub = NumBytes < 0;
1834   if (isSub) NumBytes = -NumBytes;
1835
1836   while (NumBytes) {
1837     unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1838     unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1839     assert(ThisVal && "Didn't extract field correctly");
1840
1841     // We will handle these bits from offset, clear them.
1842     NumBytes &= ~ThisVal;
1843
1844     assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1845
1846     // Build the new ADD / SUB.
1847     unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1848     BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1849       .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
1850       .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1851       .setMIFlags(MIFlags);
1852     BaseReg = DestReg;
1853   }
1854 }
1855
1856 bool llvm::tryFoldSPUpdateIntoPushPop(MachineFunction &MF,
1857                                       MachineInstr *MI,
1858                                       unsigned NumBytes) {
1859   // This optimisation potentially adds lots of load and store
1860   // micro-operations, it's only really a great benefit to code-size.
1861   if (!MF.getFunction()->hasFnAttribute(Attribute::MinSize))
1862     return false;
1863
1864   // If only one register is pushed/popped, LLVM can use an LDR/STR
1865   // instead. We can't modify those so make sure we're dealing with an
1866   // instruction we understand.
1867   bool IsPop = isPopOpcode(MI->getOpcode());
1868   bool IsPush = isPushOpcode(MI->getOpcode());
1869   if (!IsPush && !IsPop)
1870     return false;
1871
1872   bool IsVFPPushPop = MI->getOpcode() == ARM::VSTMDDB_UPD ||
1873                       MI->getOpcode() == ARM::VLDMDIA_UPD;
1874   bool IsT1PushPop = MI->getOpcode() == ARM::tPUSH ||
1875                      MI->getOpcode() == ARM::tPOP ||
1876                      MI->getOpcode() == ARM::tPOP_RET;
1877
1878   assert((IsT1PushPop || (MI->getOperand(0).getReg() == ARM::SP &&
1879                           MI->getOperand(1).getReg() == ARM::SP)) &&
1880          "trying to fold sp update into non-sp-updating push/pop");
1881
1882   // The VFP push & pop act on D-registers, so we can only fold an adjustment
1883   // by a multiple of 8 bytes in correctly. Similarly rN is 4-bytes. Don't try
1884   // if this is violated.
1885   if (NumBytes % (IsVFPPushPop ? 8 : 4) != 0)
1886     return false;
1887
1888   // ARM and Thumb2 push/pop insts have explicit "sp, sp" operands (+
1889   // pred) so the list starts at 4. Thumb1 starts after the predicate.
1890   int RegListIdx = IsT1PushPop ? 2 : 4;
1891
1892   // Calculate the space we'll need in terms of registers.
1893   unsigned FirstReg = MI->getOperand(RegListIdx).getReg();
1894   unsigned RD0Reg, RegsNeeded;
1895   if (IsVFPPushPop) {
1896     RD0Reg = ARM::D0;
1897     RegsNeeded = NumBytes / 8;
1898   } else {
1899     RD0Reg = ARM::R0;
1900     RegsNeeded = NumBytes / 4;
1901   }
1902
1903   // We're going to have to strip all list operands off before
1904   // re-adding them since the order matters, so save the existing ones
1905   // for later.
1906   SmallVector<MachineOperand, 4> RegList;
1907   for (int i = MI->getNumOperands() - 1; i >= RegListIdx; --i)
1908     RegList.push_back(MI->getOperand(i));
1909
1910   MachineBasicBlock *MBB = MI->getParent();
1911   const TargetRegisterInfo *TRI = MF.getRegInfo().getTargetRegisterInfo();
1912   const MCPhysReg *CSRegs = TRI->getCalleeSavedRegs(&MF);
1913
1914   // Now try to find enough space in the reglist to allocate NumBytes.
1915   for (unsigned CurReg = FirstReg - 1; CurReg >= RD0Reg && RegsNeeded;
1916        --CurReg) {
1917     if (!IsPop) {
1918       // Pushing any register is completely harmless, mark the
1919       // register involved as undef since we don't care about it in
1920       // the slightest.
1921       RegList.push_back(MachineOperand::CreateReg(CurReg, false, false,
1922                                                   false, false, true));
1923       --RegsNeeded;
1924       continue;
1925     }
1926
1927     // However, we can only pop an extra register if it's not live. For
1928     // registers live within the function we might clobber a return value
1929     // register; the other way a register can be live here is if it's
1930     // callee-saved.
1931     if (isCalleeSavedRegister(CurReg, CSRegs) ||
1932         MBB->computeRegisterLiveness(TRI, CurReg, MI) !=
1933             MachineBasicBlock::LQR_Dead) {
1934       // VFP pops don't allow holes in the register list, so any skip is fatal
1935       // for our transformation. GPR pops do, so we should just keep looking.
1936       if (IsVFPPushPop)
1937         return false;
1938       else
1939         continue;
1940     }
1941
1942     // Mark the unimportant registers as <def,dead> in the POP.
1943     RegList.push_back(MachineOperand::CreateReg(CurReg, true, false, false,
1944                                                 true));
1945     --RegsNeeded;
1946   }
1947
1948   if (RegsNeeded > 0)
1949     return false;
1950
1951   // Finally we know we can profitably perform the optimisation so go
1952   // ahead: strip all existing registers off and add them back again
1953   // in the right order.
1954   for (int i = MI->getNumOperands() - 1; i >= RegListIdx; --i)
1955     MI->RemoveOperand(i);
1956
1957   // Add the complete list back in.
1958   MachineInstrBuilder MIB(MF, &*MI);
1959   for (int i = RegList.size() - 1; i >= 0; --i)
1960     MIB.addOperand(RegList[i]);
1961
1962   return true;
1963 }
1964
1965 bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1966                                 unsigned FrameReg, int &Offset,
1967                                 const ARMBaseInstrInfo &TII) {
1968   unsigned Opcode = MI.getOpcode();
1969   const MCInstrDesc &Desc = MI.getDesc();
1970   unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1971   bool isSub = false;
1972
1973   // Memory operands in inline assembly always use AddrMode2.
1974   if (Opcode == ARM::INLINEASM)
1975     AddrMode = ARMII::AddrMode2;
1976
1977   if (Opcode == ARM::ADDri) {
1978     Offset += MI.getOperand(FrameRegIdx+1).getImm();
1979     if (Offset == 0) {
1980       // Turn it into a move.
1981       MI.setDesc(TII.get(ARM::MOVr));
1982       MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1983       MI.RemoveOperand(FrameRegIdx+1);
1984       Offset = 0;
1985       return true;
1986     } else if (Offset < 0) {
1987       Offset = -Offset;
1988       isSub = true;
1989       MI.setDesc(TII.get(ARM::SUBri));
1990     }
1991
1992     // Common case: small offset, fits into instruction.
1993     if (ARM_AM::getSOImmVal(Offset) != -1) {
1994       // Replace the FrameIndex with sp / fp
1995       MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1996       MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
1997       Offset = 0;
1998       return true;
1999     }
2000
2001     // Otherwise, pull as much of the immedidate into this ADDri/SUBri
2002     // as possible.
2003     unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
2004     unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
2005
2006     // We will handle these bits from offset, clear them.
2007     Offset &= ~ThisImmVal;
2008
2009     // Get the properly encoded SOImmVal field.
2010     assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
2011            "Bit extraction didn't work?");
2012     MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
2013  } else {
2014     unsigned ImmIdx = 0;
2015     int InstrOffs = 0;
2016     unsigned NumBits = 0;
2017     unsigned Scale = 1;
2018     switch (AddrMode) {
2019     case ARMII::AddrMode_i12: {
2020       ImmIdx = FrameRegIdx + 1;
2021       InstrOffs = MI.getOperand(ImmIdx).getImm();
2022       NumBits = 12;
2023       break;
2024     }
2025     case ARMII::AddrMode2: {
2026       ImmIdx = FrameRegIdx+2;
2027       InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
2028       if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
2029         InstrOffs *= -1;
2030       NumBits = 12;
2031       break;
2032     }
2033     case ARMII::AddrMode3: {
2034       ImmIdx = FrameRegIdx+2;
2035       InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
2036       if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
2037         InstrOffs *= -1;
2038       NumBits = 8;
2039       break;
2040     }
2041     case ARMII::AddrMode4:
2042     case ARMII::AddrMode6:
2043       // Can't fold any offset even if it's zero.
2044       return false;
2045     case ARMII::AddrMode5: {
2046       ImmIdx = FrameRegIdx+1;
2047       InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
2048       if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
2049         InstrOffs *= -1;
2050       NumBits = 8;
2051       Scale = 4;
2052       break;
2053     }
2054     default:
2055       llvm_unreachable("Unsupported addressing mode!");
2056     }
2057
2058     Offset += InstrOffs * Scale;
2059     assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
2060     if (Offset < 0) {
2061       Offset = -Offset;
2062       isSub = true;
2063     }
2064
2065     // Attempt to fold address comp. if opcode has offset bits
2066     if (NumBits > 0) {
2067       // Common case: small offset, fits into instruction.
2068       MachineOperand &ImmOp = MI.getOperand(ImmIdx);
2069       int ImmedOffset = Offset / Scale;
2070       unsigned Mask = (1 << NumBits) - 1;
2071       if ((unsigned)Offset <= Mask * Scale) {
2072         // Replace the FrameIndex with sp
2073         MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
2074         // FIXME: When addrmode2 goes away, this will simplify (like the
2075         // T2 version), as the LDR.i12 versions don't need the encoding
2076         // tricks for the offset value.
2077         if (isSub) {
2078           if (AddrMode == ARMII::AddrMode_i12)
2079             ImmedOffset = -ImmedOffset;
2080           else
2081             ImmedOffset |= 1 << NumBits;
2082         }
2083         ImmOp.ChangeToImmediate(ImmedOffset);
2084         Offset = 0;
2085         return true;
2086       }
2087
2088       // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
2089       ImmedOffset = ImmedOffset & Mask;
2090       if (isSub) {
2091         if (AddrMode == ARMII::AddrMode_i12)
2092           ImmedOffset = -ImmedOffset;
2093         else
2094           ImmedOffset |= 1 << NumBits;
2095       }
2096       ImmOp.ChangeToImmediate(ImmedOffset);
2097       Offset &= ~(Mask*Scale);
2098     }
2099   }
2100
2101   Offset = (isSub) ? -Offset : Offset;
2102   return Offset == 0;
2103 }
2104
2105 /// analyzeCompare - For a comparison instruction, return the source registers
2106 /// in SrcReg and SrcReg2 if having two register operands, and the value it
2107 /// compares against in CmpValue. Return true if the comparison instruction
2108 /// can be analyzed.
2109 bool ARMBaseInstrInfo::
2110 analyzeCompare(const MachineInstr *MI, unsigned &SrcReg, unsigned &SrcReg2,
2111                int &CmpMask, int &CmpValue) const {
2112   switch (MI->getOpcode()) {
2113   default: break;
2114   case ARM::CMPri:
2115   case ARM::t2CMPri:
2116     SrcReg = MI->getOperand(0).getReg();
2117     SrcReg2 = 0;
2118     CmpMask = ~0;
2119     CmpValue = MI->getOperand(1).getImm();
2120     return true;
2121   case ARM::CMPrr:
2122   case ARM::t2CMPrr:
2123     SrcReg = MI->getOperand(0).getReg();
2124     SrcReg2 = MI->getOperand(1).getReg();
2125     CmpMask = ~0;
2126     CmpValue = 0;
2127     return true;
2128   case ARM::TSTri:
2129   case ARM::t2TSTri:
2130     SrcReg = MI->getOperand(0).getReg();
2131     SrcReg2 = 0;
2132     CmpMask = MI->getOperand(1).getImm();
2133     CmpValue = 0;
2134     return true;
2135   }
2136
2137   return false;
2138 }
2139
2140 /// isSuitableForMask - Identify a suitable 'and' instruction that
2141 /// operates on the given source register and applies the same mask
2142 /// as a 'tst' instruction. Provide a limited look-through for copies.
2143 /// When successful, MI will hold the found instruction.
2144 static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
2145                               int CmpMask, bool CommonUse) {
2146   switch (MI->getOpcode()) {
2147     case ARM::ANDri:
2148     case ARM::t2ANDri:
2149       if (CmpMask != MI->getOperand(2).getImm())
2150         return false;
2151       if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
2152         return true;
2153       break;
2154     case ARM::COPY: {
2155       // Walk down one instruction which is potentially an 'and'.
2156       const MachineInstr &Copy = *MI;
2157       MachineBasicBlock::iterator AND(
2158         llvm::next(MachineBasicBlock::iterator(MI)));
2159       if (AND == MI->getParent()->end()) return false;
2160       MI = AND;
2161       return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
2162                                CmpMask, true);
2163     }
2164   }
2165
2166   return false;
2167 }
2168
2169 /// getSwappedCondition - assume the flags are set by MI(a,b), return
2170 /// the condition code if we modify the instructions such that flags are
2171 /// set by MI(b,a).
2172 inline static ARMCC::CondCodes getSwappedCondition(ARMCC::CondCodes CC) {
2173   switch (CC) {
2174   default: return ARMCC::AL;
2175   case ARMCC::EQ: return ARMCC::EQ;
2176   case ARMCC::NE: return ARMCC::NE;
2177   case ARMCC::HS: return ARMCC::LS;
2178   case ARMCC::LO: return ARMCC::HI;
2179   case ARMCC::HI: return ARMCC::LO;
2180   case ARMCC::LS: return ARMCC::HS;
2181   case ARMCC::GE: return ARMCC::LE;
2182   case ARMCC::LT: return ARMCC::GT;
2183   case ARMCC::GT: return ARMCC::LT;
2184   case ARMCC::LE: return ARMCC::GE;
2185   }
2186 }
2187
2188 /// isRedundantFlagInstr - check whether the first instruction, whose only
2189 /// purpose is to update flags, can be made redundant.
2190 /// CMPrr can be made redundant by SUBrr if the operands are the same.
2191 /// CMPri can be made redundant by SUBri if the operands are the same.
2192 /// This function can be extended later on.
2193 inline static bool isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg,
2194                                         unsigned SrcReg2, int ImmValue,
2195                                         MachineInstr *OI) {
2196   if ((CmpI->getOpcode() == ARM::CMPrr ||
2197        CmpI->getOpcode() == ARM::t2CMPrr) &&
2198       (OI->getOpcode() == ARM::SUBrr ||
2199        OI->getOpcode() == ARM::t2SUBrr) &&
2200       ((OI->getOperand(1).getReg() == SrcReg &&
2201         OI->getOperand(2).getReg() == SrcReg2) ||
2202        (OI->getOperand(1).getReg() == SrcReg2 &&
2203         OI->getOperand(2).getReg() == SrcReg)))
2204     return true;
2205
2206   if ((CmpI->getOpcode() == ARM::CMPri ||
2207        CmpI->getOpcode() == ARM::t2CMPri) &&
2208       (OI->getOpcode() == ARM::SUBri ||
2209        OI->getOpcode() == ARM::t2SUBri) &&
2210       OI->getOperand(1).getReg() == SrcReg &&
2211       OI->getOperand(2).getImm() == ImmValue)
2212     return true;
2213   return false;
2214 }
2215
2216 /// optimizeCompareInstr - Convert the instruction supplying the argument to the
2217 /// comparison into one that sets the zero bit in the flags register;
2218 /// Remove a redundant Compare instruction if an earlier instruction can set the
2219 /// flags in the same way as Compare.
2220 /// E.g. SUBrr(r1,r2) and CMPrr(r1,r2). We also handle the case where two
2221 /// operands are swapped: SUBrr(r1,r2) and CMPrr(r2,r1), by updating the
2222 /// condition code of instructions which use the flags.
2223 bool ARMBaseInstrInfo::
2224 optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
2225                      int CmpMask, int CmpValue,
2226                      const MachineRegisterInfo *MRI) const {
2227   // Get the unique definition of SrcReg.
2228   MachineInstr *MI = MRI->getUniqueVRegDef(SrcReg);
2229   if (!MI) return false;
2230
2231   // Masked compares sometimes use the same register as the corresponding 'and'.
2232   if (CmpMask != ~0) {
2233     if (!isSuitableForMask(MI, SrcReg, CmpMask, false) || isPredicated(MI)) {
2234       MI = 0;
2235       for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
2236            UE = MRI->use_end(); UI != UE; ++UI) {
2237         if (UI->getParent() != CmpInstr->getParent()) continue;
2238         MachineInstr *PotentialAND = &*UI;
2239         if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true) ||
2240             isPredicated(PotentialAND))
2241           continue;
2242         MI = PotentialAND;
2243         break;
2244       }
2245       if (!MI) return false;
2246     }
2247   }
2248
2249   // Get ready to iterate backward from CmpInstr.
2250   MachineBasicBlock::iterator I = CmpInstr, E = MI,
2251                               B = CmpInstr->getParent()->begin();
2252
2253   // Early exit if CmpInstr is at the beginning of the BB.
2254   if (I == B) return false;
2255
2256   // There are two possible candidates which can be changed to set CPSR:
2257   // One is MI, the other is a SUB instruction.
2258   // For CMPrr(r1,r2), we are looking for SUB(r1,r2) or SUB(r2,r1).
2259   // For CMPri(r1, CmpValue), we are looking for SUBri(r1, CmpValue).
2260   MachineInstr *Sub = NULL;
2261   if (SrcReg2 != 0)
2262     // MI is not a candidate for CMPrr.
2263     MI = NULL;
2264   else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
2265     // Conservatively refuse to convert an instruction which isn't in the same
2266     // BB as the comparison.
2267     // For CMPri, we need to check Sub, thus we can't return here.
2268     if (CmpInstr->getOpcode() == ARM::CMPri ||
2269        CmpInstr->getOpcode() == ARM::t2CMPri)
2270       MI = NULL;
2271     else
2272       return false;
2273   }
2274
2275   // Check that CPSR isn't set between the comparison instruction and the one we
2276   // want to change. At the same time, search for Sub.
2277   const TargetRegisterInfo *TRI = &getRegisterInfo();
2278   --I;
2279   for (; I != E; --I) {
2280     const MachineInstr &Instr = *I;
2281
2282     if (Instr.modifiesRegister(ARM::CPSR, TRI) ||
2283         Instr.readsRegister(ARM::CPSR, TRI))
2284       // This instruction modifies or uses CPSR after the one we want to
2285       // change. We can't do this transformation.
2286       return false;
2287
2288     // Check whether CmpInstr can be made redundant by the current instruction.
2289     if (isRedundantFlagInstr(CmpInstr, SrcReg, SrcReg2, CmpValue, &*I)) {
2290       Sub = &*I;
2291       break;
2292     }
2293
2294     if (I == B)
2295       // The 'and' is below the comparison instruction.
2296       return false;
2297   }
2298
2299   // Return false if no candidates exist.
2300   if (!MI && !Sub)
2301     return false;
2302
2303   // The single candidate is called MI.
2304   if (!MI) MI = Sub;
2305
2306   // We can't use a predicated instruction - it doesn't always write the flags.
2307   if (isPredicated(MI))
2308     return false;
2309
2310   switch (MI->getOpcode()) {
2311   default: break;
2312   case ARM::RSBrr:
2313   case ARM::RSBri:
2314   case ARM::RSCrr:
2315   case ARM::RSCri:
2316   case ARM::ADDrr:
2317   case ARM::ADDri:
2318   case ARM::ADCrr:
2319   case ARM::ADCri:
2320   case ARM::SUBrr:
2321   case ARM::SUBri:
2322   case ARM::SBCrr:
2323   case ARM::SBCri:
2324   case ARM::t2RSBri:
2325   case ARM::t2ADDrr:
2326   case ARM::t2ADDri:
2327   case ARM::t2ADCrr:
2328   case ARM::t2ADCri:
2329   case ARM::t2SUBrr:
2330   case ARM::t2SUBri:
2331   case ARM::t2SBCrr:
2332   case ARM::t2SBCri:
2333   case ARM::ANDrr:
2334   case ARM::ANDri:
2335   case ARM::t2ANDrr:
2336   case ARM::t2ANDri:
2337   case ARM::ORRrr:
2338   case ARM::ORRri:
2339   case ARM::t2ORRrr:
2340   case ARM::t2ORRri:
2341   case ARM::EORrr:
2342   case ARM::EORri:
2343   case ARM::t2EORrr:
2344   case ARM::t2EORri: {
2345     // Scan forward for the use of CPSR
2346     // When checking against MI: if it's a conditional code requires
2347     // checking of V bit, then this is not safe to do.
2348     // It is safe to remove CmpInstr if CPSR is redefined or killed.
2349     // If we are done with the basic block, we need to check whether CPSR is
2350     // live-out.
2351     SmallVector<std::pair<MachineOperand*, ARMCC::CondCodes>, 4>
2352         OperandsToUpdate;
2353     bool isSafe = false;
2354     I = CmpInstr;
2355     E = CmpInstr->getParent()->end();
2356     while (!isSafe && ++I != E) {
2357       const MachineInstr &Instr = *I;
2358       for (unsigned IO = 0, EO = Instr.getNumOperands();
2359            !isSafe && IO != EO; ++IO) {
2360         const MachineOperand &MO = Instr.getOperand(IO);
2361         if (MO.isRegMask() && MO.clobbersPhysReg(ARM::CPSR)) {
2362           isSafe = true;
2363           break;
2364         }
2365         if (!MO.isReg() || MO.getReg() != ARM::CPSR)
2366           continue;
2367         if (MO.isDef()) {
2368           isSafe = true;
2369           break;
2370         }
2371         // Condition code is after the operand before CPSR.
2372         ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
2373         if (Sub) {
2374           ARMCC::CondCodes NewCC = getSwappedCondition(CC);
2375           if (NewCC == ARMCC::AL)
2376             return false;
2377           // If we have SUB(r1, r2) and CMP(r2, r1), the condition code based
2378           // on CMP needs to be updated to be based on SUB.
2379           // Push the condition code operands to OperandsToUpdate.
2380           // If it is safe to remove CmpInstr, the condition code of these
2381           // operands will be modified.
2382           if (SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
2383               Sub->getOperand(2).getReg() == SrcReg)
2384             OperandsToUpdate.push_back(std::make_pair(&((*I).getOperand(IO-1)),
2385                                                       NewCC));
2386         }
2387         else
2388           switch (CC) {
2389           default:
2390             // CPSR can be used multiple times, we should continue.
2391             break;
2392           case ARMCC::VS:
2393           case ARMCC::VC:
2394           case ARMCC::GE:
2395           case ARMCC::LT:
2396           case ARMCC::GT:
2397           case ARMCC::LE:
2398             return false;
2399           }
2400       }
2401     }
2402
2403     // If CPSR is not killed nor re-defined, we should check whether it is
2404     // live-out. If it is live-out, do not optimize.
2405     if (!isSafe) {
2406       MachineBasicBlock *MBB = CmpInstr->getParent();
2407       for (MachineBasicBlock::succ_iterator SI = MBB->succ_begin(),
2408                SE = MBB->succ_end(); SI != SE; ++SI)
2409         if ((*SI)->isLiveIn(ARM::CPSR))
2410           return false;
2411     }
2412
2413     // Toggle the optional operand to CPSR.
2414     MI->getOperand(5).setReg(ARM::CPSR);
2415     MI->getOperand(5).setIsDef(true);
2416     assert(!isPredicated(MI) && "Can't use flags from predicated instruction");
2417     CmpInstr->eraseFromParent();
2418
2419     // Modify the condition code of operands in OperandsToUpdate.
2420     // Since we have SUB(r1, r2) and CMP(r2, r1), the condition code needs to
2421     // be changed from r2 > r1 to r1 < r2, from r2 < r1 to r1 > r2, etc.
2422     for (unsigned i = 0, e = OperandsToUpdate.size(); i < e; i++)
2423       OperandsToUpdate[i].first->setImm(OperandsToUpdate[i].second);
2424     return true;
2425   }
2426   }
2427
2428   return false;
2429 }
2430
2431 bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
2432                                      MachineInstr *DefMI, unsigned Reg,
2433                                      MachineRegisterInfo *MRI) const {
2434   // Fold large immediates into add, sub, or, xor.
2435   unsigned DefOpc = DefMI->getOpcode();
2436   if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
2437     return false;
2438   if (!DefMI->getOperand(1).isImm())
2439     // Could be t2MOVi32imm <ga:xx>
2440     return false;
2441
2442   if (!MRI->hasOneNonDBGUse(Reg))
2443     return false;
2444
2445   const MCInstrDesc &DefMCID = DefMI->getDesc();
2446   if (DefMCID.hasOptionalDef()) {
2447     unsigned NumOps = DefMCID.getNumOperands();
2448     const MachineOperand &MO = DefMI->getOperand(NumOps-1);
2449     if (MO.getReg() == ARM::CPSR && !MO.isDead())
2450       // If DefMI defines CPSR and it is not dead, it's obviously not safe
2451       // to delete DefMI.
2452       return false;
2453   }
2454
2455   const MCInstrDesc &UseMCID = UseMI->getDesc();
2456   if (UseMCID.hasOptionalDef()) {
2457     unsigned NumOps = UseMCID.getNumOperands();
2458     if (UseMI->getOperand(NumOps-1).getReg() == ARM::CPSR)
2459       // If the instruction sets the flag, do not attempt this optimization
2460       // since it may change the semantics of the code.
2461       return false;
2462   }
2463
2464   unsigned UseOpc = UseMI->getOpcode();
2465   unsigned NewUseOpc = 0;
2466   uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
2467   uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
2468   bool Commute = false;
2469   switch (UseOpc) {
2470   default: return false;
2471   case ARM::SUBrr:
2472   case ARM::ADDrr:
2473   case ARM::ORRrr:
2474   case ARM::EORrr:
2475   case ARM::t2SUBrr:
2476   case ARM::t2ADDrr:
2477   case ARM::t2ORRrr:
2478   case ARM::t2EORrr: {
2479     Commute = UseMI->getOperand(2).getReg() != Reg;
2480     switch (UseOpc) {
2481     default: break;
2482     case ARM::SUBrr: {
2483       if (Commute)
2484         return false;
2485       ImmVal = -ImmVal;
2486       NewUseOpc = ARM::SUBri;
2487       // Fallthrough
2488     }
2489     case ARM::ADDrr:
2490     case ARM::ORRrr:
2491     case ARM::EORrr: {
2492       if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
2493         return false;
2494       SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
2495       SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
2496       switch (UseOpc) {
2497       default: break;
2498       case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
2499       case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
2500       case ARM::EORrr: NewUseOpc = ARM::EORri; break;
2501       }
2502       break;
2503     }
2504     case ARM::t2SUBrr: {
2505       if (Commute)
2506         return false;
2507       ImmVal = -ImmVal;
2508       NewUseOpc = ARM::t2SUBri;
2509       // Fallthrough
2510     }
2511     case ARM::t2ADDrr:
2512     case ARM::t2ORRrr:
2513     case ARM::t2EORrr: {
2514       if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
2515         return false;
2516       SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
2517       SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
2518       switch (UseOpc) {
2519       default: break;
2520       case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
2521       case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
2522       case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
2523       }
2524       break;
2525     }
2526     }
2527   }
2528   }
2529
2530   unsigned OpIdx = Commute ? 2 : 1;
2531   unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
2532   bool isKill = UseMI->getOperand(OpIdx).isKill();
2533   unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
2534   AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
2535                                       UseMI, UseMI->getDebugLoc(),
2536                                       get(NewUseOpc), NewReg)
2537                               .addReg(Reg1, getKillRegState(isKill))
2538                               .addImm(SOImmValV1)));
2539   UseMI->setDesc(get(NewUseOpc));
2540   UseMI->getOperand(1).setReg(NewReg);
2541   UseMI->getOperand(1).setIsKill();
2542   UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
2543   DefMI->eraseFromParent();
2544   return true;
2545 }
2546
2547 static unsigned getNumMicroOpsSwiftLdSt(const InstrItineraryData *ItinData,
2548                                         const MachineInstr *MI) {
2549   switch (MI->getOpcode()) {
2550   default: {
2551     const MCInstrDesc &Desc = MI->getDesc();
2552     int UOps = ItinData->getNumMicroOps(Desc.getSchedClass());
2553     assert(UOps >= 0 && "bad # UOps");
2554     return UOps;
2555   }
2556
2557   case ARM::LDRrs:
2558   case ARM::LDRBrs:
2559   case ARM::STRrs:
2560   case ARM::STRBrs: {
2561     unsigned ShOpVal = MI->getOperand(3).getImm();
2562     bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2563     unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2564     if (!isSub &&
2565         (ShImm == 0 ||
2566          ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2567           ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2568       return 1;
2569     return 2;
2570   }
2571
2572   case ARM::LDRH:
2573   case ARM::STRH: {
2574     if (!MI->getOperand(2).getReg())
2575       return 1;
2576
2577     unsigned ShOpVal = MI->getOperand(3).getImm();
2578     bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2579     unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2580     if (!isSub &&
2581         (ShImm == 0 ||
2582          ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2583           ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2584       return 1;
2585     return 2;
2586   }
2587
2588   case ARM::LDRSB:
2589   case ARM::LDRSH:
2590     return (ARM_AM::getAM3Op(MI->getOperand(3).getImm()) == ARM_AM::sub) ? 3:2;
2591
2592   case ARM::LDRSB_POST:
2593   case ARM::LDRSH_POST: {
2594     unsigned Rt = MI->getOperand(0).getReg();
2595     unsigned Rm = MI->getOperand(3).getReg();
2596     return (Rt == Rm) ? 4 : 3;
2597   }
2598
2599   case ARM::LDR_PRE_REG:
2600   case ARM::LDRB_PRE_REG: {
2601     unsigned Rt = MI->getOperand(0).getReg();
2602     unsigned Rm = MI->getOperand(3).getReg();
2603     if (Rt == Rm)
2604       return 3;
2605     unsigned ShOpVal = MI->getOperand(4).getImm();
2606     bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2607     unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2608     if (!isSub &&
2609         (ShImm == 0 ||
2610          ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2611           ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2612       return 2;
2613     return 3;
2614   }
2615
2616   case ARM::STR_PRE_REG:
2617   case ARM::STRB_PRE_REG: {
2618     unsigned ShOpVal = MI->getOperand(4).getImm();
2619     bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2620     unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2621     if (!isSub &&
2622         (ShImm == 0 ||
2623          ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2624           ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2625       return 2;
2626     return 3;
2627   }
2628
2629   case ARM::LDRH_PRE:
2630   case ARM::STRH_PRE: {
2631     unsigned Rt = MI->getOperand(0).getReg();
2632     unsigned Rm = MI->getOperand(3).getReg();
2633     if (!Rm)
2634       return 2;
2635     if (Rt == Rm)
2636       return 3;
2637     return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub)
2638       ? 3 : 2;
2639   }
2640
2641   case ARM::LDR_POST_REG:
2642   case ARM::LDRB_POST_REG:
2643   case ARM::LDRH_POST: {
2644     unsigned Rt = MI->getOperand(0).getReg();
2645     unsigned Rm = MI->getOperand(3).getReg();
2646     return (Rt == Rm) ? 3 : 2;
2647   }
2648
2649   case ARM::LDR_PRE_IMM:
2650   case ARM::LDRB_PRE_IMM:
2651   case ARM::LDR_POST_IMM:
2652   case ARM::LDRB_POST_IMM:
2653   case ARM::STRB_POST_IMM:
2654   case ARM::STRB_POST_REG:
2655   case ARM::STRB_PRE_IMM:
2656   case ARM::STRH_POST:
2657   case ARM::STR_POST_IMM:
2658   case ARM::STR_POST_REG:
2659   case ARM::STR_PRE_IMM:
2660     return 2;
2661
2662   case ARM::LDRSB_PRE:
2663   case ARM::LDRSH_PRE: {
2664     unsigned Rm = MI->getOperand(3).getReg();
2665     if (Rm == 0)
2666       return 3;
2667     unsigned Rt = MI->getOperand(0).getReg();
2668     if (Rt == Rm)
2669       return 4;
2670     unsigned ShOpVal = MI->getOperand(4).getImm();
2671     bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
2672     unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2673     if (!isSub &&
2674         (ShImm == 0 ||
2675          ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
2676           ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
2677       return 3;
2678     return 4;
2679   }
2680
2681   case ARM::LDRD: {
2682     unsigned Rt = MI->getOperand(0).getReg();
2683     unsigned Rn = MI->getOperand(2).getReg();
2684     unsigned Rm = MI->getOperand(3).getReg();
2685     if (Rm)
2686       return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2687     return (Rt == Rn) ? 3 : 2;
2688   }
2689
2690   case ARM::STRD: {
2691     unsigned Rm = MI->getOperand(3).getReg();
2692     if (Rm)
2693       return (ARM_AM::getAM3Op(MI->getOperand(4).getImm()) == ARM_AM::sub) ?4:3;
2694     return 2;
2695   }
2696
2697   case ARM::LDRD_POST:
2698   case ARM::t2LDRD_POST:
2699     return 3;
2700
2701   case ARM::STRD_POST:
2702   case ARM::t2STRD_POST:
2703     return 4;
2704
2705   case ARM::LDRD_PRE: {
2706     unsigned Rt = MI->getOperand(0).getReg();
2707     unsigned Rn = MI->getOperand(3).getReg();
2708     unsigned Rm = MI->getOperand(4).getReg();
2709     if (Rm)
2710       return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2711     return (Rt == Rn) ? 4 : 3;
2712   }
2713
2714   case ARM::t2LDRD_PRE: {
2715     unsigned Rt = MI->getOperand(0).getReg();
2716     unsigned Rn = MI->getOperand(3).getReg();
2717     return (Rt == Rn) ? 4 : 3;
2718   }
2719
2720   case ARM::STRD_PRE: {
2721     unsigned Rm = MI->getOperand(4).getReg();
2722     if (Rm)
2723       return (ARM_AM::getAM3Op(MI->getOperand(5).getImm()) == ARM_AM::sub) ?5:4;
2724     return 3;
2725   }
2726
2727   case ARM::t2STRD_PRE:
2728     return 3;
2729
2730   case ARM::t2LDR_POST:
2731   case ARM::t2LDRB_POST:
2732   case ARM::t2LDRB_PRE:
2733   case ARM::t2LDRSBi12:
2734   case ARM::t2LDRSBi8:
2735   case ARM::t2LDRSBpci:
2736   case ARM::t2LDRSBs:
2737   case ARM::t2LDRH_POST:
2738   case ARM::t2LDRH_PRE:
2739   case ARM::t2LDRSBT:
2740   case ARM::t2LDRSB_POST:
2741   case ARM::t2LDRSB_PRE:
2742   case ARM::t2LDRSH_POST:
2743   case ARM::t2LDRSH_PRE:
2744   case ARM::t2LDRSHi12:
2745   case ARM::t2LDRSHi8:
2746   case ARM::t2LDRSHpci:
2747   case ARM::t2LDRSHs:
2748     return 2;
2749
2750   case ARM::t2LDRDi8: {
2751     unsigned Rt = MI->getOperand(0).getReg();
2752     unsigned Rn = MI->getOperand(2).getReg();
2753     return (Rt == Rn) ? 3 : 2;
2754   }
2755
2756   case ARM::t2STRB_POST:
2757   case ARM::t2STRB_PRE:
2758   case ARM::t2STRBs:
2759   case ARM::t2STRDi8:
2760   case ARM::t2STRH_POST:
2761   case ARM::t2STRH_PRE:
2762   case ARM::t2STRHs:
2763   case ARM::t2STR_POST:
2764   case ARM::t2STR_PRE:
2765   case ARM::t2STRs:
2766     return 2;
2767   }
2768 }
2769
2770 // Return the number of 32-bit words loaded by LDM or stored by STM. If this
2771 // can't be easily determined return 0 (missing MachineMemOperand).
2772 //
2773 // FIXME: The current MachineInstr design does not support relying on machine
2774 // mem operands to determine the width of a memory access. Instead, we expect
2775 // the target to provide this information based on the instruction opcode and
2776 // operands. However, using MachineMemOperand is a the best solution now for
2777 // two reasons:
2778 //
2779 // 1) getNumMicroOps tries to infer LDM memory width from the total number of MI
2780 // operands. This is much more dangerous than using the MachineMemOperand
2781 // sizes because CodeGen passes can insert/remove optional machine operands. In
2782 // fact, it's totally incorrect for preRA passes and appears to be wrong for
2783 // postRA passes as well.
2784 //
2785 // 2) getNumLDMAddresses is only used by the scheduling machine model and any
2786 // machine model that calls this should handle the unknown (zero size) case.
2787 //
2788 // Long term, we should require a target hook that verifies MachineMemOperand
2789 // sizes during MC lowering. That target hook should be local to MC lowering
2790 // because we can't ensure that it is aware of other MI forms. Doing this will
2791 // ensure that MachineMemOperands are correctly propagated through all passes.
2792 unsigned ARMBaseInstrInfo::getNumLDMAddresses(const MachineInstr *MI) const {
2793   unsigned Size = 0;
2794   for (MachineInstr::mmo_iterator I = MI->memoperands_begin(),
2795          E = MI->memoperands_end(); I != E; ++I) {
2796     Size += (*I)->getSize();
2797   }
2798   return Size / 4;
2799 }
2800
2801 unsigned
2802 ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
2803                                  const MachineInstr *MI) const {
2804   if (!ItinData || ItinData->isEmpty())
2805     return 1;
2806
2807   const MCInstrDesc &Desc = MI->getDesc();
2808   unsigned Class = Desc.getSchedClass();
2809   int ItinUOps = ItinData->getNumMicroOps(Class);
2810   if (ItinUOps >= 0) {
2811     if (Subtarget.isSwift() && (Desc.mayLoad() || Desc.mayStore()))
2812       return getNumMicroOpsSwiftLdSt(ItinData, MI);
2813
2814     return ItinUOps;
2815   }
2816
2817   unsigned Opc = MI->getOpcode();
2818   switch (Opc) {
2819   default:
2820     llvm_unreachable("Unexpected multi-uops instruction!");
2821   case ARM::VLDMQIA:
2822   case ARM::VSTMQIA:
2823     return 2;
2824
2825   // The number of uOps for load / store multiple are determined by the number
2826   // registers.
2827   //
2828   // On Cortex-A8, each pair of register loads / stores can be scheduled on the
2829   // same cycle. The scheduling for the first load / store must be done
2830   // separately by assuming the address is not 64-bit aligned.
2831   //
2832   // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
2833   // is not 64-bit aligned, then AGU would take an extra cycle.  For VFP / NEON
2834   // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
2835   case ARM::VLDMDIA:
2836   case ARM::VLDMDIA_UPD:
2837   case ARM::VLDMDDB_UPD:
2838   case ARM::VLDMSIA:
2839   case ARM::VLDMSIA_UPD:
2840   case ARM::VLDMSDB_UPD:
2841   case ARM::VSTMDIA:
2842   case ARM::VSTMDIA_UPD:
2843   case ARM::VSTMDDB_UPD:
2844   case ARM::VSTMSIA:
2845   case ARM::VSTMSIA_UPD:
2846   case ARM::VSTMSDB_UPD: {
2847     unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
2848     return (NumRegs / 2) + (NumRegs % 2) + 1;
2849   }
2850
2851   case ARM::LDMIA_RET:
2852   case ARM::LDMIA:
2853   case ARM::LDMDA:
2854   case ARM::LDMDB:
2855   case ARM::LDMIB:
2856   case ARM::LDMIA_UPD:
2857   case ARM::LDMDA_UPD:
2858   case ARM::LDMDB_UPD:
2859   case ARM::LDMIB_UPD:
2860   case ARM::STMIA:
2861   case ARM::STMDA:
2862   case ARM::STMDB:
2863   case ARM::STMIB:
2864   case ARM::STMIA_UPD:
2865   case ARM::STMDA_UPD:
2866   case ARM::STMDB_UPD:
2867   case ARM::STMIB_UPD:
2868   case ARM::tLDMIA:
2869   case ARM::tLDMIA_UPD:
2870   case ARM::tSTMIA_UPD:
2871   case ARM::tPOP_RET:
2872   case ARM::tPOP:
2873   case ARM::tPUSH:
2874   case ARM::t2LDMIA_RET:
2875   case ARM::t2LDMIA:
2876   case ARM::t2LDMDB:
2877   case ARM::t2LDMIA_UPD:
2878   case ARM::t2LDMDB_UPD:
2879   case ARM::t2STMIA:
2880   case ARM::t2STMDB:
2881   case ARM::t2STMIA_UPD:
2882   case ARM::t2STMDB_UPD: {
2883     unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
2884     if (Subtarget.isSwift()) {
2885       int UOps = 1 + NumRegs;  // One for address computation, one for each ld / st.
2886       switch (Opc) {
2887       default: break;
2888       case ARM::VLDMDIA_UPD:
2889       case ARM::VLDMDDB_UPD:
2890       case ARM::VLDMSIA_UPD:
2891       case ARM::VLDMSDB_UPD:
2892       case ARM::VSTMDIA_UPD:
2893       case ARM::VSTMDDB_UPD:
2894       case ARM::VSTMSIA_UPD:
2895       case ARM::VSTMSDB_UPD:
2896       case ARM::LDMIA_UPD:
2897       case ARM::LDMDA_UPD:
2898       case ARM::LDMDB_UPD:
2899       case ARM::LDMIB_UPD:
2900       case ARM::STMIA_UPD:
2901       case ARM::STMDA_UPD:
2902       case ARM::STMDB_UPD:
2903       case ARM::STMIB_UPD:
2904       case ARM::tLDMIA_UPD:
2905       case ARM::tSTMIA_UPD:
2906       case ARM::t2LDMIA_UPD:
2907       case ARM::t2LDMDB_UPD:
2908       case ARM::t2STMIA_UPD:
2909       case ARM::t2STMDB_UPD:
2910         ++UOps; // One for base register writeback.
2911         break;
2912       case ARM::LDMIA_RET:
2913       case ARM::tPOP_RET:
2914       case ARM::t2LDMIA_RET:
2915         UOps += 2; // One for base reg wb, one for write to pc.
2916         break;
2917       }
2918       return UOps;
2919     } else if (Subtarget.isCortexA8()) {
2920       if (NumRegs < 4)
2921         return 2;
2922       // 4 registers would be issued: 2, 2.
2923       // 5 registers would be issued: 2, 2, 1.
2924       int A8UOps = (NumRegs / 2);
2925       if (NumRegs % 2)
2926         ++A8UOps;
2927       return A8UOps;
2928     } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
2929       int A9UOps = (NumRegs / 2);
2930       // If there are odd number of registers or if it's not 64-bit aligned,
2931       // then it takes an extra AGU (Address Generation Unit) cycle.
2932       if ((NumRegs % 2) ||
2933           !MI->hasOneMemOperand() ||
2934           (*MI->memoperands_begin())->getAlignment() < 8)
2935         ++A9UOps;
2936       return A9UOps;
2937     } else {
2938       // Assume the worst.
2939       return NumRegs;
2940     }
2941   }
2942   }
2943 }
2944
2945 int
2946 ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
2947                                   const MCInstrDesc &DefMCID,
2948                                   unsigned DefClass,
2949                                   unsigned DefIdx, unsigned DefAlign) const {
2950   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
2951   if (RegNo <= 0)
2952     // Def is the address writeback.
2953     return ItinData->getOperandCycle(DefClass, DefIdx);
2954
2955   int DefCycle;
2956   if (Subtarget.isCortexA8()) {
2957     // (regno / 2) + (regno % 2) + 1
2958     DefCycle = RegNo / 2 + 1;
2959     if (RegNo % 2)
2960       ++DefCycle;
2961   } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
2962     DefCycle = RegNo;
2963     bool isSLoad = false;
2964
2965     switch (DefMCID.getOpcode()) {
2966     default: break;
2967     case ARM::VLDMSIA:
2968     case ARM::VLDMSIA_UPD:
2969     case ARM::VLDMSDB_UPD:
2970       isSLoad = true;
2971       break;
2972     }
2973
2974     // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2975     // then it takes an extra cycle.
2976     if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2977       ++DefCycle;
2978   } else {
2979     // Assume the worst.
2980     DefCycle = RegNo + 2;
2981   }
2982
2983   return DefCycle;
2984 }
2985
2986 int
2987 ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
2988                                  const MCInstrDesc &DefMCID,
2989                                  unsigned DefClass,
2990                                  unsigned DefIdx, unsigned DefAlign) const {
2991   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
2992   if (RegNo <= 0)
2993     // Def is the address writeback.
2994     return ItinData->getOperandCycle(DefClass, DefIdx);
2995
2996   int DefCycle;
2997   if (Subtarget.isCortexA8()) {
2998     // 4 registers would be issued: 1, 2, 1.
2999     // 5 registers would be issued: 1, 2, 2.
3000     DefCycle = RegNo / 2;
3001     if (DefCycle < 1)
3002       DefCycle = 1;
3003     // Result latency is issue cycle + 2: E2.
3004     DefCycle += 2;
3005   } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
3006     DefCycle = (RegNo / 2);
3007     // If there are odd number of registers or if it's not 64-bit aligned,
3008     // then it takes an extra AGU (Address Generation Unit) cycle.
3009     if ((RegNo % 2) || DefAlign < 8)
3010       ++DefCycle;
3011     // Result latency is AGU cycles + 2.
3012     DefCycle += 2;
3013   } else {
3014     // Assume the worst.
3015     DefCycle = RegNo + 2;
3016   }
3017
3018   return DefCycle;
3019 }
3020
3021 int
3022 ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
3023                                   const MCInstrDesc &UseMCID,
3024                                   unsigned UseClass,
3025                                   unsigned UseIdx, unsigned UseAlign) const {
3026   int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
3027   if (RegNo <= 0)
3028     return ItinData->getOperandCycle(UseClass, UseIdx);
3029
3030   int UseCycle;
3031   if (Subtarget.isCortexA8()) {
3032     // (regno / 2) + (regno % 2) + 1
3033     UseCycle = RegNo / 2 + 1;
3034     if (RegNo % 2)
3035       ++UseCycle;
3036   } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
3037     UseCycle = RegNo;
3038     bool isSStore = false;
3039
3040     switch (UseMCID.getOpcode()) {
3041     default: break;
3042     case ARM::VSTMSIA:
3043     case ARM::VSTMSIA_UPD:
3044     case ARM::VSTMSDB_UPD:
3045       isSStore = true;
3046       break;
3047     }
3048
3049     // If there are odd number of 'S' registers or if it's not 64-bit aligned,
3050     // then it takes an extra cycle.
3051     if ((isSStore && (RegNo % 2)) || UseAlign < 8)
3052       ++UseCycle;
3053   } else {
3054     // Assume the worst.
3055     UseCycle = RegNo + 2;
3056   }
3057
3058   return UseCycle;
3059 }
3060
3061 int
3062 ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
3063                                  const MCInstrDesc &UseMCID,
3064                                  unsigned UseClass,
3065                                  unsigned UseIdx, unsigned UseAlign) const {
3066   int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
3067   if (RegNo <= 0)
3068     return ItinData->getOperandCycle(UseClass, UseIdx);
3069
3070   int UseCycle;
3071   if (Subtarget.isCortexA8()) {
3072     UseCycle = RegNo / 2;
3073     if (UseCycle < 2)
3074       UseCycle = 2;
3075     // Read in E3.
3076     UseCycle += 2;
3077   } else if (Subtarget.isLikeA9() || Subtarget.isSwift()) {
3078     UseCycle = (RegNo / 2);
3079     // If there are odd number of registers or if it's not 64-bit aligned,
3080     // then it takes an extra AGU (Address Generation Unit) cycle.
3081     if ((RegNo % 2) || UseAlign < 8)
3082       ++UseCycle;
3083   } else {
3084     // Assume the worst.
3085     UseCycle = 1;
3086   }
3087   return UseCycle;
3088 }
3089
3090 int
3091 ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3092                                     const MCInstrDesc &DefMCID,
3093                                     unsigned DefIdx, unsigned DefAlign,
3094                                     const MCInstrDesc &UseMCID,
3095                                     unsigned UseIdx, unsigned UseAlign) const {
3096   unsigned DefClass = DefMCID.getSchedClass();
3097   unsigned UseClass = UseMCID.getSchedClass();
3098
3099   if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
3100     return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
3101
3102   // This may be a def / use of a variable_ops instruction, the operand
3103   // latency might be determinable dynamically. Let the target try to
3104   // figure it out.
3105   int DefCycle = -1;
3106   bool LdmBypass = false;
3107   switch (DefMCID.getOpcode()) {
3108   default:
3109     DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3110     break;
3111
3112   case ARM::VLDMDIA:
3113   case ARM::VLDMDIA_UPD:
3114   case ARM::VLDMDDB_UPD:
3115   case ARM::VLDMSIA:
3116   case ARM::VLDMSIA_UPD:
3117   case ARM::VLDMSDB_UPD:
3118     DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
3119     break;
3120
3121   case ARM::LDMIA_RET:
3122   case ARM::LDMIA:
3123   case ARM::LDMDA:
3124   case ARM::LDMDB:
3125   case ARM::LDMIB:
3126   case ARM::LDMIA_UPD:
3127   case ARM::LDMDA_UPD:
3128   case ARM::LDMDB_UPD:
3129   case ARM::LDMIB_UPD:
3130   case ARM::tLDMIA:
3131   case ARM::tLDMIA_UPD:
3132   case ARM::tPUSH:
3133   case ARM::t2LDMIA_RET:
3134   case ARM::t2LDMIA:
3135   case ARM::t2LDMDB:
3136   case ARM::t2LDMIA_UPD:
3137   case ARM::t2LDMDB_UPD:
3138     LdmBypass = 1;
3139     DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
3140     break;
3141   }
3142
3143   if (DefCycle == -1)
3144     // We can't seem to determine the result latency of the def, assume it's 2.
3145     DefCycle = 2;
3146
3147   int UseCycle = -1;
3148   switch (UseMCID.getOpcode()) {
3149   default:
3150     UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
3151     break;
3152
3153   case ARM::VSTMDIA:
3154   case ARM::VSTMDIA_UPD:
3155   case ARM::VSTMDDB_UPD:
3156   case ARM::VSTMSIA:
3157   case ARM::VSTMSIA_UPD:
3158   case ARM::VSTMSDB_UPD:
3159     UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
3160     break;
3161
3162   case ARM::STMIA:
3163   case ARM::STMDA:
3164   case ARM::STMDB:
3165   case ARM::STMIB:
3166   case ARM::STMIA_UPD:
3167   case ARM::STMDA_UPD:
3168   case ARM::STMDB_UPD:
3169   case ARM::STMIB_UPD:
3170   case ARM::tSTMIA_UPD:
3171   case ARM::tPOP_RET:
3172   case ARM::tPOP:
3173   case ARM::t2STMIA:
3174   case ARM::t2STMDB:
3175   case ARM::t2STMIA_UPD:
3176   case ARM::t2STMDB_UPD:
3177     UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
3178     break;
3179   }
3180
3181   if (UseCycle == -1)
3182     // Assume it's read in the first stage.
3183     UseCycle = 1;
3184
3185   UseCycle = DefCycle - UseCycle + 1;
3186   if (UseCycle > 0) {
3187     if (LdmBypass) {
3188       // It's a variable_ops instruction so we can't use DefIdx here. Just use
3189       // first def operand.
3190       if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
3191                                           UseClass, UseIdx))
3192         --UseCycle;
3193     } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
3194                                                UseClass, UseIdx)) {
3195       --UseCycle;
3196     }
3197   }
3198
3199   return UseCycle;
3200 }
3201
3202 static const MachineInstr *getBundledDefMI(const TargetRegisterInfo *TRI,
3203                                            const MachineInstr *MI, unsigned Reg,
3204                                            unsigned &DefIdx, unsigned &Dist) {
3205   Dist = 0;
3206
3207   MachineBasicBlock::const_iterator I = MI; ++I;
3208   MachineBasicBlock::const_instr_iterator II =
3209     llvm::prior(I.getInstrIterator());
3210   assert(II->isInsideBundle() && "Empty bundle?");
3211
3212   int Idx = -1;
3213   while (II->isInsideBundle()) {
3214     Idx = II->findRegisterDefOperandIdx(Reg, false, true, TRI);
3215     if (Idx != -1)
3216       break;
3217     --II;
3218     ++Dist;
3219   }
3220
3221   assert(Idx != -1 && "Cannot find bundled definition!");
3222   DefIdx = Idx;
3223   return II;
3224 }
3225
3226 static const MachineInstr *getBundledUseMI(const TargetRegisterInfo *TRI,
3227                                            const MachineInstr *MI, unsigned Reg,
3228                                            unsigned &UseIdx, unsigned &Dist) {
3229   Dist = 0;
3230
3231   MachineBasicBlock::const_instr_iterator II = MI; ++II;
3232   assert(II->isInsideBundle() && "Empty bundle?");
3233   MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3234
3235   // FIXME: This doesn't properly handle multiple uses.
3236   int Idx = -1;
3237   while (II != E && II->isInsideBundle()) {
3238     Idx = II->findRegisterUseOperandIdx(Reg, false, TRI);
3239     if (Idx != -1)
3240       break;
3241     if (II->getOpcode() != ARM::t2IT)
3242       ++Dist;
3243     ++II;
3244   }
3245
3246   if (Idx == -1) {
3247     Dist = 0;
3248     return 0;
3249   }
3250
3251   UseIdx = Idx;
3252   return II;
3253 }
3254
3255 /// Return the number of cycles to add to (or subtract from) the static
3256 /// itinerary based on the def opcode and alignment. The caller will ensure that
3257 /// adjusted latency is at least one cycle.
3258 static int adjustDefLatency(const ARMSubtarget &Subtarget,
3259                             const MachineInstr *DefMI,
3260                             const MCInstrDesc *DefMCID, unsigned DefAlign) {
3261   int Adjust = 0;
3262   if (Subtarget.isCortexA8() || Subtarget.isLikeA9()) {
3263     // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3264     // variants are one cycle cheaper.
3265     switch (DefMCID->getOpcode()) {
3266     default: break;
3267     case ARM::LDRrs:
3268     case ARM::LDRBrs: {
3269       unsigned ShOpVal = DefMI->getOperand(3).getImm();
3270       unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3271       if (ShImm == 0 ||
3272           (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3273         --Adjust;
3274       break;
3275     }
3276     case ARM::t2LDRs:
3277     case ARM::t2LDRBs:
3278     case ARM::t2LDRHs:
3279     case ARM::t2LDRSHs: {
3280       // Thumb2 mode: lsl only.
3281       unsigned ShAmt = DefMI->getOperand(3).getImm();
3282       if (ShAmt == 0 || ShAmt == 2)
3283         --Adjust;
3284       break;
3285     }
3286     }
3287   } else if (Subtarget.isSwift()) {
3288     // FIXME: Properly handle all of the latency adjustments for address
3289     // writeback.
3290     switch (DefMCID->getOpcode()) {
3291     default: break;
3292     case ARM::LDRrs:
3293     case ARM::LDRBrs: {
3294       unsigned ShOpVal = DefMI->getOperand(3).getImm();
3295       bool isSub = ARM_AM::getAM2Op(ShOpVal) == ARM_AM::sub;
3296       unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3297       if (!isSub &&
3298           (ShImm == 0 ||
3299            ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3300             ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl)))
3301         Adjust -= 2;
3302       else if (!isSub &&
3303                ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3304         --Adjust;
3305       break;
3306     }
3307     case ARM::t2LDRs:
3308     case ARM::t2LDRBs:
3309     case ARM::t2LDRHs:
3310     case ARM::t2LDRSHs: {
3311       // Thumb2 mode: lsl only.
3312       unsigned ShAmt = DefMI->getOperand(3).getImm();
3313       if (ShAmt == 0 || ShAmt == 1 || ShAmt == 2 || ShAmt == 3)
3314         Adjust -= 2;
3315       break;
3316     }
3317     }
3318   }
3319
3320   if (DefAlign < 8 && Subtarget.isLikeA9()) {
3321     switch (DefMCID->getOpcode()) {
3322     default: break;
3323     case ARM::VLD1q8:
3324     case ARM::VLD1q16:
3325     case ARM::VLD1q32:
3326     case ARM::VLD1q64:
3327     case ARM::VLD1q8wb_fixed:
3328     case ARM::VLD1q16wb_fixed:
3329     case ARM::VLD1q32wb_fixed:
3330     case ARM::VLD1q64wb_fixed:
3331     case ARM::VLD1q8wb_register:
3332     case ARM::VLD1q16wb_register:
3333     case ARM::VLD1q32wb_register:
3334     case ARM::VLD1q64wb_register:
3335     case ARM::VLD2d8:
3336     case ARM::VLD2d16:
3337     case ARM::VLD2d32:
3338     case ARM::VLD2q8:
3339     case ARM::VLD2q16:
3340     case ARM::VLD2q32:
3341     case ARM::VLD2d8wb_fixed:
3342     case ARM::VLD2d16wb_fixed:
3343     case ARM::VLD2d32wb_fixed:
3344     case ARM::VLD2q8wb_fixed:
3345     case ARM::VLD2q16wb_fixed:
3346     case ARM::VLD2q32wb_fixed:
3347     case ARM::VLD2d8wb_register:
3348     case ARM::VLD2d16wb_register:
3349     case ARM::VLD2d32wb_register:
3350     case ARM::VLD2q8wb_register:
3351     case ARM::VLD2q16wb_register:
3352     case ARM::VLD2q32wb_register:
3353     case ARM::VLD3d8:
3354     case ARM::VLD3d16:
3355     case ARM::VLD3d32:
3356     case ARM::VLD1d64T:
3357     case ARM::VLD3d8_UPD:
3358     case ARM::VLD3d16_UPD:
3359     case ARM::VLD3d32_UPD:
3360     case ARM::VLD1d64Twb_fixed:
3361     case ARM::VLD1d64Twb_register:
3362     case ARM::VLD3q8_UPD:
3363     case ARM::VLD3q16_UPD:
3364     case ARM::VLD3q32_UPD:
3365     case ARM::VLD4d8:
3366     case ARM::VLD4d16:
3367     case ARM::VLD4d32:
3368     case ARM::VLD1d64Q:
3369     case ARM::VLD4d8_UPD:
3370     case ARM::VLD4d16_UPD:
3371     case ARM::VLD4d32_UPD:
3372     case ARM::VLD1d64Qwb_fixed:
3373     case ARM::VLD1d64Qwb_register:
3374     case ARM::VLD4q8_UPD:
3375     case ARM::VLD4q16_UPD:
3376     case ARM::VLD4q32_UPD:
3377     case ARM::VLD1DUPq8:
3378     case ARM::VLD1DUPq16:
3379     case ARM::VLD1DUPq32:
3380     case ARM::VLD1DUPq8wb_fixed:
3381     case ARM::VLD1DUPq16wb_fixed:
3382     case ARM::VLD1DUPq32wb_fixed:
3383     case ARM::VLD1DUPq8wb_register:
3384     case ARM::VLD1DUPq16wb_register:
3385     case ARM::VLD1DUPq32wb_register:
3386     case ARM::VLD2DUPd8:
3387     case ARM::VLD2DUPd16:
3388     case ARM::VLD2DUPd32:
3389     case ARM::VLD2DUPd8wb_fixed:
3390     case ARM::VLD2DUPd16wb_fixed:
3391     case ARM::VLD2DUPd32wb_fixed:
3392     case ARM::VLD2DUPd8wb_register:
3393     case ARM::VLD2DUPd16wb_register:
3394     case ARM::VLD2DUPd32wb_register:
3395     case ARM::VLD4DUPd8:
3396     case ARM::VLD4DUPd16:
3397     case ARM::VLD4DUPd32:
3398     case ARM::VLD4DUPd8_UPD:
3399     case ARM::VLD4DUPd16_UPD:
3400     case ARM::VLD4DUPd32_UPD:
3401     case ARM::VLD1LNd8:
3402     case ARM::VLD1LNd16:
3403     case ARM::VLD1LNd32:
3404     case ARM::VLD1LNd8_UPD:
3405     case ARM::VLD1LNd16_UPD:
3406     case ARM::VLD1LNd32_UPD:
3407     case ARM::VLD2LNd8:
3408     case ARM::VLD2LNd16:
3409     case ARM::VLD2LNd32:
3410     case ARM::VLD2LNq16:
3411     case ARM::VLD2LNq32:
3412     case ARM::VLD2LNd8_UPD:
3413     case ARM::VLD2LNd16_UPD:
3414     case ARM::VLD2LNd32_UPD:
3415     case ARM::VLD2LNq16_UPD:
3416     case ARM::VLD2LNq32_UPD:
3417     case ARM::VLD4LNd8:
3418     case ARM::VLD4LNd16:
3419     case ARM::VLD4LNd32:
3420     case ARM::VLD4LNq16:
3421     case ARM::VLD4LNq32:
3422     case ARM::VLD4LNd8_UPD:
3423     case ARM::VLD4LNd16_UPD:
3424     case ARM::VLD4LNd32_UPD:
3425     case ARM::VLD4LNq16_UPD:
3426     case ARM::VLD4LNq32_UPD:
3427       // If the address is not 64-bit aligned, the latencies of these
3428       // instructions increases by one.
3429       ++Adjust;
3430       break;
3431     }
3432   }
3433   return Adjust;
3434 }
3435
3436
3437
3438 int
3439 ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3440                                     const MachineInstr *DefMI, unsigned DefIdx,
3441                                     const MachineInstr *UseMI,
3442                                     unsigned UseIdx) const {
3443   // No operand latency. The caller may fall back to getInstrLatency.
3444   if (!ItinData || ItinData->isEmpty())
3445     return -1;
3446
3447   const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
3448   unsigned Reg = DefMO.getReg();
3449   const MCInstrDesc *DefMCID = &DefMI->getDesc();
3450   const MCInstrDesc *UseMCID = &UseMI->getDesc();
3451
3452   unsigned DefAdj = 0;
3453   if (DefMI->isBundle()) {
3454     DefMI = getBundledDefMI(&getRegisterInfo(), DefMI, Reg, DefIdx, DefAdj);
3455     DefMCID = &DefMI->getDesc();
3456   }
3457   if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
3458       DefMI->isRegSequence() || DefMI->isImplicitDef()) {
3459     return 1;
3460   }
3461
3462   unsigned UseAdj = 0;
3463   if (UseMI->isBundle()) {
3464     unsigned NewUseIdx;
3465     const MachineInstr *NewUseMI = getBundledUseMI(&getRegisterInfo(), UseMI,
3466                                                    Reg, NewUseIdx, UseAdj);
3467     if (!NewUseMI)
3468       return -1;
3469
3470     UseMI = NewUseMI;
3471     UseIdx = NewUseIdx;
3472     UseMCID = &UseMI->getDesc();
3473   }
3474
3475   if (Reg == ARM::CPSR) {
3476     if (DefMI->getOpcode() == ARM::FMSTAT) {
3477       // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
3478       return Subtarget.isLikeA9() ? 1 : 20;
3479     }
3480
3481     // CPSR set and branch can be paired in the same cycle.
3482     if (UseMI->isBranch())
3483       return 0;
3484
3485     // Otherwise it takes the instruction latency (generally one).
3486     unsigned Latency = getInstrLatency(ItinData, DefMI);
3487
3488     // For Thumb2 and -Os, prefer scheduling CPSR setting instruction close to
3489     // its uses. Instructions which are otherwise scheduled between them may
3490     // incur a code size penalty (not able to use the CPSR setting 16-bit
3491     // instructions).
3492     if (Latency > 0 && Subtarget.isThumb2()) {
3493       const MachineFunction *MF = DefMI->getParent()->getParent();
3494       if (MF->getFunction()->getAttributes().
3495             hasAttribute(AttributeSet::FunctionIndex,
3496                          Attribute::OptimizeForSize))
3497         --Latency;
3498     }
3499     return Latency;
3500   }
3501
3502   if (DefMO.isImplicit() || UseMI->getOperand(UseIdx).isImplicit())
3503     return -1;
3504
3505   unsigned DefAlign = DefMI->hasOneMemOperand()
3506     ? (*DefMI->memoperands_begin())->getAlignment() : 0;
3507   unsigned UseAlign = UseMI->hasOneMemOperand()
3508     ? (*UseMI->memoperands_begin())->getAlignment() : 0;
3509
3510   // Get the itinerary's latency if possible, and handle variable_ops.
3511   int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign,
3512                                   *UseMCID, UseIdx, UseAlign);
3513   // Unable to find operand latency. The caller may resort to getInstrLatency.
3514   if (Latency < 0)
3515     return Latency;
3516
3517   // Adjust for IT block position.
3518   int Adj = DefAdj + UseAdj;
3519
3520   // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3521   Adj += adjustDefLatency(Subtarget, DefMI, DefMCID, DefAlign);
3522   if (Adj >= 0 || (int)Latency > -Adj) {
3523     return Latency + Adj;
3524   }
3525   // Return the itinerary latency, which may be zero but not less than zero.
3526   return Latency;
3527 }
3528
3529 int
3530 ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
3531                                     SDNode *DefNode, unsigned DefIdx,
3532                                     SDNode *UseNode, unsigned UseIdx) const {
3533   if (!DefNode->isMachineOpcode())
3534     return 1;
3535
3536   const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
3537
3538   if (isZeroCost(DefMCID.Opcode))
3539     return 0;
3540
3541   if (!ItinData || ItinData->isEmpty())
3542     return DefMCID.mayLoad() ? 3 : 1;
3543
3544   if (!UseNode->isMachineOpcode()) {
3545     int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
3546     if (Subtarget.isLikeA9() || Subtarget.isSwift())
3547       return Latency <= 2 ? 1 : Latency - 1;
3548     else
3549       return Latency <= 3 ? 1 : Latency - 2;
3550   }
3551
3552   const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
3553   const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
3554   unsigned DefAlign = !DefMN->memoperands_empty()
3555     ? (*DefMN->memoperands_begin())->getAlignment() : 0;
3556   const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
3557   unsigned UseAlign = !UseMN->memoperands_empty()
3558     ? (*UseMN->memoperands_begin())->getAlignment() : 0;
3559   int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
3560                                   UseMCID, UseIdx, UseAlign);
3561
3562   if (Latency > 1 &&
3563       (Subtarget.isCortexA8() || Subtarget.isLikeA9())) {
3564     // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
3565     // variants are one cycle cheaper.
3566     switch (DefMCID.getOpcode()) {
3567     default: break;
3568     case ARM::LDRrs:
3569     case ARM::LDRBrs: {
3570       unsigned ShOpVal =
3571         cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3572       unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3573       if (ShImm == 0 ||
3574           (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3575         --Latency;
3576       break;
3577     }
3578     case ARM::t2LDRs:
3579     case ARM::t2LDRBs:
3580     case ARM::t2LDRHs:
3581     case ARM::t2LDRSHs: {
3582       // Thumb2 mode: lsl only.
3583       unsigned ShAmt =
3584         cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3585       if (ShAmt == 0 || ShAmt == 2)
3586         --Latency;
3587       break;
3588     }
3589     }
3590   } else if (DefIdx == 0 && Latency > 2 && Subtarget.isSwift()) {
3591     // FIXME: Properly handle all of the latency adjustments for address
3592     // writeback.
3593     switch (DefMCID.getOpcode()) {
3594     default: break;
3595     case ARM::LDRrs:
3596     case ARM::LDRBrs: {
3597       unsigned ShOpVal =
3598         cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
3599       unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
3600       if (ShImm == 0 ||
3601           ((ShImm == 1 || ShImm == 2 || ShImm == 3) &&
3602            ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
3603         Latency -= 2;
3604       else if (ShImm == 1 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsr)
3605         --Latency;
3606       break;
3607     }
3608     case ARM::t2LDRs:
3609     case ARM::t2LDRBs:
3610     case ARM::t2LDRHs:
3611     case ARM::t2LDRSHs: {
3612       // Thumb2 mode: lsl 0-3 only.
3613       Latency -= 2;
3614       break;
3615     }
3616     }
3617   }
3618
3619   if (DefAlign < 8 && Subtarget.isLikeA9())
3620     switch (DefMCID.getOpcode()) {
3621     default: break;
3622     case ARM::VLD1q8:
3623     case ARM::VLD1q16:
3624     case ARM::VLD1q32:
3625     case ARM::VLD1q64:
3626     case ARM::VLD1q8wb_register:
3627     case ARM::VLD1q16wb_register:
3628     case ARM::VLD1q32wb_register:
3629     case ARM::VLD1q64wb_register:
3630     case ARM::VLD1q8wb_fixed:
3631     case ARM::VLD1q16wb_fixed:
3632     case ARM::VLD1q32wb_fixed:
3633     case ARM::VLD1q64wb_fixed:
3634     case ARM::VLD2d8:
3635     case ARM::VLD2d16:
3636     case ARM::VLD2d32:
3637     case ARM::VLD2q8Pseudo:
3638     case ARM::VLD2q16Pseudo:
3639     case ARM::VLD2q32Pseudo:
3640     case ARM::VLD2d8wb_fixed:
3641     case ARM::VLD2d16wb_fixed:
3642     case ARM::VLD2d32wb_fixed:
3643     case ARM::VLD2q8PseudoWB_fixed:
3644     case ARM::VLD2q16PseudoWB_fixed:
3645     case ARM::VLD2q32PseudoWB_fixed:
3646     case ARM::VLD2d8wb_register:
3647     case ARM::VLD2d16wb_register:
3648     case ARM::VLD2d32wb_register:
3649     case ARM::VLD2q8PseudoWB_register:
3650     case ARM::VLD2q16PseudoWB_register:
3651     case ARM::VLD2q32PseudoWB_register:
3652     case ARM::VLD3d8Pseudo:
3653     case ARM::VLD3d16Pseudo:
3654     case ARM::VLD3d32Pseudo:
3655     case ARM::VLD1d64TPseudo:
3656     case ARM::VLD3d8Pseudo_UPD:
3657     case ARM::VLD3d16Pseudo_UPD:
3658     case ARM::VLD3d32Pseudo_UPD:
3659     case ARM::VLD3q8Pseudo_UPD:
3660     case ARM::VLD3q16Pseudo_UPD:
3661     case ARM::VLD3q32Pseudo_UPD:
3662     case ARM::VLD3q8oddPseudo:
3663     case ARM::VLD3q16oddPseudo:
3664     case ARM::VLD3q32oddPseudo:
3665     case ARM::VLD3q8oddPseudo_UPD:
3666     case ARM::VLD3q16oddPseudo_UPD:
3667     case ARM::VLD3q32oddPseudo_UPD:
3668     case ARM::VLD4d8Pseudo:
3669     case ARM::VLD4d16Pseudo:
3670     case ARM::VLD4d32Pseudo:
3671     case ARM::VLD1d64QPseudo:
3672     case ARM::VLD4d8Pseudo_UPD:
3673     case ARM::VLD4d16Pseudo_UPD:
3674     case ARM::VLD4d32Pseudo_UPD:
3675     case ARM::VLD4q8Pseudo_UPD:
3676     case ARM::VLD4q16Pseudo_UPD:
3677     case ARM::VLD4q32Pseudo_UPD:
3678     case ARM::VLD4q8oddPseudo:
3679     case ARM::VLD4q16oddPseudo:
3680     case ARM::VLD4q32oddPseudo:
3681     case ARM::VLD4q8oddPseudo_UPD:
3682     case ARM::VLD4q16oddPseudo_UPD:
3683     case ARM::VLD4q32oddPseudo_UPD:
3684     case ARM::VLD1DUPq8:
3685     case ARM::VLD1DUPq16:
3686     case ARM::VLD1DUPq32:
3687     case ARM::VLD1DUPq8wb_fixed:
3688     case ARM::VLD1DUPq16wb_fixed:
3689     case ARM::VLD1DUPq32wb_fixed:
3690     case ARM::VLD1DUPq8wb_register:
3691     case ARM::VLD1DUPq16wb_register:
3692     case ARM::VLD1DUPq32wb_register:
3693     case ARM::VLD2DUPd8:
3694     case ARM::VLD2DUPd16:
3695     case ARM::VLD2DUPd32:
3696     case ARM::VLD2DUPd8wb_fixed:
3697     case ARM::VLD2DUPd16wb_fixed:
3698     case ARM::VLD2DUPd32wb_fixed:
3699     case ARM::VLD2DUPd8wb_register:
3700     case ARM::VLD2DUPd16wb_register:
3701     case ARM::VLD2DUPd32wb_register:
3702     case ARM::VLD4DUPd8Pseudo:
3703     case ARM::VLD4DUPd16Pseudo:
3704     case ARM::VLD4DUPd32Pseudo:
3705     case ARM::VLD4DUPd8Pseudo_UPD:
3706     case ARM::VLD4DUPd16Pseudo_UPD:
3707     case ARM::VLD4DUPd32Pseudo_UPD:
3708     case ARM::VLD1LNq8Pseudo:
3709     case ARM::VLD1LNq16Pseudo:
3710     case ARM::VLD1LNq32Pseudo:
3711     case ARM::VLD1LNq8Pseudo_UPD:
3712     case ARM::VLD1LNq16Pseudo_UPD:
3713     case ARM::VLD1LNq32Pseudo_UPD:
3714     case ARM::VLD2LNd8Pseudo:
3715     case ARM::VLD2LNd16Pseudo:
3716     case ARM::VLD2LNd32Pseudo:
3717     case ARM::VLD2LNq16Pseudo:
3718     case ARM::VLD2LNq32Pseudo:
3719     case ARM::VLD2LNd8Pseudo_UPD:
3720     case ARM::VLD2LNd16Pseudo_UPD:
3721     case ARM::VLD2LNd32Pseudo_UPD:
3722     case ARM::VLD2LNq16Pseudo_UPD:
3723     case ARM::VLD2LNq32Pseudo_UPD:
3724     case ARM::VLD4LNd8Pseudo:
3725     case ARM::VLD4LNd16Pseudo:
3726     case ARM::VLD4LNd32Pseudo:
3727     case ARM::VLD4LNq16Pseudo:
3728     case ARM::VLD4LNq32Pseudo:
3729     case ARM::VLD4LNd8Pseudo_UPD:
3730     case ARM::VLD4LNd16Pseudo_UPD:
3731     case ARM::VLD4LNd32Pseudo_UPD:
3732     case ARM::VLD4LNq16Pseudo_UPD:
3733     case ARM::VLD4LNq32Pseudo_UPD:
3734       // If the address is not 64-bit aligned, the latencies of these
3735       // instructions increases by one.
3736       ++Latency;
3737       break;
3738     }
3739
3740   return Latency;
3741 }
3742
3743 unsigned ARMBaseInstrInfo::getPredicationCost(const MachineInstr *MI) const {
3744    if (MI->isCopyLike() || MI->isInsertSubreg() ||
3745       MI->isRegSequence() || MI->isImplicitDef())
3746     return 0;
3747
3748   if (MI->isBundle())
3749     return 0;
3750
3751   const MCInstrDesc &MCID = MI->getDesc();
3752
3753   if (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR)) {
3754     // When predicated, CPSR is an additional source operand for CPSR updating
3755     // instructions, this apparently increases their latencies.
3756     return 1;
3757   }
3758   return 0;
3759 }
3760
3761 unsigned ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3762                                            const MachineInstr *MI,
3763                                            unsigned *PredCost) const {
3764   if (MI->isCopyLike() || MI->isInsertSubreg() ||
3765       MI->isRegSequence() || MI->isImplicitDef())
3766     return 1;
3767
3768   // An instruction scheduler typically runs on unbundled instructions, however
3769   // other passes may query the latency of a bundled instruction.
3770   if (MI->isBundle()) {
3771     unsigned Latency = 0;
3772     MachineBasicBlock::const_instr_iterator I = MI;
3773     MachineBasicBlock::const_instr_iterator E = MI->getParent()->instr_end();
3774     while (++I != E && I->isInsideBundle()) {
3775       if (I->getOpcode() != ARM::t2IT)
3776         Latency += getInstrLatency(ItinData, I, PredCost);
3777     }
3778     return Latency;
3779   }
3780
3781   const MCInstrDesc &MCID = MI->getDesc();
3782   if (PredCost && (MCID.isCall() || MCID.hasImplicitDefOfPhysReg(ARM::CPSR))) {
3783     // When predicated, CPSR is an additional source operand for CPSR updating
3784     // instructions, this apparently increases their latencies.
3785     *PredCost = 1;
3786   }
3787   // Be sure to call getStageLatency for an empty itinerary in case it has a
3788   // valid MinLatency property.
3789   if (!ItinData)
3790     return MI->mayLoad() ? 3 : 1;
3791
3792   unsigned Class = MCID.getSchedClass();
3793
3794   // For instructions with variable uops, use uops as latency.
3795   if (!ItinData->isEmpty() && ItinData->getNumMicroOps(Class) < 0)
3796     return getNumMicroOps(ItinData, MI);
3797
3798   // For the common case, fall back on the itinerary's latency.
3799   unsigned Latency = ItinData->getStageLatency(Class);
3800
3801   // Adjust for dynamic def-side opcode variants not captured by the itinerary.
3802   unsigned DefAlign = MI->hasOneMemOperand()
3803     ? (*MI->memoperands_begin())->getAlignment() : 0;
3804   int Adj = adjustDefLatency(Subtarget, MI, &MCID, DefAlign);
3805   if (Adj >= 0 || (int)Latency > -Adj) {
3806     return Latency + Adj;
3807   }
3808   return Latency;
3809 }
3810
3811 int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
3812                                       SDNode *Node) const {
3813   if (!Node->isMachineOpcode())
3814     return 1;
3815
3816   if (!ItinData || ItinData->isEmpty())
3817     return 1;
3818
3819   unsigned Opcode = Node->getMachineOpcode();
3820   switch (Opcode) {
3821   default:
3822     return ItinData->getStageLatency(get(Opcode).getSchedClass());
3823   case ARM::VLDMQIA:
3824   case ARM::VSTMQIA:
3825     return 2;
3826   }
3827 }
3828
3829 bool ARMBaseInstrInfo::
3830 hasHighOperandLatency(const InstrItineraryData *ItinData,
3831                       const MachineRegisterInfo *MRI,
3832                       const MachineInstr *DefMI, unsigned DefIdx,
3833                       const MachineInstr *UseMI, unsigned UseIdx) const {
3834   unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3835   unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
3836   if (Subtarget.isCortexA8() &&
3837       (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
3838     // CortexA8 VFP instructions are not pipelined.
3839     return true;
3840
3841   // Hoist VFP / NEON instructions with 4 or higher latency.
3842   int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
3843   if (Latency < 0)
3844     Latency = getInstrLatency(ItinData, DefMI);
3845   if (Latency <= 3)
3846     return false;
3847   return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
3848          UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
3849 }
3850
3851 bool ARMBaseInstrInfo::
3852 hasLowDefLatency(const InstrItineraryData *ItinData,
3853                  const MachineInstr *DefMI, unsigned DefIdx) const {
3854   if (!ItinData || ItinData->isEmpty())
3855     return false;
3856
3857   unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
3858   if (DDomain == ARMII::DomainGeneral) {
3859     unsigned DefClass = DefMI->getDesc().getSchedClass();
3860     int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
3861     return (DefCycle != -1 && DefCycle <= 2);
3862   }
3863   return false;
3864 }
3865
3866 bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
3867                                          StringRef &ErrInfo) const {
3868   if (convertAddSubFlagsOpcode(MI->getOpcode())) {
3869     ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
3870     return false;
3871   }
3872   return true;
3873 }
3874
3875 bool
3876 ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
3877                                      unsigned &AddSubOpc,
3878                                      bool &NegAcc, bool &HasLane) const {
3879   DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
3880   if (I == MLxEntryMap.end())
3881     return false;
3882
3883   const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
3884   MulOpc = Entry.MulOpc;
3885   AddSubOpc = Entry.AddSubOpc;
3886   NegAcc = Entry.NegAcc;
3887   HasLane = Entry.HasLane;
3888   return true;
3889 }
3890
3891 //===----------------------------------------------------------------------===//
3892 // Execution domains.
3893 //===----------------------------------------------------------------------===//
3894 //
3895 // Some instructions go down the NEON pipeline, some go down the VFP pipeline,
3896 // and some can go down both.  The vmov instructions go down the VFP pipeline,
3897 // but they can be changed to vorr equivalents that are executed by the NEON
3898 // pipeline.
3899 //
3900 // We use the following execution domain numbering:
3901 //
3902 enum ARMExeDomain {
3903   ExeGeneric = 0,
3904   ExeVFP = 1,
3905   ExeNEON = 2
3906 };
3907 //
3908 // Also see ARMInstrFormats.td and Domain* enums in ARMBaseInfo.h
3909 //
3910 std::pair<uint16_t, uint16_t>
3911 ARMBaseInstrInfo::getExecutionDomain(const MachineInstr *MI) const {
3912   // VMOVD, VMOVRS and VMOVSR are VFP instructions, but can be changed to NEON
3913   // if they are not predicated.
3914   if (MI->getOpcode() == ARM::VMOVD && !isPredicated(MI))
3915     return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
3916
3917   // CortexA9 is particularly picky about mixing the two and wants these
3918   // converted.
3919   if (Subtarget.isCortexA9() && !isPredicated(MI) &&
3920       (MI->getOpcode() == ARM::VMOVRS ||
3921        MI->getOpcode() == ARM::VMOVSR ||
3922        MI->getOpcode() == ARM::VMOVS))
3923     return std::make_pair(ExeVFP, (1<<ExeVFP) | (1<<ExeNEON));
3924
3925   // No other instructions can be swizzled, so just determine their domain.
3926   unsigned Domain = MI->getDesc().TSFlags & ARMII::DomainMask;
3927
3928   if (Domain & ARMII::DomainNEON)
3929     return std::make_pair(ExeNEON, 0);
3930
3931   // Certain instructions can go either way on Cortex-A8.
3932   // Treat them as NEON instructions.
3933   if ((Domain & ARMII::DomainNEONA8) && Subtarget.isCortexA8())
3934     return std::make_pair(ExeNEON, 0);
3935
3936   if (Domain & ARMII::DomainVFP)
3937     return std::make_pair(ExeVFP, 0);
3938
3939   return std::make_pair(ExeGeneric, 0);
3940 }
3941
3942 static unsigned getCorrespondingDRegAndLane(const TargetRegisterInfo *TRI,
3943                                             unsigned SReg, unsigned &Lane) {
3944   unsigned DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_0, &ARM::DPRRegClass);
3945   Lane = 0;
3946
3947   if (DReg != ARM::NoRegister)
3948    return DReg;
3949
3950   Lane = 1;
3951   DReg = TRI->getMatchingSuperReg(SReg, ARM::ssub_1, &ARM::DPRRegClass);
3952
3953   assert(DReg && "S-register with no D super-register?");
3954   return DReg;
3955 }
3956
3957 /// getImplicitSPRUseForDPRUse - Given a use of a DPR register and lane,
3958 /// set ImplicitSReg to a register number that must be marked as implicit-use or
3959 /// zero if no register needs to be defined as implicit-use.
3960 ///
3961 /// If the function cannot determine if an SPR should be marked implicit use or
3962 /// not, it returns false.
3963 ///
3964 /// This function handles cases where an instruction is being modified from taking
3965 /// an SPR to a DPR[Lane]. A use of the DPR is being added, which may conflict
3966 /// with an earlier def of an SPR corresponding to DPR[Lane^1] (i.e. the other
3967 /// lane of the DPR).
3968 ///
3969 /// If the other SPR is defined, an implicit-use of it should be added. Else,
3970 /// (including the case where the DPR itself is defined), it should not.
3971 ///
3972 static bool getImplicitSPRUseForDPRUse(const TargetRegisterInfo *TRI,
3973                                        MachineInstr *MI,
3974                                        unsigned DReg, unsigned Lane,
3975                                        unsigned &ImplicitSReg) {
3976   // If the DPR is defined or used already, the other SPR lane will be chained
3977   // correctly, so there is nothing to be done.
3978   if (MI->definesRegister(DReg, TRI) || MI->readsRegister(DReg, TRI)) {
3979     ImplicitSReg = 0;
3980     return true;
3981   }
3982
3983   // Otherwise we need to go searching to see if the SPR is set explicitly.
3984   ImplicitSReg = TRI->getSubReg(DReg,
3985                                 (Lane & 1) ? ARM::ssub_0 : ARM::ssub_1);
3986   MachineBasicBlock::LivenessQueryResult LQR =
3987     MI->getParent()->computeRegisterLiveness(TRI, ImplicitSReg, MI);
3988
3989   if (LQR == MachineBasicBlock::LQR_Live)
3990     return true;
3991   else if (LQR == MachineBasicBlock::LQR_Unknown)
3992     return false;
3993
3994   // If the register is known not to be live, there is no need to add an
3995   // implicit-use.
3996   ImplicitSReg = 0;
3997   return true;
3998 }
3999
4000 void
4001 ARMBaseInstrInfo::setExecutionDomain(MachineInstr *MI, unsigned Domain) const {
4002   unsigned DstReg, SrcReg, DReg;
4003   unsigned Lane;
4004   MachineInstrBuilder MIB(*MI->getParent()->getParent(), MI);
4005   const TargetRegisterInfo *TRI = &getRegisterInfo();
4006   switch (MI->getOpcode()) {
4007     default:
4008       llvm_unreachable("cannot handle opcode!");
4009       break;
4010     case ARM::VMOVD:
4011       if (Domain != ExeNEON)
4012         break;
4013
4014       // Zap the predicate operands.
4015       assert(!isPredicated(MI) && "Cannot predicate a VORRd");
4016
4017       // Source instruction is %DDst = VMOVD %DSrc, 14, %noreg (; implicits)
4018       DstReg = MI->getOperand(0).getReg();
4019       SrcReg = MI->getOperand(1).getReg();
4020
4021       for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4022         MI->RemoveOperand(i-1);
4023
4024       // Change to a %DDst = VORRd %DSrc, %DSrc, 14, %noreg (; implicits)
4025       MI->setDesc(get(ARM::VORRd));
4026       AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
4027                         .addReg(SrcReg)
4028                         .addReg(SrcReg));
4029       break;
4030     case ARM::VMOVRS:
4031       if (Domain != ExeNEON)
4032         break;
4033       assert(!isPredicated(MI) && "Cannot predicate a VGETLN");
4034
4035       // Source instruction is %RDst = VMOVRS %SSrc, 14, %noreg (; implicits)
4036       DstReg = MI->getOperand(0).getReg();
4037       SrcReg = MI->getOperand(1).getReg();
4038
4039       for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4040         MI->RemoveOperand(i-1);
4041
4042       DReg = getCorrespondingDRegAndLane(TRI, SrcReg, Lane);
4043
4044       // Convert to %RDst = VGETLNi32 %DSrc, Lane, 14, %noreg (; imps)
4045       // Note that DSrc has been widened and the other lane may be undef, which
4046       // contaminates the entire register.
4047       MI->setDesc(get(ARM::VGETLNi32));
4048       AddDefaultPred(MIB.addReg(DstReg, RegState::Define)
4049                         .addReg(DReg, RegState::Undef)
4050                         .addImm(Lane));
4051
4052       // The old source should be an implicit use, otherwise we might think it
4053       // was dead before here.
4054       MIB.addReg(SrcReg, RegState::Implicit);
4055       break;
4056     case ARM::VMOVSR: {
4057       if (Domain != ExeNEON)
4058         break;
4059       assert(!isPredicated(MI) && "Cannot predicate a VSETLN");
4060
4061       // Source instruction is %SDst = VMOVSR %RSrc, 14, %noreg (; implicits)
4062       DstReg = MI->getOperand(0).getReg();
4063       SrcReg = MI->getOperand(1).getReg();
4064
4065       DReg = getCorrespondingDRegAndLane(TRI, DstReg, Lane);
4066
4067       unsigned ImplicitSReg;
4068       if (!getImplicitSPRUseForDPRUse(TRI, MI, DReg, Lane, ImplicitSReg))
4069         break;
4070
4071       for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4072         MI->RemoveOperand(i-1);
4073
4074       // Convert to %DDst = VSETLNi32 %DDst, %RSrc, Lane, 14, %noreg (; imps)
4075       // Again DDst may be undefined at the beginning of this instruction.
4076       MI->setDesc(get(ARM::VSETLNi32));
4077       MIB.addReg(DReg, RegState::Define)
4078          .addReg(DReg, getUndefRegState(!MI->readsRegister(DReg, TRI)))
4079          .addReg(SrcReg)
4080          .addImm(Lane);
4081       AddDefaultPred(MIB);
4082
4083       // The narrower destination must be marked as set to keep previous chains
4084       // in place.
4085       MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
4086       if (ImplicitSReg != 0)
4087         MIB.addReg(ImplicitSReg, RegState::Implicit);
4088       break;
4089     }
4090     case ARM::VMOVS: {
4091       if (Domain != ExeNEON)
4092         break;
4093
4094       // Source instruction is %SDst = VMOVS %SSrc, 14, %noreg (; implicits)
4095       DstReg = MI->getOperand(0).getReg();
4096       SrcReg = MI->getOperand(1).getReg();
4097
4098       unsigned DstLane = 0, SrcLane = 0, DDst, DSrc;
4099       DDst = getCorrespondingDRegAndLane(TRI, DstReg, DstLane);
4100       DSrc = getCorrespondingDRegAndLane(TRI, SrcReg, SrcLane);
4101
4102       unsigned ImplicitSReg;
4103       if (!getImplicitSPRUseForDPRUse(TRI, MI, DSrc, SrcLane, ImplicitSReg))
4104         break;
4105
4106       for (unsigned i = MI->getDesc().getNumOperands(); i; --i)
4107         MI->RemoveOperand(i-1);
4108
4109       if (DSrc == DDst) {
4110         // Destination can be:
4111         //     %DDst = VDUPLN32d %DDst, Lane, 14, %noreg (; implicits)
4112         MI->setDesc(get(ARM::VDUPLN32d));
4113         MIB.addReg(DDst, RegState::Define)
4114            .addReg(DDst, getUndefRegState(!MI->readsRegister(DDst, TRI)))
4115            .addImm(SrcLane);
4116         AddDefaultPred(MIB);
4117
4118         // Neither the source or the destination are naturally represented any
4119         // more, so add them in manually.
4120         MIB.addReg(DstReg, RegState::Implicit | RegState::Define);
4121         MIB.addReg(SrcReg, RegState::Implicit);
4122         if (ImplicitSReg != 0)
4123           MIB.addReg(ImplicitSReg, RegState::Implicit);
4124         break;
4125       }
4126
4127       // In general there's no single instruction that can perform an S <-> S
4128       // move in NEON space, but a pair of VEXT instructions *can* do the
4129       // job. It turns out that the VEXTs needed will only use DSrc once, with
4130       // the position based purely on the combination of lane-0 and lane-1
4131       // involved. For example
4132       //     vmov s0, s2 -> vext.32 d0, d0, d1, #1  vext.32 d0, d0, d0, #1
4133       //     vmov s1, s3 -> vext.32 d0, d1, d0, #1  vext.32 d0, d0, d0, #1
4134       //     vmov s0, s3 -> vext.32 d0, d0, d0, #1  vext.32 d0, d1, d0, #1
4135       //     vmov s1, s2 -> vext.32 d0, d0, d0, #1  vext.32 d0, d0, d1, #1
4136       //
4137       // Pattern of the MachineInstrs is:
4138       //     %DDst = VEXTd32 %DSrc1, %DSrc2, Lane, 14, %noreg (;implicits)
4139       MachineInstrBuilder NewMIB;
4140       NewMIB = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4141                        get(ARM::VEXTd32), DDst);
4142
4143       // On the first instruction, both DSrc and DDst may be <undef> if present.
4144       // Specifically when the original instruction didn't have them as an
4145       // <imp-use>.
4146       unsigned CurReg = SrcLane == 1 && DstLane == 1 ? DSrc : DDst;
4147       bool CurUndef = !MI->readsRegister(CurReg, TRI);
4148       NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
4149
4150       CurReg = SrcLane == 0 && DstLane == 0 ? DSrc : DDst;
4151       CurUndef = !MI->readsRegister(CurReg, TRI);
4152       NewMIB.addReg(CurReg, getUndefRegState(CurUndef));
4153
4154       NewMIB.addImm(1);
4155       AddDefaultPred(NewMIB);
4156
4157       if (SrcLane == DstLane)
4158         NewMIB.addReg(SrcReg, RegState::Implicit);
4159
4160       MI->setDesc(get(ARM::VEXTd32));
4161       MIB.addReg(DDst, RegState::Define);
4162
4163       // On the second instruction, DDst has definitely been defined above, so
4164       // it is not <undef>. DSrc, if present, can be <undef> as above.
4165       CurReg = SrcLane == 1 && DstLane == 0 ? DSrc : DDst;
4166       CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4167       MIB.addReg(CurReg, getUndefRegState(CurUndef));
4168
4169       CurReg = SrcLane == 0 && DstLane == 1 ? DSrc : DDst;
4170       CurUndef = CurReg == DSrc && !MI->readsRegister(CurReg, TRI);
4171       MIB.addReg(CurReg, getUndefRegState(CurUndef));
4172
4173       MIB.addImm(1);
4174       AddDefaultPred(MIB);
4175
4176       if (SrcLane != DstLane)
4177         MIB.addReg(SrcReg, RegState::Implicit);
4178
4179       // As before, the original destination is no longer represented, add it
4180       // implicitly.
4181       MIB.addReg(DstReg, RegState::Define | RegState::Implicit);
4182       if (ImplicitSReg != 0)
4183         MIB.addReg(ImplicitSReg, RegState::Implicit);
4184       break;
4185     }
4186   }
4187
4188 }
4189
4190 //===----------------------------------------------------------------------===//
4191 // Partial register updates
4192 //===----------------------------------------------------------------------===//
4193 //
4194 // Swift renames NEON registers with 64-bit granularity.  That means any
4195 // instruction writing an S-reg implicitly reads the containing D-reg.  The
4196 // problem is mostly avoided by translating f32 operations to v2f32 operations
4197 // on D-registers, but f32 loads are still a problem.
4198 //
4199 // These instructions can load an f32 into a NEON register:
4200 //
4201 // VLDRS - Only writes S, partial D update.
4202 // VLD1LNd32 - Writes all D-regs, explicit partial D update, 2 uops.
4203 // VLD1DUPd32 - Writes all D-regs, no partial reg update, 2 uops.
4204 //
4205 // FCONSTD can be used as a dependency-breaking instruction.
4206 unsigned ARMBaseInstrInfo::
4207 getPartialRegUpdateClearance(const MachineInstr *MI,
4208                              unsigned OpNum,
4209                              const TargetRegisterInfo *TRI) const {
4210   if (!SwiftPartialUpdateClearance ||
4211       !(Subtarget.isSwift() || Subtarget.isCortexA15()))
4212     return 0;
4213
4214   assert(TRI && "Need TRI instance");
4215
4216   const MachineOperand &MO = MI->getOperand(OpNum);
4217   if (MO.readsReg())
4218     return 0;
4219   unsigned Reg = MO.getReg();
4220   int UseOp = -1;
4221
4222   switch(MI->getOpcode()) {
4223     // Normal instructions writing only an S-register.
4224   case ARM::VLDRS:
4225   case ARM::FCONSTS:
4226   case ARM::VMOVSR:
4227   case ARM::VMOVv8i8:
4228   case ARM::VMOVv4i16:
4229   case ARM::VMOVv2i32:
4230   case ARM::VMOVv2f32:
4231   case ARM::VMOVv1i64:
4232     UseOp = MI->findRegisterUseOperandIdx(Reg, false, TRI);
4233     break;
4234
4235     // Explicitly reads the dependency.
4236   case ARM::VLD1LNd32:
4237     UseOp = 3;
4238     break;
4239   default:
4240     return 0;
4241   }
4242
4243   // If this instruction actually reads a value from Reg, there is no unwanted
4244   // dependency.
4245   if (UseOp != -1 && MI->getOperand(UseOp).readsReg())
4246     return 0;
4247
4248   // We must be able to clobber the whole D-reg.
4249   if (TargetRegisterInfo::isVirtualRegister(Reg)) {
4250     // Virtual register must be a foo:ssub_0<def,undef> operand.
4251     if (!MO.getSubReg() || MI->readsVirtualRegister(Reg))
4252       return 0;
4253   } else if (ARM::SPRRegClass.contains(Reg)) {
4254     // Physical register: MI must define the full D-reg.
4255     unsigned DReg = TRI->getMatchingSuperReg(Reg, ARM::ssub_0,
4256                                              &ARM::DPRRegClass);
4257     if (!DReg || !MI->definesRegister(DReg, TRI))
4258       return 0;
4259   }
4260
4261   // MI has an unwanted D-register dependency.
4262   // Avoid defs in the previous N instructrions.
4263   return SwiftPartialUpdateClearance;
4264 }
4265
4266 // Break a partial register dependency after getPartialRegUpdateClearance
4267 // returned non-zero.
4268 void ARMBaseInstrInfo::
4269 breakPartialRegDependency(MachineBasicBlock::iterator MI,
4270                           unsigned OpNum,
4271                           const TargetRegisterInfo *TRI) const {
4272   assert(MI && OpNum < MI->getDesc().getNumDefs() && "OpNum is not a def");
4273   assert(TRI && "Need TRI instance");
4274
4275   const MachineOperand &MO = MI->getOperand(OpNum);
4276   unsigned Reg = MO.getReg();
4277   assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
4278          "Can't break virtual register dependencies.");
4279   unsigned DReg = Reg;
4280
4281   // If MI defines an S-reg, find the corresponding D super-register.
4282   if (ARM::SPRRegClass.contains(Reg)) {
4283     DReg = ARM::D0 + (Reg - ARM::S0) / 2;
4284     assert(TRI->isSuperRegister(Reg, DReg) && "Register enums broken");
4285   }
4286
4287   assert(ARM::DPRRegClass.contains(DReg) && "Can only break D-reg deps");
4288   assert(MI->definesRegister(DReg, TRI) && "MI doesn't clobber full D-reg");
4289
4290   // FIXME: In some cases, VLDRS can be changed to a VLD1DUPd32 which defines
4291   // the full D-register by loading the same value to both lanes.  The
4292   // instruction is micro-coded with 2 uops, so don't do this until we can
4293   // properly schedule micro-coded instructions.  The dispatcher stalls cause
4294   // too big regressions.
4295
4296   // Insert the dependency-breaking FCONSTD before MI.
4297   // 96 is the encoding of 0.5, but the actual value doesn't matter here.
4298   AddDefaultPred(BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
4299                          get(ARM::FCONSTD), DReg).addImm(96));
4300   MI->addRegisterKilled(DReg, TRI, true);
4301 }
4302
4303 bool ARMBaseInstrInfo::hasNOP() const {
4304   return (Subtarget.getFeatureBits() & ARM::HasV6T2Ops) != 0;
4305 }
4306
4307 bool ARMBaseInstrInfo::isSwiftFastImmShift(const MachineInstr *MI) const {
4308   if (MI->getNumOperands() < 4)
4309     return true;
4310   unsigned ShOpVal = MI->getOperand(3).getImm();
4311   unsigned ShImm = ARM_AM::getSORegOffset(ShOpVal);
4312   // Swift supports faster shifts for: lsl 2, lsl 1, and lsr 1.
4313   if ((ShImm == 1 && ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsr) ||
4314       ((ShImm == 1 || ShImm == 2) &&
4315        ARM_AM::getSORegShOp(ShOpVal) == ARM_AM::lsl))
4316     return true;
4317
4318   return false;
4319 }