diff options
Diffstat (limited to 'llvm/lib/Target/X86/X86FrameLowering.h')
-rw-r--r-- | llvm/lib/Target/X86/X86FrameLowering.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/Target/X86/X86FrameLowering.h b/llvm/lib/Target/X86/X86FrameLowering.h index 35bafb532b4..6975d250296 100644 --- a/llvm/lib/Target/X86/X86FrameLowering.h +++ b/llvm/lib/Target/X86/X86FrameLowering.h @@ -129,6 +129,13 @@ public: void BuildCFI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc DL, MCCFIInstruction CFIInst) const; + /// Sets up EBP and optionally ESI based on the incoming EBP value. Only + /// needed for 32-bit. Used in funclet prologues and at catchret destinations. + MachineBasicBlock::iterator + restoreWin32EHStackPointers(MachineBasicBlock &MBB, + MachineBasicBlock::iterator MBBI, DebugLoc DL, + bool RestoreSP = false) const; + private: uint64_t calculateMaxStackAlign(const MachineFunction &MF) const; @@ -148,13 +155,6 @@ private: DebugLoc DL, int64_t Offset, bool InEpilogue) const; - /// Sets up EBP and optionally ESI based on the incoming EBP value. Only - /// needed for 32-bit. Used in funclet prologues and at catchret destinations. - MachineBasicBlock::iterator - restoreWin32EHStackPointers(MachineBasicBlock &MBB, - MachineBasicBlock::iterator MBBI, DebugLoc DL, - bool RestoreSP = false) const; - unsigned getWinEHFuncletFrameSize(const MachineFunction &MF) const; }; |