2012-07-31 22:50:19 +00:00
|
|
|
//===-- MipsSEFrameLowering.h - Mips32/64 frame lowering --------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MIPSSE_FRAMEINFO_H
|
|
|
|
#define MIPSSE_FRAMEINFO_H
|
|
|
|
|
|
|
|
#include "MipsFrameLowering.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MipsSEFrameLowering : public MipsFrameLowering {
|
|
|
|
public:
|
2014-07-02 23:29:55 +00:00
|
|
|
explicit MipsSEFrameLowering(const MipsSubtarget &STI);
|
2012-07-31 22:50:19 +00:00
|
|
|
|
|
|
|
/// emitProlog/emitEpilog - These methods insert prolog and epilog code into
|
|
|
|
/// the function.
|
2014-04-29 07:58:02 +00:00
|
|
|
void emitPrologue(MachineFunction &MF) const override;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
2012-07-31 22:50:19 +00:00
|
|
|
|
2013-02-21 20:05:00 +00:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
2014-04-29 07:58:02 +00:00
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const override;
|
2013-02-21 20:05:00 +00:00
|
|
|
|
2012-07-31 22:50:19 +00:00
|
|
|
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
2014-04-29 07:58:02 +00:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2012-07-31 22:50:19 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool hasReservedCallFrame(const MachineFunction &MF) const override;
|
2012-07-31 22:50:19 +00:00
|
|
|
|
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
2014-04-29 07:58:02 +00:00
|
|
|
RegScavenger *RS) const override;
|
2013-01-30 00:26:49 +00:00
|
|
|
unsigned ehDataReg(unsigned I) const;
|
2012-07-31 22:50:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|