blob: 41b891d30f23b3ca0aaaf4acaa90f53d1d260dbe [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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#include "llvm/CodeGen/LiveVariables.h"
30#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner1b989192007-12-31 04:13:23 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Owen Andersonfb6914f2008-08-04 23:54:43 +000032#include "llvm/CodeGen/Passes.h"
David Greene28806ab2010-01-04 23:02:10 +000033#include "llvm/Support/Debug.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000034#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/Target/TargetInstrInfo.h"
36#include "llvm/Target/TargetMachine.h"
37#include "llvm/ADT/DepthFirstIterator.h"
38#include "llvm/ADT/SmallPtrSet.h"
Owen Anderson9a4cb152008-06-27 07:05:59 +000039#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041#include <algorithm>
42using namespace llvm;
43
44char LiveVariables::ID = 0;
45static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis");
46
Owen Andersonfb6914f2008-08-04 23:54:43 +000047
48void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
49 AU.addRequiredID(UnreachableMachineBlockElimID);
50 AU.setPreservesAll();
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000051 MachineFunctionPass::getAnalysisUsage(AU);
Owen Andersonfb6914f2008-08-04 23:54:43 +000052}
53
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000054MachineInstr *
55LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
56 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
57 if (Kills[i]->getParent() == MBB)
58 return Kills[i];
59 return NULL;
60}
61
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062void LiveVariables::VarInfo::dump() const {
David Greene28806ab2010-01-04 23:02:10 +000063 dbgs() << " Alive in blocks: ";
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000064 for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
65 E = AliveBlocks.end(); I != E; ++I)
David Greene28806ab2010-01-04 23:02:10 +000066 dbgs() << *I << ", ";
67 dbgs() << "\n Killed by:";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068 if (Kills.empty())
David Greene28806ab2010-01-04 23:02:10 +000069 dbgs() << " No instructions.\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 else {
71 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
David Greene28806ab2010-01-04 23:02:10 +000072 dbgs() << "\n #" << i << ": " << *Kills[i];
73 dbgs() << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 }
75}
76
Bill Wendlingb88bca92008-02-20 06:10:21 +000077/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Dan Gohman1e57df32008-02-10 18:45:23 +000079 assert(TargetRegisterInfo::isVirtualRegister(RegIdx) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 "getVarInfo: not a virtual register!");
Dan Gohman1e57df32008-02-10 18:45:23 +000081 RegIdx -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 if (RegIdx >= VirtRegInfo.size()) {
83 if (RegIdx >= 2*VirtRegInfo.size())
84 VirtRegInfo.resize(RegIdx*2);
85 else
86 VirtRegInfo.resize(2*VirtRegInfo.size());
87 }
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000088 return VirtRegInfo[RegIdx];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089}
90
Owen Anderson77d80492008-01-15 22:58:11 +000091void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
92 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093 MachineBasicBlock *MBB,
94 std::vector<MachineBasicBlock*> &WorkList) {
95 unsigned BBNum = MBB->getNumber();
Owen Anderson92a609a2008-01-15 22:02:46 +000096
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 // Check to see if this basic block is one of the killing blocks. If so,
Bill Wendlingb88bca92008-02-20 06:10:21 +000098 // remove it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
100 if (VRInfo.Kills[i]->getParent() == MBB) {
101 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
102 break;
103 }
Owen Anderson92a609a2008-01-15 22:02:46 +0000104
Owen Anderson77d80492008-01-15 22:58:11 +0000105 if (MBB == DefBlock) return; // Terminate recursion
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000107 if (VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 return; // We already know the block is live
109
110 // Mark the variable known alive in this bb
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000111 VRInfo.AliveBlocks.set(BBNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112
113 for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(),
114 E = MBB->pred_rend(); PI != E; ++PI)
115 WorkList.push_back(*PI);
116}
117
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000118void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Owen Anderson77d80492008-01-15 22:58:11 +0000119 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 MachineBasicBlock *MBB) {
121 std::vector<MachineBasicBlock*> WorkList;
Owen Anderson77d80492008-01-15 22:58:11 +0000122 MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000123
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 while (!WorkList.empty()) {
125 MachineBasicBlock *Pred = WorkList.back();
126 WorkList.pop_back();
Owen Anderson77d80492008-01-15 22:58:11 +0000127 MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 }
129}
130
Owen Anderson92a609a2008-01-15 22:02:46 +0000131void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 MachineInstr *MI) {
Evan Cheng251fa152008-04-02 18:04:08 +0000133 assert(MRI->getVRegDef(reg) && "Register use before def!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134
Owen Anderson721b2cc2007-11-08 01:20:48 +0000135 unsigned BBNum = MBB->getNumber();
136
Owen Anderson92a609a2008-01-15 22:02:46 +0000137 VarInfo& VRInfo = getVarInfo(reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 VRInfo.NumUses++;
139
Bill Wendlingb88bca92008-02-20 06:10:21 +0000140 // Check to see if this basic block is already a kill block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Bill Wendlingb88bca92008-02-20 06:10:21 +0000142 // Yes, this register is killed in this basic block already. Increase the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 // live range by updating the kill instruction.
144 VRInfo.Kills.back() = MI;
145 return;
146 }
147
148#ifndef NDEBUG
149 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
150 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
151#endif
152
Bill Wendling09d55662008-06-23 23:41:14 +0000153 // This situation can occur:
154 //
155 // ,------.
156 // | |
157 // | v
158 // | t2 = phi ... t1 ...
159 // | |
160 // | v
161 // | t1 = ...
162 // | ... = ... t1 ...
163 // | |
164 // `------'
165 //
166 // where there is a use in a PHI node that's a predecessor to the defining
167 // block. We don't want to mark all predecessors as having the value "alive"
168 // in this case.
169 if (MBB == MRI->getVRegDef(reg)->getParent()) return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170
Bill Wendlingb88bca92008-02-20 06:10:21 +0000171 // Add a new kill entry for this basic block. If this virtual register is
172 // already marked as alive in this basic block, that means it is alive in at
173 // least one of the successor blocks, it's not a kill.
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000174 if (!VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 VRInfo.Kills.push_back(MI);
176
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000177 // Update all dominating blocks to mark them as "known live".
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
179 E = MBB->pred_end(); PI != E; ++PI)
Evan Cheng251fa152008-04-02 18:04:08 +0000180 MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181}
182
Dan Gohman706847e2008-09-21 21:11:41 +0000183void LiveVariables::HandleVirtRegDef(unsigned Reg, MachineInstr *MI) {
184 VarInfo &VRInfo = getVarInfo(Reg);
185
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000186 if (VRInfo.AliveBlocks.empty())
Dan Gohman706847e2008-09-21 21:11:41 +0000187 // If vr is not alive in any block, then defaults to dead.
188 VRInfo.Kills.push_back(MI);
189}
190
Evan Cheng1c3ee662008-04-16 09:46:40 +0000191/// FindLastPartialDef - Return the last partial def of the specified register.
Evan Chengcd216d52009-09-22 08:34:46 +0000192/// Also returns the sub-registers that're defined by the instruction.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000193MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg,
Evan Chengcd216d52009-09-22 08:34:46 +0000194 SmallSet<unsigned,4> &PartDefRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000195 unsigned LastDefReg = 0;
196 unsigned LastDefDist = 0;
197 MachineInstr *LastDef = NULL;
198 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
199 unsigned SubReg = *SubRegs; ++SubRegs) {
200 MachineInstr *Def = PhysRegDef[SubReg];
201 if (!Def)
202 continue;
203 unsigned Dist = DistanceMap[Def];
204 if (Dist > LastDefDist) {
205 LastDefReg = SubReg;
206 LastDef = Def;
207 LastDefDist = Dist;
208 }
209 }
Evan Chengcd216d52009-09-22 08:34:46 +0000210
211 if (!LastDef)
212 return 0;
213
214 PartDefRegs.insert(LastDefReg);
215 for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
216 MachineOperand &MO = LastDef->getOperand(i);
217 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
218 continue;
219 unsigned DefReg = MO.getReg();
220 if (TRI->isSubRegister(Reg, DefReg)) {
221 PartDefRegs.insert(DefReg);
222 for (const unsigned *SubRegs = TRI->getSubRegisters(DefReg);
223 unsigned SubReg = *SubRegs; ++SubRegs)
224 PartDefRegs.insert(SubReg);
225 }
226 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000227 return LastDef;
228}
229
Bill Wendling85b03762008-02-20 09:15:16 +0000230/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
231/// implicit defs to a machine instruction if there was an earlier def of its
232/// super-register.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Evan Cheng5cec5f62009-11-13 20:36:40 +0000234 MachineInstr *LastDef = PhysRegDef[Reg];
Evan Cheng1c3ee662008-04-16 09:46:40 +0000235 // If there was a previous use or a "full" def all is well.
Evan Cheng5cec5f62009-11-13 20:36:40 +0000236 if (!LastDef && !PhysRegUse[Reg]) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000237 // Otherwise, the last sub-register def implicitly defines this register.
238 // e.g.
239 // AH =
240 // AL = ... <imp-def EAX>, <imp-kill AH>
241 // = AH
242 // ...
243 // = EAX
244 // All of the sub-registers must have been defined before the use of Reg!
Evan Chengcd216d52009-09-22 08:34:46 +0000245 SmallSet<unsigned, 4> PartDefRegs;
246 MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefRegs);
Evan Cheng1c3ee662008-04-16 09:46:40 +0000247 // If LastPartialDef is NULL, it must be using a livein register.
248 if (LastPartialDef) {
249 LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
250 true/*IsImp*/));
251 PhysRegDef[Reg] = LastPartialDef;
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000252 SmallSet<unsigned, 8> Processed;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000253 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
254 unsigned SubReg = *SubRegs; ++SubRegs) {
255 if (Processed.count(SubReg))
256 continue;
Evan Chengcd216d52009-09-22 08:34:46 +0000257 if (PartDefRegs.count(SubReg))
Evan Cheng1c3ee662008-04-16 09:46:40 +0000258 continue;
259 // This part of Reg was defined before the last partial def. It's killed
260 // here.
261 LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
262 false/*IsDef*/,
263 true/*IsImp*/));
264 PhysRegDef[SubReg] = LastPartialDef;
265 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
266 Processed.insert(*SS);
267 }
268 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 }
Evan Cheng5cec5f62009-11-13 20:36:40 +0000270 else if (LastDef && !PhysRegUse[Reg] &&
271 !LastDef->findRegisterDefOperand(Reg))
272 // Last def defines the super register, add an implicit def of reg.
273 LastDef->addOperand(MachineOperand::CreateReg(Reg,
274 true/*IsDef*/, true/*IsImp*/));
Bill Wendlingb88bca92008-02-20 06:10:21 +0000275
Evan Cheng1c3ee662008-04-16 09:46:40 +0000276 // Remember this use.
277 PhysRegUse[Reg] = MI;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000278 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000279 unsigned SubReg = *SubRegs; ++SubRegs)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000280 PhysRegUse[SubReg] = MI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281}
282
Evan Cheng1e996142009-12-01 00:44:45 +0000283/// FindLastRefOrPartRef - Return the last reference or partial reference of
284/// the specified register.
285MachineInstr *LiveVariables::FindLastRefOrPartRef(unsigned Reg) {
286 MachineInstr *LastDef = PhysRegDef[Reg];
287 MachineInstr *LastUse = PhysRegUse[Reg];
288 if (!LastDef && !LastUse)
Chris Lattner1b6f5792010-06-14 18:28:34 +0000289 return 0;
Evan Cheng1e996142009-12-01 00:44:45 +0000290
291 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
292 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
Evan Cheng1e996142009-12-01 00:44:45 +0000293 unsigned LastPartDefDist = 0;
294 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
295 unsigned SubReg = *SubRegs; ++SubRegs) {
296 MachineInstr *Def = PhysRegDef[SubReg];
297 if (Def && Def != LastDef) {
298 // There was a def of this sub-register in between. This is a partial
299 // def, keep track of the last one.
300 unsigned Dist = DistanceMap[Def];
Benjamin Kramer650c0fa2010-01-07 17:29:08 +0000301 if (Dist > LastPartDefDist)
Evan Cheng1e996142009-12-01 00:44:45 +0000302 LastPartDefDist = Dist;
Benjamin Kramer650c0fa2010-01-07 17:29:08 +0000303 } else if (MachineInstr *Use = PhysRegUse[SubReg]) {
Evan Cheng1e996142009-12-01 00:44:45 +0000304 unsigned Dist = DistanceMap[Use];
305 if (Dist > LastRefOrPartRefDist) {
306 LastRefOrPartRefDist = Dist;
307 LastRefOrPartRef = Use;
308 }
309 }
310 }
311
312 return LastRefOrPartRef;
313}
314
Evan Cheng06df4d02009-01-20 21:25:12 +0000315bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000316 MachineInstr *LastDef = PhysRegDef[Reg];
317 MachineInstr *LastUse = PhysRegUse[Reg];
318 if (!LastDef && !LastUse)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000319 return false;
320
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000321 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000322 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
323 // The whole register is used.
324 // AL =
325 // AH =
326 //
327 // = AX
328 // = AL, AX<imp-use, kill>
329 // AX =
330 //
331 // Or whole register is defined, but not used at all.
332 // AX<dead> =
333 // ...
334 // AX =
335 //
336 // Or whole register is defined, but only partly used.
337 // AX<dead> = AL<imp-def>
338 // = AL<kill>
339 // AX =
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000340 MachineInstr *LastPartDef = 0;
341 unsigned LastPartDefDist = 0;
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000342 SmallSet<unsigned, 8> PartUses;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000343 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
344 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000345 MachineInstr *Def = PhysRegDef[SubReg];
346 if (Def && Def != LastDef) {
347 // There was a def of this sub-register in between. This is a partial
348 // def, keep track of the last one.
349 unsigned Dist = DistanceMap[Def];
350 if (Dist > LastPartDefDist) {
351 LastPartDefDist = Dist;
352 LastPartDef = Def;
353 }
354 continue;
355 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000356 if (MachineInstr *Use = PhysRegUse[SubReg]) {
357 PartUses.insert(SubReg);
358 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
359 PartUses.insert(*SS);
360 unsigned Dist = DistanceMap[Use];
361 if (Dist > LastRefOrPartRefDist) {
362 LastRefOrPartRefDist = Dist;
363 LastRefOrPartRef = Use;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000365 }
366 }
Evan Cheng06df4d02009-01-20 21:25:12 +0000367
Jakob Stoklund Olesen6207e5d2010-03-05 21:49:17 +0000368 if (!PhysRegUse[Reg]) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000369 // Partial uses. Mark register def dead and add implicit def of
370 // sub-registers which are used.
371 // EAX<dead> = op AL<imp-def>
372 // That is, EAX def is dead but AL def extends pass it.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000373 PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
374 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
375 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000376 if (!PartUses.count(SubReg))
377 continue;
378 bool NeedDef = true;
379 if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
380 MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
381 if (MO) {
382 NeedDef = false;
383 assert(!MO->isDead());
Evan Cheng2fe17a52009-07-06 21:34:05 +0000384 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000385 }
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000386 if (NeedDef)
387 PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
388 true/*IsDef*/, true/*IsImp*/));
Evan Cheng1e996142009-12-01 00:44:45 +0000389 MachineInstr *LastSubRef = FindLastRefOrPartRef(SubReg);
390 if (LastSubRef)
391 LastSubRef->addRegisterKilled(SubReg, TRI, true);
392 else {
393 LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
394 PhysRegUse[SubReg] = LastRefOrPartRef;
395 for (const unsigned *SSRegs = TRI->getSubRegisters(SubReg);
396 unsigned SSReg = *SSRegs; ++SSRegs)
397 PhysRegUse[SSReg] = LastRefOrPartRef;
398 }
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000399 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
400 PartUses.erase(*SS);
Evan Cheng1c3ee662008-04-16 09:46:40 +0000401 }
Jakob Stoklund Olesen6207e5d2010-03-05 21:49:17 +0000402 } else if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI) {
403 if (LastPartDef)
404 // The last partial def kills the register.
405 LastPartDef->addOperand(MachineOperand::CreateReg(Reg, false/*IsDef*/,
406 true/*IsImp*/, true/*IsKill*/));
407 else {
408 MachineOperand *MO =
409 LastRefOrPartRef->findRegisterDefOperand(Reg, false, TRI);
410 bool NeedEC = MO->isEarlyClobber() && MO->getReg() != Reg;
411 // If the last reference is the last def, then it's not used at all.
412 // That is, unless we are currently processing the last reference itself.
413 LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
414 if (NeedEC) {
415 // If we are adding a subreg def and the superreg def is marked early
416 // clobber, add an early clobber marker to the subreg def.
417 MO = LastRefOrPartRef->findRegisterDefOperand(Reg);
418 if (MO)
419 MO->setIsEarlyClobber();
420 }
421 }
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000422 } else
Evan Cheng1c3ee662008-04-16 09:46:40 +0000423 LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
424 return true;
425}
426
Evan Chengd062bf72009-09-23 06:28:31 +0000427void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000428 SmallVector<unsigned, 4> &Defs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000429 // What parts of the register are previously defined?
Owen Anderson9a4cb152008-06-27 07:05:59 +0000430 SmallSet<unsigned, 32> Live;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000431 if (PhysRegDef[Reg] || PhysRegUse[Reg]) {
432 Live.insert(Reg);
433 for (const unsigned *SS = TRI->getSubRegisters(Reg); *SS; ++SS)
434 Live.insert(*SS);
435 } else {
436 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
437 unsigned SubReg = *SubRegs; ++SubRegs) {
438 // If a register isn't itself defined, but all parts that make up of it
439 // are defined, then consider it also defined.
440 // e.g.
441 // AL =
442 // AH =
443 // = AX
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000444 if (Live.count(SubReg))
445 continue;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000446 if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) {
447 Live.insert(SubReg);
448 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
449 Live.insert(*SS);
450 }
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000451 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 }
453
Evan Cheng1c3ee662008-04-16 09:46:40 +0000454 // Start from the largest piece, find the last time any part of the register
455 // is referenced.
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000456 HandlePhysRegKill(Reg, MI);
457 // Only some of the sub-registers are used.
458 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
459 unsigned SubReg = *SubRegs; ++SubRegs) {
460 if (!Live.count(SubReg))
461 // Skip if this sub-register isn't defined.
462 continue;
463 HandlePhysRegKill(SubReg, MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 }
465
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000466 if (MI)
467 Defs.push_back(Reg); // Remember this def.
Evan Chengd062bf72009-09-23 06:28:31 +0000468}
469
470void LiveVariables::UpdatePhysRegDefs(MachineInstr *MI,
471 SmallVector<unsigned, 4> &Defs) {
472 while (!Defs.empty()) {
473 unsigned Reg = Defs.back();
474 Defs.pop_back();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000475 PhysRegDef[Reg] = MI;
476 PhysRegUse[Reg] = NULL;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000477 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000479 PhysRegDef[SubReg] = MI;
480 PhysRegUse[SubReg] = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 }
482 }
483}
484
Evan Chengd062bf72009-09-23 06:28:31 +0000485namespace {
486 struct RegSorter {
487 const TargetRegisterInfo *TRI;
488
489 RegSorter(const TargetRegisterInfo *tri) : TRI(tri) { }
490 bool operator()(unsigned A, unsigned B) {
491 if (TRI->isSubRegister(A, B))
492 return true;
493 else if (TRI->isSubRegister(B, A))
494 return false;
495 return A < B;
496 }
497 };
498}
499
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
501 MF = &mf;
Evan Cheng251fa152008-04-02 18:04:08 +0000502 MRI = &mf.getRegInfo();
Evan Chengc7daf1f2008-03-05 00:59:57 +0000503 TRI = MF->getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504
Evan Chengc7daf1f2008-03-05 00:59:57 +0000505 ReservedRegisters = TRI->getReservedRegs(mf);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506
Evan Chengc7daf1f2008-03-05 00:59:57 +0000507 unsigned NumRegs = TRI->getNumRegs();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000508 PhysRegDef = new MachineInstr*[NumRegs];
509 PhysRegUse = new MachineInstr*[NumRegs];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
Evan Cheng1c3ee662008-04-16 09:46:40 +0000511 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
512 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Jakob Stoklund Olesen4bfc2ff2010-02-23 22:43:58 +0000513 PHIJoins.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514
Bill Wendling85b03762008-02-20 09:15:16 +0000515 /// Get some space for a respectable number of registers.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 VirtRegInfo.resize(64);
517
518 analyzePHINodes(mf);
519
520 // Calculate live variable information in depth first order on the CFG of the
521 // function. This guarantees that we will see the definition of a virtual
522 // register before its uses due to dominance properties of SSA (except for PHI
523 // nodes, which are treated as a special case).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 MachineBasicBlock *Entry = MF->begin();
525 SmallPtrSet<MachineBasicBlock*,16> Visited;
Bill Wendling85b03762008-02-20 09:15:16 +0000526
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
528 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
529 DFI != E; ++DFI) {
530 MachineBasicBlock *MBB = *DFI;
531
532 // Mark live-in registers as live-in.
Evan Chengd062bf72009-09-23 06:28:31 +0000533 SmallVector<unsigned, 4> Defs;
Dan Gohman1e60b692010-04-13 16:57:55 +0000534 for (MachineBasicBlock::livein_iterator II = MBB->livein_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 EE = MBB->livein_end(); II != EE; ++II) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000536 assert(TargetRegisterInfo::isPhysicalRegister(*II) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 "Cannot have a live-in virtual register!");
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000538 HandlePhysRegDef(*II, 0, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539 }
540
541 // Loop over all of the instructions, processing them.
Evan Cheng251fa152008-04-02 18:04:08 +0000542 DistanceMap.clear();
543 unsigned Dist = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
545 I != E; ++I) {
546 MachineInstr *MI = I;
Chris Lattner4052b292010-02-09 19:54:29 +0000547 if (MI->isDebugValue())
Dale Johannesenfe5c3802010-02-09 02:01:46 +0000548 continue;
Evan Cheng251fa152008-04-02 18:04:08 +0000549 DistanceMap.insert(std::make_pair(MI, Dist++));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550
551 // Process all of the operands of the instruction...
552 unsigned NumOperandsToProcess = MI->getNumOperands();
553
554 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
555 // of the uses. They will be handled in other basic blocks.
Chris Lattner4052b292010-02-09 19:54:29 +0000556 if (MI->isPHI())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557 NumOperandsToProcess = 1;
558
Evan Chengae54e1b2010-03-26 02:12:24 +0000559 // Clear kill and dead markers. LV will recompute them.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000560 SmallVector<unsigned, 4> UseRegs;
561 SmallVector<unsigned, 4> DefRegs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Evan Chengae54e1b2010-03-26 02:12:24 +0000563 MachineOperand &MO = MI->getOperand(i);
Evan Cheng06df4d02009-01-20 21:25:12 +0000564 if (!MO.isReg() || MO.getReg() == 0)
565 continue;
566 unsigned MOReg = MO.getReg();
Evan Chengae54e1b2010-03-26 02:12:24 +0000567 if (MO.isUse()) {
568 MO.setIsKill(false);
Evan Cheng06df4d02009-01-20 21:25:12 +0000569 UseRegs.push_back(MOReg);
Evan Chengae54e1b2010-03-26 02:12:24 +0000570 } else /*MO.isDef()*/ {
571 MO.setIsDead(false);
Evan Cheng06df4d02009-01-20 21:25:12 +0000572 DefRegs.push_back(MOReg);
Evan Chengae54e1b2010-03-26 02:12:24 +0000573 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 }
575
Evan Cheng1c3ee662008-04-16 09:46:40 +0000576 // Process all uses.
577 for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
578 unsigned MOReg = UseRegs[i];
579 if (TargetRegisterInfo::isVirtualRegister(MOReg))
580 HandleVirtRegUse(MOReg, MBB, MI);
Dan Gohman706847e2008-09-21 21:11:41 +0000581 else if (!ReservedRegisters[MOReg])
Evan Cheng1c3ee662008-04-16 09:46:40 +0000582 HandlePhysRegUse(MOReg, MI);
583 }
584
Bill Wendling85b03762008-02-20 09:15:16 +0000585 // Process all defs.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000586 for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
587 unsigned MOReg = DefRegs[i];
Dan Gohman706847e2008-09-21 21:11:41 +0000588 if (TargetRegisterInfo::isVirtualRegister(MOReg))
589 HandleVirtRegDef(MOReg, MI);
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000590 else if (!ReservedRegisters[MOReg])
591 HandlePhysRegDef(MOReg, MI, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 }
Evan Chengd062bf72009-09-23 06:28:31 +0000593 UpdatePhysRegDefs(MI, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000594 }
595
596 // Handle any virtual assignments from PHI nodes which might be at the
597 // bottom of this basic block. We check all of our successor blocks to see
598 // if they have PHI nodes, and if so, we simulate an assignment at the end
599 // of the current block.
600 if (!PHIVarInfo[MBB->getNumber()].empty()) {
601 SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
602
603 for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000604 E = VarInfoVec.end(); I != E; ++I)
605 // Mark it alive only in the block we are representing.
Evan Cheng251fa152008-04-02 18:04:08 +0000606 MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(),
Owen Anderson77d80492008-01-15 22:58:11 +0000607 MBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 }
609
Bill Wendling85b03762008-02-20 09:15:16 +0000610 // Finally, if the last instruction in the block is a return, make sure to
611 // mark it as using all of the live-out values in the function.
Dale Johannesenfd642742010-06-05 00:30:45 +0000612 // Things marked both call and return are tail calls; do not do this for
613 // them. The tail callee need not take the same registers as input
614 // that it produces as output, and there are dependencies for its input
615 // registers elsewhere.
616 if (!MBB->empty() && MBB->back().getDesc().isReturn()
617 && !MBB->back().getDesc().isCall()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 MachineInstr *Ret = &MBB->back();
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000619
Chris Lattner1b989192007-12-31 04:13:23 +0000620 for (MachineRegisterInfo::liveout_iterator
621 I = MF->getRegInfo().liveout_begin(),
622 E = MF->getRegInfo().liveout_end(); I != E; ++I) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000623 assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
Dan Gohman2d702012008-06-25 22:14:43 +0000624 "Cannot have a live-out virtual register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 HandlePhysRegUse(*I, Ret);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000626
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627 // Add live-out registers as implicit uses.
Evan Chengc7daf1f2008-03-05 00:59:57 +0000628 if (!Ret->readsRegister(*I))
Chris Lattner63ab1f22007-12-30 00:41:17 +0000629 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 }
631 }
632
Evan Cheng1c3ee662008-04-16 09:46:40 +0000633 // Loop over PhysRegDef / PhysRegUse, killing any registers that are
634 // available at the end of the basic block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635 for (unsigned i = 0; i != NumRegs; ++i)
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000636 if (PhysRegDef[i] || PhysRegUse[i])
637 HandlePhysRegDef(i, 0, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638
Evan Cheng1c3ee662008-04-16 09:46:40 +0000639 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
640 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 }
642
643 // Convert and transfer the dead / killed information we have gathered into
644 // VirtRegInfo onto MI's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i)
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000646 for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j)
647 if (VirtRegInfo[i].Kills[j] ==
Evan Cheng251fa152008-04-02 18:04:08 +0000648 MRI->getVRegDef(i + TargetRegisterInfo::FirstVirtualRegister))
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000649 VirtRegInfo[i]
650 .Kills[j]->addRegisterDead(i +
651 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000652 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 else
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000654 VirtRegInfo[i]
655 .Kills[j]->addRegisterKilled(i +
656 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000657 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658
659 // Check to make sure there are no unreachable blocks in the MC CFG for the
660 // function. If so, it is due to a bug in the instruction selector or some
661 // other part of the code generator if this happens.
662#ifndef NDEBUG
663 for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
664 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
665#endif
666
Evan Cheng1c3ee662008-04-16 09:46:40 +0000667 delete[] PhysRegDef;
668 delete[] PhysRegUse;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669 delete[] PHIVarInfo;
670
671 return false;
672}
673
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000674/// replaceKillInstruction - Update register kill info by replacing a kill
675/// instruction with a new one.
676void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
677 MachineInstr *NewMI) {
678 VarInfo &VI = getVarInfo(Reg);
Evan Chengc2c8ebb2008-07-03 00:28:27 +0000679 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI);
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000680}
681
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682/// removeVirtualRegistersKilled - Remove all killed info for the specified
683/// instruction.
684void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
685 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
686 MachineOperand &MO = MI->getOperand(i);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000687 if (MO.isReg() && MO.isKill()) {
Chris Lattner7f2d3b82007-12-30 21:56:09 +0000688 MO.setIsKill(false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 unsigned Reg = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000690 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 bool removed = getVarInfo(Reg).removeKill(MI);
692 assert(removed && "kill not in register's VarInfo?");
Devang Patel4354f5c2008-11-21 20:00:59 +0000693 removed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000694 }
695 }
696 }
697}
698
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699/// analyzePHINodes - Gather information about the PHI nodes in here. In
Bill Wendling85b03762008-02-20 09:15:16 +0000700/// particular, we want to map the variable information of a virtual register
701/// which is used in a PHI node. We map that to the BB the vreg is coming from.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702///
703void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
704 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
705 I != E; ++I)
706 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
Chris Lattner4052b292010-02-09 19:54:29 +0000707 BBI != BBE && BBI->isPHI(); ++BBI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Bill Wendlingb88bca92008-02-20 06:10:21 +0000709 PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()]
710 .push_back(BBI->getOperand(i).getReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711}
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000712
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000713bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
714 unsigned Reg,
715 MachineRegisterInfo &MRI) {
716 unsigned Num = MBB.getNumber();
717
718 // Reg is live-through.
719 if (AliveBlocks.test(Num))
720 return true;
721
722 // Registers defined in MBB cannot be live in.
723 const MachineInstr *Def = MRI.getVRegDef(Reg);
724 if (Def && Def->getParent() == &MBB)
725 return false;
726
727 // Reg was not defined in MBB, was it killed here?
728 return findKill(&MBB);
729}
730
Jakob Stoklund Olesen9a929cf2009-12-01 17:13:31 +0000731bool LiveVariables::isLiveOut(unsigned Reg, const MachineBasicBlock &MBB) {
732 LiveVariables::VarInfo &VI = getVarInfo(Reg);
733
734 // Loop over all of the successors of the basic block, checking to see if
735 // the value is either live in the block, or if it is killed in the block.
736 std::vector<MachineBasicBlock*> OpSuccBlocks;
737 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(),
738 E = MBB.succ_end(); SI != E; ++SI) {
739 MachineBasicBlock *SuccMBB = *SI;
740
741 // Is it alive in this successor?
742 unsigned SuccIdx = SuccMBB->getNumber();
743 if (VI.AliveBlocks.test(SuccIdx))
744 return true;
745 OpSuccBlocks.push_back(SuccMBB);
746 }
747
748 // Check to see if this value is live because there is a use in a successor
749 // that kills it.
750 switch (OpSuccBlocks.size()) {
751 case 1: {
752 MachineBasicBlock *SuccMBB = OpSuccBlocks[0];
753 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
754 if (VI.Kills[i]->getParent() == SuccMBB)
755 return true;
756 break;
757 }
758 case 2: {
759 MachineBasicBlock *SuccMBB1 = OpSuccBlocks[0], *SuccMBB2 = OpSuccBlocks[1];
760 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
761 if (VI.Kills[i]->getParent() == SuccMBB1 ||
762 VI.Kills[i]->getParent() == SuccMBB2)
763 return true;
764 break;
765 }
766 default:
767 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
768 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
769 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
770 VI.Kills[i]->getParent()))
771 return true;
772 }
773 return false;
774}
775
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000776/// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
777/// variables that are live out of DomBB will be marked as passing live through
778/// BB.
779void LiveVariables::addNewBlock(MachineBasicBlock *BB,
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000780 MachineBasicBlock *DomBB,
781 MachineBasicBlock *SuccBB) {
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000782 const unsigned NumNew = BB->getNumber();
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000783
784 // All registers used by PHI nodes in SuccBB must be live through BB.
785 for (MachineBasicBlock::const_iterator BBI = SuccBB->begin(),
Chris Lattner4052b292010-02-09 19:54:29 +0000786 BBE = SuccBB->end(); BBI != BBE && BBI->isPHI(); ++BBI)
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000787 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
788 if (BBI->getOperand(i+1).getMBB() == BB)
789 getVarInfo(BBI->getOperand(i).getReg()).AliveBlocks.set(NumNew);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000790
791 // Update info for all live variables
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000792 for (unsigned Reg = TargetRegisterInfo::FirstVirtualRegister,
793 E = MRI->getLastVirtReg()+1; Reg != E; ++Reg) {
794 VarInfo &VI = getVarInfo(Reg);
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000795 if (!VI.AliveBlocks.test(NumNew) && VI.isLiveIn(*SuccBB, Reg, *MRI))
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000796 VI.AliveBlocks.set(NumNew);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000797 }
798}