blob: 9318e1b03aa55f530b094ca94596d7492e7f08ec [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"
21#include "llvm/CodeGen/MachineFrameInfo.h"
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
24#include "llvm/CodeGen/MachineModuleInfo.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
26#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/Function.h"
28#include "llvm/MC/MCAsmInfo.h"
29#include "llvm/MC/MCSymbol.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000030#include "llvm/Target/TargetOptions.h"
31#include "llvm/Support/Debug.h"
32#include <cstdlib>
33
34using namespace llvm;
35
Reid Klecknerf9977bf2015-06-17 21:50:02 +000036X86FrameLowering::X86FrameLowering(const X86Subtarget &STI,
37 unsigned StackAlignOverride)
38 : TargetFrameLowering(StackGrowsDown, StackAlignOverride,
39 STI.is64Bit() ? -8 : -4),
Reid Kleckner034ea962015-06-18 20:32:02 +000040 STI(STI), TII(*STI.getInstrInfo()), TRI(STI.getRegisterInfo()) {
Reid Klecknerf9977bf2015-06-17 21:50:02 +000041 // Cache a bunch of frame-related predicates for this subtarget.
Reid Kleckner034ea962015-06-18 20:32:02 +000042 SlotSize = TRI->getSlotSize();
Reid Klecknerf9977bf2015-06-17 21:50:02 +000043 Is64Bit = STI.is64Bit();
44 IsLP64 = STI.isTarget64BitLP64();
45 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
46 Uses64BitFramePtr = STI.isTarget64BitLP64() || STI.isTargetNaCl64();
Reid Kleckner034ea962015-06-18 20:32:02 +000047 StackPtr = TRI->getStackRegister();
Reid Klecknerf9977bf2015-06-17 21:50:02 +000048}
49
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000050bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Michael Kuperstein13fbd452015-02-01 16:56:04 +000051 return !MF.getFrameInfo()->hasVarSizedObjects() &&
52 !MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences();
53}
54
55/// canSimplifyCallFramePseudos - If there is a reserved call frame, the
56/// call frame pseudos can be simplified. Having a FP, as in the default
57/// implementation, is not sufficient here since we can't always use it.
58/// Use a more nuanced condition.
59bool
60X86FrameLowering::canSimplifyCallFramePseudos(const MachineFunction &MF) const {
Michael Kuperstein13fbd452015-02-01 16:56:04 +000061 return hasReservedCallFrame(MF) ||
Reid Kleckner034ea962015-06-18 20:32:02 +000062 (hasFP(MF) && !TRI->needsStackRealignment(MF)) ||
63 TRI->hasBasePointer(MF);
Michael Kuperstein13fbd452015-02-01 16:56:04 +000064}
65
66// needsFrameIndexResolution - Do we need to perform FI resolution for
67// this function. Normally, this is required only when the function
68// has any stack objects. However, FI resolution actually has another job,
69// not apparent from the title - it resolves callframesetup/destroy
70// that were not simplified earlier.
71// So, this is required for x86 functions that have push sequences even
72// when there are no stack objects.
73bool
74X86FrameLowering::needsFrameIndexResolution(const MachineFunction &MF) const {
75 return MF.getFrameInfo()->hasStackObjects() ||
76 MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000077}
78
79/// hasFP - Return true if the specified function should have a dedicated frame
80/// pointer register. This is true if the function has variable sized allocas
81/// or if frame pointer elimination is disabled.
82bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
83 const MachineFrameInfo *MFI = MF.getFrameInfo();
84 const MachineModuleInfo &MMI = MF.getMMI();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000085
86 return (MF.getTarget().Options.DisableFramePointerElim(MF) ||
Reid Kleckner034ea962015-06-18 20:32:02 +000087 TRI->needsStackRealignment(MF) ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000088 MFI->hasVarSizedObjects() ||
Reid Klecknere69bdb82015-07-07 23:45:58 +000089 MFI->isFrameAddressTaken() || MFI->hasOpaqueSPAdjustment() ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000090 MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() ||
91 MMI.callsUnwindInit() || MMI.callsEHReturn() ||
92 MFI->hasStackMap() || MFI->hasPatchPoint());
93}
94
95static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) {
96 if (IsLP64) {
97 if (isInt<8>(Imm))
98 return X86::SUB64ri8;
99 return X86::SUB64ri32;
100 } else {
101 if (isInt<8>(Imm))
102 return X86::SUB32ri8;
103 return X86::SUB32ri;
104 }
105}
106
107static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) {
108 if (IsLP64) {
109 if (isInt<8>(Imm))
110 return X86::ADD64ri8;
111 return X86::ADD64ri32;
112 } else {
113 if (isInt<8>(Imm))
114 return X86::ADD32ri8;
115 return X86::ADD32ri;
116 }
117}
118
119static unsigned getSUBrrOpcode(unsigned isLP64) {
120 return isLP64 ? X86::SUB64rr : X86::SUB32rr;
121}
122
123static unsigned getADDrrOpcode(unsigned isLP64) {
124 return isLP64 ? X86::ADD64rr : X86::ADD32rr;
125}
126
127static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) {
128 if (IsLP64) {
129 if (isInt<8>(Imm))
130 return X86::AND64ri8;
131 return X86::AND64ri32;
132 }
133 if (isInt<8>(Imm))
134 return X86::AND32ri8;
135 return X86::AND32ri;
136}
137
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000138static unsigned getLEArOpcode(unsigned IsLP64) {
139 return IsLP64 ? X86::LEA64r : X86::LEA32r;
140}
141
142/// findDeadCallerSavedReg - Return a caller-saved register that isn't live
143/// when it reaches the "return" instruction. We can then pop a stack object
144/// to this register without worry about clobbering it.
145static unsigned findDeadCallerSavedReg(MachineBasicBlock &MBB,
146 MachineBasicBlock::iterator &MBBI,
Reid Kleckner034ea962015-06-18 20:32:02 +0000147 const TargetRegisterInfo *TRI,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000148 bool Is64Bit) {
149 const MachineFunction *MF = MBB.getParent();
150 const Function *F = MF->getFunction();
151 if (!F || MF->getMMI().callsEHReturn())
152 return 0;
153
154 static const uint16_t CallerSavedRegs32Bit[] = {
155 X86::EAX, X86::EDX, X86::ECX, 0
156 };
157
158 static const uint16_t CallerSavedRegs64Bit[] = {
159 X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI,
160 X86::R8, X86::R9, X86::R10, X86::R11, 0
161 };
162
163 unsigned Opc = MBBI->getOpcode();
164 switch (Opc) {
165 default: return 0;
166 case X86::RETL:
167 case X86::RETQ:
168 case X86::RETIL:
169 case X86::RETIQ:
170 case X86::TCRETURNdi:
171 case X86::TCRETURNri:
172 case X86::TCRETURNmi:
173 case X86::TCRETURNdi64:
174 case X86::TCRETURNri64:
175 case X86::TCRETURNmi64:
176 case X86::EH_RETURN:
177 case X86::EH_RETURN64: {
178 SmallSet<uint16_t, 8> Uses;
179 for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) {
180 MachineOperand &MO = MBBI->getOperand(i);
181 if (!MO.isReg() || MO.isDef())
182 continue;
183 unsigned Reg = MO.getReg();
184 if (!Reg)
185 continue;
Reid Kleckner034ea962015-06-18 20:32:02 +0000186 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000187 Uses.insert(*AI);
188 }
189
190 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
191 for (; *CS; ++CS)
192 if (!Uses.count(*CS))
193 return *CS;
194 }
195 }
196
197 return 0;
198}
199
200static bool isEAXLiveIn(MachineFunction &MF) {
201 for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
202 EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
203 unsigned Reg = II->first;
204
205 if (Reg == X86::RAX || Reg == X86::EAX || Reg == X86::AX ||
206 Reg == X86::AH || Reg == X86::AL)
207 return true;
208 }
209
210 return false;
211}
212
Reid Kleckner98d78032015-06-18 20:22:12 +0000213/// Check whether or not the terminators of \p MBB needs to read EFLAGS.
214static bool terminatorsNeedFlagsAsInput(const MachineBasicBlock &MBB) {
215 for (const MachineInstr &MI : MBB.terminators()) {
216 bool BreakNext = false;
217 for (const MachineOperand &MO : MI.operands()) {
218 if (!MO.isReg())
219 continue;
220 unsigned Reg = MO.getReg();
221 if (Reg != X86::EFLAGS)
222 continue;
223
224 // This terminator needs an eflag that is not defined
225 // by a previous terminator.
226 if (!MO.isDef())
227 return true;
228 BreakNext = true;
229 }
230 if (BreakNext)
231 break;
232 }
233 return false;
234}
235
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000236/// emitSPUpdate - Emit a series of instructions to increment / decrement the
237/// stack pointer by a constant value.
Quentin Colombet494eb602015-05-22 18:10:47 +0000238void X86FrameLowering::emitSPUpdate(MachineBasicBlock &MBB,
239 MachineBasicBlock::iterator &MBBI,
Reid Kleckner98d78032015-06-18 20:22:12 +0000240 int64_t NumBytes, bool InEpilogue) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000241 bool isSub = NumBytes < 0;
242 uint64_t Offset = isSub ? -NumBytes : NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000243
244 uint64_t Chunk = (1LL << 31) - 1;
245 DebugLoc DL = MBB.findDebugLoc(MBBI);
246
247 while (Offset) {
248 if (Offset > Chunk) {
249 // Rather than emit a long series of instructions for large offsets,
250 // load the offset into a register and do one sub/add
251 unsigned Reg = 0;
252
253 if (isSub && !isEAXLiveIn(*MBB.getParent()))
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000254 Reg = (unsigned)(Is64Bit ? X86::RAX : X86::EAX);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000255 else
Reid Kleckner034ea962015-06-18 20:32:02 +0000256 Reg = findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000257
258 if (Reg) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000259 unsigned Opc = Is64Bit ? X86::MOV64ri : X86::MOV32ri;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000260 BuildMI(MBB, MBBI, DL, TII.get(Opc), Reg)
261 .addImm(Offset);
262 Opc = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000263 ? getSUBrrOpcode(Is64Bit)
264 : getADDrrOpcode(Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000265 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
266 .addReg(StackPtr)
267 .addReg(Reg);
268 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
269 Offset = 0;
270 continue;
271 }
272 }
273
David Majnemer3aa0bd82015-02-24 00:11:32 +0000274 uint64_t ThisVal = std::min(Offset, Chunk);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000275 if (ThisVal == (Is64Bit ? 8 : 4)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000276 // Use push / pop instead.
277 unsigned Reg = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000278 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
Reid Kleckner034ea962015-06-18 20:32:02 +0000279 : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000280 if (Reg) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000281 unsigned Opc = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000282 ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
283 : (Is64Bit ? X86::POP64r : X86::POP32r);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000284 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
285 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
286 if (isSub)
287 MI->setFlag(MachineInstr::FrameSetup);
288 Offset -= ThisVal;
289 continue;
290 }
291 }
292
Reid Kleckner98d78032015-06-18 20:22:12 +0000293 MachineInstrBuilder MI = BuildStackAdjustment(
294 MBB, MBBI, DL, isSub ? -ThisVal : ThisVal, InEpilogue);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000295 if (isSub)
Reid Kleckner98d78032015-06-18 20:22:12 +0000296 MI.setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000297
298 Offset -= ThisVal;
299 }
300}
301
Reid Kleckner98d78032015-06-18 20:22:12 +0000302MachineInstrBuilder X86FrameLowering::BuildStackAdjustment(
303 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc DL,
304 int64_t Offset, bool InEpilogue) const {
305 assert(Offset != 0 && "zero offset stack adjustment requested");
306
307 // On Atom, using LEA to adjust SP is preferred, but using it in the epilogue
308 // is tricky.
309 bool UseLEA;
310 if (!InEpilogue) {
311 UseLEA = STI.useLeaForSP();
312 } else {
313 // If we can use LEA for SP but we shouldn't, check that none
314 // of the terminators uses the eflags. Otherwise we will insert
315 // a ADD that will redefine the eflags and break the condition.
316 // Alternatively, we could move the ADD, but this may not be possible
317 // and is an optimization anyway.
318 UseLEA = canUseLEAForSPInEpilogue(*MBB.getParent());
319 if (UseLEA && !STI.useLeaForSP())
320 UseLEA = terminatorsNeedFlagsAsInput(MBB);
321 // If that assert breaks, that means we do not do the right thing
322 // in canUseAsEpilogue.
323 assert((UseLEA || !terminatorsNeedFlagsAsInput(MBB)) &&
324 "We shouldn't have allowed this insertion point");
325 }
326
327 MachineInstrBuilder MI;
328 if (UseLEA) {
329 MI = addRegOffset(BuildMI(MBB, MBBI, DL,
330 TII.get(getLEArOpcode(Uses64BitFramePtr)),
331 StackPtr),
332 StackPtr, false, Offset);
333 } else {
334 bool IsSub = Offset < 0;
335 uint64_t AbsOffset = IsSub ? -Offset : Offset;
336 unsigned Opc = IsSub ? getSUBriOpcode(Uses64BitFramePtr, AbsOffset)
337 : getADDriOpcode(Uses64BitFramePtr, AbsOffset);
338 MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
339 .addReg(StackPtr)
340 .addImm(AbsOffset);
341 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
342 }
343 return MI;
344}
345
Quentin Colombet494eb602015-05-22 18:10:47 +0000346int X86FrameLowering::mergeSPUpdates(MachineBasicBlock &MBB,
347 MachineBasicBlock::iterator &MBBI,
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000348 bool doMergeWithPrevious) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000349 if ((doMergeWithPrevious && MBBI == MBB.begin()) ||
350 (!doMergeWithPrevious && MBBI == MBB.end()))
351 return 0;
352
353 MachineBasicBlock::iterator PI = doMergeWithPrevious ? std::prev(MBBI) : MBBI;
354 MachineBasicBlock::iterator NI = doMergeWithPrevious ? nullptr
355 : std::next(MBBI);
356 unsigned Opc = PI->getOpcode();
357 int Offset = 0;
358
359 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
360 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
361 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
362 PI->getOperand(0).getReg() == StackPtr){
363 Offset += PI->getOperand(2).getImm();
364 MBB.erase(PI);
365 if (!doMergeWithPrevious) MBBI = NI;
366 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
367 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
368 PI->getOperand(0).getReg() == StackPtr) {
369 Offset -= PI->getOperand(2).getImm();
370 MBB.erase(PI);
371 if (!doMergeWithPrevious) MBBI = NI;
372 }
373
374 return Offset;
375}
376
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000377void X86FrameLowering::BuildCFI(MachineBasicBlock &MBB,
378 MachineBasicBlock::iterator MBBI, DebugLoc DL,
379 MCCFIInstruction CFIInst) const {
Reid Kleckner7f189f82015-06-15 23:45:08 +0000380 MachineFunction &MF = *MBB.getParent();
381 unsigned CFIIndex = MF.getMMI().addFrameInst(CFIInst);
382 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
383 .addCFIIndex(CFIIndex);
384}
385
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000386void
387X86FrameLowering::emitCalleeSavedFrameMoves(MachineBasicBlock &MBB,
388 MachineBasicBlock::iterator MBBI,
389 DebugLoc DL) const {
390 MachineFunction &MF = *MBB.getParent();
391 MachineFrameInfo *MFI = MF.getFrameInfo();
392 MachineModuleInfo &MMI = MF.getMMI();
393 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000394
395 // Add callee saved registers to move list.
396 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
397 if (CSI.empty()) return;
398
399 // Calculate offsets.
400 for (std::vector<CalleeSavedInfo>::const_iterator
401 I = CSI.begin(), E = CSI.end(); I != E; ++I) {
402 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
403 unsigned Reg = I->getReg();
404
405 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000406 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000407 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000408 }
409}
410
411/// usesTheStack - This function checks if any of the users of EFLAGS
412/// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
413/// to use the stack, and if we don't adjust the stack we clobber the first
414/// frame index.
415/// See X86InstrInfo::copyPhysReg.
416static bool usesTheStack(const MachineFunction &MF) {
417 const MachineRegisterInfo &MRI = MF.getRegInfo();
418
419 for (MachineRegisterInfo::reg_instr_iterator
420 ri = MRI.reg_instr_begin(X86::EFLAGS), re = MRI.reg_instr_end();
421 ri != re; ++ri)
422 if (ri->isCopy())
423 return true;
424
425 return false;
426}
427
428void X86FrameLowering::emitStackProbeCall(MachineFunction &MF,
429 MachineBasicBlock &MBB,
430 MachineBasicBlock::iterator MBBI,
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000431 DebugLoc DL) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000432 bool IsLargeCodeModel = MF.getTarget().getCodeModel() == CodeModel::Large;
433
434 unsigned CallOp;
435 if (Is64Bit)
436 CallOp = IsLargeCodeModel ? X86::CALL64r : X86::CALL64pcrel32;
437 else
438 CallOp = X86::CALLpcrel32;
439
440 const char *Symbol;
441 if (Is64Bit) {
442 if (STI.isTargetCygMing()) {
443 Symbol = "___chkstk_ms";
444 } else {
445 Symbol = "__chkstk";
446 }
447 } else if (STI.isTargetCygMing())
448 Symbol = "_alloca";
449 else
450 Symbol = "_chkstk";
451
452 MachineInstrBuilder CI;
453
454 // All current stack probes take AX and SP as input, clobber flags, and
455 // preserve all registers. x86_64 probes leave RSP unmodified.
456 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
457 // For the large code model, we have to call through a register. Use R11,
458 // as it is scratch in all supported calling conventions.
459 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::R11)
460 .addExternalSymbol(Symbol);
461 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addReg(X86::R11);
462 } else {
463 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addExternalSymbol(Symbol);
464 }
465
466 unsigned AX = Is64Bit ? X86::RAX : X86::EAX;
467 unsigned SP = Is64Bit ? X86::RSP : X86::ESP;
468 CI.addReg(AX, RegState::Implicit)
469 .addReg(SP, RegState::Implicit)
470 .addReg(AX, RegState::Define | RegState::Implicit)
471 .addReg(SP, RegState::Define | RegState::Implicit)
472 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
473
474 if (Is64Bit) {
475 // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
476 // themselves. It also does not clobber %rax so we can reuse it when
477 // adjusting %rsp.
478 BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), X86::RSP)
479 .addReg(X86::RSP)
480 .addReg(X86::RAX);
481 }
482}
483
David Majnemer93c22a42015-02-10 00:57:42 +0000484static unsigned calculateSetFPREG(uint64_t SPAdjust) {
485 // Win64 ABI has a less restrictive limitation of 240; 128 works equally well
486 // and might require smaller successive adjustments.
487 const uint64_t Win64MaxSEHOffset = 128;
488 uint64_t SEHFrameOffset = std::min(SPAdjust, Win64MaxSEHOffset);
489 // Win64 ABI requires 16-byte alignment for the UWOP_SET_FPREG opcode.
David Majnemer89d05642015-02-21 01:04:47 +0000490 return SEHFrameOffset & -16;
David Majnemer93c22a42015-02-10 00:57:42 +0000491}
492
493// If we're forcing a stack realignment we can't rely on just the frame
494// info, we need to know the ABI stack alignment as well in case we
495// have a call out. Otherwise just make sure we have some alignment - we'll
496// go with the minimum SlotSize.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000497uint64_t X86FrameLowering::calculateMaxStackAlign(const MachineFunction &MF) const {
David Majnemer93c22a42015-02-10 00:57:42 +0000498 const MachineFrameInfo *MFI = MF.getFrameInfo();
499 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000500 unsigned StackAlign = getStackAlignment();
David Majnemer93c22a42015-02-10 00:57:42 +0000501 if (ForceStackAlign) {
502 if (MFI->hasCalls())
503 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
504 else if (MaxAlign < SlotSize)
505 MaxAlign = SlotSize;
506 }
507 return MaxAlign;
508}
509
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000510void X86FrameLowering::BuildStackAlignAND(MachineBasicBlock &MBB,
511 MachineBasicBlock::iterator MBBI,
512 DebugLoc DL,
513 uint64_t MaxAlign) const {
514 uint64_t Val = -MaxAlign;
515 MachineInstr *MI =
516 BuildMI(MBB, MBBI, DL, TII.get(getANDriOpcode(Uses64BitFramePtr, Val)),
517 StackPtr)
518 .addReg(StackPtr)
519 .addImm(Val)
520 .setMIFlag(MachineInstr::FrameSetup);
521
522 // The EFLAGS implicit def is dead.
523 MI->getOperand(3).setIsDead();
524}
525
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000526/// emitPrologue - Push callee-saved registers onto the stack, which
527/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
528/// space for local variables. Also emit labels used by the exception handler to
529/// generate the exception handling frames.
530
531/*
532 Here's a gist of what gets emitted:
533
534 ; Establish frame pointer, if needed
535 [if needs FP]
536 push %rbp
537 .cfi_def_cfa_offset 16
538 .cfi_offset %rbp, -16
539 .seh_pushreg %rpb
540 mov %rsp, %rbp
541 .cfi_def_cfa_register %rbp
542
543 ; Spill general-purpose registers
544 [for all callee-saved GPRs]
545 pushq %<reg>
546 [if not needs FP]
547 .cfi_def_cfa_offset (offset from RETADDR)
548 .seh_pushreg %<reg>
549
550 ; If the required stack alignment > default stack alignment
551 ; rsp needs to be re-aligned. This creates a "re-alignment gap"
552 ; of unknown size in the stack frame.
553 [if stack needs re-alignment]
554 and $MASK, %rsp
555
556 ; Allocate space for locals
557 [if target is Windows and allocated space > 4096 bytes]
558 ; Windows needs special care for allocations larger
559 ; than one page.
560 mov $NNN, %rax
561 call ___chkstk_ms/___chkstk
562 sub %rax, %rsp
563 [else]
564 sub $NNN, %rsp
565
566 [if needs FP]
567 .seh_stackalloc (size of XMM spill slots)
568 .seh_setframe %rbp, SEHFrameOffset ; = size of all spill slots
569 [else]
570 .seh_stackalloc NNN
571
572 ; Spill XMMs
573 ; Note, that while only Windows 64 ABI specifies XMMs as callee-preserved,
574 ; they may get spilled on any platform, if the current function
575 ; calls @llvm.eh.unwind.init
576 [if needs FP]
577 [for all callee-saved XMM registers]
578 movaps %<xmm reg>, -MMM(%rbp)
579 [for all callee-saved XMM registers]
580 .seh_savexmm %<xmm reg>, (-MMM + SEHFrameOffset)
581 ; i.e. the offset relative to (%rbp - SEHFrameOffset)
582 [else]
583 [for all callee-saved XMM registers]
584 movaps %<xmm reg>, KKK(%rsp)
585 [for all callee-saved XMM registers]
586 .seh_savexmm %<xmm reg>, KKK
587
588 .seh_endprologue
589
590 [if needs base pointer]
591 mov %rsp, %rbx
592 [if needs to restore base pointer]
593 mov %rsp, -MMM(%rbp)
594
595 ; Emit CFI info
596 [if needs FP]
597 [for all callee-saved registers]
598 .cfi_offset %<reg>, (offset from %rbp)
599 [else]
600 .cfi_def_cfa_offset (offset from RETADDR)
601 [for all callee-saved registers]
602 .cfi_offset %<reg>, (offset from %rsp)
603
604 Notes:
605 - .seh directives are emitted only for Windows 64 ABI
606 - .cfi directives are emitted for all other ABIs
607 - for 32-bit code, substitute %e?? registers for %r??
608*/
609
Quentin Colombet61b305e2015-05-05 17:38:16 +0000610void X86FrameLowering::emitPrologue(MachineFunction &MF,
611 MachineBasicBlock &MBB) const {
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000612 assert(&STI == &MF.getSubtarget<X86Subtarget>() &&
613 "MF used frame lowering for wrong subtarget");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000614 MachineBasicBlock::iterator MBBI = MBB.begin();
615 MachineFrameInfo *MFI = MF.getFrameInfo();
616 const Function *Fn = MF.getFunction();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000617 MachineModuleInfo &MMI = MF.getMMI();
618 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
David Majnemer93c22a42015-02-10 00:57:42 +0000619 uint64_t MaxAlign = calculateMaxStackAlign(MF); // Desired stack alignment.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000620 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
621 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000622 bool IsWin64CC = STI.isCallingConvWin64(Fn->getCallingConv());
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000623 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
624 bool NeedsWinCFI = IsWin64Prologue && Fn->needsUnwindTableEntry();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000625 bool NeedsDwarfCFI =
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000626 !IsWin64Prologue && (MMI.hasDebugInfo() || Fn->needsUnwindTableEntry());
Reid Kleckner034ea962015-06-18 20:32:02 +0000627 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +0000628 const unsigned MachineFramePtr =
629 STI.isTarget64BitILP32()
630 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
631 : FramePtr;
Reid Kleckner034ea962015-06-18 20:32:02 +0000632 unsigned BasePtr = TRI->getBaseRegister();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000633 DebugLoc DL;
634
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000635 // Add RETADDR move area to callee saved frame size.
636 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000637 if (TailCallReturnAddrDelta && IsWin64Prologue)
David Majnemer93c22a42015-02-10 00:57:42 +0000638 report_fatal_error("Can't handle guaranteed tail call under win64 yet");
639
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000640 if (TailCallReturnAddrDelta < 0)
641 X86FI->setCalleeSavedFrameSize(
642 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
643
644 bool UseStackProbe = (STI.isOSWindows() && !STI.isTargetMachO());
645
646 // The default stack probe size is 4096 if the function has no stackprobesize
647 // attribute.
648 unsigned StackProbeSize = 4096;
649 if (Fn->hasFnAttribute("stack-probe-size"))
650 Fn->getFnAttribute("stack-probe-size")
651 .getValueAsString()
652 .getAsInteger(0, StackProbeSize);
653
654 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
655 // function, and use up to 128 bytes of stack space, don't have a frame
656 // pointer, calls, or dynamic alloca then we do not need to adjust the
657 // stack pointer (we fit in the Red Zone). We also check that we don't
658 // push and pop from the stack.
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000659 if (Is64Bit && !Fn->hasFnAttribute(Attribute::NoRedZone) &&
Reid Kleckner034ea962015-06-18 20:32:02 +0000660 !TRI->needsStackRealignment(MF) &&
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000661 !MFI->hasVarSizedObjects() && // No dynamic alloca.
662 !MFI->adjustsStack() && // No calls.
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000663 !IsWin64CC && // Win64 has no Red Zone
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000664 !usesTheStack(MF) && // Don't push and pop.
665 !MF.shouldSplitStack()) { // Regular stack
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000666 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
667 if (HasFP) MinSize += SlotSize;
668 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
669 MFI->setStackSize(StackSize);
670 }
671
672 // Insert stack pointer adjustment for later moving of return addr. Only
673 // applies to tail call optimized functions where the callee argument stack
674 // size is bigger than the callers.
675 if (TailCallReturnAddrDelta < 0) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000676 BuildStackAdjustment(MBB, MBBI, DL, TailCallReturnAddrDelta,
677 /*InEpilogue=*/false)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000678 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000679 }
680
681 // Mapping for machine moves:
682 //
683 // DST: VirtualFP AND
684 // SRC: VirtualFP => DW_CFA_def_cfa_offset
685 // ELSE => DW_CFA_def_cfa
686 //
687 // SRC: VirtualFP AND
688 // DST: Register => DW_CFA_def_cfa_register
689 //
690 // ELSE
691 // OFFSET < 0 => DW_CFA_offset_extended_sf
692 // REG < 64 => DW_CFA_offset + Reg
693 // ELSE => DW_CFA_offset_extended
694
695 uint64_t NumBytes = 0;
696 int stackGrowth = -SlotSize;
697
698 if (HasFP) {
699 // Calculate required stack adjustment.
700 uint64_t FrameSize = StackSize - SlotSize;
701 // If required, include space for extra hidden slot for stashing base pointer.
702 if (X86FI->getRestoreBasePointer())
703 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +0000704
705 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
706
707 // Callee-saved registers are pushed on stack before the stack is realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +0000708 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +0000709 NumBytes = RoundUpToAlignment(NumBytes, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000710
711 // Get the offset of the stack slot for the EBP register, which is
712 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
713 // Update the frame offset adjustment.
714 MFI->setOffsetAdjustment(-NumBytes);
715
716 // Save EBP/RBP into the appropriate stack slot.
717 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
718 .addReg(MachineFramePtr, RegState::Kill)
719 .setMIFlag(MachineInstr::FrameSetup);
720
721 if (NeedsDwarfCFI) {
722 // Mark the place where EBP/RBP was saved.
723 // Define the current CFA rule to use the provided offset.
724 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000725 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000726 MCCFIInstruction::createDefCfaOffset(nullptr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000727
728 // Change the rule for the FramePtr to be an "offset" rule.
Reid Kleckner034ea962015-06-18 20:32:02 +0000729 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000730 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createOffset(
731 nullptr, DwarfFramePtr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000732 }
733
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000734 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000735 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg))
736 .addImm(FramePtr)
737 .setMIFlag(MachineInstr::FrameSetup);
738 }
739
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000740 if (!IsWin64Prologue) {
David Majnemer93c22a42015-02-10 00:57:42 +0000741 // Update EBP with the new base value.
742 BuildMI(MBB, MBBI, DL,
743 TII.get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr),
744 FramePtr)
745 .addReg(StackPtr)
746 .setMIFlag(MachineInstr::FrameSetup);
747 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000748
749 if (NeedsDwarfCFI) {
750 // Mark effective beginning of when frame pointer becomes valid.
751 // Define the current CFA to use the EBP/RBP register.
Reid Kleckner034ea962015-06-18 20:32:02 +0000752 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000753 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000754 MCCFIInstruction::createDefCfaRegister(nullptr, DwarfFramePtr));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000755 }
756
757 // Mark the FramePtr as live-in in every block.
758 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
759 I->addLiveIn(MachineFramePtr);
760 } else {
761 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
762 }
763
764 // Skip the callee-saved push instructions.
765 bool PushedRegs = false;
766 int StackOffset = 2 * stackGrowth;
767
768 while (MBBI != MBB.end() &&
Michael Kupersteine1ea4e7d2015-07-16 12:27:59 +0000769 MBBI->getFlag(MachineInstr::FrameSetup) &&
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000770 (MBBI->getOpcode() == X86::PUSH32r ||
771 MBBI->getOpcode() == X86::PUSH64r)) {
772 PushedRegs = true;
773 unsigned Reg = MBBI->getOperand(0).getReg();
774 ++MBBI;
775
776 if (!HasFP && NeedsDwarfCFI) {
777 // Mark callee-saved push instruction.
778 // Define the current CFA rule to use the provided offset.
779 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000780 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000781 MCCFIInstruction::createDefCfaOffset(nullptr, StackOffset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000782 StackOffset += stackGrowth;
783 }
784
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000785 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000786 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg)).addImm(Reg).setMIFlag(
787 MachineInstr::FrameSetup);
788 }
789 }
790
791 // Realign stack after we pushed callee-saved registers (so that we'll be
792 // able to calculate their offsets from the frame pointer).
David Majnemer93c22a42015-02-10 00:57:42 +0000793 // Don't do this for Win64, it needs to realign the stack after the prologue.
Reid Kleckner034ea962015-06-18 20:32:02 +0000794 if (!IsWin64Prologue && TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000795 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000796 BuildStackAlignAND(MBB, MBBI, DL, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000797 }
798
799 // If there is an SUB32ri of ESP immediately before this instruction, merge
800 // the two. This can be the case when tail call elimination is enabled and
801 // the callee has more arguments then the caller.
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000802 NumBytes -= mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000803
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000804 // Adjust stack pointer: ESP -= numbytes.
805
806 // Windows and cygwin/mingw require a prologue helper routine when allocating
807 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
808 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
809 // stack and adjust the stack pointer in one go. The 64-bit version of
810 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
811 // responsible for adjusting the stack pointer. Touching the stack at 4K
812 // increments is necessary to ensure that the guard pages used by the OS
813 // virtual memory manager are allocated in correct sequence.
David Majnemer89d05642015-02-21 01:04:47 +0000814 uint64_t AlignedNumBytes = NumBytes;
Reid Kleckner034ea962015-06-18 20:32:02 +0000815 if (IsWin64Prologue && TRI->needsStackRealignment(MF))
David Majnemer89d05642015-02-21 01:04:47 +0000816 AlignedNumBytes = RoundUpToAlignment(AlignedNumBytes, MaxAlign);
817 if (AlignedNumBytes >= StackProbeSize && UseStackProbe) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000818 // Check whether EAX is livein for this function.
819 bool isEAXAlive = isEAXLiveIn(MF);
820
821 if (isEAXAlive) {
822 // Sanity check that EAX is not livein for this function.
823 // It should not be, so throw an assert.
824 assert(!Is64Bit && "EAX is livein in x64 case!");
825
826 // Save EAX
827 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
828 .addReg(X86::EAX, RegState::Kill)
829 .setMIFlag(MachineInstr::FrameSetup);
830 }
831
832 if (Is64Bit) {
833 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
834 // Function prologue is responsible for adjusting the stack pointer.
David Majnemer006c4902015-02-23 21:50:30 +0000835 if (isUInt<32>(NumBytes)) {
836 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
837 .addImm(NumBytes)
838 .setMIFlag(MachineInstr::FrameSetup);
839 } else if (isInt<32>(NumBytes)) {
840 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri32), X86::RAX)
841 .addImm(NumBytes)
842 .setMIFlag(MachineInstr::FrameSetup);
843 } else {
844 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
845 .addImm(NumBytes)
846 .setMIFlag(MachineInstr::FrameSetup);
847 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000848 } else {
849 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
850 // We'll also use 4 already allocated bytes for EAX.
851 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
852 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
853 .setMIFlag(MachineInstr::FrameSetup);
854 }
855
856 // Save a pointer to the MI where we set AX.
857 MachineBasicBlock::iterator SetRAX = MBBI;
858 --SetRAX;
859
860 // Call __chkstk, __chkstk_ms, or __alloca.
861 emitStackProbeCall(MF, MBB, MBBI, DL);
862
863 // Apply the frame setup flag to all inserted instrs.
864 for (; SetRAX != MBBI; ++SetRAX)
865 SetRAX->setFlag(MachineInstr::FrameSetup);
866
867 if (isEAXAlive) {
868 // Restore EAX
869 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
870 X86::EAX),
871 StackPtr, false, NumBytes - 4);
872 MI->setFlag(MachineInstr::FrameSetup);
873 MBB.insert(MBBI, MI);
874 }
875 } else if (NumBytes) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000876 emitSPUpdate(MBB, MBBI, -(int64_t)NumBytes, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000877 }
878
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000879 if (NeedsWinCFI && NumBytes)
David Majnemer93c22a42015-02-10 00:57:42 +0000880 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_StackAlloc))
881 .addImm(NumBytes)
882 .setMIFlag(MachineInstr::FrameSetup);
883
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000884 int SEHFrameOffset = 0;
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000885 if (IsWin64Prologue && HasFP) {
David Majnemer93c22a42015-02-10 00:57:42 +0000886 SEHFrameOffset = calculateSetFPREG(NumBytes);
David Majnemer31d868b2015-02-23 21:50:27 +0000887 if (SEHFrameOffset)
888 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA64r), FramePtr),
889 StackPtr, false, SEHFrameOffset);
890 else
891 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64rr), FramePtr).addReg(StackPtr);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000892
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000893 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000894 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SetFrame))
895 .addImm(FramePtr)
896 .addImm(SEHFrameOffset)
897 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000898 }
899
David Majnemera7d908e2015-02-10 19:01:47 +0000900 while (MBBI != MBB.end() && MBBI->getFlag(MachineInstr::FrameSetup)) {
901 const MachineInstr *FrameInstr = &*MBBI;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000902 ++MBBI;
903
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000904 if (NeedsWinCFI) {
David Majnemera7d908e2015-02-10 19:01:47 +0000905 int FI;
906 if (unsigned Reg = TII.isStoreToStackSlot(FrameInstr, FI)) {
907 if (X86::FR64RegClass.contains(Reg)) {
James Y Knight5567baf2015-08-15 02:32:35 +0000908 unsigned IgnoredFrameReg;
909 int Offset = getFrameIndexReference(MF, FI, IgnoredFrameReg);
David Majnemera7d908e2015-02-10 19:01:47 +0000910 Offset += SEHFrameOffset;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000911
David Majnemera7d908e2015-02-10 19:01:47 +0000912 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SaveXMM))
913 .addImm(Reg)
914 .addImm(Offset)
915 .setMIFlag(MachineInstr::FrameSetup);
916 }
917 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000918 }
David Majnemera7d908e2015-02-10 19:01:47 +0000919 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000920
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000921 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000922 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_EndPrologue))
923 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000924
David Majnemer93c22a42015-02-10 00:57:42 +0000925 // Realign stack after we spilled callee-saved registers (so that we'll be
926 // able to calculate their offsets from the frame pointer).
927 // Win64 requires aligning the stack after the prologue.
Reid Kleckner034ea962015-06-18 20:32:02 +0000928 if (IsWin64Prologue && TRI->needsStackRealignment(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +0000929 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000930 BuildStackAlignAND(MBB, MBBI, DL, MaxAlign);
David Majnemer93c22a42015-02-10 00:57:42 +0000931 }
932
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000933 // If we need a base pointer, set it up here. It's whatever the value
934 // of the stack pointer is at this point. Any variable size objects
935 // will be allocated after this, so we can still use the base pointer
936 // to reference locals.
Reid Kleckner034ea962015-06-18 20:32:02 +0000937 if (TRI->hasBasePointer(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000938 // Update the base pointer with the current stack pointer.
939 unsigned Opc = Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr;
940 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
941 .addReg(StackPtr)
942 .setMIFlag(MachineInstr::FrameSetup);
943 if (X86FI->getRestoreBasePointer()) {
Reid Klecknere69bdb82015-07-07 23:45:58 +0000944 // Stash value of base pointer. Saving RSP instead of EBP shortens
945 // dependence chain. Used by SjLj EH.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000946 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
947 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)),
948 FramePtr, true, X86FI->getRestoreBasePointerOffset())
949 .addReg(StackPtr)
950 .setMIFlag(MachineInstr::FrameSetup);
951 }
Reid Klecknere69bdb82015-07-07 23:45:58 +0000952
953 if (X86FI->getHasSEHFramePtrSave()) {
954 // Stash the value of the frame pointer relative to the base pointer for
955 // Win32 EH. This supports Win32 EH, which does the inverse of the above:
956 // it recovers the frame pointer from the base pointer rather than the
957 // other way around.
958 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
James Y Knight5567baf2015-08-15 02:32:35 +0000959 unsigned IgnoredFrameReg;
Reid Klecknere69bdb82015-07-07 23:45:58 +0000960 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)), BasePtr, true,
James Y Knight5567baf2015-08-15 02:32:35 +0000961 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(),
962 IgnoredFrameReg))
Reid Klecknere69bdb82015-07-07 23:45:58 +0000963 .addReg(FramePtr)
964 .setMIFlag(MachineInstr::FrameSetup);
965 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000966 }
967
968 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI) {
969 // Mark end of stack pointer adjustment.
970 if (!HasFP && NumBytes) {
971 // Define the current CFA rule to use the provided offset.
972 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000973 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createDefCfaOffset(
974 nullptr, -StackSize + stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000975 }
976
977 // Emit DWARF info specifying the offsets of the callee-saved registers.
978 if (PushedRegs)
979 emitCalleeSavedFrameMoves(MBB, MBBI, DL);
980 }
981}
982
Quentin Colombetaa8020752015-05-27 06:28:41 +0000983bool X86FrameLowering::canUseLEAForSPInEpilogue(
984 const MachineFunction &MF) const {
Quentin Colombet494eb602015-05-22 18:10:47 +0000985 // We can't use LEA instructions for adjusting the stack pointer if this is a
986 // leaf function in the Win64 ABI. Only ADD instructions may be used to
987 // deallocate the stack.
988 // This means that we can use LEA for SP in two situations:
989 // 1. We *aren't* using the Win64 ABI which means we are free to use LEA.
990 // 2. We *have* a frame pointer which means we are permitted to use LEA.
Quentin Colombetaa8020752015-05-27 06:28:41 +0000991 return !MF.getTarget().getMCAsmInfo()->usesWindowsCFI() || hasFP(MF);
992}
993
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000994void X86FrameLowering::emitEpilogue(MachineFunction &MF,
995 MachineBasicBlock &MBB) const {
996 const MachineFrameInfo *MFI = MF.getFrameInfo();
997 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Quentin Colombetaa8020752015-05-27 06:28:41 +0000998 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator();
999 DebugLoc DL;
1000 if (MBBI != MBB.end())
1001 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001002 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001003 const bool Is64BitILP32 = STI.isTarget64BitILP32();
Reid Kleckner034ea962015-06-18 20:32:02 +00001004 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +00001005 unsigned MachineFramePtr =
1006 Is64BitILP32 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
1007 : FramePtr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001008
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001009 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
1010 bool NeedsWinCFI =
1011 IsWin64Prologue && MF.getFunction()->needsUnwindTableEntry();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001012
1013 // Get the number of bytes to allocate from the FrameInfo.
1014 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001015 uint64_t MaxAlign = calculateMaxStackAlign(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001016 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
1017 uint64_t NumBytes = 0;
1018
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001019 if (hasFP(MF)) {
1020 // Calculate required stack adjustment.
1021 uint64_t FrameSize = StackSize - SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001022 NumBytes = FrameSize - CSSize;
1023
1024 // Callee-saved registers were pushed on stack before the stack was
1025 // realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001026 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +00001027 NumBytes = RoundUpToAlignment(FrameSize, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001028
1029 // Pop EBP.
1030 BuildMI(MBB, MBBI, DL,
1031 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), MachineFramePtr);
1032 } else {
1033 NumBytes = StackSize - CSSize;
1034 }
David Majnemer93c22a42015-02-10 00:57:42 +00001035 uint64_t SEHStackAllocAmt = NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001036
1037 // Skip the callee-saved pop instructions.
1038 while (MBBI != MBB.begin()) {
1039 MachineBasicBlock::iterator PI = std::prev(MBBI);
1040 unsigned Opc = PI->getOpcode();
1041
1042 if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE &&
1043 !PI->isTerminator())
1044 break;
1045
1046 --MBBI;
1047 }
1048 MachineBasicBlock::iterator FirstCSPop = MBBI;
1049
Quentin Colombetaa8020752015-05-27 06:28:41 +00001050 if (MBBI != MBB.end())
1051 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001052
1053 // If there is an ADD32ri or SUB32ri of ESP immediately before this
1054 // instruction, merge the two instructions.
1055 if (NumBytes || MFI->hasVarSizedObjects())
Michael Kupersteincba308c2015-07-28 08:56:13 +00001056 NumBytes += mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001057
1058 // If dynamic alloca is used, then reset esp to point to the last callee-saved
1059 // slot before popping them off! Same applies for the case, when stack was
1060 // realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001061 if (TRI->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) {
1062 if (TRI->needsStackRealignment(MF))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001063 MBBI = FirstCSPop;
David Majnemere1bbad92015-02-25 21:13:37 +00001064 unsigned SEHFrameOffset = calculateSetFPREG(SEHStackAllocAmt);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001065 uint64_t LEAAmount =
1066 IsWin64Prologue ? SEHStackAllocAmt - SEHFrameOffset : -CSSize;
David Majnemere1bbad92015-02-25 21:13:37 +00001067
1068 // There are only two legal forms of epilogue:
1069 // - add SEHAllocationSize, %rsp
1070 // - lea SEHAllocationSize(%FramePtr), %rsp
1071 //
1072 // 'mov %FramePtr, %rsp' will not be recognized as an epilogue sequence.
1073 // However, we may use this sequence if we have a frame pointer because the
1074 // effects of the prologue can safely be undone.
1075 if (LEAAmount != 0) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001076 unsigned Opc = getLEArOpcode(Uses64BitFramePtr);
1077 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
David Majnemere1bbad92015-02-25 21:13:37 +00001078 FramePtr, false, LEAAmount);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001079 --MBBI;
1080 } else {
1081 unsigned Opc = (Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr);
1082 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
1083 .addReg(FramePtr);
1084 --MBBI;
1085 }
1086 } else if (NumBytes) {
1087 // Adjust stack pointer back: ESP += numbytes.
Reid Kleckner98d78032015-06-18 20:22:12 +00001088 emitSPUpdate(MBB, MBBI, NumBytes, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001089 --MBBI;
1090 }
1091
1092 // Windows unwinder will not invoke function's exception handler if IP is
1093 // either in prologue or in epilogue. This behavior causes a problem when a
1094 // call immediately precedes an epilogue, because the return address points
1095 // into the epilogue. To cope with that, we insert an epilogue marker here,
1096 // then replace it with a 'nop' if it ends up immediately after a CALL in the
1097 // final emitted code.
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001098 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001099 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_Epilogue));
1100
Quentin Colombet494eb602015-05-22 18:10:47 +00001101 // Add the return addr area delta back since we are not tail calling.
1102 int Offset = -1 * X86FI->getTCReturnAddrDelta();
1103 assert(Offset >= 0 && "TCDelta should never be positive");
1104 if (Offset) {
1105 MBBI = MBB.getFirstTerminator();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001106
1107 // Check for possible merge with preceding ADD instruction.
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001108 Offset += mergeSPUpdates(MBB, MBBI, true);
Reid Kleckner98d78032015-06-18 20:22:12 +00001109 emitSPUpdate(MBB, MBBI, Offset, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001110 }
1111}
1112
James Y Knight5567baf2015-08-15 02:32:35 +00001113// NOTE: this only has a subset of the full frame index logic. In
1114// particular, the FI < 0 and AfterFPPop logic is handled in
1115// X86RegisterInfo::eliminateFrameIndex, but not here. Possibly
1116// (probably?) it should be moved into here.
1117int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1118 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001119 const MachineFrameInfo *MFI = MF.getFrameInfo();
James Y Knight5567baf2015-08-15 02:32:35 +00001120
1121 // We can't calculate offset from frame pointer if the stack is realigned,
1122 // so enforce usage of stack/base pointer. The base pointer is used when we
1123 // have dynamic allocas in addition to dynamic realignment.
1124 if (TRI->hasBasePointer(MF))
1125 FrameReg = TRI->getBaseRegister();
1126 else if (TRI->needsStackRealignment(MF))
1127 FrameReg = TRI->getStackRegister();
1128 else
1129 FrameReg = TRI->getFrameRegister(MF);
1130
David Majnemer93c22a42015-02-10 00:57:42 +00001131 // Offset will hold the offset from the stack pointer at function entry to the
1132 // object.
1133 // We need to factor in additional offsets applied during the prologue to the
1134 // frame, base, and stack pointer depending on which is used.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001135 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
David Majnemer93c22a42015-02-10 00:57:42 +00001136 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1137 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001138 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001139 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001140 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
David Majnemer93c22a42015-02-10 00:57:42 +00001141 int64_t FPDelta = 0;
1142
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001143 if (IsWin64Prologue) {
David Majnemer89d05642015-02-21 01:04:47 +00001144 assert(!MFI->hasCalls() || (StackSize % 16) == 8);
1145
David Majnemer93c22a42015-02-10 00:57:42 +00001146 // Calculate required stack adjustment.
1147 uint64_t FrameSize = StackSize - SlotSize;
1148 // If required, include space for extra hidden slot for stashing base pointer.
1149 if (X86FI->getRestoreBasePointer())
1150 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001151 uint64_t NumBytes = FrameSize - CSSize;
David Majnemer93c22a42015-02-10 00:57:42 +00001152
David Majnemer93c22a42015-02-10 00:57:42 +00001153 uint64_t SEHFrameOffset = calculateSetFPREG(NumBytes);
David Majnemer13d0b112015-02-10 21:22:05 +00001154 if (FI && FI == X86FI->getFAIndex())
1155 return -SEHFrameOffset;
1156
David Majnemer93c22a42015-02-10 00:57:42 +00001157 // FPDelta is the offset from the "traditional" FP location of the old base
1158 // pointer followed by return address and the location required by the
1159 // restricted Win64 prologue.
1160 // Add FPDelta to all offsets below that go through the frame pointer.
David Majnemer89d05642015-02-21 01:04:47 +00001161 FPDelta = FrameSize - SEHFrameOffset;
1162 assert((!MFI->hasCalls() || (FPDelta % 16) == 0) &&
1163 "FPDelta isn't aligned per the Win64 ABI!");
David Majnemer93c22a42015-02-10 00:57:42 +00001164 }
1165
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001166
Reid Kleckner034ea962015-06-18 20:32:02 +00001167 if (TRI->hasBasePointer(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +00001168 assert(HasFP && "VLAs and dynamic stack realign, but no FP?!");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001169 if (FI < 0) {
1170 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001171 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001172 } else {
1173 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1174 return Offset + StackSize;
1175 }
Reid Kleckner034ea962015-06-18 20:32:02 +00001176 } else if (TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001177 if (FI < 0) {
1178 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001179 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001180 } else {
1181 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1182 return Offset + StackSize;
1183 }
1184 // FIXME: Support tail calls
1185 } else {
David Majnemer93c22a42015-02-10 00:57:42 +00001186 if (!HasFP)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001187 return Offset + StackSize;
1188
1189 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001190 Offset += SlotSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001191
1192 // Skip the RETADDR move area
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001193 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1194 if (TailCallReturnAddrDelta < 0)
1195 Offset -= TailCallReturnAddrDelta;
1196 }
1197
David Majnemer89d05642015-02-21 01:04:47 +00001198 return Offset + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001199}
1200
James Y Knight5567baf2015-08-15 02:32:35 +00001201// Simplified from getFrameIndexReference keeping only StackPointer cases
1202int X86FrameLowering::getFrameIndexReferenceFromSP(const MachineFunction &MF,
1203 int FI,
1204 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001205 const MachineFrameInfo *MFI = MF.getFrameInfo();
1206 // Does not include any dynamic realign.
1207 const uint64_t StackSize = MFI->getStackSize();
1208 {
1209#ifndef NDEBUG
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001210 // Note: LLVM arranges the stack as:
1211 // Args > Saved RetPC (<--FP) > CSRs > dynamic alignment (<--BP)
1212 // > "Stack Slots" (<--SP)
1213 // We can always address StackSlots from RSP. We can usually (unless
1214 // needsStackRealignment) address CSRs from RSP, but sometimes need to
1215 // address them from RBP. FixedObjects can be placed anywhere in the stack
1216 // frame depending on their specific requirements (i.e. we can actually
1217 // refer to arguments to the function which are stored in the *callers*
1218 // frame). As a result, THE RESULT OF THIS CALL IS MEANINGLESS FOR CSRs
1219 // AND FixedObjects IFF needsStackRealignment or hasVarSizedObject.
1220
Reid Kleckner034ea962015-06-18 20:32:02 +00001221 assert(!TRI->hasBasePointer(MF) && "we don't handle this case");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001222
1223 // We don't handle tail calls, and shouldn't be seeing them
1224 // either.
1225 int TailCallReturnAddrDelta =
1226 MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta();
1227 assert(!(TailCallReturnAddrDelta < 0) && "we don't handle this case!");
1228#endif
1229 }
1230
James Y Knight5567baf2015-08-15 02:32:35 +00001231 // Fill in FrameReg output argument.
1232 FrameReg = TRI->getStackRegister();
1233
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001234 // This is how the math works out:
1235 //
1236 // %rsp grows (i.e. gets lower) left to right. Each box below is
1237 // one word (eight bytes). Obj0 is the stack slot we're trying to
1238 // get to.
1239 //
1240 // ----------------------------------
1241 // | BP | Obj0 | Obj1 | ... | ObjN |
1242 // ----------------------------------
1243 // ^ ^ ^ ^
1244 // A B C E
1245 //
1246 // A is the incoming stack pointer.
1247 // (B - A) is the local area offset (-8 for x86-64) [1]
1248 // (C - A) is the Offset returned by MFI->getObjectOffset for Obj0 [2]
1249 //
1250 // |(E - B)| is the StackSize (absolute value, positive). For a
1251 // stack that grown down, this works out to be (B - E). [3]
1252 //
1253 // E is also the value of %rsp after stack has been set up, and we
1254 // want (C - E) -- the value we can add to %rsp to get to Obj0. Now
1255 // (C - E) == (C - A) - (B - A) + (B - E)
1256 // { Using [1], [2] and [3] above }
1257 // == getObjectOffset - LocalAreaOffset + StackSize
1258 //
1259
1260 // Get the Offset from the StackPointer
1261 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
1262
1263 return Offset + StackSize;
1264}
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001265
1266bool X86FrameLowering::assignCalleeSavedSpillSlots(
1267 MachineFunction &MF, const TargetRegisterInfo *TRI,
1268 std::vector<CalleeSavedInfo> &CSI) const {
1269 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001270 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1271
1272 unsigned CalleeSavedFrameSize = 0;
1273 int SpillSlotOffset = getOffsetOfLocalArea() + X86FI->getTCReturnAddrDelta();
1274
1275 if (hasFP(MF)) {
1276 // emitPrologue always spills frame register the first thing.
1277 SpillSlotOffset -= SlotSize;
1278 MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1279
1280 // Since emitPrologue and emitEpilogue will handle spilling and restoring of
1281 // the frame register, we can delete it from CSI list and not have to worry
1282 // about avoiding it later.
Reid Kleckner034ea962015-06-18 20:32:02 +00001283 unsigned FPReg = TRI->getFrameRegister(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001284 for (unsigned i = 0; i < CSI.size(); ++i) {
1285 if (TRI->regsOverlap(CSI[i].getReg(),FPReg)) {
1286 CSI.erase(CSI.begin() + i);
1287 break;
1288 }
1289 }
1290 }
1291
1292 // Assign slots for GPRs. It increases frame size.
1293 for (unsigned i = CSI.size(); i != 0; --i) {
1294 unsigned Reg = CSI[i - 1].getReg();
1295
1296 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1297 continue;
1298
1299 SpillSlotOffset -= SlotSize;
1300 CalleeSavedFrameSize += SlotSize;
1301
1302 int SlotIndex = MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1303 CSI[i - 1].setFrameIdx(SlotIndex);
1304 }
1305
1306 X86FI->setCalleeSavedFrameSize(CalleeSavedFrameSize);
1307
1308 // Assign slots for XMMs.
1309 for (unsigned i = CSI.size(); i != 0; --i) {
1310 unsigned Reg = CSI[i - 1].getReg();
1311 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
1312 continue;
1313
Reid Kleckner034ea962015-06-18 20:32:02 +00001314 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001315 // ensure alignment
1316 SpillSlotOffset -= std::abs(SpillSlotOffset) % RC->getAlignment();
1317 // spill into slot
1318 SpillSlotOffset -= RC->getSize();
1319 int SlotIndex =
1320 MFI->CreateFixedSpillStackObject(RC->getSize(), SpillSlotOffset);
1321 CSI[i - 1].setFrameIdx(SlotIndex);
1322 MFI->ensureMaxAlignment(RC->getAlignment());
1323 }
1324
1325 return true;
1326}
1327
1328bool X86FrameLowering::spillCalleeSavedRegisters(
1329 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
1330 const std::vector<CalleeSavedInfo> &CSI,
1331 const TargetRegisterInfo *TRI) const {
1332 DebugLoc DL = MBB.findDebugLoc(MI);
1333
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001334 // Push GPRs. It increases frame size.
1335 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
1336 for (unsigned i = CSI.size(); i != 0; --i) {
1337 unsigned Reg = CSI[i - 1].getReg();
1338
1339 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1340 continue;
1341 // Add the callee-saved register as live-in. It's killed at the spill.
1342 MBB.addLiveIn(Reg);
1343
1344 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1345 .setMIFlag(MachineInstr::FrameSetup);
1346 }
1347
1348 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1349 // It can be done by spilling XMMs to stack frame.
1350 for (unsigned i = CSI.size(); i != 0; --i) {
1351 unsigned Reg = CSI[i-1].getReg();
David Majnemera7d908e2015-02-10 19:01:47 +00001352 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001353 continue;
1354 // Add the callee-saved register as live-in. It's killed at the spill.
1355 MBB.addLiveIn(Reg);
1356 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1357
1358 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i - 1].getFrameIdx(), RC,
1359 TRI);
1360 --MI;
1361 MI->setFlag(MachineInstr::FrameSetup);
1362 ++MI;
1363 }
1364
1365 return true;
1366}
1367
1368bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
1369 MachineBasicBlock::iterator MI,
1370 const std::vector<CalleeSavedInfo> &CSI,
1371 const TargetRegisterInfo *TRI) const {
1372 if (CSI.empty())
1373 return false;
1374
1375 DebugLoc DL = MBB.findDebugLoc(MI);
1376
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001377 // Reload XMMs from stack frame.
1378 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1379 unsigned Reg = CSI[i].getReg();
1380 if (X86::GR64RegClass.contains(Reg) ||
1381 X86::GR32RegClass.contains(Reg))
1382 continue;
1383
1384 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1385 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(), RC, TRI);
1386 }
1387
1388 // POP GPRs.
1389 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1390 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1391 unsigned Reg = CSI[i].getReg();
1392 if (!X86::GR64RegClass.contains(Reg) &&
1393 !X86::GR32RegClass.contains(Reg))
1394 continue;
1395
1396 BuildMI(MBB, MI, DL, TII.get(Opc), Reg);
1397 }
1398 return true;
1399}
1400
Matthias Braun02564862015-07-14 17:17:13 +00001401void X86FrameLowering::determineCalleeSaves(MachineFunction &MF,
1402 BitVector &SavedRegs,
1403 RegScavenger *RS) const {
1404 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
1405
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001406 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001407
1408 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1409 int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1410
1411 if (TailCallReturnAddrDelta < 0) {
1412 // create RETURNADDR area
1413 // arg
1414 // arg
1415 // RETADDR
1416 // { ...
1417 // RETADDR area
1418 // ...
1419 // }
1420 // [EBP]
1421 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1422 TailCallReturnAddrDelta - SlotSize, true);
1423 }
1424
1425 // Spill the BasePtr if it's used.
Reid Kleckner034ea962015-06-18 20:32:02 +00001426 if (TRI->hasBasePointer(MF))
Matthias Braun02564862015-07-14 17:17:13 +00001427 SavedRegs.set(TRI->getBaseRegister());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001428}
1429
1430static bool
1431HasNestArgument(const MachineFunction *MF) {
1432 const Function *F = MF->getFunction();
1433 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1434 I != E; I++) {
1435 if (I->hasNestAttr())
1436 return true;
1437 }
1438 return false;
1439}
1440
1441/// GetScratchRegister - Get a temp register for performing work in the
1442/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1443/// and the properties of the function either one or two registers will be
1444/// needed. Set primary to true for the first register, false for the second.
1445static unsigned
1446GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary) {
1447 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1448
1449 // Erlang stuff.
1450 if (CallingConvention == CallingConv::HiPE) {
1451 if (Is64Bit)
1452 return Primary ? X86::R14 : X86::R13;
1453 else
1454 return Primary ? X86::EBX : X86::EDI;
1455 }
1456
1457 if (Is64Bit) {
1458 if (IsLP64)
1459 return Primary ? X86::R11 : X86::R12;
1460 else
1461 return Primary ? X86::R11D : X86::R12D;
1462 }
1463
1464 bool IsNested = HasNestArgument(&MF);
1465
1466 if (CallingConvention == CallingConv::X86_FastCall ||
1467 CallingConvention == CallingConv::Fast) {
1468 if (IsNested)
1469 report_fatal_error("Segmented stacks does not support fastcall with "
1470 "nested function.");
1471 return Primary ? X86::EAX : X86::ECX;
1472 }
1473 if (IsNested)
1474 return Primary ? X86::EDX : X86::EAX;
1475 return Primary ? X86::ECX : X86::EAX;
1476}
1477
1478// The stack limit in the TCB is set to this many bytes above the actual stack
1479// limit.
1480static const uint64_t kSplitStackAvailable = 256;
1481
Quentin Colombet61b305e2015-05-05 17:38:16 +00001482void X86FrameLowering::adjustForSegmentedStacks(
1483 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001484 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001485 uint64_t StackSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001486 unsigned TlsReg, TlsOffset;
1487 DebugLoc DL;
1488
1489 unsigned ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1490 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1491 "Scratch register is live-in");
1492
1493 if (MF.getFunction()->isVarArg())
1494 report_fatal_error("Segmented stacks do not support vararg functions.");
1495 if (!STI.isTargetLinux() && !STI.isTargetDarwin() && !STI.isTargetWin32() &&
1496 !STI.isTargetWin64() && !STI.isTargetFreeBSD() &&
1497 !STI.isTargetDragonFly())
1498 report_fatal_error("Segmented stacks not supported on this platform.");
1499
1500 // Eventually StackSize will be calculated by a link-time pass; which will
1501 // also decide whether checking code needs to be injected into this particular
1502 // prologue.
1503 StackSize = MFI->getStackSize();
1504
1505 // Do not generate a prologue for functions with a stack of size zero
1506 if (StackSize == 0)
1507 return;
1508
1509 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1510 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1511 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1512 bool IsNested = false;
1513
1514 // We need to know if the function has a nest argument only in 64 bit mode.
1515 if (Is64Bit)
1516 IsNested = HasNestArgument(&MF);
1517
1518 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1519 // allocMBB needs to be last (terminating) instruction.
1520
Quentin Colombet61b305e2015-05-05 17:38:16 +00001521 for (MachineBasicBlock::livein_iterator i = PrologueMBB.livein_begin(),
1522 e = PrologueMBB.livein_end();
1523 i != e; i++) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001524 allocMBB->addLiveIn(*i);
1525 checkMBB->addLiveIn(*i);
1526 }
1527
1528 if (IsNested)
1529 allocMBB->addLiveIn(IsLP64 ? X86::R10 : X86::R10D);
1530
1531 MF.push_front(allocMBB);
1532 MF.push_front(checkMBB);
1533
1534 // When the frame size is less than 256 we just compare the stack
1535 // boundary directly to the value of the stack pointer, per gcc.
1536 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1537
1538 // Read the limit off the current stacklet off the stack_guard location.
1539 if (Is64Bit) {
1540 if (STI.isTargetLinux()) {
1541 TlsReg = X86::FS;
1542 TlsOffset = IsLP64 ? 0x70 : 0x40;
1543 } else if (STI.isTargetDarwin()) {
1544 TlsReg = X86::GS;
1545 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
1546 } else if (STI.isTargetWin64()) {
1547 TlsReg = X86::GS;
1548 TlsOffset = 0x28; // pvArbitrary, reserved for application use
1549 } else if (STI.isTargetFreeBSD()) {
1550 TlsReg = X86::FS;
1551 TlsOffset = 0x18;
1552 } else if (STI.isTargetDragonFly()) {
1553 TlsReg = X86::FS;
1554 TlsOffset = 0x20; // use tls_tcb.tcb_segstack
1555 } else {
1556 report_fatal_error("Segmented stacks not supported on this platform.");
1557 }
1558
1559 if (CompareStackPointer)
1560 ScratchReg = IsLP64 ? X86::RSP : X86::ESP;
1561 else
1562 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::LEA64r : X86::LEA64_32r), ScratchReg).addReg(X86::RSP)
1563 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1564
1565 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::CMP64rm : X86::CMP32rm)).addReg(ScratchReg)
1566 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1567 } else {
1568 if (STI.isTargetLinux()) {
1569 TlsReg = X86::GS;
1570 TlsOffset = 0x30;
1571 } else if (STI.isTargetDarwin()) {
1572 TlsReg = X86::GS;
1573 TlsOffset = 0x48 + 90*4;
1574 } else if (STI.isTargetWin32()) {
1575 TlsReg = X86::FS;
1576 TlsOffset = 0x14; // pvArbitrary, reserved for application use
1577 } else if (STI.isTargetDragonFly()) {
1578 TlsReg = X86::FS;
1579 TlsOffset = 0x10; // use tls_tcb.tcb_segstack
1580 } else if (STI.isTargetFreeBSD()) {
1581 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
1582 } else {
1583 report_fatal_error("Segmented stacks not supported on this platform.");
1584 }
1585
1586 if (CompareStackPointer)
1587 ScratchReg = X86::ESP;
1588 else
1589 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
1590 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1591
1592 if (STI.isTargetLinux() || STI.isTargetWin32() || STI.isTargetWin64() ||
1593 STI.isTargetDragonFly()) {
1594 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1595 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1596 } else if (STI.isTargetDarwin()) {
1597
1598 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register.
1599 unsigned ScratchReg2;
1600 bool SaveScratch2;
1601 if (CompareStackPointer) {
1602 // The primary scratch register is available for holding the TLS offset.
1603 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1604 SaveScratch2 = false;
1605 } else {
1606 // Need to use a second register to hold the TLS offset
1607 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, false);
1608
1609 // Unfortunately, with fastcc the second scratch register may hold an
1610 // argument.
1611 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1612 }
1613
1614 // If Scratch2 is live-in then it needs to be saved.
1615 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1616 "Scratch register is live-in and not saved");
1617
1618 if (SaveScratch2)
1619 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1620 .addReg(ScratchReg2, RegState::Kill);
1621
1622 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1623 .addImm(TlsOffset);
1624 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1625 .addReg(ScratchReg)
1626 .addReg(ScratchReg2).addImm(1).addReg(0)
1627 .addImm(0)
1628 .addReg(TlsReg);
1629
1630 if (SaveScratch2)
1631 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1632 }
1633 }
1634
1635 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1636 // It jumps to normal execution of the function body.
Quentin Colombet61b305e2015-05-05 17:38:16 +00001637 BuildMI(checkMBB, DL, TII.get(X86::JA_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001638
1639 // On 32 bit we first push the arguments size and then the frame size. On 64
1640 // bit, we pass the stack frame size in r10 and the argument size in r11.
1641 if (Is64Bit) {
1642 // Functions with nested arguments use R10, so it needs to be saved across
1643 // the call to _morestack
1644
1645 const unsigned RegAX = IsLP64 ? X86::RAX : X86::EAX;
1646 const unsigned Reg10 = IsLP64 ? X86::R10 : X86::R10D;
1647 const unsigned Reg11 = IsLP64 ? X86::R11 : X86::R11D;
1648 const unsigned MOVrr = IsLP64 ? X86::MOV64rr : X86::MOV32rr;
1649 const unsigned MOVri = IsLP64 ? X86::MOV64ri : X86::MOV32ri;
1650
1651 if (IsNested)
1652 BuildMI(allocMBB, DL, TII.get(MOVrr), RegAX).addReg(Reg10);
1653
1654 BuildMI(allocMBB, DL, TII.get(MOVri), Reg10)
1655 .addImm(StackSize);
1656 BuildMI(allocMBB, DL, TII.get(MOVri), Reg11)
1657 .addImm(X86FI->getArgumentStackSize());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001658 } else {
1659 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1660 .addImm(X86FI->getArgumentStackSize());
1661 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1662 .addImm(StackSize);
1663 }
1664
1665 // __morestack is in libgcc
1666 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
1667 // Under the large code model, we cannot assume that __morestack lives
1668 // within 2^31 bytes of the call site, so we cannot use pc-relative
1669 // addressing. We cannot perform the call via a temporary register,
1670 // as the rax register may be used to store the static chain, and all
1671 // other suitable registers may be either callee-save or used for
1672 // parameter passing. We cannot use the stack at this point either
1673 // because __morestack manipulates the stack directly.
1674 //
1675 // To avoid these issues, perform an indirect call via a read-only memory
1676 // location containing the address.
1677 //
1678 // This solution is not perfect, as it assumes that the .rodata section
1679 // is laid out within 2^31 bytes of each function body, but this seems
1680 // to be sufficient for JIT.
1681 BuildMI(allocMBB, DL, TII.get(X86::CALL64m))
1682 .addReg(X86::RIP)
1683 .addImm(0)
1684 .addReg(0)
1685 .addExternalSymbol("__morestack_addr")
1686 .addReg(0);
1687 MF.getMMI().setUsesMorestackAddr(true);
1688 } else {
1689 if (Is64Bit)
1690 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1691 .addExternalSymbol("__morestack");
1692 else
1693 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1694 .addExternalSymbol("__morestack");
1695 }
1696
1697 if (IsNested)
1698 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1699 else
1700 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
1701
Quentin Colombet61b305e2015-05-05 17:38:16 +00001702 allocMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001703
1704 checkMBB->addSuccessor(allocMBB);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001705 checkMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001706
1707#ifdef XDEBUG
1708 MF.verify();
1709#endif
1710}
1711
1712/// Erlang programs may need a special prologue to handle the stack size they
1713/// might need at runtime. That is because Erlang/OTP does not implement a C
1714/// stack but uses a custom implementation of hybrid stack/heap architecture.
1715/// (for more information see Eric Stenman's Ph.D. thesis:
1716/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1717///
1718/// CheckStack:
1719/// temp0 = sp - MaxStack
1720/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1721/// OldStart:
1722/// ...
1723/// IncStack:
1724/// call inc_stack # doubles the stack space
1725/// temp0 = sp - MaxStack
1726/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Quentin Colombet61b305e2015-05-05 17:38:16 +00001727void X86FrameLowering::adjustForHiPEPrologue(
1728 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001729 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001730 DebugLoc DL;
1731 // HiPE-specific values
1732 const unsigned HipeLeafWords = 24;
1733 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1734 const unsigned Guaranteed = HipeLeafWords * SlotSize;
1735 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1736 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1737 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
1738
1739 assert(STI.isTargetLinux() &&
1740 "HiPE prologue is only supported on Linux operating systems.");
1741
1742 // Compute the largest caller's frame that is needed to fit the callees'
1743 // frames. This 'MaxStack' is computed from:
1744 //
1745 // a) the fixed frame size, which is the space needed for all spilled temps,
1746 // b) outgoing on-stack parameter areas, and
1747 // c) the minimum stack space this function needs to make available for the
1748 // functions it calls (a tunable ABI property).
1749 if (MFI->hasCalls()) {
1750 unsigned MoreStackForCalls = 0;
1751
1752 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1753 MBBI != MBBE; ++MBBI)
1754 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
1755 MI != ME; ++MI) {
1756 if (!MI->isCall())
1757 continue;
1758
1759 // Get callee operand.
1760 const MachineOperand &MO = MI->getOperand(0);
1761
1762 // Only take account of global function calls (no closures etc.).
1763 if (!MO.isGlobal())
1764 continue;
1765
1766 const Function *F = dyn_cast<Function>(MO.getGlobal());
1767 if (!F)
1768 continue;
1769
1770 // Do not update 'MaxStack' for primitive and built-in functions
1771 // (encoded with names either starting with "erlang."/"bif_" or not
1772 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1773 // "_", such as the BIF "suspend_0") as they are executed on another
1774 // stack.
1775 if (F->getName().find("erlang.") != StringRef::npos ||
1776 F->getName().find("bif_") != StringRef::npos ||
1777 F->getName().find_first_of("._") == StringRef::npos)
1778 continue;
1779
1780 unsigned CalleeStkArity =
1781 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1782 if (HipeLeafWords - 1 > CalleeStkArity)
1783 MoreStackForCalls = std::max(MoreStackForCalls,
1784 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1785 }
1786 MaxStack += MoreStackForCalls;
1787 }
1788
1789 // If the stack frame needed is larger than the guaranteed then runtime checks
1790 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1791 if (MaxStack > Guaranteed) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001792 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1793 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1794
Quentin Colombet61b305e2015-05-05 17:38:16 +00001795 for (MachineBasicBlock::livein_iterator I = PrologueMBB.livein_begin(),
1796 E = PrologueMBB.livein_end();
1797 I != E; I++) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001798 stackCheckMBB->addLiveIn(*I);
1799 incStackMBB->addLiveIn(*I);
1800 }
1801
1802 MF.push_front(incStackMBB);
1803 MF.push_front(stackCheckMBB);
1804
1805 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1806 unsigned LEAop, CMPop, CALLop;
1807 if (Is64Bit) {
1808 SPReg = X86::RSP;
1809 PReg = X86::RBP;
1810 LEAop = X86::LEA64r;
1811 CMPop = X86::CMP64rm;
1812 CALLop = X86::CALL64pcrel32;
1813 SPLimitOffset = 0x90;
1814 } else {
1815 SPReg = X86::ESP;
1816 PReg = X86::EBP;
1817 LEAop = X86::LEA32r;
1818 CMPop = X86::CMP32rm;
1819 CALLop = X86::CALLpcrel32;
1820 SPLimitOffset = 0x4c;
1821 }
1822
1823 ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1824 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1825 "HiPE prologue scratch register is live-in");
1826
1827 // Create new MBB for StackCheck:
1828 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
1829 SPReg, false, -MaxStack);
1830 // SPLimitOffset is in a fixed heap location (pointed by BP).
1831 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
1832 .addReg(ScratchReg), PReg, false, SPLimitOffset);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001833 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001834
1835 // Create new MBB for IncStack:
1836 BuildMI(incStackMBB, DL, TII.get(CALLop)).
1837 addExternalSymbol("inc_stack_0");
1838 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
1839 SPReg, false, -MaxStack);
1840 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
1841 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1842 BuildMI(incStackMBB, DL, TII.get(X86::JLE_1)).addMBB(incStackMBB);
1843
Quentin Colombet61b305e2015-05-05 17:38:16 +00001844 stackCheckMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001845 stackCheckMBB->addSuccessor(incStackMBB, 1);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001846 incStackMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001847 incStackMBB->addSuccessor(incStackMBB, 1);
1848 }
1849#ifdef XDEBUG
1850 MF.verify();
1851#endif
1852}
1853
Michael Kuperstein7337ee22015-08-11 08:48:48 +00001854bool X86FrameLowering::adjustStackWithPops(MachineBasicBlock &MBB,
1855 MachineBasicBlock::iterator MBBI, DebugLoc DL, int Offset) const {
1856
1857 if (Offset % SlotSize)
1858 return false;
1859
1860 int NumPops = Offset / SlotSize;
1861 // This is only worth it if we have at most 2 pops.
1862 if (NumPops != 1 && NumPops != 2)
1863 return false;
1864
1865 // Handle only the trivial case where the adjustment directly follows
1866 // a call. This is the most common one, anyway.
1867 if (MBBI == MBB.begin())
1868 return false;
1869 MachineBasicBlock::iterator Prev = std::prev(MBBI);
1870 if (!Prev->isCall() || !Prev->getOperand(1).isRegMask())
1871 return false;
1872
1873 unsigned Regs[2];
1874 unsigned FoundRegs = 0;
1875
1876 auto RegMask = Prev->getOperand(1);
1877
1878 // Try to find up to NumPops free registers.
1879 for (auto Candidate : X86::GR32_NOREX_NOSPRegClass) {
1880
1881 // Poor man's liveness:
1882 // Since we're immediately after a call, any register that is clobbered
1883 // by the call and not defined by it can be considered dead.
1884 if (!RegMask.clobbersPhysReg(Candidate))
1885 continue;
1886
1887 bool IsDef = false;
1888 for (const MachineOperand &MO : Prev->implicit_operands()) {
1889 if (MO.isReg() && MO.isDef() && MO.getReg() == Candidate) {
1890 IsDef = true;
1891 break;
1892 }
1893 }
1894
1895 if (IsDef)
1896 continue;
1897
1898 Regs[FoundRegs++] = Candidate;
1899 if (FoundRegs == (unsigned)NumPops)
1900 break;
1901 }
1902
1903 if (FoundRegs == 0)
1904 return false;
1905
1906 // If we found only one free register, but need two, reuse the same one twice.
1907 while (FoundRegs < (unsigned)NumPops)
1908 Regs[FoundRegs++] = Regs[0];
1909
1910 for (int i = 0; i < NumPops; ++i)
1911 BuildMI(MBB, MBBI, DL,
1912 TII.get(STI.is64Bit() ? X86::POP64r : X86::POP32r), Regs[i]);
1913
1914 return true;
1915}
1916
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001917void X86FrameLowering::
1918eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1919 MachineBasicBlock::iterator I) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001920 bool reserveCallFrame = hasReservedCallFrame(MF);
Matthias Braunfa3872e2015-05-18 20:27:55 +00001921 unsigned Opcode = I->getOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001922 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001923 DebugLoc DL = I->getDebugLoc();
1924 uint64_t Amount = !reserveCallFrame ? I->getOperand(0).getImm() : 0;
Michael Kuperstein13fbd452015-02-01 16:56:04 +00001925 uint64_t InternalAmt = (isDestroy || Amount) ? I->getOperand(1).getImm() : 0;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001926 I = MBB.erase(I);
1927
1928 if (!reserveCallFrame) {
1929 // If the stack pointer can be changed after prologue, turn the
1930 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
1931 // adjcallstackdown instruction into 'add ESP, <amt>'
1932 if (Amount == 0)
1933 return;
1934
1935 // We need to keep the stack aligned properly. To do this, we round the
1936 // amount of space needed for the outgoing arguments up to the next
1937 // alignment boundary.
David Majnemer93c22a42015-02-10 00:57:42 +00001938 unsigned StackAlign = getStackAlignment();
1939 Amount = RoundUpToAlignment(Amount, StackAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001940
Michael Kuperstein13fbd452015-02-01 16:56:04 +00001941 // Factor out the amount that gets handled inside the sequence
1942 // (Pushes of argument for frame setup, callee pops for frame destroy)
1943 Amount -= InternalAmt;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001944
Michael Kuperstein13fbd452015-02-01 16:56:04 +00001945 if (Amount) {
Reid Kleckner98d78032015-06-18 20:22:12 +00001946 // Add Amount to SP to destroy a frame, and subtract to setup.
1947 int Offset = isDestroy ? Amount : -Amount;
Michael Kuperstein7337ee22015-08-11 08:48:48 +00001948
1949 if (!(MF.getFunction()->optForMinSize() &&
1950 adjustStackWithPops(MBB, I, DL, Offset)))
1951 BuildStackAdjustment(MBB, I, DL, Offset, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001952 }
Michael Kuperstein7337ee22015-08-11 08:48:48 +00001953
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001954 return;
1955 }
1956
Reid Kleckner98d78032015-06-18 20:22:12 +00001957 if (isDestroy && InternalAmt) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001958 // If we are performing frame pointer elimination and if the callee pops
1959 // something off the stack pointer, add it back. We do this until we have
1960 // more advanced stack pointer tracking ability.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001961 // We are not tracking the stack pointer adjustment by the callee, so make
1962 // sure we restore the stack pointer immediately after the call, there may
1963 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
1964 MachineBasicBlock::iterator B = MBB.begin();
1965 while (I != B && !std::prev(I)->isCall())
1966 --I;
Reid Kleckner98d78032015-06-18 20:22:12 +00001967 BuildStackAdjustment(MBB, I, DL, -InternalAmt, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001968 }
1969}
1970
Quentin Colombetaa8020752015-05-27 06:28:41 +00001971bool X86FrameLowering::canUseAsEpilogue(const MachineBasicBlock &MBB) const {
1972 assert(MBB.getParent() && "Block is not attached to a function!");
1973
1974 if (canUseLEAForSPInEpilogue(*MBB.getParent()))
1975 return true;
1976
1977 // If we cannot use LEA to adjust SP, we may need to use ADD, which
1978 // clobbers the EFLAGS. Check that none of the terminators reads the
1979 // EFLAGS, and if one uses it, conservatively assume this is not
1980 // safe to insert the epilogue here.
1981 return !terminatorsNeedFlagsAsInput(MBB);
1982}