MachineInstr::setOpcode -> MachineInstr::setInstrDescriptor
[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 #include <iostream>
40 using namespace llvm;
41
42 /// getRegisterNumbering - Given the enum value for some register, e.g.
43 /// PPC::F14, return the number that it corresponds to (e.g. 14).
44 unsigned PPCRegisterInfo::getRegisterNumbering(unsigned RegEnum) {
45   using namespace PPC;
46   switch (RegEnum) {
47   case R0 :  case X0 :  case F0 :  case V0 : case CR0:  return  0;
48   case R1 :  case X1 :  case F1 :  case V1 : case CR1:  return  1;
49   case R2 :  case X2 :  case F2 :  case V2 : case CR2:  return  2;
50   case R3 :  case X3 :  case F3 :  case V3 : case CR3:  return  3;
51   case R4 :  case X4 :  case F4 :  case V4 : case CR4:  return  4;
52   case R5 :  case X5 :  case F5 :  case V5 : case CR5:  return  5;
53   case R6 :  case X6 :  case F6 :  case V6 : case CR6:  return  6;
54   case R7 :  case X7 :  case F7 :  case V7 : case CR7:  return  7;
55   case R8 :  case X8 :  case F8 :  case V8 : return  8;
56   case R9 :  case X9 :  case F9 :  case V9 : return  9;
57   case R10:  case X10:  case F10:  case V10: return 10;
58   case R11:  case X11:  case F11:  case V11: return 11;
59   case R12:  case X12:  case F12:  case V12: return 12;
60   case R13:  case X13:  case F13:  case V13: return 13;
61   case R14:  case X14:  case F14:  case V14: return 14;
62   case R15:  case X15:  case F15:  case V15: return 15;
63   case R16:  case X16:  case F16:  case V16: return 16;
64   case R17:  case X17:  case F17:  case V17: return 17;
65   case R18:  case X18:  case F18:  case V18: return 18;
66   case R19:  case X19:  case F19:  case V19: return 19;
67   case R20:  case X20:  case F20:  case V20: return 20;
68   case R21:  case X21:  case F21:  case V21: return 21;
69   case R22:  case X22:  case F22:  case V22: return 22;
70   case R23:  case X23:  case F23:  case V23: return 23;
71   case R24:  case X24:  case F24:  case V24: return 24;
72   case R25:  case X25:  case F25:  case V25: return 25;
73   case R26:  case X26:  case F26:  case V26: return 26;
74   case R27:  case X27:  case F27:  case V27: return 27;
75   case R28:  case X28:  case F28:  case V28: return 28;
76   case R29:  case X29:  case F29:  case V29: return 29;
77   case R30:  case X30:  case F30:  case V30: return 30;
78   case R31:  case X31:  case F31:  case V31: return 31;
79   default:
80     std::cerr << "Unhandled reg in PPCRegisterInfo::getRegisterNumbering!\n";
81     abort();
82   }
83 }
84
85 PPCRegisterInfo::PPCRegisterInfo(const PPCSubtarget &ST,
86                                  const TargetInstrInfo &tii)
87   : PPCGenRegisterInfo(PPC::ADJCALLSTACKDOWN, PPC::ADJCALLSTACKUP),
88     Subtarget(ST), TII(tii) {
89   ImmToIdxMap[PPC::LD]   = PPC::LDX;    ImmToIdxMap[PPC::STD]  = PPC::STDX;
90   ImmToIdxMap[PPC::LBZ]  = PPC::LBZX;   ImmToIdxMap[PPC::STB]  = PPC::STBX;
91   ImmToIdxMap[PPC::LHZ]  = PPC::LHZX;   ImmToIdxMap[PPC::LHA]  = PPC::LHAX;
92   ImmToIdxMap[PPC::LWZ]  = PPC::LWZX;   ImmToIdxMap[PPC::LWA]  = PPC::LWAX;
93   ImmToIdxMap[PPC::LFS]  = PPC::LFSX;   ImmToIdxMap[PPC::LFD]  = PPC::LFDX;
94   ImmToIdxMap[PPC::STH]  = PPC::STHX;   ImmToIdxMap[PPC::STW]  = PPC::STWX;
95   ImmToIdxMap[PPC::STFS] = PPC::STFSX;  ImmToIdxMap[PPC::STFD] = PPC::STFDX;
96   ImmToIdxMap[PPC::ADDI] = PPC::ADD4;
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     std::cerr << "Attempt to copy register that is not GPR or FPR";
237     abort();
238   }
239 }
240
241 const unsigned* PPCRegisterInfo::getCalleeSaveRegs() const {
242   // 32-bit Darwin calling convention. 
243   static const unsigned Darwin32_CalleeSaveRegs[] = {
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_CalleeSaveRegs[] = {
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_CalleeSaveRegs :
286                                Darwin32_CalleeSaveRegs;
287 }
288
289 const TargetRegisterClass* const*
290 PPCRegisterInfo::getCalleeSaveRegClasses() const {
291   // 32-bit Darwin calling convention. 
292   static const TargetRegisterClass * const Darwin32_CalleeSaveRegClasses[] = {
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_CalleeSaveRegClasses[] = {
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_CalleeSaveRegClasses :
338                                Darwin32_CalleeSaveRegClasses;
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 static bool hasFP(const MachineFunction &MF) {
414   const MachineFrameInfo *MFI = MF.getFrameInfo();
415   return MFI->getStackSize() && needsFP(MF);
416 }
417
418 void PPCRegisterInfo::
419 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
420                               MachineBasicBlock::iterator I) const {
421   // Simply discard ADJCALLSTACKDOWN, ADJCALLSTACKUP instructions.
422   MBB.erase(I);
423 }
424
425 /// LowerDynamicAlloc - Generate the code for allocating an object in the
426 /// current frame.  The sequence of code with be in the general form
427 ///
428 ///   addi   R0, SP, #frameSize ; get the address of the previous frame
429 ///   stwxu  R0, SP, Rnegsize   ; add and update the SP with the negated size
430 ///   addi   Rnew, SP, #maxCalFrameSize ; get the top of the allocation
431 ///
432 void PPCRegisterInfo::lowerDynamicAlloc(MachineBasicBlock::iterator II) const {
433   // Get the instruction.
434   MachineInstr &MI = *II;
435   // Get the instruction's basic block.
436   MachineBasicBlock &MBB = *MI.getParent();
437   // Get the basic block's function.
438   MachineFunction &MF = *MBB.getParent();
439   // Get the frame info.
440   MachineFrameInfo *MFI = MF.getFrameInfo();
441   // Determine whether 64-bit pointers are used.
442   bool LP64 = Subtarget.isPPC64();
443
444   // Determine the maximum call stack size.  maxCallFrameSize may be
445   // less than the minimum.
446   unsigned maxCallFrameSize = MFI->getMaxCallFrameSize();
447   unsigned getMinCallFrameSize =
448     PPCFrameInfo::getMinCallFrameSize(LP64); 
449   maxCallFrameSize = std::max(maxCallFrameSize, getMinCallFrameSize);
450   // Get the total frame size.
451   unsigned FrameSize = MFI->getStackSize();
452   
453   // Get stack alignments.
454   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
455   unsigned MaxAlign = MFI->getMaxAlignment();
456   assert(MaxAlign <= TargetAlign &&
457          "Dynamic alloca with large aligns not supported");
458
459   // Determine the previous frame's address.  If FrameSize can't be
460   // represented as 16 bits or we need special alignment, then we load the
461   // previous frame's address from 0(SP).  Why not do an addis of the hi? 
462   // Because R0 is our only safe tmp register and addi/addis treat R0 as zero. 
463   // Constructing the constant and adding would take 3 instructions. 
464   // Fortunately, a frame greater than 32K is rare.
465   if (MaxAlign < TargetAlign && isInt16(FrameSize)) {
466     BuildMI(MBB, II, TII.get(PPC::ADDI), PPC::R0)
467       .addReg(PPC::R31)
468       .addImm(FrameSize);
469   } else if (LP64) {
470     BuildMI(MBB, II, TII.get(PPC::LD), PPC::X0)
471       .addImm(0)
472       .addReg(PPC::X1);
473   } else {
474     BuildMI(MBB, II, TII.get(PPC::LWZ), PPC::R0)
475       .addImm(0)
476       .addReg(PPC::R1);
477   }
478   
479   // Grow the stack and update the stack pointer link, then
480   // determine the address of new allocated space.
481   if (LP64) {
482     BuildMI(MBB, II, TII.get(PPC::STDUX))
483       .addReg(PPC::X0)
484       .addReg(PPC::X1)
485       .addReg(MI.getOperand(1).getReg());
486     BuildMI(MBB, II, TII.get(PPC::ADDI8), MI.getOperand(0).getReg())
487       .addReg(PPC::X1)
488       .addImm(maxCallFrameSize);
489   } else {
490     BuildMI(MBB, II, TII.get(PPC::STWUX))
491       .addReg(PPC::R0)
492       .addReg(PPC::R1)
493       .addReg(MI.getOperand(1).getReg());
494     BuildMI(MBB, II, TII.get(PPC::ADDI), MI.getOperand(0).getReg())
495       .addReg(PPC::R1)
496       .addImm(maxCallFrameSize);
497   }
498   
499   // Discard the DYNALLOC instruction.
500   MBB.erase(II);
501 }
502
503 void
504 PPCRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II) const {
505   // Get the instruction.
506   MachineInstr &MI = *II;
507   // Get the instruction's basic block.
508   MachineBasicBlock &MBB = *MI.getParent();
509   // Get the basic block's function.
510   MachineFunction &MF = *MBB.getParent();
511   // Get the frame info.
512   MachineFrameInfo *MFI = MF.getFrameInfo();
513
514   // Find out which operand is the frame index.
515   unsigned i = 0;
516   while (!MI.getOperand(i).isFrameIndex()) {
517     ++i;
518     assert(i < MI.getNumOperands() && "Instr doesn't have FrameIndex operand!");
519   }
520   // Take into account whether it's an add or mem instruction
521   unsigned OffIdx = (i == 2) ? 1 : 2;
522   // Get the frame index.
523   int FrameIndex = MI.getOperand(i).getFrameIndex();
524   
525   // Get the frame pointer save index.  Users of this index are primarily
526   // DYNALLOC instructions.
527   PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
528   int FPSI = FI->getFramePointerSaveIndex();
529   // Get the instruction opcode.
530   unsigned OpC = MI.getOpcode();
531   
532   // Special case for dynamic alloca.
533   if (FPSI && FrameIndex == FPSI &&
534       (OpC == PPC::DYNALLOC || OpC == PPC::DYNALLOC8)) {
535     lowerDynamicAlloc(II);
536     return;
537   }
538
539   // Replace the FrameIndex with base register with GPR1 (SP) or GPR31 (FP).
540   MI.getOperand(i).ChangeToRegister(hasFP(MF) ? PPC::R31 : PPC::R1, false);
541
542   // Figure out if the offset in the instruction is shifted right two bits. This
543   // is true for instructions like "STD", which the machine implicitly adds two
544   // low zeros to.
545   bool isIXAddr = false;
546   switch (OpC) {
547   case PPC::LWA:
548   case PPC::LD:
549   case PPC::STD:
550   case PPC::STD_32:
551     isIXAddr = true;
552     break;
553   }
554   
555   // Now add the frame object offset to the offset from r1.
556   int Offset = MFI->getObjectOffset(FrameIndex);
557   
558   if (!isIXAddr)
559     Offset += MI.getOperand(OffIdx).getImmedValue();
560   else
561     Offset += MI.getOperand(OffIdx).getImmedValue() << 2;
562
563   // If we're not using a Frame Pointer that has been set to the value of the
564   // SP before having the stack size subtracted from it, then add the stack size
565   // to Offset to get the correct offset.
566   Offset += MFI->getStackSize();
567
568   if (!isInt16(Offset)) {
569     // Insert a set of r0 with the full offset value before the ld, st, or add
570     BuildMI(MBB, II, TII.get(PPC::LIS), PPC::R0).addImm(Offset >> 16);
571     BuildMI(MBB, II, TII.get(PPC::ORI), PPC::R0).addReg(PPC::R0).addImm(Offset);
572     
573     // convert into indexed form of the instruction
574     // sth 0:rA, 1:imm 2:(rB) ==> sthx 0:rA, 2:rB, 1:r0
575     // addi 0:rA 1:rB, 2, imm ==> add 0:rA, 1:rB, 2:r0
576     assert(ImmToIdxMap.count(OpC) &&
577            "No indexed form of load or store available!");
578     unsigned NewOpcode = ImmToIdxMap.find(OpC)->second;
579     MI.setInstrDescriptor(TII.get(NewOpcode));
580     MI.getOperand(1).ChangeToRegister(MI.getOperand(i).getReg(), false);
581     MI.getOperand(2).ChangeToRegister(PPC::R0, false);
582   } else {
583     if (isIXAddr) {
584       assert((Offset & 3) == 0 && "Invalid frame offset!");
585       Offset >>= 2;    // The actual encoded value has the low two bits zero.
586     }
587     MI.getOperand(OffIdx).ChangeToImmediate(Offset);
588   }
589 }
590
591 /// VRRegNo - Map from a numbered VR register to its enum value.
592 ///
593 static const unsigned short VRRegNo[] = {
594  PPC::V0 , PPC::V1 , PPC::V2 , PPC::V3 , PPC::V4 , PPC::V5 , PPC::V6 , PPC::V7 ,
595  PPC::V8 , PPC::V9 , PPC::V10, PPC::V11, PPC::V12, PPC::V13, PPC::V14, PPC::V15,
596  PPC::V16, PPC::V17, PPC::V18, PPC::V19, PPC::V20, PPC::V21, PPC::V22, PPC::V23,
597  PPC::V24, PPC::V25, PPC::V26, PPC::V27, PPC::V28, PPC::V29, PPC::V30, PPC::V31
598 };
599
600 /// RemoveVRSaveCode - We have found that this function does not need any code
601 /// to manipulate the VRSAVE register, even though it uses vector registers.
602 /// This can happen when the only registers used are known to be live in or out
603 /// of the function.  Remove all of the VRSAVE related code from the function.
604 static void RemoveVRSaveCode(MachineInstr *MI) {
605   MachineBasicBlock *Entry = MI->getParent();
606   MachineFunction *MF = Entry->getParent();
607
608   // We know that the MTVRSAVE instruction immediately follows MI.  Remove it.
609   MachineBasicBlock::iterator MBBI = MI;
610   ++MBBI;
611   assert(MBBI != Entry->end() && MBBI->getOpcode() == PPC::MTVRSAVE);
612   MBBI->eraseFromParent();
613   
614   bool RemovedAllMTVRSAVEs = true;
615   // See if we can find and remove the MTVRSAVE instruction from all of the
616   // epilog blocks.
617   const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
618   for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I) {
619     // If last instruction is a return instruction, add an epilogue
620     if (!I->empty() && TII.isReturn(I->back().getOpcode())) {
621       bool FoundIt = false;
622       for (MBBI = I->end(); MBBI != I->begin(); ) {
623         --MBBI;
624         if (MBBI->getOpcode() == PPC::MTVRSAVE) {
625           MBBI->eraseFromParent();  // remove it.
626           FoundIt = true;
627           break;
628         }
629       }
630       RemovedAllMTVRSAVEs &= FoundIt;
631     }
632   }
633
634   // If we found and removed all MTVRSAVE instructions, remove the read of
635   // VRSAVE as well.
636   if (RemovedAllMTVRSAVEs) {
637     MBBI = MI;
638     assert(MBBI != Entry->begin() && "UPDATE_VRSAVE is first instr in block?");
639     --MBBI;
640     assert(MBBI->getOpcode() == PPC::MFVRSAVE && "VRSAVE instrs wandered?");
641     MBBI->eraseFromParent();
642   }
643   
644   // Finally, nuke the UPDATE_VRSAVE.
645   MI->eraseFromParent();
646 }
647
648 // HandleVRSaveUpdate - MI is the UPDATE_VRSAVE instruction introduced by the
649 // instruction selector.  Based on the vector registers that have been used,
650 // transform this into the appropriate ORI instruction.
651 static void HandleVRSaveUpdate(MachineInstr *MI, const bool *UsedRegs,
652                                const TargetInstrInfo &TII) {
653   unsigned UsedRegMask = 0;
654   for (unsigned i = 0; i != 32; ++i)
655     if (UsedRegs[VRRegNo[i]])
656       UsedRegMask |= 1 << (31-i);
657   
658   // Live in and live out values already must be in the mask, so don't bother
659   // marking them.
660   MachineFunction *MF = MI->getParent()->getParent();
661   for (MachineFunction::livein_iterator I = 
662        MF->livein_begin(), E = MF->livein_end(); I != E; ++I) {
663     unsigned RegNo = PPCRegisterInfo::getRegisterNumbering(I->first);
664     if (VRRegNo[RegNo] == I->first)        // If this really is a vector reg.
665       UsedRegMask &= ~(1 << (31-RegNo));   // Doesn't need to be marked.
666   }
667   for (MachineFunction::liveout_iterator I = 
668        MF->liveout_begin(), E = MF->liveout_end(); I != E; ++I) {
669     unsigned RegNo = PPCRegisterInfo::getRegisterNumbering(*I);
670     if (VRRegNo[RegNo] == *I)              // If this really is a vector reg.
671       UsedRegMask &= ~(1 << (31-RegNo));   // Doesn't need to be marked.
672   }
673   
674   unsigned SrcReg = MI->getOperand(1).getReg();
675   unsigned DstReg = MI->getOperand(0).getReg();
676   // If no registers are used, turn this into a copy.
677   if (UsedRegMask == 0) {
678     // Remove all VRSAVE code.
679     RemoveVRSaveCode(MI);
680     return;
681   } else if ((UsedRegMask & 0xFFFF) == UsedRegMask) {
682     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORI), DstReg)
683         .addReg(SrcReg).addImm(UsedRegMask);
684   } else if ((UsedRegMask & 0xFFFF0000) == UsedRegMask) {
685     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORIS), DstReg)
686         .addReg(SrcReg).addImm(UsedRegMask >> 16);
687   } else {
688     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORIS), DstReg)
689        .addReg(SrcReg).addImm(UsedRegMask >> 16);
690     BuildMI(*MI->getParent(), MI, TII.get(PPC::ORI), DstReg)
691       .addReg(DstReg).addImm(UsedRegMask & 0xFFFF);
692   }
693   
694   // Remove the old UPDATE_VRSAVE instruction.
695   MI->eraseFromParent();
696 }
697
698 /// determineFrameLayout - Determine the size of the frame and maximum call
699 /// frame size.
700 void PPCRegisterInfo::determineFrameLayout(MachineFunction &MF) const {
701   MachineFrameInfo *MFI = MF.getFrameInfo();
702
703   // Get the number of bytes to allocate from the FrameInfo
704   unsigned FrameSize = MFI->getStackSize();
705   
706   // Get the alignments provided by the target, and the maximum alignment
707   // (if any) of the fixed frame objects.
708   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
709   unsigned MaxAlign = MFI->getMaxAlignment();
710   unsigned Align = std::max(TargetAlign, MaxAlign);
711   assert(isPowerOf2_32(Align) && "Alignment is not power of 2");
712   unsigned AlignMask = Align - 1;  //
713
714   // If we are a leaf function, and use up to 224 bytes of stack space,
715   // don't have a frame pointer, calls, or dynamic alloca then we do not need
716   // to adjust the stack pointer (we fit in the Red Zone).
717   if (FrameSize <= 224 &&             // Fits in red zone.
718       !MFI->hasVarSizedObjects() &&   // No dynamic alloca.
719       !MFI->hasCalls() &&             // No calls.
720       MaxAlign <= TargetAlign) {      // No special alignment.
721     // No need for frame
722     MFI->setStackSize(0);
723     return;
724   }
725   
726   // Get the maximum call frame size of all the calls.
727   unsigned maxCallFrameSize = MFI->getMaxCallFrameSize();
728   
729   // Maximum call frame needs to be at least big enough for linkage and 8 args.
730   unsigned minCallFrameSize =
731     PPCFrameInfo::getMinCallFrameSize(Subtarget.isPPC64());
732   maxCallFrameSize = std::max(maxCallFrameSize, minCallFrameSize);
733
734   // If we have dynamic alloca then maxCallFrameSize needs to be aligned so
735   // that allocations will be aligned.
736   if (MFI->hasVarSizedObjects())
737     maxCallFrameSize = (maxCallFrameSize + AlignMask) & ~AlignMask;
738   
739   // Update maximum call frame size.
740   MFI->setMaxCallFrameSize(maxCallFrameSize);
741   
742   // Include call frame size in total.
743   FrameSize += maxCallFrameSize;
744
745   // Make sure the frame is aligned.
746   FrameSize = (FrameSize + AlignMask) & ~AlignMask;
747
748   // Update frame info.
749   MFI->setStackSize(FrameSize);
750 }
751
752 void PPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
753   MachineBasicBlock &MBB = MF.front();   // Prolog goes in entry BB
754   MachineBasicBlock::iterator MBBI = MBB.begin();
755   MachineFrameInfo *MFI = MF.getFrameInfo();
756   MachineDebugInfo *DebugInfo = MFI->getMachineDebugInfo();
757   
758   // Scan the prolog, looking for an UPDATE_VRSAVE instruction.  If we find it,
759   // process it.
760   for (unsigned i = 0; MBBI != MBB.end(); ++i, ++MBBI) {
761     if (MBBI->getOpcode() == PPC::UPDATE_VRSAVE) {
762       HandleVRSaveUpdate(MBBI, MF.getUsedPhysregs(), TII);
763       break;
764     }
765   }
766   
767   // Move MBBI back to the beginning of the function.
768   MBBI = MBB.begin();
769   
770   // Work out frame sizes.
771   determineFrameLayout(MF);
772   unsigned FrameSize = MFI->getStackSize();
773   
774   // Skip if a leaf routine.
775   if (!FrameSize) return;
776   
777   int NegFrameSize = -FrameSize;
778
779   // Do we have a frame pointer for this function?
780   bool HasFP = hasFP(MF);
781
782   // If there is a frame pointer, copy R31 into TOC(SP)
783   if (HasFP) {
784     int Offset = PPCFrameInfo::getFramePointerSaveOffset(Subtarget.isPPC64());
785      
786     if (!Subtarget.isPPC64()) {
787       BuildMI(MBB, MBBI, TII.get(PPC::STW))
788         .addReg(PPC::R31).addImm(Offset).addReg(PPC::R1);
789     } else {
790       BuildMI(MBB, MBBI, TII.get(PPC::STD))
791          .addReg(PPC::X31).addImm(Offset/4).addReg(PPC::X1);
792     }
793   }
794   
795   // Get stack alignments.
796   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
797   unsigned MaxAlign = MFI->getMaxAlignment();
798
799   // Adjust stack pointer: r1 += NegFrameSize.
800   // If there is a preferred stack alignment, align R1 now
801   if (!Subtarget.isPPC64()) {
802     // PPC32.
803     if (MaxAlign > TargetAlign) {
804       assert(isPowerOf2_32(MaxAlign)&&isInt16(MaxAlign)&&"Invalid alignment!");
805       assert(isInt16(NegFrameSize) && "Unhandled stack size and alignment!");
806       BuildMI(MBB, MBBI, TII.get(PPC::RLWINM), PPC::R0)
807         .addReg(PPC::R1).addImm(0).addImm(32-Log2_32(MaxAlign)).addImm(31);
808       BuildMI(MBB, MBBI, TII.get(PPC::SUBFIC) ,PPC::R0).addReg(PPC::R0)
809         .addImm(NegFrameSize);
810       BuildMI(MBB, MBBI, TII.get(PPC::STWUX))
811         .addReg(PPC::R1).addReg(PPC::R1).addReg(PPC::R0);
812     } else if (isInt16(NegFrameSize)) {
813       BuildMI(MBB, MBBI, TII.get(PPC::STWU),
814               PPC::R1).addReg(PPC::R1).addImm(NegFrameSize).addReg(PPC::R1);
815     } else {
816       BuildMI(MBB, MBBI, TII.get(PPC::LIS), PPC::R0).addImm(NegFrameSize >> 16);
817       BuildMI(MBB, MBBI, TII.get(PPC::ORI), PPC::R0).addReg(PPC::R0)
818         .addImm(NegFrameSize & 0xFFFF);
819       BuildMI(MBB, MBBI, TII.get(PPC::STWUX)).addReg(PPC::R1).addReg(PPC::R1)
820         .addReg(PPC::R0);
821     }
822   } else {    // PPC64.
823     if (MaxAlign > TargetAlign) {
824       assert(isPowerOf2_32(MaxAlign)&&isInt16(MaxAlign)&&"Invalid alignment!");
825       assert(isInt16(NegFrameSize) && "Unhandled stack size and alignment!");
826       BuildMI(MBB, MBBI, TII.get(PPC::RLDICL), PPC::X0)
827         .addReg(PPC::X1).addImm(0).addImm(64-Log2_32(MaxAlign));
828       BuildMI(MBB, MBBI, TII.get(PPC::SUBFIC8), PPC::X0).addReg(PPC::X0)
829         .addImm(NegFrameSize);
830       BuildMI(MBB, MBBI, TII.get(PPC::STDUX))
831         .addReg(PPC::X1).addReg(PPC::X1).addReg(PPC::X0);
832     } else if (isInt16(NegFrameSize)) {
833       BuildMI(MBB, MBBI, TII.get(PPC::STDU), PPC::X1)
834              .addReg(PPC::X1).addImm(NegFrameSize/4).addReg(PPC::X1);
835     } else {
836       BuildMI(MBB, MBBI, TII.get(PPC::LIS8), PPC::X0).addImm(NegFrameSize >>16);
837       BuildMI(MBB, MBBI, TII.get(PPC::ORI8), PPC::X0).addReg(PPC::X0)
838         .addImm(NegFrameSize & 0xFFFF);
839       BuildMI(MBB, MBBI, TII.get(PPC::STDUX)).addReg(PPC::X1).addReg(PPC::X1)
840         .addReg(PPC::X0);
841     }
842   }
843   
844   if (DebugInfo && DebugInfo->hasInfo()) {
845     std::vector<MachineMove *> &Moves = DebugInfo->getFrameMoves();
846     unsigned LabelID = DebugInfo->NextLabelID();
847     
848     // Mark effective beginning of when frame pointer becomes valid.
849     BuildMI(MBB, MBBI, TII.get(PPC::DWARF_LABEL)).addImm(LabelID);
850     
851     // Show update of SP.
852     MachineLocation SPDst(MachineLocation::VirtualFP);
853     MachineLocation SPSrc(MachineLocation::VirtualFP, NegFrameSize);
854     Moves.push_back(new MachineMove(LabelID, SPDst, SPSrc));
855
856     // Add callee saved registers to move list.
857     const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
858     for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
859       MachineLocation CSDst(MachineLocation::VirtualFP,
860                             MFI->getObjectOffset(CSI[I].getFrameIdx()));
861       MachineLocation CSSrc(CSI[I].getReg());
862       Moves.push_back(new MachineMove(LabelID, CSDst, CSSrc));
863     }
864   }
865
866   // If there is a frame pointer, copy R1 into R31
867   if (HasFP) {
868     if (!Subtarget.isPPC64()) {
869       BuildMI(MBB, MBBI, TII.get(PPC::OR), PPC::R31).addReg(PPC::R1)
870         .addReg(PPC::R1);
871     } else {
872       BuildMI(MBB, MBBI, TII.get(PPC::OR8), PPC::X31).addReg(PPC::X1)
873         .addReg(PPC::X1);
874     }
875   }
876 }
877
878 void PPCRegisterInfo::emitEpilogue(MachineFunction &MF,
879                                    MachineBasicBlock &MBB) const {
880   MachineBasicBlock::iterator MBBI = prior(MBB.end());
881   assert(MBBI->getOpcode() == PPC::BLR &&
882          "Can only insert epilog into returning blocks");
883
884   // Get alignment info so we know how to restore r1
885   const MachineFrameInfo *MFI = MF.getFrameInfo();
886   unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
887   unsigned MaxAlign = MFI->getMaxAlignment();
888
889   // Get the number of bytes allocated from the FrameInfo.
890   unsigned FrameSize = MFI->getStackSize();
891
892   if (FrameSize != 0) {
893     // The loaded (or persistent) stack pointer value is offset by the 'stwu'
894     // on entry to the function.  Add this offset back now.
895     if (!Subtarget.isPPC64()) {
896       if (isInt16(FrameSize) && TargetAlign >= MaxAlign &&
897             !MFI->hasVarSizedObjects()) {
898           BuildMI(MBB, MBBI, TII.get(PPC::ADDI), PPC::R1)
899               .addReg(PPC::R1).addImm(FrameSize);
900       } else {
901         BuildMI(MBB, MBBI, TII.get(PPC::LWZ),PPC::R1).addImm(0).addReg(PPC::R1);
902       }
903     } else {
904       if (isInt16(FrameSize) && TargetAlign >= MaxAlign &&
905             !MFI->hasVarSizedObjects()) {
906         BuildMI(MBB, MBBI, TII.get(PPC::ADDI8), PPC::X1)
907            .addReg(PPC::X1).addImm(FrameSize);
908       } else {
909         BuildMI(MBB, MBBI, TII.get(PPC::LD), PPC::X1).addImm(0).addReg(PPC::X1);
910       }
911     }
912     
913     // If this function has a frame pointer, load the saved frame pointer from
914     // its stack slot.
915     if (hasFP(MF)) {
916       int Offset = PPCFrameInfo::getFramePointerSaveOffset(Subtarget.isPPC64());
917       
918       if (!Subtarget.isPPC64()) {
919         BuildMI(MBB, MBBI, TII.get(PPC::LWZ), PPC::R31)
920             .addImm(Offset).addReg(PPC::R1);
921       } else {
922         BuildMI(MBB, MBBI, TII.get(PPC::LD), PPC::X31)
923           .addImm(Offset/4).addReg(PPC::X1);
924       }
925     }
926     
927   }
928 }
929
930 unsigned PPCRegisterInfo::getRARegister() const {
931   return !Subtarget.isPPC64() ? PPC::LR : PPC::LR8;
932   
933 }
934
935 unsigned PPCRegisterInfo::getFrameRegister(MachineFunction &MF) const {
936   if (!Subtarget.isPPC64())
937     return hasFP(MF) ? PPC::R31 : PPC::R1;
938   else
939     return hasFP(MF) ? PPC::X31 : PPC::X1;
940 }
941
942 void PPCRegisterInfo::getInitialFrameState(std::vector<MachineMove *> &Moves)
943                                                                          const {
944   // Initial state of the frame pointer is R1.
945   MachineLocation Dst(MachineLocation::VirtualFP);
946   MachineLocation Src(PPC::R1, 0);
947   Moves.push_back(new MachineMove(0, Dst, Src));
948 }
949
950 #include "PPCGenRegisterInfo.inc"
951