2004-07-16 09:11:15 +02:00
|
|
|
//===- SkeletonRegisterInfo.h - Skeleton Register Information Impl -*- C++ -*-==//
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-07-16 09:11:15 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-07-16 09:11:15 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the Skeleton implementation of the MRegisterInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SKELETON_REGISTERINFO_H
|
|
|
|
#define SKELETON_REGISTERINFO_H
|
|
|
|
|
|
|
|
#include "SkeletonGenRegisterInfo.h.inc"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class Type;
|
|
|
|
|
|
|
|
struct SkeletonRegisterInfo : public SkeletonGenRegisterInfo {
|
|
|
|
SkeletonRegisterInfo();
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-08-16 00:15:30 +02:00
|
|
|
void storeRegToStackSlot(MachineBasicBlock &MBB,
|
2004-07-16 09:11:15 +02:00
|
|
|
MachineBasicBlock::iterator MBBI,
|
2004-08-16 00:15:30 +02:00
|
|
|
unsigned SrcReg, int FrameIndex) const;
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-08-16 00:15:30 +02:00
|
|
|
void loadRegFromStackSlot(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MBBI,
|
|
|
|
unsigned DestReg, int FrameIndex) const;
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-08-16 00:15:30 +02:00
|
|
|
void copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
|
|
|
|
unsigned DestReg, unsigned SrcReg,
|
|
|
|
const TargetRegisterClass *RC) const;
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-07-16 09:11:15 +02:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const;
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-08-15 00:01:38 +02:00
|
|
|
void eliminateFrameIndex(MachineBasicBlock::iterator II) const;
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-07-16 09:11:15 +02:00
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
|
2005-04-22 01:30:14 +02:00
|
|
|
|
2004-07-16 09:11:15 +02:00
|
|
|
void emitPrologue(MachineFunction &MF) const;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
|
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|