blob: 66f8e237da68c9f1f7813a6fa3a064f2ae18f00d [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;
Owen Andersoncdb0c032010-10-12 19:48:12 +000045INITIALIZE_PASS_BEGIN(LiveVariables, "livevars",
46 "Live Variable Analysis", false, false)
47INITIALIZE_PASS_DEPENDENCY(UnreachableMachineBlockElim)
48INITIALIZE_PASS_END(LiveVariables, "livevars",
Owen Anderson1434dfa2010-10-07 22:25:06 +000049 "Live Variable Analysis", false, false)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050
Owen Andersonfb6914f2008-08-04 23:54:43 +000051
52void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.addRequiredID(UnreachableMachineBlockElimID);
54 AU.setPreservesAll();
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000055 MachineFunctionPass::getAnalysisUsage(AU);
Owen Andersonfb6914f2008-08-04 23:54:43 +000056}
57
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +000058MachineInstr *
59LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
60 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
61 if (Kills[i]->getParent() == MBB)
62 return Kills[i];
63 return NULL;
64}
65
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066void LiveVariables::VarInfo::dump() const {
David Greene28806ab2010-01-04 23:02:10 +000067 dbgs() << " Alive in blocks: ";
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000068 for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
69 E = AliveBlocks.end(); I != E; ++I)
David Greene28806ab2010-01-04 23:02:10 +000070 dbgs() << *I << ", ";
71 dbgs() << "\n Killed by:";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 if (Kills.empty())
David Greene28806ab2010-01-04 23:02:10 +000073 dbgs() << " No instructions.\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 else {
75 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
David Greene28806ab2010-01-04 23:02:10 +000076 dbgs() << "\n #" << i << ": " << *Kills[i];
77 dbgs() << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 }
79}
80
Bill Wendlingb88bca92008-02-20 06:10:21 +000081/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Dan Gohman1e57df32008-02-10 18:45:23 +000083 assert(TargetRegisterInfo::isVirtualRegister(RegIdx) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 "getVarInfo: not a virtual register!");
Dan Gohman1e57df32008-02-10 18:45:23 +000085 RegIdx -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 if (RegIdx >= VirtRegInfo.size()) {
87 if (RegIdx >= 2*VirtRegInfo.size())
88 VirtRegInfo.resize(RegIdx*2);
89 else
90 VirtRegInfo.resize(2*VirtRegInfo.size());
91 }
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000092 return VirtRegInfo[RegIdx];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093}
94
Owen Anderson77d80492008-01-15 22:58:11 +000095void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
96 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 MachineBasicBlock *MBB,
98 std::vector<MachineBasicBlock*> &WorkList) {
99 unsigned BBNum = MBB->getNumber();
Owen Anderson92a609a2008-01-15 22:02:46 +0000100
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101 // Check to see if this basic block is one of the killing blocks. If so,
Bill Wendlingb88bca92008-02-20 06:10:21 +0000102 // remove it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
104 if (VRInfo.Kills[i]->getParent() == MBB) {
105 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
106 break;
107 }
Owen Anderson92a609a2008-01-15 22:02:46 +0000108
Owen Anderson77d80492008-01-15 22:58:11 +0000109 if (MBB == DefBlock) return; // Terminate recursion
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000111 if (VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 return; // We already know the block is live
113
114 // Mark the variable known alive in this bb
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000115 VRInfo.AliveBlocks.set(BBNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116
117 for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(),
118 E = MBB->pred_rend(); PI != E; ++PI)
119 WorkList.push_back(*PI);
120}
121
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000122void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Owen Anderson77d80492008-01-15 22:58:11 +0000123 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 MachineBasicBlock *MBB) {
125 std::vector<MachineBasicBlock*> WorkList;
Owen Anderson77d80492008-01-15 22:58:11 +0000126 MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000127
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 while (!WorkList.empty()) {
129 MachineBasicBlock *Pred = WorkList.back();
130 WorkList.pop_back();
Owen Anderson77d80492008-01-15 22:58:11 +0000131 MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 }
133}
134
Owen Anderson92a609a2008-01-15 22:02:46 +0000135void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 MachineInstr *MI) {
Evan Cheng251fa152008-04-02 18:04:08 +0000137 assert(MRI->getVRegDef(reg) && "Register use before def!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
Owen Anderson721b2cc2007-11-08 01:20:48 +0000139 unsigned BBNum = MBB->getNumber();
140
Owen Anderson92a609a2008-01-15 22:02:46 +0000141 VarInfo& VRInfo = getVarInfo(reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 VRInfo.NumUses++;
143
Bill Wendlingb88bca92008-02-20 06:10:21 +0000144 // Check to see if this basic block is already a kill block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Bill Wendlingb88bca92008-02-20 06:10:21 +0000146 // Yes, this register is killed in this basic block already. Increase the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 // live range by updating the kill instruction.
148 VRInfo.Kills.back() = MI;
149 return;
150 }
151
152#ifndef NDEBUG
153 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
154 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
155#endif
156
Bill Wendling09d55662008-06-23 23:41:14 +0000157 // This situation can occur:
158 //
159 // ,------.
160 // | |
161 // | v
162 // | t2 = phi ... t1 ...
163 // | |
164 // | v
165 // | t1 = ...
166 // | ... = ... t1 ...
167 // | |
168 // `------'
169 //
170 // where there is a use in a PHI node that's a predecessor to the defining
171 // block. We don't want to mark all predecessors as having the value "alive"
172 // in this case.
173 if (MBB == MRI->getVRegDef(reg)->getParent()) return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174
Bill Wendlingb88bca92008-02-20 06:10:21 +0000175 // Add a new kill entry for this basic block. If this virtual register is
176 // already marked as alive in this basic block, that means it is alive in at
177 // least one of the successor blocks, it's not a kill.
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000178 if (!VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 VRInfo.Kills.push_back(MI);
180
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000181 // Update all dominating blocks to mark them as "known live".
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
183 E = MBB->pred_end(); PI != E; ++PI)
Evan Cheng251fa152008-04-02 18:04:08 +0000184 MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185}
186
Dan Gohman706847e2008-09-21 21:11:41 +0000187void LiveVariables::HandleVirtRegDef(unsigned Reg, MachineInstr *MI) {
188 VarInfo &VRInfo = getVarInfo(Reg);
189
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000190 if (VRInfo.AliveBlocks.empty())
Dan Gohman706847e2008-09-21 21:11:41 +0000191 // If vr is not alive in any block, then defaults to dead.
192 VRInfo.Kills.push_back(MI);
193}
194
Evan Cheng1c3ee662008-04-16 09:46:40 +0000195/// FindLastPartialDef - Return the last partial def of the specified register.
Evan Chengcd216d52009-09-22 08:34:46 +0000196/// Also returns the sub-registers that're defined by the instruction.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000197MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg,
Evan Chengcd216d52009-09-22 08:34:46 +0000198 SmallSet<unsigned,4> &PartDefRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000199 unsigned LastDefReg = 0;
200 unsigned LastDefDist = 0;
201 MachineInstr *LastDef = NULL;
202 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
203 unsigned SubReg = *SubRegs; ++SubRegs) {
204 MachineInstr *Def = PhysRegDef[SubReg];
205 if (!Def)
206 continue;
207 unsigned Dist = DistanceMap[Def];
208 if (Dist > LastDefDist) {
209 LastDefReg = SubReg;
210 LastDef = Def;
211 LastDefDist = Dist;
212 }
213 }
Evan Chengcd216d52009-09-22 08:34:46 +0000214
215 if (!LastDef)
216 return 0;
217
218 PartDefRegs.insert(LastDefReg);
219 for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
220 MachineOperand &MO = LastDef->getOperand(i);
221 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
222 continue;
223 unsigned DefReg = MO.getReg();
224 if (TRI->isSubRegister(Reg, DefReg)) {
225 PartDefRegs.insert(DefReg);
226 for (const unsigned *SubRegs = TRI->getSubRegisters(DefReg);
227 unsigned SubReg = *SubRegs; ++SubRegs)
228 PartDefRegs.insert(SubReg);
229 }
230 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000231 return LastDef;
232}
233
Bill Wendling85b03762008-02-20 09:15:16 +0000234/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
235/// implicit defs to a machine instruction if there was an earlier def of its
236/// super-register.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Evan Cheng5cec5f62009-11-13 20:36:40 +0000238 MachineInstr *LastDef = PhysRegDef[Reg];
Evan Cheng1c3ee662008-04-16 09:46:40 +0000239 // If there was a previous use or a "full" def all is well.
Evan Cheng5cec5f62009-11-13 20:36:40 +0000240 if (!LastDef && !PhysRegUse[Reg]) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000241 // Otherwise, the last sub-register def implicitly defines this register.
242 // e.g.
243 // AH =
244 // AL = ... <imp-def EAX>, <imp-kill AH>
245 // = AH
246 // ...
247 // = EAX
248 // All of the sub-registers must have been defined before the use of Reg!
Evan Chengcd216d52009-09-22 08:34:46 +0000249 SmallSet<unsigned, 4> PartDefRegs;
250 MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefRegs);
Evan Cheng1c3ee662008-04-16 09:46:40 +0000251 // If LastPartialDef is NULL, it must be using a livein register.
252 if (LastPartialDef) {
253 LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
254 true/*IsImp*/));
255 PhysRegDef[Reg] = LastPartialDef;
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000256 SmallSet<unsigned, 8> Processed;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000257 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
258 unsigned SubReg = *SubRegs; ++SubRegs) {
259 if (Processed.count(SubReg))
260 continue;
Evan Chengcd216d52009-09-22 08:34:46 +0000261 if (PartDefRegs.count(SubReg))
Evan Cheng1c3ee662008-04-16 09:46:40 +0000262 continue;
263 // This part of Reg was defined before the last partial def. It's killed
264 // here.
265 LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
266 false/*IsDef*/,
267 true/*IsImp*/));
268 PhysRegDef[SubReg] = LastPartialDef;
269 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
270 Processed.insert(*SS);
271 }
272 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273 }
Evan Cheng5cec5f62009-11-13 20:36:40 +0000274 else if (LastDef && !PhysRegUse[Reg] &&
275 !LastDef->findRegisterDefOperand(Reg))
276 // Last def defines the super register, add an implicit def of reg.
277 LastDef->addOperand(MachineOperand::CreateReg(Reg,
278 true/*IsDef*/, true/*IsImp*/));
Bill Wendlingb88bca92008-02-20 06:10:21 +0000279
Evan Cheng1c3ee662008-04-16 09:46:40 +0000280 // Remember this use.
281 PhysRegUse[Reg] = MI;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000282 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000283 unsigned SubReg = *SubRegs; ++SubRegs)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000284 PhysRegUse[SubReg] = MI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285}
286
Evan Cheng1e996142009-12-01 00:44:45 +0000287/// FindLastRefOrPartRef - Return the last reference or partial reference of
288/// the specified register.
289MachineInstr *LiveVariables::FindLastRefOrPartRef(unsigned Reg) {
290 MachineInstr *LastDef = PhysRegDef[Reg];
291 MachineInstr *LastUse = PhysRegUse[Reg];
292 if (!LastDef && !LastUse)
Chris Lattner1b6f5792010-06-14 18:28:34 +0000293 return 0;
Evan Cheng1e996142009-12-01 00:44:45 +0000294
295 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
296 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
Evan Cheng1e996142009-12-01 00:44:45 +0000297 unsigned LastPartDefDist = 0;
298 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
299 unsigned SubReg = *SubRegs; ++SubRegs) {
300 MachineInstr *Def = PhysRegDef[SubReg];
301 if (Def && Def != LastDef) {
302 // There was a def of this sub-register in between. This is a partial
303 // def, keep track of the last one.
304 unsigned Dist = DistanceMap[Def];
Benjamin Kramer650c0fa2010-01-07 17:29:08 +0000305 if (Dist > LastPartDefDist)
Evan Cheng1e996142009-12-01 00:44:45 +0000306 LastPartDefDist = Dist;
Benjamin Kramer650c0fa2010-01-07 17:29:08 +0000307 } else if (MachineInstr *Use = PhysRegUse[SubReg]) {
Evan Cheng1e996142009-12-01 00:44:45 +0000308 unsigned Dist = DistanceMap[Use];
309 if (Dist > LastRefOrPartRefDist) {
310 LastRefOrPartRefDist = Dist;
311 LastRefOrPartRef = Use;
312 }
313 }
314 }
315
316 return LastRefOrPartRef;
317}
318
Evan Cheng06df4d02009-01-20 21:25:12 +0000319bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000320 MachineInstr *LastDef = PhysRegDef[Reg];
321 MachineInstr *LastUse = PhysRegUse[Reg];
322 if (!LastDef && !LastUse)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000323 return false;
324
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000325 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000326 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
327 // The whole register is used.
328 // AL =
329 // AH =
330 //
331 // = AX
332 // = AL, AX<imp-use, kill>
333 // AX =
334 //
335 // Or whole register is defined, but not used at all.
336 // AX<dead> =
337 // ...
338 // AX =
339 //
340 // Or whole register is defined, but only partly used.
341 // AX<dead> = AL<imp-def>
342 // = AL<kill>
343 // AX =
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000344 MachineInstr *LastPartDef = 0;
345 unsigned LastPartDefDist = 0;
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000346 SmallSet<unsigned, 8> PartUses;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000347 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
348 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000349 MachineInstr *Def = PhysRegDef[SubReg];
350 if (Def && Def != LastDef) {
351 // There was a def of this sub-register in between. This is a partial
352 // def, keep track of the last one.
353 unsigned Dist = DistanceMap[Def];
354 if (Dist > LastPartDefDist) {
355 LastPartDefDist = Dist;
356 LastPartDef = Def;
357 }
358 continue;
359 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000360 if (MachineInstr *Use = PhysRegUse[SubReg]) {
361 PartUses.insert(SubReg);
362 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
363 PartUses.insert(*SS);
364 unsigned Dist = DistanceMap[Use];
365 if (Dist > LastRefOrPartRefDist) {
366 LastRefOrPartRefDist = Dist;
367 LastRefOrPartRef = Use;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000369 }
370 }
Evan Cheng06df4d02009-01-20 21:25:12 +0000371
Jakob Stoklund Olesen6207e5d2010-03-05 21:49:17 +0000372 if (!PhysRegUse[Reg]) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000373 // Partial uses. Mark register def dead and add implicit def of
374 // sub-registers which are used.
375 // EAX<dead> = op AL<imp-def>
376 // That is, EAX def is dead but AL def extends pass it.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000377 PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
378 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
379 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000380 if (!PartUses.count(SubReg))
381 continue;
382 bool NeedDef = true;
383 if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
384 MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
385 if (MO) {
386 NeedDef = false;
387 assert(!MO->isDead());
Evan Cheng2fe17a52009-07-06 21:34:05 +0000388 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000389 }
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000390 if (NeedDef)
391 PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
392 true/*IsDef*/, true/*IsImp*/));
Evan Cheng1e996142009-12-01 00:44:45 +0000393 MachineInstr *LastSubRef = FindLastRefOrPartRef(SubReg);
394 if (LastSubRef)
395 LastSubRef->addRegisterKilled(SubReg, TRI, true);
396 else {
397 LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
398 PhysRegUse[SubReg] = LastRefOrPartRef;
399 for (const unsigned *SSRegs = TRI->getSubRegisters(SubReg);
400 unsigned SSReg = *SSRegs; ++SSRegs)
401 PhysRegUse[SSReg] = LastRefOrPartRef;
402 }
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000403 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
404 PartUses.erase(*SS);
Evan Cheng1c3ee662008-04-16 09:46:40 +0000405 }
Jakob Stoklund Olesen6207e5d2010-03-05 21:49:17 +0000406 } else if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI) {
407 if (LastPartDef)
408 // The last partial def kills the register.
409 LastPartDef->addOperand(MachineOperand::CreateReg(Reg, false/*IsDef*/,
410 true/*IsImp*/, true/*IsKill*/));
411 else {
412 MachineOperand *MO =
413 LastRefOrPartRef->findRegisterDefOperand(Reg, false, TRI);
414 bool NeedEC = MO->isEarlyClobber() && MO->getReg() != Reg;
415 // If the last reference is the last def, then it's not used at all.
416 // That is, unless we are currently processing the last reference itself.
417 LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
418 if (NeedEC) {
419 // If we are adding a subreg def and the superreg def is marked early
420 // clobber, add an early clobber marker to the subreg def.
421 MO = LastRefOrPartRef->findRegisterDefOperand(Reg);
422 if (MO)
423 MO->setIsEarlyClobber();
424 }
425 }
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000426 } else
Evan Cheng1c3ee662008-04-16 09:46:40 +0000427 LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
428 return true;
429}
430
Evan Chengd062bf72009-09-23 06:28:31 +0000431void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000432 SmallVector<unsigned, 4> &Defs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000433 // What parts of the register are previously defined?
Owen Anderson9a4cb152008-06-27 07:05:59 +0000434 SmallSet<unsigned, 32> Live;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000435 if (PhysRegDef[Reg] || PhysRegUse[Reg]) {
436 Live.insert(Reg);
437 for (const unsigned *SS = TRI->getSubRegisters(Reg); *SS; ++SS)
438 Live.insert(*SS);
439 } else {
440 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
441 unsigned SubReg = *SubRegs; ++SubRegs) {
442 // If a register isn't itself defined, but all parts that make up of it
443 // are defined, then consider it also defined.
444 // e.g.
445 // AL =
446 // AH =
447 // = AX
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000448 if (Live.count(SubReg))
449 continue;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000450 if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) {
451 Live.insert(SubReg);
452 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
453 Live.insert(*SS);
454 }
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000455 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 }
457
Evan Cheng1c3ee662008-04-16 09:46:40 +0000458 // Start from the largest piece, find the last time any part of the register
459 // is referenced.
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000460 HandlePhysRegKill(Reg, MI);
461 // Only some of the sub-registers are used.
462 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
463 unsigned SubReg = *SubRegs; ++SubRegs) {
464 if (!Live.count(SubReg))
465 // Skip if this sub-register isn't defined.
466 continue;
467 HandlePhysRegKill(SubReg, MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 }
469
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000470 if (MI)
471 Defs.push_back(Reg); // Remember this def.
Evan Chengd062bf72009-09-23 06:28:31 +0000472}
473
474void LiveVariables::UpdatePhysRegDefs(MachineInstr *MI,
475 SmallVector<unsigned, 4> &Defs) {
476 while (!Defs.empty()) {
477 unsigned Reg = Defs.back();
478 Defs.pop_back();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000479 PhysRegDef[Reg] = MI;
480 PhysRegUse[Reg] = NULL;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000481 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000483 PhysRegDef[SubReg] = MI;
484 PhysRegUse[SubReg] = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000485 }
486 }
487}
488
489bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
490 MF = &mf;
Evan Cheng251fa152008-04-02 18:04:08 +0000491 MRI = &mf.getRegInfo();
Evan Chengc7daf1f2008-03-05 00:59:57 +0000492 TRI = MF->getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493
Evan Chengc7daf1f2008-03-05 00:59:57 +0000494 ReservedRegisters = TRI->getReservedRegs(mf);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495
Evan Chengc7daf1f2008-03-05 00:59:57 +0000496 unsigned NumRegs = TRI->getNumRegs();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000497 PhysRegDef = new MachineInstr*[NumRegs];
498 PhysRegUse = new MachineInstr*[NumRegs];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
Evan Cheng1c3ee662008-04-16 09:46:40 +0000500 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
501 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Jakob Stoklund Olesen4bfc2ff2010-02-23 22:43:58 +0000502 PHIJoins.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503
Bill Wendling85b03762008-02-20 09:15:16 +0000504 /// Get some space for a respectable number of registers.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 VirtRegInfo.resize(64);
506
507 analyzePHINodes(mf);
508
509 // Calculate live variable information in depth first order on the CFG of the
510 // function. This guarantees that we will see the definition of a virtual
511 // register before its uses due to dominance properties of SSA (except for PHI
512 // nodes, which are treated as a special case).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 MachineBasicBlock *Entry = MF->begin();
514 SmallPtrSet<MachineBasicBlock*,16> Visited;
Bill Wendling85b03762008-02-20 09:15:16 +0000515
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
517 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
518 DFI != E; ++DFI) {
519 MachineBasicBlock *MBB = *DFI;
520
521 // Mark live-in registers as live-in.
Evan Chengd062bf72009-09-23 06:28:31 +0000522 SmallVector<unsigned, 4> Defs;
Dan Gohman1e60b692010-04-13 16:57:55 +0000523 for (MachineBasicBlock::livein_iterator II = MBB->livein_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 EE = MBB->livein_end(); II != EE; ++II) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000525 assert(TargetRegisterInfo::isPhysicalRegister(*II) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 "Cannot have a live-in virtual register!");
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000527 HandlePhysRegDef(*II, 0, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 }
529
530 // Loop over all of the instructions, processing them.
Evan Cheng251fa152008-04-02 18:04:08 +0000531 DistanceMap.clear();
532 unsigned Dist = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
534 I != E; ++I) {
535 MachineInstr *MI = I;
Chris Lattner4052b292010-02-09 19:54:29 +0000536 if (MI->isDebugValue())
Dale Johannesenfe5c3802010-02-09 02:01:46 +0000537 continue;
Evan Cheng251fa152008-04-02 18:04:08 +0000538 DistanceMap.insert(std::make_pair(MI, Dist++));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539
540 // Process all of the operands of the instruction...
541 unsigned NumOperandsToProcess = MI->getNumOperands();
542
543 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
544 // of the uses. They will be handled in other basic blocks.
Chris Lattner4052b292010-02-09 19:54:29 +0000545 if (MI->isPHI())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 NumOperandsToProcess = 1;
547
Evan Chengae54e1b2010-03-26 02:12:24 +0000548 // Clear kill and dead markers. LV will recompute them.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000549 SmallVector<unsigned, 4> UseRegs;
550 SmallVector<unsigned, 4> DefRegs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Evan Chengae54e1b2010-03-26 02:12:24 +0000552 MachineOperand &MO = MI->getOperand(i);
Evan Cheng06df4d02009-01-20 21:25:12 +0000553 if (!MO.isReg() || MO.getReg() == 0)
554 continue;
555 unsigned MOReg = MO.getReg();
Evan Chengae54e1b2010-03-26 02:12:24 +0000556 if (MO.isUse()) {
557 MO.setIsKill(false);
Evan Cheng06df4d02009-01-20 21:25:12 +0000558 UseRegs.push_back(MOReg);
Evan Chengae54e1b2010-03-26 02:12:24 +0000559 } else /*MO.isDef()*/ {
560 MO.setIsDead(false);
Evan Cheng06df4d02009-01-20 21:25:12 +0000561 DefRegs.push_back(MOReg);
Evan Chengae54e1b2010-03-26 02:12:24 +0000562 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563 }
564
Evan Cheng1c3ee662008-04-16 09:46:40 +0000565 // Process all uses.
566 for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
567 unsigned MOReg = UseRegs[i];
568 if (TargetRegisterInfo::isVirtualRegister(MOReg))
569 HandleVirtRegUse(MOReg, MBB, MI);
Dan Gohman706847e2008-09-21 21:11:41 +0000570 else if (!ReservedRegisters[MOReg])
Evan Cheng1c3ee662008-04-16 09:46:40 +0000571 HandlePhysRegUse(MOReg, MI);
572 }
573
Bill Wendling85b03762008-02-20 09:15:16 +0000574 // Process all defs.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000575 for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
576 unsigned MOReg = DefRegs[i];
Dan Gohman706847e2008-09-21 21:11:41 +0000577 if (TargetRegisterInfo::isVirtualRegister(MOReg))
578 HandleVirtRegDef(MOReg, MI);
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000579 else if (!ReservedRegisters[MOReg])
580 HandlePhysRegDef(MOReg, MI, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 }
Evan Chengd062bf72009-09-23 06:28:31 +0000582 UpdatePhysRegDefs(MI, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 }
584
585 // Handle any virtual assignments from PHI nodes which might be at the
586 // bottom of this basic block. We check all of our successor blocks to see
587 // if they have PHI nodes, and if so, we simulate an assignment at the end
588 // of the current block.
589 if (!PHIVarInfo[MBB->getNumber()].empty()) {
590 SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
591
592 for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000593 E = VarInfoVec.end(); I != E; ++I)
594 // Mark it alive only in the block we are representing.
Evan Cheng251fa152008-04-02 18:04:08 +0000595 MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(),
Owen Anderson77d80492008-01-15 22:58:11 +0000596 MBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 }
598
Bill Wendling85b03762008-02-20 09:15:16 +0000599 // Finally, if the last instruction in the block is a return, make sure to
600 // mark it as using all of the live-out values in the function.
Dale Johannesenfd642742010-06-05 00:30:45 +0000601 // Things marked both call and return are tail calls; do not do this for
602 // them. The tail callee need not take the same registers as input
603 // that it produces as output, and there are dependencies for its input
604 // registers elsewhere.
605 if (!MBB->empty() && MBB->back().getDesc().isReturn()
606 && !MBB->back().getDesc().isCall()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607 MachineInstr *Ret = &MBB->back();
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000608
Chris Lattner1b989192007-12-31 04:13:23 +0000609 for (MachineRegisterInfo::liveout_iterator
610 I = MF->getRegInfo().liveout_begin(),
611 E = MF->getRegInfo().liveout_end(); I != E; ++I) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000612 assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
Dan Gohman2d702012008-06-25 22:14:43 +0000613 "Cannot have a live-out virtual register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 HandlePhysRegUse(*I, Ret);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000615
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000616 // Add live-out registers as implicit uses.
Evan Chengc7daf1f2008-03-05 00:59:57 +0000617 if (!Ret->readsRegister(*I))
Chris Lattner63ab1f22007-12-30 00:41:17 +0000618 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 }
620 }
621
Evan Cheng1c3ee662008-04-16 09:46:40 +0000622 // Loop over PhysRegDef / PhysRegUse, killing any registers that are
623 // available at the end of the basic block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624 for (unsigned i = 0; i != NumRegs; ++i)
Evan Cheng04f3d1d2009-09-24 02:15:22 +0000625 if (PhysRegDef[i] || PhysRegUse[i])
626 HandlePhysRegDef(i, 0, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627
Evan Cheng1c3ee662008-04-16 09:46:40 +0000628 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
629 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 }
631
632 // Convert and transfer the dead / killed information we have gathered into
633 // VirtRegInfo onto MI's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i)
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000635 for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j)
636 if (VirtRegInfo[i].Kills[j] ==
Evan Cheng251fa152008-04-02 18:04:08 +0000637 MRI->getVRegDef(i + TargetRegisterInfo::FirstVirtualRegister))
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000638 VirtRegInfo[i]
639 .Kills[j]->addRegisterDead(i +
640 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000641 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000642 else
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000643 VirtRegInfo[i]
644 .Kills[j]->addRegisterKilled(i +
645 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000646 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647
648 // Check to make sure there are no unreachable blocks in the MC CFG for the
649 // function. If so, it is due to a bug in the instruction selector or some
650 // other part of the code generator if this happens.
651#ifndef NDEBUG
652 for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
653 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
654#endif
655
Evan Cheng1c3ee662008-04-16 09:46:40 +0000656 delete[] PhysRegDef;
657 delete[] PhysRegUse;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658 delete[] PHIVarInfo;
659
660 return false;
661}
662
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000663/// replaceKillInstruction - Update register kill info by replacing a kill
664/// instruction with a new one.
665void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
666 MachineInstr *NewMI) {
667 VarInfo &VI = getVarInfo(Reg);
Evan Chengc2c8ebb2008-07-03 00:28:27 +0000668 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI);
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000669}
670
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671/// removeVirtualRegistersKilled - Remove all killed info for the specified
672/// instruction.
673void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
674 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
675 MachineOperand &MO = MI->getOperand(i);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000676 if (MO.isReg() && MO.isKill()) {
Chris Lattner7f2d3b82007-12-30 21:56:09 +0000677 MO.setIsKill(false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 unsigned Reg = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000679 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 bool removed = getVarInfo(Reg).removeKill(MI);
681 assert(removed && "kill not in register's VarInfo?");
Devang Patel4354f5c2008-11-21 20:00:59 +0000682 removed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 }
684 }
685 }
686}
687
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688/// analyzePHINodes - Gather information about the PHI nodes in here. In
Bill Wendling85b03762008-02-20 09:15:16 +0000689/// particular, we want to map the variable information of a virtual register
690/// 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 +0000691///
692void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
693 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
694 I != E; ++I)
695 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
Chris Lattner4052b292010-02-09 19:54:29 +0000696 BBI != BBE && BBI->isPHI(); ++BBI)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Bill Wendlingb88bca92008-02-20 06:10:21 +0000698 PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()]
699 .push_back(BBI->getOperand(i).getReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700}
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000701
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000702bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
703 unsigned Reg,
704 MachineRegisterInfo &MRI) {
705 unsigned Num = MBB.getNumber();
706
707 // Reg is live-through.
708 if (AliveBlocks.test(Num))
709 return true;
710
711 // Registers defined in MBB cannot be live in.
712 const MachineInstr *Def = MRI.getVRegDef(Reg);
713 if (Def && Def->getParent() == &MBB)
714 return false;
715
716 // Reg was not defined in MBB, was it killed here?
717 return findKill(&MBB);
718}
719
Jakob Stoklund Olesen9a929cf2009-12-01 17:13:31 +0000720bool LiveVariables::isLiveOut(unsigned Reg, const MachineBasicBlock &MBB) {
721 LiveVariables::VarInfo &VI = getVarInfo(Reg);
722
723 // Loop over all of the successors of the basic block, checking to see if
724 // the value is either live in the block, or if it is killed in the block.
725 std::vector<MachineBasicBlock*> OpSuccBlocks;
726 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(),
727 E = MBB.succ_end(); SI != E; ++SI) {
728 MachineBasicBlock *SuccMBB = *SI;
729
730 // Is it alive in this successor?
731 unsigned SuccIdx = SuccMBB->getNumber();
732 if (VI.AliveBlocks.test(SuccIdx))
733 return true;
734 OpSuccBlocks.push_back(SuccMBB);
735 }
736
737 // Check to see if this value is live because there is a use in a successor
738 // that kills it.
739 switch (OpSuccBlocks.size()) {
740 case 1: {
741 MachineBasicBlock *SuccMBB = OpSuccBlocks[0];
742 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
743 if (VI.Kills[i]->getParent() == SuccMBB)
744 return true;
745 break;
746 }
747 case 2: {
748 MachineBasicBlock *SuccMBB1 = OpSuccBlocks[0], *SuccMBB2 = OpSuccBlocks[1];
749 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
750 if (VI.Kills[i]->getParent() == SuccMBB1 ||
751 VI.Kills[i]->getParent() == SuccMBB2)
752 return true;
753 break;
754 }
755 default:
756 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
757 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
758 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
759 VI.Kills[i]->getParent()))
760 return true;
761 }
762 return false;
763}
764
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000765/// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
766/// variables that are live out of DomBB will be marked as passing live through
767/// BB.
768void LiveVariables::addNewBlock(MachineBasicBlock *BB,
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000769 MachineBasicBlock *DomBB,
770 MachineBasicBlock *SuccBB) {
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000771 const unsigned NumNew = BB->getNumber();
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000772
773 // All registers used by PHI nodes in SuccBB must be live through BB.
774 for (MachineBasicBlock::const_iterator BBI = SuccBB->begin(),
Chris Lattner4052b292010-02-09 19:54:29 +0000775 BBE = SuccBB->end(); BBI != BBE && BBI->isPHI(); ++BBI)
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000776 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
777 if (BBI->getOperand(i+1).getMBB() == BB)
778 getVarInfo(BBI->getOperand(i).getReg()).AliveBlocks.set(NumNew);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000779
780 // Update info for all live variables
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000781 for (unsigned Reg = TargetRegisterInfo::FirstVirtualRegister,
782 E = MRI->getLastVirtReg()+1; Reg != E; ++Reg) {
783 VarInfo &VI = getVarInfo(Reg);
Jakob Stoklund Olesene79ff412009-11-21 02:05:21 +0000784 if (!VI.AliveBlocks.test(NumNew) && VI.isLiveIn(*SuccBB, Reg, *MRI))
Jakob Stoklund Olesen409558d2009-11-11 19:31:31 +0000785 VI.AliveBlocks.set(NumNew);
Jakob Stoklund Olesenbe9cdbf2009-11-10 22:01:05 +0000786 }
787}