blob: 996428dbeb1291f3c8f7f07981e86f3a54266589 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- Thumb1FrameLowering.cpp - Thumb1 Frame Information ----------------===//
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Anton Korobeynikov2f931282011-01-10 12:39:04 +000010// This file contains the Thumb1 implementation of TargetFrameLowering class.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov2f931282011-01-10 12:39:04 +000014#include "Thumb1FrameLowering.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000015#include "ARMMachineFunctionInfo.h"
16#include "llvm/CodeGen/MachineFrameInfo.h"
17#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/MachineInstrBuilder.h"
Artyom Skrobovf6830f42014-02-14 17:19:07 +000019#include "llvm/CodeGen/MachineModuleInfo.h"
Evan Chengeb56dca2010-11-22 18:12:04 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000021
22using namespace llvm;
23
Jim Grosbache7e2aca2011-09-13 20:30:37 +000024bool Thumb1FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const{
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000025 const MachineFrameInfo *FFI = MF.getFrameInfo();
26 unsigned CFSize = FFI->getMaxCallFrameSize();
27 // It's not always a good idea to include the call frame as part of the
28 // stack frame. ARM (especially Thumb) has small immediate offset to
29 // address the stack frame. So a large call frame can cause poor codegen
30 // and may even makes it impossible to scavenge a register.
31 if (CFSize >= ((1 << 8) - 1) * 4 / 2) // Half of imm8 * 4
32 return false;
33
34 return !MF.getFrameInfo()->hasVarSizedObjects();
35}
36
Anton Korobeynikova8d177b2011-03-05 18:43:50 +000037static void
38emitSPUpdate(MachineBasicBlock &MBB,
39 MachineBasicBlock::iterator &MBBI,
40 const TargetInstrInfo &TII, DebugLoc dl,
41 const Thumb1RegisterInfo &MRI,
42 int NumBytes, unsigned MIFlags = MachineInstr::NoFlags) {
Anton Korobeynikove7410dd2011-03-05 18:43:32 +000043 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, TII,
Anton Korobeynikova8d177b2011-03-05 18:43:50 +000044 MRI, MIFlags);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000045}
46
Eli Bendersky8da87162013-02-21 20:05:00 +000047
48void Thumb1FrameLowering::
49eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
50 MachineBasicBlock::iterator I) const {
51 const Thumb1InstrInfo &TII =
52 *static_cast<const Thumb1InstrInfo*>(MF.getTarget().getInstrInfo());
53 const Thumb1RegisterInfo *RegInfo =
54 static_cast<const Thumb1RegisterInfo*>(MF.getTarget().getRegisterInfo());
55 if (!hasReservedCallFrame(MF)) {
56 // If we have alloca, convert as follows:
57 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
58 // ADJCALLSTACKUP -> add, sp, sp, amount
59 MachineInstr *Old = I;
60 DebugLoc dl = Old->getDebugLoc();
61 unsigned Amount = Old->getOperand(0).getImm();
62 if (Amount != 0) {
63 // We need to keep the stack aligned properly. To do this, we round the
64 // amount of space needed for the outgoing arguments up to the next
65 // alignment boundary.
66 unsigned Align = getStackAlignment();
67 Amount = (Amount+Align-1)/Align*Align;
68
69 // Replace the pseudo instruction with a new instruction...
70 unsigned Opc = Old->getOpcode();
71 if (Opc == ARM::ADJCALLSTACKDOWN || Opc == ARM::tADJCALLSTACKDOWN) {
72 emitSPUpdate(MBB, I, TII, dl, *RegInfo, -Amount);
73 } else {
74 assert(Opc == ARM::ADJCALLSTACKUP || Opc == ARM::tADJCALLSTACKUP);
75 emitSPUpdate(MBB, I, TII, dl, *RegInfo, Amount);
76 }
77 }
78 }
79 MBB.erase(I);
80}
81
Anton Korobeynikov2f931282011-01-10 12:39:04 +000082void Thumb1FrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000083 MachineBasicBlock &MBB = MF.front();
84 MachineBasicBlock::iterator MBBI = MBB.begin();
85 MachineFrameInfo *MFI = MF.getFrameInfo();
86 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Artyom Skrobovf6830f42014-02-14 17:19:07 +000087 MachineModuleInfo &MMI = MF.getMMI();
88 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000089 const Thumb1RegisterInfo *RegInfo =
90 static_cast<const Thumb1RegisterInfo*>(MF.getTarget().getRegisterInfo());
91 const Thumb1InstrInfo &TII =
92 *static_cast<const Thumb1InstrInfo*>(MF.getTarget().getInstrInfo());
93
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +000094 unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment();
95 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(Align);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000096 unsigned NumBytes = MFI->getStackSize();
97 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
98 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
99 unsigned FramePtr = RegInfo->getFrameRegister(MF);
100 unsigned BasePtr = RegInfo->getBaseRegister();
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000101 int CFAOffset = 0;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000102
103 // Thumb add/sub sp, imm8 instructions implicitly multiply the offset by 4.
104 NumBytes = (NumBytes + 3) & ~3;
105 MFI->setStackSize(NumBytes);
106
107 // Determine the sizes of each callee-save spill areas and record which frame
108 // belongs to which callee-save spill areas.
109 unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0;
110 int FramePtrSpillFI = 0;
111
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000112 if (ArgRegsSaveSize) {
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +0000113 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -ArgRegsSaveSize,
Anton Korobeynikova8d177b2011-03-05 18:43:50 +0000114 MachineInstr::FrameSetup);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000115 MCSymbol *SPLabel = MMI.getContext().CreateTempSymbol();
116 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::PROLOG_LABEL))
117 .addSym(SPLabel);
118 CFAOffset -= ArgRegsSaveSize;
119 MMI.addFrameInst(
120 MCCFIInstruction::createDefCfaOffset(SPLabel, CFAOffset));
121 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000122
123 if (!AFI->hasStackFrame()) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000124 if (NumBytes != 0) {
Anton Korobeynikova8d177b2011-03-05 18:43:50 +0000125 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -NumBytes,
126 MachineInstr::FrameSetup);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000127 MCSymbol *SPLabel = MMI.getContext().CreateTempSymbol();
128 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::PROLOG_LABEL))
129 .addSym(SPLabel);
130 CFAOffset -= NumBytes;
131 MMI.addFrameInst(
132 MCCFIInstruction::createDefCfaOffset(SPLabel, CFAOffset));
133 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000134 return;
135 }
136
137 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
138 unsigned Reg = CSI[i].getReg();
139 int FI = CSI[i].getFrameIdx();
140 switch (Reg) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000141 case ARM::R8:
142 case ARM::R9:
143 case ARM::R10:
144 case ARM::R11:
145 if (STI.isTargetMachO()) {
146 GPRCS2Size += 4;
147 break;
148 }
149 // fallthrough
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000150 case ARM::R4:
151 case ARM::R5:
152 case ARM::R6:
153 case ARM::R7:
154 case ARM::LR:
155 if (Reg == FramePtr)
156 FramePtrSpillFI = FI;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000157 GPRCS1Size += 4;
158 break;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000159 default:
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000160 DPRCSSize += 8;
161 }
162 }
163
164 if (MBBI != MBB.end() && MBBI->getOpcode() == ARM::tPUSH) {
165 ++MBBI;
166 if (MBBI != MBB.end())
167 dl = MBBI->getDebugLoc();
168 }
169
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000170 // Determine starting offsets of spill areas.
171 unsigned DPRCSOffset = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize);
172 unsigned GPRCS2Offset = DPRCSOffset + DPRCSSize;
173 unsigned GPRCS1Offset = GPRCS2Offset + GPRCS2Size;
Logan Chien53c18d82013-02-20 12:21:33 +0000174 bool HasFP = hasFP(MF);
175 if (HasFP)
176 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) +
177 NumBytes);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000178 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset);
179 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset);
180 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000181 NumBytes = DPRCSOffset;
Evan Chengeb56dca2010-11-22 18:12:04 +0000182
Tim Northover93bcc662013-11-08 17:18:07 +0000183 int FramePtrOffsetInBlock = 0;
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000184 unsigned adjustedGPRCS1Size = GPRCS1Size;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000185 if (tryFoldSPUpdateIntoPushPop(STI, MF, std::prev(MBBI), NumBytes)) {
Tim Northover93bcc662013-11-08 17:18:07 +0000186 FramePtrOffsetInBlock = NumBytes;
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000187 adjustedGPRCS1Size += NumBytes;
Tim Northover93bcc662013-11-08 17:18:07 +0000188 NumBytes = 0;
189 }
190
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000191 MCSymbol *SPLabel = MMI.getContext().CreateTempSymbol();
192 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::PROLOG_LABEL)).addSym(SPLabel);
193 if (adjustedGPRCS1Size) {
194 CFAOffset -= adjustedGPRCS1Size;
195 MMI.addFrameInst(
196 MCCFIInstruction::createDefCfaOffset(SPLabel, CFAOffset));
197 }
198 for (std::vector<CalleeSavedInfo>::const_iterator I = CSI.begin(),
199 E = CSI.end(); I != E; ++I) {
200 unsigned Reg = I->getReg();
201 int FI = I->getFrameIdx();
202 switch (Reg) {
203 case ARM::R8:
204 case ARM::R9:
205 case ARM::R10:
206 case ARM::R11:
207 case ARM::R12:
208 if (STI.isTargetMachO())
209 break;
210 // fallthough
211 case ARM::R0:
212 case ARM::R1:
213 case ARM::R2:
214 case ARM::R3:
215 case ARM::R4:
216 case ARM::R5:
217 case ARM::R6:
218 case ARM::R7:
219 case ARM::LR:
220 MMI.addFrameInst(MCCFIInstruction::createOffset(SPLabel,
221 MRI->getDwarfRegNum(Reg, true),
222 MFI->getObjectOffset(FI) - ArgRegsSaveSize));
223 break;
224 }
225 }
226
227
Evan Chengeb56dca2010-11-22 18:12:04 +0000228 // Adjust FP so it point to the stack slot that contains the previous FP.
Logan Chien53c18d82013-02-20 12:21:33 +0000229 if (HasFP) {
Tim Northover93bcc662013-11-08 17:18:07 +0000230 FramePtrOffsetInBlock += MFI->getObjectOffset(FramePtrSpillFI) + GPRCS1Size;
Jim Grosbach1b8457a2011-08-24 17:46:13 +0000231 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tADDrSPi), FramePtr)
Tim Northover93bcc662013-11-08 17:18:07 +0000232 .addReg(ARM::SP).addImm(FramePtrOffsetInBlock / 4)
Jim Grosbach1b8457a2011-08-24 17:46:13 +0000233 .setMIFlags(MachineInstr::FrameSetup));
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000234 MCSymbol *SPLabel = MMI.getContext().CreateTempSymbol();
235 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::PROLOG_LABEL))
236 .addSym(SPLabel);
237 if(FramePtrOffsetInBlock) {
238 CFAOffset += FramePtrOffsetInBlock;
239 MMI.addFrameInst(
240 MCCFIInstruction::createDefCfa(SPLabel,
241 MRI->getDwarfRegNum(FramePtr, true), CFAOffset));
242 } else
243 MMI.addFrameInst(
244 MCCFIInstruction::createDefCfaRegister(SPLabel,
245 MRI->getDwarfRegNum(FramePtr, true)));
Jim Grosbachdca85312011-06-13 21:18:25 +0000246 if (NumBytes > 508)
247 // If offset is > 508 then sp cannot be adjusted in a single instruction,
Evan Chengeb56dca2010-11-22 18:12:04 +0000248 // try restoring from fp instead.
249 AFI->setShouldRestoreSPFromFP(true);
250 }
251
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000252 if (NumBytes) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000253 // Insert it after all the callee-save spills.
Anton Korobeynikova8d177b2011-03-05 18:43:50 +0000254 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -NumBytes,
255 MachineInstr::FrameSetup);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000256 if (!HasFP) {
257 MCSymbol *SPLabel = MMI.getContext().CreateTempSymbol();
258 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::PROLOG_LABEL))
259 .addSym(SPLabel);
260 CFAOffset -= NumBytes;
261 MMI.addFrameInst(
262 MCCFIInstruction::createDefCfaOffset(SPLabel, CFAOffset));
263 }
264 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000265
Logan Chien53c18d82013-02-20 12:21:33 +0000266 if (STI.isTargetELF() && HasFP)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000267 MFI->setOffsetAdjustment(MFI->getOffsetAdjustment() -
268 AFI->getFramePtrSpillOffset());
269
270 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size);
271 AFI->setGPRCalleeSavedArea2Size(GPRCS2Size);
272 AFI->setDPRCalleeSavedAreaSize(DPRCSSize);
273
Chad Rosieradd38c12011-10-20 00:07:12 +0000274 // Thumb1 does not currently support dynamic stack realignment. Report a
275 // fatal error rather then silently generate bad code.
276 if (RegInfo->needsStackRealignment(MF))
277 report_fatal_error("Dynamic stack realignment not supported for thumb1.");
Chad Rosier1809d6c2011-10-15 00:28:24 +0000278
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000279 // If we need a base pointer, set it up here. It's whatever the value
280 // of the stack pointer is at this point. Any variable size objects
281 // will be allocated after this, so we can still use the base pointer
282 // to reference locals.
283 if (RegInfo->hasBasePointer(MF))
Jim Grosbache9cc9012011-06-30 23:38:17 +0000284 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), BasePtr)
Jim Grosbachb98ab912011-06-30 22:10:46 +0000285 .addReg(ARM::SP));
Anton Korobeynikova8d177b2011-03-05 18:43:50 +0000286
Eric Christopher39043432011-01-11 00:16:04 +0000287 // If the frame has variable sized objects then the epilogue must restore
288 // the sp from fp. We can assume there's an FP here since hasFP already
289 // checks for hasVarSizedObjects.
290 if (MFI->hasVarSizedObjects())
291 AFI->setShouldRestoreSPFromFP(true);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000292}
293
Craig Topper420525c2012-03-04 03:33:22 +0000294static bool isCSRestore(MachineInstr *MI, const uint16_t *CSRegs) {
Jim Grosbachd86f34d2011-06-29 20:26:39 +0000295 if (MI->getOpcode() == ARM::tLDRspi &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000296 MI->getOperand(1).isFI() &&
297 isCalleeSavedRegister(MI->getOperand(0).getReg(), CSRegs))
298 return true;
299 else if (MI->getOpcode() == ARM::tPOP) {
300 // The first two operands are predicates. The last two are
301 // imp-def and imp-use of SP. Check everything in between.
302 for (int i = 2, e = MI->getNumOperands() - 2; i != e; ++i)
303 if (!isCalleeSavedRegister(MI->getOperand(i).getReg(), CSRegs))
304 return false;
305 return true;
306 }
307 return false;
308}
309
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000310void Thumb1FrameLowering::emitEpilogue(MachineFunction &MF,
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000311 MachineBasicBlock &MBB) const {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000312 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000313 assert((MBBI->getOpcode() == ARM::tBX_RET ||
314 MBBI->getOpcode() == ARM::tPOP_RET) &&
315 "Can only insert epilog into returning blocks");
316 DebugLoc dl = MBBI->getDebugLoc();
317 MachineFrameInfo *MFI = MF.getFrameInfo();
318 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
319 const Thumb1RegisterInfo *RegInfo =
320 static_cast<const Thumb1RegisterInfo*>(MF.getTarget().getRegisterInfo());
321 const Thumb1InstrInfo &TII =
322 *static_cast<const Thumb1InstrInfo*>(MF.getTarget().getInstrInfo());
323
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +0000324 unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment();
325 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(Align);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000326 int NumBytes = (int)MFI->getStackSize();
Craig Topper420525c2012-03-04 03:33:22 +0000327 const uint16_t *CSRegs = RegInfo->getCalleeSavedRegs();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000328 unsigned FramePtr = RegInfo->getFrameRegister(MF);
329
330 if (!AFI->hasStackFrame()) {
331 if (NumBytes != 0)
332 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, NumBytes);
333 } else {
334 // Unwind MBBI to point to first LDR / VLDRD.
335 if (MBBI != MBB.begin()) {
336 do
337 --MBBI;
338 while (MBBI != MBB.begin() && isCSRestore(MBBI, CSRegs));
339 if (!isCSRestore(MBBI, CSRegs))
340 ++MBBI;
341 }
342
343 // Move SP to start of FP callee save spill area.
344 NumBytes -= (AFI->getGPRCalleeSavedArea1Size() +
345 AFI->getGPRCalleeSavedArea2Size() +
346 AFI->getDPRCalleeSavedAreaSize());
347
348 if (AFI->shouldRestoreSPFromFP()) {
349 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes;
350 // Reset SP based on frame pointer only if the stack frame extends beyond
Eric Christopher39043432011-01-11 00:16:04 +0000351 // frame pointer stack slot, the target is ELF and the function has FP, or
352 // the target uses var sized objects.
Evan Chengeb56dca2010-11-22 18:12:04 +0000353 if (NumBytes) {
354 assert(MF.getRegInfo().isPhysRegUsed(ARM::R4) &&
355 "No scratch register to restore SP from FP!");
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000356 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes,
357 TII, *RegInfo);
Jim Grosbache9cc9012011-06-30 23:38:17 +0000358 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr),
Jim Grosbachb98ab912011-06-30 22:10:46 +0000359 ARM::SP)
360 .addReg(ARM::R4));
Evan Chengeb56dca2010-11-22 18:12:04 +0000361 } else
Jim Grosbache9cc9012011-06-30 23:38:17 +0000362 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr),
Jim Grosbachb98ab912011-06-30 22:10:46 +0000363 ARM::SP)
364 .addReg(FramePtr));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000365 } else {
366 if (MBBI->getOpcode() == ARM::tBX_RET &&
367 &MBB.front() != MBBI &&
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000368 std::prev(MBBI)->getOpcode() == ARM::tPOP) {
369 MachineBasicBlock::iterator PMBBI = std::prev(MBBI);
Tim Northoverdee86042013-12-02 14:46:26 +0000370 if (!tryFoldSPUpdateIntoPushPop(STI, MF, PMBBI, NumBytes))
Tim Northover93bcc662013-11-08 17:18:07 +0000371 emitSPUpdate(MBB, PMBBI, TII, dl, *RegInfo, NumBytes);
Tim Northoverdee86042013-12-02 14:46:26 +0000372 } else if (!tryFoldSPUpdateIntoPushPop(STI, MF, MBBI, NumBytes))
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000373 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, NumBytes);
374 }
375 }
376
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +0000377 if (ArgRegsSaveSize) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000378 // Unlike T2 and ARM mode, the T1 pop instruction cannot restore
379 // to LR, and we can't pop the value directly to the PC since
380 // we need to update the SP after popping the value. Therefore, we
381 // pop the old LR into R3 as a temporary.
382
Tim Northover463a5f22014-01-14 22:53:28 +0000383 // Get the last instruction, tBX_RET
384 MBBI = MBB.getLastNonDebugInstr();
385 assert (MBBI->getOpcode() == ARM::tBX_RET);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000386 // Epilogue for vararg functions: pop LR to R3 and branch off it.
387 AddDefaultPred(BuildMI(MBB, MBBI, dl, TII.get(ARM::tPOP)))
388 .addReg(ARM::R3, RegState::Define);
389
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +0000390 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, ArgRegsSaveSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000391
Evan Cheng4882e482012-01-08 20:41:16 +0000392 MachineInstrBuilder MIB =
393 BuildMI(MBB, MBBI, dl, TII.get(ARM::tBX_RET_vararg))
394 .addReg(ARM::R3, RegState::Kill);
395 AddDefaultPred(MIB);
Jakob Stoklund Olesen33f5d142012-12-20 22:54:02 +0000396 MIB.copyImplicitOps(&*MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000397 // erase the old tBX_RET instruction
398 MBB.erase(MBBI);
399 }
400}
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000401
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000402bool Thumb1FrameLowering::
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000403spillCalleeSavedRegisters(MachineBasicBlock &MBB,
404 MachineBasicBlock::iterator MI,
405 const std::vector<CalleeSavedInfo> &CSI,
406 const TargetRegisterInfo *TRI) const {
407 if (CSI.empty())
408 return false;
409
410 DebugLoc DL;
411 MachineFunction &MF = *MBB.getParent();
412 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
413
414 if (MI != MBB.end()) DL = MI->getDebugLoc();
415
416 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(ARM::tPUSH));
417 AddDefaultPred(MIB);
418 for (unsigned i = CSI.size(); i != 0; --i) {
419 unsigned Reg = CSI[i-1].getReg();
420 bool isKill = true;
421
422 // Add the callee-saved register as live-in unless it's LR and
423 // @llvm.returnaddress is called. If LR is returned for @llvm.returnaddress
424 // then it's already added to the function and entry block live-in sets.
425 if (Reg == ARM::LR) {
426 MachineFunction &MF = *MBB.getParent();
427 if (MF.getFrameInfo()->isReturnAddressTaken() &&
428 MF.getRegInfo().isLiveIn(Reg))
429 isKill = false;
430 }
431
432 if (isKill)
433 MBB.addLiveIn(Reg);
434
435 MIB.addReg(Reg, getKillRegState(isKill));
436 }
Anton Korobeynikova8d177b2011-03-05 18:43:50 +0000437 MIB.setMIFlags(MachineInstr::FrameSetup);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000438 return true;
439}
440
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000441bool Thumb1FrameLowering::
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000442restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
443 MachineBasicBlock::iterator MI,
444 const std::vector<CalleeSavedInfo> &CSI,
445 const TargetRegisterInfo *TRI) const {
446 if (CSI.empty())
447 return false;
448
449 MachineFunction &MF = *MBB.getParent();
450 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
451 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
452
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +0000453 bool isVarArg = AFI->getArgRegsSaveSize() > 0;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000454 DebugLoc DL = MI->getDebugLoc();
455 MachineInstrBuilder MIB = BuildMI(MF, DL, TII.get(ARM::tPOP));
456 AddDefaultPred(MIB);
457
458 bool NumRegs = false;
459 for (unsigned i = CSI.size(); i != 0; --i) {
460 unsigned Reg = CSI[i-1].getReg();
461 if (Reg == ARM::LR) {
462 // Special epilogue for vararg functions. See emitEpilogue
463 if (isVarArg)
464 continue;
465 Reg = ARM::PC;
466 (*MIB).setDesc(TII.get(ARM::tPOP_RET));
Jakob Stoklund Olesen33f5d142012-12-20 22:54:02 +0000467 MIB.copyImplicitOps(&*MI);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000468 MI = MBB.erase(MI);
469 }
470 MIB.addReg(Reg, getDefRegState(true));
471 NumRegs = true;
472 }
473
474 // It's illegal to emit pop instruction without operands.
475 if (NumRegs)
476 MBB.insert(MI, &*MIB);
477 else
478 MF.DeleteMachineInstr(MIB);
479
480 return true;
481}