2004-02-25 20:28:19 +01:00
|
|
|
//===- SparcV8RegisterInfo.h - SparcV8 Register Information Impl -*- C++ -*-==//
|
2005-04-22 01:30:14 +02:00
|
|
|
//
|
2004-02-25 20:28:19 +01: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-02-25 20:28:19 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the SparcV8 implementation of the MRegisterInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARCV8REGISTERINFO_H
|
|
|
|
#define SPARCV8REGISTERINFO_H
|
|
|
|
|
|
|
|
#include "llvm/Target/MRegisterInfo.h"
|
|
|
|
#include "SparcV8GenRegisterInfo.h.inc"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class Type;
|
|
|
|
|
|
|
|
struct SparcV8RegisterInfo : public SparcV8GenRegisterInfo {
|
|
|
|
SparcV8RegisterInfo();
|
|
|
|
const TargetRegisterClass* getRegClassForType(const Type* Ty) const;
|
|
|
|
|
|
|
|
/// Code Generation virtual methods...
|
2004-08-16 00:15:11 +02:00
|
|
|
void storeRegToStackSlot(MachineBasicBlock &MBB,
|
2004-02-25 20:28:19 +01:00
|
|
|
MachineBasicBlock::iterator MBBI,
|
2004-08-16 00:15:11 +02:00
|
|
|
unsigned SrcReg, int FrameIndex) const;
|
|
|
|
|
|
|
|
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:11 +02:00
|
|
|
void copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
|
|
|
|
unsigned DestReg, unsigned SrcReg,
|
|
|
|
const TargetRegisterClass *RC) const;
|
2004-02-25 20:28:19 +01:00
|
|
|
|
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const;
|
|
|
|
|
2004-08-15 00:57:22 +02:00
|
|
|
void eliminateFrameIndex(MachineBasicBlock::iterator II) const;
|
2004-02-25 20:28:19 +01:00
|
|
|
|
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
|
|
|
|
|
|
|
|
void emitPrologue(MachineFunction &MF) const;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|