2005-02-05 03:24:26 +01:00
|
|
|
//===- AlphaRegisterInfo.h - Alpha Register Information Impl ----*- C++ -*-===//
|
2005-04-22 01:13:11 +02:00
|
|
|
//
|
2005-01-23 00:41:55 +01:00
|
|
|
// 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.
|
2005-04-22 01:13:11 +02:00
|
|
|
//
|
2005-01-23 00:41:55 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-02-10 19:45:23 +01:00
|
|
|
// This file contains the Alpha implementation of the TargetRegisterInfo class.
|
2005-01-23 00:41:55 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ALPHAREGISTERINFO_H
|
|
|
|
#define ALPHAREGISTERINFO_H
|
|
|
|
|
2008-02-10 19:45:23 +01:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2005-01-23 00:41:55 +01:00
|
|
|
#include "AlphaGenRegisterInfo.h.inc"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2006-11-28 00:37:22 +01:00
|
|
|
class TargetInstrInfo;
|
2005-01-23 00:41:55 +01:00
|
|
|
class Type;
|
|
|
|
|
|
|
|
struct AlphaRegisterInfo : public AlphaGenRegisterInfo {
|
2006-11-14 00:36:35 +01:00
|
|
|
const TargetInstrInfo &TII;
|
|
|
|
|
|
|
|
AlphaRegisterInfo(const TargetInstrInfo &tii);
|
2005-01-23 00:41:55 +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-02-19 22:49:54 +01:00
|
|
|
BitVector getReservedRegs(const MachineFunction &MF) const;
|
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const;
|
|
|
|
|
2010-08-27 01:32:16 +02:00
|
|
|
void eliminateFrameIndex(MachineBasicBlock::iterator II,
|
|
|
|
int SPAdj, RegScavenger *RS = NULL) const;
|
2005-01-23 00:41:55 +01:00
|
|
|
|
2006-04-07 18:34:46 +02:00
|
|
|
// Debug information queries.
|
|
|
|
unsigned getRARegister() const;
|
2009-11-12 22:00:03 +01:00
|
|
|
unsigned getFrameRegister(const MachineFunction &MF) const;
|
2006-03-23 19:12:57 +01:00
|
|
|
|
2007-02-21 23:54:50 +01:00
|
|
|
// Exception handling queries.
|
|
|
|
unsigned getEHExceptionRegister() const;
|
|
|
|
unsigned getEHHandlerRegister() const;
|
|
|
|
|
2007-11-13 20:13:01 +01:00
|
|
|
int getDwarfRegNum(unsigned RegNum, bool isEH) const;
|
2007-11-11 20:50:10 +01:00
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
static std::string getPrettyName(unsigned reg);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|