blob: 96d36c8e56a1c44a12a9f243f847f7b8d928b03a [file] [log] [blame]
Chris Lattnerbc40e892003-01-13 20:01:16 +00001//===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00009//
Chris Lattner5cdfbad2003-05-07 20:08:36 +000010// 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//
Chris Lattnerbc40e892003-01-13 20:01:16 +000027//===----------------------------------------------------------------------===//
28
29#include "llvm/CodeGen/LiveVariables.h"
30#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Owen Andersonbd3ba462008-08-04 23:54:43 +000032#include "llvm/CodeGen/Passes.h"
David Greene1d44df62010-01-04 23:02:10 +000033#include "llvm/Support/Debug.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000034#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000035#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000036#include "llvm/ADT/DepthFirstIterator.h"
Evan Cheng04104072007-06-27 05:23:00 +000037#include "llvm/ADT/SmallPtrSet.h"
Owen Andersonbffdf662008-06-27 07:05:59 +000038#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000039#include "llvm/ADT/STLExtras.h"
Chris Lattner657b4d12005-08-24 00:09:33 +000040#include <algorithm>
Chris Lattner49a5aaa2004-01-30 22:08:53 +000041using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000042
Devang Patel19974732007-05-03 01:11:54 +000043char LiveVariables::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +000044INITIALIZE_PASS_BEGIN(LiveVariables, "livevars",
45 "Live Variable Analysis", false, false)
46INITIALIZE_PASS_DEPENDENCY(UnreachableMachineBlockElim)
47INITIALIZE_PASS_END(LiveVariables, "livevars",
Owen Andersonce665bd2010-10-07 22:25:06 +000048 "Live Variable Analysis", false, false)
Chris Lattnerbc40e892003-01-13 20:01:16 +000049
Owen Andersonbd3ba462008-08-04 23:54:43 +000050
51void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
52 AU.addRequiredID(UnreachableMachineBlockElimID);
53 AU.setPreservesAll();
Dan Gohmanad2afc22009-07-31 18:16:33 +000054 MachineFunctionPass::getAnalysisUsage(AU);
Owen Andersonbd3ba462008-08-04 23:54:43 +000055}
56
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +000057MachineInstr *
58LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
59 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
60 if (Kills[i]->getParent() == MBB)
61 return Kills[i];
62 return NULL;
63}
64
Chris Lattnerdacceef2006-01-04 05:40:30 +000065void LiveVariables::VarInfo::dump() const {
David Greene1d44df62010-01-04 23:02:10 +000066 dbgs() << " Alive in blocks: ";
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +000067 for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
68 E = AliveBlocks.end(); I != E; ++I)
David Greene1d44df62010-01-04 23:02:10 +000069 dbgs() << *I << ", ";
70 dbgs() << "\n Killed by:";
Chris Lattnerdacceef2006-01-04 05:40:30 +000071 if (Kills.empty())
David Greene1d44df62010-01-04 23:02:10 +000072 dbgs() << " No instructions.\n";
Chris Lattnerdacceef2006-01-04 05:40:30 +000073 else {
74 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
David Greene1d44df62010-01-04 23:02:10 +000075 dbgs() << "\n #" << i << ": " << *Kills[i];
76 dbgs() << "\n";
Chris Lattnerdacceef2006-01-04 05:40:30 +000077 }
78}
79
Bill Wendling90a38682008-02-20 06:10:21 +000080/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
Chris Lattnerfb2cb692003-05-12 14:24:00 +000081LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Dan Gohman6f0d0242008-02-10 18:45:23 +000082 assert(TargetRegisterInfo::isVirtualRegister(RegIdx) &&
Chris Lattnerfb2cb692003-05-12 14:24:00 +000083 "getVarInfo: not a virtual register!");
Jakob Stoklund Olesenb421c562011-01-08 23:10:57 +000084 VirtRegInfo.grow(RegIdx);
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +000085 return VirtRegInfo[RegIdx];
Chris Lattnerfb2cb692003-05-12 14:24:00 +000086}
87
Owen Anderson40a627d2008-01-15 22:58:11 +000088void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
89 MachineBasicBlock *DefBlock,
Evan Cheng56184902007-05-08 19:00:00 +000090 MachineBasicBlock *MBB,
91 std::vector<MachineBasicBlock*> &WorkList) {
Chris Lattner8ba97712004-07-01 04:29:47 +000092 unsigned BBNum = MBB->getNumber();
Owen Anderson7047dd42008-01-15 22:02:46 +000093
Chris Lattnerbc40e892003-01-13 20:01:16 +000094 // Check to see if this basic block is one of the killing blocks. If so,
Bill Wendling90a38682008-02-20 06:10:21 +000095 // remove it.
Chris Lattnerbc40e892003-01-13 20:01:16 +000096 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +000097 if (VRInfo.Kills[i]->getParent() == MBB) {
Chris Lattnerbc40e892003-01-13 20:01:16 +000098 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
99 break;
100 }
Owen Anderson7047dd42008-01-15 22:02:46 +0000101
Owen Anderson40a627d2008-01-15 22:58:11 +0000102 if (MBB == DefBlock) return; // Terminate recursion
Chris Lattnerbc40e892003-01-13 20:01:16 +0000103
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000104 if (VRInfo.AliveBlocks.test(BBNum))
Chris Lattnerbc40e892003-01-13 20:01:16 +0000105 return; // We already know the block is live
106
107 // Mark the variable known alive in this bb
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000108 VRInfo.AliveBlocks.set(BBNum);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000109
Benjamin Kramerf337fb22011-03-08 17:28:36 +0000110 WorkList.insert(WorkList.end(), MBB->pred_rbegin(), MBB->pred_rend());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000111}
112
Bill Wendling420cdeb2008-02-20 07:36:31 +0000113void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Owen Anderson40a627d2008-01-15 22:58:11 +0000114 MachineBasicBlock *DefBlock,
Evan Cheng56184902007-05-08 19:00:00 +0000115 MachineBasicBlock *MBB) {
116 std::vector<MachineBasicBlock*> WorkList;
Owen Anderson40a627d2008-01-15 22:58:11 +0000117 MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
Bill Wendling420cdeb2008-02-20 07:36:31 +0000118
Evan Cheng56184902007-05-08 19:00:00 +0000119 while (!WorkList.empty()) {
120 MachineBasicBlock *Pred = WorkList.back();
121 WorkList.pop_back();
Owen Anderson40a627d2008-01-15 22:58:11 +0000122 MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
Evan Cheng56184902007-05-08 19:00:00 +0000123 }
124}
125
Owen Anderson7047dd42008-01-15 22:02:46 +0000126void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
Misha Brukman09ba9062004-06-24 21:31:16 +0000127 MachineInstr *MI) {
Evan Chengea1d9cd2008-04-02 18:04:08 +0000128 assert(MRI->getVRegDef(reg) && "Register use before def!");
Alkis Evlogimenos2e58a412004-09-01 22:34:52 +0000129
Owen Andersona0185402007-11-08 01:20:48 +0000130 unsigned BBNum = MBB->getNumber();
131
Owen Anderson7047dd42008-01-15 22:02:46 +0000132 VarInfo& VRInfo = getVarInfo(reg);
Evan Cheng38b7ca62007-04-17 20:22:11 +0000133 VRInfo.NumUses++;
Evan Chengc6a24102007-03-17 09:29:54 +0000134
Bill Wendling90a38682008-02-20 06:10:21 +0000135 // Check to see if this basic block is already a kill block.
Chris Lattner74de8b12004-07-19 07:04:55 +0000136 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Bill Wendling90a38682008-02-20 06:10:21 +0000137 // Yes, this register is killed in this basic block already. Increase the
Chris Lattnerbc40e892003-01-13 20:01:16 +0000138 // live range by updating the kill instruction.
Chris Lattner74de8b12004-07-19 07:04:55 +0000139 VRInfo.Kills.back() = MI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000140 return;
141 }
142
143#ifndef NDEBUG
144 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +0000145 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
Chris Lattnerbc40e892003-01-13 20:01:16 +0000146#endif
147
Bill Wendlingebcba612008-06-23 23:41:14 +0000148 // This situation can occur:
149 //
150 // ,------.
151 // | |
152 // | v
153 // | t2 = phi ... t1 ...
154 // | |
155 // | v
156 // | t1 = ...
157 // | ... = ... t1 ...
158 // | |
159 // `------'
160 //
161 // where there is a use in a PHI node that's a predecessor to the defining
162 // block. We don't want to mark all predecessors as having the value "alive"
163 // in this case.
164 if (MBB == MRI->getVRegDef(reg)->getParent()) return;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000165
Bill Wendling90a38682008-02-20 06:10:21 +0000166 // Add a new kill entry for this basic block. If this virtual register is
167 // already marked as alive in this basic block, that means it is alive in at
168 // least one of the successor blocks, it's not a kill.
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000169 if (!VRInfo.AliveBlocks.test(BBNum))
Evan Chenge2ee9962007-03-09 09:48:56 +0000170 VRInfo.Kills.push_back(MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000171
Bill Wendling420cdeb2008-02-20 07:36:31 +0000172 // Update all dominating blocks to mark them as "known live".
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000173 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
174 E = MBB->pred_end(); PI != E; ++PI)
Evan Chengea1d9cd2008-04-02 18:04:08 +0000175 MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000176}
177
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000178void LiveVariables::HandleVirtRegDef(unsigned Reg, MachineInstr *MI) {
179 VarInfo &VRInfo = getVarInfo(Reg);
180
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000181 if (VRInfo.AliveBlocks.empty())
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000182 // If vr is not alive in any block, then defaults to dead.
183 VRInfo.Kills.push_back(MI);
184}
185
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000186/// FindLastPartialDef - Return the last partial def of the specified register.
Evan Cheng60c7df22009-09-22 08:34:46 +0000187/// Also returns the sub-registers that're defined by the instruction.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000188MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg,
Evan Cheng60c7df22009-09-22 08:34:46 +0000189 SmallSet<unsigned,4> &PartDefRegs) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000190 unsigned LastDefReg = 0;
191 unsigned LastDefDist = 0;
192 MachineInstr *LastDef = NULL;
193 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
194 unsigned SubReg = *SubRegs; ++SubRegs) {
195 MachineInstr *Def = PhysRegDef[SubReg];
196 if (!Def)
197 continue;
198 unsigned Dist = DistanceMap[Def];
199 if (Dist > LastDefDist) {
200 LastDefReg = SubReg;
201 LastDef = Def;
202 LastDefDist = Dist;
203 }
204 }
Evan Cheng60c7df22009-09-22 08:34:46 +0000205
206 if (!LastDef)
207 return 0;
208
209 PartDefRegs.insert(LastDefReg);
210 for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
211 MachineOperand &MO = LastDef->getOperand(i);
212 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
213 continue;
214 unsigned DefReg = MO.getReg();
215 if (TRI->isSubRegister(Reg, DefReg)) {
216 PartDefRegs.insert(DefReg);
217 for (const unsigned *SubRegs = TRI->getSubRegisters(DefReg);
218 unsigned SubReg = *SubRegs; ++SubRegs)
219 PartDefRegs.insert(SubReg);
220 }
221 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000222 return LastDef;
223}
224
Bill Wendling6d794742008-02-20 09:15:16 +0000225/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
226/// implicit defs to a machine instruction if there was an earlier def of its
227/// super-register.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000228void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Evan Cheng236490d2009-11-13 20:36:40 +0000229 MachineInstr *LastDef = PhysRegDef[Reg];
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000230 // If there was a previous use or a "full" def all is well.
Evan Cheng236490d2009-11-13 20:36:40 +0000231 if (!LastDef && !PhysRegUse[Reg]) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000232 // Otherwise, the last sub-register def implicitly defines this register.
233 // e.g.
234 // AH =
235 // AL = ... <imp-def EAX>, <imp-kill AH>
236 // = AH
237 // ...
238 // = EAX
239 // All of the sub-registers must have been defined before the use of Reg!
Evan Cheng60c7df22009-09-22 08:34:46 +0000240 SmallSet<unsigned, 4> PartDefRegs;
241 MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefRegs);
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000242 // If LastPartialDef is NULL, it must be using a livein register.
243 if (LastPartialDef) {
244 LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
245 true/*IsImp*/));
246 PhysRegDef[Reg] = LastPartialDef;
Owen Andersonbbf55832008-08-14 23:41:38 +0000247 SmallSet<unsigned, 8> Processed;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000248 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
249 unsigned SubReg = *SubRegs; ++SubRegs) {
250 if (Processed.count(SubReg))
251 continue;
Evan Cheng60c7df22009-09-22 08:34:46 +0000252 if (PartDefRegs.count(SubReg))
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000253 continue;
254 // This part of Reg was defined before the last partial def. It's killed
255 // here.
256 LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
257 false/*IsDef*/,
258 true/*IsImp*/));
259 PhysRegDef[SubReg] = LastPartialDef;
260 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
261 Processed.insert(*SS);
262 }
263 }
Evan Chengbfe8afa2012-01-14 01:53:46 +0000264 } else if (LastDef && !PhysRegUse[Reg] &&
265 !LastDef->findRegisterDefOperand(Reg))
Evan Cheng236490d2009-11-13 20:36:40 +0000266 // Last def defines the super register, add an implicit def of reg.
Evan Chengbfe8afa2012-01-14 01:53:46 +0000267 LastDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
268 true/*IsImp*/));
Bill Wendling90a38682008-02-20 06:10:21 +0000269
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000270 // Remember this use.
271 PhysRegUse[Reg] = MI;
Evan Cheng6130f662008-03-05 00:59:57 +0000272 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Bill Wendling420cdeb2008-02-20 07:36:31 +0000273 unsigned SubReg = *SubRegs; ++SubRegs)
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000274 PhysRegUse[SubReg] = MI;
Evan Cheng4efe7412007-06-26 21:03:35 +0000275}
276
Evan Chenga4025df2009-12-01 00:44:45 +0000277/// FindLastRefOrPartRef - Return the last reference or partial reference of
278/// the specified register.
279MachineInstr *LiveVariables::FindLastRefOrPartRef(unsigned Reg) {
280 MachineInstr *LastDef = PhysRegDef[Reg];
281 MachineInstr *LastUse = PhysRegUse[Reg];
282 if (!LastDef && !LastUse)
Chris Lattner98cdfc72010-06-14 18:28:34 +0000283 return 0;
Evan Chenga4025df2009-12-01 00:44:45 +0000284
285 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
286 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
Evan Chenga4025df2009-12-01 00:44:45 +0000287 unsigned LastPartDefDist = 0;
288 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
289 unsigned SubReg = *SubRegs; ++SubRegs) {
290 MachineInstr *Def = PhysRegDef[SubReg];
291 if (Def && Def != LastDef) {
292 // There was a def of this sub-register in between. This is a partial
293 // def, keep track of the last one.
294 unsigned Dist = DistanceMap[Def];
Benjamin Kramere7078ae2010-01-07 17:29:08 +0000295 if (Dist > LastPartDefDist)
Evan Chenga4025df2009-12-01 00:44:45 +0000296 LastPartDefDist = Dist;
Benjamin Kramere7078ae2010-01-07 17:29:08 +0000297 } else if (MachineInstr *Use = PhysRegUse[SubReg]) {
Evan Chenga4025df2009-12-01 00:44:45 +0000298 unsigned Dist = DistanceMap[Use];
299 if (Dist > LastRefOrPartRefDist) {
300 LastRefOrPartRefDist = Dist;
301 LastRefOrPartRef = Use;
302 }
303 }
304 }
305
306 return LastRefOrPartRef;
307}
308
Evan Chenga894ae12009-01-20 21:25:12 +0000309bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
Evan Chengad934b82009-09-24 02:15:22 +0000310 MachineInstr *LastDef = PhysRegDef[Reg];
311 MachineInstr *LastUse = PhysRegUse[Reg];
312 if (!LastDef && !LastUse)
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000313 return false;
314
Evan Chengad934b82009-09-24 02:15:22 +0000315 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000316 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
317 // The whole register is used.
318 // AL =
319 // AH =
320 //
321 // = AX
322 // = AL, AX<imp-use, kill>
323 // AX =
324 //
325 // Or whole register is defined, but not used at all.
326 // AX<dead> =
327 // ...
328 // AX =
329 //
330 // Or whole register is defined, but only partly used.
331 // AX<dead> = AL<imp-def>
332 // = AL<kill>
333 // AX =
Evan Chengad934b82009-09-24 02:15:22 +0000334 MachineInstr *LastPartDef = 0;
335 unsigned LastPartDefDist = 0;
Owen Andersonbbf55832008-08-14 23:41:38 +0000336 SmallSet<unsigned, 8> PartUses;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000337 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
338 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Chengad934b82009-09-24 02:15:22 +0000339 MachineInstr *Def = PhysRegDef[SubReg];
340 if (Def && Def != LastDef) {
341 // There was a def of this sub-register in between. This is a partial
342 // def, keep track of the last one.
343 unsigned Dist = DistanceMap[Def];
344 if (Dist > LastPartDefDist) {
345 LastPartDefDist = Dist;
346 LastPartDef = Def;
347 }
348 continue;
349 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000350 if (MachineInstr *Use = PhysRegUse[SubReg]) {
351 PartUses.insert(SubReg);
352 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
353 PartUses.insert(*SS);
354 unsigned Dist = DistanceMap[Use];
355 if (Dist > LastRefOrPartRefDist) {
356 LastRefOrPartRefDist = Dist;
357 LastRefOrPartRef = Use;
Evan Cheng4efe7412007-06-26 21:03:35 +0000358 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000359 }
360 }
Evan Chenga894ae12009-01-20 21:25:12 +0000361
Jakob Stoklund Olesen53e000b2010-03-05 21:49:17 +0000362 if (!PhysRegUse[Reg]) {
Evan Chengad934b82009-09-24 02:15:22 +0000363 // Partial uses. Mark register def dead and add implicit def of
364 // sub-registers which are used.
365 // EAX<dead> = op AL<imp-def>
366 // That is, EAX def is dead but AL def extends pass it.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000367 PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
368 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
369 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Chengad934b82009-09-24 02:15:22 +0000370 if (!PartUses.count(SubReg))
371 continue;
372 bool NeedDef = true;
373 if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
374 MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
375 if (MO) {
376 NeedDef = false;
377 assert(!MO->isDead());
Evan Cheng2c4d96d2009-07-06 21:34:05 +0000378 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000379 }
Evan Chengad934b82009-09-24 02:15:22 +0000380 if (NeedDef)
381 PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
382 true/*IsDef*/, true/*IsImp*/));
Evan Chenga4025df2009-12-01 00:44:45 +0000383 MachineInstr *LastSubRef = FindLastRefOrPartRef(SubReg);
384 if (LastSubRef)
385 LastSubRef->addRegisterKilled(SubReg, TRI, true);
386 else {
387 LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
388 PhysRegUse[SubReg] = LastRefOrPartRef;
389 for (const unsigned *SSRegs = TRI->getSubRegisters(SubReg);
390 unsigned SSReg = *SSRegs; ++SSRegs)
391 PhysRegUse[SSReg] = LastRefOrPartRef;
392 }
Evan Chengad934b82009-09-24 02:15:22 +0000393 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
394 PartUses.erase(*SS);
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000395 }
Jakob Stoklund Olesen53e000b2010-03-05 21:49:17 +0000396 } else if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI) {
397 if (LastPartDef)
398 // The last partial def kills the register.
399 LastPartDef->addOperand(MachineOperand::CreateReg(Reg, false/*IsDef*/,
400 true/*IsImp*/, true/*IsKill*/));
401 else {
402 MachineOperand *MO =
403 LastRefOrPartRef->findRegisterDefOperand(Reg, false, TRI);
404 bool NeedEC = MO->isEarlyClobber() && MO->getReg() != Reg;
405 // If the last reference is the last def, then it's not used at all.
406 // That is, unless we are currently processing the last reference itself.
407 LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
408 if (NeedEC) {
409 // If we are adding a subreg def and the superreg def is marked early
410 // clobber, add an early clobber marker to the subreg def.
411 MO = LastRefOrPartRef->findRegisterDefOperand(Reg);
412 if (MO)
413 MO->setIsEarlyClobber();
414 }
415 }
Evan Chengad934b82009-09-24 02:15:22 +0000416 } else
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000417 LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
418 return true;
419}
420
Evan Cheng296925d2009-09-23 06:28:31 +0000421void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
Evan Chengad934b82009-09-24 02:15:22 +0000422 SmallVector<unsigned, 4> &Defs) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000423 // What parts of the register are previously defined?
Owen Andersonbffdf662008-06-27 07:05:59 +0000424 SmallSet<unsigned, 32> Live;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000425 if (PhysRegDef[Reg] || PhysRegUse[Reg]) {
426 Live.insert(Reg);
427 for (const unsigned *SS = TRI->getSubRegisters(Reg); *SS; ++SS)
428 Live.insert(*SS);
429 } else {
430 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
431 unsigned SubReg = *SubRegs; ++SubRegs) {
432 // If a register isn't itself defined, but all parts that make up of it
433 // are defined, then consider it also defined.
434 // e.g.
435 // AL =
436 // AH =
437 // = AX
Evan Chengad934b82009-09-24 02:15:22 +0000438 if (Live.count(SubReg))
439 continue;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000440 if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) {
441 Live.insert(SubReg);
442 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
443 Live.insert(*SS);
444 }
Bill Wendling420cdeb2008-02-20 07:36:31 +0000445 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000446 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000447
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000448 // Start from the largest piece, find the last time any part of the register
449 // is referenced.
Evan Chengad934b82009-09-24 02:15:22 +0000450 HandlePhysRegKill(Reg, MI);
451 // Only some of the sub-registers are used.
452 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
453 unsigned SubReg = *SubRegs; ++SubRegs) {
454 if (!Live.count(SubReg))
455 // Skip if this sub-register isn't defined.
456 continue;
457 HandlePhysRegKill(SubReg, MI);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000458 }
459
Evan Chengad934b82009-09-24 02:15:22 +0000460 if (MI)
461 Defs.push_back(Reg); // Remember this def.
Evan Cheng296925d2009-09-23 06:28:31 +0000462}
463
464void LiveVariables::UpdatePhysRegDefs(MachineInstr *MI,
465 SmallVector<unsigned, 4> &Defs) {
466 while (!Defs.empty()) {
467 unsigned Reg = Defs.back();
468 Defs.pop_back();
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000469 PhysRegDef[Reg] = MI;
470 PhysRegUse[Reg] = NULL;
Evan Cheng6130f662008-03-05 00:59:57 +0000471 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Evan Cheng4efe7412007-06-26 21:03:35 +0000472 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000473 PhysRegDef[SubReg] = MI;
474 PhysRegUse[SubReg] = NULL;
Evan Cheng4efe7412007-06-26 21:03:35 +0000475 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000476 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000477}
478
Evan Chengc6a24102007-03-17 09:29:54 +0000479bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
480 MF = &mf;
Evan Chengea1d9cd2008-04-02 18:04:08 +0000481 MRI = &mf.getRegInfo();
Evan Cheng6130f662008-03-05 00:59:57 +0000482 TRI = MF->getTarget().getRegisterInfo();
Chris Lattner96aef892004-02-09 01:35:21 +0000483
Evan Cheng6130f662008-03-05 00:59:57 +0000484 ReservedRegisters = TRI->getReservedRegs(mf);
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000485
Evan Cheng6130f662008-03-05 00:59:57 +0000486 unsigned NumRegs = TRI->getNumRegs();
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000487 PhysRegDef = new MachineInstr*[NumRegs];
488 PhysRegUse = new MachineInstr*[NumRegs];
Evan Chenge96f5012007-04-25 19:34:00 +0000489 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000490 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
491 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Jakob Stoklund Olesendcfe5f32010-02-23 22:43:58 +0000492 PHIJoins.clear();
Chris Lattnerbc40e892003-01-13 20:01:16 +0000493
Evan Chengc6a24102007-03-17 09:29:54 +0000494 analyzePHINodes(mf);
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000495
Chris Lattnerbc40e892003-01-13 20:01:16 +0000496 // Calculate live variable information in depth first order on the CFG of the
497 // function. This guarantees that we will see the definition of a virtual
498 // register before its uses due to dominance properties of SSA (except for PHI
499 // nodes, which are treated as a special case).
Evan Chengc6a24102007-03-17 09:29:54 +0000500 MachineBasicBlock *Entry = MF->begin();
Evan Cheng04104072007-06-27 05:23:00 +0000501 SmallPtrSet<MachineBasicBlock*,16> Visited;
Bill Wendling6d794742008-02-20 09:15:16 +0000502
Evan Cheng04104072007-06-27 05:23:00 +0000503 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
504 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
505 DFI != E; ++DFI) {
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000506 MachineBasicBlock *MBB = *DFI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000507
Evan Chengb371f452007-02-19 21:49:54 +0000508 // Mark live-in registers as live-in.
Evan Cheng296925d2009-09-23 06:28:31 +0000509 SmallVector<unsigned, 4> Defs;
Dan Gohman81bf03e2010-04-13 16:57:55 +0000510 for (MachineBasicBlock::livein_iterator II = MBB->livein_begin(),
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000511 EE = MBB->livein_end(); II != EE; ++II) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000512 assert(TargetRegisterInfo::isPhysicalRegister(*II) &&
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000513 "Cannot have a live-in virtual register!");
Evan Chengad934b82009-09-24 02:15:22 +0000514 HandlePhysRegDef(*II, 0, Defs);
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000515 }
516
Chris Lattnerbc40e892003-01-13 20:01:16 +0000517 // Loop over all of the instructions, processing them.
Evan Chengea1d9cd2008-04-02 18:04:08 +0000518 DistanceMap.clear();
519 unsigned Dist = 0;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000520 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
Misha Brukman09ba9062004-06-24 21:31:16 +0000521 I != E; ++I) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000522 MachineInstr *MI = I;
Chris Lattner518bb532010-02-09 19:54:29 +0000523 if (MI->isDebugValue())
Dale Johannesend94998f2010-02-09 02:01:46 +0000524 continue;
Evan Chengea1d9cd2008-04-02 18:04:08 +0000525 DistanceMap.insert(std::make_pair(MI, Dist++));
Chris Lattnerbc40e892003-01-13 20:01:16 +0000526
527 // Process all of the operands of the instruction...
528 unsigned NumOperandsToProcess = MI->getNumOperands();
529
530 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
531 // of the uses. They will be handled in other basic blocks.
Chris Lattner518bb532010-02-09 19:54:29 +0000532 if (MI->isPHI())
Misha Brukman09ba9062004-06-24 21:31:16 +0000533 NumOperandsToProcess = 1;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000534
Evan Chengd05e8052010-03-26 02:12:24 +0000535 // Clear kill and dead markers. LV will recompute them.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000536 SmallVector<unsigned, 4> UseRegs;
537 SmallVector<unsigned, 4> DefRegs;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000538 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Evan Chengd05e8052010-03-26 02:12:24 +0000539 MachineOperand &MO = MI->getOperand(i);
Evan Chenga894ae12009-01-20 21:25:12 +0000540 if (!MO.isReg() || MO.getReg() == 0)
541 continue;
542 unsigned MOReg = MO.getReg();
Evan Chengd05e8052010-03-26 02:12:24 +0000543 if (MO.isUse()) {
544 MO.setIsKill(false);
Evan Chenga894ae12009-01-20 21:25:12 +0000545 UseRegs.push_back(MOReg);
Evan Chengd05e8052010-03-26 02:12:24 +0000546 } else /*MO.isDef()*/ {
547 MO.setIsDead(false);
Evan Chenga894ae12009-01-20 21:25:12 +0000548 DefRegs.push_back(MOReg);
Evan Chengd05e8052010-03-26 02:12:24 +0000549 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000550 }
551
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000552 // Process all uses.
553 for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
554 unsigned MOReg = UseRegs[i];
555 if (TargetRegisterInfo::isVirtualRegister(MOReg))
556 HandleVirtRegUse(MOReg, MBB, MI);
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000557 else if (!ReservedRegisters[MOReg])
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000558 HandlePhysRegUse(MOReg, MI);
559 }
560
Bill Wendling6d794742008-02-20 09:15:16 +0000561 // Process all defs.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000562 for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
563 unsigned MOReg = DefRegs[i];
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000564 if (TargetRegisterInfo::isVirtualRegister(MOReg))
565 HandleVirtRegDef(MOReg, MI);
Evan Chengad934b82009-09-24 02:15:22 +0000566 else if (!ReservedRegisters[MOReg])
567 HandlePhysRegDef(MOReg, MI, Defs);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000568 }
Evan Cheng296925d2009-09-23 06:28:31 +0000569 UpdatePhysRegDefs(MI, Defs);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000570 }
571
572 // Handle any virtual assignments from PHI nodes which might be at the
573 // bottom of this basic block. We check all of our successor blocks to see
574 // if they have PHI nodes, and if so, we simulate an assignment at the end
575 // of the current block.
Evan Chenge96f5012007-04-25 19:34:00 +0000576 if (!PHIVarInfo[MBB->getNumber()].empty()) {
577 SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
Misha Brukmanedf128a2005-04-21 22:36:52 +0000578
Evan Chenge96f5012007-04-25 19:34:00 +0000579 for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
Bill Wendling420cdeb2008-02-20 07:36:31 +0000580 E = VarInfoVec.end(); I != E; ++I)
581 // Mark it alive only in the block we are representing.
Evan Chengea1d9cd2008-04-02 18:04:08 +0000582 MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(),
Owen Anderson40a627d2008-01-15 22:58:11 +0000583 MBB);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000584 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000585
Bill Wendling6d794742008-02-20 09:15:16 +0000586 // Finally, if the last instruction in the block is a return, make sure to
587 // mark it as using all of the live-out values in the function.
Dale Johannesen88004c22010-06-05 00:30:45 +0000588 // Things marked both call and return are tail calls; do not do this for
589 // them. The tail callee need not take the same registers as input
590 // that it produces as output, and there are dependencies for its input
591 // registers elsewhere.
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000592 if (!MBB->empty() && MBB->back().isReturn()
593 && !MBB->back().isCall()) {
Chris Lattnerd493b342005-04-09 15:23:25 +0000594 MachineInstr *Ret = &MBB->back();
Bill Wendling420cdeb2008-02-20 07:36:31 +0000595
Chris Lattner84bc5422007-12-31 04:13:23 +0000596 for (MachineRegisterInfo::liveout_iterator
597 I = MF->getRegInfo().liveout_begin(),
598 E = MF->getRegInfo().liveout_end(); I != E; ++I) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000599 assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
Dan Gohman48b0b882008-06-25 22:14:43 +0000600 "Cannot have a live-out virtual register!");
Chris Lattnerd493b342005-04-09 15:23:25 +0000601 HandlePhysRegUse(*I, Ret);
Bill Wendling420cdeb2008-02-20 07:36:31 +0000602
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000603 // Add live-out registers as implicit uses.
Evan Cheng6130f662008-03-05 00:59:57 +0000604 if (!Ret->readsRegister(*I))
Chris Lattner8019f412007-12-30 00:41:17 +0000605 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
Chris Lattnerd493b342005-04-09 15:23:25 +0000606 }
607 }
608
Evan Chengbfe8afa2012-01-14 01:53:46 +0000609 // MachineCSE may CSE instructions which write to non-allocatable physical
610 // registers across MBBs. Remember if any reserved register is liveout.
611 SmallSet<unsigned, 4> LiveOuts;
612 for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
613 SE = MBB->succ_end(); SI != SE; ++SI) {
614 MachineBasicBlock *SuccMBB = *SI;
615 if (SuccMBB->isLandingPad())
616 continue;
617 for (MachineBasicBlock::livein_iterator LI = SuccMBB->livein_begin(),
618 LE = SuccMBB->livein_end(); LI != LE; ++LI) {
619 unsigned LReg = *LI;
620 if (!TRI->isInAllocatableClass(LReg))
621 // Ignore other live-ins, e.g. those that are live into landing pads.
622 LiveOuts.insert(LReg);
623 }
624 }
625
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000626 // Loop over PhysRegDef / PhysRegUse, killing any registers that are
627 // available at the end of the basic block.
Evan Chenge96f5012007-04-25 19:34:00 +0000628 for (unsigned i = 0; i != NumRegs; ++i)
Evan Chengbfe8afa2012-01-14 01:53:46 +0000629 if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
Evan Chengad934b82009-09-24 02:15:22 +0000630 HandlePhysRegDef(i, 0, Defs);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000631
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000632 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
633 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000634 }
635
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000636 // Convert and transfer the dead / killed information we have gathered into
637 // VirtRegInfo onto MI's.
Jakob Stoklund Olesenb421c562011-01-08 23:10:57 +0000638 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i) {
639 const unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
640 for (unsigned j = 0, e2 = VirtRegInfo[Reg].Kills.size(); j != e2; ++j)
641 if (VirtRegInfo[Reg].Kills[j] == MRI->getVRegDef(Reg))
642 VirtRegInfo[Reg].Kills[j]->addRegisterDead(Reg, TRI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000643 else
Jakob Stoklund Olesenb421c562011-01-08 23:10:57 +0000644 VirtRegInfo[Reg].Kills[j]->addRegisterKilled(Reg, TRI);
645 }
Chris Lattnera5287a62004-07-01 04:24:29 +0000646
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000647 // Check to make sure there are no unreachable blocks in the MC CFG for the
648 // function. If so, it is due to a bug in the instruction selector or some
649 // other part of the code generator if this happens.
650#ifndef NDEBUG
Evan Chengc6a24102007-03-17 09:29:54 +0000651 for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000652 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
653#endif
654
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000655 delete[] PhysRegDef;
656 delete[] PhysRegUse;
Evan Chenge96f5012007-04-25 19:34:00 +0000657 delete[] PHIVarInfo;
658
Chris Lattnerbc40e892003-01-13 20:01:16 +0000659 return false;
660}
Chris Lattner5ed001b2004-02-19 18:28:02 +0000661
Evan Chengbe04dc12008-07-03 00:07:19 +0000662/// replaceKillInstruction - Update register kill info by replacing a kill
663/// instruction with a new one.
664void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
665 MachineInstr *NewMI) {
666 VarInfo &VI = getVarInfo(Reg);
Evan Cheng5b9f60b2008-07-03 00:28:27 +0000667 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI);
Evan Chengbe04dc12008-07-03 00:07:19 +0000668}
669
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000670/// removeVirtualRegistersKilled - Remove all killed info for the specified
671/// instruction.
672void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000673 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
674 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000675 if (MO.isReg() && MO.isKill()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000676 MO.setIsKill(false);
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000677 unsigned Reg = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000678 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000679 bool removed = getVarInfo(Reg).removeKill(MI);
680 assert(removed && "kill not in register's VarInfo?");
Duncan Sands1f6a3292011-08-12 14:54:45 +0000681 (void)removed;
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000682 }
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000683 }
684 }
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000685}
686
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000687/// analyzePHINodes - Gather information about the PHI nodes in here. In
Bill Wendling6d794742008-02-20 09:15:16 +0000688/// particular, we want to map the variable information of a virtual register
689/// which is used in a PHI node. We map that to the BB the vreg is coming from.
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000690///
691void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
692 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
693 I != E; ++I)
694 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
Chris Lattner518bb532010-02-09 19:54:29 +0000695 BBI != BBE && BBI->isPHI(); ++BBI)
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000696 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Bill Wendling90a38682008-02-20 06:10:21 +0000697 PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()]
698 .push_back(BBI->getOperand(i).getReg());
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000699}
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000700
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000701bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
702 unsigned Reg,
703 MachineRegisterInfo &MRI) {
704 unsigned Num = MBB.getNumber();
705
706 // Reg is live-through.
707 if (AliveBlocks.test(Num))
708 return true;
709
710 // Registers defined in MBB cannot be live in.
711 const MachineInstr *Def = MRI.getVRegDef(Reg);
712 if (Def && Def->getParent() == &MBB)
713 return false;
714
715 // Reg was not defined in MBB, was it killed here?
716 return findKill(&MBB);
717}
718
Jakob Stoklund Olesen8f722352009-12-01 17:13:31 +0000719bool LiveVariables::isLiveOut(unsigned Reg, const MachineBasicBlock &MBB) {
720 LiveVariables::VarInfo &VI = getVarInfo(Reg);
721
722 // Loop over all of the successors of the basic block, checking to see if
723 // the value is either live in the block, or if it is killed in the block.
Benjamin Kramerf337fb22011-03-08 17:28:36 +0000724 SmallVector<MachineBasicBlock*, 8> OpSuccBlocks;
Jakob Stoklund Olesen8f722352009-12-01 17:13:31 +0000725 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(),
726 E = MBB.succ_end(); SI != E; ++SI) {
727 MachineBasicBlock *SuccMBB = *SI;
728
729 // Is it alive in this successor?
730 unsigned SuccIdx = SuccMBB->getNumber();
731 if (VI.AliveBlocks.test(SuccIdx))
732 return true;
733 OpSuccBlocks.push_back(SuccMBB);
734 }
735
736 // Check to see if this value is live because there is a use in a successor
737 // that kills it.
738 switch (OpSuccBlocks.size()) {
739 case 1: {
740 MachineBasicBlock *SuccMBB = OpSuccBlocks[0];
741 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
742 if (VI.Kills[i]->getParent() == SuccMBB)
743 return true;
744 break;
745 }
746 case 2: {
747 MachineBasicBlock *SuccMBB1 = OpSuccBlocks[0], *SuccMBB2 = OpSuccBlocks[1];
748 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
749 if (VI.Kills[i]->getParent() == SuccMBB1 ||
750 VI.Kills[i]->getParent() == SuccMBB2)
751 return true;
752 break;
753 }
754 default:
755 std::sort(OpSuccBlocks.begin(), OpSuccBlocks.end());
756 for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
757 if (std::binary_search(OpSuccBlocks.begin(), OpSuccBlocks.end(),
758 VI.Kills[i]->getParent()))
759 return true;
760 }
761 return false;
762}
763
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000764/// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
765/// variables that are live out of DomBB will be marked as passing live through
766/// BB.
767void LiveVariables::addNewBlock(MachineBasicBlock *BB,
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000768 MachineBasicBlock *DomBB,
769 MachineBasicBlock *SuccBB) {
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000770 const unsigned NumNew = BB->getNumber();
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000771
772 // All registers used by PHI nodes in SuccBB must be live through BB.
Evan Cheng7c2a4a32011-12-06 22:12:01 +0000773 for (MachineBasicBlock::iterator BBI = SuccBB->begin(),
Chris Lattner518bb532010-02-09 19:54:29 +0000774 BBE = SuccBB->end(); BBI != BBE && BBI->isPHI(); ++BBI)
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000775 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
776 if (BBI->getOperand(i+1).getMBB() == BB)
777 getVarInfo(BBI->getOperand(i).getReg()).AliveBlocks.set(NumNew);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000778
779 // Update info for all live variables
Jakob Stoklund Olesenb421c562011-01-08 23:10:57 +0000780 for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
781 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000782 VarInfo &VI = getVarInfo(Reg);
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000783 if (!VI.AliveBlocks.test(NumNew) && VI.isLiveIn(*SuccBB, Reg, *MRI))
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000784 VI.AliveBlocks.set(NumNew);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000785 }
786}