blob: bcd776c466c97a3b81315a2adf55a935d4e33ece [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
532 // It's illegal to emit push instruction without operands.
Evan Cheng9801b5c2010-12-07 19:59:34 +0000533 if (!Regs.empty()) {
534 MachineInstrBuilder MIB = AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(Opc),
535 ARM::SP).addReg(ARM::SP));
536 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
537 MIB.addReg(Regs[i].first, getKillRegState(Regs[i].second));
538 }
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +0000539}
540
541bool ARMFrameInfo::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
542 MachineBasicBlock::iterator MI,
543 const std::vector<CalleeSavedInfo> &CSI,
544 const TargetRegisterInfo *TRI) const {
545 if (CSI.empty())
546 return false;
547
548 MachineFunction &MF = *MBB.getParent();
549 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
550 DebugLoc DL = MI->getDebugLoc();
551
552 unsigned PushOpc = AFI->isThumbFunction() ? ARM::t2STMDB_UPD : ARM::STMDB_UPD;
553 unsigned FltOpc = ARM::VSTMDDB_UPD;
554 emitPushInst(MBB, MI, CSI, PushOpc, &isARMArea1Register);
555 emitPushInst(MBB, MI, CSI, PushOpc, &isARMArea2Register);
556 emitPushInst(MBB, MI, CSI, FltOpc, &isARMArea3Register);
557
558 return true;
559}
560
561void ARMFrameInfo::emitPopInst(MachineBasicBlock &MBB,
562 MachineBasicBlock::iterator MI,
563 const std::vector<CalleeSavedInfo> &CSI,
564 unsigned Opc, bool isVarArg,
565 bool(*Func)(unsigned, bool)) const {
566 MachineFunction &MF = *MBB.getParent();
567 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
568 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
569 DebugLoc DL = MI->getDebugLoc();
570
571 MachineInstrBuilder MIB = BuildMI(MF, DL, TII.get(Opc));
572 MIB.addReg(ARM::SP, getDefRegState(true));
573 MIB.addReg(ARM::SP);
574 AddDefaultPred(MIB);
575 bool NumRegs = false;
576 for (unsigned i = CSI.size(); i != 0; --i) {
577 unsigned Reg = CSI[i-1].getReg();
578 if (!(Func)(Reg, STI.isTargetDarwin())) continue;
579
580 if (Reg == ARM::LR && !isVarArg) {
581 Reg = ARM::PC;
582 unsigned Opc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET;
583 (*MIB).setDesc(TII.get(Opc));
584 MI = MBB.erase(MI);
585 }
586
587 MIB.addReg(Reg, RegState::Define);
588 NumRegs = true;
589 }
590
591 // It's illegal to emit pop instruction without operands.
592 if (NumRegs)
593 MBB.insert(MI, &*MIB);
594 else
595 MF.DeleteMachineInstr(MIB);
596}
597
598bool ARMFrameInfo::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
599 MachineBasicBlock::iterator MI,
600 const std::vector<CalleeSavedInfo> &CSI,
601 const TargetRegisterInfo *TRI) const {
602 if (CSI.empty())
603 return false;
604
605 MachineFunction &MF = *MBB.getParent();
606 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
607 bool isVarArg = AFI->getVarArgsRegSaveSize() > 0;
608 DebugLoc DL = MI->getDebugLoc();
609
610 unsigned PopOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_UPD : ARM::LDMIA_UPD;
611 unsigned FltOpc = ARM::VLDMDIA_UPD;
612 emitPopInst(MBB, MI, CSI, FltOpc, isVarArg, &isARMArea3Register);
613 emitPopInst(MBB, MI, CSI, PopOpc, isVarArg, &isARMArea2Register);
614 emitPopInst(MBB, MI, CSI, PopOpc, isVarArg, &isARMArea1Register);
615
616 return true;
617}
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +0000618
619// FIXME: Make generic?
620static unsigned GetFunctionSizeInBytes(const MachineFunction &MF,
621 const ARMBaseInstrInfo &TII) {
622 unsigned FnSize = 0;
623 for (MachineFunction::const_iterator MBBI = MF.begin(), E = MF.end();
624 MBBI != E; ++MBBI) {
625 const MachineBasicBlock &MBB = *MBBI;
626 for (MachineBasicBlock::const_iterator I = MBB.begin(),E = MBB.end();
627 I != E; ++I)
628 FnSize += TII.GetInstSizeInBytes(I);
629 }
630 return FnSize;
631}
632
633/// estimateStackSize - Estimate and return the size of the frame.
634/// FIXME: Make generic?
635static unsigned estimateStackSize(MachineFunction &MF) {
636 const MachineFrameInfo *FFI = MF.getFrameInfo();
637 int Offset = 0;
638 for (int i = FFI->getObjectIndexBegin(); i != 0; ++i) {
639 int FixedOff = -FFI->getObjectOffset(i);
640 if (FixedOff > Offset) Offset = FixedOff;
641 }
642 for (unsigned i = 0, e = FFI->getObjectIndexEnd(); i != e; ++i) {
643 if (FFI->isDeadObjectIndex(i))
644 continue;
645 Offset += FFI->getObjectSize(i);
646 unsigned Align = FFI->getObjectAlignment(i);
647 // Adjust to alignment boundary
648 Offset = (Offset+Align-1)/Align*Align;
649 }
650 return (unsigned)Offset;
651}
652
653/// estimateRSStackSizeLimit - Look at each instruction that references stack
654/// frames and return the stack size limit beyond which some of these
655/// instructions will require a scratch register during their expansion later.
656// FIXME: Move to TII?
657static unsigned estimateRSStackSizeLimit(MachineFunction &MF,
658 const TargetFrameInfo *TFI) {
659 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
660 unsigned Limit = (1 << 12) - 1;
661 for (MachineFunction::iterator BB = MF.begin(),E = MF.end(); BB != E; ++BB) {
662 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end();
663 I != E; ++I) {
664 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
665 if (!I->getOperand(i).isFI()) continue;
666
667 // When using ADDri to get the address of a stack object, 255 is the
668 // largest offset guaranteed to fit in the immediate offset.
669 if (I->getOpcode() == ARM::ADDri) {
670 Limit = std::min(Limit, (1U << 8) - 1);
671 break;
672 }
673
674 // Otherwise check the addressing mode.
675 switch (I->getDesc().TSFlags & ARMII::AddrModeMask) {
676 case ARMII::AddrMode3:
677 case ARMII::AddrModeT2_i8:
678 Limit = std::min(Limit, (1U << 8) - 1);
679 break;
680 case ARMII::AddrMode5:
681 case ARMII::AddrModeT2_i8s4:
682 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
683 break;
684 case ARMII::AddrModeT2_i12:
685 // i12 supports only positive offset so these will be converted to
686 // i8 opcodes. See llvm::rewriteT2FrameIndex.
687 if (TFI->hasFP(MF) && AFI->hasStackFrame())
688 Limit = std::min(Limit, (1U << 8) - 1);
689 break;
690 case ARMII::AddrMode4:
691 case ARMII::AddrMode6:
692 // Addressing modes 4 & 6 (load/store) instructions can't encode an
693 // immediate offset for stack references.
694 return 0;
695 default:
696 break;
697 }
698 break; // At most one FI per instruction
699 }
700 }
701 }
702
703 return Limit;
704}
705
706void
707ARMFrameInfo::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
708 RegScavenger *RS) const {
709 // This tells PEI to spill the FP as if it is any other callee-save register
710 // to take advantage the eliminateFrameIndex machinery. This also ensures it
711 // is spilled in the order specified by getCalleeSavedRegs() to make it easier
712 // to combine multiple loads / stores.
713 bool CanEliminateFrame = true;
714 bool CS1Spilled = false;
715 bool LRSpilled = false;
716 unsigned NumGPRSpills = 0;
717 SmallVector<unsigned, 4> UnspilledCS1GPRs;
718 SmallVector<unsigned, 4> UnspilledCS2GPRs;
719 const ARMBaseRegisterInfo *RegInfo =
720 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo());
721 const ARMBaseInstrInfo &TII =
722 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo());
723 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
724 MachineFrameInfo *MFI = MF.getFrameInfo();
725 unsigned FramePtr = RegInfo->getFrameRegister(MF);
726
727 // Spill R4 if Thumb2 function requires stack realignment - it will be used as
728 // scratch register. Also spill R4 if Thumb2 function has varsized objects,
729 // since it's always posible to restore sp from fp in a single instruction.
730 // FIXME: It will be better just to find spare register here.
731 if (AFI->isThumb2Function() &&
732 (MFI->hasVarSizedObjects() || RegInfo->needsStackRealignment(MF)))
733 MF.getRegInfo().setPhysRegUsed(ARM::R4);
734
735 // Spill LR if Thumb1 function uses variable length argument lists.
736 if (AFI->isThumb1OnlyFunction() && AFI->getVarArgsRegSaveSize() > 0)
737 MF.getRegInfo().setPhysRegUsed(ARM::LR);
738
739 // Spill the BasePtr if it's used.
740 if (RegInfo->hasBasePointer(MF))
741 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
742
743 // Don't spill FP if the frame can be eliminated. This is determined
744 // by scanning the callee-save registers to see if any is used.
745 const unsigned *CSRegs = RegInfo->getCalleeSavedRegs();
746 for (unsigned i = 0; CSRegs[i]; ++i) {
747 unsigned Reg = CSRegs[i];
748 bool Spilled = false;
749 if (MF.getRegInfo().isPhysRegUsed(Reg)) {
750 AFI->setCSRegisterIsSpilled(Reg);
751 Spilled = true;
752 CanEliminateFrame = false;
753 } else {
754 // Check alias registers too.
755 for (const unsigned *Aliases =
756 RegInfo->getAliasSet(Reg); *Aliases; ++Aliases) {
757 if (MF.getRegInfo().isPhysRegUsed(*Aliases)) {
758 Spilled = true;
759 CanEliminateFrame = false;
760 }
761 }
762 }
763
764 if (!ARM::GPRRegisterClass->contains(Reg))
765 continue;
766
767 if (Spilled) {
768 NumGPRSpills++;
769
770 if (!STI.isTargetDarwin()) {
771 if (Reg == ARM::LR)
772 LRSpilled = true;
773 CS1Spilled = true;
774 continue;
775 }
776
777 // Keep track if LR and any of R4, R5, R6, and R7 is spilled.
778 switch (Reg) {
779 case ARM::LR:
780 LRSpilled = true;
781 // Fallthrough
782 case ARM::R4: case ARM::R5:
783 case ARM::R6: case ARM::R7:
784 CS1Spilled = true;
785 break;
786 default:
787 break;
788 }
789 } else {
790 if (!STI.isTargetDarwin()) {
791 UnspilledCS1GPRs.push_back(Reg);
792 continue;
793 }
794
795 switch (Reg) {
796 case ARM::R4: case ARM::R5:
797 case ARM::R6: case ARM::R7:
798 case ARM::LR:
799 UnspilledCS1GPRs.push_back(Reg);
800 break;
801 default:
802 UnspilledCS2GPRs.push_back(Reg);
803 break;
804 }
805 }
806 }
807
808 bool ForceLRSpill = false;
809 if (!LRSpilled && AFI->isThumb1OnlyFunction()) {
810 unsigned FnSize = GetFunctionSizeInBytes(MF, TII);
811 // Force LR to be spilled if the Thumb function size is > 2048. This enables
812 // use of BL to implement far jump. If it turns out that it's not needed
813 // then the branch fix up path will undo it.
814 if (FnSize >= (1 << 11)) {
815 CanEliminateFrame = false;
816 ForceLRSpill = true;
817 }
818 }
819
820 // If any of the stack slot references may be out of range of an immediate
821 // offset, make sure a register (or a spill slot) is available for the
822 // register scavenger. Note that if we're indexing off the frame pointer, the
823 // effective stack size is 4 bytes larger since the FP points to the stack
824 // slot of the previous FP. Also, if we have variable sized objects in the
825 // function, stack slot references will often be negative, and some of
826 // our instructions are positive-offset only, so conservatively consider
827 // that case to want a spill slot (or register) as well. Similarly, if
828 // the function adjusts the stack pointer during execution and the
829 // adjustments aren't already part of our stack size estimate, our offset
830 // calculations may be off, so be conservative.
831 // FIXME: We could add logic to be more precise about negative offsets
832 // and which instructions will need a scratch register for them. Is it
833 // worth the effort and added fragility?
834 bool BigStack =
835 (RS &&
836 (estimateStackSize(MF) + ((hasFP(MF) && AFI->hasStackFrame()) ? 4:0) >=
837 estimateRSStackSizeLimit(MF, this)))
838 || MFI->hasVarSizedObjects()
839 || (MFI->adjustsStack() && !canSimplifyCallFramePseudos(MF));
840
841 bool ExtraCSSpill = false;
842 if (BigStack || !CanEliminateFrame || RegInfo->cannotEliminateFrame(MF)) {
843 AFI->setHasStackFrame(true);
844
845 // If LR is not spilled, but at least one of R4, R5, R6, and R7 is spilled.
846 // Spill LR as well so we can fold BX_RET to the registers restore (LDM).
847 if (!LRSpilled && CS1Spilled) {
848 MF.getRegInfo().setPhysRegUsed(ARM::LR);
849 AFI->setCSRegisterIsSpilled(ARM::LR);
850 NumGPRSpills++;
851 UnspilledCS1GPRs.erase(std::find(UnspilledCS1GPRs.begin(),
852 UnspilledCS1GPRs.end(), (unsigned)ARM::LR));
853 ForceLRSpill = false;
854 ExtraCSSpill = true;
855 }
856
857 if (hasFP(MF)) {
858 MF.getRegInfo().setPhysRegUsed(FramePtr);
859 NumGPRSpills++;
860 }
861
862 // If stack and double are 8-byte aligned and we are spilling an odd number
863 // of GPRs, spill one extra callee save GPR so we won't have to pad between
864 // the integer and double callee save areas.
865 unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment();
866 if (TargetAlign == 8 && (NumGPRSpills & 1)) {
867 if (CS1Spilled && !UnspilledCS1GPRs.empty()) {
868 for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) {
869 unsigned Reg = UnspilledCS1GPRs[i];
870 // Don't spill high register if the function is thumb1
871 if (!AFI->isThumb1OnlyFunction() ||
872 isARMLowRegister(Reg) || Reg == ARM::LR) {
873 MF.getRegInfo().setPhysRegUsed(Reg);
874 AFI->setCSRegisterIsSpilled(Reg);
875 if (!RegInfo->isReservedReg(MF, Reg))
876 ExtraCSSpill = true;
877 break;
878 }
879 }
880 } else if (!UnspilledCS2GPRs.empty() && !AFI->isThumb1OnlyFunction()) {
881 unsigned Reg = UnspilledCS2GPRs.front();
882 MF.getRegInfo().setPhysRegUsed(Reg);
883 AFI->setCSRegisterIsSpilled(Reg);
884 if (!RegInfo->isReservedReg(MF, Reg))
885 ExtraCSSpill = true;
886 }
887 }
888
889 // Estimate if we might need to scavenge a register at some point in order
890 // to materialize a stack offset. If so, either spill one additional
891 // callee-saved register or reserve a special spill slot to facilitate
892 // register scavenging. Thumb1 needs a spill slot for stack pointer
893 // adjustments also, even when the frame itself is small.
894 if (BigStack && !ExtraCSSpill) {
895 // If any non-reserved CS register isn't spilled, just spill one or two
896 // extra. That should take care of it!
897 unsigned NumExtras = TargetAlign / 4;
898 SmallVector<unsigned, 2> Extras;
899 while (NumExtras && !UnspilledCS1GPRs.empty()) {
900 unsigned Reg = UnspilledCS1GPRs.back();
901 UnspilledCS1GPRs.pop_back();
902 if (!RegInfo->isReservedReg(MF, Reg) &&
903 (!AFI->isThumb1OnlyFunction() || isARMLowRegister(Reg) ||
904 Reg == ARM::LR)) {
905 Extras.push_back(Reg);
906 NumExtras--;
907 }
908 }
909 // For non-Thumb1 functions, also check for hi-reg CS registers
910 if (!AFI->isThumb1OnlyFunction()) {
911 while (NumExtras && !UnspilledCS2GPRs.empty()) {
912 unsigned Reg = UnspilledCS2GPRs.back();
913 UnspilledCS2GPRs.pop_back();
914 if (!RegInfo->isReservedReg(MF, Reg)) {
915 Extras.push_back(Reg);
916 NumExtras--;
917 }
918 }
919 }
920 if (Extras.size() && NumExtras == 0) {
921 for (unsigned i = 0, e = Extras.size(); i != e; ++i) {
922 MF.getRegInfo().setPhysRegUsed(Extras[i]);
923 AFI->setCSRegisterIsSpilled(Extras[i]);
924 }
925 } else if (!AFI->isThumb1OnlyFunction()) {
926 // note: Thumb1 functions spill to R12, not the stack. Reserve a slot
927 // closest to SP or frame pointer.
928 const TargetRegisterClass *RC = ARM::GPRRegisterClass;
929 RS->setScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
930 RC->getAlignment(),
931 false));
932 }
933 }
934 }
935
936 if (ForceLRSpill) {
937 MF.getRegInfo().setPhysRegUsed(ARM::LR);
938 AFI->setCSRegisterIsSpilled(ARM::LR);
939 AFI->setLRIsSpilledForFarJump(true);
940 }
941}