Eliminate the RegisterClass argument, since it can easily be derived from
[oota-llvm.git] / include / llvm / Target / MRegisterInfo.h
1 //===- Target/MRegisterInfo.h - Target Register Information -----*- 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 describes an abstract interface used to get information about a
11 // target machines register file.  This information is used for a variety of
12 // purposed, especially register allocation.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_TARGET_MREGISTERINFO_H
17 #define LLVM_TARGET_MREGISTERINFO_H
18
19 #include "llvm/CodeGen/MachineBasicBlock.h"
20 #include <cassert>
21 #include <functional>
22
23 namespace llvm {
24
25 class Type;
26 class MachineFunction;
27 class MachineInstr;
28
29 /// MRegisterDesc - This record contains all of the information known about a
30 /// particular register.  The AliasSet field (if not null) contains a pointer to
31 /// a Zero terminated array of registers that this register aliases.  This is
32 /// needed for architectures like X86 which have AL alias AX alias EAX.
33 /// Registers that this does not apply to simply should set this to null.
34 ///
35 struct MRegisterDesc {
36   const char     *Name;       // Assembly language name for the register
37   const unsigned *AliasSet;   // Register Alias Set, described above
38   unsigned        Flags;      // Flags identifying register properties (below)
39   unsigned        TSFlags;    // Target Specific Flags
40 };
41
42 class TargetRegisterClass {
43 public:
44   typedef const unsigned* iterator;
45   typedef const unsigned* const_iterator;
46
47 private:
48   const unsigned RegSize, Alignment;    // Size & Alignment of register in bytes
49   const iterator RegsBegin, RegsEnd;
50 public:
51   TargetRegisterClass(unsigned RS, unsigned Al, iterator RB, iterator RE)
52     : RegSize(RS), Alignment(Al), RegsBegin(RB), RegsEnd(RE) {}
53   virtual ~TargetRegisterClass() {}     // Allow subclasses
54
55   // begin/end - Return all of the registers in this class.
56   iterator       begin() const { return RegsBegin; }
57   iterator         end() const { return RegsEnd; }
58
59   // getNumRegs - Return the number of registers in this class
60   unsigned getNumRegs() const { return RegsEnd-RegsBegin; }
61
62   // getRegister - Return the specified register in the class
63   unsigned getRegister(unsigned i) const {
64     assert(i < getNumRegs() && "Register number out of range!");
65     return RegsBegin[i];
66   }
67
68   /// allocation_order_begin/end - These methods define a range of registers
69   /// which specify the registers in this class that are valid to register
70   /// allocate, and the preferred order to allocate them in.  For example,
71   /// callee saved registers should be at the end of the list, because it is
72   /// cheaper to allocate caller saved registers.
73   ///
74   /// These methods take a MachineFunction argument, which can be used to tune
75   /// the allocatable registers based on the characteristics of the function.
76   /// One simple example is that the frame pointer register can be used if
77   /// frame-pointer-elimination is performed.
78   ///
79   /// By default, these methods return all registers in the class.
80   ///
81   virtual iterator allocation_order_begin(MachineFunction &MF) const {
82     return begin();
83   }
84   virtual iterator allocation_order_end(MachineFunction &MF)   const {
85     return end();
86   }
87   
88
89
90   /// getSize - Return the size of the register in bytes, which is also the size
91   /// of a stack slot allocated to hold a spilled copy of this register.
92   unsigned getSize() const { return RegSize; }
93
94   /// getAlignment - Return the minimum required alignment for a register of
95   /// this class.
96   unsigned getAlignment() const { return Alignment; }
97 };
98
99
100 /// MRegisterInfo base class - We assume that the target defines a static array
101 /// of MRegisterDesc objects that represent all of the machine registers that
102 /// the target has.  As such, we simply have to track a pointer to this array so
103 /// that we can turn register number into a register descriptor.
104 ///
105 class MRegisterInfo {
106 public:
107   typedef const TargetRegisterClass * const * regclass_iterator;
108 private:
109   const MRegisterDesc *Desc;                  // Pointer to the descriptor array
110   unsigned NumRegs;                           // Number of entries in the array
111
112   regclass_iterator RegClassBegin, RegClassEnd;   // List of regclasses
113
114   const TargetRegisterClass **PhysRegClasses; // Reg class for each register
115   int CallFrameSetupOpcode, CallFrameDestroyOpcode;
116 protected:
117   MRegisterInfo(const MRegisterDesc *D, unsigned NR,
118                 regclass_iterator RegClassBegin, regclass_iterator RegClassEnd,
119                 int CallFrameSetupOpcode = -1, int CallFrameDestroyOpcode = -1);
120   virtual ~MRegisterInfo();
121 public:
122
123   enum {                        // Define some target independent constants
124     /// NoRegister - This 'hard' register is a 'noop' register for all backends.
125     /// This is used as the destination register for instructions that do not
126     /// produce a value.  Some frontends may use this as an operand register to
127     /// mean special things, for example, the Sparc backend uses R0 to mean %g0
128     /// which always PRODUCES the value 0.  The X86 backend does not use this
129     /// value as an operand register, except for memory references.
130     ///
131     NoRegister = 0,
132
133     /// FirstVirtualRegister - This is the first register number that is
134     /// considered to be a 'virtual' register, which is part of the SSA
135     /// namespace.  This must be the same for all targets, which means that each
136     /// target is limited to 1024 registers.
137     ///
138     FirstVirtualRegister = 1024,
139   };
140
141   /// isPhysicalRegister - Return true if the specified register number is in
142   /// the physical register namespace.
143   static bool isPhysicalRegister(unsigned Reg) {
144     assert(Reg && "this is not a register!");
145     return Reg < FirstVirtualRegister;
146   }
147
148   /// isVirtualRegister - Return true if the specified register number is in
149   /// the virtual register namespace.
150   static bool isVirtualRegister(unsigned Reg) {
151     assert(Reg && "this is not a register!");
152     return Reg >= FirstVirtualRegister;
153   }
154
155   const MRegisterDesc &operator[](unsigned RegNo) const {
156     assert(RegNo < NumRegs &&
157            "Attempting to access record for invalid register number!");
158     return Desc[RegNo];
159   }
160
161   /// Provide a get method, equivalent to [], but more useful if we have a
162   /// pointer to this object.
163   ///
164   const MRegisterDesc &get(unsigned RegNo) const { return operator[](RegNo); }
165
166   /// getRegClass - Return the register class for the specified physical
167   /// register.
168   ///
169   const TargetRegisterClass *getRegClass(unsigned RegNo) const {
170     assert(RegNo < NumRegs && "Register number out of range!");
171     assert(PhysRegClasses[RegNo] && "Register is not in a class!");
172     return PhysRegClasses[RegNo];
173   }
174
175   /// getAliasSet - Return the set of registers aliased by the specified
176   /// register, or a null list of there are none.  The list returned is zero
177   /// terminated.
178   ///
179   const unsigned *getAliasSet(unsigned RegNo) const {
180     return get(RegNo).AliasSet;
181   }
182
183   /// getName - Return the symbolic target specific name for the specified
184   /// physical register.
185   const char *getName(unsigned RegNo) const {
186     return get(RegNo).Name;
187   }
188
189   /// getNumRegs - Return the number of registers this target has
190   /// (useful for sizing arrays holding per register information)
191   unsigned getNumRegs() const {
192     return NumRegs;
193   }
194
195   /// areAliases - Returns true if the two registers alias each other,
196   /// false otherwise
197   bool areAliases(unsigned regA, unsigned regB) const {
198     for (const unsigned *Alias = getAliasSet(regA); *Alias; ++Alias)
199       if (*Alias == regB) return true;
200     return false;
201   }
202
203   virtual const unsigned* getCalleeSaveRegs() const = 0;
204
205
206   //===--------------------------------------------------------------------===//
207   // Register Class Information
208   //
209
210   /// Register class iterators
211   ///
212   regclass_iterator regclass_begin() const { return RegClassBegin; }
213   regclass_iterator regclass_end() const { return RegClassEnd; }
214
215   unsigned getNumRegClasses() const {
216     return regclass_end()-regclass_begin();
217   }
218
219   //===--------------------------------------------------------------------===//
220   // All basic block modifier functions below return the number of
221   // instructions added to (negative if removed from) the basic block
222   // passed as their first argument.
223   //
224   // FIXME: This is only needed because we use a std::vector instead
225   // of an ilist to keep MachineBasicBlock instructions. Inserting an
226   // instruction to a MachineBasicBlock invalidates all iterators to
227   // the basic block. The return value can be used to update an index
228   // to the machine basic block instruction vector and circumvent the
229   // iterator elimination problem but this is really not needed if we
230   // move to a better representation.
231   //
232
233   //===--------------------------------------------------------------------===//
234   // Interfaces used by the register allocator and stack frame
235   // manipulation passes to move data around between registers,
236   // immediates and memory.  The return value is the number of
237   // instructions added to (negative if removed from) the basic block.
238   //
239
240   virtual int storeRegToStackSlot(MachineBasicBlock &MBB,
241                                   MachineBasicBlock::iterator MI,
242                                   unsigned SrcReg, int FrameIndex) const = 0;
243
244   virtual int loadRegFromStackSlot(MachineBasicBlock &MBB,
245                                    MachineBasicBlock::iterator MI,
246                                    unsigned DestReg, int FrameIndex) const = 0;
247
248   virtual int copyRegToReg(MachineBasicBlock &MBB,
249                            MachineBasicBlock::iterator MI,
250                            unsigned DestReg, unsigned SrcReg,
251                            const TargetRegisterClass *RC) const = 0;
252
253
254   /// foldMemoryOperand - Attempt to fold a load or store of the
255   /// specified stack slot into the specified machine instruction for
256   /// the specified operand.  If this is possible, a new instruction
257   /// is returned with the specified operand folded, otherwise NULL is
258   /// returned. The client is responsible for removing the old
259   /// instruction and adding the new one in the instruction stream
260   virtual MachineInstr* foldMemoryOperand(MachineInstr* MI,
261                                           unsigned OpNum,
262                                           int FrameIndex) const {
263     return NULL;
264   }
265
266   /// getCallFrameSetup/DestroyOpcode - These methods return the opcode of the
267   /// frame setup/destroy instructions if they exist (-1 otherwise).  Some
268   /// targets use pseudo instructions in order to abstract away the difference
269   /// between operating with a frame pointer and operating without, through the
270   /// use of these two instructions.
271   ///
272   int getCallFrameSetupOpcode() const { return CallFrameSetupOpcode; }
273   int getCallFrameDestroyOpcode() const { return CallFrameDestroyOpcode; }
274
275
276   /// eliminateCallFramePseudoInstr - This method is called during prolog/epilog
277   /// code insertion to eliminate call frame setup and destroy pseudo
278   /// instructions (but only if the Target is using them).  It is responsible
279   /// for eliminating these instructions, replacing them with concrete
280   /// instructions.  This method need only be implemented if using call frame
281   /// setup/destroy pseudo instructions.
282   ///
283   virtual void 
284   eliminateCallFramePseudoInstr(MachineFunction &MF,
285                                 MachineBasicBlock &MBB,
286                                 MachineBasicBlock::iterator MI) const {
287     assert(getCallFrameSetupOpcode()== -1 && getCallFrameDestroyOpcode()== -1 &&
288            "eliminateCallFramePseudoInstr must be implemented if using"
289            " call frame setup/destroy pseudo instructions!");
290     assert(0 && "Call Frame Pseudo Instructions do not exist on this target!");
291   }
292
293   /// processFunctionBeforeFrameFinalized - This method is called immediately
294   /// before the specified functions frame layout (MF.getFrameInfo()) is
295   /// finalized.  Once the frame is finalized, MO_FrameIndex operands are
296   /// replaced with direct constants.  This method is optional. The return value
297   /// is the number of instructions added to (negative if removed from) the
298   /// basic block
299   ///
300   virtual void processFunctionBeforeFrameFinalized(MachineFunction &MF) const {
301   }
302
303   /// eliminateFrameIndex - This method must be overriden to eliminate abstract
304   /// frame indices from instructions which may use them.  The instruction
305   /// referenced by the iterator contains an MO_FrameIndex operand which must be
306   /// eliminated by this method.  This method may modify or replace the
307   /// specified instruction, as long as it keeps the iterator pointing the the
308   /// finished product. The return value is the number of instructions
309   /// added to (negative if removed from) the basic block.
310   ///
311   virtual void eliminateFrameIndex(MachineBasicBlock::iterator MI) const = 0;
312
313   /// emitProlog/emitEpilog - These methods insert prolog and epilog code into
314   /// the function. The return value is the number of instructions
315   /// added to (negative if removed from) the basic block (entry for prologue).
316   ///
317   virtual void emitPrologue(MachineFunction &MF) const = 0;
318   virtual void emitEpilogue(MachineFunction &MF,
319                             MachineBasicBlock &MBB) const = 0;
320 };
321
322 // This is useful when building DenseMaps keyed on virtual registers
323 struct VirtReg2IndexFunctor : std::unary_function<unsigned, unsigned> {
324   unsigned operator()(unsigned Reg) const {
325     return Reg - MRegisterInfo::FirstVirtualRegister;
326   }
327 };
328
329 } // End llvm namespace
330
331 #endif