- Tell PEI that PPC will handle stack frame rounding itself.
[oota-llvm.git] / lib / Target / PowerPC / PPCRegisterInfo.cpp
1 //===- PPCRegisterInfo.cpp - PowerPC Register Information -------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the PowerPC implementation of the MRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "reginfo"
15 #include "PPC.h"
16 #include "PPCInstrBuilder.h"
17 #include "PPCMachineFunctionInfo.h"
18 #include "PPCRegisterInfo.h"
19 #include "PPCFrameInfo.h"
20 #include "PPCSubtarget.h"
21 #include "llvm/Constants.h"
22 #include "llvm/Type.h"
23 #include "llvm/CodeGen/ValueTypes.h"
24 #include "llvm/CodeGen/MachineInstrBuilder.h"
25 #include "llvm/CodeGen/MachineDebugInfo.h"
26 #include "llvm/CodeGen/MachineFunction.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineLocation.h"
29 #include "llvm/CodeGen/SelectionDAGNodes.h"
30 #include "llvm/Target/TargetFrameInfo.h"
31 #include "llvm/Target/TargetInstrInfo.h"
32 #include "llvm/Target/TargetMachine.h"
33 #include "llvm/Target/TargetOptions.h"
34 #include "llvm/Support/CommandLine.h"
35 #include "llvm/Support/Debug.h"
36 #include "llvm/Support/MathExtras.h"
37 #include "llvm/ADT/STLExtras.h"
38 #include <cstdlib>
39 using namespace llvm;
40
41 /// getRegisterNumbering - Given the enum value for some register, e.g.
42 /// PPC::F14, return the number that it corresponds to (e.g. 14).
43 unsigned PPCRegisterInfo::getRegisterNumbering(unsigned RegEnum) {
44   using namespace PPC;
45   switch (RegEnum) {
46   case R0 :  case X0 :  case F0 :  case V0 : case CR0:  return  0;
47   case R1 :  case X1 :  case F1 :  case V1 : case CR1:  return  1;
48   case R2 :  case X2 :  case F2 :  case V2 : case CR2:  return  2;
49   case R3 :  case X3 :  case F3 :  case V3 : case CR3:  return  3;
50   case R4 :  case X4 :  case F4 :  case V4 : case CR4:  return  4;
51   case R5 :  case X5 :  case F5 :  case V5 : case CR5:  return  5;
52   case R6 :  case X6 :  case F6 :  case V6 : case CR6:  return  6;
53   case R7 :  case X7 :  case F7 :  case V7 : case CR7:  return  7;
54   case R8 :  case X8 :  case F8 :  case V8 : return  8;
55   case R9 :  case X9 :  case F9 :  case V9 : return  9;
56   case R10:  case X10:  case F10:  case V10: return 10;
57   case R11:  case X11:  case F11:  case V11: return 11;
58   case R12:  case X12:  case F12:  case V12: return 12;
59   case R13:  case X13:  case F13:  case V13: return 13;
60   case R14:  case X14:  case F14:  case V14: return 14;
61   case R15:  case X15:  case F15:  case V15: return 15;
62   case R16:  case X16:  case F16:  case V16: return 16;
63   case R17:  case X17:  case F17:  case V17: return 17;
64   case R18:  case X18:  case F18:  case V18: return 18;
65   case R19:  case X19:  case F19:  case V19: return 19;
66   case R20:  case X20:  case F20:  case V20: return 20;
67   case R21:  case X21:  case F21:  case V21: return 21;
68   case R22:  case X22:  case F22:  case V22: return 22;
69   case R23:  case X23:  case F23:  case V23: return 23;
70   case R24:  case X24:  case F24:  case V24: return 24;
71   case R25:  case X25:  case F25:  case V25: return 25;
72   case R26:  case X26:  case F26:  case V26: return 26;
73   case R27:  case X27:  case F27:  case V27: return 27;
74   case R28:  case X28:  case F28:  case V28: return 28;
75   case R29:  case X29:  case F29:  case V29: return 29;
76   case R30:  case X30:  case F30:  case V30: return 30;
77   case R31:  case X31:  case F31:  case V31: return 31;
78   default:
79     cerr << "Unhandled reg in PPCRegisterInfo::getRegisterNumbering!\n";
80     abort();
81   }
82 }
83
84 PPCRegisterInfo::PPCRegisterInfo(const PPCSubtarget &ST,
85                                  const TargetInstrInfo &tii)
86   : PPCGenRegisterInfo(PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP),
87     Subtarget(ST), TII(tii) {
88   ImmToIdxMap[PPC::LD]   = PPC::LDX;    ImmToIdxMap[PPC::STD]  = PPC::STDX;
89   ImmToIdxMap[PPC::LBZ]  = PPC::LBZX;   ImmToIdxMap[PPC::STB]  = PPC::STBX;
90   ImmToIdxMap[PPC::LHZ]  = PPC::LHZX;   ImmToIdxMap[PPC::LHA]  = PPC::LHAX;
91   ImmToIdxMap[PPC::LWZ]  = PPC::LWZX;   ImmToIdxMap[PPC::LWA]  = PPC::LWAX;
92   ImmToIdxMap[PPC::LFS]  = PPC::LFSX;   ImmToIdxMap[PPC::LFD]  = PPC::LFDX;
93   ImmToIdxMap[PPC::STH]  = PPC::STHX;   ImmToIdxMap[PPC::STW]  = PPC::STWX;
94   ImmToIdxMap[PPC::STFS] = PPC::STFSX;  ImmToIdxMap[PPC::STFD] = PPC::STFDX;
95   ImmToIdxMap[PPC::ADDI] = PPC::ADD4;
96   ImmToIdxMap[PPC::ADDI8] = PPC::ADD8;
97 }
98
99 void
100 PPCRegisterInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
101                                      MachineBasicBlock::iterator MI,
102                                      unsigned SrcReg, int FrameIdx,
103                                      const TargetRegisterClass *RC) const {
104   if (RC == PPC::GPRCRegisterClass) {
105     if (SrcReg != PPC::LR) {
106       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STW)).addReg(SrcReg),
107                         FrameIdx);
108     } else {
109       // FIXME: this spills LR immediately to memory in one step.  To do this,
110       // we use R11, which we know cannot be used in the prolog/epilog.  This is
111       // a hack.
112       BuildMI(MBB, MI, TII.get(PPC::MFLR), PPC::R11);
113       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STW)).addReg(PPC::R11),
114                         FrameIdx);
115     }
116   } else if (RC == PPC::G8RCRegisterClass) {
117     if (SrcReg != PPC::LR8) {
118       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STD)).addReg(SrcReg),
119                         FrameIdx);
120     } else {
121       // FIXME: this spills LR immediately to memory in one step.  To do this,
122       // we use R11, which we know cannot be used in the prolog/epilog.  This is
123       // a hack.
124       BuildMI(MBB, MI, TII.get(PPC::MFLR8), PPC::X11);
125       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STD)).addReg(PPC::X11),
126                         FrameIdx);
127     }
128   } else if (RC == PPC::F8RCRegisterClass) {
129     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STFD)).addReg(SrcReg),
130                       FrameIdx);
131   } else if (RC == PPC::F4RCRegisterClass) {
132     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STFS)).addReg(SrcReg),
133                       FrameIdx);
134   } else if (RC == PPC::CRRCRegisterClass) {
135     // FIXME: We use R0 here, because it isn't available for RA.
136     // We need to store the CR in the low 4-bits of the saved value.  First,
137     // issue a MFCR to save all of the CRBits.
138     BuildMI(MBB, MI, TII.get(PPC::MFCR), PPC::R0);
139     
140     // If the saved register wasn't CR0, shift the bits left so that they are in
141     // CR0's slot.
142     if (SrcReg != PPC::CR0) {
143       unsigned ShiftBits = PPCRegisterInfo::getRegisterNumbering(SrcReg)*4;
144       // rlwinm r0, r0, ShiftBits, 0, 31.
145       BuildMI(MBB, MI, TII.get(PPC::RLWINM), PPC::R0)
146         .addReg(PPC::R0).addImm(ShiftBits).addImm(0).addImm(31);
147     }
148     
149     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::STW)).addReg(PPC::R0),
150                       FrameIdx);
151   } else if (RC == PPC::VRRCRegisterClass) {
152     // We don't have indexed addressing for vector loads.  Emit:
153     // R11 = ADDI FI#
154     // Dest = LVX R0, R11
155     // 
156     // FIXME: We use R0 here, because it isn't available for RA.
157     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::ADDI), PPC::R0),
158                       FrameIdx, 0, 0);
159     BuildMI(MBB, MI, TII.get(PPC::STVX))
160       .addReg(SrcReg).addReg(PPC::R0).addReg(PPC::R0);
161   } else {
162     assert(0 && "Unknown regclass!");
163     abort();
164   }
165 }
166
167 void
168 PPCRegisterInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
169                                       MachineBasicBlock::iterator MI,
170                                       unsigned DestReg, int FrameIdx,
171                                       const TargetRegisterClass *RC) const {
172   if (RC == PPC::GPRCRegisterClass) {
173     if (DestReg != PPC::LR) {
174       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LWZ), DestReg), FrameIdx);
175     } else {
176       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LWZ), PPC::R11),FrameIdx);
177       BuildMI(MBB, MI, TII.get(PPC::MTLR)).addReg(PPC::R11);
178     }
179   } else if (RC == PPC::G8RCRegisterClass) {
180     if (DestReg != PPC::LR8) {
181       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LD), DestReg), FrameIdx);
182     } else {
183       addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LD), PPC::R11), FrameIdx);
184       BuildMI(MBB, MI, TII.get(PPC::MTLR8)).addReg(PPC::R11);
185     }
186   } else if (RC == PPC::F8RCRegisterClass) {
187     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LFD), DestReg), FrameIdx);
188   } else if (RC == PPC::F4RCRegisterClass) {
189     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LFS), DestReg), FrameIdx);
190   } else if (RC == PPC::CRRCRegisterClass) {
191     // FIXME: We use R0 here, because it isn't available for RA.
192     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::LWZ), PPC::R0), FrameIdx);
193     
194     // If the reloaded register isn't CR0, shift the bits right so that they are
195     // in the right CR's slot.
196     if (DestReg != PPC::CR0) {
197       unsigned ShiftBits = PPCRegisterInfo::getRegisterNumbering(DestReg)*4;
198       // rlwinm r11, r11, 32-ShiftBits, 0, 31.
199       BuildMI(MBB, MI, TII.get(PPC::RLWINM), PPC::R0)
200         .addReg(PPC::R0).addImm(32-ShiftBits).addImm(0).addImm(31);
201     }
202     
203     BuildMI(MBB, MI, TII.get(PPC::MTCRF), DestReg).addReg(PPC::R0);
204   } else if (RC == PPC::VRRCRegisterClass) {
205     // We don't have indexed addressing for vector loads.  Emit:
206     // R11 = ADDI FI#
207     // Dest = LVX R0, R11
208     // 
209     // FIXME: We use R0 here, because it isn't available for RA.
210     addFrameReference(BuildMI(MBB, MI, TII.get(PPC::ADDI), PPC::R0),
211                       FrameIdx, 0, 0);
212     BuildMI(MBB, MI, TII.get(PPC::LVX),DestReg).addReg(PPC::R0).addReg(PPC::R0);
213   } else {
214     assert(0 && "Unknown regclass!");
215     abort();
216   }
217 }
218
219 void PPCRegisterInfo::copyRegToReg(MachineBasicBlock &MBB,
220                                    MachineBasicBlock::iterator MI,
221                                    unsigned DestReg, unsigned SrcReg,
222                                    const TargetRegisterClass *RC) const {
223   if (RC == PPC::GPRCRegisterClass) {
224     BuildMI(MBB, MI, TII.get(PPC::OR), DestReg).addReg(SrcReg).addReg(SrcReg);
225   } else if (RC == PPC::G8RCRegisterClass) {
226     BuildMI(MBB, MI, TII.get(PPC::OR8), DestReg).addReg(SrcReg).addReg(SrcReg);
227   } else if (RC == PPC::F4RCRegisterClass) {
228     BuildMI(MBB, MI, TII.get(PPC::FMRS), DestReg).addReg(SrcReg);
229   } else if (RC == PPC::F8RCRegisterClass) {
230     BuildMI(MBB, MI, TII.get(PPC::FMRD), DestReg).addReg(SrcReg);
231   } else if (RC == PPC::CRRCRegisterClass) {
232     BuildMI(MBB, MI, TII.get(PPC::MCRF), DestReg).addReg(SrcReg);
233   } else if (RC == PPC::VRRCRegisterClass) {
234     BuildMI(MBB, MI, TII.get(PPC::VOR), DestReg).addReg(SrcReg).addReg(SrcReg);
235   } else {
236     cerr << "Attempt to copy register that is not GPR or FPR";
237     abort();
238   }
239 }
240
241 const unsigned* PPCRegisterInfo::getCalleeSavedRegs() const {
242   // 32-bit Darwin calling convention. 
243   static const unsigned Darwin32_CalleeSavedRegs[] = {
244               PPC::R13, PPC::R14, PPC::R15,
245     PPC::R16, PPC::R17, PPC::R18, PPC::R19,
246     PPC::R20, PPC::R21, PPC::R22, PPC::R23,
247     PPC::R24, PPC::R25, PPC::R26, PPC::R27,
248     PPC::R28, PPC::R29, PPC::R30, PPC::R31,
249
250     PPC::F14, PPC::F15, PPC::F16, PPC::F17,
251     PPC::F18, PPC::F19, PPC::F20, PPC::F21,
252     PPC::F22, PPC::F23, PPC::F24, PPC::F25,
253     PPC::F26, PPC::F27, PPC::F28, PPC::F29,
254     PPC::F30, PPC::F31,
255     
256     PPC::CR2, PPC::CR3, PPC::CR4,
257     PPC::V20, PPC::V21, PPC::V22, PPC::V23,
258     PPC::V24, PPC::V25, PPC::V26, PPC::V27,
259     PPC::V28, PPC::V29, PPC::V30, PPC::V31,
260     
261     PPC::LR,  0
262   };
263   // 64-bit Darwin calling convention. 
264   static const unsigned Darwin64_CalleeSavedRegs[] = {
265     PPC::X14, PPC::X15,
266     PPC::X16, PPC::X17, PPC::X18, PPC::X19,
267     PPC::X20, PPC::X21, PPC::X22, PPC::X23,
268     PPC::X24, PPC::X25, PPC::X26, PPC::X27,
269     PPC::X28, PPC::X29, PPC::X30, PPC::X31,
270     
271     PPC::F14, PPC::F15, PPC::F16, PPC::F17,
272     PPC::F18, PPC::F19, PPC::F20, PPC::F21,
273     PPC::F22, PPC::F23, PPC::F24, PPC::F25,
274     PPC::F26, PPC::F27, PPC::F28, PPC::F29,
275     PPC::F30, PPC::F31,
276     
277     PPC::CR2, PPC::CR3, PPC::CR4,
278     PPC::V20, PPC::V21, PPC::V22, PPC::V23,
279     PPC::V24, PPC::V25, PPC::V26, PPC::V27,
280     PPC::V28, PPC::V29, PPC::V30, PPC::V31,
281     
282     PPC::LR8,  0
283   };
284   
285   return Subtarget.isPPC64() ? Darwin64_CalleeSavedRegs :
286                                Darwin32_CalleeSavedRegs;
287 }
288
289 const TargetRegisterClass* const*
290 PPCRegisterInfo::getCalleeSavedRegClasses() const {
291   // 32-bit Darwin calling convention. 
292   static const TargetRegisterClass * const Darwin32_CalleeSavedRegClasses[] = {
293                        &PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,
294     &PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,
295     &PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,
296     &PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,
297     &PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,&PPC::GPRCRegClass,
298
299     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
300     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
301     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
302     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
303     &PPC::F8RCRegClass,&PPC::F8RCRegClass,
304     
305     &PPC::CRRCRegClass,&PPC::CRRCRegClass,&PPC::CRRCRegClass,
306     
307     &PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,
308     &PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,
309     &PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,
310     
311     &PPC::GPRCRegClass, 0
312   };
313   
314   // 64-bit Darwin calling convention. 
315   static const TargetRegisterClass * const Darwin64_CalleeSavedRegClasses[] = {
316     &PPC::G8RCRegClass,&PPC::G8RCRegClass,
317     &PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,
318     &PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,
319     &PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,
320     &PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,&PPC::G8RCRegClass,
321     
322     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
323     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
324     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
325     &PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,&PPC::F8RCRegClass,
326     &PPC::F8RCRegClass,&PPC::F8RCRegClass,
327     
328     &PPC::CRRCRegClass,&PPC::CRRCRegClass,&PPC::CRRCRegClass,
329     
330     &PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,
331     &PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,
332     &PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,&PPC::VRRCRegClass,
333     
334     &PPC::G8RCRegClass, 0
335   };
336  
337   return Subtarget.isPPC64() ? Darwin64_CalleeSavedRegClasses :
338                                Darwin32_CalleeSavedRegClasses;
339 }
340
341 /// foldMemoryOperand - PowerPC (like most RISC's) can only fold spills into
342 /// copy instructions, turning them into load/store instructions.
343 MachineInstr *PPCRegisterInfo::foldMemoryOperand(MachineInstr *MI,
344                                                  unsigned OpNum,
345                                                  int FrameIndex) const {
346   // Make sure this is a reg-reg copy.  Note that we can't handle MCRF, because
347   // it takes more than one instruction to store it.
348   unsigned Opc = MI->getOpcode();
349
350   MachineInstr *NewMI = NULL;
351   if ((Opc == PPC::OR &&
352        MI->getOperand(1).getReg() == MI->getOperand(2).getReg())) {
353     if (OpNum == 0) {  // move -> store
354       unsigned InReg = MI->getOperand(1).getReg();
355       NewMI = addFrameReference(BuildMI(TII.get(PPC::STW)).addReg(InReg),
356                                 FrameIndex);
357     } else {           // move -> load
358       unsigned OutReg = MI->getOperand(0).getReg();
359       NewMI = addFrameReference(BuildMI(TII.get(PPC::LWZ), OutReg),
360                                 FrameIndex);
361     }
362   } else if ((Opc == PPC::OR8 &&
363               MI->getOperand(1).getReg() == MI->getOperand(2).getReg())) {
364     if (OpNum == 0) {  // move -> store
365       unsigned InReg = MI->getOperand(1).getReg();
366       NewMI = addFrameReference(BuildMI(TII.get(PPC::STD)).addReg(InReg),
367                                 FrameIndex);
368     } else {           // move -> load
369       unsigned OutReg = MI->getOperand(0).getReg();
370       NewMI = addFrameReference(BuildMI(TII.get(PPC::LD), OutReg), FrameIndex);
371     }
372   } else if (Opc == PPC::FMRD) {
373     if (OpNum == 0) {  // move -> store
374       unsigned InReg = MI->getOperand(1).getReg();
375       NewMI = addFrameReference(BuildMI(TII.get(PPC::STFD)).addReg(InReg),
376                                 FrameIndex);
377     } else {           // move -> load
378       unsigned OutReg = MI->getOperand(0).getReg();
379       NewMI = addFrameReference(BuildMI(TII.get(PPC::LFD), OutReg), FrameIndex);
380     }
381   } else if (Opc == PPC::FMRS) {
382     if (OpNum == 0) {  // move -> store
383       unsigned InReg = MI->getOperand(1).getReg();
384       NewMI = addFrameReference(BuildMI(TII.get(PPC::STFS)).addReg(InReg),
385                                 FrameIndex);
386     } else {           // move -> load
387       unsigned OutReg = MI->getOperand(0).getReg();
388       NewMI = addFrameReference(BuildMI(TII.get(PPC::LFS), OutReg), FrameIndex);
389     }
390   }
391
392   if (NewMI)
393     NewMI->copyKillDeadInfo(MI);
394   return NewMI;
395 }
396
397 //===----------------------------------------------------------------------===//
398 // Stack Frame Processing methods
399 //===----------------------------------------------------------------------===//
400
401 // needsFP - Return true if the specified function should have a dedicated frame
402 // pointer register.  This is true if the function has variable sized allocas or
403 // if frame pointer elimination is disabled.
404 //
405 static bool needsFP(const MachineFunction &MF) {
406   const MachineFrameInfo *MFI = MF.getFrameInfo();
407   return NoFramePointerElim || MFI->hasVarSizedObjects();
408 }
409
410 // hasFP - Return true if the specified function actually has a dedicated frame
411 // pointer register.  This is true if the function needs a frame pointer and has
412 // a non-zero stack size.
413 bool PPCRegisterInfo::hasFP(const MachineFunction &MF) const {
414   const MachineFrameInfo *MFI = MF.getFrameInfo();
415   return MFI->getStackSize() && needsFP(MF);
416 }
417
418 /// usesLR - Returns if the link registers (LR) has been used in the function.
419 ///
420 bool PPCRegisterInfo::usesLR(MachineFunction &MF) const {
421   const bool *PhysRegsUsed = MF.getUsedPhysregs();
422   return PhysRegsUsed[getRARegister()];
423 }
424
425 void PPCRegisterInfo::
426 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
427                               MachineBasicBlock::iterator I) const {
428   // Simply discard ADJCALLSTACKDOWN, ADJCALLSTACKUP instructions.
429   MBB.erase(I);
430 }
431
432 /// LowerDynamicAlloc - Generate the code for allocating an object in the
433 /// current frame.  The sequence of code with be in the general form
434 ///
435 ///   addi   R0, SP, #frameSize ; get the address of the previous frame
436 ///   stwxu  R0, SP, Rnegsize   ; add and update the SP with the negated size
437 ///   addi   Rnew, SP, #maxCalFrameSize ; get the top of the allocation
438 ///
439 void PPCRegisterInfo::lowerDynamicAlloc(MachineBasicBlock::iterator II) const {
440   // Get the instruction.
441   MachineInstr &MI = *II;
442   // Get the instruction's basic block.
443   MachineBasicBlock &MBB = *MI.getParent();
444   // Get the basic block's function.
445   MachineFunction &MF = *MBB.getParent();
446   // Get the frame info.
447   MachineFrameInfo *MFI = MF.getFrameInfo();
448   // Determine whether 64-bit pointers are used.
449   bool LP64 = Subtarget.isPPC64();
450
451   // Determine the maximum call stack size.  maxCallFrameSize may be
452   // less than the minimum.
453   unsigned maxCallFrameSize = MFI->getMaxCallFrameSize();
454   // Get the total frame size.
455   unsigned FrameSize = MFI->getStackSize();
456   
457   // Get stack alignments.
458   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
459   unsigned MaxAlign = MFI->getMaxAlignment();
460   assert(MaxAlign <= TargetAlign &&
461          "Dynamic alloca with large aligns not supported");
462
463   // Determine the previous frame's address.  If FrameSize can't be
464   // represented as 16 bits or we need special alignment, then we load the
465   // previous frame's address from 0(SP).  Why not do an addis of the hi? 
466   // Because R0 is our only safe tmp register and addi/addis treat R0 as zero. 
467   // Constructing the constant and adding would take 3 instructions. 
468   // Fortunately, a frame greater than 32K is rare.
469   if (MaxAlign < TargetAlign && isInt16(FrameSize)) {
470     BuildMI(MBB, II, TII.get(PPC::ADDI), PPC::R0)
471       .addReg(PPC::R31)
472       .addImm(FrameSize);
473   } else if (LP64) {
474     BuildMI(MBB, II, TII.get(PPC::LD), PPC::X0)
475       .addImm(0)
476       .addReg(PPC::X1);
477   } else {
478     BuildMI(MBB, II, TII.get(PPC::LWZ), PPC::R0)
479       .addImm(0)
480       .addReg(PPC::R1);
481   }
482   
483   // Grow the stack and update the stack pointer link, then
484   // determine the address of new allocated space.
485   if (LP64) {
486     BuildMI(MBB, II, TII.get(PPC::STDUX))
487       .addReg(PPC::X0)
488       .addReg(PPC::X1)
489       .addReg(MI.getOperand(1).getReg());
490     BuildMI(MBB, II, TII.get(PPC::ADDI8), MI.getOperand(0).getReg())
491       .addReg(PPC::X1)
492       .addImm(maxCallFrameSize);
493   } else {
494     BuildMI(MBB, II, TII.get(PPC::STWUX))
495       .addReg(PPC::R0)
496       .addReg(PPC::R1)
497       .addReg(MI.getOperand(1).getReg());
498     BuildMI(MBB, II, TII.get(PPC::ADDI), MI.getOperand(0).getReg())
499       .addReg(PPC::R1)
500       .addImm(maxCallFrameSize);
501   }
502   
503   // Discard the DYNALLOC instruction.
504   MBB.erase(II);
505 }
506
507 void
508 PPCRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II) const {
509   // Get the instruction.
510   MachineInstr &MI = *II;
511   // Get the instruction's basic block.
512   MachineBasicBlock &MBB = *MI.getParent();
513   // Get the basic block's function.
514   MachineFunction &MF = *MBB.getParent();
515   // Get the frame info.
516   MachineFrameInfo *MFI = MF.getFrameInfo();
517
518   // Find out which operand is the frame index.
519   unsigned i = 0;
520   while (!MI.getOperand(i).isFrameIndex()) {
521     ++i;
522     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
523   }
524   // Take into account whether it's an add or mem instruction
525   unsigned OffIdx = (i == 2) ? 1 : 2;
526   // Get the frame index.
527   int FrameIndex = MI.getOperand(i).getFrameIndex();
528   
529   // Get the frame pointer save index.  Users of this index are primarily
530   // DYNALLOC instructions.
531   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
532   int FPSI = FI->getFramePointerSaveIndex();
533   // Get the instruction opcode.
534   unsigned OpC = MI.getOpcode();
535   
536   // Special case for dynamic alloca.
537   if (FPSI && FrameIndex == FPSI &&
538       (OpC == PPC::DYNALLOC || OpC == PPC::DYNALLOC8)) {
539     lowerDynamicAlloc(II);
540     return;
541   }
542
543   // Replace the FrameIndex with base register with GPR1 (SP) or GPR31 (FP).
544   MI.getOperand(i).ChangeToRegister(hasFP(MF) ? PPC::R31 : PPC::R1, false);
545
546   // Figure out if the offset in the instruction is shifted right two bits. This
547   // is true for instructions like "STD", which the machine implicitly adds two
548   // low zeros to.
549   bool isIXAddr = false;
550   switch (OpC) {
551   case PPC::LWA:
552   case PPC::LD:
553   case PPC::STD:
554   case PPC::STD_32:
555     isIXAddr = true;
556     break;
557   }
558   
559   // Now add the frame object offset to the offset from r1.
560   int Offset = MFI->getObjectOffset(FrameIndex);
561   
562   if (!isIXAddr)
563     Offset += MI.getOperand(OffIdx).getImmedValue();
564   else
565     Offset += MI.getOperand(OffIdx).getImmedValue() << 2;
566
567   // If we're not using a Frame Pointer that has been set to the value of the
568   // SP before having the stack size subtracted from it, then add the stack size
569   // to Offset to get the correct offset.
570   Offset += MFI->getStackSize();
571
572   if (!isInt16(Offset)) {
573     // Insert a set of r0 with the full offset value before the ld, st, or add
574     BuildMI(MBB, II, TII.get(PPC::LIS), PPC::R0).addImm(Offset >> 16);
575     BuildMI(MBB, II, TII.get(PPC::ORI), PPC::R0).addReg(PPC::R0).addImm(Offset);
576     
577     // convert into indexed form of the instruction
578     // sth 0:rA, 1:imm 2:(rB) ==> sthx 0:rA, 2:rB, 1:r0
579     // addi 0:rA 1:rB, 2, imm ==> add 0:rA, 1:rB, 2:r0
580     assert(ImmToIdxMap.count(OpC) &&
581            "No indexed form of load or store available!");
582     unsigned NewOpcode = ImmToIdxMap.find(OpC)->second;
583     MI.setInstrDescriptor(TII.get(NewOpcode));
584     MI.getOperand(1).ChangeToRegister(MI.getOperand(i).getReg(), false);
585     MI.getOperand(2).ChangeToRegister(PPC::R0, false);
586   } else {
587     if (isIXAddr) {
588       assert((Offset & 3) == 0 && "Invalid frame offset!");
589       Offset >>= 2;    // The actual encoded value has the low two bits zero.
590     }
591     MI.getOperand(OffIdx).ChangeToImmediate(Offset);
592   }
593 }
594
595 /// VRRegNo - Map from a numbered VR register to its enum value.
596 ///
597 static const unsigned short VRRegNo[] = {
598  PPC::V0 , PPC::V1 , PPC::V2 , PPC::V3 , PPC::V4 , PPC::V5 , PPC::V6 , PPC::V7 ,
599  PPC::V8 , PPC::V9 , PPC::V10, PPC::V11, PPC::V12, PPC::V13, PPC::V14, PPC::V15,
600  PPC::V16, PPC::V17, PPC::V18, PPC::V19, PPC::V20, PPC::V21, PPC::V22, PPC::V23,
601  PPC::V24, PPC::V25, PPC::V26, PPC::V27, PPC::V28, PPC::V29, PPC::V30, PPC::V31
602 };
603
604 /// RemoveVRSaveCode - We have found that this function does not need any code
605 /// to manipulate the VRSAVE register, even though it uses vector registers.
606 /// This can happen when the only registers used are known to be live in or out
607 /// of the function.  Remove all of the VRSAVE related code from the function.
608 static void RemoveVRSaveCode(MachineInstr *MI) {
609   MachineBasicBlock *Entry = MI->getParent();
610   MachineFunction *MF = Entry->getParent();
611
612   // We know that the MTVRSAVE instruction immediately follows MI.  Remove it.
613   MachineBasicBlock::iterator MBBI = MI;
614   ++MBBI;
615   assert(MBBI != Entry->end() && MBBI->getOpcode() == PPC::MTVRSAVE);
616   MBBI->eraseFromParent();
617   
618   bool RemovedAllMTVRSAVEs = true;
619   // See if we can find and remove the MTVRSAVE instruction from all of the
620   // epilog blocks.
621   const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
622   for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I) {
623     // If last instruction is a return instruction, add an epilogue
624     if (!I->empty() && TII.isReturn(I->back().getOpcode())) {
625       bool FoundIt = false;
626       for (MBBI = I->end(); MBBI != I->begin(); ) {
627         --MBBI;
628         if (MBBI->getOpcode() == PPC::MTVRSAVE) {
629           MBBI->eraseFromParent();  // remove it.
630           FoundIt = true;
631           break;
632         }
633       }
634       RemovedAllMTVRSAVEs &= FoundIt;
635     }
636   }
637
638   // If we found and removed all MTVRSAVE instructions, remove the read of
639   // VRSAVE as well.
640   if (RemovedAllMTVRSAVEs) {
641     MBBI = MI;
642     assert(MBBI != Entry->begin() && "UPDATE_VRSAVE is first instr in block?");
643     --MBBI;
644     assert(MBBI->getOpcode() == PPC::MFVRSAVE && "VRSAVE instrs wandered?");
645     MBBI->eraseFromParent();
646   }
647   
648   // Finally, nuke the UPDATE_VRSAVE.
649   MI->eraseFromParent();
650 }
651
652 // HandleVRSaveUpdate - MI is the UPDATE_VRSAVE instruction introduced by the
653 // instruction selector.  Based on the vector registers that have been used,
654 // transform this into the appropriate ORI instruction.
655 static void HandleVRSaveUpdate(MachineInstr *MI, const bool *UsedRegs,
656                                const TargetInstrInfo &TII) {
657   unsigned UsedRegMask = 0;
658   for (unsigned i = 0; i != 32; ++i)
659     if (UsedRegs[VRRegNo[i]])
660       UsedRegMask |= 1 << (31-i);
661   
662   // Live in and live out values already must be in the mask, so don't bother
663   // marking them.
664   MachineFunction *MF = MI->getParent()->getParent();
665   for (MachineFunction::livein_iterator I = 
666        MF->livein_begin(), E = MF->livein_end(); I != E; ++I) {
667     unsigned RegNo = PPCRegisterInfo::getRegisterNumbering(I->first);
668     if (VRRegNo[RegNo] == I->first)        // If this really is a vector reg.
669       UsedRegMask &= ~(1 << (31-RegNo));   // Doesn't need to be marked.
670   }
671   for (MachineFunction::liveout_iterator I = 
672        MF->liveout_begin(), E = MF->liveout_end(); I != E; ++I) {
673     unsigned RegNo = PPCRegisterInfo::getRegisterNumbering(*I);
674     if (VRRegNo[RegNo] == *I)              // If this really is a vector reg.
675       UsedRegMask &= ~(1 << (31-RegNo));   // Doesn't need to be marked.
676   }
677   
678   unsigned SrcReg = MI->getOperand(1).getReg();
679   unsigned DstReg = MI->getOperand(0).getReg();
680   // If no registers are used, turn this into a copy.
681   if (UsedRegMask == 0) {
682     // Remove all VRSAVE code.
683     RemoveVRSaveCode(MI);
684     return;
685   } else if ((UsedRegMask & 0xFFFF) == UsedRegMask) {
686     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORI), DstReg)
687         .addReg(SrcReg).addImm(UsedRegMask);
688   } else if ((UsedRegMask & 0xFFFF0000) == UsedRegMask) {
689     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORIS), DstReg)
690         .addReg(SrcReg).addImm(UsedRegMask >> 16);
691   } else {
692     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORIS), DstReg)
693        .addReg(SrcReg).addImm(UsedRegMask >> 16);
694     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORI), DstReg)
695       .addReg(DstReg).addImm(UsedRegMask & 0xFFFF);
696   }
697   
698   // Remove the old UPDATE_VRSAVE instruction.
699   MI->eraseFromParent();
700 }
701
702 /// determineFrameLayout - Determine the size of the frame and maximum call
703 /// frame size.
704 void PPCRegisterInfo::determineFrameLayout(MachineFunction &MF) const {
705   MachineFrameInfo *MFI = MF.getFrameInfo();
706
707   // Get the number of bytes to allocate from the FrameInfo
708   unsigned FrameSize = MFI->getStackSize();
709   
710   // Get the alignments provided by the target, and the maximum alignment
711   // (if any) of the fixed frame objects.
712   unsigned MaxAlign = MFI->getMaxAlignment();
713   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
714   unsigned AlignMask = TargetAlign - 1;  //
715
716   // If we are a leaf function, and use up to 224 bytes of stack space,
717   // don't have a frame pointer, calls, or dynamic alloca then we do not need
718   // to adjust the stack pointer (we fit in the Red Zone).
719   if (FrameSize <= 224 &&             // Fits in red zone.
720       !MFI->hasVarSizedObjects() &&   // No dynamic alloca.
721       !MFI->hasCalls() &&             // No calls.
722       MaxAlign <= TargetAlign) {      // No special alignment.
723     // No need for frame
724     MFI->setStackSize(0);
725     return;
726   }
727   
728   // Get the maximum call frame size of all the calls.
729   unsigned maxCallFrameSize = MFI->getMaxCallFrameSize();
730   
731   // Maximum call frame needs to be at least big enough for linkage and 8 args.
732   unsigned minCallFrameSize =
733     PPCFrameInfo::getMinCallFrameSize(Subtarget.isPPC64());
734   maxCallFrameSize = std::max(maxCallFrameSize, minCallFrameSize);
735
736   // If we have dynamic alloca then maxCallFrameSize needs to be aligned so
737   // that allocations will be aligned.
738   if (MFI->hasVarSizedObjects())
739     maxCallFrameSize = (maxCallFrameSize + AlignMask) & ~AlignMask;
740   
741   // Update maximum call frame size.
742   MFI->setMaxCallFrameSize(maxCallFrameSize);
743   
744   // Include call frame size in total.
745   FrameSize += maxCallFrameSize;
746
747   // Make sure the frame is aligned.
748   FrameSize = (FrameSize + AlignMask) & ~AlignMask;
749
750   // Update frame info.
751   MFI->setStackSize(FrameSize);
752 }
753
754 void PPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
755   MachineBasicBlock &MBB = MF.front();   // Prolog goes in entry BB
756   MachineBasicBlock::iterator MBBI = MBB.begin();
757   MachineFrameInfo *MFI = MF.getFrameInfo();
758   MachineDebugInfo *DebugInfo = MFI->getMachineDebugInfo();
759   
760   // Prepare for debug frame info.
761   bool hasInfo = DebugInfo && DebugInfo->hasInfo();
762   unsigned FrameLabelId = 0;
763   
764   // Scan the prolog, looking for an UPDATE_VRSAVE instruction.  If we find it,
765   // process it.
766   for (unsigned i = 0; MBBI != MBB.end(); ++i, ++MBBI) {
767     if (MBBI->getOpcode() == PPC::UPDATE_VRSAVE) {
768       HandleVRSaveUpdate(MBBI, MF.getUsedPhysregs(), TII);
769       break;
770     }
771   }
772   
773   // Move MBBI back to the beginning of the function.
774   MBBI = MBB.begin();
775   
776   // Work out frame sizes.
777   determineFrameLayout(MF);
778   unsigned FrameSize = MFI->getStackSize();
779   
780   // Skip if a leaf routine.
781   if (!FrameSize) return;
782   
783   int NegFrameSize = -FrameSize;
784   
785   // Get processor type.
786   bool IsPPC64 = Subtarget.isPPC64();
787   // Check if the link register (LR) has been used.
788   bool UsesLR = MFI->hasCalls() || usesLR(MF);
789   // Do we have a frame pointer for this function?
790   bool HasFP = hasFP(MF);
791   
792   int LROffset = PPCFrameInfo::getReturnSaveOffset(IsPPC64);
793   int FPOffset = PPCFrameInfo::getFramePointerSaveOffset(IsPPC64);
794   
795   if (IsPPC64) {
796     if (UsesLR)
797       BuildMI(MBB, MBBI, TII.get(PPC::MFLR8), PPC::X0);
798       
799     if (HasFP)
800       BuildMI(MBB, MBBI, TII.get(PPC::STD))
801          .addReg(PPC::X31).addImm(FPOffset/4).addReg(PPC::X1);
802     
803     if (UsesLR)
804       BuildMI(MBB, MBBI, TII.get(PPC::STD))
805          .addReg(PPC::X0).addImm(LROffset/4).addReg(PPC::X1);
806   } else {
807     if (UsesLR)
808       BuildMI(MBB, MBBI, TII.get(PPC::MFLR), PPC::R0);
809       
810     if (HasFP)
811       BuildMI(MBB, MBBI, TII.get(PPC::STW))
812         .addReg(PPC::R31).addImm(FPOffset).addReg(PPC::R1);
813
814     if (UsesLR)
815       BuildMI(MBB, MBBI, TII.get(PPC::STW))
816         .addReg(PPC::R0).addImm(LROffset).addReg(PPC::R1);
817   }
818   
819   // Get stack alignments.
820   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
821   unsigned MaxAlign = MFI->getMaxAlignment();
822
823   if (hasInfo) {
824     // Mark effective beginning of when frame pointer becomes valid.
825     FrameLabelId = DebugInfo->NextLabelID();
826     BuildMI(MBB, MBBI, TII.get(PPC::DWARF_LABEL)).addImm(FrameLabelId);
827   }
828   
829   // Adjust stack pointer: r1 += NegFrameSize.
830   // If there is a preferred stack alignment, align R1 now
831   if (!IsPPC64) {
832     // PPC32.
833     if (MaxAlign > TargetAlign) {
834       assert(isPowerOf2_32(MaxAlign)&&isInt16(MaxAlign)&&"Invalid alignment!");
835       assert(isInt16(NegFrameSize) && "Unhandled stack size and alignment!");
836       BuildMI(MBB, MBBI, TII.get(PPC::RLWINM), PPC::R0)
837         .addReg(PPC::R1).addImm(0).addImm(32-Log2_32(MaxAlign)).addImm(31);
838       BuildMI(MBB, MBBI, TII.get(PPC::SUBFIC) ,PPC::R0).addReg(PPC::R0)
839         .addImm(NegFrameSize);
840       BuildMI(MBB, MBBI, TII.get(PPC::STWUX))
841         .addReg(PPC::R1).addReg(PPC::R1).addReg(PPC::R0);
842     } else if (isInt16(NegFrameSize)) {
843       BuildMI(MBB, MBBI, TII.get(PPC::STWU),
844               PPC::R1).addReg(PPC::R1).addImm(NegFrameSize).addReg(PPC::R1);
845     } else {
846       BuildMI(MBB, MBBI, TII.get(PPC::LIS), PPC::R0).addImm(NegFrameSize >> 16);
847       BuildMI(MBB, MBBI, TII.get(PPC::ORI), PPC::R0).addReg(PPC::R0)
848         .addImm(NegFrameSize & 0xFFFF);
849       BuildMI(MBB, MBBI, TII.get(PPC::STWUX)).addReg(PPC::R1).addReg(PPC::R1)
850         .addReg(PPC::R0);
851     }
852   } else {    // PPC64.
853     if (MaxAlign > TargetAlign) {
854       assert(isPowerOf2_32(MaxAlign)&&isInt16(MaxAlign)&&"Invalid alignment!");
855       assert(isInt16(NegFrameSize) && "Unhandled stack size and alignment!");
856       BuildMI(MBB, MBBI, TII.get(PPC::RLDICL), PPC::X0)
857         .addReg(PPC::X1).addImm(0).addImm(64-Log2_32(MaxAlign));
858       BuildMI(MBB, MBBI, TII.get(PPC::SUBFIC8), PPC::X0).addReg(PPC::X0)
859         .addImm(NegFrameSize);
860       BuildMI(MBB, MBBI, TII.get(PPC::STDUX))
861         .addReg(PPC::X1).addReg(PPC::X1).addReg(PPC::X0);
862     } else if (isInt16(NegFrameSize)) {
863       BuildMI(MBB, MBBI, TII.get(PPC::STDU), PPC::X1)
864              .addReg(PPC::X1).addImm(NegFrameSize/4).addReg(PPC::X1);
865     } else {
866       BuildMI(MBB, MBBI, TII.get(PPC::LIS8), PPC::X0).addImm(NegFrameSize >>16);
867       BuildMI(MBB, MBBI, TII.get(PPC::ORI8), PPC::X0).addReg(PPC::X0)
868         .addImm(NegFrameSize & 0xFFFF);
869       BuildMI(MBB, MBBI, TII.get(PPC::STDUX)).addReg(PPC::X1).addReg(PPC::X1)
870         .addReg(PPC::X0);
871     }
872   }
873   
874   if (hasInfo) {
875     std::vector<MachineMove> &Moves = DebugInfo->getFrameMoves();
876     
877     if (NegFrameSize) {
878       // Show update of SP.
879       MachineLocation SPDst(MachineLocation::VirtualFP);
880       MachineLocation SPSrc(MachineLocation::VirtualFP, NegFrameSize);
881       Moves.push_back(MachineMove(FrameLabelId, SPDst, SPSrc));
882     } else {
883       MachineLocation SP(IsPPC64 ? PPC::X31 : PPC::R31);
884       Moves.push_back(MachineMove(FrameLabelId, SP, SP));
885     }
886     
887     if (HasFP) {
888       MachineLocation FPDst(MachineLocation::VirtualFP, FPOffset);
889       MachineLocation FPSrc(IsPPC64 ? PPC::X31 : PPC::R31);
890       Moves.push_back(MachineMove(FrameLabelId, FPDst, FPSrc));
891     }
892
893     // Add callee saved registers to move list.
894     const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
895     for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
896       int Offset = MFI->getObjectOffset(CSI[I].getFrameIdx());
897       unsigned Reg = CSI[I].getReg();
898       if (Reg == PPC::LR || Reg == PPC::LR8) continue;
899       MachineLocation CSDst(MachineLocation::VirtualFP, Offset);
900       MachineLocation CSSrc(Reg);
901       Moves.push_back(MachineMove(FrameLabelId, CSDst, CSSrc));
902     }
903     
904     // Mark effective beginning of when frame pointer is ready.
905     unsigned ReadyLabelId = DebugInfo->NextLabelID();
906     BuildMI(MBB, MBBI, TII.get(PPC::DWARF_LABEL)).addImm(ReadyLabelId);
907     
908     MachineLocation FPDst(HasFP ? (IsPPC64 ? PPC::X31 : PPC::R31) :
909                                   (IsPPC64 ? PPC::X1 : PPC::R1));
910     MachineLocation FPSrc(MachineLocation::VirtualFP);
911     Moves.push_back(MachineMove(ReadyLabelId, FPDst, FPSrc));
912   }
913
914   // If there is a frame pointer, copy R1 into R31
915   if (HasFP) {
916     if (!IsPPC64) {
917       BuildMI(MBB, MBBI, TII.get(PPC::OR), PPC::R31).addReg(PPC::R1)
918         .addReg(PPC::R1);
919     } else {
920       BuildMI(MBB, MBBI, TII.get(PPC::OR8), PPC::X31).addReg(PPC::X1)
921         .addReg(PPC::X1);
922     }
923   }
924 }
925
926 void PPCRegisterInfo::emitEpilogue(MachineFunction &MF,
927                                    MachineBasicBlock &MBB) const {
928   MachineBasicBlock::iterator MBBI = prior(MBB.end());
929   assert(MBBI->getOpcode() == PPC::BLR &&
930          "Can only insert epilog into returning blocks");
931
932   // Get alignment info so we know how to restore r1
933   const MachineFrameInfo *MFI = MF.getFrameInfo();
934   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
935   unsigned MaxAlign = MFI->getMaxAlignment();
936
937   // Get the number of bytes allocated from the FrameInfo.
938   unsigned FrameSize = MFI->getStackSize();
939
940   if (!FrameSize) return;
941   
942   // Get processor type.
943   bool IsPPC64 = Subtarget.isPPC64();
944   // Check if the link register (LR) has been used.
945   bool UsesLR = MFI->hasCalls() || usesLR(MF);
946   // Do we have a frame pointer for this function?
947   bool HasFP = hasFP(MF);
948
949   // The loaded (or persistent) stack pointer value is offset by the 'stwu'
950   // on entry to the function.  Add this offset back now.
951   if (!Subtarget.isPPC64()) {
952     if (isInt16(FrameSize) && TargetAlign >= MaxAlign &&
953           !MFI->hasVarSizedObjects()) {
954         BuildMI(MBB, MBBI, TII.get(PPC::ADDI), PPC::R1)
955             .addReg(PPC::R1).addImm(FrameSize);
956     } else {
957       BuildMI(MBB, MBBI, TII.get(PPC::LWZ),PPC::R1).addImm(0).addReg(PPC::R1);
958     }
959   } else {
960     if (isInt16(FrameSize) && TargetAlign >= MaxAlign &&
961           !MFI->hasVarSizedObjects()) {
962       BuildMI(MBB, MBBI, TII.get(PPC::ADDI8), PPC::X1)
963          .addReg(PPC::X1).addImm(FrameSize);
964     } else {
965       BuildMI(MBB, MBBI, TII.get(PPC::LD), PPC::X1).addImm(0).addReg(PPC::X1);
966     }
967   }
968   
969   int LROffset = PPCFrameInfo::getReturnSaveOffset(IsPPC64);
970   int FPOffset = PPCFrameInfo::getFramePointerSaveOffset(IsPPC64);
971
972   if (IsPPC64) {
973     if (UsesLR)
974       BuildMI(MBB, MBBI, TII.get(PPC::LD), PPC::X0)
975         .addImm(LROffset/4).addReg(PPC::X1);
976         
977     if (HasFP)
978       BuildMI(MBB, MBBI, TII.get(PPC::LD), PPC::X31)
979         .addImm(FPOffset/4).addReg(PPC::X1);
980         
981     if (UsesLR)
982       BuildMI(MBB, MBBI, TII.get(PPC::MTLR8)).addReg(PPC::X0);
983   } else {
984     if (UsesLR)
985       BuildMI(MBB, MBBI, TII.get(PPC::LWZ), PPC::R0)
986           .addImm(LROffset).addReg(PPC::R1);
987         
988     if (HasFP)
989       BuildMI(MBB, MBBI, TII.get(PPC::LWZ), PPC::R31)
990           .addImm(FPOffset).addReg(PPC::R1);
991           
992     if (UsesLR)
993       BuildMI(MBB, MBBI, TII.get(PPC::MTLR)).addReg(PPC::R0);
994   }
995 }
996
997 unsigned PPCRegisterInfo::getRARegister() const {
998   return !Subtarget.isPPC64() ? PPC::LR : PPC::LR8;
999   
1000 }
1001
1002 unsigned PPCRegisterInfo::getFrameRegister(MachineFunction &MF) const {
1003   if (!Subtarget.isPPC64())
1004     return hasFP(MF) ? PPC::R31 : PPC::R1;
1005   else
1006     return hasFP(MF) ? PPC::X31 : PPC::X1;
1007 }
1008
1009 void PPCRegisterInfo::getInitialFrameState(std::vector<MachineMove> &Moves)
1010                                                                          const {
1011   // Initial state of the frame pointer is R1.
1012   MachineLocation Dst(MachineLocation::VirtualFP);
1013   MachineLocation Src(PPC::R1, 0);
1014   Moves.push_back(MachineMove(0, Dst, Src));
1015 }
1016
1017 #include "PPCGenRegisterInfo.inc"
1018