Remove trailing whitespace
[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 char SpillSize;      // Size of this register in bytes
39   unsigned char SpillAlignment; // Alignment of stack slot for this reg
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   /// contains - Return true if the specified register is included in this
69   /// register class.
70   bool contains(unsigned Reg) const {
71     for (iterator I = begin(), E = end(); I != E; ++I)
72       if (*I == Reg) return true;
73     return false;
74   }
75
76   /// allocation_order_begin/end - These methods define a range of registers
77   /// which specify the registers in this class that are valid to register
78   /// allocate, and the preferred order to allocate them in.  For example,
79   /// callee saved registers should be at the end of the list, because it is
80   /// cheaper to allocate caller saved registers.
81   ///
82   /// These methods take a MachineFunction argument, which can be used to tune
83   /// the allocatable registers based on the characteristics of the function.
84   /// One simple example is that the frame pointer register can be used if
85   /// frame-pointer-elimination is performed.
86   ///
87   /// By default, these methods return all registers in the class.
88   ///
89   virtual iterator allocation_order_begin(MachineFunction &MF) const {
90     return begin();
91   }
92   virtual iterator allocation_order_end(MachineFunction &MF)   const {
93     return end();
94   }
95
96
97
98   /// getSize - Return the size of the register in bytes, which is also the size
99   /// of a stack slot allocated to hold a spilled copy of this register.
100   unsigned getSize() const { return RegSize; }
101
102   /// getAlignment - Return the minimum required alignment for a register of
103   /// this class.
104   unsigned getAlignment() const { return Alignment; }
105 };
106
107
108 /// MRegisterInfo base class - We assume that the target defines a static array
109 /// of MRegisterDesc objects that represent all of the machine registers that
110 /// the target has.  As such, we simply have to track a pointer to this array so
111 /// that we can turn register number into a register descriptor.
112 ///
113 class MRegisterInfo {
114 public:
115   typedef const TargetRegisterClass * const * regclass_iterator;
116 private:
117   const MRegisterDesc *Desc;                  // Pointer to the descriptor array
118   unsigned NumRegs;                           // Number of entries in the array
119
120   regclass_iterator RegClassBegin, RegClassEnd;   // List of regclasses
121
122   int CallFrameSetupOpcode, CallFrameDestroyOpcode;
123 protected:
124   MRegisterInfo(const MRegisterDesc *D, unsigned NR,
125                 regclass_iterator RegClassBegin, regclass_iterator RegClassEnd,
126                 int CallFrameSetupOpcode = -1, int CallFrameDestroyOpcode = -1);
127   virtual ~MRegisterInfo();
128 public:
129
130   enum {                        // Define some target independent constants
131     /// NoRegister - This 'hard' register is a 'noop' register for all backends.
132     /// This is used as the destination register for instructions that do not
133     /// produce a value.  Some frontends may use this as an operand register to
134     /// mean special things, for example, the Sparc backend uses R0 to mean %g0
135     /// which always PRODUCES the value 0.  The X86 backend does not use this
136     /// value as an operand register, except for memory references.
137     ///
138     NoRegister = 0,
139
140     /// FirstVirtualRegister - This is the first register number that is
141     /// considered to be a 'virtual' register, which is part of the SSA
142     /// namespace.  This must be the same for all targets, which means that each
143     /// target is limited to 1024 registers.
144     ///
145     FirstVirtualRegister = 1024,
146   };
147
148   /// isPhysicalRegister - Return true if the specified register number is in
149   /// the physical register namespace.
150   static bool isPhysicalRegister(unsigned Reg) {
151     assert(Reg && "this is not a register!");
152     return Reg < FirstVirtualRegister;
153   }
154
155   /// isVirtualRegister - Return true if the specified register number is in
156   /// the virtual register namespace.
157   static bool isVirtualRegister(unsigned Reg) {
158     assert(Reg && "this is not a register!");
159     return Reg >= FirstVirtualRegister;
160   }
161
162   /// getAllocatableSet - Returns a bitset indexed by register number
163   /// indicating if a register is allocatable or not.
164   std::vector<bool> getAllocatableSet(MachineFunction &MF) const;
165
166   const MRegisterDesc &operator[](unsigned RegNo) const {
167     assert(RegNo < NumRegs &&
168            "Attempting to access record for invalid register number!");
169     return Desc[RegNo];
170   }
171
172   /// Provide a get method, equivalent to [], but more useful if we have a
173   /// pointer to this object.
174   ///
175   const MRegisterDesc &get(unsigned RegNo) const { return operator[](RegNo); }
176
177   /// getAliasSet - Return the set of registers aliased by the specified
178   /// register, or a null list of there are none.  The list returned is zero
179   /// terminated.
180   ///
181   const unsigned *getAliasSet(unsigned RegNo) const {
182     return get(RegNo).AliasSet;
183   }
184
185   /// getName - Return the symbolic target specific name for the specified
186   /// physical register.
187   const char *getName(unsigned RegNo) const {
188     return get(RegNo).Name;
189   }
190
191   /// getSpillSize - Return the size in bits required of a stack slot used to
192   /// spill register into.
193   unsigned getSpillSize(unsigned RegNo) const {
194     return get(RegNo).SpillSize;
195   }
196
197   /// getSpillAlignment - Return the alignment required by a stack slot used to
198   /// spill register into.
199   unsigned getSpillAlignment(unsigned RegNo) const {
200     return get(RegNo).SpillAlignment;
201   }
202
203   /// getNumRegs - Return the number of registers this target has
204   /// (useful for sizing arrays holding per register information)
205   unsigned getNumRegs() const {
206     return NumRegs;
207   }
208
209   /// areAliases - Returns true if the two registers alias each other,
210   /// false otherwise
211   bool areAliases(unsigned regA, unsigned regB) const {
212     for (const unsigned *Alias = getAliasSet(regA); *Alias; ++Alias)
213       if (*Alias == regB) return true;
214     return false;
215   }
216
217   virtual const unsigned* getCalleeSaveRegs() const = 0;
218
219
220   //===--------------------------------------------------------------------===//
221   // Register Class Information
222   //
223
224   /// Register class iterators
225   ///
226   regclass_iterator regclass_begin() const { return RegClassBegin; }
227   regclass_iterator regclass_end() const { return RegClassEnd; }
228
229   unsigned getNumRegClasses() const {
230     return regclass_end()-regclass_begin();
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 void storeRegToStackSlot(MachineBasicBlock &MBB,
241                                    MachineBasicBlock::iterator MI,
242                                    unsigned SrcReg, int FrameIndex) const = 0;
243
244   virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
245                                     MachineBasicBlock::iterator MI,
246                                     unsigned DestReg, int FrameIndex) const = 0;
247
248   virtual void 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 0;
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