blob: 72baa078661ad2051d6cc0eda53b4f256b89810e [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
Andy Ayers809cbe92015-11-10 01:50:49 +0000434MachineInstr *X86FrameLowering::emitStackProbe(MachineFunction &MF,
435 MachineBasicBlock &MBB,
436 MachineBasicBlock::iterator MBBI,
437 DebugLoc DL,
438 bool InProlog) const {
439 const X86Subtarget &STI = MF.getSubtarget<X86Subtarget>();
440 if (STI.isTargetWindowsCoreCLR()) {
441 if (InProlog) {
442 return emitStackProbeInlineStub(MF, MBB, MBBI, DL, true);
443 } else {
444 return emitStackProbeInline(MF, MBB, MBBI, DL, false);
445 }
446 } else {
447 return emitStackProbeCall(MF, MBB, MBBI, DL, InProlog);
448 }
449}
450
451void X86FrameLowering::inlineStackProbe(MachineFunction &MF,
452 MachineBasicBlock &PrologMBB) const {
453 const StringRef ChkStkStubSymbol = "__chkstk_stub";
454 MachineInstr *ChkStkStub = nullptr;
455
456 for (MachineInstr &MI : PrologMBB) {
457 if (MI.isCall() && MI.getOperand(0).isSymbol() &&
458 ChkStkStubSymbol == MI.getOperand(0).getSymbolName()) {
459 ChkStkStub = &MI;
460 break;
461 }
462 }
463
464 if (ChkStkStub != nullptr) {
465 MachineBasicBlock::iterator MBBI = std::next(ChkStkStub->getIterator());
466 assert(std::prev(MBBI).operator==(ChkStkStub) &&
467 "MBBI expected after __chkstk_stub.");
468 DebugLoc DL = PrologMBB.findDebugLoc(MBBI);
469 emitStackProbeInline(MF, PrologMBB, MBBI, DL, true);
470 ChkStkStub->eraseFromParent();
471 }
472}
473
474MachineInstr *X86FrameLowering::emitStackProbeInline(
475 MachineFunction &MF, MachineBasicBlock &MBB,
476 MachineBasicBlock::iterator MBBI, DebugLoc DL, bool InProlog) const {
477 const X86Subtarget &STI = MF.getSubtarget<X86Subtarget>();
478 assert(STI.is64Bit() && "different expansion needed for 32 bit");
479 assert(STI.isTargetWindowsCoreCLR() && "custom expansion expects CoreCLR");
480 const TargetInstrInfo &TII = *STI.getInstrInfo();
481 const BasicBlock *LLVM_BB = MBB.getBasicBlock();
482
483 // RAX contains the number of bytes of desired stack adjustment.
484 // The handling here assumes this value has already been updated so as to
485 // maintain stack alignment.
486 //
487 // We need to exit with RSP modified by this amount and execute suitable
488 // page touches to notify the OS that we're growing the stack responsibly.
489 // All stack probing must be done without modifying RSP.
490 //
491 // MBB:
492 // SizeReg = RAX;
493 // ZeroReg = 0
494 // CopyReg = RSP
495 // Flags, TestReg = CopyReg - SizeReg
496 // FinalReg = !Flags.Ovf ? TestReg : ZeroReg
497 // LimitReg = gs magic thread env access
498 // if FinalReg >= LimitReg goto ContinueMBB
499 // RoundBB:
500 // RoundReg = page address of FinalReg
501 // LoopMBB:
502 // LoopReg = PHI(LimitReg,ProbeReg)
503 // ProbeReg = LoopReg - PageSize
504 // [ProbeReg] = 0
505 // if (ProbeReg > RoundReg) goto LoopMBB
506 // ContinueMBB:
507 // RSP = RSP - RAX
508 // [rest of original MBB]
509
510 // Set up the new basic blocks
511 MachineBasicBlock *RoundMBB = MF.CreateMachineBasicBlock(LLVM_BB);
512 MachineBasicBlock *LoopMBB = MF.CreateMachineBasicBlock(LLVM_BB);
513 MachineBasicBlock *ContinueMBB = MF.CreateMachineBasicBlock(LLVM_BB);
514
515 MachineFunction::iterator MBBIter = std::next(MBB.getIterator());
516 MF.insert(MBBIter, RoundMBB);
517 MF.insert(MBBIter, LoopMBB);
518 MF.insert(MBBIter, ContinueMBB);
519
520 // Split MBB and move the tail portion down to ContinueMBB.
521 MachineBasicBlock::iterator BeforeMBBI = std::prev(MBBI);
522 ContinueMBB->splice(ContinueMBB->begin(), &MBB, MBBI, MBB.end());
523 ContinueMBB->transferSuccessorsAndUpdatePHIs(&MBB);
524
525 // Some useful constants
526 const int64_t ThreadEnvironmentStackLimit = 0x10;
527 const int64_t PageSize = 0x1000;
528 const int64_t PageMask = ~(PageSize - 1);
529
530 // Registers we need. For the normal case we use virtual
531 // registers. For the prolog expansion we use RAX, RCX and RDX.
532 MachineRegisterInfo &MRI = MF.getRegInfo();
533 const TargetRegisterClass *RegClass = &X86::GR64RegClass;
Aaron Ballman107bb0d2015-11-11 13:44:06 +0000534 const unsigned SizeReg = InProlog ? (unsigned)X86::RAX
535 : MRI.createVirtualRegister(RegClass),
536 ZeroReg = InProlog ? (unsigned)X86::RCX
537 : MRI.createVirtualRegister(RegClass),
538 CopyReg = InProlog ? (unsigned)X86::RDX
539 : MRI.createVirtualRegister(RegClass),
540 TestReg = InProlog ? (unsigned)X86::RDX
541 : MRI.createVirtualRegister(RegClass),
542 FinalReg = InProlog ? (unsigned)X86::RDX
543 : MRI.createVirtualRegister(RegClass),
544 RoundedReg = InProlog ? (unsigned)X86::RDX
545 : MRI.createVirtualRegister(RegClass),
546 LimitReg = InProlog ? (unsigned)X86::RCX
547 : MRI.createVirtualRegister(RegClass),
548 JoinReg = InProlog ? (unsigned)X86::RCX
549 : MRI.createVirtualRegister(RegClass),
550 ProbeReg = InProlog ? (unsigned)X86::RCX
551 : MRI.createVirtualRegister(RegClass);
Andy Ayers809cbe92015-11-10 01:50:49 +0000552
553 // SP-relative offsets where we can save RCX and RDX.
554 int64_t RCXShadowSlot = 0;
555 int64_t RDXShadowSlot = 0;
556
557 // If inlining in the prolog, save RCX and RDX.
558 // Future optimization: don't save or restore if not live in.
559 if (InProlog) {
560 // Compute the offsets. We need to account for things already
561 // pushed onto the stack at this point: return address, frame
562 // pointer (if used), and callee saves.
563 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
564 const int64_t CalleeSaveSize = X86FI->getCalleeSavedFrameSize();
565 const bool HasFP = hasFP(MF);
566 RCXShadowSlot = 8 + CalleeSaveSize + (HasFP ? 8 : 0);
567 RDXShadowSlot = RCXShadowSlot + 8;
568 // Emit the saves.
569 addRegOffset(BuildMI(&MBB, DL, TII.get(X86::MOV64mr)), X86::RSP, false,
570 RCXShadowSlot)
571 .addReg(X86::RCX);
572 addRegOffset(BuildMI(&MBB, DL, TII.get(X86::MOV64mr)), X86::RSP, false,
573 RDXShadowSlot)
574 .addReg(X86::RDX);
575 } else {
576 // Not in the prolog. Copy RAX to a virtual reg.
577 BuildMI(&MBB, DL, TII.get(X86::MOV64rr), SizeReg).addReg(X86::RAX);
578 }
579
580 // Add code to MBB to check for overflow and set the new target stack pointer
581 // to zero if so.
582 BuildMI(&MBB, DL, TII.get(X86::XOR64rr), ZeroReg)
583 .addReg(ZeroReg, RegState::Undef)
584 .addReg(ZeroReg, RegState::Undef);
585 BuildMI(&MBB, DL, TII.get(X86::MOV64rr), CopyReg).addReg(X86::RSP);
586 BuildMI(&MBB, DL, TII.get(X86::SUB64rr), TestReg)
587 .addReg(CopyReg)
588 .addReg(SizeReg);
589 BuildMI(&MBB, DL, TII.get(X86::CMOVB64rr), FinalReg)
590 .addReg(TestReg)
591 .addReg(ZeroReg);
592
593 // FinalReg now holds final stack pointer value, or zero if
594 // allocation would overflow. Compare against the current stack
595 // limit from the thread environment block. Note this limit is the
596 // lowest touched page on the stack, not the point at which the OS
597 // will cause an overflow exception, so this is just an optimization
598 // to avoid unnecessarily touching pages that are below the current
599 // SP but already commited to the stack by the OS.
600 BuildMI(&MBB, DL, TII.get(X86::MOV64rm), LimitReg)
601 .addReg(0)
602 .addImm(1)
603 .addReg(0)
604 .addImm(ThreadEnvironmentStackLimit)
605 .addReg(X86::GS);
606 BuildMI(&MBB, DL, TII.get(X86::CMP64rr)).addReg(FinalReg).addReg(LimitReg);
607 // Jump if the desired stack pointer is at or above the stack limit.
608 BuildMI(&MBB, DL, TII.get(X86::JAE_1)).addMBB(ContinueMBB);
609
610 // Add code to roundMBB to round the final stack pointer to a page boundary.
611 BuildMI(RoundMBB, DL, TII.get(X86::AND64ri32), RoundedReg)
612 .addReg(FinalReg)
613 .addImm(PageMask);
614 BuildMI(RoundMBB, DL, TII.get(X86::JMP_1)).addMBB(LoopMBB);
615
616 // LimitReg now holds the current stack limit, RoundedReg page-rounded
617 // final RSP value. Add code to loopMBB to decrement LimitReg page-by-page
618 // and probe until we reach RoundedReg.
619 if (!InProlog) {
620 BuildMI(LoopMBB, DL, TII.get(X86::PHI), JoinReg)
621 .addReg(LimitReg)
622 .addMBB(RoundMBB)
623 .addReg(ProbeReg)
624 .addMBB(LoopMBB);
625 }
626
627 addRegOffset(BuildMI(LoopMBB, DL, TII.get(X86::LEA64r), ProbeReg), JoinReg,
628 false, -PageSize);
629
630 // Probe by storing a byte onto the stack.
631 BuildMI(LoopMBB, DL, TII.get(X86::MOV8mi))
632 .addReg(ProbeReg)
633 .addImm(1)
634 .addReg(0)
635 .addImm(0)
636 .addReg(0)
637 .addImm(0);
638 BuildMI(LoopMBB, DL, TII.get(X86::CMP64rr))
639 .addReg(RoundedReg)
640 .addReg(ProbeReg);
641 BuildMI(LoopMBB, DL, TII.get(X86::JNE_1)).addMBB(LoopMBB);
642
643 MachineBasicBlock::iterator ContinueMBBI = ContinueMBB->getFirstNonPHI();
644
645 // If in prolog, restore RDX and RCX.
646 if (InProlog) {
647 addRegOffset(BuildMI(*ContinueMBB, ContinueMBBI, DL, TII.get(X86::MOV64rm),
648 X86::RCX),
649 X86::RSP, false, RCXShadowSlot);
650 addRegOffset(BuildMI(*ContinueMBB, ContinueMBBI, DL, TII.get(X86::MOV64rm),
651 X86::RDX),
652 X86::RSP, false, RDXShadowSlot);
653 }
654
655 // Now that the probing is done, add code to continueMBB to update
656 // the stack pointer for real.
657 BuildMI(*ContinueMBB, ContinueMBBI, DL, TII.get(X86::SUB64rr), X86::RSP)
658 .addReg(X86::RSP)
659 .addReg(SizeReg);
660
661 // Add the control flow edges we need.
662 MBB.addSuccessor(ContinueMBB);
663 MBB.addSuccessor(RoundMBB);
664 RoundMBB->addSuccessor(LoopMBB);
665 LoopMBB->addSuccessor(ContinueMBB);
666 LoopMBB->addSuccessor(LoopMBB);
667
668 // Mark all the instructions added to the prolog as frame setup.
669 if (InProlog) {
670 for (++BeforeMBBI; BeforeMBBI != MBB.end(); ++BeforeMBBI) {
671 BeforeMBBI->setFlag(MachineInstr::FrameSetup);
672 }
673 for (MachineInstr &MI : *RoundMBB) {
674 MI.setFlag(MachineInstr::FrameSetup);
675 }
676 for (MachineInstr &MI : *LoopMBB) {
677 MI.setFlag(MachineInstr::FrameSetup);
678 }
679 for (MachineBasicBlock::iterator CMBBI = ContinueMBB->begin();
680 CMBBI != ContinueMBBI; ++CMBBI) {
681 CMBBI->setFlag(MachineInstr::FrameSetup);
682 }
683 }
684
685 // Possible TODO: physreg liveness for InProlog case.
686
687 return ContinueMBBI;
688}
689
690MachineInstr *X86FrameLowering::emitStackProbeCall(
691 MachineFunction &MF, MachineBasicBlock &MBB,
692 MachineBasicBlock::iterator MBBI, DebugLoc DL, bool InProlog) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000693 bool IsLargeCodeModel = MF.getTarget().getCodeModel() == CodeModel::Large;
694
695 unsigned CallOp;
696 if (Is64Bit)
697 CallOp = IsLargeCodeModel ? X86::CALL64r : X86::CALL64pcrel32;
698 else
699 CallOp = X86::CALLpcrel32;
700
701 const char *Symbol;
702 if (Is64Bit) {
703 if (STI.isTargetCygMing()) {
704 Symbol = "___chkstk_ms";
705 } else {
706 Symbol = "__chkstk";
707 }
708 } else if (STI.isTargetCygMing())
709 Symbol = "_alloca";
710 else
711 Symbol = "_chkstk";
712
713 MachineInstrBuilder CI;
Andy Ayers809cbe92015-11-10 01:50:49 +0000714 MachineBasicBlock::iterator ExpansionMBBI = std::prev(MBBI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000715
716 // All current stack probes take AX and SP as input, clobber flags, and
717 // preserve all registers. x86_64 probes leave RSP unmodified.
718 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
719 // For the large code model, we have to call through a register. Use R11,
720 // as it is scratch in all supported calling conventions.
721 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::R11)
722 .addExternalSymbol(Symbol);
723 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addReg(X86::R11);
724 } else {
725 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addExternalSymbol(Symbol);
726 }
727
728 unsigned AX = Is64Bit ? X86::RAX : X86::EAX;
729 unsigned SP = Is64Bit ? X86::RSP : X86::ESP;
730 CI.addReg(AX, RegState::Implicit)
731 .addReg(SP, RegState::Implicit)
732 .addReg(AX, RegState::Define | RegState::Implicit)
733 .addReg(SP, RegState::Define | RegState::Implicit)
734 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
735
736 if (Is64Bit) {
737 // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
738 // themselves. It also does not clobber %rax so we can reuse it when
739 // adjusting %rsp.
740 BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), X86::RSP)
741 .addReg(X86::RSP)
742 .addReg(X86::RAX);
743 }
Andy Ayers809cbe92015-11-10 01:50:49 +0000744
745 if (InProlog) {
746 // Apply the frame setup flag to all inserted instrs.
747 for (++ExpansionMBBI; ExpansionMBBI != MBBI; ++ExpansionMBBI)
748 ExpansionMBBI->setFlag(MachineInstr::FrameSetup);
749 }
750
751 return MBBI;
752}
753
754MachineInstr *X86FrameLowering::emitStackProbeInlineStub(
755 MachineFunction &MF, MachineBasicBlock &MBB,
756 MachineBasicBlock::iterator MBBI, DebugLoc DL, bool InProlog) const {
757
758 assert(InProlog && "ChkStkStub called outside prolog!");
759
David Blaikiee35168f2015-11-10 03:16:28 +0000760 BuildMI(MBB, MBBI, DL, TII.get(X86::CALLpcrel32))
761 .addExternalSymbol("__chkstk_stub");
Andy Ayers809cbe92015-11-10 01:50:49 +0000762
763 return MBBI;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000764}
765
David Majnemer93c22a42015-02-10 00:57:42 +0000766static unsigned calculateSetFPREG(uint64_t SPAdjust) {
767 // Win64 ABI has a less restrictive limitation of 240; 128 works equally well
768 // and might require smaller successive adjustments.
769 const uint64_t Win64MaxSEHOffset = 128;
770 uint64_t SEHFrameOffset = std::min(SPAdjust, Win64MaxSEHOffset);
771 // Win64 ABI requires 16-byte alignment for the UWOP_SET_FPREG opcode.
David Majnemer89d05642015-02-21 01:04:47 +0000772 return SEHFrameOffset & -16;
David Majnemer93c22a42015-02-10 00:57:42 +0000773}
774
775// If we're forcing a stack realignment we can't rely on just the frame
776// info, we need to know the ABI stack alignment as well in case we
777// have a call out. Otherwise just make sure we have some alignment - we'll
778// go with the minimum SlotSize.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000779uint64_t X86FrameLowering::calculateMaxStackAlign(const MachineFunction &MF) const {
David Majnemer93c22a42015-02-10 00:57:42 +0000780 const MachineFrameInfo *MFI = MF.getFrameInfo();
781 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000782 unsigned StackAlign = getStackAlignment();
Akira Hatanakabc497c92015-09-11 18:54:38 +0000783 if (MF.getFunction()->hasFnAttribute("stackrealign")) {
David Majnemer93c22a42015-02-10 00:57:42 +0000784 if (MFI->hasCalls())
785 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
786 else if (MaxAlign < SlotSize)
787 MaxAlign = SlotSize;
788 }
789 return MaxAlign;
790}
791
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000792void X86FrameLowering::BuildStackAlignAND(MachineBasicBlock &MBB,
793 MachineBasicBlock::iterator MBBI,
Reid Kleckner6ddae312015-11-05 21:09:49 +0000794 DebugLoc DL, unsigned Reg,
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000795 uint64_t MaxAlign) const {
796 uint64_t Val = -MaxAlign;
Reid Kleckner6ddae312015-11-05 21:09:49 +0000797 unsigned AndOp = getANDriOpcode(Uses64BitFramePtr, Val);
798 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(AndOp), Reg)
799 .addReg(Reg)
800 .addImm(Val)
801 .setMIFlag(MachineInstr::FrameSetup);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000802
803 // The EFLAGS implicit def is dead.
804 MI->getOperand(3).setIsDead();
805}
806
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000807/// emitPrologue - Push callee-saved registers onto the stack, which
808/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
809/// space for local variables. Also emit labels used by the exception handler to
810/// generate the exception handling frames.
811
812/*
813 Here's a gist of what gets emitted:
814
815 ; Establish frame pointer, if needed
816 [if needs FP]
817 push %rbp
818 .cfi_def_cfa_offset 16
819 .cfi_offset %rbp, -16
820 .seh_pushreg %rpb
821 mov %rsp, %rbp
822 .cfi_def_cfa_register %rbp
823
824 ; Spill general-purpose registers
825 [for all callee-saved GPRs]
826 pushq %<reg>
827 [if not needs FP]
828 .cfi_def_cfa_offset (offset from RETADDR)
829 .seh_pushreg %<reg>
830
831 ; If the required stack alignment > default stack alignment
832 ; rsp needs to be re-aligned. This creates a "re-alignment gap"
833 ; of unknown size in the stack frame.
834 [if stack needs re-alignment]
835 and $MASK, %rsp
836
837 ; Allocate space for locals
838 [if target is Windows and allocated space > 4096 bytes]
839 ; Windows needs special care for allocations larger
840 ; than one page.
841 mov $NNN, %rax
842 call ___chkstk_ms/___chkstk
843 sub %rax, %rsp
844 [else]
845 sub $NNN, %rsp
846
847 [if needs FP]
848 .seh_stackalloc (size of XMM spill slots)
849 .seh_setframe %rbp, SEHFrameOffset ; = size of all spill slots
850 [else]
851 .seh_stackalloc NNN
852
853 ; Spill XMMs
854 ; Note, that while only Windows 64 ABI specifies XMMs as callee-preserved,
855 ; they may get spilled on any platform, if the current function
856 ; calls @llvm.eh.unwind.init
857 [if needs FP]
858 [for all callee-saved XMM registers]
859 movaps %<xmm reg>, -MMM(%rbp)
860 [for all callee-saved XMM registers]
861 .seh_savexmm %<xmm reg>, (-MMM + SEHFrameOffset)
862 ; i.e. the offset relative to (%rbp - SEHFrameOffset)
863 [else]
864 [for all callee-saved XMM registers]
865 movaps %<xmm reg>, KKK(%rsp)
866 [for all callee-saved XMM registers]
867 .seh_savexmm %<xmm reg>, KKK
868
869 .seh_endprologue
870
871 [if needs base pointer]
872 mov %rsp, %rbx
873 [if needs to restore base pointer]
874 mov %rsp, -MMM(%rbp)
875
876 ; Emit CFI info
877 [if needs FP]
878 [for all callee-saved registers]
879 .cfi_offset %<reg>, (offset from %rbp)
880 [else]
881 .cfi_def_cfa_offset (offset from RETADDR)
882 [for all callee-saved registers]
883 .cfi_offset %<reg>, (offset from %rsp)
884
885 Notes:
886 - .seh directives are emitted only for Windows 64 ABI
887 - .cfi directives are emitted for all other ABIs
888 - for 32-bit code, substitute %e?? registers for %r??
889*/
890
Quentin Colombet61b305e2015-05-05 17:38:16 +0000891void X86FrameLowering::emitPrologue(MachineFunction &MF,
892 MachineBasicBlock &MBB) const {
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000893 assert(&STI == &MF.getSubtarget<X86Subtarget>() &&
894 "MF used frame lowering for wrong subtarget");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000895 MachineBasicBlock::iterator MBBI = MBB.begin();
896 MachineFrameInfo *MFI = MF.getFrameInfo();
897 const Function *Fn = MF.getFunction();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000898 MachineModuleInfo &MMI = MF.getMMI();
899 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
David Majnemer93c22a42015-02-10 00:57:42 +0000900 uint64_t MaxAlign = calculateMaxStackAlign(MF); // Desired stack alignment.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000901 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000902 bool IsFunclet = MBB.isEHFuncletEntry();
Joseph Tremoulet149c4332015-11-13 00:39:23 +0000903 bool FnHasClrFunclet =
904 MMI.hasEHFunclets() &&
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000905 classifyEHPersonality(Fn->getPersonalityFn()) == EHPersonality::CoreCLR;
Joseph Tremoulet149c4332015-11-13 00:39:23 +0000906 bool IsClrFunclet = IsFunclet && FnHasClrFunclet;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000907 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000908 bool IsWin64CC = STI.isCallingConvWin64(Fn->getCallingConv());
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000909 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
910 bool NeedsWinCFI = IsWin64Prologue && Fn->needsUnwindTableEntry();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000911 bool NeedsDwarfCFI =
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000912 !IsWin64Prologue && (MMI.hasDebugInfo() || Fn->needsUnwindTableEntry());
Reid Kleckner034ea962015-06-18 20:32:02 +0000913 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +0000914 const unsigned MachineFramePtr =
915 STI.isTarget64BitILP32()
Tim Northover775aaeb2015-11-05 21:54:58 +0000916 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
917 : FramePtr;
918 unsigned BasePtr = TRI->getBaseRegister();
919
920 // Debug location must be unknown since the first debug location is used
921 // to determine the end of the prologue.
922 DebugLoc DL;
923
924 // Add RETADDR move area to callee saved frame size.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000925 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000926 if (TailCallReturnAddrDelta && IsWin64Prologue)
David Majnemer93c22a42015-02-10 00:57:42 +0000927 report_fatal_error("Can't handle guaranteed tail call under win64 yet");
928
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000929 if (TailCallReturnAddrDelta < 0)
930 X86FI->setCalleeSavedFrameSize(
931 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
932
933 bool UseStackProbe = (STI.isOSWindows() && !STI.isTargetMachO());
934
935 // The default stack probe size is 4096 if the function has no stackprobesize
936 // attribute.
937 unsigned StackProbeSize = 4096;
938 if (Fn->hasFnAttribute("stack-probe-size"))
939 Fn->getFnAttribute("stack-probe-size")
940 .getValueAsString()
941 .getAsInteger(0, StackProbeSize);
942
943 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
944 // function, and use up to 128 bytes of stack space, don't have a frame
945 // pointer, calls, or dynamic alloca then we do not need to adjust the
946 // stack pointer (we fit in the Red Zone). We also check that we don't
947 // push and pop from the stack.
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000948 if (Is64Bit && !Fn->hasFnAttribute(Attribute::NoRedZone) &&
Reid Kleckner034ea962015-06-18 20:32:02 +0000949 !TRI->needsStackRealignment(MF) &&
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000950 !MFI->hasVarSizedObjects() && // No dynamic alloca.
951 !MFI->adjustsStack() && // No calls.
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000952 !IsWin64CC && // Win64 has no Red Zone
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000953 !usesTheStack(MF) && // Don't push and pop.
954 !MF.shouldSplitStack()) { // Regular stack
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000955 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
956 if (HasFP) MinSize += SlotSize;
957 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
958 MFI->setStackSize(StackSize);
959 }
960
961 // Insert stack pointer adjustment for later moving of return addr. Only
962 // applies to tail call optimized functions where the callee argument stack
963 // size is bigger than the callers.
964 if (TailCallReturnAddrDelta < 0) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000965 BuildStackAdjustment(MBB, MBBI, DL, TailCallReturnAddrDelta,
966 /*InEpilogue=*/false)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000967 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000968 }
969
970 // Mapping for machine moves:
971 //
972 // DST: VirtualFP AND
973 // SRC: VirtualFP => DW_CFA_def_cfa_offset
974 // ELSE => DW_CFA_def_cfa
975 //
976 // SRC: VirtualFP AND
977 // DST: Register => DW_CFA_def_cfa_register
978 //
979 // ELSE
980 // OFFSET < 0 => DW_CFA_offset_extended_sf
981 // REG < 64 => DW_CFA_offset + Reg
982 // ELSE => DW_CFA_offset_extended
983
984 uint64_t NumBytes = 0;
985 int stackGrowth = -SlotSize;
986
Joseph Tremoulet6afccf62015-11-05 02:20:07 +0000987 // Find the funclet establisher parameter
988 unsigned Establisher = X86::NoRegister;
989 if (IsClrFunclet)
990 Establisher = Uses64BitFramePtr ? X86::RCX : X86::ECX;
991 else if (IsFunclet)
992 Establisher = Uses64BitFramePtr ? X86::RDX : X86::EDX;
993
994 if (IsWin64Prologue && IsFunclet & !IsClrFunclet) {
995 // Immediately spill establisher into the home slot.
996 // The runtime cares about this.
Reid Klecknera13dfd52015-09-29 23:32:01 +0000997 // MOV64mr %rdx, 16(%rsp)
998 unsigned MOVmr = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
999 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(MOVmr)), StackPtr, true, 16)
Joseph Tremoulet6afccf62015-11-05 02:20:07 +00001000 .addReg(Establisher)
Reid Klecknerdf129512015-09-08 22:44:41 +00001001 .setMIFlag(MachineInstr::FrameSetup);
Reid Kleckner64b003f2015-11-09 21:04:00 +00001002 MBB.addLiveIn(Establisher);
Reid Klecknera13dfd52015-09-29 23:32:01 +00001003 }
Reid Klecknerdf129512015-09-08 22:44:41 +00001004
Reid Klecknera13dfd52015-09-29 23:32:01 +00001005 if (HasFP) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001006 // Calculate required stack adjustment.
1007 uint64_t FrameSize = StackSize - SlotSize;
1008 // If required, include space for extra hidden slot for stashing base pointer.
1009 if (X86FI->getRestoreBasePointer())
1010 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001011
1012 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
1013
1014 // Callee-saved registers are pushed on stack before the stack is realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001015 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +00001016 NumBytes = RoundUpToAlignment(NumBytes, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001017
1018 // Get the offset of the stack slot for the EBP register, which is
1019 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
1020 // Update the frame offset adjustment.
Reid Klecknera13dfd52015-09-29 23:32:01 +00001021 if (!IsFunclet)
1022 MFI->setOffsetAdjustment(-NumBytes);
1023 else
David Blaikie757908e2015-09-30 20:37:48 +00001024 assert(MFI->getOffsetAdjustment() == -(int)NumBytes &&
Reid Klecknera13dfd52015-09-29 23:32:01 +00001025 "should calculate same local variable offset for funclets");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001026
1027 // Save EBP/RBP into the appropriate stack slot.
1028 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
1029 .addReg(MachineFramePtr, RegState::Kill)
1030 .setMIFlag(MachineInstr::FrameSetup);
1031
1032 if (NeedsDwarfCFI) {
1033 // Mark the place where EBP/RBP was saved.
1034 // Define the current CFA rule to use the provided offset.
1035 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001036 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +00001037 MCCFIInstruction::createDefCfaOffset(nullptr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001038
1039 // Change the rule for the FramePtr to be an "offset" rule.
Reid Kleckner034ea962015-06-18 20:32:02 +00001040 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001041 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createOffset(
1042 nullptr, DwarfFramePtr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001043 }
1044
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001045 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001046 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg))
1047 .addImm(FramePtr)
1048 .setMIFlag(MachineInstr::FrameSetup);
1049 }
1050
Reid Klecknera13dfd52015-09-29 23:32:01 +00001051 if (!IsWin64Prologue && !IsFunclet) {
David Majnemer93c22a42015-02-10 00:57:42 +00001052 // Update EBP with the new base value.
1053 BuildMI(MBB, MBBI, DL,
1054 TII.get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr),
1055 FramePtr)
1056 .addReg(StackPtr)
1057 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001058
Reid Klecknera13dfd52015-09-29 23:32:01 +00001059 if (NeedsDwarfCFI) {
1060 // Mark effective beginning of when frame pointer becomes valid.
1061 // Define the current CFA to use the EBP/RBP register.
1062 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
1063 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createDefCfaRegister(
1064 nullptr, DwarfFramePtr));
1065 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001066 }
1067
Reid Kleckner64b003f2015-11-09 21:04:00 +00001068 // Mark the FramePtr as live-in in every block. Don't do this again for
1069 // funclet prologues.
1070 if (!IsFunclet) {
1071 for (MachineBasicBlock &EveryMBB : MF)
1072 EveryMBB.addLiveIn(MachineFramePtr);
1073 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001074 } else {
Reid Klecknera13dfd52015-09-29 23:32:01 +00001075 assert(!IsFunclet && "funclets without FPs not yet implemented");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001076 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
1077 }
1078
Reid Klecknera13dfd52015-09-29 23:32:01 +00001079 // For EH funclets, only allocate enough space for outgoing calls. Save the
1080 // NumBytes value that we would've used for the parent frame.
1081 unsigned ParentFrameNumBytes = NumBytes;
1082 if (IsFunclet)
Reid Kleckner28e49032015-10-16 23:43:27 +00001083 NumBytes = getWinEHFuncletFrameSize(MF);
Reid Klecknera13dfd52015-09-29 23:32:01 +00001084
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001085 // Skip the callee-saved push instructions.
1086 bool PushedRegs = false;
1087 int StackOffset = 2 * stackGrowth;
1088
1089 while (MBBI != MBB.end() &&
Michael Kupersteine1ea4e7d2015-07-16 12:27:59 +00001090 MBBI->getFlag(MachineInstr::FrameSetup) &&
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001091 (MBBI->getOpcode() == X86::PUSH32r ||
1092 MBBI->getOpcode() == X86::PUSH64r)) {
1093 PushedRegs = true;
1094 unsigned Reg = MBBI->getOperand(0).getReg();
1095 ++MBBI;
1096
1097 if (!HasFP && NeedsDwarfCFI) {
1098 // Mark callee-saved push instruction.
1099 // Define the current CFA rule to use the provided offset.
1100 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001101 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +00001102 MCCFIInstruction::createDefCfaOffset(nullptr, StackOffset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001103 StackOffset += stackGrowth;
1104 }
1105
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001106 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001107 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg)).addImm(Reg).setMIFlag(
1108 MachineInstr::FrameSetup);
1109 }
1110 }
1111
1112 // Realign stack after we pushed callee-saved registers (so that we'll be
1113 // able to calculate their offsets from the frame pointer).
David Majnemer93c22a42015-02-10 00:57:42 +00001114 // Don't do this for Win64, it needs to realign the stack after the prologue.
Reid Klecknera13dfd52015-09-29 23:32:01 +00001115 if (!IsWin64Prologue && !IsFunclet && TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001116 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner6ddae312015-11-05 21:09:49 +00001117 BuildStackAlignAND(MBB, MBBI, DL, StackPtr, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001118 }
1119
1120 // If there is an SUB32ri of ESP immediately before this instruction, merge
1121 // the two. This can be the case when tail call elimination is enabled and
1122 // the callee has more arguments then the caller.
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001123 NumBytes -= mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001124
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001125 // Adjust stack pointer: ESP -= numbytes.
1126
1127 // Windows and cygwin/mingw require a prologue helper routine when allocating
1128 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
1129 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
1130 // stack and adjust the stack pointer in one go. The 64-bit version of
1131 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
1132 // responsible for adjusting the stack pointer. Touching the stack at 4K
1133 // increments is necessary to ensure that the guard pages used by the OS
1134 // virtual memory manager are allocated in correct sequence.
David Majnemer89d05642015-02-21 01:04:47 +00001135 uint64_t AlignedNumBytes = NumBytes;
Reid Klecknera13dfd52015-09-29 23:32:01 +00001136 if (IsWin64Prologue && !IsFunclet && TRI->needsStackRealignment(MF))
David Majnemer89d05642015-02-21 01:04:47 +00001137 AlignedNumBytes = RoundUpToAlignment(AlignedNumBytes, MaxAlign);
1138 if (AlignedNumBytes >= StackProbeSize && UseStackProbe) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001139 // Check whether EAX is livein for this function.
1140 bool isEAXAlive = isEAXLiveIn(MF);
1141
1142 if (isEAXAlive) {
1143 // Sanity check that EAX is not livein for this function.
1144 // It should not be, so throw an assert.
1145 assert(!Is64Bit && "EAX is livein in x64 case!");
1146
1147 // Save EAX
1148 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
1149 .addReg(X86::EAX, RegState::Kill)
1150 .setMIFlag(MachineInstr::FrameSetup);
1151 }
1152
1153 if (Is64Bit) {
1154 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
1155 // Function prologue is responsible for adjusting the stack pointer.
David Majnemer006c4902015-02-23 21:50:30 +00001156 if (isUInt<32>(NumBytes)) {
1157 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
1158 .addImm(NumBytes)
1159 .setMIFlag(MachineInstr::FrameSetup);
1160 } else if (isInt<32>(NumBytes)) {
1161 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri32), X86::RAX)
1162 .addImm(NumBytes)
1163 .setMIFlag(MachineInstr::FrameSetup);
1164 } else {
1165 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
1166 .addImm(NumBytes)
1167 .setMIFlag(MachineInstr::FrameSetup);
1168 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001169 } else {
1170 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
1171 // We'll also use 4 already allocated bytes for EAX.
1172 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
Andy Ayers809cbe92015-11-10 01:50:49 +00001173 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
1174 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001175 }
1176
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001177 // Call __chkstk, __chkstk_ms, or __alloca.
Andy Ayers809cbe92015-11-10 01:50:49 +00001178 emitStackProbe(MF, MBB, MBBI, DL, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001179
1180 if (isEAXAlive) {
1181 // Restore EAX
Andy Ayers809cbe92015-11-10 01:50:49 +00001182 MachineInstr *MI =
1183 addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm), X86::EAX),
1184 StackPtr, false, NumBytes - 4);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001185 MI->setFlag(MachineInstr::FrameSetup);
1186 MBB.insert(MBBI, MI);
1187 }
1188 } else if (NumBytes) {
Reid Kleckner98d78032015-06-18 20:22:12 +00001189 emitSPUpdate(MBB, MBBI, -(int64_t)NumBytes, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001190 }
1191
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001192 if (NeedsWinCFI && NumBytes)
David Majnemer93c22a42015-02-10 00:57:42 +00001193 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_StackAlloc))
1194 .addImm(NumBytes)
1195 .setMIFlag(MachineInstr::FrameSetup);
1196
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001197 int SEHFrameOffset = 0;
Joseph Tremoulet149c4332015-11-13 00:39:23 +00001198 unsigned SPOrEstablisher;
1199 if (IsFunclet) {
1200 if (IsClrFunclet) {
1201 // The establisher parameter passed to a CLR funclet is actually a pointer
1202 // to the (mostly empty) frame of its nearest enclosing funclet; we have
1203 // to find the root function establisher frame by loading the PSPSym from
1204 // the intermediate frame.
1205 unsigned PSPSlotOffset = getPSPSlotOffsetFromSP(MF);
1206 MachinePointerInfo NoInfo;
1207 MBB.addLiveIn(Establisher);
1208 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64rm), Establisher),
1209 Establisher, false, PSPSlotOffset)
1210 .addMemOperand(MF.getMachineMemOperand(
1211 NoInfo, MachineMemOperand::MOLoad, SlotSize, SlotSize));
1212 ;
1213 // Save the root establisher back into the current funclet's (mostly
1214 // empty) frame, in case a sub-funclet or the GC needs it.
1215 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64mr)), StackPtr,
1216 false, PSPSlotOffset)
1217 .addReg(Establisher)
1218 .addMemOperand(
1219 MF.getMachineMemOperand(NoInfo, MachineMemOperand::MOStore |
1220 MachineMemOperand::MOVolatile,
1221 SlotSize, SlotSize));
1222 }
1223 SPOrEstablisher = Establisher;
1224 } else {
1225 SPOrEstablisher = StackPtr;
1226 }
1227
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001228 if (IsWin64Prologue && HasFP) {
Reid Klecknera13dfd52015-09-29 23:32:01 +00001229 // Set RBP to a small fixed offset from RSP. In the funclet case, we base
Joseph Tremoulet6afccf62015-11-05 02:20:07 +00001230 // this calculation on the incoming establisher, which holds the value of
1231 // RSP from the parent frame at the end of the prologue.
Reid Klecknera13dfd52015-09-29 23:32:01 +00001232 SEHFrameOffset = calculateSetFPREG(ParentFrameNumBytes);
David Majnemer31d868b2015-02-23 21:50:27 +00001233 if (SEHFrameOffset)
1234 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA64r), FramePtr),
Joseph Tremoulet6afccf62015-11-05 02:20:07 +00001235 SPOrEstablisher, false, SEHFrameOffset);
David Majnemer31d868b2015-02-23 21:50:27 +00001236 else
Reid Klecknera13dfd52015-09-29 23:32:01 +00001237 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64rr), FramePtr)
Joseph Tremoulet6afccf62015-11-05 02:20:07 +00001238 .addReg(SPOrEstablisher);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001239
Reid Klecknera13dfd52015-09-29 23:32:01 +00001240 // If this is not a funclet, emit the CFI describing our frame pointer.
1241 if (NeedsWinCFI && !IsFunclet)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001242 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SetFrame))
1243 .addImm(FramePtr)
1244 .addImm(SEHFrameOffset)
1245 .setMIFlag(MachineInstr::FrameSetup);
Reid Klecknera13dfd52015-09-29 23:32:01 +00001246 } else if (IsFunclet && STI.is32Bit()) {
1247 // Reset EBP / ESI to something good for funclets.
1248 MBBI = restoreWin32EHStackPointers(MBB, MBBI, DL);
Reid Kleckner75b4be92015-11-13 21:27:00 +00001249 // If we're a catch funclet, we can be returned to via catchret. Save ESP
1250 // into the registration node so that the runtime will restore it for us.
1251 if (!MBB.isCleanupFuncletEntry()) {
1252 assert(classifyEHPersonality(Fn->getPersonalityFn()) ==
1253 EHPersonality::MSVC_CXX);
1254 unsigned FrameReg;
1255 int FI = MMI.getWinEHFuncInfo(Fn).EHRegNodeFrameIndex;
1256 int64_t EHRegOffset = getFrameIndexReference(MF, FI, FrameReg);
1257 // ESP is the first field, so no extra displacement is needed.
1258 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32mr)), FrameReg,
1259 false, EHRegOffset)
1260 .addReg(X86::ESP);
1261 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001262 }
1263
David Majnemera7d908e2015-02-10 19:01:47 +00001264 while (MBBI != MBB.end() && MBBI->getFlag(MachineInstr::FrameSetup)) {
1265 const MachineInstr *FrameInstr = &*MBBI;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001266 ++MBBI;
1267
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001268 if (NeedsWinCFI) {
David Majnemera7d908e2015-02-10 19:01:47 +00001269 int FI;
1270 if (unsigned Reg = TII.isStoreToStackSlot(FrameInstr, FI)) {
1271 if (X86::FR64RegClass.contains(Reg)) {
James Y Knight5567baf2015-08-15 02:32:35 +00001272 unsigned IgnoredFrameReg;
1273 int Offset = getFrameIndexReference(MF, FI, IgnoredFrameReg);
David Majnemera7d908e2015-02-10 19:01:47 +00001274 Offset += SEHFrameOffset;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001275
David Majnemera7d908e2015-02-10 19:01:47 +00001276 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SaveXMM))
1277 .addImm(Reg)
1278 .addImm(Offset)
1279 .setMIFlag(MachineInstr::FrameSetup);
1280 }
1281 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001282 }
David Majnemera7d908e2015-02-10 19:01:47 +00001283 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001284
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001285 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001286 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_EndPrologue))
1287 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001288
Joseph Tremoulet149c4332015-11-13 00:39:23 +00001289 if (FnHasClrFunclet && !IsFunclet) {
1290 // Save the so-called Initial-SP (i.e. the value of the stack pointer
1291 // immediately after the prolog) into the PSPSlot so that funclets
1292 // and the GC can recover it.
1293 unsigned PSPSlotOffset = getPSPSlotOffsetFromSP(MF);
1294 auto PSPInfo = MachinePointerInfo::getFixedStack(
1295 MF, MF.getMMI().getWinEHFuncInfo(Fn).PSPSymFrameIdx);
1296 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64mr)), StackPtr, false,
1297 PSPSlotOffset)
1298 .addReg(StackPtr)
1299 .addMemOperand(MF.getMachineMemOperand(
1300 PSPInfo, MachineMemOperand::MOStore | MachineMemOperand::MOVolatile,
1301 SlotSize, SlotSize));
1302 }
1303
David Majnemer93c22a42015-02-10 00:57:42 +00001304 // Realign stack after we spilled callee-saved registers (so that we'll be
1305 // able to calculate their offsets from the frame pointer).
1306 // Win64 requires aligning the stack after the prologue.
Reid Kleckner034ea962015-06-18 20:32:02 +00001307 if (IsWin64Prologue && TRI->needsStackRealignment(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +00001308 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner6ddae312015-11-05 21:09:49 +00001309 BuildStackAlignAND(MBB, MBBI, DL, SPOrEstablisher, MaxAlign);
David Majnemer93c22a42015-02-10 00:57:42 +00001310 }
1311
Reid Kleckner6ddae312015-11-05 21:09:49 +00001312 // We already dealt with stack realignment and funclets above.
1313 if (IsFunclet && STI.is32Bit())
1314 return;
1315
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001316 // If we need a base pointer, set it up here. It's whatever the value
1317 // of the stack pointer is at this point. Any variable size objects
1318 // will be allocated after this, so we can still use the base pointer
1319 // to reference locals.
Reid Kleckner034ea962015-06-18 20:32:02 +00001320 if (TRI->hasBasePointer(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001321 // Update the base pointer with the current stack pointer.
1322 unsigned Opc = Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr;
1323 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
Reid Kleckner6ddae312015-11-05 21:09:49 +00001324 .addReg(SPOrEstablisher)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001325 .setMIFlag(MachineInstr::FrameSetup);
1326 if (X86FI->getRestoreBasePointer()) {
Reid Klecknere69bdb82015-07-07 23:45:58 +00001327 // Stash value of base pointer. Saving RSP instead of EBP shortens
1328 // dependence chain. Used by SjLj EH.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001329 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
1330 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)),
1331 FramePtr, true, X86FI->getRestoreBasePointerOffset())
Reid Kleckner6ddae312015-11-05 21:09:49 +00001332 .addReg(SPOrEstablisher)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001333 .setMIFlag(MachineInstr::FrameSetup);
1334 }
Reid Klecknere69bdb82015-07-07 23:45:58 +00001335
Reid Kleckner6ddae312015-11-05 21:09:49 +00001336 if (X86FI->getHasSEHFramePtrSave() && !IsFunclet) {
Reid Klecknere69bdb82015-07-07 23:45:58 +00001337 // Stash the value of the frame pointer relative to the base pointer for
1338 // Win32 EH. This supports Win32 EH, which does the inverse of the above:
1339 // it recovers the frame pointer from the base pointer rather than the
1340 // other way around.
1341 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
Reid Klecknerdf129512015-09-08 22:44:41 +00001342 unsigned UsedReg;
1343 int Offset =
1344 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(), UsedReg);
1345 assert(UsedReg == BasePtr);
1346 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)), UsedReg, true, Offset)
Reid Klecknere69bdb82015-07-07 23:45:58 +00001347 .addReg(FramePtr)
1348 .setMIFlag(MachineInstr::FrameSetup);
1349 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001350 }
1351
1352 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI) {
1353 // Mark end of stack pointer adjustment.
1354 if (!HasFP && NumBytes) {
1355 // Define the current CFA rule to use the provided offset.
1356 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001357 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createDefCfaOffset(
1358 nullptr, -StackSize + stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001359 }
1360
1361 // Emit DWARF info specifying the offsets of the callee-saved registers.
1362 if (PushedRegs)
1363 emitCalleeSavedFrameMoves(MBB, MBBI, DL);
1364 }
1365}
1366
Quentin Colombetaa8020752015-05-27 06:28:41 +00001367bool X86FrameLowering::canUseLEAForSPInEpilogue(
1368 const MachineFunction &MF) const {
Quentin Colombet494eb602015-05-22 18:10:47 +00001369 // We can't use LEA instructions for adjusting the stack pointer if this is a
1370 // leaf function in the Win64 ABI. Only ADD instructions may be used to
1371 // deallocate the stack.
1372 // This means that we can use LEA for SP in two situations:
1373 // 1. We *aren't* using the Win64 ABI which means we are free to use LEA.
1374 // 2. We *have* a frame pointer which means we are permitted to use LEA.
Quentin Colombetaa8020752015-05-27 06:28:41 +00001375 return !MF.getTarget().getMCAsmInfo()->usesWindowsCFI() || hasFP(MF);
1376}
1377
Reid Klecknerdf129512015-09-08 22:44:41 +00001378static bool isFuncletReturnInstr(MachineInstr *MI) {
1379 switch (MI->getOpcode()) {
1380 case X86::CATCHRET:
Reid Kleckner78783912015-09-10 00:25:23 +00001381 case X86::CLEANUPRET:
Reid Klecknerdf129512015-09-08 22:44:41 +00001382 return true;
1383 default:
1384 return false;
1385 }
1386 llvm_unreachable("impossible");
1387}
1388
Joseph Tremoulet149c4332015-11-13 00:39:23 +00001389// CLR funclets use a special "Previous Stack Pointer Symbol" slot on the
1390// stack. It holds a pointer to the bottom of the root function frame. The
1391// establisher frame pointer passed to a nested funclet may point to the
1392// (mostly empty) frame of its parent funclet, but it will need to find
1393// the frame of the root function to access locals. To facilitate this,
1394// every funclet copies the pointer to the bottom of the root function
1395// frame into a PSPSym slot in its own (mostly empty) stack frame. Using the
1396// same offset for the PSPSym in the root function frame that's used in the
1397// funclets' frames allows each funclet to dynamically accept any ancestor
1398// frame as its establisher argument (the runtime doesn't guarantee the
1399// immediate parent for some reason lost to history), and also allows the GC,
1400// which uses the PSPSym for some bookkeeping, to find it in any funclet's
1401// frame with only a single offset reported for the entire method.
1402unsigned
1403X86FrameLowering::getPSPSlotOffsetFromSP(const MachineFunction &MF) const {
1404 MachineModuleInfo &MMI = MF.getMMI();
1405 WinEHFuncInfo &Info = MMI.getWinEHFuncInfo(MF.getFunction());
1406 // getFrameIndexReferenceFromSP has an out ref parameter for the stack
1407 // pointer register; pass a dummy that we ignore
1408 unsigned SPReg;
1409 int Offset = getFrameIndexReferenceFromSP(MF, Info.PSPSymFrameIdx, SPReg);
1410 assert(Offset >= 0);
1411 return static_cast<unsigned>(Offset);
1412}
1413
1414unsigned
1415X86FrameLowering::getWinEHFuncletFrameSize(const MachineFunction &MF) const {
Reid Kleckner28e49032015-10-16 23:43:27 +00001416 // This is the size of the pushed CSRs.
1417 unsigned CSSize =
1418 MF.getInfo<X86MachineFunctionInfo>()->getCalleeSavedFrameSize();
1419 // This is the amount of stack a funclet needs to allocate.
Joseph Tremoulet149c4332015-11-13 00:39:23 +00001420 unsigned UsedSize;
1421 EHPersonality Personality =
1422 classifyEHPersonality(MF.getFunction()->getPersonalityFn());
1423 if (Personality == EHPersonality::CoreCLR) {
1424 // CLR funclets need to hold enough space to include the PSPSym, at the
1425 // same offset from the stack pointer (immediately after the prolog) as it
1426 // resides at in the main function.
1427 UsedSize = getPSPSlotOffsetFromSP(MF) + SlotSize;
1428 } else {
1429 // Other funclets just need enough stack for outgoing call arguments.
1430 UsedSize = MF.getFrameInfo()->getMaxCallFrameSize();
1431 }
Reid Kleckner28e49032015-10-16 23:43:27 +00001432 // RBP is not included in the callee saved register block. After pushing RBP,
1433 // everything is 16 byte aligned. Everything we allocate before an outgoing
1434 // call must also be 16 byte aligned.
1435 unsigned FrameSizeMinusRBP =
Joseph Tremoulet149c4332015-11-13 00:39:23 +00001436 RoundUpToAlignment(CSSize + UsedSize, getStackAlignment());
Reid Kleckner28e49032015-10-16 23:43:27 +00001437 // Subtract out the size of the callee saved registers. This is how much stack
1438 // each funclet will allocate.
1439 return FrameSizeMinusRBP - CSSize;
1440}
1441
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001442void X86FrameLowering::emitEpilogue(MachineFunction &MF,
1443 MachineBasicBlock &MBB) const {
1444 const MachineFrameInfo *MFI = MF.getFrameInfo();
1445 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Quentin Colombetaa8020752015-05-27 06:28:41 +00001446 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator();
1447 DebugLoc DL;
1448 if (MBBI != MBB.end())
1449 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001450 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001451 const bool Is64BitILP32 = STI.isTarget64BitILP32();
Reid Kleckner034ea962015-06-18 20:32:02 +00001452 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +00001453 unsigned MachineFramePtr =
1454 Is64BitILP32 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
1455 : FramePtr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001456
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001457 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
1458 bool NeedsWinCFI =
1459 IsWin64Prologue && MF.getFunction()->needsUnwindTableEntry();
Reid Kleckner97797412015-10-07 23:55:01 +00001460 bool IsFunclet = isFuncletReturnInstr(MBBI);
Reid Kleckner51460c12015-11-06 01:49:05 +00001461 MachineBasicBlock *TargetMBB = nullptr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001462
1463 // Get the number of bytes to allocate from the FrameInfo.
1464 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001465 uint64_t MaxAlign = calculateMaxStackAlign(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001466 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
1467 uint64_t NumBytes = 0;
1468
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001469 if (MBBI->getOpcode() == X86::CATCHRET) {
Reid Kleckner51460c12015-11-06 01:49:05 +00001470 // SEH shouldn't use catchret.
1471 assert(!isAsynchronousEHPersonality(
1472 classifyEHPersonality(MF.getFunction()->getPersonalityFn())) &&
1473 "SEH should not use CATCHRET");
1474
Reid Kleckner28e49032015-10-16 23:43:27 +00001475 NumBytes = getWinEHFuncletFrameSize(MF);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001476 assert(hasFP(MF) && "EH funclets without FP not yet implemented");
Reid Kleckner51460c12015-11-06 01:49:05 +00001477 TargetMBB = MBBI->getOperand(0).getMBB();
David Majnemer91b0ab92015-09-29 22:33:36 +00001478
Reid Klecknerda6dcc52015-09-10 22:00:02 +00001479 // Pop EBP.
1480 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::POP64r : X86::POP32r),
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001481 MachineFramePtr)
1482 .setMIFlag(MachineInstr::FrameDestroy);
David Majnemer91b0ab92015-09-29 22:33:36 +00001483 } else if (MBBI->getOpcode() == X86::CLEANUPRET) {
Reid Kleckner28e49032015-10-16 23:43:27 +00001484 NumBytes = getWinEHFuncletFrameSize(MF);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00001485 assert(hasFP(MF) && "EH funclets without FP not yet implemented");
1486 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::POP64r : X86::POP32r),
1487 MachineFramePtr)
1488 .setMIFlag(MachineInstr::FrameDestroy);
Reid Klecknerdf129512015-09-08 22:44:41 +00001489 } else if (hasFP(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001490 // Calculate required stack adjustment.
1491 uint64_t FrameSize = StackSize - SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001492 NumBytes = FrameSize - CSSize;
1493
1494 // Callee-saved registers were pushed on stack before the stack was
1495 // realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001496 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +00001497 NumBytes = RoundUpToAlignment(FrameSize, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001498
1499 // Pop EBP.
1500 BuildMI(MBB, MBBI, DL,
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001501 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), MachineFramePtr)
1502 .setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001503 } else {
1504 NumBytes = StackSize - CSSize;
1505 }
David Majnemer93c22a42015-02-10 00:57:42 +00001506 uint64_t SEHStackAllocAmt = NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001507
1508 // Skip the callee-saved pop instructions.
1509 while (MBBI != MBB.begin()) {
1510 MachineBasicBlock::iterator PI = std::prev(MBBI);
1511 unsigned Opc = PI->getOpcode();
1512
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001513 if ((Opc != X86::POP32r || !PI->getFlag(MachineInstr::FrameDestroy)) &&
1514 (Opc != X86::POP64r || !PI->getFlag(MachineInstr::FrameDestroy)) &&
1515 Opc != X86::DBG_VALUE && !PI->isTerminator())
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001516 break;
1517
1518 --MBBI;
1519 }
1520 MachineBasicBlock::iterator FirstCSPop = MBBI;
1521
Reid Kleckner51460c12015-11-06 01:49:05 +00001522 if (TargetMBB) {
David Majnemer35d27b22015-10-09 22:18:45 +00001523 // Fill EAX/RAX with the address of the target block.
1524 unsigned ReturnReg = STI.is64Bit() ? X86::RAX : X86::EAX;
1525 if (STI.is64Bit()) {
Reid Kleckner51460c12015-11-06 01:49:05 +00001526 // LEA64r TargetMBB(%rip), %rax
David Majnemer35d27b22015-10-09 22:18:45 +00001527 BuildMI(MBB, FirstCSPop, DL, TII.get(X86::LEA64r), ReturnReg)
1528 .addReg(X86::RIP)
1529 .addImm(0)
1530 .addReg(0)
Reid Kleckner51460c12015-11-06 01:49:05 +00001531 .addMBB(TargetMBB)
David Majnemer35d27b22015-10-09 22:18:45 +00001532 .addReg(0);
1533 } else {
Reid Kleckner51460c12015-11-06 01:49:05 +00001534 // MOV32ri $TargetMBB, %eax
Reid Kleckner64b003f2015-11-09 21:04:00 +00001535 BuildMI(MBB, FirstCSPop, DL, TII.get(X86::MOV32ri), ReturnReg)
Reid Kleckner51460c12015-11-06 01:49:05 +00001536 .addMBB(TargetMBB);
David Majnemer35d27b22015-10-09 22:18:45 +00001537 }
Reid Kleckner51460c12015-11-06 01:49:05 +00001538 // Record that we've taken the address of TargetMBB and no longer just
Joseph Tremoulet3d0fbf12015-10-23 15:06:05 +00001539 // reference it in a terminator.
Reid Kleckner51460c12015-11-06 01:49:05 +00001540 TargetMBB->setHasAddressTaken();
David Majnemer35d27b22015-10-09 22:18:45 +00001541 }
1542
Quentin Colombetaa8020752015-05-27 06:28:41 +00001543 if (MBBI != MBB.end())
1544 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001545
1546 // If there is an ADD32ri or SUB32ri of ESP immediately before this
1547 // instruction, merge the two instructions.
1548 if (NumBytes || MFI->hasVarSizedObjects())
Michael Kupersteincba308c2015-07-28 08:56:13 +00001549 NumBytes += mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001550
1551 // If dynamic alloca is used, then reset esp to point to the last callee-saved
1552 // slot before popping them off! Same applies for the case, when stack was
Reid Kleckner97797412015-10-07 23:55:01 +00001553 // realigned. Don't do this if this was a funclet epilogue, since the funclets
1554 // will not do realignment or dynamic stack allocation.
1555 if ((TRI->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) &&
1556 !IsFunclet) {
Reid Kleckner034ea962015-06-18 20:32:02 +00001557 if (TRI->needsStackRealignment(MF))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001558 MBBI = FirstCSPop;
David Majnemere1bbad92015-02-25 21:13:37 +00001559 unsigned SEHFrameOffset = calculateSetFPREG(SEHStackAllocAmt);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001560 uint64_t LEAAmount =
1561 IsWin64Prologue ? SEHStackAllocAmt - SEHFrameOffset : -CSSize;
David Majnemere1bbad92015-02-25 21:13:37 +00001562
1563 // There are only two legal forms of epilogue:
1564 // - add SEHAllocationSize, %rsp
1565 // - lea SEHAllocationSize(%FramePtr), %rsp
1566 //
1567 // 'mov %FramePtr, %rsp' will not be recognized as an epilogue sequence.
1568 // However, we may use this sequence if we have a frame pointer because the
1569 // effects of the prologue can safely be undone.
1570 if (LEAAmount != 0) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001571 unsigned Opc = getLEArOpcode(Uses64BitFramePtr);
1572 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
David Majnemere1bbad92015-02-25 21:13:37 +00001573 FramePtr, false, LEAAmount);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001574 --MBBI;
1575 } else {
1576 unsigned Opc = (Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr);
1577 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
1578 .addReg(FramePtr);
1579 --MBBI;
1580 }
1581 } else if (NumBytes) {
1582 // Adjust stack pointer back: ESP += numbytes.
Reid Kleckner98d78032015-06-18 20:22:12 +00001583 emitSPUpdate(MBB, MBBI, NumBytes, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001584 --MBBI;
1585 }
1586
1587 // Windows unwinder will not invoke function's exception handler if IP is
1588 // either in prologue or in epilogue. This behavior causes a problem when a
1589 // call immediately precedes an epilogue, because the return address points
1590 // into the epilogue. To cope with that, we insert an epilogue marker here,
1591 // then replace it with a 'nop' if it ends up immediately after a CALL in the
1592 // final emitted code.
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001593 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001594 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_Epilogue));
1595
Quentin Colombet494eb602015-05-22 18:10:47 +00001596 // Add the return addr area delta back since we are not tail calling.
1597 int Offset = -1 * X86FI->getTCReturnAddrDelta();
1598 assert(Offset >= 0 && "TCDelta should never be positive");
1599 if (Offset) {
1600 MBBI = MBB.getFirstTerminator();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001601
1602 // Check for possible merge with preceding ADD instruction.
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001603 Offset += mergeSPUpdates(MBB, MBBI, true);
Reid Kleckner98d78032015-06-18 20:22:12 +00001604 emitSPUpdate(MBB, MBBI, Offset, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001605 }
1606}
1607
James Y Knight5567baf2015-08-15 02:32:35 +00001608// NOTE: this only has a subset of the full frame index logic. In
1609// particular, the FI < 0 and AfterFPPop logic is handled in
1610// X86RegisterInfo::eliminateFrameIndex, but not here. Possibly
1611// (probably?) it should be moved into here.
1612int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1613 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001614 const MachineFrameInfo *MFI = MF.getFrameInfo();
James Y Knight5567baf2015-08-15 02:32:35 +00001615
1616 // We can't calculate offset from frame pointer if the stack is realigned,
1617 // so enforce usage of stack/base pointer. The base pointer is used when we
1618 // have dynamic allocas in addition to dynamic realignment.
1619 if (TRI->hasBasePointer(MF))
1620 FrameReg = TRI->getBaseRegister();
1621 else if (TRI->needsStackRealignment(MF))
1622 FrameReg = TRI->getStackRegister();
1623 else
1624 FrameReg = TRI->getFrameRegister(MF);
1625
David Majnemer93c22a42015-02-10 00:57:42 +00001626 // Offset will hold the offset from the stack pointer at function entry to the
1627 // object.
1628 // We need to factor in additional offsets applied during the prologue to the
1629 // frame, base, and stack pointer depending on which is used.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001630 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
David Majnemer93c22a42015-02-10 00:57:42 +00001631 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1632 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001633 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001634 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001635 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
David Majnemer93c22a42015-02-10 00:57:42 +00001636 int64_t FPDelta = 0;
1637
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001638 if (IsWin64Prologue) {
David Majnemer89d05642015-02-21 01:04:47 +00001639 assert(!MFI->hasCalls() || (StackSize % 16) == 8);
1640
David Majnemer93c22a42015-02-10 00:57:42 +00001641 // Calculate required stack adjustment.
1642 uint64_t FrameSize = StackSize - SlotSize;
1643 // If required, include space for extra hidden slot for stashing base pointer.
1644 if (X86FI->getRestoreBasePointer())
1645 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001646 uint64_t NumBytes = FrameSize - CSSize;
David Majnemer93c22a42015-02-10 00:57:42 +00001647
David Majnemer93c22a42015-02-10 00:57:42 +00001648 uint64_t SEHFrameOffset = calculateSetFPREG(NumBytes);
David Majnemer13d0b112015-02-10 21:22:05 +00001649 if (FI && FI == X86FI->getFAIndex())
1650 return -SEHFrameOffset;
1651
David Majnemer93c22a42015-02-10 00:57:42 +00001652 // FPDelta is the offset from the "traditional" FP location of the old base
1653 // pointer followed by return address and the location required by the
1654 // restricted Win64 prologue.
1655 // Add FPDelta to all offsets below that go through the frame pointer.
David Majnemer89d05642015-02-21 01:04:47 +00001656 FPDelta = FrameSize - SEHFrameOffset;
1657 assert((!MFI->hasCalls() || (FPDelta % 16) == 0) &&
1658 "FPDelta isn't aligned per the Win64 ABI!");
David Majnemer93c22a42015-02-10 00:57:42 +00001659 }
1660
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001661
Reid Kleckner034ea962015-06-18 20:32:02 +00001662 if (TRI->hasBasePointer(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +00001663 assert(HasFP && "VLAs and dynamic stack realign, but no FP?!");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001664 if (FI < 0) {
1665 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001666 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001667 } else {
1668 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1669 return Offset + StackSize;
1670 }
Reid Kleckner034ea962015-06-18 20:32:02 +00001671 } else if (TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001672 if (FI < 0) {
1673 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001674 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001675 } else {
1676 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1677 return Offset + StackSize;
1678 }
1679 // FIXME: Support tail calls
1680 } else {
David Majnemer93c22a42015-02-10 00:57:42 +00001681 if (!HasFP)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001682 return Offset + StackSize;
1683
1684 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001685 Offset += SlotSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001686
1687 // Skip the RETADDR move area
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001688 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1689 if (TailCallReturnAddrDelta < 0)
1690 Offset -= TailCallReturnAddrDelta;
1691 }
1692
David Majnemer89d05642015-02-21 01:04:47 +00001693 return Offset + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001694}
1695
James Y Knight5567baf2015-08-15 02:32:35 +00001696// Simplified from getFrameIndexReference keeping only StackPointer cases
1697int X86FrameLowering::getFrameIndexReferenceFromSP(const MachineFunction &MF,
1698 int FI,
1699 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001700 const MachineFrameInfo *MFI = MF.getFrameInfo();
1701 // Does not include any dynamic realign.
1702 const uint64_t StackSize = MFI->getStackSize();
1703 {
1704#ifndef NDEBUG
Reid Kleckner6ddae312015-11-05 21:09:49 +00001705 // LLVM arranges the stack as follows:
1706 // ...
1707 // ARG2
1708 // ARG1
1709 // RETADDR
1710 // PUSH RBP <-- RBP points here
1711 // PUSH CSRs
Reid Kleckner94b57062015-11-13 19:06:01 +00001712 // ~~~~~~~ <-- possible stack realignment (non-win64)
Reid Kleckner6ddae312015-11-05 21:09:49 +00001713 // ...
1714 // STACK OBJECTS
1715 // ... <-- RSP after prologue points here
Reid Kleckner94b57062015-11-13 19:06:01 +00001716 // ~~~~~~~ <-- possible stack realignment (win64)
Reid Kleckner6ddae312015-11-05 21:09:49 +00001717 //
1718 // if (hasVarSizedObjects()):
1719 // ... <-- "base pointer" (ESI/RBX) points here
1720 // DYNAMIC ALLOCAS
1721 // ... <-- RSP points here
1722 //
1723 // Case 1: In the simple case of no stack realignment and no dynamic
1724 // allocas, both "fixed" stack objects (arguments and CSRs) are addressable
1725 // with fixed offsets from RSP.
1726 //
1727 // Case 2: In the case of stack realignment with no dynamic allocas, fixed
1728 // stack objects are addressed with RBP and regular stack objects with RSP.
1729 //
1730 // Case 3: In the case of dynamic allocas and stack realignment, RSP is used
1731 // to address stack arguments for outgoing calls and nothing else. The "base
1732 // pointer" points to local variables, and RBP points to fixed objects.
1733 //
1734 // In cases 2 and 3, we can only answer for non-fixed stack objects, and the
1735 // answer we give is relative to the SP after the prologue, and not the
1736 // SP in the middle of the function.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001737
Reid Kleckner94b57062015-11-13 19:06:01 +00001738 assert((!MFI->isFixedObjectIndex(FI) || !TRI->needsStackRealignment(MF) ||
1739 STI.isTargetWin64()) &&
Reid Kleckner6ddae312015-11-05 21:09:49 +00001740 "offset from fixed object to SP is not static");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001741
Reid Kleckner6ddae312015-11-05 21:09:49 +00001742 // We don't handle tail calls, and shouldn't be seeing them either.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001743 int TailCallReturnAddrDelta =
1744 MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta();
1745 assert(!(TailCallReturnAddrDelta < 0) && "we don't handle this case!");
1746#endif
1747 }
1748
James Y Knight5567baf2015-08-15 02:32:35 +00001749 // Fill in FrameReg output argument.
1750 FrameReg = TRI->getStackRegister();
1751
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001752 // This is how the math works out:
1753 //
1754 // %rsp grows (i.e. gets lower) left to right. Each box below is
1755 // one word (eight bytes). Obj0 is the stack slot we're trying to
1756 // get to.
1757 //
1758 // ----------------------------------
1759 // | BP | Obj0 | Obj1 | ... | ObjN |
1760 // ----------------------------------
1761 // ^ ^ ^ ^
1762 // A B C E
1763 //
1764 // A is the incoming stack pointer.
1765 // (B - A) is the local area offset (-8 for x86-64) [1]
1766 // (C - A) is the Offset returned by MFI->getObjectOffset for Obj0 [2]
1767 //
1768 // |(E - B)| is the StackSize (absolute value, positive). For a
1769 // stack that grown down, this works out to be (B - E). [3]
1770 //
1771 // E is also the value of %rsp after stack has been set up, and we
1772 // want (C - E) -- the value we can add to %rsp to get to Obj0. Now
1773 // (C - E) == (C - A) - (B - A) + (B - E)
1774 // { Using [1], [2] and [3] above }
1775 // == getObjectOffset - LocalAreaOffset + StackSize
1776 //
1777
1778 // Get the Offset from the StackPointer
1779 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
1780
1781 return Offset + StackSize;
1782}
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001783
1784bool X86FrameLowering::assignCalleeSavedSpillSlots(
1785 MachineFunction &MF, const TargetRegisterInfo *TRI,
1786 std::vector<CalleeSavedInfo> &CSI) const {
1787 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001788 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1789
1790 unsigned CalleeSavedFrameSize = 0;
1791 int SpillSlotOffset = getOffsetOfLocalArea() + X86FI->getTCReturnAddrDelta();
1792
1793 if (hasFP(MF)) {
1794 // emitPrologue always spills frame register the first thing.
1795 SpillSlotOffset -= SlotSize;
1796 MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1797
1798 // Since emitPrologue and emitEpilogue will handle spilling and restoring of
1799 // the frame register, we can delete it from CSI list and not have to worry
1800 // about avoiding it later.
Reid Kleckner034ea962015-06-18 20:32:02 +00001801 unsigned FPReg = TRI->getFrameRegister(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001802 for (unsigned i = 0; i < CSI.size(); ++i) {
1803 if (TRI->regsOverlap(CSI[i].getReg(),FPReg)) {
1804 CSI.erase(CSI.begin() + i);
1805 break;
1806 }
1807 }
1808 }
1809
1810 // Assign slots for GPRs. It increases frame size.
1811 for (unsigned i = CSI.size(); i != 0; --i) {
1812 unsigned Reg = CSI[i - 1].getReg();
1813
1814 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1815 continue;
1816
1817 SpillSlotOffset -= SlotSize;
1818 CalleeSavedFrameSize += SlotSize;
1819
1820 int SlotIndex = MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1821 CSI[i - 1].setFrameIdx(SlotIndex);
1822 }
1823
1824 X86FI->setCalleeSavedFrameSize(CalleeSavedFrameSize);
1825
1826 // Assign slots for XMMs.
1827 for (unsigned i = CSI.size(); i != 0; --i) {
1828 unsigned Reg = CSI[i - 1].getReg();
1829 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
1830 continue;
1831
Reid Kleckner034ea962015-06-18 20:32:02 +00001832 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001833 // ensure alignment
1834 SpillSlotOffset -= std::abs(SpillSlotOffset) % RC->getAlignment();
1835 // spill into slot
1836 SpillSlotOffset -= RC->getSize();
1837 int SlotIndex =
1838 MFI->CreateFixedSpillStackObject(RC->getSize(), SpillSlotOffset);
1839 CSI[i - 1].setFrameIdx(SlotIndex);
1840 MFI->ensureMaxAlignment(RC->getAlignment());
1841 }
1842
1843 return true;
1844}
1845
1846bool X86FrameLowering::spillCalleeSavedRegisters(
1847 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
1848 const std::vector<CalleeSavedInfo> &CSI,
1849 const TargetRegisterInfo *TRI) const {
1850 DebugLoc DL = MBB.findDebugLoc(MI);
1851
Reid Klecknerdf129512015-09-08 22:44:41 +00001852 // Don't save CSRs in 32-bit EH funclets. The caller saves EBX, EBP, ESI, EDI
1853 // for us, and there are no XMM CSRs on Win32.
1854 if (MBB.isEHFuncletEntry() && STI.is32Bit() && STI.isOSWindows())
1855 return true;
1856
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001857 // Push GPRs. It increases frame size.
1858 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
1859 for (unsigned i = CSI.size(); i != 0; --i) {
1860 unsigned Reg = CSI[i - 1].getReg();
1861
1862 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1863 continue;
1864 // Add the callee-saved register as live-in. It's killed at the spill.
1865 MBB.addLiveIn(Reg);
1866
1867 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1868 .setMIFlag(MachineInstr::FrameSetup);
1869 }
1870
1871 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1872 // It can be done by spilling XMMs to stack frame.
1873 for (unsigned i = CSI.size(); i != 0; --i) {
1874 unsigned Reg = CSI[i-1].getReg();
David Majnemera7d908e2015-02-10 19:01:47 +00001875 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001876 continue;
1877 // Add the callee-saved register as live-in. It's killed at the spill.
1878 MBB.addLiveIn(Reg);
1879 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1880
1881 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i - 1].getFrameIdx(), RC,
1882 TRI);
1883 --MI;
1884 MI->setFlag(MachineInstr::FrameSetup);
1885 ++MI;
1886 }
1887
1888 return true;
1889}
1890
1891bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
1892 MachineBasicBlock::iterator MI,
1893 const std::vector<CalleeSavedInfo> &CSI,
1894 const TargetRegisterInfo *TRI) const {
1895 if (CSI.empty())
1896 return false;
1897
Reid Klecknerfc64fae2015-10-01 21:38:24 +00001898 if (isFuncletReturnInstr(MI) && STI.isOSWindows()) {
1899 // Don't restore CSRs in 32-bit EH funclets. Matches
1900 // spillCalleeSavedRegisters.
1901 if (STI.is32Bit())
1902 return true;
1903 // Don't restore CSRs before an SEH catchret. SEH except blocks do not form
1904 // funclets. emitEpilogue transforms these to normal jumps.
1905 if (MI->getOpcode() == X86::CATCHRET) {
1906 const Function *Func = MBB.getParent()->getFunction();
1907 bool IsSEH = isAsynchronousEHPersonality(
1908 classifyEHPersonality(Func->getPersonalityFn()));
1909 if (IsSEH)
1910 return true;
1911 }
1912 }
Reid Klecknerdf129512015-09-08 22:44:41 +00001913
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001914 DebugLoc DL = MBB.findDebugLoc(MI);
1915
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001916 // Reload XMMs from stack frame.
1917 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1918 unsigned Reg = CSI[i].getReg();
1919 if (X86::GR64RegClass.contains(Reg) ||
1920 X86::GR32RegClass.contains(Reg))
1921 continue;
1922
1923 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1924 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(), RC, TRI);
1925 }
1926
1927 // POP GPRs.
1928 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1929 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1930 unsigned Reg = CSI[i].getReg();
1931 if (!X86::GR64RegClass.contains(Reg) &&
1932 !X86::GR32RegClass.contains(Reg))
1933 continue;
1934
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001935 BuildMI(MBB, MI, DL, TII.get(Opc), Reg)
1936 .setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001937 }
1938 return true;
1939}
1940
Matthias Braun02564862015-07-14 17:17:13 +00001941void X86FrameLowering::determineCalleeSaves(MachineFunction &MF,
1942 BitVector &SavedRegs,
1943 RegScavenger *RS) const {
1944 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
1945
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001946 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001947
1948 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1949 int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1950
1951 if (TailCallReturnAddrDelta < 0) {
1952 // create RETURNADDR area
1953 // arg
1954 // arg
1955 // RETADDR
1956 // { ...
1957 // RETADDR area
1958 // ...
1959 // }
1960 // [EBP]
1961 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1962 TailCallReturnAddrDelta - SlotSize, true);
1963 }
1964
1965 // Spill the BasePtr if it's used.
Reid Klecknerdf129512015-09-08 22:44:41 +00001966 if (TRI->hasBasePointer(MF)) {
Matthias Braun02564862015-07-14 17:17:13 +00001967 SavedRegs.set(TRI->getBaseRegister());
Reid Klecknerdf129512015-09-08 22:44:41 +00001968
1969 // Allocate a spill slot for EBP if we have a base pointer and EH funclets.
1970 if (MF.getMMI().hasEHFunclets()) {
1971 int FI = MFI->CreateSpillStackObject(SlotSize, SlotSize);
1972 X86FI->setHasSEHFramePtrSave(true);
1973 X86FI->setSEHFramePtrSaveIndex(FI);
1974 }
1975 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001976}
1977
1978static bool
1979HasNestArgument(const MachineFunction *MF) {
1980 const Function *F = MF->getFunction();
1981 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1982 I != E; I++) {
1983 if (I->hasNestAttr())
1984 return true;
1985 }
1986 return false;
1987}
1988
1989/// GetScratchRegister - Get a temp register for performing work in the
1990/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1991/// and the properties of the function either one or two registers will be
1992/// needed. Set primary to true for the first register, false for the second.
1993static unsigned
1994GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary) {
1995 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1996
1997 // Erlang stuff.
1998 if (CallingConvention == CallingConv::HiPE) {
1999 if (Is64Bit)
2000 return Primary ? X86::R14 : X86::R13;
2001 else
2002 return Primary ? X86::EBX : X86::EDI;
2003 }
2004
2005 if (Is64Bit) {
2006 if (IsLP64)
2007 return Primary ? X86::R11 : X86::R12;
2008 else
2009 return Primary ? X86::R11D : X86::R12D;
2010 }
2011
2012 bool IsNested = HasNestArgument(&MF);
2013
2014 if (CallingConvention == CallingConv::X86_FastCall ||
2015 CallingConvention == CallingConv::Fast) {
2016 if (IsNested)
2017 report_fatal_error("Segmented stacks does not support fastcall with "
2018 "nested function.");
2019 return Primary ? X86::EAX : X86::ECX;
2020 }
2021 if (IsNested)
2022 return Primary ? X86::EDX : X86::EAX;
2023 return Primary ? X86::ECX : X86::EAX;
2024}
2025
2026// The stack limit in the TCB is set to this many bytes above the actual stack
2027// limit.
2028static const uint64_t kSplitStackAvailable = 256;
2029
Quentin Colombet61b305e2015-05-05 17:38:16 +00002030void X86FrameLowering::adjustForSegmentedStacks(
2031 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002032 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002033 uint64_t StackSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002034 unsigned TlsReg, TlsOffset;
2035 DebugLoc DL;
2036
2037 unsigned ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
2038 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
2039 "Scratch register is live-in");
2040
2041 if (MF.getFunction()->isVarArg())
2042 report_fatal_error("Segmented stacks do not support vararg functions.");
2043 if (!STI.isTargetLinux() && !STI.isTargetDarwin() && !STI.isTargetWin32() &&
2044 !STI.isTargetWin64() && !STI.isTargetFreeBSD() &&
2045 !STI.isTargetDragonFly())
2046 report_fatal_error("Segmented stacks not supported on this platform.");
2047
2048 // Eventually StackSize will be calculated by a link-time pass; which will
2049 // also decide whether checking code needs to be injected into this particular
2050 // prologue.
2051 StackSize = MFI->getStackSize();
2052
2053 // Do not generate a prologue for functions with a stack of size zero
2054 if (StackSize == 0)
2055 return;
2056
2057 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
2058 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
2059 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
2060 bool IsNested = false;
2061
2062 // We need to know if the function has a nest argument only in 64 bit mode.
2063 if (Is64Bit)
2064 IsNested = HasNestArgument(&MF);
2065
2066 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
2067 // allocMBB needs to be last (terminating) instruction.
2068
Matthias Braund9da1622015-09-09 18:08:03 +00002069 for (const auto &LI : PrologueMBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +00002070 allocMBB->addLiveIn(LI);
2071 checkMBB->addLiveIn(LI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002072 }
2073
2074 if (IsNested)
2075 allocMBB->addLiveIn(IsLP64 ? X86::R10 : X86::R10D);
2076
2077 MF.push_front(allocMBB);
2078 MF.push_front(checkMBB);
2079
2080 // When the frame size is less than 256 we just compare the stack
2081 // boundary directly to the value of the stack pointer, per gcc.
2082 bool CompareStackPointer = StackSize < kSplitStackAvailable;
2083
2084 // Read the limit off the current stacklet off the stack_guard location.
2085 if (Is64Bit) {
2086 if (STI.isTargetLinux()) {
2087 TlsReg = X86::FS;
2088 TlsOffset = IsLP64 ? 0x70 : 0x40;
2089 } else if (STI.isTargetDarwin()) {
2090 TlsReg = X86::GS;
2091 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
2092 } else if (STI.isTargetWin64()) {
2093 TlsReg = X86::GS;
2094 TlsOffset = 0x28; // pvArbitrary, reserved for application use
2095 } else if (STI.isTargetFreeBSD()) {
2096 TlsReg = X86::FS;
2097 TlsOffset = 0x18;
2098 } else if (STI.isTargetDragonFly()) {
2099 TlsReg = X86::FS;
2100 TlsOffset = 0x20; // use tls_tcb.tcb_segstack
2101 } else {
2102 report_fatal_error("Segmented stacks not supported on this platform.");
2103 }
2104
2105 if (CompareStackPointer)
2106 ScratchReg = IsLP64 ? X86::RSP : X86::ESP;
2107 else
2108 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::LEA64r : X86::LEA64_32r), ScratchReg).addReg(X86::RSP)
2109 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
2110
2111 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::CMP64rm : X86::CMP32rm)).addReg(ScratchReg)
2112 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
2113 } else {
2114 if (STI.isTargetLinux()) {
2115 TlsReg = X86::GS;
2116 TlsOffset = 0x30;
2117 } else if (STI.isTargetDarwin()) {
2118 TlsReg = X86::GS;
2119 TlsOffset = 0x48 + 90*4;
2120 } else if (STI.isTargetWin32()) {
2121 TlsReg = X86::FS;
2122 TlsOffset = 0x14; // pvArbitrary, reserved for application use
2123 } else if (STI.isTargetDragonFly()) {
2124 TlsReg = X86::FS;
2125 TlsOffset = 0x10; // use tls_tcb.tcb_segstack
2126 } else if (STI.isTargetFreeBSD()) {
2127 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
2128 } else {
2129 report_fatal_error("Segmented stacks not supported on this platform.");
2130 }
2131
2132 if (CompareStackPointer)
2133 ScratchReg = X86::ESP;
2134 else
2135 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
2136 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
2137
2138 if (STI.isTargetLinux() || STI.isTargetWin32() || STI.isTargetWin64() ||
2139 STI.isTargetDragonFly()) {
2140 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
2141 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
2142 } else if (STI.isTargetDarwin()) {
2143
2144 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register.
2145 unsigned ScratchReg2;
2146 bool SaveScratch2;
2147 if (CompareStackPointer) {
2148 // The primary scratch register is available for holding the TLS offset.
2149 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, true);
2150 SaveScratch2 = false;
2151 } else {
2152 // Need to use a second register to hold the TLS offset
2153 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, false);
2154
2155 // Unfortunately, with fastcc the second scratch register may hold an
2156 // argument.
2157 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
2158 }
2159
2160 // If Scratch2 is live-in then it needs to be saved.
2161 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
2162 "Scratch register is live-in and not saved");
2163
2164 if (SaveScratch2)
2165 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
2166 .addReg(ScratchReg2, RegState::Kill);
2167
2168 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
2169 .addImm(TlsOffset);
2170 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
2171 .addReg(ScratchReg)
2172 .addReg(ScratchReg2).addImm(1).addReg(0)
2173 .addImm(0)
2174 .addReg(TlsReg);
2175
2176 if (SaveScratch2)
2177 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
2178 }
2179 }
2180
2181 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
2182 // It jumps to normal execution of the function body.
Quentin Colombet61b305e2015-05-05 17:38:16 +00002183 BuildMI(checkMBB, DL, TII.get(X86::JA_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002184
2185 // On 32 bit we first push the arguments size and then the frame size. On 64
2186 // bit, we pass the stack frame size in r10 and the argument size in r11.
2187 if (Is64Bit) {
2188 // Functions with nested arguments use R10, so it needs to be saved across
2189 // the call to _morestack
2190
2191 const unsigned RegAX = IsLP64 ? X86::RAX : X86::EAX;
2192 const unsigned Reg10 = IsLP64 ? X86::R10 : X86::R10D;
2193 const unsigned Reg11 = IsLP64 ? X86::R11 : X86::R11D;
2194 const unsigned MOVrr = IsLP64 ? X86::MOV64rr : X86::MOV32rr;
2195 const unsigned MOVri = IsLP64 ? X86::MOV64ri : X86::MOV32ri;
2196
2197 if (IsNested)
2198 BuildMI(allocMBB, DL, TII.get(MOVrr), RegAX).addReg(Reg10);
2199
2200 BuildMI(allocMBB, DL, TII.get(MOVri), Reg10)
2201 .addImm(StackSize);
2202 BuildMI(allocMBB, DL, TII.get(MOVri), Reg11)
2203 .addImm(X86FI->getArgumentStackSize());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002204 } else {
2205 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
2206 .addImm(X86FI->getArgumentStackSize());
2207 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
2208 .addImm(StackSize);
2209 }
2210
2211 // __morestack is in libgcc
2212 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
2213 // Under the large code model, we cannot assume that __morestack lives
2214 // within 2^31 bytes of the call site, so we cannot use pc-relative
2215 // addressing. We cannot perform the call via a temporary register,
2216 // as the rax register may be used to store the static chain, and all
2217 // other suitable registers may be either callee-save or used for
2218 // parameter passing. We cannot use the stack at this point either
2219 // because __morestack manipulates the stack directly.
2220 //
2221 // To avoid these issues, perform an indirect call via a read-only memory
2222 // location containing the address.
2223 //
2224 // This solution is not perfect, as it assumes that the .rodata section
2225 // is laid out within 2^31 bytes of each function body, but this seems
2226 // to be sufficient for JIT.
2227 BuildMI(allocMBB, DL, TII.get(X86::CALL64m))
2228 .addReg(X86::RIP)
2229 .addImm(0)
2230 .addReg(0)
2231 .addExternalSymbol("__morestack_addr")
2232 .addReg(0);
2233 MF.getMMI().setUsesMorestackAddr(true);
2234 } else {
2235 if (Is64Bit)
2236 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
2237 .addExternalSymbol("__morestack");
2238 else
2239 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
2240 .addExternalSymbol("__morestack");
2241 }
2242
2243 if (IsNested)
2244 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
2245 else
2246 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
2247
Quentin Colombet61b305e2015-05-05 17:38:16 +00002248 allocMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002249
2250 checkMBB->addSuccessor(allocMBB);
Quentin Colombet61b305e2015-05-05 17:38:16 +00002251 checkMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002252
2253#ifdef XDEBUG
2254 MF.verify();
2255#endif
2256}
2257
2258/// Erlang programs may need a special prologue to handle the stack size they
2259/// might need at runtime. That is because Erlang/OTP does not implement a C
2260/// stack but uses a custom implementation of hybrid stack/heap architecture.
2261/// (for more information see Eric Stenman's Ph.D. thesis:
2262/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
2263///
2264/// CheckStack:
2265/// temp0 = sp - MaxStack
2266/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
2267/// OldStart:
2268/// ...
2269/// IncStack:
2270/// call inc_stack # doubles the stack space
2271/// temp0 = sp - MaxStack
2272/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Quentin Colombet61b305e2015-05-05 17:38:16 +00002273void X86FrameLowering::adjustForHiPEPrologue(
2274 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002275 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002276 DebugLoc DL;
2277 // HiPE-specific values
2278 const unsigned HipeLeafWords = 24;
2279 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
2280 const unsigned Guaranteed = HipeLeafWords * SlotSize;
2281 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
2282 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
2283 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
2284
2285 assert(STI.isTargetLinux() &&
2286 "HiPE prologue is only supported on Linux operating systems.");
2287
2288 // Compute the largest caller's frame that is needed to fit the callees'
2289 // frames. This 'MaxStack' is computed from:
2290 //
2291 // a) the fixed frame size, which is the space needed for all spilled temps,
2292 // b) outgoing on-stack parameter areas, and
2293 // c) the minimum stack space this function needs to make available for the
2294 // functions it calls (a tunable ABI property).
2295 if (MFI->hasCalls()) {
2296 unsigned MoreStackForCalls = 0;
2297
2298 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
2299 MBBI != MBBE; ++MBBI)
2300 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
2301 MI != ME; ++MI) {
2302 if (!MI->isCall())
2303 continue;
2304
2305 // Get callee operand.
2306 const MachineOperand &MO = MI->getOperand(0);
2307
2308 // Only take account of global function calls (no closures etc.).
2309 if (!MO.isGlobal())
2310 continue;
2311
2312 const Function *F = dyn_cast<Function>(MO.getGlobal());
2313 if (!F)
2314 continue;
2315
2316 // Do not update 'MaxStack' for primitive and built-in functions
2317 // (encoded with names either starting with "erlang."/"bif_" or not
2318 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
2319 // "_", such as the BIF "suspend_0") as they are executed on another
2320 // stack.
2321 if (F->getName().find("erlang.") != StringRef::npos ||
2322 F->getName().find("bif_") != StringRef::npos ||
2323 F->getName().find_first_of("._") == StringRef::npos)
2324 continue;
2325
2326 unsigned CalleeStkArity =
2327 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
2328 if (HipeLeafWords - 1 > CalleeStkArity)
2329 MoreStackForCalls = std::max(MoreStackForCalls,
2330 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
2331 }
2332 MaxStack += MoreStackForCalls;
2333 }
2334
2335 // If the stack frame needed is larger than the guaranteed then runtime checks
2336 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
2337 if (MaxStack > Guaranteed) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002338 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
2339 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
2340
Matthias Braund9da1622015-09-09 18:08:03 +00002341 for (const auto &LI : PrologueMBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +00002342 stackCheckMBB->addLiveIn(LI);
2343 incStackMBB->addLiveIn(LI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002344 }
2345
2346 MF.push_front(incStackMBB);
2347 MF.push_front(stackCheckMBB);
2348
2349 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
2350 unsigned LEAop, CMPop, CALLop;
2351 if (Is64Bit) {
2352 SPReg = X86::RSP;
2353 PReg = X86::RBP;
2354 LEAop = X86::LEA64r;
2355 CMPop = X86::CMP64rm;
2356 CALLop = X86::CALL64pcrel32;
2357 SPLimitOffset = 0x90;
2358 } else {
2359 SPReg = X86::ESP;
2360 PReg = X86::EBP;
2361 LEAop = X86::LEA32r;
2362 CMPop = X86::CMP32rm;
2363 CALLop = X86::CALLpcrel32;
2364 SPLimitOffset = 0x4c;
2365 }
2366
2367 ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
2368 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
2369 "HiPE prologue scratch register is live-in");
2370
2371 // Create new MBB for StackCheck:
2372 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
2373 SPReg, false, -MaxStack);
2374 // SPLimitOffset is in a fixed heap location (pointed by BP).
2375 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
2376 .addReg(ScratchReg), PReg, false, SPLimitOffset);
Quentin Colombet61b305e2015-05-05 17:38:16 +00002377 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002378
2379 // Create new MBB for IncStack:
2380 BuildMI(incStackMBB, DL, TII.get(CALLop)).
2381 addExternalSymbol("inc_stack_0");
2382 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
2383 SPReg, false, -MaxStack);
2384 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
2385 .addReg(ScratchReg), PReg, false, SPLimitOffset);
2386 BuildMI(incStackMBB, DL, TII.get(X86::JLE_1)).addMBB(incStackMBB);
2387
Quentin Colombet61b305e2015-05-05 17:38:16 +00002388 stackCheckMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002389 stackCheckMBB->addSuccessor(incStackMBB, 1);
Quentin Colombet61b305e2015-05-05 17:38:16 +00002390 incStackMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002391 incStackMBB->addSuccessor(incStackMBB, 1);
2392 }
2393#ifdef XDEBUG
2394 MF.verify();
2395#endif
2396}
2397
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002398bool X86FrameLowering::adjustStackWithPops(MachineBasicBlock &MBB,
2399 MachineBasicBlock::iterator MBBI, DebugLoc DL, int Offset) const {
2400
Michael Kupersteind9264652015-09-16 11:27:20 +00002401 if (Offset <= 0)
2402 return false;
2403
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002404 if (Offset % SlotSize)
2405 return false;
2406
2407 int NumPops = Offset / SlotSize;
2408 // This is only worth it if we have at most 2 pops.
2409 if (NumPops != 1 && NumPops != 2)
2410 return false;
2411
2412 // Handle only the trivial case where the adjustment directly follows
2413 // a call. This is the most common one, anyway.
2414 if (MBBI == MBB.begin())
2415 return false;
2416 MachineBasicBlock::iterator Prev = std::prev(MBBI);
2417 if (!Prev->isCall() || !Prev->getOperand(1).isRegMask())
2418 return false;
2419
2420 unsigned Regs[2];
2421 unsigned FoundRegs = 0;
2422
2423 auto RegMask = Prev->getOperand(1);
Michael Kupersteind9264652015-09-16 11:27:20 +00002424
2425 auto &RegClass =
2426 Is64Bit ? X86::GR64_NOREX_NOSPRegClass : X86::GR32_NOREX_NOSPRegClass;
2427 // Try to find up to NumPops free registers.
2428 for (auto Candidate : RegClass) {
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002429
2430 // Poor man's liveness:
2431 // Since we're immediately after a call, any register that is clobbered
2432 // by the call and not defined by it can be considered dead.
2433 if (!RegMask.clobbersPhysReg(Candidate))
2434 continue;
2435
2436 bool IsDef = false;
2437 for (const MachineOperand &MO : Prev->implicit_operands()) {
2438 if (MO.isReg() && MO.isDef() && MO.getReg() == Candidate) {
2439 IsDef = true;
2440 break;
2441 }
2442 }
2443
2444 if (IsDef)
2445 continue;
2446
2447 Regs[FoundRegs++] = Candidate;
2448 if (FoundRegs == (unsigned)NumPops)
2449 break;
2450 }
2451
2452 if (FoundRegs == 0)
2453 return false;
2454
2455 // If we found only one free register, but need two, reuse the same one twice.
2456 while (FoundRegs < (unsigned)NumPops)
2457 Regs[FoundRegs++] = Regs[0];
2458
2459 for (int i = 0; i < NumPops; ++i)
2460 BuildMI(MBB, MBBI, DL,
2461 TII.get(STI.is64Bit() ? X86::POP64r : X86::POP32r), Regs[i]);
2462
2463 return true;
2464}
2465
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002466void X86FrameLowering::
2467eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
2468 MachineBasicBlock::iterator I) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002469 bool reserveCallFrame = hasReservedCallFrame(MF);
Matthias Braunfa3872e2015-05-18 20:27:55 +00002470 unsigned Opcode = I->getOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002471 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002472 DebugLoc DL = I->getDebugLoc();
2473 uint64_t Amount = !reserveCallFrame ? I->getOperand(0).getImm() : 0;
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002474 uint64_t InternalAmt = (isDestroy || Amount) ? I->getOperand(1).getImm() : 0;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002475 I = MBB.erase(I);
2476
2477 if (!reserveCallFrame) {
2478 // If the stack pointer can be changed after prologue, turn the
2479 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
2480 // adjcallstackdown instruction into 'add ESP, <amt>'
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002481
2482 // We need to keep the stack aligned properly. To do this, we round the
2483 // amount of space needed for the outgoing arguments up to the next
2484 // alignment boundary.
David Majnemer93c22a42015-02-10 00:57:42 +00002485 unsigned StackAlign = getStackAlignment();
2486 Amount = RoundUpToAlignment(Amount, StackAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002487
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002488 MachineModuleInfo &MMI = MF.getMMI();
2489 const Function *Fn = MF.getFunction();
2490 bool WindowsCFI = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
2491 bool DwarfCFI = !WindowsCFI &&
2492 (MMI.hasDebugInfo() || Fn->needsUnwindTableEntry());
2493
Michael Kuperstein259f1502015-10-07 07:01:31 +00002494 // If we have any exception handlers in this function, and we adjust
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002495 // the SP before calls, we may need to indicate this to the unwinder
2496 // using GNU_ARGS_SIZE. Note that this may be necessary even when
2497 // Amount == 0, because the preceding function may have set a non-0
2498 // GNU_ARGS_SIZE.
Michael Kuperstein259f1502015-10-07 07:01:31 +00002499 // TODO: We don't need to reset this between subsequent functions,
2500 // if it didn't change.
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002501 bool HasDwarfEHHandlers = !WindowsCFI &&
2502 !MF.getMMI().getLandingPads().empty();
Michael Kuperstein259f1502015-10-07 07:01:31 +00002503
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002504 if (HasDwarfEHHandlers && !isDestroy &&
Michael Kuperstein259f1502015-10-07 07:01:31 +00002505 MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences())
Michael Kupersteinaf22daf2015-10-13 06:22:30 +00002506 BuildCFI(MBB, I, DL,
2507 MCCFIInstruction::createGnuArgsSize(nullptr, Amount));
Michael Kuperstein259f1502015-10-07 07:01:31 +00002508
2509 if (Amount == 0)
2510 return;
2511
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002512 // Factor out the amount that gets handled inside the sequence
2513 // (Pushes of argument for frame setup, callee pops for frame destroy)
2514 Amount -= InternalAmt;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002515
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002516 // If this is a callee-pop calling convention, and we're emitting precise
2517 // SP-based CFI, emit a CFA adjust for the amount the callee popped.
2518 if (isDestroy && InternalAmt && DwarfCFI && !hasFP(MF) &&
2519 MMI.usePreciseUnwindInfo())
2520 BuildCFI(MBB, I, DL,
2521 MCCFIInstruction::createAdjustCfaOffset(nullptr, -InternalAmt));
2522
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002523 if (Amount) {
Reid Kleckner98d78032015-06-18 20:22:12 +00002524 // Add Amount to SP to destroy a frame, and subtract to setup.
2525 int Offset = isDestroy ? Amount : -Amount;
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002526
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002527 if (!(Fn->optForMinSize() &&
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002528 adjustStackWithPops(MBB, I, DL, Offset)))
2529 BuildStackAdjustment(MBB, I, DL, Offset, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002530 }
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002531
Michael Kuperstein73dc8522015-11-03 08:17:25 +00002532 if (DwarfCFI && !hasFP(MF)) {
2533 // If we don't have FP, but need to generate unwind information,
2534 // we need to set the correct CFA offset after the stack adjustment.
2535 // How much we adjust the CFA offset depends on whether we're emitting
2536 // CFI only for EH purposes or for debugging. EH only requires the CFA
2537 // offset to be correct at each call site, while for debugging we want
2538 // it to be more precise.
2539 int CFAOffset = Amount;
2540 if (!MMI.usePreciseUnwindInfo())
2541 CFAOffset += InternalAmt;
2542 CFAOffset = isDestroy ? -CFAOffset : CFAOffset;
2543 BuildCFI(MBB, I, DL,
2544 MCCFIInstruction::createAdjustCfaOffset(nullptr, CFAOffset));
2545 }
2546
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002547 return;
2548 }
2549
Reid Kleckner98d78032015-06-18 20:22:12 +00002550 if (isDestroy && InternalAmt) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002551 // If we are performing frame pointer elimination and if the callee pops
2552 // something off the stack pointer, add it back. We do this until we have
2553 // more advanced stack pointer tracking ability.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002554 // We are not tracking the stack pointer adjustment by the callee, so make
2555 // sure we restore the stack pointer immediately after the call, there may
2556 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
2557 MachineBasicBlock::iterator B = MBB.begin();
2558 while (I != B && !std::prev(I)->isCall())
2559 --I;
Reid Kleckner98d78032015-06-18 20:22:12 +00002560 BuildStackAdjustment(MBB, I, DL, -InternalAmt, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002561 }
2562}
2563
Quentin Colombetaa8020752015-05-27 06:28:41 +00002564bool X86FrameLowering::canUseAsEpilogue(const MachineBasicBlock &MBB) const {
2565 assert(MBB.getParent() && "Block is not attached to a function!");
2566
Quentin Colombet421723c2015-11-04 22:37:28 +00002567 // Win64 has strict requirements in terms of epilogue and we are
2568 // not taking a chance at messing with them.
2569 // I.e., unless this block is already an exit block, we can't use
2570 // it as an epilogue.
Reid Kleckner4255b04e2015-11-16 18:47:12 +00002571 if (STI.isTargetWin64() && !MBB.succ_empty() && !MBB.isReturnBlock())
Quentin Colombet421723c2015-11-04 22:37:28 +00002572 return false;
2573
Quentin Colombetaa8020752015-05-27 06:28:41 +00002574 if (canUseLEAForSPInEpilogue(*MBB.getParent()))
2575 return true;
2576
2577 // If we cannot use LEA to adjust SP, we may need to use ADD, which
2578 // clobbers the EFLAGS. Check that none of the terminators reads the
2579 // EFLAGS, and if one uses it, conservatively assume this is not
2580 // safe to insert the epilogue here.
2581 return !terminatorsNeedFlagsAsInput(MBB);
2582}
Reid Klecknerdf129512015-09-08 22:44:41 +00002583
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002584MachineBasicBlock::iterator X86FrameLowering::restoreWin32EHStackPointers(
Reid Klecknerdf129512015-09-08 22:44:41 +00002585 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002586 DebugLoc DL, bool RestoreSP) const {
Reid Klecknerdf129512015-09-08 22:44:41 +00002587 assert(STI.isTargetWindowsMSVC() && "funclets only supported in MSVC env");
2588 assert(STI.isTargetWin32() && "EBP/ESI restoration only required on win32");
2589 assert(STI.is32Bit() && !Uses64BitFramePtr &&
2590 "restoring EBP/ESI on non-32-bit target");
2591
2592 MachineFunction &MF = *MBB.getParent();
2593 unsigned FramePtr = TRI->getFrameRegister(MF);
2594 unsigned BasePtr = TRI->getBaseRegister();
2595 MachineModuleInfo &MMI = MF.getMMI();
2596 const Function *Fn = MF.getFunction();
2597 WinEHFuncInfo &FuncInfo = MMI.getWinEHFuncInfo(Fn);
2598 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
2599 MachineFrameInfo *MFI = MF.getFrameInfo();
2600
2601 // FIXME: Don't set FrameSetup flag in catchret case.
2602
2603 int FI = FuncInfo.EHRegNodeFrameIndex;
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002604 int EHRegSize = MFI->getObjectSize(FI);
2605
2606 if (RestoreSP) {
2607 // MOV32rm -EHRegSize(%ebp), %esp
2608 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32rm), X86::ESP),
2609 X86::EBP, true, -EHRegSize)
2610 .setMIFlag(MachineInstr::FrameSetup);
2611 }
2612
Reid Klecknerdf129512015-09-08 22:44:41 +00002613 unsigned UsedReg;
2614 int EHRegOffset = getFrameIndexReference(MF, FI, UsedReg);
Reid Klecknerdf129512015-09-08 22:44:41 +00002615 int EndOffset = -EHRegOffset - EHRegSize;
Reid Klecknerb005d282015-09-16 20:16:27 +00002616 FuncInfo.EHRegNodeEndOffset = EndOffset;
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002617
Reid Klecknerdf129512015-09-08 22:44:41 +00002618 if (UsedReg == FramePtr) {
2619 // ADD $offset, %ebp
Reid Klecknerdf129512015-09-08 22:44:41 +00002620 unsigned ADDri = getADDriOpcode(false, EndOffset);
2621 BuildMI(MBB, MBBI, DL, TII.get(ADDri), FramePtr)
2622 .addReg(FramePtr)
2623 .addImm(EndOffset)
2624 .setMIFlag(MachineInstr::FrameSetup)
2625 ->getOperand(3)
2626 .setIsDead();
Reid Klecknerb2244cb2015-10-08 18:41:52 +00002627 assert(EndOffset >= 0 &&
2628 "end of registration object above normal EBP position!");
2629 } else if (UsedReg == BasePtr) {
Reid Klecknerdf129512015-09-08 22:44:41 +00002630 // LEA offset(%ebp), %esi
2631 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA32r), BasePtr),
2632 FramePtr, false, EndOffset)
2633 .setMIFlag(MachineInstr::FrameSetup);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002634 // MOV32rm SavedEBPOffset(%esi), %ebp
Reid Klecknerdf129512015-09-08 22:44:41 +00002635 assert(X86FI->getHasSEHFramePtrSave());
2636 int Offset =
2637 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(), UsedReg);
2638 assert(UsedReg == BasePtr);
Reid Kleckner5b8a46e2015-09-17 20:43:47 +00002639 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32rm), FramePtr),
2640 UsedReg, true, Offset)
Reid Klecknerdf129512015-09-08 22:44:41 +00002641 .setMIFlag(MachineInstr::FrameSetup);
Reid Klecknerb2244cb2015-10-08 18:41:52 +00002642 } else {
2643 llvm_unreachable("32-bit frames with WinEH must use FramePtr or BasePtr");
Reid Klecknerdf129512015-09-08 22:44:41 +00002644 }
2645 return MBBI;
2646}
Reid Kleckner28e49032015-10-16 23:43:27 +00002647
2648unsigned X86FrameLowering::getWinEHParentFrameOffset(const MachineFunction &MF) const {
2649 // RDX, the parent frame pointer, is homed into 16(%rsp) in the prologue.
2650 unsigned Offset = 16;
2651 // RBP is immediately pushed.
2652 Offset += SlotSize;
2653 // All callee-saved registers are then pushed.
2654 Offset += MF.getInfo<X86MachineFunctionInfo>()->getCalleeSavedFrameSize();
2655 // Every funclet allocates enough stack space for the largest outgoing call.
2656 Offset += getWinEHFuncletFrameSize(MF);
2657 return Offset;
2658}
Reid Kleckner94b57062015-11-13 19:06:01 +00002659
2660void X86FrameLowering::processFunctionBeforeFrameFinalized(
2661 MachineFunction &MF, RegScavenger *RS) const {
2662 // If this function isn't doing Win64-style C++ EH, we don't need to do
2663 // anything.
2664 const Function *Fn = MF.getFunction();
Reid Klecknerc397b262015-11-16 18:47:25 +00002665 if (!STI.is64Bit() || !MF.getMMI().hasEHFunclets() ||
2666 classifyEHPersonality(Fn->getPersonalityFn()) != EHPersonality::MSVC_CXX)
Reid Kleckner94b57062015-11-13 19:06:01 +00002667 return;
2668
2669 // Win64 C++ EH needs to allocate the UnwindHelp object at some fixed offset
2670 // relative to RSP after the prologue. Find the offset of the last fixed
Reid Klecknerc397b262015-11-16 18:47:25 +00002671 // object, so that we can allocate a slot immediately following it. If there
2672 // were no fixed objects, use offset -SlotSize, which is immediately after the
2673 // return address. Fixed objects have negative frame indices.
Reid Kleckner94b57062015-11-13 19:06:01 +00002674 MachineFrameInfo *MFI = MF.getFrameInfo();
Reid Klecknerc397b262015-11-16 18:47:25 +00002675 int64_t MinFixedObjOffset = -SlotSize;
Reid Kleckner94b57062015-11-13 19:06:01 +00002676 for (int I = MFI->getObjectIndexBegin(); I < 0; ++I)
2677 MinFixedObjOffset = std::min(MinFixedObjOffset, MFI->getObjectOffset(I));
2678
2679 int64_t UnwindHelpOffset = MinFixedObjOffset - SlotSize;
2680 int UnwindHelpFI =
2681 MFI->CreateFixedObject(SlotSize, UnwindHelpOffset, /*Immutable=*/false);
2682 MF.getMMI().getWinEHFuncInfo(Fn).UnwindHelpFrameIdx = UnwindHelpFI;
2683
2684 // Store -2 into UnwindHelp on function entry. We have to scan forwards past
2685 // other frame setup instructions.
2686 MachineBasicBlock &MBB = MF.front();
2687 auto MBBI = MBB.begin();
2688 while (MBBI != MBB.end() && MBBI->getFlag(MachineInstr::FrameSetup))
2689 ++MBBI;
2690
2691 DebugLoc DL = MBB.findDebugLoc(MBBI);
2692 addFrameReference(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64mi32)),
2693 UnwindHelpFI)
2694 .addImm(-2);
2695}