Rename MRegisterInfo to TargetRegisterInfo.
[oota-llvm.git] / lib / Target / PowerPC / PPCRegisterInfo.h
1 //===- PPCRegisterInfo.h - PowerPC 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 PowerPC implementation of the TargetRegisterInfo
11 // class.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef POWERPC32_REGISTERINFO_H
16 #define POWERPC32_REGISTERINFO_H
17
18 #include "PPC.h"
19 #include "PPCGenRegisterInfo.h.inc"
20 #include <map>
21
22 namespace llvm {
23 class PPCSubtarget;
24 class TargetInstrInfo;
25 class Type;
26
27 class PPCRegisterInfo : public PPCGenRegisterInfo {
28   std::map<unsigned, unsigned> ImmToIdxMap;
29   const PPCSubtarget &Subtarget;
30   const TargetInstrInfo &TII;
31 public:
32   PPCRegisterInfo(const PPCSubtarget &SubTarget, const TargetInstrInfo &tii);
33   
34   /// getRegisterNumbering - Given the enum value for some register, e.g.
35   /// PPC::F14, return the number that it corresponds to (e.g. 14).
36   static unsigned getRegisterNumbering(unsigned RegEnum);
37
38   /// Code Generation virtual methods...
39   void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
40                      unsigned DestReg, const MachineInstr *Orig) const;
41
42   const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
43
44   const TargetRegisterClass* const*
45   getCalleeSavedRegClasses(const MachineFunction *MF = 0) const;
46
47   BitVector getReservedRegs(const MachineFunction &MF) const;
48
49   /// targetHandlesStackFrameRounding - Returns true if the target is
50   /// responsible for rounding up the stack frame (probably at emitPrologue
51   /// time).
52   bool targetHandlesStackFrameRounding() const { return true; }
53
54   bool hasFP(const MachineFunction &MF) const;
55
56   void eliminateCallFramePseudoInstr(MachineFunction &MF,
57                                      MachineBasicBlock &MBB,
58                                      MachineBasicBlock::iterator I) const;
59
60   void lowerDynamicAlloc(MachineBasicBlock::iterator II) const;
61   void eliminateFrameIndex(MachineBasicBlock::iterator II,
62                            int SPAdj, RegScavenger *RS = NULL) const;
63
64   /// determineFrameLayout - Determine the size of the frame and maximum call
65   /// frame size.
66   void determineFrameLayout(MachineFunction &MF) const;
67
68   void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
69                                             RegScavenger *RS = NULL) const;
70   void emitPrologue(MachineFunction &MF) const;
71   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
72
73   // Debug information queries.
74   unsigned getRARegister() const;
75   unsigned getFrameRegister(MachineFunction &MF) const;
76   void getInitialFrameState(std::vector<MachineMove> &Moves) const;
77
78   // Exception handling queries.
79   unsigned getEHExceptionRegister() const;
80   unsigned getEHHandlerRegister() const;
81
82   int getDwarfRegNum(unsigned RegNum, bool isEH) const;
83 };
84
85 } // end namespace llvm
86
87 #endif