blob: 68f80acf1562f01e76eebc10eb97113419442adc [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"
Dan Gohman6f0d0242008-02-10 18:45:23 +000033#include "llvm/Target/TargetRegisterInfo.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;
Chris Lattner5d8925c2006-08-27 22:30:17 +000044static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis");
Chris Lattnerbc40e892003-01-13 20:01:16 +000045
Owen Andersonbd3ba462008-08-04 23:54:43 +000046
47void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
48 AU.addRequiredID(UnreachableMachineBlockElimID);
49 AU.setPreservesAll();
Dan Gohmanad2afc22009-07-31 18:16:33 +000050 MachineFunctionPass::getAnalysisUsage(AU);
Owen Andersonbd3ba462008-08-04 23:54:43 +000051}
52
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +000053MachineInstr *
54LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
55 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
56 if (Kills[i]->getParent() == MBB)
57 return Kills[i];
58 return NULL;
59}
60
Chris Lattnerdacceef2006-01-04 05:40:30 +000061void LiveVariables::VarInfo::dump() const {
Chris Lattner705e07f2009-08-23 03:41:05 +000062 errs() << " Alive in blocks: ";
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +000063 for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
64 E = AliveBlocks.end(); I != E; ++I)
Chris Lattner705e07f2009-08-23 03:41:05 +000065 errs() << *I << ", ";
66 errs() << "\n Killed by:";
Chris Lattnerdacceef2006-01-04 05:40:30 +000067 if (Kills.empty())
Chris Lattner705e07f2009-08-23 03:41:05 +000068 errs() << " No instructions.\n";
Chris Lattnerdacceef2006-01-04 05:40:30 +000069 else {
70 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
Chris Lattner705e07f2009-08-23 03:41:05 +000071 errs() << "\n #" << i << ": " << *Kills[i];
72 errs() << "\n";
Chris Lattnerdacceef2006-01-04 05:40:30 +000073 }
74}
75
Bill Wendling90a38682008-02-20 06:10:21 +000076/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
Chris Lattnerfb2cb692003-05-12 14:24:00 +000077LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Dan Gohman6f0d0242008-02-10 18:45:23 +000078 assert(TargetRegisterInfo::isVirtualRegister(RegIdx) &&
Chris Lattnerfb2cb692003-05-12 14:24:00 +000079 "getVarInfo: not a virtual register!");
Dan Gohman6f0d0242008-02-10 18:45:23 +000080 RegIdx -= TargetRegisterInfo::FirstVirtualRegister;
Chris Lattnerfb2cb692003-05-12 14:24:00 +000081 if (RegIdx >= VirtRegInfo.size()) {
82 if (RegIdx >= 2*VirtRegInfo.size())
83 VirtRegInfo.resize(RegIdx*2);
84 else
85 VirtRegInfo.resize(2*VirtRegInfo.size());
86 }
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +000087 return VirtRegInfo[RegIdx];
Chris Lattnerfb2cb692003-05-12 14:24:00 +000088}
89
Owen Anderson40a627d2008-01-15 22:58:11 +000090void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
91 MachineBasicBlock *DefBlock,
Evan Cheng56184902007-05-08 19:00:00 +000092 MachineBasicBlock *MBB,
93 std::vector<MachineBasicBlock*> &WorkList) {
Chris Lattner8ba97712004-07-01 04:29:47 +000094 unsigned BBNum = MBB->getNumber();
Owen Anderson7047dd42008-01-15 22:02:46 +000095
Chris Lattnerbc40e892003-01-13 20:01:16 +000096 // Check to see if this basic block is one of the killing blocks. If so,
Bill Wendling90a38682008-02-20 06:10:21 +000097 // remove it.
Chris Lattnerbc40e892003-01-13 20:01:16 +000098 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +000099 if (VRInfo.Kills[i]->getParent() == MBB) {
Chris Lattnerbc40e892003-01-13 20:01:16 +0000100 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
101 break;
102 }
Owen Anderson7047dd42008-01-15 22:02:46 +0000103
Owen Anderson40a627d2008-01-15 22:58:11 +0000104 if (MBB == DefBlock) return; // Terminate recursion
Chris Lattnerbc40e892003-01-13 20:01:16 +0000105
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000106 if (VRInfo.AliveBlocks.test(BBNum))
Chris Lattnerbc40e892003-01-13 20:01:16 +0000107 return; // We already know the block is live
108
109 // Mark the variable known alive in this bb
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000110 VRInfo.AliveBlocks.set(BBNum);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000111
Evan Cheng56184902007-05-08 19:00:00 +0000112 for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(),
113 E = MBB->pred_rend(); PI != E; ++PI)
114 WorkList.push_back(*PI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000115}
116
Bill Wendling420cdeb2008-02-20 07:36:31 +0000117void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Owen Anderson40a627d2008-01-15 22:58:11 +0000118 MachineBasicBlock *DefBlock,
Evan Cheng56184902007-05-08 19:00:00 +0000119 MachineBasicBlock *MBB) {
120 std::vector<MachineBasicBlock*> WorkList;
Owen Anderson40a627d2008-01-15 22:58:11 +0000121 MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
Bill Wendling420cdeb2008-02-20 07:36:31 +0000122
Evan Cheng56184902007-05-08 19:00:00 +0000123 while (!WorkList.empty()) {
124 MachineBasicBlock *Pred = WorkList.back();
125 WorkList.pop_back();
Owen Anderson40a627d2008-01-15 22:58:11 +0000126 MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
Evan Cheng56184902007-05-08 19:00:00 +0000127 }
128}
129
Owen Anderson7047dd42008-01-15 22:02:46 +0000130void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
Misha Brukman09ba9062004-06-24 21:31:16 +0000131 MachineInstr *MI) {
Evan Chengea1d9cd2008-04-02 18:04:08 +0000132 assert(MRI->getVRegDef(reg) && "Register use before def!");
Alkis Evlogimenos2e58a412004-09-01 22:34:52 +0000133
Owen Andersona0185402007-11-08 01:20:48 +0000134 unsigned BBNum = MBB->getNumber();
135
Owen Anderson7047dd42008-01-15 22:02:46 +0000136 VarInfo& VRInfo = getVarInfo(reg);
Evan Cheng38b7ca62007-04-17 20:22:11 +0000137 VRInfo.NumUses++;
Evan Chengc6a24102007-03-17 09:29:54 +0000138
Bill Wendling90a38682008-02-20 06:10:21 +0000139 // Check to see if this basic block is already a kill block.
Chris Lattner74de8b12004-07-19 07:04:55 +0000140 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Bill Wendling90a38682008-02-20 06:10:21 +0000141 // Yes, this register is killed in this basic block already. Increase the
Chris Lattnerbc40e892003-01-13 20:01:16 +0000142 // live range by updating the kill instruction.
Chris Lattner74de8b12004-07-19 07:04:55 +0000143 VRInfo.Kills.back() = MI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000144 return;
145 }
146
147#ifndef NDEBUG
148 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +0000149 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
Chris Lattnerbc40e892003-01-13 20:01:16 +0000150#endif
151
Bill Wendlingebcba612008-06-23 23:41:14 +0000152 // This situation can occur:
153 //
154 // ,------.
155 // | |
156 // | v
157 // | t2 = phi ... t1 ...
158 // | |
159 // | v
160 // | t1 = ...
161 // | ... = ... t1 ...
162 // | |
163 // `------'
164 //
165 // where there is a use in a PHI node that's a predecessor to the defining
166 // block. We don't want to mark all predecessors as having the value "alive"
167 // in this case.
168 if (MBB == MRI->getVRegDef(reg)->getParent()) return;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000169
Bill Wendling90a38682008-02-20 06:10:21 +0000170 // Add a new kill entry for this basic block. If this virtual register is
171 // already marked as alive in this basic block, that means it is alive in at
172 // least one of the successor blocks, it's not a kill.
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000173 if (!VRInfo.AliveBlocks.test(BBNum))
Evan Chenge2ee9962007-03-09 09:48:56 +0000174 VRInfo.Kills.push_back(MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000175
Bill Wendling420cdeb2008-02-20 07:36:31 +0000176 // Update all dominating blocks to mark them as "known live".
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000177 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
178 E = MBB->pred_end(); PI != E; ++PI)
Evan Chengea1d9cd2008-04-02 18:04:08 +0000179 MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000180}
181
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000182void LiveVariables::HandleVirtRegDef(unsigned Reg, MachineInstr *MI) {
183 VarInfo &VRInfo = getVarInfo(Reg);
184
Jeffrey Yasskin493a3d02009-05-26 18:27:15 +0000185 if (VRInfo.AliveBlocks.empty())
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000186 // If vr is not alive in any block, then defaults to dead.
187 VRInfo.Kills.push_back(MI);
188}
189
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000190/// FindLastPartialDef - Return the last partial def of the specified register.
Evan Cheng60c7df22009-09-22 08:34:46 +0000191/// Also returns the sub-registers that're defined by the instruction.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000192MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg,
Evan Cheng60c7df22009-09-22 08:34:46 +0000193 SmallSet<unsigned,4> &PartDefRegs) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000194 unsigned LastDefReg = 0;
195 unsigned LastDefDist = 0;
196 MachineInstr *LastDef = NULL;
197 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
198 unsigned SubReg = *SubRegs; ++SubRegs) {
199 MachineInstr *Def = PhysRegDef[SubReg];
200 if (!Def)
201 continue;
202 unsigned Dist = DistanceMap[Def];
203 if (Dist > LastDefDist) {
204 LastDefReg = SubReg;
205 LastDef = Def;
206 LastDefDist = Dist;
207 }
208 }
Evan Cheng60c7df22009-09-22 08:34:46 +0000209
210 if (!LastDef)
211 return 0;
212
213 PartDefRegs.insert(LastDefReg);
214 for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
215 MachineOperand &MO = LastDef->getOperand(i);
216 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
217 continue;
218 unsigned DefReg = MO.getReg();
219 if (TRI->isSubRegister(Reg, DefReg)) {
220 PartDefRegs.insert(DefReg);
221 for (const unsigned *SubRegs = TRI->getSubRegisters(DefReg);
222 unsigned SubReg = *SubRegs; ++SubRegs)
223 PartDefRegs.insert(SubReg);
224 }
225 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000226 return LastDef;
227}
228
Bill Wendling6d794742008-02-20 09:15:16 +0000229/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
230/// implicit defs to a machine instruction if there was an earlier def of its
231/// super-register.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000232void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Evan Cheng236490d2009-11-13 20:36:40 +0000233 MachineInstr *LastDef = PhysRegDef[Reg];
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000234 // If there was a previous use or a "full" def all is well.
Evan Cheng236490d2009-11-13 20:36:40 +0000235 if (!LastDef && !PhysRegUse[Reg]) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000236 // Otherwise, the last sub-register def implicitly defines this register.
237 // e.g.
238 // AH =
239 // AL = ... <imp-def EAX>, <imp-kill AH>
240 // = AH
241 // ...
242 // = EAX
243 // All of the sub-registers must have been defined before the use of Reg!
Evan Cheng60c7df22009-09-22 08:34:46 +0000244 SmallSet<unsigned, 4> PartDefRegs;
245 MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefRegs);
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000246 // If LastPartialDef is NULL, it must be using a livein register.
247 if (LastPartialDef) {
248 LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
249 true/*IsImp*/));
250 PhysRegDef[Reg] = LastPartialDef;
Owen Andersonbbf55832008-08-14 23:41:38 +0000251 SmallSet<unsigned, 8> Processed;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000252 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
253 unsigned SubReg = *SubRegs; ++SubRegs) {
254 if (Processed.count(SubReg))
255 continue;
Evan Cheng60c7df22009-09-22 08:34:46 +0000256 if (PartDefRegs.count(SubReg))
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000257 continue;
258 // This part of Reg was defined before the last partial def. It's killed
259 // here.
260 LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
261 false/*IsDef*/,
262 true/*IsImp*/));
263 PhysRegDef[SubReg] = LastPartialDef;
264 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
265 Processed.insert(*SS);
266 }
267 }
Evan Cheng24a3cc42007-04-25 07:30:23 +0000268 }
Evan Cheng236490d2009-11-13 20:36:40 +0000269 else if (LastDef && !PhysRegUse[Reg] &&
270 !LastDef->findRegisterDefOperand(Reg))
271 // Last def defines the super register, add an implicit def of reg.
272 LastDef->addOperand(MachineOperand::CreateReg(Reg,
273 true/*IsDef*/, true/*IsImp*/));
Bill Wendling90a38682008-02-20 06:10:21 +0000274
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000275 // Remember this use.
276 PhysRegUse[Reg] = MI;
Evan Cheng6130f662008-03-05 00:59:57 +0000277 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Bill Wendling420cdeb2008-02-20 07:36:31 +0000278 unsigned SubReg = *SubRegs; ++SubRegs)
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000279 PhysRegUse[SubReg] = MI;
Evan Cheng4efe7412007-06-26 21:03:35 +0000280}
281
Evan Chenga4025df2009-12-01 00:44:45 +0000282/// FindLastRefOrPartRef - Return the last reference or partial reference of
283/// the specified register.
284MachineInstr *LiveVariables::FindLastRefOrPartRef(unsigned Reg) {
285 MachineInstr *LastDef = PhysRegDef[Reg];
286 MachineInstr *LastUse = PhysRegUse[Reg];
287 if (!LastDef && !LastUse)
288 return false;
289
290 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
291 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
292 MachineInstr *LastPartDef = 0;
293 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];
301 if (Dist > LastPartDefDist) {
302 LastPartDefDist = Dist;
303 LastPartDef = Def;
304 }
305 continue;
306 }
307 if (MachineInstr *Use = PhysRegUse[SubReg]) {
308 unsigned Dist = DistanceMap[Use];
309 if (Dist > LastRefOrPartRefDist) {
310 LastRefOrPartRefDist = Dist;
311 LastRefOrPartRef = Use;
312 }
313 }
314 }
315
316 return LastRefOrPartRef;
317}
318
Evan Chenga894ae12009-01-20 21:25:12 +0000319bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
Evan Chengad934b82009-09-24 02:15:22 +0000320 MachineInstr *LastDef = PhysRegDef[Reg];
321 MachineInstr *LastUse = PhysRegUse[Reg];
322 if (!LastDef && !LastUse)
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000323 return false;
324
Evan Chengad934b82009-09-24 02:15:22 +0000325 MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
Evan Cheng0d4bdde2008-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 Chengad934b82009-09-24 02:15:22 +0000344 MachineInstr *LastPartDef = 0;
345 unsigned LastPartDefDist = 0;
Owen Andersonbbf55832008-08-14 23:41:38 +0000346 SmallSet<unsigned, 8> PartUses;
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000347 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
348 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Chengad934b82009-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 Cheng0d4bdde2008-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;
Evan Cheng4efe7412007-06-26 21:03:35 +0000368 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000369 }
370 }
Evan Chenga894ae12009-01-20 21:25:12 +0000371
Evan Chengad934b82009-09-24 02:15:22 +0000372 if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI) {
373 if (LastPartDef)
374 // The last partial def kills the register.
375 LastPartDef->addOperand(MachineOperand::CreateReg(Reg, false/*IsDef*/,
376 true/*IsImp*/, true/*IsKill*/));
Evan Chenga2f80472009-10-14 23:39:27 +0000377 else {
378 MachineOperand *MO =
379 LastRefOrPartRef->findRegisterDefOperand(Reg, false, TRI);
380 bool NeedEC = MO->isEarlyClobber() && MO->getReg() != Reg;
Evan Chengad934b82009-09-24 02:15:22 +0000381 // If the last reference is the last def, then it's not used at all.
382 // That is, unless we are currently processing the last reference itself.
383 LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
Evan Chenga2f80472009-10-14 23:39:27 +0000384 if (NeedEC) {
385 // If we are adding a subreg def and the superreg def is marked early
386 // clobber, add an early clobber marker to the subreg def.
387 MO = LastRefOrPartRef->findRegisterDefOperand(Reg);
388 if (MO)
389 MO->setIsEarlyClobber();
390 }
391 }
Evan Chengad934b82009-09-24 02:15:22 +0000392 } else if (!PhysRegUse[Reg]) {
393 // Partial uses. Mark register def dead and add implicit def of
394 // sub-registers which are used.
395 // EAX<dead> = op AL<imp-def>
396 // That is, EAX def is dead but AL def extends pass it.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000397 PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
398 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
399 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Chengad934b82009-09-24 02:15:22 +0000400 if (!PartUses.count(SubReg))
401 continue;
402 bool NeedDef = true;
403 if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
404 MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
405 if (MO) {
406 NeedDef = false;
407 assert(!MO->isDead());
Evan Cheng2c4d96d2009-07-06 21:34:05 +0000408 }
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000409 }
Evan Chengad934b82009-09-24 02:15:22 +0000410 if (NeedDef)
411 PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
412 true/*IsDef*/, true/*IsImp*/));
Evan Chenga4025df2009-12-01 00:44:45 +0000413 MachineInstr *LastSubRef = FindLastRefOrPartRef(SubReg);
414 if (LastSubRef)
415 LastSubRef->addRegisterKilled(SubReg, TRI, true);
416 else {
417 LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
418 PhysRegUse[SubReg] = LastRefOrPartRef;
419 for (const unsigned *SSRegs = TRI->getSubRegisters(SubReg);
420 unsigned SSReg = *SSRegs; ++SSRegs)
421 PhysRegUse[SSReg] = LastRefOrPartRef;
422 }
Evan Chengad934b82009-09-24 02:15:22 +0000423 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
424 PartUses.erase(*SS);
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000425 }
Evan Chengad934b82009-09-24 02:15:22 +0000426 } else
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000427 LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
428 return true;
429}
430
Evan Cheng296925d2009-09-23 06:28:31 +0000431void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
Evan Chengad934b82009-09-24 02:15:22 +0000432 SmallVector<unsigned, 4> &Defs) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000433 // What parts of the register are previously defined?
Owen Andersonbffdf662008-06-27 07:05:59 +0000434 SmallSet<unsigned, 32> Live;
Evan Cheng0d4bdde2008-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 Chengad934b82009-09-24 02:15:22 +0000448 if (Live.count(SubReg))
449 continue;
Evan Cheng0d4bdde2008-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 Wendling420cdeb2008-02-20 07:36:31 +0000455 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000456 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000457
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000458 // Start from the largest piece, find the last time any part of the register
459 // is referenced.
Evan Chengad934b82009-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);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000468 }
469
Evan Chengad934b82009-09-24 02:15:22 +0000470 if (MI)
471 Defs.push_back(Reg); // Remember this def.
Evan Cheng296925d2009-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 Cheng0d4bdde2008-04-16 09:46:40 +0000479 PhysRegDef[Reg] = MI;
480 PhysRegUse[Reg] = NULL;
Evan Cheng6130f662008-03-05 00:59:57 +0000481 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Evan Cheng4efe7412007-06-26 21:03:35 +0000482 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000483 PhysRegDef[SubReg] = MI;
484 PhysRegUse[SubReg] = NULL;
Evan Cheng4efe7412007-06-26 21:03:35 +0000485 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000486 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000487}
488
Evan Cheng296925d2009-09-23 06:28:31 +0000489namespace {
490 struct RegSorter {
491 const TargetRegisterInfo *TRI;
492
493 RegSorter(const TargetRegisterInfo *tri) : TRI(tri) { }
494 bool operator()(unsigned A, unsigned B) {
495 if (TRI->isSubRegister(A, B))
496 return true;
497 else if (TRI->isSubRegister(B, A))
498 return false;
499 return A < B;
500 }
501 };
502}
503
Evan Chengc6a24102007-03-17 09:29:54 +0000504bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
505 MF = &mf;
Evan Chengea1d9cd2008-04-02 18:04:08 +0000506 MRI = &mf.getRegInfo();
Evan Cheng6130f662008-03-05 00:59:57 +0000507 TRI = MF->getTarget().getRegisterInfo();
Chris Lattner96aef892004-02-09 01:35:21 +0000508
Evan Cheng6130f662008-03-05 00:59:57 +0000509 ReservedRegisters = TRI->getReservedRegs(mf);
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000510
Evan Cheng6130f662008-03-05 00:59:57 +0000511 unsigned NumRegs = TRI->getNumRegs();
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000512 PhysRegDef = new MachineInstr*[NumRegs];
513 PhysRegUse = new MachineInstr*[NumRegs];
Evan Chenge96f5012007-04-25 19:34:00 +0000514 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000515 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
516 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000517
Bill Wendling6d794742008-02-20 09:15:16 +0000518 /// Get some space for a respectable number of registers.
Chris Lattnerbc40e892003-01-13 20:01:16 +0000519 VirtRegInfo.resize(64);
Chris Lattnerd493b342005-04-09 15:23:25 +0000520
Evan Chengc6a24102007-03-17 09:29:54 +0000521 analyzePHINodes(mf);
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000522
Chris Lattnerbc40e892003-01-13 20:01:16 +0000523 // Calculate live variable information in depth first order on the CFG of the
524 // function. This guarantees that we will see the definition of a virtual
525 // register before its uses due to dominance properties of SSA (except for PHI
526 // nodes, which are treated as a special case).
Evan Chengc6a24102007-03-17 09:29:54 +0000527 MachineBasicBlock *Entry = MF->begin();
Evan Cheng04104072007-06-27 05:23:00 +0000528 SmallPtrSet<MachineBasicBlock*,16> Visited;
Bill Wendling6d794742008-02-20 09:15:16 +0000529
Evan Cheng04104072007-06-27 05:23:00 +0000530 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
531 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
532 DFI != E; ++DFI) {
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000533 MachineBasicBlock *MBB = *DFI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000534
Evan Chengb371f452007-02-19 21:49:54 +0000535 // Mark live-in registers as live-in.
Evan Cheng296925d2009-09-23 06:28:31 +0000536 SmallVector<unsigned, 4> Defs;
Evan Chengb371f452007-02-19 21:49:54 +0000537 for (MachineBasicBlock::const_livein_iterator II = MBB->livein_begin(),
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000538 EE = MBB->livein_end(); II != EE; ++II) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000539 assert(TargetRegisterInfo::isPhysicalRegister(*II) &&
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000540 "Cannot have a live-in virtual register!");
Evan Chengad934b82009-09-24 02:15:22 +0000541 HandlePhysRegDef(*II, 0, Defs);
Evan Cheng0c9f92e2007-02-13 01:30:55 +0000542 }
543
Chris Lattnerbc40e892003-01-13 20:01:16 +0000544 // Loop over all of the instructions, processing them.
Evan Chengea1d9cd2008-04-02 18:04:08 +0000545 DistanceMap.clear();
546 unsigned Dist = 0;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000547 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
Misha Brukman09ba9062004-06-24 21:31:16 +0000548 I != E; ++I) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000549 MachineInstr *MI = I;
Evan Chengea1d9cd2008-04-02 18:04:08 +0000550 DistanceMap.insert(std::make_pair(MI, Dist++));
Chris Lattnerbc40e892003-01-13 20:01:16 +0000551
552 // Process all of the operands of the instruction...
553 unsigned NumOperandsToProcess = MI->getNumOperands();
554
555 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
556 // of the uses. They will be handled in other basic blocks.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000557 if (MI->getOpcode() == TargetInstrInfo::PHI)
Misha Brukman09ba9062004-06-24 21:31:16 +0000558 NumOperandsToProcess = 1;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000559
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000560 SmallVector<unsigned, 4> UseRegs;
561 SmallVector<unsigned, 4> DefRegs;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000562 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Bill Wendling90a38682008-02-20 06:10:21 +0000563 const MachineOperand &MO = MI->getOperand(i);
Evan Chenga894ae12009-01-20 21:25:12 +0000564 if (!MO.isReg() || MO.getReg() == 0)
565 continue;
566 unsigned MOReg = MO.getReg();
567 if (MO.isUse())
568 UseRegs.push_back(MOReg);
569 if (MO.isDef())
570 DefRegs.push_back(MOReg);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000571 }
572
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000573 // Process all uses.
574 for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
575 unsigned MOReg = UseRegs[i];
576 if (TargetRegisterInfo::isVirtualRegister(MOReg))
577 HandleVirtRegUse(MOReg, MBB, MI);
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000578 else if (!ReservedRegisters[MOReg])
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000579 HandlePhysRegUse(MOReg, MI);
580 }
581
Bill Wendling6d794742008-02-20 09:15:16 +0000582 // Process all defs.
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000583 for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
584 unsigned MOReg = DefRegs[i];
Dan Gohman3bdf5fe2008-09-21 21:11:41 +0000585 if (TargetRegisterInfo::isVirtualRegister(MOReg))
586 HandleVirtRegDef(MOReg, MI);
Evan Chengad934b82009-09-24 02:15:22 +0000587 else if (!ReservedRegisters[MOReg])
588 HandlePhysRegDef(MOReg, MI, Defs);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000589 }
Evan Cheng296925d2009-09-23 06:28:31 +0000590 UpdatePhysRegDefs(MI, Defs);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000591 }
592
593 // Handle any virtual assignments from PHI nodes which might be at the
594 // bottom of this basic block. We check all of our successor blocks to see
595 // if they have PHI nodes, and if so, we simulate an assignment at the end
596 // of the current block.
Evan Chenge96f5012007-04-25 19:34:00 +0000597 if (!PHIVarInfo[MBB->getNumber()].empty()) {
598 SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
Misha Brukmanedf128a2005-04-21 22:36:52 +0000599
Evan Chenge96f5012007-04-25 19:34:00 +0000600 for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
Bill Wendling420cdeb2008-02-20 07:36:31 +0000601 E = VarInfoVec.end(); I != E; ++I)
602 // Mark it alive only in the block we are representing.
Evan Chengea1d9cd2008-04-02 18:04:08 +0000603 MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(),
Owen Anderson40a627d2008-01-15 22:58:11 +0000604 MBB);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000605 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000606
Bill Wendling6d794742008-02-20 09:15:16 +0000607 // Finally, if the last instruction in the block is a return, make sure to
608 // mark it as using all of the live-out values in the function.
Chris Lattner749c6f62008-01-07 07:27:27 +0000609 if (!MBB->empty() && MBB->back().getDesc().isReturn()) {
Chris Lattnerd493b342005-04-09 15:23:25 +0000610 MachineInstr *Ret = &MBB->back();
Bill Wendling420cdeb2008-02-20 07:36:31 +0000611
Chris Lattner84bc5422007-12-31 04:13:23 +0000612 for (MachineRegisterInfo::liveout_iterator
613 I = MF->getRegInfo().liveout_begin(),
614 E = MF->getRegInfo().liveout_end(); I != E; ++I) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000615 assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
Dan Gohman48b0b882008-06-25 22:14:43 +0000616 "Cannot have a live-out virtual register!");
Chris Lattnerd493b342005-04-09 15:23:25 +0000617 HandlePhysRegUse(*I, Ret);
Bill Wendling420cdeb2008-02-20 07:36:31 +0000618
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000619 // Add live-out registers as implicit uses.
Evan Cheng6130f662008-03-05 00:59:57 +0000620 if (!Ret->readsRegister(*I))
Chris Lattner8019f412007-12-30 00:41:17 +0000621 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
Chris Lattnerd493b342005-04-09 15:23:25 +0000622 }
623 }
624
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000625 // Loop over PhysRegDef / PhysRegUse, killing any registers that are
626 // available at the end of the basic block.
Evan Chenge96f5012007-04-25 19:34:00 +0000627 for (unsigned i = 0; i != NumRegs; ++i)
Evan Chengad934b82009-09-24 02:15:22 +0000628 if (PhysRegDef[i] || PhysRegUse[i])
629 HandlePhysRegDef(i, 0, Defs);
Evan Cheng24a3cc42007-04-25 07:30:23 +0000630
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000631 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
632 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000633 }
634
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000635 // Convert and transfer the dead / killed information we have gathered into
636 // VirtRegInfo onto MI's.
Evan Chengf0e3bb12007-03-09 06:02:17 +0000637 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i)
Bill Wendling420cdeb2008-02-20 07:36:31 +0000638 for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j)
639 if (VirtRegInfo[i].Kills[j] ==
Evan Chengea1d9cd2008-04-02 18:04:08 +0000640 MRI->getVRegDef(i + TargetRegisterInfo::FirstVirtualRegister))
Bill Wendling420cdeb2008-02-20 07:36:31 +0000641 VirtRegInfo[i]
642 .Kills[j]->addRegisterDead(i +
643 TargetRegisterInfo::FirstVirtualRegister,
Evan Cheng6130f662008-03-05 00:59:57 +0000644 TRI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000645 else
Bill Wendling420cdeb2008-02-20 07:36:31 +0000646 VirtRegInfo[i]
647 .Kills[j]->addRegisterKilled(i +
648 TargetRegisterInfo::FirstVirtualRegister,
Evan Cheng6130f662008-03-05 00:59:57 +0000649 TRI);
Chris Lattnera5287a62004-07-01 04:24:29 +0000650
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000651 // Check to make sure there are no unreachable blocks in the MC CFG for the
652 // function. If so, it is due to a bug in the instruction selector or some
653 // other part of the code generator if this happens.
654#ifndef NDEBUG
Evan Chengc6a24102007-03-17 09:29:54 +0000655 for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000656 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
657#endif
658
Evan Cheng0d4bdde2008-04-16 09:46:40 +0000659 delete[] PhysRegDef;
660 delete[] PhysRegUse;
Evan Chenge96f5012007-04-25 19:34:00 +0000661 delete[] PHIVarInfo;
662
Chris Lattnerbc40e892003-01-13 20:01:16 +0000663 return false;
664}
Chris Lattner5ed001b2004-02-19 18:28:02 +0000665
Evan Chengbe04dc12008-07-03 00:07:19 +0000666/// replaceKillInstruction - Update register kill info by replacing a kill
667/// instruction with a new one.
668void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
669 MachineInstr *NewMI) {
670 VarInfo &VI = getVarInfo(Reg);
Evan Cheng5b9f60b2008-07-03 00:28:27 +0000671 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI);
Evan Chengbe04dc12008-07-03 00:07:19 +0000672}
673
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000674/// removeVirtualRegistersKilled - Remove all killed info for the specified
675/// instruction.
676void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000677 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
678 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000679 if (MO.isReg() && MO.isKill()) {
Chris Lattnerf7382302007-12-30 21:56:09 +0000680 MO.setIsKill(false);
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000681 unsigned Reg = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000682 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000683 bool removed = getVarInfo(Reg).removeKill(MI);
684 assert(removed && "kill not in register's VarInfo?");
Devang Patel59500c82008-11-21 20:00:59 +0000685 removed = true;
Evan Chenga6c4c1e2006-11-15 20:51:59 +0000686 }
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000687 }
688 }
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000689}
690
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000691/// analyzePHINodes - Gather information about the PHI nodes in here. In
Bill Wendling6d794742008-02-20 09:15:16 +0000692/// particular, we want to map the variable information of a virtual register
693/// 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 +0000694///
695void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
696 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
697 I != E; ++I)
698 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
699 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
700 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Bill Wendling90a38682008-02-20 06:10:21 +0000701 PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()]
702 .push_back(BBI->getOperand(i).getReg());
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000703}
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000704
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000705bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
706 unsigned Reg,
707 MachineRegisterInfo &MRI) {
708 unsigned Num = MBB.getNumber();
709
710 // Reg is live-through.
711 if (AliveBlocks.test(Num))
712 return true;
713
714 // Registers defined in MBB cannot be live in.
715 const MachineInstr *Def = MRI.getVRegDef(Reg);
716 if (Def && Def->getParent() == &MBB)
717 return false;
718
719 // Reg was not defined in MBB, was it killed here?
720 return findKill(&MBB);
721}
722
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000723/// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
724/// variables that are live out of DomBB will be marked as passing live through
725/// BB.
726void LiveVariables::addNewBlock(MachineBasicBlock *BB,
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000727 MachineBasicBlock *DomBB,
728 MachineBasicBlock *SuccBB) {
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000729 const unsigned NumNew = BB->getNumber();
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000730
731 // All registers used by PHI nodes in SuccBB must be live through BB.
732 for (MachineBasicBlock::const_iterator BBI = SuccBB->begin(),
733 BBE = SuccBB->end();
734 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
735 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
736 if (BBI->getOperand(i+1).getMBB() == BB)
737 getVarInfo(BBI->getOperand(i).getReg()).AliveBlocks.set(NumNew);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000738
739 // Update info for all live variables
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000740 for (unsigned Reg = TargetRegisterInfo::FirstVirtualRegister,
741 E = MRI->getLastVirtReg()+1; Reg != E; ++Reg) {
742 VarInfo &VI = getVarInfo(Reg);
Jakob Stoklund Olesen323d8c32009-11-21 02:05:21 +0000743 if (!VI.AliveBlocks.test(NumNew) && VI.isLiveIn(*SuccBB, Reg, *MRI))
Jakob Stoklund Olesen3e204752009-11-11 19:31:31 +0000744 VI.AliveBlocks.set(NumNew);
Jakob Stoklund Olesenf235f132009-11-10 22:01:05 +0000745 }
746}