2011-01-10 20:39:04 +08:00
|
|
|
//===-- Thumb1FrameLowering.h - Thumb1-specific frame info stuff --*- C++ -*-=//
|
2010-11-15 08:06:54 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_ARM_THUMB1FRAMELOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_THUMB1FRAMELOWERING_H
|
2010-11-15 08:06:54 +08:00
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
#include "ARMFrameLowering.h"
|
2010-11-15 08:06:54 +08:00
|
|
|
#include "Thumb1InstrInfo.h"
|
|
|
|
#include "Thumb1RegisterInfo.h"
|
2011-01-10 20:39:04 +08:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2010-11-15 08:06:54 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
class Thumb1FrameLowering : public ARMFrameLowering {
|
2010-11-15 08:06:54 +08:00
|
|
|
public:
|
2014-06-27 03:29:59 +08:00
|
|
|
explicit Thumb1FrameLowering(const ARMSubtarget &sti);
|
2010-11-15 08:06:54 +08:00
|
|
|
|
|
|
|
/// emitProlog/emitEpilog - These methods insert prolog and epilog code into
|
|
|
|
/// the function.
|
2014-03-10 10:09:33 +08:00
|
|
|
void emitPrologue(MachineFunction &MF) const override;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
2010-11-19 05:19:35 +08:00
|
|
|
|
2010-11-28 07:05:03 +08:00
|
|
|
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
2014-03-10 10:09:33 +08:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2010-11-28 07:05:03 +08:00
|
|
|
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
|
2014-03-10 10:09:33 +08:00
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2010-11-28 07:05:03 +08:00
|
|
|
|
2014-03-10 10:09:33 +08:00
|
|
|
bool hasReservedCallFrame(const MachineFunction &MF) const override;
|
2013-02-22 04:05:00 +08:00
|
|
|
|
2014-03-10 10:09:33 +08:00
|
|
|
void
|
|
|
|
eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI) const override;
|
2010-11-15 08:06:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|