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