2011-01-10 20:39:04 +08:00
|
|
|
//==-- ARMTargetFrameLowering.h - Define frame lowering for ARM --*- C++ -*-==//
|
2006-08-16 22:43:33 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
2006-08-16 22:43:33 +08:00
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ARM_FRAMEINFO_H
|
|
|
|
#define ARM_FRAMEINFO_H
|
|
|
|
|
|
|
|
#include "ARM.h"
|
2007-01-19 15:51:42 +08:00
|
|
|
#include "ARMSubtarget.h"
|
2011-01-10 20:39:04 +08:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2006-08-16 22:43:33 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2010-11-15 08:06:54 +08:00
|
|
|
class ARMSubtarget;
|
2006-08-16 22:43:33 +08:00
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
class ARMFrameLowering : public TargetFrameLowering {
|
2010-11-15 08:06:54 +08:00
|
|
|
protected:
|
|
|
|
const ARMSubtarget &STI;
|
|
|
|
|
2006-08-16 22:43:33 +08:00
|
|
|
public:
|
2011-01-10 20:39:04 +08:00
|
|
|
explicit ARMFrameLowering(const ARMSubtarget &sti)
|
|
|
|
: TargetFrameLowering(StackGrowsDown, sti.getStackAlignment(), 0, 4),
|
|
|
|
STI(sti) {
|
2006-08-16 22:43:33 +08:00
|
|
|
}
|
2010-11-15 08:06:54 +08:00
|
|
|
|
|
|
|
/// emitProlog/emitEpilog - These methods insert prolog and epilog code into
|
|
|
|
/// the function.
|
|
|
|
void emitPrologue(MachineFunction &MF) const;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
|
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,
|
|
|
|
const TargetRegisterInfo *TRI) const;
|
|
|
|
|
|
|
|
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
|
|
|
const TargetRegisterInfo *TRI) const;
|
|
|
|
|
2010-11-19 05:19:35 +08:00
|
|
|
bool hasFP(const MachineFunction &MF) const;
|
|
|
|
bool hasReservedCallFrame(const MachineFunction &MF) const;
|
|
|
|
bool canSimplifyCallFramePseudos(const MachineFunction &MF) const;
|
2010-11-20 23:59:32 +08:00
|
|
|
int getFrameIndexReference(const MachineFunction &MF, int FI,
|
|
|
|
unsigned &FrameReg) const;
|
|
|
|
int ResolveFrameIndexReference(const MachineFunction &MF, int FI,
|
|
|
|
unsigned &FrameReg, int SPAdj) const;
|
|
|
|
int getFrameIndexOffset(const MachineFunction &MF, int FI) const;
|
|
|
|
|
2010-11-28 07:05:25 +08:00
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
|
|
|
RegScavenger *RS) const;
|
|
|
|
|
2010-11-28 07:05:03 +08:00
|
|
|
private:
|
|
|
|
void emitPushInst(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
|
2010-12-10 02:31:13 +08:00
|
|
|
const std::vector<CalleeSavedInfo> &CSI, unsigned StmOpc,
|
|
|
|
unsigned StrOpc, bool NoGap,
|
2011-03-06 02:43:32 +08:00
|
|
|
bool(*Func)(unsigned, bool),
|
|
|
|
unsigned MIFlags = 0) const;
|
2010-12-08 07:08:38 +08:00
|
|
|
void emitPopInst(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
|
2010-12-10 02:31:13 +08:00
|
|
|
const std::vector<CalleeSavedInfo> &CSI, unsigned LdmOpc,
|
|
|
|
unsigned LdrOpc, bool isVarArg, bool NoGap,
|
2010-12-08 07:08:38 +08:00
|
|
|
bool(*Func)(unsigned, bool)) const;
|
2006-08-16 22:43:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|