Fix 80-columns, tab characters, and comments.
[oota-llvm.git] / lib / Target / X86 / X86FrameLowering.cpp
1 //===-- X86FrameLowering.cpp - X86 Frame Information ----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the X86 implementation of TargetFrameLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "X86FrameLowering.h"
15 #include "X86InstrBuilder.h"
16 #include "X86InstrInfo.h"
17 #include "X86MachineFunctionInfo.h"
18 #include "X86Subtarget.h"
19 #include "X86TargetMachine.h"
20 #include "llvm/ADT/SmallSet.h"
21 #include "llvm/CodeGen/MachineFrameInfo.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineInstrBuilder.h"
24 #include "llvm/CodeGen/MachineModuleInfo.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/Function.h"
28 #include "llvm/MC/MCAsmInfo.h"
29 #include "llvm/MC/MCSymbol.h"
30 #include "llvm/Support/CommandLine.h"
31 #include "llvm/Target/TargetOptions.h"
32
33 using namespace llvm;
34
35 // FIXME: completely move here.
36 extern cl::opt<bool> ForceStackAlign;
37
38 bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const {
39   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.
45 bool X86FrameLowering::hasFP(const MachineFunction &MF) const {
46   const MachineFrameInfo *MFI = MF.getFrameInfo();
47   const MachineModuleInfo &MMI = MF.getMMI();
48   const TargetRegisterInfo *RegInfo = TM.getRegisterInfo();
49
50   return (MF.getTarget().Options.DisableFramePointerElim(MF) ||
51           RegInfo->needsStackRealignment(MF) ||
52           MFI->hasVarSizedObjects() ||
53           MFI->isFrameAddressTaken() || MFI->hasInlineAsmWithSPAdjust() ||
54           MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() ||
55           MMI.callsUnwindInit() || MMI.callsEHReturn());
56 }
57
58 static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) {
59   if (IsLP64) {
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
70 static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) {
71   if (IsLP64) {
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
82 static unsigned getLEArOpcode(unsigned IsLP64) {
83   return IsLP64 ? X86::LEA64r : X86::LEA32r;
84 }
85
86 /// 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.
89 static 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
98   static const uint16_t CallerSavedRegs32Bit[] = {
99     X86::EAX, X86::EDX, X86::ECX, 0
100   };
101
102   static const uint16_t CallerSavedRegs64Bit[] = {
103     X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI,
104     X86::R8,  X86::R9,  X86::R10, X86::R11, 0
105   };
106
107   unsigned Opc = MBBI->getOpcode();
108   switch (Opc) {
109   default: return 0;
110   case X86::RETL:
111   case X86::RETQ:
112   case X86::RETIL:
113   case X86::RETIQ:
114   case X86::TCRETURNdi:
115   case X86::TCRETURNri:
116   case X86::TCRETURNmi:
117   case X86::TCRETURNdi64:
118   case X86::TCRETURNri64:
119   case X86::TCRETURNmi64:
120   case X86::EH_RETURN:
121   case X86::EH_RETURN64: {
122     SmallSet<uint16_t, 8> Uses;
123     for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) {
124       MachineOperand &MO = MBBI->getOperand(i);
125       if (!MO.isReg() || MO.isDef())
126         continue;
127       unsigned Reg = MO.getReg();
128       if (!Reg)
129         continue;
130       for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
131         Uses.insert(*AI);
132     }
133
134     const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
135     for (; *CS; ++CS)
136       if (!Uses.count(*CS))
137         return *CS;
138   }
139   }
140
141   return 0;
142 }
143
144
145 /// emitSPUpdate - Emit a series of instructions to increment / decrement the
146 /// stack pointer by a constant value.
147 static
148 void emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
149                   unsigned StackPtr, int64_t NumBytes,
150                   bool Is64Bit, bool IsLP64, bool UseLEA,
151                   const TargetInstrInfo &TII, const TargetRegisterInfo &TRI) {
152   bool isSub = NumBytes < 0;
153   uint64_t Offset = isSub ? -NumBytes : NumBytes;
154   unsigned Opc;
155   if (UseLEA)
156     Opc = getLEArOpcode(IsLP64);
157   else
158     Opc = isSub
159       ? getSUBriOpcode(IsLP64, Offset)
160       : getADDriOpcode(IsLP64, Offset);
161
162   uint64_t Chunk = (1LL << 31) - 1;
163   DebugLoc DL = MBB.findDebugLoc(MBBI);
164
165   while (Offset) {
166     uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset;
167     if (ThisVal == (Is64Bit ? 8 : 4)) {
168       // Use push / pop instead.
169       unsigned Reg = isSub
170         ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
171         : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
172       if (Reg) {
173         Opc = isSub
174           ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
175           : (Is64Bit ? X86::POP64r  : X86::POP32r);
176         MachineInstr *MI = BuildMI(MBB, MBBI, DL, TII.get(Opc))
177           .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub));
178         if (isSub)
179           MI->setFlag(MachineInstr::FrameSetup);
180         Offset -= ThisVal;
181         continue;
182       }
183     }
184
185     MachineInstr *MI = nullptr;
186
187     if (UseLEA) {
188       MI =  addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
189                           StackPtr, false, isSub ? -ThisVal : ThisVal);
190     } else {
191       MI = BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
192             .addReg(StackPtr)
193             .addImm(ThisVal);
194       MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
195     }
196
197     if (isSub)
198       MI->setFlag(MachineInstr::FrameSetup);
199
200     Offset -= ThisVal;
201   }
202 }
203
204 /// mergeSPUpdatesUp - Merge two stack-manipulating instructions upper iterator.
205 static
206 void mergeSPUpdatesUp(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI,
207                       unsigned StackPtr, uint64_t *NumBytes = nullptr) {
208   if (MBBI == MBB.begin()) return;
209
210   MachineBasicBlock::iterator PI = std::prev(MBBI);
211   unsigned Opc = PI->getOpcode();
212   if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
213        Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
214        Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
215       PI->getOperand(0).getReg() == StackPtr) {
216     if (NumBytes)
217       *NumBytes += PI->getOperand(2).getImm();
218     MBB.erase(PI);
219   } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
220               Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
221              PI->getOperand(0).getReg() == StackPtr) {
222     if (NumBytes)
223       *NumBytes -= PI->getOperand(2).getImm();
224     MBB.erase(PI);
225   }
226 }
227
228 /// mergeSPUpdatesDown - Merge two stack-manipulating instructions lower
229 /// iterator.
230 static
231 void mergeSPUpdatesDown(MachineBasicBlock &MBB,
232                         MachineBasicBlock::iterator &MBBI,
233                         unsigned StackPtr, uint64_t *NumBytes = nullptr) {
234   // FIXME:  THIS ISN'T RUN!!!
235   return;
236
237   if (MBBI == MBB.end()) return;
238
239   MachineBasicBlock::iterator NI = std::next(MBBI);
240   if (NI == MBB.end()) return;
241
242   unsigned Opc = NI->getOpcode();
243   if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
244        Opc == X86::ADD32ri || Opc == X86::ADD32ri8) &&
245       NI->getOperand(0).getReg() == StackPtr) {
246     if (NumBytes)
247       *NumBytes -= NI->getOperand(2).getImm();
248     MBB.erase(NI);
249     MBBI = NI;
250   } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
251               Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
252              NI->getOperand(0).getReg() == StackPtr) {
253     if (NumBytes)
254       *NumBytes += NI->getOperand(2).getImm();
255     MBB.erase(NI);
256     MBBI = NI;
257   }
258 }
259
260 /// mergeSPUpdates - Checks the instruction before/after the passed
261 /// instruction. If it is an ADD/SUB/LEA instruction it is deleted argument and
262 /// the stack adjustment is returned as a positive value for ADD/LEA and a
263 /// negative for SUB.
264 static int mergeSPUpdates(MachineBasicBlock &MBB,
265                           MachineBasicBlock::iterator &MBBI, unsigned StackPtr,
266                           bool doMergeWithPrevious) {
267   if ((doMergeWithPrevious && MBBI == MBB.begin()) ||
268       (!doMergeWithPrevious && MBBI == MBB.end()))
269     return 0;
270
271   MachineBasicBlock::iterator PI = doMergeWithPrevious ? std::prev(MBBI) : MBBI;
272   MachineBasicBlock::iterator NI = doMergeWithPrevious ? nullptr
273                                                        : std::next(MBBI);
274   unsigned Opc = PI->getOpcode();
275   int Offset = 0;
276
277   if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 ||
278        Opc == X86::ADD32ri || Opc == X86::ADD32ri8 ||
279        Opc == X86::LEA32r || Opc == X86::LEA64_32r) &&
280       PI->getOperand(0).getReg() == StackPtr){
281     Offset += PI->getOperand(2).getImm();
282     MBB.erase(PI);
283     if (!doMergeWithPrevious) MBBI = NI;
284   } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 ||
285               Opc == X86::SUB32ri || Opc == X86::SUB32ri8) &&
286              PI->getOperand(0).getReg() == StackPtr) {
287     Offset -= PI->getOperand(2).getImm();
288     MBB.erase(PI);
289     if (!doMergeWithPrevious) MBBI = NI;
290   }
291
292   return Offset;
293 }
294
295 static bool isEAXLiveIn(MachineFunction &MF) {
296   for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(),
297        EE = MF.getRegInfo().livein_end(); II != EE; ++II) {
298     unsigned Reg = II->first;
299
300     if (Reg == X86::EAX || Reg == X86::AX ||
301         Reg == X86::AH || Reg == X86::AL)
302       return true;
303   }
304
305   return false;
306 }
307
308 void X86FrameLowering::emitCalleeSavedFrameMoves(
309     MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc DL,
310     unsigned FramePtr) const {
311   MachineFunction &MF = *MBB.getParent();
312   MachineFrameInfo *MFI = MF.getFrameInfo();
313   MachineModuleInfo &MMI = MF.getMMI();
314   const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
315   const X86InstrInfo &TII = *TM.getInstrInfo();
316
317   // Add callee saved registers to move list.
318   const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
319   if (CSI.empty()) return;
320
321   const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
322   bool HasFP = hasFP(MF);
323
324   // Calculate amount of bytes used for return address storing.
325   int stackGrowth = -RegInfo->getSlotSize();
326
327   // FIXME: This is dirty hack. The code itself is pretty mess right now.
328   // It should be rewritten from scratch and generalized sometimes.
329
330   // Determine maximum offset (minimum due to stack growth).
331   int64_t MaxOffset = 0;
332   for (std::vector<CalleeSavedInfo>::const_iterator
333          I = CSI.begin(), E = CSI.end(); I != E; ++I)
334     MaxOffset = std::min(MaxOffset,
335                          MFI->getObjectOffset(I->getFrameIdx()));
336
337   // Calculate offsets.
338   int64_t saveAreaOffset = (HasFP ? 3 : 2) * stackGrowth;
339   for (std::vector<CalleeSavedInfo>::const_iterator
340          I = CSI.begin(), E = CSI.end(); I != E; ++I) {
341     int64_t Offset = MFI->getObjectOffset(I->getFrameIdx());
342     unsigned Reg = I->getReg();
343     Offset = MaxOffset - Offset + saveAreaOffset;
344
345     // Don't output a new machine move if we're re-saving the frame
346     // pointer. This happens when the PrologEpilogInserter has inserted an extra
347     // "PUSH" of the frame pointer -- the "emitPrologue" method automatically
348     // generates one when frame pointers are used. If we generate a "machine
349     // move" for this extra "PUSH", the linker will lose track of the fact that
350     // the frame pointer should have the value of the first "PUSH" when it's
351     // trying to unwind.
352     //
353     // FIXME: This looks inelegant. It's possibly correct, but it's covering up
354     //        another bug. I.e., one where we generate a prolog like this:
355     //
356     //          pushl  %ebp
357     //          movl   %esp, %ebp
358     //          pushl  %ebp
359     //          pushl  %esi
360     //           ...
361     //
362     //        The immediate re-push of EBP is unnecessary. At the least, it's an
363     //        optimization bug. EBP can be used as a scratch register in certain
364     //        cases, but probably not when we have a frame pointer.
365     if (HasFP && FramePtr == Reg)
366       continue;
367
368     unsigned DwarfReg = MRI->getDwarfRegNum(Reg, true);
369     unsigned CFIIndex =
370         MMI.addFrameInst(MCCFIInstruction::createOffset(nullptr, DwarfReg,
371                                                         Offset));
372     BuildMI(MBB, MBBI, DL, TII.get(X86::CFI_INSTRUCTION)).addCFIIndex(CFIIndex);
373   }
374 }
375
376 /// usesTheStack - This function checks if any of the users of EFLAGS
377 /// copies the EFLAGS. We know that the code that lowers COPY of EFLAGS has
378 /// to use the stack, and if we don't adjust the stack we clobber the first
379 /// frame index.
380 /// See X86InstrInfo::copyPhysReg.
381 static bool usesTheStack(const MachineFunction &MF) {
382   const MachineRegisterInfo &MRI = MF.getRegInfo();
383
384   for (MachineRegisterInfo::reg_instr_iterator
385        ri = MRI.reg_instr_begin(X86::EFLAGS), re = MRI.reg_instr_end();
386        ri != re; ++ri)
387     if (ri->isCopy())
388       return true;
389
390   return false;
391 }
392
393 /// emitPrologue - Push callee-saved registers onto the stack, which
394 /// automatically adjust the stack pointer. Adjust the stack pointer to allocate
395 /// space for local variables. Also emit labels used by the exception handler to
396 /// generate the exception handling frames.
397 void X86FrameLowering::emitPrologue(MachineFunction &MF) const {
398   MachineBasicBlock &MBB = MF.front(); // Prologue goes in entry BB.
399   MachineBasicBlock::iterator MBBI = MBB.begin();
400   MachineFrameInfo *MFI = MF.getFrameInfo();
401   const Function *Fn = MF.getFunction();
402   const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
403   const X86InstrInfo &TII = *TM.getInstrInfo();
404   MachineModuleInfo &MMI = MF.getMMI();
405   X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
406   bool needsFrameMoves = MMI.hasDebugInfo() ||
407     Fn->needsUnwindTableEntry();
408   uint64_t MaxAlign  = MFI->getMaxAlignment(); // Desired stack alignment.
409   uint64_t StackSize = MFI->getStackSize();    // Number of bytes to allocate.
410   bool HasFP = hasFP(MF);
411   bool Is64Bit = STI.is64Bit();
412   bool IsLP64 = STI.isTarget64BitLP64();
413   bool IsWin64 = STI.isTargetWin64();
414   bool UseLEA = STI.useLeaForSP();
415   unsigned StackAlign = getStackAlignment();
416   unsigned SlotSize = RegInfo->getSlotSize();
417   unsigned FramePtr = RegInfo->getFrameRegister(MF);
418   unsigned StackPtr = RegInfo->getStackRegister();
419   unsigned BasePtr = RegInfo->getBaseRegister();
420   DebugLoc DL;
421
422   // If we're forcing a stack realignment we can't rely on just the frame
423   // info, we need to know the ABI stack alignment as well in case we
424   // have a call out.  Otherwise just make sure we have some alignment - we'll
425   // go with the minimum SlotSize.
426   if (ForceStackAlign) {
427     if (MFI->hasCalls())
428       MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
429     else if (MaxAlign < SlotSize)
430       MaxAlign = SlotSize;
431   }
432
433   // Add RETADDR move area to callee saved frame size.
434   int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
435   if (TailCallReturnAddrDelta < 0)
436     X86FI->setCalleeSavedFrameSize(
437       X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta);
438
439   // If this is x86-64 and the Red Zone is not disabled, if we are a leaf
440   // function, and use up to 128 bytes of stack space, don't have a frame
441   // pointer, calls, or dynamic alloca then we do not need to adjust the
442   // stack pointer (we fit in the Red Zone). We also check that we don't
443   // push and pop from the stack.
444   if (Is64Bit && !Fn->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
445                                                    Attribute::NoRedZone) &&
446       !RegInfo->needsStackRealignment(MF) &&
447       !MFI->hasVarSizedObjects() &&                     // No dynamic alloca.
448       !MFI->adjustsStack() &&                           // No calls.
449       !IsWin64 &&                                       // Win64 has no Red Zone
450       !usesTheStack(MF) &&                              // Don't push and pop.
451       !MF.shouldSplitStack()) {                         // Regular stack
452     uint64_t MinSize = X86FI->getCalleeSavedFrameSize();
453     if (HasFP) MinSize += SlotSize;
454     StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
455     MFI->setStackSize(StackSize);
456   }
457
458   // Insert stack pointer adjustment for later moving of return addr.  Only
459   // applies to tail call optimized functions where the callee argument stack
460   // size is bigger than the callers.
461   if (TailCallReturnAddrDelta < 0) {
462     MachineInstr *MI =
463       BuildMI(MBB, MBBI, DL,
464               TII.get(getSUBriOpcode(IsLP64, -TailCallReturnAddrDelta)),
465               StackPtr)
466         .addReg(StackPtr)
467         .addImm(-TailCallReturnAddrDelta)
468         .setMIFlag(MachineInstr::FrameSetup);
469     MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead.
470   }
471
472   // Mapping for machine moves:
473   //
474   //   DST: VirtualFP AND
475   //        SRC: VirtualFP              => DW_CFA_def_cfa_offset
476   //        ELSE                        => DW_CFA_def_cfa
477   //
478   //   SRC: VirtualFP AND
479   //        DST: Register               => DW_CFA_def_cfa_register
480   //
481   //   ELSE
482   //        OFFSET < 0                  => DW_CFA_offset_extended_sf
483   //        REG < 64                    => DW_CFA_offset + Reg
484   //        ELSE                        => DW_CFA_offset_extended
485
486   uint64_t NumBytes = 0;
487   int stackGrowth = -SlotSize;
488
489   if (HasFP) {
490     // Calculate required stack adjustment.
491     uint64_t FrameSize = StackSize - SlotSize;
492     if (RegInfo->needsStackRealignment(MF)) {
493       // Callee-saved registers are pushed on stack before the stack
494       // is realigned.
495       FrameSize -= X86FI->getCalleeSavedFrameSize();
496       NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
497     } else {
498       NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
499     }
500
501     // Get the offset of the stack slot for the EBP register, which is
502     // guaranteed to be the last slot by processFunctionBeforeFrameFinalized.
503     // Update the frame offset adjustment.
504     MFI->setOffsetAdjustment(-NumBytes);
505
506     // Save EBP/RBP into the appropriate stack slot.
507     BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r))
508       .addReg(FramePtr, RegState::Kill)
509       .setMIFlag(MachineInstr::FrameSetup);
510
511     if (needsFrameMoves) {
512       // Mark the place where EBP/RBP was saved.
513       // Define the current CFA rule to use the provided offset.
514       assert(StackSize);
515       unsigned CFIIndex = MMI.addFrameInst(
516           MCCFIInstruction::createDefCfaOffset(nullptr, 2 * stackGrowth));
517       BuildMI(MBB, MBBI, DL, TII.get(X86::CFI_INSTRUCTION))
518           .addCFIIndex(CFIIndex);
519
520       // Change the rule for the FramePtr to be an "offset" rule.
521       unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
522       CFIIndex = MMI.addFrameInst(
523           MCCFIInstruction::createOffset(nullptr,
524                                          DwarfFramePtr, 2 * stackGrowth));
525       BuildMI(MBB, MBBI, DL, TII.get(X86::CFI_INSTRUCTION))
526           .addCFIIndex(CFIIndex);
527     }
528
529     // Update EBP with the new base value.
530     BuildMI(MBB, MBBI, DL,
531             TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), FramePtr)
532         .addReg(StackPtr)
533         .setMIFlag(MachineInstr::FrameSetup);
534
535     if (needsFrameMoves) {
536       // Mark effective beginning of when frame pointer becomes valid.
537       // Define the current CFA to use the EBP/RBP register.
538       unsigned DwarfFramePtr = RegInfo->getDwarfRegNum(FramePtr, true);
539       unsigned CFIIndex = MMI.addFrameInst(
540           MCCFIInstruction::createDefCfaRegister(nullptr, DwarfFramePtr));
541       BuildMI(MBB, MBBI, DL, TII.get(X86::CFI_INSTRUCTION))
542           .addCFIIndex(CFIIndex);
543     }
544
545     // Mark the FramePtr as live-in in every block except the entry.
546     for (MachineFunction::iterator I = std::next(MF.begin()), E = MF.end();
547          I != E; ++I)
548       I->addLiveIn(FramePtr);
549   } else {
550     NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
551   }
552
553   // Skip the callee-saved push instructions.
554   bool PushedRegs = false;
555   int StackOffset = 2 * stackGrowth;
556
557   while (MBBI != MBB.end() &&
558          (MBBI->getOpcode() == X86::PUSH32r ||
559           MBBI->getOpcode() == X86::PUSH64r)) {
560     PushedRegs = true;
561     MBBI->setFlag(MachineInstr::FrameSetup);
562     ++MBBI;
563
564     if (!HasFP && needsFrameMoves) {
565       // Mark callee-saved push instruction.
566       // Define the current CFA rule to use the provided offset.
567       assert(StackSize);
568       unsigned CFIIndex = MMI.addFrameInst(
569           MCCFIInstruction::createDefCfaOffset(nullptr, StackOffset));
570       BuildMI(MBB, MBBI, DL, TII.get(X86::CFI_INSTRUCTION))
571           .addCFIIndex(CFIIndex);
572       StackOffset += stackGrowth;
573     }
574   }
575
576   // Realign stack after we pushed callee-saved registers (so that we'll be
577   // able to calculate their offsets from the frame pointer).
578
579   // NOTE: We push the registers before realigning the stack, so
580   // vector callee-saved (xmm) registers may be saved w/o proper
581   // alignment in this way. However, currently these regs are saved in
582   // stack slots (see X86FrameLowering::spillCalleeSavedRegisters()), so
583   // this shouldn't be a problem.
584   if (RegInfo->needsStackRealignment(MF)) {
585     assert(HasFP && "There should be a frame pointer if stack is realigned.");
586     MachineInstr *MI =
587       BuildMI(MBB, MBBI, DL,
588               TII.get(Is64Bit ? X86::AND64ri32 : X86::AND32ri), StackPtr)
589       .addReg(StackPtr)
590       .addImm(-MaxAlign)
591       .setMIFlag(MachineInstr::FrameSetup);
592
593     // The EFLAGS implicit def is dead.
594     MI->getOperand(3).setIsDead();
595   }
596
597   // If there is an SUB32ri of ESP immediately before this instruction, merge
598   // the two. This can be the case when tail call elimination is enabled and
599   // the callee has more arguments then the caller.
600   NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true);
601
602   // If there is an ADD32ri or SUB32ri of ESP immediately after this
603   // instruction, merge the two instructions.
604   mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes);
605
606   // Adjust stack pointer: ESP -= numbytes.
607
608   // Windows and cygwin/mingw require a prologue helper routine when allocating
609   // more than 4K bytes on the stack.  Windows uses __chkstk and cygwin/mingw
610   // uses __alloca.  __alloca and the 32-bit version of __chkstk will probe the
611   // stack and adjust the stack pointer in one go.  The 64-bit version of
612   // __chkstk is only responsible for probing the stack.  The 64-bit prologue is
613   // responsible for adjusting the stack pointer.  Touching the stack at 4K
614   // increments is necessary to ensure that the guard pages used by the OS
615   // virtual memory manager are allocated in correct sequence.
616   if (NumBytes >= 4096 && STI.isOSWindows() && !STI.isTargetMacho()) {
617     const char *StackProbeSymbol;
618
619     if (Is64Bit) {
620       if (STI.isTargetCygMing()) {
621         StackProbeSymbol = "___chkstk_ms";
622       } else {
623         StackProbeSymbol = "__chkstk";
624       }
625     } else if (STI.isTargetCygMing())
626       StackProbeSymbol = "_alloca";
627     else
628       StackProbeSymbol = "_chkstk";
629
630     // Check whether EAX is livein for this function.
631     bool isEAXAlive = isEAXLiveIn(MF);
632
633     if (isEAXAlive) {
634       // Sanity check that EAX is not livein for this function.
635       // It should not be, so throw an assert.
636       assert(!Is64Bit && "EAX is livein in x64 case!");
637
638       // Save EAX
639       BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r))
640         .addReg(X86::EAX, RegState::Kill)
641         .setMIFlag(MachineInstr::FrameSetup);
642     }
643
644     if (Is64Bit) {
645       // Handle the 64-bit Windows ABI case where we need to call __chkstk.
646       // Function prologue is responsible for adjusting the stack pointer.
647       BuildMI(MBB, MBBI, DL, TII.get(X86::MOV64ri), X86::RAX)
648         .addImm(NumBytes)
649         .setMIFlag(MachineInstr::FrameSetup);
650     } else {
651       // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
652       // We'll also use 4 already allocated bytes for EAX.
653       BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX)
654         .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
655         .setMIFlag(MachineInstr::FrameSetup);
656     }
657
658     BuildMI(MBB, MBBI, DL,
659             TII.get(Is64Bit ? X86::W64ALLOCA : X86::CALLpcrel32))
660       .addExternalSymbol(StackProbeSymbol)
661       .addReg(StackPtr,    RegState::Define | RegState::Implicit)
662       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit)
663       .setMIFlag(MachineInstr::FrameSetup);
664
665     if (Is64Bit) {
666       // MSVC x64's __chkstk and cygwin/mingw's ___chkstk_ms do not adjust %rsp
667       // themself. It also does not clobber %rax so we can reuse it when
668       // adjusting %rsp.
669       BuildMI(MBB, MBBI, DL, TII.get(X86::SUB64rr), StackPtr)
670         .addReg(StackPtr)
671         .addReg(X86::RAX)
672         .setMIFlag(MachineInstr::FrameSetup);
673     }
674     if (isEAXAlive) {
675         // Restore EAX
676         MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm),
677                                                 X86::EAX),
678                                         StackPtr, false, NumBytes - 4);
679         MI->setFlag(MachineInstr::FrameSetup);
680         MBB.insert(MBBI, MI);
681     }
682   } else if (NumBytes)
683     emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
684                  UseLEA, TII, *RegInfo);
685
686   // If we need a base pointer, set it up here. It's whatever the value
687   // of the stack pointer is at this point. Any variable size objects
688   // will be allocated after this, so we can still use the base pointer
689   // to reference locals.
690   if (RegInfo->hasBasePointer(MF)) {
691     // Update the frame pointer with the current stack pointer.
692     unsigned Opc = Is64Bit ? X86::MOV64rr : X86::MOV32rr;
693     BuildMI(MBB, MBBI, DL, TII.get(Opc), BasePtr)
694       .addReg(StackPtr)
695       .setMIFlag(MachineInstr::FrameSetup);
696   }
697
698   if (( (!HasFP && NumBytes) || PushedRegs) && needsFrameMoves) {
699     // Mark end of stack pointer adjustment.
700     if (!HasFP && NumBytes) {
701       // Define the current CFA rule to use the provided offset.
702       assert(StackSize);
703       unsigned CFIIndex = MMI.addFrameInst(
704           MCCFIInstruction::createDefCfaOffset(nullptr,
705                                                -StackSize + stackGrowth));
706
707       BuildMI(MBB, MBBI, DL, TII.get(X86::CFI_INSTRUCTION))
708           .addCFIIndex(CFIIndex);
709     }
710
711     // Emit DWARF info specifying the offsets of the callee-saved registers.
712     if (PushedRegs)
713       emitCalleeSavedFrameMoves(MBB, MBBI, DL, HasFP ? FramePtr : StackPtr);
714   }
715 }
716
717 void X86FrameLowering::emitEpilogue(MachineFunction &MF,
718                                     MachineBasicBlock &MBB) const {
719   const MachineFrameInfo *MFI = MF.getFrameInfo();
720   X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
721   const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
722   const X86InstrInfo &TII = *TM.getInstrInfo();
723   MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
724   assert(MBBI != MBB.end() && "Returning block has no instructions");
725   unsigned RetOpcode = MBBI->getOpcode();
726   DebugLoc DL = MBBI->getDebugLoc();
727   bool Is64Bit = STI.is64Bit();
728   bool IsLP64 = STI.isTarget64BitLP64();
729   bool UseLEA = STI.useLeaForSP();
730   unsigned StackAlign = getStackAlignment();
731   unsigned SlotSize = RegInfo->getSlotSize();
732   unsigned FramePtr = RegInfo->getFrameRegister(MF);
733   unsigned StackPtr = RegInfo->getStackRegister();
734
735   switch (RetOpcode) {
736   default:
737     llvm_unreachable("Can only insert epilog into returning blocks");
738   case X86::RETQ:
739   case X86::RETL:
740   case X86::RETIL:
741   case X86::RETIQ:
742   case X86::TCRETURNdi:
743   case X86::TCRETURNri:
744   case X86::TCRETURNmi:
745   case X86::TCRETURNdi64:
746   case X86::TCRETURNri64:
747   case X86::TCRETURNmi64:
748   case X86::EH_RETURN:
749   case X86::EH_RETURN64:
750     break;  // These are ok
751   }
752
753   // Get the number of bytes to allocate from the FrameInfo.
754   uint64_t StackSize = MFI->getStackSize();
755   uint64_t MaxAlign  = MFI->getMaxAlignment();
756   unsigned CSSize = X86FI->getCalleeSavedFrameSize();
757   uint64_t NumBytes = 0;
758
759   // If we're forcing a stack realignment we can't rely on just the frame
760   // info, we need to know the ABI stack alignment as well in case we
761   // have a call out.  Otherwise just make sure we have some alignment - we'll
762   // go with the minimum.
763   if (ForceStackAlign) {
764     if (MFI->hasCalls())
765       MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
766     else
767       MaxAlign = MaxAlign ? MaxAlign : 4;
768   }
769
770   if (hasFP(MF)) {
771     // Calculate required stack adjustment.
772     uint64_t FrameSize = StackSize - SlotSize;
773     if (RegInfo->needsStackRealignment(MF)) {
774       // Callee-saved registers were pushed on stack before the stack
775       // was realigned.
776       FrameSize -= CSSize;
777       NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
778     } else {
779       NumBytes = FrameSize - CSSize;
780     }
781
782     // Pop EBP.
783     BuildMI(MBB, MBBI, DL,
784             TII.get(Is64Bit ? X86::POP64r : X86::POP32r), FramePtr);
785   } else {
786     NumBytes = StackSize - CSSize;
787   }
788
789   // Skip the callee-saved pop instructions.
790   while (MBBI != MBB.begin()) {
791     MachineBasicBlock::iterator PI = std::prev(MBBI);
792     unsigned Opc = PI->getOpcode();
793
794     if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE &&
795         !PI->isTerminator())
796       break;
797
798     --MBBI;
799   }
800   MachineBasicBlock::iterator FirstCSPop = MBBI;
801
802   DL = MBBI->getDebugLoc();
803
804   // If there is an ADD32ri or SUB32ri of ESP immediately before this
805   // instruction, merge the two instructions.
806   if (NumBytes || MFI->hasVarSizedObjects())
807     mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
808
809   // If dynamic alloca is used, then reset esp to point to the last callee-saved
810   // slot before popping them off! Same applies for the case, when stack was
811   // realigned.
812   if (RegInfo->needsStackRealignment(MF) || MFI->hasVarSizedObjects()) {
813     if (RegInfo->needsStackRealignment(MF))
814       MBBI = FirstCSPop;
815     if (CSSize != 0) {
816       unsigned Opc = getLEArOpcode(IsLP64);
817       addRegOffset(BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr),
818                    FramePtr, false, -CSSize);
819     } else {
820       unsigned Opc = (Is64Bit ? X86::MOV64rr : X86::MOV32rr);
821       BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr)
822         .addReg(FramePtr);
823     }
824   } else if (NumBytes) {
825     // Adjust stack pointer back: ESP += numbytes.
826     emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, IsLP64, UseLEA,
827                  TII, *RegInfo);
828   }
829
830   // We're returning from function via eh_return.
831   if (RetOpcode == X86::EH_RETURN || RetOpcode == X86::EH_RETURN64) {
832     MBBI = MBB.getLastNonDebugInstr();
833     MachineOperand &DestAddr  = MBBI->getOperand(0);
834     assert(DestAddr.isReg() && "Offset should be in register!");
835     BuildMI(MBB, MBBI, DL,
836             TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr),
837             StackPtr).addReg(DestAddr.getReg());
838   } else if (RetOpcode == X86::TCRETURNri || RetOpcode == X86::TCRETURNdi ||
839              RetOpcode == X86::TCRETURNmi ||
840              RetOpcode == X86::TCRETURNri64 || RetOpcode == X86::TCRETURNdi64 ||
841              RetOpcode == X86::TCRETURNmi64) {
842     bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64;
843     // Tail call return: adjust the stack pointer and jump to callee.
844     MBBI = MBB.getLastNonDebugInstr();
845     MachineOperand &JumpTarget = MBBI->getOperand(0);
846     MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
847     assert(StackAdjust.isImm() && "Expecting immediate value.");
848
849     // Adjust stack pointer.
850     int StackAdj = StackAdjust.getImm();
851     int MaxTCDelta = X86FI->getTCReturnAddrDelta();
852     int Offset = 0;
853     assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
854
855     // Incoporate the retaddr area.
856     Offset = StackAdj-MaxTCDelta;
857     assert(Offset >= 0 && "Offset should never be negative");
858
859     if (Offset) {
860       // Check for possible merge with preceding ADD instruction.
861       Offset += mergeSPUpdates(MBB, MBBI, StackPtr, true);
862       emitSPUpdate(MBB, MBBI, StackPtr, Offset, Is64Bit, IsLP64,
863                    UseLEA, TII, *RegInfo);
864     }
865
866     // Jump to label or value in register.
867     if (RetOpcode == X86::TCRETURNdi || RetOpcode == X86::TCRETURNdi64) {
868       MachineInstrBuilder MIB =
869         BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNdi)
870                                        ? X86::TAILJMPd : X86::TAILJMPd64));
871       if (JumpTarget.isGlobal())
872         MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
873                              JumpTarget.getTargetFlags());
874       else {
875         assert(JumpTarget.isSymbol());
876         MIB.addExternalSymbol(JumpTarget.getSymbolName(),
877                               JumpTarget.getTargetFlags());
878       }
879     } else if (RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64) {
880       MachineInstrBuilder MIB =
881         BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNmi)
882                                        ? X86::TAILJMPm : X86::TAILJMPm64));
883       for (unsigned i = 0; i != 5; ++i)
884         MIB.addOperand(MBBI->getOperand(i));
885     } else if (RetOpcode == X86::TCRETURNri64) {
886       BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr64)).
887         addReg(JumpTarget.getReg(), RegState::Kill);
888     } else {
889       BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr)).
890         addReg(JumpTarget.getReg(), RegState::Kill);
891     }
892
893     MachineInstr *NewMI = std::prev(MBBI);
894     NewMI->copyImplicitOps(MF, MBBI);
895
896     // Delete the pseudo instruction TCRETURN.
897     MBB.erase(MBBI);
898   } else if ((RetOpcode == X86::RETQ || RetOpcode == X86::RETL ||
899               RetOpcode == X86::RETIQ || RetOpcode == X86::RETIL) &&
900              (X86FI->getTCReturnAddrDelta() < 0)) {
901     // Add the return addr area delta back since we are not tail calling.
902     int delta = -1*X86FI->getTCReturnAddrDelta();
903     MBBI = MBB.getLastNonDebugInstr();
904
905     // Check for possible merge with preceding ADD instruction.
906     delta += mergeSPUpdates(MBB, MBBI, StackPtr, true);
907     emitSPUpdate(MBB, MBBI, StackPtr, delta, Is64Bit, IsLP64, UseLEA, TII,
908                  *RegInfo);
909   }
910 }
911
912 int X86FrameLowering::getFrameIndexOffset(const MachineFunction &MF,
913                                           int FI) const {
914   const X86RegisterInfo *RegInfo =
915     static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
916   const MachineFrameInfo *MFI = MF.getFrameInfo();
917   int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea();
918   uint64_t StackSize = MFI->getStackSize();
919
920   if (RegInfo->hasBasePointer(MF)) {
921     assert (hasFP(MF) && "VLAs and dynamic stack realign, but no FP?!");
922     if (FI < 0) {
923       // Skip the saved EBP.
924       return Offset + RegInfo->getSlotSize();
925     } else {
926       assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
927       return Offset + StackSize;
928     }
929   } else if (RegInfo->needsStackRealignment(MF)) {
930     if (FI < 0) {
931       // Skip the saved EBP.
932       return Offset + RegInfo->getSlotSize();
933     } else {
934       assert((-(Offset + StackSize)) % MFI->getObjectAlignment(FI) == 0);
935       return Offset + StackSize;
936     }
937     // FIXME: Support tail calls
938   } else {
939     if (!hasFP(MF))
940       return Offset + StackSize;
941
942     // Skip the saved EBP.
943     Offset += RegInfo->getSlotSize();
944
945     // Skip the RETADDR move area
946     const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
947     int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
948     if (TailCallReturnAddrDelta < 0)
949       Offset -= TailCallReturnAddrDelta;
950   }
951
952   return Offset;
953 }
954
955 int X86FrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI,
956                                              unsigned &FrameReg) const {
957   const X86RegisterInfo *RegInfo =
958       static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo());
959   // We can't calculate offset from frame pointer if the stack is realigned,
960   // so enforce usage of stack/base pointer.  The base pointer is used when we
961   // have dynamic allocas in addition to dynamic realignment.
962   if (RegInfo->hasBasePointer(MF))
963     FrameReg = RegInfo->getBaseRegister();
964   else if (RegInfo->needsStackRealignment(MF))
965     FrameReg = RegInfo->getStackRegister();
966   else
967     FrameReg = RegInfo->getFrameRegister(MF);
968   return getFrameIndexOffset(MF, FI);
969 }
970
971 bool X86FrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
972                                              MachineBasicBlock::iterator MI,
973                                         const std::vector<CalleeSavedInfo> &CSI,
974                                           const TargetRegisterInfo *TRI) const {
975   if (CSI.empty())
976     return false;
977
978   DebugLoc DL = MBB.findDebugLoc(MI);
979
980   MachineFunction &MF = *MBB.getParent();
981
982   unsigned SlotSize = STI.is64Bit() ? 8 : 4;
983   unsigned FPReg = TRI->getFrameRegister(MF);
984   unsigned CalleeFrameSize = 0;
985
986   const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
987   X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
988
989   // Push GPRs. It increases frame size.
990   unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
991   for (unsigned i = CSI.size(); i != 0; --i) {
992     unsigned Reg = CSI[i-1].getReg();
993     if (!X86::GR64RegClass.contains(Reg) &&
994         !X86::GR32RegClass.contains(Reg))
995       continue;
996     // Add the callee-saved register as live-in. It's killed at the spill.
997     MBB.addLiveIn(Reg);
998     if (Reg == FPReg)
999       // X86RegisterInfo::emitPrologue will handle spilling of frame register.
1000       continue;
1001     CalleeFrameSize += SlotSize;
1002     BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill)
1003       .setMIFlag(MachineInstr::FrameSetup);
1004   }
1005
1006   X86FI->setCalleeSavedFrameSize(CalleeFrameSize);
1007
1008   // Make XMM regs spilled. X86 does not have ability of push/pop XMM.
1009   // It can be done by spilling XMMs to stack frame.
1010   // Note that only Win64 ABI might spill XMMs.
1011   for (unsigned i = CSI.size(); i != 0; --i) {
1012     unsigned Reg = CSI[i-1].getReg();
1013     if (X86::GR64RegClass.contains(Reg) ||
1014         X86::GR32RegClass.contains(Reg))
1015       continue;
1016     // Add the callee-saved register as live-in. It's killed at the spill.
1017     MBB.addLiveIn(Reg);
1018     const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1019     TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i-1].getFrameIdx(),
1020                             RC, TRI);
1021   }
1022
1023   return true;
1024 }
1025
1026 bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
1027                                                MachineBasicBlock::iterator MI,
1028                                         const std::vector<CalleeSavedInfo> &CSI,
1029                                           const TargetRegisterInfo *TRI) const {
1030   if (CSI.empty())
1031     return false;
1032
1033   DebugLoc DL = MBB.findDebugLoc(MI);
1034
1035   MachineFunction &MF = *MBB.getParent();
1036   const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
1037
1038   // Reload XMMs from stack frame.
1039   for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1040     unsigned Reg = CSI[i].getReg();
1041     if (X86::GR64RegClass.contains(Reg) ||
1042         X86::GR32RegClass.contains(Reg))
1043       continue;
1044     const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1045     TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(),
1046                              RC, TRI);
1047   }
1048
1049   // POP GPRs.
1050   unsigned FPReg = TRI->getFrameRegister(MF);
1051   unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r;
1052   for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1053     unsigned Reg = CSI[i].getReg();
1054     if (!X86::GR64RegClass.contains(Reg) &&
1055         !X86::GR32RegClass.contains(Reg))
1056       continue;
1057     if (Reg == FPReg)
1058       // X86RegisterInfo::emitEpilogue will handle restoring of frame register.
1059       continue;
1060     BuildMI(MBB, MI, DL, TII.get(Opc), Reg);
1061   }
1062   return true;
1063 }
1064
1065 void
1066 X86FrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
1067                                                    RegScavenger *RS) const {
1068   MachineFrameInfo *MFI = MF.getFrameInfo();
1069   const X86RegisterInfo *RegInfo = TM.getRegisterInfo();
1070   unsigned SlotSize = RegInfo->getSlotSize();
1071
1072   X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1073   int64_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta();
1074
1075   if (TailCallReturnAddrDelta < 0) {
1076     // create RETURNADDR area
1077     //   arg
1078     //   arg
1079     //   RETADDR
1080     //   { ...
1081     //     RETADDR area
1082     //     ...
1083     //   }
1084     //   [EBP]
1085     MFI->CreateFixedObject(-TailCallReturnAddrDelta,
1086                            TailCallReturnAddrDelta - SlotSize, true);
1087   }
1088
1089   if (hasFP(MF)) {
1090     assert((TailCallReturnAddrDelta <= 0) &&
1091            "The Delta should always be zero or negative");
1092     const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering();
1093
1094     // Create a frame entry for the EBP register that must be saved.
1095     int FrameIdx = MFI->CreateFixedObject(SlotSize,
1096                                           -(int)SlotSize +
1097                                           TFI.getOffsetOfLocalArea() +
1098                                           TailCallReturnAddrDelta,
1099                                           true);
1100     assert(FrameIdx == MFI->getObjectIndexBegin() &&
1101            "Slot for EBP register must be last in order to be found!");
1102     (void)FrameIdx;
1103   }
1104
1105   // Spill the BasePtr if it's used.
1106   if (RegInfo->hasBasePointer(MF))
1107     MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister());
1108 }
1109
1110 static bool
1111 HasNestArgument(const MachineFunction *MF) {
1112   const Function *F = MF->getFunction();
1113   for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1114        I != E; I++) {
1115     if (I->hasNestAttr())
1116       return true;
1117   }
1118   return false;
1119 }
1120
1121 /// GetScratchRegister - Get a temp register for performing work in the
1122 /// segmented stack and the Erlang/HiPE stack prologue. Depending on platform
1123 /// and the properties of the function either one or two registers will be
1124 /// needed. Set primary to true for the first register, false for the second.
1125 static unsigned
1126 GetScratchRegister(bool Is64Bit, const MachineFunction &MF, bool Primary) {
1127   CallingConv::ID CallingConvention = MF.getFunction()->getCallingConv();
1128
1129   // Erlang stuff.
1130   if (CallingConvention == CallingConv::HiPE) {
1131     if (Is64Bit)
1132       return Primary ? X86::R14 : X86::R13;
1133     else
1134       return Primary ? X86::EBX : X86::EDI;
1135   }
1136
1137   if (Is64Bit)
1138     return Primary ? X86::R11 : X86::R12;
1139
1140   bool IsNested = HasNestArgument(&MF);
1141
1142   if (CallingConvention == CallingConv::X86_FastCall ||
1143       CallingConvention == CallingConv::Fast) {
1144     if (IsNested)
1145       report_fatal_error("Segmented stacks does not support fastcall with "
1146                          "nested function.");
1147     return Primary ? X86::EAX : X86::ECX;
1148   }
1149   if (IsNested)
1150     return Primary ? X86::EDX : X86::EAX;
1151   return Primary ? X86::ECX : X86::EAX;
1152 }
1153
1154 // The stack limit in the TCB is set to this many bytes above the actual stack
1155 // limit.
1156 static const uint64_t kSplitStackAvailable = 256;
1157
1158 void
1159 X86FrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const {
1160   MachineBasicBlock &prologueMBB = MF.front();
1161   MachineFrameInfo *MFI = MF.getFrameInfo();
1162   const X86InstrInfo &TII = *TM.getInstrInfo();
1163   uint64_t StackSize;
1164   bool Is64Bit = STI.is64Bit();
1165   unsigned TlsReg, TlsOffset;
1166   DebugLoc DL;
1167
1168   unsigned ScratchReg = GetScratchRegister(Is64Bit, MF, true);
1169   assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1170          "Scratch register is live-in");
1171
1172   if (MF.getFunction()->isVarArg())
1173     report_fatal_error("Segmented stacks do not support vararg functions.");
1174   if (!STI.isTargetLinux() && !STI.isTargetDarwin() &&
1175       !STI.isTargetWin32() && !STI.isTargetWin64() && !STI.isTargetFreeBSD())
1176     report_fatal_error("Segmented stacks not supported on this platform.");
1177
1178   MachineBasicBlock *allocMBB = MF.CreateMachineBasicBlock();
1179   MachineBasicBlock *checkMBB = MF.CreateMachineBasicBlock();
1180   X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>();
1181   bool IsNested = false;
1182
1183   // We need to know if the function has a nest argument only in 64 bit mode.
1184   if (Is64Bit)
1185     IsNested = HasNestArgument(&MF);
1186
1187   // The MOV R10, RAX needs to be in a different block, since the RET we emit in
1188   // allocMBB needs to be last (terminating) instruction.
1189
1190   for (MachineBasicBlock::livein_iterator i = prologueMBB.livein_begin(),
1191          e = prologueMBB.livein_end(); i != e; i++) {
1192     allocMBB->addLiveIn(*i);
1193     checkMBB->addLiveIn(*i);
1194   }
1195
1196   if (IsNested)
1197     allocMBB->addLiveIn(X86::R10);
1198
1199   MF.push_front(allocMBB);
1200   MF.push_front(checkMBB);
1201
1202   // Eventually StackSize will be calculated by a link-time pass; which will
1203   // also decide whether checking code needs to be injected into this particular
1204   // prologue.
1205   StackSize = MFI->getStackSize();
1206
1207   // When the frame size is less than 256 we just compare the stack
1208   // boundary directly to the value of the stack pointer, per gcc.
1209   bool CompareStackPointer = StackSize < kSplitStackAvailable;
1210
1211   // Read the limit off the current stacklet off the stack_guard location.
1212   if (Is64Bit) {
1213     if (STI.isTargetLinux()) {
1214       TlsReg = X86::FS;
1215       TlsOffset = 0x70;
1216     } else if (STI.isTargetDarwin()) {
1217       TlsReg = X86::GS;
1218       TlsOffset = 0x60 + 90*8; // See pthread_machdep.h. Steal TLS slot 90.
1219     } else if (STI.isTargetWin64()) {
1220       TlsReg = X86::GS;
1221       TlsOffset = 0x28; // pvArbitrary, reserved for application use
1222     } else if (STI.isTargetFreeBSD()) {
1223       TlsReg = X86::FS;
1224       TlsOffset = 0x18;
1225     } else {
1226       report_fatal_error("Segmented stacks not supported on this platform.");
1227     }
1228
1229     if (CompareStackPointer)
1230       ScratchReg = X86::RSP;
1231     else
1232       BuildMI(checkMBB, DL, TII.get(X86::LEA64r), ScratchReg).addReg(X86::RSP)
1233         .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1234
1235     BuildMI(checkMBB, DL, TII.get(X86::CMP64rm)).addReg(ScratchReg)
1236       .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1237   } else {
1238     if (STI.isTargetLinux()) {
1239       TlsReg = X86::GS;
1240       TlsOffset = 0x30;
1241     } else if (STI.isTargetDarwin()) {
1242       TlsReg = X86::GS;
1243       TlsOffset = 0x48 + 90*4;
1244     } else if (STI.isTargetWin32()) {
1245       TlsReg = X86::FS;
1246       TlsOffset = 0x14; // pvArbitrary, reserved for application use
1247     } else if (STI.isTargetFreeBSD()) {
1248       report_fatal_error("Segmented stacks not supported on FreeBSD i386.");
1249     } else {
1250       report_fatal_error("Segmented stacks not supported on this platform.");
1251     }
1252
1253     if (CompareStackPointer)
1254       ScratchReg = X86::ESP;
1255     else
1256       BuildMI(checkMBB, DL, TII.get(X86::LEA32r), ScratchReg).addReg(X86::ESP)
1257         .addImm(1).addReg(0).addImm(-StackSize).addReg(0);
1258
1259     if (STI.isTargetLinux() || STI.isTargetWin32() || STI.isTargetWin64()) {
1260       BuildMI(checkMBB, DL, TII.get(X86::CMP32rm)).addReg(ScratchReg)
1261         .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg);
1262     } else if (STI.isTargetDarwin()) {
1263
1264       // TlsOffset doesn't fit into a mod r/m byte so we need an extra register.
1265       unsigned ScratchReg2;
1266       bool SaveScratch2;
1267       if (CompareStackPointer) {
1268         // The primary scratch register is available for holding the TLS offset.
1269         ScratchReg2 = GetScratchRegister(Is64Bit, MF, true);
1270         SaveScratch2 = false;
1271       } else {
1272         // Need to use a second register to hold the TLS offset
1273         ScratchReg2 = GetScratchRegister(Is64Bit, MF, false);
1274
1275         // Unfortunately, with fastcc the second scratch register may hold an
1276         // argument.
1277         SaveScratch2 = MF.getRegInfo().isLiveIn(ScratchReg2);
1278       }
1279
1280       // If Scratch2 is live-in then it needs to be saved.
1281       assert((!MF.getRegInfo().isLiveIn(ScratchReg2) || SaveScratch2) &&
1282              "Scratch register is live-in and not saved");
1283
1284       if (SaveScratch2)
1285         BuildMI(checkMBB, DL, TII.get(X86::PUSH32r))
1286           .addReg(ScratchReg2, RegState::Kill);
1287
1288       BuildMI(checkMBB, DL, TII.get(X86::MOV32ri), ScratchReg2)
1289         .addImm(TlsOffset);
1290       BuildMI(checkMBB, DL, TII.get(X86::CMP32rm))
1291         .addReg(ScratchReg)
1292         .addReg(ScratchReg2).addImm(1).addReg(0)
1293         .addImm(0)
1294         .addReg(TlsReg);
1295
1296       if (SaveScratch2)
1297         BuildMI(checkMBB, DL, TII.get(X86::POP32r), ScratchReg2);
1298     }
1299   }
1300
1301   // This jump is taken if SP >= (Stacklet Limit + Stack Space required).
1302   // It jumps to normal execution of the function body.
1303   BuildMI(checkMBB, DL, TII.get(X86::JA_4)).addMBB(&prologueMBB);
1304
1305   // On 32 bit we first push the arguments size and then the frame size. On 64
1306   // bit, we pass the stack frame size in r10 and the argument size in r11.
1307   if (Is64Bit) {
1308     // Functions with nested arguments use R10, so it needs to be saved across
1309     // the call to _morestack
1310
1311     if (IsNested)
1312       BuildMI(allocMBB, DL, TII.get(X86::MOV64rr), X86::RAX).addReg(X86::R10);
1313
1314     BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R10)
1315       .addImm(StackSize);
1316     BuildMI(allocMBB, DL, TII.get(X86::MOV64ri), X86::R11)
1317       .addImm(X86FI->getArgumentStackSize());
1318     MF.getRegInfo().setPhysRegUsed(X86::R10);
1319     MF.getRegInfo().setPhysRegUsed(X86::R11);
1320   } else {
1321     BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1322       .addImm(X86FI->getArgumentStackSize());
1323     BuildMI(allocMBB, DL, TII.get(X86::PUSHi32))
1324       .addImm(StackSize);
1325   }
1326
1327   // __morestack is in libgcc
1328   if (Is64Bit)
1329     BuildMI(allocMBB, DL, TII.get(X86::CALL64pcrel32))
1330       .addExternalSymbol("__morestack");
1331   else
1332     BuildMI(allocMBB, DL, TII.get(X86::CALLpcrel32))
1333       .addExternalSymbol("__morestack");
1334
1335   if (IsNested)
1336     BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET_RESTORE_R10));
1337   else
1338     BuildMI(allocMBB, DL, TII.get(X86::MORESTACK_RET));
1339
1340   allocMBB->addSuccessor(&prologueMBB);
1341
1342   checkMBB->addSuccessor(allocMBB);
1343   checkMBB->addSuccessor(&prologueMBB);
1344
1345 #ifdef XDEBUG
1346   MF.verify();
1347 #endif
1348 }
1349
1350 /// Erlang programs may need a special prologue to handle the stack size they
1351 /// might need at runtime. That is because Erlang/OTP does not implement a C
1352 /// stack but uses a custom implementation of hybrid stack/heap architecture.
1353 /// (for more information see Eric Stenman's Ph.D. thesis:
1354 /// http://publications.uu.se/uu/fulltext/nbn_se_uu_diva-2688.pdf)
1355 ///
1356 /// CheckStack:
1357 ///       temp0 = sp - MaxStack
1358 ///       if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1359 /// OldStart:
1360 ///       ...
1361 /// IncStack:
1362 ///       call inc_stack   # doubles the stack space
1363 ///       temp0 = sp - MaxStack
1364 ///       if( temp0 < SP_LIMIT(P) ) goto IncStack else goto OldStart
1365 void X86FrameLowering::adjustForHiPEPrologue(MachineFunction &MF) const {
1366   const X86InstrInfo &TII = *TM.getInstrInfo();
1367   MachineFrameInfo *MFI = MF.getFrameInfo();
1368   const unsigned SlotSize = TM.getRegisterInfo()->getSlotSize();
1369   const bool Is64Bit = STI.is64Bit();
1370   DebugLoc DL;
1371   // HiPE-specific values
1372   const unsigned HipeLeafWords = 24;
1373   const unsigned CCRegisteredArgs = Is64Bit ? 6 : 5;
1374   const unsigned Guaranteed = HipeLeafWords * SlotSize;
1375   unsigned CallerStkArity = MF.getFunction()->arg_size() > CCRegisteredArgs ?
1376                             MF.getFunction()->arg_size() - CCRegisteredArgs : 0;
1377   unsigned MaxStack = MFI->getStackSize() + CallerStkArity*SlotSize + SlotSize;
1378
1379   assert(STI.isTargetLinux() &&
1380          "HiPE prologue is only supported on Linux operating systems.");
1381
1382   // Compute the largest caller's frame that is needed to fit the callees'
1383   // frames. This 'MaxStack' is computed from:
1384   //
1385   // a) the fixed frame size, which is the space needed for all spilled temps,
1386   // b) outgoing on-stack parameter areas, and
1387   // c) the minimum stack space this function needs to make available for the
1388   //    functions it calls (a tunable ABI property).
1389   if (MFI->hasCalls()) {
1390     unsigned MoreStackForCalls = 0;
1391
1392     for (MachineFunction::iterator MBBI = MF.begin(), MBBE = MF.end();
1393          MBBI != MBBE; ++MBBI)
1394       for (MachineBasicBlock::iterator MI = MBBI->begin(), ME = MBBI->end();
1395            MI != ME; ++MI) {
1396         if (!MI->isCall())
1397           continue;
1398
1399         // Get callee operand.
1400         const MachineOperand &MO = MI->getOperand(0);
1401
1402         // Only take account of global function calls (no closures etc.).
1403         if (!MO.isGlobal())
1404           continue;
1405
1406         const Function *F = dyn_cast<Function>(MO.getGlobal());
1407         if (!F)
1408           continue;
1409
1410         // Do not update 'MaxStack' for primitive and built-in functions
1411         // (encoded with names either starting with "erlang."/"bif_" or not
1412         // having a ".", such as a simple <Module>.<Function>.<Arity>, or an
1413         // "_", such as the BIF "suspend_0") as they are executed on another
1414         // stack.
1415         if (F->getName().find("erlang.") != StringRef::npos ||
1416             F->getName().find("bif_") != StringRef::npos ||
1417             F->getName().find_first_of("._") == StringRef::npos)
1418           continue;
1419
1420         unsigned CalleeStkArity =
1421           F->arg_size() > CCRegisteredArgs ? F->arg_size()-CCRegisteredArgs : 0;
1422         if (HipeLeafWords - 1 > CalleeStkArity)
1423           MoreStackForCalls = std::max(MoreStackForCalls,
1424                                (HipeLeafWords - 1 - CalleeStkArity) * SlotSize);
1425       }
1426     MaxStack += MoreStackForCalls;
1427   }
1428
1429   // If the stack frame needed is larger than the guaranteed then runtime checks
1430   // and calls to "inc_stack_0" BIF should be inserted in the assembly prologue.
1431   if (MaxStack > Guaranteed) {
1432     MachineBasicBlock &prologueMBB = MF.front();
1433     MachineBasicBlock *stackCheckMBB = MF.CreateMachineBasicBlock();
1434     MachineBasicBlock *incStackMBB = MF.CreateMachineBasicBlock();
1435
1436     for (MachineBasicBlock::livein_iterator I = prologueMBB.livein_begin(),
1437            E = prologueMBB.livein_end(); I != E; I++) {
1438       stackCheckMBB->addLiveIn(*I);
1439       incStackMBB->addLiveIn(*I);
1440     }
1441
1442     MF.push_front(incStackMBB);
1443     MF.push_front(stackCheckMBB);
1444
1445     unsigned ScratchReg, SPReg, PReg, SPLimitOffset;
1446     unsigned LEAop, CMPop, CALLop;
1447     if (Is64Bit) {
1448       SPReg = X86::RSP;
1449       PReg  = X86::RBP;
1450       LEAop = X86::LEA64r;
1451       CMPop = X86::CMP64rm;
1452       CALLop = X86::CALL64pcrel32;
1453       SPLimitOffset = 0x90;
1454     } else {
1455       SPReg = X86::ESP;
1456       PReg  = X86::EBP;
1457       LEAop = X86::LEA32r;
1458       CMPop = X86::CMP32rm;
1459       CALLop = X86::CALLpcrel32;
1460       SPLimitOffset = 0x4c;
1461     }
1462
1463     ScratchReg = GetScratchRegister(Is64Bit, MF, true);
1464     assert(!MF.getRegInfo().isLiveIn(ScratchReg) &&
1465            "HiPE prologue scratch register is live-in");
1466
1467     // Create new MBB for StackCheck:
1468     addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(LEAop), ScratchReg),
1469                  SPReg, false, -MaxStack);
1470     // SPLimitOffset is in a fixed heap location (pointed by BP).
1471     addRegOffset(BuildMI(stackCheckMBB, DL, TII.get(CMPop))
1472                  .addReg(ScratchReg), PReg, false, SPLimitOffset);
1473     BuildMI(stackCheckMBB, DL, TII.get(X86::JAE_4)).addMBB(&prologueMBB);
1474
1475     // Create new MBB for IncStack:
1476     BuildMI(incStackMBB, DL, TII.get(CALLop)).
1477       addExternalSymbol("inc_stack_0");
1478     addRegOffset(BuildMI(incStackMBB, DL, TII.get(LEAop), ScratchReg),
1479                  SPReg, false, -MaxStack);
1480     addRegOffset(BuildMI(incStackMBB, DL, TII.get(CMPop))
1481                  .addReg(ScratchReg), PReg, false, SPLimitOffset);
1482     BuildMI(incStackMBB, DL, TII.get(X86::JLE_4)).addMBB(incStackMBB);
1483
1484     stackCheckMBB->addSuccessor(&prologueMBB, 99);
1485     stackCheckMBB->addSuccessor(incStackMBB, 1);
1486     incStackMBB->addSuccessor(&prologueMBB, 99);
1487     incStackMBB->addSuccessor(incStackMBB, 1);
1488   }
1489 #ifdef XDEBUG
1490   MF.verify();
1491 #endif
1492 }
1493
1494 void X86FrameLowering::
1495 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1496                               MachineBasicBlock::iterator I) const {
1497   const X86InstrInfo &TII = *TM.getInstrInfo();
1498   const X86RegisterInfo &RegInfo = *TM.getRegisterInfo();
1499   unsigned StackPtr = RegInfo.getStackRegister();
1500   bool reseveCallFrame = hasReservedCallFrame(MF);
1501   int Opcode = I->getOpcode();
1502   bool isDestroy = Opcode == TII.getCallFrameDestroyOpcode();
1503   bool IsLP64 = STI.isTarget64BitLP64();
1504   DebugLoc DL = I->getDebugLoc();
1505   uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
1506   uint64_t CalleeAmt = isDestroy ? I->getOperand(1).getImm() : 0;
1507   I = MBB.erase(I);
1508
1509   if (!reseveCallFrame) {
1510     // If the stack pointer can be changed after prologue, turn the
1511     // adjcallstackup instruction into a 'sub ESP, <amt>' and the
1512     // adjcallstackdown instruction into 'add ESP, <amt>'
1513     // TODO: consider using push / pop instead of sub + store / add
1514     if (Amount == 0)
1515       return;
1516
1517     // We need to keep the stack aligned properly.  To do this, we round the
1518     // amount of space needed for the outgoing arguments up to the next
1519     // alignment boundary.
1520     unsigned StackAlign = TM.getFrameLowering()->getStackAlignment();
1521     Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
1522
1523     MachineInstr *New = nullptr;
1524     if (Opcode == TII.getCallFrameSetupOpcode()) {
1525       New = BuildMI(MF, DL, TII.get(getSUBriOpcode(IsLP64, Amount)),
1526                     StackPtr)
1527         .addReg(StackPtr)
1528         .addImm(Amount);
1529     } else {
1530       assert(Opcode == TII.getCallFrameDestroyOpcode());
1531
1532       // Factor out the amount the callee already popped.
1533       Amount -= CalleeAmt;
1534
1535       if (Amount) {
1536         unsigned Opc = getADDriOpcode(IsLP64, Amount);
1537         New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1538           .addReg(StackPtr).addImm(Amount);
1539       }
1540     }
1541
1542     if (New) {
1543       // The EFLAGS implicit def is dead.
1544       New->getOperand(3).setIsDead();
1545
1546       // Replace the pseudo instruction with a new instruction.
1547       MBB.insert(I, New);
1548     }
1549
1550     return;
1551   }
1552
1553   if (Opcode == TII.getCallFrameDestroyOpcode() && CalleeAmt) {
1554     // If we are performing frame pointer elimination and if the callee pops
1555     // something off the stack pointer, add it back.  We do this until we have
1556     // more advanced stack pointer tracking ability.
1557     unsigned Opc = getSUBriOpcode(IsLP64, CalleeAmt);
1558     MachineInstr *New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
1559       .addReg(StackPtr).addImm(CalleeAmt);
1560
1561     // The EFLAGS implicit def is dead.
1562     New->getOperand(3).setIsDead();
1563
1564     // We are not tracking the stack pointer adjustment by the callee, so make
1565     // sure we restore the stack pointer immediately after the call, there may
1566     // be spill code inserted between the CALL and ADJCALLSTACKUP instructions.
1567     MachineBasicBlock::iterator B = MBB.begin();
1568     while (I != B && !std::prev(I)->isCall())
1569       --I;
1570     MBB.insert(I, New);
1571   }
1572 }
1573