blob: 0554bae87be40aacda193c108049d686c971b00b [file] [log] [blame]
Chris Lattnerbc40e892003-01-13 20:01:16 +00001//===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
2//
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.
7//
8//===----------------------------------------------------------------------===//
9//
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"
34#include "llvm/Support/CFG.h"
35#include "Support/DepthFirstIterator.h"
Chris Lattner49a5aaa2004-01-30 22:08:53 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattnerbc40e892003-01-13 20:01:16 +000038static RegisterAnalysis<LiveVariables> X("livevars", "Live Variable Analysis");
39
Chris Lattnerfb2cb692003-05-12 14:24:00 +000040const std::pair<MachineBasicBlock*, unsigned> &
41LiveVariables::getMachineBasicBlockInfo(MachineBasicBlock *MBB) const{
42 return BBMap.find(MBB->getBasicBlock())->second;
43}
Chris Lattner49a5aaa2004-01-30 22:08:53 +000044
45/// getIndexMachineBasicBlock() - Given a block index, return the
46/// MachineBasicBlock corresponding to it.
47MachineBasicBlock *LiveVariables::getIndexMachineBasicBlock(unsigned Idx) {
48 if (BBIdxMap.empty()) {
49 BBIdxMap.resize(BBMap.size());
50 for (std::map<const BasicBlock*, std::pair<MachineBasicBlock*, unsigned> >
51 ::iterator I = BBMap.begin(), E = BBMap.end(); I != E; ++I) {
52 assert(BBIdxMap.size() > I->second.second &&"Indices are not sequential");
53 assert(BBIdxMap[I->second.second] == 0 && "Multiple idx collision!");
54 BBIdxMap[I->second.second] = I->second.first;
55 }
56 }
57 assert(Idx < BBIdxMap.size() && "BB Index out of range!");
58 return BBIdxMap[Idx];
59}
Chris Lattnerfb2cb692003-05-12 14:24:00 +000060
61LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
Chris Lattneref09c632004-01-31 21:27:19 +000062 assert(MRegisterInfo::isVirtualRegister(RegIdx) &&
Chris Lattnerfb2cb692003-05-12 14:24:00 +000063 "getVarInfo: not a virtual register!");
64 RegIdx -= MRegisterInfo::FirstVirtualRegister;
65 if (RegIdx >= VirtRegInfo.size()) {
66 if (RegIdx >= 2*VirtRegInfo.size())
67 VirtRegInfo.resize(RegIdx*2);
68 else
69 VirtRegInfo.resize(2*VirtRegInfo.size());
70 }
71 return VirtRegInfo[RegIdx];
72}
73
74
75
Chris Lattnerbc40e892003-01-13 20:01:16 +000076void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
77 const BasicBlock *BB) {
78 const std::pair<MachineBasicBlock*,unsigned> &Info = BBMap.find(BB)->second;
79 MachineBasicBlock *MBB = Info.first;
80 unsigned BBNum = Info.second;
81
82 // Check to see if this basic block is one of the killing blocks. If so,
83 // remove it...
84 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
85 if (VRInfo.Kills[i].first == MBB) {
86 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
87 break;
88 }
89
90 if (MBB == VRInfo.DefBlock) return; // Terminate recursion
91
92 if (VRInfo.AliveBlocks.size() <= BBNum)
93 VRInfo.AliveBlocks.resize(BBNum+1); // Make space...
94
95 if (VRInfo.AliveBlocks[BBNum])
96 return; // We already know the block is live
97
98 // Mark the variable known alive in this bb
99 VRInfo.AliveBlocks[BBNum] = true;
100
101 for (pred_const_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
102 MarkVirtRegAliveInBlock(VRInfo, *PI);
103}
104
105void LiveVariables::HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
106 MachineInstr *MI) {
107 // Check to see if this basic block is already a kill block...
108 if (!VRInfo.Kills.empty() && VRInfo.Kills.back().first == MBB) {
109 // Yes, this register is killed in this basic block already. Increase the
110 // live range by updating the kill instruction.
111 VRInfo.Kills.back().second = MI;
112 return;
113 }
114
115#ifndef NDEBUG
116 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
117 assert(VRInfo.Kills[i].first != MBB && "entry should be at end!");
118#endif
119
120 assert(MBB != VRInfo.DefBlock && "Should have kill for defblock!");
121
122 // Add a new kill entry for this basic block.
123 VRInfo.Kills.push_back(std::make_pair(MBB, MI));
124
125 // Update all dominating blocks to mark them known live.
126 const BasicBlock *BB = MBB->getBasicBlock();
127 for (pred_const_iterator PI = pred_begin(BB), E = pred_end(BB);
128 PI != E; ++PI)
129 MarkVirtRegAliveInBlock(VRInfo, *PI);
130}
131
132void LiveVariables::HandlePhysRegUse(unsigned Reg, MachineInstr *MI) {
Alkis Evlogimenosc55640f2004-01-13 21:16:25 +0000133 PhysRegInfo[Reg] = MI;
134 PhysRegUsed[Reg] = true;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000135}
136
137void LiveVariables::HandlePhysRegDef(unsigned Reg, MachineInstr *MI) {
138 // Does this kill a previous version of this register?
139 if (MachineInstr *LastUse = PhysRegInfo[Reg]) {
140 if (PhysRegUsed[Reg])
141 RegistersKilled.insert(std::make_pair(LastUse, Reg));
142 else
143 RegistersDead.insert(std::make_pair(LastUse, Reg));
Chris Lattnerbc40e892003-01-13 20:01:16 +0000144 }
145 PhysRegInfo[Reg] = MI;
146 PhysRegUsed[Reg] = false;
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000147
148 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
149 *AliasSet; ++AliasSet) {
Chris Lattner49948772004-02-09 01:43:23 +0000150 unsigned Alias = *AliasSet;
151 if (MachineInstr *LastUse = PhysRegInfo[Alias]) {
152 if (PhysRegUsed[Alias])
153 RegistersKilled.insert(std::make_pair(LastUse, Alias));
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000154 else
Chris Lattner49948772004-02-09 01:43:23 +0000155 RegistersDead.insert(std::make_pair(LastUse, Alias));
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000156 }
Chris Lattner49948772004-02-09 01:43:23 +0000157 PhysRegInfo[Alias] = MI;
158 PhysRegUsed[Alias] = false;
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000159 }
Chris Lattnerbc40e892003-01-13 20:01:16 +0000160}
161
162bool LiveVariables::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner96aef892004-02-09 01:35:21 +0000163 const TargetInstrInfo &TII = MF.getTarget().getInstrInfo();
164 RegInfo = MF.getTarget().getRegisterInfo();
165 assert(RegInfo && "Target doesn't have register information?");
166
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000167 // First time though, initialize AllocatablePhysicalRegisters for the target
168 if (AllocatablePhysicalRegisters.empty()) {
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000169 // Make space, initializing to false...
Chris Lattner96aef892004-02-09 01:35:21 +0000170 AllocatablePhysicalRegisters.resize(RegInfo->getNumRegs());
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000171
172 // Loop over all of the register classes...
Chris Lattner96aef892004-02-09 01:35:21 +0000173 for (MRegisterInfo::regclass_iterator RCI = RegInfo->regclass_begin(),
174 E = RegInfo->regclass_end(); RCI != E; ++RCI)
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000175 // Loop over all of the allocatable registers in the function...
176 for (TargetRegisterClass::iterator I = (*RCI)->allocation_order_begin(MF),
177 E = (*RCI)->allocation_order_end(MF); I != E; ++I)
178 AllocatablePhysicalRegisters[*I] = true; // The reg is allocatable!
179 }
180
Chris Lattnerbc40e892003-01-13 20:01:16 +0000181 // Build BBMap...
182 unsigned BBNum = 0;
183 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
184 BBMap[I->getBasicBlock()] = std::make_pair(I, BBNum++);
185
186 // PhysRegInfo - Keep track of which instruction was the last use of a
187 // physical register. This is a purely local property, because all physical
188 // register references as presumed dead across basic blocks.
189 //
Alkis Evlogimenos859a18b2004-02-15 21:37:17 +0000190 MachineInstr *PhysRegInfoA[RegInfo->getNumRegs()];
191 bool PhysRegUsedA[RegInfo->getNumRegs()];
192 std::fill(PhysRegInfoA, PhysRegInfoA+RegInfo->getNumRegs(), (MachineInstr*)0);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000193 PhysRegInfo = PhysRegInfoA;
194 PhysRegUsed = PhysRegUsedA;
195
Chris Lattnerbc40e892003-01-13 20:01:16 +0000196 /// Get some space for a respectable number of registers...
197 VirtRegInfo.resize(64);
198
199 // Calculate live variable information in depth first order on the CFG of the
200 // function. This guarantees that we will see the definition of a virtual
201 // register before its uses due to dominance properties of SSA (except for PHI
202 // nodes, which are treated as a special case).
203 //
204 const BasicBlock *Entry = MF.getFunction()->begin();
205 for (df_iterator<const BasicBlock*> DFI = df_begin(Entry), E = df_end(Entry);
206 DFI != E; ++DFI) {
207 const BasicBlock *BB = *DFI;
208 std::pair<MachineBasicBlock*, unsigned> &BBRec = BBMap.find(BB)->second;
209 MachineBasicBlock *MBB = BBRec.first;
210 unsigned BBNum = BBRec.second;
211
212 // Loop over all of the instructions, processing them.
213 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
214 I != E; ++I) {
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000215 MachineInstr *MI = I;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000216 const TargetInstrDescriptor &MID = TII.get(MI->getOpcode());
217
218 // Process all of the operands of the instruction...
219 unsigned NumOperandsToProcess = MI->getNumOperands();
220
221 // Unless it is a PHI node. In this case, ONLY process the DEF, not any
222 // of the uses. They will be handled in other basic blocks.
223 if (MI->getOpcode() == TargetInstrInfo::PHI)
224 NumOperandsToProcess = 1;
225
226 // Loop over implicit uses, using them.
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000227 for (const unsigned *ImplicitUses = MID.ImplicitUses;
228 *ImplicitUses; ++ImplicitUses)
229 HandlePhysRegUse(*ImplicitUses, MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000230
231 // Process all explicit uses...
232 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
233 MachineOperand &MO = MI->getOperand(i);
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000234 if (MO.isUse() && MO.isRegister()) {
235 if (MRegisterInfo::isVirtualRegister(MO.getReg())){
Chris Lattnerfb2cb692003-05-12 14:24:00 +0000236 HandleVirtRegUse(getVarInfo(MO.getReg()), MBB, MI);
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000237 } else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000238 AllocatablePhysicalRegisters[MO.getReg()]) {
Chris Lattnerbc40e892003-01-13 20:01:16 +0000239 HandlePhysRegUse(MO.getReg(), MI);
240 }
241 }
242 }
243
244 // Loop over implicit defs, defining them.
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000245 for (const unsigned *ImplicitDefs = MID.ImplicitDefs;
246 *ImplicitDefs; ++ImplicitDefs)
247 HandlePhysRegDef(*ImplicitDefs, MI);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000248
249 // Process all explicit defs...
250 for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
251 MachineOperand &MO = MI->getOperand(i);
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000252 if (MO.isDef() && MO.isRegister()) {
253 if (MRegisterInfo::isVirtualRegister(MO.getReg())) {
Chris Lattnerfb2cb692003-05-12 14:24:00 +0000254 VarInfo &VRInfo = getVarInfo(MO.getReg());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000255
256 assert(VRInfo.DefBlock == 0 && "Variable multiply defined!");
257 VRInfo.DefBlock = MBB; // Created here...
258 VRInfo.DefInst = MI;
259 VRInfo.Kills.push_back(std::make_pair(MBB, MI)); // Defaults to dead
Chris Lattner1cbe4d02004-02-10 21:12:22 +0000260 } else if (MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattner5cdfbad2003-05-07 20:08:36 +0000261 AllocatablePhysicalRegisters[MO.getReg()]) {
Chris Lattnerbc40e892003-01-13 20:01:16 +0000262 HandlePhysRegDef(MO.getReg(), MI);
263 }
264 }
265 }
266 }
267
268 // Handle any virtual assignments from PHI nodes which might be at the
269 // bottom of this basic block. We check all of our successor blocks to see
270 // if they have PHI nodes, and if so, we simulate an assignment at the end
271 // of the current block.
Chris Lattnerf98358e2003-05-01 21:18:47 +0000272 for (succ_const_iterator SI = succ_begin(BB), E = succ_end(BB);
273 SI != E; ++SI) {
274 MachineBasicBlock *Succ = BBMap.find(*SI)->second.first;
Chris Lattnerbc40e892003-01-13 20:01:16 +0000275
276 // PHI nodes are guaranteed to be at the top of the block...
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000277 for (MachineBasicBlock::iterator MI = Succ->begin(), ME = Succ->end();
278 MI != ME && MI->getOpcode() == TargetInstrInfo::PHI; ++MI) {
Chris Lattnerbc40e892003-01-13 20:01:16 +0000279 for (unsigned i = 1; ; i += 2)
Chris Lattnerf98358e2003-05-01 21:18:47 +0000280 if (MI->getOperand(i+1).getMachineBasicBlock() == MBB) {
281 MachineOperand &MO = MI->getOperand(i);
Chris Lattnerbc40e892003-01-13 20:01:16 +0000282 if (!MO.getVRegValueOrNull()) {
Chris Lattnerfb2cb692003-05-12 14:24:00 +0000283 VarInfo &VRInfo = getVarInfo(MO.getReg());
Chris Lattnerbc40e892003-01-13 20:01:16 +0000284
285 // Only mark it alive only in the block we are representing...
286 MarkVirtRegAliveInBlock(VRInfo, BB);
287 break; // Found the PHI entry for this block...
288 }
289 }
290 }
291 }
292
293 // Loop over PhysRegInfo, killing any registers that are available at the
294 // end of the basic block. This also resets the PhysRegInfo map.
Chris Lattner96aef892004-02-09 01:35:21 +0000295 for (unsigned i = 0, e = RegInfo->getNumRegs(); i != e; ++i)
Chris Lattnerbc40e892003-01-13 20:01:16 +0000296 if (PhysRegInfo[i])
297 HandlePhysRegDef(i, 0);
298 }
299
Chris Lattnerbc40e892003-01-13 20:01:16 +0000300 // Convert the information we have gathered into VirtRegInfo and transform it
301 // into a form usable by RegistersKilled.
302 //
303 for (unsigned i = 0, e = VirtRegInfo.size(); i != e; ++i)
304 for (unsigned j = 0, e = VirtRegInfo[i].Kills.size(); j != e; ++j) {
305 if (VirtRegInfo[i].Kills[j].second == VirtRegInfo[i].DefInst)
306 RegistersDead.insert(std::make_pair(VirtRegInfo[i].Kills[j].second,
307 i + MRegisterInfo::FirstVirtualRegister));
308
309 else
310 RegistersKilled.insert(std::make_pair(VirtRegInfo[i].Kills[j].second,
311 i + MRegisterInfo::FirstVirtualRegister));
312 }
313
314 return false;
315}