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