Adding the MicroBlaze backend.
[oota-llvm.git] / lib / Target / MBlaze / MBlazeRegisterInfo.h
1 //===- MBlazeRegisterInfo.h - MBlaze 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 MBlaze implementation of the TargetRegisterInfo
11 // class.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef MBLAZEREGISTERINFO_H
16 #define MBLAZEREGISTERINFO_H
17
18 #include "MBlaze.h"
19 #include "llvm/Target/TargetRegisterInfo.h"
20 #include "MBlazeGenRegisterInfo.h.inc"
21
22 namespace llvm {
23 class MBlazeSubtarget;
24 class TargetInstrInfo;
25 class Type;
26
27 namespace MBlaze {
28   /// SubregIndex - The index of various sized subregister classes. Note that 
29   /// these indices must be kept in sync with the class indices in the 
30   /// MBlazeRegisterInfo.td file.
31   enum SubregIndex {
32     SUBREG_FPEVEN = 1, SUBREG_FPODD = 2
33   };
34 }
35
36 struct MBlazeRegisterInfo : public MBlazeGenRegisterInfo {
37   const MBlazeSubtarget &Subtarget;
38   const TargetInstrInfo &TII;
39   
40   MBlazeRegisterInfo(const MBlazeSubtarget &Subtarget,
41                      const TargetInstrInfo &tii);
42
43   /// getRegisterNumbering - Given the enum value for some register, e.g.
44   /// MBlaze::RA, return the number that it corresponds to (e.g. 31).
45   static unsigned getRegisterNumbering(unsigned RegEnum);
46
47   /// Get PIC indirect call register
48   static unsigned getPICCallReg();
49
50   /// Adjust the MBlaze stack frame.
51   void adjustMBlazeStackFrame(MachineFunction &MF) const;
52
53   /// Code Generation virtual methods...
54   const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
55
56   const TargetRegisterClass* const*
57   getCalleeSavedRegClasses(const MachineFunction* MF = 0) const;
58
59   BitVector getReservedRegs(const MachineFunction &MF) const;
60
61   bool hasFP(const MachineFunction &MF) const;
62
63   void eliminateCallFramePseudoInstr(MachineFunction &MF,
64                                      MachineBasicBlock &MBB,
65                                      MachineBasicBlock::iterator I) const;
66
67   /// Stack Frame Processing Methods
68   unsigned eliminateFrameIndex(MachineBasicBlock::iterator II,
69                                int SPAdj, int *Value = NULL,
70                                RegScavenger *RS = NULL) const;
71
72   void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
73
74   void emitPrologue(MachineFunction &MF) const;
75   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
76   
77   /// Debug information queries.
78   unsigned getRARegister() const;
79   unsigned getFrameRegister(const MachineFunction &MF) const;
80
81   /// Exception handling queries.
82   unsigned getEHExceptionRegister() const;
83   unsigned getEHHandlerRegister() const;
84
85   int getDwarfRegNum(unsigned RegNum, bool isEH) const;
86 };
87
88 } // end namespace llvm
89
90 #endif