mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
221d688a5e
Method::inst_* is now in llvm/Support/InstIterator.h GraphTraits specializations for BasicBlock and Methods are now in llvm/Support/CFG.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1746 91177308-0d34-0410-b5e6-96231b3b80d8
245 lines
9.2 KiB
C++
245 lines
9.2 KiB
C++
//===-- MethodLiveVarInfo.cpp - Live Variable Analysis for a Method -------===//
|
|
//
|
|
// This is the interface to method level live variable information that is
|
|
// provided by live variable analysis.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Analysis/LiveVar/MethodLiveVarInfo.h"
|
|
#include "BBLiveVar.h"
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
#include "llvm/BasicBlock.h"
|
|
#include "llvm/Support/CFG.h"
|
|
#include "Support/PostOrderIterator.h"
|
|
#include "Support/SetOperations.h"
|
|
#include <iostream>
|
|
|
|
AnalysisID MethodLiveVarInfo::ID(AnalysisID::create<MethodLiveVarInfo>());
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Accessor Functions
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// gets OutSet of a BB
|
|
const ValueSet &MethodLiveVarInfo::getOutSetOfBB(const BasicBlock *BB) const {
|
|
return BBLiveVar::GetFromBB(BB)->getOutSet();
|
|
}
|
|
|
|
// gets InSet of a BB
|
|
const ValueSet &MethodLiveVarInfo::getInSetOfBB(const BasicBlock *BB) const {
|
|
return BBLiveVar::GetFromBB(BB)->getInSet();
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Performs live var analysis for a method
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool MethodLiveVarInfo::runOnMethod(Method *Meth) {
|
|
M = Meth;
|
|
if (DEBUG_LV) std::cerr << "Analysing live variables ...\n";
|
|
|
|
// create and initialize all the BBLiveVars of the CFG
|
|
constructBBs(Meth);
|
|
|
|
while (doSingleBackwardPass(Meth))
|
|
; // Iterate until we are done.
|
|
|
|
if (DEBUG_LV) std::cerr << "Live Variable Analysis complete!\n";
|
|
return false;
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// constructs BBLiveVars and init Def and In sets
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void MethodLiveVarInfo::constructBBs(const Method *M) {
|
|
unsigned int POId = 0; // Reverse Depth-first Order ID
|
|
|
|
for(po_iterator<const Method*> BBI = po_begin(M), BBE = po_end(M);
|
|
BBI != BBE; ++BBI, ++POId) {
|
|
const BasicBlock *BB = *BBI; // get the current BB
|
|
|
|
if (DEBUG_LV) std::cerr << " For BB " << RAV(BB) << ":\n";
|
|
|
|
// create a new BBLiveVar
|
|
BBLiveVar *LVBB = BBLiveVar::CreateOnBB(BB, POId);
|
|
|
|
if (DEBUG_LV)
|
|
LVBB->printAllSets();
|
|
}
|
|
|
|
// 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)
|
|
//
|
|
for (Method::const_iterator BBRI = M->begin(), BBRE = M->end();
|
|
BBRI != BBRE; ++BBRI, ++POId)
|
|
if (!BBLiveVar::GetFromBB(*BBRI)) // Not yet processed?
|
|
BBLiveVar::CreateOnBB(*BBRI, POId);
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// do one backward pass over the CFG (for iterative analysis)
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool MethodLiveVarInfo::doSingleBackwardPass(const Method *M) {
|
|
if (DEBUG_LV) std::cerr << "\n After Backward Pass ...\n";
|
|
|
|
bool NeedAnotherIteration = false;
|
|
for (po_iterator<const Method*> BBI = po_begin(M); BBI != po_end(M) ; ++BBI) {
|
|
BBLiveVar *LVBB = BBLiveVar::GetFromBB(*BBI);
|
|
assert(LVBB && "BasicBlock information not set for block!");
|
|
|
|
if (DEBUG_LV) std::cerr << " For BB " << (*BBI)->getName() << ":\n";
|
|
|
|
if(LVBB->isOutSetChanged())
|
|
LVBB->applyTransferFunc(); // apply the Tran Func to calc InSet
|
|
|
|
if (LVBB->isInSetChanged()) // to calc Outsets of preds
|
|
NeedAnotherIteration |= LVBB->applyFlowFunc();
|
|
|
|
if (DEBUG_LV) LVBB->printInOutSets();
|
|
}
|
|
|
|
// true if we need to reiterate over the CFG
|
|
return NeedAnotherIteration;
|
|
}
|
|
|
|
|
|
void MethodLiveVarInfo::releaseMemory() {
|
|
// First remove all BBLiveVar annotations created in constructBBs().
|
|
if (M)
|
|
for (Method::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
|
|
BBLiveVar::RemoveFromBB(*I);
|
|
M = 0;
|
|
|
|
// Then delete all objects of type ValueSet created in calcLiveVarSetsForBB
|
|
// and entered into MInst2LVSetBI and MInst2LVSetAI (these are caches
|
|
// to return ValueSet's before/after a machine instruction quickly). It
|
|
// is sufficient to free up all ValueSet using only one cache since
|
|
// both caches refer to the same sets
|
|
//
|
|
for (std::map<const MachineInstr*, const ValueSet*>::iterator
|
|
MI = MInst2LVSetBI.begin(),
|
|
ME = MInst2LVSetBI.end(); MI != ME; ++MI)
|
|
delete MI->second; // delete all ValueSets in MInst2LVSetBI
|
|
|
|
MInst2LVSetBI.clear();
|
|
MInst2LVSetAI.clear();
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Following functions will give the LiveVar info for any machine instr in
|
|
// a method. It should be called after a call to analyze().
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Gives live variable information before a machine instruction
|
|
//-----------------------------------------------------------------------------
|
|
|
|
const ValueSet &
|
|
MethodLiveVarInfo::getLiveVarSetBeforeMInst(const MachineInstr *MInst,
|
|
const BasicBlock *BB) {
|
|
if (const ValueSet *LVSet = MInst2LVSetBI[MInst]) {
|
|
return *LVSet; // if found, just return the set
|
|
} else {
|
|
calcLiveVarSetsForBB(BB); // else, calc for all instrs in BB
|
|
return *MInst2LVSetBI[MInst];
|
|
}
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Gives live variable information after a machine instruction
|
|
//-----------------------------------------------------------------------------
|
|
const ValueSet &
|
|
MethodLiveVarInfo::getLiveVarSetAfterMInst(const MachineInstr *MI,
|
|
const BasicBlock *BB) {
|
|
|
|
if (const ValueSet *LVSet = MInst2LVSetAI[MI]) {
|
|
return *LVSet; // if found, just return the set
|
|
} else {
|
|
calcLiveVarSetsForBB(BB); // else, calc for all instrs in BB
|
|
return *MInst2LVSetAI[MI];
|
|
}
|
|
}
|
|
|
|
// This function applies a machine instr to a live var set (accepts OutSet) and
|
|
// makes necessary changes to it (produces InSet). Note that two for loops are
|
|
// used to first kill all defs and then to add all uses. This is because there
|
|
// can be instructions like Val = Val + 1 since we allow multipe defs to a
|
|
// machine instruction operand.
|
|
//
|
|
static void applyTranferFuncForMInst(ValueSet &LVS, const MachineInstr *MInst) {
|
|
for (MachineInstr::const_val_op_iterator OpI = MInst->begin(),
|
|
OpE = MInst->end(); OpI != OpE; ++OpI) {
|
|
if (OpI.isDef()) // kill only if this operand is a def
|
|
LVS.insert(*OpI); // this definition kills any uses
|
|
}
|
|
|
|
// do for implicit operands as well
|
|
for (unsigned i=0; i < MInst->getNumImplicitRefs(); ++i) {
|
|
if (MInst->implicitRefIsDefined(i))
|
|
LVS.erase(MInst->getImplicitRef(i));
|
|
}
|
|
|
|
for (MachineInstr::const_val_op_iterator OpI = MInst->begin(),
|
|
OpE = MInst->end(); OpI != OpE; ++OpI) {
|
|
if (isa<BasicBlock>(*OpI)) continue; // don't process labels
|
|
|
|
if (!OpI.isDef()) // add only if this operand is a use
|
|
LVS.insert(*OpI); // An operand is a use - so add to use set
|
|
}
|
|
|
|
// do for implicit operands as well
|
|
for (unsigned i = 0; i < MInst->getNumImplicitRefs(); ++i) {
|
|
if (!MInst->implicitRefIsDefined(i))
|
|
LVS.insert(MInst->getImplicitRef(i));
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// 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)
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void MethodLiveVarInfo::calcLiveVarSetsForBB(const BasicBlock *BB) {
|
|
const MachineCodeForBasicBlock &MIVec = BB->getMachineInstrVec();
|
|
|
|
ValueSet *CurSet = new ValueSet();
|
|
const ValueSet *SetAI = &getOutSetOfBB(BB); // init SetAI with OutSet
|
|
set_union(*CurSet, *SetAI); // CurSet now contains OutSet
|
|
|
|
// iterate over all the machine instructions in BB
|
|
for (MachineCodeForBasicBlock::const_reverse_iterator MII = MIVec.rbegin(),
|
|
MIE = MIVec.rend(); MII != MIE; ++MII) {
|
|
// MI is cur machine inst
|
|
const MachineInstr *MI = *MII;
|
|
|
|
MInst2LVSetAI[MI] = SetAI; // record in After Inst map
|
|
|
|
applyTranferFuncForMInst(*CurSet, MI); // apply the transfer Func
|
|
ValueSet *NewSet = new ValueSet(); // create a new set and
|
|
set_union(*NewSet, *CurSet); // copy the set after T/F to it
|
|
|
|
MInst2LVSetBI[MI] = NewSet; // record in Before Inst map
|
|
|
|
// SetAI will be used in the next iteration
|
|
SetAI = NewSet;
|
|
}
|
|
}
|