blob: 8942566687c458e80542ae2d0d6a81ccb7a988a9 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- X86FrameLowering.cpp - X86 Frame Information ----------------------===//
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Anton Korobeynikov2f931282011-01-10 12:39:04 +000010// This file contains the X86 implementation of TargetFrameLowering class.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov2f931282011-01-10 12:39:04 +000014#include "X86FrameLowering.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000015#include "X86InstrBuilder.h"
16#include "X86InstrInfo.h"
17#include "X86MachineFunctionInfo.h"
Rafael Espindolac2174212011-08-30 19:39:58 +000018#include "X86Subtarget.h"
Anton Korobeynikov14ee3442010-11-18 23:25:52 +000019#include "X86TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/ADT/SmallSet.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000021#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"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/Function.h"
Rafael Espindolaa01cdb02011-04-15 15:11:06 +000028#include "llvm/MC/MCAsmInfo.h"
Bill Wendlingb6adf462011-07-07 00:54:13 +000029#include "llvm/MC/MCSymbol.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000030#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Target/TargetOptions.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000032
33using namespace llvm;
34
35// FIXME: completely move here.
36extern cl::opt<bool> ForceStackAlign;
37
Anton Korobeynikov2f931282011-01-10 12:39:04 +000038bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000039 return !MF.getFrameInfo()->hasVarSizedObjects();
40}
41
42/// hasFP - Return true if the specified function should have a dedicated frame
43/// pointer register. This is true if the function has variable sized allocas
44/// or if frame pointer elimination is disabled.
Anton Korobeynikov2f931282011-01-10 12:39:04 +000045bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000046 const MachineFrameInfo *MFI = MF.getFrameInfo();
47 const MachineModuleInfo &MMI = MF.getMMI();
Eric Christopher11b05cc2014-06-05 00:09:05 +000048 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000049
Nick Lewycky50f02cb2011-12-02 22:16:29 +000050 return (MF.getTarget().Options.DisableFramePointerElim(MF) ||
Chad Rosier20b79dc2012-05-23 23:45:10 +000051 RegInfo->needsStackRealignment(MF) ||
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000052 MFI->hasVarSizedObjects() ||
Reid Kleckneree088972013-12-10 18:27:32 +000053 MFI->isFrameAddressTaken() || MFI->hasInlineAsmWithSPAdjust() ||
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000054 MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() ||
Jakob Stoklund Olesen321d41a2012-06-22 03:04:27 +000055 MMI.callsUnwindInit() || MMI.callsEHReturn());
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +000056}
57
Eli Bendersky8da87162013-02-21 20:05:00 +000058static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) {
59 if (IsLP64) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000060 if (isInt<8>(Imm))
61 return X86::SUB64ri8;
62 return X86::SUB64ri32;
63 } else {
64 if (isInt<8>(Imm))
65 return X86::SUB32ri8;
66 return X86::SUB32ri;
67 }
68}
69
Eli Benderskyef4558a2013-02-06 20:43:57 +000070static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) {
71 if (IsLP64) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000072 if (isInt<8>(Imm))
73 return X86::ADD64ri8;
74 return X86::ADD64ri32;
75 } else {
76 if (isInt<8>(Imm))
77 return X86::ADD32ri8;
78 return X86::ADD32ri;
79 }
80}
81
Eli Benderskyef4558a2013-02-06 20:43:57 +000082static unsigned getLEArOpcode(unsigned IsLP64) {
83 return IsLP64 ? X86::LEA64r : X86::LEA32r;
Evan Cheng1b81fdd2012-02-07 22:50:41 +000084}
85
Evan Cheng65089fc2011-01-03 22:53:22 +000086/// findDeadCallerSavedReg - Return a caller-saved register that isn't live
87/// when it reaches the "return" instruction. We can then pop a stack object
88/// to this register without worry about clobbering it.
89static unsigned findDeadCallerSavedReg(MachineBasicBlock &MBB,
90 MachineBasicBlock::iterator &MBBI,
91 const TargetRegisterInfo &TRI,
92 bool Is64Bit) {
93 const MachineFunction *MF = MBB.getParent();
94 const Function *F = MF->getFunction();
95 if (!F || MF->getMMI().callsEHReturn())
96 return 0;
97
Craig Topper1d326582012-03-04 10:43:23 +000098 static const uint16_t CallerSavedRegs32Bit[] = {
Andrew Trick210bf832011-08-12 00:49:19 +000099 X86::EAX, X86::EDX, X86::ECX, 0
Evan Cheng65089fc2011-01-03 22:53:22 +0000100 };
101
Craig Topper1d326582012-03-04 10:43:23 +0000102 static const uint16_t CallerSavedRegs64Bit[] = {
Evan Cheng65089fc2011-01-03 22:53:22 +0000103 X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI,
Andrew Trick210bf832011-08-12 00:49:19 +0000104 X86::R8, X86::R9, X86::R10, X86::R11, 0
Evan Cheng65089fc2011-01-03 22:53:22 +0000105 };
106
107 unsigned Opc = MBBI->getOpcode();
108 switch (Opc) {
109 default: return 0;
David Woodhouse79dd5052014-01-08 12:58:07 +0000110 case X86::RETL:
111 case X86::RETQ:
David Woodhouse4e033b02014-01-13 14:05:59 +0000112 case X86::RETIL:
113 case X86::RETIQ:
Evan Cheng65089fc2011-01-03 22:53:22 +0000114 case X86::TCRETURNdi:
115 case X86::TCRETURNri:
116 case X86::TCRETURNmi:
117 case X86::TCRETURNdi64:
118 case X86::TCRETURNri64:
119 case X86::TCRETURNmi64:
120 case X86::EH_RETURN:
121 case X86::EH_RETURN64: {
Craig Topper1d326582012-03-04 10:43:23 +0000122 SmallSet<uint16_t, 8> Uses;
Evan Cheng65089fc2011-01-03 22:53:22 +0000123 for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) {
124 MachineOperand &MO = MBBI->getOperand(i);
125 if (!MO.isReg() || MO.isDef())
126 continue;
127 unsigned Reg = MO.getReg();
128 if (!Reg)
129 continue;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000130 for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
131 Uses.insert(*AI);
Evan Cheng65089fc2011-01-03 22:53:22 +0000132 }
133
Craig Topper1d326582012-03-04 10:43:23 +0000134 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
Evan Cheng65089fc2011-01-03 22:53:22 +0000135 for (; *CS; ++CS)
136 if (!Uses.count(*CS))
137 return *CS;
138 }
139 }
140
141 return 0;
142}
143
144
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000145/// emitSPUpdate - Emit a series of instructions to increment / decrement the
146/// stack pointer by a constant value.
147static
148void emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
Evan Cheng65089fc2011-01-03 22:53:22 +0000149 unsigned StackPtr, int64_t NumBytes,
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000150 bool Is64Bit, bool IsLP64, bool UseLEA,
Eric Christopherf4fba5c2012-10-03 08:10:01 +0000151 const TargetInstrInfo &TII, const TargetRegisterInfo &TRI) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000152 bool isSub = NumBytes < 0;
153 uint64_t Offset = isSub ? -NumBytes : NumBytes;
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000154 unsigned Opc;
155 if (UseLEA)
Eli Benderskyef4558a2013-02-06 20:43:57 +0000156 Opc = getLEArOpcode(IsLP64);
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000157 else
158 Opc = isSub
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000159 ? getSUBriOpcode(IsLP64, Offset)
160 : getADDriOpcode(IsLP64, Offset);
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000161
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000162 uint64_t Chunk = (1LL << 31) - 1;
Eric Christopherf4fba5c2012-10-03 08:10:01 +0000163 DebugLoc DL = MBB.findDebugLoc(MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000164
165 while (Offset) {
166 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
Evan Cheng65089fc2011-01-03 22:53:22 +0000167 if (ThisVal == (Is64Bit ? 8 : 4)) {
168 // Use push / pop instead.
169 unsigned Reg = isSub
Dale Johannesene45a2382011-01-04 19:31:24 +0000170 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
Evan Cheng65089fc2011-01-03 22:53:22 +0000171 : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
172 if (Reg) {
173 Opc = isSub
174 ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
175 : (Is64Bit ? X86::POP64r : X86::POP32r);
Charles Davis7ed40cb2011-06-12 01:45:54 +0000176 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
Evan Cheng65089fc2011-01-03 22:53:22 +0000177 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
Charles Davis7ed40cb2011-06-12 01:45:54 +0000178 if (isSub)
179 MI->setFlag(MachineInstr::FrameSetup);
Evan Cheng65089fc2011-01-03 22:53:22 +0000180 Offset -= ThisVal;
181 continue;
182 }
183 }
184
Craig Topper062a2ba2014-04-25 05:30:21 +0000185 MachineInstr *MI = nullptr;
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000186
187 if (UseLEA) {
188 MI = addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
189 StackPtr, false, isSub ? -ThisVal : ThisVal);
190 } else {
191 MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
192 .addReg(StackPtr)
193 .addImm(ThisVal);
194 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
195 }
196
Charles Davis7ed40cb2011-06-12 01:45:54 +0000197 if (isSub)
198 MI->setFlag(MachineInstr::FrameSetup);
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000199
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000200 Offset -= ThisVal;
201 }
202}
203
204/// mergeSPUpdatesUp - Merge two stack-manipulating instructions upper iterator.
205static
206void mergeSPUpdatesUp(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
Craig Topper062a2ba2014-04-25 05:30:21 +0000207 unsigned StackPtr, uint64_t *NumBytes = nullptr) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000208 if (MBBI == MBB.begin()) return;
209
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000210 MachineBasicBlock::iterator PI = std::prev(MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000211 unsigned Opc = PI->getOpcode();
212 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000213 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
214 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000215 PI->getOperand(0).getReg() == StackPtr) {
216 if (NumBytes)
217 *NumBytes += PI->getOperand(2).getImm();
218 MBB.erase(PI);
219 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
220 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
221 PI->getOperand(0).getReg() == StackPtr) {
222 if (NumBytes)
223 *NumBytes -= PI->getOperand(2).getImm();
224 MBB.erase(PI);
225 }
226}
227
Eric Christopher4237bf12014-04-29 00:16:33 +0000228/// mergeSPUpdatesDown - Merge two stack-manipulating instructions lower
229/// iterator.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000230static
231void mergeSPUpdatesDown(MachineBasicBlock &MBB,
232 MachineBasicBlock::iterator &MBBI,
Craig Topper062a2ba2014-04-25 05:30:21 +0000233 unsigned StackPtr, uint64_t *NumBytes = nullptr) {
Sanjoy Dasf60485c2011-12-01 19:15:08 +0000234 // FIXME: THIS ISN'T RUN!!!
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000235 return;
236
237 if (MBBI == MBB.end()) return;
238
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000239 MachineBasicBlock::iterator NI = std::next(MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000240 if (NI == MBB.end()) return;
241
242 unsigned Opc = NI->getOpcode();
243 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
244 Opc == X86::ADD32ri || Opc == X86::ADD32ri8) &&
245 NI->getOperand(0).getReg() == StackPtr) {
246 if (NumBytes)
247 *NumBytes -= NI->getOperand(2).getImm();
248 MBB.erase(NI);
249 MBBI = NI;
250 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
251 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
252 NI->getOperand(0).getReg() == StackPtr) {
253 if (NumBytes)
254 *NumBytes += NI->getOperand(2).getImm();
255 MBB.erase(NI);
256 MBBI = NI;
257 }
258}
259
260/// mergeSPUpdates - Checks the instruction before/after the passed
Eric Christopher4237bf12014-04-29 00:16:33 +0000261/// instruction. If it is an ADD/SUB/LEA instruction it is deleted argument and
262/// the stack adjustment is returned as a positive value for ADD/LEA and a
263/// negative for SUB.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000264static int mergeSPUpdates(MachineBasicBlock &MBB,
Eric Christopher4237bf12014-04-29 00:16:33 +0000265 MachineBasicBlock::iterator &MBBI, unsigned StackPtr,
266 bool doMergeWithPrevious) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000267 if ((doMergeWithPrevious && MBBI == MBB.begin()) ||
268 (!doMergeWithPrevious && MBBI == MBB.end()))
269 return 0;
270
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000271 MachineBasicBlock::iterator PI = doMergeWithPrevious ? std::prev(MBBI) : MBBI;
Craig Topper062a2ba2014-04-25 05:30:21 +0000272 MachineBasicBlock::iterator NI = doMergeWithPrevious ? nullptr
273 : std::next(MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000274 unsigned Opc = PI->getOpcode();
275 int Offset = 0;
276
277 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000278 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
279 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000280 PI->getOperand(0).getReg() == StackPtr){
281 Offset += PI->getOperand(2).getImm();
282 MBB.erase(PI);
283 if (!doMergeWithPrevious) MBBI = NI;
284 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
285 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
286 PI->getOperand(0).getReg() == StackPtr) {
287 Offset -= PI->getOperand(2).getImm();
288 MBB.erase(PI);
289 if (!doMergeWithPrevious) MBBI = NI;
290 }
291
292 return Offset;
293}
294
295static bool isEAXLiveIn(MachineFunction &MF) {
296 for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
297 EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
298 unsigned Reg = II->first;
299
300 if (Reg == X86::EAX || Reg == X86::AX ||
301 Reg == X86::AH || Reg == X86::AL)
302 return true;
303 }
304
305 return false;
306}
307
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000308void X86FrameLowering::emitCalleeSavedFrameMoves(
309 MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc DL,
310 unsigned FramePtr) const {
311 MachineFunction &MF = *MBB.getParent();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000312 MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000313 MachineModuleInfo &MMI = MF.getMMI();
Bill Wendlingbc07a892013-06-18 07:20:20 +0000314 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Eric Christopher11b05cc2014-06-05 00:09:05 +0000315 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000316
317 // Add callee saved registers to move list.
318 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
319 if (CSI.empty()) return;
320
Eric Christopher11b05cc2014-06-05 00:09:05 +0000321 const X86RegisterInfo *RegInfo =
322 static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo());
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000323 bool HasFP = hasFP(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000324
325 // Calculate amount of bytes used for return address storing.
Michael Liao6d810bd2012-10-25 06:29:14 +0000326 int stackGrowth = -RegInfo->getSlotSize();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000327
328 // FIXME: This is dirty hack. The code itself is pretty mess right now.
329 // It should be rewritten from scratch and generalized sometimes.
330
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000331 // Determine maximum offset (minimum due to stack growth).
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000332 int64_t MaxOffset = 0;
333 for (std::vector<CalleeSavedInfo>::const_iterator
334 I = CSI.begin(), E = CSI.end(); I != E; ++I)
335 MaxOffset = std::min(MaxOffset,
336 MFI->getObjectOffset(I->getFrameIdx()));
337
338 // Calculate offsets.
339 int64_t saveAreaOffset = (HasFP ? 3 : 2) * stackGrowth;
340 for (std::vector<CalleeSavedInfo>::const_iterator
341 I = CSI.begin(), E = CSI.end(); I != E; ++I) {
342 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
343 unsigned Reg = I->getReg();
344 Offset = MaxOffset - Offset + saveAreaOffset;
345
346 // Don't output a new machine move if we're re-saving the frame
347 // pointer. This happens when the PrologEpilogInserter has inserted an extra
348 // "PUSH" of the frame pointer -- the "emitPrologue" method automatically
349 // generates one when frame pointers are used. If we generate a "machine
350 // move" for this extra "PUSH", the linker will lose track of the fact that
351 // the frame pointer should have the value of the first "PUSH" when it's
352 // trying to unwind.
NAKAMURA Takumif7f319d2011-02-05 15:10:54 +0000353 //
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000354 // FIXME: This looks inelegant. It's possibly correct, but it's covering up
355 // another bug. I.e., one where we generate a prolog like this:
356 //
357 // pushl %ebp
358 // movl %esp, %ebp
359 // pushl %ebp
360 // pushl %esi
361 // ...
362 //
363 // The immediate re-push of EBP is unnecessary. At the least, it's an
364 // optimization bug. EBP can be used as a scratch register in certain
365 // cases, but probably not when we have a frame pointer.
366 if (HasFP && FramePtr == Reg)
367 continue;
368
Bill Wendlingbc07a892013-06-18 07:20:20 +0000369 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000370 unsigned CFIIndex =
Craig Topper062a2ba2014-04-25 05:30:21 +0000371 MMI.addFrameInst(MCCFIInstruction::createOffset(nullptr, DwarfReg,
372 Offset));
Eric Christopher612bb692014-04-29 00:16:46 +0000373 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
374 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000375 }
376}
377
Nadav Rotem1bef5a02012-12-23 07:30:09 +0000378/// usesTheStack - This function checks if any of the users of EFLAGS
Nadav Rotemd5aae982012-12-21 23:48:49 +0000379/// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
380/// to use the stack, and if we don't adjust the stack we clobber the first
381/// frame index.
Nadav Rotem1bef5a02012-12-23 07:30:09 +0000382/// See X86InstrInfo::copyPhysReg.
Bill Wendling28519072013-08-15 18:46:14 +0000383static bool usesTheStack(const MachineFunction &MF) {
384 const MachineRegisterInfo &MRI = MF.getRegInfo();
Nadav Rotemd5aae982012-12-21 23:48:49 +0000385
Owen Anderson16c6bf42014-03-13 23:12:04 +0000386 for (MachineRegisterInfo::reg_instr_iterator
387 ri = MRI.reg_instr_begin(X86::EFLAGS), re = MRI.reg_instr_end();
388 ri != re; ++ri)
Nadav Rotemd5aae982012-12-21 23:48:49 +0000389 if (ri->isCopy())
390 return true;
391
392 return false;
393}
394
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000395/// emitPrologue - Push callee-saved registers onto the stack, which
396/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
397/// space for local variables. Also emit labels used by the exception handler to
398/// generate the exception handling frames.
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000399void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000400 MachineBasicBlock &MBB = MF.front(); // Prologue goes in entry BB.
401 MachineBasicBlock::iterator MBBI = MBB.begin();
402 MachineFrameInfo *MFI = MF.getFrameInfo();
403 const Function *Fn = MF.getFunction();
Eric Christopher11b05cc2014-06-05 00:09:05 +0000404 const X86RegisterInfo *RegInfo =
405 static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo());
406 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000407 MachineModuleInfo &MMI = MF.getMMI();
408 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
409 bool needsFrameMoves = MMI.hasDebugInfo() ||
Rafael Espindolafc9bae62011-05-25 03:44:17 +0000410 Fn->needsUnwindTableEntry();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000411 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
412 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000413 bool HasFP = hasFP(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000414 bool Is64Bit = STI.is64Bit();
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000415 bool IsLP64 = STI.isTarget64BitLP64();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000416 bool IsWin64 = STI.isTargetWin64();
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000417 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000418 unsigned StackAlign = getStackAlignment();
419 unsigned SlotSize = RegInfo->getSlotSize();
420 unsigned FramePtr = RegInfo->getFrameRegister(MF);
421 unsigned StackPtr = RegInfo->getStackRegister();
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000422 unsigned BasePtr = RegInfo->getBaseRegister();
Bill Wendlingf27e3312013-09-10 00:20:27 +0000423 DebugLoc DL;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000424
425 // If we're forcing a stack realignment we can't rely on just the frame
426 // info, we need to know the ABI stack alignment as well in case we
427 // have a call out. Otherwise just make sure we have some alignment - we'll
428 // go with the minimum SlotSize.
429 if (ForceStackAlign) {
430 if (MFI->hasCalls())
431 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
432 else if (MaxAlign < SlotSize)
433 MaxAlign = SlotSize;
434 }
435
436 // Add RETADDR move area to callee saved frame size.
437 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
438 if (TailCallReturnAddrDelta < 0)
439 X86FI->setCalleeSavedFrameSize(
440 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
441
442 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
443 // function, and use up to 128 bytes of stack space, don't have a frame
444 // pointer, calls, or dynamic alloca then we do not need to adjust the
Nadav Rotemd5aae982012-12-21 23:48:49 +0000445 // stack pointer (we fit in the Red Zone). We also check that we don't
446 // push and pop from the stack.
Bill Wendling698e84f2012-12-30 10:32:01 +0000447 if (Is64Bit && !Fn->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
448 Attribute::NoRedZone) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000449 !RegInfo->needsStackRealignment(MF) &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000450 !MFI->hasVarSizedObjects() && // No dynamic alloca.
451 !MFI->adjustsStack() && // No calls.
452 !IsWin64 && // Win64 has no Red Zone
Nadav Rotem1bef5a02012-12-23 07:30:09 +0000453 !usesTheStack(MF) && // Don't push and pop.
Reid Kleckner9c658212014-04-10 22:58:43 +0000454 !MF.shouldSplitStack()) { // Regular stack
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000455 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
456 if (HasFP) MinSize += SlotSize;
457 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
458 MFI->setStackSize(StackSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000459 }
460
461 // Insert stack pointer adjustment for later moving of return addr. Only
462 // applies to tail call optimized functions where the callee argument stack
463 // size is bigger than the callers.
464 if (TailCallReturnAddrDelta < 0) {
465 MachineInstr *MI =
466 BuildMI(MBB, MBBI, DL,
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000467 TII.get(getSUBriOpcode(IsLP64, -TailCallReturnAddrDelta)),
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000468 StackPtr)
469 .addReg(StackPtr)
Charles Davis7ed40cb2011-06-12 01:45:54 +0000470 .addImm(-TailCallReturnAddrDelta)
471 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000472 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
473 }
474
475 // Mapping for machine moves:
476 //
477 // DST: VirtualFP AND
478 // SRC: VirtualFP => DW_CFA_def_cfa_offset
479 // ELSE => DW_CFA_def_cfa
480 //
481 // SRC: VirtualFP AND
482 // DST: Register => DW_CFA_def_cfa_register
483 //
484 // ELSE
485 // OFFSET < 0 => DW_CFA_offset_extended_sf
486 // REG < 64 => DW_CFA_offset + Reg
487 // ELSE => DW_CFA_offset_extended
488
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000489 uint64_t NumBytes = 0;
Michael Liao6d810bd2012-10-25 06:29:14 +0000490 int stackGrowth = -SlotSize;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000491
492 if (HasFP) {
493 // Calculate required stack adjustment.
494 uint64_t FrameSize = StackSize - SlotSize;
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000495 if (RegInfo->needsStackRealignment(MF)) {
496 // Callee-saved registers are pushed on stack before the stack
497 // is realigned.
498 FrameSize -= X86FI->getCalleeSavedFrameSize();
499 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
500 } else {
501 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
502 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000503
504 // Get the offset of the stack slot for the EBP register, which is
505 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
506 // Update the frame offset adjustment.
507 MFI->setOffsetAdjustment(-NumBytes);
508
509 // Save EBP/RBP into the appropriate stack slot.
510 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
Charles Davis7ed40cb2011-06-12 01:45:54 +0000511 .addReg(FramePtr, RegState::Kill)
512 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000513
514 if (needsFrameMoves) {
515 // Mark the place where EBP/RBP was saved.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000516 // Define the current CFA rule to use the provided offset.
Rafael Espindola84ee6c42013-05-15 22:27:35 +0000517 assert(StackSize);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000518 unsigned CFIIndex = MMI.addFrameInst(
Craig Topper062a2ba2014-04-25 05:30:21 +0000519 MCCFIInstruction::createDefCfaOffset(nullptr, 2 * stackGrowth));
Eric Christopher612bb692014-04-29 00:16:46 +0000520 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000521 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000522
523 // Change the rule for the FramePtr to be an "offset" rule.
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000524 unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000525 CFIIndex = MMI.addFrameInst(
Craig Topper062a2ba2014-04-25 05:30:21 +0000526 MCCFIInstruction::createOffset(nullptr,
527 DwarfFramePtr, 2 * stackGrowth));
Eric Christopher612bb692014-04-29 00:16:46 +0000528 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000529 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000530 }
531
Bill Wendlingb97270d2011-07-25 18:00:28 +0000532 // Update EBP with the new base value.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000533 BuildMI(MBB, MBBI, DL,
534 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), FramePtr)
Charles Davis7ed40cb2011-06-12 01:45:54 +0000535 .addReg(StackPtr)
536 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000537
538 if (needsFrameMoves) {
539 // Mark effective beginning of when frame pointer becomes valid.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000540 // Define the current CFA to use the EBP/RBP register.
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000541 unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000542 unsigned CFIIndex = MMI.addFrameInst(
Craig Topper062a2ba2014-04-25 05:30:21 +0000543 MCCFIInstruction::createDefCfaRegister(nullptr, DwarfFramePtr));
Eric Christopher612bb692014-04-29 00:16:46 +0000544 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000545 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000546 }
547
548 // Mark the FramePtr as live-in in every block except the entry.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000549 for (MachineFunction::iterator I = std::next(MF.begin()), E = MF.end();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000550 I != E; ++I)
551 I->addLiveIn(FramePtr);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000552 } else {
553 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
554 }
555
556 // Skip the callee-saved push instructions.
557 bool PushedRegs = false;
558 int StackOffset = 2 * stackGrowth;
559
560 while (MBBI != MBB.end() &&
561 (MBBI->getOpcode() == X86::PUSH32r ||
562 MBBI->getOpcode() == X86::PUSH64r)) {
563 PushedRegs = true;
Bill Wendling28b6e122011-07-21 00:44:56 +0000564 MBBI->setFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000565 ++MBBI;
566
567 if (!HasFP && needsFrameMoves) {
568 // Mark callee-saved push instruction.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000569 // Define the current CFA rule to use the provided offset.
Rafael Espindola72421862013-05-16 04:59:17 +0000570 assert(StackSize);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000571 unsigned CFIIndex = MMI.addFrameInst(
572 MCCFIInstruction::createDefCfaOffset(nullptr, StackOffset));
Eric Christopher612bb692014-04-29 00:16:46 +0000573 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000574 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000575 StackOffset += stackGrowth;
576 }
577 }
578
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000579 // Realign stack after we pushed callee-saved registers (so that we'll be
580 // able to calculate their offsets from the frame pointer).
581
582 // NOTE: We push the registers before realigning the stack, so
583 // vector callee-saved (xmm) registers may be saved w/o proper
584 // alignment in this way. However, currently these regs are saved in
585 // stack slots (see X86FrameLowering::spillCalleeSavedRegisters()), so
586 // this shouldn't be a problem.
587 if (RegInfo->needsStackRealignment(MF)) {
588 assert(HasFP && "There should be a frame pointer if stack is realigned.");
589 MachineInstr *MI =
590 BuildMI(MBB, MBBI, DL,
591 TII.get(Is64Bit ? X86::AND64ri32 : X86::AND32ri), StackPtr)
592 .addReg(StackPtr)
593 .addImm(-MaxAlign)
594 .setMIFlag(MachineInstr::FrameSetup);
595
596 // The EFLAGS implicit def is dead.
597 MI->getOperand(3).setIsDead();
598 }
599
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000600 // If there is an SUB32ri of ESP immediately before this instruction, merge
601 // the two. This can be the case when tail call elimination is enabled and
602 // the callee has more arguments then the caller.
603 NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true);
604
605 // If there is an ADD32ri or SUB32ri of ESP immediately after this
606 // instruction, merge the two instructions.
607 mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes);
608
609 // Adjust stack pointer: ESP -= numbytes.
610
611 // Windows and cygwin/mingw require a prologue helper routine when allocating
612 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
613 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
614 // stack and adjust the stack pointer in one go. The 64-bit version of
615 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
616 // responsible for adjusting the stack pointer. Touching the stack at 4K
617 // increments is necessary to ensure that the guard pages used by the OS
618 // virtual memory manager are allocated in correct sequence.
Tim Northover9653eb52013-12-10 16:57:43 +0000619 if (NumBytes >= 4096 && STI.isOSWindows() && !STI.isTargetMacho()) {
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000620 const char *StackProbeSymbol;
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000621
622 if (Is64Bit) {
Kai Nacke87b23ae2013-12-13 05:37:05 +0000623 if (STI.isTargetCygMing()) {
624 StackProbeSymbol = "___chkstk_ms";
625 } else {
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000626 StackProbeSymbol = "__chkstk";
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000627 }
628 } else if (STI.isTargetCygMing())
629 StackProbeSymbol = "_alloca";
630 else
631 StackProbeSymbol = "_chkstk";
632
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000633 // Check whether EAX is livein for this function.
634 bool isEAXAlive = isEAXLiveIn(MF);
635
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000636 if (isEAXAlive) {
637 // Sanity check that EAX is not livein for this function.
638 // It should not be, so throw an assert.
639 assert(!Is64Bit && "EAX is livein in x64 case!");
640
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000641 // Save EAX
642 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
Bill Wendling28b6e122011-07-21 00:44:56 +0000643 .addReg(X86::EAX, RegState::Kill)
644 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000645 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000646
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000647 if (Is64Bit) {
648 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
649 // Function prologue is responsible for adjusting the stack pointer.
650 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
Bill Wendling28b6e122011-07-21 00:44:56 +0000651 .addImm(NumBytes)
652 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000653 } else {
654 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
655 // We'll also use 4 already allocated bytes for EAX.
656 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
Bill Wendling28b6e122011-07-21 00:44:56 +0000657 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
658 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000659 }
660
661 BuildMI(MBB, MBBI, DL,
662 TII.get(Is64Bit ? X86::W64ALLOCA : X86::CALLpcrel32))
663 .addExternalSymbol(StackProbeSymbol)
664 .addReg(StackPtr, RegState::Define | RegState::Implicit)
Bill Wendling28b6e122011-07-21 00:44:56 +0000665 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit)
666 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000667
Kai Nacke87b23ae2013-12-13 05:37:05 +0000668 if (Is64Bit) {
669 // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
670 // themself. It also does not clobber %rax so we can reuse it when
671 // adjusting %rsp.
Nico Rieck51969be2013-07-08 11:20:11 +0000672 BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), StackPtr)
673 .addReg(StackPtr)
674 .addReg(X86::RAX)
675 .setMIFlag(MachineInstr::FrameSetup);
676 }
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000677 if (isEAXAlive) {
678 // Restore EAX
679 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
680 X86::EAX),
681 StackPtr, false, NumBytes - 4);
Bill Wendling28b6e122011-07-21 00:44:56 +0000682 MI->setFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000683 MBB.insert(MBBI, MI);
684 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000685 } else if (NumBytes)
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000686 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
Eric Christopherf4fba5c2012-10-03 08:10:01 +0000687 UseLEA, TII, *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000688
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000689 // If we need a base pointer, set it up here. It's whatever the value
690 // of the stack pointer is at this point. Any variable size objects
691 // will be allocated after this, so we can still use the base pointer
692 // to reference locals.
693 if (RegInfo->hasBasePointer(MF)) {
694 // Update the frame pointer with the current stack pointer.
695 unsigned Opc = Is64Bit ? X86::MOV64rr : X86::MOV32rr;
696 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
697 .addReg(StackPtr)
698 .setMIFlag(MachineInstr::FrameSetup);
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000699 }
700
Rafael Espindolaa01cdb02011-04-15 15:11:06 +0000701 if (( (!HasFP && NumBytes) || PushedRegs) && needsFrameMoves) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000702 // Mark end of stack pointer adjustment.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000703 if (!HasFP && NumBytes) {
704 // Define the current CFA rule to use the provided offset.
Rafael Espindola84ee6c42013-05-15 22:27:35 +0000705 assert(StackSize);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000706 unsigned CFIIndex = MMI.addFrameInst(
Craig Topper062a2ba2014-04-25 05:30:21 +0000707 MCCFIInstruction::createDefCfaOffset(nullptr,
708 -StackSize + stackGrowth));
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000709
Eric Christopher612bb692014-04-29 00:16:46 +0000710 BuildMI(MBB, MBBI, DL, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000711 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000712 }
713
714 // Emit DWARF info specifying the offsets of the callee-saved registers.
715 if (PushedRegs)
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000716 emitCalleeSavedFrameMoves(MBB, MBBI, DL, HasFP ? FramePtr : StackPtr);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000717 }
718}
719
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000720void X86FrameLowering::emitEpilogue(MachineFunction &MF,
Nick Lewycky34a425b2011-06-14 03:23:52 +0000721 MachineBasicBlock &MBB) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000722 const MachineFrameInfo *MFI = MF.getFrameInfo();
723 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Eric Christopher11b05cc2014-06-05 00:09:05 +0000724 const X86RegisterInfo *RegInfo =
725 static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo());
726 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000727 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
728 assert(MBBI != MBB.end() && "Returning block has no instructions");
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000729 unsigned RetOpcode = MBBI->getOpcode();
730 DebugLoc DL = MBBI->getDebugLoc();
731 bool Is64Bit = STI.is64Bit();
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000732 bool IsLP64 = STI.isTarget64BitLP64();
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000733 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000734 unsigned StackAlign = getStackAlignment();
735 unsigned SlotSize = RegInfo->getSlotSize();
736 unsigned FramePtr = RegInfo->getFrameRegister(MF);
737 unsigned StackPtr = RegInfo->getStackRegister();
738
739 switch (RetOpcode) {
740 default:
741 llvm_unreachable("Can only insert epilog into returning blocks");
David Woodhouse79dd5052014-01-08 12:58:07 +0000742 case X86::RETQ:
743 case X86::RETL:
David Woodhouse4e033b02014-01-13 14:05:59 +0000744 case X86::RETIL:
745 case X86::RETIQ:
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000746 case X86::TCRETURNdi:
747 case X86::TCRETURNri:
748 case X86::TCRETURNmi:
749 case X86::TCRETURNdi64:
750 case X86::TCRETURNri64:
751 case X86::TCRETURNmi64:
752 case X86::EH_RETURN:
753 case X86::EH_RETURN64:
754 break; // These are ok
755 }
756
757 // Get the number of bytes to allocate from the FrameInfo.
758 uint64_t StackSize = MFI->getStackSize();
759 uint64_t MaxAlign = MFI->getMaxAlignment();
760 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
761 uint64_t NumBytes = 0;
762
763 // If we're forcing a stack realignment we can't rely on just the frame
764 // info, we need to know the ABI stack alignment as well in case we
765 // have a call out. Otherwise just make sure we have some alignment - we'll
766 // go with the minimum.
767 if (ForceStackAlign) {
768 if (MFI->hasCalls())
769 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
770 else
771 MaxAlign = MaxAlign ? MaxAlign : 4;
772 }
773
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000774 if (hasFP(MF)) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000775 // Calculate required stack adjustment.
776 uint64_t FrameSize = StackSize - SlotSize;
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000777 if (RegInfo->needsStackRealignment(MF)) {
778 // Callee-saved registers were pushed on stack before the stack
779 // was realigned.
780 FrameSize -= CSSize;
781 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
782 } else {
783 NumBytes = FrameSize - CSSize;
784 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000785
786 // Pop EBP.
787 BuildMI(MBB, MBBI, DL,
788 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), FramePtr);
789 } else {
790 NumBytes = StackSize - CSSize;
791 }
792
793 // Skip the callee-saved pop instructions.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000794 while (MBBI != MBB.begin()) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000795 MachineBasicBlock::iterator PI = std::prev(MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000796 unsigned Opc = PI->getOpcode();
797
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000798 if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000799 !PI->isTerminator())
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000800 break;
801
802 --MBBI;
803 }
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000804 MachineBasicBlock::iterator FirstCSPop = MBBI;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000805
806 DL = MBBI->getDebugLoc();
807
808 // If there is an ADD32ri or SUB32ri of ESP immediately before this
809 // instruction, merge the two instructions.
810 if (NumBytes || MFI->hasVarSizedObjects())
811 mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
812
813 // If dynamic alloca is used, then reset esp to point to the last callee-saved
814 // slot before popping them off! Same applies for the case, when stack was
815 // realigned.
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000816 if (RegInfo->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) {
817 if (RegInfo->needsStackRealignment(MF))
818 MBBI = FirstCSPop;
819 if (CSSize != 0) {
Eli Benderskyef4558a2013-02-06 20:43:57 +0000820 unsigned Opc = getLEArOpcode(IsLP64);
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000821 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
822 FramePtr, false, -CSSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000823 } else {
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000824 unsigned Opc = (Is64Bit ? X86::MOV64rr : X86::MOV32rr);
825 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000826 .addReg(FramePtr);
827 }
828 } else if (NumBytes) {
829 // Adjust stack pointer back: ESP += numbytes.
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000830 emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, IsLP64, UseLEA,
831 TII, *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000832 }
833
834 // We're returning from function via eh_return.
835 if (RetOpcode == X86::EH_RETURN || RetOpcode == X86::EH_RETURN64) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000836 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000837 MachineOperand &DestAddr = MBBI->getOperand(0);
838 assert(DestAddr.isReg() && "Offset should be in register!");
839 BuildMI(MBB, MBBI, DL,
840 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
841 StackPtr).addReg(DestAddr.getReg());
842 } else if (RetOpcode == X86::TCRETURNri || RetOpcode == X86::TCRETURNdi ||
843 RetOpcode == X86::TCRETURNmi ||
844 RetOpcode == X86::TCRETURNri64 || RetOpcode == X86::TCRETURNdi64 ||
845 RetOpcode == X86::TCRETURNmi64) {
846 bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64;
847 // Tail call return: adjust the stack pointer and jump to callee.
Jakob Stoklund Olesenbbb1a542011-01-13 22:47:43 +0000848 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000849 MachineOperand &JumpTarget = MBBI->getOperand(0);
850 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
851 assert(StackAdjust.isImm() && "Expecting immediate value.");
852
853 // Adjust stack pointer.
854 int StackAdj = StackAdjust.getImm();
855 int MaxTCDelta = X86FI->getTCReturnAddrDelta();
856 int Offset = 0;
857 assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
858
859 // Incoporate the retaddr area.
860 Offset = StackAdj-MaxTCDelta;
861 assert(Offset >= 0 && "Offset should never be negative");
862
863 if (Offset) {
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000864 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000865 Offset += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000866 emitSPUpdate(MBB, MBBI, StackPtr, Offset, Is64Bit, IsLP64,
867 UseLEA, TII, *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000868 }
869
870 // Jump to label or value in register.
871 if (RetOpcode == X86::TCRETURNdi || RetOpcode == X86::TCRETURNdi64) {
Evan Chengd4b08732010-11-30 23:55:39 +0000872 MachineInstrBuilder MIB =
873 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNdi)
874 ? X86::TAILJMPd : X86::TAILJMPd64));
875 if (JumpTarget.isGlobal())
876 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
877 JumpTarget.getTargetFlags());
878 else {
879 assert(JumpTarget.isSymbol());
880 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
881 JumpTarget.getTargetFlags());
882 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000883 } else if (RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64) {
884 MachineInstrBuilder MIB =
885 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNmi)
886 ? X86::TAILJMPm : X86::TAILJMPm64));
887 for (unsigned i = 0; i != 5; ++i)
888 MIB.addOperand(MBBI->getOperand(i));
889 } else if (RetOpcode == X86::TCRETURNri64) {
890 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr64)).
891 addReg(JumpTarget.getReg(), RegState::Kill);
892 } else {
893 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr)).
894 addReg(JumpTarget.getReg(), RegState::Kill);
895 }
896
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000897 MachineInstr *NewMI = std::prev(MBBI);
Jakob Stoklund Olesen33f5d142012-12-20 22:54:02 +0000898 NewMI->copyImplicitOps(MF, MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000899
900 // Delete the pseudo instruction TCRETURN.
901 MBB.erase(MBBI);
David Woodhouse4e033b02014-01-13 14:05:59 +0000902 } else if ((RetOpcode == X86::RETQ || RetOpcode == X86::RETL ||
903 RetOpcode == X86::RETIQ || RetOpcode == X86::RETIL) &&
904 (X86FI->getTCReturnAddrDelta() < 0)) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000905 // Add the return addr area delta back since we are not tail calling.
906 int delta = -1*X86FI->getTCReturnAddrDelta();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000907 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000908
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000909 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000910 delta += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000911 emitSPUpdate(MBB, MBBI, StackPtr, delta, Is64Bit, IsLP64, UseLEA, TII,
912 *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000913 }
914}
Anton Korobeynikov14ee3442010-11-18 23:25:52 +0000915
Eric Christopher4237bf12014-04-29 00:16:33 +0000916int X86FrameLowering::getFrameIndexOffset(const MachineFunction &MF,
917 int FI) const {
Chad Rosier20b79dc2012-05-23 23:45:10 +0000918 const X86RegisterInfo *RegInfo =
Anton Korobeynikov46877782010-11-20 15:59:32 +0000919 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
920 const MachineFrameInfo *MFI = MF.getFrameInfo();
921 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
922 uint64_t StackSize = MFI->getStackSize();
923
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000924 if (RegInfo->hasBasePointer(MF)) {
925 assert (hasFP(MF) && "VLAs and dynamic stack realign, but no FP?!");
926 if (FI < 0) {
927 // Skip the saved EBP.
928 return Offset + RegInfo->getSlotSize();
929 } else {
930 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
931 return Offset + StackSize;
932 }
933 } else if (RegInfo->needsStackRealignment(MF)) {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000934 if (FI < 0) {
935 // Skip the saved EBP.
Chad Rosier20b79dc2012-05-23 23:45:10 +0000936 return Offset + RegInfo->getSlotSize();
Anton Korobeynikov46877782010-11-20 15:59:32 +0000937 } else {
Duncan Sandsd278d352011-10-18 12:44:00 +0000938 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
Anton Korobeynikov46877782010-11-20 15:59:32 +0000939 return Offset + StackSize;
940 }
941 // FIXME: Support tail calls
942 } else {
943 if (!hasFP(MF))
944 return Offset + StackSize;
945
946 // Skip the saved EBP.
Chad Rosier20b79dc2012-05-23 23:45:10 +0000947 Offset += RegInfo->getSlotSize();
Anton Korobeynikov46877782010-11-20 15:59:32 +0000948
949 // Skip the RETADDR move area
950 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
951 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
952 if (TailCallReturnAddrDelta < 0)
953 Offset -= TailCallReturnAddrDelta;
954 }
955
956 return Offset;
957}
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000958
Alexey Samsonovc4b3ad82012-05-01 15:16:06 +0000959int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
960 unsigned &FrameReg) const {
Chad Rosier20b79dc2012-05-23 23:45:10 +0000961 const X86RegisterInfo *RegInfo =
Alexey Samsonovc4b3ad82012-05-01 15:16:06 +0000962 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
963 // We can't calculate offset from frame pointer if the stack is realigned,
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000964 // so enforce usage of stack/base pointer. The base pointer is used when we
965 // have dynamic allocas in addition to dynamic realignment.
966 if (RegInfo->hasBasePointer(MF))
967 FrameReg = RegInfo->getBaseRegister();
968 else if (RegInfo->needsStackRealignment(MF))
969 FrameReg = RegInfo->getStackRegister();
970 else
971 FrameReg = RegInfo->getFrameRegister(MF);
Alexey Samsonovc4b3ad82012-05-01 15:16:06 +0000972 return getFrameIndexOffset(MF, FI);
973}
974
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000975bool X86FrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000976 MachineBasicBlock::iterator MI,
977 const std::vector<CalleeSavedInfo> &CSI,
978 const TargetRegisterInfo *TRI) const {
979 if (CSI.empty())
980 return false;
981
982 DebugLoc DL = MBB.findDebugLoc(MI);
983
984 MachineFunction &MF = *MBB.getParent();
Eric Christopher21a5e5c2014-06-05 00:22:13 +0000985 const X86RegisterInfo *RegInfo =
986 static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo());
987 unsigned SlotSize = RegInfo->getSlotSize();
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000988 unsigned FPReg = TRI->getFrameRegister(MF);
989 unsigned CalleeFrameSize = 0;
990
991 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
992 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
993
NAKAMURA Takumid4e50032011-02-27 08:47:19 +0000994 // Push GPRs. It increases frame size.
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000995 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
996 for (unsigned i = CSI.size(); i != 0; --i) {
997 unsigned Reg = CSI[i-1].getReg();
NAKAMURA Takumid4e50032011-02-27 08:47:19 +0000998 if (!X86::GR64RegClass.contains(Reg) &&
999 !X86::GR32RegClass.contains(Reg))
1000 continue;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001001 // Add the callee-saved register as live-in. It's killed at the spill.
1002 MBB.addLiveIn(Reg);
1003 if (Reg == FPReg)
1004 // X86RegisterInfo::emitPrologue will handle spilling of frame register.
1005 continue;
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001006 CalleeFrameSize += SlotSize;
Charles Davis7ed40cb2011-06-12 01:45:54 +00001007 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1008 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001009 }
1010
1011 X86FI->setCalleeSavedFrameSize(CalleeFrameSize);
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001012
1013 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1014 // It can be done by spilling XMMs to stack frame.
1015 // Note that only Win64 ABI might spill XMMs.
1016 for (unsigned i = CSI.size(); i != 0; --i) {
1017 unsigned Reg = CSI[i-1].getReg();
1018 if (X86::GR64RegClass.contains(Reg) ||
1019 X86::GR32RegClass.contains(Reg))
1020 continue;
1021 // Add the callee-saved register as live-in. It's killed at the spill.
1022 MBB.addLiveIn(Reg);
1023 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1024 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i-1].getFrameIdx(),
1025 RC, TRI);
1026 }
1027
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001028 return true;
1029}
1030
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001031bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001032 MachineBasicBlock::iterator MI,
1033 const std::vector<CalleeSavedInfo> &CSI,
1034 const TargetRegisterInfo *TRI) const {
1035 if (CSI.empty())
1036 return false;
1037
1038 DebugLoc DL = MBB.findDebugLoc(MI);
1039
1040 MachineFunction &MF = *MBB.getParent();
1041 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001042
1043 // Reload XMMs from stack frame.
1044 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1045 unsigned Reg = CSI[i].getReg();
1046 if (X86::GR64RegClass.contains(Reg) ||
1047 X86::GR32RegClass.contains(Reg))
1048 continue;
1049 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1050 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(),
1051 RC, TRI);
1052 }
1053
1054 // POP GPRs.
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001055 unsigned FPReg = TRI->getFrameRegister(MF);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001056 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1057 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1058 unsigned Reg = CSI[i].getReg();
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001059 if (!X86::GR64RegClass.contains(Reg) &&
1060 !X86::GR32RegClass.contains(Reg))
1061 continue;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001062 if (Reg == FPReg)
1063 // X86RegisterInfo::emitEpilogue will handle restoring of frame register.
1064 continue;
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001065 BuildMI(MBB, MI, DL, TII.get(Opc), Reg);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001066 }
1067 return true;
1068}
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001069
1070void
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001071X86FrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Eric Christopher11b05cc2014-06-05 00:09:05 +00001072 RegScavenger *RS) const {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001073 MachineFrameInfo *MFI = MF.getFrameInfo();
Eric Christopher11b05cc2014-06-05 00:09:05 +00001074 const X86RegisterInfo *RegInfo =
1075 static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001076 unsigned SlotSize = RegInfo->getSlotSize();
1077
1078 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Tim Northoverecc018c2013-08-04 09:35:57 +00001079 int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001080
1081 if (TailCallReturnAddrDelta < 0) {
1082 // create RETURNADDR area
1083 // arg
1084 // arg
1085 // RETADDR
1086 // { ...
1087 // RETADDR area
1088 // ...
1089 // }
1090 // [EBP]
1091 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
Tim Northoverecc018c2013-08-04 09:35:57 +00001092 TailCallReturnAddrDelta - SlotSize, true);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001093 }
1094
1095 if (hasFP(MF)) {
1096 assert((TailCallReturnAddrDelta <= 0) &&
1097 "The Delta should always be zero or negative");
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001098 const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001099
1100 // Create a frame entry for the EBP register that must be saved.
1101 int FrameIdx = MFI->CreateFixedObject(SlotSize,
1102 -(int)SlotSize +
1103 TFI.getOffsetOfLocalArea() +
1104 TailCallReturnAddrDelta,
1105 true);
1106 assert(FrameIdx == MFI->getObjectIndexBegin() &&
1107 "Slot for EBP register must be last in order to be found!");
Duncan Sandsd278d352011-10-18 12:44:00 +00001108 (void)FrameIdx;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001109 }
Chad Rosierbdb08ac2012-07-10 17:45:53 +00001110
1111 // Spill the BasePtr if it's used.
1112 if (RegInfo->hasBasePointer(MF))
1113 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001114}
Rafael Espindolac2174212011-08-30 19:39:58 +00001115
1116static bool
1117HasNestArgument(const MachineFunction *MF) {
1118 const Function *F = MF->getFunction();
1119 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1120 I != E; I++) {
1121 if (I->hasNestAttr())
1122 return true;
1123 }
1124 return false;
1125}
1126
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001127/// GetScratchRegister - Get a temp register for performing work in the
1128/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1129/// and the properties of the function either one or two registers will be
1130/// needed. Set primary to true for the first register, false for the second.
Rafael Espindolac2174212011-08-30 19:39:58 +00001131static unsigned
Rafael Espindolad90466b2012-01-11 19:00:37 +00001132GetScratchRegister(bool Is64Bit, const MachineFunction &MF, bool Primary) {
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001133 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1134
1135 // Erlang stuff.
1136 if (CallingConvention == CallingConv::HiPE) {
1137 if (Is64Bit)
1138 return Primary ? X86::R14 : X86::R13;
1139 else
1140 return Primary ? X86::EBX : X86::EDI;
1141 }
1142
David Blaikie46a9f012012-01-20 21:51:11 +00001143 if (Is64Bit)
Rafael Espindolad90466b2012-01-11 19:00:37 +00001144 return Primary ? X86::R11 : X86::R12;
Rafael Espindolac2174212011-08-30 19:39:58 +00001145
David Blaikie46a9f012012-01-20 21:51:11 +00001146 bool IsNested = HasNestArgument(&MF);
1147
1148 if (CallingConvention == CallingConv::X86_FastCall ||
1149 CallingConvention == CallingConv::Fast) {
1150 if (IsNested)
1151 report_fatal_error("Segmented stacks does not support fastcall with "
1152 "nested function.");
1153 return Primary ? X86::EAX : X86::ECX;
Rafael Espindolac2174212011-08-30 19:39:58 +00001154 }
David Blaikie46a9f012012-01-20 21:51:11 +00001155 if (IsNested)
1156 return Primary ? X86::EDX : X86::EAX;
1157 return Primary ? X86::ECX : X86::EAX;
Rafael Espindolac2174212011-08-30 19:39:58 +00001158}
1159
Sanjoy Das006e43b2011-12-03 09:32:07 +00001160// The stack limit in the TCB is set to this many bytes above the actual stack
1161// limit.
1162static const uint64_t kSplitStackAvailable = 256;
1163
Rafael Espindolac2174212011-08-30 19:39:58 +00001164void
1165X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
1166 MachineBasicBlock &prologueMBB = MF.front();
1167 MachineFrameInfo *MFI = MF.getFrameInfo();
Eric Christopher11b05cc2014-06-05 00:09:05 +00001168 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Rafael Espindolac2174212011-08-30 19:39:58 +00001169 uint64_t StackSize;
1170 bool Is64Bit = STI.is64Bit();
1171 unsigned TlsReg, TlsOffset;
1172 DebugLoc DL;
Rafael Espindolac2174212011-08-30 19:39:58 +00001173
Rafael Espindolad90466b2012-01-11 19:00:37 +00001174 unsigned ScratchReg = GetScratchRegister(Is64Bit, MF, true);
Rafael Espindolac2174212011-08-30 19:39:58 +00001175 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1176 "Scratch register is live-in");
1177
1178 if (MF.getFunction()->isVarArg())
1179 report_fatal_error("Segmented stacks do not support vararg functions.");
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001180 if (!STI.isTargetLinux() && !STI.isTargetDarwin() &&
Reid Kleckner10110272014-04-01 18:34:21 +00001181 !STI.isTargetWin32() && !STI.isTargetWin64() && !STI.isTargetFreeBSD())
Rafael Espindola00e861e2012-01-12 20:24:30 +00001182 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindolac2174212011-08-30 19:39:58 +00001183
Tim Northoverf9e798b2014-05-22 13:03:43 +00001184 // Eventually StackSize will be calculated by a link-time pass; which will
1185 // also decide whether checking code needs to be injected into this particular
1186 // prologue.
1187 StackSize = MFI->getStackSize();
1188
1189 // Do not generate a prologue for functions with a stack of size zero
1190 if (StackSize == 0)
1191 return;
1192
Rafael Espindolac2174212011-08-30 19:39:58 +00001193 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1194 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1195 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1196 bool IsNested = false;
1197
1198 // We need to know if the function has a nest argument only in 64 bit mode.
1199 if (Is64Bit)
1200 IsNested = HasNestArgument(&MF);
1201
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001202 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1203 // allocMBB needs to be last (terminating) instruction.
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001204
Rafael Espindolac2174212011-08-30 19:39:58 +00001205 for (MachineBasicBlock::livein_iterator i = prologueMBB.livein_begin(),
1206 e = prologueMBB.livein_end(); i != e; i++) {
1207 allocMBB->addLiveIn(*i);
1208 checkMBB->addLiveIn(*i);
1209 }
1210
1211 if (IsNested)
Rafael Espindola66393c12011-10-26 21:12:27 +00001212 allocMBB->addLiveIn(X86::R10);
1213
Rafael Espindolac2174212011-08-30 19:39:58 +00001214 MF.push_front(allocMBB);
1215 MF.push_front(checkMBB);
1216
Rafael Espindolad90466b2012-01-11 19:00:37 +00001217 // When the frame size is less than 256 we just compare the stack
1218 // boundary directly to the value of the stack pointer, per gcc.
1219 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1220
Rafael Espindolac2174212011-08-30 19:39:58 +00001221 // Read the limit off the current stacklet off the stack_guard location.
1222 if (Is64Bit) {
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001223 if (STI.isTargetLinux()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001224 TlsReg = X86::FS;
1225 TlsOffset = 0x70;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001226 } else if (STI.isTargetDarwin()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001227 TlsReg = X86::GS;
1228 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
Reid Kleckner10110272014-04-01 18:34:21 +00001229 } else if (STI.isTargetWin64()) {
1230 TlsReg = X86::GS;
1231 TlsOffset = 0x28; // pvArbitrary, reserved for application use
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001232 } else if (STI.isTargetFreeBSD()) {
Rafael Espindola00e861e2012-01-12 20:24:30 +00001233 TlsReg = X86::FS;
1234 TlsOffset = 0x18;
Rafael Espindola10745d32012-01-12 20:22:08 +00001235 } else {
1236 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindolad90466b2012-01-11 19:00:37 +00001237 }
Rafael Espindolac2174212011-08-30 19:39:58 +00001238
Rafael Espindolad90466b2012-01-11 19:00:37 +00001239 if (CompareStackPointer)
Sanjoy Das006e43b2011-12-03 09:32:07 +00001240 ScratchReg = X86::RSP;
1241 else
1242 BuildMI(checkMBB, DL, TII.get(X86::LEA64r), ScratchReg).addReg(X86::RSP)
Rafael Espindola6635ae12012-01-11 18:14:03 +00001243 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das006e43b2011-12-03 09:32:07 +00001244
Rafael Espindolac2174212011-08-30 19:39:58 +00001245 BuildMI(checkMBB, DL, TII.get(X86::CMP64rm)).addReg(ScratchReg)
Rafael Espindola6635ae12012-01-11 18:14:03 +00001246 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Rafael Espindolac2174212011-08-30 19:39:58 +00001247 } else {
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001248 if (STI.isTargetLinux()) {
Rafael Espindola10745d32012-01-12 20:22:08 +00001249 TlsReg = X86::GS;
1250 TlsOffset = 0x30;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001251 } else if (STI.isTargetDarwin()) {
Rafael Espindola10745d32012-01-12 20:22:08 +00001252 TlsReg = X86::GS;
1253 TlsOffset = 0x48 + 90*4;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001254 } else if (STI.isTargetWin32()) {
Rafael Espindola10745d32012-01-12 20:22:08 +00001255 TlsReg = X86::FS;
1256 TlsOffset = 0x14; // pvArbitrary, reserved for application use
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001257 } else if (STI.isTargetFreeBSD()) {
Rafael Espindola00e861e2012-01-12 20:24:30 +00001258 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
Rafael Espindola10745d32012-01-12 20:22:08 +00001259 } else {
1260 report_fatal_error("Segmented stacks not supported on this platform.");
1261 }
Rafael Espindolac2174212011-08-30 19:39:58 +00001262
Rafael Espindolad90466b2012-01-11 19:00:37 +00001263 if (CompareStackPointer)
Sanjoy Das006e43b2011-12-03 09:32:07 +00001264 ScratchReg = X86::ESP;
1265 else
1266 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
Rafael Espindola6635ae12012-01-11 18:14:03 +00001267 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das006e43b2011-12-03 09:32:07 +00001268
Reid Kleckner10110272014-04-01 18:34:21 +00001269 if (STI.isTargetLinux() || STI.isTargetWin32() || STI.isTargetWin64()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001270 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1271 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001272 } else if (STI.isTargetDarwin()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001273
Eric Christopher4237bf12014-04-29 00:16:33 +00001274 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register.
Rafael Espindolad90466b2012-01-11 19:00:37 +00001275 unsigned ScratchReg2;
1276 bool SaveScratch2;
1277 if (CompareStackPointer) {
Eric Christopher4237bf12014-04-29 00:16:33 +00001278 // The primary scratch register is available for holding the TLS offset.
Rafael Espindolad90466b2012-01-11 19:00:37 +00001279 ScratchReg2 = GetScratchRegister(Is64Bit, MF, true);
1280 SaveScratch2 = false;
1281 } else {
1282 // Need to use a second register to hold the TLS offset
1283 ScratchReg2 = GetScratchRegister(Is64Bit, MF, false);
1284
Eric Christopher4237bf12014-04-29 00:16:33 +00001285 // Unfortunately, with fastcc the second scratch register may hold an
1286 // argument.
Rafael Espindolad90466b2012-01-11 19:00:37 +00001287 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1288 }
1289
Eric Christopher4237bf12014-04-29 00:16:33 +00001290 // If Scratch2 is live-in then it needs to be saved.
Rafael Espindolad90466b2012-01-11 19:00:37 +00001291 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1292 "Scratch register is live-in and not saved");
1293
1294 if (SaveScratch2)
1295 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1296 .addReg(ScratchReg2, RegState::Kill);
1297
1298 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1299 .addImm(TlsOffset);
1300 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1301 .addReg(ScratchReg)
1302 .addReg(ScratchReg2).addImm(1).addReg(0)
1303 .addImm(0)
1304 .addReg(TlsReg);
1305
1306 if (SaveScratch2)
1307 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1308 }
Rafael Espindolac2174212011-08-30 19:39:58 +00001309 }
1310
1311 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1312 // It jumps to normal execution of the function body.
Rafael Espindola2b894482012-01-11 18:23:35 +00001313 BuildMI(checkMBB, DL, TII.get(X86::JA_4)).addMBB(&prologueMBB);
Rafael Espindolac2174212011-08-30 19:39:58 +00001314
1315 // On 32 bit we first push the arguments size and then the frame size. On 64
1316 // bit, we pass the stack frame size in r10 and the argument size in r11.
1317 if (Is64Bit) {
1318 // Functions with nested arguments use R10, so it needs to be saved across
1319 // the call to _morestack
1320
1321 if (IsNested)
1322 BuildMI(allocMBB, DL, TII.get(X86::MOV64rr), X86::RAX).addReg(X86::R10);
1323
1324 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R10)
1325 .addImm(StackSize);
1326 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R11)
1327 .addImm(X86FI->getArgumentStackSize());
1328 MF.getRegInfo().setPhysRegUsed(X86::R10);
1329 MF.getRegInfo().setPhysRegUsed(X86::R11);
1330 } else {
Rafael Espindolac2174212011-08-30 19:39:58 +00001331 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1332 .addImm(X86FI->getArgumentStackSize());
1333 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1334 .addImm(StackSize);
1335 }
1336
1337 // __morestack is in libgcc
1338 if (Is64Bit)
1339 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1340 .addExternalSymbol("__morestack");
1341 else
1342 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1343 .addExternalSymbol("__morestack");
1344
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001345 if (IsNested)
Rafael Espindola66393c12011-10-26 21:12:27 +00001346 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1347 else
1348 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001349
Rafael Espindola66393c12011-10-26 21:12:27 +00001350 allocMBB->addSuccessor(&prologueMBB);
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001351
Rafael Espindolac2174212011-08-30 19:39:58 +00001352 checkMBB->addSuccessor(allocMBB);
1353 checkMBB->addSuccessor(&prologueMBB);
1354
Jakob Stoklund Olesen55cf2ed2011-09-24 01:11:19 +00001355#ifdef XDEBUG
Rafael Espindolac2174212011-08-30 19:39:58 +00001356 MF.verify();
1357#endif
1358}
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001359
Yiannis Tsiourisd4842e52013-02-28 16:59:10 +00001360/// Erlang programs may need a special prologue to handle the stack size they
1361/// might need at runtime. That is because Erlang/OTP does not implement a C
1362/// stack but uses a custom implementation of hybrid stack/heap architecture.
1363/// (for more information see Eric Stenman's Ph.D. thesis:
1364/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1365///
1366/// CheckStack:
Eric Christopher4237bf12014-04-29 00:16:33 +00001367/// temp0 = sp - MaxStack
1368/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Yiannis Tsiourisd4842e52013-02-28 16:59:10 +00001369/// OldStart:
Eric Christopher4237bf12014-04-29 00:16:33 +00001370/// ...
Yiannis Tsiourisd4842e52013-02-28 16:59:10 +00001371/// IncStack:
Eric Christopher4237bf12014-04-29 00:16:33 +00001372/// call inc_stack # doubles the stack space
1373/// temp0 = sp - MaxStack
1374/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001375void X86FrameLowering::adjustForHiPEPrologue(MachineFunction &MF) const {
Eric Christopher11b05cc2014-06-05 00:09:05 +00001376 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001377 MachineFrameInfo *MFI = MF.getFrameInfo();
Eric Christopher11b05cc2014-06-05 00:09:05 +00001378 const unsigned SlotSize =
1379 static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo())
1380 ->getSlotSize();
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001381 const bool Is64Bit = STI.is64Bit();
1382 DebugLoc DL;
1383 // HiPE-specific values
1384 const unsigned HipeLeafWords = 24;
1385 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1386 const unsigned Guaranteed = HipeLeafWords * SlotSize;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001387 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1388 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1389 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001390
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001391 assert(STI.isTargetLinux() &&
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001392 "HiPE prologue is only supported on Linux operating systems.");
1393
1394 // Compute the largest caller's frame that is needed to fit the callees'
1395 // frames. This 'MaxStack' is computed from:
1396 //
1397 // a) the fixed frame size, which is the space needed for all spilled temps,
1398 // b) outgoing on-stack parameter areas, and
1399 // c) the minimum stack space this function needs to make available for the
1400 // functions it calls (a tunable ABI property).
1401 if (MFI->hasCalls()) {
1402 unsigned MoreStackForCalls = 0;
1403
1404 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1405 MBBI != MBBE; ++MBBI)
1406 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001407 MI != ME; ++MI) {
1408 if (!MI->isCall())
1409 continue;
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001410
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001411 // Get callee operand.
1412 const MachineOperand &MO = MI->getOperand(0);
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001413
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001414 // Only take account of global function calls (no closures etc.).
1415 if (!MO.isGlobal())
1416 continue;
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001417
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001418 const Function *F = dyn_cast<Function>(MO.getGlobal());
1419 if (!F)
1420 continue;
1421
1422 // Do not update 'MaxStack' for primitive and built-in functions
1423 // (encoded with names either starting with "erlang."/"bif_" or not
1424 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1425 // "_", such as the BIF "suspend_0") as they are executed on another
1426 // stack.
1427 if (F->getName().find("erlang.") != StringRef::npos ||
1428 F->getName().find("bif_") != StringRef::npos ||
1429 F->getName().find_first_of("._") == StringRef::npos)
1430 continue;
1431
1432 unsigned CalleeStkArity =
1433 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1434 if (HipeLeafWords - 1 > CalleeStkArity)
1435 MoreStackForCalls = std::max(MoreStackForCalls,
1436 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1437 }
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001438 MaxStack += MoreStackForCalls;
1439 }
1440
1441 // If the stack frame needed is larger than the guaranteed then runtime checks
1442 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1443 if (MaxStack > Guaranteed) {
1444 MachineBasicBlock &prologueMBB = MF.front();
1445 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1446 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1447
1448 for (MachineBasicBlock::livein_iterator I = prologueMBB.livein_begin(),
1449 E = prologueMBB.livein_end(); I != E; I++) {
1450 stackCheckMBB->addLiveIn(*I);
1451 incStackMBB->addLiveIn(*I);
1452 }
1453
1454 MF.push_front(incStackMBB);
1455 MF.push_front(stackCheckMBB);
1456
1457 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1458 unsigned LEAop, CMPop, CALLop;
1459 if (Is64Bit) {
1460 SPReg = X86::RSP;
1461 PReg = X86::RBP;
1462 LEAop = X86::LEA64r;
1463 CMPop = X86::CMP64rm;
1464 CALLop = X86::CALL64pcrel32;
1465 SPLimitOffset = 0x90;
1466 } else {
1467 SPReg = X86::ESP;
1468 PReg = X86::EBP;
1469 LEAop = X86::LEA32r;
1470 CMPop = X86::CMP32rm;
1471 CALLop = X86::CALLpcrel32;
1472 SPLimitOffset = 0x4c;
1473 }
1474
1475 ScratchReg = GetScratchRegister(Is64Bit, MF, true);
1476 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1477 "HiPE prologue scratch register is live-in");
1478
1479 // Create new MBB for StackCheck:
1480 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
1481 SPReg, false, -MaxStack);
1482 // SPLimitOffset is in a fixed heap location (pointed by BP).
1483 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
1484 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1485 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_4)).addMBB(&prologueMBB);
1486
1487 // Create new MBB for IncStack:
1488 BuildMI(incStackMBB, DL, TII.get(CALLop)).
1489 addExternalSymbol("inc_stack_0");
1490 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
1491 SPReg, false, -MaxStack);
1492 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
1493 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1494 BuildMI(incStackMBB, DL, TII.get(X86::JLE_4)).addMBB(incStackMBB);
1495
1496 stackCheckMBB->addSuccessor(&prologueMBB, 99);
1497 stackCheckMBB->addSuccessor(incStackMBB, 1);
1498 incStackMBB->addSuccessor(&prologueMBB, 99);
1499 incStackMBB->addSuccessor(incStackMBB, 1);
1500 }
1501#ifdef XDEBUG
1502 MF.verify();
1503#endif
1504}
Eli Bendersky8da87162013-02-21 20:05:00 +00001505
1506void X86FrameLowering::
1507eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1508 MachineBasicBlock::iterator I) const {
Eric Christopher11b05cc2014-06-05 00:09:05 +00001509 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
1510 const X86RegisterInfo &RegInfo =
1511 *static_cast<const X86RegisterInfo *>(MF.getTarget().getRegisterInfo());
Eli Bendersky8da87162013-02-21 20:05:00 +00001512 unsigned StackPtr = RegInfo.getStackRegister();
1513 bool reseveCallFrame = hasReservedCallFrame(MF);
1514 int Opcode = I->getOpcode();
1515 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
1516 bool IsLP64 = STI.isTarget64BitLP64();
1517 DebugLoc DL = I->getDebugLoc();
1518 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
1519 uint64_t CalleeAmt = isDestroy ? I->getOperand(1).getImm() : 0;
1520 I = MBB.erase(I);
1521
1522 if (!reseveCallFrame) {
1523 // If the stack pointer can be changed after prologue, turn the
1524 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
1525 // adjcallstackdown instruction into 'add ESP, <amt>'
1526 // TODO: consider using push / pop instead of sub + store / add
1527 if (Amount == 0)
1528 return;
1529
1530 // We need to keep the stack aligned properly. To do this, we round the
1531 // amount of space needed for the outgoing arguments up to the next
1532 // alignment boundary.
Eric Christopher52fa6592014-06-05 00:09:08 +00001533 unsigned StackAlign =
1534 MF.getTarget().getFrameLowering()->getStackAlignment();
Eli Bendersky8da87162013-02-21 20:05:00 +00001535 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
1536
Craig Topper062a2ba2014-04-25 05:30:21 +00001537 MachineInstr *New = nullptr;
Eli Bendersky8da87162013-02-21 20:05:00 +00001538 if (Opcode == TII.getCallFrameSetupOpcode()) {
1539 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(IsLP64, Amount)),
1540 StackPtr)
1541 .addReg(StackPtr)
1542 .addImm(Amount);
1543 } else {
1544 assert(Opcode == TII.getCallFrameDestroyOpcode());
1545
1546 // Factor out the amount the callee already popped.
1547 Amount -= CalleeAmt;
1548
1549 if (Amount) {
1550 unsigned Opc = getADDriOpcode(IsLP64, Amount);
1551 New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1552 .addReg(StackPtr).addImm(Amount);
1553 }
1554 }
1555
1556 if (New) {
1557 // The EFLAGS implicit def is dead.
1558 New->getOperand(3).setIsDead();
1559
1560 // Replace the pseudo instruction with a new instruction.
1561 MBB.insert(I, New);
1562 }
1563
1564 return;
1565 }
1566
1567 if (Opcode == TII.getCallFrameDestroyOpcode() && CalleeAmt) {
1568 // If we are performing frame pointer elimination and if the callee pops
1569 // something off the stack pointer, add it back. We do this until we have
1570 // more advanced stack pointer tracking ability.
1571 unsigned Opc = getSUBriOpcode(IsLP64, CalleeAmt);
1572 MachineInstr *New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1573 .addReg(StackPtr).addImm(CalleeAmt);
1574
1575 // The EFLAGS implicit def is dead.
1576 New->getOperand(3).setIsDead();
1577
1578 // We are not tracking the stack pointer adjustment by the callee, so make
1579 // sure we restore the stack pointer immediately after the call, there may
1580 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
1581 MachineBasicBlock::iterator B = MBB.begin();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001582 while (I != B && !std::prev(I)->isCall())
Eli Bendersky8da87162013-02-21 20:05:00 +00001583 --I;
1584 MBB.insert(I, New);
1585 }
1586}
1587