Long live the exception handling!
[oota-llvm.git] / lib / Target / X86 / X86RegisterInfo.h
1 //===- X86RegisterInfo.h - X86 Register Information Impl --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the X86 implementation of the MRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86REGISTERINFO_H
15 #define X86REGISTERINFO_H
16
17 #include "llvm/Target/MRegisterInfo.h"
18 #include "X86GenRegisterInfo.h.inc"
19
20 namespace llvm {
21   class Type;
22   class TargetInstrInfo;
23   class X86TargetMachine;
24
25 class X86RegisterInfo : public X86GenRegisterInfo {
26 public:
27   X86TargetMachine &TM;
28   const TargetInstrInfo &TII;
29
30 private:
31   /// Is64Bit - Is the target 64-bits.
32   bool Is64Bit;
33
34   /// SlotSize - Stack slot size in bytes.
35   unsigned SlotSize;
36
37   /// StackPtr - X86 physical register used as stack ptr.
38   unsigned StackPtr;
39
40   /// FramePtr - X86 physical register used as frame ptr.
41   unsigned FramePtr;
42
43 public:
44   X86RegisterInfo(X86TargetMachine &tm, const TargetInstrInfo &tii);
45
46   /// Code Generation virtual methods...
47   void storeRegToStackSlot(MachineBasicBlock &MBB,
48                            MachineBasicBlock::iterator MI,
49                            unsigned SrcReg, int FrameIndex,
50                            const TargetRegisterClass *RC) const;
51
52   void loadRegFromStackSlot(MachineBasicBlock &MBB,
53                             MachineBasicBlock::iterator MI,
54                             unsigned DestReg, int FrameIndex,
55                             const TargetRegisterClass *RC) const;
56
57   void copyRegToReg(MachineBasicBlock &MBB,
58                     MachineBasicBlock::iterator MI,
59                     unsigned DestReg, unsigned SrcReg,
60                     const TargetRegisterClass *RC) const;
61  
62   void reMaterialize(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
63                      unsigned DestReg, const MachineInstr *Orig) const;
64
65   /// foldMemoryOperand - If this target supports it, fold a load or store of
66   /// the specified stack slot into the specified machine instruction for the
67   /// specified operand.  If this is possible, the target should perform the
68   /// folding and return true, otherwise it should return false.  If it folds
69   /// the instruction, it is likely that the MachineInstruction the iterator
70   /// references has been changed.
71   MachineInstr* foldMemoryOperand(MachineInstr* MI,
72                                   unsigned OpNum,
73                                   int FrameIndex) const;
74
75   /// getCalleeSavedRegs - Return a null-terminated list of all of the
76   /// callee-save registers on this target.
77   const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
78
79   /// getCalleeSavedRegClasses - Return a null-terminated list of the preferred
80   /// register classes to spill each callee-saved register with.  The order and
81   /// length of this list match the getCalleeSavedRegs() list.
82   const TargetRegisterClass* const* getCalleeSavedRegClasses(
83                                      const MachineFunction *MF = 0) const;
84
85   /// getReservedRegs - Returns a bitset indexed by physical register number
86   /// indicating if a register is a special register that has particular uses and
87   /// should be considered unavailable at all times, e.g. SP, RA. This is used by
88   /// register scavenger to determine what registers are free.
89   BitVector getReservedRegs(const MachineFunction &MF) const;
90
91   bool hasFP(const MachineFunction &MF) const;
92
93   void eliminateCallFramePseudoInstr(MachineFunction &MF,
94                                      MachineBasicBlock &MBB,
95                                      MachineBasicBlock::iterator MI) const;
96
97   void eliminateFrameIndex(MachineBasicBlock::iterator MI,
98                            int SPAdj, RegScavenger *RS = NULL) const;
99
100   void processFunctionBeforeFrameFinalized(MachineFunction &MF) const;
101
102   void emitPrologue(MachineFunction &MF) const;
103   void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
104
105   // Debug information queries.
106   unsigned getRARegister() const;
107   unsigned getFrameRegister(MachineFunction &MF) const;
108   void getInitialFrameState(std::vector<MachineMove> &Moves) const;
109
110   // Exception handling queries.
111   unsigned getEHExceptionRegister() const;
112   unsigned getEHHandlerRegister() const;
113 };
114
115 // getX86SubSuperRegister - X86 utility function. It returns the sub or super
116 // register of a specific X86 register.
117 // e.g. getX86SubSuperRegister(X86::EAX, MVT::i16) return X86:AX
118 unsigned getX86SubSuperRegister(unsigned, MVT::ValueType, bool High=false);
119
120 } // End llvm namespace
121
122 #endif