blob: 3424f45bc1ca0001cf6f0d1a7e44ad227ce8a16a [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 Lattner61b08f12004-02-10 21:18:55 +000031#include "llvm/Target/MRegisterInfo.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000032#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerbc40e892003-01-13 20:01:16 +000033#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000034#include "llvm/ADT/DepthFirstIterator.h"
35#include "llvm/ADT/STLExtras.h"
Chris Lattner6fcd8d82004-10-25 18:44:14 +000036#include "llvm/Config/alloca.h"
Chris Lattner657b4d12005-08-24 00:09:33 +000037#include <algorithm>
Chris Lattnerdacceef2006-01-04 05:40:30 +000038#include <iostream>
Chris Lattner49a5aaa2004-01-30 22:08:53 +000039using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000040
Chris Lattner5d8925c2006-08-27 22:30:17 +000041static RegisterPass<LiveVariables> X("livevars", "Live Variable Analysis");
Chris Lattnerbc40e892003-01-13 20:01:16 +000042
Chris Lattnerdacceef2006-01-04 05:40:30 +000043void LiveVariables::VarInfo::dump() const {
44 std::cerr << "Register Defined by: ";
45 if (DefInst)
46 std::cerr << *DefInst;
47 else
48 std::cerr << "<null>\n";
49 std::cerr << " Alive in blocks: ";
50 for (unsigned i = 0, e = AliveBlocks.size(); i != e; ++i)
51 if (AliveBlocks[i]) std::cerr << i << ", ";
52 std::cerr << "\n Killed by:";
53 if (Kills.empty())
54 std::cerr << " No instructions.\n";
55 else {
56 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
57 std::cerr << "\n #" << i << ": " << *Kills[i];
58 std::cerr << "\n";
59 }
60}
61
Chris Lattnerfb2cb692003-05-12 14:24:00 +000062LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Chris Lattneref09c632004-01-31 21:27:19 +000063 assert(MRegisterInfo::isVirtualRegister(RegIdx) &&
Chris Lattnerfb2cb692003-05-12 14:24:00 +000064 "getVarInfo: not a virtual register!");
65 RegIdx -= MRegisterInfo::FirstVirtualRegister;
66 if (RegIdx >= VirtRegInfo.size()) {
67 if (RegIdx >= 2*VirtRegInfo.size())
68 VirtRegInfo.resize(RegIdx*2);
69 else
70 VirtRegInfo.resize(2*VirtRegInfo.size());
71 }
72 return VirtRegInfo[RegIdx];
73}
74
Chris Lattner657b4d12005-08-24 00:09:33 +000075bool LiveVariables::KillsRegister(MachineInstr *MI, unsigned Reg) const {
76 std::map<MachineInstr*, std::vector<unsigned> >::const_iterator I =
77 RegistersKilled.find(MI);
78 if (I == RegistersKilled.end()) return false;
79
80 // Do a binary search, as these lists can grow pretty big, particularly for
81 // call instructions on targets with lots of call-clobbered registers.
82 return std::binary_search(I->second.begin(), I->second.end(), Reg);
83}
84
85bool LiveVariables::RegisterDefIsDead(MachineInstr *MI, unsigned Reg) const {
86 std::map<MachineInstr*, std::vector<unsigned> >::const_iterator I =
87 RegistersDead.find(MI);
88 if (I == RegistersDead.end()) return false;
89
90 // Do a binary search, as these lists can grow pretty big, particularly for
91 // call instructions on targets with lots of call-clobbered registers.
92 return std::binary_search(I->second.begin(), I->second.end(), Reg);
93}
Chris Lattnerfb2cb692003-05-12 14:24:00 +000094
Chris Lattnerbc40e892003-01-13 20:01:16 +000095void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
Misha Brukman09ba9062004-06-24 21:31:16 +000096 MachineBasicBlock *MBB) {
Chris Lattner8ba97712004-07-01 04:29:47 +000097 unsigned BBNum = MBB->getNumber();
Chris Lattnerbc40e892003-01-13 20:01:16 +000098
99 // Check to see if this basic block is one of the killing blocks. If so,
100 // remove it...
101 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +0000102 if (VRInfo.Kills[i]->getParent() == MBB) {
Chris Lattnerbc40e892003-01-13 20:01:16 +0000103 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
104 break;
105 }
106
Chris Lattner73d4adf2004-07-19 06:26:50 +0000107 if (MBB == VRInfo.DefInst->getParent()) return; // Terminate recursion
Chris Lattnerbc40e892003-01-13 20:01:16 +0000108
109 if (VRInfo.AliveBlocks.size() <= BBNum)
110 VRInfo.AliveBlocks.resize(BBNum+1); // Make space...
111
112 if (VRInfo.AliveBlocks[BBNum])
113 return; // We already know the block is live
114
115 // Mark the variable known alive in this bb
116 VRInfo.AliveBlocks[BBNum] = true;
117
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000118 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
119 E = MBB->pred_end(); PI != E; ++PI)
Chris Lattnerbc40e892003-01-13 20:01:16 +0000120 MarkVirtRegAliveInBlock(VRInfo, *PI);
121}
122
123void LiveVariables::HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
Misha Brukman09ba9062004-06-24 21:31:16 +0000124 MachineInstr *MI) {
Alkis Evlogimenos2e58a412004-09-01 22:34:52 +0000125 assert(VRInfo.DefInst && "Register use before def!");
126
Chris Lattnerbc40e892003-01-13 20:01:16 +0000127 // Check to see if this basic block is already a kill block...
Chris Lattner74de8b12004-07-19 07:04:55 +0000128 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
Chris Lattnerbc40e892003-01-13 20:01:16 +0000129 // Yes, this register is killed in this basic block already. Increase the
130 // live range by updating the kill instruction.
Chris Lattner74de8b12004-07-19 07:04:55 +0000131 VRInfo.Kills.back() = MI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000132 return;
133 }
134
135#ifndef NDEBUG
136 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
Chris Lattner74de8b12004-07-19 07:04:55 +0000137 assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
Chris Lattnerbc40e892003-01-13 20:01:16 +0000138#endif
139
Misha Brukmanedf128a2005-04-21 22:36:52 +0000140 assert(MBB != VRInfo.DefInst->getParent() &&
Chris Lattner73d4adf2004-07-19 06:26:50 +0000141 "Should have kill for defblock!");
Chris Lattnerbc40e892003-01-13 20:01:16 +0000142
143 // Add a new kill entry for this basic block.
Chris Lattner74de8b12004-07-19 07:04:55 +0000144 VRInfo.Kills.push_back(MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000145
146 // Update all dominating blocks to mark them known live.
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000147 for (MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(),
148 E = MBB->pred_end(); PI != E; ++PI)
Chris Lattnerbc40e892003-01-13 20:01:16 +0000149 MarkVirtRegAliveInBlock(VRInfo, *PI);
150}
151
152void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Alkis Evlogimenosc55640f2004-01-13 21:16:25 +0000153 PhysRegInfo[Reg] = MI;
154 PhysRegUsed[Reg] = true;
Chris Lattner6d3848d2004-05-10 05:12:43 +0000155
156 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
157 unsigned Alias = *AliasSet; ++AliasSet) {
158 PhysRegInfo[Alias] = MI;
159 PhysRegUsed[Alias] = true;
160 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000161}
162
163void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI) {
164 // Does this kill a previous version of this register?
165 if (MachineInstr *LastUse = PhysRegInfo[Reg]) {
166 if (PhysRegUsed[Reg])
Chris Lattner44b94c22005-08-23 23:42:17 +0000167 RegistersKilled[LastUse].push_back(Reg);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000168 else
Chris Lattner44b94c22005-08-23 23:42:17 +0000169 RegistersDead[LastUse].push_back(Reg);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000170 }
171 PhysRegInfo[Reg] = MI;
172 PhysRegUsed[Reg] = false;
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000173
174 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
Chris Lattner6d3848d2004-05-10 05:12:43 +0000175 unsigned Alias = *AliasSet; ++AliasSet) {
Chris Lattner49948772004-02-09 01:43:23 +0000176 if (MachineInstr *LastUse = PhysRegInfo[Alias]) {
177 if (PhysRegUsed[Alias])
Chris Lattner44b94c22005-08-23 23:42:17 +0000178 RegistersKilled[LastUse].push_back(Alias);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000179 else
Chris Lattner44b94c22005-08-23 23:42:17 +0000180 RegistersDead[LastUse].push_back(Alias);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000181 }
Chris Lattner49948772004-02-09 01:43:23 +0000182 PhysRegInfo[Alias] = MI;
183 PhysRegUsed[Alias] = false;
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000184 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000185}
186
187bool LiveVariables::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner9bcdcd12004-06-02 05:57:12 +0000188 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
Chris Lattner96aef892004-02-09 01:35:21 +0000189 RegInfo = MF.getTarget().getRegisterInfo();
190 assert(RegInfo && "Target doesn't have register information?");
191
Alkis Evlogimenos22a2f6d2004-08-26 22:23:32 +0000192 AllocatablePhysicalRegisters = RegInfo->getAllocatableSet(MF);
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000193
Chris Lattnerbc40e892003-01-13 20:01:16 +0000194 // PhysRegInfo - Keep track of which instruction was the last use of a
195 // physical register. This is a purely local property, because all physical
196 // register references as presumed dead across basic blocks.
197 //
Misha Brukmanedf128a2005-04-21 22:36:52 +0000198 PhysRegInfo = (MachineInstr**)alloca(sizeof(MachineInstr*) *
Chris Lattner6fcd8d82004-10-25 18:44:14 +0000199 RegInfo->getNumRegs());
200 PhysRegUsed = (bool*)alloca(sizeof(bool)*RegInfo->getNumRegs());
201 std::fill(PhysRegInfo, PhysRegInfo+RegInfo->getNumRegs(), (MachineInstr*)0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000202
Chris Lattnerbc40e892003-01-13 20:01:16 +0000203 /// Get some space for a respectable number of registers...
204 VirtRegInfo.resize(64);
Chris Lattnerd493b342005-04-09 15:23:25 +0000205
206 // Mark live-in registers as live-in.
Chris Lattner712ad0c2005-05-13 07:08:07 +0000207 for (MachineFunction::livein_iterator I = MF.livein_begin(),
Chris Lattnerd493b342005-04-09 15:23:25 +0000208 E = MF.livein_end(); I != E; ++I) {
Chris Lattner712ad0c2005-05-13 07:08:07 +0000209 assert(MRegisterInfo::isPhysicalRegister(I->first) &&
Chris Lattnerd493b342005-04-09 15:23:25 +0000210 "Cannot have a live-in virtual register!");
Chris Lattner712ad0c2005-05-13 07:08:07 +0000211 HandlePhysRegDef(I->first, 0);
Chris Lattnerd493b342005-04-09 15:23:25 +0000212 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000213
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000214 analyzePHINodes(MF);
215
Chris Lattnerbc40e892003-01-13 20:01:16 +0000216 // Calculate live variable information in depth first order on the CFG of the
217 // function. This guarantees that we will see the definition of a virtual
218 // register before its uses due to dominance properties of SSA (except for PHI
219 // nodes, which are treated as a special case).
220 //
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000221 MachineBasicBlock *Entry = MF.begin();
Chris Lattnera5287a62004-07-01 04:24:29 +0000222 std::set<MachineBasicBlock*> Visited;
223 for (df_ext_iterator<MachineBasicBlock*> DFI = df_ext_begin(Entry, Visited),
224 E = df_ext_end(Entry, Visited); DFI != E; ++DFI) {
Chris Lattnerf25fb4b2004-05-01 21:24:24 +0000225 MachineBasicBlock *MBB = *DFI;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000226
227 // Loop over all of the instructions, processing them.
228 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
Misha Brukman09ba9062004-06-24 21:31:16 +0000229 I != E; ++I) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000230 MachineInstr *MI = I;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000231
232 // Process all of the operands of the instruction...
233 unsigned NumOperandsToProcess = MI->getNumOperands();
234
235 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
236 // of the uses. They will be handled in other basic blocks.
Misha Brukmanedf128a2005-04-21 22:36:52 +0000237 if (MI->getOpcode() == TargetInstrInfo::PHI)
Misha Brukman09ba9062004-06-24 21:31:16 +0000238 NumOperandsToProcess = 1;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000239
Evan Cheng438f7bc2006-11-10 08:43:01 +0000240 // Process all uses...
Chris Lattnerbc40e892003-01-13 20:01:16 +0000241 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000242 MachineOperand &MO = MI->getOperand(i);
Chris Lattnerd8f44e02006-09-05 20:19:27 +0000243 if (MO.isRegister() && MO.isUse() && MO.getReg()) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000244 if (MRegisterInfo::isVirtualRegister(MO.getReg())){
245 HandleVirtRegUse(getVarInfo(MO.getReg()), MBB, MI);
246 } else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000247 AllocatablePhysicalRegisters[MO.getReg()]) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000248 HandlePhysRegUse(MO.getReg(), MI);
249 }
250 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000251 }
252
Evan Cheng438f7bc2006-11-10 08:43:01 +0000253 // Process all defs...
Chris Lattnerbc40e892003-01-13 20:01:16 +0000254 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000255 MachineOperand &MO = MI->getOperand(i);
Chris Lattnerd8f44e02006-09-05 20:19:27 +0000256 if (MO.isRegister() && MO.isDef() && MO.getReg()) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000257 if (MRegisterInfo::isVirtualRegister(MO.getReg())) {
258 VarInfo &VRInfo = getVarInfo(MO.getReg());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000259
Chris Lattner73d4adf2004-07-19 06:26:50 +0000260 assert(VRInfo.DefInst == 0 && "Variable multiply defined!");
Misha Brukman09ba9062004-06-24 21:31:16 +0000261 VRInfo.DefInst = MI;
Chris Lattner472405e2004-07-19 06:55:21 +0000262 // Defaults to dead
Chris Lattner74de8b12004-07-19 07:04:55 +0000263 VRInfo.Kills.push_back(MI);
Misha Brukman09ba9062004-06-24 21:31:16 +0000264 } else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000265 AllocatablePhysicalRegisters[MO.getReg()]) {
Misha Brukman09ba9062004-06-24 21:31:16 +0000266 HandlePhysRegDef(MO.getReg(), MI);
267 }
268 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000269 }
270 }
271
272 // Handle any virtual assignments from PHI nodes which might be at the
273 // bottom of this basic block. We check all of our successor blocks to see
274 // if they have PHI nodes, and if so, we simulate an assignment at the end
275 // of the current block.
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000276 if (!PHIVarInfo[MBB].empty()) {
277 std::vector<unsigned>& VarInfoVec = PHIVarInfo[MBB];
Misha Brukmanedf128a2005-04-21 22:36:52 +0000278
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000279 for (std::vector<unsigned>::iterator I = VarInfoVec.begin(),
280 E = VarInfoVec.end(); I != E; ++I) {
281 VarInfo& VRInfo = getVarInfo(*I);
282 assert(VRInfo.DefInst && "Register use before def (or no def)!");
Chris Lattnerbc40e892003-01-13 20:01:16 +0000283
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000284 // Only mark it alive only in the block we are representing.
285 MarkVirtRegAliveInBlock(VRInfo, MBB);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000286 }
287 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000288
Chris Lattnerd493b342005-04-09 15:23:25 +0000289 // Finally, if the last block in the function is a return, make sure to mark
290 // it as using all of the live-out values in the function.
291 if (!MBB->empty() && TII.isReturn(MBB->back().getOpcode())) {
292 MachineInstr *Ret = &MBB->back();
Chris Lattner712ad0c2005-05-13 07:08:07 +0000293 for (MachineFunction::liveout_iterator I = MF.liveout_begin(),
Chris Lattnerd493b342005-04-09 15:23:25 +0000294 E = MF.liveout_end(); I != E; ++I) {
295 assert(MRegisterInfo::isPhysicalRegister(*I) &&
296 "Cannot have a live-in virtual register!");
297 HandlePhysRegUse(*I, Ret);
298 }
299 }
300
Chris Lattnerbc40e892003-01-13 20:01:16 +0000301 // Loop over PhysRegInfo, killing any registers that are available at the
302 // end of the basic block. This also resets the PhysRegInfo map.
Chris Lattner96aef892004-02-09 01:35:21 +0000303 for (unsigned i = 0, e = RegInfo->getNumRegs(); i != e; ++i)
Chris Lattnerbc40e892003-01-13 20:01:16 +0000304 if (PhysRegInfo[i])
Misha Brukman09ba9062004-06-24 21:31:16 +0000305 HandlePhysRegDef(i, 0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000306 }
307
Chris Lattnerbc40e892003-01-13 20:01:16 +0000308 // Convert the information we have gathered into VirtRegInfo and transform it
309 // into a form usable by RegistersKilled.
310 //
311 for (unsigned i = 0, e = VirtRegInfo.size(); i != e; ++i)
312 for (unsigned j = 0, e = VirtRegInfo[i].Kills.size(); j != e; ++j) {
Chris Lattner74de8b12004-07-19 07:04:55 +0000313 if (VirtRegInfo[i].Kills[j] == VirtRegInfo[i].DefInst)
Chris Lattner44b94c22005-08-23 23:42:17 +0000314 RegistersDead[VirtRegInfo[i].Kills[j]].push_back(
315 i + MRegisterInfo::FirstVirtualRegister);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000316
317 else
Chris Lattner44b94c22005-08-23 23:42:17 +0000318 RegistersKilled[VirtRegInfo[i].Kills[j]].push_back(
319 i + MRegisterInfo::FirstVirtualRegister);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000320 }
Chris Lattnera5287a62004-07-01 04:24:29 +0000321
Chris Lattner657b4d12005-08-24 00:09:33 +0000322 // Walk through the RegistersKilled/Dead sets, and sort the registers killed
323 // or dead. This allows us to use efficient binary search for membership
324 // testing.
325 for (std::map<MachineInstr*, std::vector<unsigned> >::iterator
326 I = RegistersKilled.begin(), E = RegistersKilled.end(); I != E; ++I)
327 std::sort(I->second.begin(), I->second.end());
328 for (std::map<MachineInstr*, std::vector<unsigned> >::iterator
329 I = RegistersDead.begin(), E = RegistersDead.end(); I != E; ++I)
330 std::sort(I->second.begin(), I->second.end());
331
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000332 // Check to make sure there are no unreachable blocks in the MC CFG for the
333 // function. If so, it is due to a bug in the instruction selector or some
334 // other part of the code generator if this happens.
335#ifndef NDEBUG
Misha Brukmanedf128a2005-04-21 22:36:52 +0000336 for(MachineFunction::iterator i = MF.begin(), e = MF.end(); i != e; ++i)
Chris Lattner9fb6cf12004-07-09 16:44:37 +0000337 assert(Visited.count(&*i) != 0 && "unreachable basic block found");
338#endif
339
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000340 PHIVarInfo.clear();
Chris Lattnerbc40e892003-01-13 20:01:16 +0000341 return false;
342}
Chris Lattner5ed001b2004-02-19 18:28:02 +0000343
344/// instructionChanged - When the address of an instruction changes, this
345/// method should be called so that live variables can update its internal
346/// data structures. This removes the records for OldMI, transfering them to
347/// the records for NewMI.
348void LiveVariables::instructionChanged(MachineInstr *OldMI,
349 MachineInstr *NewMI) {
350 // If the instruction defines any virtual registers, update the VarInfo for
351 // the instruction.
Alkis Evlogimenosa8db01a2004-03-30 22:44:39 +0000352 for (unsigned i = 0, e = OldMI->getNumOperands(); i != e; ++i) {
353 MachineOperand &MO = OldMI->getOperand(i);
Chris Lattnerd45be362005-01-19 17:09:15 +0000354 if (MO.isRegister() && MO.getReg() &&
Chris Lattner5ed001b2004-02-19 18:28:02 +0000355 MRegisterInfo::isVirtualRegister(MO.getReg())) {
356 unsigned Reg = MO.getReg();
357 VarInfo &VI = getVarInfo(Reg);
Chris Lattnerd45be362005-01-19 17:09:15 +0000358 if (MO.isDef()) {
359 // Update the defining instruction.
360 if (VI.DefInst == OldMI)
361 VI.DefInst = NewMI;
Chris Lattner2a6e1632005-01-19 17:11:51 +0000362 }
363 if (MO.isUse()) {
Chris Lattnerd45be362005-01-19 17:09:15 +0000364 // If this is a kill of the value, update the VI kills list.
365 if (VI.removeKill(OldMI))
366 VI.Kills.push_back(NewMI); // Yes, there was a kill of it
367 }
Chris Lattner5ed001b2004-02-19 18:28:02 +0000368 }
369 }
370
371 // Move the killed information over...
372 killed_iterator I, E;
373 tie(I, E) = killed_range(OldMI);
Chris Lattner44b94c22005-08-23 23:42:17 +0000374 if (I != E) {
375 std::vector<unsigned> &V = RegistersKilled[NewMI];
376 bool WasEmpty = V.empty();
377 V.insert(V.end(), I, E);
378 if (!WasEmpty)
379 std::sort(V.begin(), V.end()); // Keep the reg list sorted.
380 RegistersKilled.erase(OldMI);
381 }
Chris Lattnera96478d2004-02-19 18:32:29 +0000382
Chris Lattner5ed001b2004-02-19 18:28:02 +0000383 // Move the dead information over...
384 tie(I, E) = dead_range(OldMI);
Chris Lattner44b94c22005-08-23 23:42:17 +0000385 if (I != E) {
386 std::vector<unsigned> &V = RegistersDead[NewMI];
387 bool WasEmpty = V.empty();
388 V.insert(V.end(), I, E);
389 if (!WasEmpty)
390 std::sort(V.begin(), V.end()); // Keep the reg list sorted.
391 RegistersDead.erase(OldMI);
392 }
Chris Lattner5ed001b2004-02-19 18:28:02 +0000393}
Chris Lattner7a3abdc2006-09-03 00:05:09 +0000394
395/// removeVirtualRegistersKilled - Remove all killed info for the specified
396/// instruction.
397void LiveVariables::removeVirtualRegistersKilled(MachineInstr *MI) {
398 std::map<MachineInstr*, std::vector<unsigned> >::iterator I =
399 RegistersKilled.find(MI);
400 if (I == RegistersKilled.end()) return;
401
402 std::vector<unsigned> &Regs = I->second;
403 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
404 if (MRegisterInfo::isVirtualRegister(Regs[i])) {
405 bool removed = getVarInfo(Regs[i]).removeKill(MI);
406 assert(removed && "kill not in register's VarInfo?");
407 }
408 }
409 RegistersKilled.erase(I);
410}
411
412/// removeVirtualRegistersDead - Remove all of the dead registers for the
413/// specified instruction from the live variable information.
414void LiveVariables::removeVirtualRegistersDead(MachineInstr *MI) {
415 std::map<MachineInstr*, std::vector<unsigned> >::iterator I =
416 RegistersDead.find(MI);
417 if (I == RegistersDead.end()) return;
418
419 std::vector<unsigned> &Regs = I->second;
420 for (unsigned i = 0, e = Regs.size(); i != e; ++i) {
421 if (MRegisterInfo::isVirtualRegister(Regs[i])) {
422 bool removed = getVarInfo(Regs[i]).removeKill(MI);
423 assert(removed && "kill not in register's VarInfo?");
424 }
425 }
426 RegistersDead.erase(I);
427}
428
Bill Wendlingf7da4e92006-10-03 07:20:20 +0000429/// analyzePHINodes - Gather information about the PHI nodes in here. In
430/// particular, we want to map the variable information of a virtual
431/// register which is used in a PHI node. We map that to the BB the vreg is
432/// coming from.
433///
434void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
435 for (MachineFunction::const_iterator I = Fn.begin(), E = Fn.end();
436 I != E; ++I)
437 for (MachineBasicBlock::const_iterator BBI = I->begin(), BBE = I->end();
438 BBI != BBE && BBI->getOpcode() == TargetInstrInfo::PHI; ++BBI)
439 for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
440 PHIVarInfo[BBI->getOperand(i + 1).getMachineBasicBlock()].
441 push_back(BBI->getOperand(i).getReg());
442}