blob: 20345669eac58488c41c9dd7d6b10d3389918a67 [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"
Dan Gohman1e57df32008-02-10 18:45:23 +000033#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/Target/TargetInstrInfo.h"
35#include "llvm/Target/TargetMachine.h"
36#include "llvm/ADT/DepthFirstIterator.h"
37#include "llvm/ADT/SmallPtrSet.h"
Owen Anderson9a4cb152008-06-27 07:05:59 +000038#include "llvm/ADT/SmallSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#include "llvm/ADT/STLExtras.h"
40#include "llvm/Config/alloca.h"
41#include <algorithm>
42using namespace llvm;
43
44char LiveVariables::ID = 0;
45static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis");
46
Owen Andersonfb6914f2008-08-04 23:54:43 +000047
48void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
49 AU.addRequiredID(UnreachableMachineBlockElimID);
50 AU.setPreservesAll();
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000051 MachineFunctionPass::getAnalysisUsage(AU);
Owen Andersonfb6914f2008-08-04 23:54:43 +000052}
53
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054void LiveVariables::VarInfo::dump() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 cerr << " Alive in blocks: ";
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000056 for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
57 E = AliveBlocks.end(); I != E; ++I)
58 cerr << *I << ", ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059 cerr << "\n Killed by:";
60 if (Kills.empty())
61 cerr << " No instructions.\n";
62 else {
63 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
64 cerr << "\n #" << i << ": " << *Kills[i];
65 cerr << "\n";
66 }
67}
68
Bill Wendlingb88bca92008-02-20 06:10:21 +000069/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Dan Gohman1e57df32008-02-10 18:45:23 +000071 assert(TargetRegisterInfo::isVirtualRegister(RegIdx) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 "getVarInfo: not a virtual register!");
Dan Gohman1e57df32008-02-10 18:45:23 +000073 RegIdx -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 if (RegIdx >= VirtRegInfo.size()) {
75 if (RegIdx >= 2*VirtRegInfo.size())
76 VirtRegInfo.resize(RegIdx*2);
77 else
78 VirtRegInfo.resize(2*VirtRegInfo.size());
79 }
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000080 return VirtRegInfo[RegIdx];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081}
82
Owen Anderson77d80492008-01-15 22:58:11 +000083void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
84 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085 MachineBasicBlock *MBB,
86 std::vector<MachineBasicBlock*> &WorkList) {
87 unsigned BBNum = MBB->getNumber();
Owen Anderson92a609a2008-01-15 22:02:46 +000088
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 // Check to see if this basic block is one of the killing blocks. If so,
Bill Wendlingb88bca92008-02-20 06:10:21 +000090 // remove it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
92 if (VRInfo.Kills[i]->getParent() == MBB) {
93 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
94 break;
95 }
Owen Anderson92a609a2008-01-15 22:02:46 +000096
Owen Anderson77d80492008-01-15 22:58:11 +000097 if (MBB == DefBlock) return; // Terminate recursion
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000099 if (VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 return; // We already know the block is live
101
102 // Mark the variable known alive in this bb
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000103 VRInfo.AliveBlocks.set(BBNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104
105 for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(),
106 E = MBB->pred_rend(); PI != E; ++PI)
107 WorkList.push_back(*PI);
108}
109
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000110void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Owen Anderson77d80492008-01-15 22:58:11 +0000111 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 MachineBasicBlock *MBB) {
113 std::vector<MachineBasicBlock*> WorkList;
Owen Anderson77d80492008-01-15 22:58:11 +0000114 MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000115
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 while (!WorkList.empty()) {
117 MachineBasicBlock *Pred = WorkList.back();
118 WorkList.pop_back();
Owen Anderson77d80492008-01-15 22:58:11 +0000119 MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 }
121}
122
Owen Anderson92a609a2008-01-15 22:02:46 +0000123void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 MachineInstr *MI) {
Evan Cheng251fa152008-04-02 18:04:08 +0000125 assert(MRI->getVRegDef(reg) && "Register use before def!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126
Owen Anderson721b2cc2007-11-08 01:20:48 +0000127 unsigned BBNum = MBB->getNumber();
128
Owen Anderson92a609a2008-01-15 22:02:46 +0000129 VarInfo& VRInfo = getVarInfo(reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 VRInfo.NumUses++;
131
Bill Wendlingb88bca92008-02-20 06:10:21 +0000132 // Check to see if this basic block is already a kill block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Bill Wendlingb88bca92008-02-20 06:10:21 +0000134 // Yes, this register is killed in this basic block already. Increase the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 // live range by updating the kill instruction.
136 VRInfo.Kills.back() = MI;
137 return;
138 }
139
140#ifndef NDEBUG
141 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
142 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
143#endif
144
Bill Wendling09d55662008-06-23 23:41:14 +0000145 // This situation can occur:
146 //
147 // ,------.
148 // | |
149 // | v
150 // | t2 = phi ... t1 ...
151 // | |
152 // | v
153 // | t1 = ...
154 // | ... = ... t1 ...
155 // | |
156 // `------'
157 //
158 // where there is a use in a PHI node that's a predecessor to the defining
159 // block. We don't want to mark all predecessors as having the value "alive"
160 // in this case.
161 if (MBB == MRI->getVRegDef(reg)->getParent()) return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162
Bill Wendlingb88bca92008-02-20 06:10:21 +0000163 // Add a new kill entry for this basic block. If this virtual register is
164 // already marked as alive in this basic block, that means it is alive in at
165 // least one of the successor blocks, it's not a kill.
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000166 if (!VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 VRInfo.Kills.push_back(MI);
168
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000169 // Update all dominating blocks to mark them as "known live".
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
171 E = MBB->pred_end(); PI != E; ++PI)
Evan Cheng251fa152008-04-02 18:04:08 +0000172 MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173}
174
Dan Gohman706847e2008-09-21 21:11:41 +0000175void LiveVariables::HandleVirtRegDef(unsigned Reg, MachineInstr *MI) {
176 VarInfo &VRInfo = getVarInfo(Reg);
177
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000178 if (VRInfo.AliveBlocks.empty())
Dan Gohman706847e2008-09-21 21:11:41 +0000179 // If vr is not alive in any block, then defaults to dead.
180 VRInfo.Kills.push_back(MI);
181}
182
Evan Cheng1c3ee662008-04-16 09:46:40 +0000183/// FindLastPartialDef - Return the last partial def of the specified register.
184/// Also returns the sub-register that's defined.
185MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg,
186 unsigned &PartDefReg) {
187 unsigned LastDefReg = 0;
188 unsigned LastDefDist = 0;
189 MachineInstr *LastDef = NULL;
190 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
191 unsigned SubReg = *SubRegs; ++SubRegs) {
192 MachineInstr *Def = PhysRegDef[SubReg];
193 if (!Def)
194 continue;
195 unsigned Dist = DistanceMap[Def];
196 if (Dist > LastDefDist) {
197 LastDefReg = SubReg;
198 LastDef = Def;
199 LastDefDist = Dist;
200 }
201 }
202 PartDefReg = LastDefReg;
203 return LastDef;
204}
205
Bill Wendling85b03762008-02-20 09:15:16 +0000206/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
207/// implicit defs to a machine instruction if there was an earlier def of its
208/// super-register.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000210 // If there was a previous use or a "full" def all is well.
211 if (!PhysRegDef[Reg] && !PhysRegUse[Reg]) {
212 // Otherwise, the last sub-register def implicitly defines this register.
213 // e.g.
214 // AH =
215 // AL = ... <imp-def EAX>, <imp-kill AH>
216 // = AH
217 // ...
218 // = EAX
219 // All of the sub-registers must have been defined before the use of Reg!
220 unsigned PartDefReg = 0;
221 MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefReg);
222 // If LastPartialDef is NULL, it must be using a livein register.
223 if (LastPartialDef) {
224 LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
225 true/*IsImp*/));
226 PhysRegDef[Reg] = LastPartialDef;
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000227 SmallSet<unsigned, 8> Processed;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000228 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
229 unsigned SubReg = *SubRegs; ++SubRegs) {
230 if (Processed.count(SubReg))
231 continue;
232 if (SubReg == PartDefReg || TRI->isSubRegister(PartDefReg, SubReg))
233 continue;
234 // This part of Reg was defined before the last partial def. It's killed
235 // here.
236 LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
237 false/*IsDef*/,
238 true/*IsImp*/));
239 PhysRegDef[SubReg] = LastPartialDef;
240 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
241 Processed.insert(*SS);
242 }
243 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 }
Bill Wendlingb88bca92008-02-20 06:10:21 +0000245
Evan Cheng1c3ee662008-04-16 09:46:40 +0000246 // Remember this use.
247 PhysRegUse[Reg] = MI;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000248 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000249 unsigned SubReg = *SubRegs; ++SubRegs)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000250 PhysRegUse[SubReg] = MI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251}
252
Evan Cheng97a51302008-03-19 00:52:20 +0000253/// hasRegisterUseBelow - Return true if the specified register is used after
254/// the current instruction and before it's next definition.
255bool LiveVariables::hasRegisterUseBelow(unsigned Reg,
256 MachineBasicBlock::iterator I,
257 MachineBasicBlock *MBB) {
258 if (I == MBB->end())
259 return false;
Evan Cheng251fa152008-04-02 18:04:08 +0000260
261 // First find out if there are any uses / defs below.
262 bool hasDistInfo = true;
263 unsigned CurDist = DistanceMap[I];
264 SmallVector<MachineInstr*, 4> Uses;
265 SmallVector<MachineInstr*, 4> Defs;
266 for (MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(Reg),
267 RE = MRI->reg_end(); RI != RE; ++RI) {
268 MachineOperand &UDO = RI.getOperand();
269 MachineInstr *UDMI = &*RI;
270 if (UDMI->getParent() != MBB)
271 continue;
272 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UDMI);
273 bool isBelow = false;
274 if (DI == DistanceMap.end()) {
275 // Must be below if it hasn't been assigned a distance yet.
276 isBelow = true;
277 hasDistInfo = false;
278 } else if (DI->second > CurDist)
279 isBelow = true;
280 if (isBelow) {
281 if (UDO.isUse())
282 Uses.push_back(UDMI);
283 if (UDO.isDef())
284 Defs.push_back(UDMI);
Evan Cheng97a51302008-03-19 00:52:20 +0000285 }
286 }
Evan Cheng251fa152008-04-02 18:04:08 +0000287
288 if (Uses.empty())
289 // No uses below.
290 return false;
291 else if (!Uses.empty() && Defs.empty())
292 // There are uses below but no defs below.
293 return true;
294 // There are both uses and defs below. We need to know which comes first.
295 if (!hasDistInfo) {
296 // Complete DistanceMap for this MBB. This information is computed only
297 // once per MBB.
298 ++I;
299 ++CurDist;
300 for (MachineBasicBlock::iterator E = MBB->end(); I != E; ++I, ++CurDist)
301 DistanceMap.insert(std::make_pair(I, CurDist));
302 }
303
Evan Cheng1c3ee662008-04-16 09:46:40 +0000304 unsigned EarliestUse = DistanceMap[Uses[0]];
305 for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
Evan Cheng251fa152008-04-02 18:04:08 +0000306 unsigned Dist = DistanceMap[Uses[i]];
307 if (Dist < EarliestUse)
308 EarliestUse = Dist;
309 }
310 for (unsigned i = 0, e = Defs.size(); i != e; ++i) {
311 unsigned Dist = DistanceMap[Defs[i]];
312 if (Dist < EarliestUse)
313 // The register is defined before its first use below.
314 return false;
315 }
316 return true;
Evan Cheng97a51302008-03-19 00:52:20 +0000317}
318
Evan Cheng06df4d02009-01-20 21:25:12 +0000319bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000320 if (!PhysRegUse[Reg] && !PhysRegDef[Reg])
321 return false;
322
323 MachineInstr *LastRefOrPartRef = PhysRegUse[Reg]
324 ? PhysRegUse[Reg] : PhysRegDef[Reg];
325 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
326 // The whole register is used.
327 // AL =
328 // AH =
329 //
330 // = AX
331 // = AL, AX<imp-use, kill>
332 // AX =
333 //
334 // Or whole register is defined, but not used at all.
335 // AX<dead> =
336 // ...
337 // AX =
338 //
339 // Or whole register is defined, but only partly used.
340 // AX<dead> = AL<imp-def>
341 // = AL<kill>
342 // AX =
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000343 SmallSet<unsigned, 8> PartUses;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000344 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
345 unsigned SubReg = *SubRegs; ++SubRegs) {
346 if (MachineInstr *Use = PhysRegUse[SubReg]) {
347 PartUses.insert(SubReg);
348 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
349 PartUses.insert(*SS);
350 unsigned Dist = DistanceMap[Use];
351 if (Dist > LastRefOrPartRefDist) {
352 LastRefOrPartRefDist = Dist;
353 LastRefOrPartRef = Use;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000355 }
356 }
Evan Cheng06df4d02009-01-20 21:25:12 +0000357
358 if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI)
359 // If the last reference is the last def, then it's not used at all.
360 // That is, unless we are currently processing the last reference itself.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000361 LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
362
Evan Chengb8fabe22009-06-20 04:34:51 +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.
367 // Enable this after live interval analysis is fixed to improve codegen!
Evan Cheng1c3ee662008-04-16 09:46:40 +0000368 else if (!PhysRegUse[Reg]) {
369 PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
370 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
371 unsigned SubReg = *SubRegs; ++SubRegs) {
372 if (PartUses.count(SubReg)) {
Evan Cheng2fe17a52009-07-06 21:34:05 +0000373 bool NeedDef = true;
374 if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
375 MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
376 if (MO) {
377 NeedDef = false;
378 assert(!MO->isDead());
379 }
380 }
381 if (NeedDef)
382 PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
383 true, true));
Evan Cheng1c3ee662008-04-16 09:46:40 +0000384 LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
385 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
386 PartUses.erase(*SS);
387 }
388 }
Evan Chengb8fabe22009-06-20 04:34:51 +0000389 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000390 else
391 LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
392 return true;
393}
394
395void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI) {
396 // What parts of the register are previously defined?
Owen Anderson9a4cb152008-06-27 07:05:59 +0000397 SmallSet<unsigned, 32> Live;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000398 if (PhysRegDef[Reg] || PhysRegUse[Reg]) {
399 Live.insert(Reg);
400 for (const unsigned *SS = TRI->getSubRegisters(Reg); *SS; ++SS)
401 Live.insert(*SS);
402 } else {
403 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
404 unsigned SubReg = *SubRegs; ++SubRegs) {
405 // If a register isn't itself defined, but all parts that make up of it
406 // are defined, then consider it also defined.
407 // e.g.
408 // AL =
409 // AH =
410 // = AX
411 if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) {
412 Live.insert(SubReg);
413 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
414 Live.insert(*SS);
415 }
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000416 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 }
418
Evan Cheng1c3ee662008-04-16 09:46:40 +0000419 // Start from the largest piece, find the last time any part of the register
420 // is referenced.
Evan Cheng06df4d02009-01-20 21:25:12 +0000421 if (!HandlePhysRegKill(Reg, MI)) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000422 // Only some of the sub-registers are used.
423 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
424 unsigned SubReg = *SubRegs; ++SubRegs) {
425 if (!Live.count(SubReg))
426 // Skip if this sub-register isn't defined.
427 continue;
Evan Cheng06df4d02009-01-20 21:25:12 +0000428 if (HandlePhysRegKill(SubReg, MI)) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000429 Live.erase(SubReg);
430 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
431 Live.erase(*SS);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000432 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000434 assert(Live.empty() && "Not all defined registers are killed / dead?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 }
436
437 if (MI) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000438 // Does this extend the live range of a super-register?
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000439 SmallSet<unsigned, 8> Processed;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000440 for (const unsigned *SuperRegs = TRI->getSuperRegisters(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441 unsigned SuperReg = *SuperRegs; ++SuperRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000442 if (Processed.count(SuperReg))
443 continue;
444 MachineInstr *LastRef = PhysRegUse[SuperReg]
445 ? PhysRegUse[SuperReg] : PhysRegDef[SuperReg];
446 if (LastRef && LastRef != MI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 // The larger register is previously defined. Now a smaller part is
Evan Cheng97a51302008-03-19 00:52:20 +0000448 // being re-defined. Treat it as read/mod/write if there are uses
449 // below.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 // EAX =
451 // AX = EAX<imp-use,kill>, EAX<imp-def>
Evan Cheng97a51302008-03-19 00:52:20 +0000452 // ...
453 /// = EAX
Evan Cheng1c3ee662008-04-16 09:46:40 +0000454 if (hasRegisterUseBelow(SuperReg, MI, MI->getParent())) {
Evan Cheng97a51302008-03-19 00:52:20 +0000455 MI->addOperand(MachineOperand::CreateReg(SuperReg, false/*IsDef*/,
Evan Cheng1c3ee662008-04-16 09:46:40 +0000456 true/*IsImp*/,true/*IsKill*/));
Evan Cheng97a51302008-03-19 00:52:20 +0000457 MI->addOperand(MachineOperand::CreateReg(SuperReg, true/*IsDef*/,
458 true/*IsImp*/));
Evan Cheng1c3ee662008-04-16 09:46:40 +0000459 PhysRegDef[SuperReg] = MI;
460 PhysRegUse[SuperReg] = NULL;
461 Processed.insert(SuperReg);
462 for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS) {
463 PhysRegDef[*SS] = MI;
464 PhysRegUse[*SS] = NULL;
465 Processed.insert(*SS);
466 }
Evan Cheng97a51302008-03-19 00:52:20 +0000467 } else {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000468 // Otherwise, the super register is killed.
Evan Cheng06df4d02009-01-20 21:25:12 +0000469 if (HandlePhysRegKill(SuperReg, MI)) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000470 PhysRegDef[SuperReg] = NULL;
471 PhysRegUse[SuperReg] = NULL;
472 for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS) {
473 PhysRegDef[*SS] = NULL;
474 PhysRegUse[*SS] = NULL;
475 Processed.insert(*SS);
476 }
477 }
Evan Cheng97a51302008-03-19 00:52:20 +0000478 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 }
480 }
481
Evan Cheng1c3ee662008-04-16 09:46:40 +0000482 // Remember this def.
483 PhysRegDef[Reg] = MI;
484 PhysRegUse[Reg] = NULL;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000485 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000487 PhysRegDef[SubReg] = MI;
488 PhysRegUse[SubReg] = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 }
490 }
491}
492
493bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
494 MF = &mf;
Evan Cheng251fa152008-04-02 18:04:08 +0000495 MRI = &mf.getRegInfo();
Evan Chengc7daf1f2008-03-05 00:59:57 +0000496 TRI = MF->getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497
Evan Chengc7daf1f2008-03-05 00:59:57 +0000498 ReservedRegisters = TRI->getReservedRegs(mf);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499
Evan Chengc7daf1f2008-03-05 00:59:57 +0000500 unsigned NumRegs = TRI->getNumRegs();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000501 PhysRegDef = new MachineInstr*[NumRegs];
502 PhysRegUse = new MachineInstr*[NumRegs];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
Evan Cheng1c3ee662008-04-16 09:46:40 +0000504 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
505 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506
Bill Wendling85b03762008-02-20 09:15:16 +0000507 /// Get some space for a respectable number of registers.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 VirtRegInfo.resize(64);
509
510 analyzePHINodes(mf);
511
512 // Calculate live variable information in depth first order on the CFG of the
513 // function. This guarantees that we will see the definition of a virtual
514 // register before its uses due to dominance properties of SSA (except for PHI
515 // nodes, which are treated as a special case).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 MachineBasicBlock *Entry = MF->begin();
517 SmallPtrSet<MachineBasicBlock*,16> Visited;
Bill Wendling85b03762008-02-20 09:15:16 +0000518
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
520 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
521 DFI != E; ++DFI) {
522 MachineBasicBlock *MBB = *DFI;
523
524 // Mark live-in registers as live-in.
525 for (MachineBasicBlock::const_livein_iterator II = MBB->livein_begin(),
526 EE = MBB->livein_end(); II != EE; ++II) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000527 assert(TargetRegisterInfo::isPhysicalRegister(*II) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 "Cannot have a live-in virtual register!");
529 HandlePhysRegDef(*II, 0);
530 }
531
532 // Loop over all of the instructions, processing them.
Evan Cheng251fa152008-04-02 18:04:08 +0000533 DistanceMap.clear();
534 unsigned Dist = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
536 I != E; ++I) {
537 MachineInstr *MI = I;
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.
545 if (MI->getOpcode() == TargetInstrInfo::PHI)
546 NumOperandsToProcess = 1;
547
Evan Cheng1c3ee662008-04-16 09:46:40 +0000548 SmallVector<unsigned, 4> UseRegs;
549 SmallVector<unsigned, 4> DefRegs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Bill Wendlingb88bca92008-02-20 06:10:21 +0000551 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng06df4d02009-01-20 21:25:12 +0000552 if (!MO.isReg() || MO.getReg() == 0)
553 continue;
554 unsigned MOReg = MO.getReg();
555 if (MO.isUse())
556 UseRegs.push_back(MOReg);
557 if (MO.isDef())
558 DefRegs.push_back(MOReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000559 }
560
Evan Cheng1c3ee662008-04-16 09:46:40 +0000561 // Process all uses.
562 for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
563 unsigned MOReg = UseRegs[i];
564 if (TargetRegisterInfo::isVirtualRegister(MOReg))
565 HandleVirtRegUse(MOReg, MBB, MI);
Dan Gohman706847e2008-09-21 21:11:41 +0000566 else if (!ReservedRegisters[MOReg])
Evan Cheng1c3ee662008-04-16 09:46:40 +0000567 HandlePhysRegUse(MOReg, MI);
568 }
569
Bill Wendling85b03762008-02-20 09:15:16 +0000570 // Process all defs.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000571 for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
572 unsigned MOReg = DefRegs[i];
Dan Gohman706847e2008-09-21 21:11:41 +0000573 if (TargetRegisterInfo::isVirtualRegister(MOReg))
574 HandleVirtRegDef(MOReg, MI);
575 else if (!ReservedRegisters[MOReg])
Evan Cheng1c3ee662008-04-16 09:46:40 +0000576 HandlePhysRegDef(MOReg, MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 }
578 }
579
580 // Handle any virtual assignments from PHI nodes which might be at the
581 // bottom of this basic block. We check all of our successor blocks to see
582 // if they have PHI nodes, and if so, we simulate an assignment at the end
583 // of the current block.
584 if (!PHIVarInfo[MBB->getNumber()].empty()) {
585 SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
586
587 for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000588 E = VarInfoVec.end(); I != E; ++I)
589 // Mark it alive only in the block we are representing.
Evan Cheng251fa152008-04-02 18:04:08 +0000590 MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(),
Owen Anderson77d80492008-01-15 22:58:11 +0000591 MBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 }
593
Bill Wendling85b03762008-02-20 09:15:16 +0000594 // Finally, if the last instruction in the block is a return, make sure to
595 // mark it as using all of the live-out values in the function.
Chris Lattner5b930372008-01-07 07:27:27 +0000596 if (!MBB->empty() && MBB->back().getDesc().isReturn()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 MachineInstr *Ret = &MBB->back();
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000598
Chris Lattner1b989192007-12-31 04:13:23 +0000599 for (MachineRegisterInfo::liveout_iterator
600 I = MF->getRegInfo().liveout_begin(),
601 E = MF->getRegInfo().liveout_end(); I != E; ++I) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000602 assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
Dan Gohman2d702012008-06-25 22:14:43 +0000603 "Cannot have a live-out virtual register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 HandlePhysRegUse(*I, Ret);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000605
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 // Add live-out registers as implicit uses.
Evan Chengc7daf1f2008-03-05 00:59:57 +0000607 if (!Ret->readsRegister(*I))
Chris Lattner63ab1f22007-12-30 00:41:17 +0000608 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609 }
610 }
611
Evan Cheng1c3ee662008-04-16 09:46:40 +0000612 // Loop over PhysRegDef / PhysRegUse, killing any registers that are
613 // available at the end of the basic block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 for (unsigned i = 0; i != NumRegs; ++i)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000615 if (PhysRegDef[i] || PhysRegUse[i])
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000616 HandlePhysRegDef(i, 0);
617
Evan Cheng1c3ee662008-04-16 09:46:40 +0000618 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
619 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 }
621
622 // Convert and transfer the dead / killed information we have gathered into
623 // VirtRegInfo onto MI's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i)
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000625 for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j)
626 if (VirtRegInfo[i].Kills[j] ==
Evan Cheng251fa152008-04-02 18:04:08 +0000627 MRI->getVRegDef(i + TargetRegisterInfo::FirstVirtualRegister))
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000628 VirtRegInfo[i]
629 .Kills[j]->addRegisterDead(i +
630 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000631 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 else
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000633 VirtRegInfo[i]
634 .Kills[j]->addRegisterKilled(i +
635 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000636 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637
638 // Check to make sure there are no unreachable blocks in the MC CFG for the
639 // function. If so, it is due to a bug in the instruction selector or some
640 // other part of the code generator if this happens.
641#ifndef NDEBUG
642 for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
643 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
644#endif
645
Evan Cheng1c3ee662008-04-16 09:46:40 +0000646 delete[] PhysRegDef;
647 delete[] PhysRegUse;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648 delete[] PHIVarInfo;
649
650 return false;
651}
652
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000653/// replaceKillInstruction - Update register kill info by replacing a kill
654/// instruction with a new one.
655void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
656 MachineInstr *NewMI) {
657 VarInfo &VI = getVarInfo(Reg);
Evan Chengc2c8ebb2008-07-03 00:28:27 +0000658 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI);
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000659}
660
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661/// removeVirtualRegistersKilled - Remove all killed info for the specified
662/// instruction.
663void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
664 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
665 MachineOperand &MO = MI->getOperand(i);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000666 if (MO.isReg() && MO.isKill()) {
Chris Lattner7f2d3b82007-12-30 21:56:09 +0000667 MO.setIsKill(false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 unsigned Reg = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000669 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 bool removed = getVarInfo(Reg).removeKill(MI);
671 assert(removed && "kill not in register's VarInfo?");
Devang Patel4354f5c2008-11-21 20:00:59 +0000672 removed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673 }
674 }
675 }
676}
677
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678/// analyzePHINodes - Gather information about the PHI nodes in here. In
Bill Wendling85b03762008-02-20 09:15:16 +0000679/// particular, we want to map the variable information of a virtual register
680/// 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 +0000681///
682void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
683 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
684 I != E; ++I)
685 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
686 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
687 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Bill Wendlingb88bca92008-02-20 06:10:21 +0000688 PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()]
689 .push_back(BBI->getOperand(i).getReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690}