02f9b7c686e2676ab56d44ff1308bbf48b877ba8
[oota-llvm.git] / include / llvm / CodeGen / MachineRegisterInfo.h
1 //===-- llvm/CodeGen/MachineRegisterInfo.h ----------------------*- 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 defines the MachineRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CODEGEN_MACHINEREGISTERINFO_H
15 #define LLVM_CODEGEN_MACHINEREGISTERINFO_H
16
17 #include "llvm/Target/TargetRegisterInfo.h"
18 #include "llvm/ADT/BitVector.h"
19 #include "llvm/ADT/iterator.h"
20 #include <vector>
21
22 namespace llvm {
23   
24 /// MachineRegisterInfo - Keep track of information for virtual and physical
25 /// registers, including vreg register classes, use/def chains for registers,
26 /// etc.
27 class MachineRegisterInfo {
28   /// VRegInfo - Information we keep for each virtual register.  The entries in
29   /// this vector are actually converted to vreg numbers by adding the 
30   /// TargetRegisterInfo::FirstVirtualRegister delta to their index.
31   ///
32   /// Each element in this list contains the register class of the vreg and the
33   /// start of the use/def list for the register.
34   std::vector<std::pair<const TargetRegisterClass*, MachineOperand*> > VRegInfo;
35
36   /// RegClassVRegMap - This vector acts as a map from TargetRegisterClass to
37   /// virtual registers. For each target register class, it keeps a list of
38   /// virtual registers belonging to the class.
39   std::vector<std::vector<unsigned> > RegClass2VRegMap;
40   
41   /// PhysRegUseDefLists - This is an array of the head of the use/def list for
42   /// physical registers.
43   MachineOperand **PhysRegUseDefLists; 
44   
45   /// UsedPhysRegs - This is a bit vector that is computed and set by the
46   /// register allocator, and must be kept up to date by passes that run after
47   /// register allocation (though most don't modify this).  This is used
48   /// so that the code generator knows which callee save registers to save and
49   /// for other target specific uses.
50   BitVector UsedPhysRegs;
51   
52   /// LiveIns/LiveOuts - Keep track of the physical registers that are
53   /// livein/liveout of the function.  Live in values are typically arguments in
54   /// registers, live out values are typically return values in registers.
55   /// LiveIn values are allowed to have virtual registers associated with them,
56   /// stored in the second element.
57   std::vector<std::pair<unsigned, unsigned> > LiveIns;
58   std::vector<unsigned> LiveOuts;
59   
60   MachineRegisterInfo(const MachineRegisterInfo&); // DO NOT IMPLEMENT
61   void operator=(const MachineRegisterInfo&);      // DO NOT IMPLEMENT
62 public:
63   explicit MachineRegisterInfo(const TargetRegisterInfo &TRI);
64   ~MachineRegisterInfo();
65   
66   //===--------------------------------------------------------------------===//
67   // Register Info
68   //===--------------------------------------------------------------------===//
69
70   /// reg_begin/reg_end - Provide iteration support to walk over all definitions
71   /// and uses of a register within the MachineFunction that corresponds to this
72   /// MachineRegisterInfo object.
73   template<bool Uses, bool Defs>
74   class defusechain_iterator;
75
76   /// reg_iterator/reg_begin/reg_end - Walk all defs and uses of the specified
77   /// register.
78   typedef defusechain_iterator<true,true> reg_iterator;
79   reg_iterator reg_begin(unsigned RegNo) const {
80     return reg_iterator(getRegUseDefListHead(RegNo));
81   }
82   static reg_iterator reg_end() { return reg_iterator(0); }
83
84   /// reg_empty - Return true if there are no instructions using or defining the
85   /// specified register (it may be live-in).
86   bool reg_empty(unsigned RegNo) const { return reg_begin(RegNo) == reg_end(); }
87
88   /// def_iterator/def_begin/def_end - Walk all defs of the specified register.
89   typedef defusechain_iterator<false,true> def_iterator;
90   def_iterator def_begin(unsigned RegNo) const {
91     return def_iterator(getRegUseDefListHead(RegNo));
92   }
93   static def_iterator def_end() { return def_iterator(0); }
94
95   /// def_empty - Return true if there are no instructions defining the
96   /// specified register (it may be live-in).
97   bool def_empty(unsigned RegNo) const { return def_begin(RegNo) == def_end(); }
98
99   /// use_iterator/use_begin/use_end - Walk all uses of the specified register.
100   typedef defusechain_iterator<true,false> use_iterator;
101   use_iterator use_begin(unsigned RegNo) const {
102     return use_iterator(getRegUseDefListHead(RegNo));
103   }
104   static use_iterator use_end() { return use_iterator(0); }
105   
106   /// use_empty - Return true if there are no instructions using the specified
107   /// register.
108   bool use_empty(unsigned RegNo) const { return use_begin(RegNo) == use_end(); }
109
110   
111   /// replaceRegWith - Replace all instances of FromReg with ToReg in the
112   /// machine function.  This is like llvm-level X->replaceAllUsesWith(Y),
113   /// except that it also changes any definitions of the register as well.
114   void replaceRegWith(unsigned FromReg, unsigned ToReg);
115   
116   /// getRegUseDefListHead - Return the head pointer for the register use/def
117   /// list for the specified virtual or physical register.
118   MachineOperand *&getRegUseDefListHead(unsigned RegNo) {
119     if (RegNo < TargetRegisterInfo::FirstVirtualRegister)
120       return PhysRegUseDefLists[RegNo];
121     RegNo -= TargetRegisterInfo::FirstVirtualRegister;
122     return VRegInfo[RegNo].second;
123   }
124   
125   MachineOperand *getRegUseDefListHead(unsigned RegNo) const {
126     if (RegNo < TargetRegisterInfo::FirstVirtualRegister)
127       return PhysRegUseDefLists[RegNo];
128     RegNo -= TargetRegisterInfo::FirstVirtualRegister;
129     return VRegInfo[RegNo].second;
130   }
131
132   /// getVRegDef - Return the machine instr that defines the specified virtual
133   /// register or null if none is found.  This assumes that the code is in SSA
134   /// form, so there should only be one definition.
135   MachineInstr *getVRegDef(unsigned Reg) const;
136   
137 #ifndef NDEBUG
138   void dumpUses(unsigned RegNo) const;
139 #endif
140   
141   //===--------------------------------------------------------------------===//
142   // Virtual Register Info
143   //===--------------------------------------------------------------------===//
144   
145   /// getRegClass - Return the register class of the specified virtual register.
146   ///
147   const TargetRegisterClass *getRegClass(unsigned Reg) const {
148     Reg -= TargetRegisterInfo::FirstVirtualRegister;
149     assert(Reg < VRegInfo.size() && "Invalid vreg!");
150     return VRegInfo[Reg].first;
151   }
152
153   /// setRegClass - Set the register class of the specified virtual register.
154   ///
155   void setRegClass(unsigned Reg, const TargetRegisterClass *RC);
156
157   /// createVirtualRegister - Create and return a new virtual register in the
158   /// function with the specified register class.
159   ///
160   unsigned createVirtualRegister(const TargetRegisterClass *RegClass);
161
162   /// getLastVirtReg - Return the highest currently assigned virtual register.
163   ///
164   unsigned getLastVirtReg() const {
165     return (unsigned)VRegInfo.size()+TargetRegisterInfo::FirstVirtualRegister-1;
166   }
167
168   /// getRegClassVirtRegs - Return the list of virtual registers of the given
169   /// target register class.
170   std::vector<unsigned> &getRegClassVirtRegs(const TargetRegisterClass *RC) {
171     return RegClass2VRegMap[RC->getID()];
172   }
173   
174   //===--------------------------------------------------------------------===//
175   // Physical Register Use Info
176   //===--------------------------------------------------------------------===//
177   
178   /// isPhysRegUsed - Return true if the specified register is used in this
179   /// function.  This only works after register allocation.
180   bool isPhysRegUsed(unsigned Reg) const { return UsedPhysRegs[Reg]; }
181   
182   /// setPhysRegUsed - Mark the specified register used in this function.
183   /// This should only be called during and after register allocation.
184   void setPhysRegUsed(unsigned Reg) { UsedPhysRegs[Reg] = true; }
185   
186   /// setPhysRegUnused - Mark the specified register unused in this function.
187   /// This should only be called during and after register allocation.
188   void setPhysRegUnused(unsigned Reg) { UsedPhysRegs[Reg] = false; }
189   
190
191   //===--------------------------------------------------------------------===//
192   // LiveIn/LiveOut Management
193   //===--------------------------------------------------------------------===//
194   
195   /// addLiveIn/Out - Add the specified register as a live in/out.  Note that it
196   /// is an error to add the same register to the same set more than once.
197   void addLiveIn(unsigned Reg, unsigned vreg = 0) {
198     LiveIns.push_back(std::make_pair(Reg, vreg));
199   }
200   void addLiveOut(unsigned Reg) { LiveOuts.push_back(Reg); }
201   
202   // Iteration support for live in/out sets.  These sets are kept in sorted
203   // order by their register number.
204   typedef std::vector<std::pair<unsigned,unsigned> >::const_iterator
205   livein_iterator;
206   typedef std::vector<unsigned>::const_iterator liveout_iterator;
207   livein_iterator livein_begin() const { return LiveIns.begin(); }
208   livein_iterator livein_end()   const { return LiveIns.end(); }
209   bool            livein_empty() const { return LiveIns.empty(); }
210   liveout_iterator liveout_begin() const { return LiveOuts.begin(); }
211   liveout_iterator liveout_end()   const { return LiveOuts.end(); }
212   bool             liveout_empty() const { return LiveOuts.empty(); }
213
214   bool isLiveIn(unsigned Reg) const {
215     for (livein_iterator I = livein_begin(), E = livein_end(); I != E; ++I)
216       if (I->first == Reg || I->second == Reg)
217         return true;
218     return false;
219   }
220
221 private:
222   void HandleVRegListReallocation();
223   
224 public:
225   /// defusechain_iterator - This class provides iterator support for machine
226   /// operands in the function that use or define a specific register.  If
227   /// ReturnUses is true it returns uses of registers, if ReturnDefs is true it
228   /// returns defs.  If neither are true then you are silly and it always
229   /// returns end().
230   template<bool ReturnUses, bool ReturnDefs>
231   class defusechain_iterator
232     : public forward_iterator<MachineInstr, ptrdiff_t> {
233     MachineOperand *Op;
234     explicit defusechain_iterator(MachineOperand *op) : Op(op) {
235       // If the first node isn't one we're interested in, advance to one that
236       // we are interested in.
237       if (op) {
238         if ((!ReturnUses && op->isUse()) ||
239             (!ReturnDefs && op->isDef()))
240           ++*this;
241       }
242     }
243     friend class MachineRegisterInfo;
244   public:
245     typedef forward_iterator<MachineInstr, ptrdiff_t>::reference reference;
246     typedef forward_iterator<MachineInstr, ptrdiff_t>::pointer pointer;
247     
248     defusechain_iterator(const defusechain_iterator &I) : Op(I.Op) {}
249     defusechain_iterator() : Op(0) {}
250     
251     bool operator==(const defusechain_iterator &x) const {
252       return Op == x.Op;
253     }
254     bool operator!=(const defusechain_iterator &x) const {
255       return !operator==(x);
256     }
257     
258     /// atEnd - return true if this iterator is equal to reg_end() on the value.
259     bool atEnd() const { return Op == 0; }
260     
261     // Iterator traversal: forward iteration only
262     defusechain_iterator &operator++() {          // Preincrement
263       assert(Op && "Cannot increment end iterator!");
264       Op = Op->getNextOperandForReg();
265       
266       // If this is an operand we don't care about, skip it.
267       while (Op && ((!ReturnUses && Op->isUse()) || 
268                     (!ReturnDefs && Op->isDef())))
269         Op = Op->getNextOperandForReg();
270       
271       return *this;
272     }
273     defusechain_iterator operator++(int) {        // Postincrement
274       defusechain_iterator tmp = *this; ++*this; return tmp;
275     }
276     
277     MachineOperand &getOperand() const {
278       assert(Op && "Cannot dereference end iterator!");
279       return *Op;
280     }
281     
282     /// getOperandNo - Return the operand # of this MachineOperand in its
283     /// MachineInstr.
284     unsigned getOperandNo() const {
285       assert(Op && "Cannot dereference end iterator!");
286       return Op - &Op->getParent()->getOperand(0);
287     }
288     
289     // Retrieve a reference to the current operand.
290     MachineInstr &operator*() const {
291       assert(Op && "Cannot dereference end iterator!");
292       return *Op->getParent();
293     }
294     
295     MachineInstr *operator->() const {
296       assert(Op && "Cannot dereference end iterator!");
297       return Op->getParent();
298     }
299   };
300   
301 };
302
303 } // End llvm namespace
304
305 #endif