8938330fad673f1e612c682a7abeb325e06f7585
[oota-llvm.git] / include / llvm / CodeGen / LiveVariables.h
1 //===-- llvm/CodeGen/LiveVariables.h - Live Variable Analysis ---*- 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 implements the LiveVariable analysis pass.  For each machine
11 // instruction in the function, this pass calculates the set of registers that
12 // are immediately dead after the instruction (i.e., the instruction calculates
13 // the value, but it is never used) and the set of registers that are used by
14 // the instruction, but are never used after the instruction (i.e., they are
15 // killed).
16 //
17 // This class computes live variables using are sparse implementation based on
18 // the machine code SSA form.  This class computes live variable information for
19 // each virtual and _register allocatable_ physical register in a function.  It
20 // uses the dominance properties of SSA form to efficiently compute live
21 // variables for virtual registers, and assumes that physical registers are only
22 // live within a single basic block (allowing it to do a single local analysis
23 // to resolve physical register lifetimes in each basic block).  If a physical
24 // register is not register allocatable, it is not tracked.  This is useful for
25 // things like the stack pointer and condition codes.
26 //
27 //===----------------------------------------------------------------------===//
28
29 #ifndef LLVM_CODEGEN_LIVEVARIABLES_H
30 #define LLVM_CODEGEN_LIVEVARIABLES_H
31
32 #include "llvm/CodeGen/MachineFunctionPass.h"
33 #include "llvm/ADT/BitVector.h"
34 #include "llvm/ADT/SmallSet.h"
35 #include "llvm/ADT/SmallVector.h"
36 #include <map>
37
38 namespace llvm {
39
40 class MRegisterInfo;
41
42 class LiveVariables : public MachineFunctionPass {
43 public:
44   static char ID; // Pass identification, replacement for typeid
45   LiveVariables() : MachineFunctionPass((intptr_t)&ID) {}
46
47   /// VarInfo - This represents the regions where a virtual register is live in
48   /// the program.  We represent this with three different pieces of
49   /// information: the instruction that uniquely defines the value, the set of
50   /// blocks the instruction is live into and live out of, and the set of 
51   /// non-phi instructions that are the last users of the value.
52   ///
53   /// In the common case where a value is defined and killed in the same block,
54   /// DefInst is the defining inst, there is one killing instruction, and 
55   /// AliveBlocks is empty.
56   ///
57   /// Otherwise, the value is live out of the block.  If the value is live
58   /// across any blocks, these blocks are listed in AliveBlocks.  Blocks where
59   /// the liveness range ends are not included in AliveBlocks, instead being
60   /// captured by the Kills set.  In these blocks, the value is live into the
61   /// block (unless the value is defined and killed in the same block) and lives
62   /// until the specified instruction.  Note that there cannot ever be a value
63   /// whose Kills set contains two instructions from the same basic block.
64   ///
65   /// PHI nodes complicate things a bit.  If a PHI node is the last user of a
66   /// value in one of its predecessor blocks, it is not listed in the kills set,
67   /// but does include the predecessor block in the AliveBlocks set (unless that
68   /// block also defines the value).  This leads to the (perfectly sensical)
69   /// situation where a value is defined in a block, and the last use is a phi
70   /// node in the successor.  In this case, DefInst will be the defining
71   /// instruction, AliveBlocks is empty (the value is not live across any 
72   /// blocks) and Kills is empty (phi nodes are not included).  This is sensical
73   /// because the value must be live to the end of the block, but is not live in
74   /// any successor blocks.
75   struct VarInfo {
76     /// DefInst - The machine instruction that defines this register.
77     ///
78     MachineInstr *DefInst;
79
80     /// AliveBlocks - Set of blocks of which this value is alive completely
81     /// through.  This is a bit set which uses the basic block number as an
82     /// index.
83     ///
84     BitVector AliveBlocks;
85
86     /// UsedBlocks - Set of blocks of which this value is actually used. This
87     /// is a bit set which uses the basic block number as an index.
88     BitVector UsedBlocks;
89
90     /// NumUses - Number of uses of this register across the entire function.
91     ///
92     unsigned NumUses;
93
94     /// Kills - List of MachineInstruction's which are the last use of this
95     /// virtual register (kill it) in their basic block.
96     ///
97     std::vector<MachineInstr*> Kills;
98
99     VarInfo() : DefInst(0), NumUses(0) {}
100
101     /// removeKill - Delete a kill corresponding to the specified
102     /// machine instruction. Returns true if there was a kill
103     /// corresponding to this instruction, false otherwise.
104     bool removeKill(MachineInstr *MI) {
105       for (std::vector<MachineInstr*>::iterator i = Kills.begin(),
106              e = Kills.end(); i != e; ++i)
107         if (*i == MI) {
108           Kills.erase(i);
109           return true;
110         }
111       return false;
112     }
113     
114     void dump() const;
115   };
116
117 private:
118   /// VirtRegInfo - This list is a mapping from virtual register number to
119   /// variable information.  FirstVirtualRegister is subtracted from the virtual
120   /// register number before indexing into this list.
121   ///
122   std::vector<VarInfo> VirtRegInfo;
123
124   /// ReservedRegisters - This vector keeps track of which registers
125   /// are reserved register which are not allocatable by the target machine.
126   /// We can not track liveness for values that are in this set.
127   ///
128   BitVector ReservedRegisters;
129
130 private:   // Intermediate data structures
131   MachineFunction *MF;
132
133   const MRegisterInfo *RegInfo;
134
135   // PhysRegInfo - Keep track of which instruction was the last def/use of a
136   // physical register. This is a purely local property, because all physical
137   // register references as presumed dead across basic blocks.
138   MachineInstr **PhysRegInfo;
139
140   // PhysRegUsed - Keep track whether the physical register has been used after
141   // its last definition. This is local property.
142   bool          *PhysRegUsed;
143
144   // PhysRegPartUse - Keep track of which instruction was the last partial use
145   // of a physical register (e.g. on X86 a def of EAX followed by a use of AX).
146   // This is a purely local property.
147   MachineInstr **PhysRegPartUse;
148
149   // PhysRegPartDef - Keep track of a list of instructions which "partially"
150   // defined the physical register (e.g. on X86 AX partially defines EAX).
151   // These are turned into use/mod/write if there is a use of the register
152   // later in the same block. This is local property.
153   SmallVector<MachineInstr*, 4> *PhysRegPartDef;
154
155   SmallVector<unsigned, 4> *PHIVarInfo;
156
157   /// addRegisterKilled - We have determined MI kills a register. Look for the
158   /// operand that uses it and mark it as IsKill. If AddIfNotFound is true,
159   /// add a implicit operand if it's not found. Returns true if the operand
160   /// exists / is added.
161   bool addRegisterKilled(unsigned IncomingReg, MachineInstr *MI,
162                          bool AddIfNotFound = false);
163
164   /// addRegisterDead - We have determined MI defined a register without a use.
165   /// Look for the operand that defines it and mark it as IsDead. If
166   /// AddIfNotFound is true, add a implicit operand if it's not found. Returns
167   /// true if the operand exists / is added.
168   bool addRegisterDead(unsigned IncomingReg, MachineInstr *MI,
169                        bool AddIfNotFound = false);
170
171   void addRegisterKills(unsigned Reg, MachineInstr *MI,
172                         SmallSet<unsigned, 4> &SubKills);
173
174   /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
175   /// uses. Pay special attention to the sub-register uses which may come below
176   /// the last use of the whole register.
177   bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI,
178                          SmallSet<unsigned, 4> &SubKills);
179   bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
180   void HandlePhysRegUse(unsigned Reg, MachineInstr *MI);
181   void HandlePhysRegDef(unsigned Reg, MachineInstr *MI);
182
183   /// analyzePHINodes - Gather information about the PHI nodes in here. In
184   /// particular, we want to map the variable information of a virtual
185   /// register which is used in a PHI node. We map that to the BB the vreg
186   /// is coming from.
187   void analyzePHINodes(const MachineFunction& Fn);
188 public:
189
190   virtual bool runOnMachineFunction(MachineFunction &MF);
191
192   /// KillsRegister - Return true if the specified instruction kills the
193   /// specified register.
194   bool KillsRegister(MachineInstr *MI, unsigned Reg) const;
195   
196   /// RegisterDefIsDead - Return true if the specified instruction defines the
197   /// specified register, but that definition is dead.
198   bool RegisterDefIsDead(MachineInstr *MI, unsigned Reg) const;
199
200   /// ModifiesRegister - Return true if the specified instruction modifies the
201   /// specified register.
202   bool ModifiesRegister(MachineInstr *MI, unsigned Reg) const;
203   
204   //===--------------------------------------------------------------------===//
205   //  API to update live variable information
206
207   /// instructionChanged - When the address of an instruction changes, this
208   /// method should be called so that live variables can update its internal
209   /// data structures.  This removes the records for OldMI, transfering them to
210   /// the records for NewMI.
211   void instructionChanged(MachineInstr *OldMI, MachineInstr *NewMI);
212
213   /// addVirtualRegisterKilled - Add information about the fact that the
214   /// specified register is killed after being used by the specified
215   /// instruction. If AddIfNotFound is true, add a implicit operand if it's
216   /// not found.
217   void addVirtualRegisterKilled(unsigned IncomingReg, MachineInstr *MI,
218                                 bool AddIfNotFound = false) {
219     if (addRegisterKilled(IncomingReg, MI, AddIfNotFound))
220       getVarInfo(IncomingReg).Kills.push_back(MI); 
221  }
222
223   /// removeVirtualRegisterKilled - Remove the specified virtual
224   /// register from the live variable information. Returns true if the
225   /// variable was marked as killed by the specified instruction,
226   /// false otherwise.
227   bool removeVirtualRegisterKilled(unsigned reg,
228                                    MachineBasicBlock *MBB,
229                                    MachineInstr *MI) {
230     if (!getVarInfo(reg).removeKill(MI))
231       return false;
232
233     bool Removed = false;
234     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
235       MachineOperand &MO = MI->getOperand(i);
236       if (MO.isRegister() && MO.isKill() && MO.getReg() == reg) {
237         MO.unsetIsKill();
238         Removed = true;
239         break;
240       }
241     }
242
243     assert(Removed && "Register is not used by this instruction!");
244     return true;
245   }
246
247   /// removeVirtualRegistersKilled - Remove all killed info for the specified
248   /// instruction.
249   void removeVirtualRegistersKilled(MachineInstr *MI);
250   
251   /// addVirtualRegisterDead - Add information about the fact that the specified
252   /// register is dead after being used by the specified instruction. If
253   /// AddIfNotFound is true, add a implicit operand if it's not found.
254   void addVirtualRegisterDead(unsigned IncomingReg, MachineInstr *MI,
255                               bool AddIfNotFound = false) {
256     if (addRegisterDead(IncomingReg, MI, AddIfNotFound))
257         getVarInfo(IncomingReg).Kills.push_back(MI);
258   }
259
260   /// removeVirtualRegisterDead - Remove the specified virtual
261   /// register from the live variable information. Returns true if the
262   /// variable was marked dead at the specified instruction, false
263   /// otherwise.
264   bool removeVirtualRegisterDead(unsigned reg,
265                                  MachineBasicBlock *MBB,
266                                  MachineInstr *MI) {
267     if (!getVarInfo(reg).removeKill(MI))
268       return false;
269
270     bool Removed = false;
271     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
272       MachineOperand &MO = MI->getOperand(i);
273       if (MO.isRegister() && MO.isDef() && MO.getReg() == reg) {
274         MO.unsetIsDead();
275         Removed = true;
276         break;
277       }
278     }
279     assert(Removed && "Register is not defined by this instruction!");
280     return true;
281   }
282
283   /// removeVirtualRegistersDead - Remove all of the dead registers for the
284   /// specified instruction from the live variable information.
285   void removeVirtualRegistersDead(MachineInstr *MI);
286   
287   virtual void getAnalysisUsage(AnalysisUsage &AU) const {
288     AU.setPreservesAll();
289   }
290
291   virtual void releaseMemory() {
292     VirtRegInfo.clear();
293   }
294
295   /// getVarInfo - Return the VarInfo structure for the specified VIRTUAL
296   /// register.
297   VarInfo &getVarInfo(unsigned RegIdx);
298
299   void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB);
300   void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB,
301                                std::vector<MachineBasicBlock*> &WorkList);
302   void HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
303                         MachineInstr *MI);
304 };
305
306 } // End llvm namespace
307
308 #endif