Change getFrameMoves to return a const reference.
[oota-llvm.git] / lib / Target / Mips / MipsSEFrameLowering.cpp
1 //===-- MipsSEFrameLowering.cpp - Mips32/64 Frame Information -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the Mips32/64 implementation of TargetFrameLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MipsSEFrameLowering.h"
15 #include "MCTargetDesc/MipsBaseInfo.h"
16 #include "MipsAnalyzeImmediate.h"
17 #include "MipsMachineFunction.h"
18 #include "MipsSEInstrInfo.h"
19 #include "llvm/CodeGen/MachineFrameInfo.h"
20 #include "llvm/CodeGen/MachineFunction.h"
21 #include "llvm/CodeGen/MachineInstrBuilder.h"
22 #include "llvm/CodeGen/MachineModuleInfo.h"
23 #include "llvm/CodeGen/MachineRegisterInfo.h"
24 #include "llvm/CodeGen/RegisterScavenging.h"
25 #include "llvm/IR/DataLayout.h"
26 #include "llvm/IR/Function.h"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/Target/TargetOptions.h"
29
30 using namespace llvm;
31
32 namespace {
33 typedef MachineBasicBlock::iterator Iter;
34
35 /// Helper class to expand pseudos.
36 class ExpandPseudo {
37 public:
38   ExpandPseudo(MachineFunction &MF);
39   bool expand();
40
41 private:
42   bool expandInstr(MachineBasicBlock &MBB, Iter I);
43   void expandLoadCCond(MachineBasicBlock &MBB, Iter I);
44   void expandStoreCCond(MachineBasicBlock &MBB, Iter I);
45   void expandLoadACC(MachineBasicBlock &MBB, Iter I, unsigned RegSize);
46   void expandStoreACC(MachineBasicBlock &MBB, Iter I, unsigned RegSize);
47   bool expandCopy(MachineBasicBlock &MBB, Iter I);
48   bool expandCopyACC(MachineBasicBlock &MBB, Iter I, unsigned Dst,
49                      unsigned Src, unsigned RegSize);
50
51   MachineFunction &MF;
52   const MipsSEInstrInfo &TII;
53   const MipsRegisterInfo &RegInfo;
54   MachineRegisterInfo &MRI;
55 };
56 }
57
58 ExpandPseudo::ExpandPseudo(MachineFunction &MF_)
59   : MF(MF_),
60     TII(*static_cast<const MipsSEInstrInfo*>(MF.getTarget().getInstrInfo())),
61     RegInfo(TII.getRegisterInfo()), MRI(MF.getRegInfo()) {}
62
63 bool ExpandPseudo::expand() {
64   bool Expanded = false;
65
66   for (MachineFunction::iterator BB = MF.begin(), BBEnd = MF.end();
67        BB != BBEnd; ++BB)
68     for (Iter I = BB->begin(), End = BB->end(); I != End;)
69       Expanded |= expandInstr(*BB, I++);
70
71   return Expanded;
72 }
73
74 bool ExpandPseudo::expandInstr(MachineBasicBlock &MBB, Iter I) {
75   switch(I->getOpcode()) {
76   case Mips::LOAD_CCOND_DSP:
77   case Mips::LOAD_CCOND_DSP_P8:
78     expandLoadCCond(MBB, I);
79     break;
80   case Mips::STORE_CCOND_DSP:
81   case Mips::STORE_CCOND_DSP_P8:
82     expandStoreCCond(MBB, I);
83     break;
84   case Mips::LOAD_AC64:
85   case Mips::LOAD_AC64_P8:
86   case Mips::LOAD_AC_DSP:
87   case Mips::LOAD_AC_DSP_P8:
88     expandLoadACC(MBB, I, 4);
89     break;
90   case Mips::LOAD_AC128:
91   case Mips::LOAD_AC128_P8:
92     expandLoadACC(MBB, I, 8);
93     break;
94   case Mips::STORE_AC64:
95   case Mips::STORE_AC64_P8:
96   case Mips::STORE_AC_DSP:
97   case Mips::STORE_AC_DSP_P8:
98     expandStoreACC(MBB, I, 4);
99     break;
100   case Mips::STORE_AC128:
101   case Mips::STORE_AC128_P8:
102     expandStoreACC(MBB, I, 8);
103     break;
104   case TargetOpcode::COPY:
105     if (!expandCopy(MBB, I))
106       return false;
107     break;
108   default:
109     return false;
110   }
111
112   MBB.erase(I);
113   return true;
114 }
115
116 void ExpandPseudo::expandLoadCCond(MachineBasicBlock &MBB, Iter I) {
117   //  load $vr, FI
118   //  copy ccond, $vr
119
120   assert(I->getOperand(0).isReg() && I->getOperand(1).isFI());
121
122   const TargetRegisterClass *RC = RegInfo.intRegClass(4);
123   unsigned VR = MRI.createVirtualRegister(RC);
124   unsigned Dst = I->getOperand(0).getReg(), FI = I->getOperand(1).getIndex();
125
126   TII.loadRegFromStack(MBB, I, VR, FI, RC, &RegInfo, 0);
127   BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), Dst)
128     .addReg(VR, RegState::Kill);
129 }
130
131 void ExpandPseudo::expandStoreCCond(MachineBasicBlock &MBB, Iter I) {
132   //  copy $vr, ccond
133   //  store $vr, FI
134
135   assert(I->getOperand(0).isReg() && I->getOperand(1).isFI());
136
137   const TargetRegisterClass *RC = RegInfo.intRegClass(4);
138   unsigned VR = MRI.createVirtualRegister(RC);
139   unsigned Src = I->getOperand(0).getReg(), FI = I->getOperand(1).getIndex();
140
141   BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), VR)
142     .addReg(Src, getKillRegState(I->getOperand(0).isKill()));
143   TII.storeRegToStack(MBB, I, VR, true, FI, RC, &RegInfo, 0);
144 }
145
146 void ExpandPseudo::expandLoadACC(MachineBasicBlock &MBB, Iter I,
147                                  unsigned RegSize) {
148   //  load $vr0, FI
149   //  copy lo, $vr0
150   //  load $vr1, FI + 4
151   //  copy hi, $vr1
152
153   assert(I->getOperand(0).isReg() && I->getOperand(1).isFI());
154
155   const TargetRegisterClass *RC = RegInfo.intRegClass(RegSize);
156   unsigned VR0 = MRI.createVirtualRegister(RC);
157   unsigned VR1 = MRI.createVirtualRegister(RC);
158   unsigned Dst = I->getOperand(0).getReg(), FI = I->getOperand(1).getIndex();
159   unsigned Lo = RegInfo.getSubReg(Dst, Mips::sub_lo);
160   unsigned Hi = RegInfo.getSubReg(Dst, Mips::sub_hi);
161   DebugLoc DL = I->getDebugLoc();
162   const MCInstrDesc &Desc = TII.get(TargetOpcode::COPY);
163
164   TII.loadRegFromStack(MBB, I, VR0, FI, RC, &RegInfo, 0);
165   BuildMI(MBB, I, DL, Desc, Lo).addReg(VR0, RegState::Kill);
166   TII.loadRegFromStack(MBB, I, VR1, FI, RC, &RegInfo, RegSize);
167   BuildMI(MBB, I, DL, Desc, Hi).addReg(VR1, RegState::Kill);
168 }
169
170 void ExpandPseudo::expandStoreACC(MachineBasicBlock &MBB, Iter I,
171                                   unsigned RegSize) {
172   //  copy $vr0, lo
173   //  store $vr0, FI
174   //  copy $vr1, hi
175   //  store $vr1, FI + 4
176
177   assert(I->getOperand(0).isReg() && I->getOperand(1).isFI());
178
179   const TargetRegisterClass *RC = RegInfo.intRegClass(RegSize);
180   unsigned VR0 = MRI.createVirtualRegister(RC);
181   unsigned VR1 = MRI.createVirtualRegister(RC);
182   unsigned Src = I->getOperand(0).getReg(), FI = I->getOperand(1).getIndex();
183   unsigned SrcKill = getKillRegState(I->getOperand(0).isKill());
184   unsigned Lo = RegInfo.getSubReg(Src, Mips::sub_lo);
185   unsigned Hi = RegInfo.getSubReg(Src, Mips::sub_hi);
186   DebugLoc DL = I->getDebugLoc();
187
188   BuildMI(MBB, I, DL, TII.get(TargetOpcode::COPY), VR0).addReg(Lo, SrcKill);
189   TII.storeRegToStack(MBB, I, VR0, true, FI, RC, &RegInfo, 0);
190   BuildMI(MBB, I, DL, TII.get(TargetOpcode::COPY), VR1).addReg(Hi, SrcKill);
191   TII.storeRegToStack(MBB, I, VR1, true, FI, RC, &RegInfo, RegSize);
192 }
193
194 bool ExpandPseudo::expandCopy(MachineBasicBlock &MBB, Iter I) {
195   unsigned Dst = I->getOperand(0).getReg(), Src = I->getOperand(1).getReg();
196
197   if (Mips::ACRegsDSPRegClass.contains(Dst, Src))
198     return expandCopyACC(MBB, I, Dst, Src, 4);
199
200   if (Mips::ACRegs128RegClass.contains(Dst, Src))
201     return expandCopyACC(MBB, I, Dst, Src, 8);
202
203   return false;
204 }
205
206 bool ExpandPseudo::expandCopyACC(MachineBasicBlock &MBB, Iter I, unsigned Dst,
207                                  unsigned Src, unsigned RegSize) {
208   //  copy $vr0, src_lo
209   //  copy dst_lo, $vr0
210   //  copy $vr1, src_hi
211   //  copy dst_hi, $vr1
212
213   const TargetRegisterClass *RC = RegInfo.intRegClass(RegSize);
214   unsigned VR0 = MRI.createVirtualRegister(RC);
215   unsigned VR1 = MRI.createVirtualRegister(RC);
216   unsigned SrcKill = getKillRegState(I->getOperand(1).isKill());
217   unsigned DstLo = RegInfo.getSubReg(Dst, Mips::sub_lo);
218   unsigned DstHi = RegInfo.getSubReg(Dst, Mips::sub_hi);
219   unsigned SrcLo = RegInfo.getSubReg(Src, Mips::sub_lo);
220   unsigned SrcHi = RegInfo.getSubReg(Src, Mips::sub_hi);
221   DebugLoc DL = I->getDebugLoc();
222
223   BuildMI(MBB, I, DL, TII.get(TargetOpcode::COPY), VR0).addReg(SrcLo, SrcKill);
224   BuildMI(MBB, I, DL, TII.get(TargetOpcode::COPY), DstLo)
225     .addReg(VR0, RegState::Kill);
226   BuildMI(MBB, I, DL, TII.get(TargetOpcode::COPY), VR1).addReg(SrcHi, SrcKill);
227   BuildMI(MBB, I, DL, TII.get(TargetOpcode::COPY), DstHi)
228     .addReg(VR1, RegState::Kill);
229   return true;
230 }
231
232 unsigned MipsSEFrameLowering::ehDataReg(unsigned I) const {
233   static const unsigned EhDataReg[] = {
234     Mips::A0, Mips::A1, Mips::A2, Mips::A3
235   };
236   static const unsigned EhDataReg64[] = {
237     Mips::A0_64, Mips::A1_64, Mips::A2_64, Mips::A3_64
238   };
239
240   return STI.isABI_N64() ? EhDataReg64[I] : EhDataReg[I];
241 }
242
243 void MipsSEFrameLowering::emitPrologue(MachineFunction &MF) const {
244   MachineBasicBlock &MBB   = MF.front();
245   MachineFrameInfo *MFI    = MF.getFrameInfo();
246   MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
247   const MipsRegisterInfo *RegInfo =
248     static_cast<const MipsRegisterInfo*>(MF.getTarget().getRegisterInfo());
249   const MipsSEInstrInfo &TII =
250     *static_cast<const MipsSEInstrInfo*>(MF.getTarget().getInstrInfo());
251   MachineBasicBlock::iterator MBBI = MBB.begin();
252   DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
253   unsigned SP = STI.isABI_N64() ? Mips::SP_64 : Mips::SP;
254   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
255   unsigned ZERO = STI.isABI_N64() ? Mips::ZERO_64 : Mips::ZERO;
256   unsigned ADDu = STI.isABI_N64() ? Mips::DADDu : Mips::ADDu;
257
258   // First, compute final stack size.
259   uint64_t StackSize = MFI->getStackSize();
260
261   // No need to allocate space on the stack.
262   if (StackSize == 0 && !MFI->adjustsStack()) return;
263
264   MachineModuleInfo &MMI = MF.getMMI();
265   MachineLocation DstML, SrcML;
266
267   // Adjust stack.
268   TII.adjustStackPtr(SP, -StackSize, MBB, MBBI);
269
270   // emit ".cfi_def_cfa_offset StackSize"
271   MCSymbol *AdjustSPLabel = MMI.getContext().CreateTempSymbol();
272   BuildMI(MBB, MBBI, dl,
273           TII.get(TargetOpcode::PROLOG_LABEL)).addSym(AdjustSPLabel);
274   DstML = MachineLocation(MachineLocation::VirtualFP);
275   SrcML = MachineLocation(MachineLocation::VirtualFP, -StackSize);
276   MMI.addFrameMove(AdjustSPLabel, DstML, SrcML);
277
278   const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
279
280   if (CSI.size()) {
281     // Find the instruction past the last instruction that saves a callee-saved
282     // register to the stack.
283     for (unsigned i = 0; i < CSI.size(); ++i)
284       ++MBBI;
285
286     // Iterate over list of callee-saved registers and emit .cfi_offset
287     // directives.
288     MCSymbol *CSLabel = MMI.getContext().CreateTempSymbol();
289     BuildMI(MBB, MBBI, dl,
290             TII.get(TargetOpcode::PROLOG_LABEL)).addSym(CSLabel);
291
292     for (std::vector<CalleeSavedInfo>::const_iterator I = CSI.begin(),
293            E = CSI.end(); I != E; ++I) {
294       int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
295       unsigned Reg = I->getReg();
296
297       // If Reg is a double precision register, emit two cfa_offsets,
298       // one for each of the paired single precision registers.
299       if (Mips::AFGR64RegClass.contains(Reg)) {
300         MachineLocation DstML0(MachineLocation::VirtualFP, Offset);
301         MachineLocation DstML1(MachineLocation::VirtualFP, Offset + 4);
302         MachineLocation SrcML0(RegInfo->getSubReg(Reg, Mips::sub_fpeven));
303         MachineLocation SrcML1(RegInfo->getSubReg(Reg, Mips::sub_fpodd));
304
305         if (!STI.isLittle())
306           std::swap(SrcML0, SrcML1);
307
308         MMI.addFrameMove(CSLabel, DstML0, SrcML0);
309         MMI.addFrameMove(CSLabel, DstML1, SrcML1);
310       } else {
311         // Reg is either in CPURegs or FGR32.
312         DstML = MachineLocation(MachineLocation::VirtualFP, Offset);
313         SrcML = MachineLocation(Reg);
314         MMI.addFrameMove(CSLabel, DstML, SrcML);
315       }
316     }
317   }
318
319   if (MipsFI->callsEhReturn()) {
320     const TargetRegisterClass *RC = STI.isABI_N64() ?
321         &Mips::CPU64RegsRegClass : &Mips::CPURegsRegClass;
322
323     // Insert instructions that spill eh data registers.
324     for (int I = 0; I < 4; ++I) {
325       if (!MBB.isLiveIn(ehDataReg(I)))
326         MBB.addLiveIn(ehDataReg(I));
327       TII.storeRegToStackSlot(MBB, MBBI, ehDataReg(I), false,
328                               MipsFI->getEhDataRegFI(I), RC, RegInfo);
329     }
330
331     // Emit .cfi_offset directives for eh data registers.
332     MCSymbol *CSLabel2 = MMI.getContext().CreateTempSymbol();
333     BuildMI(MBB, MBBI, dl,
334             TII.get(TargetOpcode::PROLOG_LABEL)).addSym(CSLabel2);
335     for (int I = 0; I < 4; ++I) {
336       int64_t Offset = MFI->getObjectOffset(MipsFI->getEhDataRegFI(I));
337       DstML = MachineLocation(MachineLocation::VirtualFP, Offset);
338       SrcML = MachineLocation(ehDataReg(I));
339       MMI.addFrameMove(CSLabel2, DstML, SrcML);
340     }
341   }
342
343   // if framepointer enabled, set it to point to the stack pointer.
344   if (hasFP(MF)) {
345     // Insert instruction "move $fp, $sp" at this location.
346     BuildMI(MBB, MBBI, dl, TII.get(ADDu), FP).addReg(SP).addReg(ZERO);
347
348     // emit ".cfi_def_cfa_register $fp"
349     MCSymbol *SetFPLabel = MMI.getContext().CreateTempSymbol();
350     BuildMI(MBB, MBBI, dl,
351             TII.get(TargetOpcode::PROLOG_LABEL)).addSym(SetFPLabel);
352     DstML = MachineLocation(FP);
353     SrcML = MachineLocation(MachineLocation::VirtualFP);
354     MMI.addFrameMove(SetFPLabel, DstML, SrcML);
355   }
356 }
357
358 void MipsSEFrameLowering::emitEpilogue(MachineFunction &MF,
359                                        MachineBasicBlock &MBB) const {
360   MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
361   MachineFrameInfo *MFI            = MF.getFrameInfo();
362   MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
363   const MipsRegisterInfo *RegInfo =
364     static_cast<const MipsRegisterInfo*>(MF.getTarget().getRegisterInfo());
365   const MipsSEInstrInfo &TII =
366     *static_cast<const MipsSEInstrInfo*>(MF.getTarget().getInstrInfo());
367   DebugLoc dl = MBBI->getDebugLoc();
368   unsigned SP = STI.isABI_N64() ? Mips::SP_64 : Mips::SP;
369   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
370   unsigned ZERO = STI.isABI_N64() ? Mips::ZERO_64 : Mips::ZERO;
371   unsigned ADDu = STI.isABI_N64() ? Mips::DADDu : Mips::ADDu;
372
373   // if framepointer enabled, restore the stack pointer.
374   if (hasFP(MF)) {
375     // Find the first instruction that restores a callee-saved register.
376     MachineBasicBlock::iterator I = MBBI;
377
378     for (unsigned i = 0; i < MFI->getCalleeSavedInfo().size(); ++i)
379       --I;
380
381     // Insert instruction "move $sp, $fp" at this location.
382     BuildMI(MBB, I, dl, TII.get(ADDu), SP).addReg(FP).addReg(ZERO);
383   }
384
385   if (MipsFI->callsEhReturn()) {
386     const TargetRegisterClass *RC = STI.isABI_N64() ?
387         &Mips::CPU64RegsRegClass : &Mips::CPURegsRegClass;
388
389     // Find first instruction that restores a callee-saved register.
390     MachineBasicBlock::iterator I = MBBI;
391     for (unsigned i = 0; i < MFI->getCalleeSavedInfo().size(); ++i)
392       --I;
393
394     // Insert instructions that restore eh data registers.
395     for (int J = 0; J < 4; ++J) {
396       TII.loadRegFromStackSlot(MBB, I, ehDataReg(J), MipsFI->getEhDataRegFI(J),
397                                RC, RegInfo);
398     }
399   }
400
401   // Get the number of bytes from FrameInfo
402   uint64_t StackSize = MFI->getStackSize();
403
404   if (!StackSize)
405     return;
406
407   // Adjust stack.
408   TII.adjustStackPtr(SP, StackSize, MBB, MBBI);
409 }
410
411 bool MipsSEFrameLowering::
412 spillCalleeSavedRegisters(MachineBasicBlock &MBB,
413                           MachineBasicBlock::iterator MI,
414                           const std::vector<CalleeSavedInfo> &CSI,
415                           const TargetRegisterInfo *TRI) const {
416   MachineFunction *MF = MBB.getParent();
417   MachineBasicBlock *EntryBlock = MF->begin();
418   const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
419
420   for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
421     // Add the callee-saved register as live-in. Do not add if the register is
422     // RA and return address is taken, because it has already been added in
423     // method MipsTargetLowering::LowerRETURNADDR.
424     // It's killed at the spill, unless the register is RA and return address
425     // is taken.
426     unsigned Reg = CSI[i].getReg();
427     bool IsRAAndRetAddrIsTaken = (Reg == Mips::RA || Reg == Mips::RA_64)
428         && MF->getFrameInfo()->isReturnAddressTaken();
429     if (!IsRAAndRetAddrIsTaken)
430       EntryBlock->addLiveIn(Reg);
431
432     // Insert the spill to the stack frame.
433     bool IsKill = !IsRAAndRetAddrIsTaken;
434     const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
435     TII.storeRegToStackSlot(*EntryBlock, MI, Reg, IsKill,
436                             CSI[i].getFrameIdx(), RC, TRI);
437   }
438
439   return true;
440 }
441
442 bool
443 MipsSEFrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
444   const MachineFrameInfo *MFI = MF.getFrameInfo();
445
446   // Reserve call frame if the size of the maximum call frame fits into 16-bit
447   // immediate field and there are no variable sized objects on the stack.
448   // Make sure the second register scavenger spill slot can be accessed with one
449   // instruction.
450   return isInt<16>(MFI->getMaxCallFrameSize() + getStackAlignment()) &&
451     !MFI->hasVarSizedObjects();
452 }
453
454 // Eliminate ADJCALLSTACKDOWN, ADJCALLSTACKUP pseudo instructions
455 void MipsSEFrameLowering::
456 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
457                               MachineBasicBlock::iterator I) const {
458   const MipsSEInstrInfo &TII =
459     *static_cast<const MipsSEInstrInfo*>(MF.getTarget().getInstrInfo());
460
461   if (!hasReservedCallFrame(MF)) {
462     int64_t Amount = I->getOperand(0).getImm();
463
464     if (I->getOpcode() == Mips::ADJCALLSTACKDOWN)
465       Amount = -Amount;
466
467     unsigned SP = STI.isABI_N64() ? Mips::SP_64 : Mips::SP;
468     TII.adjustStackPtr(SP, Amount, MBB, I);
469   }
470
471   MBB.erase(I);
472 }
473
474 void MipsSEFrameLowering::
475 processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
476                                      RegScavenger *RS) const {
477   MachineRegisterInfo &MRI = MF.getRegInfo();
478   MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
479   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
480
481   // Mark $fp as used if function has dedicated frame pointer.
482   if (hasFP(MF))
483     MRI.setPhysRegUsed(FP);
484
485   // Create spill slots for eh data registers if function calls eh_return.
486   if (MipsFI->callsEhReturn())
487     MipsFI->createEhDataRegsFI();
488
489   // Expand pseudo instructions which load, store or copy accumulators.
490   // Add an emergency spill slot if a pseudo was expanded.
491   if (ExpandPseudo(MF).expand()) {
492     // The spill slot should be half the size of the accumulator. If target is
493     // mips64, it should be 64-bit, otherwise it should be 32-bt.
494     const TargetRegisterClass *RC = STI.hasMips64() ?
495       &Mips::CPU64RegsRegClass : &Mips::CPURegsRegClass;
496     int FI = MF.getFrameInfo()->CreateStackObject(RC->getSize(),
497                                                   RC->getAlignment(), false);
498     RS->addScavengingFrameIndex(FI);
499   }
500
501   // Set scavenging frame index if necessary.
502   uint64_t MaxSPOffset = MF.getInfo<MipsFunctionInfo>()->getIncomingArgSize() +
503     estimateStackSize(MF);
504
505   if (isInt<16>(MaxSPOffset))
506     return;
507
508   const TargetRegisterClass *RC = STI.isABI_N64() ?
509     &Mips::CPU64RegsRegClass : &Mips::CPURegsRegClass;
510   int FI = MF.getFrameInfo()->CreateStackObject(RC->getSize(),
511                                                 RC->getAlignment(), false);
512   RS->addScavengingFrameIndex(FI);
513 }
514
515 const MipsFrameLowering *
516 llvm::createMipsSEFrameLowering(const MipsSubtarget &ST) {
517   return new MipsSEFrameLowering(ST);
518 }