blob: be1bd5542bac189a73a0651b3b74efea25ac7de0 [file] [log] [blame]
Anton Korobeynikov33464912010-11-15 00:06:54 +00001//=======- ARMFrameInfo.cpp - ARM Frame Information ------------*- C++ -*-====//
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 ARM implementation of TargetFrameInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ARMFrameInfo.h"
15#include "ARMBaseInstrInfo.h"
16#include "ARMMachineFunctionInfo.h"
17#include "llvm/CodeGen/MachineFrameInfo.h"
18#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chengab5c7032010-11-22 18:12:04 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +000021#include "llvm/CodeGen/RegisterScavenging.h"
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000022#include "llvm/Target/TargetOptions.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000023
24using namespace llvm;
25
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000026/// hasFP - Return true if the specified function should have a dedicated frame
27/// pointer register. This is true if the function has variable sized allocas
28/// or if frame pointer elimination is disabled.
29///
30bool ARMFrameInfo::hasFP(const MachineFunction &MF) const {
31 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
32
33 // Mac OS X requires FP not to be clobbered for backtracing purpose.
34 if (STI.isTargetDarwin())
35 return true;
36
37 const MachineFrameInfo *MFI = MF.getFrameInfo();
38 // Always eliminate non-leaf frame pointers.
39 return ((DisableFramePointerElim(MF) && MFI->hasCalls()) ||
40 RegInfo->needsStackRealignment(MF) ||
41 MFI->hasVarSizedObjects() ||
42 MFI->isFrameAddressTaken());
43}
44
45// hasReservedCallFrame - Under normal circumstances, when a frame pointer is
46// not required, we reserve argument space for call sites in the function
47// immediately on entry to the current function. This eliminates the need for
48// add/sub sp brackets around call sites. Returns true if the call frame is
49// included as part of the stack frame.
50bool ARMFrameInfo::hasReservedCallFrame(const MachineFunction &MF) const {
51 const MachineFrameInfo *FFI = MF.getFrameInfo();
52 unsigned CFSize = FFI->getMaxCallFrameSize();
53 // It's not always a good idea to include the call frame as part of the
54 // stack frame. ARM (especially Thumb) has small immediate offset to
55 // address the stack frame. So a large call frame can cause poor codegen
56 // and may even makes it impossible to scavenge a register.
57 if (CFSize >= ((1 << 12) - 1) / 2) // Half of imm12
58 return false;
59
60 return !MF.getFrameInfo()->hasVarSizedObjects();
61}
62
63// canSimplifyCallFramePseudos - If there is a reserved call frame, the
64// call frame pseudos can be simplified. Unlike most targets, having a FP
65// is not sufficient here since we still may reference some objects via SP
66// even when FP is available in Thumb2 mode.
67bool ARMFrameInfo::canSimplifyCallFramePseudos(const MachineFunction &MF)const {
68 return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects();
69}
70
Anton Korobeynikov33464912010-11-15 00:06:54 +000071static bool isCalleeSavedRegister(unsigned Reg, const unsigned *CSRegs) {
72 for (unsigned i = 0; CSRegs[i]; ++i)
73 if (Reg == CSRegs[i])
74 return true;
75 return false;
76}
77
78static bool isCSRestore(MachineInstr *MI,
79 const ARMBaseInstrInfo &TII,
80 const unsigned *CSRegs) {
Eric Christopher8b3ca622010-11-18 19:40:05 +000081 // Integer spill area is handled with "pop".
82 if (MI->getOpcode() == ARM::LDMIA_RET ||
83 MI->getOpcode() == ARM::t2LDMIA_RET ||
84 MI->getOpcode() == ARM::LDMIA_UPD ||
85 MI->getOpcode() == ARM::t2LDMIA_UPD ||
86 MI->getOpcode() == ARM::VLDMDIA_UPD) {
87 // The first two operands are predicates. The last two are
88 // imp-def and imp-use of SP. Check everything in between.
89 for (int i = 5, e = MI->getNumOperands(); i != e; ++i)
90 if (!isCalleeSavedRegister(MI->getOperand(i).getReg(), CSRegs))
91 return false;
92 return true;
93 }
94
95 return false;
Anton Korobeynikov33464912010-11-15 00:06:54 +000096}
97
98static void
99emitSPUpdate(bool isARM,
100 MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
101 DebugLoc dl, const ARMBaseInstrInfo &TII,
102 int NumBytes,
103 ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) {
104 if (isARM)
105 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
106 Pred, PredReg, TII);
107 else
108 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
109 Pred, PredReg, TII);
110}
111
112void ARMFrameInfo::emitPrologue(MachineFunction &MF) const {
113 MachineBasicBlock &MBB = MF.front();
114 MachineBasicBlock::iterator MBBI = MBB.begin();
115 MachineFrameInfo *MFI = MF.getFrameInfo();
116 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
117 const ARMBaseRegisterInfo *RegInfo =
118 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
119 const ARMBaseInstrInfo &TII =
120 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
121 assert(!AFI->isThumb1OnlyFunction() &&
122 "This emitPrologue does not support Thumb1!");
123 bool isARM = !AFI->isThumbFunction();
124 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize();
125 unsigned NumBytes = MFI->getStackSize();
126 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
127 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
128 unsigned FramePtr = RegInfo->getFrameRegister(MF);
129
130 // Determine the sizes of each callee-save spill areas and record which frame
131 // belongs to which callee-save spill areas.
132 unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0;
133 int FramePtrSpillFI = 0;
134
135 // Allocate the vararg register save area. This is not counted in NumBytes.
136 if (VARegSaveSize)
137 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -VARegSaveSize);
138
139 if (!AFI->hasStackFrame()) {
140 if (NumBytes != 0)
141 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes);
142 return;
143 }
144
145 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
146 unsigned Reg = CSI[i].getReg();
147 int FI = CSI[i].getFrameIdx();
148 switch (Reg) {
149 case ARM::R4:
150 case ARM::R5:
151 case ARM::R6:
152 case ARM::R7:
153 case ARM::LR:
154 if (Reg == FramePtr)
155 FramePtrSpillFI = FI;
156 AFI->addGPRCalleeSavedArea1Frame(FI);
157 GPRCS1Size += 4;
158 break;
159 case ARM::R8:
160 case ARM::R9:
161 case ARM::R10:
162 case ARM::R11:
163 if (Reg == FramePtr)
164 FramePtrSpillFI = FI;
165 if (STI.isTargetDarwin()) {
166 AFI->addGPRCalleeSavedArea2Frame(FI);
167 GPRCS2Size += 4;
168 } else {
169 AFI->addGPRCalleeSavedArea1Frame(FI);
170 GPRCS1Size += 4;
171 }
172 break;
173 default:
174 AFI->addDPRCalleeSavedAreaFrame(FI);
175 DPRCSSize += 8;
176 }
177 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000178
Eric Christopher8b3ca622010-11-18 19:40:05 +0000179 // Move past area 1.
180 if (GPRCS1Size > 0) MBBI++;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000181
Anton Korobeynikov33464912010-11-15 00:06:54 +0000182 // Set FP to point to the stack slot that contains the previous FP.
183 // For Darwin, FP is R7, which has now been stored in spill area 1.
184 // Otherwise, if this is not Darwin, all the callee-saved registers go
185 // into spill area 1, including the FP in R11. In either case, it is
186 // now safe to emit this assignment.
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000187 bool HasFP = hasFP(MF);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000188 if (HasFP) {
189 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : ARM::t2ADDri;
190 MachineInstrBuilder MIB =
191 BuildMI(MBB, MBBI, dl, TII.get(ADDriOpc), FramePtr)
192 .addFrameIndex(FramePtrSpillFI).addImm(0);
193 AddDefaultCC(AddDefaultPred(MIB));
194 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000195
Eric Christopher8b3ca622010-11-18 19:40:05 +0000196 // Move past area 2.
197 if (GPRCS2Size > 0) MBBI++;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000198
Anton Korobeynikov33464912010-11-15 00:06:54 +0000199 // Determine starting offsets of spill areas.
200 unsigned DPRCSOffset = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize);
201 unsigned GPRCS2Offset = DPRCSOffset + DPRCSSize;
202 unsigned GPRCS1Offset = GPRCS2Offset + GPRCS2Size;
203 if (HasFP)
204 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) +
205 NumBytes);
206 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset);
207 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset);
208 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset);
209
Eric Christopher8b3ca622010-11-18 19:40:05 +0000210 // Move past area 3.
211 if (DPRCSSize > 0) MBBI++;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000212
Anton Korobeynikov33464912010-11-15 00:06:54 +0000213 NumBytes = DPRCSOffset;
214 if (NumBytes) {
215 // Adjust SP after all the callee-save spills.
216 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes);
Evan Chengab5c7032010-11-22 18:12:04 +0000217 if (HasFP && isARM)
218 // Restore from fp only in ARM mode: e.g. sub sp, r7, #24
219 // Note it's not safe to do this in Thumb2 mode because it would have
220 // taken two instructions:
221 // mov sp, r7
222 // sub sp, #24
223 // If an interrupt is taken between the two instructions, then sp is in
224 // an inconsistent state (pointing to the middle of callee-saved area).
225 // The interrupt handler can end up clobbering the registers.
Anton Korobeynikov33464912010-11-15 00:06:54 +0000226 AFI->setShouldRestoreSPFromFP(true);
227 }
228
Evan Chengab5c7032010-11-22 18:12:04 +0000229 if (STI.isTargetELF() && hasFP(MF))
Anton Korobeynikov33464912010-11-15 00:06:54 +0000230 MFI->setOffsetAdjustment(MFI->getOffsetAdjustment() -
231 AFI->getFramePtrSpillOffset());
Anton Korobeynikov33464912010-11-15 00:06:54 +0000232
233 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size);
234 AFI->setGPRCalleeSavedArea2Size(GPRCS2Size);
235 AFI->setDPRCalleeSavedAreaSize(DPRCSSize);
236
237 // If we need dynamic stack realignment, do it here. Be paranoid and make
238 // sure if we also have VLAs, we have a base pointer for frame access.
239 if (RegInfo->needsStackRealignment(MF)) {
240 unsigned MaxAlign = MFI->getMaxAlignment();
241 assert (!AFI->isThumb1OnlyFunction());
242 if (!AFI->isThumbFunction()) {
243 // Emit bic sp, sp, MaxAlign
244 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl,
245 TII.get(ARM::BICri), ARM::SP)
246 .addReg(ARM::SP, RegState::Kill)
247 .addImm(MaxAlign-1)));
248 } else {
249 // We cannot use sp as source/dest register here, thus we're emitting the
250 // following sequence:
251 // mov r4, sp
252 // bic r4, r4, MaxAlign
253 // mov sp, r4
254 // FIXME: It will be better just to find spare register here.
255 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2tgpr), ARM::R4)
256 .addReg(ARM::SP, RegState::Kill);
257 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl,
258 TII.get(ARM::t2BICri), ARM::R4)
259 .addReg(ARM::R4, RegState::Kill)
260 .addImm(MaxAlign-1)));
261 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVtgpr2gpr), ARM::SP)
262 .addReg(ARM::R4, RegState::Kill);
263 }
264
265 AFI->setShouldRestoreSPFromFP(true);
266 }
267
268 // If we need a base pointer, set it up here. It's whatever the value
269 // of the stack pointer is at this point. Any variable size objects
270 // will be allocated after this, so we can still use the base pointer
271 // to reference locals.
272 if (RegInfo->hasBasePointer(MF)) {
273 if (isARM)
274 BuildMI(MBB, MBBI, dl,
275 TII.get(ARM::MOVr), RegInfo->getBaseRegister())
276 .addReg(ARM::SP)
277 .addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
278 else
279 BuildMI(MBB, MBBI, dl,
280 TII.get(ARM::tMOVgpr2gpr), RegInfo->getBaseRegister())
281 .addReg(ARM::SP);
282 }
283
284 // If the frame has variable sized objects then the epilogue must restore
285 // the sp from fp.
Evan Chengab5c7032010-11-22 18:12:04 +0000286 if (MFI->hasVarSizedObjects())
Anton Korobeynikov33464912010-11-15 00:06:54 +0000287 AFI->setShouldRestoreSPFromFP(true);
288}
289
290void ARMFrameInfo::emitEpilogue(MachineFunction &MF,
291 MachineBasicBlock &MBB) const {
292 MachineBasicBlock::iterator MBBI = prior(MBB.end());
293 assert(MBBI->getDesc().isReturn() &&
294 "Can only insert epilog into returning blocks");
295 unsigned RetOpcode = MBBI->getOpcode();
296 DebugLoc dl = MBBI->getDebugLoc();
297 MachineFrameInfo *MFI = MF.getFrameInfo();
298 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
299 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
300 const ARMBaseInstrInfo &TII =
301 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
302 assert(!AFI->isThumb1OnlyFunction() &&
303 "This emitEpilogue does not support Thumb1!");
304 bool isARM = !AFI->isThumbFunction();
305
306 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize();
307 int NumBytes = (int)MFI->getStackSize();
308 unsigned FramePtr = RegInfo->getFrameRegister(MF);
309
310 if (!AFI->hasStackFrame()) {
311 if (NumBytes != 0)
312 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
313 } else {
314 // Unwind MBBI to point to first LDR / VLDRD.
315 const unsigned *CSRegs = RegInfo->getCalleeSavedRegs();
316 if (MBBI != MBB.begin()) {
317 do
318 --MBBI;
319 while (MBBI != MBB.begin() && isCSRestore(MBBI, TII, CSRegs));
320 if (!isCSRestore(MBBI, TII, CSRegs))
321 ++MBBI;
322 }
323
324 // Move SP to start of FP callee save spill area.
325 NumBytes -= (AFI->getGPRCalleeSavedArea1Size() +
326 AFI->getGPRCalleeSavedArea2Size() +
327 AFI->getDPRCalleeSavedAreaSize());
328
329 // Reset SP based on frame pointer only if the stack frame extends beyond
330 // frame pointer stack slot or target is ELF and the function has FP.
331 if (AFI->shouldRestoreSPFromFP()) {
332 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes;
333 if (NumBytes) {
334 if (isARM)
335 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes,
336 ARMCC::AL, 0, TII);
Evan Chengab5c7032010-11-22 18:12:04 +0000337 else {
338 // It's not possible to restore SP from FP in a single instruction.
339 // For Darwin, this looks like:
340 // mov sp, r7
341 // sub sp, #24
342 // This is bad, if an interrupt is taken after the mov, sp is in an
343 // inconsistent state.
344 // Use the first callee-saved register as a scratch register.
345 assert(MF.getRegInfo().isPhysRegUsed(ARM::R4) &&
346 "No scratch register to restore SP from FP!");
347 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes,
Anton Korobeynikov33464912010-11-15 00:06:54 +0000348 ARMCC::AL, 0, TII);
Evan Chengab5c7032010-11-22 18:12:04 +0000349 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2gpr), ARM::SP)
350 .addReg(ARM::R4);
351 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000352 } else {
353 // Thumb2 or ARM.
354 if (isARM)
355 BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), ARM::SP)
356 .addReg(FramePtr).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
357 else
358 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2gpr), ARM::SP)
359 .addReg(FramePtr);
360 }
361 } else if (NumBytes)
362 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
363
Eric Christopher8b3ca622010-11-18 19:40:05 +0000364 // Increment past our save areas.
365 if (AFI->getDPRCalleeSavedAreaSize()) MBBI++;
366 if (AFI->getGPRCalleeSavedArea2Size()) MBBI++;
367 if (AFI->getGPRCalleeSavedArea1Size()) MBBI++;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000368 }
369
370 if (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNdiND ||
371 RetOpcode == ARM::TCRETURNri || RetOpcode == ARM::TCRETURNriND) {
372 // Tail call return: adjust the stack pointer and jump to callee.
373 MBBI = prior(MBB.end());
374 MachineOperand &JumpTarget = MBBI->getOperand(0);
375
376 // Jump to label or value in register.
Evan Cheng3d2125c2010-11-30 23:55:39 +0000377 if (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNdiND) {
378 unsigned TCOpcode = (RetOpcode == ARM::TCRETURNdi)
379 ? (STI.isThumb() ? ARM::TAILJMPdt : ARM::TAILJMPd)
380 : (STI.isThumb() ? ARM::TAILJMPdNDt : ARM::TAILJMPdND);
381 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, dl, TII.get(TCOpcode));
382 if (JumpTarget.isGlobal())
383 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
384 JumpTarget.getTargetFlags());
385 else {
386 assert(JumpTarget.isSymbol());
387 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
388 JumpTarget.getTargetFlags());
389 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000390 } else if (RetOpcode == ARM::TCRETURNri) {
391 BuildMI(MBB, MBBI, dl, TII.get(ARM::TAILJMPr)).
392 addReg(JumpTarget.getReg(), RegState::Kill);
393 } else if (RetOpcode == ARM::TCRETURNriND) {
394 BuildMI(MBB, MBBI, dl, TII.get(ARM::TAILJMPrND)).
395 addReg(JumpTarget.getReg(), RegState::Kill);
396 }
397
398 MachineInstr *NewMI = prior(MBBI);
399 for (unsigned i = 1, e = MBBI->getNumOperands(); i != e; ++i)
400 NewMI->addOperand(MBBI->getOperand(i));
401
402 // Delete the pseudo instruction TCRETURN.
403 MBB.erase(MBBI);
404 }
405
406 if (VARegSaveSize)
407 emitSPUpdate(isARM, MBB, MBBI, dl, TII, VARegSaveSize);
408}
Anton Korobeynikov82f58742010-11-20 15:59:32 +0000409
410// Provide a base+offset reference to an FI slot for debug info. It's the
411// same as what we use for resolving the code-gen references for now.
412// FIXME: This can go wrong when references are SP-relative and simple call
413// frames aren't used.
414int
415ARMFrameInfo::getFrameIndexReference(const MachineFunction &MF, int FI,
416 unsigned &FrameReg) const {
417 return ResolveFrameIndexReference(MF, FI, FrameReg, 0);
418}
419
420int
421ARMFrameInfo::ResolveFrameIndexReference(const MachineFunction &MF,
422 int FI,
423 unsigned &FrameReg,
424 int SPAdj) const {
425 const MachineFrameInfo *MFI = MF.getFrameInfo();
426 const ARMBaseRegisterInfo *RegInfo =
427 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
428 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
429 int Offset = MFI->getObjectOffset(FI) + MFI->getStackSize();
430 int FPOffset = Offset - AFI->getFramePtrSpillOffset();
431 bool isFixed = MFI->isFixedObjectIndex(FI);
432
433 FrameReg = ARM::SP;
434 Offset += SPAdj;
435 if (AFI->isGPRCalleeSavedArea1Frame(FI))
436 return Offset - AFI->getGPRCalleeSavedArea1Offset();
437 else if (AFI->isGPRCalleeSavedArea2Frame(FI))
438 return Offset - AFI->getGPRCalleeSavedArea2Offset();
439 else if (AFI->isDPRCalleeSavedAreaFrame(FI))
440 return Offset - AFI->getDPRCalleeSavedAreaOffset();
441
442 // When dynamically realigning the stack, use the frame pointer for
443 // parameters, and the stack/base pointer for locals.
444 if (RegInfo->needsStackRealignment(MF)) {
445 assert (hasFP(MF) && "dynamic stack realignment without a FP!");
446 if (isFixed) {
447 FrameReg = RegInfo->getFrameRegister(MF);
448 Offset = FPOffset;
449 } else if (MFI->hasVarSizedObjects()) {
450 assert(RegInfo->hasBasePointer(MF) &&
451 "VLAs and dynamic stack alignment, but missing base pointer!");
452 FrameReg = RegInfo->getBaseRegister();
453 }
454 return Offset;
455 }
456
457 // If there is a frame pointer, use it when we can.
458 if (hasFP(MF) && AFI->hasStackFrame()) {
459 // Use frame pointer to reference fixed objects. Use it for locals if
460 // there are VLAs (and thus the SP isn't reliable as a base).
461 if (isFixed || (MFI->hasVarSizedObjects() && !RegInfo->hasBasePointer(MF))) {
462 FrameReg = RegInfo->getFrameRegister(MF);
463 return FPOffset;
464 } else if (MFI->hasVarSizedObjects()) {
465 assert(RegInfo->hasBasePointer(MF) && "missing base pointer!");
466 // Try to use the frame pointer if we can, else use the base pointer
467 // since it's available. This is handy for the emergency spill slot, in
468 // particular.
469 if (AFI->isThumb2Function()) {
470 if (FPOffset >= -255 && FPOffset < 0) {
471 FrameReg = RegInfo->getFrameRegister(MF);
472 return FPOffset;
473 }
474 } else
475 FrameReg = RegInfo->getBaseRegister();
476 } else if (AFI->isThumb2Function()) {
477 // In Thumb2 mode, the negative offset is very limited. Try to avoid
478 // out of range references.
479 if (FPOffset >= -255 && FPOffset < 0) {
480 FrameReg = RegInfo->getFrameRegister(MF);
481 return FPOffset;
482 }
483 } else if (Offset > (FPOffset < 0 ? -FPOffset : FPOffset)) {
484 // Otherwise, use SP or FP, whichever is closer to the stack slot.
485 FrameReg = RegInfo->getFrameRegister(MF);
486 return FPOffset;
487 }
488 }
489 // Use the base pointer if we have one.
490 if (RegInfo->hasBasePointer(MF))
491 FrameReg = RegInfo->getBaseRegister();
492 return Offset;
493}
494
495int ARMFrameInfo::getFrameIndexOffset(const MachineFunction &MF, int FI) const {
496 unsigned FrameReg;
497 return getFrameIndexReference(MF, FI, FrameReg);
498}
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000499
500void ARMFrameInfo::emitPushInst(MachineBasicBlock &MBB,
501 MachineBasicBlock::iterator MI,
502 const std::vector<CalleeSavedInfo> &CSI,
503 unsigned Opc,
504 bool(*Func)(unsigned, bool)) const {
505 MachineFunction &MF = *MBB.getParent();
506 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
507
508 DebugLoc DL;
509 if (MI != MBB.end()) DL = MI->getDebugLoc();
510
Evan Cheng9801b5c2010-12-07 19:59:34 +0000511 SmallVector<std::pair<unsigned,bool>, 4> Regs;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000512 for (unsigned i = CSI.size(); i != 0; --i) {
513 unsigned Reg = CSI[i-1].getReg();
514 if (!(Func)(Reg, STI.isTargetDarwin())) continue;
515
516 // Add the callee-saved register as live-in unless it's LR and
517 // @llvm.returnaddress is called. If LR is returned for @llvm.returnaddress
518 // then it's already added to the function and entry block live-in sets.
519 bool isKill = true;
520 if (Reg == ARM::LR) {
521 if (MF.getFrameInfo()->isReturnAddressTaken() &&
522 MF.getRegInfo().isLiveIn(Reg))
523 isKill = false;
524 }
525
526 if (isKill)
527 MBB.addLiveIn(Reg);
528
Evan Cheng9801b5c2010-12-07 19:59:34 +0000529 Regs.push_back(std::make_pair(Reg, isKill));
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000530 }
531
Evan Cheng9801b5c2010-12-07 19:59:34 +0000532 if (!Regs.empty()) {
533 MachineInstrBuilder MIB = AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc),
534 ARM::SP).addReg(ARM::SP));
535 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
536 MIB.addReg(Regs[i].first, getKillRegState(Regs[i].second));
537 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000538}
539
540bool ARMFrameInfo::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
541 MachineBasicBlock::iterator MI,
542 const std::vector<CalleeSavedInfo> &CSI,
543 const TargetRegisterInfo *TRI) const {
544 if (CSI.empty())
545 return false;
546
547 MachineFunction &MF = *MBB.getParent();
548 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
549 DebugLoc DL = MI->getDebugLoc();
550
551 unsigned PushOpc = AFI->isThumbFunction() ? ARM::t2STMDB_UPD : ARM::STMDB_UPD;
552 unsigned FltOpc = ARM::VSTMDDB_UPD;
553 emitPushInst(MBB, MI, CSI, PushOpc, &isARMArea1Register);
554 emitPushInst(MBB, MI, CSI, PushOpc, &isARMArea2Register);
555 emitPushInst(MBB, MI, CSI, FltOpc, &isARMArea3Register);
556
557 return true;
558}
559
560void ARMFrameInfo::emitPopInst(MachineBasicBlock &MBB,
561 MachineBasicBlock::iterator MI,
562 const std::vector<CalleeSavedInfo> &CSI,
563 unsigned Opc, bool isVarArg,
564 bool(*Func)(unsigned, bool)) const {
565 MachineFunction &MF = *MBB.getParent();
566 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
567 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
568 DebugLoc DL = MI->getDebugLoc();
569
Evan Cheng52f21e32010-12-07 20:11:46 +0000570 bool DeleteRet = false;
571 SmallVector<unsigned, 4> Regs;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000572 for (unsigned i = CSI.size(); i != 0; --i) {
573 unsigned Reg = CSI[i-1].getReg();
574 if (!(Func)(Reg, STI.isTargetDarwin())) continue;
575
576 if (Reg == ARM::LR && !isVarArg) {
577 Reg = ARM::PC;
Evan Cheng52f21e32010-12-07 20:11:46 +0000578 Opc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET;
579 // Fold the return instruction into the LDM.
580 DeleteRet = true;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000581 }
582
Evan Cheng52f21e32010-12-07 20:11:46 +0000583 Regs.push_back(Reg);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000584 }
585
Evan Cheng52f21e32010-12-07 20:11:46 +0000586 if (!Regs.empty()) {
587 MachineInstrBuilder MIB = AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc),
588 ARM::SP).addReg(ARM::SP));
589 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
590 MIB.addReg(Regs[i], getDefRegState(true));
591 if (DeleteRet)
592 MI->eraseFromParent();
593 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000594}
595
596bool ARMFrameInfo::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
597 MachineBasicBlock::iterator MI,
598 const std::vector<CalleeSavedInfo> &CSI,
599 const TargetRegisterInfo *TRI) const {
600 if (CSI.empty())
601 return false;
602
603 MachineFunction &MF = *MBB.getParent();
604 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
605 bool isVarArg = AFI->getVarArgsRegSaveSize() > 0;
606 DebugLoc DL = MI->getDebugLoc();
607
608 unsigned PopOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_UPD : ARM::LDMIA_UPD;
609 unsigned FltOpc = ARM::VLDMDIA_UPD;
610 emitPopInst(MBB, MI, CSI, FltOpc, isVarArg, &isARMArea3Register);
611 emitPopInst(MBB, MI, CSI, PopOpc, isVarArg, &isARMArea2Register);
612 emitPopInst(MBB, MI, CSI, PopOpc, isVarArg, &isARMArea1Register);
613
614 return true;
615}
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +0000616
617// FIXME: Make generic?
618static unsigned GetFunctionSizeInBytes(const MachineFunction &MF,
619 const ARMBaseInstrInfo &TII) {
620 unsigned FnSize = 0;
621 for (MachineFunction::const_iterator MBBI = MF.begin(), E = MF.end();
622 MBBI != E; ++MBBI) {
623 const MachineBasicBlock &MBB = *MBBI;
624 for (MachineBasicBlock::const_iterator I = MBB.begin(),E = MBB.end();
625 I != E; ++I)
626 FnSize += TII.GetInstSizeInBytes(I);
627 }
628 return FnSize;
629}
630
631/// estimateStackSize - Estimate and return the size of the frame.
632/// FIXME: Make generic?
633static unsigned estimateStackSize(MachineFunction &MF) {
634 const MachineFrameInfo *FFI = MF.getFrameInfo();
635 int Offset = 0;
636 for (int i = FFI->getObjectIndexBegin(); i != 0; ++i) {
637 int FixedOff = -FFI->getObjectOffset(i);
638 if (FixedOff > Offset) Offset = FixedOff;
639 }
640 for (unsigned i = 0, e = FFI->getObjectIndexEnd(); i != e; ++i) {
641 if (FFI->isDeadObjectIndex(i))
642 continue;
643 Offset += FFI->getObjectSize(i);
644 unsigned Align = FFI->getObjectAlignment(i);
645 // Adjust to alignment boundary
646 Offset = (Offset+Align-1)/Align*Align;
647 }
648 return (unsigned)Offset;
649}
650
651/// estimateRSStackSizeLimit - Look at each instruction that references stack
652/// frames and return the stack size limit beyond which some of these
653/// instructions will require a scratch register during their expansion later.
654// FIXME: Move to TII?
655static unsigned estimateRSStackSizeLimit(MachineFunction &MF,
656 const TargetFrameInfo *TFI) {
657 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
658 unsigned Limit = (1 << 12) - 1;
659 for (MachineFunction::iterator BB = MF.begin(),E = MF.end(); BB != E; ++BB) {
660 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
661 I != E; ++I) {
662 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
663 if (!I->getOperand(i).isFI()) continue;
664
665 // When using ADDri to get the address of a stack object, 255 is the
666 // largest offset guaranteed to fit in the immediate offset.
667 if (I->getOpcode() == ARM::ADDri) {
668 Limit = std::min(Limit, (1U << 8) - 1);
669 break;
670 }
671
672 // Otherwise check the addressing mode.
673 switch (I->getDesc().TSFlags & ARMII::AddrModeMask) {
674 case ARMII::AddrMode3:
675 case ARMII::AddrModeT2_i8:
676 Limit = std::min(Limit, (1U << 8) - 1);
677 break;
678 case ARMII::AddrMode5:
679 case ARMII::AddrModeT2_i8s4:
680 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
681 break;
682 case ARMII::AddrModeT2_i12:
683 // i12 supports only positive offset so these will be converted to
684 // i8 opcodes. See llvm::rewriteT2FrameIndex.
685 if (TFI->hasFP(MF) && AFI->hasStackFrame())
686 Limit = std::min(Limit, (1U << 8) - 1);
687 break;
688 case ARMII::AddrMode4:
689 case ARMII::AddrMode6:
690 // Addressing modes 4 & 6 (load/store) instructions can't encode an
691 // immediate offset for stack references.
692 return 0;
693 default:
694 break;
695 }
696 break; // At most one FI per instruction
697 }
698 }
699 }
700
701 return Limit;
702}
703
704void
705ARMFrameInfo::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
706 RegScavenger *RS) const {
707 // This tells PEI to spill the FP as if it is any other callee-save register
708 // to take advantage the eliminateFrameIndex machinery. This also ensures it
709 // is spilled in the order specified by getCalleeSavedRegs() to make it easier
710 // to combine multiple loads / stores.
711 bool CanEliminateFrame = true;
712 bool CS1Spilled = false;
713 bool LRSpilled = false;
714 unsigned NumGPRSpills = 0;
715 SmallVector<unsigned, 4> UnspilledCS1GPRs;
716 SmallVector<unsigned, 4> UnspilledCS2GPRs;
717 const ARMBaseRegisterInfo *RegInfo =
718 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
719 const ARMBaseInstrInfo &TII =
720 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
721 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
722 MachineFrameInfo *MFI = MF.getFrameInfo();
723 unsigned FramePtr = RegInfo->getFrameRegister(MF);
724
725 // Spill R4 if Thumb2 function requires stack realignment - it will be used as
726 // scratch register. Also spill R4 if Thumb2 function has varsized objects,
727 // since it's always posible to restore sp from fp in a single instruction.
728 // FIXME: It will be better just to find spare register here.
729 if (AFI->isThumb2Function() &&
730 (MFI->hasVarSizedObjects() || RegInfo->needsStackRealignment(MF)))
731 MF.getRegInfo().setPhysRegUsed(ARM::R4);
732
733 // Spill LR if Thumb1 function uses variable length argument lists.
734 if (AFI->isThumb1OnlyFunction() && AFI->getVarArgsRegSaveSize() > 0)
735 MF.getRegInfo().setPhysRegUsed(ARM::LR);
736
737 // Spill the BasePtr if it's used.
738 if (RegInfo->hasBasePointer(MF))
739 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
740
741 // Don't spill FP if the frame can be eliminated. This is determined
742 // by scanning the callee-save registers to see if any is used.
743 const unsigned *CSRegs = RegInfo->getCalleeSavedRegs();
744 for (unsigned i = 0; CSRegs[i]; ++i) {
745 unsigned Reg = CSRegs[i];
746 bool Spilled = false;
747 if (MF.getRegInfo().isPhysRegUsed(Reg)) {
748 AFI->setCSRegisterIsSpilled(Reg);
749 Spilled = true;
750 CanEliminateFrame = false;
751 } else {
752 // Check alias registers too.
753 for (const unsigned *Aliases =
754 RegInfo->getAliasSet(Reg); *Aliases; ++Aliases) {
755 if (MF.getRegInfo().isPhysRegUsed(*Aliases)) {
756 Spilled = true;
757 CanEliminateFrame = false;
758 }
759 }
760 }
761
762 if (!ARM::GPRRegisterClass->contains(Reg))
763 continue;
764
765 if (Spilled) {
766 NumGPRSpills++;
767
768 if (!STI.isTargetDarwin()) {
769 if (Reg == ARM::LR)
770 LRSpilled = true;
771 CS1Spilled = true;
772 continue;
773 }
774
775 // Keep track if LR and any of R4, R5, R6, and R7 is spilled.
776 switch (Reg) {
777 case ARM::LR:
778 LRSpilled = true;
779 // Fallthrough
780 case ARM::R4: case ARM::R5:
781 case ARM::R6: case ARM::R7:
782 CS1Spilled = true;
783 break;
784 default:
785 break;
786 }
787 } else {
788 if (!STI.isTargetDarwin()) {
789 UnspilledCS1GPRs.push_back(Reg);
790 continue;
791 }
792
793 switch (Reg) {
794 case ARM::R4: case ARM::R5:
795 case ARM::R6: case ARM::R7:
796 case ARM::LR:
797 UnspilledCS1GPRs.push_back(Reg);
798 break;
799 default:
800 UnspilledCS2GPRs.push_back(Reg);
801 break;
802 }
803 }
804 }
805
806 bool ForceLRSpill = false;
807 if (!LRSpilled && AFI->isThumb1OnlyFunction()) {
808 unsigned FnSize = GetFunctionSizeInBytes(MF, TII);
809 // Force LR to be spilled if the Thumb function size is > 2048. This enables
810 // use of BL to implement far jump. If it turns out that it's not needed
811 // then the branch fix up path will undo it.
812 if (FnSize >= (1 << 11)) {
813 CanEliminateFrame = false;
814 ForceLRSpill = true;
815 }
816 }
817
818 // If any of the stack slot references may be out of range of an immediate
819 // offset, make sure a register (or a spill slot) is available for the
820 // register scavenger. Note that if we're indexing off the frame pointer, the
821 // effective stack size is 4 bytes larger since the FP points to the stack
822 // slot of the previous FP. Also, if we have variable sized objects in the
823 // function, stack slot references will often be negative, and some of
824 // our instructions are positive-offset only, so conservatively consider
825 // that case to want a spill slot (or register) as well. Similarly, if
826 // the function adjusts the stack pointer during execution and the
827 // adjustments aren't already part of our stack size estimate, our offset
828 // calculations may be off, so be conservative.
829 // FIXME: We could add logic to be more precise about negative offsets
830 // and which instructions will need a scratch register for them. Is it
831 // worth the effort and added fragility?
832 bool BigStack =
833 (RS &&
834 (estimateStackSize(MF) + ((hasFP(MF) && AFI->hasStackFrame()) ? 4:0) >=
835 estimateRSStackSizeLimit(MF, this)))
836 || MFI->hasVarSizedObjects()
837 || (MFI->adjustsStack() && !canSimplifyCallFramePseudos(MF));
838
839 bool ExtraCSSpill = false;
840 if (BigStack || !CanEliminateFrame || RegInfo->cannotEliminateFrame(MF)) {
841 AFI->setHasStackFrame(true);
842
843 // If LR is not spilled, but at least one of R4, R5, R6, and R7 is spilled.
844 // Spill LR as well so we can fold BX_RET to the registers restore (LDM).
845 if (!LRSpilled && CS1Spilled) {
846 MF.getRegInfo().setPhysRegUsed(ARM::LR);
847 AFI->setCSRegisterIsSpilled(ARM::LR);
848 NumGPRSpills++;
849 UnspilledCS1GPRs.erase(std::find(UnspilledCS1GPRs.begin(),
850 UnspilledCS1GPRs.end(), (unsigned)ARM::LR));
851 ForceLRSpill = false;
852 ExtraCSSpill = true;
853 }
854
855 if (hasFP(MF)) {
856 MF.getRegInfo().setPhysRegUsed(FramePtr);
857 NumGPRSpills++;
858 }
859
860 // If stack and double are 8-byte aligned and we are spilling an odd number
861 // of GPRs, spill one extra callee save GPR so we won't have to pad between
862 // the integer and double callee save areas.
863 unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
864 if (TargetAlign == 8 && (NumGPRSpills & 1)) {
865 if (CS1Spilled && !UnspilledCS1GPRs.empty()) {
866 for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) {
867 unsigned Reg = UnspilledCS1GPRs[i];
868 // Don't spill high register if the function is thumb1
869 if (!AFI->isThumb1OnlyFunction() ||
870 isARMLowRegister(Reg) || Reg == ARM::LR) {
871 MF.getRegInfo().setPhysRegUsed(Reg);
872 AFI->setCSRegisterIsSpilled(Reg);
873 if (!RegInfo->isReservedReg(MF, Reg))
874 ExtraCSSpill = true;
875 break;
876 }
877 }
878 } else if (!UnspilledCS2GPRs.empty() && !AFI->isThumb1OnlyFunction()) {
879 unsigned Reg = UnspilledCS2GPRs.front();
880 MF.getRegInfo().setPhysRegUsed(Reg);
881 AFI->setCSRegisterIsSpilled(Reg);
882 if (!RegInfo->isReservedReg(MF, Reg))
883 ExtraCSSpill = true;
884 }
885 }
886
887 // Estimate if we might need to scavenge a register at some point in order
888 // to materialize a stack offset. If so, either spill one additional
889 // callee-saved register or reserve a special spill slot to facilitate
890 // register scavenging. Thumb1 needs a spill slot for stack pointer
891 // adjustments also, even when the frame itself is small.
892 if (BigStack && !ExtraCSSpill) {
893 // If any non-reserved CS register isn't spilled, just spill one or two
894 // extra. That should take care of it!
895 unsigned NumExtras = TargetAlign / 4;
896 SmallVector<unsigned, 2> Extras;
897 while (NumExtras && !UnspilledCS1GPRs.empty()) {
898 unsigned Reg = UnspilledCS1GPRs.back();
899 UnspilledCS1GPRs.pop_back();
900 if (!RegInfo->isReservedReg(MF, Reg) &&
901 (!AFI->isThumb1OnlyFunction() || isARMLowRegister(Reg) ||
902 Reg == ARM::LR)) {
903 Extras.push_back(Reg);
904 NumExtras--;
905 }
906 }
907 // For non-Thumb1 functions, also check for hi-reg CS registers
908 if (!AFI->isThumb1OnlyFunction()) {
909 while (NumExtras && !UnspilledCS2GPRs.empty()) {
910 unsigned Reg = UnspilledCS2GPRs.back();
911 UnspilledCS2GPRs.pop_back();
912 if (!RegInfo->isReservedReg(MF, Reg)) {
913 Extras.push_back(Reg);
914 NumExtras--;
915 }
916 }
917 }
918 if (Extras.size() && NumExtras == 0) {
919 for (unsigned i = 0, e = Extras.size(); i != e; ++i) {
920 MF.getRegInfo().setPhysRegUsed(Extras[i]);
921 AFI->setCSRegisterIsSpilled(Extras[i]);
922 }
923 } else if (!AFI->isThumb1OnlyFunction()) {
924 // note: Thumb1 functions spill to R12, not the stack. Reserve a slot
925 // closest to SP or frame pointer.
926 const TargetRegisterClass *RC = ARM::GPRRegisterClass;
927 RS->setScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
928 RC->getAlignment(),
929 false));
930 }
931 }
932 }
933
934 if (ForceLRSpill) {
935 MF.getRegInfo().setPhysRegUsed(ARM::LR);
936 AFI->setCSRegisterIsSpilled(ARM::LR);
937 AFI->setLRIsSpilledForFarJump(true);
938 }
939}