blob: a8c75702d7b54a1c841210cea3d9ed7b2d315860 [file] [log] [blame]
Eugene Zelenko076468c2017-09-20 21:35:51 +00001//===- ARMFrameLowering.cpp - ARM 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 ARM implementation of TargetFrameLowering class.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov2f931282011-01-10 12:39:04 +000014#include "ARMFrameLowering.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000015#include "ARMBaseInstrInfo.h"
Evan Chenge45d6852011-01-11 21:46:47 +000016#include "ARMBaseRegisterInfo.h"
Oliver Stannardb14c6252014-04-02 16:10:33 +000017#include "ARMConstantPoolValue.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000018#include "ARMMachineFunctionInfo.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000019#include "ARMSubtarget.h"
Evan Chenga20cde32011-07-20 23:34:39 +000020#include "MCTargetDesc/ARMAddressingModes.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000021#include "MCTargetDesc/ARMBaseInfo.h"
Eugene Zelenko076468c2017-09-20 21:35:51 +000022#include "Utils/ARMBaseInfo.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000023#include "llvm/ADT/BitVector.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000024#include "llvm/ADT/STLExtras.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000025#include "llvm/ADT/SmallPtrSet.h"
26#include "llvm/ADT/SmallVector.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000027#include "llvm/CodeGen/MachineBasicBlock.h"
28#include "llvm/CodeGen/MachineConstantPool.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000031#include "llvm/CodeGen/MachineInstr.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Artyom Skrobovf6830f42014-02-14 17:19:07 +000033#include "llvm/CodeGen/MachineModuleInfo.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000034#include "llvm/CodeGen/MachineOperand.h"
Evan Chengeb56dca2010-11-22 18:12:04 +000035#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +000036#include "llvm/CodeGen/RegisterScavenging.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000037#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000038#include "llvm/CodeGen/TargetOpcodes.h"
39#include "llvm/CodeGen/TargetRegisterInfo.h"
40#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000041#include "llvm/IR/Attributes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000042#include "llvm/IR/CallingConv.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000043#include "llvm/IR/DebugLoc.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000044#include "llvm/IR/Function.h"
Artyom Skrobovf6830f42014-02-14 17:19:07 +000045#include "llvm/MC/MCContext.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000046#include "llvm/MC/MCDwarf.h"
Eugene Zelenko076468c2017-09-20 21:35:51 +000047#include "llvm/MC/MCInstrDesc.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000048#include "llvm/MC/MCRegisterInfo.h"
49#include "llvm/Support/CodeGen.h"
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +000050#include "llvm/Support/CommandLine.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000051#include "llvm/Support/Compiler.h"
52#include "llvm/Support/Debug.h"
53#include "llvm/Support/ErrorHandling.h"
54#include "llvm/Support/MathExtras.h"
55#include "llvm/Support/raw_ostream.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000056#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000057#include "llvm/Target/TargetOptions.h"
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +000058#include <algorithm>
59#include <cassert>
60#include <cstddef>
61#include <cstdint>
62#include <iterator>
63#include <utility>
64#include <vector>
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000065
Reid Klecknerbdfc05f2016-10-11 21:14:03 +000066#define DEBUG_TYPE "arm-frame-lowering"
67
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000068using namespace llvm;
69
Benjamin Kramer9fceb902012-02-24 22:09:25 +000070static cl::opt<bool>
Jakob Stoklund Olesen68a922c2012-01-06 22:19:37 +000071SpillAlignedNEONRegs("align-neon-spills", cl::Hidden, cl::init(true),
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +000072 cl::desc("Align ARM NEON spills in prolog and epilog"));
73
74static MachineBasicBlock::iterator
75skipAlignedDPRCS2Spills(MachineBasicBlock::iterator MI,
76 unsigned NumAlignedDPRCS2Regs);
77
Eric Christopher45fb7b62014-06-26 19:29:59 +000078ARMFrameLowering::ARMFrameLowering(const ARMSubtarget &sti)
79 : TargetFrameLowering(StackGrowsDown, sti.getStackAlignment(), 0, 4),
80 STI(sti) {}
81
Akira Hatanakaddf76aa2015-05-23 01:14:08 +000082bool ARMFrameLowering::noFramePointerElim(const MachineFunction &MF) const {
83 // iOS always has a FP for backtracking, force other targets to keep their FP
84 // when doing FastISel. The emitted code is currently superior, and in cases
85 // like test-suite's lencod FastISel isn't quite correct when FP is eliminated.
86 return TargetFrameLowering::noFramePointerElim(MF) ||
87 MF.getSubtarget<ARMSubtarget>().useFastISel();
88}
89
Tim Northovere25e4582018-04-07 10:57:03 +000090/// Returns true if the target can safely skip saving callee-saved registers
91/// for noreturn nounwind functions.
92bool ARMFrameLowering::enableCalleeSaveSkip(const MachineFunction &MF) const {
93 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) &&
94 MF.getFunction().hasFnAttribute(Attribute::NoUnwind) &&
95 !MF.getFunction().hasFnAttribute(Attribute::UWTable));
96
97 // Frame pointer and link register are not treated as normal CSR, thus we
98 // can always skip CSR saves for nonreturning functions.
99 return true;
100}
101
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000102/// hasFP - Return true if the specified function should have a dedicated frame
103/// pointer register. This is true if the function has variable sized allocas
104/// or if frame pointer elimination is disabled.
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000105bool ARMFrameLowering::hasFP(const MachineFunction &MF) const {
Eric Christopherfc6de422014-08-05 02:39:49 +0000106 const TargetRegisterInfo *RegInfo = MF.getSubtarget().getRegisterInfo();
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000107 const MachineFrameInfo &MFI = MF.getFrameInfo();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000108
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000109 // ABI-required frame pointer.
110 if (MF.getTarget().Options.DisableFramePointerElim(MF))
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000111 return true;
112
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000113 // Frame pointer required for use within this function.
114 return (RegInfo->needsStackRealignment(MF) ||
Matthias Braun941a7052016-07-28 18:40:00 +0000115 MFI.hasVarSizedObjects() ||
116 MFI.isFrameAddressTaken());
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000117}
118
Bob Wilson657f2272011-01-13 21:10:12 +0000119/// hasReservedCallFrame - Under normal circumstances, when a frame pointer is
120/// not required, we reserve argument space for call sites in the function
121/// immediately on entry to the current function. This eliminates the need for
122/// add/sub sp brackets around call sites. Returns true if the call frame is
123/// included as part of the stack frame.
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000124bool ARMFrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Matthias Braun941a7052016-07-28 18:40:00 +0000125 const MachineFrameInfo &MFI = MF.getFrameInfo();
126 unsigned CFSize = MFI.getMaxCallFrameSize();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000127 // It's not always a good idea to include the call frame as part of the
128 // stack frame. ARM (especially Thumb) has small immediate offset to
129 // address the stack frame. So a large call frame can cause poor codegen
130 // and may even makes it impossible to scavenge a register.
131 if (CFSize >= ((1 << 12) - 1) / 2) // Half of imm12
132 return false;
133
Matthias Braun941a7052016-07-28 18:40:00 +0000134 return !MFI.hasVarSizedObjects();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000135}
136
Bob Wilson657f2272011-01-13 21:10:12 +0000137/// canSimplifyCallFramePseudos - If there is a reserved call frame, the
138/// call frame pseudos can be simplified. Unlike most targets, having a FP
139/// is not sufficient here since we still may reference some objects via SP
140/// even when FP is available in Thumb2 mode.
141bool
142ARMFrameLowering::canSimplifyCallFramePseudos(const MachineFunction &MF) const {
Matthias Braun941a7052016-07-28 18:40:00 +0000143 return hasReservedCallFrame(MF) || MF.getFrameInfo().hasVarSizedObjects();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000144}
145
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000146static bool isCSRestore(MachineInstr &MI, const ARMBaseInstrInfo &TII,
Craig Topper840beec2014-04-04 05:16:06 +0000147 const MCPhysReg *CSRegs) {
Eric Christopherb006fc92010-11-18 19:40:05 +0000148 // Integer spill area is handled with "pop".
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000149 if (isPopOpcode(MI.getOpcode())) {
Eric Christopherb006fc92010-11-18 19:40:05 +0000150 // The first two operands are predicates. The last two are
151 // imp-def and imp-use of SP. Check everything in between.
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000152 for (int i = 5, e = MI.getNumOperands(); i != e; ++i)
153 if (!isCalleeSavedRegister(MI.getOperand(i).getReg(), CSRegs))
Eric Christopherb006fc92010-11-18 19:40:05 +0000154 return false;
155 return true;
156 }
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000157 if ((MI.getOpcode() == ARM::LDR_POST_IMM ||
158 MI.getOpcode() == ARM::LDR_POST_REG ||
159 MI.getOpcode() == ARM::t2LDR_POST) &&
160 isCalleeSavedRegister(MI.getOperand(0).getReg(), CSRegs) &&
161 MI.getOperand(1).getReg() == ARM::SP)
Jim Grosbachbdb7ed12010-12-10 18:41:15 +0000162 return true;
Eric Christopherb006fc92010-11-18 19:40:05 +0000163
164 return false;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000165}
166
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000167static void emitRegPlusImmediate(
168 bool isARM, MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
169 const DebugLoc &dl, const ARMBaseInstrInfo &TII, unsigned DestReg,
170 unsigned SrcReg, int NumBytes, unsigned MIFlags = MachineInstr::NoFlags,
171 ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000172 if (isARM)
Tim Northoverc9432eb2013-11-04 23:04:15 +0000173 emitARMRegPlusImmediate(MBB, MBBI, dl, DestReg, SrcReg, NumBytes,
Eli Bendersky8da87162013-02-21 20:05:00 +0000174 Pred, PredReg, TII, MIFlags);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000175 else
Tim Northoverc9432eb2013-11-04 23:04:15 +0000176 emitT2RegPlusImmediate(MBB, MBBI, dl, DestReg, SrcReg, NumBytes,
Eli Bendersky8da87162013-02-21 20:05:00 +0000177 Pred, PredReg, TII, MIFlags);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000178}
179
Tim Northoverc9432eb2013-11-04 23:04:15 +0000180static void emitSPUpdate(bool isARM, MachineBasicBlock &MBB,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000181 MachineBasicBlock::iterator &MBBI, const DebugLoc &dl,
Tim Northoverc9432eb2013-11-04 23:04:15 +0000182 const ARMBaseInstrInfo &TII, int NumBytes,
183 unsigned MIFlags = MachineInstr::NoFlags,
184 ARMCC::CondCodes Pred = ARMCC::AL,
185 unsigned PredReg = 0) {
186 emitRegPlusImmediate(isARM, MBB, MBBI, dl, TII, ARM::SP, ARM::SP, NumBytes,
187 MIFlags, Pred, PredReg);
188}
189
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000190static int sizeOfSPAdjustment(const MachineInstr &MI) {
Tim Northover603d3162014-11-14 22:45:33 +0000191 int RegSize;
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000192 switch (MI.getOpcode()) {
Tim Northover603d3162014-11-14 22:45:33 +0000193 case ARM::VSTMDDB_UPD:
194 RegSize = 8;
195 break;
196 case ARM::STMDB_UPD:
197 case ARM::t2STMDB_UPD:
198 RegSize = 4;
199 break;
200 case ARM::t2STR_PRE:
201 case ARM::STR_PRE_IMM:
202 return 4;
203 default:
204 llvm_unreachable("Unknown push or pop like instruction");
205 }
206
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000207 int count = 0;
208 // ARM and Thumb2 push/pop insts have explicit "sp, sp" operands (+
209 // pred) so the list starts at 4.
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000210 for (int i = MI.getNumOperands() - 1; i >= 4; --i)
Tim Northover603d3162014-11-14 22:45:33 +0000211 count += RegSize;
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000212 return count;
213}
214
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000215static bool WindowsRequiresStackProbe(const MachineFunction &MF,
216 size_t StackSizeInBytes) {
Matthias Braun941a7052016-07-28 18:40:00 +0000217 const MachineFrameInfo &MFI = MF.getFrameInfo();
Matthias Braunf1caa282017-12-15 22:22:58 +0000218 const Function &F = MF.getFunction();
Matthias Braun941a7052016-07-28 18:40:00 +0000219 unsigned StackProbeSize = (MFI.getStackProtectorIndex() > 0) ? 4080 : 4096;
Matthias Braunf1caa282017-12-15 22:22:58 +0000220 if (F.hasFnAttribute("stack-probe-size"))
221 F.getFnAttribute("stack-probe-size")
Saleem Abdulrasoolfb8a66f2015-01-31 02:26:37 +0000222 .getValueAsString()
223 .getAsInteger(0, StackProbeSize);
Hans Wennborg89c35fc2018-02-23 13:46:25 +0000224 return (StackSizeInBytes >= StackProbeSize) &&
225 !F.hasFnAttribute("no-stack-arg-probe");
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000226}
227
Tim Northover603d3162014-11-14 22:45:33 +0000228namespace {
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +0000229
Tim Northover603d3162014-11-14 22:45:33 +0000230struct StackAdjustingInsts {
231 struct InstInfo {
232 MachineBasicBlock::iterator I;
233 unsigned SPAdjust;
234 bool BeforeFPSet;
235 };
236
237 SmallVector<InstInfo, 4> Insts;
238
239 void addInst(MachineBasicBlock::iterator I, unsigned SPAdjust,
240 bool BeforeFPSet = false) {
241 InstInfo Info = {I, SPAdjust, BeforeFPSet};
242 Insts.push_back(Info);
243 }
244
245 void addExtraBytes(const MachineBasicBlock::iterator I, unsigned ExtraBytes) {
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +0000246 auto Info =
247 llvm::find_if(Insts, [&](InstInfo &Info) { return Info.I == I; });
Tim Northover603d3162014-11-14 22:45:33 +0000248 assert(Info != Insts.end() && "invalid sp adjusting instruction");
249 Info->SPAdjust += ExtraBytes;
250 }
251
Matthias Braunf23ef432016-11-30 23:48:42 +0000252 void emitDefCFAOffsets(MachineBasicBlock &MBB, const DebugLoc &dl,
253 const ARMBaseInstrInfo &TII, bool HasFP) {
254 MachineFunction &MF = *MBB.getParent();
Tim Northover603d3162014-11-14 22:45:33 +0000255 unsigned CFAOffset = 0;
256 for (auto &Info : Insts) {
257 if (HasFP && !Info.BeforeFPSet)
258 return;
259
260 CFAOffset -= Info.SPAdjust;
Matthias Braunf23ef432016-11-30 23:48:42 +0000261 unsigned CFIIndex = MF.addFrameInst(
Tim Northover603d3162014-11-14 22:45:33 +0000262 MCCFIInstruction::createDefCfaOffset(nullptr, CFAOffset));
263 BuildMI(MBB, std::next(Info.I), dl,
Adrian Prantlb9fa9452014-12-16 00:20:49 +0000264 TII.get(TargetOpcode::CFI_INSTRUCTION))
265 .addCFIIndex(CFIIndex)
266 .setMIFlags(MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000267 }
268 }
269};
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +0000270
271} // end anonymous namespace
Tim Northover603d3162014-11-14 22:45:33 +0000272
Kristof Beyls933de7a2015-01-08 15:09:14 +0000273/// Emit an instruction sequence that will align the address in
274/// register Reg by zero-ing out the lower bits. For versions of the
275/// architecture that support Neon, this must be done in a single
276/// instruction, since skipAlignedDPRCS2Spills assumes it is done in a
277/// single instruction. That function only gets called when optimizing
278/// spilling of D registers on a core with the Neon instruction set
279/// present.
280static void emitAligningInstructions(MachineFunction &MF, ARMFunctionInfo *AFI,
281 const TargetInstrInfo &TII,
282 MachineBasicBlock &MBB,
283 MachineBasicBlock::iterator MBBI,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000284 const DebugLoc &DL, const unsigned Reg,
Kristof Beyls933de7a2015-01-08 15:09:14 +0000285 const unsigned Alignment,
286 const bool MustBeSingleInstruction) {
Eric Christopher1b21f002015-01-29 00:19:33 +0000287 const ARMSubtarget &AST =
288 static_cast<const ARMSubtarget &>(MF.getSubtarget());
Kristof Beyls933de7a2015-01-08 15:09:14 +0000289 const bool CanUseBFC = AST.hasV6T2Ops() || AST.hasV7Ops();
290 const unsigned AlignMask = Alignment - 1;
291 const unsigned NrBitsToZero = countTrailingZeros(Alignment);
292 assert(!AFI->isThumb1OnlyFunction() && "Thumb1 not supported");
293 if (!AFI->isThumbFunction()) {
294 // if the BFC instruction is available, use that to zero the lower
295 // bits:
296 // bfc Reg, #0, log2(Alignment)
297 // otherwise use BIC, if the mask to zero the required number of bits
298 // can be encoded in the bic immediate field
299 // bic Reg, Reg, Alignment-1
300 // otherwise, emit
301 // lsr Reg, Reg, log2(Alignment)
302 // lsl Reg, Reg, log2(Alignment)
303 if (CanUseBFC) {
Diana Picus4f8c3e12017-01-13 09:37:56 +0000304 BuildMI(MBB, MBBI, DL, TII.get(ARM::BFC), Reg)
305 .addReg(Reg, RegState::Kill)
306 .addImm(~AlignMask)
307 .add(predOps(ARMCC::AL));
Kristof Beyls933de7a2015-01-08 15:09:14 +0000308 } else if (AlignMask <= 255) {
Diana Picus8a73f552017-01-13 10:18:01 +0000309 BuildMI(MBB, MBBI, DL, TII.get(ARM::BICri), Reg)
310 .addReg(Reg, RegState::Kill)
311 .addImm(AlignMask)
312 .add(predOps(ARMCC::AL))
313 .add(condCodeOp());
Kristof Beyls933de7a2015-01-08 15:09:14 +0000314 } else {
315 assert(!MustBeSingleInstruction &&
316 "Shouldn't call emitAligningInstructions demanding a single "
317 "instruction to be emitted for large stack alignment for a target "
318 "without BFC.");
Diana Picus8a73f552017-01-13 10:18:01 +0000319 BuildMI(MBB, MBBI, DL, TII.get(ARM::MOVsi), Reg)
320 .addReg(Reg, RegState::Kill)
321 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsr, NrBitsToZero))
322 .add(predOps(ARMCC::AL))
323 .add(condCodeOp());
324 BuildMI(MBB, MBBI, DL, TII.get(ARM::MOVsi), Reg)
325 .addReg(Reg, RegState::Kill)
326 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, NrBitsToZero))
327 .add(predOps(ARMCC::AL))
328 .add(condCodeOp());
Kristof Beyls933de7a2015-01-08 15:09:14 +0000329 }
330 } else {
331 // Since this is only reached for Thumb-2 targets, the BFC instruction
332 // should always be available.
333 assert(CanUseBFC);
Diana Picus4f8c3e12017-01-13 09:37:56 +0000334 BuildMI(MBB, MBBI, DL, TII.get(ARM::t2BFC), Reg)
335 .addReg(Reg, RegState::Kill)
336 .addImm(~AlignMask)
337 .add(predOps(ARMCC::AL));
Kristof Beyls933de7a2015-01-08 15:09:14 +0000338 }
339}
340
Matthias Braun8aaa3682017-04-19 21:11:44 +0000341/// We need the offset of the frame pointer relative to other MachineFrameInfo
342/// offsets which are encoded relative to SP at function begin.
343/// See also emitPrologue() for how the FP is set up.
344/// Unfortunately we cannot determine this value in determineCalleeSaves() yet
345/// as assignCalleeSavedSpillSlots() hasn't run at this point. Instead we use
346/// this to produce a conservative estimate that we check in an assert() later.
347static int getMaxFPOffset(const Function &F, const ARMFunctionInfo &AFI) {
348 // This is a conservative estimation: Assume the frame pointer being r7 and
349 // pc("r15") up to r8 getting spilled before (= 8 registers).
350 return -AFI.getArgRegsSaveSize() - (8 * 4);
351}
352
Quentin Colombet61b305e2015-05-05 17:38:16 +0000353void ARMFrameLowering::emitPrologue(MachineFunction &MF,
354 MachineBasicBlock &MBB) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000355 MachineBasicBlock::iterator MBBI = MBB.begin();
Matthias Braun941a7052016-07-28 18:40:00 +0000356 MachineFrameInfo &MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000357 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000358 MachineModuleInfo &MMI = MF.getMMI();
359 MCContext &Context = MMI.getContext();
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000360 const TargetMachine &TM = MF.getTarget();
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000361 const MCRegisterInfo *MRI = Context.getRegisterInfo();
Eric Christopher1b21f002015-01-29 00:19:33 +0000362 const ARMBaseRegisterInfo *RegInfo = STI.getRegisterInfo();
363 const ARMBaseInstrInfo &TII = *STI.getInstrInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000364 assert(!AFI->isThumb1OnlyFunction() &&
365 "This emitPrologue does not support Thumb1!");
366 bool isARM = !AFI->isThumbFunction();
Eric Christopher1b21f002015-01-29 00:19:33 +0000367 unsigned Align = STI.getFrameLowering()->getStackAlignment();
Tim Northover775aaeb2015-11-05 21:54:58 +0000368 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize();
Matthias Braun941a7052016-07-28 18:40:00 +0000369 unsigned NumBytes = MFI.getStackSize();
370 const std::vector<CalleeSavedInfo> &CSI = MFI.getCalleeSavedInfo();
Tim Northover775aaeb2015-11-05 21:54:58 +0000371
372 // Debug location must be unknown since the first debug location is used
373 // to determine the end of the prologue.
374 DebugLoc dl;
Fangrui Songf78650a2018-07-30 19:41:25 +0000375
Tim Northover775aaeb2015-11-05 21:54:58 +0000376 unsigned FramePtr = RegInfo->getFrameRegister(MF);
377
378 // Determine the sizes of each callee-save spill areas and record which frame
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000379 // belongs to which callee-save spill areas.
380 unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0;
381 int FramePtrSpillFI = 0;
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000382 int D8SpillFI = 0;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000383
Jakob Stoklund Olesene3801832012-10-26 21:46:57 +0000384 // All calls are tail calls in GHC calling conv, and functions have no
385 // prologue/epilogue.
Matthias Braunf1caa282017-12-15 22:22:58 +0000386 if (MF.getFunction().getCallingConv() == CallingConv::GHC)
Eric Christopherb3322362012-08-03 00:05:53 +0000387 return;
388
Tim Northover603d3162014-11-14 22:45:33 +0000389 StackAdjustingInsts DefCFAOffsetCandidates;
Sergey Dmitrouk3cc62b32015-04-08 10:10:12 +0000390 bool HasFP = hasFP(MF);
Tim Northover603d3162014-11-14 22:45:33 +0000391
Oliver Stannardd55e1152014-03-05 15:25:27 +0000392 // Allocate the vararg register save area.
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000393 if (ArgRegsSaveSize) {
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +0000394 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -ArgRegsSaveSize,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000395 MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000396 DefCFAOffsetCandidates.addInst(std::prev(MBBI), ArgRegsSaveSize, true);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000397 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000398
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000399 if (!AFI->hasStackFrame() &&
400 (!STI.isTargetWindows() || !WindowsRequiresStackProbe(MF, NumBytes))) {
Oliver Stannardd55e1152014-03-05 15:25:27 +0000401 if (NumBytes - ArgRegsSaveSize != 0) {
402 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -(NumBytes - ArgRegsSaveSize),
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000403 MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000404 DefCFAOffsetCandidates.addInst(std::prev(MBBI),
405 NumBytes - ArgRegsSaveSize, true);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000406 }
Matthias Braunf23ef432016-11-30 23:48:42 +0000407 DefCFAOffsetCandidates.emitDefCFAOffsets(MBB, dl, TII, HasFP);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000408 return;
409 }
410
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000411 // Determine spill area sizes.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000412 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
413 unsigned Reg = CSI[i].getReg();
414 int FI = CSI[i].getFrameIdx();
415 switch (Reg) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000416 case ARM::R8:
417 case ARM::R9:
418 case ARM::R10:
419 case ARM::R11:
420 case ARM::R12:
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000421 if (STI.splitFramePushPop(MF)) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000422 GPRCS2Size += 4;
423 break;
424 }
Justin Bognerb03fd122016-08-17 05:10:15 +0000425 LLVM_FALLTHROUGH;
Tim Northoverd8407452013-10-01 14:33:28 +0000426 case ARM::R0:
427 case ARM::R1:
428 case ARM::R2:
429 case ARM::R3:
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000430 case ARM::R4:
431 case ARM::R5:
432 case ARM::R6:
433 case ARM::R7:
434 case ARM::LR:
435 if (Reg == FramePtr)
436 FramePtrSpillFI = FI;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000437 GPRCS1Size += 4;
438 break;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000439 default:
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000440 // This is a DPR. Exclude the aligned DPRCS2 spills.
441 if (Reg == ARM::D8)
442 D8SpillFI = FI;
Tim Northoverc9432eb2013-11-04 23:04:15 +0000443 if (Reg < ARM::D8 || Reg >= ARM::D8 + AFI->getNumAlignedDPRCS2Regs())
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000444 DPRCSSize += 8;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000445 }
446 }
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000447
Eric Christopherb006fc92010-11-18 19:40:05 +0000448 // Move past area 1.
Tim Northover603d3162014-11-14 22:45:33 +0000449 MachineBasicBlock::iterator LastPush = MBB.end(), GPRCS1Push, GPRCS2Push;
450 if (GPRCS1Size > 0) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000451 GPRCS1Push = LastPush = MBBI++;
Tim Northover603d3162014-11-14 22:45:33 +0000452 DefCFAOffsetCandidates.addInst(LastPush, GPRCS1Size, true);
453 }
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000454
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000455 // Determine starting offsets of spill areas.
Tim Northover228c9432014-11-05 00:27:13 +0000456 unsigned GPRCS1Offset = NumBytes - ArgRegsSaveSize - GPRCS1Size;
457 unsigned GPRCS2Offset = GPRCS1Offset - GPRCS2Size;
458 unsigned DPRAlign = DPRCSSize ? std::min(8U, Align) : 4U;
459 unsigned DPRGapSize = (GPRCS1Size + GPRCS2Size + ArgRegsSaveSize) % DPRAlign;
460 unsigned DPRCSOffset = GPRCS2Offset - DPRGapSize - DPRCSSize;
Tim Northover93bcc662013-11-08 17:18:07 +0000461 int FramePtrOffsetInPush = 0;
462 if (HasFP) {
Matthias Braun8aaa3682017-04-19 21:11:44 +0000463 int FPOffset = MFI.getObjectOffset(FramePtrSpillFI);
Matthias Braunf1caa282017-12-15 22:22:58 +0000464 assert(getMaxFPOffset(MF.getFunction(), *AFI) <= FPOffset &&
Matthias Braun8aaa3682017-04-19 21:11:44 +0000465 "Max FP estimation is wrong");
466 FramePtrOffsetInPush = FPOffset + ArgRegsSaveSize;
Matthias Braun941a7052016-07-28 18:40:00 +0000467 AFI->setFramePtrSpillOffset(MFI.getObjectOffset(FramePtrSpillFI) +
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000468 NumBytes);
Tim Northover93bcc662013-11-08 17:18:07 +0000469 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000470 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset);
471 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset);
472 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset);
473
Tim Northoverc9432eb2013-11-04 23:04:15 +0000474 // Move past area 2.
Tim Northover603d3162014-11-14 22:45:33 +0000475 if (GPRCS2Size > 0) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000476 GPRCS2Push = LastPush = MBBI++;
Tim Northover603d3162014-11-14 22:45:33 +0000477 DefCFAOffsetCandidates.addInst(LastPush, GPRCS2Size);
478 }
Tim Northoverc9432eb2013-11-04 23:04:15 +0000479
Tim Northover228c9432014-11-05 00:27:13 +0000480 // Prolog/epilog inserter assumes we correctly align DPRs on the stack, so our
481 // .cfi_offset operations will reflect that.
482 if (DPRGapSize) {
483 assert(DPRGapSize == 4 && "unexpected alignment requirements for DPRs");
Duncan P. N. Exon Smithec083b52016-08-17 00:53:04 +0000484 if (LastPush != MBB.end() &&
485 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, DPRGapSize))
Tim Northover603d3162014-11-14 22:45:33 +0000486 DefCFAOffsetCandidates.addExtraBytes(LastPush, DPRGapSize);
487 else {
Tim Northover228c9432014-11-05 00:27:13 +0000488 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -DPRGapSize,
489 MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000490 DefCFAOffsetCandidates.addInst(std::prev(MBBI), DPRGapSize);
491 }
Tim Northover228c9432014-11-05 00:27:13 +0000492 }
493
Eric Christopherb006fc92010-11-18 19:40:05 +0000494 // Move past area 3.
Evan Cheng70d29632011-02-25 00:24:46 +0000495 if (DPRCSSize > 0) {
Evan Cheng70d29632011-02-25 00:24:46 +0000496 // Since vpush register list cannot have gaps, there may be multiple vpush
Evan Chenga921dc52011-02-25 01:29:29 +0000497 // instructions in the prologue.
Matthias Braun5d01e702017-11-28 01:17:52 +0000498 while (MBBI != MBB.end() && MBBI->getOpcode() == ARM::VSTMDDB_UPD) {
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000499 DefCFAOffsetCandidates.addInst(MBBI, sizeOfSPAdjustment(*MBBI));
Tim Northover93bcc662013-11-08 17:18:07 +0000500 LastPush = MBBI++;
Tim Northover603d3162014-11-14 22:45:33 +0000501 }
Evan Cheng70d29632011-02-25 00:24:46 +0000502 }
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000503
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000504 // Move past the aligned DPRCS2 area.
505 if (AFI->getNumAlignedDPRCS2Regs() > 0) {
506 MBBI = skipAlignedDPRCS2Spills(MBBI, AFI->getNumAlignedDPRCS2Regs());
507 // The code inserted by emitAlignedDPRCS2Spills realigns the stack, and
508 // leaves the stack pointer pointing to the DPRCS2 area.
509 //
510 // Adjust NumBytes to represent the stack slots below the DPRCS2 area.
Matthias Braun941a7052016-07-28 18:40:00 +0000511 NumBytes += MFI.getObjectOffset(D8SpillFI);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000512 } else
513 NumBytes = DPRCSOffset;
514
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000515 if (STI.isTargetWindows() && WindowsRequiresStackProbe(MF, NumBytes)) {
516 uint32_t NumWords = NumBytes >> 2;
517
518 if (NumWords < 65536)
Diana Picus4f8c3e12017-01-13 09:37:56 +0000519 BuildMI(MBB, MBBI, dl, TII.get(ARM::t2MOVi16), ARM::R4)
520 .addImm(NumWords)
521 .setMIFlags(MachineInstr::FrameSetup)
522 .add(predOps(ARMCC::AL));
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000523 else
524 BuildMI(MBB, MBBI, dl, TII.get(ARM::t2MOVi32imm), ARM::R4)
Saleem Abdulrasool985dcf12014-05-07 03:03:31 +0000525 .addImm(NumWords)
526 .setMIFlags(MachineInstr::FrameSetup);
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000527
528 switch (TM.getCodeModel()) {
529 case CodeModel::Small:
530 case CodeModel::Medium:
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000531 case CodeModel::Kernel:
532 BuildMI(MBB, MBBI, dl, TII.get(ARM::tBL))
Diana Picusbd66b7d2017-01-20 08:15:24 +0000533 .add(predOps(ARMCC::AL))
534 .addExternalSymbol("__chkstk")
535 .addReg(ARM::R4, RegState::Implicit)
536 .setMIFlags(MachineInstr::FrameSetup);
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000537 break;
538 case CodeModel::Large:
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000539 BuildMI(MBB, MBBI, dl, TII.get(ARM::t2MOVi32imm), ARM::R12)
Saleem Abdulrasool985dcf12014-05-07 03:03:31 +0000540 .addExternalSymbol("__chkstk")
541 .setMIFlags(MachineInstr::FrameSetup);
Saleem Abdulrasool71583032014-05-01 04:19:59 +0000542
Saleem Abdulrasoolacd03382014-05-07 03:03:27 +0000543 BuildMI(MBB, MBBI, dl, TII.get(ARM::tBLXr))
Diana Picusbd66b7d2017-01-20 08:15:24 +0000544 .add(predOps(ARMCC::AL))
545 .addReg(ARM::R12, RegState::Kill)
546 .addReg(ARM::R4, RegState::Implicit)
547 .setMIFlags(MachineInstr::FrameSetup);
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000548 break;
549 }
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000550
Diana Picus8a73f552017-01-13 10:18:01 +0000551 BuildMI(MBB, MBBI, dl, TII.get(ARM::t2SUBrr), ARM::SP)
552 .addReg(ARM::SP, RegState::Kill)
553 .addReg(ARM::R4, RegState::Kill)
554 .setMIFlags(MachineInstr::FrameSetup)
555 .add(predOps(ARMCC::AL))
556 .add(condCodeOp());
Saleem Abdulrasool25947c32014-04-30 07:05:07 +0000557 NumBytes = 0;
558 }
559
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000560 if (NumBytes) {
561 // Adjust SP after all the callee-save spills.
Tim Northoverbeb5bcc2015-09-23 22:21:09 +0000562 if (AFI->getNumAlignedDPRCS2Regs() == 0 &&
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000563 tryFoldSPUpdateIntoPushPop(STI, MF, &*LastPush, NumBytes))
Tim Northover603d3162014-11-14 22:45:33 +0000564 DefCFAOffsetCandidates.addExtraBytes(LastPush, NumBytes);
565 else {
Tim Northover93bcc662013-11-08 17:18:07 +0000566 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes,
567 MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000568 DefCFAOffsetCandidates.addInst(std::prev(MBBI), NumBytes);
569 }
Tim Northover93bcc662013-11-08 17:18:07 +0000570
Evan Chengeb56dca2010-11-22 18:12:04 +0000571 if (HasFP && isARM)
572 // Restore from fp only in ARM mode: e.g. sub sp, r7, #24
573 // Note it's not safe to do this in Thumb2 mode because it would have
574 // taken two instructions:
575 // mov sp, r7
576 // sub sp, #24
577 // If an interrupt is taken between the two instructions, then sp is in
578 // an inconsistent state (pointing to the middle of callee-saved area).
579 // The interrupt handler can end up clobbering the registers.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000580 AFI->setShouldRestoreSPFromFP(true);
581 }
582
Tim Northover603d3162014-11-14 22:45:33 +0000583 // Set FP to point to the stack slot that contains the previous FP.
584 // For iOS, FP is R7, which has now been stored in spill area 1.
585 // Otherwise, if this is not iOS, all the callee-saved registers go
586 // into spill area 1, including the FP in R11. In either case, it
587 // is in area one and the adjustment needs to take place just after
588 // that push.
589 if (HasFP) {
590 MachineBasicBlock::iterator AfterPush = std::next(GPRCS1Push);
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000591 unsigned PushSize = sizeOfSPAdjustment(*GPRCS1Push);
Tim Northover603d3162014-11-14 22:45:33 +0000592 emitRegPlusImmediate(!AFI->isThumbFunction(), MBB, AfterPush,
593 dl, TII, FramePtr, ARM::SP,
594 PushSize + FramePtrOffsetInPush,
595 MachineInstr::FrameSetup);
596 if (FramePtrOffsetInPush + PushSize != 0) {
Matthias Braunf23ef432016-11-30 23:48:42 +0000597 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createDefCfa(
Tim Northover603d3162014-11-14 22:45:33 +0000598 nullptr, MRI->getDwarfRegNum(FramePtr, true),
599 -(ArgRegsSaveSize - FramePtrOffsetInPush)));
600 BuildMI(MBB, AfterPush, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Adrian Prantlb9fa9452014-12-16 00:20:49 +0000601 .addCFIIndex(CFIIndex)
602 .setMIFlags(MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000603 } else {
604 unsigned CFIIndex =
Matthias Braunf23ef432016-11-30 23:48:42 +0000605 MF.addFrameInst(MCCFIInstruction::createDefCfaRegister(
Tim Northover603d3162014-11-14 22:45:33 +0000606 nullptr, MRI->getDwarfRegNum(FramePtr, true)));
607 BuildMI(MBB, AfterPush, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Adrian Prantlb9fa9452014-12-16 00:20:49 +0000608 .addCFIIndex(CFIIndex)
609 .setMIFlags(MachineInstr::FrameSetup);
Tim Northover603d3162014-11-14 22:45:33 +0000610 }
611 }
612
613 // Now that the prologue's actual instructions are finalised, we can insert
614 // the necessary DWARF cf instructions to describe the situation. Start by
615 // recording where each register ended up:
616 if (GPRCS1Size > 0) {
617 MachineBasicBlock::iterator Pos = std::next(GPRCS1Push);
618 int CFIIndex;
Jim Grosbachf92e8f52014-04-04 02:10:55 +0000619 for (const auto &Entry : CSI) {
620 unsigned Reg = Entry.getReg();
621 int FI = Entry.getFrameIdx();
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000622 switch (Reg) {
623 case ARM::R8:
624 case ARM::R9:
625 case ARM::R10:
626 case ARM::R11:
627 case ARM::R12:
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000628 if (STI.splitFramePushPop(MF))
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000629 break;
Justin Bognerb03fd122016-08-17 05:10:15 +0000630 LLVM_FALLTHROUGH;
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000631 case ARM::R0:
632 case ARM::R1:
633 case ARM::R2:
634 case ARM::R3:
635 case ARM::R4:
636 case ARM::R5:
637 case ARM::R6:
638 case ARM::R7:
639 case ARM::LR:
Matthias Braunf23ef432016-11-30 23:48:42 +0000640 CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset(
Matthias Braun941a7052016-07-28 18:40:00 +0000641 nullptr, MRI->getDwarfRegNum(Reg, true), MFI.getObjectOffset(FI)));
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000642 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Adrian Prantlb9fa9452014-12-16 00:20:49 +0000643 .addCFIIndex(CFIIndex)
644 .setMIFlags(MachineInstr::FrameSetup);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000645 break;
646 }
647 }
648 }
649
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000650 if (GPRCS2Size > 0) {
Tim Northover603d3162014-11-14 22:45:33 +0000651 MachineBasicBlock::iterator Pos = std::next(GPRCS2Push);
Jim Grosbachf92e8f52014-04-04 02:10:55 +0000652 for (const auto &Entry : CSI) {
653 unsigned Reg = Entry.getReg();
654 int FI = Entry.getFrameIdx();
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000655 switch (Reg) {
656 case ARM::R8:
657 case ARM::R9:
658 case ARM::R10:
659 case ARM::R11:
660 case ARM::R12:
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000661 if (STI.splitFramePushPop(MF)) {
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000662 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Matthias Braun941a7052016-07-28 18:40:00 +0000663 unsigned Offset = MFI.getObjectOffset(FI);
Matthias Braunf23ef432016-11-30 23:48:42 +0000664 unsigned CFIIndex = MF.addFrameInst(
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000665 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset));
666 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Adrian Prantlb9fa9452014-12-16 00:20:49 +0000667 .addCFIIndex(CFIIndex)
668 .setMIFlags(MachineInstr::FrameSetup);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000669 }
670 break;
671 }
672 }
673 }
674
675 if (DPRCSSize > 0) {
676 // Since vpush register list cannot have gaps, there may be multiple vpush
677 // instructions in the prologue.
Tim Northover603d3162014-11-14 22:45:33 +0000678 MachineBasicBlock::iterator Pos = std::next(LastPush);
Jim Grosbachf92e8f52014-04-04 02:10:55 +0000679 for (const auto &Entry : CSI) {
680 unsigned Reg = Entry.getReg();
681 int FI = Entry.getFrameIdx();
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000682 if ((Reg >= ARM::D0 && Reg <= ARM::D31) &&
683 (Reg < ARM::D8 || Reg >= ARM::D8 + AFI->getNumAlignedDPRCS2Regs())) {
684 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Matthias Braun941a7052016-07-28 18:40:00 +0000685 unsigned Offset = MFI.getObjectOffset(FI);
Matthias Braunf23ef432016-11-30 23:48:42 +0000686 unsigned CFIIndex = MF.addFrameInst(
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000687 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset));
Tim Northover603d3162014-11-14 22:45:33 +0000688 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Adrian Prantlb9fa9452014-12-16 00:20:49 +0000689 .addCFIIndex(CFIIndex)
690 .setMIFlags(MachineInstr::FrameSetup);
Artyom Skrobovf6830f42014-02-14 17:19:07 +0000691 }
692 }
693 }
694
Tim Northover603d3162014-11-14 22:45:33 +0000695 // Now we can emit descriptions of where the canonical frame address was
696 // throughout the process. If we have a frame pointer, it takes over the job
697 // half-way through, so only the first few .cfi_def_cfa_offset instructions
698 // actually get emitted.
Matthias Braunf23ef432016-11-30 23:48:42 +0000699 DefCFAOffsetCandidates.emitDefCFAOffsets(MBB, dl, TII, HasFP);
Tim Northover93bcc662013-11-08 17:18:07 +0000700
Evan Chengeb56dca2010-11-22 18:12:04 +0000701 if (STI.isTargetELF() && hasFP(MF))
Matthias Braun941a7052016-07-28 18:40:00 +0000702 MFI.setOffsetAdjustment(MFI.getOffsetAdjustment() -
703 AFI->getFramePtrSpillOffset());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000704
705 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size);
706 AFI->setGPRCalleeSavedArea2Size(GPRCS2Size);
Tim Northover228c9432014-11-05 00:27:13 +0000707 AFI->setDPRCalleeSavedGapSize(DPRGapSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000708 AFI->setDPRCalleeSavedAreaSize(DPRCSSize);
709
710 // If we need dynamic stack realignment, do it here. Be paranoid and make
711 // sure if we also have VLAs, we have a base pointer for frame access.
Jakob Stoklund Olesen103318e2011-12-24 04:17:01 +0000712 // If aligned NEON registers were spilled, the stack has already been
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000713 // realigned.
714 if (!AFI->getNumAlignedDPRCS2Regs() && RegInfo->needsStackRealignment(MF)) {
Matthias Braun941a7052016-07-28 18:40:00 +0000715 unsigned MaxAlign = MFI.getMaxAlignment();
Kristof Beyls933de7a2015-01-08 15:09:14 +0000716 assert(!AFI->isThumb1OnlyFunction());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000717 if (!AFI->isThumbFunction()) {
Kristof Beyls933de7a2015-01-08 15:09:14 +0000718 emitAligningInstructions(MF, AFI, TII, MBB, MBBI, dl, ARM::SP, MaxAlign,
719 false);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000720 } else {
Kristof Beyls933de7a2015-01-08 15:09:14 +0000721 // We cannot use sp as source/dest register here, thus we're using r4 to
722 // perform the calculations. We're emitting the following sequence:
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000723 // mov r4, sp
Kristof Beyls933de7a2015-01-08 15:09:14 +0000724 // -- use emitAligningInstructions to produce best sequence to zero
725 // -- out lower bits in r4
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000726 // mov sp, r4
727 // FIXME: It will be better just to find spare register here.
Diana Picus4f8c3e12017-01-13 09:37:56 +0000728 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::R4)
729 .addReg(ARM::SP, RegState::Kill)
730 .add(predOps(ARMCC::AL));
Kristof Beyls933de7a2015-01-08 15:09:14 +0000731 emitAligningInstructions(MF, AFI, TII, MBB, MBBI, dl, ARM::R4, MaxAlign,
732 false);
Diana Picus4f8c3e12017-01-13 09:37:56 +0000733 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP)
734 .addReg(ARM::R4, RegState::Kill)
735 .add(predOps(ARMCC::AL));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000736 }
737
738 AFI->setShouldRestoreSPFromFP(true);
739 }
740
741 // If we need a base pointer, set it up here. It's whatever the value
742 // of the stack pointer is at this point. Any variable size objects
743 // will be allocated after this, so we can still use the base pointer
744 // to reference locals.
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000745 // FIXME: Clarify FrameSetup flags here.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000746 if (RegInfo->hasBasePointer(MF)) {
747 if (isARM)
Diana Picusbd66b7d2017-01-20 08:15:24 +0000748 BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), RegInfo->getBaseRegister())
749 .addReg(ARM::SP)
750 .add(predOps(ARMCC::AL))
751 .add(condCodeOp());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000752 else
Diana Picus4f8c3e12017-01-13 09:37:56 +0000753 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), RegInfo->getBaseRegister())
754 .addReg(ARM::SP)
755 .add(predOps(ARMCC::AL));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000756 }
757
758 // If the frame has variable sized objects then the epilogue must restore
Eric Christopherd5bbeba2011-01-10 23:10:59 +0000759 // the sp from fp. We can assume there's an FP here since hasFP already
760 // checks for hasVarSizedObjects.
Matthias Braun941a7052016-07-28 18:40:00 +0000761 if (MFI.hasVarSizedObjects())
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000762 AFI->setShouldRestoreSPFromFP(true);
763}
764
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000765void ARMFrameLowering::emitEpilogue(MachineFunction &MF,
Bob Wilson657f2272011-01-13 21:10:12 +0000766 MachineBasicBlock &MBB) const {
Matthias Braun941a7052016-07-28 18:40:00 +0000767 MachineFrameInfo &MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000768 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Eric Christopherfc6de422014-08-05 02:39:49 +0000769 const TargetRegisterInfo *RegInfo = MF.getSubtarget().getRegisterInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000770 const ARMBaseInstrInfo &TII =
Eric Christopherfc6de422014-08-05 02:39:49 +0000771 *static_cast<const ARMBaseInstrInfo *>(MF.getSubtarget().getInstrInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000772 assert(!AFI->isThumb1OnlyFunction() &&
773 "This emitEpilogue does not support Thumb1!");
774 bool isARM = !AFI->isThumbFunction();
775
Tim Northover8cda34f2015-03-11 18:54:22 +0000776 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize();
Matthias Braun941a7052016-07-28 18:40:00 +0000777 int NumBytes = (int)MFI.getStackSize();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000778 unsigned FramePtr = RegInfo->getFrameRegister(MF);
779
Jakob Stoklund Olesene3801832012-10-26 21:46:57 +0000780 // All calls are tail calls in GHC calling conv, and functions have no
781 // prologue/epilogue.
Matthias Braunf1caa282017-12-15 22:22:58 +0000782 if (MF.getFunction().getCallingConv() == CallingConv::GHC)
Eric Christopherb3322362012-08-03 00:05:53 +0000783 return;
Quentin Colombet71a71482015-07-20 21:42:14 +0000784
785 // First put ourselves on the first (from top) terminator instructions.
786 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator();
787 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
Eric Christopherb3322362012-08-03 00:05:53 +0000788
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000789 if (!AFI->hasStackFrame()) {
Oliver Stannardd55e1152014-03-05 15:25:27 +0000790 if (NumBytes - ArgRegsSaveSize != 0)
791 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes - ArgRegsSaveSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000792 } else {
793 // Unwind MBBI to point to first LDR / VLDRD.
Craig Topper840beec2014-04-04 05:16:06 +0000794 const MCPhysReg *CSRegs = RegInfo->getCalleeSavedRegs(&MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000795 if (MBBI != MBB.begin()) {
Tim Northover93bcc662013-11-08 17:18:07 +0000796 do {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000797 --MBBI;
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000798 } while (MBBI != MBB.begin() && isCSRestore(*MBBI, TII, CSRegs));
799 if (!isCSRestore(*MBBI, TII, CSRegs))
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000800 ++MBBI;
801 }
802
803 // Move SP to start of FP callee save spill area.
Oliver Stannardd55e1152014-03-05 15:25:27 +0000804 NumBytes -= (ArgRegsSaveSize +
805 AFI->getGPRCalleeSavedArea1Size() +
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000806 AFI->getGPRCalleeSavedArea2Size() +
Tim Northover228c9432014-11-05 00:27:13 +0000807 AFI->getDPRCalleeSavedGapSize() +
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000808 AFI->getDPRCalleeSavedAreaSize());
809
810 // Reset SP based on frame pointer only if the stack frame extends beyond
811 // frame pointer stack slot or target is ELF and the function has FP.
812 if (AFI->shouldRestoreSPFromFP()) {
813 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes;
814 if (NumBytes) {
815 if (isARM)
816 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes,
817 ARMCC::AL, 0, TII);
Evan Chengeb56dca2010-11-22 18:12:04 +0000818 else {
819 // It's not possible to restore SP from FP in a single instruction.
Evan Cheng801d98b2012-01-04 01:55:04 +0000820 // For iOS, this looks like:
Evan Chengeb56dca2010-11-22 18:12:04 +0000821 // mov sp, r7
822 // sub sp, #24
823 // This is bad, if an interrupt is taken after the mov, sp is in an
824 // inconsistent state.
825 // Use the first callee-saved register as a scratch register.
Matthias Braun941a7052016-07-28 18:40:00 +0000826 assert(!MFI.getPristineRegs(MF).test(ARM::R4) &&
Evan Chengeb56dca2010-11-22 18:12:04 +0000827 "No scratch register to restore SP from FP!");
828 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes,
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000829 ARMCC::AL, 0, TII);
Diana Picus4f8c3e12017-01-13 09:37:56 +0000830 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP)
831 .addReg(ARM::R4)
832 .add(predOps(ARMCC::AL));
Evan Chengeb56dca2010-11-22 18:12:04 +0000833 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000834 } else {
835 // Thumb2 or ARM.
836 if (isARM)
837 BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), ARM::SP)
Diana Picusbd66b7d2017-01-20 08:15:24 +0000838 .addReg(FramePtr)
839 .add(predOps(ARMCC::AL))
840 .add(condCodeOp());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000841 else
Diana Picus4f8c3e12017-01-13 09:37:56 +0000842 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP)
843 .addReg(FramePtr)
844 .add(predOps(ARMCC::AL));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000845 }
Tim Northoverdee86042013-12-02 14:46:26 +0000846 } else if (NumBytes &&
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +0000847 !tryFoldSPUpdateIntoPushPop(STI, MF, &*MBBI, NumBytes))
848 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000849
Eric Christopherb006fc92010-11-18 19:40:05 +0000850 // Increment past our save areas.
Duncan P. N. Exon Smith8f44c982016-08-21 00:08:10 +0000851 if (MBBI != MBB.end() && AFI->getDPRCalleeSavedAreaSize()) {
Evan Cheng70d29632011-02-25 00:24:46 +0000852 MBBI++;
853 // Since vpop register list cannot have gaps, there may be multiple vpop
854 // instructions in the epilogue.
Duncan P. N. Exon Smith8f44c982016-08-21 00:08:10 +0000855 while (MBBI != MBB.end() && MBBI->getOpcode() == ARM::VLDMDIA_UPD)
Evan Cheng70d29632011-02-25 00:24:46 +0000856 MBBI++;
857 }
Tim Northover228c9432014-11-05 00:27:13 +0000858 if (AFI->getDPRCalleeSavedGapSize()) {
859 assert(AFI->getDPRCalleeSavedGapSize() == 4 &&
860 "unexpected DPR alignment gap");
861 emitSPUpdate(isARM, MBB, MBBI, dl, TII, AFI->getDPRCalleeSavedGapSize());
862 }
863
Eric Christopherb006fc92010-11-18 19:40:05 +0000864 if (AFI->getGPRCalleeSavedArea2Size()) MBBI++;
865 if (AFI->getGPRCalleeSavedArea1Size()) MBBI++;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000866 }
867
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +0000868 if (ArgRegsSaveSize)
869 emitSPUpdate(isARM, MBB, MBBI, dl, TII, ArgRegsSaveSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000870}
Anton Korobeynikov46877782010-11-20 15:59:32 +0000871
Bob Wilson657f2272011-01-13 21:10:12 +0000872/// getFrameIndexReference - Provide a base+offset reference to an FI slot for
873/// debug info. It's the same as what we use for resolving the code-gen
874/// references for now. FIXME: This can go wrong when references are
875/// SP-relative and simple call frames aren't used.
Anton Korobeynikov46877782010-11-20 15:59:32 +0000876int
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000877ARMFrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
Bob Wilson657f2272011-01-13 21:10:12 +0000878 unsigned &FrameReg) const {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000879 return ResolveFrameIndexReference(MF, FI, FrameReg, 0);
880}
881
882int
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000883ARMFrameLowering::ResolveFrameIndexReference(const MachineFunction &MF,
Evan Chengc0d20042011-04-22 01:42:52 +0000884 int FI, unsigned &FrameReg,
Bob Wilson657f2272011-01-13 21:10:12 +0000885 int SPAdj) const {
Matthias Braun941a7052016-07-28 18:40:00 +0000886 const MachineFrameInfo &MFI = MF.getFrameInfo();
Eric Christopherd9134482014-08-04 21:25:23 +0000887 const ARMBaseRegisterInfo *RegInfo = static_cast<const ARMBaseRegisterInfo *>(
Eric Christopherfc6de422014-08-05 02:39:49 +0000888 MF.getSubtarget().getRegisterInfo());
Anton Korobeynikov46877782010-11-20 15:59:32 +0000889 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Matthias Braun941a7052016-07-28 18:40:00 +0000890 int Offset = MFI.getObjectOffset(FI) + MFI.getStackSize();
Anton Korobeynikov46877782010-11-20 15:59:32 +0000891 int FPOffset = Offset - AFI->getFramePtrSpillOffset();
Matthias Braun941a7052016-07-28 18:40:00 +0000892 bool isFixed = MFI.isFixedObjectIndex(FI);
Anton Korobeynikov46877782010-11-20 15:59:32 +0000893
894 FrameReg = ARM::SP;
895 Offset += SPAdj;
Anton Korobeynikov46877782010-11-20 15:59:32 +0000896
Jakob Stoklund Olesen92c15b22012-02-28 01:15:01 +0000897 // SP can move around if there are allocas. We may also lose track of SP
898 // when emergency spilling inside a non-reserved call frame setup.
Bob Wilsonca690322012-03-20 19:28:22 +0000899 bool hasMovingSP = !hasReservedCallFrame(MF);
Jakob Stoklund Olesen92c15b22012-02-28 01:15:01 +0000900
Anton Korobeynikov46877782010-11-20 15:59:32 +0000901 // When dynamically realigning the stack, use the frame pointer for
902 // parameters, and the stack/base pointer for locals.
903 if (RegInfo->needsStackRealignment(MF)) {
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +0000904 assert(hasFP(MF) && "dynamic stack realignment without a FP!");
Anton Korobeynikov46877782010-11-20 15:59:32 +0000905 if (isFixed) {
906 FrameReg = RegInfo->getFrameRegister(MF);
907 Offset = FPOffset;
Jakob Stoklund Olesen92c15b22012-02-28 01:15:01 +0000908 } else if (hasMovingSP) {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000909 assert(RegInfo->hasBasePointer(MF) &&
910 "VLAs and dynamic stack alignment, but missing base pointer!");
911 FrameReg = RegInfo->getBaseRegister();
912 }
913 return Offset;
914 }
915
916 // If there is a frame pointer, use it when we can.
917 if (hasFP(MF) && AFI->hasStackFrame()) {
918 // Use frame pointer to reference fixed objects. Use it for locals if
919 // there are VLAs (and thus the SP isn't reliable as a base).
Jakob Stoklund Olesen92c15b22012-02-28 01:15:01 +0000920 if (isFixed || (hasMovingSP && !RegInfo->hasBasePointer(MF))) {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000921 FrameReg = RegInfo->getFrameRegister(MF);
922 return FPOffset;
Jakob Stoklund Olesen92c15b22012-02-28 01:15:01 +0000923 } else if (hasMovingSP) {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000924 assert(RegInfo->hasBasePointer(MF) && "missing base pointer!");
Anton Korobeynikov46877782010-11-20 15:59:32 +0000925 if (AFI->isThumb2Function()) {
Evan Chengc0d20042011-04-22 01:42:52 +0000926 // Try to use the frame pointer if we can, else use the base pointer
927 // since it's available. This is handy for the emergency spill slot, in
928 // particular.
Anton Korobeynikov46877782010-11-20 15:59:32 +0000929 if (FPOffset >= -255 && FPOffset < 0) {
930 FrameReg = RegInfo->getFrameRegister(MF);
931 return FPOffset;
932 }
Evan Chengc0d20042011-04-22 01:42:52 +0000933 }
Momchil Velikov505614b2018-03-02 15:47:14 +0000934 } else if (AFI->isThumbFunction()) {
935 // Prefer SP to base pointer, if the offset is suitably aligned and in
936 // range as the effective range of the immediate offset is bigger when
937 // basing off SP.
Andrew Trickf7ecc162011-08-25 17:40:54 +0000938 // Use add <rd>, sp, #<imm8>
Evan Chengc0d20042011-04-22 01:42:52 +0000939 // ldr <rd>, [sp, #<imm8>]
Evan Chengc0d20042011-04-22 01:42:52 +0000940 if (Offset >= 0 && (Offset & 3) == 0 && Offset <= 1020)
941 return Offset;
Anton Korobeynikov46877782010-11-20 15:59:32 +0000942 // In Thumb2 mode, the negative offset is very limited. Try to avoid
Evan Chengc0d20042011-04-22 01:42:52 +0000943 // out of range references. ldr <rt>,[<rn>, #-<imm8>]
Momchil Velikov505614b2018-03-02 15:47:14 +0000944 if (AFI->isThumb2Function() && FPOffset >= -255 && FPOffset < 0) {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000945 FrameReg = RegInfo->getFrameRegister(MF);
946 return FPOffset;
947 }
948 } else if (Offset > (FPOffset < 0 ? -FPOffset : FPOffset)) {
949 // Otherwise, use SP or FP, whichever is closer to the stack slot.
950 FrameReg = RegInfo->getFrameRegister(MF);
951 return FPOffset;
952 }
953 }
954 // Use the base pointer if we have one.
955 if (RegInfo->hasBasePointer(MF))
956 FrameReg = RegInfo->getBaseRegister();
957 return Offset;
958}
959
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000960void ARMFrameLowering::emitPushInst(MachineBasicBlock &MBB,
Bob Wilson657f2272011-01-13 21:10:12 +0000961 MachineBasicBlock::iterator MI,
962 const std::vector<CalleeSavedInfo> &CSI,
963 unsigned StmOpc, unsigned StrOpc,
964 bool NoGap,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000965 bool(*Func)(unsigned, bool),
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000966 unsigned NumAlignedDPRCS2Regs,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000967 unsigned MIFlags) const {
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000968 MachineFunction &MF = *MBB.getParent();
Tim Northover775aaeb2015-11-05 21:54:58 +0000969 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
Tim Northover46a6f0f2016-11-14 20:28:24 +0000970 const TargetRegisterInfo &TRI = *STI.getRegisterInfo();
Tim Northover775aaeb2015-11-05 21:54:58 +0000971
972 DebugLoc DL;
973
Eugene Zelenko076468c2017-09-20 21:35:51 +0000974 using RegAndKill = std::pair<unsigned, bool>;
975
Tim Northover46a6f0f2016-11-14 20:28:24 +0000976 SmallVector<RegAndKill, 4> Regs;
Tim Northover775aaeb2015-11-05 21:54:58 +0000977 unsigned i = CSI.size();
Evan Cheng775ead32010-12-07 23:08:38 +0000978 while (i != 0) {
979 unsigned LastReg = 0;
980 for (; i != 0; --i) {
981 unsigned Reg = CSI[i-1].getReg();
Oliver Stannard9aa6f012016-08-23 09:19:22 +0000982 if (!(Func)(Reg, STI.splitFramePushPop(MF))) continue;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000983
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +0000984 // D-registers in the aligned area DPRCS2 are NOT spilled here.
985 if (Reg >= ARM::D8 && Reg < ARM::D8 + NumAlignedDPRCS2Regs)
986 continue;
987
Matthias Braun0dba4e32017-05-31 01:21:30 +0000988 const MachineRegisterInfo &MRI = MF.getRegInfo();
989 bool isLiveIn = MRI.isLiveIn(Reg);
990 if (!isLiveIn && !MRI.isReserved(Reg))
Evan Cheng775ead32010-12-07 23:08:38 +0000991 MBB.addLiveIn(Reg);
Eric Christopher2a2e65c2010-12-09 01:57:45 +0000992 // If NoGap is true, push consecutive registers and then leave the rest
Evan Cheng9d54ae62010-12-08 06:29:02 +0000993 // for other instructions. e.g.
Eric Christopher2a2e65c2010-12-09 01:57:45 +0000994 // vpush {d8, d10, d11} -> vpush {d8}, vpush {d10, d11}
Evan Cheng9d54ae62010-12-08 06:29:02 +0000995 if (NoGap && LastReg && LastReg != Reg-1)
996 break;
Evan Cheng775ead32010-12-07 23:08:38 +0000997 LastReg = Reg;
Matthias Braun707e02c2016-04-13 21:43:25 +0000998 // Do not set a kill flag on values that are also marked as live-in. This
999 // happens with the @llvm-returnaddress intrinsic and with arguments
1000 // passed in callee saved registers.
1001 // Omitting the kill flags is conservatively correct even if the live-in
1002 // is not used after all.
1003 Regs.push_back(std::make_pair(Reg, /*isKill=*/!isLiveIn));
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001004 }
1005
Jim Grosbach5fccad82010-12-09 18:31:13 +00001006 if (Regs.empty())
1007 continue;
Tim Northover46a6f0f2016-11-14 20:28:24 +00001008
Mandeep Singh Grang9893fe22018-04-05 18:31:50 +00001009 llvm::sort(Regs.begin(), Regs.end(), [&](const RegAndKill &LHS,
1010 const RegAndKill &RHS) {
Tim Northover46a6f0f2016-11-14 20:28:24 +00001011 return TRI.getEncodingValue(LHS.first) < TRI.getEncodingValue(RHS.first);
1012 });
1013
Jim Grosbach5fccad82010-12-09 18:31:13 +00001014 if (Regs.size() > 1 || StrOpc== 0) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00001015 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(StmOpc), ARM::SP)
1016 .addReg(ARM::SP)
1017 .setMIFlags(MIFlags)
1018 .add(predOps(ARMCC::AL));
Evan Cheng775ead32010-12-07 23:08:38 +00001019 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
1020 MIB.addReg(Regs[i].first, getKillRegState(Regs[i].second));
Jim Grosbach5fccad82010-12-09 18:31:13 +00001021 } else if (Regs.size() == 1) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00001022 BuildMI(MBB, MI, DL, TII.get(StrOpc), ARM::SP)
1023 .addReg(Regs[0].first, getKillRegState(Regs[0].second))
1024 .addReg(ARM::SP)
1025 .setMIFlags(MIFlags)
1026 .addImm(-4)
1027 .add(predOps(ARMCC::AL));
Evan Cheng775ead32010-12-07 23:08:38 +00001028 }
Jim Grosbach5fccad82010-12-09 18:31:13 +00001029 Regs.clear();
Tim Northover3cccc452014-03-12 11:29:23 +00001030
1031 // Put any subsequent vpush instructions before this one: they will refer to
1032 // higher register numbers so need to be pushed first in order to preserve
1033 // monotonicity.
Quentin Colombet71a71482015-07-20 21:42:14 +00001034 if (MI != MBB.begin())
1035 --MI;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001036 }
Evan Cheng775ead32010-12-07 23:08:38 +00001037}
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001038
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001039void ARMFrameLowering::emitPopInst(MachineBasicBlock &MBB,
Bob Wilson657f2272011-01-13 21:10:12 +00001040 MachineBasicBlock::iterator MI,
Krzysztof Parzyszekbea30c62017-08-10 16:17:32 +00001041 std::vector<CalleeSavedInfo> &CSI,
Bob Wilson657f2272011-01-13 21:10:12 +00001042 unsigned LdmOpc, unsigned LdrOpc,
1043 bool isVarArg, bool NoGap,
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001044 bool(*Func)(unsigned, bool),
1045 unsigned NumAlignedDPRCS2Regs) const {
Evan Cheng775ead32010-12-07 23:08:38 +00001046 MachineFunction &MF = *MBB.getParent();
Eric Christopherfc6de422014-08-05 02:39:49 +00001047 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
Tim Northover46a6f0f2016-11-14 20:28:24 +00001048 const TargetRegisterInfo &TRI = *STI.getRegisterInfo();
Evan Cheng775ead32010-12-07 23:08:38 +00001049 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Quentin Colombet71a71482015-07-20 21:42:14 +00001050 DebugLoc DL;
1051 bool isTailCall = false;
1052 bool isInterrupt = false;
Oleg Ranevskyy6389dd92015-10-23 17:17:59 +00001053 bool isTrap = false;
Quentin Colombet71a71482015-07-20 21:42:14 +00001054 if (MBB.end() != MI) {
1055 DL = MI->getDebugLoc();
1056 unsigned RetOpcode = MI->getOpcode();
1057 isTailCall = (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNri);
1058 isInterrupt =
1059 RetOpcode == ARM::SUBS_PC_LR || RetOpcode == ARM::t2SUBS_PC_LR;
Oleg Ranevskyy6389dd92015-10-23 17:17:59 +00001060 isTrap =
1061 RetOpcode == ARM::TRAP || RetOpcode == ARM::TRAPNaCl ||
1062 RetOpcode == ARM::tTRAP;
Quentin Colombet71a71482015-07-20 21:42:14 +00001063 }
Evan Cheng775ead32010-12-07 23:08:38 +00001064
1065 SmallVector<unsigned, 4> Regs;
1066 unsigned i = CSI.size();
1067 while (i != 0) {
1068 unsigned LastReg = 0;
1069 bool DeleteRet = false;
1070 for (; i != 0; --i) {
Matthias Braun51687912017-09-28 23:12:06 +00001071 CalleeSavedInfo &Info = CSI[i-1];
1072 unsigned Reg = Info.getReg();
Oliver Stannard9aa6f012016-08-23 09:19:22 +00001073 if (!(Func)(Reg, STI.splitFramePushPop(MF))) continue;
Evan Cheng775ead32010-12-07 23:08:38 +00001074
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001075 // The aligned reloads from area DPRCS2 are not inserted here.
1076 if (Reg >= ARM::D8 && Reg < ARM::D8 + NumAlignedDPRCS2Regs)
1077 continue;
1078
Tim Northoverd8407452013-10-01 14:33:28 +00001079 if (Reg == ARM::LR && !isTailCall && !isVarArg && !isInterrupt &&
Oleg Ranevskyy6389dd92015-10-23 17:17:59 +00001080 !isTrap && STI.hasV5TOps()) {
Quentin Colombet71a71482015-07-20 21:42:14 +00001081 if (MBB.succ_empty()) {
1082 Reg = ARM::PC;
Thomas Preud'hommec699eaa2018-03-05 11:49:00 +00001083 // Fold the return instruction into the LDM.
Quentin Colombet71a71482015-07-20 21:42:14 +00001084 DeleteRet = true;
1085 LdmOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET;
Matthias Braun51687912017-09-28 23:12:06 +00001086 // We 'restore' LR into PC so it is not live out of the return block:
1087 // Clear Restored bit.
1088 Info.setRestored(false);
Quentin Colombet71a71482015-07-20 21:42:14 +00001089 } else
1090 LdmOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_UPD : ARM::LDMIA_UPD;
Evan Cheng775ead32010-12-07 23:08:38 +00001091 }
1092
Evan Cheng9d54ae62010-12-08 06:29:02 +00001093 // If NoGap is true, pop consecutive registers and then leave the rest
1094 // for other instructions. e.g.
1095 // vpop {d8, d10, d11} -> vpop {d8}, vpop {d10, d11}
1096 if (NoGap && LastReg && LastReg != Reg-1)
1097 break;
1098
Evan Cheng775ead32010-12-07 23:08:38 +00001099 LastReg = Reg;
1100 Regs.push_back(Reg);
1101 }
1102
Jim Grosbach5fccad82010-12-09 18:31:13 +00001103 if (Regs.empty())
1104 continue;
Tim Northover46a6f0f2016-11-14 20:28:24 +00001105
Mandeep Singh Grang9893fe22018-04-05 18:31:50 +00001106 llvm::sort(Regs.begin(), Regs.end(), [&](unsigned LHS, unsigned RHS) {
Tim Northover46a6f0f2016-11-14 20:28:24 +00001107 return TRI.getEncodingValue(LHS) < TRI.getEncodingValue(RHS);
1108 });
1109
Jim Grosbach5fccad82010-12-09 18:31:13 +00001110 if (Regs.size() > 1 || LdrOpc == 0) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00001111 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(LdmOpc), ARM::SP)
1112 .addReg(ARM::SP)
1113 .add(predOps(ARMCC::AL));
Evan Cheng775ead32010-12-07 23:08:38 +00001114 for (unsigned i = 0, e = Regs.size(); i < e; ++i)
1115 MIB.addReg(Regs[i], getDefRegState(true));
Krzysztof Parzyszekbea30c62017-08-10 16:17:32 +00001116 if (DeleteRet) {
1117 if (MI != MBB.end()) {
1118 MIB.copyImplicitOps(*MI);
1119 MI->eraseFromParent();
1120 }
Andrew Trick6446bf72011-08-25 17:50:53 +00001121 }
Evan Cheng775ead32010-12-07 23:08:38 +00001122 MI = MIB;
Jim Grosbach5fccad82010-12-09 18:31:13 +00001123 } else if (Regs.size() == 1) {
1124 // If we adjusted the reg to PC from LR above, switch it back here. We
1125 // only do that for LDM.
1126 if (Regs[0] == ARM::PC)
1127 Regs[0] = ARM::LR;
1128 MachineInstrBuilder MIB =
1129 BuildMI(MBB, MI, DL, TII.get(LdrOpc), Regs[0])
1130 .addReg(ARM::SP, RegState::Define)
1131 .addReg(ARM::SP);
1132 // ARM mode needs an extra reg0 here due to addrmode2. Will go away once
1133 // that refactoring is complete (eventually).
Owen Anderson2aedba62011-07-26 20:54:26 +00001134 if (LdrOpc == ARM::LDR_POST_REG || LdrOpc == ARM::LDR_POST_IMM) {
Jim Grosbach5fccad82010-12-09 18:31:13 +00001135 MIB.addReg(0);
1136 MIB.addImm(ARM_AM::getAM2Opc(ARM_AM::add, 4, ARM_AM::no_shift));
1137 } else
1138 MIB.addImm(4);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001139 MIB.add(predOps(ARMCC::AL));
Evan Cheng775ead32010-12-07 23:08:38 +00001140 }
Jim Grosbach5fccad82010-12-09 18:31:13 +00001141 Regs.clear();
Tim Northover3cccc452014-03-12 11:29:23 +00001142
1143 // Put any subsequent vpop instructions after this one: they will refer to
1144 // higher register numbers so need to be popped afterwards.
Quentin Colombet71a71482015-07-20 21:42:14 +00001145 if (MI != MBB.end())
1146 ++MI;
Evan Chengc27c9562010-12-07 19:59:34 +00001147 }
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001148}
1149
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001150/// Emit aligned spill instructions for NumAlignedDPRCS2Regs D-registers
Jakob Stoklund Olesen103318e2011-12-24 04:17:01 +00001151/// starting from d8. Also insert stack realignment code and leave the stack
1152/// pointer pointing to the d8 spill slot.
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001153static void emitAlignedDPRCS2Spills(MachineBasicBlock &MBB,
1154 MachineBasicBlock::iterator MI,
1155 unsigned NumAlignedDPRCS2Regs,
1156 const std::vector<CalleeSavedInfo> &CSI,
1157 const TargetRegisterInfo *TRI) {
1158 MachineFunction &MF = *MBB.getParent();
1159 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Quentin Colombet5084e442015-10-15 00:41:26 +00001160 DebugLoc DL = MI != MBB.end() ? MI->getDebugLoc() : DebugLoc();
Eric Christopherfc6de422014-08-05 02:39:49 +00001161 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
Matthias Braun941a7052016-07-28 18:40:00 +00001162 MachineFrameInfo &MFI = MF.getFrameInfo();
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001163
1164 // Mark the D-register spill slots as properly aligned. Since MFI computes
1165 // stack slot layout backwards, this can actually mean that the d-reg stack
1166 // slot offsets can be wrong. The offset for d8 will always be correct.
1167 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1168 unsigned DNum = CSI[i].getReg() - ARM::D8;
Tim Northovere0ccdc62015-10-28 22:46:43 +00001169 if (DNum > NumAlignedDPRCS2Regs - 1)
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001170 continue;
1171 int FI = CSI[i].getFrameIdx();
1172 // The even-numbered registers will be 16-byte aligned, the odd-numbered
1173 // registers will be 8-byte aligned.
1174 MFI.setObjectAlignment(FI, DNum % 2 ? 8 : 16);
1175
1176 // The stack slot for D8 needs to be maximally aligned because this is
1177 // actually the point where we align the stack pointer. MachineFrameInfo
1178 // computes all offsets relative to the incoming stack pointer which is a
1179 // bit weird when realigning the stack. Any extra padding for this
1180 // over-alignment is not realized because the code inserted below adjusts
1181 // the stack pointer by numregs * 8 before aligning the stack pointer.
1182 if (DNum == 0)
1183 MFI.setObjectAlignment(FI, MFI.getMaxAlignment());
1184 }
1185
1186 // Move the stack pointer to the d8 spill slot, and align it at the same
1187 // time. Leave the stack slot address in the scratch register r4.
1188 //
1189 // sub r4, sp, #numregs * 8
1190 // bic r4, r4, #align - 1
1191 // mov sp, r4
1192 //
1193 bool isThumb = AFI->isThumbFunction();
1194 assert(!AFI->isThumb1OnlyFunction() && "Can't realign stack for thumb1");
1195 AFI->setShouldRestoreSPFromFP(true);
1196
1197 // sub r4, sp, #numregs * 8
1198 // The immediate is <= 64, so it doesn't need any special encoding.
1199 unsigned Opc = isThumb ? ARM::t2SUBri : ARM::SUBri;
Diana Picus8a73f552017-01-13 10:18:01 +00001200 BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
1201 .addReg(ARM::SP)
1202 .addImm(8 * NumAlignedDPRCS2Regs)
1203 .add(predOps(ARMCC::AL))
1204 .add(condCodeOp());
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001205
Matthias Braun941a7052016-07-28 18:40:00 +00001206 unsigned MaxAlign = MF.getFrameInfo().getMaxAlignment();
Kristof Beyls933de7a2015-01-08 15:09:14 +00001207 // We must set parameter MustBeSingleInstruction to true, since
1208 // skipAlignedDPRCS2Spills expects exactly 3 instructions to perform
1209 // stack alignment. Luckily, this can always be done since all ARM
1210 // architecture versions that support Neon also support the BFC
1211 // instruction.
1212 emitAligningInstructions(MF, AFI, TII, MBB, MI, DL, ARM::R4, MaxAlign, true);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001213
1214 // mov sp, r4
1215 // The stack pointer must be adjusted before spilling anything, otherwise
1216 // the stack slots could be clobbered by an interrupt handler.
1217 // Leave r4 live, it is used below.
1218 Opc = isThumb ? ARM::tMOVr : ARM::MOVr;
1219 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(Opc), ARM::SP)
Diana Picus4f8c3e12017-01-13 09:37:56 +00001220 .addReg(ARM::R4)
1221 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001222 if (!isThumb)
Diana Picus8a73f552017-01-13 10:18:01 +00001223 MIB.add(condCodeOp());
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001224
1225 // Now spill NumAlignedDPRCS2Regs registers starting from d8.
1226 // r4 holds the stack slot address.
1227 unsigned NextReg = ARM::D8;
1228
1229 // 16-byte aligned vst1.64 with 4 d-regs and address writeback.
1230 // The writeback is only needed when emitting two vst1.64 instructions.
1231 if (NumAlignedDPRCS2Regs >= 6) {
1232 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topperc7242e02012-04-20 07:30:17 +00001233 &ARM::QQPRRegClass);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001234 MBB.addLiveIn(SupReg);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001235 BuildMI(MBB, MI, DL, TII.get(ARM::VST1d64Qwb_fixed), ARM::R4)
1236 .addReg(ARM::R4, RegState::Kill)
1237 .addImm(16)
1238 .addReg(NextReg)
1239 .addReg(SupReg, RegState::ImplicitKill)
1240 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001241 NextReg += 4;
1242 NumAlignedDPRCS2Regs -= 4;
1243 }
1244
1245 // We won't modify r4 beyond this point. It currently points to the next
1246 // register to be spilled.
1247 unsigned R4BaseReg = NextReg;
1248
1249 // 16-byte aligned vst1.64 with 4 d-regs, no writeback.
1250 if (NumAlignedDPRCS2Regs >= 4) {
1251 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topperc7242e02012-04-20 07:30:17 +00001252 &ARM::QQPRRegClass);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001253 MBB.addLiveIn(SupReg);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001254 BuildMI(MBB, MI, DL, TII.get(ARM::VST1d64Q))
1255 .addReg(ARM::R4)
1256 .addImm(16)
1257 .addReg(NextReg)
1258 .addReg(SupReg, RegState::ImplicitKill)
1259 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001260 NextReg += 4;
1261 NumAlignedDPRCS2Regs -= 4;
1262 }
1263
1264 // 16-byte aligned vst1.64 with 2 d-regs.
1265 if (NumAlignedDPRCS2Regs >= 2) {
1266 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topperc7242e02012-04-20 07:30:17 +00001267 &ARM::QPRRegClass);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001268 MBB.addLiveIn(SupReg);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001269 BuildMI(MBB, MI, DL, TII.get(ARM::VST1q64))
1270 .addReg(ARM::R4)
1271 .addImm(16)
1272 .addReg(SupReg)
1273 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001274 NextReg += 2;
1275 NumAlignedDPRCS2Regs -= 2;
1276 }
1277
1278 // Finally, use a vanilla vstr.64 for the odd last register.
1279 if (NumAlignedDPRCS2Regs) {
1280 MBB.addLiveIn(NextReg);
1281 // vstr.64 uses addrmode5 which has an offset scale of 4.
Diana Picus4f8c3e12017-01-13 09:37:56 +00001282 BuildMI(MBB, MI, DL, TII.get(ARM::VSTRD))
1283 .addReg(NextReg)
1284 .addReg(ARM::R4)
1285 .addImm((NextReg - R4BaseReg) * 2)
1286 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001287 }
1288
1289 // The last spill instruction inserted should kill the scratch register r4.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001290 std::prev(MI)->addRegisterKilled(ARM::R4, TRI);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001291}
1292
1293/// Skip past the code inserted by emitAlignedDPRCS2Spills, and return an
1294/// iterator to the following instruction.
1295static MachineBasicBlock::iterator
1296skipAlignedDPRCS2Spills(MachineBasicBlock::iterator MI,
1297 unsigned NumAlignedDPRCS2Regs) {
1298 // sub r4, sp, #numregs * 8
1299 // bic r4, r4, #align - 1
1300 // mov sp, r4
1301 ++MI; ++MI; ++MI;
1302 assert(MI->mayStore() && "Expecting spill instruction");
1303
1304 // These switches all fall through.
1305 switch(NumAlignedDPRCS2Regs) {
1306 case 7:
1307 ++MI;
1308 assert(MI->mayStore() && "Expecting spill instruction");
Florian Hahndb479522017-07-27 14:37:17 +00001309 LLVM_FALLTHROUGH;
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001310 default:
1311 ++MI;
1312 assert(MI->mayStore() && "Expecting spill instruction");
Florian Hahndb479522017-07-27 14:37:17 +00001313 LLVM_FALLTHROUGH;
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001314 case 1:
1315 case 2:
1316 case 4:
1317 assert(MI->killsRegister(ARM::R4) && "Missed kill flag");
1318 ++MI;
1319 }
1320 return MI;
1321}
1322
1323/// Emit aligned reload instructions for NumAlignedDPRCS2Regs D-registers
1324/// starting from d8. These instructions are assumed to execute while the
1325/// stack is still aligned, unlike the code inserted by emitPopInst.
1326static void emitAlignedDPRCS2Restores(MachineBasicBlock &MBB,
1327 MachineBasicBlock::iterator MI,
1328 unsigned NumAlignedDPRCS2Regs,
1329 const std::vector<CalleeSavedInfo> &CSI,
1330 const TargetRegisterInfo *TRI) {
1331 MachineFunction &MF = *MBB.getParent();
1332 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Quentin Colombet5084e442015-10-15 00:41:26 +00001333 DebugLoc DL = MI != MBB.end() ? MI->getDebugLoc() : DebugLoc();
Eric Christopherfc6de422014-08-05 02:39:49 +00001334 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001335
1336 // Find the frame index assigned to d8.
1337 int D8SpillFI = 0;
1338 for (unsigned i = 0, e = CSI.size(); i != e; ++i)
1339 if (CSI[i].getReg() == ARM::D8) {
1340 D8SpillFI = CSI[i].getFrameIdx();
1341 break;
1342 }
1343
1344 // Materialize the address of the d8 spill slot into the scratch register r4.
1345 // This can be fairly complicated if the stack frame is large, so just use
1346 // the normal frame index elimination mechanism to do it. This code runs as
1347 // the initial part of the epilog where the stack and base pointers haven't
1348 // been changed yet.
1349 bool isThumb = AFI->isThumbFunction();
1350 assert(!AFI->isThumb1OnlyFunction() && "Can't realign stack for thumb1");
1351
1352 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
Diana Picus8a73f552017-01-13 10:18:01 +00001353 BuildMI(MBB, MI, DL, TII.get(Opc), ARM::R4)
1354 .addFrameIndex(D8SpillFI)
1355 .addImm(0)
1356 .add(predOps(ARMCC::AL))
1357 .add(condCodeOp());
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001358
1359 // Now restore NumAlignedDPRCS2Regs registers starting from d8.
1360 unsigned NextReg = ARM::D8;
1361
1362 // 16-byte aligned vld1.64 with 4 d-regs and writeback.
1363 if (NumAlignedDPRCS2Regs >= 6) {
1364 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topperc7242e02012-04-20 07:30:17 +00001365 &ARM::QQPRRegClass);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001366 BuildMI(MBB, MI, DL, TII.get(ARM::VLD1d64Qwb_fixed), NextReg)
1367 .addReg(ARM::R4, RegState::Define)
1368 .addReg(ARM::R4, RegState::Kill)
1369 .addImm(16)
1370 .addReg(SupReg, RegState::ImplicitDefine)
1371 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001372 NextReg += 4;
1373 NumAlignedDPRCS2Regs -= 4;
1374 }
1375
1376 // We won't modify r4 beyond this point. It currently points to the next
1377 // register to be spilled.
1378 unsigned R4BaseReg = NextReg;
1379
1380 // 16-byte aligned vld1.64 with 4 d-regs, no writeback.
1381 if (NumAlignedDPRCS2Regs >= 4) {
1382 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topperc7242e02012-04-20 07:30:17 +00001383 &ARM::QQPRRegClass);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001384 BuildMI(MBB, MI, DL, TII.get(ARM::VLD1d64Q), NextReg)
1385 .addReg(ARM::R4)
1386 .addImm(16)
1387 .addReg(SupReg, RegState::ImplicitDefine)
1388 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001389 NextReg += 4;
1390 NumAlignedDPRCS2Regs -= 4;
1391 }
1392
1393 // 16-byte aligned vld1.64 with 2 d-regs.
1394 if (NumAlignedDPRCS2Regs >= 2) {
1395 unsigned SupReg = TRI->getMatchingSuperReg(NextReg, ARM::dsub_0,
Craig Topperc7242e02012-04-20 07:30:17 +00001396 &ARM::QPRRegClass);
Diana Picus4f8c3e12017-01-13 09:37:56 +00001397 BuildMI(MBB, MI, DL, TII.get(ARM::VLD1q64), SupReg)
1398 .addReg(ARM::R4)
1399 .addImm(16)
1400 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001401 NextReg += 2;
1402 NumAlignedDPRCS2Regs -= 2;
1403 }
1404
1405 // Finally, use a vanilla vldr.64 for the remaining odd register.
1406 if (NumAlignedDPRCS2Regs)
Diana Picus4f8c3e12017-01-13 09:37:56 +00001407 BuildMI(MBB, MI, DL, TII.get(ARM::VLDRD), NextReg)
1408 .addReg(ARM::R4)
1409 .addImm(2 * (NextReg - R4BaseReg))
1410 .add(predOps(ARMCC::AL));
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001411
1412 // Last store kills r4.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001413 std::prev(MI)->addRegisterKilled(ARM::R4, TRI);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001414}
1415
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001416bool ARMFrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Bob Wilson657f2272011-01-13 21:10:12 +00001417 MachineBasicBlock::iterator MI,
1418 const std::vector<CalleeSavedInfo> &CSI,
1419 const TargetRegisterInfo *TRI) const {
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001420 if (CSI.empty())
1421 return false;
1422
1423 MachineFunction &MF = *MBB.getParent();
1424 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001425
1426 unsigned PushOpc = AFI->isThumbFunction() ? ARM::t2STMDB_UPD : ARM::STMDB_UPD;
Jim Grosbach05dec8b12011-09-02 18:46:15 +00001427 unsigned PushOneOpc = AFI->isThumbFunction() ?
1428 ARM::t2STR_PRE : ARM::STR_PRE_IMM;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001429 unsigned FltOpc = ARM::VSTMDDB_UPD;
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001430 unsigned NumAlignedDPRCS2Regs = AFI->getNumAlignedDPRCS2Regs();
1431 emitPushInst(MBB, MI, CSI, PushOpc, PushOneOpc, false, &isARMArea1Register, 0,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001432 MachineInstr::FrameSetup);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001433 emitPushInst(MBB, MI, CSI, PushOpc, PushOneOpc, false, &isARMArea2Register, 0,
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001434 MachineInstr::FrameSetup);
1435 emitPushInst(MBB, MI, CSI, FltOpc, 0, true, &isARMArea3Register,
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001436 NumAlignedDPRCS2Regs, MachineInstr::FrameSetup);
1437
1438 // The code above does not insert spill code for the aligned DPRCS2 registers.
1439 // The stack realignment code will be inserted between the push instructions
1440 // and these spills.
1441 if (NumAlignedDPRCS2Regs)
1442 emitAlignedDPRCS2Spills(MBB, MI, NumAlignedDPRCS2Regs, CSI, TRI);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001443
1444 return true;
1445}
1446
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001447bool ARMFrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Bob Wilson657f2272011-01-13 21:10:12 +00001448 MachineBasicBlock::iterator MI,
Krzysztof Parzyszekbea30c62017-08-10 16:17:32 +00001449 std::vector<CalleeSavedInfo> &CSI,
Bob Wilson657f2272011-01-13 21:10:12 +00001450 const TargetRegisterInfo *TRI) const {
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001451 if (CSI.empty())
1452 return false;
1453
1454 MachineFunction &MF = *MBB.getParent();
1455 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00001456 bool isVarArg = AFI->getArgRegsSaveSize() > 0;
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001457 unsigned NumAlignedDPRCS2Regs = AFI->getNumAlignedDPRCS2Regs();
1458
1459 // The emitPopInst calls below do not insert reloads for the aligned DPRCS2
1460 // registers. Do that here instead.
1461 if (NumAlignedDPRCS2Regs)
1462 emitAlignedDPRCS2Restores(MBB, MI, NumAlignedDPRCS2Regs, CSI, TRI);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001463
1464 unsigned PopOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_UPD : ARM::LDMIA_UPD;
Jim Grosbach05dec8b12011-09-02 18:46:15 +00001465 unsigned LdrOpc = AFI->isThumbFunction() ? ARM::t2LDR_POST :ARM::LDR_POST_IMM;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001466 unsigned FltOpc = ARM::VLDMDIA_UPD;
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001467 emitPopInst(MBB, MI, CSI, FltOpc, 0, isVarArg, true, &isARMArea3Register,
1468 NumAlignedDPRCS2Regs);
Jim Grosbach5fccad82010-12-09 18:31:13 +00001469 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001470 &isARMArea2Register, 0);
Jim Grosbach5fccad82010-12-09 18:31:13 +00001471 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001472 &isARMArea1Register, 0);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001473
1474 return true;
1475}
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001476
1477// FIXME: Make generic?
1478static unsigned GetFunctionSizeInBytes(const MachineFunction &MF,
1479 const ARMBaseInstrInfo &TII) {
1480 unsigned FnSize = 0;
Jim Grosbachf92e8f52014-04-04 02:10:55 +00001481 for (auto &MBB : MF) {
1482 for (auto &MI : MBB)
Sjoerd Meijer89217f82016-07-28 16:32:22 +00001483 FnSize += TII.getInstSizeInBytes(MI);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001484 }
1485 return FnSize;
1486}
1487
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001488/// estimateRSStackSizeLimit - Look at each instruction that references stack
1489/// frames and return the stack size limit beyond which some of these
1490/// instructions will require a scratch register during their expansion later.
1491// FIXME: Move to TII?
1492static unsigned estimateRSStackSizeLimit(MachineFunction &MF,
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001493 const TargetFrameLowering *TFI) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001494 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1495 unsigned Limit = (1 << 12) - 1;
Jim Grosbachf92e8f52014-04-04 02:10:55 +00001496 for (auto &MBB : MF) {
1497 for (auto &MI : MBB) {
1498 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1499 if (!MI.getOperand(i).isFI())
1500 continue;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001501
1502 // When using ADDri to get the address of a stack object, 255 is the
1503 // largest offset guaranteed to fit in the immediate offset.
Jim Grosbachf92e8f52014-04-04 02:10:55 +00001504 if (MI.getOpcode() == ARM::ADDri) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001505 Limit = std::min(Limit, (1U << 8) - 1);
1506 break;
1507 }
1508
1509 // Otherwise check the addressing mode.
Jim Grosbachf92e8f52014-04-04 02:10:55 +00001510 switch (MI.getDesc().TSFlags & ARMII::AddrModeMask) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001511 case ARMII::AddrMode3:
1512 case ARMII::AddrModeT2_i8:
1513 Limit = std::min(Limit, (1U << 8) - 1);
1514 break;
1515 case ARMII::AddrMode5:
1516 case ARMII::AddrModeT2_i8s4:
1517 Limit = std::min(Limit, ((1U << 8) - 1) * 4);
1518 break;
1519 case ARMII::AddrModeT2_i12:
1520 // i12 supports only positive offset so these will be converted to
1521 // i8 opcodes. See llvm::rewriteT2FrameIndex.
1522 if (TFI->hasFP(MF) && AFI->hasStackFrame())
1523 Limit = std::min(Limit, (1U << 8) - 1);
1524 break;
1525 case ARMII::AddrMode4:
1526 case ARMII::AddrMode6:
1527 // Addressing modes 4 & 6 (load/store) instructions can't encode an
1528 // immediate offset for stack references.
1529 return 0;
1530 default:
1531 break;
1532 }
1533 break; // At most one FI per instruction
1534 }
1535 }
1536 }
1537
1538 return Limit;
1539}
1540
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001541// In functions that realign the stack, it can be an advantage to spill the
1542// callee-saved vector registers after realigning the stack. The vst1 and vld1
1543// instructions take alignment hints that can improve performance.
Matthias Braun02564862015-07-14 17:17:13 +00001544static void
1545checkNumAlignedDPRCS2Regs(MachineFunction &MF, BitVector &SavedRegs) {
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001546 MF.getInfo<ARMFunctionInfo>()->setNumAlignedDPRCS2Regs(0);
1547 if (!SpillAlignedNEONRegs)
1548 return;
1549
1550 // Naked functions don't spill callee-saved registers.
Matthias Braunf1caa282017-12-15 22:22:58 +00001551 if (MF.getFunction().hasFnAttribute(Attribute::Naked))
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001552 return;
1553
1554 // We are planning to use NEON instructions vst1 / vld1.
Eric Christopher1b21f002015-01-29 00:19:33 +00001555 if (!static_cast<const ARMSubtarget &>(MF.getSubtarget()).hasNEON())
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001556 return;
1557
1558 // Don't bother if the default stack alignment is sufficiently high.
Eric Christopher1b21f002015-01-29 00:19:33 +00001559 if (MF.getSubtarget().getFrameLowering()->getStackAlignment() >= 8)
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001560 return;
1561
1562 // Aligned spills require stack realignment.
Eric Christopher1b21f002015-01-29 00:19:33 +00001563 if (!static_cast<const ARMBaseRegisterInfo *>(
1564 MF.getSubtarget().getRegisterInfo())->canRealignStack(MF))
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001565 return;
1566
1567 // We always spill contiguous d-registers starting from d8. Count how many
1568 // needs spilling. The register allocator will almost always use the
1569 // callee-saved registers in order, but it can happen that there are holes in
1570 // the range. Registers above the hole will be spilled to the standard DPRCS
1571 // area.
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001572 unsigned NumSpills = 0;
1573 for (; NumSpills < 8; ++NumSpills)
Matthias Braun02564862015-07-14 17:17:13 +00001574 if (!SavedRegs.test(ARM::D8 + NumSpills))
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001575 break;
1576
1577 // Don't do this for just one d-register. It's not worth it.
1578 if (NumSpills < 2)
1579 return;
1580
1581 // Spill the first NumSpills D-registers after realigning the stack.
1582 MF.getInfo<ARMFunctionInfo>()->setNumAlignedDPRCS2Regs(NumSpills);
1583
1584 // A scratch register is required for the vst1 / vld1 instructions.
Matthias Braun02564862015-07-14 17:17:13 +00001585 SavedRegs.set(ARM::R4);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001586}
1587
Matthias Braun02564862015-07-14 17:17:13 +00001588void ARMFrameLowering::determineCalleeSaves(MachineFunction &MF,
1589 BitVector &SavedRegs,
1590 RegScavenger *RS) const {
1591 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001592 // This tells PEI to spill the FP as if it is any other callee-save register
1593 // to take advantage the eliminateFrameIndex machinery. This also ensures it
1594 // is spilled in the order specified by getCalleeSavedRegs() to make it easier
1595 // to combine multiple loads / stores.
1596 bool CanEliminateFrame = true;
1597 bool CS1Spilled = false;
1598 bool LRSpilled = false;
1599 unsigned NumGPRSpills = 0;
Weiming Zhao5b5501e2016-05-08 05:11:54 +00001600 unsigned NumFPRSpills = 0;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001601 SmallVector<unsigned, 4> UnspilledCS1GPRs;
1602 SmallVector<unsigned, 4> UnspilledCS2GPRs;
Eric Christopherd9134482014-08-04 21:25:23 +00001603 const ARMBaseRegisterInfo *RegInfo = static_cast<const ARMBaseRegisterInfo *>(
Eric Christopherfc6de422014-08-05 02:39:49 +00001604 MF.getSubtarget().getRegisterInfo());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001605 const ARMBaseInstrInfo &TII =
Eric Christopherfc6de422014-08-05 02:39:49 +00001606 *static_cast<const ARMBaseInstrInfo *>(MF.getSubtarget().getInstrInfo());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001607 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Matthias Braun941a7052016-07-28 18:40:00 +00001608 MachineFrameInfo &MFI = MF.getFrameInfo();
Jakob Stoklund Olesen410eae52012-10-26 21:43:05 +00001609 MachineRegisterInfo &MRI = MF.getRegInfo();
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001610 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
1611 (void)TRI; // Silence unused warning in non-assert builds.
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001612 unsigned FramePtr = RegInfo->getFrameRegister(MF);
1613
1614 // Spill R4 if Thumb2 function requires stack realignment - it will be used as
1615 // scratch register. Also spill R4 if Thumb2 function has varsized objects,
Evan Cheng572756a2011-01-16 05:14:33 +00001616 // since it's not always possible to restore sp from fp in a single
1617 // instruction.
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001618 // FIXME: It will be better just to find spare register here.
1619 if (AFI->isThumb2Function() &&
Matthias Braun941a7052016-07-28 18:40:00 +00001620 (MFI.hasVarSizedObjects() || RegInfo->needsStackRealignment(MF)))
Matthias Braun02564862015-07-14 17:17:13 +00001621 SavedRegs.set(ARM::R4);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001622
Martin Storsjoace7ae92018-05-14 21:32:52 +00001623 // If a stack probe will be emitted, spill R4 and LR, since they are
1624 // clobbered by the stack probe call.
1625 // This estimate should be a safe, conservative estimate. The actual
1626 // stack probe is enabled based on the size of the local objects;
1627 // this estimate also includes the varargs store size.
1628 if (STI.isTargetWindows() &&
1629 WindowsRequiresStackProbe(MF, MFI.estimateStackSize(MF))) {
1630 SavedRegs.set(ARM::R4);
1631 SavedRegs.set(ARM::LR);
1632 }
1633
Evan Cheng572756a2011-01-16 05:14:33 +00001634 if (AFI->isThumb1OnlyFunction()) {
1635 // Spill LR if Thumb1 function uses variable length argument lists.
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00001636 if (AFI->getArgRegsSaveSize() > 0)
Matthias Braun02564862015-07-14 17:17:13 +00001637 SavedRegs.set(ARM::LR);
Evan Cheng572756a2011-01-16 05:14:33 +00001638
Momchil Velikovd6a4ab32017-10-22 11:56:35 +00001639 // Spill R4 if Thumb1 epilogue has to restore SP from FP or the function
1640 // requires stack alignment. We don't know for sure what the stack size
1641 // will be, but for this, an estimate is good enough. If there anything
1642 // changes it, it'll be a spill, which implies we've used all the registers
1643 // and so R4 is already used, so not marking it here will be OK.
Evan Cheng572756a2011-01-16 05:14:33 +00001644 // FIXME: It will be better just to find spare register here.
Momchil Velikovd6a4ab32017-10-22 11:56:35 +00001645 if (MFI.hasVarSizedObjects() || RegInfo->needsStackRealignment(MF) ||
1646 MFI.estimateStackSize(MF) > 508)
Matthias Braun02564862015-07-14 17:17:13 +00001647 SavedRegs.set(ARM::R4);
Evan Cheng572756a2011-01-16 05:14:33 +00001648 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001649
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001650 // See if we can spill vector registers to aligned stack.
Matthias Braun02564862015-07-14 17:17:13 +00001651 checkNumAlignedDPRCS2Regs(MF, SavedRegs);
Jakob Stoklund Olesen09655852011-12-23 00:36:18 +00001652
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001653 // Spill the BasePtr if it's used.
1654 if (RegInfo->hasBasePointer(MF))
Matthias Braun02564862015-07-14 17:17:13 +00001655 SavedRegs.set(RegInfo->getBaseRegister());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001656
1657 // Don't spill FP if the frame can be eliminated. This is determined
Matthias Braun02564862015-07-14 17:17:13 +00001658 // by scanning the callee-save registers to see if any is modified.
Craig Topper840beec2014-04-04 05:16:06 +00001659 const MCPhysReg *CSRegs = RegInfo->getCalleeSavedRegs(&MF);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001660 for (unsigned i = 0; CSRegs[i]; ++i) {
1661 unsigned Reg = CSRegs[i];
1662 bool Spilled = false;
Matthias Braun02564862015-07-14 17:17:13 +00001663 if (SavedRegs.test(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001664 Spilled = true;
1665 CanEliminateFrame = false;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001666 }
1667
Weiming Zhao5b5501e2016-05-08 05:11:54 +00001668 if (!ARM::GPRRegClass.contains(Reg)) {
1669 if (Spilled) {
1670 if (ARM::SPRRegClass.contains(Reg))
1671 NumFPRSpills++;
1672 else if (ARM::DPRRegClass.contains(Reg))
1673 NumFPRSpills += 2;
1674 else if (ARM::QPRRegClass.contains(Reg))
1675 NumFPRSpills += 4;
1676 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001677 continue;
Weiming Zhao5b5501e2016-05-08 05:11:54 +00001678 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001679
1680 if (Spilled) {
1681 NumGPRSpills++;
1682
Oliver Stannard9aa6f012016-08-23 09:19:22 +00001683 if (!STI.splitFramePushPop(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001684 if (Reg == ARM::LR)
1685 LRSpilled = true;
1686 CS1Spilled = true;
1687 continue;
1688 }
1689
1690 // Keep track if LR and any of R4, R5, R6, and R7 is spilled.
1691 switch (Reg) {
1692 case ARM::LR:
1693 LRSpilled = true;
Justin Bognerb03fd122016-08-17 05:10:15 +00001694 LLVM_FALLTHROUGH;
Tim Northoverd8407452013-10-01 14:33:28 +00001695 case ARM::R0: case ARM::R1:
1696 case ARM::R2: case ARM::R3:
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001697 case ARM::R4: case ARM::R5:
1698 case ARM::R6: case ARM::R7:
1699 CS1Spilled = true;
1700 break;
1701 default:
1702 break;
1703 }
1704 } else {
Oliver Stannard9aa6f012016-08-23 09:19:22 +00001705 if (!STI.splitFramePushPop(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001706 UnspilledCS1GPRs.push_back(Reg);
1707 continue;
1708 }
1709
1710 switch (Reg) {
Tim Northoverd8407452013-10-01 14:33:28 +00001711 case ARM::R0: case ARM::R1:
1712 case ARM::R2: case ARM::R3:
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001713 case ARM::R4: case ARM::R5:
1714 case ARM::R6: case ARM::R7:
1715 case ARM::LR:
1716 UnspilledCS1GPRs.push_back(Reg);
1717 break;
1718 default:
1719 UnspilledCS2GPRs.push_back(Reg);
1720 break;
1721 }
1722 }
1723 }
1724
1725 bool ForceLRSpill = false;
1726 if (!LRSpilled && AFI->isThumb1OnlyFunction()) {
1727 unsigned FnSize = GetFunctionSizeInBytes(MF, TII);
1728 // Force LR to be spilled if the Thumb function size is > 2048. This enables
1729 // use of BL to implement far jump. If it turns out that it's not needed
1730 // then the branch fix up path will undo it.
1731 if (FnSize >= (1 << 11)) {
1732 CanEliminateFrame = false;
1733 ForceLRSpill = true;
1734 }
1735 }
1736
1737 // If any of the stack slot references may be out of range of an immediate
1738 // offset, make sure a register (or a spill slot) is available for the
1739 // register scavenger. Note that if we're indexing off the frame pointer, the
1740 // effective stack size is 4 bytes larger since the FP points to the stack
1741 // slot of the previous FP. Also, if we have variable sized objects in the
1742 // function, stack slot references will often be negative, and some of
1743 // our instructions are positive-offset only, so conservatively consider
1744 // that case to want a spill slot (or register) as well. Similarly, if
1745 // the function adjusts the stack pointer during execution and the
1746 // adjustments aren't already part of our stack size estimate, our offset
1747 // calculations may be off, so be conservative.
1748 // FIXME: We could add logic to be more precise about negative offsets
1749 // and which instructions will need a scratch register for them. Is it
1750 // worth the effort and added fragility?
Weiming Zhao5b5501e2016-05-08 05:11:54 +00001751 unsigned EstimatedStackSize =
Matthias Braun941a7052016-07-28 18:40:00 +00001752 MFI.estimateStackSize(MF) + 4 * (NumGPRSpills + NumFPRSpills);
Matthias Braun8aaa3682017-04-19 21:11:44 +00001753
1754 // Determine biggest (positive) SP offset in MachineFrameInfo.
1755 int MaxFixedOffset = 0;
1756 for (int I = MFI.getObjectIndexBegin(); I < 0; ++I) {
1757 int MaxObjectOffset = MFI.getObjectOffset(I) + MFI.getObjectSize(I);
1758 MaxFixedOffset = std::max(MaxFixedOffset, MaxObjectOffset);
1759 }
1760
Matthias Braun44047422017-04-05 16:58:41 +00001761 bool HasFP = hasFP(MF);
1762 if (HasFP) {
Weiming Zhao5b5501e2016-05-08 05:11:54 +00001763 if (AFI->hasStackFrame())
1764 EstimatedStackSize += 4;
1765 } else {
1766 // If FP is not used, SP will be used to access arguments, so count the
1767 // size of arguments into the estimation.
Matthias Braun8aaa3682017-04-19 21:11:44 +00001768 EstimatedStackSize += MaxFixedOffset;
Weiming Zhao5b5501e2016-05-08 05:11:54 +00001769 }
1770 EstimatedStackSize += 16; // For possible paddings.
1771
Matthias Braun8aaa3682017-04-19 21:11:44 +00001772 unsigned EstimatedRSStackSizeLimit = estimateRSStackSizeLimit(MF, this);
Matthias Braunf1caa282017-12-15 22:22:58 +00001773 int MaxFPOffset = getMaxFPOffset(MF.getFunction(), *AFI);
Matthias Braun8aaa3682017-04-19 21:11:44 +00001774 bool BigFrameOffsets = EstimatedStackSize >= EstimatedRSStackSizeLimit ||
1775 MFI.hasVarSizedObjects() ||
1776 (MFI.adjustsStack() && !canSimplifyCallFramePseudos(MF)) ||
1777 // For large argument stacks fp relative addressed may overflow.
1778 (HasFP && (MaxFixedOffset - MaxFPOffset) >= (int)EstimatedRSStackSizeLimit);
Matthias Braun8aaa3682017-04-19 21:11:44 +00001779 if (BigFrameOffsets ||
1780 !CanEliminateFrame || RegInfo->cannotEliminateFrame(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001781 AFI->setHasStackFrame(true);
1782
Matthias Braun44047422017-04-05 16:58:41 +00001783 if (HasFP) {
Oliver Stannard9aa6f012016-08-23 09:19:22 +00001784 SavedRegs.set(FramePtr);
1785 // If the frame pointer is required by the ABI, also spill LR so that we
1786 // emit a complete frame record.
1787 if (MF.getTarget().Options.DisableFramePointerElim(MF) && !LRSpilled) {
1788 SavedRegs.set(ARM::LR);
1789 LRSpilled = true;
1790 NumGPRSpills++;
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +00001791 auto LRPos = llvm::find(UnspilledCS1GPRs, ARM::LR);
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001792 if (LRPos != UnspilledCS1GPRs.end())
1793 UnspilledCS1GPRs.erase(LRPos);
Oliver Stannard9aa6f012016-08-23 09:19:22 +00001794 }
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +00001795 auto FPPos = llvm::find(UnspilledCS1GPRs, FramePtr);
Oliver Stannard9aa6f012016-08-23 09:19:22 +00001796 if (FPPos != UnspilledCS1GPRs.end())
1797 UnspilledCS1GPRs.erase(FPPos);
1798 NumGPRSpills++;
1799 if (FramePtr == ARM::R7)
1800 CS1Spilled = true;
1801 }
1802
Matthias Braunc618a462017-07-28 01:36:32 +00001803 // This is true when we inserted a spill for an unused register that can now
1804 // be used for register scavenging.
1805 bool ExtraCSSpill = false;
1806
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001807 if (AFI->isThumb1OnlyFunction()) {
1808 // For Thumb1-only targets, we need some low registers when we save and
1809 // restore the high registers (which aren't allocatable, but could be
1810 // used by inline assembly) because the push/pop instructions can not
1811 // access high registers. If necessary, we might need to push more low
1812 // registers to ensure that there is at least one free that can be used
1813 // for the saving & restoring, and preferably we should ensure that as
1814 // many as are needed are available so that fewer push/pop instructions
1815 // are required.
1816
1817 // Low registers which are not currently pushed, but could be (r4-r7).
1818 SmallVector<unsigned, 4> AvailableRegs;
1819
1820 // Unused argument registers (r0-r3) can be clobbered in the prologue for
1821 // free.
1822 int EntryRegDeficit = 0;
1823 for (unsigned Reg : {ARM::R0, ARM::R1, ARM::R2, ARM::R3}) {
1824 if (!MF.getRegInfo().isLiveIn(Reg)) {
1825 --EntryRegDeficit;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001826 LLVM_DEBUG(dbgs()
1827 << printReg(Reg, TRI)
1828 << " is unused argument register, EntryRegDeficit = "
1829 << EntryRegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001830 }
1831 }
1832
1833 // Unused return registers can be clobbered in the epilogue for free.
1834 int ExitRegDeficit = AFI->getReturnRegsCount() - 4;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001835 LLVM_DEBUG(dbgs() << AFI->getReturnRegsCount()
1836 << " return regs used, ExitRegDeficit = "
1837 << ExitRegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001838
1839 int RegDeficit = std::max(EntryRegDeficit, ExitRegDeficit);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001840 LLVM_DEBUG(dbgs() << "RegDeficit = " << RegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001841
1842 // r4-r6 can be used in the prologue if they are pushed by the first push
1843 // instruction.
1844 for (unsigned Reg : {ARM::R4, ARM::R5, ARM::R6}) {
1845 if (SavedRegs.test(Reg)) {
1846 --RegDeficit;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001847 LLVM_DEBUG(dbgs() << printReg(Reg, TRI)
1848 << " is saved low register, RegDeficit = "
1849 << RegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001850 } else {
1851 AvailableRegs.push_back(Reg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001852 LLVM_DEBUG(
1853 dbgs()
1854 << printReg(Reg, TRI)
1855 << " is non-saved low register, adding to AvailableRegs\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001856 }
1857 }
1858
1859 // r7 can be used if it is not being used as the frame pointer.
Matthias Braun44047422017-04-05 16:58:41 +00001860 if (!HasFP) {
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001861 if (SavedRegs.test(ARM::R7)) {
1862 --RegDeficit;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001863 LLVM_DEBUG(dbgs() << "%r7 is saved low register, RegDeficit = "
1864 << RegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001865 } else {
1866 AvailableRegs.push_back(ARM::R7);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001867 LLVM_DEBUG(
1868 dbgs()
1869 << "%r7 is non-saved low register, adding to AvailableRegs\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001870 }
1871 }
1872
1873 // Each of r8-r11 needs to be copied to a low register, then pushed.
1874 for (unsigned Reg : {ARM::R8, ARM::R9, ARM::R10, ARM::R11}) {
1875 if (SavedRegs.test(Reg)) {
1876 ++RegDeficit;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001877 LLVM_DEBUG(dbgs() << printReg(Reg, TRI)
1878 << " is saved high register, RegDeficit = "
1879 << RegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001880 }
1881 }
1882
1883 // LR can only be used by PUSH, not POP, and can't be used at all if the
1884 // llvm.returnaddress intrinsic is used. This is only worth doing if we
1885 // are more limited at function entry than exit.
1886 if ((EntryRegDeficit > ExitRegDeficit) &&
1887 !(MF.getRegInfo().isLiveIn(ARM::LR) &&
1888 MF.getFrameInfo().isReturnAddressTaken())) {
1889 if (SavedRegs.test(ARM::LR)) {
1890 --RegDeficit;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001891 LLVM_DEBUG(dbgs() << "%lr is saved register, RegDeficit = "
1892 << RegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001893 } else {
1894 AvailableRegs.push_back(ARM::LR);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001895 LLVM_DEBUG(dbgs() << "%lr is not saved, adding to AvailableRegs\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001896 }
1897 }
1898
1899 // If there are more high registers that need pushing than low registers
1900 // available, push some more low registers so that we can use fewer push
1901 // instructions. This might not reduce RegDeficit all the way to zero,
1902 // because we can only guarantee that r4-r6 are available, but r8-r11 may
1903 // need saving.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001904 LLVM_DEBUG(dbgs() << "Final RegDeficit = " << RegDeficit << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001905 for (; RegDeficit > 0 && !AvailableRegs.empty(); --RegDeficit) {
1906 unsigned Reg = AvailableRegs.pop_back_val();
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001907 LLVM_DEBUG(dbgs() << "Spilling " << printReg(Reg, TRI)
1908 << " to make up reg deficit\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001909 SavedRegs.set(Reg);
1910 NumGPRSpills++;
1911 CS1Spilled = true;
Matthias Braunc618a462017-07-28 01:36:32 +00001912 assert(!MRI.isReserved(Reg) && "Should not be reserved");
1913 if (!MRI.isPhysRegUsed(Reg))
1914 ExtraCSSpill = true;
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +00001915 UnspilledCS1GPRs.erase(llvm::find(UnspilledCS1GPRs, Reg));
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001916 if (Reg == ARM::LR)
1917 LRSpilled = true;
1918 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001919 LLVM_DEBUG(dbgs() << "After adding spills, RegDeficit = " << RegDeficit
1920 << "\n");
Reid Klecknerbdfc05f2016-10-11 21:14:03 +00001921 }
1922
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001923 // If LR is not spilled, but at least one of R4, R5, R6, and R7 is spilled.
1924 // Spill LR as well so we can fold BX_RET to the registers restore (LDM).
1925 if (!LRSpilled && CS1Spilled) {
Matthias Braun02564862015-07-14 17:17:13 +00001926 SavedRegs.set(ARM::LR);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001927 NumGPRSpills++;
Tim Northoverd8407452013-10-01 14:33:28 +00001928 SmallVectorImpl<unsigned>::iterator LRPos;
Eugene Zelenkoe6cf4372017-01-26 23:40:06 +00001929 LRPos = llvm::find(UnspilledCS1GPRs, (unsigned)ARM::LR);
Tim Northoverd8407452013-10-01 14:33:28 +00001930 if (LRPos != UnspilledCS1GPRs.end())
1931 UnspilledCS1GPRs.erase(LRPos);
1932
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001933 ForceLRSpill = false;
Matthias Braunc618a462017-07-28 01:36:32 +00001934 if (!MRI.isReserved(ARM::LR) && !MRI.isPhysRegUsed(ARM::LR))
1935 ExtraCSSpill = true;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001936 }
1937
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001938 // If stack and double are 8-byte aligned and we are spilling an odd number
1939 // of GPRs, spill one extra callee save GPR so we won't have to pad between
1940 // the integer and double callee save areas.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001941 LLVM_DEBUG(dbgs() << "NumGPRSpills = " << NumGPRSpills << "\n");
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001942 unsigned TargetAlign = getStackAlignment();
Tim Northoverdc0d9e42014-11-05 00:27:20 +00001943 if (TargetAlign >= 8 && (NumGPRSpills & 1)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001944 if (CS1Spilled && !UnspilledCS1GPRs.empty()) {
1945 for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) {
1946 unsigned Reg = UnspilledCS1GPRs[i];
Saleem Abdulrasool1825fac2015-10-09 03:19:03 +00001947 // Don't spill high register if the function is thumb. In the case of
1948 // Windows on ARM, accept R11 (frame pointer)
Peter Collingbourne78f1ecc2015-04-23 20:31:26 +00001949 if (!AFI->isThumbFunction() ||
Saleem Abdulrasool1825fac2015-10-09 03:19:03 +00001950 (STI.isTargetWindows() && Reg == ARM::R11) ||
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001951 isARMLowRegister(Reg) || Reg == ARM::LR) {
Matthias Braun02564862015-07-14 17:17:13 +00001952 SavedRegs.set(Reg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001953 LLVM_DEBUG(dbgs() << "Spilling " << printReg(Reg, TRI)
1954 << " to make up alignment\n");
Matthias Braunc618a462017-07-28 01:36:32 +00001955 if (!MRI.isReserved(Reg) && !MRI.isPhysRegUsed(Reg))
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001956 ExtraCSSpill = true;
1957 break;
1958 }
1959 }
1960 } else if (!UnspilledCS2GPRs.empty() && !AFI->isThumb1OnlyFunction()) {
1961 unsigned Reg = UnspilledCS2GPRs.front();
Matthias Braun02564862015-07-14 17:17:13 +00001962 SavedRegs.set(Reg);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001963 LLVM_DEBUG(dbgs() << "Spilling " << printReg(Reg, TRI)
1964 << " to make up alignment\n");
Matthias Braunc618a462017-07-28 01:36:32 +00001965 if (!MRI.isReserved(Reg) && !MRI.isPhysRegUsed(Reg))
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001966 ExtraCSSpill = true;
1967 }
1968 }
1969
1970 // Estimate if we might need to scavenge a register at some point in order
1971 // to materialize a stack offset. If so, either spill one additional
1972 // callee-saved register or reserve a special spill slot to facilitate
1973 // register scavenging. Thumb1 needs a spill slot for stack pointer
1974 // adjustments also, even when the frame itself is small.
Matthias Braun8aaa3682017-04-19 21:11:44 +00001975 if (BigFrameOffsets && !ExtraCSSpill) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001976 // If any non-reserved CS register isn't spilled, just spill one or two
1977 // extra. That should take care of it!
1978 unsigned NumExtras = TargetAlign / 4;
1979 SmallVector<unsigned, 2> Extras;
1980 while (NumExtras && !UnspilledCS1GPRs.empty()) {
1981 unsigned Reg = UnspilledCS1GPRs.back();
1982 UnspilledCS1GPRs.pop_back();
Jakob Stoklund Olesen410eae52012-10-26 21:43:05 +00001983 if (!MRI.isReserved(Reg) &&
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001984 (!AFI->isThumb1OnlyFunction() || isARMLowRegister(Reg) ||
1985 Reg == ARM::LR)) {
1986 Extras.push_back(Reg);
1987 NumExtras--;
1988 }
1989 }
1990 // For non-Thumb1 functions, also check for hi-reg CS registers
1991 if (!AFI->isThumb1OnlyFunction()) {
1992 while (NumExtras && !UnspilledCS2GPRs.empty()) {
1993 unsigned Reg = UnspilledCS2GPRs.back();
1994 UnspilledCS2GPRs.pop_back();
Jakob Stoklund Olesen410eae52012-10-26 21:43:05 +00001995 if (!MRI.isReserved(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001996 Extras.push_back(Reg);
1997 NumExtras--;
1998 }
1999 }
2000 }
Matthias Braunc618a462017-07-28 01:36:32 +00002001 if (NumExtras == 0) {
2002 for (unsigned Reg : Extras) {
2003 SavedRegs.set(Reg);
2004 if (!MRI.isPhysRegUsed(Reg))
2005 ExtraCSSpill = true;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00002006 }
Matthias Braunc618a462017-07-28 01:36:32 +00002007 }
2008 if (!ExtraCSSpill && !AFI->isThumb1OnlyFunction()) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00002009 // note: Thumb1 functions spill to R12, not the stack. Reserve a slot
2010 // closest to SP or frame pointer.
Weiming Zhao5b5501e2016-05-08 05:11:54 +00002011 assert(RS && "Register scavenging not provided");
Krzysztof Parzyszek44e25f32017-04-24 18:55:33 +00002012 const TargetRegisterClass &RC = ARM::GPRRegClass;
2013 unsigned Size = TRI->getSpillSize(RC);
2014 unsigned Align = TRI->getSpillAlignment(RC);
2015 RS->addScavengingFrameIndex(MFI.CreateStackObject(Size, Align, false));
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00002016 }
2017 }
2018 }
2019
2020 if (ForceLRSpill) {
Matthias Braun02564862015-07-14 17:17:13 +00002021 SavedRegs.set(ARM::LR);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00002022 AFI->setLRIsSpilledForFarJump(true);
2023 }
2024}
Eli Bendersky8da87162013-02-21 20:05:00 +00002025
Hans Wennborge1a2e902016-03-31 18:33:38 +00002026MachineBasicBlock::iterator ARMFrameLowering::eliminateCallFramePseudoInstr(
2027 MachineFunction &MF, MachineBasicBlock &MBB,
2028 MachineBasicBlock::iterator I) const {
Eli Bendersky8da87162013-02-21 20:05:00 +00002029 const ARMBaseInstrInfo &TII =
Eric Christopherfc6de422014-08-05 02:39:49 +00002030 *static_cast<const ARMBaseInstrInfo *>(MF.getSubtarget().getInstrInfo());
Eli Bendersky8da87162013-02-21 20:05:00 +00002031 if (!hasReservedCallFrame(MF)) {
2032 // If we have alloca, convert as follows:
2033 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
2034 // ADJCALLSTACKUP -> add, sp, sp, amount
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +00002035 MachineInstr &Old = *I;
2036 DebugLoc dl = Old.getDebugLoc();
Serge Pavlov5943a962017-04-19 03:12:05 +00002037 unsigned Amount = TII.getFrameSize(Old);
Eli Bendersky8da87162013-02-21 20:05:00 +00002038 if (Amount != 0) {
2039 // We need to keep the stack aligned properly. To do this, we round the
2040 // amount of space needed for the outgoing arguments up to the next
2041 // alignment boundary.
Guozhi Weif66d3842015-08-17 22:36:27 +00002042 Amount = alignSPAdjust(Amount);
Eli Bendersky8da87162013-02-21 20:05:00 +00002043
2044 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2045 assert(!AFI->isThumb1OnlyFunction() &&
2046 "This eliminateCallFramePseudoInstr does not support Thumb1!");
2047 bool isARM = !AFI->isThumbFunction();
2048
2049 // Replace the pseudo instruction with a new instruction...
Duncan P. N. Exon Smith29c52492016-07-08 20:21:17 +00002050 unsigned Opc = Old.getOpcode();
2051 int PIdx = Old.findFirstPredOperandIdx();
2052 ARMCC::CondCodes Pred =
2053 (PIdx == -1) ? ARMCC::AL
2054 : (ARMCC::CondCodes)Old.getOperand(PIdx).getImm();
Serge Pavlov5943a962017-04-19 03:12:05 +00002055 unsigned PredReg = TII.getFramePred(Old);
Eli Bendersky8da87162013-02-21 20:05:00 +00002056 if (Opc == ARM::ADJCALLSTACKDOWN || Opc == ARM::tADJCALLSTACKDOWN) {
Eli Bendersky8da87162013-02-21 20:05:00 +00002057 emitSPUpdate(isARM, MBB, I, dl, TII, -Amount, MachineInstr::NoFlags,
2058 Pred, PredReg);
2059 } else {
Eli Bendersky8da87162013-02-21 20:05:00 +00002060 assert(Opc == ARM::ADJCALLSTACKUP || Opc == ARM::tADJCALLSTACKUP);
2061 emitSPUpdate(isARM, MBB, I, dl, TII, Amount, MachineInstr::NoFlags,
2062 Pred, PredReg);
2063 }
2064 }
2065 }
Hans Wennborge1a2e902016-03-31 18:33:38 +00002066 return MBB.erase(I);
Eli Bendersky8da87162013-02-21 20:05:00 +00002067}
2068
Oliver Stannardb14c6252014-04-02 16:10:33 +00002069/// Get the minimum constant for ARM that is greater than or equal to the
2070/// argument. In ARM, constants can have any value that can be produced by
2071/// rotating an 8-bit value to the right by an even number of bits within a
2072/// 32-bit word.
2073static uint32_t alignToARMConstant(uint32_t Value) {
2074 unsigned Shifted = 0;
2075
2076 if (Value == 0)
2077 return 0;
2078
2079 while (!(Value & 0xC0000000)) {
2080 Value = Value << 2;
2081 Shifted += 2;
2082 }
2083
2084 bool Carry = (Value & 0x00FFFFFF);
2085 Value = ((Value & 0xFF000000) >> 24) + Carry;
2086
2087 if (Value & 0x0000100)
2088 Value = Value & 0x000001FC;
2089
2090 if (Shifted > 24)
2091 Value = Value >> (Shifted - 24);
2092 else
2093 Value = Value << (24 - Shifted);
2094
2095 return Value;
2096}
2097
2098// The stack limit in the TCB is set to this many bytes above the actual
2099// stack limit.
2100static const uint64_t kSplitStackAvailable = 256;
2101
2102// Adjust the function prologue to enable split stacks. This currently only
2103// supports android and linux.
2104//
2105// The ABI of the segmented stack prologue is a little arbitrarily chosen, but
2106// must be well defined in order to allow for consistent implementations of the
2107// __morestack helper function. The ABI is also not a normal ABI in that it
2108// doesn't follow the normal calling conventions because this allows the
2109// prologue of each function to be optimized further.
2110//
2111// Currently, the ABI looks like (when calling __morestack)
2112//
2113// * r4 holds the minimum stack size requested for this function call
2114// * r5 holds the stack size of the arguments to the function
2115// * the beginning of the function is 3 instructions after the call to
2116// __morestack
2117//
2118// Implementations of __morestack should use r4 to allocate a new stack, r5 to
2119// place the arguments on to the new stack, and the 3-instruction knowledge to
2120// jump directly to the body of the function when working on the new stack.
2121//
2122// An old (and possibly no longer compatible) implementation of __morestack for
2123// ARM can be found at [1].
2124//
2125// [1] - https://github.com/mozilla/rust/blob/86efd9/src/rt/arch/arm/morestack.S
Quentin Colombet61b305e2015-05-05 17:38:16 +00002126void ARMFrameLowering::adjustForSegmentedStacks(
2127 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Oliver Stannardb14c6252014-04-02 16:10:33 +00002128 unsigned Opcode;
2129 unsigned CFIIndex;
Eric Christopher22b2ad22015-02-20 08:24:37 +00002130 const ARMSubtarget *ST = &MF.getSubtarget<ARMSubtarget>();
Oliver Stannardb14c6252014-04-02 16:10:33 +00002131 bool Thumb = ST->isThumb();
2132
2133 // Sadly, this currently doesn't support varargs, platforms other than
2134 // android/linux. Note that thumb1/thumb2 are support for android/linux.
Matthias Braunf1caa282017-12-15 22:22:58 +00002135 if (MF.getFunction().isVarArg())
Oliver Stannardb14c6252014-04-02 16:10:33 +00002136 report_fatal_error("Segmented stacks do not support vararg functions.");
2137 if (!ST->isTargetAndroid() && !ST->isTargetLinux())
Alp Toker16f98b22014-04-09 14:47:27 +00002138 report_fatal_error("Segmented stacks not supported on this platform.");
Oliver Stannardb14c6252014-04-02 16:10:33 +00002139
Matthias Braun941a7052016-07-28 18:40:00 +00002140 MachineFrameInfo &MFI = MF.getFrameInfo();
Oliver Stannardb14c6252014-04-02 16:10:33 +00002141 MachineModuleInfo &MMI = MF.getMMI();
2142 MCContext &Context = MMI.getContext();
2143 const MCRegisterInfo *MRI = Context.getRegisterInfo();
2144 const ARMBaseInstrInfo &TII =
Eric Christopherfc6de422014-08-05 02:39:49 +00002145 *static_cast<const ARMBaseInstrInfo *>(MF.getSubtarget().getInstrInfo());
Oliver Stannardb14c6252014-04-02 16:10:33 +00002146 ARMFunctionInfo *ARMFI = MF.getInfo<ARMFunctionInfo>();
2147 DebugLoc DL;
2148
Matthias Braun941a7052016-07-28 18:40:00 +00002149 uint64_t StackSize = MFI.getStackSize();
Tim Northoverf9e798b2014-05-22 13:03:43 +00002150
Than McIntosh31909932018-06-26 14:11:30 +00002151 // Do not generate a prologue for leaf functions with a stack of size zero.
2152 // For non-leaf functions we have to allow for the possibility that the
2153 // call is to a non-split function, as in PR37807.
2154 if (StackSize == 0 && !MFI.hasTailCall())
Tim Northoverf9e798b2014-05-22 13:03:43 +00002155 return;
2156
Oliver Stannardb14c6252014-04-02 16:10:33 +00002157 // Use R4 and R5 as scratch registers.
2158 // We save R4 and R5 before use and restore them before leaving the function.
2159 unsigned ScratchReg0 = ARM::R4;
2160 unsigned ScratchReg1 = ARM::R5;
2161 uint64_t AlignedStackSize;
2162
2163 MachineBasicBlock *PrevStackMBB = MF.CreateMachineBasicBlock();
2164 MachineBasicBlock *PostStackMBB = MF.CreateMachineBasicBlock();
2165 MachineBasicBlock *AllocMBB = MF.CreateMachineBasicBlock();
2166 MachineBasicBlock *GetMBB = MF.CreateMachineBasicBlock();
2167 MachineBasicBlock *McrMBB = MF.CreateMachineBasicBlock();
2168
Quentin Colombet71a71482015-07-20 21:42:14 +00002169 // Grab everything that reaches PrologueMBB to update there liveness as well.
2170 SmallPtrSet<MachineBasicBlock *, 8> BeforePrologueRegion;
2171 SmallVector<MachineBasicBlock *, 2> WalkList;
2172 WalkList.push_back(&PrologueMBB);
2173
2174 do {
2175 MachineBasicBlock *CurMBB = WalkList.pop_back_val();
2176 for (MachineBasicBlock *PredBB : CurMBB->predecessors()) {
2177 if (BeforePrologueRegion.insert(PredBB).second)
2178 WalkList.push_back(PredBB);
2179 }
2180 } while (!WalkList.empty());
2181
2182 // The order in that list is important.
2183 // The blocks will all be inserted before PrologueMBB using that order.
2184 // Therefore the block that should appear first in the CFG should appear
2185 // first in the list.
2186 MachineBasicBlock *AddedBlocks[] = {PrevStackMBB, McrMBB, GetMBB, AllocMBB,
2187 PostStackMBB};
Quentin Colombet71a71482015-07-20 21:42:14 +00002188
Craig Topper80720812015-12-01 06:13:01 +00002189 for (MachineBasicBlock *B : AddedBlocks)
2190 BeforePrologueRegion.insert(B);
Quentin Colombet71a71482015-07-20 21:42:14 +00002191
Matthias Braund9da1622015-09-09 18:08:03 +00002192 for (const auto &LI : PrologueMBB.liveins()) {
Quentin Colombet71a71482015-07-20 21:42:14 +00002193 for (MachineBasicBlock *PredBB : BeforePrologueRegion)
Matthias Braunb2b7ef12015-08-24 22:59:52 +00002194 PredBB->addLiveIn(LI);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002195 }
2196
Quentin Colombet71a71482015-07-20 21:42:14 +00002197 // Remove the newly added blocks from the list, since we know
2198 // we do not have to do the following updates for them.
Craig Topper80720812015-12-01 06:13:01 +00002199 for (MachineBasicBlock *B : AddedBlocks) {
2200 BeforePrologueRegion.erase(B);
2201 MF.insert(PrologueMBB.getIterator(), B);
Quentin Colombet71a71482015-07-20 21:42:14 +00002202 }
2203
2204 for (MachineBasicBlock *MBB : BeforePrologueRegion) {
2205 // Make sure the LiveIns are still sorted and unique.
2206 MBB->sortUniqueLiveIns();
2207 // Replace the edges to PrologueMBB by edges to the sequences
2208 // we are about to add.
2209 MBB->ReplaceUsesOfBlockWith(&PrologueMBB, AddedBlocks[0]);
2210 }
Oliver Stannardb14c6252014-04-02 16:10:33 +00002211
2212 // The required stack size that is aligned to ARM constant criterion.
Oliver Stannardb14c6252014-04-02 16:10:33 +00002213 AlignedStackSize = alignToARMConstant(StackSize);
2214
2215 // When the frame size is less than 256 we just compare the stack
2216 // boundary directly to the value of the stack pointer, per gcc.
2217 bool CompareStackPointer = AlignedStackSize < kSplitStackAvailable;
2218
2219 // We will use two of the callee save registers as scratch registers so we
2220 // need to save those registers onto the stack.
2221 // We will use SR0 to hold stack limit and SR1 to hold the stack size
2222 // requested and arguments for __morestack().
2223 // SR0: Scratch Register #0
2224 // SR1: Scratch Register #1
2225 // push {SR0, SR1}
2226 if (Thumb) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002227 BuildMI(PrevStackMBB, DL, TII.get(ARM::tPUSH))
2228 .add(predOps(ARMCC::AL))
2229 .addReg(ScratchReg0)
2230 .addReg(ScratchReg1);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002231 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002232 BuildMI(PrevStackMBB, DL, TII.get(ARM::STMDB_UPD))
2233 .addReg(ARM::SP, RegState::Define)
2234 .addReg(ARM::SP)
2235 .add(predOps(ARMCC::AL))
2236 .addReg(ScratchReg0)
2237 .addReg(ScratchReg1);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002238 }
2239
2240 // Emit the relevant DWARF information about the change in stack pointer as
2241 // well as where to find both r4 and r5 (the callee-save registers)
2242 CFIIndex =
Matthias Braunf23ef432016-11-30 23:48:42 +00002243 MF.addFrameInst(MCCFIInstruction::createDefCfaOffset(nullptr, -8));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002244 BuildMI(PrevStackMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2245 .addCFIIndex(CFIIndex);
Matthias Braunf23ef432016-11-30 23:48:42 +00002246 CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset(
Oliver Stannardb14c6252014-04-02 16:10:33 +00002247 nullptr, MRI->getDwarfRegNum(ScratchReg1, true), -4));
2248 BuildMI(PrevStackMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2249 .addCFIIndex(CFIIndex);
Matthias Braunf23ef432016-11-30 23:48:42 +00002250 CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset(
Oliver Stannardb14c6252014-04-02 16:10:33 +00002251 nullptr, MRI->getDwarfRegNum(ScratchReg0, true), -8));
2252 BuildMI(PrevStackMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2253 .addCFIIndex(CFIIndex);
2254
2255 // mov SR1, sp
2256 if (Thumb) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002257 BuildMI(McrMBB, DL, TII.get(ARM::tMOVr), ScratchReg1)
2258 .addReg(ARM::SP)
2259 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002260 } else if (CompareStackPointer) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002261 BuildMI(McrMBB, DL, TII.get(ARM::MOVr), ScratchReg1)
2262 .addReg(ARM::SP)
2263 .add(predOps(ARMCC::AL))
Diana Picusbd66b7d2017-01-20 08:15:24 +00002264 .add(condCodeOp());
Oliver Stannardb14c6252014-04-02 16:10:33 +00002265 }
2266
2267 // sub SR1, sp, #StackSize
2268 if (!CompareStackPointer && Thumb) {
Diana Picus8a73f552017-01-13 10:18:01 +00002269 BuildMI(McrMBB, DL, TII.get(ARM::tSUBi8), ScratchReg1)
2270 .add(condCodeOp())
Diana Picus4f8c3e12017-01-13 09:37:56 +00002271 .addReg(ScratchReg1)
2272 .addImm(AlignedStackSize)
2273 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002274 } else if (!CompareStackPointer) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002275 BuildMI(McrMBB, DL, TII.get(ARM::SUBri), ScratchReg1)
2276 .addReg(ARM::SP)
2277 .addImm(AlignedStackSize)
2278 .add(predOps(ARMCC::AL))
Diana Picusbd66b7d2017-01-20 08:15:24 +00002279 .add(condCodeOp());
Oliver Stannardb14c6252014-04-02 16:10:33 +00002280 }
2281
2282 if (Thumb && ST->isThumb1Only()) {
2283 unsigned PCLabelId = ARMFI->createPICLabelUId();
2284 ARMConstantPoolValue *NewCPV = ARMConstantPoolSymbol::Create(
Matthias Braunf1caa282017-12-15 22:22:58 +00002285 MF.getFunction().getContext(), "__STACK_LIMIT", PCLabelId, 0);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002286 MachineConstantPool *MCP = MF.getConstantPool();
Tim Northover956b0082015-10-02 18:07:13 +00002287 unsigned CPI = MCP->getConstantPoolIndex(NewCPV, 4);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002288
2289 // ldr SR0, [pc, offset(STACK_LIMIT)]
Diana Picus4f8c3e12017-01-13 09:37:56 +00002290 BuildMI(GetMBB, DL, TII.get(ARM::tLDRpci), ScratchReg0)
2291 .addConstantPoolIndex(CPI)
2292 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002293
2294 // ldr SR0, [SR0]
Diana Picus4f8c3e12017-01-13 09:37:56 +00002295 BuildMI(GetMBB, DL, TII.get(ARM::tLDRi), ScratchReg0)
2296 .addReg(ScratchReg0)
2297 .addImm(0)
2298 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002299 } else {
2300 // Get TLS base address from the coprocessor
2301 // mrc p15, #0, SR0, c13, c0, #3
Diana Picus4f8c3e12017-01-13 09:37:56 +00002302 BuildMI(McrMBB, DL, TII.get(ARM::MRC), ScratchReg0)
2303 .addImm(15)
2304 .addImm(0)
2305 .addImm(13)
2306 .addImm(0)
2307 .addImm(3)
2308 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002309
2310 // Use the last tls slot on android and a private field of the TCP on linux.
2311 assert(ST->isTargetAndroid() || ST->isTargetLinux());
2312 unsigned TlsOffset = ST->isTargetAndroid() ? 63 : 1;
2313
2314 // Get the stack limit from the right offset
2315 // ldr SR0, [sr0, #4 * TlsOffset]
Diana Picus4f8c3e12017-01-13 09:37:56 +00002316 BuildMI(GetMBB, DL, TII.get(ARM::LDRi12), ScratchReg0)
2317 .addReg(ScratchReg0)
2318 .addImm(4 * TlsOffset)
2319 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002320 }
2321
2322 // Compare stack limit with stack size requested.
2323 // cmp SR0, SR1
2324 Opcode = Thumb ? ARM::tCMPr : ARM::CMPrr;
Diana Picus4f8c3e12017-01-13 09:37:56 +00002325 BuildMI(GetMBB, DL, TII.get(Opcode))
2326 .addReg(ScratchReg0)
2327 .addReg(ScratchReg1)
2328 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002329
2330 // This jump is taken if StackLimit < SP - stack required.
2331 Opcode = Thumb ? ARM::tBcc : ARM::Bcc;
2332 BuildMI(GetMBB, DL, TII.get(Opcode)).addMBB(PostStackMBB)
2333 .addImm(ARMCC::LO)
2334 .addReg(ARM::CPSR);
2335
2336
2337 // Calling __morestack(StackSize, Size of stack arguments).
2338 // __morestack knows that the stack size requested is in SR0(r4)
2339 // and amount size of stack arguments is in SR1(r5).
2340
2341 // Pass first argument for the __morestack by Scratch Register #0.
2342 // The amount size of stack required
2343 if (Thumb) {
Diana Picus8a73f552017-01-13 10:18:01 +00002344 BuildMI(AllocMBB, DL, TII.get(ARM::tMOVi8), ScratchReg0)
2345 .add(condCodeOp())
Diana Picus4f8c3e12017-01-13 09:37:56 +00002346 .addImm(AlignedStackSize)
2347 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002348 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002349 BuildMI(AllocMBB, DL, TII.get(ARM::MOVi), ScratchReg0)
2350 .addImm(AlignedStackSize)
2351 .add(predOps(ARMCC::AL))
Diana Picusbd66b7d2017-01-20 08:15:24 +00002352 .add(condCodeOp());
Oliver Stannardb14c6252014-04-02 16:10:33 +00002353 }
2354 // Pass second argument for the __morestack by Scratch Register #1.
2355 // The amount size of stack consumed to save function arguments.
2356 if (Thumb) {
Diana Picus8a73f552017-01-13 10:18:01 +00002357 BuildMI(AllocMBB, DL, TII.get(ARM::tMOVi8), ScratchReg1)
2358 .add(condCodeOp())
Diana Picus4f8c3e12017-01-13 09:37:56 +00002359 .addImm(alignToARMConstant(ARMFI->getArgumentStackSize()))
2360 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002361 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002362 BuildMI(AllocMBB, DL, TII.get(ARM::MOVi), ScratchReg1)
2363 .addImm(alignToARMConstant(ARMFI->getArgumentStackSize()))
2364 .add(predOps(ARMCC::AL))
Diana Picusbd66b7d2017-01-20 08:15:24 +00002365 .add(condCodeOp());
Oliver Stannardb14c6252014-04-02 16:10:33 +00002366 }
2367
2368 // push {lr} - Save return address of this function.
2369 if (Thumb) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002370 BuildMI(AllocMBB, DL, TII.get(ARM::tPUSH))
2371 .add(predOps(ARMCC::AL))
Oliver Stannardb14c6252014-04-02 16:10:33 +00002372 .addReg(ARM::LR);
2373 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002374 BuildMI(AllocMBB, DL, TII.get(ARM::STMDB_UPD))
2375 .addReg(ARM::SP, RegState::Define)
2376 .addReg(ARM::SP)
2377 .add(predOps(ARMCC::AL))
Oliver Stannardb14c6252014-04-02 16:10:33 +00002378 .addReg(ARM::LR);
2379 }
2380
2381 // Emit the DWARF info about the change in stack as well as where to find the
2382 // previous link register
2383 CFIIndex =
Matthias Braunf23ef432016-11-30 23:48:42 +00002384 MF.addFrameInst(MCCFIInstruction::createDefCfaOffset(nullptr, -12));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002385 BuildMI(AllocMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2386 .addCFIIndex(CFIIndex);
Matthias Braunf23ef432016-11-30 23:48:42 +00002387 CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset(
Oliver Stannardb14c6252014-04-02 16:10:33 +00002388 nullptr, MRI->getDwarfRegNum(ARM::LR, true), -12));
2389 BuildMI(AllocMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2390 .addCFIIndex(CFIIndex);
2391
2392 // Call __morestack().
2393 if (Thumb) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002394 BuildMI(AllocMBB, DL, TII.get(ARM::tBL))
2395 .add(predOps(ARMCC::AL))
Oliver Stannardb14c6252014-04-02 16:10:33 +00002396 .addExternalSymbol("__morestack");
2397 } else {
2398 BuildMI(AllocMBB, DL, TII.get(ARM::BL))
2399 .addExternalSymbol("__morestack");
2400 }
2401
2402 // pop {lr} - Restore return address of this original function.
2403 if (Thumb) {
2404 if (ST->isThumb1Only()) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002405 BuildMI(AllocMBB, DL, TII.get(ARM::tPOP))
2406 .add(predOps(ARMCC::AL))
2407 .addReg(ScratchReg0);
2408 BuildMI(AllocMBB, DL, TII.get(ARM::tMOVr), ARM::LR)
2409 .addReg(ScratchReg0)
2410 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002411 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002412 BuildMI(AllocMBB, DL, TII.get(ARM::t2LDR_POST))
2413 .addReg(ARM::LR, RegState::Define)
2414 .addReg(ARM::SP, RegState::Define)
2415 .addReg(ARM::SP)
2416 .addImm(4)
2417 .add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002418 }
2419 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002420 BuildMI(AllocMBB, DL, TII.get(ARM::LDMIA_UPD))
2421 .addReg(ARM::SP, RegState::Define)
2422 .addReg(ARM::SP)
2423 .add(predOps(ARMCC::AL))
2424 .addReg(ARM::LR);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002425 }
2426
2427 // Restore SR0 and SR1 in case of __morestack() was called.
2428 // __morestack() will skip PostStackMBB block so we need to restore
2429 // scratch registers from here.
2430 // pop {SR0, SR1}
2431 if (Thumb) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002432 BuildMI(AllocMBB, DL, TII.get(ARM::tPOP))
2433 .add(predOps(ARMCC::AL))
2434 .addReg(ScratchReg0)
2435 .addReg(ScratchReg1);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002436 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002437 BuildMI(AllocMBB, DL, TII.get(ARM::LDMIA_UPD))
2438 .addReg(ARM::SP, RegState::Define)
2439 .addReg(ARM::SP)
2440 .add(predOps(ARMCC::AL))
2441 .addReg(ScratchReg0)
2442 .addReg(ScratchReg1);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002443 }
2444
2445 // Update the CFA offset now that we've popped
Matthias Braunf23ef432016-11-30 23:48:42 +00002446 CFIIndex = MF.addFrameInst(MCCFIInstruction::createDefCfaOffset(nullptr, 0));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002447 BuildMI(AllocMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2448 .addCFIIndex(CFIIndex);
2449
Joerg Sonnenberger0f76a352017-08-28 20:20:47 +00002450 // Return from this function.
2451 BuildMI(AllocMBB, DL, TII.get(ST->getReturnOpcode())).add(predOps(ARMCC::AL));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002452
2453 // Restore SR0 and SR1 in case of __morestack() was not called.
2454 // pop {SR0, SR1}
2455 if (Thumb) {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002456 BuildMI(PostStackMBB, DL, TII.get(ARM::tPOP))
2457 .add(predOps(ARMCC::AL))
2458 .addReg(ScratchReg0)
2459 .addReg(ScratchReg1);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002460 } else {
Diana Picus4f8c3e12017-01-13 09:37:56 +00002461 BuildMI(PostStackMBB, DL, TII.get(ARM::LDMIA_UPD))
2462 .addReg(ARM::SP, RegState::Define)
2463 .addReg(ARM::SP)
2464 .add(predOps(ARMCC::AL))
2465 .addReg(ScratchReg0)
2466 .addReg(ScratchReg1);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002467 }
2468
2469 // Update the CFA offset now that we've popped
Matthias Braunf23ef432016-11-30 23:48:42 +00002470 CFIIndex = MF.addFrameInst(MCCFIInstruction::createDefCfaOffset(nullptr, 0));
Oliver Stannardb14c6252014-04-02 16:10:33 +00002471 BuildMI(PostStackMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2472 .addCFIIndex(CFIIndex);
2473
2474 // Tell debuggers that r4 and r5 are now the same as they were in the
2475 // previous function, that they're the "Same Value".
Matthias Braunf23ef432016-11-30 23:48:42 +00002476 CFIIndex = MF.addFrameInst(MCCFIInstruction::createSameValue(
Oliver Stannardb14c6252014-04-02 16:10:33 +00002477 nullptr, MRI->getDwarfRegNum(ScratchReg0, true)));
2478 BuildMI(PostStackMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2479 .addCFIIndex(CFIIndex);
Matthias Braunf23ef432016-11-30 23:48:42 +00002480 CFIIndex = MF.addFrameInst(MCCFIInstruction::createSameValue(
Oliver Stannardb14c6252014-04-02 16:10:33 +00002481 nullptr, MRI->getDwarfRegNum(ScratchReg1, true)));
2482 BuildMI(PostStackMBB, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
2483 .addCFIIndex(CFIIndex);
2484
2485 // Organizing MBB lists
Quentin Colombet61b305e2015-05-05 17:38:16 +00002486 PostStackMBB->addSuccessor(&PrologueMBB);
Oliver Stannardb14c6252014-04-02 16:10:33 +00002487
2488 AllocMBB->addSuccessor(PostStackMBB);
2489
2490 GetMBB->addSuccessor(PostStackMBB);
2491 GetMBB->addSuccessor(AllocMBB);
2492
2493 McrMBB->addSuccessor(GetMBB);
2494
2495 PrevStackMBB->addSuccessor(McrMBB);
2496
Filipe Cabecinhas0da99372016-04-29 15:22:48 +00002497#ifdef EXPENSIVE_CHECKS
Oliver Stannardb14c6252014-04-02 16:10:33 +00002498 MF.verify();
2499#endif
2500}