71062a2a51965594c147955fa742e37d95b99c15
[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 is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the LiveVariables 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 a 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/MachineBasicBlock.h"
33 #include "llvm/CodeGen/MachineFunctionPass.h"
34 #include "llvm/CodeGen/MachineInstr.h"
35 #include "llvm/Target/TargetRegisterInfo.h"
36 #include "llvm/ADT/BitVector.h"
37 #include "llvm/ADT/DenseMap.h"
38 #include "llvm/ADT/IndexedMap.h"
39 #include "llvm/ADT/SmallSet.h"
40 #include "llvm/ADT/SmallVector.h"
41 #include "llvm/ADT/SparseBitVector.h"
42
43 namespace llvm {
44
45 class MachineRegisterInfo;
46 class TargetRegisterInfo;
47
48 class LiveVariables : public MachineFunctionPass {
49 public:
50   static char ID; // Pass identification, replacement for typeid
51   LiveVariables() : MachineFunctionPass(ID) {
52     initializeLiveVariablesPass(*PassRegistry::getPassRegistry());
53   }
54
55   /// VarInfo - This represents the regions where a virtual register is live in
56   /// the program.  We represent this with three different pieces of
57   /// information: the set of blocks in which the instruction is live
58   /// throughout, the set of blocks in which the instruction is actually used,
59   /// and the set of non-phi instructions that are the last users of the value.
60   ///
61   /// In the common case where a value is defined and killed in the same block,
62   /// There is one killing instruction, and AliveBlocks is empty.
63   ///
64   /// Otherwise, the value is live out of the block.  If the value is live
65   /// throughout any blocks, these blocks are listed in AliveBlocks.  Blocks
66   /// where the liveness range ends are not included in AliveBlocks, instead
67   /// being captured by the Kills set.  In these blocks, the value is live into
68   /// the block (unless the value is defined and killed in the same block) and
69   /// lives until the specified instruction.  Note that there cannot ever be a
70   /// value whose Kills set contains two instructions from the same basic block.
71   ///
72   /// PHI nodes complicate things a bit.  If a PHI node is the last user of a
73   /// value in one of its predecessor blocks, it is not listed in the kills set,
74   /// but does include the predecessor block in the AliveBlocks set (unless that
75   /// block also defines the value).  This leads to the (perfectly sensical)
76   /// situation where a value is defined in a block, and the last use is a phi
77   /// node in the successor.  In this case, AliveBlocks is empty (the value is
78   /// not live across any  blocks) and Kills is empty (phi nodes are not
79   /// included). This is sensical because the value must be live to the end of
80   /// the block, but is not live in any successor blocks.
81   struct VarInfo {
82     /// AliveBlocks - Set of blocks in which this value is alive completely
83     /// through.  This is a bit set which uses the basic block number as an
84     /// index.
85     ///
86     SparseBitVector<> AliveBlocks;
87
88     /// Kills - List of MachineInstruction's which are the last use of this
89     /// virtual register (kill it) in their basic block.
90     ///
91     std::vector<MachineInstr*> Kills;
92
93     /// removeKill - Delete a kill corresponding to the specified
94     /// machine instruction. Returns true if there was a kill
95     /// corresponding to this instruction, false otherwise.
96     bool removeKill(MachineInstr *MI) {
97       std::vector<MachineInstr*>::iterator
98         I = std::find(Kills.begin(), Kills.end(), MI);
99       if (I == Kills.end())
100         return false;
101       Kills.erase(I);
102       return true;
103     }
104
105     /// findKill - Find a kill instruction in MBB. Return NULL if none is found.
106     MachineInstr *findKill(const MachineBasicBlock *MBB) const;
107
108     /// isLiveIn - Is Reg live in to MBB? This means that Reg is live through
109     /// MBB, or it is killed in MBB. If Reg is only used by PHI instructions in
110     /// MBB, it is not considered live in.
111     bool isLiveIn(const MachineBasicBlock &MBB,
112                   unsigned Reg,
113                   MachineRegisterInfo &MRI);
114
115     void dump() const;
116   };
117
118 private:
119   /// VirtRegInfo - This list is a mapping from virtual register number to
120   /// variable information.
121   ///
122   IndexedMap<VarInfo, VirtReg2IndexFunctor> VirtRegInfo;
123
124   /// PHIJoins - list of virtual registers that are PHI joins. These registers
125   /// may have multiple definitions, and they require special handling when
126   /// building live intervals.
127   SparseBitVector<> PHIJoins;
128
129   /// ReservedRegisters - This vector keeps track of which registers
130   /// are reserved register which are not allocatable by the target machine.
131   /// We can not track liveness for values that are in this set.
132   ///
133   BitVector ReservedRegisters;
134
135 private:   // Intermediate data structures
136   MachineFunction *MF;
137
138   MachineRegisterInfo* MRI;
139
140   const TargetRegisterInfo *TRI;
141
142   // PhysRegInfo - Keep track of which instruction was the last def of a
143   // physical register. This is a purely local property, because all physical
144   // register references are presumed dead across basic blocks.
145   MachineInstr **PhysRegDef;
146
147   // PhysRegInfo - Keep track of which instruction was the last use of a
148   // physical register. This is a purely local property, because all physical
149   // register references are presumed dead across basic blocks.
150   MachineInstr **PhysRegUse;
151
152   SmallVector<unsigned, 4> *PHIVarInfo;
153
154   // DistanceMap - Keep track the distance of a MI from the start of the
155   // current basic block.
156   DenseMap<MachineInstr*, unsigned> DistanceMap;
157
158   /// HandlePhysRegKill - Add kills of Reg and its sub-registers to the
159   /// uses. Pay special attention to the sub-register uses which may come below
160   /// the last use of the whole register.
161   bool HandlePhysRegKill(unsigned Reg, MachineInstr *MI);
162
163   void HandlePhysRegUse(unsigned Reg, MachineInstr *MI);
164   void HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
165                         SmallVector<unsigned, 4> &Defs);
166   void UpdatePhysRegDefs(MachineInstr *MI, SmallVector<unsigned, 4> &Defs);
167
168   /// FindLastRefOrPartRef - Return the last reference or partial reference of
169   /// the specified register.
170   MachineInstr *FindLastRefOrPartRef(unsigned Reg);
171
172   /// FindLastPartialDef - Return the last partial def of the specified
173   /// register. Also returns the sub-registers that're defined by the
174   /// instruction.
175   MachineInstr *FindLastPartialDef(unsigned Reg,
176                                    SmallSet<unsigned,4> &PartDefRegs);
177
178   /// analyzePHINodes - Gather information about the PHI nodes in here. In
179   /// particular, we want to map the variable information of a virtual
180   /// register which is used in a PHI node. We map that to the BB the vreg
181   /// is coming from.
182   void analyzePHINodes(const MachineFunction& Fn);
183 public:
184
185   virtual bool runOnMachineFunction(MachineFunction &MF);
186
187   /// RegisterDefIsDead - Return true if the specified instruction defines the
188   /// specified register, but that definition is dead.
189   bool RegisterDefIsDead(MachineInstr *MI, unsigned Reg) const;
190
191   //===--------------------------------------------------------------------===//
192   //  API to update live variable information
193
194   /// replaceKillInstruction - Update register kill info by replacing a kill
195   /// instruction with a new one.
196   void replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
197                               MachineInstr *NewMI);
198
199   /// addVirtualRegisterKilled - Add information about the fact that the
200   /// specified register is killed after being used by the specified
201   /// instruction. If AddIfNotFound is true, add a implicit operand if it's
202   /// not found.
203   void addVirtualRegisterKilled(unsigned IncomingReg, MachineInstr *MI,
204                                 bool AddIfNotFound = false) {
205     if (MI->addRegisterKilled(IncomingReg, TRI, AddIfNotFound))
206       getVarInfo(IncomingReg).Kills.push_back(MI); 
207   }
208
209   /// removeVirtualRegisterKilled - Remove the specified kill of the virtual
210   /// register from the live variable information. Returns true if the
211   /// variable was marked as killed by the specified instruction,
212   /// false otherwise.
213   bool removeVirtualRegisterKilled(unsigned reg, MachineInstr *MI) {
214     if (!getVarInfo(reg).removeKill(MI))
215       return false;
216
217     bool Removed = false;
218     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
219       MachineOperand &MO = MI->getOperand(i);
220       if (MO.isReg() && MO.isKill() && MO.getReg() == reg) {
221         MO.setIsKill(false);
222         Removed = true;
223         break;
224       }
225     }
226
227     assert(Removed && "Register is not used by this instruction!");
228     (void)Removed;
229     return true;
230   }
231
232   /// removeVirtualRegistersKilled - Remove all killed info for the specified
233   /// instruction.
234   void removeVirtualRegistersKilled(MachineInstr *MI);
235
236   /// addVirtualRegisterDead - Add information about the fact that the specified
237   /// register is dead after being used by the specified instruction. If
238   /// AddIfNotFound is true, add a implicit operand if it's not found.
239   void addVirtualRegisterDead(unsigned IncomingReg, MachineInstr *MI,
240                               bool AddIfNotFound = false) {
241     if (MI->addRegisterDead(IncomingReg, TRI, AddIfNotFound))
242       getVarInfo(IncomingReg).Kills.push_back(MI);
243   }
244
245   /// removeVirtualRegisterDead - Remove the specified kill of the virtual
246   /// register from the live variable information. Returns true if the
247   /// variable was marked dead at the specified instruction, false
248   /// otherwise.
249   bool removeVirtualRegisterDead(unsigned reg, MachineInstr *MI) {
250     if (!getVarInfo(reg).removeKill(MI))
251       return false;
252
253     bool Removed = false;
254     for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
255       MachineOperand &MO = MI->getOperand(i);
256       if (MO.isReg() && MO.isDef() && MO.getReg() == reg) {
257         MO.setIsDead(false);
258         Removed = true;
259         break;
260       }
261     }
262     assert(Removed && "Register is not defined by this instruction!");
263     (void)Removed;
264     return true;
265   }
266   
267   void getAnalysisUsage(AnalysisUsage &AU) const;
268
269   virtual void releaseMemory() {
270     VirtRegInfo.clear();
271   }
272
273   /// getVarInfo - Return the VarInfo structure for the specified VIRTUAL
274   /// register.
275   VarInfo &getVarInfo(unsigned RegIdx);
276
277   void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
278                                MachineBasicBlock *BB);
279   void MarkVirtRegAliveInBlock(VarInfo& VRInfo, MachineBasicBlock* DefBlock,
280                                MachineBasicBlock *BB,
281                                std::vector<MachineBasicBlock*> &WorkList);
282   void HandleVirtRegDef(unsigned reg, MachineInstr *MI);
283   void HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
284                         MachineInstr *MI);
285
286   bool isLiveIn(unsigned Reg, const MachineBasicBlock &MBB) {
287     return getVarInfo(Reg).isLiveIn(MBB, Reg, *MRI);
288   }
289
290   /// isLiveOut - Determine if Reg is live out from MBB, when not considering
291   /// PHI nodes. This means that Reg is either killed by a successor block or
292   /// passed through one.
293   bool isLiveOut(unsigned Reg, const MachineBasicBlock &MBB);
294
295   /// addNewBlock - Add a new basic block BB between DomBB and SuccBB. All
296   /// variables that are live out of DomBB and live into SuccBB will be marked
297   /// as passing live through BB. This method assumes that the machine code is
298   /// still in SSA form.
299   void addNewBlock(MachineBasicBlock *BB,
300                    MachineBasicBlock *DomBB,
301                    MachineBasicBlock *SuccBB);
302
303   /// isPHIJoin - Return true if Reg is a phi join register.
304   bool isPHIJoin(unsigned Reg) { return PHIJoins.test(Reg); }
305
306   /// setPHIJoin - Mark Reg as a phi join register.
307   void setPHIJoin(unsigned Reg) { PHIJoins.set(Reg); }
308 };
309
310 } // End llvm namespace
311
312 #endif