blob: 0c5209cf3eed9c4f3ea48f6fbf50cd38de462d1b [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();
Chad Rosier20b79dc2012-05-23 23:45:10 +000048 const TargetRegisterInfo *RegInfo = TM.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;
110 case X86::RET:
111 case X86::RETI:
112 case X86::TCRETURNdi:
113 case X86::TCRETURNri:
114 case X86::TCRETURNmi:
115 case X86::TCRETURNdi64:
116 case X86::TCRETURNri64:
117 case X86::TCRETURNmi64:
118 case X86::EH_RETURN:
119 case X86::EH_RETURN64: {
Craig Topper1d326582012-03-04 10:43:23 +0000120 SmallSet<uint16_t, 8> Uses;
Evan Cheng65089fc2011-01-03 22:53:22 +0000121 for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) {
122 MachineOperand &MO = MBBI->getOperand(i);
123 if (!MO.isReg() || MO.isDef())
124 continue;
125 unsigned Reg = MO.getReg();
126 if (!Reg)
127 continue;
Jakob Stoklund Olesen54038d72012-06-01 23:28:30 +0000128 for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
129 Uses.insert(*AI);
Evan Cheng65089fc2011-01-03 22:53:22 +0000130 }
131
Craig Topper1d326582012-03-04 10:43:23 +0000132 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
Evan Cheng65089fc2011-01-03 22:53:22 +0000133 for (; *CS; ++CS)
134 if (!Uses.count(*CS))
135 return *CS;
136 }
137 }
138
139 return 0;
140}
141
142
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000143/// emitSPUpdate - Emit a series of instructions to increment / decrement the
144/// stack pointer by a constant value.
145static
146void emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
Evan Cheng65089fc2011-01-03 22:53:22 +0000147 unsigned StackPtr, int64_t NumBytes,
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000148 bool Is64Bit, bool IsLP64, bool UseLEA,
Eric Christopherf4fba5c2012-10-03 08:10:01 +0000149 const TargetInstrInfo &TII, const TargetRegisterInfo &TRI) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000150 bool isSub = NumBytes < 0;
151 uint64_t Offset = isSub ? -NumBytes : NumBytes;
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000152 unsigned Opc;
153 if (UseLEA)
Eli Benderskyef4558a2013-02-06 20:43:57 +0000154 Opc = getLEArOpcode(IsLP64);
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000155 else
156 Opc = isSub
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000157 ? getSUBriOpcode(IsLP64, Offset)
158 : getADDriOpcode(IsLP64, Offset);
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000159
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000160 uint64_t Chunk = (1LL << 31) - 1;
Eric Christopherf4fba5c2012-10-03 08:10:01 +0000161 DebugLoc DL = MBB.findDebugLoc(MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000162
163 while (Offset) {
164 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
Evan Cheng65089fc2011-01-03 22:53:22 +0000165 if (ThisVal == (Is64Bit ? 8 : 4)) {
166 // Use push / pop instead.
167 unsigned Reg = isSub
Dale Johannesene45a2382011-01-04 19:31:24 +0000168 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
Evan Cheng65089fc2011-01-03 22:53:22 +0000169 : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
170 if (Reg) {
171 Opc = isSub
172 ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
173 : (Is64Bit ? X86::POP64r : X86::POP32r);
Charles Davis7ed40cb2011-06-12 01:45:54 +0000174 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
Evan Cheng65089fc2011-01-03 22:53:22 +0000175 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
Charles Davis7ed40cb2011-06-12 01:45:54 +0000176 if (isSub)
177 MI->setFlag(MachineInstr::FrameSetup);
Evan Cheng65089fc2011-01-03 22:53:22 +0000178 Offset -= ThisVal;
179 continue;
180 }
181 }
182
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000183 MachineInstr *MI = NULL;
184
185 if (UseLEA) {
186 MI = addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
187 StackPtr, false, isSub ? -ThisVal : ThisVal);
188 } else {
189 MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
190 .addReg(StackPtr)
191 .addImm(ThisVal);
192 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
193 }
194
Charles Davis7ed40cb2011-06-12 01:45:54 +0000195 if (isSub)
196 MI->setFlag(MachineInstr::FrameSetup);
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000197
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000198 Offset -= ThisVal;
199 }
200}
201
202/// mergeSPUpdatesUp - Merge two stack-manipulating instructions upper iterator.
203static
204void mergeSPUpdatesUp(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
205 unsigned StackPtr, uint64_t *NumBytes = NULL) {
206 if (MBBI == MBB.begin()) return;
207
208 MachineBasicBlock::iterator PI = prior(MBBI);
209 unsigned Opc = PI->getOpcode();
210 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000211 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
212 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000213 PI->getOperand(0).getReg() == StackPtr) {
214 if (NumBytes)
215 *NumBytes += PI->getOperand(2).getImm();
216 MBB.erase(PI);
217 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
218 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
219 PI->getOperand(0).getReg() == StackPtr) {
220 if (NumBytes)
221 *NumBytes -= PI->getOperand(2).getImm();
222 MBB.erase(PI);
223 }
224}
225
226/// mergeSPUpdatesDown - Merge two stack-manipulating instructions lower iterator.
227static
228void mergeSPUpdatesDown(MachineBasicBlock &MBB,
229 MachineBasicBlock::iterator &MBBI,
230 unsigned StackPtr, uint64_t *NumBytes = NULL) {
Sanjoy Dasf60485c2011-12-01 19:15:08 +0000231 // FIXME: THIS ISN'T RUN!!!
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000232 return;
233
234 if (MBBI == MBB.end()) return;
235
236 MachineBasicBlock::iterator NI = llvm::next(MBBI);
237 if (NI == MBB.end()) return;
238
239 unsigned Opc = NI->getOpcode();
240 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
241 Opc == X86::ADD32ri || Opc == X86::ADD32ri8) &&
242 NI->getOperand(0).getReg() == StackPtr) {
243 if (NumBytes)
244 *NumBytes -= NI->getOperand(2).getImm();
245 MBB.erase(NI);
246 MBBI = NI;
247 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
248 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
249 NI->getOperand(0).getReg() == StackPtr) {
250 if (NumBytes)
251 *NumBytes += NI->getOperand(2).getImm();
252 MBB.erase(NI);
253 MBBI = NI;
254 }
255}
256
257/// mergeSPUpdates - Checks the instruction before/after the passed
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000258/// instruction. If it is an ADD/SUB/LEA instruction it is deleted argument and the
259/// stack adjustment is returned as a positive value for ADD/LEA and a negative for
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000260/// SUB.
261static int mergeSPUpdates(MachineBasicBlock &MBB,
262 MachineBasicBlock::iterator &MBBI,
263 unsigned StackPtr,
264 bool doMergeWithPrevious) {
265 if ((doMergeWithPrevious && MBBI == MBB.begin()) ||
266 (!doMergeWithPrevious && MBBI == MBB.end()))
267 return 0;
268
269 MachineBasicBlock::iterator PI = doMergeWithPrevious ? prior(MBBI) : MBBI;
270 MachineBasicBlock::iterator NI = doMergeWithPrevious ? 0 : llvm::next(MBBI);
271 unsigned Opc = PI->getOpcode();
272 int Offset = 0;
273
274 if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000275 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
276 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000277 PI->getOperand(0).getReg() == StackPtr){
278 Offset += PI->getOperand(2).getImm();
279 MBB.erase(PI);
280 if (!doMergeWithPrevious) MBBI = NI;
281 } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
282 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
283 PI->getOperand(0).getReg() == StackPtr) {
284 Offset -= PI->getOperand(2).getImm();
285 MBB.erase(PI);
286 if (!doMergeWithPrevious) MBBI = NI;
287 }
288
289 return Offset;
290}
291
292static bool isEAXLiveIn(MachineFunction &MF) {
293 for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
294 EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
295 unsigned Reg = II->first;
296
297 if (Reg == X86::EAX || Reg == X86::AX ||
298 Reg == X86::AH || Reg == X86::AL)
299 return true;
300 }
301
302 return false;
303}
304
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000305void X86FrameLowering::emitCalleeSavedFrameMoves(MachineFunction &MF,
Bill Wendlingb97270d2011-07-25 18:00:28 +0000306 MCSymbol *Label,
307 unsigned FramePtr) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000308 MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000309 MachineModuleInfo &MMI = MF.getMMI();
Bill Wendlingbc07a892013-06-18 07:20:20 +0000310 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000311
312 // Add callee saved registers to move list.
313 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
314 if (CSI.empty()) return;
315
Michael Liao6d810bd2012-10-25 06:29:14 +0000316 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000317 bool HasFP = hasFP(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000318
319 // Calculate amount of bytes used for return address storing.
Michael Liao6d810bd2012-10-25 06:29:14 +0000320 int stackGrowth = -RegInfo->getSlotSize();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000321
322 // FIXME: This is dirty hack. The code itself is pretty mess right now.
323 // It should be rewritten from scratch and generalized sometimes.
324
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000325 // Determine maximum offset (minimum due to stack growth).
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000326 int64_t MaxOffset = 0;
327 for (std::vector<CalleeSavedInfo>::const_iterator
328 I = CSI.begin(), E = CSI.end(); I != E; ++I)
329 MaxOffset = std::min(MaxOffset,
330 MFI->getObjectOffset(I->getFrameIdx()));
331
332 // Calculate offsets.
333 int64_t saveAreaOffset = (HasFP ? 3 : 2) * stackGrowth;
334 for (std::vector<CalleeSavedInfo>::const_iterator
335 I = CSI.begin(), E = CSI.end(); I != E; ++I) {
336 int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
337 unsigned Reg = I->getReg();
338 Offset = MaxOffset - Offset + saveAreaOffset;
339
340 // Don't output a new machine move if we're re-saving the frame
341 // pointer. This happens when the PrologEpilogInserter has inserted an extra
342 // "PUSH" of the frame pointer -- the "emitPrologue" method automatically
343 // generates one when frame pointers are used. If we generate a "machine
344 // move" for this extra "PUSH", the linker will lose track of the fact that
345 // the frame pointer should have the value of the first "PUSH" when it's
346 // trying to unwind.
NAKAMURA Takumif7f319d2011-02-05 15:10:54 +0000347 //
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000348 // FIXME: This looks inelegant. It's possibly correct, but it's covering up
349 // another bug. I.e., one where we generate a prolog like this:
350 //
351 // pushl %ebp
352 // movl %esp, %ebp
353 // pushl %ebp
354 // pushl %esi
355 // ...
356 //
357 // The immediate re-push of EBP is unnecessary. At the least, it's an
358 // optimization bug. EBP can be used as a scratch register in certain
359 // cases, but probably not when we have a frame pointer.
360 if (HasFP && FramePtr == Reg)
361 continue;
362
Bill Wendlingbc07a892013-06-18 07:20:20 +0000363 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000364 MMI.addFrameInst(MCCFIInstruction::createOffset(Label, DwarfReg, Offset));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000365 }
366}
367
Nadav Rotem1bef5a02012-12-23 07:30:09 +0000368/// usesTheStack - This function checks if any of the users of EFLAGS
Nadav Rotemd5aae982012-12-21 23:48:49 +0000369/// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
370/// to use the stack, and if we don't adjust the stack we clobber the first
371/// frame index.
Nadav Rotem1bef5a02012-12-23 07:30:09 +0000372/// See X86InstrInfo::copyPhysReg.
Bill Wendling28519072013-08-15 18:46:14 +0000373static bool usesTheStack(const MachineFunction &MF) {
374 const MachineRegisterInfo &MRI = MF.getRegInfo();
Nadav Rotemd5aae982012-12-21 23:48:49 +0000375
376 for (MachineRegisterInfo::reg_iterator ri = MRI.reg_begin(X86::EFLAGS),
377 re = MRI.reg_end(); ri != re; ++ri)
378 if (ri->isCopy())
379 return true;
380
381 return false;
382}
383
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000384/// emitPrologue - Push callee-saved registers onto the stack, which
385/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
386/// space for local variables. Also emit labels used by the exception handler to
387/// generate the exception handling frames.
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000388void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000389 MachineBasicBlock &MBB = MF.front(); // Prologue goes in entry BB.
390 MachineBasicBlock::iterator MBBI = MBB.begin();
391 MachineFrameInfo *MFI = MF.getFrameInfo();
392 const Function *Fn = MF.getFunction();
Anton Korobeynikov14ee3442010-11-18 23:25:52 +0000393 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
394 const X86InstrInfo &TII = *TM.getInstrInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000395 MachineModuleInfo &MMI = MF.getMMI();
396 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
397 bool needsFrameMoves = MMI.hasDebugInfo() ||
Rafael Espindolafc9bae62011-05-25 03:44:17 +0000398 Fn->needsUnwindTableEntry();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000399 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
400 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000401 bool HasFP = hasFP(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000402 bool Is64Bit = STI.is64Bit();
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000403 bool IsLP64 = STI.isTarget64BitLP64();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000404 bool IsWin64 = STI.isTargetWin64();
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000405 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000406 unsigned StackAlign = getStackAlignment();
407 unsigned SlotSize = RegInfo->getSlotSize();
408 unsigned FramePtr = RegInfo->getFrameRegister(MF);
409 unsigned StackPtr = RegInfo->getStackRegister();
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000410 unsigned BasePtr = RegInfo->getBaseRegister();
Bill Wendlingf27e3312013-09-10 00:20:27 +0000411 DebugLoc DL;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000412
413 // If we're forcing a stack realignment we can't rely on just the frame
414 // info, we need to know the ABI stack alignment as well in case we
415 // have a call out. Otherwise just make sure we have some alignment - we'll
416 // go with the minimum SlotSize.
417 if (ForceStackAlign) {
418 if (MFI->hasCalls())
419 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
420 else if (MaxAlign < SlotSize)
421 MaxAlign = SlotSize;
422 }
423
424 // Add RETADDR move area to callee saved frame size.
425 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
426 if (TailCallReturnAddrDelta < 0)
427 X86FI->setCalleeSavedFrameSize(
428 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
429
430 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
431 // function, and use up to 128 bytes of stack space, don't have a frame
432 // pointer, calls, or dynamic alloca then we do not need to adjust the
Nadav Rotemd5aae982012-12-21 23:48:49 +0000433 // stack pointer (we fit in the Red Zone). We also check that we don't
434 // push and pop from the stack.
Bill Wendling698e84f2012-12-30 10:32:01 +0000435 if (Is64Bit && !Fn->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
436 Attribute::NoRedZone) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000437 !RegInfo->needsStackRealignment(MF) &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000438 !MFI->hasVarSizedObjects() && // No dynamic alloca.
439 !MFI->adjustsStack() && // No calls.
440 !IsWin64 && // Win64 has no Red Zone
Nadav Rotem1bef5a02012-12-23 07:30:09 +0000441 !usesTheStack(MF) && // Don't push and pop.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000442 !MF.getTarget().Options.EnableSegmentedStacks) { // Regular stack
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000443 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
444 if (HasFP) MinSize += SlotSize;
445 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
446 MFI->setStackSize(StackSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000447 }
448
449 // Insert stack pointer adjustment for later moving of return addr. Only
450 // applies to tail call optimized functions where the callee argument stack
451 // size is bigger than the callers.
452 if (TailCallReturnAddrDelta < 0) {
453 MachineInstr *MI =
454 BuildMI(MBB, MBBI, DL,
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000455 TII.get(getSUBriOpcode(IsLP64, -TailCallReturnAddrDelta)),
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000456 StackPtr)
457 .addReg(StackPtr)
Charles Davis7ed40cb2011-06-12 01:45:54 +0000458 .addImm(-TailCallReturnAddrDelta)
459 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000460 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
461 }
462
463 // Mapping for machine moves:
464 //
465 // DST: VirtualFP AND
466 // SRC: VirtualFP => DW_CFA_def_cfa_offset
467 // ELSE => DW_CFA_def_cfa
468 //
469 // SRC: VirtualFP AND
470 // DST: Register => DW_CFA_def_cfa_register
471 //
472 // ELSE
473 // OFFSET < 0 => DW_CFA_offset_extended_sf
474 // REG < 64 => DW_CFA_offset + Reg
475 // ELSE => DW_CFA_offset_extended
476
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000477 uint64_t NumBytes = 0;
Michael Liao6d810bd2012-10-25 06:29:14 +0000478 int stackGrowth = -SlotSize;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000479
480 if (HasFP) {
481 // Calculate required stack adjustment.
482 uint64_t FrameSize = StackSize - SlotSize;
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000483 if (RegInfo->needsStackRealignment(MF)) {
484 // Callee-saved registers are pushed on stack before the stack
485 // is realigned.
486 FrameSize -= X86FI->getCalleeSavedFrameSize();
487 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
488 } else {
489 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
490 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000491
492 // Get the offset of the stack slot for the EBP register, which is
493 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
494 // Update the frame offset adjustment.
495 MFI->setOffsetAdjustment(-NumBytes);
496
497 // Save EBP/RBP into the appropriate stack slot.
498 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
Charles Davis7ed40cb2011-06-12 01:45:54 +0000499 .addReg(FramePtr, RegState::Kill)
500 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000501
502 if (needsFrameMoves) {
503 // Mark the place where EBP/RBP was saved.
504 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol();
Bill Wendling28b6e122011-07-21 00:44:56 +0000505 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
506 .addSym(FrameLabel);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000507
508 // Define the current CFA rule to use the provided offset.
Rafael Espindola84ee6c42013-05-15 22:27:35 +0000509 assert(StackSize);
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000510 MMI.addFrameInst(
511 MCCFIInstruction::createDefCfaOffset(FrameLabel, 2 * stackGrowth));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000512
513 // Change the rule for the FramePtr to be an "offset" rule.
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000514 unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
515 MMI.addFrameInst(MCCFIInstruction::createOffset(FrameLabel, DwarfFramePtr,
516 2 * stackGrowth));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000517 }
518
Bill Wendlingb97270d2011-07-25 18:00:28 +0000519 // Update EBP with the new base value.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000520 BuildMI(MBB, MBBI, DL,
521 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), FramePtr)
Charles Davis7ed40cb2011-06-12 01:45:54 +0000522 .addReg(StackPtr)
523 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000524
525 if (needsFrameMoves) {
526 // Mark effective beginning of when frame pointer becomes valid.
527 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol();
Bill Wendling28b6e122011-07-21 00:44:56 +0000528 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
529 .addSym(FrameLabel);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000530
531 // Define the current CFA to use the EBP/RBP register.
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000532 unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
533 MMI.addFrameInst(
534 MCCFIInstruction::createDefCfaRegister(FrameLabel, DwarfFramePtr));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000535 }
536
537 // Mark the FramePtr as live-in in every block except the entry.
538 for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end();
539 I != E; ++I)
540 I->addLiveIn(FramePtr);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000541 } else {
542 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
543 }
544
545 // Skip the callee-saved push instructions.
546 bool PushedRegs = false;
547 int StackOffset = 2 * stackGrowth;
548
549 while (MBBI != MBB.end() &&
550 (MBBI->getOpcode() == X86::PUSH32r ||
551 MBBI->getOpcode() == X86::PUSH64r)) {
552 PushedRegs = true;
Bill Wendling28b6e122011-07-21 00:44:56 +0000553 MBBI->setFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000554 ++MBBI;
555
556 if (!HasFP && needsFrameMoves) {
557 // Mark callee-saved push instruction.
558 MCSymbol *Label = MMI.getContext().CreateTempSymbol();
559 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL)).addSym(Label);
560
561 // Define the current CFA rule to use the provided offset.
Rafael Espindola72421862013-05-16 04:59:17 +0000562 assert(StackSize);
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000563 MMI.addFrameInst(
564 MCCFIInstruction::createDefCfaOffset(Label, StackOffset));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000565 StackOffset += stackGrowth;
566 }
567 }
568
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000569 // Realign stack after we pushed callee-saved registers (so that we'll be
570 // able to calculate their offsets from the frame pointer).
571
572 // NOTE: We push the registers before realigning the stack, so
573 // vector callee-saved (xmm) registers may be saved w/o proper
574 // alignment in this way. However, currently these regs are saved in
575 // stack slots (see X86FrameLowering::spillCalleeSavedRegisters()), so
576 // this shouldn't be a problem.
577 if (RegInfo->needsStackRealignment(MF)) {
578 assert(HasFP && "There should be a frame pointer if stack is realigned.");
579 MachineInstr *MI =
580 BuildMI(MBB, MBBI, DL,
581 TII.get(Is64Bit ? X86::AND64ri32 : X86::AND32ri), StackPtr)
582 .addReg(StackPtr)
583 .addImm(-MaxAlign)
584 .setMIFlag(MachineInstr::FrameSetup);
585
586 // The EFLAGS implicit def is dead.
587 MI->getOperand(3).setIsDead();
588 }
589
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000590 // If there is an SUB32ri of ESP immediately before this instruction, merge
591 // the two. This can be the case when tail call elimination is enabled and
592 // the callee has more arguments then the caller.
593 NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true);
594
595 // If there is an ADD32ri or SUB32ri of ESP immediately after this
596 // instruction, merge the two instructions.
597 mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes);
598
599 // Adjust stack pointer: ESP -= numbytes.
600
601 // Windows and cygwin/mingw require a prologue helper routine when allocating
602 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
603 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
604 // stack and adjust the stack pointer in one go. The 64-bit version of
605 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
606 // responsible for adjusting the stack pointer. Touching the stack at 4K
607 // increments is necessary to ensure that the guard pages used by the OS
608 // virtual memory manager are allocated in correct sequence.
Tim Northover9653eb52013-12-10 16:57:43 +0000609 if (NumBytes >= 4096 && STI.isOSWindows() && !STI.isTargetMacho()) {
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000610 const char *StackProbeSymbol;
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000611
612 if (Is64Bit) {
Kai Nacke87b23ae2013-12-13 05:37:05 +0000613 if (STI.isTargetCygMing()) {
614 StackProbeSymbol = "___chkstk_ms";
615 } else {
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000616 StackProbeSymbol = "__chkstk";
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000617 }
618 } else if (STI.isTargetCygMing())
619 StackProbeSymbol = "_alloca";
620 else
621 StackProbeSymbol = "_chkstk";
622
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000623 // Check whether EAX is livein for this function.
624 bool isEAXAlive = isEAXLiveIn(MF);
625
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000626 if (isEAXAlive) {
627 // Sanity check that EAX is not livein for this function.
628 // It should not be, so throw an assert.
629 assert(!Is64Bit && "EAX is livein in x64 case!");
630
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000631 // Save EAX
632 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
Bill Wendling28b6e122011-07-21 00:44:56 +0000633 .addReg(X86::EAX, RegState::Kill)
634 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000635 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000636
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000637 if (Is64Bit) {
638 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
639 // Function prologue is responsible for adjusting the stack pointer.
640 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
Bill Wendling28b6e122011-07-21 00:44:56 +0000641 .addImm(NumBytes)
642 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000643 } else {
644 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
645 // We'll also use 4 already allocated bytes for EAX.
646 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
Bill Wendling28b6e122011-07-21 00:44:56 +0000647 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
648 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000649 }
650
651 BuildMI(MBB, MBBI, DL,
652 TII.get(Is64Bit ? X86::W64ALLOCA : X86::CALLpcrel32))
653 .addExternalSymbol(StackProbeSymbol)
654 .addReg(StackPtr, RegState::Define | RegState::Implicit)
Bill Wendling28b6e122011-07-21 00:44:56 +0000655 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit)
656 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000657
Kai Nacke87b23ae2013-12-13 05:37:05 +0000658 if (Is64Bit) {
659 // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
660 // themself. It also does not clobber %rax so we can reuse it when
661 // adjusting %rsp.
Nico Rieck51969be2013-07-08 11:20:11 +0000662 BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), StackPtr)
663 .addReg(StackPtr)
664 .addReg(X86::RAX)
665 .setMIFlag(MachineInstr::FrameSetup);
666 }
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000667 if (isEAXAlive) {
668 // Restore EAX
669 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
670 X86::EAX),
671 StackPtr, false, NumBytes - 4);
Bill Wendling28b6e122011-07-21 00:44:56 +0000672 MI->setFlag(MachineInstr::FrameSetup);
NAKAMURA Takumi521eb7c2011-03-24 07:07:00 +0000673 MBB.insert(MBBI, MI);
674 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000675 } else if (NumBytes)
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000676 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
Eric Christopherf4fba5c2012-10-03 08:10:01 +0000677 UseLEA, TII, *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000678
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000679 // If we need a base pointer, set it up here. It's whatever the value
680 // of the stack pointer is at this point. Any variable size objects
681 // will be allocated after this, so we can still use the base pointer
682 // to reference locals.
683 if (RegInfo->hasBasePointer(MF)) {
684 // Update the frame pointer with the current stack pointer.
685 unsigned Opc = Is64Bit ? X86::MOV64rr : X86::MOV32rr;
686 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
687 .addReg(StackPtr)
688 .setMIFlag(MachineInstr::FrameSetup);
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000689 }
690
Rafael Espindolaa01cdb02011-04-15 15:11:06 +0000691 if (( (!HasFP && NumBytes) || PushedRegs) && needsFrameMoves) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000692 // Mark end of stack pointer adjustment.
693 MCSymbol *Label = MMI.getContext().CreateTempSymbol();
Bill Wendling28b6e122011-07-21 00:44:56 +0000694 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
695 .addSym(Label);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000696
697 if (!HasFP && NumBytes) {
698 // Define the current CFA rule to use the provided offset.
Rafael Espindola84ee6c42013-05-15 22:27:35 +0000699 assert(StackSize);
Rafael Espindolab08d2c22013-05-16 21:02:15 +0000700 MMI.addFrameInst(MCCFIInstruction::createDefCfaOffset(
701 Label, -StackSize + stackGrowth));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000702 }
703
704 // Emit DWARF info specifying the offsets of the callee-saved registers.
705 if (PushedRegs)
706 emitCalleeSavedFrameMoves(MF, Label, HasFP ? FramePtr : StackPtr);
707 }
708}
709
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000710void X86FrameLowering::emitEpilogue(MachineFunction &MF,
Nick Lewycky34a425b2011-06-14 03:23:52 +0000711 MachineBasicBlock &MBB) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000712 const MachineFrameInfo *MFI = MF.getFrameInfo();
713 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikov14ee3442010-11-18 23:25:52 +0000714 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
715 const X86InstrInfo &TII = *TM.getInstrInfo();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000716 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
717 assert(MBBI != MBB.end() && "Returning block has no instructions");
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000718 unsigned RetOpcode = MBBI->getOpcode();
719 DebugLoc DL = MBBI->getDebugLoc();
720 bool Is64Bit = STI.is64Bit();
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000721 bool IsLP64 = STI.isTarget64BitLP64();
Evan Cheng1b81fdd2012-02-07 22:50:41 +0000722 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000723 unsigned StackAlign = getStackAlignment();
724 unsigned SlotSize = RegInfo->getSlotSize();
725 unsigned FramePtr = RegInfo->getFrameRegister(MF);
726 unsigned StackPtr = RegInfo->getStackRegister();
727
728 switch (RetOpcode) {
729 default:
730 llvm_unreachable("Can only insert epilog into returning blocks");
731 case X86::RET:
732 case X86::RETI:
733 case X86::TCRETURNdi:
734 case X86::TCRETURNri:
735 case X86::TCRETURNmi:
736 case X86::TCRETURNdi64:
737 case X86::TCRETURNri64:
738 case X86::TCRETURNmi64:
739 case X86::EH_RETURN:
740 case X86::EH_RETURN64:
741 break; // These are ok
742 }
743
744 // Get the number of bytes to allocate from the FrameInfo.
745 uint64_t StackSize = MFI->getStackSize();
746 uint64_t MaxAlign = MFI->getMaxAlignment();
747 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
748 uint64_t NumBytes = 0;
749
750 // If we're forcing a stack realignment we can't rely on just the frame
751 // info, we need to know the ABI stack alignment as well in case we
752 // have a call out. Otherwise just make sure we have some alignment - we'll
753 // go with the minimum.
754 if (ForceStackAlign) {
755 if (MFI->hasCalls())
756 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
757 else
758 MaxAlign = MaxAlign ? MaxAlign : 4;
759 }
760
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000761 if (hasFP(MF)) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000762 // Calculate required stack adjustment.
763 uint64_t FrameSize = StackSize - SlotSize;
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000764 if (RegInfo->needsStackRealignment(MF)) {
765 // Callee-saved registers were pushed on stack before the stack
766 // was realigned.
767 FrameSize -= CSSize;
768 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
769 } else {
770 NumBytes = FrameSize - CSSize;
771 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000772
773 // Pop EBP.
774 BuildMI(MBB, MBBI, DL,
775 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), FramePtr);
776 } else {
777 NumBytes = StackSize - CSSize;
778 }
779
780 // Skip the callee-saved pop instructions.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000781 while (MBBI != MBB.begin()) {
782 MachineBasicBlock::iterator PI = prior(MBBI);
783 unsigned Opc = PI->getOpcode();
784
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000785 if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE &&
Evan Cheng7f8e5632011-12-07 07:15:52 +0000786 !PI->isTerminator())
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000787 break;
788
789 --MBBI;
790 }
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000791 MachineBasicBlock::iterator FirstCSPop = MBBI;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000792
793 DL = MBBI->getDebugLoc();
794
795 // If there is an ADD32ri or SUB32ri of ESP immediately before this
796 // instruction, merge the two instructions.
797 if (NumBytes || MFI->hasVarSizedObjects())
798 mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
799
800 // If dynamic alloca is used, then reset esp to point to the last callee-saved
801 // slot before popping them off! Same applies for the case, when stack was
802 // realigned.
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000803 if (RegInfo->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) {
804 if (RegInfo->needsStackRealignment(MF))
805 MBBI = FirstCSPop;
806 if (CSSize != 0) {
Eli Benderskyef4558a2013-02-06 20:43:57 +0000807 unsigned Opc = getLEArOpcode(IsLP64);
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000808 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
809 FramePtr, false, -CSSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000810 } else {
Alexey Samsonovdcc12912012-07-16 06:54:09 +0000811 unsigned Opc = (Is64Bit ? X86::MOV64rr : X86::MOV32rr);
812 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000813 .addReg(FramePtr);
814 }
815 } else if (NumBytes) {
816 // Adjust stack pointer back: ESP += numbytes.
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000817 emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, IsLP64, UseLEA,
818 TII, *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000819 }
820
821 // We're returning from function via eh_return.
822 if (RetOpcode == X86::EH_RETURN || RetOpcode == X86::EH_RETURN64) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000823 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000824 MachineOperand &DestAddr = MBBI->getOperand(0);
825 assert(DestAddr.isReg() && "Offset should be in register!");
826 BuildMI(MBB, MBBI, DL,
827 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
828 StackPtr).addReg(DestAddr.getReg());
829 } else if (RetOpcode == X86::TCRETURNri || RetOpcode == X86::TCRETURNdi ||
830 RetOpcode == X86::TCRETURNmi ||
831 RetOpcode == X86::TCRETURNri64 || RetOpcode == X86::TCRETURNdi64 ||
832 RetOpcode == X86::TCRETURNmi64) {
833 bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64;
834 // Tail call return: adjust the stack pointer and jump to callee.
Jakob Stoklund Olesenbbb1a542011-01-13 22:47:43 +0000835 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000836 MachineOperand &JumpTarget = MBBI->getOperand(0);
837 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
838 assert(StackAdjust.isImm() && "Expecting immediate value.");
839
840 // Adjust stack pointer.
841 int StackAdj = StackAdjust.getImm();
842 int MaxTCDelta = X86FI->getTCReturnAddrDelta();
843 int Offset = 0;
844 assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
845
846 // Incoporate the retaddr area.
847 Offset = StackAdj-MaxTCDelta;
848 assert(Offset >= 0 && "Offset should never be negative");
849
850 if (Offset) {
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000851 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000852 Offset += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000853 emitSPUpdate(MBB, MBBI, StackPtr, Offset, Is64Bit, IsLP64,
854 UseLEA, TII, *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000855 }
856
857 // Jump to label or value in register.
858 if (RetOpcode == X86::TCRETURNdi || RetOpcode == X86::TCRETURNdi64) {
Evan Chengd4b08732010-11-30 23:55:39 +0000859 MachineInstrBuilder MIB =
860 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNdi)
861 ? X86::TAILJMPd : X86::TAILJMPd64));
862 if (JumpTarget.isGlobal())
863 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
864 JumpTarget.getTargetFlags());
865 else {
866 assert(JumpTarget.isSymbol());
867 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
868 JumpTarget.getTargetFlags());
869 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000870 } else if (RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64) {
871 MachineInstrBuilder MIB =
872 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNmi)
873 ? X86::TAILJMPm : X86::TAILJMPm64));
874 for (unsigned i = 0; i != 5; ++i)
875 MIB.addOperand(MBBI->getOperand(i));
876 } else if (RetOpcode == X86::TCRETURNri64) {
877 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr64)).
878 addReg(JumpTarget.getReg(), RegState::Kill);
879 } else {
880 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr)).
881 addReg(JumpTarget.getReg(), RegState::Kill);
882 }
883
884 MachineInstr *NewMI = prior(MBBI);
Jakob Stoklund Olesen33f5d142012-12-20 22:54:02 +0000885 NewMI->copyImplicitOps(MF, MBBI);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000886
887 // Delete the pseudo instruction TCRETURN.
888 MBB.erase(MBBI);
889 } else if ((RetOpcode == X86::RET || RetOpcode == X86::RETI) &&
890 (X86FI->getTCReturnAddrDelta() < 0)) {
891 // Add the return addr area delta back since we are not tail calling.
892 int delta = -1*X86FI->getTCReturnAddrDelta();
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000893 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000894
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000895 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000896 delta += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Eli Bendersky44a40ca2013-02-05 21:53:29 +0000897 emitSPUpdate(MBB, MBBI, StackPtr, delta, Is64Bit, IsLP64, UseLEA, TII,
898 *RegInfo);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000899 }
900}
Anton Korobeynikov14ee3442010-11-18 23:25:52 +0000901
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000902int X86FrameLowering::getFrameIndexOffset(const MachineFunction &MF, int FI) const {
Chad Rosier20b79dc2012-05-23 23:45:10 +0000903 const X86RegisterInfo *RegInfo =
Anton Korobeynikov46877782010-11-20 15:59:32 +0000904 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
905 const MachineFrameInfo *MFI = MF.getFrameInfo();
906 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
907 uint64_t StackSize = MFI->getStackSize();
908
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000909 if (RegInfo->hasBasePointer(MF)) {
910 assert (hasFP(MF) && "VLAs and dynamic stack realign, but no FP?!");
911 if (FI < 0) {
912 // Skip the saved EBP.
913 return Offset + RegInfo->getSlotSize();
914 } else {
915 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
916 return Offset + StackSize;
917 }
918 } else if (RegInfo->needsStackRealignment(MF)) {
Anton Korobeynikov46877782010-11-20 15:59:32 +0000919 if (FI < 0) {
920 // Skip the saved EBP.
Chad Rosier20b79dc2012-05-23 23:45:10 +0000921 return Offset + RegInfo->getSlotSize();
Anton Korobeynikov46877782010-11-20 15:59:32 +0000922 } else {
Duncan Sandsd278d352011-10-18 12:44:00 +0000923 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
Anton Korobeynikov46877782010-11-20 15:59:32 +0000924 return Offset + StackSize;
925 }
926 // FIXME: Support tail calls
927 } else {
928 if (!hasFP(MF))
929 return Offset + StackSize;
930
931 // Skip the saved EBP.
Chad Rosier20b79dc2012-05-23 23:45:10 +0000932 Offset += RegInfo->getSlotSize();
Anton Korobeynikov46877782010-11-20 15:59:32 +0000933
934 // Skip the RETADDR move area
935 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
936 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
937 if (TailCallReturnAddrDelta < 0)
938 Offset -= TailCallReturnAddrDelta;
939 }
940
941 return Offset;
942}
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000943
Alexey Samsonovc4b3ad82012-05-01 15:16:06 +0000944int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
945 unsigned &FrameReg) const {
Chad Rosier20b79dc2012-05-23 23:45:10 +0000946 const X86RegisterInfo *RegInfo =
Alexey Samsonovc4b3ad82012-05-01 15:16:06 +0000947 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
948 // We can't calculate offset from frame pointer if the stack is realigned,
Chad Rosierbdb08ac2012-07-10 17:45:53 +0000949 // so enforce usage of stack/base pointer. The base pointer is used when we
950 // have dynamic allocas in addition to dynamic realignment.
951 if (RegInfo->hasBasePointer(MF))
952 FrameReg = RegInfo->getBaseRegister();
953 else if (RegInfo->needsStackRealignment(MF))
954 FrameReg = RegInfo->getStackRegister();
955 else
956 FrameReg = RegInfo->getFrameRegister(MF);
Alexey Samsonovc4b3ad82012-05-01 15:16:06 +0000957 return getFrameIndexOffset(MF, FI);
958}
959
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000960bool X86FrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000961 MachineBasicBlock::iterator MI,
962 const std::vector<CalleeSavedInfo> &CSI,
963 const TargetRegisterInfo *TRI) const {
964 if (CSI.empty())
965 return false;
966
967 DebugLoc DL = MBB.findDebugLoc(MI);
968
969 MachineFunction &MF = *MBB.getParent();
970
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000971 unsigned SlotSize = STI.is64Bit() ? 8 : 4;
972 unsigned FPReg = TRI->getFrameRegister(MF);
973 unsigned CalleeFrameSize = 0;
974
975 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
976 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
977
NAKAMURA Takumid4e50032011-02-27 08:47:19 +0000978 // Push GPRs. It increases frame size.
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000979 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
980 for (unsigned i = CSI.size(); i != 0; --i) {
981 unsigned Reg = CSI[i-1].getReg();
NAKAMURA Takumid4e50032011-02-27 08:47:19 +0000982 if (!X86::GR64RegClass.contains(Reg) &&
983 !X86::GR32RegClass.contains(Reg))
984 continue;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000985 // Add the callee-saved register as live-in. It's killed at the spill.
986 MBB.addLiveIn(Reg);
987 if (Reg == FPReg)
988 // X86RegisterInfo::emitPrologue will handle spilling of frame register.
989 continue;
NAKAMURA Takumid4e50032011-02-27 08:47:19 +0000990 CalleeFrameSize += SlotSize;
Charles Davis7ed40cb2011-06-12 01:45:54 +0000991 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
992 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +0000993 }
994
995 X86FI->setCalleeSavedFrameSize(CalleeFrameSize);
NAKAMURA Takumid4e50032011-02-27 08:47:19 +0000996
997 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
998 // It can be done by spilling XMMs to stack frame.
999 // Note that only Win64 ABI might spill XMMs.
1000 for (unsigned i = CSI.size(); i != 0; --i) {
1001 unsigned Reg = CSI[i-1].getReg();
1002 if (X86::GR64RegClass.contains(Reg) ||
1003 X86::GR32RegClass.contains(Reg))
1004 continue;
1005 // Add the callee-saved register as live-in. It's killed at the spill.
1006 MBB.addLiveIn(Reg);
1007 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1008 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i-1].getFrameIdx(),
1009 RC, TRI);
1010 }
1011
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001012 return true;
1013}
1014
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001015bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001016 MachineBasicBlock::iterator MI,
1017 const std::vector<CalleeSavedInfo> &CSI,
1018 const TargetRegisterInfo *TRI) const {
1019 if (CSI.empty())
1020 return false;
1021
1022 DebugLoc DL = MBB.findDebugLoc(MI);
1023
1024 MachineFunction &MF = *MBB.getParent();
1025 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001026
1027 // Reload XMMs from stack frame.
1028 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1029 unsigned Reg = CSI[i].getReg();
1030 if (X86::GR64RegClass.contains(Reg) ||
1031 X86::GR32RegClass.contains(Reg))
1032 continue;
1033 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1034 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(),
1035 RC, TRI);
1036 }
1037
1038 // POP GPRs.
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001039 unsigned FPReg = TRI->getFrameRegister(MF);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001040 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1041 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1042 unsigned Reg = CSI[i].getReg();
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001043 if (!X86::GR64RegClass.contains(Reg) &&
1044 !X86::GR32RegClass.contains(Reg))
1045 continue;
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001046 if (Reg == FPReg)
1047 // X86RegisterInfo::emitEpilogue will handle restoring of frame register.
1048 continue;
NAKAMURA Takumid4e50032011-02-27 08:47:19 +00001049 BuildMI(MBB, MI, DL, TII.get(Opc), Reg);
Anton Korobeynikovd08fbd12010-11-27 23:05:03 +00001050 }
1051 return true;
1052}
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001053
1054void
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001055X86FrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001056 RegScavenger *RS) const {
1057 MachineFrameInfo *MFI = MF.getFrameInfo();
1058 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
1059 unsigned SlotSize = RegInfo->getSlotSize();
1060
1061 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Tim Northoverecc018c2013-08-04 09:35:57 +00001062 int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001063
1064 if (TailCallReturnAddrDelta < 0) {
1065 // create RETURNADDR area
1066 // arg
1067 // arg
1068 // RETADDR
1069 // { ...
1070 // RETADDR area
1071 // ...
1072 // }
1073 // [EBP]
1074 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
Tim Northoverecc018c2013-08-04 09:35:57 +00001075 TailCallReturnAddrDelta - SlotSize, true);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001076 }
1077
1078 if (hasFP(MF)) {
1079 assert((TailCallReturnAddrDelta <= 0) &&
1080 "The Delta should always be zero or negative");
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001081 const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001082
1083 // Create a frame entry for the EBP register that must be saved.
1084 int FrameIdx = MFI->CreateFixedObject(SlotSize,
1085 -(int)SlotSize +
1086 TFI.getOffsetOfLocalArea() +
1087 TailCallReturnAddrDelta,
1088 true);
1089 assert(FrameIdx == MFI->getObjectIndexBegin() &&
1090 "Slot for EBP register must be last in order to be found!");
Duncan Sandsd278d352011-10-18 12:44:00 +00001091 (void)FrameIdx;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001092 }
Chad Rosierbdb08ac2012-07-10 17:45:53 +00001093
1094 // Spill the BasePtr if it's used.
1095 if (RegInfo->hasBasePointer(MF))
1096 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001097}
Rafael Espindolac2174212011-08-30 19:39:58 +00001098
1099static bool
1100HasNestArgument(const MachineFunction *MF) {
1101 const Function *F = MF->getFunction();
1102 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1103 I != E; I++) {
1104 if (I->hasNestAttr())
1105 return true;
1106 }
1107 return false;
1108}
1109
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001110/// GetScratchRegister - Get a temp register for performing work in the
1111/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1112/// and the properties of the function either one or two registers will be
1113/// needed. Set primary to true for the first register, false for the second.
Rafael Espindolac2174212011-08-30 19:39:58 +00001114static unsigned
Rafael Espindolad90466b2012-01-11 19:00:37 +00001115GetScratchRegister(bool Is64Bit, const MachineFunction &MF, bool Primary) {
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001116 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1117
1118 // Erlang stuff.
1119 if (CallingConvention == CallingConv::HiPE) {
1120 if (Is64Bit)
1121 return Primary ? X86::R14 : X86::R13;
1122 else
1123 return Primary ? X86::EBX : X86::EDI;
1124 }
1125
David Blaikie46a9f012012-01-20 21:51:11 +00001126 if (Is64Bit)
Rafael Espindolad90466b2012-01-11 19:00:37 +00001127 return Primary ? X86::R11 : X86::R12;
Rafael Espindolac2174212011-08-30 19:39:58 +00001128
David Blaikie46a9f012012-01-20 21:51:11 +00001129 bool IsNested = HasNestArgument(&MF);
1130
1131 if (CallingConvention == CallingConv::X86_FastCall ||
1132 CallingConvention == CallingConv::Fast) {
1133 if (IsNested)
1134 report_fatal_error("Segmented stacks does not support fastcall with "
1135 "nested function.");
1136 return Primary ? X86::EAX : X86::ECX;
Rafael Espindolac2174212011-08-30 19:39:58 +00001137 }
David Blaikie46a9f012012-01-20 21:51:11 +00001138 if (IsNested)
1139 return Primary ? X86::EDX : X86::EAX;
1140 return Primary ? X86::ECX : X86::EAX;
Rafael Espindolac2174212011-08-30 19:39:58 +00001141}
1142
Sanjoy Das006e43b2011-12-03 09:32:07 +00001143// The stack limit in the TCB is set to this many bytes above the actual stack
1144// limit.
1145static const uint64_t kSplitStackAvailable = 256;
1146
Rafael Espindolac2174212011-08-30 19:39:58 +00001147void
1148X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
1149 MachineBasicBlock &prologueMBB = MF.front();
1150 MachineFrameInfo *MFI = MF.getFrameInfo();
1151 const X86InstrInfo &TII = *TM.getInstrInfo();
1152 uint64_t StackSize;
1153 bool Is64Bit = STI.is64Bit();
1154 unsigned TlsReg, TlsOffset;
1155 DebugLoc DL;
Rafael Espindolac2174212011-08-30 19:39:58 +00001156
Rafael Espindolad90466b2012-01-11 19:00:37 +00001157 unsigned ScratchReg = GetScratchRegister(Is64Bit, MF, true);
Rafael Espindolac2174212011-08-30 19:39:58 +00001158 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1159 "Scratch register is live-in");
1160
1161 if (MF.getFunction()->isVarArg())
1162 report_fatal_error("Segmented stacks do not support vararg functions.");
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001163 if (!STI.isTargetLinux() && !STI.isTargetDarwin() &&
1164 !STI.isTargetWin32() && !STI.isTargetFreeBSD())
Rafael Espindola00e861e2012-01-12 20:24:30 +00001165 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindolac2174212011-08-30 19:39:58 +00001166
1167 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1168 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1169 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1170 bool IsNested = false;
1171
1172 // We need to know if the function has a nest argument only in 64 bit mode.
1173 if (Is64Bit)
1174 IsNested = HasNestArgument(&MF);
1175
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001176 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1177 // allocMBB needs to be last (terminating) instruction.
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001178
Rafael Espindolac2174212011-08-30 19:39:58 +00001179 for (MachineBasicBlock::livein_iterator i = prologueMBB.livein_begin(),
1180 e = prologueMBB.livein_end(); i != e; i++) {
1181 allocMBB->addLiveIn(*i);
1182 checkMBB->addLiveIn(*i);
1183 }
1184
1185 if (IsNested)
Rafael Espindola66393c12011-10-26 21:12:27 +00001186 allocMBB->addLiveIn(X86::R10);
1187
Rafael Espindolac2174212011-08-30 19:39:58 +00001188 MF.push_front(allocMBB);
1189 MF.push_front(checkMBB);
1190
1191 // Eventually StackSize will be calculated by a link-time pass; which will
1192 // also decide whether checking code needs to be injected into this particular
1193 // prologue.
1194 StackSize = MFI->getStackSize();
1195
Rafael Espindolad90466b2012-01-11 19:00:37 +00001196 // When the frame size is less than 256 we just compare the stack
1197 // boundary directly to the value of the stack pointer, per gcc.
1198 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1199
Rafael Espindolac2174212011-08-30 19:39:58 +00001200 // Read the limit off the current stacklet off the stack_guard location.
1201 if (Is64Bit) {
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001202 if (STI.isTargetLinux()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001203 TlsReg = X86::FS;
1204 TlsOffset = 0x70;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001205 } else if (STI.isTargetDarwin()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001206 TlsReg = X86::GS;
1207 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001208 } else if (STI.isTargetFreeBSD()) {
Rafael Espindola00e861e2012-01-12 20:24:30 +00001209 TlsReg = X86::FS;
1210 TlsOffset = 0x18;
Rafael Espindola10745d32012-01-12 20:22:08 +00001211 } else {
1212 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindolad90466b2012-01-11 19:00:37 +00001213 }
Rafael Espindolac2174212011-08-30 19:39:58 +00001214
Rafael Espindolad90466b2012-01-11 19:00:37 +00001215 if (CompareStackPointer)
Sanjoy Das006e43b2011-12-03 09:32:07 +00001216 ScratchReg = X86::RSP;
1217 else
1218 BuildMI(checkMBB, DL, TII.get(X86::LEA64r), ScratchReg).addReg(X86::RSP)
Rafael Espindola6635ae12012-01-11 18:14:03 +00001219 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das006e43b2011-12-03 09:32:07 +00001220
Rafael Espindolac2174212011-08-30 19:39:58 +00001221 BuildMI(checkMBB, DL, TII.get(X86::CMP64rm)).addReg(ScratchReg)
Rafael Espindola6635ae12012-01-11 18:14:03 +00001222 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Rafael Espindolac2174212011-08-30 19:39:58 +00001223 } else {
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001224 if (STI.isTargetLinux()) {
Rafael Espindola10745d32012-01-12 20:22:08 +00001225 TlsReg = X86::GS;
1226 TlsOffset = 0x30;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001227 } else if (STI.isTargetDarwin()) {
Rafael Espindola10745d32012-01-12 20:22:08 +00001228 TlsReg = X86::GS;
1229 TlsOffset = 0x48 + 90*4;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001230 } else if (STI.isTargetWin32()) {
Rafael Espindola10745d32012-01-12 20:22:08 +00001231 TlsReg = X86::FS;
1232 TlsOffset = 0x14; // pvArbitrary, reserved for application use
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001233 } else if (STI.isTargetFreeBSD()) {
Rafael Espindola00e861e2012-01-12 20:24:30 +00001234 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
Rafael Espindola10745d32012-01-12 20:22:08 +00001235 } else {
1236 report_fatal_error("Segmented stacks not supported on this platform.");
1237 }
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::ESP;
1241 else
1242 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
Rafael Espindola6635ae12012-01-11 18:14:03 +00001243 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das006e43b2011-12-03 09:32:07 +00001244
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001245 if (STI.isTargetLinux() || STI.isTargetWin32()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001246 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1247 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001248 } else if (STI.isTargetDarwin()) {
Rafael Espindolad90466b2012-01-11 19:00:37 +00001249
1250 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register
1251 unsigned ScratchReg2;
1252 bool SaveScratch2;
1253 if (CompareStackPointer) {
1254 // The primary scratch register is available for holding the TLS offset
1255 ScratchReg2 = GetScratchRegister(Is64Bit, MF, true);
1256 SaveScratch2 = false;
1257 } else {
1258 // Need to use a second register to hold the TLS offset
1259 ScratchReg2 = GetScratchRegister(Is64Bit, MF, false);
1260
1261 // Unfortunately, with fastcc the second scratch register may hold an arg
1262 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1263 }
1264
1265 // If Scratch2 is live-in then it needs to be saved
1266 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1267 "Scratch register is live-in and not saved");
1268
1269 if (SaveScratch2)
1270 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1271 .addReg(ScratchReg2, RegState::Kill);
1272
1273 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1274 .addImm(TlsOffset);
1275 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1276 .addReg(ScratchReg)
1277 .addReg(ScratchReg2).addImm(1).addReg(0)
1278 .addImm(0)
1279 .addReg(TlsReg);
1280
1281 if (SaveScratch2)
1282 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1283 }
Rafael Espindolac2174212011-08-30 19:39:58 +00001284 }
1285
1286 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1287 // It jumps to normal execution of the function body.
Rafael Espindola2b894482012-01-11 18:23:35 +00001288 BuildMI(checkMBB, DL, TII.get(X86::JA_4)).addMBB(&prologueMBB);
Rafael Espindolac2174212011-08-30 19:39:58 +00001289
1290 // On 32 bit we first push the arguments size and then the frame size. On 64
1291 // bit, we pass the stack frame size in r10 and the argument size in r11.
1292 if (Is64Bit) {
1293 // Functions with nested arguments use R10, so it needs to be saved across
1294 // the call to _morestack
1295
1296 if (IsNested)
1297 BuildMI(allocMBB, DL, TII.get(X86::MOV64rr), X86::RAX).addReg(X86::R10);
1298
1299 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R10)
1300 .addImm(StackSize);
1301 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R11)
1302 .addImm(X86FI->getArgumentStackSize());
1303 MF.getRegInfo().setPhysRegUsed(X86::R10);
1304 MF.getRegInfo().setPhysRegUsed(X86::R11);
1305 } else {
Rafael Espindolac2174212011-08-30 19:39:58 +00001306 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1307 .addImm(X86FI->getArgumentStackSize());
1308 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1309 .addImm(StackSize);
1310 }
1311
1312 // __morestack is in libgcc
1313 if (Is64Bit)
1314 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1315 .addExternalSymbol("__morestack");
1316 else
1317 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1318 .addExternalSymbol("__morestack");
1319
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001320 if (IsNested)
Rafael Espindola66393c12011-10-26 21:12:27 +00001321 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1322 else
1323 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001324
Rafael Espindola66393c12011-10-26 21:12:27 +00001325 allocMBB->addSuccessor(&prologueMBB);
Bill Wendling25f6d3e2011-10-13 08:24:19 +00001326
Rafael Espindolac2174212011-08-30 19:39:58 +00001327 checkMBB->addSuccessor(allocMBB);
1328 checkMBB->addSuccessor(&prologueMBB);
1329
Jakob Stoklund Olesen55cf2ed2011-09-24 01:11:19 +00001330#ifdef XDEBUG
Rafael Espindolac2174212011-08-30 19:39:58 +00001331 MF.verify();
1332#endif
1333}
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001334
Yiannis Tsiourisd4842e52013-02-28 16:59:10 +00001335/// Erlang programs may need a special prologue to handle the stack size they
1336/// might need at runtime. That is because Erlang/OTP does not implement a C
1337/// stack but uses a custom implementation of hybrid stack/heap architecture.
1338/// (for more information see Eric Stenman's Ph.D. thesis:
1339/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1340///
1341/// CheckStack:
1342/// temp0 = sp - MaxStack
1343/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1344/// OldStart:
1345/// ...
1346/// IncStack:
1347/// call inc_stack # doubles the stack space
1348/// temp0 = sp - MaxStack
1349/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001350void X86FrameLowering::adjustForHiPEPrologue(MachineFunction &MF) const {
1351 const X86InstrInfo &TII = *TM.getInstrInfo();
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001352 MachineFrameInfo *MFI = MF.getFrameInfo();
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001353 const unsigned SlotSize = TM.getRegisterInfo()->getSlotSize();
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001354 const bool Is64Bit = STI.is64Bit();
1355 DebugLoc DL;
1356 // HiPE-specific values
1357 const unsigned HipeLeafWords = 24;
1358 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1359 const unsigned Guaranteed = HipeLeafWords * SlotSize;
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001360 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1361 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1362 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001363
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001364 assert(STI.isTargetLinux() &&
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001365 "HiPE prologue is only supported on Linux operating systems.");
1366
1367 // Compute the largest caller's frame that is needed to fit the callees'
1368 // frames. This 'MaxStack' is computed from:
1369 //
1370 // a) the fixed frame size, which is the space needed for all spilled temps,
1371 // b) outgoing on-stack parameter areas, and
1372 // c) the minimum stack space this function needs to make available for the
1373 // functions it calls (a tunable ABI property).
1374 if (MFI->hasCalls()) {
1375 unsigned MoreStackForCalls = 0;
1376
1377 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1378 MBBI != MBBE; ++MBBI)
1379 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001380 MI != ME; ++MI) {
1381 if (!MI->isCall())
1382 continue;
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001383
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001384 // Get callee operand.
1385 const MachineOperand &MO = MI->getOperand(0);
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001386
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001387 // Only take account of global function calls (no closures etc.).
1388 if (!MO.isGlobal())
1389 continue;
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001390
Benjamin Kramer1cb826b2013-02-19 17:32:57 +00001391 const Function *F = dyn_cast<Function>(MO.getGlobal());
1392 if (!F)
1393 continue;
1394
1395 // Do not update 'MaxStack' for primitive and built-in functions
1396 // (encoded with names either starting with "erlang."/"bif_" or not
1397 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1398 // "_", such as the BIF "suspend_0") as they are executed on another
1399 // stack.
1400 if (F->getName().find("erlang.") != StringRef::npos ||
1401 F->getName().find("bif_") != StringRef::npos ||
1402 F->getName().find_first_of("._") == StringRef::npos)
1403 continue;
1404
1405 unsigned CalleeStkArity =
1406 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1407 if (HipeLeafWords - 1 > CalleeStkArity)
1408 MoreStackForCalls = std::max(MoreStackForCalls,
1409 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1410 }
Benjamin Kramer53bc37c2013-02-18 20:55:12 +00001411 MaxStack += MoreStackForCalls;
1412 }
1413
1414 // If the stack frame needed is larger than the guaranteed then runtime checks
1415 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1416 if (MaxStack > Guaranteed) {
1417 MachineBasicBlock &prologueMBB = MF.front();
1418 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1419 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1420
1421 for (MachineBasicBlock::livein_iterator I = prologueMBB.livein_begin(),
1422 E = prologueMBB.livein_end(); I != E; I++) {
1423 stackCheckMBB->addLiveIn(*I);
1424 incStackMBB->addLiveIn(*I);
1425 }
1426
1427 MF.push_front(incStackMBB);
1428 MF.push_front(stackCheckMBB);
1429
1430 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1431 unsigned LEAop, CMPop, CALLop;
1432 if (Is64Bit) {
1433 SPReg = X86::RSP;
1434 PReg = X86::RBP;
1435 LEAop = X86::LEA64r;
1436 CMPop = X86::CMP64rm;
1437 CALLop = X86::CALL64pcrel32;
1438 SPLimitOffset = 0x90;
1439 } else {
1440 SPReg = X86::ESP;
1441 PReg = X86::EBP;
1442 LEAop = X86::LEA32r;
1443 CMPop = X86::CMP32rm;
1444 CALLop = X86::CALLpcrel32;
1445 SPLimitOffset = 0x4c;
1446 }
1447
1448 ScratchReg = GetScratchRegister(Is64Bit, MF, true);
1449 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1450 "HiPE prologue scratch register is live-in");
1451
1452 // Create new MBB for StackCheck:
1453 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
1454 SPReg, false, -MaxStack);
1455 // SPLimitOffset is in a fixed heap location (pointed by BP).
1456 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
1457 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1458 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_4)).addMBB(&prologueMBB);
1459
1460 // Create new MBB for IncStack:
1461 BuildMI(incStackMBB, DL, TII.get(CALLop)).
1462 addExternalSymbol("inc_stack_0");
1463 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
1464 SPReg, false, -MaxStack);
1465 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
1466 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1467 BuildMI(incStackMBB, DL, TII.get(X86::JLE_4)).addMBB(incStackMBB);
1468
1469 stackCheckMBB->addSuccessor(&prologueMBB, 99);
1470 stackCheckMBB->addSuccessor(incStackMBB, 1);
1471 incStackMBB->addSuccessor(&prologueMBB, 99);
1472 incStackMBB->addSuccessor(incStackMBB, 1);
1473 }
1474#ifdef XDEBUG
1475 MF.verify();
1476#endif
1477}
Eli Bendersky8da87162013-02-21 20:05:00 +00001478
1479void X86FrameLowering::
1480eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1481 MachineBasicBlock::iterator I) const {
1482 const X86InstrInfo &TII = *TM.getInstrInfo();
1483 const X86RegisterInfo &RegInfo = *TM.getRegisterInfo();
1484 unsigned StackPtr = RegInfo.getStackRegister();
1485 bool reseveCallFrame = hasReservedCallFrame(MF);
1486 int Opcode = I->getOpcode();
1487 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
1488 bool IsLP64 = STI.isTarget64BitLP64();
1489 DebugLoc DL = I->getDebugLoc();
1490 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
1491 uint64_t CalleeAmt = isDestroy ? I->getOperand(1).getImm() : 0;
1492 I = MBB.erase(I);
1493
1494 if (!reseveCallFrame) {
1495 // If the stack pointer can be changed after prologue, turn the
1496 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
1497 // adjcallstackdown instruction into 'add ESP, <amt>'
1498 // TODO: consider using push / pop instead of sub + store / add
1499 if (Amount == 0)
1500 return;
1501
1502 // We need to keep the stack aligned properly. To do this, we round the
1503 // amount of space needed for the outgoing arguments up to the next
1504 // alignment boundary.
1505 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
1506 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
1507
1508 MachineInstr *New = 0;
1509 if (Opcode == TII.getCallFrameSetupOpcode()) {
1510 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(IsLP64, Amount)),
1511 StackPtr)
1512 .addReg(StackPtr)
1513 .addImm(Amount);
1514 } else {
1515 assert(Opcode == TII.getCallFrameDestroyOpcode());
1516
1517 // Factor out the amount the callee already popped.
1518 Amount -= CalleeAmt;
1519
1520 if (Amount) {
1521 unsigned Opc = getADDriOpcode(IsLP64, Amount);
1522 New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1523 .addReg(StackPtr).addImm(Amount);
1524 }
1525 }
1526
1527 if (New) {
1528 // The EFLAGS implicit def is dead.
1529 New->getOperand(3).setIsDead();
1530
1531 // Replace the pseudo instruction with a new instruction.
1532 MBB.insert(I, New);
1533 }
1534
1535 return;
1536 }
1537
1538 if (Opcode == TII.getCallFrameDestroyOpcode() && CalleeAmt) {
1539 // If we are performing frame pointer elimination and if the callee pops
1540 // something off the stack pointer, add it back. We do this until we have
1541 // more advanced stack pointer tracking ability.
1542 unsigned Opc = getSUBriOpcode(IsLP64, CalleeAmt);
1543 MachineInstr *New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1544 .addReg(StackPtr).addImm(CalleeAmt);
1545
1546 // The EFLAGS implicit def is dead.
1547 New->getOperand(3).setIsDead();
1548
1549 // We are not tracking the stack pointer adjustment by the callee, so make
1550 // sure we restore the stack pointer immediately after the call, there may
1551 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
1552 MachineBasicBlock::iterator B = MBB.begin();
1553 while (I != B && !llvm::prior(I)->isCall())
1554 --I;
1555 MBB.insert(I, New);
1556 }
1557}
1558