Remove bunch of gcc 4.3-related warnings from Target
[oota-llvm.git] / lib / Target / IA64 / IA64RegisterInfo.h
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.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef IA64REGISTERINFO_H
15 #define IA64REGISTERINFO_H
16
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "IA64GenRegisterInfo.h.inc"
19
20 namespace llvm {
21
22 class TargetInstrInfo;
23
24 struct IA64RegisterInfo : public IA64GenRegisterInfo {
25   const TargetInstrInfo &TII;
26
27   IA64RegisterInfo(const TargetInstrInfo &tii);
28
29   /// Code Generation virtual methods...
30   void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
31                      unsigned DestReg, const MachineInstr *Orig) const;
32
33   const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
34
35   const TargetRegisterClass* const* getCalleeSavedRegClasses(
36                                      const MachineFunction *MF = 0) const;
37
38   BitVector getReservedRegs(const MachineFunction &MF) const;
39
40   bool hasFP(const MachineFunction &MF) const;
41
42   void eliminateCallFramePseudoInstr(MachineFunction &MF,
43                                      MachineBasicBlock &MBB,
44                                      MachineBasicBlock::iterator MI) const;
45
46   void eliminateFrameIndex(MachineBasicBlock::iterator MI,
47                            int SPAdj, RegScavenger *RS = NULL) const;
48
49   void emitPrologue(MachineFunction &MF) const;
50   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
51
52   // Debug information queries.
53   unsigned getRARegister() const;
54   unsigned getFrameRegister(MachineFunction &MF) const;
55
56   // Exception handling queries.
57   unsigned getEHExceptionRegister() const;
58   unsigned getEHHandlerRegister() const;
59
60   int getDwarfRegNum(unsigned RegNum, bool isEH) const;
61 };
62
63 } // End llvm namespace
64
65 #endif
66