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