Access the TargetLoweringInfo from the TargetMachine object instead of caching it...
[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
21 #define GET_REGINFO_HEADER
22 #include "MBlazeGenRegisterInfo.inc"
23
24 namespace llvm {
25 class MBlazeSubtarget;
26 class TargetInstrInfo;
27 class Type;
28
29 namespace MBlaze {
30   /// SubregIndex - The index of various sized subregister classes. Note that
31   /// these indices must be kept in sync with the class indices in the
32   /// MBlazeRegisterInfo.td file.
33   enum SubregIndex {
34     SUBREG_FPEVEN = 1, SUBREG_FPODD = 2
35   };
36 }
37
38 struct MBlazeRegisterInfo : public MBlazeGenRegisterInfo {
39   const MBlazeSubtarget &Subtarget;
40
41   MBlazeRegisterInfo(const MBlazeSubtarget &Subtarget);
42
43   /// Get PIC indirect call register
44   static unsigned getPICCallReg();
45
46   /// Code Generation virtual methods...
47   const uint16_t *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
48
49   BitVector getReservedRegs(const MachineFunction &MF) const;
50
51   /// Stack Frame Processing Methods
52   void eliminateFrameIndex(MachineBasicBlock::iterator II,
53                            int SPAdj, unsigned FIOperandNum,
54                            RegScavenger *RS = NULL) const;
55
56   void processFunctionBeforeFrameFinalized(MachineFunction &MF,
57                                            RegScavenger *RS = NULL) const;
58
59   /// Debug information queries.
60   unsigned getFrameRegister(const MachineFunction &MF) const;
61
62   /// Exception handling queries.
63   unsigned getEHExceptionRegister() const;
64   unsigned getEHHandlerRegister() const;
65 };
66
67 } // end namespace llvm
68
69 #endif