2006-02-05 06:50:24 +01:00
|
|
|
//===- SparcRegisterInfo.h - Sparc Register Information Impl ----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-02-05 06:50:24 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-02-10 19:45:23 +01:00
|
|
|
// This file contains the Sparc implementation of the TargetRegisterInfo class.
|
2006-02-05 06:50:24 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SPARCREGISTERINFO_H
|
|
|
|
#define SPARCREGISTERINFO_H
|
|
|
|
|
2008-02-10 19:45:23 +01:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2006-02-05 06:50:24 +01:00
|
|
|
#include "SparcGenRegisterInfo.h.inc"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class SparcSubtarget;
|
2006-11-28 00:37:22 +01:00
|
|
|
class TargetInstrInfo;
|
2006-02-05 06:50:24 +01:00
|
|
|
class Type;
|
|
|
|
|
|
|
|
struct SparcRegisterInfo : public SparcGenRegisterInfo {
|
|
|
|
SparcSubtarget &Subtarget;
|
2006-11-14 00:36:35 +01:00
|
|
|
const TargetInstrInfo &TII;
|
2006-02-05 06:50:24 +01:00
|
|
|
|
2006-11-14 00:36:35 +01:00
|
|
|
SparcRegisterInfo(SparcSubtarget &st, const TargetInstrInfo &tii);
|
2006-02-05 06:50:24 +01:00
|
|
|
|
2008-01-01 22:11:32 +01:00
|
|
|
/// Code Generation virtual methods...
|
2007-07-14 16:06:15 +02:00
|
|
|
const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
|
2006-05-18 02:12:58 +02:00
|
|
|
|
2007-07-14 16:06:15 +02:00
|
|
|
const TargetRegisterClass* const* getCalleeSavedRegClasses(
|
|
|
|
const MachineFunction *MF = 0) const;
|
2006-05-18 02:12:58 +02:00
|
|
|
|
2007-02-19 22:49:54 +01:00
|
|
|
BitVector getReservedRegs(const MachineFunction &MF) const;
|
|
|
|
|
2007-01-23 01:57:47 +01:00
|
|
|
bool hasFP(const MachineFunction &MF) const;
|
|
|
|
|
2006-02-05 06:50:24 +01:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const;
|
|
|
|
|
2009-10-07 19:12:56 +02:00
|
|
|
unsigned eliminateFrameIndex(MachineBasicBlock::iterator II,
|
|
|
|
int SPAdj, int *Value = NULL,
|
|
|
|
RegScavenger *RS = NULL) const;
|
2006-02-05 06:50:24 +01:00
|
|
|
|
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
|
|
|
|
|
|
|
|
void emitPrologue(MachineFunction &MF) const;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
|
2006-03-23 19:12:57 +01:00
|
|
|
|
2006-03-28 15:48:33 +02:00
|
|
|
// Debug information queries.
|
2006-04-07 18:34:46 +02:00
|
|
|
unsigned getRARegister() const;
|
2009-11-12 22:00:03 +01:00
|
|
|
unsigned getFrameRegister(const MachineFunction &MF) const;
|
2007-02-21 23:54:50 +01:00
|
|
|
|
|
|
|
// Exception handling queries.
|
|
|
|
unsigned getEHExceptionRegister() const;
|
|
|
|
unsigned getEHHandlerRegister() const;
|
2007-11-11 20:50:10 +01:00
|
|
|
|
2007-11-13 20:13:01 +01:00
|
|
|
int getDwarfRegNum(unsigned RegNum, bool isEH) const;
|
2006-02-05 06:50:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|