blob: 875c63c4f6f80f99fb77bfbb85bc98b55a0d7f99 [file] [log] [blame]
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001//===-- X86FrameLowering.cpp - X86 Frame Information ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the X86 implementation of TargetFrameLowering class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86FrameLowering.h"
15#include "X86InstrBuilder.h"
16#include "X86InstrInfo.h"
17#include "X86MachineFunctionInfo.h"
18#include "X86Subtarget.h"
19#include "X86TargetMachine.h"
20#include "llvm/ADT/SmallSet.h"
Joseph Tremoulet6afccf62015-11-05 02:20:07 +000021#include "llvm/Analysis/LibCallSemantics.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
25#include "llvm/CodeGen/MachineModuleInfo.h"
26#include "llvm/CodeGen/MachineRegisterInfo.h"
Reid Klecknerdf129512015-09-08 22:44:41 +000027#include "llvm/CodeGen/WinEHFuncInfo.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000028#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/Function.h"
30#include "llvm/MC/MCAsmInfo.h"
31#include "llvm/MC/MCSymbol.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000032#include "llvm/Target/TargetOptions.h"
33#include "llvm/Support/Debug.h"
34#include <cstdlib>
35
36using namespace llvm;
37
Reid Klecknerf9977bf2015-06-17 21:50:02 +000038X86FrameLowering::X86FrameLowering(const X86Subtarget &STI,
39 unsigned StackAlignOverride)
40 : TargetFrameLowering(StackGrowsDown, StackAlignOverride,
41 STI.is64Bit() ? -8 : -4),
Reid Kleckner034ea962015-06-18 20:32:02 +000042 STI(STI), TII(*STI.getInstrInfo()), TRI(STI.getRegisterInfo()) {
Reid Klecknerf9977bf2015-06-17 21:50:02 +000043 // Cache a bunch of frame-related predicates for this subtarget.
Reid Kleckner034ea962015-06-18 20:32:02 +000044 SlotSize = TRI->getSlotSize();
Reid Klecknerf9977bf2015-06-17 21:50:02 +000045 Is64Bit = STI.is64Bit();
46 IsLP64 = STI.isTarget64BitLP64();
47 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
48 Uses64BitFramePtr = STI.isTarget64BitLP64() || STI.isTargetNaCl64();
Reid Kleckner034ea962015-06-18 20:32:02 +000049 StackPtr = TRI->getStackRegister();
Reid Klecknerf9977bf2015-06-17 21:50:02 +000050}
51
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000052bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Michael Kuperstein13fbd452015-02-01 16:56:04 +000053 return !MF.getFrameInfo()->hasVarSizedObjects() &&
54 !MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences();
55}
56
57/// canSimplifyCallFramePseudos - If there is a reserved call frame, the
58/// call frame pseudos can be simplified. Having a FP, as in the default
59/// implementation, is not sufficient here since we can't always use it.
60/// Use a more nuanced condition.
61bool
62X86FrameLowering::canSimplifyCallFramePseudos(const MachineFunction &MF) const {
Michael Kuperstein13fbd452015-02-01 16:56:04 +000063 return hasReservedCallFrame(MF) ||
Reid Kleckner034ea962015-06-18 20:32:02 +000064 (hasFP(MF) && !TRI->needsStackRealignment(MF)) ||
65 TRI->hasBasePointer(MF);
Michael Kuperstein13fbd452015-02-01 16:56:04 +000066}
67
68// needsFrameIndexResolution - Do we need to perform FI resolution for
69// this function. Normally, this is required only when the function
70// has any stack objects. However, FI resolution actually has another job,
71// not apparent from the title - it resolves callframesetup/destroy
72// that were not simplified earlier.
73// So, this is required for x86 functions that have push sequences even
74// when there are no stack objects.
75bool
76X86FrameLowering::needsFrameIndexResolution(const MachineFunction &MF) const {
77 return MF.getFrameInfo()->hasStackObjects() ||
78 MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000079}
80
81/// hasFP - Return true if the specified function should have a dedicated frame
82/// pointer register. This is true if the function has variable sized allocas
83/// or if frame pointer elimination is disabled.
84bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
85 const MachineFrameInfo *MFI = MF.getFrameInfo();
86 const MachineModuleInfo &MMI = MF.getMMI();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000087
88 return (MF.getTarget().Options.DisableFramePointerElim(MF) ||
Reid Kleckner034ea962015-06-18 20:32:02 +000089 TRI->needsStackRealignment(MF) ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000090 MFI->hasVarSizedObjects() ||
Reid Klecknere69bdb82015-07-07 23:45:58 +000091 MFI->isFrameAddressTaken() || MFI->hasOpaqueSPAdjustment() ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000092 MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() ||
Reid Klecknerdf129512015-09-08 22:44:41 +000093 MMI.callsUnwindInit() || MMI.hasEHFunclets() || MMI.callsEHReturn() ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000094 MFI->hasStackMap() || MFI->hasPatchPoint());
95}
96
97static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) {
98 if (IsLP64) {
99 if (isInt<8>(Imm))
100 return X86::SUB64ri8;
101 return X86::SUB64ri32;
102 } else {
103 if (isInt<8>(Imm))
104 return X86::SUB32ri8;
105 return X86::SUB32ri;
106 }
107}
108
109static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) {
110 if (IsLP64) {
111 if (isInt<8>(Imm))
112 return X86::ADD64ri8;
113 return X86::ADD64ri32;
114 } else {
115 if (isInt<8>(Imm))
116 return X86::ADD32ri8;
117 return X86::ADD32ri;
118 }
119}
120
121static unsigned getSUBrrOpcode(unsigned isLP64) {
122 return isLP64 ? X86::SUB64rr : X86::SUB32rr;
123}
124
125static unsigned getADDrrOpcode(unsigned isLP64) {
126 return isLP64 ? X86::ADD64rr : X86::ADD32rr;
127}
128
129static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) {
130 if (IsLP64) {
131 if (isInt<8>(Imm))
132 return X86::AND64ri8;
133 return X86::AND64ri32;
134 }
135 if (isInt<8>(Imm))
136 return X86::AND32ri8;
137 return X86::AND32ri;
138}
139
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000140static unsigned getLEArOpcode(unsigned IsLP64) {
141 return IsLP64 ? X86::LEA64r : X86::LEA32r;
142}
143
144/// findDeadCallerSavedReg - Return a caller-saved register that isn't live
145/// when it reaches the "return" instruction. We can then pop a stack object
146/// to this register without worry about clobbering it.
147static unsigned findDeadCallerSavedReg(MachineBasicBlock &MBB,
148 MachineBasicBlock::iterator &MBBI,
Reid Kleckner034ea962015-06-18 20:32:02 +0000149 const TargetRegisterInfo *TRI,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000150 bool Is64Bit) {
151 const MachineFunction *MF = MBB.getParent();
152 const Function *F = MF->getFunction();
153 if (!F || MF->getMMI().callsEHReturn())
154 return 0;
155
156 static const uint16_t CallerSavedRegs32Bit[] = {
157 X86::EAX, X86::EDX, X86::ECX, 0
158 };
159
160 static const uint16_t CallerSavedRegs64Bit[] = {
161 X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI,
162 X86::R8, X86::R9, X86::R10, X86::R11, 0
163 };
164
165 unsigned Opc = MBBI->getOpcode();
166 switch (Opc) {
167 default: return 0;
168 case X86::RETL:
169 case X86::RETQ:
170 case X86::RETIL:
171 case X86::RETIQ:
172 case X86::TCRETURNdi:
173 case X86::TCRETURNri:
174 case X86::TCRETURNmi:
175 case X86::TCRETURNdi64:
176 case X86::TCRETURNri64:
177 case X86::TCRETURNmi64:
178 case X86::EH_RETURN:
179 case X86::EH_RETURN64: {
180 SmallSet<uint16_t, 8> Uses;
181 for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) {
182 MachineOperand &MO = MBBI->getOperand(i);
183 if (!MO.isReg() || MO.isDef())
184 continue;
185 unsigned Reg = MO.getReg();
186 if (!Reg)
187 continue;
Reid Kleckner034ea962015-06-18 20:32:02 +0000188 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000189 Uses.insert(*AI);
190 }
191
192 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
193 for (; *CS; ++CS)
194 if (!Uses.count(*CS))
195 return *CS;
196 }
197 }
198
199 return 0;
200}
201
202static bool isEAXLiveIn(MachineFunction &MF) {
203 for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
204 EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
205 unsigned Reg = II->first;
206
207 if (Reg == X86::RAX || Reg == X86::EAX || Reg == X86::AX ||
208 Reg == X86::AH || Reg == X86::AL)
209 return true;
210 }
211
212 return false;
213}
214
Reid Kleckner98d78032015-06-18 20:22:12 +0000215/// Check whether or not the terminators of \p MBB needs to read EFLAGS.
216static bool terminatorsNeedFlagsAsInput(const MachineBasicBlock &MBB) {
217 for (const MachineInstr &MI : MBB.terminators()) {
218 bool BreakNext = false;
219 for (const MachineOperand &MO : MI.operands()) {
220 if (!MO.isReg())
221 continue;
222 unsigned Reg = MO.getReg();
223 if (Reg != X86::EFLAGS)
224 continue;
225
226 // This terminator needs an eflag that is not defined
227 // by a previous terminator.
228 if (!MO.isDef())
229 return true;
230 BreakNext = true;
231 }
232 if (BreakNext)
233 break;
234 }
235 return false;
236}
237
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000238/// emitSPUpdate - Emit a series of instructions to increment / decrement the
239/// stack pointer by a constant value.
Quentin Colombet494eb602015-05-22 18:10:47 +0000240void X86FrameLowering::emitSPUpdate(MachineBasicBlock &MBB,
241 MachineBasicBlock::iterator &MBBI,
Reid Kleckner98d78032015-06-18 20:22:12 +0000242 int64_t NumBytes, bool InEpilogue) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000243 bool isSub = NumBytes < 0;
244 uint64_t Offset = isSub ? -NumBytes : NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000245
246 uint64_t Chunk = (1LL << 31) - 1;
247 DebugLoc DL = MBB.findDebugLoc(MBBI);
248
249 while (Offset) {
250 if (Offset > Chunk) {
251 // Rather than emit a long series of instructions for large offsets,
252 // load the offset into a register and do one sub/add
253 unsigned Reg = 0;
254
255 if (isSub && !isEAXLiveIn(*MBB.getParent()))
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000256 Reg = (unsigned)(Is64Bit ? X86::RAX : X86::EAX);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000257 else
Reid Kleckner034ea962015-06-18 20:32:02 +0000258 Reg = findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000259
260 if (Reg) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000261 unsigned Opc = Is64Bit ? X86::MOV64ri : X86::MOV32ri;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000262 BuildMI(MBB, MBBI, DL, TII.get(Opc), Reg)
263 .addImm(Offset);
264 Opc = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000265 ? getSUBrrOpcode(Is64Bit)
266 : getADDrrOpcode(Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000267 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
268 .addReg(StackPtr)
269 .addReg(Reg);
270 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
271 Offset = 0;
272 continue;
273 }
274 }
275
David Majnemer3aa0bd82015-02-24 00:11:32 +0000276 uint64_t ThisVal = std::min(Offset, Chunk);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000277 if (ThisVal == (Is64Bit ? 8 : 4)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000278 // Use push / pop instead.
279 unsigned Reg = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000280 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
Reid Kleckner034ea962015-06-18 20:32:02 +0000281 : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000282 if (Reg) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000283 unsigned Opc = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000284 ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
285 : (Is64Bit ? X86::POP64r : X86::POP32r);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000286 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
287 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
288 if (isSub)
289 MI->setFlag(MachineInstr::FrameSetup);
Michael Kuperstein098cd9f2015-09-16 11:18:25 +0000290 else
291 MI->setFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000292 Offset -= ThisVal;
293 continue;
294 }
295 }
296
Reid Kleckner98d78032015-06-18 20:22:12 +0000297 MachineInstrBuilder MI = BuildStackAdjustment(
298 MBB, MBBI, DL, isSub ? -ThisVal : ThisVal, InEpilogue);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000299 if (isSub)
Reid Kleckner98d78032015-06-18 20:22:12 +0000300 MI.setMIFlag(MachineInstr::FrameSetup);
Michael Kuperstein098cd9f2015-09-16 11:18:25 +0000301 else
302 MI.setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000303
304 Offset -= ThisVal;
305 }
306}
307
Reid Kleckner98d78032015-06-18 20:22:12 +0000308MachineInstrBuilder X86FrameLowering::BuildStackAdjustment(
309 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc DL,
310 int64_t Offset, bool InEpilogue) const {
311 assert(Offset != 0 && "zero offset stack adjustment requested");
312
313 // On Atom, using LEA to adjust SP is preferred, but using it in the epilogue
314 // is tricky.
315 bool UseLEA;
316 if (!InEpilogue) {
317 UseLEA = STI.useLeaForSP();
318 } else {
319 // If we can use LEA for SP but we shouldn't, check that none
320 // of the terminators uses the eflags. Otherwise we will insert
321 // a ADD that will redefine the eflags and break the condition.
322 // Alternatively, we could move the ADD, but this may not be possible
323 // and is an optimization anyway.
324 UseLEA = canUseLEAForSPInEpilogue(*MBB.getParent());
325 if (UseLEA && !STI.useLeaForSP())
326 UseLEA = terminatorsNeedFlagsAsInput(MBB);
327 // If that assert breaks, that means we do not do the right thing
328 // in canUseAsEpilogue.
329 assert((UseLEA || !terminatorsNeedFlagsAsInput(MBB)) &&
330 "We shouldn't have allowed this insertion point");
331 }
332
333 MachineInstrBuilder MI;
334 if (UseLEA) {
335 MI = addRegOffset(BuildMI(MBB, MBBI, DL,
336 TII.get(getLEArOpcode(Uses64BitFramePtr)),
337 StackPtr),
338 StackPtr, false, Offset);
339 } else {
340 bool IsSub = Offset < 0;
341 uint64_t AbsOffset = IsSub ? -Offset : Offset;
342 unsigned Opc = IsSub ? getSUBriOpcode(Uses64BitFramePtr, AbsOffset)
343 : getADDriOpcode(Uses64BitFramePtr, AbsOffset);
344 MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
345 .addReg(StackPtr)
346 .addImm(AbsOffset);
347 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
348 }
349 return MI;
350}
351
Quentin Colombet494eb602015-05-22 18:10:47 +0000352int X86FrameLowering::mergeSPUpdates(MachineBasicBlock &MBB,
353 MachineBasicBlock::iterator &MBBI,
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000354 bool doMergeWithPrevious) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000355 if ((doMergeWithPrevious && MBBI == MBB.begin()) ||
356 (!doMergeWithPrevious && MBBI == MBB.end()))
357 return 0;
358
359 MachineBasicBlock::iterator PI = doMergeWithPrevious ? std::prev(MBBI) : MBBI;
360 MachineBasicBlock::iterator NI = doMergeWithPrevious ? nullptr
361 : std::next(MBBI);
362 unsigned Opc = PI->getOpcode();
363 int Offset = 0;
364
365 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
366 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
367 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
368 PI->getOperand(0).getReg() == StackPtr){
369 Offset += PI->getOperand(2).getImm();
370 MBB.erase(PI);
371 if (!doMergeWithPrevious) MBBI = NI;
372 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
373 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
374 PI->getOperand(0).getReg() == StackPtr) {
375 Offset -= PI->getOperand(2).getImm();
376 MBB.erase(PI);
377 if (!doMergeWithPrevious) MBBI = NI;
378 }
379
380 return Offset;
381}
382
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000383void X86FrameLowering::BuildCFI(MachineBasicBlock &MBB,
384 MachineBasicBlock::iterator MBBI, DebugLoc DL,
385 MCCFIInstruction CFIInst) const {
Reid Kleckner7f189f82015-06-15 23:45:08 +0000386 MachineFunction &MF = *MBB.getParent();
387 unsigned CFIIndex = MF.getMMI().addFrameInst(CFIInst);
388 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
389 .addCFIIndex(CFIIndex);
390}
391
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000392void
393X86FrameLowering::emitCalleeSavedFrameMoves(MachineBasicBlock &MBB,
394 MachineBasicBlock::iterator MBBI,
395 DebugLoc DL) const {
396 MachineFunction &MF = *MBB.getParent();
397 MachineFrameInfo *MFI = MF.getFrameInfo();
398 MachineModuleInfo &MMI = MF.getMMI();
399 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000400
401 // Add callee saved registers to move list.
402 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
403 if (CSI.empty()) return;
404
405 // Calculate offsets.
406 for (std::vector<CalleeSavedInfo>::const_iterator
407 I = CSI.begin(), E = CSI.end(); I != E; ++I) {
408 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
409 unsigned Reg = I->getReg();
410
411 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000412 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000413 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000414 }
415}
416
417/// usesTheStack - This function checks if any of the users of EFLAGS
418/// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
419/// to use the stack, and if we don't adjust the stack we clobber the first
420/// frame index.
421/// See X86InstrInfo::copyPhysReg.
422static bool usesTheStack(const MachineFunction &MF) {
423 const MachineRegisterInfo &MRI = MF.getRegInfo();
424
425 for (MachineRegisterInfo::reg_instr_iterator
426 ri = MRI.reg_instr_begin(X86::EFLAGS), re = MRI.reg_instr_end();
427 ri != re; ++ri)
428 if (ri->isCopy())
429 return true;
430
431 return false;
432}
433
434void X86FrameLowering::emitStackProbeCall(MachineFunction &MF,
435 MachineBasicBlock &MBB,
436 MachineBasicBlock::iterator MBBI,
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000437 DebugLoc DL) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000438 bool IsLargeCodeModel = MF.getTarget().getCodeModel() == CodeModel::Large;
439
440 unsigned CallOp;
441 if (Is64Bit)
442 CallOp = IsLargeCodeModel ? X86::CALL64r : X86::CALL64pcrel32;
443 else
444 CallOp = X86::CALLpcrel32;
445
446 const char *Symbol;
447 if (Is64Bit) {
448 if (STI.isTargetCygMing()) {
449 Symbol = "___chkstk_ms";
450 } else {
451 Symbol = "__chkstk";
452 }
453 } else if (STI.isTargetCygMing())
454 Symbol = "_alloca";
455 else
456 Symbol = "_chkstk";
457
458 MachineInstrBuilder CI;
459
460 // All current stack probes take AX and SP as input, clobber flags, and
461 // preserve all registers. x86_64 probes leave RSP unmodified.
462 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
463 // For the large code model, we have to call through a register. Use R11,
464 // as it is scratch in all supported calling conventions.
465 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::R11)
466 .addExternalSymbol(Symbol);
467 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addReg(X86::R11);
468 } else {
469 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addExternalSymbol(Symbol);
470 }
471
472 unsigned AX = Is64Bit ? X86::RAX : X86::EAX;
473 unsigned SP = Is64Bit ? X86::RSP : X86::ESP;
474 CI.addReg(AX, RegState::Implicit)
475 .addReg(SP, RegState::Implicit)
476 .addReg(AX, RegState::Define | RegState::Implicit)
477 .addReg(SP, RegState::Define | RegState::Implicit)
478 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
479
480 if (Is64Bit) {
481 // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
482 // themselves. It also does not clobber %rax so we can reuse it when
483 // adjusting %rsp.
484 BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), X86::RSP)
485 .addReg(X86::RSP)
486 .addReg(X86::RAX);
487 }
488}
489
David Majnemer93c22a42015-02-10 00:57:42 +0000490static unsigned calculateSetFPREG(uint64_t SPAdjust) {
491 // Win64 ABI has a less restrictive limitation of 240; 128 works equally well
492 // and might require smaller successive adjustments.
493 const uint64_t Win64MaxSEHOffset = 128;
494 uint64_t SEHFrameOffset = std::min(SPAdjust, Win64MaxSEHOffset);
495 // Win64 ABI requires 16-byte alignment for the UWOP_SET_FPREG opcode.
David Majnemer89d05642015-02-21 01:04:47 +0000496 return SEHFrameOffset & -16;
David Majnemer93c22a42015-02-10 00:57:42 +0000497}
498
499// If we're forcing a stack realignment we can't rely on just the frame
500// info, we need to know the ABI stack alignment as well in case we
501// have a call out. Otherwise just make sure we have some alignment - we'll
502// go with the minimum SlotSize.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000503uint64_t X86FrameLowering::calculateMaxStackAlign(const MachineFunction &MF) const {
David Majnemer93c22a42015-02-10 00:57:42 +0000504 const MachineFrameInfo *MFI = MF.getFrameInfo();
505 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000506 unsigned StackAlign = getStackAlignment();
Akira Hatanakabc497c92015-09-11 18:54:38 +0000507 if (MF.getFunction()->hasFnAttribute("stackrealign")) {
David Majnemer93c22a42015-02-10 00:57:42 +0000508 if (MFI->hasCalls())
509 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
510 else if (MaxAlign < SlotSize)
511 MaxAlign = SlotSize;
512 }
513 return MaxAlign;
514}
515
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000516void X86FrameLowering::BuildStackAlignAND(MachineBasicBlock &MBB,
517 MachineBasicBlock::iterator MBBI,
Reid Kleckner6ddae312015-11-05 21:09:49 +0000518 DebugLoc DL, unsigned Reg,
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000519 uint64_t MaxAlign) const {
520 uint64_t Val = -MaxAlign;
Reid Kleckner6ddae312015-11-05 21:09:49 +0000521 unsigned AndOp = getANDriOpcode(Uses64BitFramePtr, Val);
522 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(AndOp), Reg)
523 .addReg(Reg)
524 .addImm(Val)
525 .setMIFlag(MachineInstr::FrameSetup);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000526
527 // The EFLAGS implicit def is dead.
528 MI->getOperand(3).setIsDead();
529}
530
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000531/// emitPrologue - Push callee-saved registers onto the stack, which
532/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
533/// space for local variables. Also emit labels used by the exception handler to
534/// generate the exception handling frames.
535
536/*
537 Here's a gist of what gets emitted:
538
539 ; Establish frame pointer, if needed
540 [if needs FP]
541 push %rbp
542 .cfi_def_cfa_offset 16
543 .cfi_offset %rbp, -16
544 .seh_pushreg %rpb
545 mov %rsp, %rbp
546 .cfi_def_cfa_register %rbp
547
548 ; Spill general-purpose registers
549 [for all callee-saved GPRs]
550 pushq %<reg>
551 [if not needs FP]
552 .cfi_def_cfa_offset (offset from RETADDR)
553 .seh_pushreg %<reg>
554
555 ; If the required stack alignment > default stack alignment
556 ; rsp needs to be re-aligned. This creates a "re-alignment gap"
557 ; of unknown size in the stack frame.
558 [if stack needs re-alignment]
559 and $MASK, %rsp
560
561 ; Allocate space for locals
562 [if target is Windows and allocated space > 4096 bytes]
563 ; Windows needs special care for allocations larger
564 ; than one page.
565 mov $NNN, %rax
566 call ___chkstk_ms/___chkstk
567 sub %rax, %rsp
568 [else]
569 sub $NNN, %rsp
570
571 [if needs FP]
572 .seh_stackalloc (size of XMM spill slots)
573 .seh_setframe %rbp, SEHFrameOffset ; = size of all spill slots
574 [else]
575 .seh_stackalloc NNN
576
577 ; Spill XMMs
578 ; Note, that while only Windows 64 ABI specifies XMMs as callee-preserved,
579 ; they may get spilled on any platform, if the current function
580 ; calls @llvm.eh.unwind.init
581 [if needs FP]
582 [for all callee-saved XMM registers]
583 movaps %<xmm reg>, -MMM(%rbp)
584 [for all callee-saved XMM registers]
585 .seh_savexmm %<xmm reg>, (-MMM + SEHFrameOffset)
586 ; i.e. the offset relative to (%rbp - SEHFrameOffset)
587 [else]
588 [for all callee-saved XMM registers]
589 movaps %<xmm reg>, KKK(%rsp)
590 [for all callee-saved XMM registers]
591 .seh_savexmm %<xmm reg>, KKK
592
593 .seh_endprologue
594
595 [if needs base pointer]
596 mov %rsp, %rbx
597 [if needs to restore base pointer]
598 mov %rsp, -MMM(%rbp)
599
600 ; Emit CFI info
601 [if needs FP]
602 [for all callee-saved registers]
603 .cfi_offset %<reg>, (offset from %rbp)
604 [else]
605 .cfi_def_cfa_offset (offset from RETADDR)
606 [for all callee-saved registers]
607 .cfi_offset %<reg>, (offset from %rsp)
608
609 Notes:
610 - .seh directives are emitted only for Windows 64 ABI
611 - .cfi directives are emitted for all other ABIs
612 - for 32-bit code, substitute %e?? registers for %r??
613*/
614
Quentin Colombet61b305e2015-05-05 17:38:16 +0000615void X86FrameLowering::emitPrologue(MachineFunction &MF,
616 MachineBasicBlock &MBB) const {
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000617 assert(&STI == &MF.getSubtarget<X86Subtarget>() &&
618 "MF used frame lowering for wrong subtarget");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000619 MachineBasicBlock::iterator MBBI = MBB.begin();
620 MachineFrameInfo *MFI = MF.getFrameInfo();
621 const Function *Fn = MF.getFunction();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000622 MachineModuleInfo &MMI = MF.getMMI();
623 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
David Majnemer93c22a42015-02-10 00:57:42 +0000624 uint64_t MaxAlign = calculateMaxStackAlign(MF); // Desired stack alignment.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000625 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000626 bool IsFunclet = MBB.isEHFuncletEntry();
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000627 bool IsClrFunclet =
628 IsFunclet &&
629 classifyEHPersonality(Fn->getPersonalityFn()) == EHPersonality::CoreCLR;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000630 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000631 bool IsWin64CC = STI.isCallingConvWin64(Fn->getCallingConv());
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000632 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
633 bool NeedsWinCFI = IsWin64Prologue && Fn->needsUnwindTableEntry();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000634 bool NeedsDwarfCFI =
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000635 !IsWin64Prologue && (MMI.hasDebugInfo() || Fn->needsUnwindTableEntry());
Reid Kleckner034ea962015-06-18 20:32:02 +0000636 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +0000637 const unsigned MachineFramePtr =
638 STI.isTarget64BitILP32()
Tim Northover775aaeb2015-11-05 21:54:58 +0000639 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
640 : FramePtr;
641 unsigned BasePtr = TRI->getBaseRegister();
642
643 // Debug location must be unknown since the first debug location is used
644 // to determine the end of the prologue.
645 DebugLoc DL;
646
647 // Add RETADDR move area to callee saved frame size.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000648 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000649 if (TailCallReturnAddrDelta && IsWin64Prologue)
David Majnemer93c22a42015-02-10 00:57:42 +0000650 report_fatal_error("Can't handle guaranteed tail call under win64 yet");
651
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000652 if (TailCallReturnAddrDelta < 0)
653 X86FI->setCalleeSavedFrameSize(
654 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
655
656 bool UseStackProbe = (STI.isOSWindows() && !STI.isTargetMachO());
657
658 // The default stack probe size is 4096 if the function has no stackprobesize
659 // attribute.
660 unsigned StackProbeSize = 4096;
661 if (Fn->hasFnAttribute("stack-probe-size"))
662 Fn->getFnAttribute("stack-probe-size")
663 .getValueAsString()
664 .getAsInteger(0, StackProbeSize);
665
666 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
667 // function, and use up to 128 bytes of stack space, don't have a frame
668 // pointer, calls, or dynamic alloca then we do not need to adjust the
669 // stack pointer (we fit in the Red Zone). We also check that we don't
670 // push and pop from the stack.
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000671 if (Is64Bit && !Fn->hasFnAttribute(Attribute::NoRedZone) &&
Reid Kleckner034ea962015-06-18 20:32:02 +0000672 !TRI->needsStackRealignment(MF) &&
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000673 !MFI->hasVarSizedObjects() && // No dynamic alloca.
674 !MFI->adjustsStack() && // No calls.
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000675 !IsWin64CC && // Win64 has no Red Zone
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000676 !usesTheStack(MF) && // Don't push and pop.
677 !MF.shouldSplitStack()) { // Regular stack
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000678 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
679 if (HasFP) MinSize += SlotSize;
680 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
681 MFI->setStackSize(StackSize);
682 }
683
684 // Insert stack pointer adjustment for later moving of return addr. Only
685 // applies to tail call optimized functions where the callee argument stack
686 // size is bigger than the callers.
687 if (TailCallReturnAddrDelta < 0) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000688 BuildStackAdjustment(MBB, MBBI, DL, TailCallReturnAddrDelta,
689 /*InEpilogue=*/false)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000690 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000691 }
692
693 // Mapping for machine moves:
694 //
695 // DST: VirtualFP AND
696 // SRC: VirtualFP => DW_CFA_def_cfa_offset
697 // ELSE => DW_CFA_def_cfa
698 //
699 // SRC: VirtualFP AND
700 // DST: Register => DW_CFA_def_cfa_register
701 //
702 // ELSE
703 // OFFSET < 0 => DW_CFA_offset_extended_sf
704 // REG < 64 => DW_CFA_offset + Reg
705 // ELSE => DW_CFA_offset_extended
706
707 uint64_t NumBytes = 0;
708 int stackGrowth = -SlotSize;
709
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000710 // Find the funclet establisher parameter
711 unsigned Establisher = X86::NoRegister;
712 if (IsClrFunclet)
713 Establisher = Uses64BitFramePtr ? X86::RCX : X86::ECX;
714 else if (IsFunclet)
715 Establisher = Uses64BitFramePtr ? X86::RDX : X86::EDX;
716
717 if (IsWin64Prologue && IsFunclet & !IsClrFunclet) {
718 // Immediately spill establisher into the home slot.
719 // The runtime cares about this.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000720 // MOV64mr %rdx, 16(%rsp)
721 unsigned MOVmr = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
722 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(MOVmr)), StackPtr, true, 16)
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000723 .addReg(Establisher)
Reid Klecknerdf129512015-09-08 22:44:41 +0000724 .setMIFlag(MachineInstr::FrameSetup);
Reid Kleckner64b003f2015-11-09 21:04:00 +0000725 MBB.addLiveIn(Establisher);
Reid Klecknera13dfd52015-09-29 23:32:01 +0000726 }
Reid Klecknerdf129512015-09-08 22:44:41 +0000727
Reid Klecknera13dfd52015-09-29 23:32:01 +0000728 if (HasFP) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000729 // Calculate required stack adjustment.
730 uint64_t FrameSize = StackSize - SlotSize;
731 // If required, include space for extra hidden slot for stashing base pointer.
732 if (X86FI->getRestoreBasePointer())
733 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +0000734
735 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
736
737 // Callee-saved registers are pushed on stack before the stack is realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +0000738 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +0000739 NumBytes = RoundUpToAlignment(NumBytes, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000740
741 // Get the offset of the stack slot for the EBP register, which is
742 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
743 // Update the frame offset adjustment.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000744 if (!IsFunclet)
745 MFI->setOffsetAdjustment(-NumBytes);
746 else
David Blaikie757908e2015-09-30 20:37:48 +0000747 assert(MFI->getOffsetAdjustment() == -(int)NumBytes &&
Reid Klecknera13dfd52015-09-29 23:32:01 +0000748 "should calculate same local variable offset for funclets");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000749
750 // Save EBP/RBP into the appropriate stack slot.
751 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
752 .addReg(MachineFramePtr, RegState::Kill)
753 .setMIFlag(MachineInstr::FrameSetup);
754
755 if (NeedsDwarfCFI) {
756 // Mark the place where EBP/RBP was saved.
757 // Define the current CFA rule to use the provided offset.
758 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000759 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000760 MCCFIInstruction::createDefCfaOffset(nullptr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000761
762 // Change the rule for the FramePtr to be an "offset" rule.
Reid Kleckner034ea962015-06-18 20:32:02 +0000763 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000764 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createOffset(
765 nullptr, DwarfFramePtr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000766 }
767
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000768 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000769 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg))
770 .addImm(FramePtr)
771 .setMIFlag(MachineInstr::FrameSetup);
772 }
773
Reid Klecknera13dfd52015-09-29 23:32:01 +0000774 if (!IsWin64Prologue && !IsFunclet) {
David Majnemer93c22a42015-02-10 00:57:42 +0000775 // Update EBP with the new base value.
776 BuildMI(MBB, MBBI, DL,
777 TII.get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr),
778 FramePtr)
779 .addReg(StackPtr)
780 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000781
Reid Klecknera13dfd52015-09-29 23:32:01 +0000782 if (NeedsDwarfCFI) {
783 // Mark effective beginning of when frame pointer becomes valid.
784 // Define the current CFA to use the EBP/RBP register.
785 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
786 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createDefCfaRegister(
787 nullptr, DwarfFramePtr));
788 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000789 }
790
Reid Kleckner64b003f2015-11-09 21:04:00 +0000791 // Mark the FramePtr as live-in in every block. Don't do this again for
792 // funclet prologues.
793 if (!IsFunclet) {
794 for (MachineBasicBlock &EveryMBB : MF)
795 EveryMBB.addLiveIn(MachineFramePtr);
796 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000797 } else {
Reid Klecknera13dfd52015-09-29 23:32:01 +0000798 assert(!IsFunclet && "funclets without FPs not yet implemented");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000799 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
800 }
801
Reid Klecknera13dfd52015-09-29 23:32:01 +0000802 // For EH funclets, only allocate enough space for outgoing calls. Save the
803 // NumBytes value that we would've used for the parent frame.
804 unsigned ParentFrameNumBytes = NumBytes;
805 if (IsFunclet)
Reid Kleckner28e49032015-10-16 23:43:27 +0000806 NumBytes = getWinEHFuncletFrameSize(MF);
Reid Klecknera13dfd52015-09-29 23:32:01 +0000807
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000808 // Skip the callee-saved push instructions.
809 bool PushedRegs = false;
810 int StackOffset = 2 * stackGrowth;
811
812 while (MBBI != MBB.end() &&
Michael Kupersteine1ea4e7d2015-07-16 12:27:59 +0000813 MBBI->getFlag(MachineInstr::FrameSetup) &&
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000814 (MBBI->getOpcode() == X86::PUSH32r ||
815 MBBI->getOpcode() == X86::PUSH64r)) {
816 PushedRegs = true;
817 unsigned Reg = MBBI->getOperand(0).getReg();
818 ++MBBI;
819
820 if (!HasFP && NeedsDwarfCFI) {
821 // Mark callee-saved push instruction.
822 // Define the current CFA rule to use the provided offset.
823 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000824 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000825 MCCFIInstruction::createDefCfaOffset(nullptr, StackOffset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000826 StackOffset += stackGrowth;
827 }
828
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000829 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000830 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg)).addImm(Reg).setMIFlag(
831 MachineInstr::FrameSetup);
832 }
833 }
834
835 // Realign stack after we pushed callee-saved registers (so that we'll be
836 // able to calculate their offsets from the frame pointer).
David Majnemer93c22a42015-02-10 00:57:42 +0000837 // Don't do this for Win64, it needs to realign the stack after the prologue.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000838 if (!IsWin64Prologue && !IsFunclet && TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000839 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner6ddae312015-11-05 21:09:49 +0000840 BuildStackAlignAND(MBB, MBBI, DL, StackPtr, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000841 }
842
843 // If there is an SUB32ri of ESP immediately before this instruction, merge
844 // the two. This can be the case when tail call elimination is enabled and
845 // the callee has more arguments then the caller.
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000846 NumBytes -= mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000847
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000848 // Adjust stack pointer: ESP -= numbytes.
849
850 // Windows and cygwin/mingw require a prologue helper routine when allocating
851 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
852 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
853 // stack and adjust the stack pointer in one go. The 64-bit version of
854 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
855 // responsible for adjusting the stack pointer. Touching the stack at 4K
856 // increments is necessary to ensure that the guard pages used by the OS
857 // virtual memory manager are allocated in correct sequence.
David Majnemer89d05642015-02-21 01:04:47 +0000858 uint64_t AlignedNumBytes = NumBytes;
Reid Klecknera13dfd52015-09-29 23:32:01 +0000859 if (IsWin64Prologue && !IsFunclet && TRI->needsStackRealignment(MF))
David Majnemer89d05642015-02-21 01:04:47 +0000860 AlignedNumBytes = RoundUpToAlignment(AlignedNumBytes, MaxAlign);
861 if (AlignedNumBytes >= StackProbeSize && UseStackProbe) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000862 // Check whether EAX is livein for this function.
863 bool isEAXAlive = isEAXLiveIn(MF);
864
865 if (isEAXAlive) {
866 // Sanity check that EAX is not livein for this function.
867 // It should not be, so throw an assert.
868 assert(!Is64Bit && "EAX is livein in x64 case!");
869
870 // Save EAX
871 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
872 .addReg(X86::EAX, RegState::Kill)
873 .setMIFlag(MachineInstr::FrameSetup);
874 }
875
876 if (Is64Bit) {
877 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
878 // Function prologue is responsible for adjusting the stack pointer.
David Majnemer006c4902015-02-23 21:50:30 +0000879 if (isUInt<32>(NumBytes)) {
880 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
881 .addImm(NumBytes)
882 .setMIFlag(MachineInstr::FrameSetup);
883 } else if (isInt<32>(NumBytes)) {
884 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri32), X86::RAX)
885 .addImm(NumBytes)
886 .setMIFlag(MachineInstr::FrameSetup);
887 } else {
888 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
889 .addImm(NumBytes)
890 .setMIFlag(MachineInstr::FrameSetup);
891 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000892 } else {
893 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
894 // We'll also use 4 already allocated bytes for EAX.
895 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
896 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
897 .setMIFlag(MachineInstr::FrameSetup);
898 }
899
900 // Save a pointer to the MI where we set AX.
901 MachineBasicBlock::iterator SetRAX = MBBI;
902 --SetRAX;
903
904 // Call __chkstk, __chkstk_ms, or __alloca.
905 emitStackProbeCall(MF, MBB, MBBI, DL);
906
907 // Apply the frame setup flag to all inserted instrs.
908 for (; SetRAX != MBBI; ++SetRAX)
909 SetRAX->setFlag(MachineInstr::FrameSetup);
910
911 if (isEAXAlive) {
912 // Restore EAX
913 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
914 X86::EAX),
915 StackPtr, false, NumBytes - 4);
916 MI->setFlag(MachineInstr::FrameSetup);
917 MBB.insert(MBBI, MI);
918 }
919 } else if (NumBytes) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000920 emitSPUpdate(MBB, MBBI, -(int64_t)NumBytes, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000921 }
922
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000923 if (NeedsWinCFI && NumBytes)
David Majnemer93c22a42015-02-10 00:57:42 +0000924 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_StackAlloc))
925 .addImm(NumBytes)
926 .setMIFlag(MachineInstr::FrameSetup);
927
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000928 int SEHFrameOffset = 0;
Reid Kleckner6ddae312015-11-05 21:09:49 +0000929 unsigned SPOrEstablisher = IsFunclet ? Establisher : StackPtr;
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000930 if (IsWin64Prologue && HasFP) {
Reid Klecknera13dfd52015-09-29 23:32:01 +0000931 // Set RBP to a small fixed offset from RSP. In the funclet case, we base
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000932 // this calculation on the incoming establisher, which holds the value of
933 // RSP from the parent frame at the end of the prologue.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000934 SEHFrameOffset = calculateSetFPREG(ParentFrameNumBytes);
David Majnemer31d868b2015-02-23 21:50:27 +0000935 if (SEHFrameOffset)
936 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA64r), FramePtr),
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000937 SPOrEstablisher, false, SEHFrameOffset);
David Majnemer31d868b2015-02-23 21:50:27 +0000938 else
Reid Klecknera13dfd52015-09-29 23:32:01 +0000939 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64rr), FramePtr)
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000940 .addReg(SPOrEstablisher);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000941
Reid Klecknera13dfd52015-09-29 23:32:01 +0000942 // If this is not a funclet, emit the CFI describing our frame pointer.
943 if (NeedsWinCFI && !IsFunclet)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000944 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SetFrame))
945 .addImm(FramePtr)
946 .addImm(SEHFrameOffset)
947 .setMIFlag(MachineInstr::FrameSetup);
Reid Klecknera13dfd52015-09-29 23:32:01 +0000948 } else if (IsFunclet && STI.is32Bit()) {
949 // Reset EBP / ESI to something good for funclets.
950 MBBI = restoreWin32EHStackPointers(MBB, MBBI, DL);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000951 }
952
David Majnemera7d908e2015-02-10 19:01:47 +0000953 while (MBBI != MBB.end() && MBBI->getFlag(MachineInstr::FrameSetup)) {
954 const MachineInstr *FrameInstr = &*MBBI;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000955 ++MBBI;
956
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000957 if (NeedsWinCFI) {
David Majnemera7d908e2015-02-10 19:01:47 +0000958 int FI;
959 if (unsigned Reg = TII.isStoreToStackSlot(FrameInstr, FI)) {
960 if (X86::FR64RegClass.contains(Reg)) {
James Y Knight5567baf2015-08-15 02:32:35 +0000961 unsigned IgnoredFrameReg;
962 int Offset = getFrameIndexReference(MF, FI, IgnoredFrameReg);
David Majnemera7d908e2015-02-10 19:01:47 +0000963 Offset += SEHFrameOffset;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000964
David Majnemera7d908e2015-02-10 19:01:47 +0000965 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SaveXMM))
966 .addImm(Reg)
967 .addImm(Offset)
968 .setMIFlag(MachineInstr::FrameSetup);
969 }
970 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000971 }
David Majnemera7d908e2015-02-10 19:01:47 +0000972 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000973
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000974 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000975 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_EndPrologue))
976 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000977
David Majnemer93c22a42015-02-10 00:57:42 +0000978 // Realign stack after we spilled callee-saved registers (so that we'll be
979 // able to calculate their offsets from the frame pointer).
980 // Win64 requires aligning the stack after the prologue.
Reid Kleckner034ea962015-06-18 20:32:02 +0000981 if (IsWin64Prologue && TRI->needsStackRealignment(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +0000982 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner6ddae312015-11-05 21:09:49 +0000983 BuildStackAlignAND(MBB, MBBI, DL, SPOrEstablisher, MaxAlign);
David Majnemer93c22a42015-02-10 00:57:42 +0000984 }
985
Reid Kleckner6ddae312015-11-05 21:09:49 +0000986 // We already dealt with stack realignment and funclets above.
987 if (IsFunclet && STI.is32Bit())
988 return;
989
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000990 // If we need a base pointer, set it up here. It's whatever the value
991 // of the stack pointer is at this point. Any variable size objects
992 // will be allocated after this, so we can still use the base pointer
993 // to reference locals.
Reid Kleckner034ea962015-06-18 20:32:02 +0000994 if (TRI->hasBasePointer(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000995 // Update the base pointer with the current stack pointer.
996 unsigned Opc = Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr;
997 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
Reid Kleckner6ddae312015-11-05 21:09:49 +0000998 .addReg(SPOrEstablisher)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000999 .setMIFlag(MachineInstr::FrameSetup);
1000 if (X86FI->getRestoreBasePointer()) {
Reid Klecknere69bdb82015-07-07 23:45:58 +00001001 // Stash value of base pointer. Saving RSP instead of EBP shortens
1002 // dependence chain. Used by SjLj EH.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001003 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
1004 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)),
1005 FramePtr, true, X86FI->getRestoreBasePointerOffset())
Reid Kleckner6ddae312015-11-05 21:09:49 +00001006 .addReg(SPOrEstablisher)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001007 .setMIFlag(MachineInstr::FrameSetup);
1008 }
Reid Klecknere69bdb82015-07-07 23:45:58 +00001009
Reid Kleckner6ddae312015-11-05 21:09:49 +00001010 if (X86FI->getHasSEHFramePtrSave() && !IsFunclet) {
Reid Klecknere69bdb82015-07-07 23:45:58 +00001011 // Stash the value of the frame pointer relative to the base pointer for
1012 // Win32 EH. This supports Win32 EH, which does the inverse of the above:
1013 // it recovers the frame pointer from the base pointer rather than the
1014 // other way around.
1015 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
Reid Klecknerdf129512015-09-08 22:44:41 +00001016 unsigned UsedReg;
1017 int Offset =
1018 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(), UsedReg);
1019 assert(UsedReg == BasePtr);
1020 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)), UsedReg, true, Offset)
Reid Klecknere69bdb82015-07-07 23:45:58 +00001021 .addReg(FramePtr)
1022 .setMIFlag(MachineInstr::FrameSetup);
1023 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001024 }
1025
1026 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI) {
1027 // Mark end of stack pointer adjustment.
1028 if (!HasFP && NumBytes) {
1029 // Define the current CFA rule to use the provided offset.
1030 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001031 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createDefCfaOffset(
1032 nullptr, -StackSize + stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001033 }
1034
1035 // Emit DWARF info specifying the offsets of the callee-saved registers.
1036 if (PushedRegs)
1037 emitCalleeSavedFrameMoves(MBB, MBBI, DL);
1038 }
1039}
1040
Quentin Colombetaa8020752015-05-27 06:28:41 +00001041bool X86FrameLowering::canUseLEAForSPInEpilogue(
1042 const MachineFunction &MF) const {
Quentin Colombet494eb602015-05-22 18:10:47 +00001043 // We can't use LEA instructions for adjusting the stack pointer if this is a
1044 // leaf function in the Win64 ABI. Only ADD instructions may be used to
1045 // deallocate the stack.
1046 // This means that we can use LEA for SP in two situations:
1047 // 1. We *aren't* using the Win64 ABI which means we are free to use LEA.
1048 // 2. We *have* a frame pointer which means we are permitted to use LEA.
Quentin Colombetaa8020752015-05-27 06:28:41 +00001049 return !MF.getTarget().getMCAsmInfo()->usesWindowsCFI() || hasFP(MF);
1050}
1051
Reid Klecknerdf129512015-09-08 22:44:41 +00001052static bool isFuncletReturnInstr(MachineInstr *MI) {
1053 switch (MI->getOpcode()) {
1054 case X86::CATCHRET:
Reid Kleckner78783912015-09-10 00:25:23 +00001055 case X86::CLEANUPRET:
Reid Klecknerdf129512015-09-08 22:44:41 +00001056 return true;
1057 default:
1058 return false;
1059 }
1060 llvm_unreachable("impossible");
1061}
1062
Reid Kleckner28e49032015-10-16 23:43:27 +00001063unsigned X86FrameLowering::getWinEHFuncletFrameSize(const MachineFunction &MF) const {
1064 // This is the size of the pushed CSRs.
1065 unsigned CSSize =
1066 MF.getInfo<X86MachineFunctionInfo>()->getCalleeSavedFrameSize();
1067 // This is the amount of stack a funclet needs to allocate.
1068 unsigned MaxCallSize = MF.getFrameInfo()->getMaxCallFrameSize();
1069 // RBP is not included in the callee saved register block. After pushing RBP,
1070 // everything is 16 byte aligned. Everything we allocate before an outgoing
1071 // call must also be 16 byte aligned.
1072 unsigned FrameSizeMinusRBP =
1073 RoundUpToAlignment(CSSize + MaxCallSize, getStackAlignment());
1074 // Subtract out the size of the callee saved registers. This is how much stack
1075 // each funclet will allocate.
1076 return FrameSizeMinusRBP - CSSize;
1077}
1078
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001079void X86FrameLowering::emitEpilogue(MachineFunction &MF,
1080 MachineBasicBlock &MBB) const {
1081 const MachineFrameInfo *MFI = MF.getFrameInfo();
1082 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Quentin Colombetaa8020752015-05-27 06:28:41 +00001083 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator();
1084 DebugLoc DL;
1085 if (MBBI != MBB.end())
1086 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001087 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001088 const bool Is64BitILP32 = STI.isTarget64BitILP32();
Reid Kleckner034ea962015-06-18 20:32:02 +00001089 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +00001090 unsigned MachineFramePtr =
1091 Is64BitILP32 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
1092 : FramePtr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001093
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001094 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
1095 bool NeedsWinCFI =
1096 IsWin64Prologue && MF.getFunction()->needsUnwindTableEntry();
Reid Kleckner97797412015-10-07 23:55:01 +00001097 bool IsFunclet = isFuncletReturnInstr(MBBI);
Reid Kleckner51460c12015-11-06 01:49:05 +00001098 MachineBasicBlock *TargetMBB = nullptr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001099
1100 // Get the number of bytes to allocate from the FrameInfo.
1101 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001102 uint64_t MaxAlign = calculateMaxStackAlign(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001103 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
1104 uint64_t NumBytes = 0;
1105
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001106 if (MBBI->getOpcode() == X86::CATCHRET) {
Reid Kleckner51460c12015-11-06 01:49:05 +00001107 // SEH shouldn't use catchret.
1108 assert(!isAsynchronousEHPersonality(
1109 classifyEHPersonality(MF.getFunction()->getPersonalityFn())) &&
1110 "SEH should not use CATCHRET");
1111
Reid Kleckner28e49032015-10-16 23:43:27 +00001112 NumBytes = getWinEHFuncletFrameSize(MF);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001113 assert(hasFP(MF) && "EH funclets without FP not yet implemented");
Reid Kleckner51460c12015-11-06 01:49:05 +00001114 TargetMBB = MBBI->getOperand(0).getMBB();
David Majnemer91b0ab92015-09-29 22:33:36 +00001115
Reid Klecknerda6dcc52015-09-10 22:00:02 +00001116 // Pop EBP.
1117 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::POP64r : X86::POP32r),
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001118 MachineFramePtr)
1119 .setMIFlag(MachineInstr::FrameDestroy);
David Majnemer91b0ab92015-09-29 22:33:36 +00001120 } else if (MBBI->getOpcode() == X86::CLEANUPRET) {
Reid Kleckner28e49032015-10-16 23:43:27 +00001121 NumBytes = getWinEHFuncletFrameSize(MF);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001122 assert(hasFP(MF) && "EH funclets without FP not yet implemented");
1123 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::POP64r : X86::POP32r),
1124 MachineFramePtr)
1125 .setMIFlag(MachineInstr::FrameDestroy);
Reid Klecknerdf129512015-09-08 22:44:41 +00001126 } else if (hasFP(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001127 // Calculate required stack adjustment.
1128 uint64_t FrameSize = StackSize - SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001129 NumBytes = FrameSize - CSSize;
1130
1131 // Callee-saved registers were pushed on stack before the stack was
1132 // realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001133 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +00001134 NumBytes = RoundUpToAlignment(FrameSize, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001135
1136 // Pop EBP.
1137 BuildMI(MBB, MBBI, DL,
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001138 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), MachineFramePtr)
1139 .setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001140 } else {
1141 NumBytes = StackSize - CSSize;
1142 }
David Majnemer93c22a42015-02-10 00:57:42 +00001143 uint64_t SEHStackAllocAmt = NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001144
1145 // Skip the callee-saved pop instructions.
1146 while (MBBI != MBB.begin()) {
1147 MachineBasicBlock::iterator PI = std::prev(MBBI);
1148 unsigned Opc = PI->getOpcode();
1149
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001150 if ((Opc != X86::POP32r || !PI->getFlag(MachineInstr::FrameDestroy)) &&
1151 (Opc != X86::POP64r || !PI->getFlag(MachineInstr::FrameDestroy)) &&
1152 Opc != X86::DBG_VALUE && !PI->isTerminator())
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001153 break;
1154
1155 --MBBI;
1156 }
1157 MachineBasicBlock::iterator FirstCSPop = MBBI;
1158
Reid Kleckner51460c12015-11-06 01:49:05 +00001159 if (TargetMBB) {
David Majnemer35d27b22015-10-09 22:18:45 +00001160 // Fill EAX/RAX with the address of the target block.
1161 unsigned ReturnReg = STI.is64Bit() ? X86::RAX : X86::EAX;
1162 if (STI.is64Bit()) {
Reid Kleckner51460c12015-11-06 01:49:05 +00001163 // LEA64r TargetMBB(%rip), %rax
David Majnemer35d27b22015-10-09 22:18:45 +00001164 BuildMI(MBB, FirstCSPop, DL, TII.get(X86::LEA64r), ReturnReg)
1165 .addReg(X86::RIP)
1166 .addImm(0)
1167 .addReg(0)
Reid Kleckner51460c12015-11-06 01:49:05 +00001168 .addMBB(TargetMBB)
David Majnemer35d27b22015-10-09 22:18:45 +00001169 .addReg(0);
1170 } else {
Reid Kleckner51460c12015-11-06 01:49:05 +00001171 // MOV32ri $TargetMBB, %eax
Reid Kleckner64b003f2015-11-09 21:04:00 +00001172 BuildMI(MBB, FirstCSPop, DL, TII.get(X86::MOV32ri), ReturnReg)
Reid Kleckner51460c12015-11-06 01:49:05 +00001173 .addMBB(TargetMBB);
David Majnemer35d27b22015-10-09 22:18:45 +00001174 }
Reid Kleckner51460c12015-11-06 01:49:05 +00001175 // Record that we've taken the address of TargetMBB and no longer just
Joseph Tremoulet3d0fbf12015-10-23 15:06:05 +00001176 // reference it in a terminator.
Reid Kleckner51460c12015-11-06 01:49:05 +00001177 TargetMBB->setHasAddressTaken();
David Majnemer35d27b22015-10-09 22:18:45 +00001178 }
1179
Quentin Colombetaa8020752015-05-27 06:28:41 +00001180 if (MBBI != MBB.end())
1181 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001182
1183 // If there is an ADD32ri or SUB32ri of ESP immediately before this
1184 // instruction, merge the two instructions.
1185 if (NumBytes || MFI->hasVarSizedObjects())
Michael Kupersteincba308c2015-07-28 08:56:13 +00001186 NumBytes += mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001187
1188 // If dynamic alloca is used, then reset esp to point to the last callee-saved
1189 // slot before popping them off! Same applies for the case, when stack was
Reid Kleckner97797412015-10-07 23:55:01 +00001190 // realigned. Don't do this if this was a funclet epilogue, since the funclets
1191 // will not do realignment or dynamic stack allocation.
1192 if ((TRI->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) &&
1193 !IsFunclet) {
Reid Kleckner034ea962015-06-18 20:32:02 +00001194 if (TRI->needsStackRealignment(MF))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001195 MBBI = FirstCSPop;
David Majnemere1bbad92015-02-25 21:13:37 +00001196 unsigned SEHFrameOffset = calculateSetFPREG(SEHStackAllocAmt);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001197 uint64_t LEAAmount =
1198 IsWin64Prologue ? SEHStackAllocAmt - SEHFrameOffset : -CSSize;
David Majnemere1bbad92015-02-25 21:13:37 +00001199
1200 // There are only two legal forms of epilogue:
1201 // - add SEHAllocationSize, %rsp
1202 // - lea SEHAllocationSize(%FramePtr), %rsp
1203 //
1204 // 'mov %FramePtr, %rsp' will not be recognized as an epilogue sequence.
1205 // However, we may use this sequence if we have a frame pointer because the
1206 // effects of the prologue can safely be undone.
1207 if (LEAAmount != 0) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001208 unsigned Opc = getLEArOpcode(Uses64BitFramePtr);
1209 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
David Majnemere1bbad92015-02-25 21:13:37 +00001210 FramePtr, false, LEAAmount);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001211 --MBBI;
1212 } else {
1213 unsigned Opc = (Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr);
1214 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
1215 .addReg(FramePtr);
1216 --MBBI;
1217 }
1218 } else if (NumBytes) {
1219 // Adjust stack pointer back: ESP += numbytes.
Reid Kleckner98d78032015-06-18 20:22:12 +00001220 emitSPUpdate(MBB, MBBI, NumBytes, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001221 --MBBI;
1222 }
1223
1224 // Windows unwinder will not invoke function's exception handler if IP is
1225 // either in prologue or in epilogue. This behavior causes a problem when a
1226 // call immediately precedes an epilogue, because the return address points
1227 // into the epilogue. To cope with that, we insert an epilogue marker here,
1228 // then replace it with a 'nop' if it ends up immediately after a CALL in the
1229 // final emitted code.
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001230 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001231 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_Epilogue));
1232
Quentin Colombet494eb602015-05-22 18:10:47 +00001233 // Add the return addr area delta back since we are not tail calling.
1234 int Offset = -1 * X86FI->getTCReturnAddrDelta();
1235 assert(Offset >= 0 && "TCDelta should never be positive");
1236 if (Offset) {
1237 MBBI = MBB.getFirstTerminator();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001238
1239 // Check for possible merge with preceding ADD instruction.
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001240 Offset += mergeSPUpdates(MBB, MBBI, true);
Reid Kleckner98d78032015-06-18 20:22:12 +00001241 emitSPUpdate(MBB, MBBI, Offset, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001242 }
1243}
1244
James Y Knight5567baf2015-08-15 02:32:35 +00001245// NOTE: this only has a subset of the full frame index logic. In
1246// particular, the FI < 0 and AfterFPPop logic is handled in
1247// X86RegisterInfo::eliminateFrameIndex, but not here. Possibly
1248// (probably?) it should be moved into here.
1249int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1250 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001251 const MachineFrameInfo *MFI = MF.getFrameInfo();
James Y Knight5567baf2015-08-15 02:32:35 +00001252
1253 // We can't calculate offset from frame pointer if the stack is realigned,
1254 // so enforce usage of stack/base pointer. The base pointer is used when we
1255 // have dynamic allocas in addition to dynamic realignment.
1256 if (TRI->hasBasePointer(MF))
1257 FrameReg = TRI->getBaseRegister();
1258 else if (TRI->needsStackRealignment(MF))
1259 FrameReg = TRI->getStackRegister();
1260 else
1261 FrameReg = TRI->getFrameRegister(MF);
1262
David Majnemer93c22a42015-02-10 00:57:42 +00001263 // Offset will hold the offset from the stack pointer at function entry to the
1264 // object.
1265 // We need to factor in additional offsets applied during the prologue to the
1266 // frame, base, and stack pointer depending on which is used.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001267 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
David Majnemer93c22a42015-02-10 00:57:42 +00001268 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1269 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001270 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001271 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001272 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
David Majnemer93c22a42015-02-10 00:57:42 +00001273 int64_t FPDelta = 0;
1274
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001275 if (IsWin64Prologue) {
David Majnemer89d05642015-02-21 01:04:47 +00001276 assert(!MFI->hasCalls() || (StackSize % 16) == 8);
1277
David Majnemer93c22a42015-02-10 00:57:42 +00001278 // Calculate required stack adjustment.
1279 uint64_t FrameSize = StackSize - SlotSize;
1280 // If required, include space for extra hidden slot for stashing base pointer.
1281 if (X86FI->getRestoreBasePointer())
1282 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001283 uint64_t NumBytes = FrameSize - CSSize;
David Majnemer93c22a42015-02-10 00:57:42 +00001284
David Majnemer93c22a42015-02-10 00:57:42 +00001285 uint64_t SEHFrameOffset = calculateSetFPREG(NumBytes);
David Majnemer13d0b112015-02-10 21:22:05 +00001286 if (FI && FI == X86FI->getFAIndex())
1287 return -SEHFrameOffset;
1288
David Majnemer93c22a42015-02-10 00:57:42 +00001289 // FPDelta is the offset from the "traditional" FP location of the old base
1290 // pointer followed by return address and the location required by the
1291 // restricted Win64 prologue.
1292 // Add FPDelta to all offsets below that go through the frame pointer.
David Majnemer89d05642015-02-21 01:04:47 +00001293 FPDelta = FrameSize - SEHFrameOffset;
1294 assert((!MFI->hasCalls() || (FPDelta % 16) == 0) &&
1295 "FPDelta isn't aligned per the Win64 ABI!");
David Majnemer93c22a42015-02-10 00:57:42 +00001296 }
1297
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001298
Reid Kleckner034ea962015-06-18 20:32:02 +00001299 if (TRI->hasBasePointer(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +00001300 assert(HasFP && "VLAs and dynamic stack realign, but no FP?!");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001301 if (FI < 0) {
1302 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001303 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001304 } else {
1305 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1306 return Offset + StackSize;
1307 }
Reid Kleckner034ea962015-06-18 20:32:02 +00001308 } else if (TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001309 if (FI < 0) {
1310 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001311 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001312 } else {
1313 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1314 return Offset + StackSize;
1315 }
1316 // FIXME: Support tail calls
1317 } else {
David Majnemer93c22a42015-02-10 00:57:42 +00001318 if (!HasFP)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001319 return Offset + StackSize;
1320
1321 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001322 Offset += SlotSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001323
1324 // Skip the RETADDR move area
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001325 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1326 if (TailCallReturnAddrDelta < 0)
1327 Offset -= TailCallReturnAddrDelta;
1328 }
1329
David Majnemer89d05642015-02-21 01:04:47 +00001330 return Offset + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001331}
1332
James Y Knight5567baf2015-08-15 02:32:35 +00001333// Simplified from getFrameIndexReference keeping only StackPointer cases
1334int X86FrameLowering::getFrameIndexReferenceFromSP(const MachineFunction &MF,
1335 int FI,
1336 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001337 const MachineFrameInfo *MFI = MF.getFrameInfo();
1338 // Does not include any dynamic realign.
1339 const uint64_t StackSize = MFI->getStackSize();
1340 {
1341#ifndef NDEBUG
Reid Kleckner6ddae312015-11-05 21:09:49 +00001342 // LLVM arranges the stack as follows:
1343 // ...
1344 // ARG2
1345 // ARG1
1346 // RETADDR
1347 // PUSH RBP <-- RBP points here
1348 // PUSH CSRs
1349 // ~~~~~~~ <-- optional stack realignment dynamic adjustment
1350 // ...
1351 // STACK OBJECTS
1352 // ... <-- RSP after prologue points here
1353 //
1354 // if (hasVarSizedObjects()):
1355 // ... <-- "base pointer" (ESI/RBX) points here
1356 // DYNAMIC ALLOCAS
1357 // ... <-- RSP points here
1358 //
1359 // Case 1: In the simple case of no stack realignment and no dynamic
1360 // allocas, both "fixed" stack objects (arguments and CSRs) are addressable
1361 // with fixed offsets from RSP.
1362 //
1363 // Case 2: In the case of stack realignment with no dynamic allocas, fixed
1364 // stack objects are addressed with RBP and regular stack objects with RSP.
1365 //
1366 // Case 3: In the case of dynamic allocas and stack realignment, RSP is used
1367 // to address stack arguments for outgoing calls and nothing else. The "base
1368 // pointer" points to local variables, and RBP points to fixed objects.
1369 //
1370 // In cases 2 and 3, we can only answer for non-fixed stack objects, and the
1371 // answer we give is relative to the SP after the prologue, and not the
1372 // SP in the middle of the function.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001373
Reid Kleckner6ddae312015-11-05 21:09:49 +00001374 assert((!TRI->needsStackRealignment(MF) || !MFI->isFixedObjectIndex(FI)) &&
1375 "offset from fixed object to SP is not static");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001376
Reid Kleckner6ddae312015-11-05 21:09:49 +00001377 // We don't handle tail calls, and shouldn't be seeing them either.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001378 int TailCallReturnAddrDelta =
1379 MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta();
1380 assert(!(TailCallReturnAddrDelta < 0) && "we don't handle this case!");
1381#endif
1382 }
1383
James Y Knight5567baf2015-08-15 02:32:35 +00001384 // Fill in FrameReg output argument.
1385 FrameReg = TRI->getStackRegister();
1386
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001387 // This is how the math works out:
1388 //
1389 // %rsp grows (i.e. gets lower) left to right. Each box below is
1390 // one word (eight bytes). Obj0 is the stack slot we're trying to
1391 // get to.
1392 //
1393 // ----------------------------------
1394 // | BP | Obj0 | Obj1 | ... | ObjN |
1395 // ----------------------------------
1396 // ^ ^ ^ ^
1397 // A B C E
1398 //
1399 // A is the incoming stack pointer.
1400 // (B - A) is the local area offset (-8 for x86-64) [1]
1401 // (C - A) is the Offset returned by MFI->getObjectOffset for Obj0 [2]
1402 //
1403 // |(E - B)| is the StackSize (absolute value, positive). For a
1404 // stack that grown down, this works out to be (B - E). [3]
1405 //
1406 // E is also the value of %rsp after stack has been set up, and we
1407 // want (C - E) -- the value we can add to %rsp to get to Obj0. Now
1408 // (C - E) == (C - A) - (B - A) + (B - E)
1409 // { Using [1], [2] and [3] above }
1410 // == getObjectOffset - LocalAreaOffset + StackSize
1411 //
1412
1413 // Get the Offset from the StackPointer
1414 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
1415
1416 return Offset + StackSize;
1417}
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001418
1419bool X86FrameLowering::assignCalleeSavedSpillSlots(
1420 MachineFunction &MF, const TargetRegisterInfo *TRI,
1421 std::vector<CalleeSavedInfo> &CSI) const {
1422 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001423 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1424
1425 unsigned CalleeSavedFrameSize = 0;
1426 int SpillSlotOffset = getOffsetOfLocalArea() + X86FI->getTCReturnAddrDelta();
1427
1428 if (hasFP(MF)) {
1429 // emitPrologue always spills frame register the first thing.
1430 SpillSlotOffset -= SlotSize;
1431 MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1432
1433 // Since emitPrologue and emitEpilogue will handle spilling and restoring of
1434 // the frame register, we can delete it from CSI list and not have to worry
1435 // about avoiding it later.
Reid Kleckner034ea962015-06-18 20:32:02 +00001436 unsigned FPReg = TRI->getFrameRegister(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001437 for (unsigned i = 0; i < CSI.size(); ++i) {
1438 if (TRI->regsOverlap(CSI[i].getReg(),FPReg)) {
1439 CSI.erase(CSI.begin() + i);
1440 break;
1441 }
1442 }
1443 }
1444
1445 // Assign slots for GPRs. It increases frame size.
1446 for (unsigned i = CSI.size(); i != 0; --i) {
1447 unsigned Reg = CSI[i - 1].getReg();
1448
1449 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1450 continue;
1451
1452 SpillSlotOffset -= SlotSize;
1453 CalleeSavedFrameSize += SlotSize;
1454
1455 int SlotIndex = MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1456 CSI[i - 1].setFrameIdx(SlotIndex);
1457 }
1458
1459 X86FI->setCalleeSavedFrameSize(CalleeSavedFrameSize);
1460
1461 // Assign slots for XMMs.
1462 for (unsigned i = CSI.size(); i != 0; --i) {
1463 unsigned Reg = CSI[i - 1].getReg();
1464 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
1465 continue;
1466
Reid Kleckner034ea962015-06-18 20:32:02 +00001467 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001468 // ensure alignment
1469 SpillSlotOffset -= std::abs(SpillSlotOffset) % RC->getAlignment();
1470 // spill into slot
1471 SpillSlotOffset -= RC->getSize();
1472 int SlotIndex =
1473 MFI->CreateFixedSpillStackObject(RC->getSize(), SpillSlotOffset);
1474 CSI[i - 1].setFrameIdx(SlotIndex);
1475 MFI->ensureMaxAlignment(RC->getAlignment());
1476 }
1477
1478 return true;
1479}
1480
1481bool X86FrameLowering::spillCalleeSavedRegisters(
1482 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
1483 const std::vector<CalleeSavedInfo> &CSI,
1484 const TargetRegisterInfo *TRI) const {
1485 DebugLoc DL = MBB.findDebugLoc(MI);
1486
Reid Klecknerdf129512015-09-08 22:44:41 +00001487 // Don't save CSRs in 32-bit EH funclets. The caller saves EBX, EBP, ESI, EDI
1488 // for us, and there are no XMM CSRs on Win32.
1489 if (MBB.isEHFuncletEntry() && STI.is32Bit() && STI.isOSWindows())
1490 return true;
1491
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001492 // Push GPRs. It increases frame size.
1493 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
1494 for (unsigned i = CSI.size(); i != 0; --i) {
1495 unsigned Reg = CSI[i - 1].getReg();
1496
1497 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1498 continue;
1499 // Add the callee-saved register as live-in. It's killed at the spill.
1500 MBB.addLiveIn(Reg);
1501
1502 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1503 .setMIFlag(MachineInstr::FrameSetup);
1504 }
1505
1506 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1507 // It can be done by spilling XMMs to stack frame.
1508 for (unsigned i = CSI.size(); i != 0; --i) {
1509 unsigned Reg = CSI[i-1].getReg();
David Majnemera7d908e2015-02-10 19:01:47 +00001510 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001511 continue;
1512 // Add the callee-saved register as live-in. It's killed at the spill.
1513 MBB.addLiveIn(Reg);
1514 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1515
1516 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i - 1].getFrameIdx(), RC,
1517 TRI);
1518 --MI;
1519 MI->setFlag(MachineInstr::FrameSetup);
1520 ++MI;
1521 }
1522
1523 return true;
1524}
1525
1526bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
1527 MachineBasicBlock::iterator MI,
1528 const std::vector<CalleeSavedInfo> &CSI,
1529 const TargetRegisterInfo *TRI) const {
1530 if (CSI.empty())
1531 return false;
1532
Reid Klecknerfc64fae2015-10-01 21:38:24 +00001533 if (isFuncletReturnInstr(MI) && STI.isOSWindows()) {
1534 // Don't restore CSRs in 32-bit EH funclets. Matches
1535 // spillCalleeSavedRegisters.
1536 if (STI.is32Bit())
1537 return true;
1538 // Don't restore CSRs before an SEH catchret. SEH except blocks do not form
1539 // funclets. emitEpilogue transforms these to normal jumps.
1540 if (MI->getOpcode() == X86::CATCHRET) {
1541 const Function *Func = MBB.getParent()->getFunction();
1542 bool IsSEH = isAsynchronousEHPersonality(
1543 classifyEHPersonality(Func->getPersonalityFn()));
1544 if (IsSEH)
1545 return true;
1546 }
1547 }
Reid Klecknerdf129512015-09-08 22:44:41 +00001548
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001549 DebugLoc DL = MBB.findDebugLoc(MI);
1550
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001551 // Reload XMMs from stack frame.
1552 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1553 unsigned Reg = CSI[i].getReg();
1554 if (X86::GR64RegClass.contains(Reg) ||
1555 X86::GR32RegClass.contains(Reg))
1556 continue;
1557
1558 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1559 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(), RC, TRI);
1560 }
1561
1562 // POP GPRs.
1563 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1564 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1565 unsigned Reg = CSI[i].getReg();
1566 if (!X86::GR64RegClass.contains(Reg) &&
1567 !X86::GR32RegClass.contains(Reg))
1568 continue;
1569
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001570 BuildMI(MBB, MI, DL, TII.get(Opc), Reg)
1571 .setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001572 }
1573 return true;
1574}
1575
Matthias Braun02564862015-07-14 17:17:13 +00001576void X86FrameLowering::determineCalleeSaves(MachineFunction &MF,
1577 BitVector &SavedRegs,
1578 RegScavenger *RS) const {
1579 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
1580
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001581 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001582
1583 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1584 int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1585
1586 if (TailCallReturnAddrDelta < 0) {
1587 // create RETURNADDR area
1588 // arg
1589 // arg
1590 // RETADDR
1591 // { ...
1592 // RETADDR area
1593 // ...
1594 // }
1595 // [EBP]
1596 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1597 TailCallReturnAddrDelta - SlotSize, true);
1598 }
1599
1600 // Spill the BasePtr if it's used.
Reid Klecknerdf129512015-09-08 22:44:41 +00001601 if (TRI->hasBasePointer(MF)) {
Matthias Braun02564862015-07-14 17:17:13 +00001602 SavedRegs.set(TRI->getBaseRegister());
Reid Klecknerdf129512015-09-08 22:44:41 +00001603
1604 // Allocate a spill slot for EBP if we have a base pointer and EH funclets.
1605 if (MF.getMMI().hasEHFunclets()) {
1606 int FI = MFI->CreateSpillStackObject(SlotSize, SlotSize);
1607 X86FI->setHasSEHFramePtrSave(true);
1608 X86FI->setSEHFramePtrSaveIndex(FI);
1609 }
1610 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001611}
1612
1613static bool
1614HasNestArgument(const MachineFunction *MF) {
1615 const Function *F = MF->getFunction();
1616 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1617 I != E; I++) {
1618 if (I->hasNestAttr())
1619 return true;
1620 }
1621 return false;
1622}
1623
1624/// GetScratchRegister - Get a temp register for performing work in the
1625/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1626/// and the properties of the function either one or two registers will be
1627/// needed. Set primary to true for the first register, false for the second.
1628static unsigned
1629GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary) {
1630 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1631
1632 // Erlang stuff.
1633 if (CallingConvention == CallingConv::HiPE) {
1634 if (Is64Bit)
1635 return Primary ? X86::R14 : X86::R13;
1636 else
1637 return Primary ? X86::EBX : X86::EDI;
1638 }
1639
1640 if (Is64Bit) {
1641 if (IsLP64)
1642 return Primary ? X86::R11 : X86::R12;
1643 else
1644 return Primary ? X86::R11D : X86::R12D;
1645 }
1646
1647 bool IsNested = HasNestArgument(&MF);
1648
1649 if (CallingConvention == CallingConv::X86_FastCall ||
1650 CallingConvention == CallingConv::Fast) {
1651 if (IsNested)
1652 report_fatal_error("Segmented stacks does not support fastcall with "
1653 "nested function.");
1654 return Primary ? X86::EAX : X86::ECX;
1655 }
1656 if (IsNested)
1657 return Primary ? X86::EDX : X86::EAX;
1658 return Primary ? X86::ECX : X86::EAX;
1659}
1660
1661// The stack limit in the TCB is set to this many bytes above the actual stack
1662// limit.
1663static const uint64_t kSplitStackAvailable = 256;
1664
Quentin Colombet61b305e2015-05-05 17:38:16 +00001665void X86FrameLowering::adjustForSegmentedStacks(
1666 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001667 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001668 uint64_t StackSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001669 unsigned TlsReg, TlsOffset;
1670 DebugLoc DL;
1671
1672 unsigned ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1673 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1674 "Scratch register is live-in");
1675
1676 if (MF.getFunction()->isVarArg())
1677 report_fatal_error("Segmented stacks do not support vararg functions.");
1678 if (!STI.isTargetLinux() && !STI.isTargetDarwin() && !STI.isTargetWin32() &&
1679 !STI.isTargetWin64() && !STI.isTargetFreeBSD() &&
1680 !STI.isTargetDragonFly())
1681 report_fatal_error("Segmented stacks not supported on this platform.");
1682
1683 // Eventually StackSize will be calculated by a link-time pass; which will
1684 // also decide whether checking code needs to be injected into this particular
1685 // prologue.
1686 StackSize = MFI->getStackSize();
1687
1688 // Do not generate a prologue for functions with a stack of size zero
1689 if (StackSize == 0)
1690 return;
1691
1692 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1693 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1694 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1695 bool IsNested = false;
1696
1697 // We need to know if the function has a nest argument only in 64 bit mode.
1698 if (Is64Bit)
1699 IsNested = HasNestArgument(&MF);
1700
1701 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1702 // allocMBB needs to be last (terminating) instruction.
1703
Matthias Braund9da1622015-09-09 18:08:03 +00001704 for (const auto &LI : PrologueMBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +00001705 allocMBB->addLiveIn(LI);
1706 checkMBB->addLiveIn(LI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001707 }
1708
1709 if (IsNested)
1710 allocMBB->addLiveIn(IsLP64 ? X86::R10 : X86::R10D);
1711
1712 MF.push_front(allocMBB);
1713 MF.push_front(checkMBB);
1714
1715 // When the frame size is less than 256 we just compare the stack
1716 // boundary directly to the value of the stack pointer, per gcc.
1717 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1718
1719 // Read the limit off the current stacklet off the stack_guard location.
1720 if (Is64Bit) {
1721 if (STI.isTargetLinux()) {
1722 TlsReg = X86::FS;
1723 TlsOffset = IsLP64 ? 0x70 : 0x40;
1724 } else if (STI.isTargetDarwin()) {
1725 TlsReg = X86::GS;
1726 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
1727 } else if (STI.isTargetWin64()) {
1728 TlsReg = X86::GS;
1729 TlsOffset = 0x28; // pvArbitrary, reserved for application use
1730 } else if (STI.isTargetFreeBSD()) {
1731 TlsReg = X86::FS;
1732 TlsOffset = 0x18;
1733 } else if (STI.isTargetDragonFly()) {
1734 TlsReg = X86::FS;
1735 TlsOffset = 0x20; // use tls_tcb.tcb_segstack
1736 } else {
1737 report_fatal_error("Segmented stacks not supported on this platform.");
1738 }
1739
1740 if (CompareStackPointer)
1741 ScratchReg = IsLP64 ? X86::RSP : X86::ESP;
1742 else
1743 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::LEA64r : X86::LEA64_32r), ScratchReg).addReg(X86::RSP)
1744 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1745
1746 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::CMP64rm : X86::CMP32rm)).addReg(ScratchReg)
1747 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1748 } else {
1749 if (STI.isTargetLinux()) {
1750 TlsReg = X86::GS;
1751 TlsOffset = 0x30;
1752 } else if (STI.isTargetDarwin()) {
1753 TlsReg = X86::GS;
1754 TlsOffset = 0x48 + 90*4;
1755 } else if (STI.isTargetWin32()) {
1756 TlsReg = X86::FS;
1757 TlsOffset = 0x14; // pvArbitrary, reserved for application use
1758 } else if (STI.isTargetDragonFly()) {
1759 TlsReg = X86::FS;
1760 TlsOffset = 0x10; // use tls_tcb.tcb_segstack
1761 } else if (STI.isTargetFreeBSD()) {
1762 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
1763 } else {
1764 report_fatal_error("Segmented stacks not supported on this platform.");
1765 }
1766
1767 if (CompareStackPointer)
1768 ScratchReg = X86::ESP;
1769 else
1770 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
1771 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1772
1773 if (STI.isTargetLinux() || STI.isTargetWin32() || STI.isTargetWin64() ||
1774 STI.isTargetDragonFly()) {
1775 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1776 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1777 } else if (STI.isTargetDarwin()) {
1778
1779 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register.
1780 unsigned ScratchReg2;
1781 bool SaveScratch2;
1782 if (CompareStackPointer) {
1783 // The primary scratch register is available for holding the TLS offset.
1784 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1785 SaveScratch2 = false;
1786 } else {
1787 // Need to use a second register to hold the TLS offset
1788 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, false);
1789
1790 // Unfortunately, with fastcc the second scratch register may hold an
1791 // argument.
1792 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1793 }
1794
1795 // If Scratch2 is live-in then it needs to be saved.
1796 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1797 "Scratch register is live-in and not saved");
1798
1799 if (SaveScratch2)
1800 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1801 .addReg(ScratchReg2, RegState::Kill);
1802
1803 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1804 .addImm(TlsOffset);
1805 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1806 .addReg(ScratchReg)
1807 .addReg(ScratchReg2).addImm(1).addReg(0)
1808 .addImm(0)
1809 .addReg(TlsReg);
1810
1811 if (SaveScratch2)
1812 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1813 }
1814 }
1815
1816 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1817 // It jumps to normal execution of the function body.
Quentin Colombet61b305e2015-05-05 17:38:16 +00001818 BuildMI(checkMBB, DL, TII.get(X86::JA_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001819
1820 // On 32 bit we first push the arguments size and then the frame size. On 64
1821 // bit, we pass the stack frame size in r10 and the argument size in r11.
1822 if (Is64Bit) {
1823 // Functions with nested arguments use R10, so it needs to be saved across
1824 // the call to _morestack
1825
1826 const unsigned RegAX = IsLP64 ? X86::RAX : X86::EAX;
1827 const unsigned Reg10 = IsLP64 ? X86::R10 : X86::R10D;
1828 const unsigned Reg11 = IsLP64 ? X86::R11 : X86::R11D;
1829 const unsigned MOVrr = IsLP64 ? X86::MOV64rr : X86::MOV32rr;
1830 const unsigned MOVri = IsLP64 ? X86::MOV64ri : X86::MOV32ri;
1831
1832 if (IsNested)
1833 BuildMI(allocMBB, DL, TII.get(MOVrr), RegAX).addReg(Reg10);
1834
1835 BuildMI(allocMBB, DL, TII.get(MOVri), Reg10)
1836 .addImm(StackSize);
1837 BuildMI(allocMBB, DL, TII.get(MOVri), Reg11)
1838 .addImm(X86FI->getArgumentStackSize());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001839 } else {
1840 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1841 .addImm(X86FI->getArgumentStackSize());
1842 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1843 .addImm(StackSize);
1844 }
1845
1846 // __morestack is in libgcc
1847 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
1848 // Under the large code model, we cannot assume that __morestack lives
1849 // within 2^31 bytes of the call site, so we cannot use pc-relative
1850 // addressing. We cannot perform the call via a temporary register,
1851 // as the rax register may be used to store the static chain, and all
1852 // other suitable registers may be either callee-save or used for
1853 // parameter passing. We cannot use the stack at this point either
1854 // because __morestack manipulates the stack directly.
1855 //
1856 // To avoid these issues, perform an indirect call via a read-only memory
1857 // location containing the address.
1858 //
1859 // This solution is not perfect, as it assumes that the .rodata section
1860 // is laid out within 2^31 bytes of each function body, but this seems
1861 // to be sufficient for JIT.
1862 BuildMI(allocMBB, DL, TII.get(X86::CALL64m))
1863 .addReg(X86::RIP)
1864 .addImm(0)
1865 .addReg(0)
1866 .addExternalSymbol("__morestack_addr")
1867 .addReg(0);
1868 MF.getMMI().setUsesMorestackAddr(true);
1869 } else {
1870 if (Is64Bit)
1871 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1872 .addExternalSymbol("__morestack");
1873 else
1874 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1875 .addExternalSymbol("__morestack");
1876 }
1877
1878 if (IsNested)
1879 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1880 else
1881 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
1882
Quentin Colombet61b305e2015-05-05 17:38:16 +00001883 allocMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001884
1885 checkMBB->addSuccessor(allocMBB);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001886 checkMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001887
1888#ifdef XDEBUG
1889 MF.verify();
1890#endif
1891}
1892
1893/// Erlang programs may need a special prologue to handle the stack size they
1894/// might need at runtime. That is because Erlang/OTP does not implement a C
1895/// stack but uses a custom implementation of hybrid stack/heap architecture.
1896/// (for more information see Eric Stenman's Ph.D. thesis:
1897/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1898///
1899/// CheckStack:
1900/// temp0 = sp - MaxStack
1901/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1902/// OldStart:
1903/// ...
1904/// IncStack:
1905/// call inc_stack # doubles the stack space
1906/// temp0 = sp - MaxStack
1907/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Quentin Colombet61b305e2015-05-05 17:38:16 +00001908void X86FrameLowering::adjustForHiPEPrologue(
1909 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001910 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001911 DebugLoc DL;
1912 // HiPE-specific values
1913 const unsigned HipeLeafWords = 24;
1914 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1915 const unsigned Guaranteed = HipeLeafWords * SlotSize;
1916 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1917 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1918 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
1919
1920 assert(STI.isTargetLinux() &&
1921 "HiPE prologue is only supported on Linux operating systems.");
1922
1923 // Compute the largest caller's frame that is needed to fit the callees'
1924 // frames. This 'MaxStack' is computed from:
1925 //
1926 // a) the fixed frame size, which is the space needed for all spilled temps,
1927 // b) outgoing on-stack parameter areas, and
1928 // c) the minimum stack space this function needs to make available for the
1929 // functions it calls (a tunable ABI property).
1930 if (MFI->hasCalls()) {
1931 unsigned MoreStackForCalls = 0;
1932
1933 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1934 MBBI != MBBE; ++MBBI)
1935 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
1936 MI != ME; ++MI) {
1937 if (!MI->isCall())
1938 continue;
1939
1940 // Get callee operand.
1941 const MachineOperand &MO = MI->getOperand(0);
1942
1943 // Only take account of global function calls (no closures etc.).
1944 if (!MO.isGlobal())
1945 continue;
1946
1947 const Function *F = dyn_cast<Function>(MO.getGlobal());
1948 if (!F)
1949 continue;
1950
1951 // Do not update 'MaxStack' for primitive and built-in functions
1952 // (encoded with names either starting with "erlang."/"bif_" or not
1953 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1954 // "_", such as the BIF "suspend_0") as they are executed on another
1955 // stack.
1956 if (F->getName().find("erlang.") != StringRef::npos ||
1957 F->getName().find("bif_") != StringRef::npos ||
1958 F->getName().find_first_of("._") == StringRef::npos)
1959 continue;
1960
1961 unsigned CalleeStkArity =
1962 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1963 if (HipeLeafWords - 1 > CalleeStkArity)
1964 MoreStackForCalls = std::max(MoreStackForCalls,
1965 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1966 }
1967 MaxStack += MoreStackForCalls;
1968 }
1969
1970 // If the stack frame needed is larger than the guaranteed then runtime checks
1971 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1972 if (MaxStack > Guaranteed) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001973 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1974 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1975
Matthias Braund9da1622015-09-09 18:08:03 +00001976 for (const auto &LI : PrologueMBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +00001977 stackCheckMBB->addLiveIn(LI);
1978 incStackMBB->addLiveIn(LI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001979 }
1980
1981 MF.push_front(incStackMBB);
1982 MF.push_front(stackCheckMBB);
1983
1984 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1985 unsigned LEAop, CMPop, CALLop;
1986 if (Is64Bit) {
1987 SPReg = X86::RSP;
1988 PReg = X86::RBP;
1989 LEAop = X86::LEA64r;
1990 CMPop = X86::CMP64rm;
1991 CALLop = X86::CALL64pcrel32;
1992 SPLimitOffset = 0x90;
1993 } else {
1994 SPReg = X86::ESP;
1995 PReg = X86::EBP;
1996 LEAop = X86::LEA32r;
1997 CMPop = X86::CMP32rm;
1998 CALLop = X86::CALLpcrel32;
1999 SPLimitOffset = 0x4c;
2000 }
2001
2002 ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
2003 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
2004 "HiPE prologue scratch register is live-in");
2005
2006 // Create new MBB for StackCheck:
2007 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
2008 SPReg, false, -MaxStack);
2009 // SPLimitOffset is in a fixed heap location (pointed by BP).
2010 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
2011 .addReg(ScratchReg), PReg, false, SPLimitOffset);
Quentin Colombet61b305e2015-05-05 17:38:16 +00002012 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002013
2014 // Create new MBB for IncStack:
2015 BuildMI(incStackMBB, DL, TII.get(CALLop)).
2016 addExternalSymbol("inc_stack_0");
2017 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
2018 SPReg, false, -MaxStack);
2019 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
2020 .addReg(ScratchReg), PReg, false, SPLimitOffset);
2021 BuildMI(incStackMBB, DL, TII.get(X86::JLE_1)).addMBB(incStackMBB);
2022
Quentin Colombet61b305e2015-05-05 17:38:16 +00002023 stackCheckMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002024 stackCheckMBB->addSuccessor(incStackMBB, 1);
Quentin Colombet61b305e2015-05-05 17:38:16 +00002025 incStackMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002026 incStackMBB->addSuccessor(incStackMBB, 1);
2027 }
2028#ifdef XDEBUG
2029 MF.verify();
2030#endif
2031}
2032
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002033bool X86FrameLowering::adjustStackWithPops(MachineBasicBlock &MBB,
2034 MachineBasicBlock::iterator MBBI, DebugLoc DL, int Offset) const {
2035
Michael Kupersteind9264652015-09-16 11:27:20 +00002036 if (Offset <= 0)
2037 return false;
2038
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002039 if (Offset % SlotSize)
2040 return false;
2041
2042 int NumPops = Offset / SlotSize;
2043 // This is only worth it if we have at most 2 pops.
2044 if (NumPops != 1 && NumPops != 2)
2045 return false;
2046
2047 // Handle only the trivial case where the adjustment directly follows
2048 // a call. This is the most common one, anyway.
2049 if (MBBI == MBB.begin())
2050 return false;
2051 MachineBasicBlock::iterator Prev = std::prev(MBBI);
2052 if (!Prev->isCall() || !Prev->getOperand(1).isRegMask())
2053 return false;
2054
2055 unsigned Regs[2];
2056 unsigned FoundRegs = 0;
2057
2058 auto RegMask = Prev->getOperand(1);
Michael Kupersteind9264652015-09-16 11:27:20 +00002059
2060 auto &RegClass =
2061 Is64Bit ? X86::GR64_NOREX_NOSPRegClass : X86::GR32_NOREX_NOSPRegClass;
2062 // Try to find up to NumPops free registers.
2063 for (auto Candidate : RegClass) {
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002064
2065 // Poor man's liveness:
2066 // Since we're immediately after a call, any register that is clobbered
2067 // by the call and not defined by it can be considered dead.
2068 if (!RegMask.clobbersPhysReg(Candidate))
2069 continue;
2070
2071 bool IsDef = false;
2072 for (const MachineOperand &MO : Prev->implicit_operands()) {
2073 if (MO.isReg() && MO.isDef() && MO.getReg() == Candidate) {
2074 IsDef = true;
2075 break;
2076 }
2077 }
2078
2079 if (IsDef)
2080 continue;
2081
2082 Regs[FoundRegs++] = Candidate;
2083 if (FoundRegs == (unsigned)NumPops)
2084 break;
2085 }
2086
2087 if (FoundRegs == 0)
2088 return false;
2089
2090 // If we found only one free register, but need two, reuse the same one twice.
2091 while (FoundRegs < (unsigned)NumPops)
2092 Regs[FoundRegs++] = Regs[0];
2093
2094 for (int i = 0; i < NumPops; ++i)
2095 BuildMI(MBB, MBBI, DL,
2096 TII.get(STI.is64Bit() ? X86::POP64r : X86::POP32r), Regs[i]);
2097
2098 return true;
2099}
2100
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002101void X86FrameLowering::
2102eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
2103 MachineBasicBlock::iterator I) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002104 bool reserveCallFrame = hasReservedCallFrame(MF);
Matthias Braunfa3872e2015-05-18 20:27:55 +00002105 unsigned Opcode = I->getOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002106 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002107 DebugLoc DL = I->getDebugLoc();
2108 uint64_t Amount = !reserveCallFrame ? I->getOperand(0).getImm() : 0;
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002109 uint64_t InternalAmt = (isDestroy || Amount) ? I->getOperand(1).getImm() : 0;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002110 I = MBB.erase(I);
2111
2112 if (!reserveCallFrame) {
2113 // If the stack pointer can be changed after prologue, turn the
2114 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
2115 // adjcallstackdown instruction into 'add ESP, <amt>'
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002116
2117 // We need to keep the stack aligned properly. To do this, we round the
2118 // amount of space needed for the outgoing arguments up to the next
2119 // alignment boundary.
David Majnemer93c22a42015-02-10 00:57:42 +00002120 unsigned StackAlign = getStackAlignment();
2121 Amount = RoundUpToAlignment(Amount, StackAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002122
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002123 MachineModuleInfo &MMI = MF.getMMI();
2124 const Function *Fn = MF.getFunction();
2125 bool WindowsCFI = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
2126 bool DwarfCFI = !WindowsCFI &&
2127 (MMI.hasDebugInfo() || Fn->needsUnwindTableEntry());
2128
Michael Kuperstein259f1502015-10-07 07:01:31 +00002129 // If we have any exception handlers in this function, and we adjust
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002130 // the SP before calls, we may need to indicate this to the unwinder
2131 // using GNU_ARGS_SIZE. Note that this may be necessary even when
2132 // Amount == 0, because the preceding function may have set a non-0
2133 // GNU_ARGS_SIZE.
Michael Kuperstein259f1502015-10-07 07:01:31 +00002134 // TODO: We don't need to reset this between subsequent functions,
2135 // if it didn't change.
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002136 bool HasDwarfEHHandlers = !WindowsCFI &&
2137 !MF.getMMI().getLandingPads().empty();
Michael Kuperstein259f1502015-10-07 07:01:31 +00002138
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002139 if (HasDwarfEHHandlers && !isDestroy &&
Michael Kuperstein259f1502015-10-07 07:01:31 +00002140 MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences())
Michael Kupersteinaf22daf2015-10-13 06:22:30 +00002141 BuildCFI(MBB, I, DL,
2142 MCCFIInstruction::createGnuArgsSize(nullptr, Amount));
Michael Kuperstein259f1502015-10-07 07:01:31 +00002143
2144 if (Amount == 0)
2145 return;
2146
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002147 // Factor out the amount that gets handled inside the sequence
2148 // (Pushes of argument for frame setup, callee pops for frame destroy)
2149 Amount -= InternalAmt;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002150
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002151 // If this is a callee-pop calling convention, and we're emitting precise
2152 // SP-based CFI, emit a CFA adjust for the amount the callee popped.
2153 if (isDestroy && InternalAmt && DwarfCFI && !hasFP(MF) &&
2154 MMI.usePreciseUnwindInfo())
2155 BuildCFI(MBB, I, DL,
2156 MCCFIInstruction::createAdjustCfaOffset(nullptr, -InternalAmt));
2157
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002158 if (Amount) {
Reid Kleckner98d78032015-06-18 20:22:12 +00002159 // Add Amount to SP to destroy a frame, and subtract to setup.
2160 int Offset = isDestroy ? Amount : -Amount;
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002161
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002162 if (!(Fn->optForMinSize() &&
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002163 adjustStackWithPops(MBB, I, DL, Offset)))
2164 BuildStackAdjustment(MBB, I, DL, Offset, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002165 }
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002166
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002167 if (DwarfCFI && !hasFP(MF)) {
2168 // If we don't have FP, but need to generate unwind information,
2169 // we need to set the correct CFA offset after the stack adjustment.
2170 // How much we adjust the CFA offset depends on whether we're emitting
2171 // CFI only for EH purposes or for debugging. EH only requires the CFA
2172 // offset to be correct at each call site, while for debugging we want
2173 // it to be more precise.
2174 int CFAOffset = Amount;
2175 if (!MMI.usePreciseUnwindInfo())
2176 CFAOffset += InternalAmt;
2177 CFAOffset = isDestroy ? -CFAOffset : CFAOffset;
2178 BuildCFI(MBB, I, DL,
2179 MCCFIInstruction::createAdjustCfaOffset(nullptr, CFAOffset));
2180 }
2181
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002182 return;
2183 }
2184
Reid Kleckner98d78032015-06-18 20:22:12 +00002185 if (isDestroy && InternalAmt) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002186 // If we are performing frame pointer elimination and if the callee pops
2187 // something off the stack pointer, add it back. We do this until we have
2188 // more advanced stack pointer tracking ability.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002189 // We are not tracking the stack pointer adjustment by the callee, so make
2190 // sure we restore the stack pointer immediately after the call, there may
2191 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
2192 MachineBasicBlock::iterator B = MBB.begin();
2193 while (I != B && !std::prev(I)->isCall())
2194 --I;
Reid Kleckner98d78032015-06-18 20:22:12 +00002195 BuildStackAdjustment(MBB, I, DL, -InternalAmt, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002196 }
2197}
2198
Quentin Colombetaa8020752015-05-27 06:28:41 +00002199bool X86FrameLowering::canUseAsEpilogue(const MachineBasicBlock &MBB) const {
2200 assert(MBB.getParent() && "Block is not attached to a function!");
2201
Quentin Colombet421723c2015-11-04 22:37:28 +00002202 // Win64 has strict requirements in terms of epilogue and we are
2203 // not taking a chance at messing with them.
2204 // I.e., unless this block is already an exit block, we can't use
2205 // it as an epilogue.
2206 if (MBB.getParent()->getSubtarget<X86Subtarget>().isTargetWin64() &&
2207 !MBB.succ_empty() && !MBB.isReturnBlock())
2208 return false;
2209
Quentin Colombetaa8020752015-05-27 06:28:41 +00002210 if (canUseLEAForSPInEpilogue(*MBB.getParent()))
2211 return true;
2212
2213 // If we cannot use LEA to adjust SP, we may need to use ADD, which
2214 // clobbers the EFLAGS. Check that none of the terminators reads the
2215 // EFLAGS, and if one uses it, conservatively assume this is not
2216 // safe to insert the epilogue here.
2217 return !terminatorsNeedFlagsAsInput(MBB);
2218}
Reid Klecknerdf129512015-09-08 22:44:41 +00002219
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002220MachineBasicBlock::iterator X86FrameLowering::restoreWin32EHStackPointers(
Reid Klecknerdf129512015-09-08 22:44:41 +00002221 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002222 DebugLoc DL, bool RestoreSP) const {
Reid Klecknerdf129512015-09-08 22:44:41 +00002223 assert(STI.isTargetWindowsMSVC() && "funclets only supported in MSVC env");
2224 assert(STI.isTargetWin32() && "EBP/ESI restoration only required on win32");
2225 assert(STI.is32Bit() && !Uses64BitFramePtr &&
2226 "restoring EBP/ESI on non-32-bit target");
2227
2228 MachineFunction &MF = *MBB.getParent();
2229 unsigned FramePtr = TRI->getFrameRegister(MF);
2230 unsigned BasePtr = TRI->getBaseRegister();
2231 MachineModuleInfo &MMI = MF.getMMI();
2232 const Function *Fn = MF.getFunction();
2233 WinEHFuncInfo &FuncInfo = MMI.getWinEHFuncInfo(Fn);
2234 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
2235 MachineFrameInfo *MFI = MF.getFrameInfo();
2236
2237 // FIXME: Don't set FrameSetup flag in catchret case.
2238
2239 int FI = FuncInfo.EHRegNodeFrameIndex;
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002240 int EHRegSize = MFI->getObjectSize(FI);
2241
2242 if (RestoreSP) {
2243 // MOV32rm -EHRegSize(%ebp), %esp
2244 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32rm), X86::ESP),
2245 X86::EBP, true, -EHRegSize)
2246 .setMIFlag(MachineInstr::FrameSetup);
2247 }
2248
Reid Klecknerdf129512015-09-08 22:44:41 +00002249 unsigned UsedReg;
2250 int EHRegOffset = getFrameIndexReference(MF, FI, UsedReg);
Reid Klecknerdf129512015-09-08 22:44:41 +00002251 int EndOffset = -EHRegOffset - EHRegSize;
Reid Klecknerb005d282015-09-16 20:16:27 +00002252 FuncInfo.EHRegNodeEndOffset = EndOffset;
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002253
Reid Klecknerdf129512015-09-08 22:44:41 +00002254 if (UsedReg == FramePtr) {
2255 // ADD $offset, %ebp
Reid Klecknerdf129512015-09-08 22:44:41 +00002256 unsigned ADDri = getADDriOpcode(false, EndOffset);
2257 BuildMI(MBB, MBBI, DL, TII.get(ADDri), FramePtr)
2258 .addReg(FramePtr)
2259 .addImm(EndOffset)
2260 .setMIFlag(MachineInstr::FrameSetup)
2261 ->getOperand(3)
2262 .setIsDead();
Reid Klecknerb2244cb2015-10-08 18:41:52 +00002263 assert(EndOffset >= 0 &&
2264 "end of registration object above normal EBP position!");
2265 } else if (UsedReg == BasePtr) {
Reid Klecknerdf129512015-09-08 22:44:41 +00002266 // LEA offset(%ebp), %esi
2267 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA32r), BasePtr),
2268 FramePtr, false, EndOffset)
2269 .setMIFlag(MachineInstr::FrameSetup);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002270 // MOV32rm SavedEBPOffset(%esi), %ebp
Reid Klecknerdf129512015-09-08 22:44:41 +00002271 assert(X86FI->getHasSEHFramePtrSave());
2272 int Offset =
2273 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(), UsedReg);
2274 assert(UsedReg == BasePtr);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002275 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32rm), FramePtr),
2276 UsedReg, true, Offset)
Reid Klecknerdf129512015-09-08 22:44:41 +00002277 .setMIFlag(MachineInstr::FrameSetup);
Reid Klecknerb2244cb2015-10-08 18:41:52 +00002278 } else {
2279 llvm_unreachable("32-bit frames with WinEH must use FramePtr or BasePtr");
Reid Klecknerdf129512015-09-08 22:44:41 +00002280 }
2281 return MBBI;
2282}
Reid Kleckner28e49032015-10-16 23:43:27 +00002283
2284unsigned X86FrameLowering::getWinEHParentFrameOffset(const MachineFunction &MF) const {
2285 // RDX, the parent frame pointer, is homed into 16(%rsp) in the prologue.
2286 unsigned Offset = 16;
2287 // RBP is immediately pushed.
2288 Offset += SlotSize;
2289 // All callee-saved registers are then pushed.
2290 Offset += MF.getInfo<X86MachineFunctionInfo>()->getCalleeSavedFrameSize();
2291 // Every funclet allocates enough stack space for the largest outgoing call.
2292 Offset += getWinEHFuncletFrameSize(MF);
2293 return Offset;
2294}