blob: a0b410ec25088d1dc0cdddda29dda049770e077b [file] [log] [blame]
Chris Lattnerb7653df2002-04-08 22:03:57 +00001//===-- MethodLiveVarInfo.cpp - Live Variable Analysis for a Function -----===//
Chris Lattner5e5dfa32002-02-05 02:51:01 +00002//
3// This is the interface to method level live variable information that is
4// provided by live variable analysis.
5//
6//===----------------------------------------------------------------------===//
Ruchira Sasanka683847f2001-07-24 17:14:13 +00007
8#include "llvm/Analysis/LiveVar/MethodLiveVarInfo.h"
Chris Lattnerf39f3792002-02-05 00:43:37 +00009#include "BBLiveVar.h"
Ruchira Sasankae27c3442001-08-20 21:12:49 +000010#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner11646322002-02-04 16:35:12 +000011#include "llvm/BasicBlock.h"
Chris Lattner221d6882002-02-12 21:07:25 +000012#include "llvm/Support/CFG.h"
Chris Lattnercee8f9a2001-11-27 00:03:19 +000013#include "Support/PostOrderIterator.h"
Chris Lattner7471a7b2002-02-05 03:35:53 +000014#include "Support/SetOperations.h"
Chris Lattner697954c2002-01-20 22:54:45 +000015#include <iostream>
Ruchira Sasanka683847f2001-07-24 17:14:13 +000016
Chris Lattner4fd2dbb2002-02-04 20:00:08 +000017AnalysisID MethodLiveVarInfo::ID(AnalysisID::create<MethodLiveVarInfo>());
Ruchira Sasanka683847f2001-07-24 17:14:13 +000018
Vikram S. Adve9cf85a72002-03-18 03:45:41 +000019cl::Enum<LiveVarDebugLevel_t> DEBUG_LV("dlivevar", cl::NoFlags,
20 "enable live-variable debugging information",
21 clEnumValN(LV_DEBUG_None , "n", "disable debug output"),
22 clEnumValN(LV_DEBUG_Normal , "y", "enable debug output"),
23 clEnumValN(LV_DEBUG_Instr, "i", "print live-var sets before/after every machine instrn"),
24 clEnumValN(LV_DEBUG_Verbose, "v", "print def, use sets for every instrn also"), 0);
25
Chris Lattnerab584112002-02-05 00:34:50 +000026//-----------------------------------------------------------------------------
27// Accessor Functions
28//-----------------------------------------------------------------------------
29
30// gets OutSet of a BB
Chris Lattner748697d2002-02-05 04:20:12 +000031const ValueSet &MethodLiveVarInfo::getOutSetOfBB(const BasicBlock *BB) const {
Chris Lattner6357a3f2002-02-05 06:52:25 +000032 return BBLiveVar::GetFromBB(BB)->getOutSet();
Chris Lattnerab584112002-02-05 00:34:50 +000033}
34
35// gets InSet of a BB
Chris Lattner748697d2002-02-05 04:20:12 +000036const ValueSet &MethodLiveVarInfo::getInSetOfBB(const BasicBlock *BB) const {
Chris Lattner6357a3f2002-02-05 06:52:25 +000037 return BBLiveVar::GetFromBB(BB)->getInSet();
Chris Lattnerab584112002-02-05 00:34:50 +000038}
39
Chris Lattnerbdfd3282002-02-04 20:49:04 +000040
41//-----------------------------------------------------------------------------
42// Performs live var analysis for a method
43//-----------------------------------------------------------------------------
44
Chris Lattnerb7653df2002-04-08 22:03:57 +000045bool MethodLiveVarInfo::runOnMethod(Function *Meth) {
Chris Lattner6357a3f2002-02-05 06:52:25 +000046 M = Meth;
Chris Lattnera51c7a82002-02-04 23:31:16 +000047 if (DEBUG_LV) std::cerr << "Analysing live variables ...\n";
Chris Lattnerbdfd3282002-02-04 20:49:04 +000048
49 // create and initialize all the BBLiveVars of the CFG
Chris Lattner6357a3f2002-02-05 06:52:25 +000050 constructBBs(Meth);
Chris Lattnerbdfd3282002-02-04 20:49:04 +000051
Vikram S. Adve9cf85a72002-03-18 03:45:41 +000052 unsigned int iter=0;
53 while (doSingleBackwardPass(Meth, iter++))
Chris Lattnerbdfd3282002-02-04 20:49:04 +000054 ; // Iterate until we are done.
55
Chris Lattnera51c7a82002-02-04 23:31:16 +000056 if (DEBUG_LV) std::cerr << "Live Variable Analysis complete!\n";
Chris Lattnerbdfd3282002-02-04 20:49:04 +000057 return false;
58}
59
60
61//-----------------------------------------------------------------------------
62// constructs BBLiveVars and init Def and In sets
63//-----------------------------------------------------------------------------
64
Chris Lattnerb7653df2002-04-08 22:03:57 +000065void MethodLiveVarInfo::constructBBs(const Function *M) {
Chris Lattnerbdfd3282002-02-04 20:49:04 +000066 unsigned int POId = 0; // Reverse Depth-first Order ID
67
Chris Lattnerb7653df2002-04-08 22:03:57 +000068 for(po_iterator<const Function*> BBI = po_begin(M), BBE = po_end(M);
Chris Lattnerbdfd3282002-02-04 20:49:04 +000069 BBI != BBE; ++BBI, ++POId) {
70 const BasicBlock *BB = *BBI; // get the current BB
71
Chris Lattner0665a5f2002-02-05 01:43:49 +000072 if (DEBUG_LV) std::cerr << " For BB " << RAV(BB) << ":\n";
Chris Lattnerbdfd3282002-02-04 20:49:04 +000073
74 // create a new BBLiveVar
Chris Lattner6357a3f2002-02-05 06:52:25 +000075 BBLiveVar *LVBB = BBLiveVar::CreateOnBB(BB, POId);
Chris Lattnerbdfd3282002-02-04 20:49:04 +000076
Chris Lattnera51c7a82002-02-04 23:31:16 +000077 if (DEBUG_LV)
Chris Lattnerbdfd3282002-02-04 20:49:04 +000078 LVBB->printAllSets();
79 }
80
81 // Since the PO iterator does not discover unreachable blocks,
82 // go over the random iterator and init those blocks as well.
83 // However, LV info is not correct for those blocks (they are not
84 // analyzed)
85 //
Chris Lattnerb7653df2002-04-08 22:03:57 +000086 for (Function::const_iterator BBRI = M->begin(), BBRE = M->end();
Chris Lattnerbdfd3282002-02-04 20:49:04 +000087 BBRI != BBRE; ++BBRI, ++POId)
Chris Lattner6357a3f2002-02-05 06:52:25 +000088 if (!BBLiveVar::GetFromBB(*BBRI)) // Not yet processed?
89 BBLiveVar::CreateOnBB(*BBRI, POId);
Chris Lattnerbdfd3282002-02-04 20:49:04 +000090}
91
92
93//-----------------------------------------------------------------------------
94// do one backward pass over the CFG (for iterative analysis)
95//-----------------------------------------------------------------------------
Chris Lattnera51c7a82002-02-04 23:31:16 +000096
Chris Lattnerb7653df2002-04-08 22:03:57 +000097bool MethodLiveVarInfo::doSingleBackwardPass(const Function *M, unsigned int iter) {
Vikram S. Adve9cf85a72002-03-18 03:45:41 +000098 if (DEBUG_LV) std::cerr << "\n After Backward Pass " << iter << "...\n";
Chris Lattnerbdfd3282002-02-04 20:49:04 +000099
Chris Lattnera51c7a82002-02-04 23:31:16 +0000100 bool NeedAnotherIteration = false;
Chris Lattnerb7653df2002-04-08 22:03:57 +0000101 for (po_iterator<const Function*> BBI = po_begin(M); BBI != po_end(M) ; ++BBI) {
Chris Lattner6357a3f2002-02-05 06:52:25 +0000102 BBLiveVar *LVBB = BBLiveVar::GetFromBB(*BBI);
Chris Lattnera51c7a82002-02-04 23:31:16 +0000103 assert(LVBB && "BasicBlock information not set for block!");
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000104
Chris Lattnera51c7a82002-02-04 23:31:16 +0000105 if (DEBUG_LV) std::cerr << " For BB " << (*BBI)->getName() << ":\n";
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000106
Vikram S. Adve9cf85a72002-03-18 03:45:41 +0000107 // InSets are initialized to "GenSet". Recompute only if OutSet changed.
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000108 if(LVBB->isOutSetChanged())
109 LVBB->applyTransferFunc(); // apply the Tran Func to calc InSet
Vikram S. Adve9cf85a72002-03-18 03:45:41 +0000110
111 // OutSets are initialized to EMPTY. Recompute on first iter or if InSet changed.
112 if (iter == 0 || LVBB->isInSetChanged()) // to calc Outsets of preds
113 NeedAnotherIteration = LVBB->applyFlowFunc() || NeedAnotherIteration;
114
Chris Lattnera51c7a82002-02-04 23:31:16 +0000115 if (DEBUG_LV) LVBB->printInOutSets();
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000116 }
117
118 // true if we need to reiterate over the CFG
119 return NeedAnotherIteration;
120}
121
122
Chris Lattner4fd2dbb2002-02-04 20:00:08 +0000123void MethodLiveVarInfo::releaseMemory() {
Chris Lattner6357a3f2002-02-05 06:52:25 +0000124 // First remove all BBLiveVar annotations created in constructBBs().
125 if (M)
Chris Lattnerb7653df2002-04-08 22:03:57 +0000126 for (Function::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
Chris Lattner6357a3f2002-02-05 06:52:25 +0000127 BBLiveVar::RemoveFromBB(*I);
128 M = 0;
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000129
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000130 // Then delete all objects of type ValueSet created in calcLiveVarSetsForBB
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000131 // and entered into MInst2LVSetBI and MInst2LVSetAI (these are caches
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000132 // to return ValueSet's before/after a machine instruction quickly). It
133 // is sufficient to free up all ValueSet using only one cache since
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000134 // both caches refer to the same sets
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000135 //
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000136 for (std::map<const MachineInstr*, const ValueSet*>::iterator
Chris Lattnerab584112002-02-05 00:34:50 +0000137 MI = MInst2LVSetBI.begin(),
Chris Lattnera51c7a82002-02-04 23:31:16 +0000138 ME = MInst2LVSetBI.end(); MI != ME; ++MI)
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000139 delete MI->second; // delete all ValueSets in MInst2LVSetBI
Chris Lattner4fd2dbb2002-02-04 20:00:08 +0000140
141 MInst2LVSetBI.clear();
142 MInst2LVSetAI.clear();
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000143}
144
145
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000146
147
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000148//-----------------------------------------------------------------------------
Chris Lattnera51c7a82002-02-04 23:31:16 +0000149// Following functions will give the LiveVar info for any machine instr in
150// a method. It should be called after a call to analyze().
151//
152// Thsese functions calucluates live var info for all the machine instrs in a
153// BB when LVInfo for one inst is requested. Hence, this function is useful
154// when live var info is required for many (or all) instructions in a basic
155// block. Also, the arguments to this method does not require specific
156// iterators.
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000157//-----------------------------------------------------------------------------
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000158
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000159//-----------------------------------------------------------------------------
160// Gives live variable information before a machine instruction
161//-----------------------------------------------------------------------------
Chris Lattnera51c7a82002-02-04 23:31:16 +0000162
Chris Lattner748697d2002-02-05 04:20:12 +0000163const ValueSet &
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000164MethodLiveVarInfo::getLiveVarSetBeforeMInst(const MachineInstr *MInst,
Chris Lattnera51c7a82002-02-04 23:31:16 +0000165 const BasicBlock *BB) {
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000166 if (const ValueSet *LVSet = MInst2LVSetBI[MInst]) {
Chris Lattner748697d2002-02-05 04:20:12 +0000167 return *LVSet; // if found, just return the set
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000168 } else {
Chris Lattnera51c7a82002-02-04 23:31:16 +0000169 calcLiveVarSetsForBB(BB); // else, calc for all instrs in BB
Chris Lattner748697d2002-02-05 04:20:12 +0000170 return *MInst2LVSetBI[MInst];
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000171 }
172}
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000173
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000174
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000175//-----------------------------------------------------------------------------
176// Gives live variable information after a machine instruction
177//-----------------------------------------------------------------------------
Chris Lattner748697d2002-02-05 04:20:12 +0000178const ValueSet &
Chris Lattnera51c7a82002-02-04 23:31:16 +0000179MethodLiveVarInfo::getLiveVarSetAfterMInst(const MachineInstr *MI,
180 const BasicBlock *BB) {
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000181
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000182 if (const ValueSet *LVSet = MInst2LVSetAI[MI]) {
Chris Lattner748697d2002-02-05 04:20:12 +0000183 return *LVSet; // if found, just return the set
Chris Lattnerbdfd3282002-02-04 20:49:04 +0000184 } else {
Chris Lattnera51c7a82002-02-04 23:31:16 +0000185 calcLiveVarSetsForBB(BB); // else, calc for all instrs in BB
Chris Lattner748697d2002-02-05 04:20:12 +0000186 return *MInst2LVSetAI[MI];
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000187 }
188}
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000189
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000190// This function applies a machine instr to a live var set (accepts OutSet) and
191// makes necessary changes to it (produces InSet). Note that two for loops are
192// used to first kill all defs and then to add all uses. This is because there
193// can be instructions like Val = Val + 1 since we allow multipe defs to a
194// machine instruction operand.
195//
196static void applyTranferFuncForMInst(ValueSet &LVS, const MachineInstr *MInst) {
Chris Lattner2f898d22002-02-05 06:02:59 +0000197 for (MachineInstr::const_val_op_iterator OpI = MInst->begin(),
198 OpE = MInst->end(); OpI != OpE; ++OpI) {
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000199 if (OpI.isDef()) // kill only if this operand is a def
Vikram S. Adve9cf85a72002-03-18 03:45:41 +0000200 LVS.erase(*OpI); // this definition kills any uses
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000201 }
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000202
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000203 // do for implicit operands as well
204 for (unsigned i=0; i < MInst->getNumImplicitRefs(); ++i) {
205 if (MInst->implicitRefIsDefined(i))
206 LVS.erase(MInst->getImplicitRef(i));
207 }
208
Chris Lattner2f898d22002-02-05 06:02:59 +0000209 for (MachineInstr::const_val_op_iterator OpI = MInst->begin(),
210 OpE = MInst->end(); OpI != OpE; ++OpI) {
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000211 if (isa<BasicBlock>(*OpI)) continue; // don't process labels
212
213 if (!OpI.isDef()) // add only if this operand is a use
214 LVS.insert(*OpI); // An operand is a use - so add to use set
215 }
216
217 // do for implicit operands as well
Chris Lattner2f898d22002-02-05 06:02:59 +0000218 for (unsigned i = 0; i < MInst->getNumImplicitRefs(); ++i) {
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000219 if (!MInst->implicitRefIsDefined(i))
220 LVS.insert(MInst->getImplicitRef(i));
221 }
222}
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000223
224//-----------------------------------------------------------------------------
225// This method calculates the live variable information for all the
226// instructions in a basic block and enter the newly constructed live
Chris Lattnera51c7a82002-02-04 23:31:16 +0000227// variable sets into a the caches (MInst2LVSetAI, MInst2LVSetBI)
Ruchira Sasanka789cebb2001-12-08 21:05:27 +0000228//-----------------------------------------------------------------------------
Chris Lattnera51c7a82002-02-04 23:31:16 +0000229
230void MethodLiveVarInfo::calcLiveVarSetsForBB(const BasicBlock *BB) {
231 const MachineCodeForBasicBlock &MIVec = BB->getMachineInstrVec();
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000232
Vikram S. Adve9cf85a72002-03-18 03:45:41 +0000233 if (DEBUG_LV >= LV_DEBUG_Instr) {
234 std::cerr << endl << "======For BB " << BB->getName() << ": Live var sets for instructions======" << endl;
235 }
236
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000237 ValueSet *CurSet = new ValueSet();
Chris Lattner748697d2002-02-05 04:20:12 +0000238 const ValueSet *SetAI = &getOutSetOfBB(BB); // init SetAI with OutSet
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000239 set_union(*CurSet, *SetAI); // CurSet now contains OutSet
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000240
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000241 // iterate over all the machine instructions in BB
Chris Lattnera51c7a82002-02-04 23:31:16 +0000242 for (MachineCodeForBasicBlock::const_reverse_iterator MII = MIVec.rbegin(),
243 MIE = MIVec.rend(); MII != MIE; ++MII) {
244 // MI is cur machine inst
245 const MachineInstr *MI = *MII;
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000246
Chris Lattnera51c7a82002-02-04 23:31:16 +0000247 MInst2LVSetAI[MI] = SetAI; // record in After Inst map
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000248
Chris Lattner5e5dfa32002-02-05 02:51:01 +0000249 applyTranferFuncForMInst(*CurSet, MI); // apply the transfer Func
250 ValueSet *NewSet = new ValueSet(); // create a new set and
251 set_union(*NewSet, *CurSet); // copy the set after T/F to it
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000252
Chris Lattnera51c7a82002-02-04 23:31:16 +0000253 MInst2LVSetBI[MI] = NewSet; // record in Before Inst map
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000254
Vikram S. Adve9cf85a72002-03-18 03:45:41 +0000255 if (DEBUG_LV >= LV_DEBUG_Instr) {
256 std::cerr << endl << "Live var sets before/after instruction " << *MI;
257 cerr << " Before: "; printSet(*NewSet); cerr << endl;
258 cerr << " After : "; printSet(*SetAI); cerr << endl;
259 }
260
Ruchira Sasankae27c3442001-08-20 21:12:49 +0000261 // SetAI will be used in the next iteration
262 SetAI = NewSet;
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000263 }
Ruchira Sasanka683847f2001-07-24 17:14:13 +0000264}