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