29b8fd430796eca7cddd241669edc0e8f51571f2
[oota-llvm.git] / lib / Target / ARM / ARMBaseRegisterInfo.cpp
1 //===- ARMBaseRegisterInfo.cpp - ARM Register 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 TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARM.h"
15 #include "ARMAddressingModes.h"
16 #include "ARMBaseInstrInfo.h"
17 #include "ARMBaseRegisterInfo.h"
18 #include "ARMInstrInfo.h"
19 #include "ARMMachineFunctionInfo.h"
20 #include "ARMSubtarget.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/MachineLocation.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/CodeGen/RegisterScavenging.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/ErrorHandling.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include "llvm/Target/TargetFrameInfo.h"
36 #include "llvm/Target/TargetMachine.h"
37 #include "llvm/Target/TargetOptions.h"
38 #include "llvm/ADT/BitVector.h"
39 #include "llvm/ADT/SmallVector.h"
40 #include "llvm/Support/CommandLine.h"
41
42 namespace llvm {
43 cl::opt<bool>
44 ReuseFrameIndexVals("arm-reuse-frame-index-vals", cl::Hidden, cl::init(true),
45           cl::desc("Reuse repeated frame index values"));
46 }
47
48 using namespace llvm;
49
50 unsigned ARMBaseRegisterInfo::getRegisterNumbering(unsigned RegEnum,
51                                                    bool *isSPVFP) {
52   if (isSPVFP)
53     *isSPVFP = false;
54
55   using namespace ARM;
56   switch (RegEnum) {
57   default:
58     llvm_unreachable("Unknown ARM register!");
59   case R0:  case D0:  case Q0:  return 0;
60   case R1:  case D1:  case Q1:  return 1;
61   case R2:  case D2:  case Q2:  return 2;
62   case R3:  case D3:  case Q3:  return 3;
63   case R4:  case D4:  case Q4:  return 4;
64   case R5:  case D5:  case Q5:  return 5;
65   case R6:  case D6:  case Q6:  return 6;
66   case R7:  case D7:  case Q7:  return 7;
67   case R8:  case D8:  case Q8:  return 8;
68   case R9:  case D9:  case Q9:  return 9;
69   case R10: case D10: case Q10: return 10;
70   case R11: case D11: case Q11: return 11;
71   case R12: case D12: case Q12: return 12;
72   case SP:  case D13: case Q13: return 13;
73   case LR:  case D14: case Q14: return 14;
74   case PC:  case D15: case Q15: return 15;
75
76   case D16: return 16;
77   case D17: return 17;
78   case D18: return 18;
79   case D19: return 19;
80   case D20: return 20;
81   case D21: return 21;
82   case D22: return 22;
83   case D23: return 23;
84   case D24: return 24;
85   case D25: return 25;
86   case D26: return 26;
87   case D27: return 27;
88   case D28: return 28;
89   case D29: return 29;
90   case D30: return 30;
91   case D31: return 31;
92
93   case S0: case S1: case S2: case S3:
94   case S4: case S5: case S6: case S7:
95   case S8: case S9: case S10: case S11:
96   case S12: case S13: case S14: case S15:
97   case S16: case S17: case S18: case S19:
98   case S20: case S21: case S22: case S23:
99   case S24: case S25: case S26: case S27:
100   case S28: case S29: case S30: case S31: {
101     if (isSPVFP)
102       *isSPVFP = true;
103     switch (RegEnum) {
104     default: return 0; // Avoid compile time warning.
105     case S0: return 0;
106     case S1: return 1;
107     case S2: return 2;
108     case S3: return 3;
109     case S4: return 4;
110     case S5: return 5;
111     case S6: return 6;
112     case S7: return 7;
113     case S8: return 8;
114     case S9: return 9;
115     case S10: return 10;
116     case S11: return 11;
117     case S12: return 12;
118     case S13: return 13;
119     case S14: return 14;
120     case S15: return 15;
121     case S16: return 16;
122     case S17: return 17;
123     case S18: return 18;
124     case S19: return 19;
125     case S20: return 20;
126     case S21: return 21;
127     case S22: return 22;
128     case S23: return 23;
129     case S24: return 24;
130     case S25: return 25;
131     case S26: return 26;
132     case S27: return 27;
133     case S28: return 28;
134     case S29: return 29;
135     case S30: return 30;
136     case S31: return 31;
137     }
138   }
139   }
140 }
141
142 ARMBaseRegisterInfo::ARMBaseRegisterInfo(const ARMBaseInstrInfo &tii,
143                                          const ARMSubtarget &sti)
144   : ARMGenRegisterInfo(ARM::ADJCALLSTACKDOWN, ARM::ADJCALLSTACKUP),
145     TII(tii), STI(sti),
146     FramePtr((STI.isTargetDarwin() || STI.isThumb()) ? ARM::R7 : ARM::R11) {
147 }
148
149 const unsigned*
150 ARMBaseRegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const {
151   static const unsigned CalleeSavedRegs[] = {
152     ARM::LR, ARM::R11, ARM::R10, ARM::R9, ARM::R8,
153     ARM::R7, ARM::R6,  ARM::R5,  ARM::R4,
154
155     ARM::D15, ARM::D14, ARM::D13, ARM::D12,
156     ARM::D11, ARM::D10, ARM::D9,  ARM::D8,
157     0
158   };
159
160   static const unsigned DarwinCalleeSavedRegs[] = {
161     // Darwin ABI deviates from ARM standard ABI. R9 is not a callee-saved
162     // register.
163     ARM::LR,  ARM::R7,  ARM::R6, ARM::R5, ARM::R4,
164     ARM::R11, ARM::R10, ARM::R8,
165
166     ARM::D15, ARM::D14, ARM::D13, ARM::D12,
167     ARM::D11, ARM::D10, ARM::D9,  ARM::D8,
168     0
169   };
170   return STI.isTargetDarwin() ? DarwinCalleeSavedRegs : CalleeSavedRegs;
171 }
172
173 BitVector ARMBaseRegisterInfo::
174 getReservedRegs(const MachineFunction &MF) const {
175   // FIXME: avoid re-calculating this everytime.
176   BitVector Reserved(getNumRegs());
177   Reserved.set(ARM::SP);
178   Reserved.set(ARM::PC);
179   if (STI.isTargetDarwin() || hasFP(MF))
180     Reserved.set(FramePtr);
181   // Some targets reserve R9.
182   if (STI.isR9Reserved())
183     Reserved.set(ARM::R9);
184   return Reserved;
185 }
186
187 bool ARMBaseRegisterInfo::isReservedReg(const MachineFunction &MF,
188                                         unsigned Reg) const {
189   switch (Reg) {
190   default: break;
191   case ARM::SP:
192   case ARM::PC:
193     return true;
194   case ARM::R7:
195   case ARM::R11:
196     if (FramePtr == Reg && (STI.isTargetDarwin() || hasFP(MF)))
197       return true;
198     break;
199   case ARM::R9:
200     return STI.isR9Reserved();
201   }
202
203   return false;
204 }
205
206 const TargetRegisterClass *
207 ARMBaseRegisterInfo::getMatchingSuperRegClass(const TargetRegisterClass *A,
208                                               const TargetRegisterClass *B,
209                                               unsigned SubIdx) const {
210   switch (SubIdx) {
211   default: return 0;
212   case ARM::ssub_0:
213   case ARM::ssub_1:
214   case ARM::ssub_2:
215   case ARM::ssub_3: {
216     // S sub-registers.
217     if (A->getSize() == 8) {
218       if (B == &ARM::SPR_8RegClass)
219         return &ARM::DPR_8RegClass;
220       assert(B == &ARM::SPRRegClass && "Expecting SPR register class!");
221       if (A == &ARM::DPR_8RegClass)
222         return A;
223       return &ARM::DPR_VFP2RegClass;
224     }
225
226     if (A->getSize() == 16) {
227       if (B == &ARM::SPR_8RegClass)
228         return &ARM::QPR_8RegClass;
229       return &ARM::QPR_VFP2RegClass;
230     }
231
232     if (A->getSize() == 32) {
233       if (B == &ARM::SPR_8RegClass)
234         return 0;  // Do not allow coalescing!
235       return &ARM::QQPR_VFP2RegClass;
236     }
237
238     assert(A->getSize() == 64 && "Expecting a QQQQ register class!");
239     return 0;  // Do not allow coalescing!
240   }
241   case ARM::dsub_0:
242   case ARM::dsub_1:
243   case ARM::dsub_2:
244   case ARM::dsub_3: {
245     // D sub-registers.
246     if (A->getSize() == 16) {
247       if (B == &ARM::DPR_VFP2RegClass)
248         return &ARM::QPR_VFP2RegClass;
249       if (B == &ARM::DPR_8RegClass)
250         return 0;  // Do not allow coalescing!
251       return A;
252     }
253
254     if (A->getSize() == 32) {
255       if (B == &ARM::DPR_VFP2RegClass)
256         return &ARM::QQPR_VFP2RegClass;
257       if (B == &ARM::DPR_8RegClass)
258         return 0;  // Do not allow coalescing!
259       return A;
260     }
261
262     assert(A->getSize() == 64 && "Expecting a QQQQ register class!");
263     if (B != &ARM::DPRRegClass)
264       return 0;  // Do not allow coalescing!
265     return A;
266   }
267   case ARM::dsub_4:
268   case ARM::dsub_5:
269   case ARM::dsub_6:
270   case ARM::dsub_7: {
271     // D sub-registers of QQQQ registers.
272     if (A->getSize() == 64 && B == &ARM::DPRRegClass)
273       return A;
274     return 0;  // Do not allow coalescing!
275   }
276
277   case ARM::qsub_0:
278   case ARM::qsub_1: {
279     // Q sub-registers.
280     if (A->getSize() == 32) {
281       if (B == &ARM::QPR_VFP2RegClass)
282         return &ARM::QQPR_VFP2RegClass;
283       if (B == &ARM::QPR_8RegClass)
284         return 0;  // Do not allow coalescing!
285       return A;
286     }
287
288     assert(A->getSize() == 64 && "Expecting a QQQQ register class!");
289     if (B == &ARM::QPRRegClass)
290       return A;
291     return 0;  // Do not allow coalescing!
292   }
293   case ARM::qsub_2:
294   case ARM::qsub_3: {
295     // Q sub-registers of QQQQ registers.
296     if (A->getSize() == 64 && B == &ARM::QPRRegClass)
297       return A;
298     return 0;  // Do not allow coalescing!
299   }
300   }
301   return 0;
302 }
303
304 bool
305 ARMBaseRegisterInfo::canCombineSubRegIndices(const TargetRegisterClass *RC,
306                                           SmallVectorImpl<unsigned> &SubIndices,
307                                           unsigned &NewSubIdx) const {
308
309   unsigned Size = RC->getSize() * 8;
310   if (Size < 6)
311     return 0;
312
313   NewSubIdx = 0;  // Whole register.
314   unsigned NumRegs = SubIndices.size();
315   if (NumRegs == 8) {
316     // 8 D registers -> 1 QQQQ register.
317     return (Size == 512 &&
318             SubIndices[0] == ARM::dsub_0 &&
319             SubIndices[1] == ARM::dsub_1 &&
320             SubIndices[2] == ARM::dsub_2 &&
321             SubIndices[3] == ARM::dsub_3 &&
322             SubIndices[4] == ARM::dsub_4 &&
323             SubIndices[5] == ARM::dsub_5 &&
324             SubIndices[6] == ARM::dsub_6 &&
325             SubIndices[7] == ARM::dsub_7);
326   } else if (NumRegs == 4) {
327     if (SubIndices[0] == ARM::qsub_0) {
328       // 4 Q registers -> 1 QQQQ register.
329       return (Size == 512 &&
330               SubIndices[1] == ARM::qsub_1 &&
331               SubIndices[2] == ARM::qsub_2 &&
332               SubIndices[3] == ARM::qsub_3);
333     } else if (SubIndices[0] == ARM::dsub_0) {
334       // 4 D registers -> 1 QQ register.
335       if (Size >= 256 &&
336           SubIndices[1] == ARM::dsub_1 &&
337           SubIndices[2] == ARM::dsub_2 &&
338           SubIndices[3] == ARM::dsub_3) {
339         if (Size == 512)
340           NewSubIdx = ARM::qqsub_0;
341         return true;
342       }
343     } else if (SubIndices[0] == ARM::dsub_4) {
344       // 4 D registers -> 1 QQ register (2nd).
345       if (Size == 512 &&
346           SubIndices[1] == ARM::dsub_5 &&
347           SubIndices[2] == ARM::dsub_6 &&
348           SubIndices[3] == ARM::dsub_7) {
349         NewSubIdx = ARM::qqsub_1;
350         return true;
351       }
352     } else if (SubIndices[0] == ARM::ssub_0) {
353       // 4 S registers -> 1 Q register.
354       if (Size >= 128 &&
355           SubIndices[1] == ARM::ssub_1 &&
356           SubIndices[2] == ARM::ssub_2 &&
357           SubIndices[3] == ARM::ssub_3) {
358         if (Size >= 256)
359           NewSubIdx = ARM::qsub_0;
360         return true;
361       }
362     }
363   } else if (NumRegs == 2) {
364     if (SubIndices[0] == ARM::qsub_0) {
365       // 2 Q registers -> 1 QQ register.
366       if (Size >= 256 && SubIndices[1] == ARM::qsub_1) {
367         if (Size == 512)
368           NewSubIdx = ARM::qqsub_0;
369         return true;
370       }
371     } else if (SubIndices[0] == ARM::qsub_2) {
372       // 2 Q registers -> 1 QQ register (2nd).
373       if (Size == 512 && SubIndices[1] == ARM::qsub_3) {
374         NewSubIdx = ARM::qqsub_1;
375         return true;
376       }
377     } else if (SubIndices[0] == ARM::dsub_0) {
378       // 2 D registers -> 1 Q register.
379       if (Size >= 128 && SubIndices[1] == ARM::dsub_1) {
380         if (Size >= 256)
381           NewSubIdx = ARM::qsub_0;
382         return true;
383       }
384     } else if (SubIndices[0] == ARM::dsub_2) {
385       // 2 D registers -> 1 Q register (2nd).
386       if (Size >= 256 && SubIndices[1] == ARM::dsub_3) {
387         NewSubIdx = ARM::qsub_1;
388         return true;
389       }
390     } else if (SubIndices[0] == ARM::dsub_4) {
391       // 2 D registers -> 1 Q register (3rd).
392       if (Size == 512 && SubIndices[1] == ARM::dsub_5) {
393         NewSubIdx = ARM::qsub_2;
394         return true;
395       }
396     } else if (SubIndices[0] == ARM::dsub_6) {
397       // 2 D registers -> 1 Q register (3rd).
398       if (Size == 512 && SubIndices[1] == ARM::dsub_7) {
399         NewSubIdx = ARM::qsub_3;
400         return true;
401       }
402     } else if (SubIndices[0] == ARM::ssub_0) {
403       // 2 S registers -> 1 D register.
404       if (SubIndices[1] == ARM::ssub_1) {
405         if (Size >= 128)
406           NewSubIdx = ARM::dsub_0;
407         return true;
408       }
409     } else if (SubIndices[0] == ARM::ssub_2) {
410       // 2 S registers -> 1 D register (2nd).
411       if (Size >= 128 && SubIndices[1] == ARM::ssub_3) {
412         NewSubIdx = ARM::dsub_1;
413         return true;
414       }
415     }
416   }
417   return false;
418 }
419
420
421 const TargetRegisterClass *
422 ARMBaseRegisterInfo::getPointerRegClass(unsigned Kind) const {
423   return ARM::GPRRegisterClass;
424 }
425
426 /// getAllocationOrder - Returns the register allocation order for a specified
427 /// register class in the form of a pair of TargetRegisterClass iterators.
428 std::pair<TargetRegisterClass::iterator,TargetRegisterClass::iterator>
429 ARMBaseRegisterInfo::getAllocationOrder(const TargetRegisterClass *RC,
430                                         unsigned HintType, unsigned HintReg,
431                                         const MachineFunction &MF) const {
432   // Alternative register allocation orders when favoring even / odd registers
433   // of register pairs.
434
435   // No FP, R9 is available.
436   static const unsigned GPREven1[] = {
437     ARM::R0, ARM::R2, ARM::R4, ARM::R6, ARM::R8, ARM::R10,
438     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R7,
439     ARM::R9, ARM::R11
440   };
441   static const unsigned GPROdd1[] = {
442     ARM::R1, ARM::R3, ARM::R5, ARM::R7, ARM::R9, ARM::R11,
443     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6,
444     ARM::R8, ARM::R10
445   };
446
447   // FP is R7, R9 is available.
448   static const unsigned GPREven2[] = {
449     ARM::R0, ARM::R2, ARM::R4,          ARM::R8, ARM::R10,
450     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R6,
451     ARM::R9, ARM::R11
452   };
453   static const unsigned GPROdd2[] = {
454     ARM::R1, ARM::R3, ARM::R5,          ARM::R9, ARM::R11,
455     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6,
456     ARM::R8, ARM::R10
457   };
458
459   // FP is R11, R9 is available.
460   static const unsigned GPREven3[] = {
461     ARM::R0, ARM::R2, ARM::R4, ARM::R6, ARM::R8,
462     ARM::R1, ARM::R3, ARM::R10,ARM::R12,ARM::LR, ARM::R5, ARM::R7,
463     ARM::R9
464   };
465   static const unsigned GPROdd3[] = {
466     ARM::R1, ARM::R3, ARM::R5, ARM::R6, ARM::R9,
467     ARM::R0, ARM::R2, ARM::R10,ARM::R12,ARM::LR, ARM::R4, ARM::R7,
468     ARM::R8
469   };
470
471   // No FP, R9 is not available.
472   static const unsigned GPREven4[] = {
473     ARM::R0, ARM::R2, ARM::R4, ARM::R6,          ARM::R10,
474     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R7, ARM::R8,
475     ARM::R11
476   };
477   static const unsigned GPROdd4[] = {
478     ARM::R1, ARM::R3, ARM::R5, ARM::R7,          ARM::R11,
479     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6, ARM::R8,
480     ARM::R10
481   };
482
483   // FP is R7, R9 is not available.
484   static const unsigned GPREven5[] = {
485     ARM::R0, ARM::R2, ARM::R4,                   ARM::R10,
486     ARM::R1, ARM::R3, ARM::R12,ARM::LR, ARM::R5, ARM::R6, ARM::R8,
487     ARM::R11
488   };
489   static const unsigned GPROdd5[] = {
490     ARM::R1, ARM::R3, ARM::R5,                   ARM::R11,
491     ARM::R0, ARM::R2, ARM::R12,ARM::LR, ARM::R4, ARM::R6, ARM::R8,
492     ARM::R10
493   };
494
495   // FP is R11, R9 is not available.
496   static const unsigned GPREven6[] = {
497     ARM::R0, ARM::R2, ARM::R4, ARM::R6,
498     ARM::R1, ARM::R3, ARM::R10,ARM::R12,ARM::LR, ARM::R5, ARM::R7, ARM::R8
499   };
500   static const unsigned GPROdd6[] = {
501     ARM::R1, ARM::R3, ARM::R5, ARM::R7,
502     ARM::R0, ARM::R2, ARM::R10,ARM::R12,ARM::LR, ARM::R4, ARM::R6, ARM::R8
503   };
504
505
506   if (HintType == ARMRI::RegPairEven) {
507     if (isPhysicalRegister(HintReg) && getRegisterPairEven(HintReg, MF) == 0)
508       // It's no longer possible to fulfill this hint. Return the default
509       // allocation order.
510       return std::make_pair(RC->allocation_order_begin(MF),
511                             RC->allocation_order_end(MF));
512
513     if (!STI.isTargetDarwin() && !hasFP(MF)) {
514       if (!STI.isR9Reserved())
515         return std::make_pair(GPREven1,
516                               GPREven1 + (sizeof(GPREven1)/sizeof(unsigned)));
517       else
518         return std::make_pair(GPREven4,
519                               GPREven4 + (sizeof(GPREven4)/sizeof(unsigned)));
520     } else if (FramePtr == ARM::R7) {
521       if (!STI.isR9Reserved())
522         return std::make_pair(GPREven2,
523                               GPREven2 + (sizeof(GPREven2)/sizeof(unsigned)));
524       else
525         return std::make_pair(GPREven5,
526                               GPREven5 + (sizeof(GPREven5)/sizeof(unsigned)));
527     } else { // FramePtr == ARM::R11
528       if (!STI.isR9Reserved())
529         return std::make_pair(GPREven3,
530                               GPREven3 + (sizeof(GPREven3)/sizeof(unsigned)));
531       else
532         return std::make_pair(GPREven6,
533                               GPREven6 + (sizeof(GPREven6)/sizeof(unsigned)));
534     }
535   } else if (HintType == ARMRI::RegPairOdd) {
536     if (isPhysicalRegister(HintReg) && getRegisterPairOdd(HintReg, MF) == 0)
537       // It's no longer possible to fulfill this hint. Return the default
538       // allocation order.
539       return std::make_pair(RC->allocation_order_begin(MF),
540                             RC->allocation_order_end(MF));
541
542     if (!STI.isTargetDarwin() && !hasFP(MF)) {
543       if (!STI.isR9Reserved())
544         return std::make_pair(GPROdd1,
545                               GPROdd1 + (sizeof(GPROdd1)/sizeof(unsigned)));
546       else
547         return std::make_pair(GPROdd4,
548                               GPROdd4 + (sizeof(GPROdd4)/sizeof(unsigned)));
549     } else if (FramePtr == ARM::R7) {
550       if (!STI.isR9Reserved())
551         return std::make_pair(GPROdd2,
552                               GPROdd2 + (sizeof(GPROdd2)/sizeof(unsigned)));
553       else
554         return std::make_pair(GPROdd5,
555                               GPROdd5 + (sizeof(GPROdd5)/sizeof(unsigned)));
556     } else { // FramePtr == ARM::R11
557       if (!STI.isR9Reserved())
558         return std::make_pair(GPROdd3,
559                               GPROdd3 + (sizeof(GPROdd3)/sizeof(unsigned)));
560       else
561         return std::make_pair(GPROdd6,
562                               GPROdd6 + (sizeof(GPROdd6)/sizeof(unsigned)));
563     }
564   }
565   return std::make_pair(RC->allocation_order_begin(MF),
566                         RC->allocation_order_end(MF));
567 }
568
569 /// ResolveRegAllocHint - Resolves the specified register allocation hint
570 /// to a physical register. Returns the physical register if it is successful.
571 unsigned
572 ARMBaseRegisterInfo::ResolveRegAllocHint(unsigned Type, unsigned Reg,
573                                          const MachineFunction &MF) const {
574   if (Reg == 0 || !isPhysicalRegister(Reg))
575     return 0;
576   if (Type == 0)
577     return Reg;
578   else if (Type == (unsigned)ARMRI::RegPairOdd)
579     // Odd register.
580     return getRegisterPairOdd(Reg, MF);
581   else if (Type == (unsigned)ARMRI::RegPairEven)
582     // Even register.
583     return getRegisterPairEven(Reg, MF);
584   return 0;
585 }
586
587 void
588 ARMBaseRegisterInfo::UpdateRegAllocHint(unsigned Reg, unsigned NewReg,
589                                         MachineFunction &MF) const {
590   MachineRegisterInfo *MRI = &MF.getRegInfo();
591   std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
592   if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
593        Hint.first == (unsigned)ARMRI::RegPairEven) &&
594       Hint.second && TargetRegisterInfo::isVirtualRegister(Hint.second)) {
595     // If 'Reg' is one of the even / odd register pair and it's now changed
596     // (e.g. coalesced) into a different register. The other register of the
597     // pair allocation hint must be updated to reflect the relationship
598     // change.
599     unsigned OtherReg = Hint.second;
600     Hint = MRI->getRegAllocationHint(OtherReg);
601     if (Hint.second == Reg)
602       // Make sure the pair has not already divorced.
603       MRI->setRegAllocationHint(OtherReg, Hint.first, NewReg);
604   }
605 }
606
607 /// hasFP - Return true if the specified function should have a dedicated frame
608 /// pointer register.  This is true if the function has variable sized allocas
609 /// or if frame pointer elimination is disabled.
610 ///
611 bool ARMBaseRegisterInfo::hasFP(const MachineFunction &MF) const {
612   const MachineFrameInfo *MFI = MF.getFrameInfo();
613   return ((DisableFramePointerElim(MF) && MFI->adjustsStack())||
614           needsStackRealignment(MF) ||
615           MFI->hasVarSizedObjects() ||
616           MFI->isFrameAddressTaken());
617 }
618
619 bool ARMBaseRegisterInfo::canRealignStack(const MachineFunction &MF) const {
620   const MachineFrameInfo *MFI = MF.getFrameInfo();
621   const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
622   return (RealignStack &&
623           !AFI->isThumb1OnlyFunction() &&
624           !MFI->hasVarSizedObjects());
625 }
626
627 bool ARMBaseRegisterInfo::
628 needsStackRealignment(const MachineFunction &MF) const {
629   const MachineFrameInfo *MFI = MF.getFrameInfo();
630   const Function *F = MF.getFunction();
631   const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
632   unsigned StackAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
633   bool requiresRealignment = ((MFI->getMaxAlignment() > StackAlign) ||
634                                F->hasFnAttr(Attribute::StackAlignment));
635     
636   // FIXME: Currently we don't support stack realignment for functions with
637   //        variable-sized allocas.
638   // FIXME: It's more complicated than this...
639   if (0 && requiresRealignment && MFI->hasVarSizedObjects())
640     report_fatal_error(
641       "Stack realignment in presense of dynamic allocas is not supported");
642   
643   // FIXME: This probably isn't the right place for this.
644   if (0 && requiresRealignment && AFI->isThumb1OnlyFunction())
645     report_fatal_error(
646       "Stack realignment in thumb1 functions is not supported");
647   
648   return requiresRealignment && canRealignStack(MF);
649 }
650
651 bool ARMBaseRegisterInfo::
652 cannotEliminateFrame(const MachineFunction &MF) const {
653   const MachineFrameInfo *MFI = MF.getFrameInfo();
654   if (DisableFramePointerElim(MF) && MFI->adjustsStack())
655     return true;
656   return MFI->hasVarSizedObjects() || MFI->isFrameAddressTaken()
657     || needsStackRealignment(MF);
658 }
659
660 /// estimateStackSize - Estimate and return the size of the frame.
661 static unsigned estimateStackSize(MachineFunction &MF) {
662   const MachineFrameInfo *FFI = MF.getFrameInfo();
663   int Offset = 0;
664   for (int i = FFI->getObjectIndexBegin(); i != 0; ++i) {
665     int FixedOff = -FFI->getObjectOffset(i);
666     if (FixedOff > Offset) Offset = FixedOff;
667   }
668   for (unsigned i = 0, e = FFI->getObjectIndexEnd(); i != e; ++i) {
669     if (FFI->isDeadObjectIndex(i))
670       continue;
671     Offset += FFI->getObjectSize(i);
672     unsigned Align = FFI->getObjectAlignment(i);
673     // Adjust to alignment boundary
674     Offset = (Offset+Align-1)/Align*Align;
675   }
676   return (unsigned)Offset;
677 }
678
679 /// estimateRSStackSizeLimit - Look at each instruction that references stack
680 /// frames and return the stack size limit beyond which some of these
681 /// instructions will require a scratch register during their expansion later.
682 unsigned
683 ARMBaseRegisterInfo::estimateRSStackSizeLimit(MachineFunction &MF) const {
684   unsigned Limit = (1 << 12) - 1;
685   for (MachineFunction::iterator BB = MF.begin(),E = MF.end(); BB != E; ++BB) {
686     for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
687          I != E; ++I) {
688       for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
689         if (!I->getOperand(i).isFI()) continue;
690
691         // When using ADDri to get the address of a stack object, 255 is the
692         // largest offset guaranteed to fit in the immediate offset.
693         if (I->getOpcode() == ARM::ADDri) {
694           Limit = std::min(Limit, (1U << 8) - 1);
695           break;
696         }
697
698         // Otherwise check the addressing mode.
699         switch (I->getDesc().TSFlags & ARMII::AddrModeMask) {
700         case ARMII::AddrMode3:
701         case ARMII::AddrModeT2_i8:
702           Limit = std::min(Limit, (1U << 8) - 1);
703           break;
704         case ARMII::AddrMode5:
705         case ARMII::AddrModeT2_i8s4:
706           Limit = std::min(Limit, ((1U << 8) - 1) * 4);
707           break;
708         case ARMII::AddrModeT2_i12:
709           if (hasFP(MF)) Limit = std::min(Limit, (1U << 8) - 1);
710           break;
711         case ARMII::AddrMode6:
712           // Addressing mode 6 (load/store) instructions can't encode an
713           // immediate offset for stack references.
714           return 0;
715         default:
716           break;
717         }
718         break; // At most one FI per instruction
719       }
720     }
721   }
722
723   return Limit;
724 }
725
726 void
727 ARMBaseRegisterInfo::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
728                                                        RegScavenger *RS) const {
729   // This tells PEI to spill the FP as if it is any other callee-save register
730   // to take advantage the eliminateFrameIndex machinery. This also ensures it
731   // is spilled in the order specified by getCalleeSavedRegs() to make it easier
732   // to combine multiple loads / stores.
733   bool CanEliminateFrame = true;
734   bool CS1Spilled = false;
735   bool LRSpilled = false;
736   unsigned NumGPRSpills = 0;
737   SmallVector<unsigned, 4> UnspilledCS1GPRs;
738   SmallVector<unsigned, 4> UnspilledCS2GPRs;
739   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
740   MachineFrameInfo *MFI = MF.getFrameInfo();
741
742   // Spill R4 if Thumb2 function requires stack realignment - it will be used as
743   // scratch register.
744   // FIXME: It will be better just to find spare register here.
745   if (needsStackRealignment(MF) &&
746       AFI->isThumb2Function())
747     MF.getRegInfo().setPhysRegUsed(ARM::R4);
748
749   // Spill LR if Thumb1 function uses variable length argument lists.
750   if (AFI->isThumb1OnlyFunction() && AFI->getVarArgsRegSaveSize() > 0)
751     MF.getRegInfo().setPhysRegUsed(ARM::LR);
752
753   // Don't spill FP if the frame can be eliminated. This is determined
754   // by scanning the callee-save registers to see if any is used.
755   const unsigned *CSRegs = getCalleeSavedRegs();
756   for (unsigned i = 0; CSRegs[i]; ++i) {
757     unsigned Reg = CSRegs[i];
758     bool Spilled = false;
759     if (MF.getRegInfo().isPhysRegUsed(Reg)) {
760       AFI->setCSRegisterIsSpilled(Reg);
761       Spilled = true;
762       CanEliminateFrame = false;
763     } else {
764       // Check alias registers too.
765       for (const unsigned *Aliases = getAliasSet(Reg); *Aliases; ++Aliases) {
766         if (MF.getRegInfo().isPhysRegUsed(*Aliases)) {
767           Spilled = true;
768           CanEliminateFrame = false;
769         }
770       }
771     }
772
773     if (!ARM::GPRRegisterClass->contains(Reg))
774       continue;
775
776     if (Spilled) {
777       NumGPRSpills++;
778
779       if (!STI.isTargetDarwin()) {
780         if (Reg == ARM::LR)
781           LRSpilled = true;
782         CS1Spilled = true;
783         continue;
784       }
785
786       // Keep track if LR and any of R4, R5, R6, and R7 is spilled.
787       switch (Reg) {
788       case ARM::LR:
789         LRSpilled = true;
790         // Fallthrough
791       case ARM::R4:
792       case ARM::R5:
793       case ARM::R6:
794       case ARM::R7:
795         CS1Spilled = true;
796         break;
797       default:
798         break;
799       }
800     } else {
801       if (!STI.isTargetDarwin()) {
802         UnspilledCS1GPRs.push_back(Reg);
803         continue;
804       }
805
806       switch (Reg) {
807       case ARM::R4:
808       case ARM::R5:
809       case ARM::R6:
810       case ARM::R7:
811       case ARM::LR:
812         UnspilledCS1GPRs.push_back(Reg);
813         break;
814       default:
815         UnspilledCS2GPRs.push_back(Reg);
816         break;
817       }
818     }
819   }
820
821   bool ForceLRSpill = false;
822   if (!LRSpilled && AFI->isThumb1OnlyFunction()) {
823     unsigned FnSize = TII.GetFunctionSizeInBytes(MF);
824     // Force LR to be spilled if the Thumb function size is > 2048. This enables
825     // use of BL to implement far jump. If it turns out that it's not needed
826     // then the branch fix up path will undo it.
827     if (FnSize >= (1 << 11)) {
828       CanEliminateFrame = false;
829       ForceLRSpill = true;
830     }
831   }
832
833   // If any of the stack slot references may be out of range of an immediate
834   // offset, make sure a register (or a spill slot) is available for the
835   // register scavenger. Note that if we're indexing off the frame pointer, the
836   // effective stack size is 4 bytes larger since the FP points to the stack
837   // slot of the previous FP. Also, if we have variable sized objects in the
838   // function, stack slot references will often be negative, and some of
839   // our instructions are positive-offset only, so conservatively consider
840   // that case to want a spill slot (or register) as well.
841   // FIXME: We could add logic to be more precise about negative offsets
842   //        and which instructions will need a scratch register for them. Is it
843   //        worth the effort and added fragility?
844   bool BigStack =
845     (RS && (estimateStackSize(MF) + (hasFP(MF) ? 4:0) >=
846             estimateRSStackSizeLimit(MF))) || MFI->hasVarSizedObjects();
847
848   bool ExtraCSSpill = false;
849   if (BigStack || !CanEliminateFrame || cannotEliminateFrame(MF)) {
850     AFI->setHasStackFrame(true);
851
852     // If LR is not spilled, but at least one of R4, R5, R6, and R7 is spilled.
853     // Spill LR as well so we can fold BX_RET to the registers restore (LDM).
854     if (!LRSpilled && CS1Spilled) {
855       MF.getRegInfo().setPhysRegUsed(ARM::LR);
856       AFI->setCSRegisterIsSpilled(ARM::LR);
857       NumGPRSpills++;
858       UnspilledCS1GPRs.erase(std::find(UnspilledCS1GPRs.begin(),
859                                     UnspilledCS1GPRs.end(), (unsigned)ARM::LR));
860       ForceLRSpill = false;
861       ExtraCSSpill = true;
862     }
863
864     // Darwin ABI requires FP to point to the stack slot that contains the
865     // previous FP.
866     if (STI.isTargetDarwin() || hasFP(MF)) {
867       MF.getRegInfo().setPhysRegUsed(FramePtr);
868       NumGPRSpills++;
869     }
870
871     // If stack and double are 8-byte aligned and we are spilling an odd number
872     // of GPRs. Spill one extra callee save GPR so we won't have to pad between
873     // the integer and double callee save areas.
874     unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
875     if (TargetAlign == 8 && (NumGPRSpills & 1)) {
876       if (CS1Spilled && !UnspilledCS1GPRs.empty()) {
877         for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) {
878           unsigned Reg = UnspilledCS1GPRs[i];
879           // Don't spill high register if the function is thumb1
880           if (!AFI->isThumb1OnlyFunction() ||
881               isARMLowRegister(Reg) || Reg == ARM::LR) {
882             MF.getRegInfo().setPhysRegUsed(Reg);
883             AFI->setCSRegisterIsSpilled(Reg);
884             if (!isReservedReg(MF, Reg))
885               ExtraCSSpill = true;
886             break;
887           }
888         }
889       } else if (!UnspilledCS2GPRs.empty() &&
890                  !AFI->isThumb1OnlyFunction()) {
891         unsigned Reg = UnspilledCS2GPRs.front();
892         MF.getRegInfo().setPhysRegUsed(Reg);
893         AFI->setCSRegisterIsSpilled(Reg);
894         if (!isReservedReg(MF, Reg))
895           ExtraCSSpill = true;
896       }
897     }
898
899     // Estimate if we might need to scavenge a register at some point in order
900     // to materialize a stack offset. If so, either spill one additional
901     // callee-saved register or reserve a special spill slot to facilitate
902     // register scavenging. Thumb1 needs a spill slot for stack pointer
903     // adjustments also, even when the frame itself is small.
904     if (BigStack && !ExtraCSSpill) {
905       // If any non-reserved CS register isn't spilled, just spill one or two
906       // extra. That should take care of it!
907       unsigned NumExtras = TargetAlign / 4;
908       SmallVector<unsigned, 2> Extras;
909       while (NumExtras && !UnspilledCS1GPRs.empty()) {
910         unsigned Reg = UnspilledCS1GPRs.back();
911         UnspilledCS1GPRs.pop_back();
912         if (!isReservedReg(MF, Reg) &&
913             (!AFI->isThumb1OnlyFunction() || isARMLowRegister(Reg) ||
914              Reg == ARM::LR)) {
915           Extras.push_back(Reg);
916           NumExtras--;
917         }
918       }
919       // For non-Thumb1 functions, also check for hi-reg CS registers
920       if (!AFI->isThumb1OnlyFunction()) {
921         while (NumExtras && !UnspilledCS2GPRs.empty()) {
922           unsigned Reg = UnspilledCS2GPRs.back();
923           UnspilledCS2GPRs.pop_back();
924           if (!isReservedReg(MF, Reg)) {
925             Extras.push_back(Reg);
926             NumExtras--;
927           }
928         }
929       }
930       if (Extras.size() && NumExtras == 0) {
931         for (unsigned i = 0, e = Extras.size(); i != e; ++i) {
932           MF.getRegInfo().setPhysRegUsed(Extras[i]);
933           AFI->setCSRegisterIsSpilled(Extras[i]);
934         }
935       } else if (!AFI->isThumb1OnlyFunction()) {
936         // note: Thumb1 functions spill to R12, not the stack.  Reserve a slot
937         // closest to SP or frame pointer.
938         const TargetRegisterClass *RC = ARM::GPRRegisterClass;
939         RS->setScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
940                                                            RC->getAlignment(),
941                                                            false));
942       }
943     }
944   }
945
946   if (ForceLRSpill) {
947     MF.getRegInfo().setPhysRegUsed(ARM::LR);
948     AFI->setCSRegisterIsSpilled(ARM::LR);
949     AFI->setLRIsSpilledForFarJump(true);
950   }
951 }
952
953 unsigned ARMBaseRegisterInfo::getRARegister() const {
954   return ARM::LR;
955 }
956
957 unsigned 
958 ARMBaseRegisterInfo::getFrameRegister(const MachineFunction &MF) const {
959   if (STI.isTargetDarwin() || hasFP(MF))
960     return FramePtr;
961   return ARM::SP;
962 }
963
964 int
965 ARMBaseRegisterInfo::getFrameIndexReference(const MachineFunction &MF, int FI,
966                                             unsigned &FrameReg) const {
967   const MachineFrameInfo *MFI = MF.getFrameInfo();
968   const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
969   int Offset = MFI->getObjectOffset(FI) + MFI->getStackSize();
970   bool isFixed = MFI->isFixedObjectIndex(FI);
971
972   FrameReg = ARM::SP;
973   if (AFI->isGPRCalleeSavedArea1Frame(FI))
974     Offset -= AFI->getGPRCalleeSavedArea1Offset();
975   else if (AFI->isGPRCalleeSavedArea2Frame(FI))
976     Offset -= AFI->getGPRCalleeSavedArea2Offset();
977   else if (AFI->isDPRCalleeSavedAreaFrame(FI))
978     Offset -= AFI->getDPRCalleeSavedAreaOffset();
979   else if (needsStackRealignment(MF)) {
980     // When dynamically realigning the stack, use the frame pointer for
981     // parameters, and the stack pointer for locals.
982     assert (hasFP(MF) && "dynamic stack realignment without a FP!");
983     if (isFixed) {
984       FrameReg = getFrameRegister(MF);
985       Offset -= AFI->getFramePtrSpillOffset();
986     }
987   } else if (hasFP(MF) && AFI->hasStackFrame()) {
988     if (isFixed || MFI->hasVarSizedObjects()) {
989       // Use frame pointer to reference fixed objects unless this is a
990       // frameless function.
991       FrameReg = getFrameRegister(MF);
992       Offset -= AFI->getFramePtrSpillOffset();
993     } else if (AFI->isThumb2Function()) {
994       // In Thumb2 mode, the negative offset is very limited.
995       int FPOffset = Offset - AFI->getFramePtrSpillOffset();
996       if (FPOffset >= -255 && FPOffset < 0) {
997         FrameReg = getFrameRegister(MF);
998         Offset = FPOffset;
999       }
1000     }
1001   }
1002   return Offset;
1003 }
1004
1005
1006 int
1007 ARMBaseRegisterInfo::getFrameIndexOffset(const MachineFunction &MF,
1008                                          int FI) const {
1009   unsigned FrameReg;
1010   return getFrameIndexReference(MF, FI, FrameReg);
1011 }
1012
1013 unsigned ARMBaseRegisterInfo::getEHExceptionRegister() const {
1014   llvm_unreachable("What is the exception register");
1015   return 0;
1016 }
1017
1018 unsigned ARMBaseRegisterInfo::getEHHandlerRegister() const {
1019   llvm_unreachable("What is the exception handler register");
1020   return 0;
1021 }
1022
1023 int ARMBaseRegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
1024   return ARMGenRegisterInfo::getDwarfRegNumFull(RegNum, 0);
1025 }
1026
1027 unsigned ARMBaseRegisterInfo::getRegisterPairEven(unsigned Reg,
1028                                               const MachineFunction &MF) const {
1029   switch (Reg) {
1030   default: break;
1031   // Return 0 if either register of the pair is a special register.
1032   // So no R12, etc.
1033   case ARM::R1:
1034     return ARM::R0;
1035   case ARM::R3:
1036     return ARM::R2;
1037   case ARM::R5:
1038     return ARM::R4;
1039   case ARM::R7:
1040     return isReservedReg(MF, ARM::R7)  ? 0 : ARM::R6;
1041   case ARM::R9:
1042     return isReservedReg(MF, ARM::R9)  ? 0 :ARM::R8;
1043   case ARM::R11:
1044     return isReservedReg(MF, ARM::R11) ? 0 : ARM::R10;
1045
1046   case ARM::S1:
1047     return ARM::S0;
1048   case ARM::S3:
1049     return ARM::S2;
1050   case ARM::S5:
1051     return ARM::S4;
1052   case ARM::S7:
1053     return ARM::S6;
1054   case ARM::S9:
1055     return ARM::S8;
1056   case ARM::S11:
1057     return ARM::S10;
1058   case ARM::S13:
1059     return ARM::S12;
1060   case ARM::S15:
1061     return ARM::S14;
1062   case ARM::S17:
1063     return ARM::S16;
1064   case ARM::S19:
1065     return ARM::S18;
1066   case ARM::S21:
1067     return ARM::S20;
1068   case ARM::S23:
1069     return ARM::S22;
1070   case ARM::S25:
1071     return ARM::S24;
1072   case ARM::S27:
1073     return ARM::S26;
1074   case ARM::S29:
1075     return ARM::S28;
1076   case ARM::S31:
1077     return ARM::S30;
1078
1079   case ARM::D1:
1080     return ARM::D0;
1081   case ARM::D3:
1082     return ARM::D2;
1083   case ARM::D5:
1084     return ARM::D4;
1085   case ARM::D7:
1086     return ARM::D6;
1087   case ARM::D9:
1088     return ARM::D8;
1089   case ARM::D11:
1090     return ARM::D10;
1091   case ARM::D13:
1092     return ARM::D12;
1093   case ARM::D15:
1094     return ARM::D14;
1095   case ARM::D17:
1096     return ARM::D16;
1097   case ARM::D19:
1098     return ARM::D18;
1099   case ARM::D21:
1100     return ARM::D20;
1101   case ARM::D23:
1102     return ARM::D22;
1103   case ARM::D25:
1104     return ARM::D24;
1105   case ARM::D27:
1106     return ARM::D26;
1107   case ARM::D29:
1108     return ARM::D28;
1109   case ARM::D31:
1110     return ARM::D30;
1111   }
1112
1113   return 0;
1114 }
1115
1116 unsigned ARMBaseRegisterInfo::getRegisterPairOdd(unsigned Reg,
1117                                              const MachineFunction &MF) const {
1118   switch (Reg) {
1119   default: break;
1120   // Return 0 if either register of the pair is a special register.
1121   // So no R12, etc.
1122   case ARM::R0:
1123     return ARM::R1;
1124   case ARM::R2:
1125     return ARM::R3;
1126   case ARM::R4:
1127     return ARM::R5;
1128   case ARM::R6:
1129     return isReservedReg(MF, ARM::R7)  ? 0 : ARM::R7;
1130   case ARM::R8:
1131     return isReservedReg(MF, ARM::R9)  ? 0 :ARM::R9;
1132   case ARM::R10:
1133     return isReservedReg(MF, ARM::R11) ? 0 : ARM::R11;
1134
1135   case ARM::S0:
1136     return ARM::S1;
1137   case ARM::S2:
1138     return ARM::S3;
1139   case ARM::S4:
1140     return ARM::S5;
1141   case ARM::S6:
1142     return ARM::S7;
1143   case ARM::S8:
1144     return ARM::S9;
1145   case ARM::S10:
1146     return ARM::S11;
1147   case ARM::S12:
1148     return ARM::S13;
1149   case ARM::S14:
1150     return ARM::S15;
1151   case ARM::S16:
1152     return ARM::S17;
1153   case ARM::S18:
1154     return ARM::S19;
1155   case ARM::S20:
1156     return ARM::S21;
1157   case ARM::S22:
1158     return ARM::S23;
1159   case ARM::S24:
1160     return ARM::S25;
1161   case ARM::S26:
1162     return ARM::S27;
1163   case ARM::S28:
1164     return ARM::S29;
1165   case ARM::S30:
1166     return ARM::S31;
1167
1168   case ARM::D0:
1169     return ARM::D1;
1170   case ARM::D2:
1171     return ARM::D3;
1172   case ARM::D4:
1173     return ARM::D5;
1174   case ARM::D6:
1175     return ARM::D7;
1176   case ARM::D8:
1177     return ARM::D9;
1178   case ARM::D10:
1179     return ARM::D11;
1180   case ARM::D12:
1181     return ARM::D13;
1182   case ARM::D14:
1183     return ARM::D15;
1184   case ARM::D16:
1185     return ARM::D17;
1186   case ARM::D18:
1187     return ARM::D19;
1188   case ARM::D20:
1189     return ARM::D21;
1190   case ARM::D22:
1191     return ARM::D23;
1192   case ARM::D24:
1193     return ARM::D25;
1194   case ARM::D26:
1195     return ARM::D27;
1196   case ARM::D28:
1197     return ARM::D29;
1198   case ARM::D30:
1199     return ARM::D31;
1200   }
1201
1202   return 0;
1203 }
1204
1205 /// emitLoadConstPool - Emits a load from constpool to materialize the
1206 /// specified immediate.
1207 void ARMBaseRegisterInfo::
1208 emitLoadConstPool(MachineBasicBlock &MBB,
1209                   MachineBasicBlock::iterator &MBBI,
1210                   DebugLoc dl,
1211                   unsigned DestReg, unsigned SubIdx, int Val,
1212                   ARMCC::CondCodes Pred,
1213                   unsigned PredReg) const {
1214   MachineFunction &MF = *MBB.getParent();
1215   MachineConstantPool *ConstantPool = MF.getConstantPool();
1216   const Constant *C =
1217         ConstantInt::get(Type::getInt32Ty(MF.getFunction()->getContext()), Val);
1218   unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
1219
1220   BuildMI(MBB, MBBI, dl, TII.get(ARM::LDRcp))
1221     .addReg(DestReg, getDefRegState(true), SubIdx)
1222     .addConstantPoolIndex(Idx)
1223     .addReg(0).addImm(0).addImm(Pred).addReg(PredReg);
1224 }
1225
1226 bool ARMBaseRegisterInfo::
1227 requiresRegisterScavenging(const MachineFunction &MF) const {
1228   return true;
1229 }
1230
1231 bool ARMBaseRegisterInfo::
1232 requiresFrameIndexScavenging(const MachineFunction &MF) const {
1233   return true;
1234 }
1235
1236 // hasReservedCallFrame - Under normal circumstances, when a frame pointer is
1237 // not required, we reserve argument space for call sites in the function
1238 // immediately on entry to the current function. This eliminates the need for
1239 // add/sub sp brackets around call sites. Returns true if the call frame is
1240 // included as part of the stack frame.
1241 bool ARMBaseRegisterInfo::
1242 hasReservedCallFrame(const MachineFunction &MF) const {
1243   const MachineFrameInfo *FFI = MF.getFrameInfo();
1244   unsigned CFSize = FFI->getMaxCallFrameSize();
1245   // It's not always a good idea to include the call frame as part of the
1246   // stack frame. ARM (especially Thumb) has small immediate offset to
1247   // address the stack frame. So a large call frame can cause poor codegen
1248   // and may even makes it impossible to scavenge a register.
1249   if (CFSize >= ((1 << 12) - 1) / 2)  // Half of imm12
1250     return false;
1251
1252   return !MF.getFrameInfo()->hasVarSizedObjects();
1253 }
1254
1255 // canSimplifyCallFramePseudos - If there is a reserved call frame, the
1256 // call frame pseudos can be simplified. Unlike most targets, having a FP
1257 // is not sufficient here since we still may reference some objects via SP
1258 // even when FP is available in Thumb2 mode.
1259 bool ARMBaseRegisterInfo::
1260 canSimplifyCallFramePseudos(const MachineFunction &MF) const {
1261   return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects();
1262 }
1263
1264 static void
1265 emitSPUpdate(bool isARM,
1266              MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
1267              DebugLoc dl, const ARMBaseInstrInfo &TII,
1268              int NumBytes,
1269              ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) {
1270   if (isARM)
1271     emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
1272                             Pred, PredReg, TII);
1273   else
1274     emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
1275                            Pred, PredReg, TII);
1276 }
1277
1278
1279 void ARMBaseRegisterInfo::
1280 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1281                               MachineBasicBlock::iterator I) const {
1282   if (!hasReservedCallFrame(MF)) {
1283     // If we have alloca, convert as follows:
1284     // ADJCALLSTACKDOWN -> sub, sp, sp, amount
1285     // ADJCALLSTACKUP   -> add, sp, sp, amount
1286     MachineInstr *Old = I;
1287     DebugLoc dl = Old->getDebugLoc();
1288     unsigned Amount = Old->getOperand(0).getImm();
1289     if (Amount != 0) {
1290       // We need to keep the stack aligned properly.  To do this, we round the
1291       // amount of space needed for the outgoing arguments up to the next
1292       // alignment boundary.
1293       unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
1294       Amount = (Amount+Align-1)/Align*Align;
1295
1296       ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1297       assert(!AFI->isThumb1OnlyFunction() &&
1298              "This eliminateCallFramePseudoInstr does not support Thumb1!");
1299       bool isARM = !AFI->isThumbFunction();
1300
1301       // Replace the pseudo instruction with a new instruction...
1302       unsigned Opc = Old->getOpcode();
1303       int PIdx = Old->findFirstPredOperandIdx();
1304       ARMCC::CondCodes Pred = (PIdx == -1)
1305         ? ARMCC::AL : (ARMCC::CondCodes)Old->getOperand(PIdx).getImm();
1306       if (Opc == ARM::ADJCALLSTACKDOWN || Opc == ARM::tADJCALLSTACKDOWN) {
1307         // Note: PredReg is operand 2 for ADJCALLSTACKDOWN.
1308         unsigned PredReg = Old->getOperand(2).getReg();
1309         emitSPUpdate(isARM, MBB, I, dl, TII, -Amount, Pred, PredReg);
1310       } else {
1311         // Note: PredReg is operand 3 for ADJCALLSTACKUP.
1312         unsigned PredReg = Old->getOperand(3).getReg();
1313         assert(Opc == ARM::ADJCALLSTACKUP || Opc == ARM::tADJCALLSTACKUP);
1314         emitSPUpdate(isARM, MBB, I, dl, TII, Amount, Pred, PredReg);
1315       }
1316     }
1317   }
1318   MBB.erase(I);
1319 }
1320
1321 unsigned
1322 ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
1323                                          int SPAdj, FrameIndexValue *Value,
1324                                          RegScavenger *RS) const {
1325   unsigned i = 0;
1326   MachineInstr &MI = *II;
1327   MachineBasicBlock &MBB = *MI.getParent();
1328   MachineFunction &MF = *MBB.getParent();
1329   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1330   assert(!AFI->isThumb1OnlyFunction() &&
1331          "This eliminateFrameIndex does not support Thumb1!");
1332
1333   while (!MI.getOperand(i).isFI()) {
1334     ++i;
1335     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
1336   }
1337
1338   int FrameIndex = MI.getOperand(i).getIndex();
1339   unsigned FrameReg;
1340
1341   int Offset = getFrameIndexReference(MF, FrameIndex, FrameReg);
1342   if (FrameReg != ARM::SP)
1343     SPAdj = 0;
1344   Offset += SPAdj;
1345
1346   // Special handling of dbg_value instructions.
1347   if (MI.isDebugValue()) {
1348     MI.getOperand(i).  ChangeToRegister(FrameReg, false /*isDef*/);
1349     MI.getOperand(i+1).ChangeToImmediate(Offset);
1350     return 0;
1351   }
1352
1353   // Modify MI as necessary to handle as much of 'Offset' as possible
1354   bool Done = false;
1355   if (!AFI->isThumbFunction())
1356     Done = rewriteARMFrameIndex(MI, i, FrameReg, Offset, TII);
1357   else {
1358     assert(AFI->isThumb2Function());
1359     Done = rewriteT2FrameIndex(MI, i, FrameReg, Offset, TII);
1360   }
1361   if (Done)
1362     return 0;
1363
1364   // If we get here, the immediate doesn't fit into the instruction.  We folded
1365   // as much as possible above, handle the rest, providing a register that is
1366   // SP+LargeImm.
1367   assert((Offset ||
1368           (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode4 ||
1369           (MI.getDesc().TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode6) &&
1370          "This code isn't needed if offset already handled!");
1371
1372   unsigned ScratchReg = 0;
1373   int PIdx = MI.findFirstPredOperandIdx();
1374   ARMCC::CondCodes Pred = (PIdx == -1)
1375     ? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(PIdx).getImm();
1376   unsigned PredReg = (PIdx == -1) ? 0 : MI.getOperand(PIdx+1).getReg();
1377   if (Offset == 0)
1378     // Must be addrmode4/6.
1379     MI.getOperand(i).ChangeToRegister(FrameReg, false, false, false);
1380   else {
1381     ScratchReg = MF.getRegInfo().createVirtualRegister(ARM::GPRRegisterClass);
1382     if (Value) {
1383       Value->first = FrameReg; // use the frame register as a kind indicator
1384       Value->second = Offset;
1385     }
1386     if (!AFI->isThumbFunction())
1387       emitARMRegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
1388                               Offset, Pred, PredReg, TII);
1389     else {
1390       assert(AFI->isThumb2Function());
1391       emitT2RegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
1392                              Offset, Pred, PredReg, TII);
1393     }
1394     MI.getOperand(i).ChangeToRegister(ScratchReg, false, false, true);
1395     if (!ReuseFrameIndexVals)
1396       ScratchReg = 0;
1397   }
1398   return ScratchReg;
1399 }
1400
1401 /// Move iterator past the next bunch of callee save load / store ops for
1402 /// the particular spill area (1: integer area 1, 2: integer area 2,
1403 /// 3: fp area, 0: don't care).
1404 static void movePastCSLoadStoreOps(MachineBasicBlock &MBB,
1405                                    MachineBasicBlock::iterator &MBBI,
1406                                    int Opc1, int Opc2, unsigned Area,
1407                                    const ARMSubtarget &STI) {
1408   while (MBBI != MBB.end() &&
1409          ((MBBI->getOpcode() == Opc1) || (MBBI->getOpcode() == Opc2)) &&
1410          MBBI->getOperand(1).isFI()) {
1411     if (Area != 0) {
1412       bool Done = false;
1413       unsigned Category = 0;
1414       switch (MBBI->getOperand(0).getReg()) {
1415       case ARM::R4:  case ARM::R5:  case ARM::R6: case ARM::R7:
1416       case ARM::LR:
1417         Category = 1;
1418         break;
1419       case ARM::R8:  case ARM::R9:  case ARM::R10: case ARM::R11:
1420         Category = STI.isTargetDarwin() ? 2 : 1;
1421         break;
1422       case ARM::D8:  case ARM::D9:  case ARM::D10: case ARM::D11:
1423       case ARM::D12: case ARM::D13: case ARM::D14: case ARM::D15:
1424         Category = 3;
1425         break;
1426       default:
1427         Done = true;
1428         break;
1429       }
1430       if (Done || Category != Area)
1431         break;
1432     }
1433
1434     ++MBBI;
1435   }
1436 }
1437
1438 void ARMBaseRegisterInfo::
1439 emitPrologue(MachineFunction &MF) const {
1440   MachineBasicBlock &MBB = MF.front();
1441   MachineBasicBlock::iterator MBBI = MBB.begin();
1442   MachineFrameInfo  *MFI = MF.getFrameInfo();
1443   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1444   assert(!AFI->isThumb1OnlyFunction() &&
1445          "This emitPrologue does not support Thumb1!");
1446   bool isARM = !AFI->isThumbFunction();
1447   unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize();
1448   unsigned NumBytes = MFI->getStackSize();
1449   const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
1450   DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
1451
1452   // Determine the sizes of each callee-save spill areas and record which frame
1453   // belongs to which callee-save spill areas.
1454   unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0;
1455   int FramePtrSpillFI = 0;
1456
1457   // Allocate the vararg register save area. This is not counted in NumBytes.
1458   if (VARegSaveSize)
1459     emitSPUpdate(isARM, MBB, MBBI, dl, TII, -VARegSaveSize);
1460
1461   if (!AFI->hasStackFrame()) {
1462     if (NumBytes != 0)
1463       emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes);
1464     return;
1465   }
1466
1467   for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1468     unsigned Reg = CSI[i].getReg();
1469     int FI = CSI[i].getFrameIdx();
1470     switch (Reg) {
1471     case ARM::R4:
1472     case ARM::R5:
1473     case ARM::R6:
1474     case ARM::R7:
1475     case ARM::LR:
1476       if (Reg == FramePtr)
1477         FramePtrSpillFI = FI;
1478       AFI->addGPRCalleeSavedArea1Frame(FI);
1479       GPRCS1Size += 4;
1480       break;
1481     case ARM::R8:
1482     case ARM::R9:
1483     case ARM::R10:
1484     case ARM::R11:
1485       if (Reg == FramePtr)
1486         FramePtrSpillFI = FI;
1487       if (STI.isTargetDarwin()) {
1488         AFI->addGPRCalleeSavedArea2Frame(FI);
1489         GPRCS2Size += 4;
1490       } else {
1491         AFI->addGPRCalleeSavedArea1Frame(FI);
1492         GPRCS1Size += 4;
1493       }
1494       break;
1495     default:
1496       AFI->addDPRCalleeSavedAreaFrame(FI);
1497       DPRCSSize += 8;
1498     }
1499   }
1500
1501   // Build the new SUBri to adjust SP for integer callee-save spill area 1.
1502   emitSPUpdate(isARM, MBB, MBBI, dl, TII, -GPRCS1Size);
1503   movePastCSLoadStoreOps(MBB, MBBI, ARM::STR, ARM::t2STRi12, 1, STI);
1504
1505   // Set FP to point to the stack slot that contains the previous FP.
1506   // For Darwin, FP is R7, which has now been stored in spill area 1.
1507   // Otherwise, if this is not Darwin, all the callee-saved registers go
1508   // into spill area 1, including the FP in R11.  In either case, it is
1509   // now safe to emit this assignment.
1510   if (STI.isTargetDarwin() || hasFP(MF)) {
1511     unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : ARM::t2ADDri;
1512     MachineInstrBuilder MIB =
1513       BuildMI(MBB, MBBI, dl, TII.get(ADDriOpc), FramePtr)
1514       .addFrameIndex(FramePtrSpillFI).addImm(0);
1515     AddDefaultCC(AddDefaultPred(MIB));
1516   }
1517
1518   // Build the new SUBri to adjust SP for integer callee-save spill area 2.
1519   emitSPUpdate(isARM, MBB, MBBI, dl, TII, -GPRCS2Size);
1520
1521   // Build the new SUBri to adjust SP for FP callee-save spill area.
1522   movePastCSLoadStoreOps(MBB, MBBI, ARM::STR, ARM::t2STRi12, 2, STI);
1523   emitSPUpdate(isARM, MBB, MBBI, dl, TII, -DPRCSSize);
1524
1525   // Determine starting offsets of spill areas.
1526   unsigned DPRCSOffset  = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize);
1527   unsigned GPRCS2Offset = DPRCSOffset + DPRCSSize;
1528   unsigned GPRCS1Offset = GPRCS2Offset + GPRCS2Size;
1529   if (STI.isTargetDarwin() || hasFP(MF))
1530     AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) +
1531                                 NumBytes);
1532   AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset);
1533   AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset);
1534   AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset);
1535
1536   movePastCSLoadStoreOps(MBB, MBBI, ARM::VSTRD, 0, 3, STI);
1537   NumBytes = DPRCSOffset;
1538   if (NumBytes) {
1539     // Adjust SP after all the callee-save spills.
1540     emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes);
1541   }
1542
1543   if (STI.isTargetELF() && hasFP(MF)) {
1544     MFI->setOffsetAdjustment(MFI->getOffsetAdjustment() -
1545                              AFI->getFramePtrSpillOffset());
1546   }
1547
1548   AFI->setGPRCalleeSavedArea1Size(GPRCS1Size);
1549   AFI->setGPRCalleeSavedArea2Size(GPRCS2Size);
1550   AFI->setDPRCalleeSavedAreaSize(DPRCSSize);
1551
1552   // If we need dynamic stack realignment, do it here.
1553   if (needsStackRealignment(MF)) {
1554     unsigned MaxAlign = MFI->getMaxAlignment();
1555     assert (!AFI->isThumb1OnlyFunction());
1556     if (!AFI->isThumbFunction()) {
1557       // Emit bic sp, sp, MaxAlign
1558       AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl,
1559                                           TII.get(ARM::BICri), ARM::SP)
1560                                   .addReg(ARM::SP, RegState::Kill)
1561                                   .addImm(MaxAlign-1)));
1562     } else {
1563       // We cannot use sp as source/dest register here, thus we're emitting the
1564       // following sequence:
1565       // mov r4, sp
1566       // bic r4, r4, MaxAlign
1567       // mov sp, r4
1568       // FIXME: It will be better just to find spare register here.
1569       BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2tgpr), ARM::R4)
1570         .addReg(ARM::SP, RegState::Kill);
1571       AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl,
1572                                           TII.get(ARM::t2BICri), ARM::R4)
1573                                   .addReg(ARM::R4, RegState::Kill)
1574                                   .addImm(MaxAlign-1)));
1575       BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVtgpr2gpr), ARM::SP)
1576         .addReg(ARM::R4, RegState::Kill);
1577     }
1578   }
1579 }
1580
1581 static bool isCalleeSavedRegister(unsigned Reg, const unsigned *CSRegs) {
1582   for (unsigned i = 0; CSRegs[i]; ++i)
1583     if (Reg == CSRegs[i])
1584       return true;
1585   return false;
1586 }
1587
1588 static bool isCSRestore(MachineInstr *MI,
1589                         const ARMBaseInstrInfo &TII,
1590                         const unsigned *CSRegs) {
1591   return ((MI->getOpcode() == (int)ARM::VLDRD ||
1592            MI->getOpcode() == (int)ARM::LDR ||
1593            MI->getOpcode() == (int)ARM::t2LDRi12) &&
1594           MI->getOperand(1).isFI() &&
1595           isCalleeSavedRegister(MI->getOperand(0).getReg(), CSRegs));
1596 }
1597
1598 void ARMBaseRegisterInfo::
1599 emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const {
1600   MachineBasicBlock::iterator MBBI = prior(MBB.end());
1601   assert(MBBI->getDesc().isReturn() &&
1602          "Can only insert epilog into returning blocks");
1603   unsigned RetOpcode = MBBI->getOpcode();
1604   DebugLoc dl = MBBI->getDebugLoc();
1605   MachineFrameInfo *MFI = MF.getFrameInfo();
1606   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1607   assert(!AFI->isThumb1OnlyFunction() &&
1608          "This emitEpilogue does not support Thumb1!");
1609   bool isARM = !AFI->isThumbFunction();
1610
1611   unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize();
1612   int NumBytes = (int)MFI->getStackSize();
1613
1614   if (!AFI->hasStackFrame()) {
1615     if (NumBytes != 0)
1616       emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
1617   } else {
1618     // Unwind MBBI to point to first LDR / VLDRD.
1619     const unsigned *CSRegs = getCalleeSavedRegs();
1620     if (MBBI != MBB.begin()) {
1621       do
1622         --MBBI;
1623       while (MBBI != MBB.begin() && isCSRestore(MBBI, TII, CSRegs));
1624       if (!isCSRestore(MBBI, TII, CSRegs))
1625         ++MBBI;
1626     }
1627
1628     // Move SP to start of FP callee save spill area.
1629     NumBytes -= (AFI->getGPRCalleeSavedArea1Size() +
1630                  AFI->getGPRCalleeSavedArea2Size() +
1631                  AFI->getDPRCalleeSavedAreaSize());
1632
1633     // Darwin ABI requires FP to point to the stack slot that contains the
1634     // previous FP.
1635     bool HasFP = hasFP(MF);
1636     if ((STI.isTargetDarwin() && NumBytes) || HasFP) {
1637       NumBytes = AFI->getFramePtrSpillOffset() - NumBytes;
1638       // Reset SP based on frame pointer only if the stack frame extends beyond
1639       // frame pointer stack slot or target is ELF and the function has FP.
1640       if (HasFP ||
1641           AFI->getGPRCalleeSavedArea2Size() ||
1642           AFI->getDPRCalleeSavedAreaSize()  ||
1643           AFI->getDPRCalleeSavedAreaOffset()) {
1644         if (NumBytes) {
1645           if (isARM)
1646             emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes,
1647                                     ARMCC::AL, 0, TII);
1648           else
1649             emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes,
1650                                     ARMCC::AL, 0, TII);
1651         } else {
1652           // Thumb2 or ARM.
1653           if (isARM)
1654             BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), ARM::SP)
1655               .addReg(FramePtr)
1656               .addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
1657           else
1658             BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2gpr), ARM::SP)
1659               .addReg(FramePtr);
1660         }
1661       }
1662     } else if (NumBytes)
1663       emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
1664
1665     // Move SP to start of integer callee save spill area 2.
1666     movePastCSLoadStoreOps(MBB, MBBI, ARM::VLDRD, 0, 3, STI);
1667     emitSPUpdate(isARM, MBB, MBBI, dl, TII, AFI->getDPRCalleeSavedAreaSize());
1668
1669     // Move SP to start of integer callee save spill area 1.
1670     movePastCSLoadStoreOps(MBB, MBBI, ARM::LDR, ARM::t2LDRi12, 2, STI);
1671     emitSPUpdate(isARM, MBB, MBBI, dl, TII, AFI->getGPRCalleeSavedArea2Size());
1672
1673     // Move SP to SP upon entry to the function.
1674     movePastCSLoadStoreOps(MBB, MBBI, ARM::LDR, ARM::t2LDRi12, 1, STI);
1675     emitSPUpdate(isARM, MBB, MBBI, dl, TII, AFI->getGPRCalleeSavedArea1Size());
1676   }
1677
1678   if (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNdiND ||
1679       RetOpcode == ARM::TCRETURNri || RetOpcode == ARM::TCRETURNriND) {
1680     // Tail call return: adjust the stack pointer and jump to callee.
1681     MBBI = prior(MBB.end());
1682     MachineOperand &JumpTarget = MBBI->getOperand(0);
1683
1684     // Jump to label or value in register.
1685     if (RetOpcode == ARM::TCRETURNdi) {
1686       BuildMI(MBB, MBBI, dl, 
1687             TII.get(STI.isThumb() ? ARM::TAILJMPdt : ARM::TAILJMPd)).
1688         addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
1689                          JumpTarget.getTargetFlags());
1690     } else if (RetOpcode == ARM::TCRETURNdiND) {
1691       BuildMI(MBB, MBBI, dl,
1692             TII.get(STI.isThumb() ? ARM::TAILJMPdNDt : ARM::TAILJMPdND)).
1693         addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
1694                          JumpTarget.getTargetFlags());
1695     } else if (RetOpcode == ARM::TCRETURNri) {
1696       BuildMI(MBB, MBBI, dl, TII.get(ARM::TAILJMPr)).
1697         addReg(JumpTarget.getReg(), RegState::Kill);
1698     } else if (RetOpcode == ARM::TCRETURNriND) {
1699       BuildMI(MBB, MBBI, dl, TII.get(ARM::TAILJMPrND)).
1700         addReg(JumpTarget.getReg(), RegState::Kill);
1701     } 
1702
1703     MachineInstr *NewMI = prior(MBBI);
1704     for (unsigned i = 1, e = MBBI->getNumOperands(); i != e; ++i)
1705       NewMI->addOperand(MBBI->getOperand(i));
1706
1707     // Delete the pseudo instruction TCRETURN.
1708     MBB.erase(MBBI);
1709   }
1710
1711   if (VARegSaveSize)
1712     emitSPUpdate(isARM, MBB, MBBI, dl, TII, VARegSaveSize);
1713 }
1714
1715 #include "ARMGenRegisterInfo.inc"