2006-08-16 22:43:33 +08:00
|
|
|
//===-- ARMTargetFrameInfo.h - Define TargetFrameInfo for ARM ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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"
|
2009-07-09 14:49:09 +08:00
|
|
|
#include "llvm/Target/TargetFrameInfo.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
|
|
|
|
2007-01-19 15:51:42 +08:00
|
|
|
class ARMFrameInfo : public TargetFrameInfo {
|
2010-11-15 08:06:54 +08:00
|
|
|
protected:
|
|
|
|
const ARMSubtarget &STI;
|
|
|
|
|
2006-08-16 22:43:33 +08:00
|
|
|
public:
|
2010-11-15 08:06:54 +08:00
|
|
|
explicit ARMFrameInfo(const ARMSubtarget &sti)
|
|
|
|
: TargetFrameInfo(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,
|
|
|
|
bool(*Func)(unsigned, bool)) 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
|