blob: 9d66bfd88a879084ac117a6bc28991bd46002f62 [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000020#include "llvm/ADT/SmallSet.h"
Anton Korobeynikov33464912010-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 Carruth0b8c9a82013-01-02 11:36:10 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/Function.h"
Rafael Espindolaf0adba92011-04-15 15:11:06 +000028#include "llvm/MC/MCAsmInfo.h"
Bill Wendling6a6b8c32011-07-07 00:54:13 +000029#include "llvm/MC/MCSymbol.h"
Anton Korobeynikov33464912010-11-15 00:06:54 +000030#include "llvm/Support/CommandLine.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000031#include "llvm/Target/TargetOptions.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() ||
Chad Rosierb5660622013-02-16 01:25:28 +000053 MFI->isFrameAddressTaken() || MF.hasMSInlineAsm() ||
Anton Korobeynikovd0c38172010-11-18 21:19:35 +000054 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
Eli Bendersky700ed802013-02-21 20:05:00 +000058static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) {
59 if (IsLP64) {
Anton Korobeynikov33464912010-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 Bendersky16221a62013-02-06 20:43:57 +000070static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) {
71 if (IsLP64) {
Anton Korobeynikov33464912010-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 Bendersky16221a62013-02-06 20:43:57 +000082static unsigned getLEArOpcode(unsigned IsLP64) {
83 return IsLP64 ? X86::LEA64r : X86::LEA32r;
Evan Chengde1df102012-02-07 22:50:41 +000084}
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,
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000148 bool Is64Bit, bool IsLP64, bool UseLEA,
Eric Christopher76ad43c2012-10-03 08:10:01 +0000149 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)
Eli Bendersky16221a62013-02-06 20:43:57 +0000154 Opc = getLEArOpcode(IsLP64);
Evan Chengde1df102012-02-07 22:50:41 +0000155 else
156 Opc = isSub
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000157 ? getSUBriOpcode(IsLP64, Offset)
158 : getADDriOpcode(IsLP64, Offset);
Evan Chengde1df102012-02-07 22:50:41 +0000159
Anton Korobeynikov33464912010-11-15 00:06:54 +0000160 uint64_t Chunk = (1LL << 31) - 1;
Eric Christopher76ad43c2012-10-03 08:10:01 +0000161 DebugLoc DL = MBB.findDebugLoc(MBBI);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000162
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();
Bill Wendling99cb6222013-06-18 07:20:20 +0000310 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Anton Korobeynikov33464912010-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 Liaoaa3c2c02012-10-25 06:29:14 +0000316 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
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.
Michael Liaoaa3c2c02012-10-25 06:29:14 +0000320 int stackGrowth = -RegInfo->getSlotSize();
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
Bill Wendling99cb6222013-06-18 07:20:20 +0000363 unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
Rafael Espindola6b67ffd2013-05-16 21:02:15 +0000364 MMI.addFrameInst(MCCFIInstruction::createOffset(Label, DwarfReg, Offset));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000365 }
366}
367
Bill Wendling09b02c82011-07-25 18:00:28 +0000368/// getCompactUnwindRegNum - Get the compact unwind number for a given
369/// register. The number corresponds to the enum lists in
370/// compact_unwind_encoding.h.
Bill Wendling1f4b7962013-05-09 18:21:45 +0000371static int getCompactUnwindRegNum(unsigned Reg, bool is64Bit) {
372 static const uint16_t CU32BitRegs[] = {
373 X86::EBX, X86::ECX, X86::EDX, X86::EDI, X86::ESI, X86::EBP, 0
374 };
375 static const uint16_t CU64BitRegs[] = {
376 X86::RBX, X86::R12, X86::R13, X86::R14, X86::R15, X86::RBP, 0
377 };
378 const uint16_t *CURegs = is64Bit ? CU64BitRegs : CU32BitRegs;
Bill Wendling10e412e2011-12-14 23:53:24 +0000379 for (int Idx = 1; *CURegs; ++CURegs, ++Idx)
Bill Wendling09b02c82011-07-25 18:00:28 +0000380 if (*CURegs == Reg)
381 return Idx;
382
383 return -1;
384}
385
Bill Wendling57a3cd22011-12-06 21:23:42 +0000386// Number of registers that can be saved in a compact unwind encoding.
387#define CU_NUM_SAVED_REGS 6
388
Bill Wendling09b02c82011-07-25 18:00:28 +0000389/// encodeCompactUnwindRegistersWithoutFrame - Create the permutation encoding
390/// used with frameless stacks. It is passed the number of registers to be saved
391/// and an array of the registers saved.
Bill Wendling57a3cd22011-12-06 21:23:42 +0000392static uint32_t
393encodeCompactUnwindRegistersWithoutFrame(unsigned SavedRegs[CU_NUM_SAVED_REGS],
394 unsigned RegCount, bool Is64Bit) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000395 // The saved registers are numbered from 1 to 6. In order to encode the order
396 // in which they were saved, we re-number them according to their place in the
397 // register order. The re-numbering is relative to the last re-numbered
398 // register. E.g., if we have registers {6, 2, 4, 5} saved in that order:
399 //
400 // Orig Re-Num
401 // ---- ------
402 // 6 6
403 // 2 2
404 // 4 3
405 // 5 3
406 //
Bill Wendling10e412e2011-12-14 23:53:24 +0000407 for (unsigned i = 0; i != CU_NUM_SAVED_REGS; ++i) {
Bill Wendling1f4b7962013-05-09 18:21:45 +0000408 int CUReg = getCompactUnwindRegNum(SavedRegs[i], Is64Bit);
Bill Wendling09b02c82011-07-25 18:00:28 +0000409 if (CUReg == -1) return ~0U;
410 SavedRegs[i] = CUReg;
Bill Wendling79df9862011-12-06 01:26:14 +0000411 }
Bill Wendling09b02c82011-07-25 18:00:28 +0000412
Bill Wendling10e412e2011-12-14 23:53:24 +0000413 // Reverse the list.
414 std::swap(SavedRegs[0], SavedRegs[5]);
415 std::swap(SavedRegs[1], SavedRegs[4]);
416 std::swap(SavedRegs[2], SavedRegs[3]);
417
Bill Wendling57a3cd22011-12-06 21:23:42 +0000418 uint32_t RenumRegs[CU_NUM_SAVED_REGS];
419 for (unsigned i = CU_NUM_SAVED_REGS - RegCount; i < CU_NUM_SAVED_REGS; ++i) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000420 unsigned Countless = 0;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000421 for (unsigned j = CU_NUM_SAVED_REGS - RegCount; j < i; ++j)
Bill Wendling09b02c82011-07-25 18:00:28 +0000422 if (SavedRegs[j] < SavedRegs[i])
423 ++Countless;
424
425 RenumRegs[i] = SavedRegs[i] - Countless - 1;
426 }
427
428 // Take the renumbered values and encode them into a 10-bit number.
429 uint32_t permutationEncoding = 0;
430 switch (RegCount) {
431 case 6:
432 permutationEncoding |= 120 * RenumRegs[0] + 24 * RenumRegs[1]
433 + 6 * RenumRegs[2] + 2 * RenumRegs[3]
434 + RenumRegs[4];
435 break;
436 case 5:
437 permutationEncoding |= 120 * RenumRegs[1] + 24 * RenumRegs[2]
438 + 6 * RenumRegs[3] + 2 * RenumRegs[4]
439 + RenumRegs[5];
440 break;
441 case 4:
442 permutationEncoding |= 60 * RenumRegs[2] + 12 * RenumRegs[3]
443 + 3 * RenumRegs[4] + RenumRegs[5];
444 break;
445 case 3:
446 permutationEncoding |= 20 * RenumRegs[3] + 4 * RenumRegs[4]
447 + RenumRegs[5];
448 break;
449 case 2:
450 permutationEncoding |= 5 * RenumRegs[4] + RenumRegs[5];
451 break;
452 case 1:
453 permutationEncoding |= RenumRegs[5];
454 break;
455 }
456
457 assert((permutationEncoding & 0x3FF) == permutationEncoding &&
458 "Invalid compact register encoding!");
459 return permutationEncoding;
460}
461
462/// encodeCompactUnwindRegistersWithFrame - Return the registers encoded for a
463/// compact encoding with a frame pointer.
Bill Wendling57a3cd22011-12-06 21:23:42 +0000464static uint32_t
465encodeCompactUnwindRegistersWithFrame(unsigned SavedRegs[CU_NUM_SAVED_REGS],
466 bool Is64Bit) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000467 // Encode the registers in the order they were saved, 3-bits per register. The
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000468 // registers are numbered from 1 to CU_NUM_SAVED_REGS.
Bill Wendling09b02c82011-07-25 18:00:28 +0000469 uint32_t RegEnc = 0;
Bill Wendlingb4ee5162012-01-13 00:41:53 +0000470 for (int I = CU_NUM_SAVED_REGS - 1, Idx = 0; I != -1; --I) {
Bill Wendling09b02c82011-07-25 18:00:28 +0000471 unsigned Reg = SavedRegs[I];
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000472 if (Reg == 0) continue;
473
Bill Wendling1f4b7962013-05-09 18:21:45 +0000474 int CURegNum = getCompactUnwindRegNum(Reg, Is64Bit);
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000475 if (CURegNum == -1) return ~0U;
Bill Wendling80caf9c2011-12-06 01:57:48 +0000476
477 // Encode the 3-bit register number in order, skipping over 3-bits for each
478 // register.
Bill Wendling86b1a7d2012-01-12 23:05:03 +0000479 RegEnc |= (CURegNum & 0x7) << (Idx++ * 3);
Bill Wendling09b02c82011-07-25 18:00:28 +0000480 }
481
Jakob Stoklund Olesendec1f992012-01-11 09:08:04 +0000482 assert((RegEnc & 0x3FFFF) == RegEnc && "Invalid compact register encoding!");
Bill Wendling09b02c82011-07-25 18:00:28 +0000483 return RegEnc;
484}
485
486uint32_t X86FrameLowering::getCompactUnwindEncoding(MachineFunction &MF) const {
487 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
488 unsigned FramePtr = RegInfo->getFrameRegister(MF);
489 unsigned StackPtr = RegInfo->getStackRegister();
490
Bill Wendling09b02c82011-07-25 18:00:28 +0000491 bool Is64Bit = STI.is64Bit();
492 bool HasFP = hasFP(MF);
493
Bill Wendling57a3cd22011-12-06 21:23:42 +0000494 unsigned SavedRegs[CU_NUM_SAVED_REGS] = { 0, 0, 0, 0, 0, 0 };
Bill Wendling10e412e2011-12-14 23:53:24 +0000495 unsigned SavedRegIdx = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000496
497 unsigned OffsetSize = (Is64Bit ? 8 : 4);
498
499 unsigned PushInstr = (Is64Bit ? X86::PUSH64r : X86::PUSH32r);
500 unsigned PushInstrSize = 1;
501 unsigned MoveInstr = (Is64Bit ? X86::MOV64rr : X86::MOV32rr);
502 unsigned MoveInstrSize = (Is64Bit ? 3 : 2);
Bill Wendling09b02c82011-07-25 18:00:28 +0000503 unsigned SubtractInstrIdx = (Is64Bit ? 3 : 2);
504
Bill Wendlingde770552011-07-26 08:03:49 +0000505 unsigned StackDivide = (Is64Bit ? 8 : 4);
506
Bill Wendling09b02c82011-07-25 18:00:28 +0000507 unsigned InstrOffset = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000508 unsigned StackAdjust = 0;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000509 unsigned StackSize = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000510
511 MachineBasicBlock &MBB = MF.front(); // Prologue is in entry BB.
512 bool ExpectEnd = false;
513 for (MachineBasicBlock::iterator
514 MBBI = MBB.begin(), MBBE = MBB.end(); MBBI != MBBE; ++MBBI) {
515 MachineInstr &MI = *MBBI;
516 unsigned Opc = MI.getOpcode();
517 if (Opc == X86::PROLOG_LABEL) continue;
518 if (!MI.getFlag(MachineInstr::FrameSetup)) break;
519
520 // We don't exect any more prolog instructions.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000521 if (ExpectEnd) return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000522
523 if (Opc == PushInstr) {
524 // If there are too many saved registers, we cannot use compact encoding.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000525 if (SavedRegIdx >= CU_NUM_SAVED_REGS) return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000526
Bill Wendlingedfef3b2013-05-09 20:10:38 +0000527 unsigned Reg = MI.getOperand(0).getReg();
528 if (Reg == (Is64Bit ? X86::RAX : X86::EAX)) {
529 ExpectEnd = true;
530 continue;
531 }
532
Bill Wendling10e412e2011-12-14 23:53:24 +0000533 SavedRegs[SavedRegIdx++] = MI.getOperand(0).getReg();
Bill Wendling57a3cd22011-12-06 21:23:42 +0000534 StackAdjust += OffsetSize;
Bill Wendling09b02c82011-07-25 18:00:28 +0000535 InstrOffset += PushInstrSize;
536 } else if (Opc == MoveInstr) {
537 unsigned SrcReg = MI.getOperand(1).getReg();
538 unsigned DstReg = MI.getOperand(0).getReg();
539
540 if (DstReg != FramePtr || SrcReg != StackPtr)
Bill Wendling89ec1c52013-04-19 00:05:59 +0000541 return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000542
Bill Wendling57a3cd22011-12-06 21:23:42 +0000543 StackAdjust = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000544 memset(SavedRegs, 0, sizeof(SavedRegs));
Bill Wendling10e412e2011-12-14 23:53:24 +0000545 SavedRegIdx = 0;
Bill Wendling09b02c82011-07-25 18:00:28 +0000546 InstrOffset += MoveInstrSize;
Bill Wendling84d518a2011-12-06 22:14:27 +0000547 } else if (Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
548 Opc == X86::SUB32ri || Opc == X86::SUB32ri8) {
Bill Wendling57a3cd22011-12-06 21:23:42 +0000549 if (StackSize)
550 // We already have a stack size.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000551 return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000552
553 if (!MI.getOperand(0).isReg() ||
554 MI.getOperand(0).getReg() != MI.getOperand(1).getReg() ||
555 MI.getOperand(0).getReg() != StackPtr || !MI.getOperand(2).isImm())
556 // We need this to be a stack adjustment pointer. Something like:
557 //
558 // %RSP<def> = SUB64ri8 %RSP, 48
Bill Wendling89ec1c52013-04-19 00:05:59 +0000559 return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000560
Bill Wendling57a3cd22011-12-06 21:23:42 +0000561 StackSize = MI.getOperand(2).getImm() / StackDivide;
Bill Wendling09b02c82011-07-25 18:00:28 +0000562 SubtractInstrIdx += InstrOffset;
563 ExpectEnd = true;
564 }
565 }
566
567 // Encode that we are using EBP/RBP as the frame pointer.
568 uint32_t CompactUnwindEncoding = 0;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000569 StackAdjust /= StackDivide;
Bill Wendling09b02c82011-07-25 18:00:28 +0000570 if (HasFP) {
Bill Wendling57a3cd22011-12-06 21:23:42 +0000571 if ((StackAdjust & 0xFF) != StackAdjust)
Bill Wendling09b02c82011-07-25 18:00:28 +0000572 // Offset was too big for compact encoding.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000573 return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000574
575 // Get the encoding of the saved registers when we have a frame pointer.
576 uint32_t RegEnc = encodeCompactUnwindRegistersWithFrame(SavedRegs, Is64Bit);
Bill Wendling89ec1c52013-04-19 00:05:59 +0000577 if (RegEnc == ~0U) return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000578
Bill Wendling89ec1c52013-04-19 00:05:59 +0000579 CompactUnwindEncoding |= CU::UNWIND_MODE_BP_FRAME;
Bill Wendling57a3cd22011-12-06 21:23:42 +0000580 CompactUnwindEncoding |= (StackAdjust & 0xFF) << 16;
Bill Wendling89ec1c52013-04-19 00:05:59 +0000581 CompactUnwindEncoding |= RegEnc & CU::UNWIND_BP_FRAME_REGISTERS;
Bill Wendling09b02c82011-07-25 18:00:28 +0000582 } else {
Bill Wendlingb3ec3292011-12-07 07:58:55 +0000583 ++StackAdjust;
584 uint32_t TotalStackSize = StackAdjust + StackSize;
Bill Wendling581ac272011-12-06 21:34:01 +0000585 if ((TotalStackSize & 0xFF) == TotalStackSize) {
Bill Wendling5b2c4972011-12-06 19:16:17 +0000586 // Frameless stack with a small stack size.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000587 CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IMMD;
Bill Wendling5b2c4972011-12-06 19:16:17 +0000588
589 // Encode the stack size.
Bill Wendling581ac272011-12-06 21:34:01 +0000590 CompactUnwindEncoding |= (TotalStackSize & 0xFF) << 16;
Bill Wendling09b02c82011-07-25 18:00:28 +0000591 } else {
Bill Wendling57a3cd22011-12-06 21:23:42 +0000592 if ((StackAdjust & 0x7) != StackAdjust)
Bill Wendling09b02c82011-07-25 18:00:28 +0000593 // The extra stack adjustments are too big for us to handle.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000594 return CU::UNWIND_MODE_DWARF;
Bill Wendling09b02c82011-07-25 18:00:28 +0000595
596 // Frameless stack with an offset too large for us to encode compactly.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000597 CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IND;
Bill Wendling09b02c82011-07-25 18:00:28 +0000598
599 // Encode the offset to the nnnnnn value in the 'subl $nnnnnn, ESP'
600 // instruction.
601 CompactUnwindEncoding |= (SubtractInstrIdx & 0xFF) << 16;
602
Bill Wendling57a3cd22011-12-06 21:23:42 +0000603 // Encode any extra stack stack adjustments (done via push instructions).
604 CompactUnwindEncoding |= (StackAdjust & 0x7) << 13;
Bill Wendling09b02c82011-07-25 18:00:28 +0000605 }
606
Bill Wendling5b2c4972011-12-06 19:16:17 +0000607 // Encode the number of registers saved.
Bill Wendling10e412e2011-12-14 23:53:24 +0000608 CompactUnwindEncoding |= (SavedRegIdx & 0x7) << 10;
Bill Wendling75e14e02011-12-06 19:09:06 +0000609
Bill Wendling09b02c82011-07-25 18:00:28 +0000610 // Get the encoding of the saved registers when we don't have a frame
611 // pointer.
Bill Wendling57a3cd22011-12-06 21:23:42 +0000612 uint32_t RegEnc =
Bill Wendling10e412e2011-12-14 23:53:24 +0000613 encodeCompactUnwindRegistersWithoutFrame(SavedRegs, SavedRegIdx,
Bill Wendling57a3cd22011-12-06 21:23:42 +0000614 Is64Bit);
Bill Wendling89ec1c52013-04-19 00:05:59 +0000615 if (RegEnc == ~0U) return CU::UNWIND_MODE_DWARF;
Bill Wendling5b2c4972011-12-06 19:16:17 +0000616
617 // Encode the register encoding.
Bill Wendling89ec1c52013-04-19 00:05:59 +0000618 CompactUnwindEncoding |=
619 RegEnc & CU::UNWIND_FRAMELESS_STACK_REG_PERMUTATION;
Bill Wendling09b02c82011-07-25 18:00:28 +0000620 }
621
622 return CompactUnwindEncoding;
623}
624
Nadav Rotem677689c2012-12-23 07:30:09 +0000625/// usesTheStack - This function checks if any of the users of EFLAGS
Nadav Rotemd0696ef2012-12-21 23:48:49 +0000626/// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
627/// to use the stack, and if we don't adjust the stack we clobber the first
628/// frame index.
Nadav Rotem677689c2012-12-23 07:30:09 +0000629/// See X86InstrInfo::copyPhysReg.
630static bool usesTheStack(MachineFunction &MF) {
Nadav Rotemd0696ef2012-12-21 23:48:49 +0000631 MachineRegisterInfo &MRI = MF.getRegInfo();
632
633 for (MachineRegisterInfo::reg_iterator ri = MRI.reg_begin(X86::EFLAGS),
634 re = MRI.reg_end(); ri != re; ++ri)
635 if (ri->isCopy())
636 return true;
637
638 return false;
639}
640
Anton Korobeynikov33464912010-11-15 00:06:54 +0000641/// emitPrologue - Push callee-saved registers onto the stack, which
642/// automatically adjust the stack pointer. Adjust the stack pointer to allocate
643/// space for local variables. Also emit labels used by the exception handler to
644/// generate the exception handling frames.
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000645void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000646 MachineBasicBlock &MBB = MF.front(); // Prologue goes in entry BB.
647 MachineBasicBlock::iterator MBBI = MBB.begin();
648 MachineFrameInfo *MFI = MF.getFrameInfo();
649 const Function *Fn = MF.getFunction();
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000650 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
651 const X86InstrInfo &TII = *TM.getInstrInfo();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000652 MachineModuleInfo &MMI = MF.getMMI();
653 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
654 bool needsFrameMoves = MMI.hasDebugInfo() ||
Rafael Espindolafc2bb8c2011-05-25 03:44:17 +0000655 Fn->needsUnwindTableEntry();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000656 uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment.
657 uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate.
Anton Korobeynikovd0c38172010-11-18 21:19:35 +0000658 bool HasFP = hasFP(MF);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000659 bool Is64Bit = STI.is64Bit();
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000660 bool IsLP64 = STI.isTarget64BitLP64();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000661 bool IsWin64 = STI.isTargetWin64();
Evan Chengde1df102012-02-07 22:50:41 +0000662 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000663 unsigned StackAlign = getStackAlignment();
664 unsigned SlotSize = RegInfo->getSlotSize();
665 unsigned FramePtr = RegInfo->getFrameRegister(MF);
666 unsigned StackPtr = RegInfo->getStackRegister();
Chad Rosier3f0dbab2012-07-10 17:45:53 +0000667 unsigned BasePtr = RegInfo->getBaseRegister();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000668 DebugLoc DL;
669
670 // If we're forcing a stack realignment we can't rely on just the frame
671 // info, we need to know the ABI stack alignment as well in case we
672 // have a call out. Otherwise just make sure we have some alignment - we'll
673 // go with the minimum SlotSize.
674 if (ForceStackAlign) {
675 if (MFI->hasCalls())
676 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
677 else if (MaxAlign < SlotSize)
678 MaxAlign = SlotSize;
679 }
680
681 // Add RETADDR move area to callee saved frame size.
682 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
683 if (TailCallReturnAddrDelta < 0)
684 X86FI->setCalleeSavedFrameSize(
685 X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
686
687 // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
688 // function, and use up to 128 bytes of stack space, don't have a frame
689 // pointer, calls, or dynamic alloca then we do not need to adjust the
Nadav Rotemd0696ef2012-12-21 23:48:49 +0000690 // stack pointer (we fit in the Red Zone). We also check that we don't
691 // push and pop from the stack.
Bill Wendling831737d2012-12-30 10:32:01 +0000692 if (Is64Bit && !Fn->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
693 Attribute::NoRedZone) &&
Anton Korobeynikov33464912010-11-15 00:06:54 +0000694 !RegInfo->needsStackRealignment(MF) &&
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000695 !MFI->hasVarSizedObjects() && // No dynamic alloca.
696 !MFI->adjustsStack() && // No calls.
697 !IsWin64 && // Win64 has no Red Zone
Nadav Rotem677689c2012-12-23 07:30:09 +0000698 !usesTheStack(MF) && // Don't push and pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000699 !MF.getTarget().Options.EnableSegmentedStacks) { // Regular stack
Anton Korobeynikov33464912010-11-15 00:06:54 +0000700 uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
701 if (HasFP) MinSize += SlotSize;
702 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
703 MFI->setStackSize(StackSize);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000704 }
705
706 // Insert stack pointer adjustment for later moving of return addr. Only
707 // applies to tail call optimized functions where the callee argument stack
708 // size is bigger than the callers.
709 if (TailCallReturnAddrDelta < 0) {
710 MachineInstr *MI =
711 BuildMI(MBB, MBBI, DL,
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000712 TII.get(getSUBriOpcode(IsLP64, -TailCallReturnAddrDelta)),
Anton Korobeynikov33464912010-11-15 00:06:54 +0000713 StackPtr)
714 .addReg(StackPtr)
Charles Davisaff232a2011-06-12 01:45:54 +0000715 .addImm(-TailCallReturnAddrDelta)
716 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000717 MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
718 }
719
720 // Mapping for machine moves:
721 //
722 // DST: VirtualFP AND
723 // SRC: VirtualFP => DW_CFA_def_cfa_offset
724 // ELSE => DW_CFA_def_cfa
725 //
726 // SRC: VirtualFP AND
727 // DST: Register => DW_CFA_def_cfa_register
728 //
729 // ELSE
730 // OFFSET < 0 => DW_CFA_offset_extended_sf
731 // REG < 64 => DW_CFA_offset + Reg
732 // ELSE => DW_CFA_offset_extended
733
Anton Korobeynikov33464912010-11-15 00:06:54 +0000734 uint64_t NumBytes = 0;
Michael Liaoaa3c2c02012-10-25 06:29:14 +0000735 int stackGrowth = -SlotSize;
Anton Korobeynikov33464912010-11-15 00:06:54 +0000736
737 if (HasFP) {
738 // Calculate required stack adjustment.
739 uint64_t FrameSize = StackSize - SlotSize;
Alexey Samsonov99a92f22012-07-16 06:54:09 +0000740 if (RegInfo->needsStackRealignment(MF)) {
741 // Callee-saved registers are pushed on stack before the stack
742 // is realigned.
743 FrameSize -= X86FI->getCalleeSavedFrameSize();
744 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
745 } else {
746 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
747 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000748
749 // Get the offset of the stack slot for the EBP register, which is
750 // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
751 // Update the frame offset adjustment.
752 MFI->setOffsetAdjustment(-NumBytes);
753
754 // Save EBP/RBP into the appropriate stack slot.
755 BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
Charles Davisaff232a2011-06-12 01:45:54 +0000756 .addReg(FramePtr, RegState::Kill)
757 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000758
759 if (needsFrameMoves) {
760 // Mark the place where EBP/RBP was saved.
761 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol();
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000762 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
763 .addSym(FrameLabel);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000764
765 // Define the current CFA rule to use the provided offset.
Rafael Espindola377b2272013-05-15 22:27:35 +0000766 assert(StackSize);
Rafael Espindola6b67ffd2013-05-16 21:02:15 +0000767 MMI.addFrameInst(
768 MCCFIInstruction::createDefCfaOffset(FrameLabel, 2 * stackGrowth));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000769
770 // Change the rule for the FramePtr to be an "offset" rule.
Rafael Espindola6b67ffd2013-05-16 21:02:15 +0000771 unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
772 MMI.addFrameInst(MCCFIInstruction::createOffset(FrameLabel, DwarfFramePtr,
773 2 * stackGrowth));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000774 }
775
Bill Wendling09b02c82011-07-25 18:00:28 +0000776 // Update EBP with the new base value.
Anton Korobeynikov33464912010-11-15 00:06:54 +0000777 BuildMI(MBB, MBBI, DL,
778 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), FramePtr)
Charles Davisaff232a2011-06-12 01:45:54 +0000779 .addReg(StackPtr)
780 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000781
782 if (needsFrameMoves) {
783 // Mark effective beginning of when frame pointer becomes valid.
784 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol();
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000785 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
786 .addSym(FrameLabel);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000787
788 // Define the current CFA to use the EBP/RBP register.
Rafael Espindola6b67ffd2013-05-16 21:02:15 +0000789 unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
790 MMI.addFrameInst(
791 MCCFIInstruction::createDefCfaRegister(FrameLabel, DwarfFramePtr));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000792 }
793
794 // Mark the FramePtr as live-in in every block except the entry.
795 for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end();
796 I != E; ++I)
797 I->addLiveIn(FramePtr);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000798 } 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.
Rafael Espindola0ed9f1f2013-05-16 04:59:17 +0000819 assert(StackSize);
Rafael Espindola6b67ffd2013-05-16 21:02:15 +0000820 MMI.addFrameInst(
821 MCCFIInstruction::createDefCfaOffset(Label, StackOffset));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000822 StackOffset += stackGrowth;
823 }
824 }
825
Alexey Samsonov99a92f22012-07-16 06:54:09 +0000826 // Realign stack after we pushed callee-saved registers (so that we'll be
827 // able to calculate their offsets from the frame pointer).
828
829 // NOTE: We push the registers before realigning the stack, so
830 // vector callee-saved (xmm) registers may be saved w/o proper
831 // alignment in this way. However, currently these regs are saved in
832 // stack slots (see X86FrameLowering::spillCalleeSavedRegisters()), so
833 // this shouldn't be a problem.
834 if (RegInfo->needsStackRealignment(MF)) {
835 assert(HasFP && "There should be a frame pointer if stack is realigned.");
836 MachineInstr *MI =
837 BuildMI(MBB, MBBI, DL,
838 TII.get(Is64Bit ? X86::AND64ri32 : X86::AND32ri), StackPtr)
839 .addReg(StackPtr)
840 .addImm(-MaxAlign)
841 .setMIFlag(MachineInstr::FrameSetup);
842
843 // The EFLAGS implicit def is dead.
844 MI->getOperand(3).setIsDead();
845 }
846
Anton Korobeynikov33464912010-11-15 00:06:54 +0000847 // If there is an SUB32ri of ESP immediately before this instruction, merge
848 // the two. This can be the case when tail call elimination is enabled and
849 // the callee has more arguments then the caller.
850 NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true);
851
852 // If there is an ADD32ri or SUB32ri of ESP immediately after this
853 // instruction, merge the two instructions.
854 mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes);
855
856 // Adjust stack pointer: ESP -= numbytes.
857
858 // Windows and cygwin/mingw require a prologue helper routine when allocating
859 // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw
860 // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the
861 // stack and adjust the stack pointer in one go. The 64-bit version of
862 // __chkstk is only responsible for probing the stack. The 64-bit prologue is
863 // responsible for adjusting the stack pointer. Touching the stack at 4K
864 // increments is necessary to ensure that the guard pages used by the OS
865 // virtual memory manager are allocated in correct sequence.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000866 if (NumBytes >= 4096 && STI.isTargetCOFF() && !STI.isTargetEnvMacho()) {
867 const char *StackProbeSymbol;
868 bool isSPUpdateNeeded = false;
869
870 if (Is64Bit) {
871 if (STI.isTargetCygMing())
872 StackProbeSymbol = "___chkstk";
873 else {
874 StackProbeSymbol = "__chkstk";
875 isSPUpdateNeeded = true;
876 }
877 } else if (STI.isTargetCygMing())
878 StackProbeSymbol = "_alloca";
879 else
880 StackProbeSymbol = "_chkstk";
881
Anton Korobeynikov33464912010-11-15 00:06:54 +0000882 // Check whether EAX is livein for this function.
883 bool isEAXAlive = isEAXLiveIn(MF);
884
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000885 if (isEAXAlive) {
886 // Sanity check that EAX is not livein for this function.
887 // It should not be, so throw an assert.
888 assert(!Is64Bit && "EAX is livein in x64 case!");
889
Anton Korobeynikov33464912010-11-15 00:06:54 +0000890 // Save EAX
891 BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000892 .addReg(X86::EAX, RegState::Kill)
893 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000894 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000895
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000896 if (Is64Bit) {
897 // Handle the 64-bit Windows ABI case where we need to call __chkstk.
898 // Function prologue is responsible for adjusting the stack pointer.
899 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000900 .addImm(NumBytes)
901 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000902 } else {
903 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
904 // We'll also use 4 already allocated bytes for EAX.
905 BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000906 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
907 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000908 }
909
910 BuildMI(MBB, MBBI, DL,
911 TII.get(Is64Bit ? X86::W64ALLOCA : X86::CALLpcrel32))
912 .addExternalSymbol(StackProbeSymbol)
913 .addReg(StackPtr, RegState::Define | RegState::Implicit)
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000914 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit)
915 .setMIFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000916
917 // MSVC x64's __chkstk needs to adjust %rsp.
918 // FIXME: %rax preserves the offset and should be available.
919 if (isSPUpdateNeeded)
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000920 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
Eric Christopher76ad43c2012-10-03 08:10:01 +0000921 UseLEA, TII, *RegInfo);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000922
923 if (isEAXAlive) {
924 // Restore EAX
925 MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
926 X86::EAX),
927 StackPtr, false, NumBytes - 4);
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000928 MI->setFlag(MachineInstr::FrameSetup);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000929 MBB.insert(MBBI, MI);
930 }
Anton Korobeynikov33464912010-11-15 00:06:54 +0000931 } else if (NumBytes)
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000932 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
Eric Christopher76ad43c2012-10-03 08:10:01 +0000933 UseLEA, TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000934
Chad Rosier3f0dbab2012-07-10 17:45:53 +0000935 // If we need a base pointer, set it up here. It's whatever the value
936 // of the stack pointer is at this point. Any variable size objects
937 // will be allocated after this, so we can still use the base pointer
938 // to reference locals.
939 if (RegInfo->hasBasePointer(MF)) {
940 // Update the frame pointer with the current stack pointer.
941 unsigned Opc = Is64Bit ? X86::MOV64rr : X86::MOV32rr;
942 BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
943 .addReg(StackPtr)
944 .setMIFlag(MachineInstr::FrameSetup);
Chad Rosier3f0dbab2012-07-10 17:45:53 +0000945 }
946
Rafael Espindolaf0adba92011-04-15 15:11:06 +0000947 if (( (!HasFP && NumBytes) || PushedRegs) && needsFrameMoves) {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000948 // Mark end of stack pointer adjustment.
949 MCSymbol *Label = MMI.getContext().CreateTempSymbol();
Bill Wendlingfb4eb162011-07-21 00:44:56 +0000950 BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL))
951 .addSym(Label);
Anton Korobeynikov33464912010-11-15 00:06:54 +0000952
953 if (!HasFP && NumBytes) {
954 // Define the current CFA rule to use the provided offset.
Rafael Espindola377b2272013-05-15 22:27:35 +0000955 assert(StackSize);
Rafael Espindola6b67ffd2013-05-16 21:02:15 +0000956 MMI.addFrameInst(MCCFIInstruction::createDefCfaOffset(
957 Label, -StackSize + stackGrowth));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000958 }
959
960 // Emit DWARF info specifying the offsets of the callee-saved registers.
961 if (PushedRegs)
962 emitCalleeSavedFrameMoves(MF, Label, HasFP ? FramePtr : StackPtr);
963 }
Bill Wendling09b02c82011-07-25 18:00:28 +0000964
965 // Darwin 10.7 and greater has support for compact unwind encoding.
Bill Wendlingc8725d12011-09-06 23:47:14 +0000966 if (STI.getTargetTriple().isMacOSX() &&
Eli Friedmanac86d432011-08-31 16:19:51 +0000967 !STI.getTargetTriple().isMacOSXVersionLT(10, 7))
Bill Wendling09b02c82011-07-25 18:00:28 +0000968 MMI.setCompactUnwindEncoding(getCompactUnwindEncoding(MF));
Anton Korobeynikov33464912010-11-15 00:06:54 +0000969}
970
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000971void X86FrameLowering::emitEpilogue(MachineFunction &MF,
Nick Lewycky3c2f0a12011-06-14 03:23:52 +0000972 MachineBasicBlock &MBB) const {
Anton Korobeynikov33464912010-11-15 00:06:54 +0000973 const MachineFrameInfo *MFI = MF.getFrameInfo();
974 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000975 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
976 const X86InstrInfo &TII = *TM.getInstrInfo();
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +0000977 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
978 assert(MBBI != MBB.end() && "Returning block has no instructions");
Anton Korobeynikov33464912010-11-15 00:06:54 +0000979 unsigned RetOpcode = MBBI->getOpcode();
980 DebugLoc DL = MBBI->getDebugLoc();
981 bool Is64Bit = STI.is64Bit();
Eli Bendersky2a1b60d2013-02-05 21:53:29 +0000982 bool IsLP64 = STI.isTarget64BitLP64();
Evan Chengde1df102012-02-07 22:50:41 +0000983 bool UseLEA = STI.useLeaForSP();
Anton Korobeynikov33464912010-11-15 00:06:54 +0000984 unsigned StackAlign = getStackAlignment();
985 unsigned SlotSize = RegInfo->getSlotSize();
986 unsigned FramePtr = RegInfo->getFrameRegister(MF);
987 unsigned StackPtr = RegInfo->getStackRegister();
988
989 switch (RetOpcode) {
990 default:
991 llvm_unreachable("Can only insert epilog into returning blocks");
992 case X86::RET:
993 case X86::RETI:
994 case X86::TCRETURNdi:
995 case X86::TCRETURNri:
996 case X86::TCRETURNmi:
997 case X86::TCRETURNdi64:
998 case X86::TCRETURNri64:
999 case X86::TCRETURNmi64:
1000 case X86::EH_RETURN:
1001 case X86::EH_RETURN64:
1002 break; // These are ok
1003 }
1004
1005 // Get the number of bytes to allocate from the FrameInfo.
1006 uint64_t StackSize = MFI->getStackSize();
1007 uint64_t MaxAlign = MFI->getMaxAlignment();
1008 unsigned CSSize = X86FI->getCalleeSavedFrameSize();
1009 uint64_t NumBytes = 0;
1010
1011 // If we're forcing a stack realignment we can't rely on just the frame
1012 // info, we need to know the ABI stack alignment as well in case we
1013 // have a call out. Otherwise just make sure we have some alignment - we'll
1014 // go with the minimum.
1015 if (ForceStackAlign) {
1016 if (MFI->hasCalls())
1017 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
1018 else
1019 MaxAlign = MaxAlign ? MaxAlign : 4;
1020 }
1021
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001022 if (hasFP(MF)) {
Anton Korobeynikov33464912010-11-15 00:06:54 +00001023 // Calculate required stack adjustment.
1024 uint64_t FrameSize = StackSize - SlotSize;
Alexey Samsonov99a92f22012-07-16 06:54:09 +00001025 if (RegInfo->needsStackRealignment(MF)) {
1026 // Callee-saved registers were pushed on stack before the stack
1027 // was realigned.
1028 FrameSize -= CSSize;
1029 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
1030 } else {
1031 NumBytes = FrameSize - CSSize;
1032 }
Anton Korobeynikov33464912010-11-15 00:06:54 +00001033
1034 // Pop EBP.
1035 BuildMI(MBB, MBBI, DL,
1036 TII.get(Is64Bit ? X86::POP64r : X86::POP32r), FramePtr);
1037 } else {
1038 NumBytes = StackSize - CSSize;
1039 }
1040
1041 // Skip the callee-saved pop instructions.
Anton Korobeynikov33464912010-11-15 00:06:54 +00001042 while (MBBI != MBB.begin()) {
1043 MachineBasicBlock::iterator PI = prior(MBBI);
1044 unsigned Opc = PI->getOpcode();
1045
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +00001046 if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE &&
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001047 !PI->isTerminator())
Anton Korobeynikov33464912010-11-15 00:06:54 +00001048 break;
1049
1050 --MBBI;
1051 }
Alexey Samsonov99a92f22012-07-16 06:54:09 +00001052 MachineBasicBlock::iterator FirstCSPop = MBBI;
Anton Korobeynikov33464912010-11-15 00:06:54 +00001053
1054 DL = MBBI->getDebugLoc();
1055
1056 // If there is an ADD32ri or SUB32ri of ESP immediately before this
1057 // instruction, merge the two instructions.
1058 if (NumBytes || MFI->hasVarSizedObjects())
1059 mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
1060
1061 // If dynamic alloca is used, then reset esp to point to the last callee-saved
1062 // slot before popping them off! Same applies for the case, when stack was
1063 // realigned.
Alexey Samsonov99a92f22012-07-16 06:54:09 +00001064 if (RegInfo->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) {
1065 if (RegInfo->needsStackRealignment(MF))
1066 MBBI = FirstCSPop;
1067 if (CSSize != 0) {
Eli Bendersky16221a62013-02-06 20:43:57 +00001068 unsigned Opc = getLEArOpcode(IsLP64);
Alexey Samsonov99a92f22012-07-16 06:54:09 +00001069 addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
1070 FramePtr, false, -CSSize);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001071 } else {
Alexey Samsonov99a92f22012-07-16 06:54:09 +00001072 unsigned Opc = (Is64Bit ? X86::MOV64rr : X86::MOV32rr);
1073 BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
Anton Korobeynikov33464912010-11-15 00:06:54 +00001074 .addReg(FramePtr);
1075 }
1076 } else if (NumBytes) {
1077 // Adjust stack pointer back: ESP += numbytes.
Eli Bendersky2a1b60d2013-02-05 21:53:29 +00001078 emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, IsLP64, UseLEA,
1079 TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001080 }
1081
1082 // We're returning from function via eh_return.
1083 if (RetOpcode == X86::EH_RETURN || RetOpcode == X86::EH_RETURN64) {
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +00001084 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +00001085 MachineOperand &DestAddr = MBBI->getOperand(0);
1086 assert(DestAddr.isReg() && "Offset should be in register!");
1087 BuildMI(MBB, MBBI, DL,
1088 TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
1089 StackPtr).addReg(DestAddr.getReg());
1090 } else if (RetOpcode == X86::TCRETURNri || RetOpcode == X86::TCRETURNdi ||
1091 RetOpcode == X86::TCRETURNmi ||
1092 RetOpcode == X86::TCRETURNri64 || RetOpcode == X86::TCRETURNdi64 ||
1093 RetOpcode == X86::TCRETURNmi64) {
1094 bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64;
1095 // Tail call return: adjust the stack pointer and jump to callee.
Jakob Stoklund Olesenf7ca9762011-01-13 22:47:43 +00001096 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +00001097 MachineOperand &JumpTarget = MBBI->getOperand(0);
1098 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
1099 assert(StackAdjust.isImm() && "Expecting immediate value.");
1100
1101 // Adjust stack pointer.
1102 int StackAdj = StackAdjust.getImm();
1103 int MaxTCDelta = X86FI->getTCReturnAddrDelta();
1104 int Offset = 0;
1105 assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
1106
1107 // Incoporate the retaddr area.
1108 Offset = StackAdj-MaxTCDelta;
1109 assert(Offset >= 0 && "Offset should never be negative");
1110
1111 if (Offset) {
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001112 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikov33464912010-11-15 00:06:54 +00001113 Offset += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Eli Bendersky2a1b60d2013-02-05 21:53:29 +00001114 emitSPUpdate(MBB, MBBI, StackPtr, Offset, Is64Bit, IsLP64,
1115 UseLEA, TII, *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001116 }
1117
1118 // Jump to label or value in register.
1119 if (RetOpcode == X86::TCRETURNdi || RetOpcode == X86::TCRETURNdi64) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001120 MachineInstrBuilder MIB =
1121 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNdi)
1122 ? X86::TAILJMPd : X86::TAILJMPd64));
1123 if (JumpTarget.isGlobal())
1124 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
1125 JumpTarget.getTargetFlags());
1126 else {
1127 assert(JumpTarget.isSymbol());
1128 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
1129 JumpTarget.getTargetFlags());
1130 }
Anton Korobeynikov33464912010-11-15 00:06:54 +00001131 } else if (RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64) {
1132 MachineInstrBuilder MIB =
1133 BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNmi)
1134 ? X86::TAILJMPm : X86::TAILJMPm64));
1135 for (unsigned i = 0; i != 5; ++i)
1136 MIB.addOperand(MBBI->getOperand(i));
1137 } else if (RetOpcode == X86::TCRETURNri64) {
1138 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr64)).
1139 addReg(JumpTarget.getReg(), RegState::Kill);
1140 } else {
1141 BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr)).
1142 addReg(JumpTarget.getReg(), RegState::Kill);
1143 }
1144
1145 MachineInstr *NewMI = prior(MBBI);
Jakob Stoklund Olesenbe06aac2012-12-20 22:54:02 +00001146 NewMI->copyImplicitOps(MF, MBBI);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001147
1148 // Delete the pseudo instruction TCRETURN.
1149 MBB.erase(MBBI);
1150 } else if ((RetOpcode == X86::RET || RetOpcode == X86::RETI) &&
1151 (X86FI->getTCReturnAddrDelta() < 0)) {
1152 // Add the return addr area delta back since we are not tail calling.
1153 int delta = -1*X86FI->getTCReturnAddrDelta();
Jakob Stoklund Olesen4f28c1c2011-01-13 21:28:52 +00001154 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikov33464912010-11-15 00:06:54 +00001155
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001156 // Check for possible merge with preceding ADD instruction.
Anton Korobeynikov33464912010-11-15 00:06:54 +00001157 delta += mergeSPUpdates(MBB, MBBI, StackPtr, true);
Eli Bendersky2a1b60d2013-02-05 21:53:29 +00001158 emitSPUpdate(MBB, MBBI, StackPtr, delta, Is64Bit, IsLP64, UseLEA, TII,
1159 *RegInfo);
Anton Korobeynikov33464912010-11-15 00:06:54 +00001160 }
1161}
Anton Korobeynikovd9e33852010-11-18 23:25:52 +00001162
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001163int X86FrameLowering::getFrameIndexOffset(const MachineFunction &MF, int FI) const {
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001164 const X86RegisterInfo *RegInfo =
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001165 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
1166 const MachineFrameInfo *MFI = MF.getFrameInfo();
1167 int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
1168 uint64_t StackSize = MFI->getStackSize();
1169
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001170 if (RegInfo->hasBasePointer(MF)) {
1171 assert (hasFP(MF) && "VLAs and dynamic stack realign, but no FP?!");
1172 if (FI < 0) {
1173 // Skip the saved EBP.
1174 return Offset + RegInfo->getSlotSize();
1175 } else {
1176 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
1177 return Offset + StackSize;
1178 }
1179 } else if (RegInfo->needsStackRealignment(MF)) {
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001180 if (FI < 0) {
1181 // Skip the saved EBP.
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001182 return Offset + RegInfo->getSlotSize();
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001183 } else {
Duncan Sands17001ce2011-10-18 12:44:00 +00001184 assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001185 return Offset + StackSize;
1186 }
1187 // FIXME: Support tail calls
1188 } else {
1189 if (!hasFP(MF))
1190 return Offset + StackSize;
1191
1192 // Skip the saved EBP.
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001193 Offset += RegInfo->getSlotSize();
Anton Korobeynikov82f58742010-11-20 15:59:32 +00001194
1195 // Skip the RETADDR move area
1196 const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1197 int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1198 if (TailCallReturnAddrDelta < 0)
1199 Offset -= TailCallReturnAddrDelta;
1200 }
1201
1202 return Offset;
1203}
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001204
Alexey Samsonovd07d06c2012-05-01 15:16:06 +00001205int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
1206 unsigned &FrameReg) const {
Chad Rosier3fb6eca2012-05-23 23:45:10 +00001207 const X86RegisterInfo *RegInfo =
Alexey Samsonovd07d06c2012-05-01 15:16:06 +00001208 static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
1209 // We can't calculate offset from frame pointer if the stack is realigned,
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001210 // so enforce usage of stack/base pointer. The base pointer is used when we
1211 // have dynamic allocas in addition to dynamic realignment.
1212 if (RegInfo->hasBasePointer(MF))
1213 FrameReg = RegInfo->getBaseRegister();
1214 else if (RegInfo->needsStackRealignment(MF))
1215 FrameReg = RegInfo->getStackRegister();
1216 else
1217 FrameReg = RegInfo->getFrameRegister(MF);
Alexey Samsonovd07d06c2012-05-01 15:16:06 +00001218 return getFrameIndexOffset(MF, FI);
1219}
1220
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001221bool X86FrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001222 MachineBasicBlock::iterator MI,
1223 const std::vector<CalleeSavedInfo> &CSI,
1224 const TargetRegisterInfo *TRI) const {
1225 if (CSI.empty())
1226 return false;
1227
1228 DebugLoc DL = MBB.findDebugLoc(MI);
1229
1230 MachineFunction &MF = *MBB.getParent();
1231
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001232 unsigned SlotSize = STI.is64Bit() ? 8 : 4;
1233 unsigned FPReg = TRI->getFrameRegister(MF);
1234 unsigned CalleeFrameSize = 0;
1235
1236 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
1237 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1238
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001239 // Push GPRs. It increases frame size.
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001240 unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
1241 for (unsigned i = CSI.size(); i != 0; --i) {
1242 unsigned Reg = CSI[i-1].getReg();
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001243 if (!X86::GR64RegClass.contains(Reg) &&
1244 !X86::GR32RegClass.contains(Reg))
1245 continue;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001246 // Add the callee-saved register as live-in. It's killed at the spill.
1247 MBB.addLiveIn(Reg);
1248 if (Reg == FPReg)
1249 // X86RegisterInfo::emitPrologue will handle spilling of frame register.
1250 continue;
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001251 CalleeFrameSize += SlotSize;
Charles Davisaff232a2011-06-12 01:45:54 +00001252 BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1253 .setMIFlag(MachineInstr::FrameSetup);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001254 }
1255
1256 X86FI->setCalleeSavedFrameSize(CalleeFrameSize);
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001257
1258 // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1259 // It can be done by spilling XMMs to stack frame.
1260 // Note that only Win64 ABI might spill XMMs.
1261 for (unsigned i = CSI.size(); i != 0; --i) {
1262 unsigned Reg = CSI[i-1].getReg();
1263 if (X86::GR64RegClass.contains(Reg) ||
1264 X86::GR32RegClass.contains(Reg))
1265 continue;
1266 // Add the callee-saved register as live-in. It's killed at the spill.
1267 MBB.addLiveIn(Reg);
1268 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1269 TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i-1].getFrameIdx(),
1270 RC, TRI);
1271 }
1272
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001273 return true;
1274}
1275
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001276bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001277 MachineBasicBlock::iterator MI,
1278 const std::vector<CalleeSavedInfo> &CSI,
1279 const TargetRegisterInfo *TRI) const {
1280 if (CSI.empty())
1281 return false;
1282
1283 DebugLoc DL = MBB.findDebugLoc(MI);
1284
1285 MachineFunction &MF = *MBB.getParent();
1286 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001287
1288 // Reload XMMs from stack frame.
1289 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1290 unsigned Reg = CSI[i].getReg();
1291 if (X86::GR64RegClass.contains(Reg) ||
1292 X86::GR32RegClass.contains(Reg))
1293 continue;
1294 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1295 TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(),
1296 RC, TRI);
1297 }
1298
1299 // POP GPRs.
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001300 unsigned FPReg = TRI->getFrameRegister(MF);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001301 unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1302 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1303 unsigned Reg = CSI[i].getReg();
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001304 if (!X86::GR64RegClass.contains(Reg) &&
1305 !X86::GR32RegClass.contains(Reg))
1306 continue;
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001307 if (Reg == FPReg)
1308 // X86RegisterInfo::emitEpilogue will handle restoring of frame register.
1309 continue;
NAKAMURA Takumi419f2322011-02-27 08:47:19 +00001310 BuildMI(MBB, MI, DL, TII.get(Opc), Reg);
Anton Korobeynikovcd775ce2010-11-27 23:05:03 +00001311 }
1312 return true;
1313}
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001314
1315void
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001316X86FrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001317 RegScavenger *RS) const {
1318 MachineFrameInfo *MFI = MF.getFrameInfo();
1319 const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
1320 unsigned SlotSize = RegInfo->getSlotSize();
1321
1322 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1323 int32_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1324
1325 if (TailCallReturnAddrDelta < 0) {
1326 // create RETURNADDR area
1327 // arg
1328 // arg
1329 // RETADDR
1330 // { ...
1331 // RETADDR area
1332 // ...
1333 // }
1334 // [EBP]
1335 MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1336 (-1U*SlotSize)+TailCallReturnAddrDelta, true);
1337 }
1338
1339 if (hasFP(MF)) {
1340 assert((TailCallReturnAddrDelta <= 0) &&
1341 "The Delta should always be zero or negative");
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001342 const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001343
1344 // Create a frame entry for the EBP register that must be saved.
1345 int FrameIdx = MFI->CreateFixedObject(SlotSize,
1346 -(int)SlotSize +
1347 TFI.getOffsetOfLocalArea() +
1348 TailCallReturnAddrDelta,
1349 true);
1350 assert(FrameIdx == MFI->getObjectIndexBegin() &&
1351 "Slot for EBP register must be last in order to be found!");
Duncan Sands17001ce2011-10-18 12:44:00 +00001352 (void)FrameIdx;
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001353 }
Chad Rosier3f0dbab2012-07-10 17:45:53 +00001354
1355 // Spill the BasePtr if it's used.
1356 if (RegInfo->hasBasePointer(MF))
1357 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
Anton Korobeynikov94c5ae02010-11-27 23:05:25 +00001358}
Rafael Espindola76927d752011-08-30 19:39:58 +00001359
1360static bool
1361HasNestArgument(const MachineFunction *MF) {
1362 const Function *F = MF->getFunction();
1363 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1364 I != E; I++) {
1365 if (I->hasNestAttr())
1366 return true;
1367 }
1368 return false;
1369}
1370
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001371/// GetScratchRegister - Get a temp register for performing work in the
1372/// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1373/// and the properties of the function either one or two registers will be
1374/// needed. Set primary to true for the first register, false for the second.
Rafael Espindola76927d752011-08-30 19:39:58 +00001375static unsigned
Rafael Espindola2028b792012-01-11 19:00:37 +00001376GetScratchRegister(bool Is64Bit, const MachineFunction &MF, bool Primary) {
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001377 CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1378
1379 // Erlang stuff.
1380 if (CallingConvention == CallingConv::HiPE) {
1381 if (Is64Bit)
1382 return Primary ? X86::R14 : X86::R13;
1383 else
1384 return Primary ? X86::EBX : X86::EDI;
1385 }
1386
David Blaikie4d6ccb52012-01-20 21:51:11 +00001387 if (Is64Bit)
Rafael Espindola2028b792012-01-11 19:00:37 +00001388 return Primary ? X86::R11 : X86::R12;
Rafael Espindola76927d752011-08-30 19:39:58 +00001389
David Blaikie4d6ccb52012-01-20 21:51:11 +00001390 bool IsNested = HasNestArgument(&MF);
1391
1392 if (CallingConvention == CallingConv::X86_FastCall ||
1393 CallingConvention == CallingConv::Fast) {
1394 if (IsNested)
1395 report_fatal_error("Segmented stacks does not support fastcall with "
1396 "nested function.");
1397 return Primary ? X86::EAX : X86::ECX;
Rafael Espindola76927d752011-08-30 19:39:58 +00001398 }
David Blaikie4d6ccb52012-01-20 21:51:11 +00001399 if (IsNested)
1400 return Primary ? X86::EDX : X86::EAX;
1401 return Primary ? X86::ECX : X86::EAX;
Rafael Espindola76927d752011-08-30 19:39:58 +00001402}
1403
Sanjoy Das199ce332011-12-03 09:32:07 +00001404// The stack limit in the TCB is set to this many bytes above the actual stack
1405// limit.
1406static const uint64_t kSplitStackAvailable = 256;
1407
Rafael Espindola76927d752011-08-30 19:39:58 +00001408void
1409X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
1410 MachineBasicBlock &prologueMBB = MF.front();
1411 MachineFrameInfo *MFI = MF.getFrameInfo();
1412 const X86InstrInfo &TII = *TM.getInstrInfo();
1413 uint64_t StackSize;
1414 bool Is64Bit = STI.is64Bit();
1415 unsigned TlsReg, TlsOffset;
1416 DebugLoc DL;
Rafael Espindola76927d752011-08-30 19:39:58 +00001417
Rafael Espindola2028b792012-01-11 19:00:37 +00001418 unsigned ScratchReg = GetScratchRegister(Is64Bit, MF, true);
Rafael Espindola76927d752011-08-30 19:39:58 +00001419 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1420 "Scratch register is live-in");
1421
1422 if (MF.getFunction()->isVarArg())
1423 report_fatal_error("Segmented stacks do not support vararg functions.");
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001424 if (!STI.isTargetLinux() && !STI.isTargetDarwin() &&
1425 !STI.isTargetWin32() && !STI.isTargetFreeBSD())
Rafael Espindola85b9d432012-01-12 20:24:30 +00001426 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindola76927d752011-08-30 19:39:58 +00001427
1428 MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1429 MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1430 X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1431 bool IsNested = false;
1432
1433 // We need to know if the function has a nest argument only in 64 bit mode.
1434 if (Is64Bit)
1435 IsNested = HasNestArgument(&MF);
1436
Bill Wendling4e680542011-10-13 08:24:19 +00001437 // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1438 // allocMBB needs to be last (terminating) instruction.
Bill Wendling4e680542011-10-13 08:24:19 +00001439
Rafael Espindola76927d752011-08-30 19:39:58 +00001440 for (MachineBasicBlock::livein_iterator i = prologueMBB.livein_begin(),
1441 e = prologueMBB.livein_end(); i != e; i++) {
1442 allocMBB->addLiveIn(*i);
1443 checkMBB->addLiveIn(*i);
1444 }
1445
1446 if (IsNested)
Rafael Espindolae840e882011-10-26 21:12:27 +00001447 allocMBB->addLiveIn(X86::R10);
1448
Rafael Espindola76927d752011-08-30 19:39:58 +00001449 MF.push_front(allocMBB);
1450 MF.push_front(checkMBB);
1451
1452 // Eventually StackSize will be calculated by a link-time pass; which will
1453 // also decide whether checking code needs to be injected into this particular
1454 // prologue.
1455 StackSize = MFI->getStackSize();
1456
Rafael Espindola2028b792012-01-11 19:00:37 +00001457 // When the frame size is less than 256 we just compare the stack
1458 // boundary directly to the value of the stack pointer, per gcc.
1459 bool CompareStackPointer = StackSize < kSplitStackAvailable;
1460
Rafael Espindola76927d752011-08-30 19:39:58 +00001461 // Read the limit off the current stacklet off the stack_guard location.
1462 if (Is64Bit) {
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001463 if (STI.isTargetLinux()) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001464 TlsReg = X86::FS;
1465 TlsOffset = 0x70;
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001466 } else if (STI.isTargetDarwin()) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001467 TlsReg = X86::GS;
1468 TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001469 } else if (STI.isTargetFreeBSD()) {
Rafael Espindola85b9d432012-01-12 20:24:30 +00001470 TlsReg = X86::FS;
1471 TlsOffset = 0x18;
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001472 } else {
1473 report_fatal_error("Segmented stacks not supported on this platform.");
Rafael Espindola2028b792012-01-11 19:00:37 +00001474 }
Rafael Espindola76927d752011-08-30 19:39:58 +00001475
Rafael Espindola2028b792012-01-11 19:00:37 +00001476 if (CompareStackPointer)
Sanjoy Das199ce332011-12-03 09:32:07 +00001477 ScratchReg = X86::RSP;
1478 else
1479 BuildMI(checkMBB, DL, TII.get(X86::LEA64r), ScratchReg).addReg(X86::RSP)
Rafael Espindola014f7a32012-01-11 18:14:03 +00001480 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das199ce332011-12-03 09:32:07 +00001481
Rafael Espindola76927d752011-08-30 19:39:58 +00001482 BuildMI(checkMBB, DL, TII.get(X86::CMP64rm)).addReg(ScratchReg)
Rafael Espindola014f7a32012-01-11 18:14:03 +00001483 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Rafael Espindola76927d752011-08-30 19:39:58 +00001484 } else {
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001485 if (STI.isTargetLinux()) {
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001486 TlsReg = X86::GS;
1487 TlsOffset = 0x30;
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001488 } else if (STI.isTargetDarwin()) {
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001489 TlsReg = X86::GS;
1490 TlsOffset = 0x48 + 90*4;
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001491 } else if (STI.isTargetWin32()) {
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001492 TlsReg = X86::FS;
1493 TlsOffset = 0x14; // pvArbitrary, reserved for application use
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001494 } else if (STI.isTargetFreeBSD()) {
Rafael Espindola85b9d432012-01-12 20:24:30 +00001495 report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
Rafael Espindolae4d18de2012-01-12 20:22:08 +00001496 } else {
1497 report_fatal_error("Segmented stacks not supported on this platform.");
1498 }
Rafael Espindola76927d752011-08-30 19:39:58 +00001499
Rafael Espindola2028b792012-01-11 19:00:37 +00001500 if (CompareStackPointer)
Sanjoy Das199ce332011-12-03 09:32:07 +00001501 ScratchReg = X86::ESP;
1502 else
1503 BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
Rafael Espindola014f7a32012-01-11 18:14:03 +00001504 .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
Sanjoy Das199ce332011-12-03 09:32:07 +00001505
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001506 if (STI.isTargetLinux() || STI.isTargetWin32()) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001507 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1508 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001509 } else if (STI.isTargetDarwin()) {
Rafael Espindola2028b792012-01-11 19:00:37 +00001510
1511 // TlsOffset doesn't fit into a mod r/m byte so we need an extra register
1512 unsigned ScratchReg2;
1513 bool SaveScratch2;
1514 if (CompareStackPointer) {
1515 // The primary scratch register is available for holding the TLS offset
1516 ScratchReg2 = GetScratchRegister(Is64Bit, MF, true);
1517 SaveScratch2 = false;
1518 } else {
1519 // Need to use a second register to hold the TLS offset
1520 ScratchReg2 = GetScratchRegister(Is64Bit, MF, false);
1521
1522 // Unfortunately, with fastcc the second scratch register may hold an arg
1523 SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1524 }
1525
1526 // If Scratch2 is live-in then it needs to be saved
1527 assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1528 "Scratch register is live-in and not saved");
1529
1530 if (SaveScratch2)
1531 BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1532 .addReg(ScratchReg2, RegState::Kill);
1533
1534 BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1535 .addImm(TlsOffset);
1536 BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1537 .addReg(ScratchReg)
1538 .addReg(ScratchReg2).addImm(1).addReg(0)
1539 .addImm(0)
1540 .addReg(TlsReg);
1541
1542 if (SaveScratch2)
1543 BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1544 }
Rafael Espindola76927d752011-08-30 19:39:58 +00001545 }
1546
1547 // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1548 // It jumps to normal execution of the function body.
Rafael Espindola313c7032012-01-11 18:23:35 +00001549 BuildMI(checkMBB, DL, TII.get(X86::JA_4)).addMBB(&prologueMBB);
Rafael Espindola76927d752011-08-30 19:39:58 +00001550
1551 // On 32 bit we first push the arguments size and then the frame size. On 64
1552 // bit, we pass the stack frame size in r10 and the argument size in r11.
1553 if (Is64Bit) {
1554 // Functions with nested arguments use R10, so it needs to be saved across
1555 // the call to _morestack
1556
1557 if (IsNested)
1558 BuildMI(allocMBB, DL, TII.get(X86::MOV64rr), X86::RAX).addReg(X86::R10);
1559
1560 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R10)
1561 .addImm(StackSize);
1562 BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R11)
1563 .addImm(X86FI->getArgumentStackSize());
1564 MF.getRegInfo().setPhysRegUsed(X86::R10);
1565 MF.getRegInfo().setPhysRegUsed(X86::R11);
1566 } else {
Rafael Espindola76927d752011-08-30 19:39:58 +00001567 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1568 .addImm(X86FI->getArgumentStackSize());
1569 BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1570 .addImm(StackSize);
1571 }
1572
1573 // __morestack is in libgcc
1574 if (Is64Bit)
1575 BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1576 .addExternalSymbol("__morestack");
1577 else
1578 BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1579 .addExternalSymbol("__morestack");
1580
Bill Wendling4e680542011-10-13 08:24:19 +00001581 if (IsNested)
Rafael Espindolae840e882011-10-26 21:12:27 +00001582 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1583 else
1584 BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
Bill Wendling4e680542011-10-13 08:24:19 +00001585
Rafael Espindolae840e882011-10-26 21:12:27 +00001586 allocMBB->addSuccessor(&prologueMBB);
Bill Wendling4e680542011-10-13 08:24:19 +00001587
Rafael Espindola76927d752011-08-30 19:39:58 +00001588 checkMBB->addSuccessor(allocMBB);
1589 checkMBB->addSuccessor(&prologueMBB);
1590
Jakob Stoklund Olesen51f0c762011-09-24 01:11:19 +00001591#ifdef XDEBUG
Rafael Espindola76927d752011-08-30 19:39:58 +00001592 MF.verify();
1593#endif
1594}
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001595
Yiannis Tsiouris2d1035d2013-02-28 16:59:10 +00001596/// Erlang programs may need a special prologue to handle the stack size they
1597/// might need at runtime. That is because Erlang/OTP does not implement a C
1598/// stack but uses a custom implementation of hybrid stack/heap architecture.
1599/// (for more information see Eric Stenman's Ph.D. thesis:
1600/// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1601///
1602/// CheckStack:
1603/// temp0 = sp - MaxStack
1604/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1605/// OldStart:
1606/// ...
1607/// IncStack:
1608/// call inc_stack # doubles the stack space
1609/// temp0 = sp - MaxStack
1610/// if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001611void X86FrameLowering::adjustForHiPEPrologue(MachineFunction &MF) const {
1612 const X86InstrInfo &TII = *TM.getInstrInfo();
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001613 MachineFrameInfo *MFI = MF.getFrameInfo();
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001614 const unsigned SlotSize = TM.getRegisterInfo()->getSlotSize();
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001615 const bool Is64Bit = STI.is64Bit();
1616 DebugLoc DL;
1617 // HiPE-specific values
1618 const unsigned HipeLeafWords = 24;
1619 const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1620 const unsigned Guaranteed = HipeLeafWords * SlotSize;
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001621 unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1622 MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1623 unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001624
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001625 assert(STI.isTargetLinux() &&
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001626 "HiPE prologue is only supported on Linux operating systems.");
1627
1628 // Compute the largest caller's frame that is needed to fit the callees'
1629 // frames. This 'MaxStack' is computed from:
1630 //
1631 // a) the fixed frame size, which is the space needed for all spilled temps,
1632 // b) outgoing on-stack parameter areas, and
1633 // c) the minimum stack space this function needs to make available for the
1634 // functions it calls (a tunable ABI property).
1635 if (MFI->hasCalls()) {
1636 unsigned MoreStackForCalls = 0;
1637
1638 for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1639 MBBI != MBBE; ++MBBI)
1640 for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001641 MI != ME; ++MI) {
1642 if (!MI->isCall())
1643 continue;
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001644
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001645 // Get callee operand.
1646 const MachineOperand &MO = MI->getOperand(0);
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001647
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001648 // Only take account of global function calls (no closures etc.).
1649 if (!MO.isGlobal())
1650 continue;
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001651
Benjamin Kramerb1e1d5d2013-02-19 17:32:57 +00001652 const Function *F = dyn_cast<Function>(MO.getGlobal());
1653 if (!F)
1654 continue;
1655
1656 // Do not update 'MaxStack' for primitive and built-in functions
1657 // (encoded with names either starting with "erlang."/"bif_" or not
1658 // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1659 // "_", such as the BIF "suspend_0") as they are executed on another
1660 // stack.
1661 if (F->getName().find("erlang.") != StringRef::npos ||
1662 F->getName().find("bif_") != StringRef::npos ||
1663 F->getName().find_first_of("._") == StringRef::npos)
1664 continue;
1665
1666 unsigned CalleeStkArity =
1667 F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1668 if (HipeLeafWords - 1 > CalleeStkArity)
1669 MoreStackForCalls = std::max(MoreStackForCalls,
1670 (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1671 }
Benjamin Kramer98fbe272013-02-18 20:55:12 +00001672 MaxStack += MoreStackForCalls;
1673 }
1674
1675 // If the stack frame needed is larger than the guaranteed then runtime checks
1676 // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1677 if (MaxStack > Guaranteed) {
1678 MachineBasicBlock &prologueMBB = MF.front();
1679 MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1680 MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1681
1682 for (MachineBasicBlock::livein_iterator I = prologueMBB.livein_begin(),
1683 E = prologueMBB.livein_end(); I != E; I++) {
1684 stackCheckMBB->addLiveIn(*I);
1685 incStackMBB->addLiveIn(*I);
1686 }
1687
1688 MF.push_front(incStackMBB);
1689 MF.push_front(stackCheckMBB);
1690
1691 unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1692 unsigned LEAop, CMPop, CALLop;
1693 if (Is64Bit) {
1694 SPReg = X86::RSP;
1695 PReg = X86::RBP;
1696 LEAop = X86::LEA64r;
1697 CMPop = X86::CMP64rm;
1698 CALLop = X86::CALL64pcrel32;
1699 SPLimitOffset = 0x90;
1700 } else {
1701 SPReg = X86::ESP;
1702 PReg = X86::EBP;
1703 LEAop = X86::LEA32r;
1704 CMPop = X86::CMP32rm;
1705 CALLop = X86::CALLpcrel32;
1706 SPLimitOffset = 0x4c;
1707 }
1708
1709 ScratchReg = GetScratchRegister(Is64Bit, MF, true);
1710 assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1711 "HiPE prologue scratch register is live-in");
1712
1713 // Create new MBB for StackCheck:
1714 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
1715 SPReg, false, -MaxStack);
1716 // SPLimitOffset is in a fixed heap location (pointed by BP).
1717 addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
1718 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1719 BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_4)).addMBB(&prologueMBB);
1720
1721 // Create new MBB for IncStack:
1722 BuildMI(incStackMBB, DL, TII.get(CALLop)).
1723 addExternalSymbol("inc_stack_0");
1724 addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
1725 SPReg, false, -MaxStack);
1726 addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
1727 .addReg(ScratchReg), PReg, false, SPLimitOffset);
1728 BuildMI(incStackMBB, DL, TII.get(X86::JLE_4)).addMBB(incStackMBB);
1729
1730 stackCheckMBB->addSuccessor(&prologueMBB, 99);
1731 stackCheckMBB->addSuccessor(incStackMBB, 1);
1732 incStackMBB->addSuccessor(&prologueMBB, 99);
1733 incStackMBB->addSuccessor(incStackMBB, 1);
1734 }
1735#ifdef XDEBUG
1736 MF.verify();
1737#endif
1738}
Eli Bendersky700ed802013-02-21 20:05:00 +00001739
1740void X86FrameLowering::
1741eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1742 MachineBasicBlock::iterator I) const {
1743 const X86InstrInfo &TII = *TM.getInstrInfo();
1744 const X86RegisterInfo &RegInfo = *TM.getRegisterInfo();
1745 unsigned StackPtr = RegInfo.getStackRegister();
1746 bool reseveCallFrame = hasReservedCallFrame(MF);
1747 int Opcode = I->getOpcode();
1748 bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
1749 bool IsLP64 = STI.isTarget64BitLP64();
1750 DebugLoc DL = I->getDebugLoc();
1751 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
1752 uint64_t CalleeAmt = isDestroy ? I->getOperand(1).getImm() : 0;
1753 I = MBB.erase(I);
1754
1755 if (!reseveCallFrame) {
1756 // If the stack pointer can be changed after prologue, turn the
1757 // adjcallstackup instruction into a 'sub ESP, <amt>' and the
1758 // adjcallstackdown instruction into 'add ESP, <amt>'
1759 // TODO: consider using push / pop instead of sub + store / add
1760 if (Amount == 0)
1761 return;
1762
1763 // We need to keep the stack aligned properly. To do this, we round the
1764 // amount of space needed for the outgoing arguments up to the next
1765 // alignment boundary.
1766 unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
1767 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
1768
1769 MachineInstr *New = 0;
1770 if (Opcode == TII.getCallFrameSetupOpcode()) {
1771 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(IsLP64, Amount)),
1772 StackPtr)
1773 .addReg(StackPtr)
1774 .addImm(Amount);
1775 } else {
1776 assert(Opcode == TII.getCallFrameDestroyOpcode());
1777
1778 // Factor out the amount the callee already popped.
1779 Amount -= CalleeAmt;
1780
1781 if (Amount) {
1782 unsigned Opc = getADDriOpcode(IsLP64, Amount);
1783 New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1784 .addReg(StackPtr).addImm(Amount);
1785 }
1786 }
1787
1788 if (New) {
1789 // The EFLAGS implicit def is dead.
1790 New->getOperand(3).setIsDead();
1791
1792 // Replace the pseudo instruction with a new instruction.
1793 MBB.insert(I, New);
1794 }
1795
1796 return;
1797 }
1798
1799 if (Opcode == TII.getCallFrameDestroyOpcode() && CalleeAmt) {
1800 // If we are performing frame pointer elimination and if the callee pops
1801 // something off the stack pointer, add it back. We do this until we have
1802 // more advanced stack pointer tracking ability.
1803 unsigned Opc = getSUBriOpcode(IsLP64, CalleeAmt);
1804 MachineInstr *New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1805 .addReg(StackPtr).addImm(CalleeAmt);
1806
1807 // The EFLAGS implicit def is dead.
1808 New->getOperand(3).setIsDead();
1809
1810 // We are not tracking the stack pointer adjustment by the callee, so make
1811 // sure we restore the stack pointer immediately after the call, there may
1812 // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
1813 MachineBasicBlock::iterator B = MBB.begin();
1814 while (I != B && !llvm::prior(I)->isCall())
1815 --I;
1816 MBB.insert(I, New);
1817 }
1818}
1819