2012-02-18 20:03:15 +08:00
|
|
|
//===-- XCoreFrameLowering.h - Frame info for XCore Target ------*- C++ -*-===//
|
2008-11-07 18:59:00 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains XCore frame information that doesn't fit anywhere else
|
|
|
|
// cleanly...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef XCOREFRAMEINFO_H
|
|
|
|
#define XCOREFRAMEINFO_H
|
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2008-11-07 18:59:00 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2010-11-15 08:06:54 +08:00
|
|
|
class XCoreSubtarget;
|
2008-11-07 18:59:00 +08:00
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
class XCoreFrameLowering: public TargetFrameLowering {
|
2008-11-07 18:59:00 +08:00
|
|
|
public:
|
2011-01-10 20:39:04 +08:00
|
|
|
XCoreFrameLowering(const XCoreSubtarget &STI);
|
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;
|
2008-11-07 18:59:00 +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;
|
|
|
|
|
2013-02-22 04:05:00 +08:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const;
|
|
|
|
|
2010-11-19 05:19:35 +08:00
|
|
|
bool hasFP(const MachineFunction &MF) const;
|
|
|
|
|
2010-11-28 07:05:25 +08:00
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
|
|
|
RegScavenger *RS = NULL) const;
|
|
|
|
|
2013-12-02 19:05:28 +08:00
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF,
|
|
|
|
RegScavenger *RS = NULL) const;
|
|
|
|
|
2008-11-07 18:59:00 +08:00
|
|
|
//! Stack slot size (4 bytes)
|
|
|
|
static int stackSlotSize() {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // XCOREFRAMEINFO_H
|