blob: 21ad062eda8521dfad5b42ddd14577c7553c509a [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- X86FrameLowering.cpp - X86 Frame Information ----------------------===//
Anton Korobeynikov33464912010-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 Korobeynikov16c29b52011-01-10 12:39:04 +000010// This file contains the X86 implementation of TargetFrameLowering class.
Anton Korobeynikov33464912010-11-15 00:06:54 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000014#include "X86FrameLowering.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000015#include "X86InstrBuilder.h"
16#include "X86InstrInfo.h"
17#include "X86MachineFunctionInfo.h"
Rafael Espindola76927d752011-08-30 19:39:58 +000018#include "X86Subtarget.h"
Anton Korobeynikovd9e33852010-11-18 23:25:52 +000019#include "X86TargetMachine.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000020#include "llvm/Function.h"
21#include "llvm/CodeGen/MachineFrameInfo.h"
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
24#include "llvm/CodeGen/MachineModuleInfo.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
Rafael Espindolaf0adba92011-04-15 15:11:06 +000026#include "llvm/MC/MCAsmInfo.h"
Bill Wendling6a6b8c32011-07-07 00:54:13 +000027#include "llvm/MC/MCSymbol.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000028#include "llvm/Target/TargetData.h"
29#include "llvm/Target/TargetOptions.h"
30#include "llvm/Support/CommandLine.h"
Evan Cheng7158e082011-01-03 22:53:22 +000031#include "llvm/ADT/SmallSet.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000032
33using namespace llvm;
34
35// FIXME: completely move here.
36extern cl::opt<bool> ForceStackAlign;
37
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000038bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-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 Korobeynikov16c29b52011-01-10 12:39:04 +000045bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000046 const MachineFrameInfo *MFI = MF.getFrameInfo();
47 const MachineModuleInfo &MMI = MF.getMMI();
Chad Rosier3fb6eca2012-05-23 23:45:10 +000048 const TargetRegisterInfo *RegInfo = TM.getRegisterInfo();
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000049
Nick Lewycky8a8d4792011-12-02 22:16:29 +000050 return (MF.getTarget().Options.DisableFramePointerElim(MF) ||
Chad Rosier3fb6eca2012-05-23 23:45:10 +000051 RegInfo->needsStackRealignment(MF) ||
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000052 MFI->hasVarSizedObjects() ||
53 MFI->isFrameAddressTaken() ||
54 MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() ||
Jakob Stoklund Olesene208c492012-06-22 03:04:27 +000055 MMI.callsUnwindInit() || MMI.callsEHReturn());
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000056}
57
Anton Korobeynikov33464912010-11-15 00:06:54 +000058static unsigned getSUBriOpcode(unsigned is64Bit, int64_t Imm) {
59 if (is64Bit) {
60 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
70static unsigned getADDriOpcode(unsigned is64Bit, int64_t Imm) {
71 if (is64Bit) {
72 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
Evan Chengde1df102012-02-07 22:50:41 +000082static unsigned getLEArOpcode(unsigned is64Bit) {
83 return is64Bit ? X86::LEA64r : X86::LEA32r;
84}
85
Evan Cheng7158e082011-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 Toppere4fd9072012-03-04 10:43:23 +000098 static const uint16_t CallerSavedRegs32Bit[] = {
Andrew Trick32a183c2011-08-12 00:49:19 +000099 X86::EAX, X86::EDX, X86::ECX, 0
Evan Cheng7158e082011-01-03 22:53:22 +0000100 };
101
Craig Toppere4fd9072012-03-04 10:43:23 +0000102 static const uint16_t CallerSavedRegs64Bit[] = {
Evan Cheng7158e082011-01-03 22:53:22 +0000103 X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI,
Andrew Trick32a183c2011-08-12 00:49:19 +0000104 X86::R8, X86::R9, X86::R10, X86::R11, 0
Evan Cheng7158e082011-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 Toppere4fd9072012-03-04 10:43:23 +0000120 SmallSet<uint16_t, 8> Uses;
Evan Cheng7158e082011-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 Olesen396618b2012-06-01 23:28:30 +0000128 for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
129 Uses.insert(*AI);
Evan Cheng7158e082011-01-03 22:53:22 +0000130 }
131
Craig Toppere4fd9072012-03-04 10:43:23 +0000132 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
Evan Cheng7158e082011-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 Korobeynikov33464912010-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 Cheng7158e082011-01-03 22:53:22 +0000147 unsigned StackPtr, int64_t NumBytes,
Evan Chengde1df102012-02-07 22:50:41 +0000148 bool Is64Bit, bool UseLEA,
149 const TargetInstrInfo &TII, const TargetRegisterInfo &TRI) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000150 bool isSub = NumBytes < 0;
151 uint64_t Offset = isSub ? -NumBytes : NumBytes;
Evan Chengde1df102012-02-07 22:50:41 +0000152 unsigned Opc;
153 if (UseLEA)
154 Opc = getLEArOpcode(Is64Bit);
155 else
156 Opc = isSub
157 ? getSUBriOpcode(Is64Bit, Offset)
158 : getADDriOpcode(Is64Bit, Offset);
159
Anton Korobeynikov33464912010-11-15 00:06:54 +0000160 uint64_t Chunk = (1LL << 31) - 1;
161 DebugLoc DL = MBB.findDebugLoc(MBBI);
162
163 while (Offset) {
164 uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
Evan Cheng7158e082011-01-03 22:53:22 +0000165 if (ThisVal == (Is64Bit ? 8 : 4)) {
166 // Use push / pop instead.
167 unsigned Reg = isSub
Dale Johannesen1e08cd12011-01-04 19:31:24 +0000168 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
Evan Cheng7158e082011-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 Davisaff232a2011-06-12 01:45:54 +0000174 MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
Evan Cheng7158e082011-01-03 22:53:22 +0000175 .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
Charles Davisaff232a2011-06-12 01:45:54 +0000176 if (isSub)
177 MI->setFlag(MachineInstr::FrameSetup);
Evan Cheng7158e082011-01-03 22:53:22 +0000178 Offset -= ThisVal;
179 continue;
180 }
181 }
182
Evan Chengde1df102012-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 Davisaff232a2011-06-12 01:45:54 +0000195 if (isSub)
196 MI->setFlag(MachineInstr::FrameSetup);
Evan Chengde1df102012-02-07 22:50:41 +0000197
Anton Korobeynikov33464912010-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 Chengde1df102012-02-07 22:50:41 +0000211 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
212 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
Anton Korobeynikov33464912010-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 Dasfc926122011-12-01 19:15:08 +0000231 // FIXME: THIS ISN'T RUN!!!
Anton Korobeynikov33464912010-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 Chengde1df102012-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 Korobeynikov33464912010-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 Chengde1df102012-02-07 22:50:41 +0000275 Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
276 Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
Anton Korobeynikov33464912010-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 Korobeynikov16c29b52011-01-10 12:39:04 +0000305void X86FrameLowering::emitCalleeSavedFrameMoves(MachineFunction &MF,
Bill Wendling09b02c82011-07-25 18:00:28 +0000306 MCSymbol *Label,
307 unsigned FramePtr) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000308 MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000309 MachineModuleInfo &MMI = MF.getMMI();
310
311 // Add callee saved registers to move list.
312 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
313 if (CSI.empty()) return;
314
315 std::vector<MachineMove> &Moves = MMI.getFrameMoves();
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000316 const TargetData *TD = TM.getTargetData();
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000317 bool HasFP = hasFP(MF);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000318
319 // Calculate amount of bytes used for return address storing.
Anton Korobeynikove7499112011-01-14 21:57:58 +0000320 int stackGrowth = -TD->getPointerSize();
Anton Korobeynikov33464912010-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 Lattner7a2bdde2011-04-15 05:18:47 +0000325 // Determine maximum offset (minimum due to stack growth).
Anton Korobeynikov33464912010-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 Takumi27635382011-02-05 15:10:54 +0000347 //
Anton Korobeynikov33464912010-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
363 MachineLocation CSDst(MachineLocation::VirtualFP, Offset);
364 MachineLocation CSSrc(Reg);
365 Moves.push_back(MachineMove(Label, CSDst, CSSrc));
366 }
367}
368
Bill Wendling09b02c82011-07-25 18:00:28 +0000369/// getCompactUnwindRegNum - Get the compact unwind number for a given
370/// register. The number corresponds to the enum lists in
371/// compact_unwind_encoding.h.
Craig Topper53146a22012-05-24 05:55:47 +0000372static int getCompactUnwindRegNum(const uint16_t *CURegs, unsigned Reg) {
Bill Wendling10e412e2011-12-14 23:53:24 +0000373 for (int Idx = 1; *CURegs; ++CURegs, ++Idx)
Bill Wendling09b02c82011-07-25 18:00:28 +0000374 if (*CURegs == Reg)
375 return Idx;
376
377 return -1;
378}
379
Bill Wendling57a3cd22011-12-06 21:23:42 +0000380// Number of registers that can be saved in a compact unwind encoding.
381#define CU_NUM_SAVED_REGS 6
382
Bill Wendling09b02c82011-07-25 18:00:28 +0000383/// encodeCompactUnwindRegistersWithoutFrame - Create the permutation encoding
384/// used with frameless stacks. It is passed the number of registers to be saved
385/// and an array of the registers saved.
Bill Wendling57a3cd22011-12-06 21:23:42 +0000386static uint32_t
387encodeCompactUnwindRegistersWithoutFrame(unsigned SavedRegs[CU_NUM_SAVED_REGS],
388 unsigned RegCount, bool Is64Bit) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000389 // The saved registers are numbered from 1 to 6. In order to encode the order
390 // in which they were saved, we re-number them according to their place in the
391 // register order. The re-numbering is relative to the last re-numbered
392 // register. E.g., if we have registers {6, 2, 4, 5} saved in that order:
393 //
394 // Orig Re-Num
395 // ---- ------
396 // 6 6
397 // 2 2
398 // 4 3
399 // 5 3
400 //
Craig Topper53146a22012-05-24 05:55:47 +0000401 static const uint16_t CU32BitRegs[] = {
Bill Wendling09b02c82011-07-25 18:00:28 +0000402 X86::EBX, X86::ECX, X86::EDX, X86::EDI, X86::ESI, X86::EBP, 0
403 };
Craig Topper53146a22012-05-24 05:55:47 +0000404 static const uint16_t CU64BitRegs[] = {
Bill Wendling09b02c82011-07-25 18:00:28 +0000405 X86::RBX, X86::R12, X86::R13, X86::R14, X86::R15, X86::RBP, 0
406 };
Craig Topper53146a22012-05-24 05:55:47 +0000407 const uint16_t *CURegs = (Is64Bit ? CU64BitRegs : CU32BitRegs);
Bill Wendling09b02c82011-07-25 18:00:28 +0000408
Bill Wendling10e412e2011-12-14 23:53:24 +0000409 for (unsigned i = 0; i != CU_NUM_SAVED_REGS; ++i) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000410 int CUReg = getCompactUnwindRegNum(CURegs, SavedRegs[i]);
411 if (CUReg == -1) return ~0U;
412 SavedRegs[i] = CUReg;
Bill Wendling79df9862011-12-06 01:26:14 +0000413 }
Bill Wendling09b02c82011-07-25 18:00:28 +0000414
Bill Wendling10e412e2011-12-14 23:53:24 +0000415 // Reverse the list.
416 std::swap(SavedRegs[0], SavedRegs[5]);
417 std::swap(SavedRegs[1], SavedRegs[4]);
418 std::swap(SavedRegs[2], SavedRegs[3]);
419
Bill Wendling57a3cd22011-12-06 21:23:42 +0000420 uint32_t RenumRegs[CU_NUM_SAVED_REGS];
421 for (unsigned i = CU_NUM_SAVED_REGS - RegCount; i < CU_NUM_SAVED_REGS; ++i) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000422 unsigned Countless = 0;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000423 for (unsigned j = CU_NUM_SAVED_REGS - RegCount; j < i; ++j)
Bill Wendling09b02c82011-07-25 18:00:28 +0000424 if (SavedRegs[j] < SavedRegs[i])
425 ++Countless;
426
427 RenumRegs[i] = SavedRegs[i] - Countless - 1;
428 }
429
430 // Take the renumbered values and encode them into a 10-bit number.
431 uint32_t permutationEncoding = 0;
432 switch (RegCount) {
433 case 6:
434 permutationEncoding |= 120 * RenumRegs[0] + 24 * RenumRegs[1]
435 + 6 * RenumRegs[2] + 2 * RenumRegs[3]
436 + RenumRegs[4];
437 break;
438 case 5:
439 permutationEncoding |= 120 * RenumRegs[1] + 24 * RenumRegs[2]
440 + 6 * RenumRegs[3] + 2 * RenumRegs[4]
441 + RenumRegs[5];
442 break;
443 case 4:
444 permutationEncoding |= 60 * RenumRegs[2] + 12 * RenumRegs[3]
445 + 3 * RenumRegs[4] + RenumRegs[5];
446 break;
447 case 3:
448 permutationEncoding |= 20 * RenumRegs[3] + 4 * RenumRegs[4]
449 + RenumRegs[5];
450 break;
451 case 2:
452 permutationEncoding |= 5 * RenumRegs[4] + RenumRegs[5];
453 break;
454 case 1:
455 permutationEncoding |= RenumRegs[5];
456 break;
457 }
458
459 assert((permutationEncoding & 0x3FF) == permutationEncoding &&
460 "Invalid compact register encoding!");
461 return permutationEncoding;
462}
463
464/// encodeCompactUnwindRegistersWithFrame - Return the registers encoded for a
465/// compact encoding with a frame pointer.
Bill Wendling57a3cd22011-12-06 21:23:42 +0000466static uint32_t
467encodeCompactUnwindRegistersWithFrame(unsigned SavedRegs[CU_NUM_SAVED_REGS],
468 bool Is64Bit) {
Craig Topper53146a22012-05-24 05:55:47 +0000469 static const uint16_t CU32BitRegs[] = {
Bill Wendling09b02c82011-07-25 18:00:28 +0000470 X86::EBX, X86::ECX, X86::EDX, X86::EDI, X86::ESI, X86::EBP, 0
471 };
Craig Topper53146a22012-05-24 05:55:47 +0000472 static const uint16_t CU64BitRegs[] = {
Bill Wendling09b02c82011-07-25 18:00:28 +0000473 X86::RBX, X86::R12, X86::R13, X86::R14, X86::R15, X86::RBP, 0
474 };
Craig Topper53146a22012-05-24 05:55:47 +0000475 const uint16_t *CURegs = (Is64Bit ? CU64BitRegs : CU32BitRegs);
Bill Wendling09b02c82011-07-25 18:00:28 +0000476
477 // Encode the registers in the order they were saved, 3-bits per register. The
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000478 // registers are numbered from 1 to CU_NUM_SAVED_REGS.
Bill Wendling09b02c82011-07-25 18:00:28 +0000479 uint32_t RegEnc = 0;
Bill Wendlingb4ee5162012-01-13 00:41:53 +0000480 for (int I = CU_NUM_SAVED_REGS - 1, Idx = 0; I != -1; --I) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000481 unsigned Reg = SavedRegs[I];
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000482 if (Reg == 0) continue;
483
Bill Wendling09b02c82011-07-25 18:00:28 +0000484 int CURegNum = getCompactUnwindRegNum(CURegs, Reg);
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000485 if (CURegNum == -1) return ~0U;
Bill Wendling80caf9c2011-12-06 01:57:48 +0000486
487 // Encode the 3-bit register number in order, skipping over 3-bits for each
488 // register.
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000489 RegEnc |= (CURegNum & 0x7) << (Idx++ * 3);
Bill Wendling09b02c82011-07-25 18:00:28 +0000490 }
491
Jakob Stoklund Olesendec1f992012-01-11 09:08:04 +0000492 assert((RegEnc & 0x3FFFF) == RegEnc && "Invalid compact register encoding!");
Bill Wendling09b02c82011-07-25 18:00:28 +0000493 return RegEnc;
494}
495
496uint32_t X86FrameLowering::getCompactUnwindEncoding(MachineFunction &MF) const {
497 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
498 unsigned FramePtr = RegInfo->getFrameRegister(MF);
499 unsigned StackPtr = RegInfo->getStackRegister();
500
Bill Wendling09b02c82011-07-25 18:00:28 +0000501 bool Is64Bit = STI.is64Bit();
502 bool HasFP = hasFP(MF);
503
Bill Wendling57a3cd22011-12-06 21:23:42 +0000504 unsigned SavedRegs[CU_NUM_SAVED_REGS] = { 0, 0, 0, 0, 0, 0 };
Bill Wendling10e412e2011-12-14 23:53:24 +0000505 unsigned SavedRegIdx = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000506
507 unsigned OffsetSize = (Is64Bit ? 8 : 4);
508
509 unsigned PushInstr = (Is64Bit ? X86::PUSH64r : X86::PUSH32r);
510 unsigned PushInstrSize = 1;
511 unsigned MoveInstr = (Is64Bit ? X86::MOV64rr : X86::MOV32rr);
512 unsigned MoveInstrSize = (Is64Bit ? 3 : 2);
Bill Wendling09b02c82011-07-25 18:00:28 +0000513 unsigned SubtractInstrIdx = (Is64Bit ? 3 : 2);
514
Bill Wendlingde770552011-07-26 08:03:49 +0000515 unsigned StackDivide = (Is64Bit ? 8 : 4);
516
Bill Wendling09b02c82011-07-25 18:00:28 +0000517 unsigned InstrOffset = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000518 unsigned StackAdjust = 0;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000519 unsigned StackSize = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000520
521 MachineBasicBlock &MBB = MF.front(); // Prologue is in entry BB.
522 bool ExpectEnd = false;
523 for (MachineBasicBlock::iterator
524 MBBI = MBB.begin(), MBBE = MBB.end(); MBBI != MBBE; ++MBBI) {
525 MachineInstr &MI = *MBBI;
526 unsigned Opc = MI.getOpcode();
527 if (Opc == X86::PROLOG_LABEL) continue;
528 if (!MI.getFlag(MachineInstr::FrameSetup)) break;
529
530 // We don't exect any more prolog instructions.
531 if (ExpectEnd) return 0;
532
533 if (Opc == PushInstr) {
534 // If there are too many saved registers, we cannot use compact encoding.
Bill Wendling10e412e2011-12-14 23:53:24 +0000535 if (SavedRegIdx >= CU_NUM_SAVED_REGS) return 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000536
Bill Wendling10e412e2011-12-14 23:53:24 +0000537 SavedRegs[SavedRegIdx++] = MI.getOperand(0).getReg();
Bill Wendling57a3cd22011-12-06 21:23:42 +0000538 StackAdjust += OffsetSize;
Bill Wendling09b02c82011-07-25 18:00:28 +0000539 InstrOffset += PushInstrSize;
540 } else if (Opc == MoveInstr) {
541 unsigned SrcReg = MI.getOperand(1).getReg();
542 unsigned DstReg = MI.getOperand(0).getReg();
543
544 if (DstReg != FramePtr || SrcReg != StackPtr)
545 return 0;
546
Bill Wendling57a3cd22011-12-06 21:23:42 +0000547 StackAdjust = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000548 memset(SavedRegs, 0, sizeof(SavedRegs));
Bill Wendling10e412e2011-12-14 23:53:24 +0000549 SavedRegIdx = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000550 InstrOffset += MoveInstrSize;
Bill Wendling84d518a2011-12-06 22:14:27 +0000551 } else if (Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
552 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) {
Bill Wendling57a3cd22011-12-06 21:23:42 +0000553 if (StackSize)
554 // We already have a stack size.
Bill Wendling09b02c82011-07-25 18:00:28 +0000555 return 0;
556
557 if (!MI.getOperand(0).isReg() ||
558 MI.getOperand(0).getReg() != MI.getOperand(1).getReg() ||
559 MI.getOperand(0).getReg() != StackPtr || !MI.getOperand(2).isImm())
560 // We need this to be a stack adjustment pointer. Something like:
561 //
562 // %RSP<def> = SUB64ri8 %RSP, 48
563 return 0;
564
Bill Wendling57a3cd22011-12-06 21:23:42 +0000565 StackSize = MI.getOperand(2).getImm() / StackDivide;
Bill Wendling09b02c82011-07-25 18:00:28 +0000566 SubtractInstrIdx += InstrOffset;
567 ExpectEnd = true;
568 }
569 }
570
571 // Encode that we are using EBP/RBP as the frame pointer.
572 uint32_t CompactUnwindEncoding = 0;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000573 StackAdjust /= StackDivide;
Bill Wendling09b02c82011-07-25 18:00:28 +0000574 if (HasFP) {
Bill Wendling57a3cd22011-12-06 21:23:42 +0000575 if ((StackAdjust & 0xFF) != StackAdjust)
Bill Wendling09b02c82011-07-25 18:00:28 +0000576 // Offset was too big for compact encoding.
577 return 0;
578
579 // Get the encoding of the saved registers when we have a frame pointer.
580 uint32_t RegEnc = encodeCompactUnwindRegistersWithFrame(SavedRegs, Is64Bit);
Bill Wendling5b2c4972011-12-06 19:16:17 +0000581 if (RegEnc == ~0U) return 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000582
583 CompactUnwindEncoding |= 0x01000000;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000584 CompactUnwindEncoding |= (StackAdjust & 0xFF) << 16;
Bill Wendling09b02c82011-07-25 18:00:28 +0000585 CompactUnwindEncoding |= RegEnc & 0x7FFF;
586 } else {
Bill Wendlingb3ec3292011-12-07 07:58:55 +0000587 ++StackAdjust;
588 uint32_t TotalStackSize = StackAdjust + StackSize;
Bill Wendling581ac272011-12-06 21:34:01 +0000589 if ((TotalStackSize & 0xFF) == TotalStackSize) {
Bill Wendling5b2c4972011-12-06 19:16:17 +0000590 // Frameless stack with a small stack size.
Bill Wendling09b02c82011-07-25 18:00:28 +0000591 CompactUnwindEncoding |= 0x02000000;
Bill Wendling5b2c4972011-12-06 19:16:17 +0000592
593 // Encode the stack size.
Bill Wendling581ac272011-12-06 21:34:01 +0000594 CompactUnwindEncoding |= (TotalStackSize & 0xFF) << 16;
Bill Wendling09b02c82011-07-25 18:00:28 +0000595 } else {
Bill Wendling57a3cd22011-12-06 21:23:42 +0000596 if ((StackAdjust & 0x7) != StackAdjust)
Bill Wendling09b02c82011-07-25 18:00:28 +0000597 // The extra stack adjustments are too big for us to handle.
598 return 0;
599
600 // Frameless stack with an offset too large for us to encode compactly.
601 CompactUnwindEncoding |= 0x03000000;
602
603 // Encode the offset to the nnnnnn value in the 'subl $nnnnnn, ESP'
604 // instruction.
605 CompactUnwindEncoding |= (SubtractInstrIdx & 0xFF) << 16;
606
Bill Wendling57a3cd22011-12-06 21:23:42 +0000607 // Encode any extra stack stack adjustments (done via push instructions).
608 CompactUnwindEncoding |= (StackAdjust & 0x7) << 13;
Bill Wendling09b02c82011-07-25 18:00:28 +0000609 }
610
Bill Wendling5b2c4972011-12-06 19:16:17 +0000611 // Encode the number of registers saved.
Bill Wendling10e412e2011-12-14 23:53:24 +0000612 CompactUnwindEncoding |= (SavedRegIdx & 0x7) << 10;
Bill Wendling75e14e02011-12-06 19:09:06 +0000613
Bill Wendling09b02c82011-07-25 18:00:28 +0000614 // Get the encoding of the saved registers when we don't have a frame
615 // pointer.
Bill Wendling57a3cd22011-12-06 21:23:42 +0000616 uint32_t RegEnc =
Bill Wendling10e412e2011-12-14 23:53:24 +0000617 encodeCompactUnwindRegistersWithoutFrame(SavedRegs, SavedRegIdx,
Bill Wendling57a3cd22011-12-06 21:23:42 +0000618 Is64Bit);
Bill Wendling09b02c82011-07-25 18:00:28 +0000619 if (RegEnc == ~0U) return 0;
Bill Wendling5b2c4972011-12-06 19:16:17 +0000620
621 // Encode the register encoding.
Bill Wendling09b02c82011-07-25 18:00:28 +0000622 CompactUnwindEncoding |= RegEnc & 0x3FF;
623 }
624
625 return CompactUnwindEncoding;
626}
627
Anton Korobeynikov33464912010-11-15 00:06:54 +0000628/// emitPrologue - Push callee-saved registers onto the stack, which
629/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
630/// space for local variables. Also emit labels used by the exception handler to
631/// generate the exception handling frames.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000632void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000633 MachineBasicBlock &MBB = MF.front(); // Prologue goes in entry BB.
634 MachineBasicBlock::iterator MBBI = MBB.begin();
635 MachineFrameInfo *MFI = MF.getFrameInfo();
636 const Function *Fn = MF.getFunction();
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000637 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
638 const X86InstrInfo &TII = *TM.getInstrInfo();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000639 MachineModuleInfo &MMI = MF.getMMI();
640 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
641 bool needsFrameMoves = MMI.hasDebugInfo() ||
Rafael Espindolafc2bb8c2011-05-25 03:44:17 +0000642 Fn->needsUnwindTableEntry();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000643 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
644 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000645 bool HasFP = hasFP(MF);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000646 bool Is64Bit = STI.is64Bit();
647 bool IsWin64 = STI.isTargetWin64();
Evan Chengde1df102012-02-07 22:50:41 +0000648 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000649 unsigned StackAlign = getStackAlignment();
650 unsigned SlotSize = RegInfo->getSlotSize();
651 unsigned FramePtr = RegInfo->getFrameRegister(MF);
652 unsigned StackPtr = RegInfo->getStackRegister();
Chad Rosier3f0dbab2012-07-10 17:45:53 +0000653 unsigned BasePtr = RegInfo->getBaseRegister();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000654 DebugLoc DL;
655
656 // If we're forcing a stack realignment we can't rely on just the frame
657 // info, we need to know the ABI stack alignment as well in case we
658 // have a call out. Otherwise just make sure we have some alignment - we'll
659 // go with the minimum SlotSize.
660 if (ForceStackAlign) {
661 if (MFI->hasCalls())
662 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
663 else if (MaxAlign < SlotSize)
664 MaxAlign = SlotSize;
665 }
666
667 // Add RETADDR move area to callee saved frame size.
668 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
669 if (TailCallReturnAddrDelta < 0)
670 X86FI->setCalleeSavedFrameSize(
671 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
672
673 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
674 // function, and use up to 128 bytes of stack space, don't have a frame
675 // pointer, calls, or dynamic alloca then we do not need to adjust the
676 // stack pointer (we fit in the Red Zone).
677 if (Is64Bit && !Fn->hasFnAttr(Attribute::NoRedZone) &&
678 !RegInfo->needsStackRealignment(MF) &&
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000679 !MFI->hasVarSizedObjects() && // No dynamic alloca.
680 !MFI->adjustsStack() && // No calls.
681 !IsWin64 && // Win64 has no Red Zone
682 !MF.getTarget().Options.EnableSegmentedStacks) { // Regular stack
Anton Korobeynikov33464912010-11-15 00:06:54 +0000683 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
684 if (HasFP) MinSize += SlotSize;
685 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
686 MFI->setStackSize(StackSize);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000687 }
688
689 // Insert stack pointer adjustment for later moving of return addr. Only
690 // applies to tail call optimized functions where the callee argument stack
691 // size is bigger than the callers.
692 if (TailCallReturnAddrDelta < 0) {
693 MachineInstr *MI =
694 BuildMI(MBB, MBBI, DL,
695 TII.get(getSUBriOpcode(Is64Bit, -TailCallReturnAddrDelta)),
696 StackPtr)
697 .addReg(StackPtr)
Charles Davisaff232a2011-06-12 01:45:54 +0000698 .addImm(-TailCallReturnAddrDelta)
699 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000700 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
701 }
702
703 // Mapping for machine moves:
704 //
705 // DST: VirtualFP AND
706 // SRC: VirtualFP => DW_CFA_def_cfa_offset
707 // ELSE => DW_CFA_def_cfa
708 //
709 // SRC: VirtualFP AND
710 // DST: Register => DW_CFA_def_cfa_register
711 //
712 // ELSE
713 // OFFSET < 0 => DW_CFA_offset_extended_sf
714 // REG < 64 => DW_CFA_offset + Reg
715 // ELSE => DW_CFA_offset_extended
716
717 std::vector<MachineMove> &Moves = MMI.getFrameMoves();
718 const TargetData *TD = MF.getTarget().getTargetData();
719 uint64_t NumBytes = 0;
720 int stackGrowth = -TD->getPointerSize();
721
722 if (HasFP) {
723 // Calculate required stack adjustment.
724 uint64_t FrameSize = StackSize - SlotSize;
725 if (RegInfo->needsStackRealignment(MF))
726 FrameSize = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
727
728 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
729
730 // Get the offset of the stack slot for the EBP register, which is
731 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
732 // Update the frame offset adjustment.
733 MFI->setOffsetAdjustment(-NumBytes);
734
735 // Save EBP/RBP into the appropriate stack slot.
736 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
Charles Davisaff232a2011-06-12 01:45:54 +0000737 .addReg(FramePtr, RegState::Kill)
738 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000739
740 if (needsFrameMoves) {
741 // Mark the place where EBP/RBP was saved.
742 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol();
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000743 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
744 .addSym(FrameLabel);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000745
746 // Define the current CFA rule to use the provided offset.
747 if (StackSize) {
748 MachineLocation SPDst(MachineLocation::VirtualFP);
749 MachineLocation SPSrc(MachineLocation::VirtualFP, 2 * stackGrowth);
750 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc));
751 } else {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000752 MachineLocation SPDst(StackPtr);
753 MachineLocation SPSrc(StackPtr, stackGrowth);
754 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc));
755 }
756
757 // Change the rule for the FramePtr to be an "offset" rule.
758 MachineLocation FPDst(MachineLocation::VirtualFP, 2 * stackGrowth);
759 MachineLocation FPSrc(FramePtr);
760 Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc));
761 }
762
Bill Wendling09b02c82011-07-25 18:00:28 +0000763 // Update EBP with the new base value.
Anton Korobeynikov33464912010-11-15 00:06:54 +0000764 BuildMI(MBB, MBBI, DL,
765 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), FramePtr)
Charles Davisaff232a2011-06-12 01:45:54 +0000766 .addReg(StackPtr)
767 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000768
769 if (needsFrameMoves) {
770 // Mark effective beginning of when frame pointer becomes valid.
771 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol();
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000772 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
773 .addSym(FrameLabel);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000774
775 // Define the current CFA to use the EBP/RBP register.
776 MachineLocation FPDst(FramePtr);
777 MachineLocation FPSrc(MachineLocation::VirtualFP);
778 Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc));
779 }
780
781 // Mark the FramePtr as live-in in every block except the entry.
782 for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end();
783 I != E; ++I)
784 I->addLiveIn(FramePtr);
785
786 // Realign stack
787 if (RegInfo->needsStackRealignment(MF)) {
788 MachineInstr *MI =
789 BuildMI(MBB, MBBI, DL,
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000790 TII.get(Is64Bit ? X86::AND64ri32 : X86::AND32ri), StackPtr)
791 .addReg(StackPtr)
792 .addImm(-MaxAlign)
793 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000794
795 // The EFLAGS implicit def is dead.
796 MI->getOperand(3).setIsDead();
797 }
798 } else {
799 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
800 }
801
802 // Skip the callee-saved push instructions.
803 bool PushedRegs = false;
804 int StackOffset = 2 * stackGrowth;
805
806 while (MBBI != MBB.end() &&
807 (MBBI->getOpcode() == X86::PUSH32r ||
808 MBBI->getOpcode() == X86::PUSH64r)) {
809 PushedRegs = true;
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000810 MBBI->setFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000811 ++MBBI;
812
813 if (!HasFP && needsFrameMoves) {
814 // Mark callee-saved push instruction.
815 MCSymbol *Label = MMI.getContext().CreateTempSymbol();
816 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL)).addSym(Label);
817
818 // Define the current CFA rule to use the provided offset.
Bill Wendling09b02c82011-07-25 18:00:28 +0000819 unsigned Ptr = StackSize ? MachineLocation::VirtualFP : StackPtr;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000820 MachineLocation SPDst(Ptr);
821 MachineLocation SPSrc(Ptr, StackOffset);
822 Moves.push_back(MachineMove(Label, SPDst, SPSrc));
823 StackOffset += stackGrowth;
824 }
825 }
826
827 DL = MBB.findDebugLoc(MBBI);
828
829 // If there is an SUB32ri of ESP immediately before this instruction, merge
830 // the two. This can be the case when tail call elimination is enabled and
831 // the callee has more arguments then the caller.
832 NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true);
833
834 // If there is an ADD32ri or SUB32ri of ESP immediately after this
835 // instruction, merge the two instructions.
836 mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes);
837
838 // Adjust stack pointer: ESP -= numbytes.
839
840 // Windows and cygwin/mingw require a prologue helper routine when allocating
841 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
842 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
843 // stack and adjust the stack pointer in one go. The 64-bit version of
844 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
845 // responsible for adjusting the stack pointer. Touching the stack at 4K
846 // increments is necessary to ensure that the guard pages used by the OS
847 // virtual memory manager are allocated in correct sequence.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000848 if (NumBytes >= 4096 && STI.isTargetCOFF() && !STI.isTargetEnvMacho()) {
849 const char *StackProbeSymbol;
850 bool isSPUpdateNeeded = false;
851
852 if (Is64Bit) {
853 if (STI.isTargetCygMing())
854 StackProbeSymbol = "___chkstk";
855 else {
856 StackProbeSymbol = "__chkstk";
857 isSPUpdateNeeded = true;
858 }
859 } else if (STI.isTargetCygMing())
860 StackProbeSymbol = "_alloca";
861 else
862 StackProbeSymbol = "_chkstk";
863
Anton Korobeynikov33464912010-11-15 00:06:54 +0000864 // Check whether EAX is livein for this function.
865 bool isEAXAlive = isEAXLiveIn(MF);
866
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000867 if (isEAXAlive) {
868 // Sanity check that EAX is not livein for this function.
869 // It should not be, so throw an assert.
870 assert(!Is64Bit && "EAX is livein in x64 case!");
871
Anton Korobeynikov33464912010-11-15 00:06:54 +0000872 // Save EAX
873 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000874 .addReg(X86::EAX, RegState::Kill)
875 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000876 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000877
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000878 if (Is64Bit) {
879 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
880 // Function prologue is responsible for adjusting the stack pointer.
881 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000882 .addImm(NumBytes)
883 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000884 } else {
885 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
886 // We'll also use 4 already allocated bytes for EAX.
887 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000888 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
889 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000890 }
891
892 BuildMI(MBB, MBBI, DL,
893 TII.get(Is64Bit ? X86::W64ALLOCA : X86::CALLpcrel32))
894 .addExternalSymbol(StackProbeSymbol)
895 .addReg(StackPtr, RegState::Define | RegState::Implicit)
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000896 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit)
897 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000898
899 // MSVC x64's __chkstk needs to adjust %rsp.
900 // FIXME: %rax preserves the offset and should be available.
901 if (isSPUpdateNeeded)
902 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit,
Evan Chengde1df102012-02-07 22:50:41 +0000903 UseLEA, TII, *RegInfo);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000904
905 if (isEAXAlive) {
906 // Restore EAX
907 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
908 X86::EAX),
909 StackPtr, false, NumBytes - 4);
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000910 MI->setFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000911 MBB.insert(MBBI, MI);
912 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000913 } else if (NumBytes)
Evan Cheng7158e082011-01-03 22:53:22 +0000914 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit,
Evan Chengde1df102012-02-07 22:50:41 +0000915 UseLEA, TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000916
Chad Rosier3f0dbab2012-07-10 17:45:53 +0000917 // If we need a base pointer, set it up here. It's whatever the value
918 // of the stack pointer is at this point. Any variable size objects
919 // will be allocated after this, so we can still use the base pointer
920 // to reference locals.
921 if (RegInfo->hasBasePointer(MF)) {
922 // Update the frame pointer with the current stack pointer.
923 unsigned Opc = Is64Bit ? X86::MOV64rr : X86::MOV32rr;
924 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
925 .addReg(StackPtr)
926 .setMIFlag(MachineInstr::FrameSetup);
927
928 MFI->setBasePtrStackAdjustment(NumBytes);
929 }
930
Rafael Espindolaf0adba92011-04-15 15:11:06 +0000931 if (( (!HasFP && NumBytes) || PushedRegs) && needsFrameMoves) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000932 // Mark end of stack pointer adjustment.
933 MCSymbol *Label = MMI.getContext().CreateTempSymbol();
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000934 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
935 .addSym(Label);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000936
937 if (!HasFP && NumBytes) {
938 // Define the current CFA rule to use the provided offset.
939 if (StackSize) {
940 MachineLocation SPDst(MachineLocation::VirtualFP);
941 MachineLocation SPSrc(MachineLocation::VirtualFP,
942 -StackSize + stackGrowth);
943 Moves.push_back(MachineMove(Label, SPDst, SPSrc));
944 } else {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000945 MachineLocation SPDst(StackPtr);
946 MachineLocation SPSrc(StackPtr, stackGrowth);
947 Moves.push_back(MachineMove(Label, SPDst, SPSrc));
948 }
949 }
950
951 // Emit DWARF info specifying the offsets of the callee-saved registers.
952 if (PushedRegs)
953 emitCalleeSavedFrameMoves(MF, Label, HasFP ? FramePtr : StackPtr);
954 }
Bill Wendling09b02c82011-07-25 18:00:28 +0000955
956 // Darwin 10.7 and greater has support for compact unwind encoding.
Bill Wendlingc8725d12011-09-06 23:47:14 +0000957 if (STI.getTargetTriple().isMacOSX() &&
Eli Friedmanac86d432011-08-31 16:19:51 +0000958 !STI.getTargetTriple().isMacOSXVersionLT(10, 7))
Bill Wendling09b02c82011-07-25 18:00:28 +0000959 MMI.setCompactUnwindEncoding(getCompactUnwindEncoding(MF));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000960}
961
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000962void X86FrameLowering::emitEpilogue(MachineFunction &MF,
Nick Lewycky3c2f0a12011-06-14 03:23:52 +0000963 MachineBasicBlock &MBB) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000964 const MachineFrameInfo *MFI = MF.getFrameInfo();
965 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000966 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
967 const X86InstrInfo &TII = *TM.getInstrInfo();
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +0000968 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
969 assert(MBBI != MBB.end() && "Returning block has no instructions");
Anton Korobeynikov33464912010-11-15 00:06:54 +0000970 unsigned RetOpcode = MBBI->getOpcode();
971 DebugLoc DL = MBBI->getDebugLoc();
972 bool Is64Bit = STI.is64Bit();
Evan Chengde1df102012-02-07 22:50:41 +0000973 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000974 unsigned StackAlign = getStackAlignment();
975 unsigned SlotSize = RegInfo->getSlotSize();
976 unsigned FramePtr = RegInfo->getFrameRegister(MF);
977 unsigned StackPtr = RegInfo->getStackRegister();
Chad Rosier3f0dbab2012-07-10 17:45:53 +0000978 unsigned BasePtr = RegInfo->getBaseRegister();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000979
980 switch (RetOpcode) {
981 default:
982 llvm_unreachable("Can only insert epilog into returning blocks");
983 case X86::RET:
984 case X86::RETI:
985 case X86::TCRETURNdi:
986 case X86::TCRETURNri:
987 case X86::TCRETURNmi:
988 case X86::TCRETURNdi64:
989 case X86::TCRETURNri64:
990 case X86::TCRETURNmi64:
991 case X86::EH_RETURN:
992 case X86::EH_RETURN64:
993 break; // These are ok
994 }
995
996 // Get the number of bytes to allocate from the FrameInfo.
997 uint64_t StackSize = MFI->getStackSize();
998 uint64_t MaxAlign = MFI->getMaxAlignment();
999 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
1000 uint64_t NumBytes = 0;
1001
1002 // If we're forcing a stack realignment we can't rely on just the frame
1003 // info, we need to know the ABI stack alignment as well in case we
1004 // have a call out. Otherwise just make sure we have some alignment - we'll
1005 // go with the minimum.
1006 if (ForceStackAlign) {
1007 if (MFI->hasCalls())
1008 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
1009 else
1010 MaxAlign = MaxAlign ? MaxAlign : 4;
1011 }
1012
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001013 if (hasFP(MF)) {
Anton Korobeynikov33464912010-11-15 00:06:54 +00001014 // Calculate required stack adjustment.
1015 uint64_t FrameSize = StackSize - SlotSize;
1016 if (RegInfo->needsStackRealignment(MF))
1017 FrameSize = (FrameSize + MaxAlign - 1)/MaxAlign*MaxAlign;
1018
1019 NumBytes = FrameSize - CSSize;
1020
1021 // Pop EBP.
1022 BuildMI(MBB, MBBI, DL,
1023 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), FramePtr);
1024 } else {
1025 NumBytes = StackSize - CSSize;
1026 }
1027
1028 // Skip the callee-saved pop instructions.
1029 MachineBasicBlock::iterator LastCSPop = MBBI;
1030 while (MBBI != MBB.begin()) {
1031 MachineBasicBlock::iterator PI = prior(MBBI);
1032 unsigned Opc = PI->getOpcode();
1033
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +00001034 if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE &&
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001035 !PI->isTerminator())
Anton Korobeynikov33464912010-11-15 00:06:54 +00001036 break;
1037
1038 --MBBI;
1039 }
1040
1041 DL = MBBI->getDebugLoc();
1042
1043 // If there is an ADD32ri or SUB32ri of ESP immediately before this
1044 // instruction, merge the two instructions.
1045 if (NumBytes || MFI->hasVarSizedObjects())
1046 mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
1047
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001048 // Restore the SP from the BP, if necessary.
1049 if (RegInfo->hasBasePointer(MF)) {
1050 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
1051 StackPtr).addReg(BasePtr);
1052
1053 // When restoring from the BP we must use a cached SP adjustment.
1054 NumBytes = MFI->getBasePtrStackAdjustment();
1055 }
1056
Anton Korobeynikov33464912010-11-15 00:06:54 +00001057 // If dynamic alloca is used, then reset esp to point to the last callee-saved
1058 // slot before popping them off! Same applies for the case, when stack was
1059 // realigned.
1060 if (RegInfo->needsStackRealignment(MF)) {
1061 // We cannot use LEA here, because stack pointer was realigned. We need to
1062 // deallocate local frame back.
1063 if (CSSize) {
Evan Chengde1df102012-02-07 22:50:41 +00001064 emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, UseLEA, TII,
1065 *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001066 MBBI = prior(LastCSPop);
1067 }
1068
1069 BuildMI(MBB, MBBI, DL,
1070 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
1071 StackPtr).addReg(FramePtr);
1072 } else if (MFI->hasVarSizedObjects()) {
1073 if (CSSize) {
1074 unsigned Opc = Is64Bit ? X86::LEA64r : X86::LEA32r;
1075 MachineInstr *MI =
1076 addRegOffset(BuildMI(MF, DL, TII.get(Opc), StackPtr),
1077 FramePtr, false, -CSSize);
1078 MBB.insert(MBBI, MI);
1079 } else {
1080 BuildMI(MBB, MBBI, DL,
1081 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), StackPtr)
1082 .addReg(FramePtr);
1083 }
1084 } else if (NumBytes) {
1085 // Adjust stack pointer back: ESP += numbytes.
Evan Chengde1df102012-02-07 22:50:41 +00001086 emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, UseLEA, TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001087 }
1088
1089 // We're returning from function via eh_return.
1090 if (RetOpcode == X86::EH_RETURN || RetOpcode == X86::EH_RETURN64) {
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +00001091 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +00001092 MachineOperand &DestAddr = MBBI->getOperand(0);
1093 assert(DestAddr.isReg() && "Offset should be in register!");
1094 BuildMI(MBB, MBBI, DL,
1095 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
1096 StackPtr).addReg(DestAddr.getReg());
1097 } else if (RetOpcode == X86::TCRETURNri || RetOpcode == X86::TCRETURNdi ||
1098 RetOpcode == X86::TCRETURNmi ||
1099 RetOpcode == X86::TCRETURNri64 || RetOpcode == X86::TCRETURNdi64 ||
1100 RetOpcode == X86::TCRETURNmi64) {
1101 bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64;
1102 // Tail call return: adjust the stack pointer and jump to callee.
Jakob Stoklund Olesenf7ca9762011-01-13 22:47:43 +00001103 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +00001104 MachineOperand &JumpTarget = MBBI->getOperand(0);
1105 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
1106 assert(StackAdjust.isImm() && "Expecting immediate value.");
1107
1108 // Adjust stack pointer.
1109 int StackAdj = StackAdjust.getImm();
1110 int MaxTCDelta = X86FI->getTCReturnAddrDelta();
1111 int Offset = 0;
1112 assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
1113
1114 // Incoporate the retaddr area.
1115 Offset = StackAdj-MaxTCDelta;
1116 assert(Offset >= 0 && "Offset should never be negative");
1117
1118 if (Offset) {
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001119 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikov33464912010-11-15 00:06:54 +00001120 Offset += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Evan Chengde1df102012-02-07 22:50:41 +00001121 emitSPUpdate(MBB, MBBI, StackPtr, Offset, Is64Bit, UseLEA, TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001122 }
1123
1124 // Jump to label or value in register.
1125 if (RetOpcode == X86::TCRETURNdi || RetOpcode == X86::TCRETURNdi64) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001126 MachineInstrBuilder MIB =
1127 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNdi)
1128 ? X86::TAILJMPd : X86::TAILJMPd64));
1129 if (JumpTarget.isGlobal())
1130 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
1131 JumpTarget.getTargetFlags());
1132 else {
1133 assert(JumpTarget.isSymbol());
1134 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
1135 JumpTarget.getTargetFlags());
1136 }
Anton Korobeynikov33464912010-11-15 00:06:54 +00001137 } else if (RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64) {
1138 MachineInstrBuilder MIB =
1139 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNmi)
1140 ? X86::TAILJMPm : X86::TAILJMPm64));
1141 for (unsigned i = 0; i != 5; ++i)
1142 MIB.addOperand(MBBI->getOperand(i));
1143 } else if (RetOpcode == X86::TCRETURNri64) {
1144 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr64)).
1145 addReg(JumpTarget.getReg(), RegState::Kill);
1146 } else {
1147 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr)).
1148 addReg(JumpTarget.getReg(), RegState::Kill);
1149 }
1150
1151 MachineInstr *NewMI = prior(MBBI);
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +00001152 NewMI->copyImplicitOps(MBBI);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001153
1154 // Delete the pseudo instruction TCRETURN.
1155 MBB.erase(MBBI);
1156 } else if ((RetOpcode == X86::RET || RetOpcode == X86::RETI) &&
1157 (X86FI->getTCReturnAddrDelta() < 0)) {
1158 // Add the return addr area delta back since we are not tail calling.
1159 int delta = -1*X86FI->getTCReturnAddrDelta();
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +00001160 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +00001161
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001162 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikov33464912010-11-15 00:06:54 +00001163 delta += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Evan Chengde1df102012-02-07 22:50:41 +00001164 emitSPUpdate(MBB, MBBI, StackPtr, delta, Is64Bit, UseLEA, TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001165 }
1166}
Anton Korobeynikovd9e33852010-11-18 23:25:52 +00001167
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001168int X86FrameLowering::getFrameIndexOffset(const MachineFunction &MF, int FI) const {
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001169 const X86RegisterInfo *RegInfo =
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001170 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
1171 const MachineFrameInfo *MFI = MF.getFrameInfo();
1172 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
1173 uint64_t StackSize = MFI->getStackSize();
1174
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001175 if (RegInfo->hasBasePointer(MF)) {
1176 assert (hasFP(MF) && "VLAs and dynamic stack realign, but no FP?!");
1177 if (FI < 0) {
1178 // Skip the saved EBP.
1179 return Offset + RegInfo->getSlotSize();
1180 } else {
1181 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1182 return Offset + StackSize;
1183 }
1184 } else if (RegInfo->needsStackRealignment(MF)) {
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001185 if (FI < 0) {
1186 // Skip the saved EBP.
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001187 return Offset + RegInfo->getSlotSize();
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001188 } else {
Duncan Sands17001ce2011-10-18 12:44:00 +00001189 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001190 return Offset + StackSize;
1191 }
1192 // FIXME: Support tail calls
1193 } else {
1194 if (!hasFP(MF))
1195 return Offset + StackSize;
1196
1197 // Skip the saved EBP.
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001198 Offset += RegInfo->getSlotSize();
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001199
1200 // Skip the RETADDR move area
1201 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1202 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1203 if (TailCallReturnAddrDelta < 0)
1204 Offset -= TailCallReturnAddrDelta;
1205 }
1206
1207 return Offset;
1208}
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001209
Alexey Samsonovd07d06c2012-05-01 15:16:06 +00001210int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1211 unsigned &FrameReg) const {
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001212 const X86RegisterInfo *RegInfo =
Alexey Samsonovd07d06c2012-05-01 15:16:06 +00001213 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
1214 // We can't calculate offset from frame pointer if the stack is realigned,
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001215 // so enforce usage of stack/base pointer. The base pointer is used when we
1216 // have dynamic allocas in addition to dynamic realignment.
1217 if (RegInfo->hasBasePointer(MF))
1218 FrameReg = RegInfo->getBaseRegister();
1219 else if (RegInfo->needsStackRealignment(MF))
1220 FrameReg = RegInfo->getStackRegister();
1221 else
1222 FrameReg = RegInfo->getFrameRegister(MF);
Alexey Samsonovd07d06c2012-05-01 15:16:06 +00001223 return getFrameIndexOffset(MF, FI);
1224}
1225
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001226bool X86FrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001227 MachineBasicBlock::iterator MI,
1228 const std::vector<CalleeSavedInfo> &CSI,
1229 const TargetRegisterInfo *TRI) const {
1230 if (CSI.empty())
1231 return false;
1232
1233 DebugLoc DL = MBB.findDebugLoc(MI);
1234
1235 MachineFunction &MF = *MBB.getParent();
1236
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001237 unsigned SlotSize = STI.is64Bit() ? 8 : 4;
1238 unsigned FPReg = TRI->getFrameRegister(MF);
1239 unsigned CalleeFrameSize = 0;
1240
1241 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
1242 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1243
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001244 // Push GPRs. It increases frame size.
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001245 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
1246 for (unsigned i = CSI.size(); i != 0; --i) {
1247 unsigned Reg = CSI[i-1].getReg();
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001248 if (!X86::GR64RegClass.contains(Reg) &&
1249 !X86::GR32RegClass.contains(Reg))
1250 continue;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001251 // Add the callee-saved register as live-in. It's killed at the spill.
1252 MBB.addLiveIn(Reg);
1253 if (Reg == FPReg)
1254 // X86RegisterInfo::emitPrologue will handle spilling of frame register.
1255 continue;
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001256 CalleeFrameSize += SlotSize;
Charles Davisaff232a2011-06-12 01:45:54 +00001257 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1258 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001259 }
1260
1261 X86FI->setCalleeSavedFrameSize(CalleeFrameSize);
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001262
1263 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1264 // It can be done by spilling XMMs to stack frame.
1265 // Note that only Win64 ABI might spill XMMs.
1266 for (unsigned i = CSI.size(); i != 0; --i) {
1267 unsigned Reg = CSI[i-1].getReg();
1268 if (X86::GR64RegClass.contains(Reg) ||
1269 X86::GR32RegClass.contains(Reg))
1270 continue;
1271 // Add the callee-saved register as live-in. It's killed at the spill.
1272 MBB.addLiveIn(Reg);
1273 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1274 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i-1].getFrameIdx(),
1275 RC, TRI);
1276 }
1277
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001278 return true;
1279}
1280
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001281bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001282 MachineBasicBlock::iterator MI,
1283 const std::vector<CalleeSavedInfo> &CSI,
1284 const TargetRegisterInfo *TRI) const {
1285 if (CSI.empty())
1286 return false;
1287
1288 DebugLoc DL = MBB.findDebugLoc(MI);
1289
1290 MachineFunction &MF = *MBB.getParent();
1291 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001292
1293 // Reload XMMs from stack frame.
1294 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1295 unsigned Reg = CSI[i].getReg();
1296 if (X86::GR64RegClass.contains(Reg) ||
1297 X86::GR32RegClass.contains(Reg))
1298 continue;
1299 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1300 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(),
1301 RC, TRI);
1302 }
1303
1304 // POP GPRs.
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001305 unsigned FPReg = TRI->getFrameRegister(MF);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001306 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1307 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1308 unsigned Reg = CSI[i].getReg();
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001309 if (!X86::GR64RegClass.contains(Reg) &&
1310 !X86::GR32RegClass.contains(Reg))
1311 continue;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001312 if (Reg == FPReg)
1313 // X86RegisterInfo::emitEpilogue will handle restoring of frame register.
1314 continue;
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001315 BuildMI(MBB, MI, DL, TII.get(Opc), Reg);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001316 }
1317 return true;
1318}
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001319
1320void
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001321X86FrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001322 RegScavenger *RS) const {
1323 MachineFrameInfo *MFI = MF.getFrameInfo();
1324 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
1325 unsigned SlotSize = RegInfo->getSlotSize();
1326
1327 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1328 int32_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1329
1330 if (TailCallReturnAddrDelta < 0) {
1331 // create RETURNADDR area
1332 // arg
1333 // arg
1334 // RETADDR
1335 // { ...
1336 // RETADDR area
1337 // ...
1338 // }
1339 // [EBP]
1340 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1341 (-1U*SlotSize)+TailCallReturnAddrDelta, true);
1342 }
1343
1344 if (hasFP(MF)) {
1345 assert((TailCallReturnAddrDelta <= 0) &&
1346 "The Delta should always be zero or negative");
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001347 const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001348
1349 // Create a frame entry for the EBP register that must be saved.
1350 int FrameIdx = MFI->CreateFixedObject(SlotSize,
1351 -(int)SlotSize +
1352 TFI.getOffsetOfLocalArea() +
1353 TailCallReturnAddrDelta,
1354 true);
1355 assert(FrameIdx == MFI->getObjectIndexBegin() &&
1356 "Slot for EBP register must be last in order to be found!");
Duncan Sands17001ce2011-10-18 12:44:00 +00001357 (void)FrameIdx;
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001358 }
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001359
1360 // Spill the BasePtr if it's used.
1361 if (RegInfo->hasBasePointer(MF))
1362 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001363}
Rafael Espindola76927d752011-08-30 19:39:58 +00001364
1365static bool
1366HasNestArgument(const MachineFunction *MF) {
1367 const Function *F = MF->getFunction();
1368 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1369 I != E; I++) {
1370 if (I->hasNestAttr())
1371 return true;
1372 }
1373 return false;
1374}
1375
Rafael Espindola2028b792012-01-11 19:00:37 +00001376
1377/// GetScratchRegister - Get a register for performing work in the segmented
1378/// stack prologue. Depending on platform and the properties of the function
1379/// either one or two registers will be needed. Set primary to true for
1380/// the first register, false for the second.
Rafael Espindola76927d752011-08-30 19:39:58 +00001381static unsigned
Rafael Espindola2028b792012-01-11 19:00:37 +00001382GetScratchRegister(bool Is64Bit, const MachineFunction &MF, bool Primary) {
David Blaikie4d6ccb52012-01-20 21:51:11 +00001383 if (Is64Bit)
Rafael Espindola2028b792012-01-11 19:00:37 +00001384 return Primary ? X86::R11 : X86::R12;
Rafael Espindola76927d752011-08-30 19:39:58 +00001385
David Blaikie4d6ccb52012-01-20 21:51:11 +00001386 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1387 bool IsNested = HasNestArgument(&MF);
1388
1389 if (CallingConvention == CallingConv::X86_FastCall ||
1390 CallingConvention == CallingConv::Fast) {
1391 if (IsNested)
1392 report_fatal_error("Segmented stacks does not support fastcall with "
1393 "nested function.");
1394 return Primary ? X86::EAX : X86::ECX;
Rafael Espindola76927d752011-08-30 19:39:58 +00001395 }
David Blaikie4d6ccb52012-01-20 21:51:11 +00001396 if (IsNested)
1397 return Primary ? X86::EDX : X86::EAX;
1398 return Primary ? X86::ECX : X86::EAX;
Rafael Espindola76927d752011-08-30 19:39:58 +00001399}
1400
Sanjoy Das199ce332011-12-03 09:32:07 +00001401// The stack limit in the TCB is set to this many bytes above the actual stack
1402// limit.
1403static const uint64_t kSplitStackAvailable = 256;
1404
Rafael Espindola76927d752011-08-30 19:39:58 +00001405void
1406X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
1407 MachineBasicBlock &prologueMBB = MF.front();
1408 MachineFrameInfo *MFI = MF.getFrameInfo();
1409 const X86InstrInfo &TII = *TM.getInstrInfo();
1410 uint64_t StackSize;
1411 bool Is64Bit = STI.is64Bit();
1412 unsigned TlsReg, TlsOffset;
1413 DebugLoc DL;
1414 const X86Subtarget *ST = &MF.getTarget().getSubtarget<X86Subtarget>();
1415
Rafael Espindola2028b792012-01-11 19:00:37 +00001416 unsigned ScratchReg = GetScratchRegister(Is64Bit, MF, true);
Rafael Espindola76927d752011-08-30 19:39:58 +00001417 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1418 "Scratch register is live-in");
1419
1420 if (MF.getFunction()->isVarArg())
1421 report_fatal_error("Segmented stacks do not support vararg functions.");
Rafael Espindola85b9d432012-01-12 20:24:30 +00001422 if (!ST->isTargetLinux() && !ST->isTargetDarwin() &&
1423 !ST->isTargetWin32() && !ST->isTargetFreeBSD())
1424 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindola76927d752011-08-30 19:39:58 +00001425
1426 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1427 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1428 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1429 bool IsNested = false;
1430
1431 // We need to know if the function has a nest argument only in 64 bit mode.
1432 if (Is64Bit)
1433 IsNested = HasNestArgument(&MF);
1434
Bill Wendling4e680542011-10-13 08:24:19 +00001435 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1436 // allocMBB needs to be last (terminating) instruction.
Bill Wendling4e680542011-10-13 08:24:19 +00001437
Rafael Espindola76927d752011-08-30 19:39:58 +00001438 for (MachineBasicBlock::livein_iterator i = prologueMBB.livein_begin(),
1439 e = prologueMBB.livein_end(); i != e; i++) {
1440 allocMBB->addLiveIn(*i);
1441 checkMBB->addLiveIn(*i);
1442 }
1443
1444 if (IsNested)
Rafael Espindolae840e882011-10-26 21:12:27 +00001445 allocMBB->addLiveIn(X86::R10);
1446
Rafael Espindola76927d752011-08-30 19:39:58 +00001447 MF.push_front(allocMBB);
1448 MF.push_front(checkMBB);
1449
1450 // Eventually StackSize will be calculated by a link-time pass; which will
1451 // also decide whether checking code needs to be injected into this particular
1452 // prologue.
1453 StackSize = MFI->getStackSize();
1454
Rafael Espindola2028b792012-01-11 19:00:37 +00001455 // When the frame size is less than 256 we just compare the stack
1456 // boundary directly to the value of the stack pointer, per gcc.
1457 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1458
Rafael Espindola76927d752011-08-30 19:39:58 +00001459 // Read the limit off the current stacklet off the stack_guard location.
1460 if (Is64Bit) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001461 if (ST->isTargetLinux()) {
1462 TlsReg = X86::FS;
1463 TlsOffset = 0x70;
1464 } else if (ST->isTargetDarwin()) {
1465 TlsReg = X86::GS;
1466 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
Rafael Espindola85b9d432012-01-12 20:24:30 +00001467 } else if (ST->isTargetFreeBSD()) {
1468 TlsReg = X86::FS;
1469 TlsOffset = 0x18;
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001470 } else {
1471 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindola2028b792012-01-11 19:00:37 +00001472 }
Rafael Espindola76927d752011-08-30 19:39:58 +00001473
Rafael Espindola2028b792012-01-11 19:00:37 +00001474 if (CompareStackPointer)
Sanjoy Das199ce332011-12-03 09:32:07 +00001475 ScratchReg = X86::RSP;
1476 else
1477 BuildMI(checkMBB, DL, TII.get(X86::LEA64r), ScratchReg).addReg(X86::RSP)
Rafael Espindola014f7a32012-01-11 18:14:03 +00001478 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das199ce332011-12-03 09:32:07 +00001479
Rafael Espindola76927d752011-08-30 19:39:58 +00001480 BuildMI(checkMBB, DL, TII.get(X86::CMP64rm)).addReg(ScratchReg)
Rafael Espindola014f7a32012-01-11 18:14:03 +00001481 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Rafael Espindola76927d752011-08-30 19:39:58 +00001482 } else {
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001483 if (ST->isTargetLinux()) {
1484 TlsReg = X86::GS;
1485 TlsOffset = 0x30;
1486 } else if (ST->isTargetDarwin()) {
1487 TlsReg = X86::GS;
1488 TlsOffset = 0x48 + 90*4;
1489 } else if (ST->isTargetWin32()) {
1490 TlsReg = X86::FS;
1491 TlsOffset = 0x14; // pvArbitrary, reserved for application use
Rafael Espindola85b9d432012-01-12 20:24:30 +00001492 } else if (ST->isTargetFreeBSD()) {
1493 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001494 } else {
1495 report_fatal_error("Segmented stacks not supported on this platform.");
1496 }
Rafael Espindola76927d752011-08-30 19:39:58 +00001497
Rafael Espindola2028b792012-01-11 19:00:37 +00001498 if (CompareStackPointer)
Sanjoy Das199ce332011-12-03 09:32:07 +00001499 ScratchReg = X86::ESP;
1500 else
1501 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
Rafael Espindola014f7a32012-01-11 18:14:03 +00001502 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das199ce332011-12-03 09:32:07 +00001503
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001504 if (ST->isTargetLinux() || ST->isTargetWin32()) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001505 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1506 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1507 } else if (ST->isTargetDarwin()) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001508
1509 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register
1510 unsigned ScratchReg2;
1511 bool SaveScratch2;
1512 if (CompareStackPointer) {
1513 // The primary scratch register is available for holding the TLS offset
1514 ScratchReg2 = GetScratchRegister(Is64Bit, MF, true);
1515 SaveScratch2 = false;
1516 } else {
1517 // Need to use a second register to hold the TLS offset
1518 ScratchReg2 = GetScratchRegister(Is64Bit, MF, false);
1519
1520 // Unfortunately, with fastcc the second scratch register may hold an arg
1521 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1522 }
1523
1524 // If Scratch2 is live-in then it needs to be saved
1525 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1526 "Scratch register is live-in and not saved");
1527
1528 if (SaveScratch2)
1529 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1530 .addReg(ScratchReg2, RegState::Kill);
1531
1532 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1533 .addImm(TlsOffset);
1534 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1535 .addReg(ScratchReg)
1536 .addReg(ScratchReg2).addImm(1).addReg(0)
1537 .addImm(0)
1538 .addReg(TlsReg);
1539
1540 if (SaveScratch2)
1541 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1542 }
Rafael Espindola76927d752011-08-30 19:39:58 +00001543 }
1544
1545 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1546 // It jumps to normal execution of the function body.
Rafael Espindola313c7032012-01-11 18:23:35 +00001547 BuildMI(checkMBB, DL, TII.get(X86::JA_4)).addMBB(&prologueMBB);
Rafael Espindola76927d752011-08-30 19:39:58 +00001548
1549 // On 32 bit we first push the arguments size and then the frame size. On 64
1550 // bit, we pass the stack frame size in r10 and the argument size in r11.
1551 if (Is64Bit) {
1552 // Functions with nested arguments use R10, so it needs to be saved across
1553 // the call to _morestack
1554
1555 if (IsNested)
1556 BuildMI(allocMBB, DL, TII.get(X86::MOV64rr), X86::RAX).addReg(X86::R10);
1557
1558 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R10)
1559 .addImm(StackSize);
1560 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R11)
1561 .addImm(X86FI->getArgumentStackSize());
1562 MF.getRegInfo().setPhysRegUsed(X86::R10);
1563 MF.getRegInfo().setPhysRegUsed(X86::R11);
1564 } else {
Rafael Espindola76927d752011-08-30 19:39:58 +00001565 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1566 .addImm(X86FI->getArgumentStackSize());
1567 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1568 .addImm(StackSize);
1569 }
1570
1571 // __morestack is in libgcc
1572 if (Is64Bit)
1573 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1574 .addExternalSymbol("__morestack");
1575 else
1576 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1577 .addExternalSymbol("__morestack");
1578
Bill Wendling4e680542011-10-13 08:24:19 +00001579 if (IsNested)
Rafael Espindolae840e882011-10-26 21:12:27 +00001580 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1581 else
1582 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
Bill Wendling4e680542011-10-13 08:24:19 +00001583
Rafael Espindolae840e882011-10-26 21:12:27 +00001584 allocMBB->addSuccessor(&prologueMBB);
Bill Wendling4e680542011-10-13 08:24:19 +00001585
Rafael Espindola76927d752011-08-30 19:39:58 +00001586 checkMBB->addSuccessor(allocMBB);
1587 checkMBB->addSuccessor(&prologueMBB);
1588
Jakob Stoklund Olesen51f0c762011-09-24 01:11:19 +00001589#ifdef XDEBUG
Rafael Espindola76927d752011-08-30 19:39:58 +00001590 MF.verify();
1591#endif
1592}