1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/lib/Target/XCore/XCoreFrameLowering.h

63 lines
2.3 KiB
C
Raw Normal View History

//===-- XCoreFrameLowering.h - Frame info for XCore Target ------*- C++ -*-===//
2008-11-07 11:59:00 +01: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 LLVM_LIB_TARGET_XCORE_XCOREFRAMELOWERING_H
#define LLVM_LIB_TARGET_XCORE_XCOREFRAMELOWERING_H
2008-11-07 11:59:00 +01:00
#include "llvm/Target/TargetFrameLowering.h"
2008-11-07 11:59:00 +01:00
#include "llvm/Target/TargetMachine.h"
namespace llvm {
class XCoreSubtarget;
2008-11-07 11:59:00 +01:00
class XCoreFrameLowering: public TargetFrameLowering {
2008-11-07 11:59:00 +01:00
public:
XCoreFrameLowering(const XCoreSubtarget &STI);
/// emitProlog/emitEpilog - These methods insert prolog and epilog code into
/// the function.
void emitPrologue(MachineFunction &MF) const override;
void emitEpilogue(MachineFunction &MF,
MachineBasicBlock &MBB) const override;
2008-11-07 11:59:00 +01:00
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MI,
const std::vector<CalleeSavedInfo> &CSI,
const TargetRegisterInfo *TRI) const override;
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MI,
const std::vector<CalleeSavedInfo> &CSI,
const TargetRegisterInfo *TRI) const override;
void eliminateCallFramePseudoInstr(MachineFunction &MF,
MachineBasicBlock &MBB,
MachineBasicBlock::iterator I) const override;
bool hasFP(const MachineFunction &MF) const override;
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
RegScavenger *RS = nullptr) const override;
void processFunctionBeforeFrameFinalized(MachineFunction &MF,
RegScavenger *RS = nullptr) const override;
2008-11-07 11:59:00 +01:00
//! Stack slot size (4 bytes)
static int stackSlotSize() {
return 4;
}
};
}
#endif