2012-02-18 12:03:15 +00:00
|
|
|
//===-- X86TargetFrameLowering.h - Define frame lowering for X86 -*- C++ -*-==//
|
2010-11-15 00:06:54 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-01-10 12:39:04 +00:00
|
|
|
// This class implements X86-specific bits of TargetFrameLowering class.
|
2010-11-15 00:06:54 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-01-10 12:39:04 +00:00
|
|
|
#ifndef X86_FRAMELOWERING_H
|
|
|
|
#define X86_FRAMELOWERING_H
|
2010-11-15 00:06:54 +00:00
|
|
|
|
2011-01-10 12:39:04 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2010-11-15 00:06:54 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2013-04-19 00:05:59 +00:00
|
|
|
|
|
|
|
class MCSymbol;
|
|
|
|
class X86TargetMachine;
|
2010-11-15 00:06:54 +00:00
|
|
|
|
2011-01-10 12:39:04 +00:00
|
|
|
class X86FrameLowering : public TargetFrameLowering {
|
2010-11-15 00:06:54 +00:00
|
|
|
public:
|
2014-06-05 22:10:58 +00:00
|
|
|
explicit X86FrameLowering(StackDirection D, unsigned StackAl, int LAO)
|
|
|
|
: TargetFrameLowering(StackGrowsDown, StackAl, LAO) {}
|
2010-11-15 00:06:54 +00:00
|
|
|
|
2014-03-07 06:08:31 +00:00
|
|
|
void emitCalleeSavedFrameMoves(MachineBasicBlock &MBB,
|
2014-06-25 12:41:52 +00:00
|
|
|
MachineBasicBlock::iterator MBBI,
|
|
|
|
DebugLoc DL) const;
|
2010-11-15 00:06:54 +00:00
|
|
|
|
|
|
|
/// emitProlog/emitEpilog - These methods insert prolog and epilog code into
|
|
|
|
/// the function.
|
2014-03-09 07:44:38 +00:00
|
|
|
void emitPrologue(MachineFunction &MF) const override;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
2010-11-18 21:19:35 +00:00
|
|
|
|
2014-03-09 07:44:38 +00:00
|
|
|
void adjustForSegmentedStacks(MachineFunction &MF) const override;
|
2011-08-30 19:39:58 +00:00
|
|
|
|
2014-03-09 07:44:38 +00:00
|
|
|
void adjustForHiPEPrologue(MachineFunction &MF) const override;
|
2013-02-18 20:55:12 +00:00
|
|
|
|
2010-11-27 23:05:25 +00:00
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
2014-04-28 04:05:08 +00:00
|
|
|
RegScavenger *RS = nullptr) const override;
|
2010-11-27 23:05:25 +00:00
|
|
|
|
2014-06-25 12:41:52 +00:00
|
|
|
bool
|
|
|
|
assignCalleeSavedSpillSlots(MachineFunction &MF,
|
|
|
|
const TargetRegisterInfo *TRI,
|
|
|
|
std::vector<CalleeSavedInfo> &CSI) const override;
|
|
|
|
|
2010-11-27 23:05:03 +00:00
|
|
|
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
2014-03-09 07:44:38 +00:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2010-11-27 23:05:03 +00:00
|
|
|
|
2010-11-27 23:05:25 +00:00
|
|
|
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
|
2014-03-09 07:44:38 +00:00
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2010-11-27 23:05:03 +00:00
|
|
|
|
2014-03-09 07:44:38 +00:00
|
|
|
bool hasFP(const MachineFunction &MF) const override;
|
|
|
|
bool hasReservedCallFrame(const MachineFunction &MF) const override;
|
2010-11-18 21:19:35 +00:00
|
|
|
|
2014-03-09 07:44:38 +00:00
|
|
|
int getFrameIndexOffset(const MachineFunction &MF, int FI) const override;
|
2012-05-01 15:16:06 +00:00
|
|
|
int getFrameIndexReference(const MachineFunction &MF, int FI,
|
2014-03-09 07:44:38 +00:00
|
|
|
unsigned &FrameReg) const override;
|
2013-02-21 20:05:00 +00:00
|
|
|
|
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
2014-03-09 07:44:38 +00:00
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI) const override;
|
2010-11-15 00:06:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|