2010-09-18 18:52:28 +00:00
|
|
|
//===- PTXRegisterInfo.h - PTX Register Information Impl --------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the PTX implementation of the MRegisterInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef PTX_REGISTER_INFO_H
|
|
|
|
#define PTX_REGISTER_INFO_H
|
|
|
|
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/ADT/BitVector.h"
|
|
|
|
|
|
|
|
#include "PTXGenRegisterInfo.h.inc"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class PTXTargetMachine;
|
|
|
|
class MachineFunction;
|
|
|
|
|
|
|
|
struct PTXRegisterInfo : public PTXGenRegisterInfo {
|
|
|
|
PTXRegisterInfo(PTXTargetMachine &TM,
|
|
|
|
const TargetInstrInfo &TII) {}
|
|
|
|
|
|
|
|
virtual const unsigned
|
|
|
|
*getCalleeSavedRegs(const MachineFunction *MF = 0) const {
|
|
|
|
static const unsigned CalleeSavedRegs[] = { 0 };
|
|
|
|
return CalleeSavedRegs; // save nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual BitVector getReservedRegs(const MachineFunction &MF) const {
|
|
|
|
BitVector Reserved(getNumRegs());
|
|
|
|
return Reserved; // reserve no regs
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool hasFP(const MachineFunction &MF) const { return false; }
|
|
|
|
|
|
|
|
virtual void eliminateFrameIndex(MachineBasicBlock::iterator MI,
|
|
|
|
int SPAdj,
|
2010-10-19 13:14:40 +00:00
|
|
|
RegScavenger *RS = NULL) const {
|
|
|
|
llvm_unreachable("PTX does not support general function call");
|
|
|
|
}
|
2010-09-18 18:52:28 +00:00
|
|
|
|
|
|
|
virtual void emitPrologue(MachineFunction &MF) const {}
|
|
|
|
virtual void emitEpilogue(MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB) const {}
|
|
|
|
|
|
|
|
virtual unsigned getFrameRegister(const MachineFunction &MF) const {
|
|
|
|
llvm_unreachable("PTX does not have a frame register");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual unsigned getRARegister() const {
|
|
|
|
llvm_unreachable("PTX does not have a return address register");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual int getDwarfRegNum(unsigned RegNum, bool isEH) const {
|
|
|
|
return PTXGenRegisterInfo::getDwarfRegNumFull(RegNum, 0);
|
|
|
|
}
|
|
|
|
}; // struct PTXRegisterInfo
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif // PTX_REGISTER_INFO_H
|