]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
MFC r244628:
[FreeBSD/stable/9.git] / contrib / llvm / lib / Target / Mips / MipsRegisterInfo.h
1 //===-- MipsRegisterInfo.h - Mips 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 Mips implementation of the TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSREGISTERINFO_H
15 #define MIPSREGISTERINFO_H
16
17 #include "Mips.h"
18 #include "llvm/Target/TargetRegisterInfo.h"
19
20 #define GET_REGINFO_HEADER
21 #include "MipsGenRegisterInfo.inc"
22
23 namespace llvm {
24 class MipsSubtarget;
25 class Type;
26
27 class MipsRegisterInfo : public MipsGenRegisterInfo {
28 protected:
29   const MipsSubtarget &Subtarget;
30
31 public:
32   MipsRegisterInfo(const MipsSubtarget &Subtarget);
33
34   /// getRegisterNumbering - Given the enum value for some register, e.g.
35   /// Mips::RA, return the number that it corresponds to (e.g. 31).
36   static unsigned getRegisterNumbering(unsigned RegEnum);
37
38   /// Get PIC indirect call register
39   static unsigned getPICCallReg();
40
41   /// Adjust the Mips stack frame.
42   void adjustMipsStackFrame(MachineFunction &MF) const;
43
44   /// Code Generation virtual methods...
45   const uint16_t *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
46   const uint32_t *getCallPreservedMask(CallingConv::ID) const;
47
48   BitVector getReservedRegs(const MachineFunction &MF) const;
49
50   virtual bool requiresRegisterScavenging(const MachineFunction &MF) const;
51
52   virtual bool trackLivenessAfterRegAlloc(const MachineFunction &MF) const;
53
54   /// Stack Frame Processing Methods
55   void eliminateFrameIndex(MachineBasicBlock::iterator II,
56                            int SPAdj, RegScavenger *RS = NULL) const;
57
58   void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
59
60   /// Debug information queries.
61   unsigned getFrameRegister(const MachineFunction &MF) const;
62
63   /// Exception handling queries.
64   unsigned getEHExceptionRegister() const;
65   unsigned getEHHandlerRegister() const;
66
67 private:
68   virtual void eliminateFI(MachineBasicBlock::iterator II, unsigned OpNo,
69                            int FrameIndex, uint64_t StackSize,
70                            int64_t SPOffset) const = 0;
71 };
72
73 } // end namespace llvm
74
75 #endif