Move getInitialFrameState() to TargetFrameInfo
[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 is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the X86 implementation of the TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef X86REGISTERINFO_H
15 #define X86REGISTERINFO_H
16
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "X86GenRegisterInfo.h.inc"
19
20 namespace llvm {
21   class Type;
22   class TargetInstrInfo;
23   class X86TargetMachine;
24
25 /// N86 namespace - Native X86 register numbers
26 ///
27 namespace N86 {
28   enum {
29     EAX = 0, ECX = 1, EDX = 2, EBX = 3, ESP = 4, EBP = 5, ESI = 6, EDI = 7
30   };
31 }
32
33 /// DWARFFlavour - Flavour of dwarf regnumbers
34 ///
35 namespace DWARFFlavour {
36   enum {
37     X86_64 = 0, X86_32_DarwinEH = 1, X86_32_Generic = 2
38   };
39
40   
41 class X86RegisterInfo : public X86GenRegisterInfo {
42 public:
43   X86TargetMachine &TM;
44   const TargetInstrInfo &TII;
45
46 private:
47   /// Is64Bit - Is the target 64-bits.
48   ///
49   bool Is64Bit;
50
51   /// IsWin64 - Is the target on of win64 flavours
52   ///
53   bool IsWin64;
54
55   /// SlotSize - Stack slot size in bytes.
56   ///
57   unsigned SlotSize;
58
59   /// StackAlign - Default stack alignment.
60   ///
61   unsigned StackAlign;
62
63   /// StackPtr - X86 physical register used as stack ptr.
64   ///
65   unsigned StackPtr;
66
67   /// FramePtr - X86 physical register used as frame ptr.
68   ///
69   unsigned FramePtr;
70
71 public:
72   X86RegisterInfo(X86TargetMachine &tm, const TargetInstrInfo &tii);
73
74   /// getX86RegNum - Returns the native X86 register number for the given LLVM
75   /// register identifier.
76   static unsigned getX86RegNum(unsigned RegNo);
77
78   unsigned getStackAlignment() const { return StackAlign; }
79
80   /// getDwarfRegNum - allows modification of X86GenRegisterInfo::getDwarfRegNum
81   /// (created by TableGen) for target dependencies.
82   int getDwarfRegNum(unsigned RegNum, bool isEH) const;
83
84   /// Code Generation virtual methods...
85   /// 
86
87   /// getMatchingSuperRegClass - Return a subclass of the specified register
88   /// class A so that each register in it has a sub-register of the
89   /// specified sub-register index which is in the specified register class B.
90   virtual const TargetRegisterClass *
91   getMatchingSuperRegClass(const TargetRegisterClass *A,
92                            const TargetRegisterClass *B, unsigned Idx) const;
93
94   /// getPointerRegClass - Returns a TargetRegisterClass used for pointer
95   /// values.
96   const TargetRegisterClass *getPointerRegClass(unsigned Kind = 0) const;
97
98   /// getCrossCopyRegClass - Returns a legal register class to copy a register
99   /// in the specified class to or from. Returns NULL if it is possible to copy
100   /// between a two registers of the specified class.
101   const TargetRegisterClass *
102   getCrossCopyRegClass(const TargetRegisterClass *RC) const;
103
104   /// getCalleeSavedRegs - Return a null-terminated list of all of the
105   /// callee-save registers on this target.
106   const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const;
107
108   /// getReservedRegs - Returns a bitset indexed by physical register number
109   /// indicating if a register is a special register that has particular uses and
110   /// should be considered unavailable at all times, e.g. SP, RA. This is used by
111   /// register scavenger to determine what registers are free.
112   BitVector getReservedRegs(const MachineFunction &MF) const;
113
114   bool canRealignStack(const MachineFunction &MF) const;
115
116   bool needsStackRealignment(const MachineFunction &MF) const;
117
118   bool hasReservedSpillSlot(const MachineFunction &MF, unsigned Reg,
119                             int &FrameIdx) const;
120
121   void eliminateCallFramePseudoInstr(MachineFunction &MF,
122                                      MachineBasicBlock &MBB,
123                                      MachineBasicBlock::iterator MI) const;
124
125   void eliminateFrameIndex(MachineBasicBlock::iterator MI,
126                            int SPAdj, RegScavenger *RS = NULL) const;
127
128   void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
129                                             RegScavenger *RS = NULL) const;
130
131   // Debug information queries.
132   unsigned getRARegister() const;
133   unsigned getFrameRegister(const MachineFunction &MF) const;
134   unsigned getStackRegister() const { return StackPtr; }
135   // FIXME: Move to FrameInfok
136   unsigned getSlotSize() const { return SlotSize; }
137
138   int getFrameIndexOffset(const MachineFunction &MF, int FI) const;
139
140   // Exception handling queries.
141   unsigned getEHExceptionRegister() const;
142   unsigned getEHHandlerRegister() const;
143 };
144
145 // getX86SubSuperRegister - X86 utility function. It returns the sub or super
146 // register of a specific X86 register.
147 // e.g. getX86SubSuperRegister(X86::EAX, EVT::i16) return X86:AX
148 unsigned getX86SubSuperRegister(unsigned, EVT, bool High=false);
149
150 } // End llvm namespace
151
152 #endif