This patch fixes a problem which arose when using the Post-RA scheduler
[oota-llvm.git] / lib / Target / ARM / ARMBaseRegisterInfo.cpp
1 //===-- ARMBaseRegisterInfo.cpp - ARM Register Information ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the base ARM implementation of TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMBaseRegisterInfo.h"
15 #include "ARM.h"
16 #include "ARMBaseInstrInfo.h"
17 #include "ARMFrameLowering.h"
18 #include "ARMMachineFunctionInfo.h"
19 #include "ARMSubtarget.h"
20 #include "MCTargetDesc/ARMAddressingModes.h"
21 #include "llvm/Constants.h"
22 #include "llvm/DerivedTypes.h"
23 #include "llvm/Function.h"
24 #include "llvm/LLVMContext.h"
25 #include "llvm/CodeGen/MachineConstantPool.h"
26 #include "llvm/CodeGen/MachineFrameInfo.h"
27 #include "llvm/CodeGen/MachineFunction.h"
28 #include "llvm/CodeGen/MachineInstrBuilder.h"
29 #include "llvm/CodeGen/MachineRegisterInfo.h"
30 #include "llvm/CodeGen/RegisterScavenging.h"
31 #include "llvm/Support/Debug.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/raw_ostream.h"
34 #include "llvm/Target/TargetFrameLowering.h"
35 #include "llvm/Target/TargetMachine.h"
36 #include "llvm/Target/TargetOptions.h"
37 #include "llvm/ADT/BitVector.h"
38 #include "llvm/ADT/SmallVector.h"
39 #include "llvm/Support/CommandLine.h"
40
41 #define GET_REGINFO_TARGET_DESC
42 #include "ARMGenRegisterInfo.inc"
43
44 using namespace llvm;
45
46 static cl::opt<bool>
47 ForceAllBaseRegAlloc("arm-force-base-reg-alloc", cl::Hidden, cl::init(false),
48           cl::desc("Force use of virtual base registers for stack load/store"));
49 static cl::opt<bool>
50 EnableLocalStackAlloc("enable-local-stack-alloc", cl::init(true), cl::Hidden,
51           cl::desc("Enable pre-regalloc stack frame index allocation"));
52 static cl::opt<bool>
53 EnableBasePointer("arm-use-base-pointer", cl::Hidden, cl::init(true),
54           cl::desc("Enable use of a base pointer for complex stack frames"));
55
56 ARMBaseRegisterInfo::ARMBaseRegisterInfo(const ARMBaseInstrInfo &tii,
57                                          const ARMSubtarget &sti)
58   : ARMGenRegisterInfo(ARM::LR), TII(tii), STI(sti),
59     FramePtr((STI.isTargetDarwin() || STI.isThumb()) ? ARM::R7 : ARM::R11),
60     BasePtr(ARM::R6) {
61 }
62
63 const uint16_t*
64 ARMBaseRegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const {
65   return (STI.isTargetIOS()) ? CSR_iOS_SaveList : CSR_AAPCS_SaveList;
66 }
67
68 const uint32_t*
69 ARMBaseRegisterInfo::getCallPreservedMask(CallingConv::ID) const {
70   return (STI.isTargetIOS()) ? CSR_iOS_RegMask : CSR_AAPCS_RegMask;
71 }
72
73 BitVector ARMBaseRegisterInfo::
74 getReservedRegs(const MachineFunction &MF) const {
75   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
76
77   // FIXME: avoid re-calculating this every time.
78   BitVector Reserved(getNumRegs());
79   Reserved.set(ARM::SP);
80   Reserved.set(ARM::PC);
81   Reserved.set(ARM::FPSCR);
82   if (TFI->hasFP(MF))
83     Reserved.set(FramePtr);
84   if (hasBasePointer(MF))
85     Reserved.set(BasePtr);
86   // Some targets reserve R9.
87   if (STI.isR9Reserved())
88     Reserved.set(ARM::R9);
89   // Reserve D16-D31 if the subtarget doesn't support them.
90   if (!STI.hasVFP3() || STI.hasD16()) {
91     assert(ARM::D31 == ARM::D16 + 15);
92     for (unsigned i = 0; i != 16; ++i)
93       Reserved.set(ARM::D16 + i);
94   }
95   return Reserved;
96 }
97
98 bool ARMBaseRegisterInfo::isReservedReg(const MachineFunction &MF,
99                                         unsigned Reg) const {
100   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
101
102   switch (Reg) {
103   default: break;
104   case ARM::SP:
105   case ARM::PC:
106     return true;
107   case ARM::R6:
108     if (hasBasePointer(MF))
109       return true;
110     break;
111   case ARM::R7:
112   case ARM::R11:
113     if (FramePtr == Reg && TFI->hasFP(MF))
114       return true;
115     break;
116   case ARM::R9:
117     return STI.isR9Reserved();
118   }
119
120   return false;
121 }
122
123 bool
124 ARMBaseRegisterInfo::canCombineSubRegIndices(const TargetRegisterClass *RC,
125                                           SmallVectorImpl<unsigned> &SubIndices,
126                                           unsigned &NewSubIdx) const {
127
128   unsigned Size = RC->getSize() * 8;
129   if (Size < 6)
130     return 0;
131
132   NewSubIdx = 0;  // Whole register.
133   unsigned NumRegs = SubIndices.size();
134   if (NumRegs == 8) {
135     // 8 D registers -> 1 QQQQ register.
136     return (Size == 512 &&
137             SubIndices[0] == ARM::dsub_0 &&
138             SubIndices[1] == ARM::dsub_1 &&
139             SubIndices[2] == ARM::dsub_2 &&
140             SubIndices[3] == ARM::dsub_3 &&
141             SubIndices[4] == ARM::dsub_4 &&
142             SubIndices[5] == ARM::dsub_5 &&
143             SubIndices[6] == ARM::dsub_6 &&
144             SubIndices[7] == ARM::dsub_7);
145   } else if (NumRegs == 4) {
146     if (SubIndices[0] == ARM::qsub_0) {
147       // 4 Q registers -> 1 QQQQ register.
148       return (Size == 512 &&
149               SubIndices[1] == ARM::qsub_1 &&
150               SubIndices[2] == ARM::qsub_2 &&
151               SubIndices[3] == ARM::qsub_3);
152     } else if (SubIndices[0] == ARM::dsub_0) {
153       // 4 D registers -> 1 QQ register.
154       if (Size >= 256 &&
155           SubIndices[1] == ARM::dsub_1 &&
156           SubIndices[2] == ARM::dsub_2 &&
157           SubIndices[3] == ARM::dsub_3) {
158         if (Size == 512)
159           NewSubIdx = ARM::qqsub_0;
160         return true;
161       }
162     } else if (SubIndices[0] == ARM::dsub_4) {
163       // 4 D registers -> 1 QQ register (2nd).
164       if (Size == 512 &&
165           SubIndices[1] == ARM::dsub_5 &&
166           SubIndices[2] == ARM::dsub_6 &&
167           SubIndices[3] == ARM::dsub_7) {
168         NewSubIdx = ARM::qqsub_1;
169         return true;
170       }
171     } else if (SubIndices[0] == ARM::ssub_0) {
172       // 4 S registers -> 1 Q register.
173       if (Size >= 128 &&
174           SubIndices[1] == ARM::ssub_1 &&
175           SubIndices[2] == ARM::ssub_2 &&
176           SubIndices[3] == ARM::ssub_3) {
177         if (Size >= 256)
178           NewSubIdx = ARM::qsub_0;
179         return true;
180       }
181     }
182   } else if (NumRegs == 2) {
183     if (SubIndices[0] == ARM::qsub_0) {
184       // 2 Q registers -> 1 QQ register.
185       if (Size >= 256 && SubIndices[1] == ARM::qsub_1) {
186         if (Size == 512)
187           NewSubIdx = ARM::qqsub_0;
188         return true;
189       }
190     } else if (SubIndices[0] == ARM::qsub_2) {
191       // 2 Q registers -> 1 QQ register (2nd).
192       if (Size == 512 && SubIndices[1] == ARM::qsub_3) {
193         NewSubIdx = ARM::qqsub_1;
194         return true;
195       }
196     } else if (SubIndices[0] == ARM::dsub_0) {
197       // 2 D registers -> 1 Q register.
198       if (Size >= 128 && SubIndices[1] == ARM::dsub_1) {
199         if (Size >= 256)
200           NewSubIdx = ARM::qsub_0;
201         return true;
202       }
203     } else if (SubIndices[0] == ARM::dsub_2) {
204       // 2 D registers -> 1 Q register (2nd).
205       if (Size >= 256 && SubIndices[1] == ARM::dsub_3) {
206         NewSubIdx = ARM::qsub_1;
207         return true;
208       }
209     } else if (SubIndices[0] == ARM::dsub_4) {
210       // 2 D registers -> 1 Q register (3rd).
211       if (Size == 512 && SubIndices[1] == ARM::dsub_5) {
212         NewSubIdx = ARM::qsub_2;
213         return true;
214       }
215     } else if (SubIndices[0] == ARM::dsub_6) {
216       // 2 D registers -> 1 Q register (3rd).
217       if (Size == 512 && SubIndices[1] == ARM::dsub_7) {
218         NewSubIdx = ARM::qsub_3;
219         return true;
220       }
221     } else if (SubIndices[0] == ARM::ssub_0) {
222       // 2 S registers -> 1 D register.
223       if (SubIndices[1] == ARM::ssub_1) {
224         if (Size >= 128)
225           NewSubIdx = ARM::dsub_0;
226         return true;
227       }
228     } else if (SubIndices[0] == ARM::ssub_2) {
229       // 2 S registers -> 1 D register (2nd).
230       if (Size >= 128 && SubIndices[1] == ARM::ssub_3) {
231         NewSubIdx = ARM::dsub_1;
232         return true;
233       }
234     }
235   }
236   return false;
237 }
238
239 const TargetRegisterClass*
240 ARMBaseRegisterInfo::getLargestLegalSuperClass(const TargetRegisterClass *RC)
241                                                                          const {
242   const TargetRegisterClass *Super = RC;
243   TargetRegisterClass::sc_iterator I = RC->getSuperClasses();
244   do {
245     switch (Super->getID()) {
246     case ARM::GPRRegClassID:
247     case ARM::SPRRegClassID:
248     case ARM::DPRRegClassID:
249     case ARM::QPRRegClassID:
250     case ARM::QQPRRegClassID:
251     case ARM::QQQQPRRegClassID:
252       return Super;
253     }
254     Super = *I++;
255   } while (Super);
256   return RC;
257 }
258
259 const TargetRegisterClass *
260 ARMBaseRegisterInfo::getPointerRegClass(unsigned Kind) const {
261   return &ARM::GPRRegClass;
262 }
263
264 const TargetRegisterClass *
265 ARMBaseRegisterInfo::getCrossCopyRegClass(const TargetRegisterClass *RC) const {
266   if (RC == &ARM::CCRRegClass)
267     return 0;  // Can't copy CCR registers.
268   return RC;
269 }
270
271 unsigned
272 ARMBaseRegisterInfo::getRegPressureLimit(const TargetRegisterClass *RC,
273                                          MachineFunction &MF) const {
274   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
275
276   switch (RC->getID()) {
277   default:
278     return 0;
279   case ARM::tGPRRegClassID:
280     return TFI->hasFP(MF) ? 4 : 5;
281   case ARM::GPRRegClassID: {
282     unsigned FP = TFI->hasFP(MF) ? 1 : 0;
283     return 10 - FP - (STI.isR9Reserved() ? 1 : 0);
284   }
285   case ARM::SPRRegClassID:  // Currently not used as 'rep' register class.
286   case ARM::DPRRegClassID:
287     return 32 - 10;
288   }
289 }
290
291 /// getRawAllocationOrder - Returns the register allocation order for a
292 /// specified register class with a target-dependent hint.
293 ArrayRef<uint16_t>
294 ARMBaseRegisterInfo::getRawAllocationOrder(const TargetRegisterClass *RC,
295                                            unsigned HintType, unsigned HintReg,
296                                            const MachineFunction &MF) const {
297   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
298   // Alternative register allocation orders when favoring even / odd registers
299   // of register pairs.
300
301   // No FP, R9 is available.
302   static const uint16_t GPREven1[] = {
303     ARM::R0, ARM::R2, ARM::R4, ARM::R6, ARM::R8, ARM::R10,
304     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R7,
305     ARM::R9, ARM::R11
306   };
307   static const uint16_t GPROdd1[] = {
308     ARM::R1, ARM::R3, ARM::R5, ARM::R7, ARM::R9, ARM::R11,
309     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6,
310     ARM::R8, ARM::R10
311   };
312
313   // FP is R7, R9 is available.
314   static const uint16_t GPREven2[] = {
315     ARM::R0, ARM::R2, ARM::R4,          ARM::R8, ARM::R10,
316     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R6,
317     ARM::R9, ARM::R11
318   };
319   static const uint16_t GPROdd2[] = {
320     ARM::R1, ARM::R3, ARM::R5,          ARM::R9, ARM::R11,
321     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6,
322     ARM::R8, ARM::R10
323   };
324
325   // FP is R11, R9 is available.
326   static const uint16_t GPREven3[] = {
327     ARM::R0, ARM::R2, ARM::R4, ARM::R6, ARM::R8,
328     ARM::R1, ARM::R3, ARM::R10,ARM::R12,ARM::LR, ARM::R5, ARM::R7,
329     ARM::R9
330   };
331   static const uint16_t GPROdd3[] = {
332     ARM::R1, ARM::R3, ARM::R5, ARM::R6, ARM::R9,
333     ARM::R0, ARM::R2, ARM::R10,ARM::R12,ARM::LR, ARM::R4, ARM::R7,
334     ARM::R8
335   };
336
337   // No FP, R9 is not available.
338   static const uint16_t GPREven4[] = {
339     ARM::R0, ARM::R2, ARM::R4, ARM::R6,          ARM::R10,
340     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R7, ARM::R8,
341     ARM::R11
342   };
343   static const uint16_t GPROdd4[] = {
344     ARM::R1, ARM::R3, ARM::R5, ARM::R7,          ARM::R11,
345     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6, ARM::R8,
346     ARM::R10
347   };
348
349   // FP is R7, R9 is not available.
350   static const uint16_t GPREven5[] = {
351     ARM::R0, ARM::R2, ARM::R4,                   ARM::R10,
352     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R6, ARM::R8,
353     ARM::R11
354   };
355   static const uint16_t GPROdd5[] = {
356     ARM::R1, ARM::R3, ARM::R5,                   ARM::R11,
357     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6, ARM::R8,
358     ARM::R10
359   };
360
361   // FP is R11, R9 is not available.
362   static const uint16_t GPREven6[] = {
363     ARM::R0, ARM::R2, ARM::R4, ARM::R6,
364     ARM::R1, ARM::R3, ARM::R10,ARM::R12,ARM::LR, ARM::R5, ARM::R7, ARM::R8
365   };
366   static const uint16_t GPROdd6[] = {
367     ARM::R1, ARM::R3, ARM::R5, ARM::R7,
368     ARM::R0, ARM::R2, ARM::R10,ARM::R12,ARM::LR, ARM::R4, ARM::R6, ARM::R8
369   };
370
371   // We only support even/odd hints for GPR and rGPR.
372   if (RC != &ARM::GPRRegClass && RC != &ARM::rGPRRegClass)
373     return RC->getRawAllocationOrder(MF);
374
375   if (HintType == ARMRI::RegPairEven) {
376     if (isPhysicalRegister(HintReg) && getRegisterPairEven(HintReg, MF) == 0)
377       // It's no longer possible to fulfill this hint. Return the default
378       // allocation order.
379       return RC->getRawAllocationOrder(MF);
380
381     if (!TFI->hasFP(MF)) {
382       if (!STI.isR9Reserved())
383         return makeArrayRef(GPREven1);
384       else
385         return makeArrayRef(GPREven4);
386     } else if (FramePtr == ARM::R7) {
387       if (!STI.isR9Reserved())
388         return makeArrayRef(GPREven2);
389       else
390         return makeArrayRef(GPREven5);
391     } else { // FramePtr == ARM::R11
392       if (!STI.isR9Reserved())
393         return makeArrayRef(GPREven3);
394       else
395         return makeArrayRef(GPREven6);
396     }
397   } else if (HintType == ARMRI::RegPairOdd) {
398     if (isPhysicalRegister(HintReg) && getRegisterPairOdd(HintReg, MF) == 0)
399       // It's no longer possible to fulfill this hint. Return the default
400       // allocation order.
401       return RC->getRawAllocationOrder(MF);
402
403     if (!TFI->hasFP(MF)) {
404       if (!STI.isR9Reserved())
405         return makeArrayRef(GPROdd1);
406       else
407         return makeArrayRef(GPROdd4);
408     } else if (FramePtr == ARM::R7) {
409       if (!STI.isR9Reserved())
410         return makeArrayRef(GPROdd2);
411       else
412         return makeArrayRef(GPROdd5);
413     } else { // FramePtr == ARM::R11
414       if (!STI.isR9Reserved())
415         return makeArrayRef(GPROdd3);
416       else
417         return makeArrayRef(GPROdd6);
418     }
419   }
420   return RC->getRawAllocationOrder(MF);
421 }
422
423 /// ResolveRegAllocHint - Resolves the specified register allocation hint
424 /// to a physical register. Returns the physical register if it is successful.
425 unsigned
426 ARMBaseRegisterInfo::ResolveRegAllocHint(unsigned Type, unsigned Reg,
427                                          const MachineFunction &MF) const {
428   if (Reg == 0 || !isPhysicalRegister(Reg))
429     return 0;
430   if (Type == 0)
431     return Reg;
432   else if (Type == (unsigned)ARMRI::RegPairOdd)
433     // Odd register.
434     return getRegisterPairOdd(Reg, MF);
435   else if (Type == (unsigned)ARMRI::RegPairEven)
436     // Even register.
437     return getRegisterPairEven(Reg, MF);
438   return 0;
439 }
440
441 void
442 ARMBaseRegisterInfo::UpdateRegAllocHint(unsigned Reg, unsigned NewReg,
443                                         MachineFunction &MF) const {
444   MachineRegisterInfo *MRI = &MF.getRegInfo();
445   std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
446   if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
447        Hint.first == (unsigned)ARMRI::RegPairEven) &&
448       TargetRegisterInfo::isVirtualRegister(Hint.second)) {
449     // If 'Reg' is one of the even / odd register pair and it's now changed
450     // (e.g. coalesced) into a different register. The other register of the
451     // pair allocation hint must be updated to reflect the relationship
452     // change.
453     unsigned OtherReg = Hint.second;
454     Hint = MRI->getRegAllocationHint(OtherReg);
455     if (Hint.second == Reg)
456       // Make sure the pair has not already divorced.
457       MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg);
458   }
459 }
460
461 bool
462 ARMBaseRegisterInfo::avoidWriteAfterWrite(const TargetRegisterClass *RC) const {
463   // CortexA9 has a Write-after-write hazard for NEON registers.
464   if (!STI.isCortexA9())
465     return false;
466
467   switch (RC->getID()) {
468   case ARM::DPRRegClassID:
469   case ARM::DPR_8RegClassID:
470   case ARM::DPR_VFP2RegClassID:
471   case ARM::QPRRegClassID:
472   case ARM::QPR_8RegClassID:
473   case ARM::QPR_VFP2RegClassID:
474   case ARM::SPRRegClassID:
475   case ARM::SPR_8RegClassID:
476     // Avoid reusing S, D, and Q registers.
477     // Don't increase register pressure for QQ and QQQQ.
478     return true;
479   default:
480     return false;
481   }
482 }
483
484 bool ARMBaseRegisterInfo::hasBasePointer(const MachineFunction &MF) const {
485   const MachineFrameInfo *MFI = MF.getFrameInfo();
486   const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
487   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
488
489   if (!EnableBasePointer)
490     return false;
491
492   // When outgoing call frames are so large that we adjust the stack pointer
493   // around the call, we can no longer use the stack pointer to reach the
494   // emergency spill slot.
495   if (needsStackRealignment(MF) && !TFI->hasReservedCallFrame(MF))
496     return true;
497
498   // Thumb has trouble with negative offsets from the FP. Thumb2 has a limited
499   // negative range for ldr/str (255), and thumb1 is positive offsets only.
500   // It's going to be better to use the SP or Base Pointer instead. When there
501   // are variable sized objects, we can't reference off of the SP, so we
502   // reserve a Base Pointer.
503   if (AFI->isThumbFunction() && MFI->hasVarSizedObjects()) {
504     // Conservatively estimate whether the negative offset from the frame
505     // pointer will be sufficient to reach. If a function has a smallish
506     // frame, it's less likely to have lots of spills and callee saved
507     // space, so it's all more likely to be within range of the frame pointer.
508     // If it's wrong, the scavenger will still enable access to work, it just
509     // won't be optimal.
510     if (AFI->isThumb2Function() && MFI->getLocalFrameSize() < 128)
511       return false;
512     return true;
513   }
514
515   return false;
516 }
517
518 bool ARMBaseRegisterInfo::canRealignStack(const MachineFunction &MF) const {
519   const MachineRegisterInfo *MRI = &MF.getRegInfo();
520   const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
521   // We can't realign the stack if:
522   // 1. Dynamic stack realignment is explicitly disabled,
523   // 2. This is a Thumb1 function (it's not useful, so we don't bother), or
524   // 3. There are VLAs in the function and the base pointer is disabled.
525   if (!MF.getTarget().Options.RealignStack)
526     return false;
527   if (AFI->isThumb1OnlyFunction())
528     return false;
529   // Stack realignment requires a frame pointer.  If we already started
530   // register allocation with frame pointer elimination, it is too late now.
531   if (!MRI->canReserveReg(FramePtr))
532     return false;
533   // We may also need a base pointer if there are dynamic allocas or stack
534   // pointer adjustments around calls.
535   if (MF.getTarget().getFrameLowering()->hasReservedCallFrame(MF))
536     return true;
537   if (!EnableBasePointer)
538     return false;
539   // A base pointer is required and allowed.  Check that it isn't too late to
540   // reserve it.
541   return MRI->canReserveReg(BasePtr);
542 }
543
544 bool ARMBaseRegisterInfo::
545 needsStackRealignment(const MachineFunction &MF) const {
546   const MachineFrameInfo *MFI = MF.getFrameInfo();
547   const Function *F = MF.getFunction();
548   unsigned StackAlign = MF.getTarget().getFrameLowering()->getStackAlignment();
549   bool requiresRealignment = ((MFI->getMaxAlignment() > StackAlign) ||
550                                F->hasFnAttr(Attribute::StackAlignment));
551
552   return requiresRealignment && canRealignStack(MF);
553 }
554
555 bool ARMBaseRegisterInfo::
556 cannotEliminateFrame(const MachineFunction &MF) const {
557   const MachineFrameInfo *MFI = MF.getFrameInfo();
558   if (MF.getTarget().Options.DisableFramePointerElim(MF) && MFI->adjustsStack())
559     return true;
560   return MFI->hasVarSizedObjects() || MFI->isFrameAddressTaken()
561     || needsStackRealignment(MF);
562 }
563
564 unsigned
565 ARMBaseRegisterInfo::getFrameRegister(const MachineFunction &MF) const {
566   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
567
568   if (TFI->hasFP(MF))
569     return FramePtr;
570   return ARM::SP;
571 }
572
573 unsigned ARMBaseRegisterInfo::getEHExceptionRegister() const {
574   llvm_unreachable("What is the exception register");
575 }
576
577 unsigned ARMBaseRegisterInfo::getEHHandlerRegister() const {
578   llvm_unreachable("What is the exception handler register");
579 }
580
581 unsigned ARMBaseRegisterInfo::getRegisterPairEven(unsigned Reg,
582                                               const MachineFunction &MF) const {
583   switch (Reg) {
584   default: break;
585   // Return 0 if either register of the pair is a special register.
586   // So no R12, etc.
587   case ARM::R1: return ARM::R0;
588   case ARM::R3: return ARM::R2;
589   case ARM::R5: return ARM::R4;
590   case ARM::R7:
591     return (isReservedReg(MF, ARM::R7) || isReservedReg(MF, ARM::R6))
592       ? 0 : ARM::R6;
593   case ARM::R9: return isReservedReg(MF, ARM::R9)  ? 0 :ARM::R8;
594   case ARM::R11: return isReservedReg(MF, ARM::R11) ? 0 : ARM::R10;
595
596   case ARM::S1: return ARM::S0;
597   case ARM::S3: return ARM::S2;
598   case ARM::S5: return ARM::S4;
599   case ARM::S7: return ARM::S6;
600   case ARM::S9: return ARM::S8;
601   case ARM::S11: return ARM::S10;
602   case ARM::S13: return ARM::S12;
603   case ARM::S15: return ARM::S14;
604   case ARM::S17: return ARM::S16;
605   case ARM::S19: return ARM::S18;
606   case ARM::S21: return ARM::S20;
607   case ARM::S23: return ARM::S22;
608   case ARM::S25: return ARM::S24;
609   case ARM::S27: return ARM::S26;
610   case ARM::S29: return ARM::S28;
611   case ARM::S31: return ARM::S30;
612
613   case ARM::D1: return ARM::D0;
614   case ARM::D3: return ARM::D2;
615   case ARM::D5: return ARM::D4;
616   case ARM::D7: return ARM::D6;
617   case ARM::D9: return ARM::D8;
618   case ARM::D11: return ARM::D10;
619   case ARM::D13: return ARM::D12;
620   case ARM::D15: return ARM::D14;
621   case ARM::D17: return ARM::D16;
622   case ARM::D19: return ARM::D18;
623   case ARM::D21: return ARM::D20;
624   case ARM::D23: return ARM::D22;
625   case ARM::D25: return ARM::D24;
626   case ARM::D27: return ARM::D26;
627   case ARM::D29: return ARM::D28;
628   case ARM::D31: return ARM::D30;
629   }
630
631   return 0;
632 }
633
634 unsigned ARMBaseRegisterInfo::getRegisterPairOdd(unsigned Reg,
635                                              const MachineFunction &MF) const {
636   switch (Reg) {
637   default: break;
638   // Return 0 if either register of the pair is a special register.
639   // So no R12, etc.
640   case ARM::R0: return ARM::R1;
641   case ARM::R2: return ARM::R3;
642   case ARM::R4: return ARM::R5;
643   case ARM::R6:
644     return (isReservedReg(MF, ARM::R7) || isReservedReg(MF, ARM::R6))
645       ? 0 : ARM::R7;
646   case ARM::R8: return isReservedReg(MF, ARM::R9)  ? 0 :ARM::R9;
647   case ARM::R10: return isReservedReg(MF, ARM::R11) ? 0 : ARM::R11;
648
649   case ARM::S0: return ARM::S1;
650   case ARM::S2: return ARM::S3;
651   case ARM::S4: return ARM::S5;
652   case ARM::S6: return ARM::S7;
653   case ARM::S8: return ARM::S9;
654   case ARM::S10: return ARM::S11;
655   case ARM::S12: return ARM::S13;
656   case ARM::S14: return ARM::S15;
657   case ARM::S16: return ARM::S17;
658   case ARM::S18: return ARM::S19;
659   case ARM::S20: return ARM::S21;
660   case ARM::S22: return ARM::S23;
661   case ARM::S24: return ARM::S25;
662   case ARM::S26: return ARM::S27;
663   case ARM::S28: return ARM::S29;
664   case ARM::S30: return ARM::S31;
665
666   case ARM::D0: return ARM::D1;
667   case ARM::D2: return ARM::D3;
668   case ARM::D4: return ARM::D5;
669   case ARM::D6: return ARM::D7;
670   case ARM::D8: return ARM::D9;
671   case ARM::D10: return ARM::D11;
672   case ARM::D12: return ARM::D13;
673   case ARM::D14: return ARM::D15;
674   case ARM::D16: return ARM::D17;
675   case ARM::D18: return ARM::D19;
676   case ARM::D20: return ARM::D21;
677   case ARM::D22: return ARM::D23;
678   case ARM::D24: return ARM::D25;
679   case ARM::D26: return ARM::D27;
680   case ARM::D28: return ARM::D29;
681   case ARM::D30: return ARM::D31;
682   }
683
684   return 0;
685 }
686
687 /// emitLoadConstPool - Emits a load from constpool to materialize the
688 /// specified immediate.
689 void ARMBaseRegisterInfo::
690 emitLoadConstPool(MachineBasicBlock &MBB,
691                   MachineBasicBlock::iterator &MBBI,
692                   DebugLoc dl,
693                   unsigned DestReg, unsigned SubIdx, int Val,
694                   ARMCC::CondCodes Pred,
695                   unsigned PredReg, unsigned MIFlags) const {
696   MachineFunction &MF = *MBB.getParent();
697   MachineConstantPool *ConstantPool = MF.getConstantPool();
698   const Constant *C =
699         ConstantInt::get(Type::getInt32Ty(MF.getFunction()->getContext()), Val);
700   unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
701
702   BuildMI(MBB, MBBI, dl, TII.get(ARM::LDRcp))
703     .addReg(DestReg, getDefRegState(true), SubIdx)
704     .addConstantPoolIndex(Idx)
705     .addImm(0).addImm(Pred).addReg(PredReg)
706     .setMIFlags(MIFlags);
707 }
708
709 bool ARMBaseRegisterInfo::
710 requiresRegisterScavenging(const MachineFunction &MF) const {
711   return true;
712 }
713
714 bool ARMBaseRegisterInfo::
715 trackLivenessAfterRegAlloc(const MachineFunction &MF) const {
716   return true;
717 }
718
719 bool ARMBaseRegisterInfo::
720 requiresFrameIndexScavenging(const MachineFunction &MF) const {
721   return true;
722 }
723
724 bool ARMBaseRegisterInfo::
725 requiresVirtualBaseRegisters(const MachineFunction &MF) const {
726   return EnableLocalStackAlloc;
727 }
728
729 static void
730 emitSPUpdate(bool isARM,
731              MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
732              DebugLoc dl, const ARMBaseInstrInfo &TII,
733              int NumBytes,
734              ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) {
735   if (isARM)
736     emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
737                             Pred, PredReg, TII);
738   else
739     emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
740                            Pred, PredReg, TII);
741 }
742
743
744 void ARMBaseRegisterInfo::
745 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
746                               MachineBasicBlock::iterator I) const {
747   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
748   if (!TFI->hasReservedCallFrame(MF)) {
749     // If we have alloca, convert as follows:
750     // ADJCALLSTACKDOWN -> sub, sp, sp, amount
751     // ADJCALLSTACKUP   -> add, sp, sp, amount
752     MachineInstr *Old = I;
753     DebugLoc dl = Old->getDebugLoc();
754     unsigned Amount = Old->getOperand(0).getImm();
755     if (Amount != 0) {
756       // We need to keep the stack aligned properly.  To do this, we round the
757       // amount of space needed for the outgoing arguments up to the next
758       // alignment boundary.
759       unsigned Align = TFI->getStackAlignment();
760       Amount = (Amount+Align-1)/Align*Align;
761
762       ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
763       assert(!AFI->isThumb1OnlyFunction() &&
764              "This eliminateCallFramePseudoInstr does not support Thumb1!");
765       bool isARM = !AFI->isThumbFunction();
766
767       // Replace the pseudo instruction with a new instruction...
768       unsigned Opc = Old->getOpcode();
769       int PIdx = Old->findFirstPredOperandIdx();
770       ARMCC::CondCodes Pred = (PIdx == -1)
771         ? ARMCC::AL : (ARMCC::CondCodes)Old->getOperand(PIdx).getImm();
772       if (Opc == ARM::ADJCALLSTACKDOWN || Opc == ARM::tADJCALLSTACKDOWN) {
773         // Note: PredReg is operand 2 for ADJCALLSTACKDOWN.
774         unsigned PredReg = Old->getOperand(2).getReg();
775         emitSPUpdate(isARM, MBB, I, dl, TII, -Amount, Pred, PredReg);
776       } else {
777         // Note: PredReg is operand 3 for ADJCALLSTACKUP.
778         unsigned PredReg = Old->getOperand(3).getReg();
779         assert(Opc == ARM::ADJCALLSTACKUP || Opc == ARM::tADJCALLSTACKUP);
780         emitSPUpdate(isARM, MBB, I, dl, TII, Amount, Pred, PredReg);
781       }
782     }
783   }
784   MBB.erase(I);
785 }
786
787 int64_t ARMBaseRegisterInfo::
788 getFrameIndexInstrOffset(const MachineInstr *MI, int Idx) const {
789   const MCInstrDesc &Desc = MI->getDesc();
790   unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
791   int64_t InstrOffs = 0;
792   int Scale = 1;
793   unsigned ImmIdx = 0;
794   switch (AddrMode) {
795   case ARMII::AddrModeT2_i8:
796   case ARMII::AddrModeT2_i12:
797   case ARMII::AddrMode_i12:
798     InstrOffs = MI->getOperand(Idx+1).getImm();
799     Scale = 1;
800     break;
801   case ARMII::AddrMode5: {
802     // VFP address mode.
803     const MachineOperand &OffOp = MI->getOperand(Idx+1);
804     InstrOffs = ARM_AM::getAM5Offset(OffOp.getImm());
805     if (ARM_AM::getAM5Op(OffOp.getImm()) == ARM_AM::sub)
806       InstrOffs = -InstrOffs;
807     Scale = 4;
808     break;
809   }
810   case ARMII::AddrMode2: {
811     ImmIdx = Idx+2;
812     InstrOffs = ARM_AM::getAM2Offset(MI->getOperand(ImmIdx).getImm());
813     if (ARM_AM::getAM2Op(MI->getOperand(ImmIdx).getImm()) == ARM_AM::sub)
814       InstrOffs = -InstrOffs;
815     break;
816   }
817   case ARMII::AddrMode3: {
818     ImmIdx = Idx+2;
819     InstrOffs = ARM_AM::getAM3Offset(MI->getOperand(ImmIdx).getImm());
820     if (ARM_AM::getAM3Op(MI->getOperand(ImmIdx).getImm()) == ARM_AM::sub)
821       InstrOffs = -InstrOffs;
822     break;
823   }
824   case ARMII::AddrModeT1_s: {
825     ImmIdx = Idx+1;
826     InstrOffs = MI->getOperand(ImmIdx).getImm();
827     Scale = 4;
828     break;
829   }
830   default:
831     llvm_unreachable("Unsupported addressing mode!");
832   }
833
834   return InstrOffs * Scale;
835 }
836
837 /// needsFrameBaseReg - Returns true if the instruction's frame index
838 /// reference would be better served by a base register other than FP
839 /// or SP. Used by LocalStackFrameAllocation to determine which frame index
840 /// references it should create new base registers for.
841 bool ARMBaseRegisterInfo::
842 needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const {
843   for (unsigned i = 0; !MI->getOperand(i).isFI(); ++i) {
844     assert(i < MI->getNumOperands() &&"Instr doesn't have FrameIndex operand!");
845   }
846
847   // It's the load/store FI references that cause issues, as it can be difficult
848   // to materialize the offset if it won't fit in the literal field. Estimate
849   // based on the size of the local frame and some conservative assumptions
850   // about the rest of the stack frame (note, this is pre-regalloc, so
851   // we don't know everything for certain yet) whether this offset is likely
852   // to be out of range of the immediate. Return true if so.
853
854   // We only generate virtual base registers for loads and stores, so
855   // return false for everything else.
856   unsigned Opc = MI->getOpcode();
857   switch (Opc) {
858   case ARM::LDRi12: case ARM::LDRH: case ARM::LDRBi12:
859   case ARM::STRi12: case ARM::STRH: case ARM::STRBi12:
860   case ARM::t2LDRi12: case ARM::t2LDRi8:
861   case ARM::t2STRi12: case ARM::t2STRi8:
862   case ARM::VLDRS: case ARM::VLDRD:
863   case ARM::VSTRS: case ARM::VSTRD:
864   case ARM::tSTRspi: case ARM::tLDRspi:
865     if (ForceAllBaseRegAlloc)
866       return true;
867     break;
868   default:
869     return false;
870   }
871
872   // Without a virtual base register, if the function has variable sized
873   // objects, all fixed-size local references will be via the frame pointer,
874   // Approximate the offset and see if it's legal for the instruction.
875   // Note that the incoming offset is based on the SP value at function entry,
876   // so it'll be negative.
877   MachineFunction &MF = *MI->getParent()->getParent();
878   const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
879   MachineFrameInfo *MFI = MF.getFrameInfo();
880   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
881
882   // Estimate an offset from the frame pointer.
883   // Conservatively assume all callee-saved registers get pushed. R4-R6
884   // will be earlier than the FP, so we ignore those.
885   // R7, LR
886   int64_t FPOffset = Offset - 8;
887   // ARM and Thumb2 functions also need to consider R8-R11 and D8-D15
888   if (!AFI->isThumbFunction() || !AFI->isThumb1OnlyFunction())
889     FPOffset -= 80;
890   // Estimate an offset from the stack pointer.
891   // The incoming offset is relating to the SP at the start of the function,
892   // but when we access the local it'll be relative to the SP after local
893   // allocation, so adjust our SP-relative offset by that allocation size.
894   Offset = -Offset;
895   Offset += MFI->getLocalFrameSize();
896   // Assume that we'll have at least some spill slots allocated.
897   // FIXME: This is a total SWAG number. We should run some statistics
898   //        and pick a real one.
899   Offset += 128; // 128 bytes of spill slots
900
901   // If there is a frame pointer, try using it.
902   // The FP is only available if there is no dynamic realignment. We
903   // don't know for sure yet whether we'll need that, so we guess based
904   // on whether there are any local variables that would trigger it.
905   unsigned StackAlign = TFI->getStackAlignment();
906   if (TFI->hasFP(MF) &&
907       !((MFI->getLocalFrameMaxAlign() > StackAlign) && canRealignStack(MF))) {
908     if (isFrameOffsetLegal(MI, FPOffset))
909       return false;
910   }
911   // If we can reference via the stack pointer, try that.
912   // FIXME: This (and the code that resolves the references) can be improved
913   //        to only disallow SP relative references in the live range of
914   //        the VLA(s). In practice, it's unclear how much difference that
915   //        would make, but it may be worth doing.
916   if (!MFI->hasVarSizedObjects() && isFrameOffsetLegal(MI, Offset))
917     return false;
918
919   // The offset likely isn't legal, we want to allocate a virtual base register.
920   return true;
921 }
922
923 /// materializeFrameBaseRegister - Insert defining instruction(s) for BaseReg to
924 /// be a pointer to FrameIdx at the beginning of the basic block.
925 void ARMBaseRegisterInfo::
926 materializeFrameBaseRegister(MachineBasicBlock *MBB,
927                              unsigned BaseReg, int FrameIdx,
928                              int64_t Offset) const {
929   ARMFunctionInfo *AFI = MBB->getParent()->getInfo<ARMFunctionInfo>();
930   unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri :
931     (AFI->isThumb1OnlyFunction() ? ARM::tADDrSPi : ARM::t2ADDri);
932
933   MachineBasicBlock::iterator Ins = MBB->begin();
934   DebugLoc DL;                  // Defaults to "unknown"
935   if (Ins != MBB->end())
936     DL = Ins->getDebugLoc();
937
938   const MCInstrDesc &MCID = TII.get(ADDriOpc);
939   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
940   MRI.constrainRegClass(BaseReg, TII.getRegClass(MCID, 0, this));
941
942   MachineInstrBuilder MIB = AddDefaultPred(BuildMI(*MBB, Ins, DL, MCID, BaseReg)
943     .addFrameIndex(FrameIdx).addImm(Offset));
944
945   if (!AFI->isThumb1OnlyFunction())
946     AddDefaultCC(MIB);
947 }
948
949 void
950 ARMBaseRegisterInfo::resolveFrameIndex(MachineBasicBlock::iterator I,
951                                        unsigned BaseReg, int64_t Offset) const {
952   MachineInstr &MI = *I;
953   MachineBasicBlock &MBB = *MI.getParent();
954   MachineFunction &MF = *MBB.getParent();
955   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
956   int Off = Offset; // ARM doesn't need the general 64-bit offsets
957   unsigned i = 0;
958
959   assert(!AFI->isThumb1OnlyFunction() &&
960          "This resolveFrameIndex does not support Thumb1!");
961
962   while (!MI.getOperand(i).isFI()) {
963     ++i;
964     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
965   }
966   bool Done = false;
967   if (!AFI->isThumbFunction())
968     Done = rewriteARMFrameIndex(MI, i, BaseReg, Off, TII);
969   else {
970     assert(AFI->isThumb2Function());
971     Done = rewriteT2FrameIndex(MI, i, BaseReg, Off, TII);
972   }
973   assert (Done && "Unable to resolve frame index!");
974   (void)Done;
975 }
976
977 bool ARMBaseRegisterInfo::isFrameOffsetLegal(const MachineInstr *MI,
978                                              int64_t Offset) const {
979   const MCInstrDesc &Desc = MI->getDesc();
980   unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
981   unsigned i = 0;
982
983   while (!MI->getOperand(i).isFI()) {
984     ++i;
985     assert(i < MI->getNumOperands() &&"Instr doesn't have FrameIndex operand!");
986   }
987
988   // AddrMode4 and AddrMode6 cannot handle any offset.
989   if (AddrMode == ARMII::AddrMode4 || AddrMode == ARMII::AddrMode6)
990     return Offset == 0;
991
992   unsigned NumBits = 0;
993   unsigned Scale = 1;
994   bool isSigned = true;
995   switch (AddrMode) {
996   case ARMII::AddrModeT2_i8:
997   case ARMII::AddrModeT2_i12:
998     // i8 supports only negative, and i12 supports only positive, so
999     // based on Offset sign, consider the appropriate instruction
1000     Scale = 1;
1001     if (Offset < 0) {
1002       NumBits = 8;
1003       Offset = -Offset;
1004     } else {
1005       NumBits = 12;
1006     }
1007     break;
1008   case ARMII::AddrMode5:
1009     // VFP address mode.
1010     NumBits = 8;
1011     Scale = 4;
1012     break;
1013   case ARMII::AddrMode_i12:
1014   case ARMII::AddrMode2:
1015     NumBits = 12;
1016     break;
1017   case ARMII::AddrMode3:
1018     NumBits = 8;
1019     break;
1020   case ARMII::AddrModeT1_s:
1021     NumBits = 5;
1022     Scale = 4;
1023     isSigned = false;
1024     break;
1025   default:
1026     llvm_unreachable("Unsupported addressing mode!");
1027   }
1028
1029   Offset += getFrameIndexInstrOffset(MI, i);
1030   // Make sure the offset is encodable for instructions that scale the
1031   // immediate.
1032   if ((Offset & (Scale-1)) != 0)
1033     return false;
1034
1035   if (isSigned && Offset < 0)
1036     Offset = -Offset;
1037
1038   unsigned Mask = (1 << NumBits) - 1;
1039   if ((unsigned)Offset <= Mask * Scale)
1040     return true;
1041
1042   return false;
1043 }
1044
1045 void
1046 ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
1047                                          int SPAdj, RegScavenger *RS) const {
1048   unsigned i = 0;
1049   MachineInstr &MI = *II;
1050   MachineBasicBlock &MBB = *MI.getParent();
1051   MachineFunction &MF = *MBB.getParent();
1052   const ARMFrameLowering *TFI =
1053     static_cast<const ARMFrameLowering*>(MF.getTarget().getFrameLowering());
1054   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1055   assert(!AFI->isThumb1OnlyFunction() &&
1056          "This eliminateFrameIndex does not support Thumb1!");
1057
1058   while (!MI.getOperand(i).isFI()) {
1059     ++i;
1060     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
1061   }
1062
1063   int FrameIndex = MI.getOperand(i).getIndex();
1064   unsigned FrameReg;
1065
1066   int Offset = TFI->ResolveFrameIndexReference(MF, FrameIndex, FrameReg, SPAdj);
1067
1068   // PEI::scavengeFrameVirtualRegs() cannot accurately track SPAdj because the
1069   // call frame setup/destroy instructions have already been eliminated.  That
1070   // means the stack pointer cannot be used to access the emergency spill slot
1071   // when !hasReservedCallFrame().
1072 #ifndef NDEBUG
1073   if (RS && FrameReg == ARM::SP && FrameIndex == RS->getScavengingFrameIndex()){
1074     assert(TFI->hasReservedCallFrame(MF) &&
1075            "Cannot use SP to access the emergency spill slot in "
1076            "functions without a reserved call frame");
1077     assert(!MF.getFrameInfo()->hasVarSizedObjects() &&
1078            "Cannot use SP to access the emergency spill slot in "
1079            "functions with variable sized frame objects");
1080   }
1081 #endif // NDEBUG
1082
1083   // Special handling of dbg_value instructions.
1084   if (MI.isDebugValue()) {
1085     MI.getOperand(i).  ChangeToRegister(FrameReg, false /*isDef*/);
1086     MI.getOperand(i+1).ChangeToImmediate(Offset);
1087     return;
1088   }
1089
1090   // Modify MI as necessary to handle as much of 'Offset' as possible
1091   bool Done = false;
1092   if (!AFI->isThumbFunction())
1093     Done = rewriteARMFrameIndex(MI, i, FrameReg, Offset, TII);
1094   else {
1095     assert(AFI->isThumb2Function());
1096     Done = rewriteT2FrameIndex(MI, i, FrameReg, Offset, TII);
1097   }
1098   if (Done)
1099     return;
1100
1101   // If we get here, the immediate doesn't fit into the instruction.  We folded
1102   // as much as possible above, handle the rest, providing a register that is
1103   // SP+LargeImm.
1104   assert((Offset ||
1105           (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode4 ||
1106           (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode6) &&
1107          "This code isn't needed if offset already handled!");
1108
1109   unsigned ScratchReg = 0;
1110   int PIdx = MI.findFirstPredOperandIdx();
1111   ARMCC::CondCodes Pred = (PIdx == -1)
1112     ? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(PIdx).getImm();
1113   unsigned PredReg = (PIdx == -1) ? 0 : MI.getOperand(PIdx+1).getReg();
1114   if (Offset == 0)
1115     // Must be addrmode4/6.
1116     MI.getOperand(i).ChangeToRegister(FrameReg, false, false, false);
1117   else {
1118     ScratchReg = MF.getRegInfo().createVirtualRegister(&ARM::GPRRegClass);
1119     if (!AFI->isThumbFunction())
1120       emitARMRegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
1121                               Offset, Pred, PredReg, TII);
1122     else {
1123       assert(AFI->isThumb2Function());
1124       emitT2RegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
1125                              Offset, Pred, PredReg, TII);
1126     }
1127     // Update the original instruction to use the scratch register.
1128     MI.getOperand(i).ChangeToRegister(ScratchReg, false, false, true);
1129   }
1130 }