blob: 86a8ea9f20529009041f1137aaf0e36d5e019623 [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include <algorithm>
41using namespace llvm;
42
43char LiveVariables::ID = 0;
44static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis");
45
Owen Andersonfb6914f2008-08-04 23:54:43 +000046
47void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
48 AU.addRequiredID(UnreachableMachineBlockElimID);
49 AU.setPreservesAll();
Dan Gohmanfdf9ee22009-07-31 18:16:33 +000050 MachineFunctionPass::getAnalysisUsage(AU);
Owen Andersonfb6914f2008-08-04 23:54:43 +000051}
52
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053void LiveVariables::VarInfo::dump() const {
Chris Lattnerd71b0b02009-08-23 03:41:05 +000054 errs() << " Alive in blocks: ";
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000055 for (SparseBitVector<>::iterator I = AliveBlocks.begin(),
56 E = AliveBlocks.end(); I != E; ++I)
Chris Lattnerd71b0b02009-08-23 03:41:05 +000057 errs() << *I << ", ";
58 errs() << "\n Killed by:";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059 if (Kills.empty())
Chris Lattnerd71b0b02009-08-23 03:41:05 +000060 errs() << " No instructions.\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061 else {
62 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
Chris Lattnerd71b0b02009-08-23 03:41:05 +000063 errs() << "\n #" << i << ": " << *Kills[i];
64 errs() << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 }
66}
67
Bill Wendlingb88bca92008-02-20 06:10:21 +000068/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Dan Gohman1e57df32008-02-10 18:45:23 +000070 assert(TargetRegisterInfo::isVirtualRegister(RegIdx) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071 "getVarInfo: not a virtual register!");
Dan Gohman1e57df32008-02-10 18:45:23 +000072 RegIdx -= TargetRegisterInfo::FirstVirtualRegister;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073 if (RegIdx >= VirtRegInfo.size()) {
74 if (RegIdx >= 2*VirtRegInfo.size())
75 VirtRegInfo.resize(RegIdx*2);
76 else
77 VirtRegInfo.resize(2*VirtRegInfo.size());
78 }
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000079 return VirtRegInfo[RegIdx];
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080}
81
Owen Anderson77d80492008-01-15 22:58:11 +000082void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
83 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 MachineBasicBlock *MBB,
85 std::vector<MachineBasicBlock*> &WorkList) {
86 unsigned BBNum = MBB->getNumber();
Owen Anderson92a609a2008-01-15 22:02:46 +000087
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088 // Check to see if this basic block is one of the killing blocks. If so,
Bill Wendlingb88bca92008-02-20 06:10:21 +000089 // remove it.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
91 if (VRInfo.Kills[i]->getParent() == MBB) {
92 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
93 break;
94 }
Owen Anderson92a609a2008-01-15 22:02:46 +000095
Owen Anderson77d80492008-01-15 22:58:11 +000096 if (MBB == DefBlock) return; // Terminate recursion
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +000098 if (VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 return; // We already know the block is live
100
101 // Mark the variable known alive in this bb
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000102 VRInfo.AliveBlocks.set(BBNum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103
104 for (MachineBasicBlock::const_pred_reverse_iterator PI = MBB->pred_rbegin(),
105 E = MBB->pred_rend(); PI != E; ++PI)
106 WorkList.push_back(*PI);
107}
108
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000109void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Owen Anderson77d80492008-01-15 22:58:11 +0000110 MachineBasicBlock *DefBlock,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 MachineBasicBlock *MBB) {
112 std::vector<MachineBasicBlock*> WorkList;
Owen Anderson77d80492008-01-15 22:58:11 +0000113 MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000114
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 while (!WorkList.empty()) {
116 MachineBasicBlock *Pred = WorkList.back();
117 WorkList.pop_back();
Owen Anderson77d80492008-01-15 22:58:11 +0000118 MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 }
120}
121
Owen Anderson92a609a2008-01-15 22:02:46 +0000122void LiveVariables::HandleVirtRegUse(unsigned reg, MachineBasicBlock *MBB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 MachineInstr *MI) {
Evan Cheng251fa152008-04-02 18:04:08 +0000124 assert(MRI->getVRegDef(reg) && "Register use before def!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125
Owen Anderson721b2cc2007-11-08 01:20:48 +0000126 unsigned BBNum = MBB->getNumber();
127
Owen Anderson92a609a2008-01-15 22:02:46 +0000128 VarInfo& VRInfo = getVarInfo(reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 VRInfo.NumUses++;
130
Bill Wendlingb88bca92008-02-20 06:10:21 +0000131 // Check to see if this basic block is already a kill block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Bill Wendlingb88bca92008-02-20 06:10:21 +0000133 // Yes, this register is killed in this basic block already. Increase the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 // live range by updating the kill instruction.
135 VRInfo.Kills.back() = MI;
136 return;
137 }
138
139#ifndef NDEBUG
140 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
141 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
142#endif
143
Bill Wendling09d55662008-06-23 23:41:14 +0000144 // This situation can occur:
145 //
146 // ,------.
147 // | |
148 // | v
149 // | t2 = phi ... t1 ...
150 // | |
151 // | v
152 // | t1 = ...
153 // | ... = ... t1 ...
154 // | |
155 // `------'
156 //
157 // where there is a use in a PHI node that's a predecessor to the defining
158 // block. We don't want to mark all predecessors as having the value "alive"
159 // in this case.
160 if (MBB == MRI->getVRegDef(reg)->getParent()) return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161
Bill Wendlingb88bca92008-02-20 06:10:21 +0000162 // Add a new kill entry for this basic block. If this virtual register is
163 // already marked as alive in this basic block, that means it is alive in at
164 // least one of the successor blocks, it's not a kill.
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000165 if (!VRInfo.AliveBlocks.test(BBNum))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 VRInfo.Kills.push_back(MI);
167
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000168 // Update all dominating blocks to mark them as "known live".
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
170 E = MBB->pred_end(); PI != E; ++PI)
Evan Cheng251fa152008-04-02 18:04:08 +0000171 MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(reg)->getParent(), *PI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172}
173
Dan Gohman706847e2008-09-21 21:11:41 +0000174void LiveVariables::HandleVirtRegDef(unsigned Reg, MachineInstr *MI) {
175 VarInfo &VRInfo = getVarInfo(Reg);
176
Jeffrey Yasskin02d392b2009-05-26 18:27:15 +0000177 if (VRInfo.AliveBlocks.empty())
Dan Gohman706847e2008-09-21 21:11:41 +0000178 // If vr is not alive in any block, then defaults to dead.
179 VRInfo.Kills.push_back(MI);
180}
181
Evan Cheng1c3ee662008-04-16 09:46:40 +0000182/// FindLastPartialDef - Return the last partial def of the specified register.
Evan Chengcd216d52009-09-22 08:34:46 +0000183/// Also returns the sub-registers that're defined by the instruction.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000184MachineInstr *LiveVariables::FindLastPartialDef(unsigned Reg,
Evan Chengcd216d52009-09-22 08:34:46 +0000185 SmallSet<unsigned,4> &PartDefRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000186 unsigned LastDefReg = 0;
187 unsigned LastDefDist = 0;
188 MachineInstr *LastDef = NULL;
189 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
190 unsigned SubReg = *SubRegs; ++SubRegs) {
191 MachineInstr *Def = PhysRegDef[SubReg];
192 if (!Def)
193 continue;
194 unsigned Dist = DistanceMap[Def];
195 if (Dist > LastDefDist) {
196 LastDefReg = SubReg;
197 LastDef = Def;
198 LastDefDist = Dist;
199 }
200 }
Evan Chengcd216d52009-09-22 08:34:46 +0000201
202 if (!LastDef)
203 return 0;
204
205 PartDefRegs.insert(LastDefReg);
206 for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
207 MachineOperand &MO = LastDef->getOperand(i);
208 if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
209 continue;
210 unsigned DefReg = MO.getReg();
211 if (TRI->isSubRegister(Reg, DefReg)) {
212 PartDefRegs.insert(DefReg);
213 for (const unsigned *SubRegs = TRI->getSubRegisters(DefReg);
214 unsigned SubReg = *SubRegs; ++SubRegs)
215 PartDefRegs.insert(SubReg);
216 }
217 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000218 return LastDef;
219}
220
Bill Wendling85b03762008-02-20 09:15:16 +0000221/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
222/// implicit defs to a machine instruction if there was an earlier def of its
223/// super-register.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000225 // If there was a previous use or a "full" def all is well.
226 if (!PhysRegDef[Reg] && !PhysRegUse[Reg]) {
227 // Otherwise, the last sub-register def implicitly defines this register.
228 // e.g.
229 // AH =
230 // AL = ... <imp-def EAX>, <imp-kill AH>
231 // = AH
232 // ...
233 // = EAX
234 // All of the sub-registers must have been defined before the use of Reg!
Evan Chengcd216d52009-09-22 08:34:46 +0000235 SmallSet<unsigned, 4> PartDefRegs;
236 MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefRegs);
Evan Cheng1c3ee662008-04-16 09:46:40 +0000237 // If LastPartialDef is NULL, it must be using a livein register.
238 if (LastPartialDef) {
239 LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
240 true/*IsImp*/));
241 PhysRegDef[Reg] = LastPartialDef;
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000242 SmallSet<unsigned, 8> Processed;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000243 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
244 unsigned SubReg = *SubRegs; ++SubRegs) {
245 if (Processed.count(SubReg))
246 continue;
Evan Chengcd216d52009-09-22 08:34:46 +0000247 if (PartDefRegs.count(SubReg))
Evan Cheng1c3ee662008-04-16 09:46:40 +0000248 continue;
249 // This part of Reg was defined before the last partial def. It's killed
250 // here.
251 LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
252 false/*IsDef*/,
253 true/*IsImp*/));
254 PhysRegDef[SubReg] = LastPartialDef;
255 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
256 Processed.insert(*SS);
257 }
258 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 }
Bill Wendlingb88bca92008-02-20 06:10:21 +0000260
Evan Cheng1c3ee662008-04-16 09:46:40 +0000261 // Remember this use.
262 PhysRegUse[Reg] = MI;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000263 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000264 unsigned SubReg = *SubRegs; ++SubRegs)
Evan Cheng1c3ee662008-04-16 09:46:40 +0000265 PhysRegUse[SubReg] = MI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266}
267
Evan Cheng97a51302008-03-19 00:52:20 +0000268/// hasRegisterUseBelow - Return true if the specified register is used after
269/// the current instruction and before it's next definition.
270bool LiveVariables::hasRegisterUseBelow(unsigned Reg,
271 MachineBasicBlock::iterator I,
272 MachineBasicBlock *MBB) {
273 if (I == MBB->end())
274 return false;
Evan Cheng251fa152008-04-02 18:04:08 +0000275
276 // First find out if there are any uses / defs below.
277 bool hasDistInfo = true;
278 unsigned CurDist = DistanceMap[I];
279 SmallVector<MachineInstr*, 4> Uses;
280 SmallVector<MachineInstr*, 4> Defs;
281 for (MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(Reg),
282 RE = MRI->reg_end(); RI != RE; ++RI) {
283 MachineOperand &UDO = RI.getOperand();
284 MachineInstr *UDMI = &*RI;
285 if (UDMI->getParent() != MBB)
286 continue;
287 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UDMI);
288 bool isBelow = false;
289 if (DI == DistanceMap.end()) {
290 // Must be below if it hasn't been assigned a distance yet.
291 isBelow = true;
292 hasDistInfo = false;
293 } else if (DI->second > CurDist)
294 isBelow = true;
295 if (isBelow) {
296 if (UDO.isUse())
297 Uses.push_back(UDMI);
298 if (UDO.isDef())
299 Defs.push_back(UDMI);
Evan Cheng97a51302008-03-19 00:52:20 +0000300 }
301 }
Evan Cheng251fa152008-04-02 18:04:08 +0000302
303 if (Uses.empty())
304 // No uses below.
305 return false;
306 else if (!Uses.empty() && Defs.empty())
307 // There are uses below but no defs below.
308 return true;
309 // There are both uses and defs below. We need to know which comes first.
310 if (!hasDistInfo) {
311 // Complete DistanceMap for this MBB. This information is computed only
312 // once per MBB.
313 ++I;
314 ++CurDist;
315 for (MachineBasicBlock::iterator E = MBB->end(); I != E; ++I, ++CurDist)
316 DistanceMap.insert(std::make_pair(I, CurDist));
317 }
318
Evan Cheng1c3ee662008-04-16 09:46:40 +0000319 unsigned EarliestUse = DistanceMap[Uses[0]];
320 for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
Evan Cheng251fa152008-04-02 18:04:08 +0000321 unsigned Dist = DistanceMap[Uses[i]];
322 if (Dist < EarliestUse)
323 EarliestUse = Dist;
324 }
325 for (unsigned i = 0, e = Defs.size(); i != e; ++i) {
326 unsigned Dist = DistanceMap[Defs[i]];
327 if (Dist < EarliestUse)
328 // The register is defined before its first use below.
329 return false;
330 }
331 return true;
Evan Cheng97a51302008-03-19 00:52:20 +0000332}
333
Evan Cheng06df4d02009-01-20 21:25:12 +0000334bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000335 if (!PhysRegUse[Reg] && !PhysRegDef[Reg])
336 return false;
337
338 MachineInstr *LastRefOrPartRef = PhysRegUse[Reg]
339 ? PhysRegUse[Reg] : PhysRegDef[Reg];
340 unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
341 // The whole register is used.
342 // AL =
343 // AH =
344 //
345 // = AX
346 // = AL, AX<imp-use, kill>
347 // AX =
348 //
349 // Or whole register is defined, but not used at all.
350 // AX<dead> =
351 // ...
352 // AX =
353 //
354 // Or whole register is defined, but only partly used.
355 // AX<dead> = AL<imp-def>
356 // = AL<kill>
357 // AX =
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000358 SmallSet<unsigned, 8> PartUses;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000359 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
360 unsigned SubReg = *SubRegs; ++SubRegs) {
361 if (MachineInstr *Use = PhysRegUse[SubReg]) {
362 PartUses.insert(SubReg);
363 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
364 PartUses.insert(*SS);
365 unsigned Dist = DistanceMap[Use];
366 if (Dist > LastRefOrPartRefDist) {
367 LastRefOrPartRefDist = Dist;
368 LastRefOrPartRef = Use;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000370 }
371 }
Evan Cheng06df4d02009-01-20 21:25:12 +0000372
373 if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI)
374 // If the last reference is the last def, then it's not used at all.
375 // That is, unless we are currently processing the last reference itself.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000376 LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
377
Evan Chengb8fabe22009-06-20 04:34:51 +0000378 // Partial uses. Mark register def dead and add implicit def of
379 // sub-registers which are used.
380 // EAX<dead> = op AL<imp-def>
381 // That is, EAX def is dead but AL def extends pass it.
382 // Enable this after live interval analysis is fixed to improve codegen!
Evan Cheng1c3ee662008-04-16 09:46:40 +0000383 else if (!PhysRegUse[Reg]) {
384 PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
385 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
386 unsigned SubReg = *SubRegs; ++SubRegs) {
387 if (PartUses.count(SubReg)) {
Evan Cheng2fe17a52009-07-06 21:34:05 +0000388 bool NeedDef = true;
389 if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
390 MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
391 if (MO) {
392 NeedDef = false;
393 assert(!MO->isDead());
394 }
395 }
396 if (NeedDef)
397 PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
398 true, true));
Evan Cheng1c3ee662008-04-16 09:46:40 +0000399 LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
400 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
401 PartUses.erase(*SS);
402 }
403 }
Evan Chengb8fabe22009-06-20 04:34:51 +0000404 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000405 else
406 LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
407 return true;
408}
409
Evan Chengd062bf72009-09-23 06:28:31 +0000410void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI,
411 SmallVector<unsigned, 4> &Defs,
412 SmallVector<unsigned, 4> &SuperDefs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000413 // What parts of the register are previously defined?
Owen Anderson9a4cb152008-06-27 07:05:59 +0000414 SmallSet<unsigned, 32> Live;
Evan Cheng1c3ee662008-04-16 09:46:40 +0000415 if (PhysRegDef[Reg] || PhysRegUse[Reg]) {
416 Live.insert(Reg);
417 for (const unsigned *SS = TRI->getSubRegisters(Reg); *SS; ++SS)
418 Live.insert(*SS);
419 } else {
420 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
421 unsigned SubReg = *SubRegs; ++SubRegs) {
422 // If a register isn't itself defined, but all parts that make up of it
423 // are defined, then consider it also defined.
424 // e.g.
425 // AL =
426 // AH =
427 // = AX
428 if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) {
429 Live.insert(SubReg);
430 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
431 Live.insert(*SS);
432 }
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000433 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434 }
435
Evan Cheng1c3ee662008-04-16 09:46:40 +0000436 // Start from the largest piece, find the last time any part of the register
437 // is referenced.
Evan Cheng06df4d02009-01-20 21:25:12 +0000438 if (!HandlePhysRegKill(Reg, MI)) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000439 // Only some of the sub-registers are used.
440 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
441 unsigned SubReg = *SubRegs; ++SubRegs) {
442 if (!Live.count(SubReg))
443 // Skip if this sub-register isn't defined.
444 continue;
Evan Cheng06df4d02009-01-20 21:25:12 +0000445 if (HandlePhysRegKill(SubReg, MI)) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000446 Live.erase(SubReg);
447 for (const unsigned *SS = TRI->getSubRegisters(SubReg); *SS; ++SS)
448 Live.erase(*SS);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000449 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 }
Evan Cheng1c3ee662008-04-16 09:46:40 +0000451 assert(Live.empty() && "Not all defined registers are killed / dead?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 }
453
454 if (MI) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000455 // Does this extend the live range of a super-register?
Owen Anderson7ba9a8f2008-08-14 23:41:38 +0000456 SmallSet<unsigned, 8> Processed;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000457 for (const unsigned *SuperRegs = TRI->getSuperRegisters(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 unsigned SuperReg = *SuperRegs; ++SuperRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000459 if (Processed.count(SuperReg))
460 continue;
461 MachineInstr *LastRef = PhysRegUse[SuperReg]
462 ? PhysRegUse[SuperReg] : PhysRegDef[SuperReg];
463 if (LastRef && LastRef != MI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 // The larger register is previously defined. Now a smaller part is
Evan Cheng97a51302008-03-19 00:52:20 +0000465 // being re-defined. Treat it as read/mod/write if there are uses
466 // below.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 // EAX =
468 // AX = EAX<imp-use,kill>, EAX<imp-def>
Evan Cheng97a51302008-03-19 00:52:20 +0000469 // ...
Evan Chengd062bf72009-09-23 06:28:31 +0000470 // = EAX
471 SuperDefs.push_back(SuperReg);
472 Processed.insert(SuperReg);
473 for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS)
474 Processed.insert(*SS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 }
476 }
477
Evan Cheng1c3ee662008-04-16 09:46:40 +0000478 // Remember this def.
Evan Chengd062bf72009-09-23 06:28:31 +0000479 Defs.push_back(Reg);
480 }
481}
482
483void LiveVariables::UpdatePhysRegDefs(MachineInstr *MI,
484 SmallVector<unsigned, 4> &Defs) {
485 while (!Defs.empty()) {
486 unsigned Reg = Defs.back();
487 Defs.pop_back();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000488 PhysRegDef[Reg] = MI;
489 PhysRegUse[Reg] = NULL;
Evan Chengc7daf1f2008-03-05 00:59:57 +0000490 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 unsigned SubReg = *SubRegs; ++SubRegs) {
Evan Cheng1c3ee662008-04-16 09:46:40 +0000492 PhysRegDef[SubReg] = MI;
493 PhysRegUse[SubReg] = NULL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 }
495 }
496}
497
Evan Chengd062bf72009-09-23 06:28:31 +0000498namespace {
499 struct RegSorter {
500 const TargetRegisterInfo *TRI;
501
502 RegSorter(const TargetRegisterInfo *tri) : TRI(tri) { }
503 bool operator()(unsigned A, unsigned B) {
504 if (TRI->isSubRegister(A, B))
505 return true;
506 else if (TRI->isSubRegister(B, A))
507 return false;
508 return A < B;
509 }
510 };
511}
512
513void LiveVariables::UpdateSuperRegDefs(MachineInstr *MI,
514 SmallVector<unsigned, 4> &SuperDefs) {
515 // This instruction has defined part of some registers. If there are no
516 // more uses below MI, then the last use / def becomes kill / dead.
517 if (SuperDefs.empty())
518 return;
519
520 RegSorter RS(TRI);
521 std::sort(SuperDefs.begin(), SuperDefs.end(), RS);
522 SmallSet<unsigned, 4> Processed;
523 for (unsigned j = 0, ee = SuperDefs.size(); j != ee; ++j) {
524 unsigned SuperReg = SuperDefs[j];
525 if (!Processed.insert(SuperReg))
526 continue;
527 if (hasRegisterUseBelow(SuperReg, MI, MI->getParent())) {
528 // Previous use / def is not the last use / dead def. It's now
529 // partially re-defined.
530 MI->addOperand(MachineOperand::CreateReg(SuperReg, false/*IsDef*/,
531 true/*IsImp*/,true/*IsKill*/));
532 MI->addOperand(MachineOperand::CreateReg(SuperReg, true/*IsDef*/,
533 true/*IsImp*/));
534 PhysRegDef[SuperReg] = MI;
535 PhysRegUse[SuperReg] = NULL;
536 for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS) {
537 Processed.insert(*SS);
538 PhysRegDef[*SS] = MI;
539 PhysRegUse[*SS] = NULL;
540 }
541 } else {
542 // Previous use / def is kill / dead. It's not being re-defined.
543 HandlePhysRegKill(SuperReg, MI);
544 PhysRegDef[SuperReg] = 0;
545 PhysRegUse[SuperReg] = NULL;
546 for (const unsigned *SS = TRI->getSubRegisters(SuperReg); *SS; ++SS) {
547 Processed.insert(*SS);
548 if (PhysRegDef[*SS] == MI)
549 continue; // This instruction may have defined it.
550 PhysRegDef[*SS] = MI;
551 PhysRegUse[*SS] = NULL;
552 }
553 }
554 }
555 SuperDefs.clear();
556}
557
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
559 MF = &mf;
Evan Cheng251fa152008-04-02 18:04:08 +0000560 MRI = &mf.getRegInfo();
Evan Chengc7daf1f2008-03-05 00:59:57 +0000561 TRI = MF->getTarget().getRegisterInfo();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562
Evan Chengc7daf1f2008-03-05 00:59:57 +0000563 ReservedRegisters = TRI->getReservedRegs(mf);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564
Evan Chengc7daf1f2008-03-05 00:59:57 +0000565 unsigned NumRegs = TRI->getNumRegs();
Evan Cheng1c3ee662008-04-16 09:46:40 +0000566 PhysRegDef = new MachineInstr*[NumRegs];
567 PhysRegUse = new MachineInstr*[NumRegs];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
Evan Cheng1c3ee662008-04-16 09:46:40 +0000569 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
570 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571
Bill Wendling85b03762008-02-20 09:15:16 +0000572 /// Get some space for a respectable number of registers.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 VirtRegInfo.resize(64);
574
575 analyzePHINodes(mf);
576
577 // Calculate live variable information in depth first order on the CFG of the
578 // function. This guarantees that we will see the definition of a virtual
579 // register before its uses due to dominance properties of SSA (except for PHI
580 // nodes, which are treated as a special case).
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 MachineBasicBlock *Entry = MF->begin();
582 SmallPtrSet<MachineBasicBlock*,16> Visited;
Bill Wendling85b03762008-02-20 09:15:16 +0000583
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584 for (df_ext_iterator<MachineBasicBlock*, SmallPtrSet<MachineBasicBlock*,16> >
585 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited);
586 DFI != E; ++DFI) {
587 MachineBasicBlock *MBB = *DFI;
588
589 // Mark live-in registers as live-in.
Evan Chengd062bf72009-09-23 06:28:31 +0000590 SmallVector<unsigned, 4> Defs;
591 SmallVector<unsigned, 4> SuperDefs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 for (MachineBasicBlock::const_livein_iterator II = MBB->livein_begin(),
593 EE = MBB->livein_end(); II != EE; ++II) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000594 assert(TargetRegisterInfo::isPhysicalRegister(*II) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 "Cannot have a live-in virtual register!");
Evan Chengd062bf72009-09-23 06:28:31 +0000596 HandlePhysRegDef(*II, 0, Defs, SuperDefs);
597 UpdatePhysRegDefs(0, Defs);
598 SuperDefs.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599 }
600
601 // Loop over all of the instructions, processing them.
Evan Cheng251fa152008-04-02 18:04:08 +0000602 DistanceMap.clear();
603 unsigned Dist = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
605 I != E; ++I) {
606 MachineInstr *MI = I;
Evan Cheng251fa152008-04-02 18:04:08 +0000607 DistanceMap.insert(std::make_pair(MI, Dist++));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608
609 // Process all of the operands of the instruction...
610 unsigned NumOperandsToProcess = MI->getNumOperands();
611
612 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
613 // of the uses. They will be handled in other basic blocks.
614 if (MI->getOpcode() == TargetInstrInfo::PHI)
615 NumOperandsToProcess = 1;
616
Evan Cheng1c3ee662008-04-16 09:46:40 +0000617 SmallVector<unsigned, 4> UseRegs;
618 SmallVector<unsigned, 4> DefRegs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Bill Wendlingb88bca92008-02-20 06:10:21 +0000620 const MachineOperand &MO = MI->getOperand(i);
Evan Cheng06df4d02009-01-20 21:25:12 +0000621 if (!MO.isReg() || MO.getReg() == 0)
622 continue;
623 unsigned MOReg = MO.getReg();
624 if (MO.isUse())
625 UseRegs.push_back(MOReg);
626 if (MO.isDef())
627 DefRegs.push_back(MOReg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628 }
629
Evan Cheng1c3ee662008-04-16 09:46:40 +0000630 // Process all uses.
631 for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
632 unsigned MOReg = UseRegs[i];
633 if (TargetRegisterInfo::isVirtualRegister(MOReg))
634 HandleVirtRegUse(MOReg, MBB, MI);
Dan Gohman706847e2008-09-21 21:11:41 +0000635 else if (!ReservedRegisters[MOReg])
Evan Cheng1c3ee662008-04-16 09:46:40 +0000636 HandlePhysRegUse(MOReg, MI);
637 }
638
Bill Wendling85b03762008-02-20 09:15:16 +0000639 // Process all defs.
Evan Cheng1c3ee662008-04-16 09:46:40 +0000640 for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
641 unsigned MOReg = DefRegs[i];
Dan Gohman706847e2008-09-21 21:11:41 +0000642 if (TargetRegisterInfo::isVirtualRegister(MOReg))
643 HandleVirtRegDef(MOReg, MI);
Evan Chengd062bf72009-09-23 06:28:31 +0000644 else if (!ReservedRegisters[MOReg]) {
645 HandlePhysRegDef(MOReg, MI, Defs, SuperDefs);
646 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647 }
Evan Chengd062bf72009-09-23 06:28:31 +0000648
649 UpdateSuperRegDefs(MI, SuperDefs);
650 UpdatePhysRegDefs(MI, Defs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 }
652
653 // Handle any virtual assignments from PHI nodes which might be at the
654 // bottom of this basic block. We check all of our successor blocks to see
655 // if they have PHI nodes, and if so, we simulate an assignment at the end
656 // of the current block.
657 if (!PHIVarInfo[MBB->getNumber()].empty()) {
658 SmallVector<unsigned, 4>& VarInfoVec = PHIVarInfo[MBB->getNumber()];
659
660 for (SmallVector<unsigned, 4>::iterator I = VarInfoVec.begin(),
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000661 E = VarInfoVec.end(); I != E; ++I)
662 // Mark it alive only in the block we are representing.
Evan Cheng251fa152008-04-02 18:04:08 +0000663 MarkVirtRegAliveInBlock(getVarInfo(*I),MRI->getVRegDef(*I)->getParent(),
Owen Anderson77d80492008-01-15 22:58:11 +0000664 MBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000665 }
666
Bill Wendling85b03762008-02-20 09:15:16 +0000667 // Finally, if the last instruction in the block is a return, make sure to
668 // mark it as using all of the live-out values in the function.
Chris Lattner5b930372008-01-07 07:27:27 +0000669 if (!MBB->empty() && MBB->back().getDesc().isReturn()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 MachineInstr *Ret = &MBB->back();
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000671
Chris Lattner1b989192007-12-31 04:13:23 +0000672 for (MachineRegisterInfo::liveout_iterator
673 I = MF->getRegInfo().liveout_begin(),
674 E = MF->getRegInfo().liveout_end(); I != E; ++I) {
Dan Gohman1e57df32008-02-10 18:45:23 +0000675 assert(TargetRegisterInfo::isPhysicalRegister(*I) &&
Dan Gohman2d702012008-06-25 22:14:43 +0000676 "Cannot have a live-out virtual register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 HandlePhysRegUse(*I, Ret);
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000678
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 // Add live-out registers as implicit uses.
Evan Chengc7daf1f2008-03-05 00:59:57 +0000680 if (!Ret->readsRegister(*I))
Chris Lattner63ab1f22007-12-30 00:41:17 +0000681 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 }
683 }
684
Evan Cheng1c3ee662008-04-16 09:46:40 +0000685 // Loop over PhysRegDef / PhysRegUse, killing any registers that are
686 // available at the end of the basic block.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 for (unsigned i = 0; i != NumRegs; ++i)
Evan Chengd062bf72009-09-23 06:28:31 +0000688 if (PhysRegDef[i] || PhysRegUse[i]) {
689 HandlePhysRegDef(i, 0, Defs, SuperDefs);
690 UpdatePhysRegDefs(0, Defs);
691 SuperDefs.clear();
692 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693
Evan Cheng1c3ee662008-04-16 09:46:40 +0000694 std::fill(PhysRegDef, PhysRegDef + NumRegs, (MachineInstr*)0);
695 std::fill(PhysRegUse, PhysRegUse + NumRegs, (MachineInstr*)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696 }
697
698 // Convert and transfer the dead / killed information we have gathered into
699 // VirtRegInfo onto MI's.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700 for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i)
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000701 for (unsigned j = 0, e2 = VirtRegInfo[i].Kills.size(); j != e2; ++j)
702 if (VirtRegInfo[i].Kills[j] ==
Evan Cheng251fa152008-04-02 18:04:08 +0000703 MRI->getVRegDef(i + TargetRegisterInfo::FirstVirtualRegister))
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000704 VirtRegInfo[i]
705 .Kills[j]->addRegisterDead(i +
706 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000707 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 else
Bill Wendling0fa65bd2008-02-20 07:36:31 +0000709 VirtRegInfo[i]
710 .Kills[j]->addRegisterKilled(i +
711 TargetRegisterInfo::FirstVirtualRegister,
Evan Chengc7daf1f2008-03-05 00:59:57 +0000712 TRI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713
714 // Check to make sure there are no unreachable blocks in the MC CFG for the
715 // function. If so, it is due to a bug in the instruction selector or some
716 // other part of the code generator if this happens.
717#ifndef NDEBUG
718 for(MachineFunction::iterator i = MF->begin(), e = MF->end(); i != e; ++i)
719 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
720#endif
721
Evan Cheng1c3ee662008-04-16 09:46:40 +0000722 delete[] PhysRegDef;
723 delete[] PhysRegUse;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000724 delete[] PHIVarInfo;
725
726 return false;
727}
728
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000729/// replaceKillInstruction - Update register kill info by replacing a kill
730/// instruction with a new one.
731void LiveVariables::replaceKillInstruction(unsigned Reg, MachineInstr *OldMI,
732 MachineInstr *NewMI) {
733 VarInfo &VI = getVarInfo(Reg);
Evan Chengc2c8ebb2008-07-03 00:28:27 +0000734 std::replace(VI.Kills.begin(), VI.Kills.end(), OldMI, NewMI);
Evan Chengd1c7e8f2008-07-03 00:07:19 +0000735}
736
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737/// removeVirtualRegistersKilled - Remove all killed info for the specified
738/// instruction.
739void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
740 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
741 MachineOperand &MO = MI->getOperand(i);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000742 if (MO.isReg() && MO.isKill()) {
Chris Lattner7f2d3b82007-12-30 21:56:09 +0000743 MO.setIsKill(false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744 unsigned Reg = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000745 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746 bool removed = getVarInfo(Reg).removeKill(MI);
747 assert(removed && "kill not in register's VarInfo?");
Devang Patel4354f5c2008-11-21 20:00:59 +0000748 removed = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 }
750 }
751 }
752}
753
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754/// analyzePHINodes - Gather information about the PHI nodes in here. In
Bill Wendling85b03762008-02-20 09:15:16 +0000755/// particular, we want to map the variable information of a virtual register
756/// 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 +0000757///
758void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
759 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
760 I != E; ++I)
761 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
762 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
763 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
Bill Wendlingb88bca92008-02-20 06:10:21 +0000764 PHIVarInfo[BBI->getOperand(i + 1).getMBB()->getNumber()]
765 .push_back(BBI->getOperand(i).getReg());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766}