1. fix null program output after some other changes
[oota-llvm.git] / lib / Target / Mips / MipsFrameLowering.cpp
1 //===-- MipsFrameLowering.cpp - Mips 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 Mips implementation of TargetFrameLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MipsFrameLowering.h"
15 #include "MipsAnalyzeImmediate.h"
16 #include "MipsInstrInfo.h"
17 #include "MipsMachineFunction.h"
18 #include "MCTargetDesc/MipsBaseInfo.h"
19 #include "llvm/Function.h"
20 #include "llvm/CodeGen/MachineFrameInfo.h"
21 #include "llvm/CodeGen/MachineFunction.h"
22 #include "llvm/CodeGen/MachineInstrBuilder.h"
23 #include "llvm/CodeGen/MachineModuleInfo.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/Target/TargetData.h"
26 #include "llvm/Target/TargetOptions.h"
27 #include "llvm/Support/CommandLine.h"
28
29 using namespace llvm;
30
31
32 //===----------------------------------------------------------------------===//
33 //
34 // Stack Frame Processing methods
35 // +----------------------------+
36 //
37 // The stack is allocated decrementing the stack pointer on
38 // the first instruction of a function prologue. Once decremented,
39 // all stack references are done thought a positive offset
40 // from the stack/frame pointer, so the stack is considering
41 // to grow up! Otherwise terrible hacks would have to be made
42 // to get this stack ABI compliant :)
43 //
44 //  The stack frame required by the ABI (after call):
45 //  Offset
46 //
47 //  0                 ----------
48 //  4                 Args to pass
49 //  .                 saved $GP  (used in PIC)
50 //  .                 Alloca allocations
51 //  .                 Local Area
52 //  .                 CPU "Callee Saved" Registers
53 //  .                 saved FP
54 //  .                 saved RA
55 //  .                 FPU "Callee Saved" Registers
56 //  StackSize         -----------
57 //
58 // Offset - offset from sp after stack allocation on function prologue
59 //
60 // The sp is the stack pointer subtracted/added from the stack size
61 // at the Prologue/Epilogue
62 //
63 // References to the previous stack (to obtain arguments) are done
64 // with offsets that exceeds the stack size: (stacksize+(4*(num_arg-1))
65 //
66 // Examples:
67 // - reference to the actual stack frame
68 //   for any local area var there is smt like : FI >= 0, StackOffset: 4
69 //     sw REGX, 4(SP)
70 //
71 // - reference to previous stack frame
72 //   suppose there's a load to the 5th arguments : FI < 0, StackOffset: 16.
73 //   The emitted instruction will be something like:
74 //     lw REGX, 16+StackSize(SP)
75 //
76 // Since the total stack size is unknown on LowerFormalArguments, all
77 // stack references (ObjectOffset) created to reference the function
78 // arguments, are negative numbers. This way, on eliminateFrameIndex it's
79 // possible to detect those references and the offsets are adjusted to
80 // their real location.
81 //
82 //===----------------------------------------------------------------------===//
83
84 // hasFP - Return true if the specified function should have a dedicated frame
85 // pointer register.  This is true if the function has variable sized allocas or
86 // if frame pointer elimination is disabled.
87 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
88   const MachineFrameInfo *MFI = MF.getFrameInfo();
89   return MF.getTarget().Options.DisableFramePointerElim(MF) ||
90       MFI->hasVarSizedObjects() || MFI->isFrameAddressTaken();
91 }
92
93 bool MipsFrameLowering::targetHandlesStackFrameRounding() const {
94   return true;
95 }
96
97 void MipsFrameLowering::emitPrologue(MachineFunction &MF) const {
98   MachineBasicBlock &MBB   = MF.front();
99   MachineFrameInfo *MFI    = MF.getFrameInfo();
100   MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
101   const MipsRegisterInfo *RegInfo =
102     static_cast<const MipsRegisterInfo*>(MF.getTarget().getRegisterInfo());
103   const MipsInstrInfo &TII =
104     *static_cast<const MipsInstrInfo*>(MF.getTarget().getInstrInfo());
105   MachineBasicBlock::iterator MBBI = MBB.begin();
106   DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
107   unsigned SP = STI.isABI_N64() ? Mips::SP_64 : Mips::SP;
108   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
109   unsigned ZERO = STI.isABI_N64() ? Mips::ZERO_64 : Mips::ZERO;
110   unsigned ADDu = STI.isABI_N64() ? Mips::DADDu : Mips::ADDu;
111   unsigned ADDiu = STI.isABI_N64() ? Mips::DADDiu : Mips::ADDiu;
112
113   // First, compute final stack size.
114   unsigned StackAlign = getStackAlignment();
115   uint64_t StackSize = STI.inMips16Mode()? 0:
116     MFI->getObjectOffset(MipsFI->getGlobalRegFI()) +
117     StackAlign + RoundUpToAlignment(MFI->getStackSize(), StackAlign);
118
119    // Update stack size
120   MFI->setStackSize(StackSize);
121
122   // No need to allocate space on the stack.
123   if (StackSize == 0 && !MFI->adjustsStack()) return;
124
125   MachineModuleInfo &MMI = MF.getMMI();
126   std::vector<MachineMove> &Moves = MMI.getFrameMoves();
127   MachineLocation DstML, SrcML;
128
129   // Adjust stack.
130   if (isInt<16>(-StackSize)) // addi sp, sp, (-stacksize)
131     BuildMI(MBB, MBBI, dl, TII.get(ADDiu), SP).addReg(SP).addImm(-StackSize);
132   else { // Expand immediate that doesn't fit in 16-bit.
133     unsigned ATReg = STI.isABI_N64() ? Mips::AT_64 : Mips::AT;
134
135     MF.getInfo<MipsFunctionInfo>()->setEmitNOAT();
136     Mips::loadImmediate(-StackSize, STI.isABI_N64(), TII, MBB, MBBI, dl, false,
137                         0);
138     BuildMI(MBB, MBBI, dl, TII.get(ADDu), SP).addReg(SP).addReg(ATReg);
139   }
140
141   // emit ".cfi_def_cfa_offset StackSize"
142   MCSymbol *AdjustSPLabel = MMI.getContext().CreateTempSymbol();
143   BuildMI(MBB, MBBI, dl,
144           TII.get(TargetOpcode::PROLOG_LABEL)).addSym(AdjustSPLabel);
145   DstML = MachineLocation(MachineLocation::VirtualFP);
146   SrcML = MachineLocation(MachineLocation::VirtualFP, -StackSize);
147   Moves.push_back(MachineMove(AdjustSPLabel, DstML, SrcML));
148
149   const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
150
151   if (CSI.size()) {
152     // Find the instruction past the last instruction that saves a callee-saved
153     // register to the stack.
154     for (unsigned i = 0; i < CSI.size(); ++i)
155       ++MBBI;
156
157     // Iterate over list of callee-saved registers and emit .cfi_offset
158     // directives.
159     MCSymbol *CSLabel = MMI.getContext().CreateTempSymbol();
160     BuildMI(MBB, MBBI, dl,
161             TII.get(TargetOpcode::PROLOG_LABEL)).addSym(CSLabel);
162
163     for (std::vector<CalleeSavedInfo>::const_iterator I = CSI.begin(),
164            E = CSI.end(); I != E; ++I) {
165       int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
166       unsigned Reg = I->getReg();
167
168       // If Reg is a double precision register, emit two cfa_offsets,
169       // one for each of the paired single precision registers.
170       if (Mips::AFGR64RegClass.contains(Reg)) {
171         MachineLocation DstML0(MachineLocation::VirtualFP, Offset);
172         MachineLocation DstML1(MachineLocation::VirtualFP, Offset + 4);
173         MachineLocation SrcML0(RegInfo->getSubReg(Reg, Mips::sub_fpeven));
174         MachineLocation SrcML1(RegInfo->getSubReg(Reg, Mips::sub_fpodd));
175
176         if (!STI.isLittle())
177           std::swap(SrcML0, SrcML1);
178
179         Moves.push_back(MachineMove(CSLabel, DstML0, SrcML0));
180         Moves.push_back(MachineMove(CSLabel, DstML1, SrcML1));
181       } else {
182         // Reg is either in CPURegs or FGR32.
183         DstML = MachineLocation(MachineLocation::VirtualFP, Offset);
184         SrcML = MachineLocation(Reg);
185         Moves.push_back(MachineMove(CSLabel, DstML, SrcML));
186       }
187     }
188   }
189
190   // if framepointer enabled, set it to point to the stack pointer.
191   if (hasFP(MF)) {
192     // Insert instruction "move $fp, $sp" at this location.
193     BuildMI(MBB, MBBI, dl, TII.get(ADDu), FP).addReg(SP).addReg(ZERO);
194
195     // emit ".cfi_def_cfa_register $fp"
196     MCSymbol *SetFPLabel = MMI.getContext().CreateTempSymbol();
197     BuildMI(MBB, MBBI, dl,
198             TII.get(TargetOpcode::PROLOG_LABEL)).addSym(SetFPLabel);
199     DstML = MachineLocation(FP);
200     SrcML = MachineLocation(MachineLocation::VirtualFP);
201     Moves.push_back(MachineMove(SetFPLabel, DstML, SrcML));
202   }
203 }
204
205 void MipsFrameLowering::emitEpilogue(MachineFunction &MF,
206                                  MachineBasicBlock &MBB) const {
207   MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
208   MachineFrameInfo *MFI            = MF.getFrameInfo();
209   const MipsInstrInfo &TII =
210     *static_cast<const MipsInstrInfo*>(MF.getTarget().getInstrInfo());
211   DebugLoc dl = MBBI->getDebugLoc();
212   unsigned SP = STI.isABI_N64() ? Mips::SP_64 : Mips::SP;
213   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
214   unsigned ZERO = STI.isABI_N64() ? Mips::ZERO_64 : Mips::ZERO;
215   unsigned ADDu = STI.isABI_N64() ? Mips::DADDu : Mips::ADDu;
216   unsigned ADDiu = STI.isABI_N64() ? Mips::DADDiu : Mips::ADDiu;
217
218   // if framepointer enabled, restore the stack pointer.
219   if (hasFP(MF)) {
220     // Find the first instruction that restores a callee-saved register.
221     MachineBasicBlock::iterator I = MBBI;
222
223     for (unsigned i = 0; i < MFI->getCalleeSavedInfo().size(); ++i)
224       --I;
225
226     // Insert instruction "move $sp, $fp" at this location.
227     BuildMI(MBB, I, dl, TII.get(ADDu), SP).addReg(FP).addReg(ZERO);
228   }
229
230   // Get the number of bytes from FrameInfo
231   uint64_t StackSize = MFI->getStackSize();
232
233   if (!StackSize)
234     return;
235
236   // Adjust stack.
237   if (isInt<16>(StackSize)) // addi sp, sp, (-stacksize)
238     BuildMI(MBB, MBBI, dl, TII.get(ADDiu), SP).addReg(SP).addImm(StackSize);
239   else { // Expand immediate that doesn't fit in 16-bit.
240     unsigned ATReg = STI.isABI_N64() ? Mips::AT_64 : Mips::AT;
241
242     MF.getInfo<MipsFunctionInfo>()->setEmitNOAT();
243     Mips::loadImmediate(StackSize, STI.isABI_N64(), TII, MBB, MBBI, dl, false,
244                         0);
245     BuildMI(MBB, MBBI, dl, TII.get(ADDu), SP).addReg(SP).addReg(ATReg);
246   }
247 }
248
249 void MipsFrameLowering::
250 processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
251                                      RegScavenger *RS) const {
252   MachineRegisterInfo &MRI = MF.getRegInfo();
253   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
254
255   // FIXME: remove this code if register allocator can correctly mark
256   //        $fp and $ra used or unused.
257
258   // Mark $fp and $ra as used or unused.
259   if (hasFP(MF))
260     MRI.setPhysRegUsed(FP);
261
262   // The register allocator might determine $ra is used after seeing
263   // instruction "jr $ra", but we do not want PrologEpilogInserter to insert
264   // instructions to save/restore $ra unless there is a function call.
265   // To correct this, $ra is explicitly marked unused if there is no
266   // function call.
267   if (MF.getFrameInfo()->hasCalls())
268     MRI.setPhysRegUsed(Mips::RA);
269   else {
270     MRI.setPhysRegUnused(Mips::RA);
271     MRI.setPhysRegUnused(Mips::RA_64);
272   }
273 }