Hanle i8 returns
[llvm/msp430.git] / lib / Target / IA64 / IA64RegisterInfo.h
blob0c5083e75c25c086f2757808d7bdcd7e02b99803
1 //===- IA64RegisterInfo.h - IA64 Register Information Impl ------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the IA64 implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef IA64REGISTERINFO_H
15 #define IA64REGISTERINFO_H
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "IA64GenRegisterInfo.h.inc"
20 namespace llvm {
22 class TargetInstrInfo;
24 struct IA64RegisterInfo : public IA64GenRegisterInfo {
25 const TargetInstrInfo &TII;
27 IA64RegisterInfo(const TargetInstrInfo &tii);
29 /// Code Generation virtual methods...
30 const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
32 const TargetRegisterClass* const* getCalleeSavedRegClasses(
33 const MachineFunction *MF = 0) const;
35 BitVector getReservedRegs(const MachineFunction &MF) const;
37 bool hasFP(const MachineFunction &MF) const;
39 void eliminateCallFramePseudoInstr(MachineFunction &MF,
40 MachineBasicBlock &MBB,
41 MachineBasicBlock::iterator MI) const;
43 void eliminateFrameIndex(MachineBasicBlock::iterator MI,
44 int SPAdj, RegScavenger *RS = NULL) const;
46 void emitPrologue(MachineFunction &MF) const;
47 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
49 // Debug information queries.
50 unsigned getRARegister() const;
51 unsigned getFrameRegister(MachineFunction &MF) const;
53 // Exception handling queries.
54 unsigned getEHExceptionRegister() const;
55 unsigned getEHHandlerRegister() const;
57 int getDwarfRegNum(unsigned RegNum, bool isEH) const;
60 } // End llvm namespace
62 #endif