blob: 9392497fd07de6231add3c5a484392dff386c8b8 [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- ARMFrameLowering.cpp - ARM Frame Information ----------------------===//
Anton Korobeynikov33464912010-11-15 00:06:54 +00002//
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//
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000010// This file contains the ARM implementation of TargetFrameLowering class.
Anton Korobeynikov33464912010-11-15 00:06:54 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000014#include "ARMFrameLowering.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000015#include "ARMBaseInstrInfo.h"
Evan Chengb72d2a92011-01-11 21:46:47 +000016#include "ARMBaseRegisterInfo.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000017#include "ARMMachineFunctionInfo.h"
Eric Christophere94ac882012-08-03 00:05:53 +000018#include "llvm/CallingConv.h"
19#include "llvm/Function.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000020#include "MCTargetDesc/ARMAddressingModes.h"
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +000021#include "llvm/Function.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chengab5c7032010-11-22 18:12:04 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +000026#include "llvm/CodeGen/RegisterScavenging.h"
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000027#include "llvm/Target/TargetOptions.h"
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +000028#include "llvm/Support/CommandLine.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000029
30using namespace llvm;
31
Benjamin Kramer120cfdf2012-02-24 22:09:25 +000032static cl::opt<bool>
Jakob Stoklund Olesenbad1e6b2012-01-06 22:19:37 +000033SpillAlignedNEONRegs("align-neon-spills", cl::Hidden, cl::init(true),
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +000034 cl::desc("Align ARM NEON spills in prolog and epilog"));
35
36static MachineBasicBlock::iterator
37skipAlignedDPRCS2Spills(MachineBasicBlock::iterator MI,
38 unsigned NumAlignedDPRCS2Regs);
39
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000040/// hasFP - Return true if the specified function should have a dedicated frame
41/// pointer register. This is true if the function has variable sized allocas
42/// or if frame pointer elimination is disabled.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000043bool ARMFrameLowering::hasFP(const MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000044 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
45
Evan Chengafad0fe2012-01-04 01:55:04 +000046 // iOS requires FP not to be clobbered for backtracing purpose.
47 if (STI.isTargetIOS())
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000048 return true;
49
50 const MachineFrameInfo *MFI = MF.getFrameInfo();
51 // Always eliminate non-leaf frame pointers.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000052 return ((MF.getTarget().Options.DisableFramePointerElim(MF) &&
53 MFI->hasCalls()) ||
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000054 RegInfo->needsStackRealignment(MF) ||
55 MFI->hasVarSizedObjects() ||
56 MFI->isFrameAddressTaken());
57}
58
Bob Wilson42257852011-01-13 21:10:12 +000059/// hasReservedCallFrame - Under normal circumstances, when a frame pointer is
60/// not required, we reserve argument space for call sites in the function
61/// immediately on entry to the current function. This eliminates the need for
62/// add/sub sp brackets around call sites. Returns true if the call frame is
63/// included as part of the stack frame.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000064bool ARMFrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000065 const MachineFrameInfo *FFI = MF.getFrameInfo();
66 unsigned CFSize = FFI->getMaxCallFrameSize();
67 // It's not always a good idea to include the call frame as part of the
68 // stack frame. ARM (especially Thumb) has small immediate offset to
69 // address the stack frame. So a large call frame can cause poor codegen
70 // and may even makes it impossible to scavenge a register.
71 if (CFSize >= ((1 << 12) - 1) / 2) // Half of imm12
72 return false;
73
74 return !MF.getFrameInfo()->hasVarSizedObjects();
75}
76
Bob Wilson42257852011-01-13 21:10:12 +000077/// canSimplifyCallFramePseudos - If there is a reserved call frame, the
78/// call frame pseudos can be simplified. Unlike most targets, having a FP
79/// is not sufficient here since we still may reference some objects via SP
80/// even when FP is available in Thumb2 mode.
81bool
82ARMFrameLowering::canSimplifyCallFramePseudos(const MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000083 return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects();
84}
85
Craig Topper015f2282012-03-04 03:33:22 +000086static bool isCalleeSavedRegister(unsigned Reg, const uint16_t *CSRegs) {
Anton Korobeynikov33464912010-11-15 00:06:54 +000087 for (unsigned i = 0; CSRegs[i]; ++i)
88 if (Reg == CSRegs[i])
89 return true;
90 return false;
91}
92
93static bool isCSRestore(MachineInstr *MI,
94 const ARMBaseInstrInfo &TII,
Craig Topper015f2282012-03-04 03:33:22 +000095 const uint16_t *CSRegs) {
Eric Christopher8b3ca622010-11-18 19:40:05 +000096 // Integer spill area is handled with "pop".
97 if (MI->getOpcode() == ARM::LDMIA_RET ||
98 MI->getOpcode() == ARM::t2LDMIA_RET ||
99 MI->getOpcode() == ARM::LDMIA_UPD ||
100 MI->getOpcode() == ARM::t2LDMIA_UPD ||
101 MI->getOpcode() == ARM::VLDMDIA_UPD) {
102 // The first two operands are predicates. The last two are
103 // imp-def and imp-use of SP. Check everything in between.
104 for (int i = 5, e = MI->getNumOperands(); i != e; ++i)
105 if (!isCalleeSavedRegister(MI->getOperand(i).getReg(), CSRegs))
106 return false;
107 return true;
108 }
Owen Anderson793e7962011-07-26 20:54:26 +0000109 if ((MI->getOpcode() == ARM::LDR_POST_IMM ||
110 MI->getOpcode() == ARM::LDR_POST_REG ||
Jim Grosbach568f5282010-12-10 18:41:15 +0000111 MI->getOpcode() == ARM::t2LDR_POST) &&
112 isCalleeSavedRegister(MI->getOperand(0).getReg(), CSRegs) &&
113 MI->getOperand(1).getReg() == ARM::SP)
114 return true;
Eric Christopher8b3ca622010-11-18 19:40:05 +0000115
116 return false;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000117}
118
119static void
120emitSPUpdate(bool isARM,
121 MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
122 DebugLoc dl, const ARMBaseInstrInfo &TII,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000123 int NumBytes, unsigned MIFlags = MachineInstr::NoFlags) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000124 if (isARM)
125 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000126 ARMCC::AL, 0, TII, MIFlags);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000127 else
128 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000129 ARMCC::AL, 0, TII, MIFlags);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000130}
131
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000132void ARMFrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000133 MachineBasicBlock &MBB = MF.front();
134 MachineBasicBlock::iterator MBBI = MBB.begin();
135 MachineFrameInfo *MFI = MF.getFrameInfo();
136 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
137 const ARMBaseRegisterInfo *RegInfo =
138 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
139 const ARMBaseInstrInfo &TII =
140 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
141 assert(!AFI->isThumb1OnlyFunction() &&
142 "This emitPrologue does not support Thumb1!");
143 bool isARM = !AFI->isThumbFunction();
144 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize();
145 unsigned NumBytes = MFI->getStackSize();
146 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
147 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
148 unsigned FramePtr = RegInfo->getFrameRegister(MF);
149
150 // Determine the sizes of each callee-save spill areas and record which frame
151 // belongs to which callee-save spill areas.
152 unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0;
153 int FramePtrSpillFI = 0;
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000154 int D8SpillFI = 0;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000155
Jakob Stoklund Olesenbe5ec8c2012-10-26 21:46:57 +0000156 // All calls are tail calls in GHC calling conv, and functions have no
157 // prologue/epilogue.
Eric Christophere94ac882012-08-03 00:05:53 +0000158 if (MF.getFunction()->getCallingConv() == CallingConv::GHC)
159 return;
160
Anton Korobeynikov33464912010-11-15 00:06:54 +0000161 // Allocate the vararg register save area. This is not counted in NumBytes.
162 if (VARegSaveSize)
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000163 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -VARegSaveSize,
164 MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000165
166 if (!AFI->hasStackFrame()) {
167 if (NumBytes != 0)
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000168 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes,
169 MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000170 return;
171 }
172
173 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
174 unsigned Reg = CSI[i].getReg();
175 int FI = CSI[i].getFrameIdx();
176 switch (Reg) {
177 case ARM::R4:
178 case ARM::R5:
179 case ARM::R6:
180 case ARM::R7:
181 case ARM::LR:
182 if (Reg == FramePtr)
183 FramePtrSpillFI = FI;
184 AFI->addGPRCalleeSavedArea1Frame(FI);
185 GPRCS1Size += 4;
186 break;
187 case ARM::R8:
188 case ARM::R9:
189 case ARM::R10:
190 case ARM::R11:
191 if (Reg == FramePtr)
192 FramePtrSpillFI = FI;
Evan Chengafad0fe2012-01-04 01:55:04 +0000193 if (STI.isTargetIOS()) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000194 AFI->addGPRCalleeSavedArea2Frame(FI);
195 GPRCS2Size += 4;
196 } else {
197 AFI->addGPRCalleeSavedArea1Frame(FI);
198 GPRCS1Size += 4;
199 }
200 break;
201 default:
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000202 // This is a DPR. Exclude the aligned DPRCS2 spills.
203 if (Reg == ARM::D8)
204 D8SpillFI = FI;
205 if (Reg < ARM::D8 || Reg >= ARM::D8 + AFI->getNumAlignedDPRCS2Regs()) {
206 AFI->addDPRCalleeSavedAreaFrame(FI);
207 DPRCSSize += 8;
208 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000209 }
210 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000211
Eric Christopher8b3ca622010-11-18 19:40:05 +0000212 // Move past area 1.
213 if (GPRCS1Size > 0) MBBI++;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000214
Anton Korobeynikov33464912010-11-15 00:06:54 +0000215 // Set FP to point to the stack slot that contains the previous FP.
Evan Chengafad0fe2012-01-04 01:55:04 +0000216 // For iOS, FP is R7, which has now been stored in spill area 1.
217 // Otherwise, if this is not iOS, all the callee-saved registers go
Anton Korobeynikov33464912010-11-15 00:06:54 +0000218 // into spill area 1, including the FP in R11. In either case, it is
219 // now safe to emit this assignment.
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000220 bool HasFP = hasFP(MF);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000221 if (HasFP) {
222 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : ARM::t2ADDri;
223 MachineInstrBuilder MIB =
224 BuildMI(MBB, MBBI, dl, TII.get(ADDriOpc), FramePtr)
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000225 .addFrameIndex(FramePtrSpillFI).addImm(0)
226 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000227 AddDefaultCC(AddDefaultPred(MIB));
228 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000229
Eric Christopher8b3ca622010-11-18 19:40:05 +0000230 // Move past area 2.
231 if (GPRCS2Size > 0) MBBI++;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000232
Anton Korobeynikov33464912010-11-15 00:06:54 +0000233 // Determine starting offsets of spill areas.
234 unsigned DPRCSOffset = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize);
235 unsigned GPRCS2Offset = DPRCSOffset + DPRCSSize;
236 unsigned GPRCS1Offset = GPRCS2Offset + GPRCS2Size;
237 if (HasFP)
238 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) +
239 NumBytes);
240 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset);
241 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset);
242 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset);
243
Eric Christopher8b3ca622010-11-18 19:40:05 +0000244 // Move past area 3.
Evan Chengacca09b2011-02-25 00:24:46 +0000245 if (DPRCSSize > 0) {
246 MBBI++;
247 // Since vpush register list cannot have gaps, there may be multiple vpush
Evan Cheng9831f2d2011-02-25 01:29:29 +0000248 // instructions in the prologue.
Evan Chengacca09b2011-02-25 00:24:46 +0000249 while (MBBI->getOpcode() == ARM::VSTMDDB_UPD)
250 MBBI++;
251 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000252
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000253 // Move past the aligned DPRCS2 area.
254 if (AFI->getNumAlignedDPRCS2Regs() > 0) {
255 MBBI = skipAlignedDPRCS2Spills(MBBI, AFI->getNumAlignedDPRCS2Regs());
256 // The code inserted by emitAlignedDPRCS2Spills realigns the stack, and
257 // leaves the stack pointer pointing to the DPRCS2 area.
258 //
259 // Adjust NumBytes to represent the stack slots below the DPRCS2 area.
260 NumBytes += MFI->getObjectOffset(D8SpillFI);
261 } else
262 NumBytes = DPRCSOffset;
263
Anton Korobeynikov33464912010-11-15 00:06:54 +0000264 if (NumBytes) {
265 // Adjust SP after all the callee-save spills.
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000266 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes,
267 MachineInstr::FrameSetup);
Evan Chengab5c7032010-11-22 18:12:04 +0000268 if (HasFP && isARM)
269 // Restore from fp only in ARM mode: e.g. sub sp, r7, #24
270 // Note it's not safe to do this in Thumb2 mode because it would have
271 // taken two instructions:
272 // mov sp, r7
273 // sub sp, #24
274 // If an interrupt is taken between the two instructions, then sp is in
275 // an inconsistent state (pointing to the middle of callee-saved area).
276 // The interrupt handler can end up clobbering the registers.
Anton Korobeynikov33464912010-11-15 00:06:54 +0000277 AFI->setShouldRestoreSPFromFP(true);
278 }
279
Evan Chengab5c7032010-11-22 18:12:04 +0000280 if (STI.isTargetELF() && hasFP(MF))
Anton Korobeynikov33464912010-11-15 00:06:54 +0000281 MFI->setOffsetAdjustment(MFI->getOffsetAdjustment() -
282 AFI->getFramePtrSpillOffset());
Anton Korobeynikov33464912010-11-15 00:06:54 +0000283
284 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size);
285 AFI->setGPRCalleeSavedArea2Size(GPRCS2Size);
286 AFI->setDPRCalleeSavedAreaSize(DPRCSSize);
287
288 // If we need dynamic stack realignment, do it here. Be paranoid and make
289 // sure if we also have VLAs, we have a base pointer for frame access.
Jakob Stoklund Olesen43ea32c2011-12-24 04:17:01 +0000290 // If aligned NEON registers were spilled, the stack has already been
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000291 // realigned.
292 if (!AFI->getNumAlignedDPRCS2Regs() && RegInfo->needsStackRealignment(MF)) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000293 unsigned MaxAlign = MFI->getMaxAlignment();
294 assert (!AFI->isThumb1OnlyFunction());
295 if (!AFI->isThumbFunction()) {
296 // Emit bic sp, sp, MaxAlign
297 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl,
298 TII.get(ARM::BICri), ARM::SP)
299 .addReg(ARM::SP, RegState::Kill)
300 .addImm(MaxAlign-1)));
301 } else {
302 // We cannot use sp as source/dest register here, thus we're emitting the
303 // following sequence:
304 // mov r4, sp
305 // bic r4, r4, MaxAlign
306 // mov sp, r4
307 // FIXME: It will be better just to find spare register here.
Jim Grosbach2a7b41b2011-06-30 23:38:17 +0000308 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::R4)
Jim Grosbach63b46fa2011-06-30 22:10:46 +0000309 .addReg(ARM::SP, RegState::Kill));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000310 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl,
311 TII.get(ARM::t2BICri), ARM::R4)
312 .addReg(ARM::R4, RegState::Kill)
313 .addImm(MaxAlign-1)));
Jim Grosbach2a7b41b2011-06-30 23:38:17 +0000314 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP)
Jim Grosbach63b46fa2011-06-30 22:10:46 +0000315 .addReg(ARM::R4, RegState::Kill));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000316 }
317
318 AFI->setShouldRestoreSPFromFP(true);
319 }
320
321 // If we need a base pointer, set it up here. It's whatever the value
322 // of the stack pointer is at this point. Any variable size objects
323 // will be allocated after this, so we can still use the base pointer
324 // to reference locals.
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000325 // FIXME: Clarify FrameSetup flags here.
Anton Korobeynikov33464912010-11-15 00:06:54 +0000326 if (RegInfo->hasBasePointer(MF)) {
327 if (isARM)
328 BuildMI(MBB, MBBI, dl,
329 TII.get(ARM::MOVr), RegInfo->getBaseRegister())
330 .addReg(ARM::SP)
331 .addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
332 else
Jim Grosbach2a7b41b2011-06-30 23:38:17 +0000333 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr),
Jim Grosbach63b46fa2011-06-30 22:10:46 +0000334 RegInfo->getBaseRegister())
335 .addReg(ARM::SP));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000336 }
337
338 // If the frame has variable sized objects then the epilogue must restore
Eric Christopher4dd312f2011-01-10 23:10:59 +0000339 // the sp from fp. We can assume there's an FP here since hasFP already
340 // checks for hasVarSizedObjects.
Evan Chengab5c7032010-11-22 18:12:04 +0000341 if (MFI->hasVarSizedObjects())
Anton Korobeynikov33464912010-11-15 00:06:54 +0000342 AFI->setShouldRestoreSPFromFP(true);
343}
344
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000345void ARMFrameLowering::emitEpilogue(MachineFunction &MF,
Bob Wilson42257852011-01-13 21:10:12 +0000346 MachineBasicBlock &MBB) const {
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +0000347 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000348 assert(MBBI->isReturn() && "Can only insert epilog into returning blocks");
Anton Korobeynikov33464912010-11-15 00:06:54 +0000349 unsigned RetOpcode = MBBI->getOpcode();
350 DebugLoc dl = MBBI->getDebugLoc();
351 MachineFrameInfo *MFI = MF.getFrameInfo();
352 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
353 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
354 const ARMBaseInstrInfo &TII =
355 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
356 assert(!AFI->isThumb1OnlyFunction() &&
357 "This emitEpilogue does not support Thumb1!");
358 bool isARM = !AFI->isThumbFunction();
359
360 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize();
361 int NumBytes = (int)MFI->getStackSize();
362 unsigned FramePtr = RegInfo->getFrameRegister(MF);
363
Jakob Stoklund Olesenbe5ec8c2012-10-26 21:46:57 +0000364 // All calls are tail calls in GHC calling conv, and functions have no
365 // prologue/epilogue.
Eric Christophere94ac882012-08-03 00:05:53 +0000366 if (MF.getFunction()->getCallingConv() == CallingConv::GHC)
367 return;
368
Anton Korobeynikov33464912010-11-15 00:06:54 +0000369 if (!AFI->hasStackFrame()) {
370 if (NumBytes != 0)
371 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
372 } else {
373 // Unwind MBBI to point to first LDR / VLDRD.
Craig Topper015f2282012-03-04 03:33:22 +0000374 const uint16_t *CSRegs = RegInfo->getCalleeSavedRegs();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000375 if (MBBI != MBB.begin()) {
376 do
377 --MBBI;
378 while (MBBI != MBB.begin() && isCSRestore(MBBI, TII, CSRegs));
379 if (!isCSRestore(MBBI, TII, CSRegs))
380 ++MBBI;
381 }
382
383 // Move SP to start of FP callee save spill area.
384 NumBytes -= (AFI->getGPRCalleeSavedArea1Size() +
385 AFI->getGPRCalleeSavedArea2Size() +
386 AFI->getDPRCalleeSavedAreaSize());
387
388 // Reset SP based on frame pointer only if the stack frame extends beyond
389 // frame pointer stack slot or target is ELF and the function has FP.
390 if (AFI->shouldRestoreSPFromFP()) {
391 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes;
392 if (NumBytes) {
393 if (isARM)
394 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes,
395 ARMCC::AL, 0, TII);
Evan Chengab5c7032010-11-22 18:12:04 +0000396 else {
397 // It's not possible to restore SP from FP in a single instruction.
Evan Chengafad0fe2012-01-04 01:55:04 +0000398 // For iOS, this looks like:
Evan Chengab5c7032010-11-22 18:12:04 +0000399 // mov sp, r7
400 // sub sp, #24
401 // This is bad, if an interrupt is taken after the mov, sp is in an
402 // inconsistent state.
403 // Use the first callee-saved register as a scratch register.
Kaelyn Uhrain61fac682012-10-26 23:28:41 +0000404 assert(MF.getRegInfo().isPhysRegUsed(ARM::R4) &&
Evan Chengab5c7032010-11-22 18:12:04 +0000405 "No scratch register to restore SP from FP!");
406 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes,
Anton Korobeynikov33464912010-11-15 00:06:54 +0000407 ARMCC::AL, 0, TII);
Jim Grosbach2a7b41b2011-06-30 23:38:17 +0000408 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr),
Jim Grosbach63b46fa2011-06-30 22:10:46 +0000409 ARM::SP)
410 .addReg(ARM::R4));
Evan Chengab5c7032010-11-22 18:12:04 +0000411 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000412 } else {
413 // Thumb2 or ARM.
414 if (isARM)
415 BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), ARM::SP)
416 .addReg(FramePtr).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
417 else
Jim Grosbach2a7b41b2011-06-30 23:38:17 +0000418 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr),
Jim Grosbach63b46fa2011-06-30 22:10:46 +0000419 ARM::SP)
420 .addReg(FramePtr));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000421 }
422 } else if (NumBytes)
423 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
424
Eric Christopher8b3ca622010-11-18 19:40:05 +0000425 // Increment past our save areas.
Evan Chengacca09b2011-02-25 00:24:46 +0000426 if (AFI->getDPRCalleeSavedAreaSize()) {
427 MBBI++;
428 // Since vpop register list cannot have gaps, there may be multiple vpop
429 // instructions in the epilogue.
430 while (MBBI->getOpcode() == ARM::VLDMDIA_UPD)
431 MBBI++;
432 }
Eric Christopher8b3ca622010-11-18 19:40:05 +0000433 if (AFI->getGPRCalleeSavedArea2Size()) MBBI++;
434 if (AFI->getGPRCalleeSavedArea1Size()) MBBI++;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000435 }
436
Jakob Stoklund Olesenaa395e82012-04-06 21:17:42 +0000437 if (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNri) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000438 // Tail call return: adjust the stack pointer and jump to callee.
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +0000439 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000440 MachineOperand &JumpTarget = MBBI->getOperand(0);
441
442 // Jump to label or value in register.
Jakob Stoklund Olesenaa395e82012-04-06 21:17:42 +0000443 if (RetOpcode == ARM::TCRETURNdi) {
444 unsigned TCOpcode = STI.isThumb() ?
445 (STI.isTargetIOS() ? ARM::tTAILJMPd : ARM::tTAILJMPdND) :
446 ARM::TAILJMPd;
Evan Cheng3d2125c2010-11-30 23:55:39 +0000447 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, dl, TII.get(TCOpcode));
448 if (JumpTarget.isGlobal())
449 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
450 JumpTarget.getTargetFlags());
451 else {
452 assert(JumpTarget.isSymbol());
453 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
454 JumpTarget.getTargetFlags());
455 }
Owen Anderson51f6a7a2011-09-09 21:48:23 +0000456
457 // Add the default predicate in Thumb mode.
458 if (STI.isThumb()) MIB.addImm(ARMCC::AL).addReg(0);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000459 } else if (RetOpcode == ARM::TCRETURNri) {
Jim Grosbach5edf24e2011-03-15 00:30:40 +0000460 BuildMI(MBB, MBBI, dl,
461 TII.get(STI.isThumb() ? ARM::tTAILJMPr : ARM::TAILJMPr)).
Anton Korobeynikov33464912010-11-15 00:06:54 +0000462 addReg(JumpTarget.getReg(), RegState::Kill);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000463 }
464
465 MachineInstr *NewMI = prior(MBBI);
466 for (unsigned i = 1, e = MBBI->getNumOperands(); i != e; ++i)
467 NewMI->addOperand(MBBI->getOperand(i));
468
469 // Delete the pseudo instruction TCRETURN.
470 MBB.erase(MBBI);
Cameron Zwarichcd4e0b52011-06-17 02:16:43 +0000471 MBBI = NewMI;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000472 }
473
474 if (VARegSaveSize)
475 emitSPUpdate(isARM, MBB, MBBI, dl, TII, VARegSaveSize);
476}
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000477
Bob Wilson42257852011-01-13 21:10:12 +0000478/// getFrameIndexReference - Provide a base+offset reference to an FI slot for
479/// debug info. It's the same as what we use for resolving the code-gen
480/// references for now. FIXME: This can go wrong when references are
481/// SP-relative and simple call frames aren't used.
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000482int
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000483ARMFrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
Bob Wilson42257852011-01-13 21:10:12 +0000484 unsigned &FrameReg) const {
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000485 return ResolveFrameIndexReference(MF, FI, FrameReg, 0);
486}
487
488int
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000489ARMFrameLowering::ResolveFrameIndexReference(const MachineFunction &MF,
Evan Chengdb6cbe12011-04-22 01:42:52 +0000490 int FI, unsigned &FrameReg,
Bob Wilson42257852011-01-13 21:10:12 +0000491 int SPAdj) const {
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000492 const MachineFrameInfo *MFI = MF.getFrameInfo();
493 const ARMBaseRegisterInfo *RegInfo =
494 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
495 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
496 int Offset = MFI->getObjectOffset(FI) + MFI->getStackSize();
497 int FPOffset = Offset - AFI->getFramePtrSpillOffset();
498 bool isFixed = MFI->isFixedObjectIndex(FI);
499
500 FrameReg = ARM::SP;
501 Offset += SPAdj;
502 if (AFI->isGPRCalleeSavedArea1Frame(FI))
503 return Offset - AFI->getGPRCalleeSavedArea1Offset();
504 else if (AFI->isGPRCalleeSavedArea2Frame(FI))
505 return Offset - AFI->getGPRCalleeSavedArea2Offset();
506 else if (AFI->isDPRCalleeSavedAreaFrame(FI))
507 return Offset - AFI->getDPRCalleeSavedAreaOffset();
508
Jakob Stoklund Olesen0f9d07f2012-02-28 01:15:01 +0000509 // SP can move around if there are allocas. We may also lose track of SP
510 // when emergency spilling inside a non-reserved call frame setup.
Bob Wilson055a8122012-03-20 19:28:22 +0000511 bool hasMovingSP = !hasReservedCallFrame(MF);
Jakob Stoklund Olesen0f9d07f2012-02-28 01:15:01 +0000512
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000513 // When dynamically realigning the stack, use the frame pointer for
514 // parameters, and the stack/base pointer for locals.
515 if (RegInfo->needsStackRealignment(MF)) {
516 assert (hasFP(MF) && "dynamic stack realignment without a FP!");
517 if (isFixed) {
518 FrameReg = RegInfo->getFrameRegister(MF);
519 Offset = FPOffset;
Jakob Stoklund Olesen0f9d07f2012-02-28 01:15:01 +0000520 } else if (hasMovingSP) {
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000521 assert(RegInfo->hasBasePointer(MF) &&
522 "VLAs and dynamic stack alignment, but missing base pointer!");
523 FrameReg = RegInfo->getBaseRegister();
524 }
525 return Offset;
526 }
527
528 // If there is a frame pointer, use it when we can.
529 if (hasFP(MF) && AFI->hasStackFrame()) {
530 // Use frame pointer to reference fixed objects. Use it for locals if
531 // there are VLAs (and thus the SP isn't reliable as a base).
Jakob Stoklund Olesen0f9d07f2012-02-28 01:15:01 +0000532 if (isFixed || (hasMovingSP && !RegInfo->hasBasePointer(MF))) {
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000533 FrameReg = RegInfo->getFrameRegister(MF);
534 return FPOffset;
Jakob Stoklund Olesen0f9d07f2012-02-28 01:15:01 +0000535 } else if (hasMovingSP) {
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000536 assert(RegInfo->hasBasePointer(MF) && "missing base pointer!");
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000537 if (AFI->isThumb2Function()) {
Evan Chengdb6cbe12011-04-22 01:42:52 +0000538 // Try to use the frame pointer if we can, else use the base pointer
539 // since it's available. This is handy for the emergency spill slot, in
540 // particular.
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000541 if (FPOffset >= -255 && FPOffset < 0) {
542 FrameReg = RegInfo->getFrameRegister(MF);
543 return FPOffset;
544 }
Evan Chengdb6cbe12011-04-22 01:42:52 +0000545 }
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000546 } else if (AFI->isThumb2Function()) {
Andrew Trick51972da2011-08-25 17:40:54 +0000547 // Use add <rd>, sp, #<imm8>
Evan Chengdb6cbe12011-04-22 01:42:52 +0000548 // ldr <rd>, [sp, #<imm8>]
549 // if at all possible to save space.
550 if (Offset >= 0 && (Offset & 3) == 0 && Offset <= 1020)
551 return Offset;
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000552 // In Thumb2 mode, the negative offset is very limited. Try to avoid
Evan Chengdb6cbe12011-04-22 01:42:52 +0000553 // out of range references. ldr <rt>,[<rn>, #-<imm8>]
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000554 if (FPOffset >= -255 && FPOffset < 0) {
555 FrameReg = RegInfo->getFrameRegister(MF);
556 return FPOffset;
557 }
558 } else if (Offset > (FPOffset < 0 ? -FPOffset : FPOffset)) {
559 // Otherwise, use SP or FP, whichever is closer to the stack slot.
560 FrameReg = RegInfo->getFrameRegister(MF);
561 return FPOffset;
562 }
563 }
564 // Use the base pointer if we have one.
565 if (RegInfo->hasBasePointer(MF))
566 FrameReg = RegInfo->getBaseRegister();
567 return Offset;
568}
569
Bob Wilson42257852011-01-13 21:10:12 +0000570int ARMFrameLowering::getFrameIndexOffset(const MachineFunction &MF,
571 int FI) const {
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000572 unsigned FrameReg;
573 return getFrameIndexReference(MF, FI, FrameReg);
574}
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000575
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000576void ARMFrameLowering::emitPushInst(MachineBasicBlock &MBB,
Bob Wilson42257852011-01-13 21:10:12 +0000577 MachineBasicBlock::iterator MI,
578 const std::vector<CalleeSavedInfo> &CSI,
579 unsigned StmOpc, unsigned StrOpc,
580 bool NoGap,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000581 bool(*Func)(unsigned, bool),
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000582 unsigned NumAlignedDPRCS2Regs,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000583 unsigned MIFlags) const {
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000584 MachineFunction &MF = *MBB.getParent();
585 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
586
587 DebugLoc DL;
588 if (MI != MBB.end()) DL = MI->getDebugLoc();
589
Evan Cheng9801b5c2010-12-07 19:59:34 +0000590 SmallVector<std::pair<unsigned,bool>, 4> Regs;
Evan Cheng06d65f52010-12-07 23:08:38 +0000591 unsigned i = CSI.size();
592 while (i != 0) {
593 unsigned LastReg = 0;
594 for (; i != 0; --i) {
595 unsigned Reg = CSI[i-1].getReg();
Evan Chengafad0fe2012-01-04 01:55:04 +0000596 if (!(Func)(Reg, STI.isTargetIOS())) continue;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000597
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000598 // D-registers in the aligned area DPRCS2 are NOT spilled here.
599 if (Reg >= ARM::D8 && Reg < ARM::D8 + NumAlignedDPRCS2Regs)
600 continue;
601
Evan Cheng06d65f52010-12-07 23:08:38 +0000602 // Add the callee-saved register as live-in unless it's LR and
Jim Grosbach2a4f0982010-12-09 16:14:46 +0000603 // @llvm.returnaddress is called. If LR is returned for
604 // @llvm.returnaddress then it's already added to the function and
605 // entry block live-in sets.
Evan Cheng06d65f52010-12-07 23:08:38 +0000606 bool isKill = true;
607 if (Reg == ARM::LR) {
608 if (MF.getFrameInfo()->isReturnAddressTaken() &&
609 MF.getRegInfo().isLiveIn(Reg))
610 isKill = false;
611 }
612
613 if (isKill)
614 MBB.addLiveIn(Reg);
615
Eric Christopher1a48c032010-12-09 01:57:45 +0000616 // If NoGap is true, push consecutive registers and then leave the rest
Evan Cheng275bf632010-12-08 06:29:02 +0000617 // for other instructions. e.g.
Eric Christopher1a48c032010-12-09 01:57:45 +0000618 // vpush {d8, d10, d11} -> vpush {d8}, vpush {d10, d11}
Evan Cheng275bf632010-12-08 06:29:02 +0000619 if (NoGap && LastReg && LastReg != Reg-1)
620 break;
Evan Cheng06d65f52010-12-07 23:08:38 +0000621 LastReg = Reg;
622 Regs.push_back(std::make_pair(Reg, isKill));
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000623 }
624
Jim Grosbachc6f92612010-12-09 18:31:13 +0000625 if (Regs.empty())
626 continue;
627 if (Regs.size() > 1 || StrOpc== 0) {
Evan Cheng06d65f52010-12-07 23:08:38 +0000628 MachineInstrBuilder MIB =
Jim Grosbachc6f92612010-12-09 18:31:13 +0000629 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(StmOpc), ARM::SP)
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000630 .addReg(ARM::SP).setMIFlags(MIFlags));
Evan Cheng06d65f52010-12-07 23:08:38 +0000631 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
632 MIB.addReg(Regs[i].first, getKillRegState(Regs[i].second));
Jim Grosbachc6f92612010-12-09 18:31:13 +0000633 } else if (Regs.size() == 1) {
634 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(StrOpc),
635 ARM::SP)
636 .addReg(Regs[0].first, getKillRegState(Regs[0].second))
Jim Grosbach19dec202011-08-05 20:35:44 +0000637 .addReg(ARM::SP).setMIFlags(MIFlags)
638 .addImm(-4);
Jim Grosbachc6f92612010-12-09 18:31:13 +0000639 AddDefaultPred(MIB);
Evan Cheng06d65f52010-12-07 23:08:38 +0000640 }
Jim Grosbachc6f92612010-12-09 18:31:13 +0000641 Regs.clear();
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000642 }
Evan Cheng06d65f52010-12-07 23:08:38 +0000643}
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000644
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000645void ARMFrameLowering::emitPopInst(MachineBasicBlock &MBB,
Bob Wilson42257852011-01-13 21:10:12 +0000646 MachineBasicBlock::iterator MI,
647 const std::vector<CalleeSavedInfo> &CSI,
648 unsigned LdmOpc, unsigned LdrOpc,
649 bool isVarArg, bool NoGap,
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000650 bool(*Func)(unsigned, bool),
651 unsigned NumAlignedDPRCS2Regs) const {
Evan Cheng06d65f52010-12-07 23:08:38 +0000652 MachineFunction &MF = *MBB.getParent();
653 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
654 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
655 DebugLoc DL = MI->getDebugLoc();
Evan Cheng7cfa6562011-01-25 01:28:33 +0000656 unsigned RetOpcode = MI->getOpcode();
657 bool isTailCall = (RetOpcode == ARM::TCRETURNdi ||
Jakob Stoklund Olesenaa395e82012-04-06 21:17:42 +0000658 RetOpcode == ARM::TCRETURNri);
Evan Cheng06d65f52010-12-07 23:08:38 +0000659
660 SmallVector<unsigned, 4> Regs;
661 unsigned i = CSI.size();
662 while (i != 0) {
663 unsigned LastReg = 0;
664 bool DeleteRet = false;
665 for (; i != 0; --i) {
666 unsigned Reg = CSI[i-1].getReg();
Evan Chengafad0fe2012-01-04 01:55:04 +0000667 if (!(Func)(Reg, STI.isTargetIOS())) continue;
Evan Cheng06d65f52010-12-07 23:08:38 +0000668
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000669 // The aligned reloads from area DPRCS2 are not inserted here.
670 if (Reg >= ARM::D8 && Reg < ARM::D8 + NumAlignedDPRCS2Regs)
671 continue;
672
Evan Cheng7cfa6562011-01-25 01:28:33 +0000673 if (Reg == ARM::LR && !isTailCall && !isVarArg && STI.hasV5TOps()) {
Evan Cheng06d65f52010-12-07 23:08:38 +0000674 Reg = ARM::PC;
Jim Grosbachc6f92612010-12-09 18:31:13 +0000675 LdmOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET;
Evan Cheng06d65f52010-12-07 23:08:38 +0000676 // Fold the return instruction into the LDM.
677 DeleteRet = true;
678 }
679
Evan Cheng275bf632010-12-08 06:29:02 +0000680 // If NoGap is true, pop consecutive registers and then leave the rest
681 // for other instructions. e.g.
682 // vpop {d8, d10, d11} -> vpop {d8}, vpop {d10, d11}
683 if (NoGap && LastReg && LastReg != Reg-1)
684 break;
685
Evan Cheng06d65f52010-12-07 23:08:38 +0000686 LastReg = Reg;
687 Regs.push_back(Reg);
688 }
689
Jim Grosbachc6f92612010-12-09 18:31:13 +0000690 if (Regs.empty())
691 continue;
692 if (Regs.size() > 1 || LdrOpc == 0) {
Evan Cheng06d65f52010-12-07 23:08:38 +0000693 MachineInstrBuilder MIB =
Jim Grosbachc6f92612010-12-09 18:31:13 +0000694 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(LdmOpc), ARM::SP)
Evan Cheng06d65f52010-12-07 23:08:38 +0000695 .addReg(ARM::SP));
696 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
697 MIB.addReg(Regs[i], getDefRegState(true));
Andrew Trickb9ca5122011-08-25 17:50:53 +0000698 if (DeleteRet) {
699 MIB->copyImplicitOps(&*MI);
Evan Cheng06d65f52010-12-07 23:08:38 +0000700 MI->eraseFromParent();
Andrew Trickb9ca5122011-08-25 17:50:53 +0000701 }
Evan Cheng06d65f52010-12-07 23:08:38 +0000702 MI = MIB;
Jim Grosbachc6f92612010-12-09 18:31:13 +0000703 } else if (Regs.size() == 1) {
704 // If we adjusted the reg to PC from LR above, switch it back here. We
705 // only do that for LDM.
706 if (Regs[0] == ARM::PC)
707 Regs[0] = ARM::LR;
708 MachineInstrBuilder MIB =
709 BuildMI(MBB, MI, DL, TII.get(LdrOpc), Regs[0])
710 .addReg(ARM::SP, RegState::Define)
711 .addReg(ARM::SP);
712 // ARM mode needs an extra reg0 here due to addrmode2. Will go away once
713 // that refactoring is complete (eventually).
Owen Anderson793e7962011-07-26 20:54:26 +0000714 if (LdrOpc == ARM::LDR_POST_REG || LdrOpc == ARM::LDR_POST_IMM) {
Jim Grosbachc6f92612010-12-09 18:31:13 +0000715 MIB.addReg(0);
716 MIB.addImm(ARM_AM::getAM2Opc(ARM_AM::add, 4, ARM_AM::no_shift));
717 } else
718 MIB.addImm(4);
719 AddDefaultPred(MIB);
Evan Cheng06d65f52010-12-07 23:08:38 +0000720 }
Jim Grosbachc6f92612010-12-09 18:31:13 +0000721 Regs.clear();
Evan Cheng9801b5c2010-12-07 19:59:34 +0000722 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000723}
724
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000725/// Emit aligned spill instructions for NumAlignedDPRCS2Regs D-registers
Jakob Stoklund Olesen43ea32c2011-12-24 04:17:01 +0000726/// starting from d8. Also insert stack realignment code and leave the stack
727/// pointer pointing to the d8 spill slot.
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000728static void emitAlignedDPRCS2Spills(MachineBasicBlock &MBB,
729 MachineBasicBlock::iterator MI,
730 unsigned NumAlignedDPRCS2Regs,
731 const std::vector<CalleeSavedInfo> &CSI,
732 const TargetRegisterInfo *TRI) {
733 MachineFunction &MF = *MBB.getParent();
734 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
735 DebugLoc DL = MI->getDebugLoc();
736 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
737 MachineFrameInfo &MFI = *MF.getFrameInfo();
738
739 // Mark the D-register spill slots as properly aligned. Since MFI computes
740 // stack slot layout backwards, this can actually mean that the d-reg stack
741 // slot offsets can be wrong. The offset for d8 will always be correct.
742 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
743 unsigned DNum = CSI[i].getReg() - ARM::D8;
744 if (DNum >= 8)
745 continue;
746 int FI = CSI[i].getFrameIdx();
747 // The even-numbered registers will be 16-byte aligned, the odd-numbered
748 // registers will be 8-byte aligned.
749 MFI.setObjectAlignment(FI, DNum % 2 ? 8 : 16);
750
751 // The stack slot for D8 needs to be maximally aligned because this is
752 // actually the point where we align the stack pointer. MachineFrameInfo
753 // computes all offsets relative to the incoming stack pointer which is a
754 // bit weird when realigning the stack. Any extra padding for this
755 // over-alignment is not realized because the code inserted below adjusts
756 // the stack pointer by numregs * 8 before aligning the stack pointer.
757 if (DNum == 0)
758 MFI.setObjectAlignment(FI, MFI.getMaxAlignment());
759 }
760
761 // Move the stack pointer to the d8 spill slot, and align it at the same
762 // time. Leave the stack slot address in the scratch register r4.
763 //
764 // sub r4, sp, #numregs * 8
765 // bic r4, r4, #align - 1
766 // mov sp, r4
767 //
768 bool isThumb = AFI->isThumbFunction();
769 assert(!AFI->isThumb1OnlyFunction() && "Can't realign stack for thumb1");
770 AFI->setShouldRestoreSPFromFP(true);
771
772 // sub r4, sp, #numregs * 8
773 // The immediate is <= 64, so it doesn't need any special encoding.
774 unsigned Opc = isThumb ? ARM::t2SUBri : ARM::SUBri;
775 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
776 .addReg(ARM::SP)
777 .addImm(8 * NumAlignedDPRCS2Regs)));
778
779 // bic r4, r4, #align-1
780 Opc = isThumb ? ARM::t2BICri : ARM::BICri;
781 unsigned MaxAlign = MF.getFrameInfo()->getMaxAlignment();
782 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
783 .addReg(ARM::R4, RegState::Kill)
784 .addImm(MaxAlign - 1)));
785
786 // mov sp, r4
787 // The stack pointer must be adjusted before spilling anything, otherwise
788 // the stack slots could be clobbered by an interrupt handler.
789 // Leave r4 live, it is used below.
790 Opc = isThumb ? ARM::tMOVr : ARM::MOVr;
791 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(Opc), ARM::SP)
792 .addReg(ARM::R4);
793 MIB = AddDefaultPred(MIB);
794 if (!isThumb)
795 AddDefaultCC(MIB);
796
797 // Now spill NumAlignedDPRCS2Regs registers starting from d8.
798 // r4 holds the stack slot address.
799 unsigned NextReg = ARM::D8;
800
801 // 16-byte aligned vst1.64 with 4 d-regs and address writeback.
802 // The writeback is only needed when emitting two vst1.64 instructions.
803 if (NumAlignedDPRCS2Regs >= 6) {
804 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topper420761a2012-04-20 07:30:17 +0000805 &ARM::QQPRRegClass);
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000806 MBB.addLiveIn(SupReg);
807 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VST1d64Qwb_fixed),
808 ARM::R4)
809 .addReg(ARM::R4, RegState::Kill).addImm(16)
810 .addReg(NextReg)
811 .addReg(SupReg, RegState::ImplicitKill));
812 NextReg += 4;
813 NumAlignedDPRCS2Regs -= 4;
814 }
815
816 // We won't modify r4 beyond this point. It currently points to the next
817 // register to be spilled.
818 unsigned R4BaseReg = NextReg;
819
820 // 16-byte aligned vst1.64 with 4 d-regs, no writeback.
821 if (NumAlignedDPRCS2Regs >= 4) {
822 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topper420761a2012-04-20 07:30:17 +0000823 &ARM::QQPRRegClass);
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000824 MBB.addLiveIn(SupReg);
825 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VST1d64Q))
826 .addReg(ARM::R4).addImm(16).addReg(NextReg)
827 .addReg(SupReg, RegState::ImplicitKill));
828 NextReg += 4;
829 NumAlignedDPRCS2Regs -= 4;
830 }
831
832 // 16-byte aligned vst1.64 with 2 d-regs.
833 if (NumAlignedDPRCS2Regs >= 2) {
834 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topper420761a2012-04-20 07:30:17 +0000835 &ARM::QPRRegClass);
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000836 MBB.addLiveIn(SupReg);
837 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VST1q64))
Jim Grosbach28f08c92012-03-05 19:33:30 +0000838 .addReg(ARM::R4).addImm(16).addReg(SupReg));
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000839 NextReg += 2;
840 NumAlignedDPRCS2Regs -= 2;
841 }
842
843 // Finally, use a vanilla vstr.64 for the odd last register.
844 if (NumAlignedDPRCS2Regs) {
845 MBB.addLiveIn(NextReg);
846 // vstr.64 uses addrmode5 which has an offset scale of 4.
847 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VSTRD))
848 .addReg(NextReg)
849 .addReg(ARM::R4).addImm((NextReg-R4BaseReg)*2));
850 }
851
852 // The last spill instruction inserted should kill the scratch register r4.
853 llvm::prior(MI)->addRegisterKilled(ARM::R4, TRI);
854}
855
856/// Skip past the code inserted by emitAlignedDPRCS2Spills, and return an
857/// iterator to the following instruction.
858static MachineBasicBlock::iterator
859skipAlignedDPRCS2Spills(MachineBasicBlock::iterator MI,
860 unsigned NumAlignedDPRCS2Regs) {
861 // sub r4, sp, #numregs * 8
862 // bic r4, r4, #align - 1
863 // mov sp, r4
864 ++MI; ++MI; ++MI;
865 assert(MI->mayStore() && "Expecting spill instruction");
866
867 // These switches all fall through.
868 switch(NumAlignedDPRCS2Regs) {
869 case 7:
870 ++MI;
871 assert(MI->mayStore() && "Expecting spill instruction");
872 default:
873 ++MI;
874 assert(MI->mayStore() && "Expecting spill instruction");
875 case 1:
876 case 2:
877 case 4:
878 assert(MI->killsRegister(ARM::R4) && "Missed kill flag");
879 ++MI;
880 }
881 return MI;
882}
883
884/// Emit aligned reload instructions for NumAlignedDPRCS2Regs D-registers
885/// starting from d8. These instructions are assumed to execute while the
886/// stack is still aligned, unlike the code inserted by emitPopInst.
887static void emitAlignedDPRCS2Restores(MachineBasicBlock &MBB,
888 MachineBasicBlock::iterator MI,
889 unsigned NumAlignedDPRCS2Regs,
890 const std::vector<CalleeSavedInfo> &CSI,
891 const TargetRegisterInfo *TRI) {
892 MachineFunction &MF = *MBB.getParent();
893 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
894 DebugLoc DL = MI->getDebugLoc();
895 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
896
897 // Find the frame index assigned to d8.
898 int D8SpillFI = 0;
899 for (unsigned i = 0, e = CSI.size(); i != e; ++i)
900 if (CSI[i].getReg() == ARM::D8) {
901 D8SpillFI = CSI[i].getFrameIdx();
902 break;
903 }
904
905 // Materialize the address of the d8 spill slot into the scratch register r4.
906 // This can be fairly complicated if the stack frame is large, so just use
907 // the normal frame index elimination mechanism to do it. This code runs as
908 // the initial part of the epilog where the stack and base pointers haven't
909 // been changed yet.
910 bool isThumb = AFI->isThumbFunction();
911 assert(!AFI->isThumb1OnlyFunction() && "Can't realign stack for thumb1");
912
913 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
914 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
915 .addFrameIndex(D8SpillFI).addImm(0)));
916
917 // Now restore NumAlignedDPRCS2Regs registers starting from d8.
918 unsigned NextReg = ARM::D8;
919
920 // 16-byte aligned vld1.64 with 4 d-regs and writeback.
921 if (NumAlignedDPRCS2Regs >= 6) {
922 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topper420761a2012-04-20 07:30:17 +0000923 &ARM::QQPRRegClass);
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000924 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VLD1d64Qwb_fixed), NextReg)
925 .addReg(ARM::R4, RegState::Define)
926 .addReg(ARM::R4, RegState::Kill).addImm(16)
927 .addReg(SupReg, RegState::ImplicitDefine));
928 NextReg += 4;
929 NumAlignedDPRCS2Regs -= 4;
930 }
931
932 // We won't modify r4 beyond this point. It currently points to the next
933 // register to be spilled.
934 unsigned R4BaseReg = NextReg;
935
936 // 16-byte aligned vld1.64 with 4 d-regs, no writeback.
937 if (NumAlignedDPRCS2Regs >= 4) {
938 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topper420761a2012-04-20 07:30:17 +0000939 &ARM::QQPRRegClass);
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000940 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VLD1d64Q), NextReg)
941 .addReg(ARM::R4).addImm(16)
942 .addReg(SupReg, RegState::ImplicitDefine));
943 NextReg += 4;
944 NumAlignedDPRCS2Regs -= 4;
945 }
946
947 // 16-byte aligned vld1.64 with 2 d-regs.
948 if (NumAlignedDPRCS2Regs >= 2) {
949 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topper420761a2012-04-20 07:30:17 +0000950 &ARM::QPRRegClass);
Jim Grosbach28f08c92012-03-05 19:33:30 +0000951 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VLD1q64), SupReg)
952 .addReg(ARM::R4).addImm(16));
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000953 NextReg += 2;
954 NumAlignedDPRCS2Regs -= 2;
955 }
956
957 // Finally, use a vanilla vldr.64 for the remaining odd register.
958 if (NumAlignedDPRCS2Regs)
959 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(ARM::VLDRD), NextReg)
960 .addReg(ARM::R4).addImm(2*(NextReg-R4BaseReg)));
961
962 // Last store kills r4.
963 llvm::prior(MI)->addRegisterKilled(ARM::R4, TRI);
964}
965
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000966bool ARMFrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Bob Wilson42257852011-01-13 21:10:12 +0000967 MachineBasicBlock::iterator MI,
968 const std::vector<CalleeSavedInfo> &CSI,
969 const TargetRegisterInfo *TRI) const {
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000970 if (CSI.empty())
971 return false;
972
973 MachineFunction &MF = *MBB.getParent();
974 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000975
976 unsigned PushOpc = AFI->isThumbFunction() ? ARM::t2STMDB_UPD : ARM::STMDB_UPD;
Jim Grosbach8e0c7692011-09-02 18:46:15 +0000977 unsigned PushOneOpc = AFI->isThumbFunction() ?
978 ARM::t2STR_PRE : ARM::STR_PRE_IMM;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000979 unsigned FltOpc = ARM::VSTMDDB_UPD;
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000980 unsigned NumAlignedDPRCS2Regs = AFI->getNumAlignedDPRCS2Regs();
981 emitPushInst(MBB, MI, CSI, PushOpc, PushOneOpc, false, &isARMArea1Register, 0,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000982 MachineInstr::FrameSetup);
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000983 emitPushInst(MBB, MI, CSI, PushOpc, PushOneOpc, false, &isARMArea2Register, 0,
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000984 MachineInstr::FrameSetup);
985 emitPushInst(MBB, MI, CSI, FltOpc, 0, true, &isARMArea3Register,
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +0000986 NumAlignedDPRCS2Regs, MachineInstr::FrameSetup);
987
988 // The code above does not insert spill code for the aligned DPRCS2 registers.
989 // The stack realignment code will be inserted between the push instructions
990 // and these spills.
991 if (NumAlignedDPRCS2Regs)
992 emitAlignedDPRCS2Spills(MBB, MI, NumAlignedDPRCS2Regs, CSI, TRI);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000993
994 return true;
995}
996
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000997bool ARMFrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Bob Wilson42257852011-01-13 21:10:12 +0000998 MachineBasicBlock::iterator MI,
999 const std::vector<CalleeSavedInfo> &CSI,
1000 const TargetRegisterInfo *TRI) const {
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001001 if (CSI.empty())
1002 return false;
1003
1004 MachineFunction &MF = *MBB.getParent();
1005 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1006 bool isVarArg = AFI->getVarArgsRegSaveSize() > 0;
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001007 unsigned NumAlignedDPRCS2Regs = AFI->getNumAlignedDPRCS2Regs();
1008
1009 // The emitPopInst calls below do not insert reloads for the aligned DPRCS2
1010 // registers. Do that here instead.
1011 if (NumAlignedDPRCS2Regs)
1012 emitAlignedDPRCS2Restores(MBB, MI, NumAlignedDPRCS2Regs, CSI, TRI);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001013
1014 unsigned PopOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_UPD : ARM::LDMIA_UPD;
Jim Grosbach8e0c7692011-09-02 18:46:15 +00001015 unsigned LdrOpc = AFI->isThumbFunction() ? ARM::t2LDR_POST :ARM::LDR_POST_IMM;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001016 unsigned FltOpc = ARM::VLDMDIA_UPD;
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001017 emitPopInst(MBB, MI, CSI, FltOpc, 0, isVarArg, true, &isARMArea3Register,
1018 NumAlignedDPRCS2Regs);
Jim Grosbachc6f92612010-12-09 18:31:13 +00001019 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001020 &isARMArea2Register, 0);
Jim Grosbachc6f92612010-12-09 18:31:13 +00001021 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001022 &isARMArea1Register, 0);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001023
1024 return true;
1025}
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001026
1027// FIXME: Make generic?
1028static unsigned GetFunctionSizeInBytes(const MachineFunction &MF,
1029 const ARMBaseInstrInfo &TII) {
1030 unsigned FnSize = 0;
1031 for (MachineFunction::const_iterator MBBI = MF.begin(), E = MF.end();
1032 MBBI != E; ++MBBI) {
1033 const MachineBasicBlock &MBB = *MBBI;
1034 for (MachineBasicBlock::const_iterator I = MBB.begin(),E = MBB.end();
1035 I != E; ++I)
1036 FnSize += TII.GetInstSizeInBytes(I);
1037 }
1038 return FnSize;
1039}
1040
1041/// estimateStackSize - Estimate and return the size of the frame.
1042/// FIXME: Make generic?
1043static unsigned estimateStackSize(MachineFunction &MF) {
Jim Grosbachbc20e4f2011-07-05 16:05:50 +00001044 const MachineFrameInfo *MFI = MF.getFrameInfo();
1045 const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
1046 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
1047 unsigned MaxAlign = MFI->getMaxAlignment();
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001048 int Offset = 0;
Jim Grosbachbc20e4f2011-07-05 16:05:50 +00001049
1050 // This code is very, very similar to PEI::calculateFrameObjectOffsets().
1051 // It really should be refactored to share code. Until then, changes
1052 // should keep in mind that there's tight coupling between the two.
1053
1054 for (int i = MFI->getObjectIndexBegin(); i != 0; ++i) {
1055 int FixedOff = -MFI->getObjectOffset(i);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001056 if (FixedOff > Offset) Offset = FixedOff;
1057 }
Jim Grosbachbc20e4f2011-07-05 16:05:50 +00001058 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
1059 if (MFI->isDeadObjectIndex(i))
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001060 continue;
Jim Grosbachbc20e4f2011-07-05 16:05:50 +00001061 Offset += MFI->getObjectSize(i);
1062 unsigned Align = MFI->getObjectAlignment(i);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001063 // Adjust to alignment boundary
1064 Offset = (Offset+Align-1)/Align*Align;
Jim Grosbachbc20e4f2011-07-05 16:05:50 +00001065
1066 MaxAlign = std::max(Align, MaxAlign);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001067 }
Jim Grosbachbc20e4f2011-07-05 16:05:50 +00001068
1069 if (MFI->adjustsStack() && TFI->hasReservedCallFrame(MF))
1070 Offset += MFI->getMaxCallFrameSize();
1071
1072 // Round up the size to a multiple of the alignment. If the function has
1073 // any calls or alloca's, align to the target's StackAlignment value to
1074 // ensure that the callee's frame or the alloca data is suitably aligned;
1075 // otherwise, for leaf functions, align to the TransientStackAlignment
1076 // value.
1077 unsigned StackAlign;
1078 if (MFI->adjustsStack() || MFI->hasVarSizedObjects() ||
1079 (RegInfo->needsStackRealignment(MF) && MFI->getObjectIndexEnd() != 0))
1080 StackAlign = TFI->getStackAlignment();
1081 else
1082 StackAlign = TFI->getTransientStackAlignment();
1083
1084 // If the frame pointer is eliminated, all frame offsets will be relative to
1085 // SP not FP. Align to MaxAlign so this works.
1086 StackAlign = std::max(StackAlign, MaxAlign);
1087 unsigned AlignMask = StackAlign - 1;
1088 Offset = (Offset + AlignMask) & ~uint64_t(AlignMask);
1089
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001090 return (unsigned)Offset;
1091}
1092
1093/// estimateRSStackSizeLimit - Look at each instruction that references stack
1094/// frames and return the stack size limit beyond which some of these
1095/// instructions will require a scratch register during their expansion later.
1096// FIXME: Move to TII?
1097static unsigned estimateRSStackSizeLimit(MachineFunction &MF,
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001098 const TargetFrameLowering *TFI) {
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001099 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1100 unsigned Limit = (1 << 12) - 1;
1101 for (MachineFunction::iterator BB = MF.begin(),E = MF.end(); BB != E; ++BB) {
1102 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
1103 I != E; ++I) {
1104 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
1105 if (!I->getOperand(i).isFI()) continue;
1106
1107 // When using ADDri to get the address of a stack object, 255 is the
1108 // largest offset guaranteed to fit in the immediate offset.
1109 if (I->getOpcode() == ARM::ADDri) {
1110 Limit = std::min(Limit, (1U << 8) - 1);
1111 break;
1112 }
1113
1114 // Otherwise check the addressing mode.
1115 switch (I->getDesc().TSFlags & ARMII::AddrModeMask) {
1116 case ARMII::AddrMode3:
1117 case ARMII::AddrModeT2_i8:
1118 Limit = std::min(Limit, (1U << 8) - 1);
1119 break;
1120 case ARMII::AddrMode5:
1121 case ARMII::AddrModeT2_i8s4:
1122 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
1123 break;
1124 case ARMII::AddrModeT2_i12:
1125 // i12 supports only positive offset so these will be converted to
1126 // i8 opcodes. See llvm::rewriteT2FrameIndex.
1127 if (TFI->hasFP(MF) && AFI->hasStackFrame())
1128 Limit = std::min(Limit, (1U << 8) - 1);
1129 break;
1130 case ARMII::AddrMode4:
1131 case ARMII::AddrMode6:
1132 // Addressing modes 4 & 6 (load/store) instructions can't encode an
1133 // immediate offset for stack references.
1134 return 0;
1135 default:
1136 break;
1137 }
1138 break; // At most one FI per instruction
1139 }
1140 }
1141 }
1142
1143 return Limit;
1144}
1145
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001146// In functions that realign the stack, it can be an advantage to spill the
1147// callee-saved vector registers after realigning the stack. The vst1 and vld1
1148// instructions take alignment hints that can improve performance.
1149//
1150static void checkNumAlignedDPRCS2Regs(MachineFunction &MF) {
1151 MF.getInfo<ARMFunctionInfo>()->setNumAlignedDPRCS2Regs(0);
1152 if (!SpillAlignedNEONRegs)
1153 return;
1154
1155 // Naked functions don't spill callee-saved registers.
Bill Wendling67658342012-10-09 07:45:08 +00001156 if (MF.getFunction()->getFnAttributes().hasAttribute(Attributes::Naked))
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001157 return;
1158
1159 // We are planning to use NEON instructions vst1 / vld1.
1160 if (!MF.getTarget().getSubtarget<ARMSubtarget>().hasNEON())
1161 return;
1162
1163 // Don't bother if the default stack alignment is sufficiently high.
1164 if (MF.getTarget().getFrameLowering()->getStackAlignment() >= 8)
1165 return;
1166
1167 // Aligned spills require stack realignment.
1168 const ARMBaseRegisterInfo *RegInfo =
1169 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
1170 if (!RegInfo->canRealignStack(MF))
1171 return;
1172
1173 // We always spill contiguous d-registers starting from d8. Count how many
1174 // needs spilling. The register allocator will almost always use the
1175 // callee-saved registers in order, but it can happen that there are holes in
1176 // the range. Registers above the hole will be spilled to the standard DPRCS
1177 // area.
1178 MachineRegisterInfo &MRI = MF.getRegInfo();
1179 unsigned NumSpills = 0;
1180 for (; NumSpills < 8; ++NumSpills)
Jakob Stoklund Olesen9aa6e0a2012-10-17 18:44:18 +00001181 if (!MRI.isPhysRegUsed(ARM::D8 + NumSpills))
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001182 break;
1183
1184 // Don't do this for just one d-register. It's not worth it.
1185 if (NumSpills < 2)
1186 return;
1187
1188 // Spill the first NumSpills D-registers after realigning the stack.
1189 MF.getInfo<ARMFunctionInfo>()->setNumAlignedDPRCS2Regs(NumSpills);
1190
1191 // A scratch register is required for the vst1 / vld1 instructions.
1192 MF.getRegInfo().setPhysRegUsed(ARM::R4);
1193}
1194
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001195void
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001196ARMFrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Bob Wilson42257852011-01-13 21:10:12 +00001197 RegScavenger *RS) const {
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001198 // This tells PEI to spill the FP as if it is any other callee-save register
1199 // to take advantage the eliminateFrameIndex machinery. This also ensures it
1200 // is spilled in the order specified by getCalleeSavedRegs() to make it easier
1201 // to combine multiple loads / stores.
1202 bool CanEliminateFrame = true;
1203 bool CS1Spilled = false;
1204 bool LRSpilled = false;
1205 unsigned NumGPRSpills = 0;
1206 SmallVector<unsigned, 4> UnspilledCS1GPRs;
1207 SmallVector<unsigned, 4> UnspilledCS2GPRs;
1208 const ARMBaseRegisterInfo *RegInfo =
1209 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
1210 const ARMBaseInstrInfo &TII =
1211 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
1212 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1213 MachineFrameInfo *MFI = MF.getFrameInfo();
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001214 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001215 unsigned FramePtr = RegInfo->getFrameRegister(MF);
1216
1217 // Spill R4 if Thumb2 function requires stack realignment - it will be used as
1218 // scratch register. Also spill R4 if Thumb2 function has varsized objects,
Evan Chengdf55fea2011-01-16 05:14:33 +00001219 // since it's not always possible to restore sp from fp in a single
1220 // instruction.
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001221 // FIXME: It will be better just to find spare register here.
1222 if (AFI->isThumb2Function() &&
1223 (MFI->hasVarSizedObjects() || RegInfo->needsStackRealignment(MF)))
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001224 MRI.setPhysRegUsed(ARM::R4);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001225
Evan Chengdf55fea2011-01-16 05:14:33 +00001226 if (AFI->isThumb1OnlyFunction()) {
1227 // Spill LR if Thumb1 function uses variable length argument lists.
1228 if (AFI->getVarArgsRegSaveSize() > 0)
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001229 MRI.setPhysRegUsed(ARM::LR);
Evan Chengdf55fea2011-01-16 05:14:33 +00001230
Jim Grosbach7980f612011-06-13 21:18:25 +00001231 // Spill R4 if Thumb1 epilogue has to restore SP from FP. We don't know
1232 // for sure what the stack size will be, but for this, an estimate is good
1233 // enough. If there anything changes it, it'll be a spill, which implies
1234 // we've used all the registers and so R4 is already used, so not marking
Chad Rosier6690bca2011-10-20 00:07:12 +00001235 // it here will be OK.
Evan Chengdf55fea2011-01-16 05:14:33 +00001236 // FIXME: It will be better just to find spare register here.
Jim Grosbach7980f612011-06-13 21:18:25 +00001237 unsigned StackSize = estimateStackSize(MF);
Chad Rosier6690bca2011-10-20 00:07:12 +00001238 if (MFI->hasVarSizedObjects() || StackSize > 508)
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001239 MRI.setPhysRegUsed(ARM::R4);
Evan Chengdf55fea2011-01-16 05:14:33 +00001240 }
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001241
Jakob Stoklund Olesenf06f6f52011-12-23 00:36:18 +00001242 // See if we can spill vector registers to aligned stack.
1243 checkNumAlignedDPRCS2Regs(MF);
1244
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001245 // Spill the BasePtr if it's used.
1246 if (RegInfo->hasBasePointer(MF))
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001247 MRI.setPhysRegUsed(RegInfo->getBaseRegister());
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001248
1249 // Don't spill FP if the frame can be eliminated. This is determined
1250 // by scanning the callee-save registers to see if any is used.
Craig Topper015f2282012-03-04 03:33:22 +00001251 const uint16_t *CSRegs = RegInfo->getCalleeSavedRegs();
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001252 for (unsigned i = 0; CSRegs[i]; ++i) {
1253 unsigned Reg = CSRegs[i];
1254 bool Spilled = false;
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001255 if (MRI.isPhysRegUsed(Reg)) {
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001256 Spilled = true;
1257 CanEliminateFrame = false;
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001258 }
1259
Craig Topper420761a2012-04-20 07:30:17 +00001260 if (!ARM::GPRRegClass.contains(Reg))
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001261 continue;
1262
1263 if (Spilled) {
1264 NumGPRSpills++;
1265
Evan Chengafad0fe2012-01-04 01:55:04 +00001266 if (!STI.isTargetIOS()) {
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001267 if (Reg == ARM::LR)
1268 LRSpilled = true;
1269 CS1Spilled = true;
1270 continue;
1271 }
1272
1273 // Keep track if LR and any of R4, R5, R6, and R7 is spilled.
1274 switch (Reg) {
1275 case ARM::LR:
1276 LRSpilled = true;
1277 // Fallthrough
1278 case ARM::R4: case ARM::R5:
1279 case ARM::R6: case ARM::R7:
1280 CS1Spilled = true;
1281 break;
1282 default:
1283 break;
1284 }
1285 } else {
Evan Chengafad0fe2012-01-04 01:55:04 +00001286 if (!STI.isTargetIOS()) {
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001287 UnspilledCS1GPRs.push_back(Reg);
1288 continue;
1289 }
1290
1291 switch (Reg) {
1292 case ARM::R4: case ARM::R5:
1293 case ARM::R6: case ARM::R7:
1294 case ARM::LR:
1295 UnspilledCS1GPRs.push_back(Reg);
1296 break;
1297 default:
1298 UnspilledCS2GPRs.push_back(Reg);
1299 break;
1300 }
1301 }
1302 }
1303
1304 bool ForceLRSpill = false;
1305 if (!LRSpilled && AFI->isThumb1OnlyFunction()) {
1306 unsigned FnSize = GetFunctionSizeInBytes(MF, TII);
1307 // Force LR to be spilled if the Thumb function size is > 2048. This enables
1308 // use of BL to implement far jump. If it turns out that it's not needed
1309 // then the branch fix up path will undo it.
1310 if (FnSize >= (1 << 11)) {
1311 CanEliminateFrame = false;
1312 ForceLRSpill = true;
1313 }
1314 }
1315
1316 // If any of the stack slot references may be out of range of an immediate
1317 // offset, make sure a register (or a spill slot) is available for the
1318 // register scavenger. Note that if we're indexing off the frame pointer, the
1319 // effective stack size is 4 bytes larger since the FP points to the stack
1320 // slot of the previous FP. Also, if we have variable sized objects in the
1321 // function, stack slot references will often be negative, and some of
1322 // our instructions are positive-offset only, so conservatively consider
1323 // that case to want a spill slot (or register) as well. Similarly, if
1324 // the function adjusts the stack pointer during execution and the
1325 // adjustments aren't already part of our stack size estimate, our offset
1326 // calculations may be off, so be conservative.
1327 // FIXME: We could add logic to be more precise about negative offsets
1328 // and which instructions will need a scratch register for them. Is it
1329 // worth the effort and added fragility?
1330 bool BigStack =
1331 (RS &&
1332 (estimateStackSize(MF) + ((hasFP(MF) && AFI->hasStackFrame()) ? 4:0) >=
1333 estimateRSStackSizeLimit(MF, this)))
1334 || MFI->hasVarSizedObjects()
1335 || (MFI->adjustsStack() && !canSimplifyCallFramePseudos(MF));
1336
1337 bool ExtraCSSpill = false;
1338 if (BigStack || !CanEliminateFrame || RegInfo->cannotEliminateFrame(MF)) {
1339 AFI->setHasStackFrame(true);
1340
1341 // If LR is not spilled, but at least one of R4, R5, R6, and R7 is spilled.
1342 // Spill LR as well so we can fold BX_RET to the registers restore (LDM).
1343 if (!LRSpilled && CS1Spilled) {
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001344 MRI.setPhysRegUsed(ARM::LR);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001345 NumGPRSpills++;
1346 UnspilledCS1GPRs.erase(std::find(UnspilledCS1GPRs.begin(),
1347 UnspilledCS1GPRs.end(), (unsigned)ARM::LR));
1348 ForceLRSpill = false;
1349 ExtraCSSpill = true;
1350 }
1351
1352 if (hasFP(MF)) {
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001353 MRI.setPhysRegUsed(FramePtr);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001354 NumGPRSpills++;
1355 }
1356
1357 // If stack and double are 8-byte aligned and we are spilling an odd number
1358 // of GPRs, spill one extra callee save GPR so we won't have to pad between
1359 // the integer and double callee save areas.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001360 unsigned TargetAlign = getStackAlignment();
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001361 if (TargetAlign == 8 && (NumGPRSpills & 1)) {
1362 if (CS1Spilled && !UnspilledCS1GPRs.empty()) {
1363 for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) {
1364 unsigned Reg = UnspilledCS1GPRs[i];
1365 // Don't spill high register if the function is thumb1
1366 if (!AFI->isThumb1OnlyFunction() ||
1367 isARMLowRegister(Reg) || Reg == ARM::LR) {
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001368 MRI.setPhysRegUsed(Reg);
1369 if (!MRI.isReserved(Reg))
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001370 ExtraCSSpill = true;
1371 break;
1372 }
1373 }
1374 } else if (!UnspilledCS2GPRs.empty() && !AFI->isThumb1OnlyFunction()) {
1375 unsigned Reg = UnspilledCS2GPRs.front();
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001376 MRI.setPhysRegUsed(Reg);
1377 if (!MRI.isReserved(Reg))
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001378 ExtraCSSpill = true;
1379 }
1380 }
1381
1382 // Estimate if we might need to scavenge a register at some point in order
1383 // to materialize a stack offset. If so, either spill one additional
1384 // callee-saved register or reserve a special spill slot to facilitate
1385 // register scavenging. Thumb1 needs a spill slot for stack pointer
1386 // adjustments also, even when the frame itself is small.
1387 if (BigStack && !ExtraCSSpill) {
1388 // If any non-reserved CS register isn't spilled, just spill one or two
1389 // extra. That should take care of it!
1390 unsigned NumExtras = TargetAlign / 4;
1391 SmallVector<unsigned, 2> Extras;
1392 while (NumExtras && !UnspilledCS1GPRs.empty()) {
1393 unsigned Reg = UnspilledCS1GPRs.back();
1394 UnspilledCS1GPRs.pop_back();
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001395 if (!MRI.isReserved(Reg) &&
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001396 (!AFI->isThumb1OnlyFunction() || isARMLowRegister(Reg) ||
1397 Reg == ARM::LR)) {
1398 Extras.push_back(Reg);
1399 NumExtras--;
1400 }
1401 }
1402 // For non-Thumb1 functions, also check for hi-reg CS registers
1403 if (!AFI->isThumb1OnlyFunction()) {
1404 while (NumExtras && !UnspilledCS2GPRs.empty()) {
1405 unsigned Reg = UnspilledCS2GPRs.back();
1406 UnspilledCS2GPRs.pop_back();
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001407 if (!MRI.isReserved(Reg)) {
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001408 Extras.push_back(Reg);
1409 NumExtras--;
1410 }
1411 }
1412 }
1413 if (Extras.size() && NumExtras == 0) {
1414 for (unsigned i = 0, e = Extras.size(); i != e; ++i) {
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001415 MRI.setPhysRegUsed(Extras[i]);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001416 }
1417 } else if (!AFI->isThumb1OnlyFunction()) {
1418 // note: Thumb1 functions spill to R12, not the stack. Reserve a slot
1419 // closest to SP or frame pointer.
Craig Topper420761a2012-04-20 07:30:17 +00001420 const TargetRegisterClass *RC = &ARM::GPRRegClass;
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001421 RS->setScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
1422 RC->getAlignment(),
1423 false));
1424 }
1425 }
1426 }
1427
1428 if (ForceLRSpill) {
Jakob Stoklund Olesenb1f994a2012-10-26 21:43:05 +00001429 MRI.setPhysRegUsed(ARM::LR);
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001430 AFI->setLRIsSpilledForFarJump(true);
1431 }
1432}