Use SubRegIndex in SystemZ.
[oota-llvm.git] / lib / Target / SystemZ / SystemZRegisterInfo.h
1 //===-- SystemZRegisterInfo.h - SystemZ Register Information ----*- 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 SystemZ implementation of the TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SystemZREGISTERINFO_H
15 #define SystemZREGISTERINFO_H
16
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "SystemZGenRegisterInfo.h.inc"
19
20 namespace llvm {
21
22 class SystemZSubtarget;
23 class SystemZInstrInfo;
24 class Type;
25
26 struct SystemZRegisterInfo : public SystemZGenRegisterInfo {
27   SystemZTargetMachine &TM;
28   const SystemZInstrInfo &TII;
29
30   SystemZRegisterInfo(SystemZTargetMachine &tm, const SystemZInstrInfo &tii);
31
32   /// Code Generation virtual methods...
33   const unsigned *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
34
35   const TargetRegisterClass* const* getCalleeSavedRegClasses(
36                                      const MachineFunction *MF = 0) const;
37
38   BitVector getReservedRegs(const MachineFunction &MF) const;
39
40   bool hasReservedCallFrame(MachineFunction &MF) const { return true; }
41   bool hasFP(const MachineFunction &MF) const;
42
43   int getFrameIndexOffset(const MachineFunction &MF, int FI) const;
44
45   void eliminateCallFramePseudoInstr(MachineFunction &MF,
46                                      MachineBasicBlock &MBB,
47                                      MachineBasicBlock::iterator I) const;
48
49   unsigned eliminateFrameIndex(MachineBasicBlock::iterator II,
50                                int SPAdj, FrameIndexValue *Value = NULL,
51                                RegScavenger *RS = NULL) const;
52
53
54   void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
55                                             RegScavenger *RS) const;
56
57   void emitPrologue(MachineFunction &MF) const;
58   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
59
60   // Debug information queries.
61   unsigned getRARegister() const;
62   unsigned getFrameRegister(const MachineFunction &MF) const;
63
64   // Exception handling queries.
65   unsigned getEHExceptionRegister() const;
66   unsigned getEHHandlerRegister() const;
67
68   int getDwarfRegNum(unsigned RegNum, bool isEH) const;
69 };
70
71 } // end namespace llvm
72
73 #endif