38using namespace SVFUtil;
52 &&
"please specify a pointer analysis");
61 assert(
false &&
"unrecognised memory partition strategy");
84 assert(!
isExtCall(&fun) &&
"we do not build memory ssa for external functions");
121 outs() <<
"\t creating mu chi for function " << fun.
getName()
141 for (BBList::const_iterator
iter = reachableBBs.begin(),
eiter = reachableBBs.end();
151 for (SVFStmtList::const_iterator bit =
pagEdgeList.begin(),
155 if (
const LoadStmt* load = SVFUtil::dyn_cast<LoadStmt>(inst))
157 else if (
const StoreStmt* store = SVFUtil::dyn_cast<StoreStmt>(inst))
206 outs() <<
"\t insert phi for function " << fun.
getName() <<
"\n");
226 writeWrnMsg(
"bb not in the dominance frontier map??");
254 outs() <<
"\t ssa rename for function " << fun.
getName() <<
"\n");
292 if (
const LoadStmt* load = SVFUtil::dyn_cast<LoadStmt>(inst))
295 else if (
const StoreStmt* store = SVFUtil::dyn_cast<StoreStmt>(inst))
351 &&
"did not find initial version in map? ");
353 &&
"did not find initial stack in map? ");
357 auto mrVer = std::make_unique<MRVer>(mr, version, def);
373 for (MUSet::iterator
it =
iter->second.begin(),
eit =
383 for (CHISet::iterator
it =
iter->second.begin(),
eit =
393 for (MUSet::iterator
it =
iter->second.begin(),
eit =
403 for (CHISet::iterator
it =
iter->second.begin(),
eit =
413 for (CHISet::iterator
it =
iter->second.begin(),
eit =
423 for (MUSet::iterator
it =
iter->second.begin(),
eit =
433 for (PHISet::iterator
it =
iter->second.begin(),
eit =
587 Out <<
"==========FUNCTION: " << fun->
getName() <<
"==========\n";
629 Out << inst->toString() <<
"\n";
652 if (
const LoadStmt* load = SVFUtil::dyn_cast<LoadStmt>(
edge))
667 Out << inst->toString() <<
"\n";
674 if (
const StoreStmt* store = SVFUtil::dyn_cast<StoreStmt>(
edge))
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
BasicBlockGraph::IDToNodeMapTy::const_iterator const_bb_iterator
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
const Map< const SVFBasicBlock *, BBSet > & getDomTreeMap() const
const_bb_iterator begin() const
const SVFBasicBlock * getEntryBlock() const
const_bb_iterator end() const
const std::vector< const SVFBasicBlock * > & getReachableBBs() const
MRSet & getStoreMRSet(const StoreStmt *store)
MRSet & getCallSiteRefMRSet(const CallICFGNode *cs)
SVFStmtList & getPAGEdgesFromInst(const ICFGNode *node)
Given an instruction, get all its the PAGEdge (statement) in sequence.
virtual void generateMRs()
Start generating memory regions.
bool hasModMRSet(const CallICFGNode *cs)
bool hasSVFStmtList(const ICFGNode *icfgNode)
Whether this instruction has SVFIR Edge.
MRSet & getLoadMRSet(const LoadStmt *load)
MRSet & getCallSiteModMRSet(const CallICFGNode *cs)
bool hasRefMRSet(const CallICFGNode *cs)
virtual void performStat() override
PHISet & getPHISet(const SVFBasicBlock *bb)
std::vector< const SVFBasicBlock * > BBList
For phi insertion.
void RenamePhiOps(const PHISet &phiSet, u32_t pos, MRVector &)
Rename operands (RHS) of phis.
u32_t getFunEntryChiNum() const
BBToPhiSetMap bb2PhiSetMap
CallSiteToCHISetMap callsiteToChiSetMap
CHISet & getCHISet(const StoreStmt *st)
MemRegToCounterMap mr2CounterMap
void RenameMuSet(const MUSet &muSet)
Rename mus, chis and phis.
virtual void createMUCHI(const FunObjVar &fun)
Create mu chi for candidate regions in a function.
u32_t getCallSiteChiNum() const
static double timeOfGeneratingMemRegions
Statistics.
MRVer * newSSAName(const MemRegion *mr, MSSADEF *def)
Get a new SSA name of a memory region.
void AddStoreCHI(const SVFBasicBlock *bb, const StoreStmt *store, const MRSet &mrSet)
static double timeOfInsertingPHI
Time for inserting phis.
bool hasReturnMu(const FunObjVar *fun) const
void destroy()
Release the memory.
SVFIR * getPAG()
Return SVFIR.
bool hasPHISet(const SVFBasicBlock *bb) const
void AddLoadMU(const SVFBasicBlock *bb, const LoadStmt *load, const MRSet &mrSet)
Add methods for mus/chis/phis.
SVFIR::SVFStmtList SVFStmtList
SVFIR edge list.
static double timeOfCreateMUCHI
Time for generating mu/chi for load/store/calls.
CHISet & getFuncEntryChiSet(const FunObjVar *fun)
FunToEntryChiSetMap funToEntryChiSetMap
virtual void insertPHI(const FunObjVar &fun)
Insert phi for candidate regions in a function.
LoadToMUSetMap load2MuSetMap
void RenameChiSet(const CHISet &chiSet, MRVector &memRegs)
Rename chi set.
void RenamePhiRes(const PHISet &phiSet, MRVector &memRegs)
Rename result (LHS) of phis.
u32_t getFunRetMuNum() const
EntryCHI< Condition > ENTRYCHI
MemSSA(BVDataPTAImpl *p, bool ptrOnlyMSSA)
Constructor.
std::vector< std::unique_ptr< MRVer > > usedMRVers
StoreToChiSetMap store2ChiSetMap
void dumpMSSA(OutStream &Out=SVFUtil::outs())
Print Memory SSA.
std::vector< const MemRegion * > MRVector
void performStat()
Perform statistics.
virtual void buildMemSSA(const FunObjVar &fun)
We start from here.
void AddCallSiteMU(const CallICFGNode *cs, const MRSet &mrSet)
bool hasFuncEntryChi(const FunObjVar *fun) const
Has function entry chi or return mu.
static double timeOfSSARenaming
Time for SSA rename.
u32_t getBBPhiNum() const
u32_t getCallSiteMuNum() const
u32_t getStoreChiNum() const
u32_t getLoadMuNum() const
Stat methods.
CallSiteToMUSetMap callsiteToMuSetMap
FunToReturnMuSetMap funToReturnMuSetMap
bool hasCHI(const PAGEdge *inst) const
virtual void SSARename(const FunObjVar &fun)
SSA rename for a function.
MRSet usedRegs
The following three set are used for prune SSA phi insertion.
Map< const SVFBasicBlock *, MRSet > BBToMRSetMap
MUSet & getMUSet(const LoadStmt *ld)
Get methods of mu/chi/phi.
void AddCallSiteCHI(const CallICFGNode *cs, const MRSet &mrSet)
MUSet & getReturnMuSet(const FunObjVar *fun)
MemRegToBBsMap reg2BBMap
Maps memory region to its basic block.
void AddMSSAPHI(const SVFBasicBlock *bb, const MRSet &mrSet)
MemRegToVerStackMap mr2VerStackMap
MRSet varKills
Collect memory regions whose definition killed.
virtual void SSARenameBB(const SVFBasicBlock &bb)
SSA rename for a basic block.
bool hasMU(const PAGEdge *inst) const
Has mu/chi methods.
static const OptionMap< MemSSA::MemPartition > MemPar
static const Option< std::string > MSSAFun
@ Default_PTA
default pta without any analysis
bool printStat()
Whether print statistics.
PTATY getAnalysisTy() const
Type of pointer analysis.
const FunObjVar * getParent() const
const std::vector< const ICFGNode * > & getICFGNodeList() const
u32_t getBBPredecessorPos(const SVFBasicBlock *succbb)
const ICFGNode * back() const
std::vector< const SVFBasicBlock * > getSuccessors() const
CallGraph * getCallGraph()
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
static double getClk(bool mark=false)
virtual const std::string & getName() const
bool isHeapAllocExtCall(const ICFGNode *cs)
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
bool isExtCall(const FunObjVar *fun)
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
bool isRetInstNode(const ICFGNode *node)
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder