blob: edc41145a7d536c7ac6c1757d3f6d4c2df82f7d5 [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"
Reid Klecknerdf129512015-09-08 22:44:41 +000026#include "llvm/CodeGen/WinEHFuncInfo.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000027#include "llvm/IR/DataLayout.h"
28#include "llvm/IR/Function.h"
29#include "llvm/MC/MCAsmInfo.h"
30#include "llvm/MC/MCSymbol.h"
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000031#include "llvm/Target/TargetOptions.h"
32#include "llvm/Support/Debug.h"
33#include <cstdlib>
34
35using namespace llvm;
36
Reid Klecknerf9977bf2015-06-17 21:50:02 +000037X86FrameLowering::X86FrameLowering(const X86Subtarget &STI,
38 unsigned StackAlignOverride)
39 : TargetFrameLowering(StackGrowsDown, StackAlignOverride,
40 STI.is64Bit() ? -8 : -4),
Reid Kleckner034ea962015-06-18 20:32:02 +000041 STI(STI), TII(*STI.getInstrInfo()), TRI(STI.getRegisterInfo()) {
Reid Klecknerf9977bf2015-06-17 21:50:02 +000042 // Cache a bunch of frame-related predicates for this subtarget.
Reid Kleckner034ea962015-06-18 20:32:02 +000043 SlotSize = TRI->getSlotSize();
Reid Klecknerf9977bf2015-06-17 21:50:02 +000044 Is64Bit = STI.is64Bit();
45 IsLP64 = STI.isTarget64BitLP64();
46 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
47 Uses64BitFramePtr = STI.isTarget64BitLP64() || STI.isTargetNaCl64();
Reid Kleckner034ea962015-06-18 20:32:02 +000048 StackPtr = TRI->getStackRegister();
Reid Klecknerf9977bf2015-06-17 21:50:02 +000049}
50
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000051bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Michael Kuperstein13fbd452015-02-01 16:56:04 +000052 return !MF.getFrameInfo()->hasVarSizedObjects() &&
53 !MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences();
54}
55
56/// canSimplifyCallFramePseudos - If there is a reserved call frame, the
57/// call frame pseudos can be simplified. Having a FP, as in the default
58/// implementation, is not sufficient here since we can't always use it.
59/// Use a more nuanced condition.
60bool
61X86FrameLowering::canSimplifyCallFramePseudos(const MachineFunction &MF) const {
Michael Kuperstein13fbd452015-02-01 16:56:04 +000062 return hasReservedCallFrame(MF) ||
Reid Kleckner034ea962015-06-18 20:32:02 +000063 (hasFP(MF) && !TRI->needsStackRealignment(MF)) ||
64 TRI->hasBasePointer(MF);
Michael Kuperstein13fbd452015-02-01 16:56:04 +000065}
66
67// needsFrameIndexResolution - Do we need to perform FI resolution for
68// this function. Normally, this is required only when the function
69// has any stack objects. However, FI resolution actually has another job,
70// not apparent from the title - it resolves callframesetup/destroy
71// that were not simplified earlier.
72// So, this is required for x86 functions that have push sequences even
73// when there are no stack objects.
74bool
75X86FrameLowering::needsFrameIndexResolution(const MachineFunction &MF) const {
76 return MF.getFrameInfo()->hasStackObjects() ||
77 MF.getInfo<X86MachineFunctionInfo>()->getHasPushSequences();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000078}
79
80/// hasFP - Return true if the specified function should have a dedicated frame
81/// pointer register. This is true if the function has variable sized allocas
82/// or if frame pointer elimination is disabled.
83bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
84 const MachineFrameInfo *MFI = MF.getFrameInfo();
85 const MachineModuleInfo &MMI = MF.getMMI();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000086
87 return (MF.getTarget().Options.DisableFramePointerElim(MF) ||
Reid Kleckner034ea962015-06-18 20:32:02 +000088 TRI->needsStackRealignment(MF) ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000089 MFI->hasVarSizedObjects() ||
Reid Klecknere69bdb82015-07-07 23:45:58 +000090 MFI->isFrameAddressTaken() || MFI->hasOpaqueSPAdjustment() ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000091 MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() ||
Reid Klecknerdf129512015-09-08 22:44:41 +000092 MMI.callsUnwindInit() || MMI.hasEHFunclets() || MMI.callsEHReturn() ||
Michael Kupersteine86aa9a2015-02-01 16:15:07 +000093 MFI->hasStackMap() || MFI->hasPatchPoint());
94}
95
96static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) {
97 if (IsLP64) {
98 if (isInt<8>(Imm))
99 return X86::SUB64ri8;
100 return X86::SUB64ri32;
101 } else {
102 if (isInt<8>(Imm))
103 return X86::SUB32ri8;
104 return X86::SUB32ri;
105 }
106}
107
108static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) {
109 if (IsLP64) {
110 if (isInt<8>(Imm))
111 return X86::ADD64ri8;
112 return X86::ADD64ri32;
113 } else {
114 if (isInt<8>(Imm))
115 return X86::ADD32ri8;
116 return X86::ADD32ri;
117 }
118}
119
120static unsigned getSUBrrOpcode(unsigned isLP64) {
121 return isLP64 ? X86::SUB64rr : X86::SUB32rr;
122}
123
124static unsigned getADDrrOpcode(unsigned isLP64) {
125 return isLP64 ? X86::ADD64rr : X86::ADD32rr;
126}
127
128static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) {
129 if (IsLP64) {
130 if (isInt<8>(Imm))
131 return X86::AND64ri8;
132 return X86::AND64ri32;
133 }
134 if (isInt<8>(Imm))
135 return X86::AND32ri8;
136 return X86::AND32ri;
137}
138
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000139static unsigned getLEArOpcode(unsigned IsLP64) {
140 return IsLP64 ? X86::LEA64r : X86::LEA32r;
141}
142
143/// findDeadCallerSavedReg - Return a caller-saved register that isn't live
144/// when it reaches the "return" instruction. We can then pop a stack object
145/// to this register without worry about clobbering it.
146static unsigned findDeadCallerSavedReg(MachineBasicBlock &MBB,
147 MachineBasicBlock::iterator &MBBI,
Reid Kleckner034ea962015-06-18 20:32:02 +0000148 const TargetRegisterInfo *TRI,
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000149 bool Is64Bit) {
150 const MachineFunction *MF = MBB.getParent();
151 const Function *F = MF->getFunction();
152 if (!F || MF->getMMI().callsEHReturn())
153 return 0;
154
155 static const uint16_t CallerSavedRegs32Bit[] = {
156 X86::EAX, X86::EDX, X86::ECX, 0
157 };
158
159 static const uint16_t CallerSavedRegs64Bit[] = {
160 X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI,
161 X86::R8, X86::R9, X86::R10, X86::R11, 0
162 };
163
164 unsigned Opc = MBBI->getOpcode();
165 switch (Opc) {
166 default: return 0;
167 case X86::RETL:
168 case X86::RETQ:
169 case X86::RETIL:
170 case X86::RETIQ:
171 case X86::TCRETURNdi:
172 case X86::TCRETURNri:
173 case X86::TCRETURNmi:
174 case X86::TCRETURNdi64:
175 case X86::TCRETURNri64:
176 case X86::TCRETURNmi64:
177 case X86::EH_RETURN:
178 case X86::EH_RETURN64: {
179 SmallSet<uint16_t, 8> Uses;
180 for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) {
181 MachineOperand &MO = MBBI->getOperand(i);
182 if (!MO.isReg() || MO.isDef())
183 continue;
184 unsigned Reg = MO.getReg();
185 if (!Reg)
186 continue;
Reid Kleckner034ea962015-06-18 20:32:02 +0000187 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000188 Uses.insert(*AI);
189 }
190
191 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
192 for (; *CS; ++CS)
193 if (!Uses.count(*CS))
194 return *CS;
195 }
196 }
197
198 return 0;
199}
200
201static bool isEAXLiveIn(MachineFunction &MF) {
202 for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
203 EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
204 unsigned Reg = II->first;
205
206 if (Reg == X86::RAX || Reg == X86::EAX || Reg == X86::AX ||
207 Reg == X86::AH || Reg == X86::AL)
208 return true;
209 }
210
211 return false;
212}
213
Reid Kleckner98d78032015-06-18 20:22:12 +0000214/// Check whether or not the terminators of \p MBB needs to read EFLAGS.
215static bool terminatorsNeedFlagsAsInput(const MachineBasicBlock &MBB) {
216 for (const MachineInstr &MI : MBB.terminators()) {
217 bool BreakNext = false;
218 for (const MachineOperand &MO : MI.operands()) {
219 if (!MO.isReg())
220 continue;
221 unsigned Reg = MO.getReg();
222 if (Reg != X86::EFLAGS)
223 continue;
224
225 // This terminator needs an eflag that is not defined
226 // by a previous terminator.
227 if (!MO.isDef())
228 return true;
229 BreakNext = true;
230 }
231 if (BreakNext)
232 break;
233 }
234 return false;
235}
236
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000237/// emitSPUpdate - Emit a series of instructions to increment / decrement the
238/// stack pointer by a constant value.
Quentin Colombet494eb602015-05-22 18:10:47 +0000239void X86FrameLowering::emitSPUpdate(MachineBasicBlock &MBB,
240 MachineBasicBlock::iterator &MBBI,
Reid Kleckner98d78032015-06-18 20:22:12 +0000241 int64_t NumBytes, bool InEpilogue) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000242 bool isSub = NumBytes < 0;
243 uint64_t Offset = isSub ? -NumBytes : NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000244
245 uint64_t Chunk = (1LL << 31) - 1;
246 DebugLoc DL = MBB.findDebugLoc(MBBI);
247
248 while (Offset) {
249 if (Offset > Chunk) {
250 // Rather than emit a long series of instructions for large offsets,
251 // load the offset into a register and do one sub/add
252 unsigned Reg = 0;
253
254 if (isSub && !isEAXLiveIn(*MBB.getParent()))
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000255 Reg = (unsigned)(Is64Bit ? X86::RAX : X86::EAX);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000256 else
Reid Kleckner034ea962015-06-18 20:32:02 +0000257 Reg = findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000258
259 if (Reg) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000260 unsigned Opc = Is64Bit ? X86::MOV64ri : X86::MOV32ri;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000261 BuildMI(MBB, MBBI, DL, TII.get(Opc), Reg)
262 .addImm(Offset);
263 Opc = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000264 ? getSUBrrOpcode(Is64Bit)
265 : getADDrrOpcode(Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000266 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
267 .addReg(StackPtr)
268 .addReg(Reg);
269 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
270 Offset = 0;
271 continue;
272 }
273 }
274
David Majnemer3aa0bd82015-02-24 00:11:32 +0000275 uint64_t ThisVal = std::min(Offset, Chunk);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000276 if (ThisVal == (Is64Bit ? 8 : 4)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000277 // Use push / pop instead.
278 unsigned Reg = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000279 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
Reid Kleckner034ea962015-06-18 20:32:02 +0000280 : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000281 if (Reg) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000282 unsigned Opc = isSub
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000283 ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
284 : (Is64Bit ? X86::POP64r : X86::POP32r);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000285 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
286 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
287 if (isSub)
288 MI->setFlag(MachineInstr::FrameSetup);
Michael Kuperstein098cd9f2015-09-16 11:18:25 +0000289 else
290 MI->setFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000291 Offset -= ThisVal;
292 continue;
293 }
294 }
295
Reid Kleckner98d78032015-06-18 20:22:12 +0000296 MachineInstrBuilder MI = BuildStackAdjustment(
297 MBB, MBBI, DL, isSub ? -ThisVal : ThisVal, InEpilogue);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000298 if (isSub)
Reid Kleckner98d78032015-06-18 20:22:12 +0000299 MI.setMIFlag(MachineInstr::FrameSetup);
Michael Kuperstein098cd9f2015-09-16 11:18:25 +0000300 else
301 MI.setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000302
303 Offset -= ThisVal;
304 }
305}
306
Reid Kleckner98d78032015-06-18 20:22:12 +0000307MachineInstrBuilder X86FrameLowering::BuildStackAdjustment(
308 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc DL,
309 int64_t Offset, bool InEpilogue) const {
310 assert(Offset != 0 && "zero offset stack adjustment requested");
311
312 // On Atom, using LEA to adjust SP is preferred, but using it in the epilogue
313 // is tricky.
314 bool UseLEA;
315 if (!InEpilogue) {
316 UseLEA = STI.useLeaForSP();
317 } else {
318 // If we can use LEA for SP but we shouldn't, check that none
319 // of the terminators uses the eflags. Otherwise we will insert
320 // a ADD that will redefine the eflags and break the condition.
321 // Alternatively, we could move the ADD, but this may not be possible
322 // and is an optimization anyway.
323 UseLEA = canUseLEAForSPInEpilogue(*MBB.getParent());
324 if (UseLEA && !STI.useLeaForSP())
325 UseLEA = terminatorsNeedFlagsAsInput(MBB);
326 // If that assert breaks, that means we do not do the right thing
327 // in canUseAsEpilogue.
328 assert((UseLEA || !terminatorsNeedFlagsAsInput(MBB)) &&
329 "We shouldn't have allowed this insertion point");
330 }
331
332 MachineInstrBuilder MI;
333 if (UseLEA) {
334 MI = addRegOffset(BuildMI(MBB, MBBI, DL,
335 TII.get(getLEArOpcode(Uses64BitFramePtr)),
336 StackPtr),
337 StackPtr, false, Offset);
338 } else {
339 bool IsSub = Offset < 0;
340 uint64_t AbsOffset = IsSub ? -Offset : Offset;
341 unsigned Opc = IsSub ? getSUBriOpcode(Uses64BitFramePtr, AbsOffset)
342 : getADDriOpcode(Uses64BitFramePtr, AbsOffset);
343 MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
344 .addReg(StackPtr)
345 .addImm(AbsOffset);
346 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
347 }
348 return MI;
349}
350
Quentin Colombet494eb602015-05-22 18:10:47 +0000351int X86FrameLowering::mergeSPUpdates(MachineBasicBlock &MBB,
352 MachineBasicBlock::iterator &MBBI,
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000353 bool doMergeWithPrevious) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000354 if ((doMergeWithPrevious && MBBI == MBB.begin()) ||
355 (!doMergeWithPrevious && MBBI == MBB.end()))
356 return 0;
357
358 MachineBasicBlock::iterator PI = doMergeWithPrevious ? std::prev(MBBI) : MBBI;
359 MachineBasicBlock::iterator NI = doMergeWithPrevious ? nullptr
360 : std::next(MBBI);
361 unsigned Opc = PI->getOpcode();
362 int Offset = 0;
363
364 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
365 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
366 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
367 PI->getOperand(0).getReg() == StackPtr){
368 Offset += PI->getOperand(2).getImm();
369 MBB.erase(PI);
370 if (!doMergeWithPrevious) MBBI = NI;
371 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
372 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
373 PI->getOperand(0).getReg() == StackPtr) {
374 Offset -= PI->getOperand(2).getImm();
375 MBB.erase(PI);
376 if (!doMergeWithPrevious) MBBI = NI;
377 }
378
379 return Offset;
380}
381
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000382void X86FrameLowering::BuildCFI(MachineBasicBlock &MBB,
383 MachineBasicBlock::iterator MBBI, DebugLoc DL,
384 MCCFIInstruction CFIInst) const {
Reid Kleckner7f189f82015-06-15 23:45:08 +0000385 MachineFunction &MF = *MBB.getParent();
386 unsigned CFIIndex = MF.getMMI().addFrameInst(CFIInst);
387 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
388 .addCFIIndex(CFIIndex);
389}
390
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000391void
392X86FrameLowering::emitCalleeSavedFrameMoves(MachineBasicBlock &MBB,
393 MachineBasicBlock::iterator MBBI,
394 DebugLoc DL) const {
395 MachineFunction &MF = *MBB.getParent();
396 MachineFrameInfo *MFI = MF.getFrameInfo();
397 MachineModuleInfo &MMI = MF.getMMI();
398 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000399
400 // Add callee saved registers to move list.
401 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
402 if (CSI.empty()) return;
403
404 // Calculate offsets.
405 for (std::vector<CalleeSavedInfo>::const_iterator
406 I = CSI.begin(), E = CSI.end(); I != E; ++I) {
407 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
408 unsigned Reg = I->getReg();
409
410 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000411 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000412 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000413 }
414}
415
416/// usesTheStack - This function checks if any of the users of EFLAGS
417/// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
418/// to use the stack, and if we don't adjust the stack we clobber the first
419/// frame index.
420/// See X86InstrInfo::copyPhysReg.
421static bool usesTheStack(const MachineFunction &MF) {
422 const MachineRegisterInfo &MRI = MF.getRegInfo();
423
424 for (MachineRegisterInfo::reg_instr_iterator
425 ri = MRI.reg_instr_begin(X86::EFLAGS), re = MRI.reg_instr_end();
426 ri != re; ++ri)
427 if (ri->isCopy())
428 return true;
429
430 return false;
431}
432
433void X86FrameLowering::emitStackProbeCall(MachineFunction &MF,
434 MachineBasicBlock &MBB,
435 MachineBasicBlock::iterator MBBI,
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000436 DebugLoc DL) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000437 bool IsLargeCodeModel = MF.getTarget().getCodeModel() == CodeModel::Large;
438
439 unsigned CallOp;
440 if (Is64Bit)
441 CallOp = IsLargeCodeModel ? X86::CALL64r : X86::CALL64pcrel32;
442 else
443 CallOp = X86::CALLpcrel32;
444
445 const char *Symbol;
446 if (Is64Bit) {
447 if (STI.isTargetCygMing()) {
448 Symbol = "___chkstk_ms";
449 } else {
450 Symbol = "__chkstk";
451 }
452 } else if (STI.isTargetCygMing())
453 Symbol = "_alloca";
454 else
455 Symbol = "_chkstk";
456
457 MachineInstrBuilder CI;
458
459 // All current stack probes take AX and SP as input, clobber flags, and
460 // preserve all registers. x86_64 probes leave RSP unmodified.
461 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
462 // For the large code model, we have to call through a register. Use R11,
463 // as it is scratch in all supported calling conventions.
464 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::R11)
465 .addExternalSymbol(Symbol);
466 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addReg(X86::R11);
467 } else {
468 CI = BuildMI(MBB, MBBI, DL, TII.get(CallOp)).addExternalSymbol(Symbol);
469 }
470
471 unsigned AX = Is64Bit ? X86::RAX : X86::EAX;
472 unsigned SP = Is64Bit ? X86::RSP : X86::ESP;
473 CI.addReg(AX, RegState::Implicit)
474 .addReg(SP, RegState::Implicit)
475 .addReg(AX, RegState::Define | RegState::Implicit)
476 .addReg(SP, RegState::Define | RegState::Implicit)
477 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
478
479 if (Is64Bit) {
480 // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
481 // themselves. It also does not clobber %rax so we can reuse it when
482 // adjusting %rsp.
483 BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), X86::RSP)
484 .addReg(X86::RSP)
485 .addReg(X86::RAX);
486 }
487}
488
David Majnemer93c22a42015-02-10 00:57:42 +0000489static unsigned calculateSetFPREG(uint64_t SPAdjust) {
490 // Win64 ABI has a less restrictive limitation of 240; 128 works equally well
491 // and might require smaller successive adjustments.
492 const uint64_t Win64MaxSEHOffset = 128;
493 uint64_t SEHFrameOffset = std::min(SPAdjust, Win64MaxSEHOffset);
494 // Win64 ABI requires 16-byte alignment for the UWOP_SET_FPREG opcode.
David Majnemer89d05642015-02-21 01:04:47 +0000495 return SEHFrameOffset & -16;
David Majnemer93c22a42015-02-10 00:57:42 +0000496}
497
498// If we're forcing a stack realignment we can't rely on just the frame
499// info, we need to know the ABI stack alignment as well in case we
500// have a call out. Otherwise just make sure we have some alignment - we'll
501// go with the minimum SlotSize.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000502uint64_t X86FrameLowering::calculateMaxStackAlign(const MachineFunction &MF) const {
David Majnemer93c22a42015-02-10 00:57:42 +0000503 const MachineFrameInfo *MFI = MF.getFrameInfo();
504 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000505 unsigned StackAlign = getStackAlignment();
Akira Hatanakabc497c92015-09-11 18:54:38 +0000506 if (MF.getFunction()->hasFnAttribute("stackrealign")) {
David Majnemer93c22a42015-02-10 00:57:42 +0000507 if (MFI->hasCalls())
508 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
509 else if (MaxAlign < SlotSize)
510 MaxAlign = SlotSize;
511 }
512 return MaxAlign;
513}
514
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000515void X86FrameLowering::BuildStackAlignAND(MachineBasicBlock &MBB,
516 MachineBasicBlock::iterator MBBI,
517 DebugLoc DL,
518 uint64_t MaxAlign) const {
519 uint64_t Val = -MaxAlign;
520 MachineInstr *MI =
521 BuildMI(MBB, MBBI, DL, TII.get(getANDriOpcode(Uses64BitFramePtr, Val)),
522 StackPtr)
523 .addReg(StackPtr)
524 .addImm(Val)
525 .setMIFlag(MachineInstr::FrameSetup);
526
527 // The EFLAGS implicit def is dead.
528 MI->getOperand(3).setIsDead();
529}
530
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000531/// emitPrologue - Push callee-saved registers onto the stack, which
532/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
533/// space for local variables. Also emit labels used by the exception handler to
534/// generate the exception handling frames.
535
536/*
537 Here's a gist of what gets emitted:
538
539 ; Establish frame pointer, if needed
540 [if needs FP]
541 push %rbp
542 .cfi_def_cfa_offset 16
543 .cfi_offset %rbp, -16
544 .seh_pushreg %rpb
545 mov %rsp, %rbp
546 .cfi_def_cfa_register %rbp
547
548 ; Spill general-purpose registers
549 [for all callee-saved GPRs]
550 pushq %<reg>
551 [if not needs FP]
552 .cfi_def_cfa_offset (offset from RETADDR)
553 .seh_pushreg %<reg>
554
555 ; If the required stack alignment > default stack alignment
556 ; rsp needs to be re-aligned. This creates a "re-alignment gap"
557 ; of unknown size in the stack frame.
558 [if stack needs re-alignment]
559 and $MASK, %rsp
560
561 ; Allocate space for locals
562 [if target is Windows and allocated space > 4096 bytes]
563 ; Windows needs special care for allocations larger
564 ; than one page.
565 mov $NNN, %rax
566 call ___chkstk_ms/___chkstk
567 sub %rax, %rsp
568 [else]
569 sub $NNN, %rsp
570
571 [if needs FP]
572 .seh_stackalloc (size of XMM spill slots)
573 .seh_setframe %rbp, SEHFrameOffset ; = size of all spill slots
574 [else]
575 .seh_stackalloc NNN
576
577 ; Spill XMMs
578 ; Note, that while only Windows 64 ABI specifies XMMs as callee-preserved,
579 ; they may get spilled on any platform, if the current function
580 ; calls @llvm.eh.unwind.init
581 [if needs FP]
582 [for all callee-saved XMM registers]
583 movaps %<xmm reg>, -MMM(%rbp)
584 [for all callee-saved XMM registers]
585 .seh_savexmm %<xmm reg>, (-MMM + SEHFrameOffset)
586 ; i.e. the offset relative to (%rbp - SEHFrameOffset)
587 [else]
588 [for all callee-saved XMM registers]
589 movaps %<xmm reg>, KKK(%rsp)
590 [for all callee-saved XMM registers]
591 .seh_savexmm %<xmm reg>, KKK
592
593 .seh_endprologue
594
595 [if needs base pointer]
596 mov %rsp, %rbx
597 [if needs to restore base pointer]
598 mov %rsp, -MMM(%rbp)
599
600 ; Emit CFI info
601 [if needs FP]
602 [for all callee-saved registers]
603 .cfi_offset %<reg>, (offset from %rbp)
604 [else]
605 .cfi_def_cfa_offset (offset from RETADDR)
606 [for all callee-saved registers]
607 .cfi_offset %<reg>, (offset from %rsp)
608
609 Notes:
610 - .seh directives are emitted only for Windows 64 ABI
611 - .cfi directives are emitted for all other ABIs
612 - for 32-bit code, substitute %e?? registers for %r??
613*/
614
Quentin Colombet61b305e2015-05-05 17:38:16 +0000615void X86FrameLowering::emitPrologue(MachineFunction &MF,
616 MachineBasicBlock &MBB) const {
Reid Klecknerf9977bf2015-06-17 21:50:02 +0000617 assert(&STI == &MF.getSubtarget<X86Subtarget>() &&
618 "MF used frame lowering for wrong subtarget");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000619 MachineBasicBlock::iterator MBBI = MBB.begin();
620 MachineFrameInfo *MFI = MF.getFrameInfo();
621 const Function *Fn = MF.getFunction();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000622 MachineModuleInfo &MMI = MF.getMMI();
623 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
David Majnemer93c22a42015-02-10 00:57:42 +0000624 uint64_t MaxAlign = calculateMaxStackAlign(MF); // Desired stack alignment.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000625 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
626 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000627 bool IsWin64CC = STI.isCallingConvWin64(Fn->getCallingConv());
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000628 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
629 bool NeedsWinCFI = IsWin64Prologue && Fn->needsUnwindTableEntry();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000630 bool NeedsDwarfCFI =
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000631 !IsWin64Prologue && (MMI.hasDebugInfo() || Fn->needsUnwindTableEntry());
Reid Kleckner034ea962015-06-18 20:32:02 +0000632 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +0000633 const unsigned MachineFramePtr =
634 STI.isTarget64BitILP32()
635 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
636 : FramePtr;
Reid Kleckner034ea962015-06-18 20:32:02 +0000637 unsigned BasePtr = TRI->getBaseRegister();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000638 DebugLoc DL;
639
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000640 // Add RETADDR move area to callee saved frame size.
641 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000642 if (TailCallReturnAddrDelta && IsWin64Prologue)
David Majnemer93c22a42015-02-10 00:57:42 +0000643 report_fatal_error("Can't handle guaranteed tail call under win64 yet");
644
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000645 if (TailCallReturnAddrDelta < 0)
646 X86FI->setCalleeSavedFrameSize(
647 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
648
649 bool UseStackProbe = (STI.isOSWindows() && !STI.isTargetMachO());
650
651 // The default stack probe size is 4096 if the function has no stackprobesize
652 // attribute.
653 unsigned StackProbeSize = 4096;
654 if (Fn->hasFnAttribute("stack-probe-size"))
655 Fn->getFnAttribute("stack-probe-size")
656 .getValueAsString()
657 .getAsInteger(0, StackProbeSize);
658
659 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
660 // function, and use up to 128 bytes of stack space, don't have a frame
661 // pointer, calls, or dynamic alloca then we do not need to adjust the
662 // stack pointer (we fit in the Red Zone). We also check that we don't
663 // push and pop from the stack.
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000664 if (Is64Bit && !Fn->hasFnAttribute(Attribute::NoRedZone) &&
Reid Kleckner034ea962015-06-18 20:32:02 +0000665 !TRI->needsStackRealignment(MF) &&
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000666 !MFI->hasVarSizedObjects() && // No dynamic alloca.
667 !MFI->adjustsStack() && // No calls.
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000668 !IsWin64CC && // Win64 has no Red Zone
Duncan P. N. Exon Smith5975a702015-02-14 01:59:52 +0000669 !usesTheStack(MF) && // Don't push and pop.
670 !MF.shouldSplitStack()) { // Regular stack
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000671 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
672 if (HasFP) MinSize += SlotSize;
673 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
674 MFI->setStackSize(StackSize);
675 }
676
677 // Insert stack pointer adjustment for later moving of return addr. Only
678 // applies to tail call optimized functions where the callee argument stack
679 // size is bigger than the callers.
680 if (TailCallReturnAddrDelta < 0) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000681 BuildStackAdjustment(MBB, MBBI, DL, TailCallReturnAddrDelta,
682 /*InEpilogue=*/false)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000683 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000684 }
685
686 // Mapping for machine moves:
687 //
688 // DST: VirtualFP AND
689 // SRC: VirtualFP => DW_CFA_def_cfa_offset
690 // ELSE => DW_CFA_def_cfa
691 //
692 // SRC: VirtualFP AND
693 // DST: Register => DW_CFA_def_cfa_register
694 //
695 // ELSE
696 // OFFSET < 0 => DW_CFA_offset_extended_sf
697 // REG < 64 => DW_CFA_offset + Reg
698 // ELSE => DW_CFA_offset_extended
699
700 uint64_t NumBytes = 0;
701 int stackGrowth = -SlotSize;
702
Reid Klecknerdf129512015-09-08 22:44:41 +0000703 if (MBB.isEHFuncletEntry()) {
704 assert(STI.isOSWindows() && "funclets only supported on Windows");
705
706 // Set up the FramePtr and BasePtr physical registers using the address
707 // passed as EBP or RDX by the MSVC EH runtime.
708 if (STI.is32Bit()) {
Reid Klecknerda6dcc52015-09-10 22:00:02 +0000709 // PUSH32r %ebp
710 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
711 .addReg(MachineFramePtr, RegState::Kill)
712 .setMIFlag(MachineInstr::FrameSetup);
713 // Reset EBP / ESI to something good.
Reid Klecknerdf129512015-09-08 22:44:41 +0000714 MBBI = restoreWin32EHFrameAndBasePtr(MBB, MBBI, DL);
715 } else {
716 // FIXME: Add SEH directives.
717 NeedsWinCFI = false;
718 // Immediately spill RDX into the home slot. The runtime cares about this.
719 unsigned RDX = Uses64BitFramePtr ? X86::RDX : X86::EDX;
720 // MOV64mr %rdx, 16(%rsp)
721 unsigned MOVmr = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
722 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(MOVmr)),
723 StackPtr, true, 16)
724 .addReg(RDX)
725 .setMIFlag(MachineInstr::FrameSetup);
726 // PUSH64r %rbp
Reid Klecknerda6dcc52015-09-10 22:00:02 +0000727 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH64r))
Reid Klecknerdf129512015-09-08 22:44:41 +0000728 .addReg(MachineFramePtr, RegState::Kill)
729 .setMIFlag(MachineInstr::FrameSetup);
730 // MOV64rr %rdx, %rbp
731 unsigned MOVrr = Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr;
732 BuildMI(MBB, MBBI, DL, TII.get(MOVrr), FramePtr)
733 .addReg(RDX)
734 .setMIFlag(MachineInstr::FrameSetup);
735 assert(!TRI->hasBasePointer(MF) &&
736 "x64 funclets with base ptrs not yet implemented");
737 }
738
739 // For EH funclets, only allocate enough space for outgoing calls.
740 NumBytes = MFI->getMaxCallFrameSize();
741 } else if (HasFP) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000742 // Calculate required stack adjustment.
743 uint64_t FrameSize = StackSize - SlotSize;
744 // If required, include space for extra hidden slot for stashing base pointer.
745 if (X86FI->getRestoreBasePointer())
746 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +0000747
748 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
749
750 // Callee-saved registers are pushed on stack before the stack is realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +0000751 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +0000752 NumBytes = RoundUpToAlignment(NumBytes, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000753
754 // Get the offset of the stack slot for the EBP register, which is
755 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
756 // Update the frame offset adjustment.
757 MFI->setOffsetAdjustment(-NumBytes);
758
759 // Save EBP/RBP into the appropriate stack slot.
760 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
761 .addReg(MachineFramePtr, RegState::Kill)
762 .setMIFlag(MachineInstr::FrameSetup);
763
764 if (NeedsDwarfCFI) {
765 // Mark the place where EBP/RBP was saved.
766 // Define the current CFA rule to use the provided offset.
767 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000768 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000769 MCCFIInstruction::createDefCfaOffset(nullptr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000770
771 // Change the rule for the FramePtr to be an "offset" rule.
Reid Kleckner034ea962015-06-18 20:32:02 +0000772 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000773 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createOffset(
774 nullptr, DwarfFramePtr, 2 * stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000775 }
776
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000777 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000778 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg))
779 .addImm(FramePtr)
780 .setMIFlag(MachineInstr::FrameSetup);
781 }
782
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000783 if (!IsWin64Prologue) {
David Majnemer93c22a42015-02-10 00:57:42 +0000784 // Update EBP with the new base value.
785 BuildMI(MBB, MBBI, DL,
786 TII.get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr),
787 FramePtr)
788 .addReg(StackPtr)
789 .setMIFlag(MachineInstr::FrameSetup);
790 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000791
792 if (NeedsDwarfCFI) {
793 // Mark effective beginning of when frame pointer becomes valid.
794 // Define the current CFA to use the EBP/RBP register.
Reid Kleckner034ea962015-06-18 20:32:02 +0000795 unsigned DwarfFramePtr = TRI->getDwarfRegNum(MachineFramePtr, true);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000796 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000797 MCCFIInstruction::createDefCfaRegister(nullptr, DwarfFramePtr));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000798 }
799
800 // Mark the FramePtr as live-in in every block.
801 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
802 I->addLiveIn(MachineFramePtr);
803 } else {
804 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
805 }
806
807 // Skip the callee-saved push instructions.
808 bool PushedRegs = false;
809 int StackOffset = 2 * stackGrowth;
810
811 while (MBBI != MBB.end() &&
Michael Kupersteine1ea4e7d2015-07-16 12:27:59 +0000812 MBBI->getFlag(MachineInstr::FrameSetup) &&
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000813 (MBBI->getOpcode() == X86::PUSH32r ||
814 MBBI->getOpcode() == X86::PUSH64r)) {
815 PushedRegs = true;
816 unsigned Reg = MBBI->getOperand(0).getReg();
817 ++MBBI;
818
819 if (!HasFP && NeedsDwarfCFI) {
820 // Mark callee-saved push instruction.
821 // Define the current CFA rule to use the provided offset.
822 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000823 BuildCFI(MBB, MBBI, DL,
Reid Kleckner7f189f82015-06-15 23:45:08 +0000824 MCCFIInstruction::createDefCfaOffset(nullptr, StackOffset));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000825 StackOffset += stackGrowth;
826 }
827
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000828 if (NeedsWinCFI) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000829 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_PushReg)).addImm(Reg).setMIFlag(
830 MachineInstr::FrameSetup);
831 }
832 }
833
834 // Realign stack after we pushed callee-saved registers (so that we'll be
835 // able to calculate their offsets from the frame pointer).
David Majnemer93c22a42015-02-10 00:57:42 +0000836 // Don't do this for Win64, it needs to realign the stack after the prologue.
Reid Kleckner034ea962015-06-18 20:32:02 +0000837 if (!IsWin64Prologue && TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000838 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000839 BuildStackAlignAND(MBB, MBBI, DL, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000840 }
841
842 // If there is an SUB32ri of ESP immediately before this instruction, merge
843 // the two. This can be the case when tail call elimination is enabled and
844 // the callee has more arguments then the caller.
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000845 NumBytes -= mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000846
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000847 // Adjust stack pointer: ESP -= numbytes.
848
849 // Windows and cygwin/mingw require a prologue helper routine when allocating
850 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
851 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
852 // stack and adjust the stack pointer in one go. The 64-bit version of
853 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
854 // responsible for adjusting the stack pointer. Touching the stack at 4K
855 // increments is necessary to ensure that the guard pages used by the OS
856 // virtual memory manager are allocated in correct sequence.
David Majnemer89d05642015-02-21 01:04:47 +0000857 uint64_t AlignedNumBytes = NumBytes;
Reid Kleckner034ea962015-06-18 20:32:02 +0000858 if (IsWin64Prologue && TRI->needsStackRealignment(MF))
David Majnemer89d05642015-02-21 01:04:47 +0000859 AlignedNumBytes = RoundUpToAlignment(AlignedNumBytes, MaxAlign);
860 if (AlignedNumBytes >= StackProbeSize && UseStackProbe) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000861 // Check whether EAX is livein for this function.
862 bool isEAXAlive = isEAXLiveIn(MF);
863
864 if (isEAXAlive) {
865 // Sanity check that EAX is not livein for this function.
866 // It should not be, so throw an assert.
867 assert(!Is64Bit && "EAX is livein in x64 case!");
868
869 // Save EAX
870 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
871 .addReg(X86::EAX, RegState::Kill)
872 .setMIFlag(MachineInstr::FrameSetup);
873 }
874
875 if (Is64Bit) {
876 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
877 // Function prologue is responsible for adjusting the stack pointer.
David Majnemer006c4902015-02-23 21:50:30 +0000878 if (isUInt<32>(NumBytes)) {
879 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
880 .addImm(NumBytes)
881 .setMIFlag(MachineInstr::FrameSetup);
882 } else if (isInt<32>(NumBytes)) {
883 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri32), X86::RAX)
884 .addImm(NumBytes)
885 .setMIFlag(MachineInstr::FrameSetup);
886 } else {
887 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
888 .addImm(NumBytes)
889 .setMIFlag(MachineInstr::FrameSetup);
890 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000891 } else {
892 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
893 // We'll also use 4 already allocated bytes for EAX.
894 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
895 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
896 .setMIFlag(MachineInstr::FrameSetup);
897 }
898
899 // Save a pointer to the MI where we set AX.
900 MachineBasicBlock::iterator SetRAX = MBBI;
901 --SetRAX;
902
903 // Call __chkstk, __chkstk_ms, or __alloca.
904 emitStackProbeCall(MF, MBB, MBBI, DL);
905
906 // Apply the frame setup flag to all inserted instrs.
907 for (; SetRAX != MBBI; ++SetRAX)
908 SetRAX->setFlag(MachineInstr::FrameSetup);
909
910 if (isEAXAlive) {
911 // Restore EAX
912 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
913 X86::EAX),
914 StackPtr, false, NumBytes - 4);
915 MI->setFlag(MachineInstr::FrameSetup);
916 MBB.insert(MBBI, MI);
917 }
918 } else if (NumBytes) {
Reid Kleckner98d78032015-06-18 20:22:12 +0000919 emitSPUpdate(MBB, MBBI, -(int64_t)NumBytes, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000920 }
921
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000922 if (NeedsWinCFI && NumBytes)
David Majnemer93c22a42015-02-10 00:57:42 +0000923 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_StackAlloc))
924 .addImm(NumBytes)
925 .setMIFlag(MachineInstr::FrameSetup);
926
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000927 int SEHFrameOffset = 0;
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000928 if (IsWin64Prologue && HasFP) {
David Majnemer93c22a42015-02-10 00:57:42 +0000929 SEHFrameOffset = calculateSetFPREG(NumBytes);
David Majnemer31d868b2015-02-23 21:50:27 +0000930 if (SEHFrameOffset)
931 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA64r), FramePtr),
932 StackPtr, false, SEHFrameOffset);
933 else
934 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64rr), FramePtr).addReg(StackPtr);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000935
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000936 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000937 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SetFrame))
938 .addImm(FramePtr)
939 .addImm(SEHFrameOffset)
940 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000941 }
942
David Majnemera7d908e2015-02-10 19:01:47 +0000943 while (MBBI != MBB.end() && MBBI->getFlag(MachineInstr::FrameSetup)) {
944 const MachineInstr *FrameInstr = &*MBBI;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000945 ++MBBI;
946
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000947 if (NeedsWinCFI) {
David Majnemera7d908e2015-02-10 19:01:47 +0000948 int FI;
949 if (unsigned Reg = TII.isStoreToStackSlot(FrameInstr, FI)) {
950 if (X86::FR64RegClass.contains(Reg)) {
James Y Knight5567baf2015-08-15 02:32:35 +0000951 unsigned IgnoredFrameReg;
952 int Offset = getFrameIndexReference(MF, FI, IgnoredFrameReg);
David Majnemera7d908e2015-02-10 19:01:47 +0000953 Offset += SEHFrameOffset;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000954
David Majnemera7d908e2015-02-10 19:01:47 +0000955 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_SaveXMM))
956 .addImm(Reg)
957 .addImm(Offset)
958 .setMIFlag(MachineInstr::FrameSetup);
959 }
960 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000961 }
David Majnemera7d908e2015-02-10 19:01:47 +0000962 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000963
Reid Kleckner1c140bd2015-06-16 18:08:57 +0000964 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000965 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_EndPrologue))
966 .setMIFlag(MachineInstr::FrameSetup);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000967
David Majnemer93c22a42015-02-10 00:57:42 +0000968 // Realign stack after we spilled callee-saved registers (so that we'll be
969 // able to calculate their offsets from the frame pointer).
970 // Win64 requires aligning the stack after the prologue.
Reid Kleckner034ea962015-06-18 20:32:02 +0000971 if (IsWin64Prologue && TRI->needsStackRealignment(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +0000972 assert(HasFP && "There should be a frame pointer if stack is realigned.");
Reid Kleckner3854f7b2015-06-18 18:03:25 +0000973 BuildStackAlignAND(MBB, MBBI, DL, MaxAlign);
David Majnemer93c22a42015-02-10 00:57:42 +0000974 }
975
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000976 // If we need a base pointer, set it up here. It's whatever the value
977 // of the stack pointer is at this point. Any variable size objects
978 // will be allocated after this, so we can still use the base pointer
979 // to reference locals.
Reid Kleckner034ea962015-06-18 20:32:02 +0000980 if (TRI->hasBasePointer(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000981 // Update the base pointer with the current stack pointer.
982 unsigned Opc = Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr;
983 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
984 .addReg(StackPtr)
985 .setMIFlag(MachineInstr::FrameSetup);
986 if (X86FI->getRestoreBasePointer()) {
Reid Klecknere69bdb82015-07-07 23:45:58 +0000987 // Stash value of base pointer. Saving RSP instead of EBP shortens
988 // dependence chain. Used by SjLj EH.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +0000989 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
990 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)),
991 FramePtr, true, X86FI->getRestoreBasePointerOffset())
992 .addReg(StackPtr)
993 .setMIFlag(MachineInstr::FrameSetup);
994 }
Reid Klecknere69bdb82015-07-07 23:45:58 +0000995
996 if (X86FI->getHasSEHFramePtrSave()) {
997 // Stash the value of the frame pointer relative to the base pointer for
998 // Win32 EH. This supports Win32 EH, which does the inverse of the above:
999 // it recovers the frame pointer from the base pointer rather than the
1000 // other way around.
1001 unsigned Opm = Uses64BitFramePtr ? X86::MOV64mr : X86::MOV32mr;
Reid Klecknerdf129512015-09-08 22:44:41 +00001002 unsigned UsedReg;
1003 int Offset =
1004 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(), UsedReg);
1005 assert(UsedReg == BasePtr);
1006 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opm)), UsedReg, true, Offset)
Reid Klecknere69bdb82015-07-07 23:45:58 +00001007 .addReg(FramePtr)
1008 .setMIFlag(MachineInstr::FrameSetup);
1009 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001010 }
1011
1012 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI) {
1013 // Mark end of stack pointer adjustment.
1014 if (!HasFP && NumBytes) {
1015 // Define the current CFA rule to use the provided offset.
1016 assert(StackSize);
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001017 BuildCFI(MBB, MBBI, DL, MCCFIInstruction::createDefCfaOffset(
1018 nullptr, -StackSize + stackGrowth));
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001019 }
1020
1021 // Emit DWARF info specifying the offsets of the callee-saved registers.
1022 if (PushedRegs)
1023 emitCalleeSavedFrameMoves(MBB, MBBI, DL);
1024 }
1025}
1026
Quentin Colombetaa8020752015-05-27 06:28:41 +00001027bool X86FrameLowering::canUseLEAForSPInEpilogue(
1028 const MachineFunction &MF) const {
Quentin Colombet494eb602015-05-22 18:10:47 +00001029 // We can't use LEA instructions for adjusting the stack pointer if this is a
1030 // leaf function in the Win64 ABI. Only ADD instructions may be used to
1031 // deallocate the stack.
1032 // This means that we can use LEA for SP in two situations:
1033 // 1. We *aren't* using the Win64 ABI which means we are free to use LEA.
1034 // 2. We *have* a frame pointer which means we are permitted to use LEA.
Quentin Colombetaa8020752015-05-27 06:28:41 +00001035 return !MF.getTarget().getMCAsmInfo()->usesWindowsCFI() || hasFP(MF);
1036}
1037
Reid Klecknerdf129512015-09-08 22:44:41 +00001038static bool isFuncletReturnInstr(MachineInstr *MI) {
1039 switch (MI->getOpcode()) {
1040 case X86::CATCHRET:
1041 case X86::CATCHRET64:
Reid Kleckner78783912015-09-10 00:25:23 +00001042 case X86::CLEANUPRET:
1043 case X86::CLEANUPRET64:
Reid Klecknerdf129512015-09-08 22:44:41 +00001044 return true;
1045 default:
1046 return false;
1047 }
1048 llvm_unreachable("impossible");
1049}
1050
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001051void X86FrameLowering::emitEpilogue(MachineFunction &MF,
1052 MachineBasicBlock &MBB) const {
1053 const MachineFrameInfo *MFI = MF.getFrameInfo();
1054 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Quentin Colombetaa8020752015-05-27 06:28:41 +00001055 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator();
1056 DebugLoc DL;
1057 if (MBBI != MBB.end())
1058 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001059 // standard x86_64 and NaCl use 64-bit frame/stack pointers, x32 - 32-bit.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001060 const bool Is64BitILP32 = STI.isTarget64BitILP32();
Reid Kleckner034ea962015-06-18 20:32:02 +00001061 unsigned FramePtr = TRI->getFrameRegister(MF);
Eric Christopher05b81972015-02-02 17:38:43 +00001062 unsigned MachineFramePtr =
1063 Is64BitILP32 ? getX86SubSuperRegister(FramePtr, MVT::i64, false)
1064 : FramePtr;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001065
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001066 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
1067 bool NeedsWinCFI =
1068 IsWin64Prologue && MF.getFunction()->needsUnwindTableEntry();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001069
1070 // Get the number of bytes to allocate from the FrameInfo.
1071 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001072 uint64_t MaxAlign = calculateMaxStackAlign(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001073 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
1074 uint64_t NumBytes = 0;
1075
Reid Klecknerdf129512015-09-08 22:44:41 +00001076 if (isFuncletReturnInstr(MBBI)) {
1077 NumBytes = MFI->getMaxCallFrameSize();
Reid Klecknerda6dcc52015-09-10 22:00:02 +00001078 assert(hasFP(MF) && "win64 EH funclets without FP not yet implemented");
Reid Klecknerdf129512015-09-08 22:44:41 +00001079
Reid Klecknerda6dcc52015-09-10 22:00:02 +00001080 // Pop EBP.
1081 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::POP64r : X86::POP32r),
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001082 MachineFramePtr).setMIFlag(MachineInstr::FrameDestroy);
Reid Klecknerdf129512015-09-08 22:44:41 +00001083 } else if (hasFP(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001084 // Calculate required stack adjustment.
1085 uint64_t FrameSize = StackSize - SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001086 NumBytes = FrameSize - CSSize;
1087
1088 // Callee-saved registers were pushed on stack before the stack was
1089 // realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001090 if (TRI->needsStackRealignment(MF) && !IsWin64Prologue)
David Majnemer89d05642015-02-21 01:04:47 +00001091 NumBytes = RoundUpToAlignment(FrameSize, MaxAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001092
1093 // Pop EBP.
1094 BuildMI(MBB, MBBI, DL,
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001095 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), MachineFramePtr)
1096 .setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001097 } else {
1098 NumBytes = StackSize - CSSize;
1099 }
David Majnemer93c22a42015-02-10 00:57:42 +00001100 uint64_t SEHStackAllocAmt = NumBytes;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001101
1102 // Skip the callee-saved pop instructions.
1103 while (MBBI != MBB.begin()) {
1104 MachineBasicBlock::iterator PI = std::prev(MBBI);
1105 unsigned Opc = PI->getOpcode();
1106
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001107 if ((Opc != X86::POP32r || !PI->getFlag(MachineInstr::FrameDestroy)) &&
1108 (Opc != X86::POP64r || !PI->getFlag(MachineInstr::FrameDestroy)) &&
1109 Opc != X86::DBG_VALUE && !PI->isTerminator())
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001110 break;
1111
1112 --MBBI;
1113 }
1114 MachineBasicBlock::iterator FirstCSPop = MBBI;
1115
Quentin Colombetaa8020752015-05-27 06:28:41 +00001116 if (MBBI != MBB.end())
1117 DL = MBBI->getDebugLoc();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001118
1119 // If there is an ADD32ri or SUB32ri of ESP immediately before this
1120 // instruction, merge the two instructions.
1121 if (NumBytes || MFI->hasVarSizedObjects())
Michael Kupersteincba308c2015-07-28 08:56:13 +00001122 NumBytes += mergeSPUpdates(MBB, MBBI, true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001123
1124 // If dynamic alloca is used, then reset esp to point to the last callee-saved
1125 // slot before popping them off! Same applies for the case, when stack was
1126 // realigned.
Reid Kleckner034ea962015-06-18 20:32:02 +00001127 if (TRI->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) {
1128 if (TRI->needsStackRealignment(MF))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001129 MBBI = FirstCSPop;
David Majnemere1bbad92015-02-25 21:13:37 +00001130 unsigned SEHFrameOffset = calculateSetFPREG(SEHStackAllocAmt);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001131 uint64_t LEAAmount =
1132 IsWin64Prologue ? SEHStackAllocAmt - SEHFrameOffset : -CSSize;
David Majnemere1bbad92015-02-25 21:13:37 +00001133
1134 // There are only two legal forms of epilogue:
1135 // - add SEHAllocationSize, %rsp
1136 // - lea SEHAllocationSize(%FramePtr), %rsp
1137 //
1138 // 'mov %FramePtr, %rsp' will not be recognized as an epilogue sequence.
1139 // However, we may use this sequence if we have a frame pointer because the
1140 // effects of the prologue can safely be undone.
1141 if (LEAAmount != 0) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001142 unsigned Opc = getLEArOpcode(Uses64BitFramePtr);
1143 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
David Majnemere1bbad92015-02-25 21:13:37 +00001144 FramePtr, false, LEAAmount);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001145 --MBBI;
1146 } else {
1147 unsigned Opc = (Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr);
1148 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
1149 .addReg(FramePtr);
1150 --MBBI;
1151 }
1152 } else if (NumBytes) {
1153 // Adjust stack pointer back: ESP += numbytes.
Reid Kleckner98d78032015-06-18 20:22:12 +00001154 emitSPUpdate(MBB, MBBI, NumBytes, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001155 --MBBI;
1156 }
1157
1158 // Windows unwinder will not invoke function's exception handler if IP is
1159 // either in prologue or in epilogue. This behavior causes a problem when a
1160 // call immediately precedes an epilogue, because the return address points
1161 // into the epilogue. To cope with that, we insert an epilogue marker here,
1162 // then replace it with a 'nop' if it ends up immediately after a CALL in the
1163 // final emitted code.
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001164 if (NeedsWinCFI)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001165 BuildMI(MBB, MBBI, DL, TII.get(X86::SEH_Epilogue));
1166
Quentin Colombet494eb602015-05-22 18:10:47 +00001167 // Add the return addr area delta back since we are not tail calling.
1168 int Offset = -1 * X86FI->getTCReturnAddrDelta();
1169 assert(Offset >= 0 && "TCDelta should never be positive");
1170 if (Offset) {
1171 MBBI = MBB.getFirstTerminator();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001172
1173 // Check for possible merge with preceding ADD instruction.
Reid Kleckner3854f7b2015-06-18 18:03:25 +00001174 Offset += mergeSPUpdates(MBB, MBBI, true);
Reid Kleckner98d78032015-06-18 20:22:12 +00001175 emitSPUpdate(MBB, MBBI, Offset, /*InEpilogue=*/true);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001176 }
1177}
1178
James Y Knight5567baf2015-08-15 02:32:35 +00001179// NOTE: this only has a subset of the full frame index logic. In
1180// particular, the FI < 0 and AfterFPPop logic is handled in
1181// X86RegisterInfo::eliminateFrameIndex, but not here. Possibly
1182// (probably?) it should be moved into here.
1183int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1184 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001185 const MachineFrameInfo *MFI = MF.getFrameInfo();
James Y Knight5567baf2015-08-15 02:32:35 +00001186
1187 // We can't calculate offset from frame pointer if the stack is realigned,
1188 // so enforce usage of stack/base pointer. The base pointer is used when we
1189 // have dynamic allocas in addition to dynamic realignment.
1190 if (TRI->hasBasePointer(MF))
1191 FrameReg = TRI->getBaseRegister();
1192 else if (TRI->needsStackRealignment(MF))
1193 FrameReg = TRI->getStackRegister();
1194 else
1195 FrameReg = TRI->getFrameRegister(MF);
1196
David Majnemer93c22a42015-02-10 00:57:42 +00001197 // Offset will hold the offset from the stack pointer at function entry to the
1198 // object.
1199 // We need to factor in additional offsets applied during the prologue to the
1200 // frame, base, and stack pointer depending on which is used.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001201 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
David Majnemer93c22a42015-02-10 00:57:42 +00001202 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1203 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001204 uint64_t StackSize = MFI->getStackSize();
David Majnemer93c22a42015-02-10 00:57:42 +00001205 bool HasFP = hasFP(MF);
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001206 bool IsWin64Prologue = MF.getTarget().getMCAsmInfo()->usesWindowsCFI();
David Majnemer93c22a42015-02-10 00:57:42 +00001207 int64_t FPDelta = 0;
1208
Reid Kleckner1c140bd2015-06-16 18:08:57 +00001209 if (IsWin64Prologue) {
David Majnemer89d05642015-02-21 01:04:47 +00001210 assert(!MFI->hasCalls() || (StackSize % 16) == 8);
1211
David Majnemer93c22a42015-02-10 00:57:42 +00001212 // Calculate required stack adjustment.
1213 uint64_t FrameSize = StackSize - SlotSize;
1214 // If required, include space for extra hidden slot for stashing base pointer.
1215 if (X86FI->getRestoreBasePointer())
1216 FrameSize += SlotSize;
David Majnemer89d05642015-02-21 01:04:47 +00001217 uint64_t NumBytes = FrameSize - CSSize;
David Majnemer93c22a42015-02-10 00:57:42 +00001218
David Majnemer93c22a42015-02-10 00:57:42 +00001219 uint64_t SEHFrameOffset = calculateSetFPREG(NumBytes);
David Majnemer13d0b112015-02-10 21:22:05 +00001220 if (FI && FI == X86FI->getFAIndex())
1221 return -SEHFrameOffset;
1222
David Majnemer93c22a42015-02-10 00:57:42 +00001223 // FPDelta is the offset from the "traditional" FP location of the old base
1224 // pointer followed by return address and the location required by the
1225 // restricted Win64 prologue.
1226 // Add FPDelta to all offsets below that go through the frame pointer.
David Majnemer89d05642015-02-21 01:04:47 +00001227 FPDelta = FrameSize - SEHFrameOffset;
1228 assert((!MFI->hasCalls() || (FPDelta % 16) == 0) &&
1229 "FPDelta isn't aligned per the Win64 ABI!");
David Majnemer93c22a42015-02-10 00:57:42 +00001230 }
1231
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001232
Reid Kleckner034ea962015-06-18 20:32:02 +00001233 if (TRI->hasBasePointer(MF)) {
David Majnemer93c22a42015-02-10 00:57:42 +00001234 assert(HasFP && "VLAs and dynamic stack realign, but no FP?!");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001235 if (FI < 0) {
1236 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001237 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001238 } else {
1239 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1240 return Offset + StackSize;
1241 }
Reid Kleckner034ea962015-06-18 20:32:02 +00001242 } else if (TRI->needsStackRealignment(MF)) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001243 if (FI < 0) {
1244 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001245 return Offset + SlotSize + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001246 } else {
1247 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1248 return Offset + StackSize;
1249 }
1250 // FIXME: Support tail calls
1251 } else {
David Majnemer93c22a42015-02-10 00:57:42 +00001252 if (!HasFP)
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001253 return Offset + StackSize;
1254
1255 // Skip the saved EBP.
David Majnemer93c22a42015-02-10 00:57:42 +00001256 Offset += SlotSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001257
1258 // Skip the RETADDR move area
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001259 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1260 if (TailCallReturnAddrDelta < 0)
1261 Offset -= TailCallReturnAddrDelta;
1262 }
1263
David Majnemer89d05642015-02-21 01:04:47 +00001264 return Offset + FPDelta;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001265}
1266
James Y Knight5567baf2015-08-15 02:32:35 +00001267// Simplified from getFrameIndexReference keeping only StackPointer cases
1268int X86FrameLowering::getFrameIndexReferenceFromSP(const MachineFunction &MF,
1269 int FI,
1270 unsigned &FrameReg) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001271 const MachineFrameInfo *MFI = MF.getFrameInfo();
1272 // Does not include any dynamic realign.
1273 const uint64_t StackSize = MFI->getStackSize();
1274 {
1275#ifndef NDEBUG
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001276 // Note: LLVM arranges the stack as:
1277 // Args > Saved RetPC (<--FP) > CSRs > dynamic alignment (<--BP)
1278 // > "Stack Slots" (<--SP)
1279 // We can always address StackSlots from RSP. We can usually (unless
1280 // needsStackRealignment) address CSRs from RSP, but sometimes need to
1281 // address them from RBP. FixedObjects can be placed anywhere in the stack
1282 // frame depending on their specific requirements (i.e. we can actually
1283 // refer to arguments to the function which are stored in the *callers*
1284 // frame). As a result, THE RESULT OF THIS CALL IS MEANINGLESS FOR CSRs
1285 // AND FixedObjects IFF needsStackRealignment or hasVarSizedObject.
1286
Reid Kleckner034ea962015-06-18 20:32:02 +00001287 assert(!TRI->hasBasePointer(MF) && "we don't handle this case");
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001288
1289 // We don't handle tail calls, and shouldn't be seeing them
1290 // either.
1291 int TailCallReturnAddrDelta =
1292 MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta();
1293 assert(!(TailCallReturnAddrDelta < 0) && "we don't handle this case!");
1294#endif
1295 }
1296
James Y Knight5567baf2015-08-15 02:32:35 +00001297 // Fill in FrameReg output argument.
1298 FrameReg = TRI->getStackRegister();
1299
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001300 // This is how the math works out:
1301 //
1302 // %rsp grows (i.e. gets lower) left to right. Each box below is
1303 // one word (eight bytes). Obj0 is the stack slot we're trying to
1304 // get to.
1305 //
1306 // ----------------------------------
1307 // | BP | Obj0 | Obj1 | ... | ObjN |
1308 // ----------------------------------
1309 // ^ ^ ^ ^
1310 // A B C E
1311 //
1312 // A is the incoming stack pointer.
1313 // (B - A) is the local area offset (-8 for x86-64) [1]
1314 // (C - A) is the Offset returned by MFI->getObjectOffset for Obj0 [2]
1315 //
1316 // |(E - B)| is the StackSize (absolute value, positive). For a
1317 // stack that grown down, this works out to be (B - E). [3]
1318 //
1319 // E is also the value of %rsp after stack has been set up, and we
1320 // want (C - E) -- the value we can add to %rsp to get to Obj0. Now
1321 // (C - E) == (C - A) - (B - A) + (B - E)
1322 // { Using [1], [2] and [3] above }
1323 // == getObjectOffset - LocalAreaOffset + StackSize
1324 //
1325
1326 // Get the Offset from the StackPointer
1327 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
1328
1329 return Offset + StackSize;
1330}
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001331
1332bool X86FrameLowering::assignCalleeSavedSpillSlots(
1333 MachineFunction &MF, const TargetRegisterInfo *TRI,
1334 std::vector<CalleeSavedInfo> &CSI) const {
1335 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001336 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1337
1338 unsigned CalleeSavedFrameSize = 0;
1339 int SpillSlotOffset = getOffsetOfLocalArea() + X86FI->getTCReturnAddrDelta();
1340
1341 if (hasFP(MF)) {
1342 // emitPrologue always spills frame register the first thing.
1343 SpillSlotOffset -= SlotSize;
1344 MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1345
1346 // Since emitPrologue and emitEpilogue will handle spilling and restoring of
1347 // the frame register, we can delete it from CSI list and not have to worry
1348 // about avoiding it later.
Reid Kleckner034ea962015-06-18 20:32:02 +00001349 unsigned FPReg = TRI->getFrameRegister(MF);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001350 for (unsigned i = 0; i < CSI.size(); ++i) {
1351 if (TRI->regsOverlap(CSI[i].getReg(),FPReg)) {
1352 CSI.erase(CSI.begin() + i);
1353 break;
1354 }
1355 }
1356 }
1357
1358 // Assign slots for GPRs. It increases frame size.
1359 for (unsigned i = CSI.size(); i != 0; --i) {
1360 unsigned Reg = CSI[i - 1].getReg();
1361
1362 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1363 continue;
1364
1365 SpillSlotOffset -= SlotSize;
1366 CalleeSavedFrameSize += SlotSize;
1367
1368 int SlotIndex = MFI->CreateFixedSpillStackObject(SlotSize, SpillSlotOffset);
1369 CSI[i - 1].setFrameIdx(SlotIndex);
1370 }
1371
1372 X86FI->setCalleeSavedFrameSize(CalleeSavedFrameSize);
1373
1374 // Assign slots for XMMs.
1375 for (unsigned i = CSI.size(); i != 0; --i) {
1376 unsigned Reg = CSI[i - 1].getReg();
1377 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
1378 continue;
1379
Reid Kleckner034ea962015-06-18 20:32:02 +00001380 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001381 // ensure alignment
1382 SpillSlotOffset -= std::abs(SpillSlotOffset) % RC->getAlignment();
1383 // spill into slot
1384 SpillSlotOffset -= RC->getSize();
1385 int SlotIndex =
1386 MFI->CreateFixedSpillStackObject(RC->getSize(), SpillSlotOffset);
1387 CSI[i - 1].setFrameIdx(SlotIndex);
1388 MFI->ensureMaxAlignment(RC->getAlignment());
1389 }
1390
1391 return true;
1392}
1393
1394bool X86FrameLowering::spillCalleeSavedRegisters(
1395 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
1396 const std::vector<CalleeSavedInfo> &CSI,
1397 const TargetRegisterInfo *TRI) const {
1398 DebugLoc DL = MBB.findDebugLoc(MI);
1399
Reid Klecknerdf129512015-09-08 22:44:41 +00001400 // Don't save CSRs in 32-bit EH funclets. The caller saves EBX, EBP, ESI, EDI
1401 // for us, and there are no XMM CSRs on Win32.
1402 if (MBB.isEHFuncletEntry() && STI.is32Bit() && STI.isOSWindows())
1403 return true;
1404
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001405 // Push GPRs. It increases frame size.
1406 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
1407 for (unsigned i = CSI.size(); i != 0; --i) {
1408 unsigned Reg = CSI[i - 1].getReg();
1409
1410 if (!X86::GR64RegClass.contains(Reg) && !X86::GR32RegClass.contains(Reg))
1411 continue;
1412 // Add the callee-saved register as live-in. It's killed at the spill.
1413 MBB.addLiveIn(Reg);
1414
1415 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1416 .setMIFlag(MachineInstr::FrameSetup);
1417 }
1418
1419 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1420 // It can be done by spilling XMMs to stack frame.
1421 for (unsigned i = CSI.size(); i != 0; --i) {
1422 unsigned Reg = CSI[i-1].getReg();
David Majnemera7d908e2015-02-10 19:01:47 +00001423 if (X86::GR64RegClass.contains(Reg) || X86::GR32RegClass.contains(Reg))
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001424 continue;
1425 // Add the callee-saved register as live-in. It's killed at the spill.
1426 MBB.addLiveIn(Reg);
1427 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1428
1429 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i - 1].getFrameIdx(), RC,
1430 TRI);
1431 --MI;
1432 MI->setFlag(MachineInstr::FrameSetup);
1433 ++MI;
1434 }
1435
1436 return true;
1437}
1438
1439bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
1440 MachineBasicBlock::iterator MI,
1441 const std::vector<CalleeSavedInfo> &CSI,
1442 const TargetRegisterInfo *TRI) const {
1443 if (CSI.empty())
1444 return false;
1445
Reid Klecknerdf129512015-09-08 22:44:41 +00001446 // Don't restore CSRs in 32-bit EH funclets. Matches
1447 // spillCalleeSavedRegisters.
1448 if (isFuncletReturnInstr(MI) && STI.is32Bit() && STI.isOSWindows())
1449 return true;
1450
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001451 DebugLoc DL = MBB.findDebugLoc(MI);
1452
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001453 // Reload XMMs from stack frame.
1454 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1455 unsigned Reg = CSI[i].getReg();
1456 if (X86::GR64RegClass.contains(Reg) ||
1457 X86::GR32RegClass.contains(Reg))
1458 continue;
1459
1460 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1461 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(), RC, TRI);
1462 }
1463
1464 // POP GPRs.
1465 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1466 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1467 unsigned Reg = CSI[i].getReg();
1468 if (!X86::GR64RegClass.contains(Reg) &&
1469 !X86::GR32RegClass.contains(Reg))
1470 continue;
1471
Michael Kuperstein098cd9f2015-09-16 11:18:25 +00001472 BuildMI(MBB, MI, DL, TII.get(Opc), Reg)
1473 .setMIFlag(MachineInstr::FrameDestroy);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001474 }
1475 return true;
1476}
1477
Matthias Braun02564862015-07-14 17:17:13 +00001478void X86FrameLowering::determineCalleeSaves(MachineFunction &MF,
1479 BitVector &SavedRegs,
1480 RegScavenger *RS) const {
1481 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
1482
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001483 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001484
1485 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1486 int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1487
1488 if (TailCallReturnAddrDelta < 0) {
1489 // create RETURNADDR area
1490 // arg
1491 // arg
1492 // RETADDR
1493 // { ...
1494 // RETADDR area
1495 // ...
1496 // }
1497 // [EBP]
1498 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1499 TailCallReturnAddrDelta - SlotSize, true);
1500 }
1501
1502 // Spill the BasePtr if it's used.
Reid Klecknerdf129512015-09-08 22:44:41 +00001503 if (TRI->hasBasePointer(MF)) {
Matthias Braun02564862015-07-14 17:17:13 +00001504 SavedRegs.set(TRI->getBaseRegister());
Reid Klecknerdf129512015-09-08 22:44:41 +00001505
1506 // Allocate a spill slot for EBP if we have a base pointer and EH funclets.
1507 if (MF.getMMI().hasEHFunclets()) {
1508 int FI = MFI->CreateSpillStackObject(SlotSize, SlotSize);
1509 X86FI->setHasSEHFramePtrSave(true);
1510 X86FI->setSEHFramePtrSaveIndex(FI);
1511 }
1512 }
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001513}
1514
1515static bool
1516HasNestArgument(const MachineFunction *MF) {
1517 const Function *F = MF->getFunction();
1518 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1519 I != E; I++) {
1520 if (I->hasNestAttr())
1521 return true;
1522 }
1523 return false;
1524}
1525
1526/// GetScratchRegister - Get a temp register for performing work in the
1527/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1528/// and the properties of the function either one or two registers will be
1529/// needed. Set primary to true for the first register, false for the second.
1530static unsigned
1531GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary) {
1532 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1533
1534 // Erlang stuff.
1535 if (CallingConvention == CallingConv::HiPE) {
1536 if (Is64Bit)
1537 return Primary ? X86::R14 : X86::R13;
1538 else
1539 return Primary ? X86::EBX : X86::EDI;
1540 }
1541
1542 if (Is64Bit) {
1543 if (IsLP64)
1544 return Primary ? X86::R11 : X86::R12;
1545 else
1546 return Primary ? X86::R11D : X86::R12D;
1547 }
1548
1549 bool IsNested = HasNestArgument(&MF);
1550
1551 if (CallingConvention == CallingConv::X86_FastCall ||
1552 CallingConvention == CallingConv::Fast) {
1553 if (IsNested)
1554 report_fatal_error("Segmented stacks does not support fastcall with "
1555 "nested function.");
1556 return Primary ? X86::EAX : X86::ECX;
1557 }
1558 if (IsNested)
1559 return Primary ? X86::EDX : X86::EAX;
1560 return Primary ? X86::ECX : X86::EAX;
1561}
1562
1563// The stack limit in the TCB is set to this many bytes above the actual stack
1564// limit.
1565static const uint64_t kSplitStackAvailable = 256;
1566
Quentin Colombet61b305e2015-05-05 17:38:16 +00001567void X86FrameLowering::adjustForSegmentedStacks(
1568 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001569 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001570 uint64_t StackSize;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001571 unsigned TlsReg, TlsOffset;
1572 DebugLoc DL;
1573
1574 unsigned ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1575 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1576 "Scratch register is live-in");
1577
1578 if (MF.getFunction()->isVarArg())
1579 report_fatal_error("Segmented stacks do not support vararg functions.");
1580 if (!STI.isTargetLinux() && !STI.isTargetDarwin() && !STI.isTargetWin32() &&
1581 !STI.isTargetWin64() && !STI.isTargetFreeBSD() &&
1582 !STI.isTargetDragonFly())
1583 report_fatal_error("Segmented stacks not supported on this platform.");
1584
1585 // Eventually StackSize will be calculated by a link-time pass; which will
1586 // also decide whether checking code needs to be injected into this particular
1587 // prologue.
1588 StackSize = MFI->getStackSize();
1589
1590 // Do not generate a prologue for functions with a stack of size zero
1591 if (StackSize == 0)
1592 return;
1593
1594 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1595 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1596 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1597 bool IsNested = false;
1598
1599 // We need to know if the function has a nest argument only in 64 bit mode.
1600 if (Is64Bit)
1601 IsNested = HasNestArgument(&MF);
1602
1603 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1604 // allocMBB needs to be last (terminating) instruction.
1605
Matthias Braund9da1622015-09-09 18:08:03 +00001606 for (const auto &LI : PrologueMBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +00001607 allocMBB->addLiveIn(LI);
1608 checkMBB->addLiveIn(LI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001609 }
1610
1611 if (IsNested)
1612 allocMBB->addLiveIn(IsLP64 ? X86::R10 : X86::R10D);
1613
1614 MF.push_front(allocMBB);
1615 MF.push_front(checkMBB);
1616
1617 // When the frame size is less than 256 we just compare the stack
1618 // boundary directly to the value of the stack pointer, per gcc.
1619 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1620
1621 // Read the limit off the current stacklet off the stack_guard location.
1622 if (Is64Bit) {
1623 if (STI.isTargetLinux()) {
1624 TlsReg = X86::FS;
1625 TlsOffset = IsLP64 ? 0x70 : 0x40;
1626 } else if (STI.isTargetDarwin()) {
1627 TlsReg = X86::GS;
1628 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
1629 } else if (STI.isTargetWin64()) {
1630 TlsReg = X86::GS;
1631 TlsOffset = 0x28; // pvArbitrary, reserved for application use
1632 } else if (STI.isTargetFreeBSD()) {
1633 TlsReg = X86::FS;
1634 TlsOffset = 0x18;
1635 } else if (STI.isTargetDragonFly()) {
1636 TlsReg = X86::FS;
1637 TlsOffset = 0x20; // use tls_tcb.tcb_segstack
1638 } else {
1639 report_fatal_error("Segmented stacks not supported on this platform.");
1640 }
1641
1642 if (CompareStackPointer)
1643 ScratchReg = IsLP64 ? X86::RSP : X86::ESP;
1644 else
1645 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::LEA64r : X86::LEA64_32r), ScratchReg).addReg(X86::RSP)
1646 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1647
1648 BuildMI(checkMBB, DL, TII.get(IsLP64 ? X86::CMP64rm : X86::CMP32rm)).addReg(ScratchReg)
1649 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1650 } else {
1651 if (STI.isTargetLinux()) {
1652 TlsReg = X86::GS;
1653 TlsOffset = 0x30;
1654 } else if (STI.isTargetDarwin()) {
1655 TlsReg = X86::GS;
1656 TlsOffset = 0x48 + 90*4;
1657 } else if (STI.isTargetWin32()) {
1658 TlsReg = X86::FS;
1659 TlsOffset = 0x14; // pvArbitrary, reserved for application use
1660 } else if (STI.isTargetDragonFly()) {
1661 TlsReg = X86::FS;
1662 TlsOffset = 0x10; // use tls_tcb.tcb_segstack
1663 } else if (STI.isTargetFreeBSD()) {
1664 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
1665 } else {
1666 report_fatal_error("Segmented stacks not supported on this platform.");
1667 }
1668
1669 if (CompareStackPointer)
1670 ScratchReg = X86::ESP;
1671 else
1672 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
1673 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1674
1675 if (STI.isTargetLinux() || STI.isTargetWin32() || STI.isTargetWin64() ||
1676 STI.isTargetDragonFly()) {
1677 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1678 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1679 } else if (STI.isTargetDarwin()) {
1680
1681 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register.
1682 unsigned ScratchReg2;
1683 bool SaveScratch2;
1684 if (CompareStackPointer) {
1685 // The primary scratch register is available for holding the TLS offset.
1686 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1687 SaveScratch2 = false;
1688 } else {
1689 // Need to use a second register to hold the TLS offset
1690 ScratchReg2 = GetScratchRegister(Is64Bit, IsLP64, MF, false);
1691
1692 // Unfortunately, with fastcc the second scratch register may hold an
1693 // argument.
1694 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1695 }
1696
1697 // If Scratch2 is live-in then it needs to be saved.
1698 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1699 "Scratch register is live-in and not saved");
1700
1701 if (SaveScratch2)
1702 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1703 .addReg(ScratchReg2, RegState::Kill);
1704
1705 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1706 .addImm(TlsOffset);
1707 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1708 .addReg(ScratchReg)
1709 .addReg(ScratchReg2).addImm(1).addReg(0)
1710 .addImm(0)
1711 .addReg(TlsReg);
1712
1713 if (SaveScratch2)
1714 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1715 }
1716 }
1717
1718 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1719 // It jumps to normal execution of the function body.
Quentin Colombet61b305e2015-05-05 17:38:16 +00001720 BuildMI(checkMBB, DL, TII.get(X86::JA_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001721
1722 // On 32 bit we first push the arguments size and then the frame size. On 64
1723 // bit, we pass the stack frame size in r10 and the argument size in r11.
1724 if (Is64Bit) {
1725 // Functions with nested arguments use R10, so it needs to be saved across
1726 // the call to _morestack
1727
1728 const unsigned RegAX = IsLP64 ? X86::RAX : X86::EAX;
1729 const unsigned Reg10 = IsLP64 ? X86::R10 : X86::R10D;
1730 const unsigned Reg11 = IsLP64 ? X86::R11 : X86::R11D;
1731 const unsigned MOVrr = IsLP64 ? X86::MOV64rr : X86::MOV32rr;
1732 const unsigned MOVri = IsLP64 ? X86::MOV64ri : X86::MOV32ri;
1733
1734 if (IsNested)
1735 BuildMI(allocMBB, DL, TII.get(MOVrr), RegAX).addReg(Reg10);
1736
1737 BuildMI(allocMBB, DL, TII.get(MOVri), Reg10)
1738 .addImm(StackSize);
1739 BuildMI(allocMBB, DL, TII.get(MOVri), Reg11)
1740 .addImm(X86FI->getArgumentStackSize());
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001741 } else {
1742 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1743 .addImm(X86FI->getArgumentStackSize());
1744 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1745 .addImm(StackSize);
1746 }
1747
1748 // __morestack is in libgcc
1749 if (Is64Bit && MF.getTarget().getCodeModel() == CodeModel::Large) {
1750 // Under the large code model, we cannot assume that __morestack lives
1751 // within 2^31 bytes of the call site, so we cannot use pc-relative
1752 // addressing. We cannot perform the call via a temporary register,
1753 // as the rax register may be used to store the static chain, and all
1754 // other suitable registers may be either callee-save or used for
1755 // parameter passing. We cannot use the stack at this point either
1756 // because __morestack manipulates the stack directly.
1757 //
1758 // To avoid these issues, perform an indirect call via a read-only memory
1759 // location containing the address.
1760 //
1761 // This solution is not perfect, as it assumes that the .rodata section
1762 // is laid out within 2^31 bytes of each function body, but this seems
1763 // to be sufficient for JIT.
1764 BuildMI(allocMBB, DL, TII.get(X86::CALL64m))
1765 .addReg(X86::RIP)
1766 .addImm(0)
1767 .addReg(0)
1768 .addExternalSymbol("__morestack_addr")
1769 .addReg(0);
1770 MF.getMMI().setUsesMorestackAddr(true);
1771 } else {
1772 if (Is64Bit)
1773 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1774 .addExternalSymbol("__morestack");
1775 else
1776 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1777 .addExternalSymbol("__morestack");
1778 }
1779
1780 if (IsNested)
1781 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1782 else
1783 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
1784
Quentin Colombet61b305e2015-05-05 17:38:16 +00001785 allocMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001786
1787 checkMBB->addSuccessor(allocMBB);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001788 checkMBB->addSuccessor(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001789
1790#ifdef XDEBUG
1791 MF.verify();
1792#endif
1793}
1794
1795/// Erlang programs may need a special prologue to handle the stack size they
1796/// might need at runtime. That is because Erlang/OTP does not implement a C
1797/// stack but uses a custom implementation of hybrid stack/heap architecture.
1798/// (for more information see Eric Stenman's Ph.D. thesis:
1799/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1800///
1801/// CheckStack:
1802/// temp0 = sp - MaxStack
1803/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1804/// OldStart:
1805/// ...
1806/// IncStack:
1807/// call inc_stack # doubles the stack space
1808/// temp0 = sp - MaxStack
1809/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Quentin Colombet61b305e2015-05-05 17:38:16 +00001810void X86FrameLowering::adjustForHiPEPrologue(
1811 MachineFunction &MF, MachineBasicBlock &PrologueMBB) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001812 MachineFrameInfo *MFI = MF.getFrameInfo();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001813 DebugLoc DL;
1814 // HiPE-specific values
1815 const unsigned HipeLeafWords = 24;
1816 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1817 const unsigned Guaranteed = HipeLeafWords * SlotSize;
1818 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1819 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1820 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
1821
1822 assert(STI.isTargetLinux() &&
1823 "HiPE prologue is only supported on Linux operating systems.");
1824
1825 // Compute the largest caller's frame that is needed to fit the callees'
1826 // frames. This 'MaxStack' is computed from:
1827 //
1828 // a) the fixed frame size, which is the space needed for all spilled temps,
1829 // b) outgoing on-stack parameter areas, and
1830 // c) the minimum stack space this function needs to make available for the
1831 // functions it calls (a tunable ABI property).
1832 if (MFI->hasCalls()) {
1833 unsigned MoreStackForCalls = 0;
1834
1835 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1836 MBBI != MBBE; ++MBBI)
1837 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
1838 MI != ME; ++MI) {
1839 if (!MI->isCall())
1840 continue;
1841
1842 // Get callee operand.
1843 const MachineOperand &MO = MI->getOperand(0);
1844
1845 // Only take account of global function calls (no closures etc.).
1846 if (!MO.isGlobal())
1847 continue;
1848
1849 const Function *F = dyn_cast<Function>(MO.getGlobal());
1850 if (!F)
1851 continue;
1852
1853 // Do not update 'MaxStack' for primitive and built-in functions
1854 // (encoded with names either starting with "erlang."/"bif_" or not
1855 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1856 // "_", such as the BIF "suspend_0") as they are executed on another
1857 // stack.
1858 if (F->getName().find("erlang.") != StringRef::npos ||
1859 F->getName().find("bif_") != StringRef::npos ||
1860 F->getName().find_first_of("._") == StringRef::npos)
1861 continue;
1862
1863 unsigned CalleeStkArity =
1864 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1865 if (HipeLeafWords - 1 > CalleeStkArity)
1866 MoreStackForCalls = std::max(MoreStackForCalls,
1867 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1868 }
1869 MaxStack += MoreStackForCalls;
1870 }
1871
1872 // If the stack frame needed is larger than the guaranteed then runtime checks
1873 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1874 if (MaxStack > Guaranteed) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001875 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1876 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1877
Matthias Braund9da1622015-09-09 18:08:03 +00001878 for (const auto &LI : PrologueMBB.liveins()) {
Matthias Braunb2b7ef12015-08-24 22:59:52 +00001879 stackCheckMBB->addLiveIn(LI);
1880 incStackMBB->addLiveIn(LI);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001881 }
1882
1883 MF.push_front(incStackMBB);
1884 MF.push_front(stackCheckMBB);
1885
1886 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1887 unsigned LEAop, CMPop, CALLop;
1888 if (Is64Bit) {
1889 SPReg = X86::RSP;
1890 PReg = X86::RBP;
1891 LEAop = X86::LEA64r;
1892 CMPop = X86::CMP64rm;
1893 CALLop = X86::CALL64pcrel32;
1894 SPLimitOffset = 0x90;
1895 } else {
1896 SPReg = X86::ESP;
1897 PReg = X86::EBP;
1898 LEAop = X86::LEA32r;
1899 CMPop = X86::CMP32rm;
1900 CALLop = X86::CALLpcrel32;
1901 SPLimitOffset = 0x4c;
1902 }
1903
1904 ScratchReg = GetScratchRegister(Is64Bit, IsLP64, MF, true);
1905 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1906 "HiPE prologue scratch register is live-in");
1907
1908 // Create new MBB for StackCheck:
1909 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
1910 SPReg, false, -MaxStack);
1911 // SPLimitOffset is in a fixed heap location (pointed by BP).
1912 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
1913 .addReg(ScratchReg), PReg, false, SPLimitOffset);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001914 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_1)).addMBB(&PrologueMBB);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001915
1916 // Create new MBB for IncStack:
1917 BuildMI(incStackMBB, DL, TII.get(CALLop)).
1918 addExternalSymbol("inc_stack_0");
1919 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
1920 SPReg, false, -MaxStack);
1921 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
1922 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1923 BuildMI(incStackMBB, DL, TII.get(X86::JLE_1)).addMBB(incStackMBB);
1924
Quentin Colombet61b305e2015-05-05 17:38:16 +00001925 stackCheckMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001926 stackCheckMBB->addSuccessor(incStackMBB, 1);
Quentin Colombet61b305e2015-05-05 17:38:16 +00001927 incStackMBB->addSuccessor(&PrologueMBB, 99);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001928 incStackMBB->addSuccessor(incStackMBB, 1);
1929 }
1930#ifdef XDEBUG
1931 MF.verify();
1932#endif
1933}
1934
Michael Kuperstein7337ee22015-08-11 08:48:48 +00001935bool X86FrameLowering::adjustStackWithPops(MachineBasicBlock &MBB,
1936 MachineBasicBlock::iterator MBBI, DebugLoc DL, int Offset) const {
1937
1938 if (Offset % SlotSize)
1939 return false;
1940
1941 int NumPops = Offset / SlotSize;
1942 // This is only worth it if we have at most 2 pops.
1943 if (NumPops != 1 && NumPops != 2)
1944 return false;
1945
1946 // Handle only the trivial case where the adjustment directly follows
1947 // a call. This is the most common one, anyway.
1948 if (MBBI == MBB.begin())
1949 return false;
1950 MachineBasicBlock::iterator Prev = std::prev(MBBI);
1951 if (!Prev->isCall() || !Prev->getOperand(1).isRegMask())
1952 return false;
1953
1954 unsigned Regs[2];
1955 unsigned FoundRegs = 0;
1956
1957 auto RegMask = Prev->getOperand(1);
1958
1959 // Try to find up to NumPops free registers.
1960 for (auto Candidate : X86::GR32_NOREX_NOSPRegClass) {
1961
1962 // Poor man's liveness:
1963 // Since we're immediately after a call, any register that is clobbered
1964 // by the call and not defined by it can be considered dead.
1965 if (!RegMask.clobbersPhysReg(Candidate))
1966 continue;
1967
1968 bool IsDef = false;
1969 for (const MachineOperand &MO : Prev->implicit_operands()) {
1970 if (MO.isReg() && MO.isDef() && MO.getReg() == Candidate) {
1971 IsDef = true;
1972 break;
1973 }
1974 }
1975
1976 if (IsDef)
1977 continue;
1978
1979 Regs[FoundRegs++] = Candidate;
1980 if (FoundRegs == (unsigned)NumPops)
1981 break;
1982 }
1983
1984 if (FoundRegs == 0)
1985 return false;
1986
1987 // If we found only one free register, but need two, reuse the same one twice.
1988 while (FoundRegs < (unsigned)NumPops)
1989 Regs[FoundRegs++] = Regs[0];
1990
1991 for (int i = 0; i < NumPops; ++i)
1992 BuildMI(MBB, MBBI, DL,
1993 TII.get(STI.is64Bit() ? X86::POP64r : X86::POP32r), Regs[i]);
1994
1995 return true;
1996}
1997
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00001998void X86FrameLowering::
1999eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
2000 MachineBasicBlock::iterator I) const {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002001 bool reserveCallFrame = hasReservedCallFrame(MF);
Matthias Braunfa3872e2015-05-18 20:27:55 +00002002 unsigned Opcode = I->getOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002003 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002004 DebugLoc DL = I->getDebugLoc();
2005 uint64_t Amount = !reserveCallFrame ? I->getOperand(0).getImm() : 0;
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002006 uint64_t InternalAmt = (isDestroy || Amount) ? I->getOperand(1).getImm() : 0;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002007 I = MBB.erase(I);
2008
2009 if (!reserveCallFrame) {
2010 // If the stack pointer can be changed after prologue, turn the
2011 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
2012 // adjcallstackdown instruction into 'add ESP, <amt>'
2013 if (Amount == 0)
2014 return;
2015
2016 // We need to keep the stack aligned properly. To do this, we round the
2017 // amount of space needed for the outgoing arguments up to the next
2018 // alignment boundary.
David Majnemer93c22a42015-02-10 00:57:42 +00002019 unsigned StackAlign = getStackAlignment();
2020 Amount = RoundUpToAlignment(Amount, StackAlign);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002021
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002022 // Factor out the amount that gets handled inside the sequence
2023 // (Pushes of argument for frame setup, callee pops for frame destroy)
2024 Amount -= InternalAmt;
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002025
Michael Kuperstein13fbd452015-02-01 16:56:04 +00002026 if (Amount) {
Reid Kleckner98d78032015-06-18 20:22:12 +00002027 // Add Amount to SP to destroy a frame, and subtract to setup.
2028 int Offset = isDestroy ? Amount : -Amount;
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002029
2030 if (!(MF.getFunction()->optForMinSize() &&
2031 adjustStackWithPops(MBB, I, DL, Offset)))
2032 BuildStackAdjustment(MBB, I, DL, Offset, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002033 }
Michael Kuperstein7337ee22015-08-11 08:48:48 +00002034
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002035 return;
2036 }
2037
Reid Kleckner98d78032015-06-18 20:22:12 +00002038 if (isDestroy && InternalAmt) {
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002039 // If we are performing frame pointer elimination and if the callee pops
2040 // something off the stack pointer, add it back. We do this until we have
2041 // more advanced stack pointer tracking ability.
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002042 // We are not tracking the stack pointer adjustment by the callee, so make
2043 // sure we restore the stack pointer immediately after the call, there may
2044 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
2045 MachineBasicBlock::iterator B = MBB.begin();
2046 while (I != B && !std::prev(I)->isCall())
2047 --I;
Reid Kleckner98d78032015-06-18 20:22:12 +00002048 BuildStackAdjustment(MBB, I, DL, -InternalAmt, /*InEpilogue=*/false);
Michael Kupersteine86aa9a2015-02-01 16:15:07 +00002049 }
2050}
2051
Quentin Colombetaa8020752015-05-27 06:28:41 +00002052bool X86FrameLowering::canUseAsEpilogue(const MachineBasicBlock &MBB) const {
2053 assert(MBB.getParent() && "Block is not attached to a function!");
2054
2055 if (canUseLEAForSPInEpilogue(*MBB.getParent()))
2056 return true;
2057
2058 // If we cannot use LEA to adjust SP, we may need to use ADD, which
2059 // clobbers the EFLAGS. Check that none of the terminators reads the
2060 // EFLAGS, and if one uses it, conservatively assume this is not
2061 // safe to insert the epilogue here.
2062 return !terminatorsNeedFlagsAsInput(MBB);
2063}
Reid Klecknerdf129512015-09-08 22:44:41 +00002064
2065MachineBasicBlock::iterator X86FrameLowering::restoreWin32EHFrameAndBasePtr(
2066 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
2067 DebugLoc DL) const {
2068 assert(STI.isTargetWindowsMSVC() && "funclets only supported in MSVC env");
2069 assert(STI.isTargetWin32() && "EBP/ESI restoration only required on win32");
2070 assert(STI.is32Bit() && !Uses64BitFramePtr &&
2071 "restoring EBP/ESI on non-32-bit target");
2072
2073 MachineFunction &MF = *MBB.getParent();
2074 unsigned FramePtr = TRI->getFrameRegister(MF);
2075 unsigned BasePtr = TRI->getBaseRegister();
2076 MachineModuleInfo &MMI = MF.getMMI();
2077 const Function *Fn = MF.getFunction();
2078 WinEHFuncInfo &FuncInfo = MMI.getWinEHFuncInfo(Fn);
2079 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
2080 MachineFrameInfo *MFI = MF.getFrameInfo();
2081
2082 // FIXME: Don't set FrameSetup flag in catchret case.
2083
2084 int FI = FuncInfo.EHRegNodeFrameIndex;
2085 unsigned UsedReg;
2086 int EHRegOffset = getFrameIndexReference(MF, FI, UsedReg);
2087 int EHRegSize = MFI->getObjectSize(FI);
2088 int EndOffset = -EHRegOffset - EHRegSize;
2089 assert(EndOffset >= 0 &&
2090 "end of registration object above normal EBP position!");
2091 if (UsedReg == FramePtr) {
2092 // ADD $offset, %ebp
2093 assert(UsedReg == FramePtr);
2094 unsigned ADDri = getADDriOpcode(false, EndOffset);
2095 BuildMI(MBB, MBBI, DL, TII.get(ADDri), FramePtr)
2096 .addReg(FramePtr)
2097 .addImm(EndOffset)
2098 .setMIFlag(MachineInstr::FrameSetup)
2099 ->getOperand(3)
2100 .setIsDead();
2101 } else {
2102 assert(UsedReg == BasePtr);
2103 // LEA offset(%ebp), %esi
2104 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::LEA32r), BasePtr),
2105 FramePtr, false, EndOffset)
2106 .setMIFlag(MachineInstr::FrameSetup);
2107 // MOV32mr SavedEBPOffset(%esi), %ebp
2108 assert(X86FI->getHasSEHFramePtrSave());
2109 int Offset =
2110 getFrameIndexReference(MF, X86FI->getSEHFramePtrSaveIndex(), UsedReg);
2111 assert(UsedReg == BasePtr);
2112 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32mr)), UsedReg, true,
2113 Offset)
2114 .addReg(FramePtr)
2115 .setMIFlag(MachineInstr::FrameSetup);
2116 }
2117 return MBBI;
2118}