2001-08-20 21:12:49 +00:00
|
|
|
/* Title: MethodLiveVarInfo.cpp
|
2001-07-24 17:14:13 +00:00
|
|
|
Author: Ruchira Sasanka
|
|
|
|
Date: Jun 30, 01
|
|
|
|
Purpose:
|
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
This is the interface for live variable info of a method that is required
|
|
|
|
by any other part of the compiler.
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "llvm/Analysis/LiveVar/MethodLiveVarInfo.h"
|
2001-08-20 21:12:49 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2002-02-04 16:35:12 +00:00
|
|
|
#include "llvm/BasicBlock.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/PostOrderIterator.h"
|
2002-01-20 22:54:45 +00:00
|
|
|
#include <iostream>
|
2002-02-04 20:49:04 +00:00
|
|
|
using std::cerr;
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:00:08 +00:00
|
|
|
AnalysisID MethodLiveVarInfo::ID(AnalysisID::create<MethodLiveVarInfo>());
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Performs live var analysis for a method
|
|
|
|
//-----------------------------------------------------------------------------
|
2001-12-08 21:05:27 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
bool MethodLiveVarInfo::runOnMethod(Method *M) {
|
|
|
|
if (DEBUG_LV) cerr << "Analysing live variables ...\n";
|
2001-12-08 21:05:27 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
// create and initialize all the BBLiveVars of the CFG
|
|
|
|
constructBBs(M);
|
2001-12-08 21:05:27 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
while (doSingleBackwardPass(M))
|
|
|
|
; // Iterate until we are done.
|
|
|
|
|
|
|
|
if (DEBUG_LV) cerr << "Live Variable Analysis complete!\n";
|
|
|
|
return false;
|
2002-02-04 20:00:08 +00:00
|
|
|
}
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2001-08-20 21:12:49 +00:00
|
|
|
// constructs BBLiveVars and init Def and In sets
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
void MethodLiveVarInfo::constructBBs(const Method *M) {
|
2001-08-20 21:12:49 +00:00
|
|
|
unsigned int POId = 0; // Reverse Depth-first Order ID
|
2002-02-04 20:49:04 +00:00
|
|
|
|
|
|
|
for(po_iterator<const Method*> BBI = po_begin(M), BBE = po_end(M);
|
|
|
|
BBI != BBE; ++BBI, ++POId) {
|
2001-08-20 21:12:49 +00:00
|
|
|
const BasicBlock *BB = *BBI; // get the current BB
|
2001-09-30 23:28:04 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if (DEBUG_LV) { cerr << " For BB "; printValue(BB); cerr << ":\n"; }
|
2001-09-30 23:28:04 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
// create a new BBLiveVar
|
|
|
|
BBLiveVar *LVBB = new BBLiveVar(BB, POId);
|
|
|
|
BB2BBLVMap[BB] = LVBB; // insert the pair to Map
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
LVBB->calcDefUseSets(); // calculates the def and in set
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if (DEBUG_LV)
|
2001-08-20 21:12:49 +00:00
|
|
|
LVBB->printAllSets();
|
2001-07-24 17:14:13 +00:00
|
|
|
}
|
2001-10-12 17:47:23 +00:00
|
|
|
|
|
|
|
// Since the PO iterator does not discover unreachable blocks,
|
|
|
|
// go over the random iterator and init those blocks as well.
|
|
|
|
// However, LV info is not correct for those blocks (they are not
|
|
|
|
// analyzed)
|
2002-02-04 20:49:04 +00:00
|
|
|
//
|
|
|
|
for (Method::const_iterator BBRI = M->begin(), BBRE = M->end();
|
|
|
|
BBRI != BBRE; ++BBRI, ++POId)
|
|
|
|
if (!BB2BBLVMap[*BBRI]) // Not yet processed?
|
|
|
|
BB2BBLVMap[*BBRI] = new BBLiveVar(*BBRI, POId);
|
2001-07-24 17:14:13 +00:00
|
|
|
}
|
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// do one backward pass over the CFG (for iterative analysis)
|
|
|
|
//-----------------------------------------------------------------------------
|
2002-02-04 20:49:04 +00:00
|
|
|
bool MethodLiveVarInfo::doSingleBackwardPass(const Method *M) {
|
2001-07-24 17:14:13 +00:00
|
|
|
bool ResultFlow, NeedAnotherIteration = false;
|
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if (DEBUG_LV)
|
|
|
|
cerr << "\n After Backward Pass ...\n";
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
po_iterator<const Method*> BBI = po_begin(M);
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
for( ; BBI != po_end(M) ; ++BBI) {
|
|
|
|
BBLiveVar *LVBB = BB2BBLVMap[*BBI];
|
|
|
|
assert(LVBB);
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if (DEBUG_LV) cerr << " For BB " << (*BBI)->getName() << ":\n";
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if(LVBB->isOutSetChanged())
|
2001-08-20 21:12:49 +00:00
|
|
|
LVBB->applyTransferFunc(); // apply the Tran Func to calc InSet
|
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if (LVBB->isInSetChanged()) // to calc Outsets of preds
|
|
|
|
NeedAnotherIteration |= LVBB->applyFlowFunc(BB2BBLVMap);
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
if(DEBUG_LV) LVBB->printInOutSets();
|
|
|
|
}
|
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
// true if we need to reiterate over the CFG
|
|
|
|
return NeedAnotherIteration;
|
2001-07-24 17:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
void MethodLiveVarInfo::releaseMemory() {
|
|
|
|
// First delete all BBLiveVar objects created in constructBBs(). A new object
|
|
|
|
// of type BBLiveVa is created for every BasicBlock in the method
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
// hash map iterator for BB2BBLVMap
|
|
|
|
//
|
|
|
|
BBToBBLiveVarMapType::iterator HMI = BB2BBLVMap.begin();
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
for( ; HMI != BB2BBLVMap.end(); ++HMI)
|
|
|
|
delete HMI->second; // delete all BBLiveVar in BB2BBLVMap
|
2001-10-16 01:25:05 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
BB2BBLVMap.clear();
|
2001-10-16 01:25:05 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
// Then delete all objects of type LiveVarSet created in calcLiveVarSetsForBB
|
|
|
|
// and entered into MInst2LVSetBI and MInst2LVSetAI (these are caches
|
|
|
|
// to return LiveVarSet's before/after a machine instruction quickly). It
|
|
|
|
// is sufficient to free up all LiveVarSet using only one cache since
|
|
|
|
// both caches refer to the same sets
|
2001-08-20 21:12:49 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
// hash map iterator for MInst2LVSetBI
|
|
|
|
//
|
|
|
|
MInstToLiveVarSetMapType::iterator MI = MInst2LVSetBI.begin();
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
for( ; MI != MInst2LVSetBI.end(); ++MI)
|
|
|
|
delete MI->second; // delete all LiveVarSets in MInst2LVSetBI
|
2001-08-20 21:12:49 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
MInst2LVSetBI.clear();
|
|
|
|
MInst2LVSetAI.clear();
|
2001-07-24 17:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/* Following functions will give the LiveVar info for any machine instr in
|
2001-08-20 21:12:49 +00:00
|
|
|
a method. It should be called after a call to analyze().
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
Thsese functions calucluates live var info for all the machine instrs in a
|
|
|
|
BB when LVInfo for one inst is requested. Hence, this function is useful
|
|
|
|
when live var info is required for many (or all) instructions in a basic
|
|
|
|
block. Also, the arguments to this method does not require specific
|
|
|
|
iterators.
|
2001-07-24 17:14:13 +00:00
|
|
|
*/
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Gives live variable information before a machine instruction
|
|
|
|
//-----------------------------------------------------------------------------
|
2002-02-04 20:49:04 +00:00
|
|
|
const LiveVarSet *
|
|
|
|
MethodLiveVarInfo::getLiveVarSetBeforeMInst(const MachineInstr *MInst,
|
|
|
|
const BasicBlock *CurBB) {
|
2001-08-20 21:12:49 +00:00
|
|
|
const LiveVarSet *LVSet = MInst2LVSetBI[MInst];
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if (LVSet) {
|
|
|
|
return LVSet; // if found, just return the set
|
|
|
|
} else {
|
|
|
|
calcLiveVarSetsForBB(CurBB); // else, calc for all instrs in BB
|
|
|
|
assert(MInst2LVSetBI[MInst]);
|
|
|
|
return MInst2LVSetBI[MInst];
|
2001-08-20 21:12:49 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Gives live variable information after a machine instruction
|
|
|
|
//-----------------------------------------------------------------------------
|
2001-08-20 21:12:49 +00:00
|
|
|
const LiveVarSet *
|
2002-02-04 20:49:04 +00:00
|
|
|
MethodLiveVarInfo::getLiveVarSetAfterMInst(const MachineInstr *MInst,
|
|
|
|
const BasicBlock *CurBB) {
|
2001-08-20 21:12:49 +00:00
|
|
|
const LiveVarSet *LVSet = MInst2LVSetAI[MInst];
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2002-02-04 20:49:04 +00:00
|
|
|
if(LVSet) {
|
|
|
|
return LVSet; // if found, just return the set
|
|
|
|
} else {
|
|
|
|
calcLiveVarSetsForBB(CurBB); // else, calc for all instrs in BB
|
|
|
|
assert(MInst2LVSetAI[MInst]);
|
|
|
|
return MInst2LVSetAI[MInst];
|
2001-08-20 21:12:49 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
|
2001-12-08 21:05:27 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// This method calculates the live variable information for all the
|
|
|
|
// instructions in a basic block and enter the newly constructed live
|
|
|
|
// variable sets into a the caches ( MInst2LVSetAI, MInst2LVSetBI)
|
|
|
|
//-----------------------------------------------------------------------------
|
2001-08-20 21:12:49 +00:00
|
|
|
void MethodLiveVarInfo::calcLiveVarSetsForBB(const BasicBlock *const BB)
|
|
|
|
{
|
|
|
|
const MachineCodeForBasicBlock& MIVec = BB->getMachineInstrVec();
|
|
|
|
MachineCodeForBasicBlock::const_reverse_iterator
|
|
|
|
MInstIterator = MIVec.rbegin();
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
LiveVarSet *CurSet = new LiveVarSet();
|
2001-08-20 21:12:49 +00:00
|
|
|
const LiveVarSet *SetAI = getOutSetOfBB(BB); // init SetAI with OutSet
|
|
|
|
CurSet->setUnion(SetAI); // CurSet now contains OutSet
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
// iterate over all the machine instructions in BB
|
|
|
|
for( ; MInstIterator != MIVec.rend(); MInstIterator++) {
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
// MInst is cur machine inst
|
|
|
|
const MachineInstr * MInst = *MInstIterator;
|
|
|
|
|
|
|
|
MInst2LVSetAI[MInst] = SetAI; // record in After Inst map
|
|
|
|
|
|
|
|
CurSet->applyTranferFuncForMInst( MInst ); // apply the transfer Func
|
|
|
|
LiveVarSet *NewSet = new LiveVarSet(); // create a new set and
|
|
|
|
NewSet->setUnion( CurSet ); // copy the set after T/F to it
|
|
|
|
|
|
|
|
MInst2LVSetBI[MInst] = NewSet; // record in Before Inst map
|
2001-07-24 17:14:13 +00:00
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
// SetAI will be used in the next iteration
|
|
|
|
SetAI = NewSet;
|
|
|
|
}
|
|
|
|
|
2001-07-24 17:14:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-08-20 21:12:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2001-07-24 17:14:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|