Lower ARM adds/subs to add/sub after adding optional CPSR operand.
[oota-llvm.git] / lib / Target / ARM / ARMBaseInstrInfo.cpp
1 //===- ARMBaseInstrInfo.cpp - ARM Instruction Information -------*- C++ -*-===//
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 "ARMBaseInstrInfo.h"
15 #include "ARM.h"
16 #include "ARMConstantPoolValue.h"
17 #include "ARMHazardRecognizer.h"
18 #include "ARMMachineFunctionInfo.h"
19 #include "ARMRegisterInfo.h"
20 #include "MCTargetDesc/ARMAddressingModes.h"
21 #include "llvm/Constants.h"
22 #include "llvm/Function.h"
23 #include "llvm/GlobalValue.h"
24 #include "llvm/CodeGen/LiveVariables.h"
25 #include "llvm/CodeGen/MachineConstantPool.h"
26 #include "llvm/CodeGen/MachineFrameInfo.h"
27 #include "llvm/CodeGen/MachineInstrBuilder.h"
28 #include "llvm/CodeGen/MachineJumpTableInfo.h"
29 #include "llvm/CodeGen/MachineMemOperand.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/CodeGen/PseudoSourceValue.h"
32 #include "llvm/CodeGen/SelectionDAGNodes.h"
33 #include "llvm/MC/MCAsmInfo.h"
34 #include "llvm/Support/BranchProbability.h"
35 #include "llvm/Support/CommandLine.h"
36 #include "llvm/Support/Debug.h"
37 #include "llvm/Support/ErrorHandling.h"
38 #include "llvm/ADT/STLExtras.h"
39
40 #define GET_INSTRINFO_CTOR
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,
51            cl::desc("Widen ARM vmovs to vmovd when possible"));
52
53 /// ARM_MLxEntry - Record information about MLA / MLS instructions.
54 struct ARM_MLxEntry {
55   unsigned MLxOpc;     // MLA / MLS opcode
56   unsigned MulOpc;     // Expanded multiplication opcode
57   unsigned AddSubOpc;  // Expanded add / sub opcode
58   bool NegAcc;         // True if the acc is negated before the add / sub.
59   bool HasLane;        // True if instruction has an extra "lane" operand.
60 };
61
62 static const ARM_MLxEntry ARM_MLxTable[] = {
63   // MLxOpc,          MulOpc,           AddSubOpc,       NegAcc, HasLane
64   // fp scalar ops
65   { ARM::VMLAS,       ARM::VMULS,       ARM::VADDS,      false,  false },
66   { ARM::VMLSS,       ARM::VMULS,       ARM::VSUBS,      false,  false },
67   { ARM::VMLAD,       ARM::VMULD,       ARM::VADDD,      false,  false },
68   { ARM::VMLSD,       ARM::VMULD,       ARM::VSUBD,      false,  false },
69   { ARM::VNMLAS,      ARM::VNMULS,      ARM::VSUBS,      true,   false },
70   { ARM::VNMLSS,      ARM::VMULS,       ARM::VSUBS,      true,   false },
71   { ARM::VNMLAD,      ARM::VNMULD,      ARM::VSUBD,      true,   false },
72   { ARM::VNMLSD,      ARM::VMULD,       ARM::VSUBD,      true,   false },
73
74   // fp SIMD ops
75   { ARM::VMLAfd,      ARM::VMULfd,      ARM::VADDfd,     false,  false },
76   { ARM::VMLSfd,      ARM::VMULfd,      ARM::VSUBfd,     false,  false },
77   { ARM::VMLAfq,      ARM::VMULfq,      ARM::VADDfq,     false,  false },
78   { ARM::VMLSfq,      ARM::VMULfq,      ARM::VSUBfq,     false,  false },
79   { ARM::VMLAslfd,    ARM::VMULslfd,    ARM::VADDfd,     false,  true  },
80   { ARM::VMLSslfd,    ARM::VMULslfd,    ARM::VSUBfd,     false,  true  },
81   { ARM::VMLAslfq,    ARM::VMULslfq,    ARM::VADDfq,     false,  true  },
82   { ARM::VMLSslfq,    ARM::VMULslfq,    ARM::VSUBfq,     false,  true  },
83 };
84
85 ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI)
86   : ARMGenInstrInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
87     Subtarget(STI) {
88   for (unsigned i = 0, e = array_lengthof(ARM_MLxTable); i != e; ++i) {
89     if (!MLxEntryMap.insert(std::make_pair(ARM_MLxTable[i].MLxOpc, i)).second)
90       assert(false && "Duplicated entries?");
91     MLxHazardOpcodes.insert(ARM_MLxTable[i].AddSubOpc);
92     MLxHazardOpcodes.insert(ARM_MLxTable[i].MulOpc);
93   }
94 }
95
96 // Use a ScoreboardHazardRecognizer for prepass ARM scheduling. TargetInstrImpl
97 // currently defaults to no prepass hazard recognizer.
98 ScheduleHazardRecognizer *ARMBaseInstrInfo::
99 CreateTargetHazardRecognizer(const TargetMachine *TM,
100                              const ScheduleDAG *DAG) const {
101   if (usePreRAHazardRecognizer()) {
102     const InstrItineraryData *II = TM->getInstrItineraryData();
103     return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
104   }
105   return TargetInstrInfoImpl::CreateTargetHazardRecognizer(TM, DAG);
106 }
107
108 ScheduleHazardRecognizer *ARMBaseInstrInfo::
109 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
110                                    const ScheduleDAG *DAG) const {
111   if (Subtarget.isThumb2() || Subtarget.hasVFP2())
112     return (ScheduleHazardRecognizer *)
113       new ARMHazardRecognizer(II, *this, getRegisterInfo(), Subtarget, DAG);
114   return TargetInstrInfoImpl::CreateTargetPostRAHazardRecognizer(II, DAG);
115 }
116
117 MachineInstr *
118 ARMBaseInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
119                                         MachineBasicBlock::iterator &MBBI,
120                                         LiveVariables *LV) const {
121   // FIXME: Thumb2 support.
122
123   if (!EnableARM3Addr)
124     return NULL;
125
126   MachineInstr *MI = MBBI;
127   MachineFunction &MF = *MI->getParent()->getParent();
128   uint64_t TSFlags = MI->getDesc().TSFlags;
129   bool isPre = false;
130   switch ((TSFlags & ARMII::IndexModeMask) >> ARMII::IndexModeShift) {
131   default: return NULL;
132   case ARMII::IndexModePre:
133     isPre = true;
134     break;
135   case ARMII::IndexModePost:
136     break;
137   }
138
139   // Try splitting an indexed load/store to an un-indexed one plus an add/sub
140   // operation.
141   unsigned MemOpc = getUnindexedOpcode(MI->getOpcode());
142   if (MemOpc == 0)
143     return NULL;
144
145   MachineInstr *UpdateMI = NULL;
146   MachineInstr *MemMI = NULL;
147   unsigned AddrMode = (TSFlags & ARMII::AddrModeMask);
148   const MCInstrDesc &MCID = MI->getDesc();
149   unsigned NumOps = MCID.getNumOperands();
150   bool isLoad = !MCID.mayStore();
151   const MachineOperand &WB = isLoad ? MI->getOperand(1) : MI->getOperand(0);
152   const MachineOperand &Base = MI->getOperand(2);
153   const MachineOperand &Offset = MI->getOperand(NumOps-3);
154   unsigned WBReg = WB.getReg();
155   unsigned BaseReg = Base.getReg();
156   unsigned OffReg = Offset.getReg();
157   unsigned OffImm = MI->getOperand(NumOps-2).getImm();
158   ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NumOps-1).getImm();
159   switch (AddrMode) {
160   default:
161     assert(false && "Unknown indexed op!");
162     return NULL;
163   case ARMII::AddrMode2: {
164     bool isSub = ARM_AM::getAM2Op(OffImm) == ARM_AM::sub;
165     unsigned Amt = ARM_AM::getAM2Offset(OffImm);
166     if (OffReg == 0) {
167       if (ARM_AM::getSOImmVal(Amt) == -1)
168         // Can't encode it in a so_imm operand. This transformation will
169         // add more than 1 instruction. Abandon!
170         return NULL;
171       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
172                          get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
173         .addReg(BaseReg).addImm(Amt)
174         .addImm(Pred).addReg(0).addReg(0);
175     } else if (Amt != 0) {
176       ARM_AM::ShiftOpc ShOpc = ARM_AM::getAM2ShiftOpc(OffImm);
177       unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
178       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
179                          get(isSub ? ARM::SUBrsi : ARM::ADDrsi), WBReg)
180         .addReg(BaseReg).addReg(OffReg).addReg(0).addImm(SOOpc)
181         .addImm(Pred).addReg(0).addReg(0);
182     } else
183       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
184                          get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
185         .addReg(BaseReg).addReg(OffReg)
186         .addImm(Pred).addReg(0).addReg(0);
187     break;
188   }
189   case ARMII::AddrMode3 : {
190     bool isSub = ARM_AM::getAM3Op(OffImm) == ARM_AM::sub;
191     unsigned Amt = ARM_AM::getAM3Offset(OffImm);
192     if (OffReg == 0)
193       // Immediate is 8-bits. It's guaranteed to fit in a so_imm operand.
194       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
195                          get(isSub ? ARM::SUBri : ARM::ADDri), WBReg)
196         .addReg(BaseReg).addImm(Amt)
197         .addImm(Pred).addReg(0).addReg(0);
198     else
199       UpdateMI = BuildMI(MF, MI->getDebugLoc(),
200                          get(isSub ? ARM::SUBrr : ARM::ADDrr), WBReg)
201         .addReg(BaseReg).addReg(OffReg)
202         .addImm(Pred).addReg(0).addReg(0);
203     break;
204   }
205   }
206
207   std::vector<MachineInstr*> NewMIs;
208   if (isPre) {
209     if (isLoad)
210       MemMI = BuildMI(MF, MI->getDebugLoc(),
211                       get(MemOpc), MI->getOperand(0).getReg())
212         .addReg(WBReg).addImm(0).addImm(Pred);
213     else
214       MemMI = BuildMI(MF, MI->getDebugLoc(),
215                       get(MemOpc)).addReg(MI->getOperand(1).getReg())
216         .addReg(WBReg).addReg(0).addImm(0).addImm(Pred);
217     NewMIs.push_back(MemMI);
218     NewMIs.push_back(UpdateMI);
219   } else {
220     if (isLoad)
221       MemMI = BuildMI(MF, MI->getDebugLoc(),
222                       get(MemOpc), MI->getOperand(0).getReg())
223         .addReg(BaseReg).addImm(0).addImm(Pred);
224     else
225       MemMI = BuildMI(MF, MI->getDebugLoc(),
226                       get(MemOpc)).addReg(MI->getOperand(1).getReg())
227         .addReg(BaseReg).addReg(0).addImm(0).addImm(Pred);
228     if (WB.isDead())
229       UpdateMI->getOperand(0).setIsDead();
230     NewMIs.push_back(UpdateMI);
231     NewMIs.push_back(MemMI);
232   }
233
234   // Transfer LiveVariables states, kill / dead info.
235   if (LV) {
236     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
237       MachineOperand &MO = MI->getOperand(i);
238       if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
239         unsigned Reg = MO.getReg();
240
241         LiveVariables::VarInfo &VI = LV->getVarInfo(Reg);
242         if (MO.isDef()) {
243           MachineInstr *NewMI = (Reg == WBReg) ? UpdateMI : MemMI;
244           if (MO.isDead())
245             LV->addVirtualRegisterDead(Reg, NewMI);
246         }
247         if (MO.isUse() && MO.isKill()) {
248           for (unsigned j = 0; j < 2; ++j) {
249             // Look at the two new MI's in reverse order.
250             MachineInstr *NewMI = NewMIs[j];
251             if (!NewMI->readsRegister(Reg))
252               continue;
253             LV->addVirtualRegisterKilled(Reg, NewMI);
254             if (VI.removeKill(MI))
255               VI.Kills.push_back(NewMI);
256             break;
257           }
258         }
259       }
260     }
261   }
262
263   MFI->insert(MBBI, NewMIs[1]);
264   MFI->insert(MBBI, NewMIs[0]);
265   return NewMIs[0];
266 }
267
268 // Branch analysis.
269 bool
270 ARMBaseInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
271                                 MachineBasicBlock *&FBB,
272                                 SmallVectorImpl<MachineOperand> &Cond,
273                                 bool AllowModify) const {
274   // If the block has no terminators, it just falls into the block after it.
275   MachineBasicBlock::iterator I = MBB.end();
276   if (I == MBB.begin())
277     return false;
278   --I;
279   while (I->isDebugValue()) {
280     if (I == MBB.begin())
281       return false;
282     --I;
283   }
284   if (!isUnpredicatedTerminator(I))
285     return false;
286
287   // Get the last instruction in the block.
288   MachineInstr *LastInst = I;
289
290   // If there is only one terminator instruction, process it.
291   unsigned LastOpc = LastInst->getOpcode();
292   if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
293     if (isUncondBranchOpcode(LastOpc)) {
294       TBB = LastInst->getOperand(0).getMBB();
295       return false;
296     }
297     if (isCondBranchOpcode(LastOpc)) {
298       // Block ends with fall-through condbranch.
299       TBB = LastInst->getOperand(0).getMBB();
300       Cond.push_back(LastInst->getOperand(1));
301       Cond.push_back(LastInst->getOperand(2));
302       return false;
303     }
304     return true;  // Can't handle indirect branch.
305   }
306
307   // Get the instruction before it if it is a terminator.
308   MachineInstr *SecondLastInst = I;
309   unsigned SecondLastOpc = SecondLastInst->getOpcode();
310
311   // If AllowModify is true and the block ends with two or more unconditional
312   // branches, delete all but the first unconditional branch.
313   if (AllowModify && isUncondBranchOpcode(LastOpc)) {
314     while (isUncondBranchOpcode(SecondLastOpc)) {
315       LastInst->eraseFromParent();
316       LastInst = SecondLastInst;
317       LastOpc = LastInst->getOpcode();
318       if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) {
319         // Return now the only terminator is an unconditional branch.
320         TBB = LastInst->getOperand(0).getMBB();
321         return false;
322       } else {
323         SecondLastInst = I;
324         SecondLastOpc = SecondLastInst->getOpcode();
325       }
326     }
327   }
328
329   // If there are three terminators, we don't know what sort of block this is.
330   if (SecondLastInst && I != MBB.begin() && isUnpredicatedTerminator(--I))
331     return true;
332
333   // If the block ends with a B and a Bcc, handle it.
334   if (isCondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
335     TBB =  SecondLastInst->getOperand(0).getMBB();
336     Cond.push_back(SecondLastInst->getOperand(1));
337     Cond.push_back(SecondLastInst->getOperand(2));
338     FBB = LastInst->getOperand(0).getMBB();
339     return false;
340   }
341
342   // If the block ends with two unconditional branches, handle it.  The second
343   // one is not executed, so remove it.
344   if (isUncondBranchOpcode(SecondLastOpc) && isUncondBranchOpcode(LastOpc)) {
345     TBB = SecondLastInst->getOperand(0).getMBB();
346     I = LastInst;
347     if (AllowModify)
348       I->eraseFromParent();
349     return false;
350   }
351
352   // ...likewise if it ends with a branch table followed by an unconditional
353   // branch. The branch folder can create these, and we must get rid of them for
354   // correctness of Thumb constant islands.
355   if ((isJumpTableBranchOpcode(SecondLastOpc) ||
356        isIndirectBranchOpcode(SecondLastOpc)) &&
357       isUncondBranchOpcode(LastOpc)) {
358     I = LastInst;
359     if (AllowModify)
360       I->eraseFromParent();
361     return true;
362   }
363
364   // Otherwise, can't handle this.
365   return true;
366 }
367
368
369 unsigned ARMBaseInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
370   MachineBasicBlock::iterator I = MBB.end();
371   if (I == MBB.begin()) return 0;
372   --I;
373   while (I->isDebugValue()) {
374     if (I == MBB.begin())
375       return 0;
376     --I;
377   }
378   if (!isUncondBranchOpcode(I->getOpcode()) &&
379       !isCondBranchOpcode(I->getOpcode()))
380     return 0;
381
382   // Remove the branch.
383   I->eraseFromParent();
384
385   I = MBB.end();
386
387   if (I == MBB.begin()) return 1;
388   --I;
389   if (!isCondBranchOpcode(I->getOpcode()))
390     return 1;
391
392   // Remove the branch.
393   I->eraseFromParent();
394   return 2;
395 }
396
397 unsigned
398 ARMBaseInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
399                                MachineBasicBlock *FBB,
400                                const SmallVectorImpl<MachineOperand> &Cond,
401                                DebugLoc DL) const {
402   ARMFunctionInfo *AFI = MBB.getParent()->getInfo<ARMFunctionInfo>();
403   int BOpc   = !AFI->isThumbFunction()
404     ? ARM::B : (AFI->isThumb2Function() ? ARM::t2B : ARM::tB);
405   int BccOpc = !AFI->isThumbFunction()
406     ? ARM::Bcc : (AFI->isThumb2Function() ? ARM::t2Bcc : ARM::tBcc);
407   bool isThumb = AFI->isThumbFunction() || AFI->isThumb2Function();
408
409   // Shouldn't be a fall through.
410   assert(TBB && "InsertBranch must not be told to insert a fallthrough");
411   assert((Cond.size() == 2 || Cond.size() == 0) &&
412          "ARM branch conditions have two components!");
413
414   if (FBB == 0) {
415     if (Cond.empty()) { // Unconditional branch?
416       if (isThumb)
417         BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).addImm(ARMCC::AL).addReg(0);
418       else
419         BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
420     } else
421       BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
422         .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
423     return 1;
424   }
425
426   // Two-way conditional branch.
427   BuildMI(&MBB, DL, get(BccOpc)).addMBB(TBB)
428     .addImm(Cond[0].getImm()).addReg(Cond[1].getReg());
429   if (isThumb)
430     BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).addImm(ARMCC::AL).addReg(0);
431   else
432     BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
433   return 2;
434 }
435
436 bool ARMBaseInstrInfo::
437 ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
438   ARMCC::CondCodes CC = (ARMCC::CondCodes)(int)Cond[0].getImm();
439   Cond[0].setImm(ARMCC::getOppositeCondition(CC));
440   return false;
441 }
442
443 bool ARMBaseInstrInfo::
444 PredicateInstruction(MachineInstr *MI,
445                      const SmallVectorImpl<MachineOperand> &Pred) const {
446   unsigned Opc = MI->getOpcode();
447   if (isUncondBranchOpcode(Opc)) {
448     MI->setDesc(get(getMatchingCondBranchOpcode(Opc)));
449     MI->addOperand(MachineOperand::CreateImm(Pred[0].getImm()));
450     MI->addOperand(MachineOperand::CreateReg(Pred[1].getReg(), false));
451     return true;
452   }
453
454   int PIdx = MI->findFirstPredOperandIdx();
455   if (PIdx != -1) {
456     MachineOperand &PMO = MI->getOperand(PIdx);
457     PMO.setImm(Pred[0].getImm());
458     MI->getOperand(PIdx+1).setReg(Pred[1].getReg());
459     return true;
460   }
461   return false;
462 }
463
464 bool ARMBaseInstrInfo::
465 SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
466                   const SmallVectorImpl<MachineOperand> &Pred2) const {
467   if (Pred1.size() > 2 || Pred2.size() > 2)
468     return false;
469
470   ARMCC::CondCodes CC1 = (ARMCC::CondCodes)Pred1[0].getImm();
471   ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm();
472   if (CC1 == CC2)
473     return true;
474
475   switch (CC1) {
476   default:
477     return false;
478   case ARMCC::AL:
479     return true;
480   case ARMCC::HS:
481     return CC2 == ARMCC::HI;
482   case ARMCC::LS:
483     return CC2 == ARMCC::LO || CC2 == ARMCC::EQ;
484   case ARMCC::GE:
485     return CC2 == ARMCC::GT;
486   case ARMCC::LE:
487     return CC2 == ARMCC::LT;
488   }
489 }
490
491 bool ARMBaseInstrInfo::DefinesPredicate(MachineInstr *MI,
492                                     std::vector<MachineOperand> &Pred) const {
493   // FIXME: This confuses implicit_def with optional CPSR def.
494   const MCInstrDesc &MCID = MI->getDesc();
495   if (!MCID.getImplicitDefs() && !MCID.hasOptionalDef())
496     return false;
497
498   bool Found = false;
499   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
500     const MachineOperand &MO = MI->getOperand(i);
501     if (MO.isReg() && MO.getReg() == ARM::CPSR) {
502       Pred.push_back(MO);
503       Found = true;
504     }
505   }
506
507   return Found;
508 }
509
510 /// isPredicable - Return true if the specified instruction can be predicated.
511 /// By default, this returns true for every instruction with a
512 /// PredicateOperand.
513 bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
514   const MCInstrDesc &MCID = MI->getDesc();
515   if (!MCID.isPredicable())
516     return false;
517
518   if ((MCID.TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) {
519     ARMFunctionInfo *AFI =
520       MI->getParent()->getParent()->getInfo<ARMFunctionInfo>();
521     return AFI->isThumb2Function();
522   }
523   return true;
524 }
525
526 /// FIXME: Works around a gcc miscompilation with -fstrict-aliasing.
527 LLVM_ATTRIBUTE_NOINLINE
528 static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
529                                 unsigned JTI);
530 static unsigned getNumJTEntries(const std::vector<MachineJumpTableEntry> &JT,
531                                 unsigned JTI) {
532   assert(JTI < JT.size());
533   return JT[JTI].MBBs.size();
534 }
535
536 /// GetInstSize - Return the size of the specified MachineInstr.
537 ///
538 unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
539   const MachineBasicBlock &MBB = *MI->getParent();
540   const MachineFunction *MF = MBB.getParent();
541   const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
542
543   const MCInstrDesc &MCID = MI->getDesc();
544   if (MCID.getSize())
545     return MCID.getSize();
546
547     // If this machine instr is an inline asm, measure it.
548     if (MI->getOpcode() == ARM::INLINEASM)
549       return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
550     if (MI->isLabel())
551       return 0;
552   unsigned Opc = MI->getOpcode();
553     switch (Opc) {
554     case TargetOpcode::IMPLICIT_DEF:
555     case TargetOpcode::KILL:
556     case TargetOpcode::PROLOG_LABEL:
557     case TargetOpcode::EH_LABEL:
558     case TargetOpcode::DBG_VALUE:
559       return 0;
560     case ARM::MOVi16_ga_pcrel:
561     case ARM::MOVTi16_ga_pcrel:
562     case ARM::t2MOVi16_ga_pcrel:
563     case ARM::t2MOVTi16_ga_pcrel:
564       return 4;
565     case ARM::MOVi32imm:
566     case ARM::t2MOVi32imm:
567       return 8;
568     case ARM::CONSTPOOL_ENTRY:
569       // If this machine instr is a constant pool entry, its size is recorded as
570       // operand #2.
571       return MI->getOperand(2).getImm();
572     case ARM::Int_eh_sjlj_longjmp:
573       return 16;
574     case ARM::tInt_eh_sjlj_longjmp:
575       return 10;
576     case ARM::Int_eh_sjlj_setjmp:
577     case ARM::Int_eh_sjlj_setjmp_nofp:
578       return 20;
579     case ARM::tInt_eh_sjlj_setjmp:
580     case ARM::t2Int_eh_sjlj_setjmp:
581     case ARM::t2Int_eh_sjlj_setjmp_nofp:
582       return 12;
583     case ARM::BR_JTr:
584     case ARM::BR_JTm:
585     case ARM::BR_JTadd:
586     case ARM::tBR_JTr:
587     case ARM::t2BR_JT:
588     case ARM::t2TBB_JT:
589     case ARM::t2TBH_JT: {
590       // These are jumptable branches, i.e. a branch followed by an inlined
591       // jumptable. The size is 4 + 4 * number of entries. For TBB, each
592       // entry is one byte; TBH two byte each.
593       unsigned EntrySize = (Opc == ARM::t2TBB_JT)
594         ? 1 : ((Opc == ARM::t2TBH_JT) ? 2 : 4);
595       unsigned NumOps = MCID.getNumOperands();
596       MachineOperand JTOP =
597         MI->getOperand(NumOps - (MCID.isPredicable() ? 3 : 2));
598       unsigned JTI = JTOP.getIndex();
599       const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
600       assert(MJTI != 0);
601       const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
602       assert(JTI < JT.size());
603       // Thumb instructions are 2 byte aligned, but JT entries are 4 byte
604       // 4 aligned. The assembler / linker may add 2 byte padding just before
605       // the JT entries.  The size does not include this padding; the
606       // constant islands pass does separate bookkeeping for it.
607       // FIXME: If we know the size of the function is less than (1 << 16) *2
608       // bytes, we can use 16-bit entries instead. Then there won't be an
609       // alignment issue.
610       unsigned InstSize = (Opc == ARM::tBR_JTr || Opc == ARM::t2BR_JT) ? 2 : 4;
611       unsigned NumEntries = getNumJTEntries(JT, JTI);
612       if (Opc == ARM::t2TBB_JT && (NumEntries & 1))
613         // Make sure the instruction that follows TBB is 2-byte aligned.
614         // FIXME: Constant island pass should insert an "ALIGN" instruction
615         // instead.
616         ++NumEntries;
617       return NumEntries * EntrySize + InstSize;
618     }
619     default:
620       // Otherwise, pseudo-instruction sizes are zero.
621       return 0;
622     }
623   return 0; // Not reached
624 }
625
626 void ARMBaseInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
627                                    MachineBasicBlock::iterator I, DebugLoc DL,
628                                    unsigned DestReg, unsigned SrcReg,
629                                    bool KillSrc) const {
630   bool GPRDest = ARM::GPRRegClass.contains(DestReg);
631   bool GPRSrc  = ARM::GPRRegClass.contains(SrcReg);
632
633   if (GPRDest && GPRSrc) {
634     AddDefaultCC(AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::MOVr), DestReg)
635                                   .addReg(SrcReg, getKillRegState(KillSrc))));
636     return;
637   }
638
639   bool SPRDest = ARM::SPRRegClass.contains(DestReg);
640   bool SPRSrc  = ARM::SPRRegClass.contains(SrcReg);
641
642   unsigned Opc = 0;
643   if (SPRDest && SPRSrc) {
644     Opc = ARM::VMOVS;
645
646     // An even S-S copy may be feeding a NEON v2f32 instruction being used for
647     // f32 operations.  In that case, it is better to copy the full D-regs with
648     // a VMOVD since that can be converted to a NEON-domain move by
649     // NEONMoveFix.cpp.  Check that MI is the original COPY instruction, and
650     // that it really defines the whole D-register.
651     if (WidenVMOVS &&
652         (DestReg - ARM::S0) % 2 == 0 && (SrcReg - ARM::S0) % 2 == 0 &&
653         I != MBB.end() && I->isCopy() &&
654         I->getOperand(0).getReg() == DestReg &&
655         I->getOperand(1).getReg() == SrcReg) {
656       // I is pointing to the ortiginal COPY instruction.
657       // Find the parent D-registers.
658       const TargetRegisterInfo *TRI = &getRegisterInfo();
659       unsigned SrcD = TRI->getMatchingSuperReg(SrcReg, ARM::ssub_0,
660                                                &ARM::DPRRegClass);
661       unsigned DestD = TRI->getMatchingSuperReg(DestReg, ARM::ssub_0,
662                                                 &ARM::DPRRegClass);
663       // Be careful to not clobber an INSERT_SUBREG that reads and redefines a
664       // D-register.  There must be an <imp-def> of destD, and no <imp-use>.
665       if (I->definesRegister(DestD, TRI) && !I->readsRegister(DestD, TRI)) {
666         Opc = ARM::VMOVD;
667         SrcReg = SrcD;
668         DestReg = DestD;
669         if (KillSrc)
670           KillSrc = I->killsRegister(SrcReg, TRI);
671       }
672     }
673   } else if (GPRDest && SPRSrc)
674     Opc = ARM::VMOVRS;
675   else if (SPRDest && GPRSrc)
676     Opc = ARM::VMOVSR;
677   else if (ARM::DPRRegClass.contains(DestReg, SrcReg))
678     Opc = ARM::VMOVD;
679   else if (ARM::QPRRegClass.contains(DestReg, SrcReg))
680     Opc = ARM::VORRq;
681
682   if (Opc) {
683     MachineInstrBuilder MIB = BuildMI(MBB, I, DL, get(Opc), DestReg);
684     MIB.addReg(SrcReg, getKillRegState(KillSrc));
685     if (Opc == ARM::VORRq)
686       MIB.addReg(SrcReg, getKillRegState(KillSrc));
687     AddDefaultPred(MIB);
688     return;
689   }
690
691   // Generate instructions for VMOVQQ and VMOVQQQQ pseudos in place.
692   if (ARM::QQPRRegClass.contains(DestReg, SrcReg) ||
693       ARM::QQQQPRRegClass.contains(DestReg, SrcReg)) {
694     const TargetRegisterInfo *TRI = &getRegisterInfo();
695     assert(ARM::qsub_0 + 3 == ARM::qsub_3 && "Expected contiguous enum.");
696     unsigned EndSubReg = ARM::QQPRRegClass.contains(DestReg, SrcReg) ?
697       ARM::qsub_1 : ARM::qsub_3;
698     for (unsigned i = ARM::qsub_0, e = EndSubReg + 1; i != e; ++i) {
699       unsigned Dst = TRI->getSubReg(DestReg, i);
700       unsigned Src = TRI->getSubReg(SrcReg, i);
701       MachineInstrBuilder Mov =
702         AddDefaultPred(BuildMI(MBB, I, I->getDebugLoc(), get(ARM::VORRq))
703                        .addReg(Dst, RegState::Define)
704                        .addReg(Src, getKillRegState(KillSrc))
705                        .addReg(Src, getKillRegState(KillSrc)));
706       if (i == EndSubReg) {
707         Mov->addRegisterDefined(DestReg, TRI);
708         if (KillSrc)
709           Mov->addRegisterKilled(SrcReg, TRI);
710       }
711     }
712     return;
713   }
714   llvm_unreachable("Impossible reg-to-reg copy");
715 }
716
717 static const
718 MachineInstrBuilder &AddDReg(MachineInstrBuilder &MIB,
719                              unsigned Reg, unsigned SubIdx, unsigned State,
720                              const TargetRegisterInfo *TRI) {
721   if (!SubIdx)
722     return MIB.addReg(Reg, State);
723
724   if (TargetRegisterInfo::isPhysicalRegister(Reg))
725     return MIB.addReg(TRI->getSubReg(Reg, SubIdx), State);
726   return MIB.addReg(Reg, State, SubIdx);
727 }
728
729 void ARMBaseInstrInfo::
730 storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
731                     unsigned SrcReg, bool isKill, int FI,
732                     const TargetRegisterClass *RC,
733                     const TargetRegisterInfo *TRI) const {
734   DebugLoc DL;
735   if (I != MBB.end()) DL = I->getDebugLoc();
736   MachineFunction &MF = *MBB.getParent();
737   MachineFrameInfo &MFI = *MF.getFrameInfo();
738   unsigned Align = MFI.getObjectAlignment(FI);
739
740   MachineMemOperand *MMO =
741     MF.getMachineMemOperand(MachinePointerInfo(
742                                          PseudoSourceValue::getFixedStack(FI)),
743                             MachineMemOperand::MOStore,
744                             MFI.getObjectSize(FI),
745                             Align);
746
747   switch (RC->getSize()) {
748     case 4:
749       if (ARM::GPRRegClass.hasSubClassEq(RC)) {
750         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::STRi12))
751                    .addReg(SrcReg, getKillRegState(isKill))
752                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
753       } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
754         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRS))
755                    .addReg(SrcReg, getKillRegState(isKill))
756                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
757       } else
758         llvm_unreachable("Unknown reg class!");
759       break;
760     case 8:
761       if (ARM::DPRRegClass.hasSubClassEq(RC)) {
762         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTRD))
763                    .addReg(SrcReg, getKillRegState(isKill))
764                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
765       } else
766         llvm_unreachable("Unknown reg class!");
767       break;
768     case 16:
769       if (ARM::QPRRegClass.hasSubClassEq(RC)) {
770         if (Align >= 16 && getRegisterInfo().needsStackRealignment(MF)) {
771           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1q64Pseudo))
772                      .addFrameIndex(FI).addImm(16)
773                      .addReg(SrcReg, getKillRegState(isKill))
774                      .addMemOperand(MMO));
775         } else {
776           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMQIA))
777                      .addReg(SrcReg, getKillRegState(isKill))
778                      .addFrameIndex(FI)
779                      .addMemOperand(MMO));
780         }
781       } else
782         llvm_unreachable("Unknown reg class!");
783       break;
784     case 32:
785       if (ARM::QQPRRegClass.hasSubClassEq(RC)) {
786         if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
787           // FIXME: It's possible to only store part of the QQ register if the
788           // spilled def has a sub-register index.
789           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VST1d64QPseudo))
790                      .addFrameIndex(FI).addImm(16)
791                      .addReg(SrcReg, getKillRegState(isKill))
792                      .addMemOperand(MMO));
793         } else {
794           MachineInstrBuilder MIB =
795           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
796                        .addFrameIndex(FI))
797                        .addMemOperand(MMO);
798           MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
799           MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
800           MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
801                 AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
802         }
803       } else
804         llvm_unreachable("Unknown reg class!");
805       break;
806     case 64:
807       if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
808         MachineInstrBuilder MIB =
809           AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VSTMDIA))
810                          .addFrameIndex(FI))
811                          .addMemOperand(MMO);
812         MIB = AddDReg(MIB, SrcReg, ARM::dsub_0, getKillRegState(isKill), TRI);
813         MIB = AddDReg(MIB, SrcReg, ARM::dsub_1, 0, TRI);
814         MIB = AddDReg(MIB, SrcReg, ARM::dsub_2, 0, TRI);
815         MIB = AddDReg(MIB, SrcReg, ARM::dsub_3, 0, TRI);
816         MIB = AddDReg(MIB, SrcReg, ARM::dsub_4, 0, TRI);
817         MIB = AddDReg(MIB, SrcReg, ARM::dsub_5, 0, TRI);
818         MIB = AddDReg(MIB, SrcReg, ARM::dsub_6, 0, TRI);
819               AddDReg(MIB, SrcReg, ARM::dsub_7, 0, TRI);
820       } else
821         llvm_unreachable("Unknown reg class!");
822       break;
823     default:
824       llvm_unreachable("Unknown reg class!");
825   }
826 }
827
828 unsigned
829 ARMBaseInstrInfo::isStoreToStackSlot(const MachineInstr *MI,
830                                      int &FrameIndex) const {
831   switch (MI->getOpcode()) {
832   default: break;
833   case ARM::STRrs:
834   case ARM::t2STRs: // FIXME: don't use t2STRs to access frame.
835     if (MI->getOperand(1).isFI() &&
836         MI->getOperand(2).isReg() &&
837         MI->getOperand(3).isImm() &&
838         MI->getOperand(2).getReg() == 0 &&
839         MI->getOperand(3).getImm() == 0) {
840       FrameIndex = MI->getOperand(1).getIndex();
841       return MI->getOperand(0).getReg();
842     }
843     break;
844   case ARM::STRi12:
845   case ARM::t2STRi12:
846   case ARM::tSTRspi:
847   case ARM::VSTRD:
848   case ARM::VSTRS:
849     if (MI->getOperand(1).isFI() &&
850         MI->getOperand(2).isImm() &&
851         MI->getOperand(2).getImm() == 0) {
852       FrameIndex = MI->getOperand(1).getIndex();
853       return MI->getOperand(0).getReg();
854     }
855     break;
856   case ARM::VST1q64Pseudo:
857     if (MI->getOperand(0).isFI() &&
858         MI->getOperand(2).getSubReg() == 0) {
859       FrameIndex = MI->getOperand(0).getIndex();
860       return MI->getOperand(2).getReg();
861     }
862     break;
863   case ARM::VSTMQIA:
864     if (MI->getOperand(1).isFI() &&
865         MI->getOperand(0).getSubReg() == 0) {
866       FrameIndex = MI->getOperand(1).getIndex();
867       return MI->getOperand(0).getReg();
868     }
869     break;
870   }
871
872   return 0;
873 }
874
875 unsigned ARMBaseInstrInfo::isStoreToStackSlotPostFE(const MachineInstr *MI,
876                                                     int &FrameIndex) const {
877   const MachineMemOperand *Dummy;
878   return MI->getDesc().mayStore() && hasStoreToStackSlot(MI, Dummy, FrameIndex);
879 }
880
881 void ARMBaseInstrInfo::
882 loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
883                      unsigned DestReg, int FI,
884                      const TargetRegisterClass *RC,
885                      const TargetRegisterInfo *TRI) const {
886   DebugLoc DL;
887   if (I != MBB.end()) DL = I->getDebugLoc();
888   MachineFunction &MF = *MBB.getParent();
889   MachineFrameInfo &MFI = *MF.getFrameInfo();
890   unsigned Align = MFI.getObjectAlignment(FI);
891   MachineMemOperand *MMO =
892     MF.getMachineMemOperand(
893                     MachinePointerInfo(PseudoSourceValue::getFixedStack(FI)),
894                             MachineMemOperand::MOLoad,
895                             MFI.getObjectSize(FI),
896                             Align);
897
898   switch (RC->getSize()) {
899   case 4:
900     if (ARM::GPRRegClass.hasSubClassEq(RC)) {
901       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::LDRi12), DestReg)
902                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
903
904     } else if (ARM::SPRRegClass.hasSubClassEq(RC)) {
905       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRS), DestReg)
906                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
907     } else
908       llvm_unreachable("Unknown reg class!");
909     break;
910   case 8:
911     if (ARM::DPRRegClass.hasSubClassEq(RC)) {
912       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDRD), DestReg)
913                    .addFrameIndex(FI).addImm(0).addMemOperand(MMO));
914     } else
915       llvm_unreachable("Unknown reg class!");
916     break;
917   case 16:
918     if (ARM::QPRRegClass.hasSubClassEq(RC)) {
919       if (Align >= 16 && getRegisterInfo().needsStackRealignment(MF)) {
920         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1q64Pseudo), DestReg)
921                      .addFrameIndex(FI).addImm(16)
922                      .addMemOperand(MMO));
923       } else {
924         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMQIA), DestReg)
925                        .addFrameIndex(FI)
926                        .addMemOperand(MMO));
927       }
928     } else
929       llvm_unreachable("Unknown reg class!");
930     break;
931   case 32:
932     if (ARM::QQPRRegClass.hasSubClassEq(RC)) {
933       if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
934         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLD1d64QPseudo), DestReg)
935                      .addFrameIndex(FI).addImm(16)
936                      .addMemOperand(MMO));
937       } else {
938         MachineInstrBuilder MIB =
939         AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
940                        .addFrameIndex(FI))
941                        .addMemOperand(MMO);
942         MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::Define, TRI);
943         MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::Define, TRI);
944         MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::Define, TRI);
945         MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::Define, TRI);
946         MIB.addReg(DestReg, RegState::Define | RegState::Implicit);
947       }
948     } else
949       llvm_unreachable("Unknown reg class!");
950     break;
951   case 64:
952     if (ARM::QQQQPRRegClass.hasSubClassEq(RC)) {
953       MachineInstrBuilder MIB =
954       AddDefaultPred(BuildMI(MBB, I, DL, get(ARM::VLDMDIA))
955                      .addFrameIndex(FI))
956                      .addMemOperand(MMO);
957       MIB = AddDReg(MIB, DestReg, ARM::dsub_0, RegState::Define, TRI);
958       MIB = AddDReg(MIB, DestReg, ARM::dsub_1, RegState::Define, TRI);
959       MIB = AddDReg(MIB, DestReg, ARM::dsub_2, RegState::Define, TRI);
960       MIB = AddDReg(MIB, DestReg, ARM::dsub_3, RegState::Define, TRI);
961       MIB = AddDReg(MIB, DestReg, ARM::dsub_4, RegState::Define, TRI);
962       MIB = AddDReg(MIB, DestReg, ARM::dsub_5, RegState::Define, TRI);
963       MIB = AddDReg(MIB, DestReg, ARM::dsub_6, RegState::Define, TRI);
964       MIB = AddDReg(MIB, DestReg, ARM::dsub_7, RegState::Define, TRI);
965       MIB.addReg(DestReg, RegState::Define | RegState::Implicit);
966     } else
967       llvm_unreachable("Unknown reg class!");
968     break;
969   default:
970     llvm_unreachable("Unknown regclass!");
971   }
972 }
973
974 unsigned
975 ARMBaseInstrInfo::isLoadFromStackSlot(const MachineInstr *MI,
976                                       int &FrameIndex) const {
977   switch (MI->getOpcode()) {
978   default: break;
979   case ARM::LDRrs:
980   case ARM::t2LDRs:  // FIXME: don't use t2LDRs to access frame.
981     if (MI->getOperand(1).isFI() &&
982         MI->getOperand(2).isReg() &&
983         MI->getOperand(3).isImm() &&
984         MI->getOperand(2).getReg() == 0 &&
985         MI->getOperand(3).getImm() == 0) {
986       FrameIndex = MI->getOperand(1).getIndex();
987       return MI->getOperand(0).getReg();
988     }
989     break;
990   case ARM::LDRi12:
991   case ARM::t2LDRi12:
992   case ARM::tLDRspi:
993   case ARM::VLDRD:
994   case ARM::VLDRS:
995     if (MI->getOperand(1).isFI() &&
996         MI->getOperand(2).isImm() &&
997         MI->getOperand(2).getImm() == 0) {
998       FrameIndex = MI->getOperand(1).getIndex();
999       return MI->getOperand(0).getReg();
1000     }
1001     break;
1002   case ARM::VLD1q64Pseudo:
1003     if (MI->getOperand(1).isFI() &&
1004         MI->getOperand(0).getSubReg() == 0) {
1005       FrameIndex = MI->getOperand(1).getIndex();
1006       return MI->getOperand(0).getReg();
1007     }
1008     break;
1009   case ARM::VLDMQIA:
1010     if (MI->getOperand(1).isFI() &&
1011         MI->getOperand(0).getSubReg() == 0) {
1012       FrameIndex = MI->getOperand(1).getIndex();
1013       return MI->getOperand(0).getReg();
1014     }
1015     break;
1016   }
1017
1018   return 0;
1019 }
1020
1021 unsigned ARMBaseInstrInfo::isLoadFromStackSlotPostFE(const MachineInstr *MI,
1022                                              int &FrameIndex) const {
1023   const MachineMemOperand *Dummy;
1024   return MI->getDesc().mayLoad() && hasLoadFromStackSlot(MI, Dummy, FrameIndex);
1025 }
1026
1027 MachineInstr*
1028 ARMBaseInstrInfo::emitFrameIndexDebugValue(MachineFunction &MF,
1029                                            int FrameIx, uint64_t Offset,
1030                                            const MDNode *MDPtr,
1031                                            DebugLoc DL) const {
1032   MachineInstrBuilder MIB = BuildMI(MF, DL, get(ARM::DBG_VALUE))
1033     .addFrameIndex(FrameIx).addImm(0).addImm(Offset).addMetadata(MDPtr);
1034   return &*MIB;
1035 }
1036
1037 /// Create a copy of a const pool value. Update CPI to the new index and return
1038 /// the label UID.
1039 static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) {
1040   MachineConstantPool *MCP = MF.getConstantPool();
1041   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1042
1043   const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1044   assert(MCPE.isMachineConstantPoolEntry() &&
1045          "Expecting a machine constantpool entry!");
1046   ARMConstantPoolValue *ACPV =
1047     static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
1048
1049   unsigned PCLabelId = AFI->createPICLabelUId();
1050   ARMConstantPoolValue *NewCPV = 0;
1051   // FIXME: The below assumes PIC relocation model and that the function
1052   // is Thumb mode (t1 or t2). PCAdjustment would be 8 for ARM mode PIC, and
1053   // zero for non-PIC in ARM or Thumb. The callers are all of thumb LDR
1054   // instructions, so that's probably OK, but is PIC always correct when
1055   // we get here?
1056   if (ACPV->isGlobalValue())
1057     NewCPV = new ARMConstantPoolValue(ACPV->getGV(), PCLabelId,
1058                                       ARMCP::CPValue, 4);
1059   else if (ACPV->isExtSymbol())
1060     NewCPV = new ARMConstantPoolValue(MF.getFunction()->getContext(),
1061                                       ACPV->getSymbol(), PCLabelId, 4);
1062   else if (ACPV->isBlockAddress())
1063     NewCPV = new ARMConstantPoolValue(ACPV->getBlockAddress(), PCLabelId,
1064                                       ARMCP::CPBlockAddress, 4);
1065   else if (ACPV->isLSDA())
1066     NewCPV = new ARMConstantPoolValue(MF.getFunction(), PCLabelId,
1067                                       ARMCP::CPLSDA, 4);
1068   else
1069     llvm_unreachable("Unexpected ARM constantpool value type!!");
1070   CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1071   return PCLabelId;
1072 }
1073
1074 void ARMBaseInstrInfo::
1075 reMaterialize(MachineBasicBlock &MBB,
1076               MachineBasicBlock::iterator I,
1077               unsigned DestReg, unsigned SubIdx,
1078               const MachineInstr *Orig,
1079               const TargetRegisterInfo &TRI) const {
1080   unsigned Opcode = Orig->getOpcode();
1081   switch (Opcode) {
1082   default: {
1083     MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
1084     MI->substituteRegister(Orig->getOperand(0).getReg(), DestReg, SubIdx, TRI);
1085     MBB.insert(I, MI);
1086     break;
1087   }
1088   case ARM::tLDRpci_pic:
1089   case ARM::t2LDRpci_pic: {
1090     MachineFunction &MF = *MBB.getParent();
1091     unsigned CPI = Orig->getOperand(1).getIndex();
1092     unsigned PCLabelId = duplicateCPV(MF, CPI);
1093     MachineInstrBuilder MIB = BuildMI(MBB, I, Orig->getDebugLoc(), get(Opcode),
1094                                       DestReg)
1095       .addConstantPoolIndex(CPI).addImm(PCLabelId);
1096     MIB->setMemRefs(Orig->memoperands_begin(), Orig->memoperands_end());
1097     break;
1098   }
1099   }
1100 }
1101
1102 MachineInstr *
1103 ARMBaseInstrInfo::duplicate(MachineInstr *Orig, MachineFunction &MF) const {
1104   MachineInstr *MI = TargetInstrInfoImpl::duplicate(Orig, MF);
1105   switch(Orig->getOpcode()) {
1106   case ARM::tLDRpci_pic:
1107   case ARM::t2LDRpci_pic: {
1108     unsigned CPI = Orig->getOperand(1).getIndex();
1109     unsigned PCLabelId = duplicateCPV(MF, CPI);
1110     Orig->getOperand(1).setIndex(CPI);
1111     Orig->getOperand(2).setImm(PCLabelId);
1112     break;
1113   }
1114   }
1115   return MI;
1116 }
1117
1118 bool ARMBaseInstrInfo::produceSameValue(const MachineInstr *MI0,
1119                                         const MachineInstr *MI1,
1120                                         const MachineRegisterInfo *MRI) const {
1121   int Opcode = MI0->getOpcode();
1122   if (Opcode == ARM::t2LDRpci ||
1123       Opcode == ARM::t2LDRpci_pic ||
1124       Opcode == ARM::tLDRpci ||
1125       Opcode == ARM::tLDRpci_pic ||
1126       Opcode == ARM::MOV_ga_dyn ||
1127       Opcode == ARM::MOV_ga_pcrel ||
1128       Opcode == ARM::MOV_ga_pcrel_ldr ||
1129       Opcode == ARM::t2MOV_ga_dyn ||
1130       Opcode == ARM::t2MOV_ga_pcrel) {
1131     if (MI1->getOpcode() != Opcode)
1132       return false;
1133     if (MI0->getNumOperands() != MI1->getNumOperands())
1134       return false;
1135
1136     const MachineOperand &MO0 = MI0->getOperand(1);
1137     const MachineOperand &MO1 = MI1->getOperand(1);
1138     if (MO0.getOffset() != MO1.getOffset())
1139       return false;
1140
1141     if (Opcode == ARM::MOV_ga_dyn ||
1142         Opcode == ARM::MOV_ga_pcrel ||
1143         Opcode == ARM::MOV_ga_pcrel_ldr ||
1144         Opcode == ARM::t2MOV_ga_dyn ||
1145         Opcode == ARM::t2MOV_ga_pcrel)
1146       // Ignore the PC labels.
1147       return MO0.getGlobal() == MO1.getGlobal();
1148
1149     const MachineFunction *MF = MI0->getParent()->getParent();
1150     const MachineConstantPool *MCP = MF->getConstantPool();
1151     int CPI0 = MO0.getIndex();
1152     int CPI1 = MO1.getIndex();
1153     const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1154     const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
1155     bool isARMCP0 = MCPE0.isMachineConstantPoolEntry();
1156     bool isARMCP1 = MCPE1.isMachineConstantPoolEntry();
1157     if (isARMCP0 && isARMCP1) {
1158       ARMConstantPoolValue *ACPV0 =
1159         static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal);
1160       ARMConstantPoolValue *ACPV1 =
1161         static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal);
1162       return ACPV0->hasSameValue(ACPV1);
1163     } else if (!isARMCP0 && !isARMCP1) {
1164       return MCPE0.Val.ConstVal == MCPE1.Val.ConstVal;
1165     }
1166     return false;
1167   } else if (Opcode == ARM::PICLDR) {
1168     if (MI1->getOpcode() != Opcode)
1169       return false;
1170     if (MI0->getNumOperands() != MI1->getNumOperands())
1171       return false;
1172
1173     unsigned Addr0 = MI0->getOperand(1).getReg();
1174     unsigned Addr1 = MI1->getOperand(1).getReg();
1175     if (Addr0 != Addr1) {
1176       if (!MRI ||
1177           !TargetRegisterInfo::isVirtualRegister(Addr0) ||
1178           !TargetRegisterInfo::isVirtualRegister(Addr1))
1179         return false;
1180
1181       // This assumes SSA form.
1182       MachineInstr *Def0 = MRI->getVRegDef(Addr0);
1183       MachineInstr *Def1 = MRI->getVRegDef(Addr1);
1184       // Check if the loaded value, e.g. a constantpool of a global address, are
1185       // the same.
1186       if (!produceSameValue(Def0, Def1, MRI))
1187         return false;
1188     }
1189
1190     for (unsigned i = 3, e = MI0->getNumOperands(); i != e; ++i) {
1191       // %vreg12<def> = PICLDR %vreg11, 0, pred:14, pred:%noreg
1192       const MachineOperand &MO0 = MI0->getOperand(i);
1193       const MachineOperand &MO1 = MI1->getOperand(i);
1194       if (!MO0.isIdenticalTo(MO1))
1195         return false;
1196     }
1197     return true;
1198   }
1199
1200   return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
1201 }
1202
1203 /// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler to
1204 /// determine if two loads are loading from the same base address. It should
1205 /// only return true if the base pointers are the same and the only differences
1206 /// between the two addresses is the offset. It also returns the offsets by
1207 /// reference.
1208 bool ARMBaseInstrInfo::areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
1209                                                int64_t &Offset1,
1210                                                int64_t &Offset2) const {
1211   // Don't worry about Thumb: just ARM and Thumb2.
1212   if (Subtarget.isThumb1Only()) return false;
1213
1214   if (!Load1->isMachineOpcode() || !Load2->isMachineOpcode())
1215     return false;
1216
1217   switch (Load1->getMachineOpcode()) {
1218   default:
1219     return false;
1220   case ARM::LDRi12:
1221   case ARM::LDRBi12:
1222   case ARM::LDRD:
1223   case ARM::LDRH:
1224   case ARM::LDRSB:
1225   case ARM::LDRSH:
1226   case ARM::VLDRD:
1227   case ARM::VLDRS:
1228   case ARM::t2LDRi8:
1229   case ARM::t2LDRDi8:
1230   case ARM::t2LDRSHi8:
1231   case ARM::t2LDRi12:
1232   case ARM::t2LDRSHi12:
1233     break;
1234   }
1235
1236   switch (Load2->getMachineOpcode()) {
1237   default:
1238     return false;
1239   case ARM::LDRi12:
1240   case ARM::LDRBi12:
1241   case ARM::LDRD:
1242   case ARM::LDRH:
1243   case ARM::LDRSB:
1244   case ARM::LDRSH:
1245   case ARM::VLDRD:
1246   case ARM::VLDRS:
1247   case ARM::t2LDRi8:
1248   case ARM::t2LDRDi8:
1249   case ARM::t2LDRSHi8:
1250   case ARM::t2LDRi12:
1251   case ARM::t2LDRSHi12:
1252     break;
1253   }
1254
1255   // Check if base addresses and chain operands match.
1256   if (Load1->getOperand(0) != Load2->getOperand(0) ||
1257       Load1->getOperand(4) != Load2->getOperand(4))
1258     return false;
1259
1260   // Index should be Reg0.
1261   if (Load1->getOperand(3) != Load2->getOperand(3))
1262     return false;
1263
1264   // Determine the offsets.
1265   if (isa<ConstantSDNode>(Load1->getOperand(1)) &&
1266       isa<ConstantSDNode>(Load2->getOperand(1))) {
1267     Offset1 = cast<ConstantSDNode>(Load1->getOperand(1))->getSExtValue();
1268     Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue();
1269     return true;
1270   }
1271
1272   return false;
1273 }
1274
1275 /// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
1276 /// determine (in conjunction with areLoadsFromSameBasePtr) if two loads should
1277 /// be scheduled togther. On some targets if two loads are loading from
1278 /// addresses in the same cache line, it's better if they are scheduled
1279 /// together. This function takes two integers that represent the load offsets
1280 /// from the common base address. It returns true if it decides it's desirable
1281 /// to schedule the two loads together. "NumLoads" is the number of loads that
1282 /// have already been scheduled after Load1.
1283 bool ARMBaseInstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
1284                                                int64_t Offset1, int64_t Offset2,
1285                                                unsigned NumLoads) const {
1286   // Don't worry about Thumb: just ARM and Thumb2.
1287   if (Subtarget.isThumb1Only()) return false;
1288
1289   assert(Offset2 > Offset1);
1290
1291   if ((Offset2 - Offset1) / 8 > 64)
1292     return false;
1293
1294   if (Load1->getMachineOpcode() != Load2->getMachineOpcode())
1295     return false;  // FIXME: overly conservative?
1296
1297   // Four loads in a row should be sufficient.
1298   if (NumLoads >= 3)
1299     return false;
1300
1301   return true;
1302 }
1303
1304 bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr *MI,
1305                                             const MachineBasicBlock *MBB,
1306                                             const MachineFunction &MF) const {
1307   // Debug info is never a scheduling boundary. It's necessary to be explicit
1308   // due to the special treatment of IT instructions below, otherwise a
1309   // dbg_value followed by an IT will result in the IT instruction being
1310   // considered a scheduling hazard, which is wrong. It should be the actual
1311   // instruction preceding the dbg_value instruction(s), just like it is
1312   // when debug info is not present.
1313   if (MI->isDebugValue())
1314     return false;
1315
1316   // Terminators and labels can't be scheduled around.
1317   if (MI->getDesc().isTerminator() || MI->isLabel())
1318     return true;
1319
1320   // Treat the start of the IT block as a scheduling boundary, but schedule
1321   // t2IT along with all instructions following it.
1322   // FIXME: This is a big hammer. But the alternative is to add all potential
1323   // true and anti dependencies to IT block instructions as implicit operands
1324   // to the t2IT instruction. The added compile time and complexity does not
1325   // seem worth it.
1326   MachineBasicBlock::const_iterator I = MI;
1327   // Make sure to skip any dbg_value instructions
1328   while (++I != MBB->end() && I->isDebugValue())
1329     ;
1330   if (I != MBB->end() && I->getOpcode() == ARM::t2IT)
1331     return true;
1332
1333   // Don't attempt to schedule around any instruction that defines
1334   // a stack-oriented pointer, as it's unlikely to be profitable. This
1335   // saves compile time, because it doesn't require every single
1336   // stack slot reference to depend on the instruction that does the
1337   // modification.
1338   if (MI->definesRegister(ARM::SP))
1339     return true;
1340
1341   return false;
1342 }
1343
1344 bool ARMBaseInstrInfo::
1345 isProfitableToIfCvt(MachineBasicBlock &MBB,
1346                     unsigned NumCycles, unsigned ExtraPredCycles,
1347                     const BranchProbability &Probability) const {
1348   if (!NumCycles)
1349     return false;
1350
1351   // Attempt to estimate the relative costs of predication versus branching.
1352   unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1353   UnpredCost /= Probability.getDenominator();
1354   UnpredCost += 1; // The branch itself
1355   UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1356
1357   return (NumCycles + ExtraPredCycles) <= UnpredCost;
1358 }
1359
1360 bool ARMBaseInstrInfo::
1361 isProfitableToIfCvt(MachineBasicBlock &TMBB,
1362                     unsigned TCycles, unsigned TExtra,
1363                     MachineBasicBlock &FMBB,
1364                     unsigned FCycles, unsigned FExtra,
1365                     const BranchProbability &Probability) const {
1366   if (!TCycles || !FCycles)
1367     return false;
1368
1369   // Attempt to estimate the relative costs of predication versus branching.
1370   unsigned TUnpredCost = Probability.getNumerator() * TCycles;
1371   TUnpredCost /= Probability.getDenominator();
1372
1373   uint32_t Comp = Probability.getDenominator() - Probability.getNumerator();
1374   unsigned FUnpredCost = Comp * FCycles;
1375   FUnpredCost /= Probability.getDenominator();
1376
1377   unsigned UnpredCost = TUnpredCost + FUnpredCost;
1378   UnpredCost += 1; // The branch itself
1379   UnpredCost += Subtarget.getMispredictionPenalty() / 10;
1380
1381   return (TCycles + FCycles + TExtra + FExtra) <= UnpredCost;
1382 }
1383
1384 /// getInstrPredicate - If instruction is predicated, returns its predicate
1385 /// condition, otherwise returns AL. It also returns the condition code
1386 /// register by reference.
1387 ARMCC::CondCodes
1388 llvm::getInstrPredicate(const MachineInstr *MI, unsigned &PredReg) {
1389   int PIdx = MI->findFirstPredOperandIdx();
1390   if (PIdx == -1) {
1391     PredReg = 0;
1392     return ARMCC::AL;
1393   }
1394
1395   PredReg = MI->getOperand(PIdx+1).getReg();
1396   return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
1397 }
1398
1399
1400 int llvm::getMatchingCondBranchOpcode(int Opc) {
1401   if (Opc == ARM::B)
1402     return ARM::Bcc;
1403   else if (Opc == ARM::tB)
1404     return ARM::tBcc;
1405   else if (Opc == ARM::t2B)
1406       return ARM::t2Bcc;
1407
1408   llvm_unreachable("Unknown unconditional branch opcode!");
1409   return 0;
1410 }
1411
1412
1413 /// Map pseudo instructions that imply an 'S' bit onto real opcodes. Whether the
1414 /// instruction is encoded with an 'S' bit is determined by the optional CPSR
1415 /// def operand.
1416 ///
1417 /// This will go away once we can teach tblgen how to set the optional CPSR def
1418 /// operand itself.
1419 struct AddSubFlagsOpcodePair {
1420   unsigned PseudoOpc;
1421   unsigned MachineOpc;
1422 };
1423
1424 static AddSubFlagsOpcodePair AddSubFlagsOpcodeMap[] = {
1425   {ARM::ADDSri, ARM::ADDri},
1426   {ARM::ADDSrr, ARM::ADDrr},
1427   {ARM::ADDSrsi, ARM::ADDrsi},
1428   {ARM::ADDSrsr, ARM::ADDrsr},
1429
1430   {ARM::SUBSri, ARM::SUBri},
1431   {ARM::SUBSrr, ARM::SUBrr},
1432   {ARM::SUBSrsi, ARM::SUBrsi},
1433   {ARM::SUBSrsr, ARM::SUBrsr},
1434
1435   {ARM::RSBSri, ARM::RSBri},
1436   {ARM::RSBSrr, ARM::RSBrr},
1437   {ARM::RSBSrsi, ARM::RSBrsi},
1438   {ARM::RSBSrsr, ARM::RSBrsr},
1439
1440   {ARM::t2ADDSri, ARM::t2ADDri},
1441   {ARM::t2ADDSrr, ARM::t2ADDrr},
1442   {ARM::t2ADDSrs, ARM::t2ADDrs},
1443
1444   {ARM::t2SUBSri, ARM::t2SUBri},
1445   {ARM::t2SUBSrr, ARM::t2SUBrr},
1446   {ARM::t2SUBSrs, ARM::t2SUBrs},
1447
1448   {ARM::t2RSBSri, ARM::t2RSBri},
1449   {ARM::t2RSBSrs, ARM::t2RSBrs},
1450 };
1451
1452 unsigned llvm::convertAddSubFlagsOpcode(unsigned OldOpc) {
1453   static const int NPairs =
1454     sizeof(AddSubFlagsOpcodeMap) / sizeof(AddSubFlagsOpcodePair);
1455   for (AddSubFlagsOpcodePair *OpcPair = &AddSubFlagsOpcodeMap[0],
1456          *End = &AddSubFlagsOpcodeMap[NPairs]; OpcPair != End; ++OpcPair) {
1457     if (OldOpc == OpcPair->PseudoOpc) {
1458       return OpcPair->MachineOpc;
1459     }
1460   }
1461   return 0;
1462 }
1463
1464 void llvm::emitARMRegPlusImmediate(MachineBasicBlock &MBB,
1465                                MachineBasicBlock::iterator &MBBI, DebugLoc dl,
1466                                unsigned DestReg, unsigned BaseReg, int NumBytes,
1467                                ARMCC::CondCodes Pred, unsigned PredReg,
1468                                const ARMBaseInstrInfo &TII, unsigned MIFlags) {
1469   bool isSub = NumBytes < 0;
1470   if (isSub) NumBytes = -NumBytes;
1471
1472   while (NumBytes) {
1473     unsigned RotAmt = ARM_AM::getSOImmValRotate(NumBytes);
1474     unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt);
1475     assert(ThisVal && "Didn't extract field correctly");
1476
1477     // We will handle these bits from offset, clear them.
1478     NumBytes &= ~ThisVal;
1479
1480     assert(ARM_AM::getSOImmVal(ThisVal) != -1 && "Bit extraction didn't work?");
1481
1482     // Build the new ADD / SUB.
1483     unsigned Opc = isSub ? ARM::SUBri : ARM::ADDri;
1484     BuildMI(MBB, MBBI, dl, TII.get(Opc), DestReg)
1485       .addReg(BaseReg, RegState::Kill).addImm(ThisVal)
1486       .addImm((unsigned)Pred).addReg(PredReg).addReg(0)
1487       .setMIFlags(MIFlags);
1488     BaseReg = DestReg;
1489   }
1490 }
1491
1492 bool llvm::rewriteARMFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
1493                                 unsigned FrameReg, int &Offset,
1494                                 const ARMBaseInstrInfo &TII) {
1495   unsigned Opcode = MI.getOpcode();
1496   const MCInstrDesc &Desc = MI.getDesc();
1497   unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1498   bool isSub = false;
1499
1500   // Memory operands in inline assembly always use AddrMode2.
1501   if (Opcode == ARM::INLINEASM)
1502     AddrMode = ARMII::AddrMode2;
1503
1504   if (Opcode == ARM::ADDri) {
1505     Offset += MI.getOperand(FrameRegIdx+1).getImm();
1506     if (Offset == 0) {
1507       // Turn it into a move.
1508       MI.setDesc(TII.get(ARM::MOVr));
1509       MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1510       MI.RemoveOperand(FrameRegIdx+1);
1511       Offset = 0;
1512       return true;
1513     } else if (Offset < 0) {
1514       Offset = -Offset;
1515       isSub = true;
1516       MI.setDesc(TII.get(ARM::SUBri));
1517     }
1518
1519     // Common case: small offset, fits into instruction.
1520     if (ARM_AM::getSOImmVal(Offset) != -1) {
1521       // Replace the FrameIndex with sp / fp
1522       MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1523       MI.getOperand(FrameRegIdx+1).ChangeToImmediate(Offset);
1524       Offset = 0;
1525       return true;
1526     }
1527
1528     // Otherwise, pull as much of the immedidate into this ADDri/SUBri
1529     // as possible.
1530     unsigned RotAmt = ARM_AM::getSOImmValRotate(Offset);
1531     unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt);
1532
1533     // We will handle these bits from offset, clear them.
1534     Offset &= ~ThisImmVal;
1535
1536     // Get the properly encoded SOImmVal field.
1537     assert(ARM_AM::getSOImmVal(ThisImmVal) != -1 &&
1538            "Bit extraction didn't work?");
1539     MI.getOperand(FrameRegIdx+1).ChangeToImmediate(ThisImmVal);
1540  } else {
1541     unsigned ImmIdx = 0;
1542     int InstrOffs = 0;
1543     unsigned NumBits = 0;
1544     unsigned Scale = 1;
1545     switch (AddrMode) {
1546     case ARMII::AddrMode_i12: {
1547       ImmIdx = FrameRegIdx + 1;
1548       InstrOffs = MI.getOperand(ImmIdx).getImm();
1549       NumBits = 12;
1550       break;
1551     }
1552     case ARMII::AddrMode2: {
1553       ImmIdx = FrameRegIdx+2;
1554       InstrOffs = ARM_AM::getAM2Offset(MI.getOperand(ImmIdx).getImm());
1555       if (ARM_AM::getAM2Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1556         InstrOffs *= -1;
1557       NumBits = 12;
1558       break;
1559     }
1560     case ARMII::AddrMode3: {
1561       ImmIdx = FrameRegIdx+2;
1562       InstrOffs = ARM_AM::getAM3Offset(MI.getOperand(ImmIdx).getImm());
1563       if (ARM_AM::getAM3Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1564         InstrOffs *= -1;
1565       NumBits = 8;
1566       break;
1567     }
1568     case ARMII::AddrMode4:
1569     case ARMII::AddrMode6:
1570       // Can't fold any offset even if it's zero.
1571       return false;
1572     case ARMII::AddrMode5: {
1573       ImmIdx = FrameRegIdx+1;
1574       InstrOffs = ARM_AM::getAM5Offset(MI.getOperand(ImmIdx).getImm());
1575       if (ARM_AM::getAM5Op(MI.getOperand(ImmIdx).getImm()) == ARM_AM::sub)
1576         InstrOffs *= -1;
1577       NumBits = 8;
1578       Scale = 4;
1579       break;
1580     }
1581     default:
1582       llvm_unreachable("Unsupported addressing mode!");
1583       break;
1584     }
1585
1586     Offset += InstrOffs * Scale;
1587     assert((Offset & (Scale-1)) == 0 && "Can't encode this offset!");
1588     if (Offset < 0) {
1589       Offset = -Offset;
1590       isSub = true;
1591     }
1592
1593     // Attempt to fold address comp. if opcode has offset bits
1594     if (NumBits > 0) {
1595       // Common case: small offset, fits into instruction.
1596       MachineOperand &ImmOp = MI.getOperand(ImmIdx);
1597       int ImmedOffset = Offset / Scale;
1598       unsigned Mask = (1 << NumBits) - 1;
1599       if ((unsigned)Offset <= Mask * Scale) {
1600         // Replace the FrameIndex with sp
1601         MI.getOperand(FrameRegIdx).ChangeToRegister(FrameReg, false);
1602         // FIXME: When addrmode2 goes away, this will simplify (like the
1603         // T2 version), as the LDR.i12 versions don't need the encoding
1604         // tricks for the offset value.
1605         if (isSub) {
1606           if (AddrMode == ARMII::AddrMode_i12)
1607             ImmedOffset = -ImmedOffset;
1608           else
1609             ImmedOffset |= 1 << NumBits;
1610         }
1611         ImmOp.ChangeToImmediate(ImmedOffset);
1612         Offset = 0;
1613         return true;
1614       }
1615
1616       // Otherwise, it didn't fit. Pull in what we can to simplify the immed.
1617       ImmedOffset = ImmedOffset & Mask;
1618       if (isSub) {
1619         if (AddrMode == ARMII::AddrMode_i12)
1620           ImmedOffset = -ImmedOffset;
1621         else
1622           ImmedOffset |= 1 << NumBits;
1623       }
1624       ImmOp.ChangeToImmediate(ImmedOffset);
1625       Offset &= ~(Mask*Scale);
1626     }
1627   }
1628
1629   Offset = (isSub) ? -Offset : Offset;
1630   return Offset == 0;
1631 }
1632
1633 bool ARMBaseInstrInfo::
1634 AnalyzeCompare(const MachineInstr *MI, unsigned &SrcReg, int &CmpMask,
1635                int &CmpValue) const {
1636   switch (MI->getOpcode()) {
1637   default: break;
1638   case ARM::CMPri:
1639   case ARM::t2CMPri:
1640     SrcReg = MI->getOperand(0).getReg();
1641     CmpMask = ~0;
1642     CmpValue = MI->getOperand(1).getImm();
1643     return true;
1644   case ARM::TSTri:
1645   case ARM::t2TSTri:
1646     SrcReg = MI->getOperand(0).getReg();
1647     CmpMask = MI->getOperand(1).getImm();
1648     CmpValue = 0;
1649     return true;
1650   }
1651
1652   return false;
1653 }
1654
1655 /// isSuitableForMask - Identify a suitable 'and' instruction that
1656 /// operates on the given source register and applies the same mask
1657 /// as a 'tst' instruction. Provide a limited look-through for copies.
1658 /// When successful, MI will hold the found instruction.
1659 static bool isSuitableForMask(MachineInstr *&MI, unsigned SrcReg,
1660                               int CmpMask, bool CommonUse) {
1661   switch (MI->getOpcode()) {
1662     case ARM::ANDri:
1663     case ARM::t2ANDri:
1664       if (CmpMask != MI->getOperand(2).getImm())
1665         return false;
1666       if (SrcReg == MI->getOperand(CommonUse ? 1 : 0).getReg())
1667         return true;
1668       break;
1669     case ARM::COPY: {
1670       // Walk down one instruction which is potentially an 'and'.
1671       const MachineInstr &Copy = *MI;
1672       MachineBasicBlock::iterator AND(
1673         llvm::next(MachineBasicBlock::iterator(MI)));
1674       if (AND == MI->getParent()->end()) return false;
1675       MI = AND;
1676       return isSuitableForMask(MI, Copy.getOperand(0).getReg(),
1677                                CmpMask, true);
1678     }
1679   }
1680
1681   return false;
1682 }
1683
1684 /// OptimizeCompareInstr - Convert the instruction supplying the argument to the
1685 /// comparison into one that sets the zero bit in the flags register.
1686 bool ARMBaseInstrInfo::
1687 OptimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, int CmpMask,
1688                      int CmpValue, const MachineRegisterInfo *MRI) const {
1689   if (CmpValue != 0)
1690     return false;
1691
1692   MachineRegisterInfo::def_iterator DI = MRI->def_begin(SrcReg);
1693   if (llvm::next(DI) != MRI->def_end())
1694     // Only support one definition.
1695     return false;
1696
1697   MachineInstr *MI = &*DI;
1698
1699   // Masked compares sometimes use the same register as the corresponding 'and'.
1700   if (CmpMask != ~0) {
1701     if (!isSuitableForMask(MI, SrcReg, CmpMask, false)) {
1702       MI = 0;
1703       for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SrcReg),
1704            UE = MRI->use_end(); UI != UE; ++UI) {
1705         if (UI->getParent() != CmpInstr->getParent()) continue;
1706         MachineInstr *PotentialAND = &*UI;
1707         if (!isSuitableForMask(PotentialAND, SrcReg, CmpMask, true))
1708           continue;
1709         MI = PotentialAND;
1710         break;
1711       }
1712       if (!MI) return false;
1713     }
1714   }
1715
1716   // Conservatively refuse to convert an instruction which isn't in the same BB
1717   // as the comparison.
1718   if (MI->getParent() != CmpInstr->getParent())
1719     return false;
1720
1721   // Check that CPSR isn't set between the comparison instruction and the one we
1722   // want to change.
1723   MachineBasicBlock::const_iterator I = CmpInstr, E = MI,
1724     B = MI->getParent()->begin();
1725
1726   // Early exit if CmpInstr is at the beginning of the BB.
1727   if (I == B) return false;
1728
1729   --I;
1730   for (; I != E; --I) {
1731     const MachineInstr &Instr = *I;
1732
1733     for (unsigned IO = 0, EO = Instr.getNumOperands(); IO != EO; ++IO) {
1734       const MachineOperand &MO = Instr.getOperand(IO);
1735       if (!MO.isReg()) continue;
1736
1737       // This instruction modifies or uses CPSR after the one we want to
1738       // change. We can't do this transformation.
1739       if (MO.getReg() == ARM::CPSR)
1740         return false;
1741     }
1742
1743     if (I == B)
1744       // The 'and' is below the comparison instruction.
1745       return false;
1746   }
1747
1748   // Set the "zero" bit in CPSR.
1749   switch (MI->getOpcode()) {
1750   default: break;
1751   case ARM::RSBrr:
1752   case ARM::RSBri:
1753   case ARM::RSCrr:
1754   case ARM::RSCri:
1755   case ARM::ADDrr:
1756   case ARM::ADDri:
1757   case ARM::ADCrr:
1758   case ARM::ADCri:
1759   case ARM::SUBrr:
1760   case ARM::SUBri:
1761   case ARM::SBCrr:
1762   case ARM::SBCri:
1763   case ARM::t2RSBri:
1764   case ARM::t2ADDrr:
1765   case ARM::t2ADDri:
1766   case ARM::t2ADCrr:
1767   case ARM::t2ADCri:
1768   case ARM::t2SUBrr:
1769   case ARM::t2SUBri:
1770   case ARM::t2SBCrr:
1771   case ARM::t2SBCri:
1772   case ARM::ANDrr:
1773   case ARM::ANDri:
1774   case ARM::t2ANDrr:
1775   case ARM::t2ANDri:
1776   case ARM::ORRrr:
1777   case ARM::ORRri:
1778   case ARM::t2ORRrr:
1779   case ARM::t2ORRri:
1780   case ARM::EORrr:
1781   case ARM::EORri:
1782   case ARM::t2EORrr:
1783   case ARM::t2EORri: {
1784     // Scan forward for the use of CPSR, if it's a conditional code requires
1785     // checking of V bit, then this is not safe to do. If we can't find the
1786     // CPSR use (i.e. used in another block), then it's not safe to perform
1787     // the optimization.
1788     bool isSafe = false;
1789     I = CmpInstr;
1790     E = MI->getParent()->end();
1791     while (!isSafe && ++I != E) {
1792       const MachineInstr &Instr = *I;
1793       for (unsigned IO = 0, EO = Instr.getNumOperands();
1794            !isSafe && IO != EO; ++IO) {
1795         const MachineOperand &MO = Instr.getOperand(IO);
1796         if (!MO.isReg() || MO.getReg() != ARM::CPSR)
1797           continue;
1798         if (MO.isDef()) {
1799           isSafe = true;
1800           break;
1801         }
1802         // Condition code is after the operand before CPSR.
1803         ARMCC::CondCodes CC = (ARMCC::CondCodes)Instr.getOperand(IO-1).getImm();
1804         switch (CC) {
1805         default:
1806           isSafe = true;
1807           break;
1808         case ARMCC::VS:
1809         case ARMCC::VC:
1810         case ARMCC::GE:
1811         case ARMCC::LT:
1812         case ARMCC::GT:
1813         case ARMCC::LE:
1814           return false;
1815         }
1816       }
1817     }
1818
1819     if (!isSafe)
1820       return false;
1821
1822     // Toggle the optional operand to CPSR.
1823     MI->getOperand(5).setReg(ARM::CPSR);
1824     MI->getOperand(5).setIsDef(true);
1825     CmpInstr->eraseFromParent();
1826     return true;
1827   }
1828   }
1829
1830   return false;
1831 }
1832
1833 bool ARMBaseInstrInfo::FoldImmediate(MachineInstr *UseMI,
1834                                      MachineInstr *DefMI, unsigned Reg,
1835                                      MachineRegisterInfo *MRI) const {
1836   // Fold large immediates into add, sub, or, xor.
1837   unsigned DefOpc = DefMI->getOpcode();
1838   if (DefOpc != ARM::t2MOVi32imm && DefOpc != ARM::MOVi32imm)
1839     return false;
1840   if (!DefMI->getOperand(1).isImm())
1841     // Could be t2MOVi32imm <ga:xx>
1842     return false;
1843
1844   if (!MRI->hasOneNonDBGUse(Reg))
1845     return false;
1846
1847   unsigned UseOpc = UseMI->getOpcode();
1848   unsigned NewUseOpc = 0;
1849   uint32_t ImmVal = (uint32_t)DefMI->getOperand(1).getImm();
1850   uint32_t SOImmValV1 = 0, SOImmValV2 = 0;
1851   bool Commute = false;
1852   switch (UseOpc) {
1853   default: return false;
1854   case ARM::SUBrr:
1855   case ARM::ADDrr:
1856   case ARM::ORRrr:
1857   case ARM::EORrr:
1858   case ARM::t2SUBrr:
1859   case ARM::t2ADDrr:
1860   case ARM::t2ORRrr:
1861   case ARM::t2EORrr: {
1862     Commute = UseMI->getOperand(2).getReg() != Reg;
1863     switch (UseOpc) {
1864     default: break;
1865     case ARM::SUBrr: {
1866       if (Commute)
1867         return false;
1868       ImmVal = -ImmVal;
1869       NewUseOpc = ARM::SUBri;
1870       // Fallthrough
1871     }
1872     case ARM::ADDrr:
1873     case ARM::ORRrr:
1874     case ARM::EORrr: {
1875       if (!ARM_AM::isSOImmTwoPartVal(ImmVal))
1876         return false;
1877       SOImmValV1 = (uint32_t)ARM_AM::getSOImmTwoPartFirst(ImmVal);
1878       SOImmValV2 = (uint32_t)ARM_AM::getSOImmTwoPartSecond(ImmVal);
1879       switch (UseOpc) {
1880       default: break;
1881       case ARM::ADDrr: NewUseOpc = ARM::ADDri; break;
1882       case ARM::ORRrr: NewUseOpc = ARM::ORRri; break;
1883       case ARM::EORrr: NewUseOpc = ARM::EORri; break;
1884       }
1885       break;
1886     }
1887     case ARM::t2SUBrr: {
1888       if (Commute)
1889         return false;
1890       ImmVal = -ImmVal;
1891       NewUseOpc = ARM::t2SUBri;
1892       // Fallthrough
1893     }
1894     case ARM::t2ADDrr:
1895     case ARM::t2ORRrr:
1896     case ARM::t2EORrr: {
1897       if (!ARM_AM::isT2SOImmTwoPartVal(ImmVal))
1898         return false;
1899       SOImmValV1 = (uint32_t)ARM_AM::getT2SOImmTwoPartFirst(ImmVal);
1900       SOImmValV2 = (uint32_t)ARM_AM::getT2SOImmTwoPartSecond(ImmVal);
1901       switch (UseOpc) {
1902       default: break;
1903       case ARM::t2ADDrr: NewUseOpc = ARM::t2ADDri; break;
1904       case ARM::t2ORRrr: NewUseOpc = ARM::t2ORRri; break;
1905       case ARM::t2EORrr: NewUseOpc = ARM::t2EORri; break;
1906       }
1907       break;
1908     }
1909     }
1910   }
1911   }
1912
1913   unsigned OpIdx = Commute ? 2 : 1;
1914   unsigned Reg1 = UseMI->getOperand(OpIdx).getReg();
1915   bool isKill = UseMI->getOperand(OpIdx).isKill();
1916   unsigned NewReg = MRI->createVirtualRegister(MRI->getRegClass(Reg));
1917   AddDefaultCC(AddDefaultPred(BuildMI(*UseMI->getParent(),
1918                                       *UseMI, UseMI->getDebugLoc(),
1919                                       get(NewUseOpc), NewReg)
1920                               .addReg(Reg1, getKillRegState(isKill))
1921                               .addImm(SOImmValV1)));
1922   UseMI->setDesc(get(NewUseOpc));
1923   UseMI->getOperand(1).setReg(NewReg);
1924   UseMI->getOperand(1).setIsKill();
1925   UseMI->getOperand(2).ChangeToImmediate(SOImmValV2);
1926   DefMI->eraseFromParent();
1927   return true;
1928 }
1929
1930 unsigned
1931 ARMBaseInstrInfo::getNumMicroOps(const InstrItineraryData *ItinData,
1932                                  const MachineInstr *MI) const {
1933   if (!ItinData || ItinData->isEmpty())
1934     return 1;
1935
1936   const MCInstrDesc &Desc = MI->getDesc();
1937   unsigned Class = Desc.getSchedClass();
1938   unsigned UOps = ItinData->Itineraries[Class].NumMicroOps;
1939   if (UOps)
1940     return UOps;
1941
1942   unsigned Opc = MI->getOpcode();
1943   switch (Opc) {
1944   default:
1945     llvm_unreachable("Unexpected multi-uops instruction!");
1946     break;
1947   case ARM::VLDMQIA:
1948   case ARM::VSTMQIA:
1949     return 2;
1950
1951   // The number of uOps for load / store multiple are determined by the number
1952   // registers.
1953   //
1954   // On Cortex-A8, each pair of register loads / stores can be scheduled on the
1955   // same cycle. The scheduling for the first load / store must be done
1956   // separately by assuming the the address is not 64-bit aligned.
1957   //
1958   // On Cortex-A9, the formula is simply (#reg / 2) + (#reg % 2). If the address
1959   // is not 64-bit aligned, then AGU would take an extra cycle.  For VFP / NEON
1960   // load / store multiple, the formula is (#reg / 2) + (#reg % 2) + 1.
1961   case ARM::VLDMDIA:
1962   case ARM::VLDMDIA_UPD:
1963   case ARM::VLDMDDB_UPD:
1964   case ARM::VLDMSIA:
1965   case ARM::VLDMSIA_UPD:
1966   case ARM::VLDMSDB_UPD:
1967   case ARM::VSTMDIA:
1968   case ARM::VSTMDIA_UPD:
1969   case ARM::VSTMDDB_UPD:
1970   case ARM::VSTMSIA:
1971   case ARM::VSTMSIA_UPD:
1972   case ARM::VSTMSDB_UPD: {
1973     unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands();
1974     return (NumRegs / 2) + (NumRegs % 2) + 1;
1975   }
1976
1977   case ARM::LDMIA_RET:
1978   case ARM::LDMIA:
1979   case ARM::LDMDA:
1980   case ARM::LDMDB:
1981   case ARM::LDMIB:
1982   case ARM::LDMIA_UPD:
1983   case ARM::LDMDA_UPD:
1984   case ARM::LDMDB_UPD:
1985   case ARM::LDMIB_UPD:
1986   case ARM::STMIA:
1987   case ARM::STMDA:
1988   case ARM::STMDB:
1989   case ARM::STMIB:
1990   case ARM::STMIA_UPD:
1991   case ARM::STMDA_UPD:
1992   case ARM::STMDB_UPD:
1993   case ARM::STMIB_UPD:
1994   case ARM::tLDMIA:
1995   case ARM::tLDMIA_UPD:
1996   case ARM::tSTMIA_UPD:
1997   case ARM::tPOP_RET:
1998   case ARM::tPOP:
1999   case ARM::tPUSH:
2000   case ARM::t2LDMIA_RET:
2001   case ARM::t2LDMIA:
2002   case ARM::t2LDMDB:
2003   case ARM::t2LDMIA_UPD:
2004   case ARM::t2LDMDB_UPD:
2005   case ARM::t2STMIA:
2006   case ARM::t2STMDB:
2007   case ARM::t2STMIA_UPD:
2008   case ARM::t2STMDB_UPD: {
2009     unsigned NumRegs = MI->getNumOperands() - Desc.getNumOperands() + 1;
2010     if (Subtarget.isCortexA8()) {
2011       if (NumRegs < 4)
2012         return 2;
2013       // 4 registers would be issued: 2, 2.
2014       // 5 registers would be issued: 2, 2, 1.
2015       UOps = (NumRegs / 2);
2016       if (NumRegs % 2)
2017         ++UOps;
2018       return UOps;
2019     } else if (Subtarget.isCortexA9()) {
2020       UOps = (NumRegs / 2);
2021       // If there are odd number of registers or if it's not 64-bit aligned,
2022       // then it takes an extra AGU (Address Generation Unit) cycle.
2023       if ((NumRegs % 2) ||
2024           !MI->hasOneMemOperand() ||
2025           (*MI->memoperands_begin())->getAlignment() < 8)
2026         ++UOps;
2027       return UOps;
2028     } else {
2029       // Assume the worst.
2030       return NumRegs;
2031     }
2032   }
2033   }
2034 }
2035
2036 int
2037 ARMBaseInstrInfo::getVLDMDefCycle(const InstrItineraryData *ItinData,
2038                                   const MCInstrDesc &DefMCID,
2039                                   unsigned DefClass,
2040                                   unsigned DefIdx, unsigned DefAlign) const {
2041   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
2042   if (RegNo <= 0)
2043     // Def is the address writeback.
2044     return ItinData->getOperandCycle(DefClass, DefIdx);
2045
2046   int DefCycle;
2047   if (Subtarget.isCortexA8()) {
2048     // (regno / 2) + (regno % 2) + 1
2049     DefCycle = RegNo / 2 + 1;
2050     if (RegNo % 2)
2051       ++DefCycle;
2052   } else if (Subtarget.isCortexA9()) {
2053     DefCycle = RegNo;
2054     bool isSLoad = false;
2055
2056     switch (DefMCID.getOpcode()) {
2057     default: break;
2058     case ARM::VLDMSIA:
2059     case ARM::VLDMSIA_UPD:
2060     case ARM::VLDMSDB_UPD:
2061       isSLoad = true;
2062       break;
2063     }
2064
2065     // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2066     // then it takes an extra cycle.
2067     if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2068       ++DefCycle;
2069   } else {
2070     // Assume the worst.
2071     DefCycle = RegNo + 2;
2072   }
2073
2074   return DefCycle;
2075 }
2076
2077 int
2078 ARMBaseInstrInfo::getLDMDefCycle(const InstrItineraryData *ItinData,
2079                                  const MCInstrDesc &DefMCID,
2080                                  unsigned DefClass,
2081                                  unsigned DefIdx, unsigned DefAlign) const {
2082   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
2083   if (RegNo <= 0)
2084     // Def is the address writeback.
2085     return ItinData->getOperandCycle(DefClass, DefIdx);
2086
2087   int DefCycle;
2088   if (Subtarget.isCortexA8()) {
2089     // 4 registers would be issued: 1, 2, 1.
2090     // 5 registers would be issued: 1, 2, 2.
2091     DefCycle = RegNo / 2;
2092     if (DefCycle < 1)
2093       DefCycle = 1;
2094     // Result latency is issue cycle + 2: E2.
2095     DefCycle += 2;
2096   } else if (Subtarget.isCortexA9()) {
2097     DefCycle = (RegNo / 2);
2098     // If there are odd number of registers or if it's not 64-bit aligned,
2099     // then it takes an extra AGU (Address Generation Unit) cycle.
2100     if ((RegNo % 2) || DefAlign < 8)
2101       ++DefCycle;
2102     // Result latency is AGU cycles + 2.
2103     DefCycle += 2;
2104   } else {
2105     // Assume the worst.
2106     DefCycle = RegNo + 2;
2107   }
2108
2109   return DefCycle;
2110 }
2111
2112 int
2113 ARMBaseInstrInfo::getVSTMUseCycle(const InstrItineraryData *ItinData,
2114                                   const MCInstrDesc &UseMCID,
2115                                   unsigned UseClass,
2116                                   unsigned UseIdx, unsigned UseAlign) const {
2117   int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
2118   if (RegNo <= 0)
2119     return ItinData->getOperandCycle(UseClass, UseIdx);
2120
2121   int UseCycle;
2122   if (Subtarget.isCortexA8()) {
2123     // (regno / 2) + (regno % 2) + 1
2124     UseCycle = RegNo / 2 + 1;
2125     if (RegNo % 2)
2126       ++UseCycle;
2127   } else if (Subtarget.isCortexA9()) {
2128     UseCycle = RegNo;
2129     bool isSStore = false;
2130
2131     switch (UseMCID.getOpcode()) {
2132     default: break;
2133     case ARM::VSTMSIA:
2134     case ARM::VSTMSIA_UPD:
2135     case ARM::VSTMSDB_UPD:
2136       isSStore = true;
2137       break;
2138     }
2139
2140     // If there are odd number of 'S' registers or if it's not 64-bit aligned,
2141     // then it takes an extra cycle.
2142     if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2143       ++UseCycle;
2144   } else {
2145     // Assume the worst.
2146     UseCycle = RegNo + 2;
2147   }
2148
2149   return UseCycle;
2150 }
2151
2152 int
2153 ARMBaseInstrInfo::getSTMUseCycle(const InstrItineraryData *ItinData,
2154                                  const MCInstrDesc &UseMCID,
2155                                  unsigned UseClass,
2156                                  unsigned UseIdx, unsigned UseAlign) const {
2157   int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
2158   if (RegNo <= 0)
2159     return ItinData->getOperandCycle(UseClass, UseIdx);
2160
2161   int UseCycle;
2162   if (Subtarget.isCortexA8()) {
2163     UseCycle = RegNo / 2;
2164     if (UseCycle < 2)
2165       UseCycle = 2;
2166     // Read in E3.
2167     UseCycle += 2;
2168   } else if (Subtarget.isCortexA9()) {
2169     UseCycle = (RegNo / 2);
2170     // If there are odd number of registers or if it's not 64-bit aligned,
2171     // then it takes an extra AGU (Address Generation Unit) cycle.
2172     if ((RegNo % 2) || UseAlign < 8)
2173       ++UseCycle;
2174   } else {
2175     // Assume the worst.
2176     UseCycle = 1;
2177   }
2178   return UseCycle;
2179 }
2180
2181 int
2182 ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2183                                     const MCInstrDesc &DefMCID,
2184                                     unsigned DefIdx, unsigned DefAlign,
2185                                     const MCInstrDesc &UseMCID,
2186                                     unsigned UseIdx, unsigned UseAlign) const {
2187   unsigned DefClass = DefMCID.getSchedClass();
2188   unsigned UseClass = UseMCID.getSchedClass();
2189
2190   if (DefIdx < DefMCID.getNumDefs() && UseIdx < UseMCID.getNumOperands())
2191     return ItinData->getOperandLatency(DefClass, DefIdx, UseClass, UseIdx);
2192
2193   // This may be a def / use of a variable_ops instruction, the operand
2194   // latency might be determinable dynamically. Let the target try to
2195   // figure it out.
2196   int DefCycle = -1;
2197   bool LdmBypass = false;
2198   switch (DefMCID.getOpcode()) {
2199   default:
2200     DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2201     break;
2202
2203   case ARM::VLDMDIA:
2204   case ARM::VLDMDIA_UPD:
2205   case ARM::VLDMDDB_UPD:
2206   case ARM::VLDMSIA:
2207   case ARM::VLDMSIA_UPD:
2208   case ARM::VLDMSDB_UPD:
2209     DefCycle = getVLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
2210     break;
2211
2212   case ARM::LDMIA_RET:
2213   case ARM::LDMIA:
2214   case ARM::LDMDA:
2215   case ARM::LDMDB:
2216   case ARM::LDMIB:
2217   case ARM::LDMIA_UPD:
2218   case ARM::LDMDA_UPD:
2219   case ARM::LDMDB_UPD:
2220   case ARM::LDMIB_UPD:
2221   case ARM::tLDMIA:
2222   case ARM::tLDMIA_UPD:
2223   case ARM::tPUSH:
2224   case ARM::t2LDMIA_RET:
2225   case ARM::t2LDMIA:
2226   case ARM::t2LDMDB:
2227   case ARM::t2LDMIA_UPD:
2228   case ARM::t2LDMDB_UPD:
2229     LdmBypass = 1;
2230     DefCycle = getLDMDefCycle(ItinData, DefMCID, DefClass, DefIdx, DefAlign);
2231     break;
2232   }
2233
2234   if (DefCycle == -1)
2235     // We can't seem to determine the result latency of the def, assume it's 2.
2236     DefCycle = 2;
2237
2238   int UseCycle = -1;
2239   switch (UseMCID.getOpcode()) {
2240   default:
2241     UseCycle = ItinData->getOperandCycle(UseClass, UseIdx);
2242     break;
2243
2244   case ARM::VSTMDIA:
2245   case ARM::VSTMDIA_UPD:
2246   case ARM::VSTMDDB_UPD:
2247   case ARM::VSTMSIA:
2248   case ARM::VSTMSIA_UPD:
2249   case ARM::VSTMSDB_UPD:
2250     UseCycle = getVSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
2251     break;
2252
2253   case ARM::STMIA:
2254   case ARM::STMDA:
2255   case ARM::STMDB:
2256   case ARM::STMIB:
2257   case ARM::STMIA_UPD:
2258   case ARM::STMDA_UPD:
2259   case ARM::STMDB_UPD:
2260   case ARM::STMIB_UPD:
2261   case ARM::tSTMIA_UPD:
2262   case ARM::tPOP_RET:
2263   case ARM::tPOP:
2264   case ARM::t2STMIA:
2265   case ARM::t2STMDB:
2266   case ARM::t2STMIA_UPD:
2267   case ARM::t2STMDB_UPD:
2268     UseCycle = getSTMUseCycle(ItinData, UseMCID, UseClass, UseIdx, UseAlign);
2269     break;
2270   }
2271
2272   if (UseCycle == -1)
2273     // Assume it's read in the first stage.
2274     UseCycle = 1;
2275
2276   UseCycle = DefCycle - UseCycle + 1;
2277   if (UseCycle > 0) {
2278     if (LdmBypass) {
2279       // It's a variable_ops instruction so we can't use DefIdx here. Just use
2280       // first def operand.
2281       if (ItinData->hasPipelineForwarding(DefClass, DefMCID.getNumOperands()-1,
2282                                           UseClass, UseIdx))
2283         --UseCycle;
2284     } else if (ItinData->hasPipelineForwarding(DefClass, DefIdx,
2285                                                UseClass, UseIdx)) {
2286       --UseCycle;
2287     }
2288   }
2289
2290   return UseCycle;
2291 }
2292
2293 int
2294 ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2295                              const MachineInstr *DefMI, unsigned DefIdx,
2296                              const MachineInstr *UseMI, unsigned UseIdx) const {
2297   if (DefMI->isCopyLike() || DefMI->isInsertSubreg() ||
2298       DefMI->isRegSequence() || DefMI->isImplicitDef())
2299     return 1;
2300
2301   const MCInstrDesc &DefMCID = DefMI->getDesc();
2302   if (!ItinData || ItinData->isEmpty())
2303     return DefMCID.mayLoad() ? 3 : 1;
2304
2305   const MCInstrDesc &UseMCID = UseMI->getDesc();
2306   const MachineOperand &DefMO = DefMI->getOperand(DefIdx);
2307   if (DefMO.getReg() == ARM::CPSR) {
2308     if (DefMI->getOpcode() == ARM::FMSTAT) {
2309       // fpscr -> cpsr stalls over 20 cycles on A8 (and earlier?)
2310       return Subtarget.isCortexA9() ? 1 : 20;
2311     }
2312
2313     // CPSR set and branch can be paired in the same cycle.
2314     if (UseMCID.isBranch())
2315       return 0;
2316   }
2317
2318   unsigned DefAlign = DefMI->hasOneMemOperand()
2319     ? (*DefMI->memoperands_begin())->getAlignment() : 0;
2320   unsigned UseAlign = UseMI->hasOneMemOperand()
2321     ? (*UseMI->memoperands_begin())->getAlignment() : 0;
2322   int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
2323                                   UseMCID, UseIdx, UseAlign);
2324
2325   if (Latency > 1 &&
2326       (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2327     // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2328     // variants are one cycle cheaper.
2329     switch (DefMCID.getOpcode()) {
2330     default: break;
2331     case ARM::LDRrs:
2332     case ARM::LDRBrs: {
2333       unsigned ShOpVal = DefMI->getOperand(3).getImm();
2334       unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2335       if (ShImm == 0 ||
2336           (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2337         --Latency;
2338       break;
2339     }
2340     case ARM::t2LDRs:
2341     case ARM::t2LDRBs:
2342     case ARM::t2LDRHs:
2343     case ARM::t2LDRSHs: {
2344       // Thumb2 mode: lsl only.
2345       unsigned ShAmt = DefMI->getOperand(3).getImm();
2346       if (ShAmt == 0 || ShAmt == 2)
2347         --Latency;
2348       break;
2349     }
2350     }
2351   }
2352
2353   if (DefAlign < 8 && Subtarget.isCortexA9())
2354     switch (DefMCID.getOpcode()) {
2355     default: break;
2356     case ARM::VLD1q8:
2357     case ARM::VLD1q16:
2358     case ARM::VLD1q32:
2359     case ARM::VLD1q64:
2360     case ARM::VLD1q8_UPD:
2361     case ARM::VLD1q16_UPD:
2362     case ARM::VLD1q32_UPD:
2363     case ARM::VLD1q64_UPD:
2364     case ARM::VLD2d8:
2365     case ARM::VLD2d16:
2366     case ARM::VLD2d32:
2367     case ARM::VLD2q8:
2368     case ARM::VLD2q16:
2369     case ARM::VLD2q32:
2370     case ARM::VLD2d8_UPD:
2371     case ARM::VLD2d16_UPD:
2372     case ARM::VLD2d32_UPD:
2373     case ARM::VLD2q8_UPD:
2374     case ARM::VLD2q16_UPD:
2375     case ARM::VLD2q32_UPD:
2376     case ARM::VLD3d8:
2377     case ARM::VLD3d16:
2378     case ARM::VLD3d32:
2379     case ARM::VLD1d64T:
2380     case ARM::VLD3d8_UPD:
2381     case ARM::VLD3d16_UPD:
2382     case ARM::VLD3d32_UPD:
2383     case ARM::VLD1d64T_UPD:
2384     case ARM::VLD3q8_UPD:
2385     case ARM::VLD3q16_UPD:
2386     case ARM::VLD3q32_UPD:
2387     case ARM::VLD4d8:
2388     case ARM::VLD4d16:
2389     case ARM::VLD4d32:
2390     case ARM::VLD1d64Q:
2391     case ARM::VLD4d8_UPD:
2392     case ARM::VLD4d16_UPD:
2393     case ARM::VLD4d32_UPD:
2394     case ARM::VLD1d64Q_UPD:
2395     case ARM::VLD4q8_UPD:
2396     case ARM::VLD4q16_UPD:
2397     case ARM::VLD4q32_UPD:
2398     case ARM::VLD1DUPq8:
2399     case ARM::VLD1DUPq16:
2400     case ARM::VLD1DUPq32:
2401     case ARM::VLD1DUPq8_UPD:
2402     case ARM::VLD1DUPq16_UPD:
2403     case ARM::VLD1DUPq32_UPD:
2404     case ARM::VLD2DUPd8:
2405     case ARM::VLD2DUPd16:
2406     case ARM::VLD2DUPd32:
2407     case ARM::VLD2DUPd8_UPD:
2408     case ARM::VLD2DUPd16_UPD:
2409     case ARM::VLD2DUPd32_UPD:
2410     case ARM::VLD4DUPd8:
2411     case ARM::VLD4DUPd16:
2412     case ARM::VLD4DUPd32:
2413     case ARM::VLD4DUPd8_UPD:
2414     case ARM::VLD4DUPd16_UPD:
2415     case ARM::VLD4DUPd32_UPD:
2416     case ARM::VLD1LNd8:
2417     case ARM::VLD1LNd16:
2418     case ARM::VLD1LNd32:
2419     case ARM::VLD1LNd8_UPD:
2420     case ARM::VLD1LNd16_UPD:
2421     case ARM::VLD1LNd32_UPD:
2422     case ARM::VLD2LNd8:
2423     case ARM::VLD2LNd16:
2424     case ARM::VLD2LNd32:
2425     case ARM::VLD2LNq16:
2426     case ARM::VLD2LNq32:
2427     case ARM::VLD2LNd8_UPD:
2428     case ARM::VLD2LNd16_UPD:
2429     case ARM::VLD2LNd32_UPD:
2430     case ARM::VLD2LNq16_UPD:
2431     case ARM::VLD2LNq32_UPD:
2432     case ARM::VLD4LNd8:
2433     case ARM::VLD4LNd16:
2434     case ARM::VLD4LNd32:
2435     case ARM::VLD4LNq16:
2436     case ARM::VLD4LNq32:
2437     case ARM::VLD4LNd8_UPD:
2438     case ARM::VLD4LNd16_UPD:
2439     case ARM::VLD4LNd32_UPD:
2440     case ARM::VLD4LNq16_UPD:
2441     case ARM::VLD4LNq32_UPD:
2442       // If the address is not 64-bit aligned, the latencies of these
2443       // instructions increases by one.
2444       ++Latency;
2445       break;
2446     }
2447
2448   return Latency;
2449 }
2450
2451 int
2452 ARMBaseInstrInfo::getOperandLatency(const InstrItineraryData *ItinData,
2453                                     SDNode *DefNode, unsigned DefIdx,
2454                                     SDNode *UseNode, unsigned UseIdx) const {
2455   if (!DefNode->isMachineOpcode())
2456     return 1;
2457
2458   const MCInstrDesc &DefMCID = get(DefNode->getMachineOpcode());
2459
2460   if (isZeroCost(DefMCID.Opcode))
2461     return 0;
2462
2463   if (!ItinData || ItinData->isEmpty())
2464     return DefMCID.mayLoad() ? 3 : 1;
2465
2466   if (!UseNode->isMachineOpcode()) {
2467     int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx);
2468     if (Subtarget.isCortexA9())
2469       return Latency <= 2 ? 1 : Latency - 1;
2470     else
2471       return Latency <= 3 ? 1 : Latency - 2;
2472   }
2473
2474   const MCInstrDesc &UseMCID = get(UseNode->getMachineOpcode());
2475   const MachineSDNode *DefMN = dyn_cast<MachineSDNode>(DefNode);
2476   unsigned DefAlign = !DefMN->memoperands_empty()
2477     ? (*DefMN->memoperands_begin())->getAlignment() : 0;
2478   const MachineSDNode *UseMN = dyn_cast<MachineSDNode>(UseNode);
2479   unsigned UseAlign = !UseMN->memoperands_empty()
2480     ? (*UseMN->memoperands_begin())->getAlignment() : 0;
2481   int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign,
2482                                   UseMCID, UseIdx, UseAlign);
2483
2484   if (Latency > 1 &&
2485       (Subtarget.isCortexA8() || Subtarget.isCortexA9())) {
2486     // FIXME: Shifter op hack: no shift (i.e. [r +/- r]) or [r + r << 2]
2487     // variants are one cycle cheaper.
2488     switch (DefMCID.getOpcode()) {
2489     default: break;
2490     case ARM::LDRrs:
2491     case ARM::LDRBrs: {
2492       unsigned ShOpVal =
2493         cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2494       unsigned ShImm = ARM_AM::getAM2Offset(ShOpVal);
2495       if (ShImm == 0 ||
2496           (ShImm == 2 && ARM_AM::getAM2ShiftOpc(ShOpVal) == ARM_AM::lsl))
2497         --Latency;
2498       break;
2499     }
2500     case ARM::t2LDRs:
2501     case ARM::t2LDRBs:
2502     case ARM::t2LDRHs:
2503     case ARM::t2LDRSHs: {
2504       // Thumb2 mode: lsl only.
2505       unsigned ShAmt =
2506         cast<ConstantSDNode>(DefNode->getOperand(2))->getZExtValue();
2507       if (ShAmt == 0 || ShAmt == 2)
2508         --Latency;
2509       break;
2510     }
2511     }
2512   }
2513
2514   if (DefAlign < 8 && Subtarget.isCortexA9())
2515     switch (DefMCID.getOpcode()) {
2516     default: break;
2517     case ARM::VLD1q8Pseudo:
2518     case ARM::VLD1q16Pseudo:
2519     case ARM::VLD1q32Pseudo:
2520     case ARM::VLD1q64Pseudo:
2521     case ARM::VLD1q8Pseudo_UPD:
2522     case ARM::VLD1q16Pseudo_UPD:
2523     case ARM::VLD1q32Pseudo_UPD:
2524     case ARM::VLD1q64Pseudo_UPD:
2525     case ARM::VLD2d8Pseudo:
2526     case ARM::VLD2d16Pseudo:
2527     case ARM::VLD2d32Pseudo:
2528     case ARM::VLD2q8Pseudo:
2529     case ARM::VLD2q16Pseudo:
2530     case ARM::VLD2q32Pseudo:
2531     case ARM::VLD2d8Pseudo_UPD:
2532     case ARM::VLD2d16Pseudo_UPD:
2533     case ARM::VLD2d32Pseudo_UPD:
2534     case ARM::VLD2q8Pseudo_UPD:
2535     case ARM::VLD2q16Pseudo_UPD:
2536     case ARM::VLD2q32Pseudo_UPD:
2537     case ARM::VLD3d8Pseudo:
2538     case ARM::VLD3d16Pseudo:
2539     case ARM::VLD3d32Pseudo:
2540     case ARM::VLD1d64TPseudo:
2541     case ARM::VLD3d8Pseudo_UPD:
2542     case ARM::VLD3d16Pseudo_UPD:
2543     case ARM::VLD3d32Pseudo_UPD:
2544     case ARM::VLD1d64TPseudo_UPD:
2545     case ARM::VLD3q8Pseudo_UPD:
2546     case ARM::VLD3q16Pseudo_UPD:
2547     case ARM::VLD3q32Pseudo_UPD:
2548     case ARM::VLD3q8oddPseudo:
2549     case ARM::VLD3q16oddPseudo:
2550     case ARM::VLD3q32oddPseudo:
2551     case ARM::VLD3q8oddPseudo_UPD:
2552     case ARM::VLD3q16oddPseudo_UPD:
2553     case ARM::VLD3q32oddPseudo_UPD:
2554     case ARM::VLD4d8Pseudo:
2555     case ARM::VLD4d16Pseudo:
2556     case ARM::VLD4d32Pseudo:
2557     case ARM::VLD1d64QPseudo:
2558     case ARM::VLD4d8Pseudo_UPD:
2559     case ARM::VLD4d16Pseudo_UPD:
2560     case ARM::VLD4d32Pseudo_UPD:
2561     case ARM::VLD1d64QPseudo_UPD:
2562     case ARM::VLD4q8Pseudo_UPD:
2563     case ARM::VLD4q16Pseudo_UPD:
2564     case ARM::VLD4q32Pseudo_UPD:
2565     case ARM::VLD4q8oddPseudo:
2566     case ARM::VLD4q16oddPseudo:
2567     case ARM::VLD4q32oddPseudo:
2568     case ARM::VLD4q8oddPseudo_UPD:
2569     case ARM::VLD4q16oddPseudo_UPD:
2570     case ARM::VLD4q32oddPseudo_UPD:
2571     case ARM::VLD1DUPq8Pseudo:
2572     case ARM::VLD1DUPq16Pseudo:
2573     case ARM::VLD1DUPq32Pseudo:
2574     case ARM::VLD1DUPq8Pseudo_UPD:
2575     case ARM::VLD1DUPq16Pseudo_UPD:
2576     case ARM::VLD1DUPq32Pseudo_UPD:
2577     case ARM::VLD2DUPd8Pseudo:
2578     case ARM::VLD2DUPd16Pseudo:
2579     case ARM::VLD2DUPd32Pseudo:
2580     case ARM::VLD2DUPd8Pseudo_UPD:
2581     case ARM::VLD2DUPd16Pseudo_UPD:
2582     case ARM::VLD2DUPd32Pseudo_UPD:
2583     case ARM::VLD4DUPd8Pseudo:
2584     case ARM::VLD4DUPd16Pseudo:
2585     case ARM::VLD4DUPd32Pseudo:
2586     case ARM::VLD4DUPd8Pseudo_UPD:
2587     case ARM::VLD4DUPd16Pseudo_UPD:
2588     case ARM::VLD4DUPd32Pseudo_UPD:
2589     case ARM::VLD1LNq8Pseudo:
2590     case ARM::VLD1LNq16Pseudo:
2591     case ARM::VLD1LNq32Pseudo:
2592     case ARM::VLD1LNq8Pseudo_UPD:
2593     case ARM::VLD1LNq16Pseudo_UPD:
2594     case ARM::VLD1LNq32Pseudo_UPD:
2595     case ARM::VLD2LNd8Pseudo:
2596     case ARM::VLD2LNd16Pseudo:
2597     case ARM::VLD2LNd32Pseudo:
2598     case ARM::VLD2LNq16Pseudo:
2599     case ARM::VLD2LNq32Pseudo:
2600     case ARM::VLD2LNd8Pseudo_UPD:
2601     case ARM::VLD2LNd16Pseudo_UPD:
2602     case ARM::VLD2LNd32Pseudo_UPD:
2603     case ARM::VLD2LNq16Pseudo_UPD:
2604     case ARM::VLD2LNq32Pseudo_UPD:
2605     case ARM::VLD4LNd8Pseudo:
2606     case ARM::VLD4LNd16Pseudo:
2607     case ARM::VLD4LNd32Pseudo:
2608     case ARM::VLD4LNq16Pseudo:
2609     case ARM::VLD4LNq32Pseudo:
2610     case ARM::VLD4LNd8Pseudo_UPD:
2611     case ARM::VLD4LNd16Pseudo_UPD:
2612     case ARM::VLD4LNd32Pseudo_UPD:
2613     case ARM::VLD4LNq16Pseudo_UPD:
2614     case ARM::VLD4LNq32Pseudo_UPD:
2615       // If the address is not 64-bit aligned, the latencies of these
2616       // instructions increases by one.
2617       ++Latency;
2618       break;
2619     }
2620
2621   return Latency;
2622 }
2623
2624 int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
2625                                       const MachineInstr *MI,
2626                                       unsigned *PredCost) const {
2627   if (MI->isCopyLike() || MI->isInsertSubreg() ||
2628       MI->isRegSequence() || MI->isImplicitDef())
2629     return 1;
2630
2631   if (!ItinData || ItinData->isEmpty())
2632     return 1;
2633
2634   const MCInstrDesc &MCID = MI->getDesc();
2635   unsigned Class = MCID.getSchedClass();
2636   unsigned UOps = ItinData->Itineraries[Class].NumMicroOps;
2637   if (PredCost && MCID.hasImplicitDefOfPhysReg(ARM::CPSR))
2638     // When predicated, CPSR is an additional source operand for CPSR updating
2639     // instructions, this apparently increases their latencies.
2640     *PredCost = 1;
2641   if (UOps)
2642     return ItinData->getStageLatency(Class);
2643   return getNumMicroOps(ItinData, MI);
2644 }
2645
2646 int ARMBaseInstrInfo::getInstrLatency(const InstrItineraryData *ItinData,
2647                                       SDNode *Node) const {
2648   if (!Node->isMachineOpcode())
2649     return 1;
2650
2651   if (!ItinData || ItinData->isEmpty())
2652     return 1;
2653
2654   unsigned Opcode = Node->getMachineOpcode();
2655   switch (Opcode) {
2656   default:
2657     return ItinData->getStageLatency(get(Opcode).getSchedClass());
2658   case ARM::VLDMQIA:
2659   case ARM::VSTMQIA:
2660     return 2;
2661   }
2662 }
2663
2664 bool ARMBaseInstrInfo::
2665 hasHighOperandLatency(const InstrItineraryData *ItinData,
2666                       const MachineRegisterInfo *MRI,
2667                       const MachineInstr *DefMI, unsigned DefIdx,
2668                       const MachineInstr *UseMI, unsigned UseIdx) const {
2669   unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
2670   unsigned UDomain = UseMI->getDesc().TSFlags & ARMII::DomainMask;
2671   if (Subtarget.isCortexA8() &&
2672       (DDomain == ARMII::DomainVFP || UDomain == ARMII::DomainVFP))
2673     // CortexA8 VFP instructions are not pipelined.
2674     return true;
2675
2676   // Hoist VFP / NEON instructions with 4 or higher latency.
2677   int Latency = getOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx);
2678   if (Latency <= 3)
2679     return false;
2680   return DDomain == ARMII::DomainVFP || DDomain == ARMII::DomainNEON ||
2681          UDomain == ARMII::DomainVFP || UDomain == ARMII::DomainNEON;
2682 }
2683
2684 bool ARMBaseInstrInfo::
2685 hasLowDefLatency(const InstrItineraryData *ItinData,
2686                  const MachineInstr *DefMI, unsigned DefIdx) const {
2687   if (!ItinData || ItinData->isEmpty())
2688     return false;
2689
2690   unsigned DDomain = DefMI->getDesc().TSFlags & ARMII::DomainMask;
2691   if (DDomain == ARMII::DomainGeneral) {
2692     unsigned DefClass = DefMI->getDesc().getSchedClass();
2693     int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx);
2694     return (DefCycle != -1 && DefCycle <= 2);
2695   }
2696   return false;
2697 }
2698
2699 bool ARMBaseInstrInfo::verifyInstruction(const MachineInstr *MI,
2700                                          StringRef &ErrInfo) const {
2701   if (convertAddSubFlagsOpcode(MI->getOpcode())) {
2702     ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG";
2703     return false;
2704   }
2705   return true;
2706 }
2707
2708 bool
2709 ARMBaseInstrInfo::isFpMLxInstruction(unsigned Opcode, unsigned &MulOpc,
2710                                      unsigned &AddSubOpc,
2711                                      bool &NegAcc, bool &HasLane) const {
2712   DenseMap<unsigned, unsigned>::const_iterator I = MLxEntryMap.find(Opcode);
2713   if (I == MLxEntryMap.end())
2714     return false;
2715
2716   const ARM_MLxEntry &Entry = ARM_MLxTable[I->second];
2717   MulOpc = Entry.MulOpc;
2718   AddSubOpc = Entry.AddSubOpc;
2719   NegAcc = Entry.NegAcc;
2720   HasLane = Entry.HasLane;
2721   return true;
2722 }