Make the MachineFunction argument of getFrameRegister const.
[oota-llvm.git] / lib / Target / Alpha / AlphaRegisterInfo.h
1 //===- AlphaRegisterInfo.h - Alpha 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 Alpha implementation of the TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ALPHAREGISTERINFO_H
15 #define ALPHAREGISTERINFO_H
16
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "AlphaGenRegisterInfo.h.inc"
19
20 namespace llvm {
21
22 class TargetInstrInfo;
23 class Type;
24
25 struct AlphaRegisterInfo : public AlphaGenRegisterInfo {
26   const TargetInstrInfo &TII;
27
28   AlphaRegisterInfo(const TargetInstrInfo &tii);
29
30   /// Code Generation virtual methods...
31   const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
32
33   const TargetRegisterClass* const* getCalleeSavedRegClasses(
34                                      const MachineFunction *MF = 0) const;
35
36   BitVector getReservedRegs(const MachineFunction &MF) const;
37
38   bool hasFP(const MachineFunction &MF) const;
39
40   void eliminateCallFramePseudoInstr(MachineFunction &MF,
41                                      MachineBasicBlock &MBB,
42                                      MachineBasicBlock::iterator I) const;
43
44   unsigned eliminateFrameIndex(MachineBasicBlock::iterator II,
45                                int SPAdj, int *Value = NULL,
46                                RegScavenger *RS = NULL) const;
47
48   //void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
49
50   void emitPrologue(MachineFunction &MF) const;
51   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
52
53   // Debug information queries.
54   unsigned getRARegister() const;
55   unsigned getFrameRegister(const MachineFunction &MF) const;
56
57   // Exception handling queries.
58   unsigned getEHExceptionRegister() const;
59   unsigned getEHHandlerRegister() const;
60
61   int getDwarfRegNum(unsigned RegNum, bool isEH) const;
62
63   static std::string getPrettyName(unsigned reg);
64   
65 private:
66   mutable int curgpdist;
67 };
68
69 } // end namespace llvm
70
71 #endif