Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 1 | //=======- X86FrameLowering.cpp - X86 Frame Information ------------*- C++ -*-====// |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 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 | // |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 10 | // This file contains the X86 implementation of TargetFrameLowering class. |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 14 | #include "X86FrameLowering.h" |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 15 | #include "X86InstrBuilder.h" |
| 16 | #include "X86InstrInfo.h" |
| 17 | #include "X86MachineFunctionInfo.h" |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 18 | #include "X86TargetMachine.h" |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 19 | #include "llvm/Function.h" |
| 20 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 21 | #include "llvm/CodeGen/MachineFunction.h" |
| 22 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 23 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 25 | #include "llvm/Target/TargetData.h" |
| 26 | #include "llvm/Target/TargetOptions.h" |
| 27 | #include "llvm/Support/CommandLine.h" |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallSet.h" |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 29 | |
| 30 | using namespace llvm; |
| 31 | |
| 32 | // FIXME: completely move here. |
| 33 | extern cl::opt<bool> ForceStackAlign; |
| 34 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 35 | bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const { |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 36 | return !MF.getFrameInfo()->hasVarSizedObjects(); |
| 37 | } |
| 38 | |
| 39 | /// hasFP - Return true if the specified function should have a dedicated frame |
| 40 | /// pointer register. This is true if the function has variable sized allocas |
| 41 | /// or if frame pointer elimination is disabled. |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 42 | bool X86FrameLowering::hasFP(const MachineFunction &MF) const { |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 43 | const MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 44 | const MachineModuleInfo &MMI = MF.getMMI(); |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 45 | const TargetRegisterInfo *RI = TM.getRegisterInfo(); |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 46 | |
| 47 | return (DisableFramePointerElim(MF) || |
| 48 | RI->needsStackRealignment(MF) || |
| 49 | MFI->hasVarSizedObjects() || |
| 50 | MFI->isFrameAddressTaken() || |
| 51 | MF.getInfo<X86MachineFunctionInfo>()->getForceFramePointer() || |
| 52 | MMI.callsUnwindInit()); |
| 53 | } |
| 54 | |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 55 | static unsigned getSUBriOpcode(unsigned is64Bit, int64_t Imm) { |
| 56 | if (is64Bit) { |
| 57 | if (isInt<8>(Imm)) |
| 58 | return X86::SUB64ri8; |
| 59 | return X86::SUB64ri32; |
| 60 | } else { |
| 61 | if (isInt<8>(Imm)) |
| 62 | return X86::SUB32ri8; |
| 63 | return X86::SUB32ri; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | static unsigned getADDriOpcode(unsigned is64Bit, int64_t Imm) { |
| 68 | if (is64Bit) { |
| 69 | if (isInt<8>(Imm)) |
| 70 | return X86::ADD64ri8; |
| 71 | return X86::ADD64ri32; |
| 72 | } else { |
| 73 | if (isInt<8>(Imm)) |
| 74 | return X86::ADD32ri8; |
| 75 | return X86::ADD32ri; |
| 76 | } |
| 77 | } |
| 78 | |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 79 | /// findDeadCallerSavedReg - Return a caller-saved register that isn't live |
| 80 | /// when it reaches the "return" instruction. We can then pop a stack object |
| 81 | /// to this register without worry about clobbering it. |
| 82 | static unsigned findDeadCallerSavedReg(MachineBasicBlock &MBB, |
| 83 | MachineBasicBlock::iterator &MBBI, |
| 84 | const TargetRegisterInfo &TRI, |
| 85 | bool Is64Bit) { |
| 86 | const MachineFunction *MF = MBB.getParent(); |
| 87 | const Function *F = MF->getFunction(); |
| 88 | if (!F || MF->getMMI().callsEHReturn()) |
| 89 | return 0; |
| 90 | |
| 91 | static const unsigned CallerSavedRegs32Bit[] = { |
| 92 | X86::EAX, X86::EDX, X86::ECX |
| 93 | }; |
| 94 | |
| 95 | static const unsigned CallerSavedRegs64Bit[] = { |
| 96 | X86::RAX, X86::RDX, X86::RCX, X86::RSI, X86::RDI, |
| 97 | X86::R8, X86::R9, X86::R10, X86::R11 |
| 98 | }; |
| 99 | |
| 100 | unsigned Opc = MBBI->getOpcode(); |
| 101 | switch (Opc) { |
| 102 | default: return 0; |
| 103 | case X86::RET: |
| 104 | case X86::RETI: |
| 105 | case X86::TCRETURNdi: |
| 106 | case X86::TCRETURNri: |
| 107 | case X86::TCRETURNmi: |
| 108 | case X86::TCRETURNdi64: |
| 109 | case X86::TCRETURNri64: |
| 110 | case X86::TCRETURNmi64: |
| 111 | case X86::EH_RETURN: |
| 112 | case X86::EH_RETURN64: { |
| 113 | SmallSet<unsigned, 8> Uses; |
| 114 | for (unsigned i = 0, e = MBBI->getNumOperands(); i != e; ++i) { |
| 115 | MachineOperand &MO = MBBI->getOperand(i); |
| 116 | if (!MO.isReg() || MO.isDef()) |
| 117 | continue; |
| 118 | unsigned Reg = MO.getReg(); |
| 119 | if (!Reg) |
| 120 | continue; |
| 121 | for (const unsigned *AsI = TRI.getOverlaps(Reg); *AsI; ++AsI) |
| 122 | Uses.insert(*AsI); |
| 123 | } |
| 124 | |
| 125 | const unsigned *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit; |
| 126 | for (; *CS; ++CS) |
| 127 | if (!Uses.count(*CS)) |
| 128 | return *CS; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 136 | /// emitSPUpdate - Emit a series of instructions to increment / decrement the |
| 137 | /// stack pointer by a constant value. |
| 138 | static |
| 139 | void emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 140 | unsigned StackPtr, int64_t NumBytes, |
| 141 | bool Is64Bit, const TargetInstrInfo &TII, |
| 142 | const TargetRegisterInfo &TRI) { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 143 | bool isSub = NumBytes < 0; |
| 144 | uint64_t Offset = isSub ? -NumBytes : NumBytes; |
| 145 | unsigned Opc = isSub ? |
| 146 | getSUBriOpcode(Is64Bit, Offset) : |
| 147 | getADDriOpcode(Is64Bit, Offset); |
| 148 | uint64_t Chunk = (1LL << 31) - 1; |
| 149 | DebugLoc DL = MBB.findDebugLoc(MBBI); |
| 150 | |
| 151 | while (Offset) { |
| 152 | uint64_t ThisVal = (Offset > Chunk) ? Chunk : Offset; |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 153 | if (ThisVal == (Is64Bit ? 8 : 4)) { |
| 154 | // Use push / pop instead. |
| 155 | unsigned Reg = isSub |
Dale Johannesen | 1e08cd1 | 2011-01-04 19:31:24 +0000 | [diff] [blame] | 156 | ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX) |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 157 | : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit); |
| 158 | if (Reg) { |
| 159 | Opc = isSub |
| 160 | ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r) |
| 161 | : (Is64Bit ? X86::POP64r : X86::POP32r); |
| 162 | BuildMI(MBB, MBBI, DL, TII.get(Opc)) |
| 163 | .addReg(Reg, getDefRegState(!isSub) | getUndefRegState(isSub)); |
| 164 | Offset -= ThisVal; |
| 165 | continue; |
| 166 | } |
| 167 | } |
| 168 | |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 169 | MachineInstr *MI = |
| 170 | BuildMI(MBB, MBBI, DL, TII.get(Opc), StackPtr) |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 171 | .addReg(StackPtr) |
| 172 | .addImm(ThisVal); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 173 | MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead. |
| 174 | Offset -= ThisVal; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | /// mergeSPUpdatesUp - Merge two stack-manipulating instructions upper iterator. |
| 179 | static |
| 180 | void mergeSPUpdatesUp(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, |
| 181 | unsigned StackPtr, uint64_t *NumBytes = NULL) { |
| 182 | if (MBBI == MBB.begin()) return; |
| 183 | |
| 184 | MachineBasicBlock::iterator PI = prior(MBBI); |
| 185 | unsigned Opc = PI->getOpcode(); |
| 186 | if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 || |
| 187 | Opc == X86::ADD32ri || Opc == X86::ADD32ri8) && |
| 188 | PI->getOperand(0).getReg() == StackPtr) { |
| 189 | if (NumBytes) |
| 190 | *NumBytes += PI->getOperand(2).getImm(); |
| 191 | MBB.erase(PI); |
| 192 | } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 || |
| 193 | Opc == X86::SUB32ri || Opc == X86::SUB32ri8) && |
| 194 | PI->getOperand(0).getReg() == StackPtr) { |
| 195 | if (NumBytes) |
| 196 | *NumBytes -= PI->getOperand(2).getImm(); |
| 197 | MBB.erase(PI); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | /// mergeSPUpdatesDown - Merge two stack-manipulating instructions lower iterator. |
| 202 | static |
| 203 | void mergeSPUpdatesDown(MachineBasicBlock &MBB, |
| 204 | MachineBasicBlock::iterator &MBBI, |
| 205 | unsigned StackPtr, uint64_t *NumBytes = NULL) { |
| 206 | // FIXME: THIS ISN'T RUN!!! |
| 207 | return; |
| 208 | |
| 209 | if (MBBI == MBB.end()) return; |
| 210 | |
| 211 | MachineBasicBlock::iterator NI = llvm::next(MBBI); |
| 212 | if (NI == MBB.end()) return; |
| 213 | |
| 214 | unsigned Opc = NI->getOpcode(); |
| 215 | if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 || |
| 216 | Opc == X86::ADD32ri || Opc == X86::ADD32ri8) && |
| 217 | NI->getOperand(0).getReg() == StackPtr) { |
| 218 | if (NumBytes) |
| 219 | *NumBytes -= NI->getOperand(2).getImm(); |
| 220 | MBB.erase(NI); |
| 221 | MBBI = NI; |
| 222 | } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 || |
| 223 | Opc == X86::SUB32ri || Opc == X86::SUB32ri8) && |
| 224 | NI->getOperand(0).getReg() == StackPtr) { |
| 225 | if (NumBytes) |
| 226 | *NumBytes += NI->getOperand(2).getImm(); |
| 227 | MBB.erase(NI); |
| 228 | MBBI = NI; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | /// mergeSPUpdates - Checks the instruction before/after the passed |
| 233 | /// instruction. If it is an ADD/SUB instruction it is deleted argument and the |
| 234 | /// stack adjustment is returned as a positive value for ADD and a negative for |
| 235 | /// SUB. |
| 236 | static int mergeSPUpdates(MachineBasicBlock &MBB, |
| 237 | MachineBasicBlock::iterator &MBBI, |
| 238 | unsigned StackPtr, |
| 239 | bool doMergeWithPrevious) { |
| 240 | if ((doMergeWithPrevious && MBBI == MBB.begin()) || |
| 241 | (!doMergeWithPrevious && MBBI == MBB.end())) |
| 242 | return 0; |
| 243 | |
| 244 | MachineBasicBlock::iterator PI = doMergeWithPrevious ? prior(MBBI) : MBBI; |
| 245 | MachineBasicBlock::iterator NI = doMergeWithPrevious ? 0 : llvm::next(MBBI); |
| 246 | unsigned Opc = PI->getOpcode(); |
| 247 | int Offset = 0; |
| 248 | |
| 249 | if ((Opc == X86::ADD64ri32 || Opc == X86::ADD64ri8 || |
| 250 | Opc == X86::ADD32ri || Opc == X86::ADD32ri8) && |
| 251 | PI->getOperand(0).getReg() == StackPtr){ |
| 252 | Offset += PI->getOperand(2).getImm(); |
| 253 | MBB.erase(PI); |
| 254 | if (!doMergeWithPrevious) MBBI = NI; |
| 255 | } else if ((Opc == X86::SUB64ri32 || Opc == X86::SUB64ri8 || |
| 256 | Opc == X86::SUB32ri || Opc == X86::SUB32ri8) && |
| 257 | PI->getOperand(0).getReg() == StackPtr) { |
| 258 | Offset -= PI->getOperand(2).getImm(); |
| 259 | MBB.erase(PI); |
| 260 | if (!doMergeWithPrevious) MBBI = NI; |
| 261 | } |
| 262 | |
| 263 | return Offset; |
| 264 | } |
| 265 | |
| 266 | static bool isEAXLiveIn(MachineFunction &MF) { |
| 267 | for (MachineRegisterInfo::livein_iterator II = MF.getRegInfo().livein_begin(), |
| 268 | EE = MF.getRegInfo().livein_end(); II != EE; ++II) { |
| 269 | unsigned Reg = II->first; |
| 270 | |
| 271 | if (Reg == X86::EAX || Reg == X86::AX || |
| 272 | Reg == X86::AH || Reg == X86::AL) |
| 273 | return true; |
| 274 | } |
| 275 | |
| 276 | return false; |
| 277 | } |
| 278 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 279 | void X86FrameLowering::emitCalleeSavedFrameMoves(MachineFunction &MF, |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 280 | MCSymbol *Label, |
| 281 | unsigned FramePtr) const { |
| 282 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 283 | MachineModuleInfo &MMI = MF.getMMI(); |
| 284 | |
| 285 | // Add callee saved registers to move list. |
| 286 | const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo(); |
| 287 | if (CSI.empty()) return; |
| 288 | |
| 289 | std::vector<MachineMove> &Moves = MMI.getFrameMoves(); |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 290 | const TargetData *TD = TM.getTargetData(); |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 291 | bool HasFP = hasFP(MF); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 292 | |
| 293 | // Calculate amount of bytes used for return address storing. |
Anton Korobeynikov | e749911 | 2011-01-14 21:57:58 +0000 | [diff] [blame^] | 294 | int stackGrowth = -TD->getPointerSize(); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 295 | |
| 296 | // FIXME: This is dirty hack. The code itself is pretty mess right now. |
| 297 | // It should be rewritten from scratch and generalized sometimes. |
| 298 | |
| 299 | // Determine maximum offset (minumum due to stack growth). |
| 300 | int64_t MaxOffset = 0; |
| 301 | for (std::vector<CalleeSavedInfo>::const_iterator |
| 302 | I = CSI.begin(), E = CSI.end(); I != E; ++I) |
| 303 | MaxOffset = std::min(MaxOffset, |
| 304 | MFI->getObjectOffset(I->getFrameIdx())); |
| 305 | |
| 306 | // Calculate offsets. |
| 307 | int64_t saveAreaOffset = (HasFP ? 3 : 2) * stackGrowth; |
| 308 | for (std::vector<CalleeSavedInfo>::const_iterator |
| 309 | I = CSI.begin(), E = CSI.end(); I != E; ++I) { |
| 310 | int64_t Offset = MFI->getObjectOffset(I->getFrameIdx()); |
| 311 | unsigned Reg = I->getReg(); |
| 312 | Offset = MaxOffset - Offset + saveAreaOffset; |
| 313 | |
| 314 | // Don't output a new machine move if we're re-saving the frame |
| 315 | // pointer. This happens when the PrologEpilogInserter has inserted an extra |
| 316 | // "PUSH" of the frame pointer -- the "emitPrologue" method automatically |
| 317 | // generates one when frame pointers are used. If we generate a "machine |
| 318 | // move" for this extra "PUSH", the linker will lose track of the fact that |
| 319 | // the frame pointer should have the value of the first "PUSH" when it's |
| 320 | // trying to unwind. |
| 321 | // |
| 322 | // FIXME: This looks inelegant. It's possibly correct, but it's covering up |
| 323 | // another bug. I.e., one where we generate a prolog like this: |
| 324 | // |
| 325 | // pushl %ebp |
| 326 | // movl %esp, %ebp |
| 327 | // pushl %ebp |
| 328 | // pushl %esi |
| 329 | // ... |
| 330 | // |
| 331 | // The immediate re-push of EBP is unnecessary. At the least, it's an |
| 332 | // optimization bug. EBP can be used as a scratch register in certain |
| 333 | // cases, but probably not when we have a frame pointer. |
| 334 | if (HasFP && FramePtr == Reg) |
| 335 | continue; |
| 336 | |
| 337 | MachineLocation CSDst(MachineLocation::VirtualFP, Offset); |
| 338 | MachineLocation CSSrc(Reg); |
| 339 | Moves.push_back(MachineMove(Label, CSDst, CSSrc)); |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | /// emitPrologue - Push callee-saved registers onto the stack, which |
| 344 | /// automatically adjust the stack pointer. Adjust the stack pointer to allocate |
| 345 | /// space for local variables. Also emit labels used by the exception handler to |
| 346 | /// generate the exception handling frames. |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 347 | void X86FrameLowering::emitPrologue(MachineFunction &MF) const { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 348 | MachineBasicBlock &MBB = MF.front(); // Prologue goes in entry BB. |
| 349 | MachineBasicBlock::iterator MBBI = MBB.begin(); |
| 350 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 351 | const Function *Fn = MF.getFunction(); |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 352 | const X86RegisterInfo *RegInfo = TM.getRegisterInfo(); |
| 353 | const X86InstrInfo &TII = *TM.getInstrInfo(); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 354 | MachineModuleInfo &MMI = MF.getMMI(); |
| 355 | X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>(); |
| 356 | bool needsFrameMoves = MMI.hasDebugInfo() || |
| 357 | !Fn->doesNotThrow() || UnwindTablesMandatory; |
| 358 | uint64_t MaxAlign = MFI->getMaxAlignment(); // Desired stack alignment. |
| 359 | uint64_t StackSize = MFI->getStackSize(); // Number of bytes to allocate. |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 360 | bool HasFP = hasFP(MF); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 361 | bool Is64Bit = STI.is64Bit(); |
| 362 | bool IsWin64 = STI.isTargetWin64(); |
| 363 | unsigned StackAlign = getStackAlignment(); |
| 364 | unsigned SlotSize = RegInfo->getSlotSize(); |
| 365 | unsigned FramePtr = RegInfo->getFrameRegister(MF); |
| 366 | unsigned StackPtr = RegInfo->getStackRegister(); |
| 367 | |
| 368 | DebugLoc DL; |
| 369 | |
| 370 | // If we're forcing a stack realignment we can't rely on just the frame |
| 371 | // info, we need to know the ABI stack alignment as well in case we |
| 372 | // have a call out. Otherwise just make sure we have some alignment - we'll |
| 373 | // go with the minimum SlotSize. |
| 374 | if (ForceStackAlign) { |
| 375 | if (MFI->hasCalls()) |
| 376 | MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign; |
| 377 | else if (MaxAlign < SlotSize) |
| 378 | MaxAlign = SlotSize; |
| 379 | } |
| 380 | |
| 381 | // Add RETADDR move area to callee saved frame size. |
| 382 | int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta(); |
| 383 | if (TailCallReturnAddrDelta < 0) |
| 384 | X86FI->setCalleeSavedFrameSize( |
| 385 | X86FI->getCalleeSavedFrameSize() - TailCallReturnAddrDelta); |
| 386 | |
| 387 | // If this is x86-64 and the Red Zone is not disabled, if we are a leaf |
| 388 | // function, and use up to 128 bytes of stack space, don't have a frame |
| 389 | // pointer, calls, or dynamic alloca then we do not need to adjust the |
| 390 | // stack pointer (we fit in the Red Zone). |
| 391 | if (Is64Bit && !Fn->hasFnAttr(Attribute::NoRedZone) && |
| 392 | !RegInfo->needsStackRealignment(MF) && |
| 393 | !MFI->hasVarSizedObjects() && // No dynamic alloca. |
| 394 | !MFI->adjustsStack() && // No calls. |
| 395 | !IsWin64) { // Win64 has no Red Zone |
| 396 | uint64_t MinSize = X86FI->getCalleeSavedFrameSize(); |
| 397 | if (HasFP) MinSize += SlotSize; |
| 398 | StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0); |
| 399 | MFI->setStackSize(StackSize); |
| 400 | } else if (IsWin64) { |
| 401 | // We need to always allocate 32 bytes as register spill area. |
| 402 | // FIXME: We might reuse these 32 bytes for leaf functions. |
| 403 | StackSize += 32; |
| 404 | MFI->setStackSize(StackSize); |
| 405 | } |
| 406 | |
| 407 | // Insert stack pointer adjustment for later moving of return addr. Only |
| 408 | // applies to tail call optimized functions where the callee argument stack |
| 409 | // size is bigger than the callers. |
| 410 | if (TailCallReturnAddrDelta < 0) { |
| 411 | MachineInstr *MI = |
| 412 | BuildMI(MBB, MBBI, DL, |
| 413 | TII.get(getSUBriOpcode(Is64Bit, -TailCallReturnAddrDelta)), |
| 414 | StackPtr) |
| 415 | .addReg(StackPtr) |
| 416 | .addImm(-TailCallReturnAddrDelta); |
| 417 | MI->getOperand(3).setIsDead(); // The EFLAGS implicit def is dead. |
| 418 | } |
| 419 | |
| 420 | // Mapping for machine moves: |
| 421 | // |
| 422 | // DST: VirtualFP AND |
| 423 | // SRC: VirtualFP => DW_CFA_def_cfa_offset |
| 424 | // ELSE => DW_CFA_def_cfa |
| 425 | // |
| 426 | // SRC: VirtualFP AND |
| 427 | // DST: Register => DW_CFA_def_cfa_register |
| 428 | // |
| 429 | // ELSE |
| 430 | // OFFSET < 0 => DW_CFA_offset_extended_sf |
| 431 | // REG < 64 => DW_CFA_offset + Reg |
| 432 | // ELSE => DW_CFA_offset_extended |
| 433 | |
| 434 | std::vector<MachineMove> &Moves = MMI.getFrameMoves(); |
| 435 | const TargetData *TD = MF.getTarget().getTargetData(); |
| 436 | uint64_t NumBytes = 0; |
| 437 | int stackGrowth = -TD->getPointerSize(); |
| 438 | |
| 439 | if (HasFP) { |
| 440 | // Calculate required stack adjustment. |
| 441 | uint64_t FrameSize = StackSize - SlotSize; |
| 442 | if (RegInfo->needsStackRealignment(MF)) |
| 443 | FrameSize = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign; |
| 444 | |
| 445 | NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize(); |
| 446 | |
| 447 | // Get the offset of the stack slot for the EBP register, which is |
| 448 | // guaranteed to be the last slot by processFunctionBeforeFrameFinalized. |
| 449 | // Update the frame offset adjustment. |
| 450 | MFI->setOffsetAdjustment(-NumBytes); |
| 451 | |
| 452 | // Save EBP/RBP into the appropriate stack slot. |
| 453 | BuildMI(MBB, MBBI, DL, TII.get(Is64Bit ? X86::PUSH64r : X86::PUSH32r)) |
| 454 | .addReg(FramePtr, RegState::Kill); |
| 455 | |
| 456 | if (needsFrameMoves) { |
| 457 | // Mark the place where EBP/RBP was saved. |
| 458 | MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol(); |
| 459 | BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL)).addSym(FrameLabel); |
| 460 | |
| 461 | // Define the current CFA rule to use the provided offset. |
| 462 | if (StackSize) { |
| 463 | MachineLocation SPDst(MachineLocation::VirtualFP); |
| 464 | MachineLocation SPSrc(MachineLocation::VirtualFP, 2 * stackGrowth); |
| 465 | Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); |
| 466 | } else { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 467 | MachineLocation SPDst(StackPtr); |
| 468 | MachineLocation SPSrc(StackPtr, stackGrowth); |
| 469 | Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); |
| 470 | } |
| 471 | |
| 472 | // Change the rule for the FramePtr to be an "offset" rule. |
| 473 | MachineLocation FPDst(MachineLocation::VirtualFP, 2 * stackGrowth); |
| 474 | MachineLocation FPSrc(FramePtr); |
| 475 | Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc)); |
| 476 | } |
| 477 | |
| 478 | // Update EBP with the new base value... |
| 479 | BuildMI(MBB, MBBI, DL, |
| 480 | TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), FramePtr) |
| 481 | .addReg(StackPtr); |
| 482 | |
| 483 | if (needsFrameMoves) { |
| 484 | // Mark effective beginning of when frame pointer becomes valid. |
| 485 | MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol(); |
| 486 | BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL)).addSym(FrameLabel); |
| 487 | |
| 488 | // Define the current CFA to use the EBP/RBP register. |
| 489 | MachineLocation FPDst(FramePtr); |
| 490 | MachineLocation FPSrc(MachineLocation::VirtualFP); |
| 491 | Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc)); |
| 492 | } |
| 493 | |
| 494 | // Mark the FramePtr as live-in in every block except the entry. |
| 495 | for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end(); |
| 496 | I != E; ++I) |
| 497 | I->addLiveIn(FramePtr); |
| 498 | |
| 499 | // Realign stack |
| 500 | if (RegInfo->needsStackRealignment(MF)) { |
| 501 | MachineInstr *MI = |
| 502 | BuildMI(MBB, MBBI, DL, |
| 503 | TII.get(Is64Bit ? X86::AND64ri32 : X86::AND32ri), |
| 504 | StackPtr).addReg(StackPtr).addImm(-MaxAlign); |
| 505 | |
| 506 | // The EFLAGS implicit def is dead. |
| 507 | MI->getOperand(3).setIsDead(); |
| 508 | } |
| 509 | } else { |
| 510 | NumBytes = StackSize - X86FI->getCalleeSavedFrameSize(); |
| 511 | } |
| 512 | |
| 513 | // Skip the callee-saved push instructions. |
| 514 | bool PushedRegs = false; |
| 515 | int StackOffset = 2 * stackGrowth; |
| 516 | |
| 517 | while (MBBI != MBB.end() && |
| 518 | (MBBI->getOpcode() == X86::PUSH32r || |
| 519 | MBBI->getOpcode() == X86::PUSH64r)) { |
| 520 | PushedRegs = true; |
| 521 | ++MBBI; |
| 522 | |
| 523 | if (!HasFP && needsFrameMoves) { |
| 524 | // Mark callee-saved push instruction. |
| 525 | MCSymbol *Label = MMI.getContext().CreateTempSymbol(); |
| 526 | BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL)).addSym(Label); |
| 527 | |
| 528 | // Define the current CFA rule to use the provided offset. |
| 529 | unsigned Ptr = StackSize ? |
| 530 | MachineLocation::VirtualFP : StackPtr; |
| 531 | MachineLocation SPDst(Ptr); |
| 532 | MachineLocation SPSrc(Ptr, StackOffset); |
| 533 | Moves.push_back(MachineMove(Label, SPDst, SPSrc)); |
| 534 | StackOffset += stackGrowth; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | DL = MBB.findDebugLoc(MBBI); |
| 539 | |
| 540 | // If there is an SUB32ri of ESP immediately before this instruction, merge |
| 541 | // the two. This can be the case when tail call elimination is enabled and |
| 542 | // the callee has more arguments then the caller. |
| 543 | NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true); |
| 544 | |
| 545 | // If there is an ADD32ri or SUB32ri of ESP immediately after this |
| 546 | // instruction, merge the two instructions. |
| 547 | mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes); |
| 548 | |
| 549 | // Adjust stack pointer: ESP -= numbytes. |
| 550 | |
| 551 | // Windows and cygwin/mingw require a prologue helper routine when allocating |
| 552 | // more than 4K bytes on the stack. Windows uses __chkstk and cygwin/mingw |
| 553 | // uses __alloca. __alloca and the 32-bit version of __chkstk will probe the |
| 554 | // stack and adjust the stack pointer in one go. The 64-bit version of |
| 555 | // __chkstk is only responsible for probing the stack. The 64-bit prologue is |
| 556 | // responsible for adjusting the stack pointer. Touching the stack at 4K |
| 557 | // increments is necessary to ensure that the guard pages used by the OS |
| 558 | // virtual memory manager are allocated in correct sequence. |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 559 | if (NumBytes >= 4096 && (STI.isTargetCygMing() || STI.isTargetWin32())) { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 560 | // Check whether EAX is livein for this function. |
| 561 | bool isEAXAlive = isEAXLiveIn(MF); |
| 562 | |
| 563 | const char *StackProbeSymbol = |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 564 | STI.isTargetWindows() ? "_chkstk" : "_alloca"; |
Bill Wendling | a99ec28 | 2011-01-06 00:50:34 +0000 | [diff] [blame] | 565 | if (Is64Bit && STI.isTargetCygMing()) |
| 566 | StackProbeSymbol = "__chkstk"; |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 567 | unsigned CallOp = Is64Bit ? X86::CALL64pcrel32 : X86::CALLpcrel32; |
| 568 | if (!isEAXAlive) { |
| 569 | BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX) |
| 570 | .addImm(NumBytes); |
| 571 | BuildMI(MBB, MBBI, DL, TII.get(CallOp)) |
| 572 | .addExternalSymbol(StackProbeSymbol) |
| 573 | .addReg(StackPtr, RegState::Define | RegState::Implicit) |
| 574 | .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit); |
| 575 | } else { |
| 576 | // Save EAX |
| 577 | BuildMI(MBB, MBBI, DL, TII.get(X86::PUSH32r)) |
| 578 | .addReg(X86::EAX, RegState::Kill); |
| 579 | |
| 580 | // Allocate NumBytes-4 bytes on stack. We'll also use 4 already |
| 581 | // allocated bytes for EAX. |
| 582 | BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX) |
| 583 | .addImm(NumBytes - 4); |
| 584 | BuildMI(MBB, MBBI, DL, TII.get(CallOp)) |
| 585 | .addExternalSymbol(StackProbeSymbol) |
| 586 | .addReg(StackPtr, RegState::Define | RegState::Implicit) |
| 587 | .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit); |
| 588 | |
| 589 | // Restore EAX |
| 590 | MachineInstr *MI = addRegOffset(BuildMI(MF, DL, TII.get(X86::MOV32rm), |
| 591 | X86::EAX), |
| 592 | StackPtr, false, NumBytes - 4); |
| 593 | MBB.insert(MBBI, MI); |
| 594 | } |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 595 | } else if (NumBytes >= 4096 && STI.isTargetWin64()) { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 596 | // Sanity check that EAX is not livein for this function. It should |
| 597 | // should not be, so throw an assert. |
| 598 | assert(!isEAXLiveIn(MF) && "EAX is livein in the Win64 case!"); |
| 599 | |
| 600 | // Handle the 64-bit Windows ABI case where we need to call __chkstk. |
| 601 | // Function prologue is responsible for adjusting the stack pointer. |
| 602 | BuildMI(MBB, MBBI, DL, TII.get(X86::MOV32ri), X86::EAX) |
| 603 | .addImm(NumBytes); |
| 604 | BuildMI(MBB, MBBI, DL, TII.get(X86::WINCALL64pcrel32)) |
| 605 | .addExternalSymbol("__chkstk") |
| 606 | .addReg(StackPtr, RegState::Define | RegState::Implicit); |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 607 | emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, |
| 608 | TII, *RegInfo); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 609 | } else if (NumBytes) |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 610 | emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, |
| 611 | TII, *RegInfo); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 612 | |
| 613 | if ((NumBytes || PushedRegs) && needsFrameMoves) { |
| 614 | // Mark end of stack pointer adjustment. |
| 615 | MCSymbol *Label = MMI.getContext().CreateTempSymbol(); |
| 616 | BuildMI(MBB, MBBI, DL, TII.get(X86::PROLOG_LABEL)).addSym(Label); |
| 617 | |
| 618 | if (!HasFP && NumBytes) { |
| 619 | // Define the current CFA rule to use the provided offset. |
| 620 | if (StackSize) { |
| 621 | MachineLocation SPDst(MachineLocation::VirtualFP); |
| 622 | MachineLocation SPSrc(MachineLocation::VirtualFP, |
| 623 | -StackSize + stackGrowth); |
| 624 | Moves.push_back(MachineMove(Label, SPDst, SPSrc)); |
| 625 | } else { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 626 | MachineLocation SPDst(StackPtr); |
| 627 | MachineLocation SPSrc(StackPtr, stackGrowth); |
| 628 | Moves.push_back(MachineMove(Label, SPDst, SPSrc)); |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | // Emit DWARF info specifying the offsets of the callee-saved registers. |
| 633 | if (PushedRegs) |
| 634 | emitCalleeSavedFrameMoves(MF, Label, HasFP ? FramePtr : StackPtr); |
| 635 | } |
| 636 | } |
| 637 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 638 | void X86FrameLowering::emitEpilogue(MachineFunction &MF, |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 639 | MachineBasicBlock &MBB) const { |
| 640 | const MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 641 | X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>(); |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 642 | const X86RegisterInfo *RegInfo = TM.getRegisterInfo(); |
| 643 | const X86InstrInfo &TII = *TM.getInstrInfo(); |
Jakob Stoklund Olesen | 4f28c1c | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 644 | MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr(); |
| 645 | assert(MBBI != MBB.end() && "Returning block has no instructions"); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 646 | unsigned RetOpcode = MBBI->getOpcode(); |
| 647 | DebugLoc DL = MBBI->getDebugLoc(); |
| 648 | bool Is64Bit = STI.is64Bit(); |
| 649 | unsigned StackAlign = getStackAlignment(); |
| 650 | unsigned SlotSize = RegInfo->getSlotSize(); |
| 651 | unsigned FramePtr = RegInfo->getFrameRegister(MF); |
| 652 | unsigned StackPtr = RegInfo->getStackRegister(); |
| 653 | |
| 654 | switch (RetOpcode) { |
| 655 | default: |
| 656 | llvm_unreachable("Can only insert epilog into returning blocks"); |
| 657 | case X86::RET: |
| 658 | case X86::RETI: |
| 659 | case X86::TCRETURNdi: |
| 660 | case X86::TCRETURNri: |
| 661 | case X86::TCRETURNmi: |
| 662 | case X86::TCRETURNdi64: |
| 663 | case X86::TCRETURNri64: |
| 664 | case X86::TCRETURNmi64: |
| 665 | case X86::EH_RETURN: |
| 666 | case X86::EH_RETURN64: |
| 667 | break; // These are ok |
| 668 | } |
| 669 | |
| 670 | // Get the number of bytes to allocate from the FrameInfo. |
| 671 | uint64_t StackSize = MFI->getStackSize(); |
| 672 | uint64_t MaxAlign = MFI->getMaxAlignment(); |
| 673 | unsigned CSSize = X86FI->getCalleeSavedFrameSize(); |
| 674 | uint64_t NumBytes = 0; |
| 675 | |
| 676 | // If we're forcing a stack realignment we can't rely on just the frame |
| 677 | // info, we need to know the ABI stack alignment as well in case we |
| 678 | // have a call out. Otherwise just make sure we have some alignment - we'll |
| 679 | // go with the minimum. |
| 680 | if (ForceStackAlign) { |
| 681 | if (MFI->hasCalls()) |
| 682 | MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign; |
| 683 | else |
| 684 | MaxAlign = MaxAlign ? MaxAlign : 4; |
| 685 | } |
| 686 | |
Anton Korobeynikov | d0c3817 | 2010-11-18 21:19:35 +0000 | [diff] [blame] | 687 | if (hasFP(MF)) { |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 688 | // Calculate required stack adjustment. |
| 689 | uint64_t FrameSize = StackSize - SlotSize; |
| 690 | if (RegInfo->needsStackRealignment(MF)) |
| 691 | FrameSize = (FrameSize + MaxAlign - 1)/MaxAlign*MaxAlign; |
| 692 | |
| 693 | NumBytes = FrameSize - CSSize; |
| 694 | |
| 695 | // Pop EBP. |
| 696 | BuildMI(MBB, MBBI, DL, |
| 697 | TII.get(Is64Bit ? X86::POP64r : X86::POP32r), FramePtr); |
| 698 | } else { |
| 699 | NumBytes = StackSize - CSSize; |
| 700 | } |
| 701 | |
| 702 | // Skip the callee-saved pop instructions. |
| 703 | MachineBasicBlock::iterator LastCSPop = MBBI; |
| 704 | while (MBBI != MBB.begin()) { |
| 705 | MachineBasicBlock::iterator PI = prior(MBBI); |
| 706 | unsigned Opc = PI->getOpcode(); |
| 707 | |
Jakob Stoklund Olesen | 4f28c1c | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 708 | if (Opc != X86::POP32r && Opc != X86::POP64r && Opc != X86::DBG_VALUE && |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 709 | !PI->getDesc().isTerminator()) |
| 710 | break; |
| 711 | |
| 712 | --MBBI; |
| 713 | } |
| 714 | |
| 715 | DL = MBBI->getDebugLoc(); |
| 716 | |
| 717 | // If there is an ADD32ri or SUB32ri of ESP immediately before this |
| 718 | // instruction, merge the two instructions. |
| 719 | if (NumBytes || MFI->hasVarSizedObjects()) |
| 720 | mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes); |
| 721 | |
| 722 | // If dynamic alloca is used, then reset esp to point to the last callee-saved |
| 723 | // slot before popping them off! Same applies for the case, when stack was |
| 724 | // realigned. |
| 725 | if (RegInfo->needsStackRealignment(MF)) { |
| 726 | // We cannot use LEA here, because stack pointer was realigned. We need to |
| 727 | // deallocate local frame back. |
| 728 | if (CSSize) { |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 729 | emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, TII, *RegInfo); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 730 | MBBI = prior(LastCSPop); |
| 731 | } |
| 732 | |
| 733 | BuildMI(MBB, MBBI, DL, |
| 734 | TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), |
| 735 | StackPtr).addReg(FramePtr); |
| 736 | } else if (MFI->hasVarSizedObjects()) { |
| 737 | if (CSSize) { |
| 738 | unsigned Opc = Is64Bit ? X86::LEA64r : X86::LEA32r; |
| 739 | MachineInstr *MI = |
| 740 | addRegOffset(BuildMI(MF, DL, TII.get(Opc), StackPtr), |
| 741 | FramePtr, false, -CSSize); |
| 742 | MBB.insert(MBBI, MI); |
| 743 | } else { |
| 744 | BuildMI(MBB, MBBI, DL, |
| 745 | TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), StackPtr) |
| 746 | .addReg(FramePtr); |
| 747 | } |
| 748 | } else if (NumBytes) { |
| 749 | // Adjust stack pointer back: ESP += numbytes. |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 750 | emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, TII, *RegInfo); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 751 | } |
| 752 | |
| 753 | // We're returning from function via eh_return. |
| 754 | if (RetOpcode == X86::EH_RETURN || RetOpcode == X86::EH_RETURN64) { |
Jakob Stoklund Olesen | 4f28c1c | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 755 | MBBI = MBB.getLastNonDebugInstr(); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 756 | MachineOperand &DestAddr = MBBI->getOperand(0); |
| 757 | assert(DestAddr.isReg() && "Offset should be in register!"); |
| 758 | BuildMI(MBB, MBBI, DL, |
| 759 | TII.get(Is64Bit ? X86::MOV64rr : X86::MOV32rr), |
| 760 | StackPtr).addReg(DestAddr.getReg()); |
| 761 | } else if (RetOpcode == X86::TCRETURNri || RetOpcode == X86::TCRETURNdi || |
| 762 | RetOpcode == X86::TCRETURNmi || |
| 763 | RetOpcode == X86::TCRETURNri64 || RetOpcode == X86::TCRETURNdi64 || |
| 764 | RetOpcode == X86::TCRETURNmi64) { |
| 765 | bool isMem = RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64; |
| 766 | // Tail call return: adjust the stack pointer and jump to callee. |
Jakob Stoklund Olesen | f7ca976 | 2011-01-13 22:47:43 +0000 | [diff] [blame] | 767 | MBBI = MBB.getLastNonDebugInstr(); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 768 | MachineOperand &JumpTarget = MBBI->getOperand(0); |
| 769 | MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1); |
| 770 | assert(StackAdjust.isImm() && "Expecting immediate value."); |
| 771 | |
| 772 | // Adjust stack pointer. |
| 773 | int StackAdj = StackAdjust.getImm(); |
| 774 | int MaxTCDelta = X86FI->getTCReturnAddrDelta(); |
| 775 | int Offset = 0; |
| 776 | assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive"); |
| 777 | |
| 778 | // Incoporate the retaddr area. |
| 779 | Offset = StackAdj-MaxTCDelta; |
| 780 | assert(Offset >= 0 && "Offset should never be negative"); |
| 781 | |
| 782 | if (Offset) { |
| 783 | // Check for possible merge with preceeding ADD instruction. |
| 784 | Offset += mergeSPUpdates(MBB, MBBI, StackPtr, true); |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 785 | emitSPUpdate(MBB, MBBI, StackPtr, Offset, Is64Bit, TII, *RegInfo); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | // Jump to label or value in register. |
| 789 | if (RetOpcode == X86::TCRETURNdi || RetOpcode == X86::TCRETURNdi64) { |
Evan Cheng | 3d2125c | 2010-11-30 23:55:39 +0000 | [diff] [blame] | 790 | MachineInstrBuilder MIB = |
| 791 | BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNdi) |
| 792 | ? X86::TAILJMPd : X86::TAILJMPd64)); |
| 793 | if (JumpTarget.isGlobal()) |
| 794 | MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), |
| 795 | JumpTarget.getTargetFlags()); |
| 796 | else { |
| 797 | assert(JumpTarget.isSymbol()); |
| 798 | MIB.addExternalSymbol(JumpTarget.getSymbolName(), |
| 799 | JumpTarget.getTargetFlags()); |
| 800 | } |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 801 | } else if (RetOpcode == X86::TCRETURNmi || RetOpcode == X86::TCRETURNmi64) { |
| 802 | MachineInstrBuilder MIB = |
| 803 | BuildMI(MBB, MBBI, DL, TII.get((RetOpcode == X86::TCRETURNmi) |
| 804 | ? X86::TAILJMPm : X86::TAILJMPm64)); |
| 805 | for (unsigned i = 0; i != 5; ++i) |
| 806 | MIB.addOperand(MBBI->getOperand(i)); |
| 807 | } else if (RetOpcode == X86::TCRETURNri64) { |
| 808 | BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr64)). |
| 809 | addReg(JumpTarget.getReg(), RegState::Kill); |
| 810 | } else { |
| 811 | BuildMI(MBB, MBBI, DL, TII.get(X86::TAILJMPr)). |
| 812 | addReg(JumpTarget.getReg(), RegState::Kill); |
| 813 | } |
| 814 | |
| 815 | MachineInstr *NewMI = prior(MBBI); |
| 816 | for (unsigned i = 2, e = MBBI->getNumOperands(); i != e; ++i) |
| 817 | NewMI->addOperand(MBBI->getOperand(i)); |
| 818 | |
| 819 | // Delete the pseudo instruction TCRETURN. |
| 820 | MBB.erase(MBBI); |
| 821 | } else if ((RetOpcode == X86::RET || RetOpcode == X86::RETI) && |
| 822 | (X86FI->getTCReturnAddrDelta() < 0)) { |
| 823 | // Add the return addr area delta back since we are not tail calling. |
| 824 | int delta = -1*X86FI->getTCReturnAddrDelta(); |
Jakob Stoklund Olesen | 4f28c1c | 2011-01-13 21:28:52 +0000 | [diff] [blame] | 825 | MBBI = MBB.getLastNonDebugInstr(); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 826 | |
| 827 | // Check for possible merge with preceeding ADD instruction. |
| 828 | delta += mergeSPUpdates(MBB, MBBI, StackPtr, true); |
Evan Cheng | 7158e08 | 2011-01-03 22:53:22 +0000 | [diff] [blame] | 829 | emitSPUpdate(MBB, MBBI, StackPtr, delta, Is64Bit, TII, *RegInfo); |
Anton Korobeynikov | 3346491 | 2010-11-15 00:06:54 +0000 | [diff] [blame] | 830 | } |
| 831 | } |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 832 | |
| 833 | void |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 834 | X86FrameLowering::getInitialFrameState(std::vector<MachineMove> &Moves) const { |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 835 | // Calculate amount of bytes used for return address storing |
| 836 | int stackGrowth = (STI.is64Bit() ? -8 : -4); |
| 837 | const X86RegisterInfo *RI = TM.getRegisterInfo(); |
| 838 | |
| 839 | // Initial state of the frame pointer is esp+stackGrowth. |
| 840 | MachineLocation Dst(MachineLocation::VirtualFP); |
| 841 | MachineLocation Src(RI->getStackRegister(), stackGrowth); |
| 842 | Moves.push_back(MachineMove(0, Dst, Src)); |
| 843 | |
| 844 | // Add return address to move list |
| 845 | MachineLocation CSDst(RI->getStackRegister(), stackGrowth); |
| 846 | MachineLocation CSSrc(RI->getRARegister()); |
| 847 | Moves.push_back(MachineMove(0, CSDst, CSSrc)); |
| 848 | } |
Anton Korobeynikov | 82f5874 | 2010-11-20 15:59:32 +0000 | [diff] [blame] | 849 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 850 | int X86FrameLowering::getFrameIndexOffset(const MachineFunction &MF, int FI) const { |
Anton Korobeynikov | 82f5874 | 2010-11-20 15:59:32 +0000 | [diff] [blame] | 851 | const X86RegisterInfo *RI = |
| 852 | static_cast<const X86RegisterInfo*>(MF.getTarget().getRegisterInfo()); |
| 853 | const MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 854 | int Offset = MFI->getObjectOffset(FI) - getOffsetOfLocalArea(); |
| 855 | uint64_t StackSize = MFI->getStackSize(); |
| 856 | |
| 857 | if (RI->needsStackRealignment(MF)) { |
| 858 | if (FI < 0) { |
| 859 | // Skip the saved EBP. |
| 860 | Offset += RI->getSlotSize(); |
| 861 | } else { |
| 862 | unsigned Align = MFI->getObjectAlignment(FI); |
| 863 | assert((-(Offset + StackSize)) % Align == 0); |
| 864 | Align = 0; |
| 865 | return Offset + StackSize; |
| 866 | } |
| 867 | // FIXME: Support tail calls |
| 868 | } else { |
| 869 | if (!hasFP(MF)) |
| 870 | return Offset + StackSize; |
| 871 | |
| 872 | // Skip the saved EBP. |
| 873 | Offset += RI->getSlotSize(); |
| 874 | |
| 875 | // Skip the RETADDR move area |
| 876 | const X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>(); |
| 877 | int TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta(); |
| 878 | if (TailCallReturnAddrDelta < 0) |
| 879 | Offset -= TailCallReturnAddrDelta; |
| 880 | } |
| 881 | |
| 882 | return Offset; |
| 883 | } |
Anton Korobeynikov | cd775ce | 2010-11-27 23:05:03 +0000 | [diff] [blame] | 884 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 885 | bool X86FrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB, |
Anton Korobeynikov | cd775ce | 2010-11-27 23:05:03 +0000 | [diff] [blame] | 886 | MachineBasicBlock::iterator MI, |
| 887 | const std::vector<CalleeSavedInfo> &CSI, |
| 888 | const TargetRegisterInfo *TRI) const { |
| 889 | if (CSI.empty()) |
| 890 | return false; |
| 891 | |
| 892 | DebugLoc DL = MBB.findDebugLoc(MI); |
| 893 | |
| 894 | MachineFunction &MF = *MBB.getParent(); |
| 895 | |
| 896 | bool isWin64 = STI.isTargetWin64(); |
| 897 | unsigned SlotSize = STI.is64Bit() ? 8 : 4; |
| 898 | unsigned FPReg = TRI->getFrameRegister(MF); |
| 899 | unsigned CalleeFrameSize = 0; |
| 900 | |
| 901 | const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); |
| 902 | X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>(); |
| 903 | |
| 904 | unsigned Opc = STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r; |
| 905 | for (unsigned i = CSI.size(); i != 0; --i) { |
| 906 | unsigned Reg = CSI[i-1].getReg(); |
| 907 | // Add the callee-saved register as live-in. It's killed at the spill. |
| 908 | MBB.addLiveIn(Reg); |
| 909 | if (Reg == FPReg) |
| 910 | // X86RegisterInfo::emitPrologue will handle spilling of frame register. |
| 911 | continue; |
| 912 | if (!X86::VR128RegClass.contains(Reg) && !isWin64) { |
| 913 | CalleeFrameSize += SlotSize; |
| 914 | BuildMI(MBB, MI, DL, TII.get(Opc)).addReg(Reg, RegState::Kill); |
| 915 | } else { |
| 916 | const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg); |
| 917 | TII.storeRegToStackSlot(MBB, MI, Reg, true, CSI[i-1].getFrameIdx(), |
| 918 | RC, TRI); |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | X86FI->setCalleeSavedFrameSize(CalleeFrameSize); |
| 923 | return true; |
| 924 | } |
| 925 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 926 | bool X86FrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB, |
Anton Korobeynikov | cd775ce | 2010-11-27 23:05:03 +0000 | [diff] [blame] | 927 | MachineBasicBlock::iterator MI, |
| 928 | const std::vector<CalleeSavedInfo> &CSI, |
| 929 | const TargetRegisterInfo *TRI) const { |
| 930 | if (CSI.empty()) |
| 931 | return false; |
| 932 | |
| 933 | DebugLoc DL = MBB.findDebugLoc(MI); |
| 934 | |
| 935 | MachineFunction &MF = *MBB.getParent(); |
| 936 | const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); |
| 937 | unsigned FPReg = TRI->getFrameRegister(MF); |
| 938 | bool isWin64 = STI.isTargetWin64(); |
| 939 | unsigned Opc = STI.is64Bit() ? X86::POP64r : X86::POP32r; |
| 940 | for (unsigned i = 0, e = CSI.size(); i != e; ++i) { |
| 941 | unsigned Reg = CSI[i].getReg(); |
| 942 | if (Reg == FPReg) |
| 943 | // X86RegisterInfo::emitEpilogue will handle restoring of frame register. |
| 944 | continue; |
| 945 | if (!X86::VR128RegClass.contains(Reg) && !isWin64) { |
| 946 | BuildMI(MBB, MI, DL, TII.get(Opc), Reg); |
| 947 | } else { |
| 948 | const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg); |
| 949 | TII.loadRegFromStackSlot(MBB, MI, Reg, CSI[i].getFrameIdx(), |
| 950 | RC, TRI); |
| 951 | } |
| 952 | } |
| 953 | return true; |
| 954 | } |
Anton Korobeynikov | 94c5ae0 | 2010-11-27 23:05:25 +0000 | [diff] [blame] | 955 | |
| 956 | void |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 957 | X86FrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF, |
Anton Korobeynikov | 94c5ae0 | 2010-11-27 23:05:25 +0000 | [diff] [blame] | 958 | RegScavenger *RS) const { |
| 959 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 960 | const X86RegisterInfo *RegInfo = TM.getRegisterInfo(); |
| 961 | unsigned SlotSize = RegInfo->getSlotSize(); |
| 962 | |
| 963 | X86MachineFunctionInfo *X86FI = MF.getInfo<X86MachineFunctionInfo>(); |
| 964 | int32_t TailCallReturnAddrDelta = X86FI->getTCReturnAddrDelta(); |
| 965 | |
| 966 | if (TailCallReturnAddrDelta < 0) { |
| 967 | // create RETURNADDR area |
| 968 | // arg |
| 969 | // arg |
| 970 | // RETADDR |
| 971 | // { ... |
| 972 | // RETADDR area |
| 973 | // ... |
| 974 | // } |
| 975 | // [EBP] |
| 976 | MFI->CreateFixedObject(-TailCallReturnAddrDelta, |
| 977 | (-1U*SlotSize)+TailCallReturnAddrDelta, true); |
| 978 | } |
| 979 | |
| 980 | if (hasFP(MF)) { |
| 981 | assert((TailCallReturnAddrDelta <= 0) && |
| 982 | "The Delta should always be zero or negative"); |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 983 | const TargetFrameLowering &TFI = *MF.getTarget().getFrameLowering(); |
Anton Korobeynikov | 94c5ae0 | 2010-11-27 23:05:25 +0000 | [diff] [blame] | 984 | |
| 985 | // Create a frame entry for the EBP register that must be saved. |
| 986 | int FrameIdx = MFI->CreateFixedObject(SlotSize, |
| 987 | -(int)SlotSize + |
| 988 | TFI.getOffsetOfLocalArea() + |
| 989 | TailCallReturnAddrDelta, |
| 990 | true); |
| 991 | assert(FrameIdx == MFI->getObjectIndexBegin() && |
| 992 | "Slot for EBP register must be last in order to be found!"); |
| 993 | FrameIdx = 0; |
| 994 | } |
| 995 | } |