36using namespace SVFUtil;
78 if(
mrs.find(mr)==
mrs.end())
197 if (
const StoreStmt *
st = SVFUtil::dyn_cast<StoreStmt>(inst))
207 else if (
const LoadStmt *
ld = SVFUtil::dyn_cast<LoadStmt>(inst))
242 while(!worklist.
empty())
481 while(!worklist.
empty())
524 while(!worklist.
empty())
568 if(
obj->isGlobalObj() || SVFUtil::isa<HeapObjVar, DummyObjVar>(
pVar))
572 else if(SVFUtil::isa<StackObjVar>(
pVar))
595 for (SVFStmtList::const_iterator bit =
pagEdgeList.begin(),
631 for(CallGraphEdge::CallInstSet::iterator
cit =
edge->getDirectCalls().begin(),
641 for(CallGraphEdge::CallInstSet::iterator
cit =
edge->getIndirectCalls().begin(),
796 o <<
"MRVERID: " <<
mrver.getID() <<
" MemRegion: " <<
mrver.getMR()->dumpStr() <<
" MRVERSION: " <<
mrver.getSSAVersion() <<
" MSSADef: " <<
mrver.getDef()->getType() <<
", "
797 <<
mrver.getDef()->getMR()->dumpStr() ;
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) add_llvm_executable(wpa wpa.cpp) target_link_libraries(wpa PUBLIC $
virtual void expandFIObjs(const PointsTo &pts, PointsTo &expandedPts)
Expand FI objects.
const PointsTo & getPts(NodeID id) override
const FunObjVar * getFunction() const
Get function of this call node.
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
const RetICFGNode * getRetICFGNode() const
Return callsite.
const FunObjVar * getCaller() const
Return callsite.
bool push(const Data &data)
BasicBlockGraph::IDToNodeMapTy::const_iterator const_bb_iterator
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
const_bb_iterator begin() const
bool isUncalledFunction() const
const_bb_iterator end() const
iterator begin()
Iterators.
IDToNodeMapTy::iterator iterator
Node Iterators.
GEdgeSetTy::iterator iterator
LoadsToMRsMap loadsToMRsMap
Map a load SVFIR Edge to its memory regions sets in order for inserting mus in Memory SSA.
NodeToPTSSMap cachedPtsChainMap
Map a pointer to its cached points-to chain;.
const NodeBS & getModSideEffectOfFunction(const FunObjVar *fun)
Get indirect mods of a function.
bool hasModSideEffectOfCallSite(const CallICFGNode *cs)
Has indirect mods of a callsite.
virtual void collectModRefForLoadStore()
Generate regions for loads/stores.
CallSiteToPointsToMap csToCallSiteRetPtsMap
Map a callsite to all its object might return from its callees.
StoresToMRsMap storesToMRsMap
Map a store SVFIR Edge to its memory regions sets in order for inserting chis in Memory SSA.
SVFStmtList & getPAGEdgesFromInst(const ICFGNode *node)
Given an instruction, get all its the PAGEdge (statement) in sequence.
const NodeBS & getRefSideEffectOfFunction(const FunObjVar *fun)
Get indirect refs of a function.
FunToPointsToMap funToModsMap
Map a function to its indirect defs of memory objects.
CallSiteToPointsToMap callsiteToRefPointsToMap
Map a callsite to it refs cpts set.
void addRefSideEffectOfFunction(const FunObjVar *fun, const NodeBS &refs)
Add/Get methods for side-effect of functions and callsites.
FunToMRsMap funToMRsMap
Map a function to all its memory regions.
virtual bool handleCallsiteModRef(NodeBS &mod, NodeBS &ref, const CallICFGNode *cs, const FunObjVar *fun)
Get Mod-Ref of a callee function.
virtual void generateMRs()
Start generating memory regions.
virtual void collectModRefForCall()
Generate regions for calls/rets.
void createMR(const FunObjVar *fun, const NodeBS &cpts)
Generate a memory region and put in into functions which use it.
const MemRegion * getMR(const NodeBS &cpts) const
Get a memory region according to cpts.
void addCPtsToLoad(NodeBS &cpts, const LoadStmt *ld, const FunObjVar *fun)
FunToPointsTosMap & getFunToPointsToList()
void addModSideEffectOfFunction(const FunObjVar *fun, const NodeBS &mods)
Add indirect def an memory object in the function.
CallSiteToPointsToMap csToModsMap
Map a callsite to its indirect defs of memory objects.
virtual void sortPointsTo(const NodeBS &cpts)
Given a condition pts, insert into cptsToRepCPtsMap for region generation.
void addCPtsToStore(NodeBS &cpts, const StoreStmt *st, const FunObjVar *fun)
Add cpts to store/load.
CallSiteToMRsMap callsiteToRefMRsMap
Map a callsite to its refs regions.
virtual void getAliasMemRegions(MRSet &aliasMRs, const NodeBS &cpts, const FunObjVar *fun)
Get all aliased mem regions from function fun according to cpts.
StoresToPointsToMap storesToPointsToMap
Map a store SVFIR Edge to its CPts set map.
const FunObjVar * getFunction(const PAGEdge *pagEdge) const
Get the function which SVFIR Edge located.
NodeBS & CollectPtsChain(NodeID id)
bool addRefSideEffectOfCallSite(const CallICFGNode *cs, const NodeBS &refs)
Add indirect uses an memory object in the function.
SVFIR::SVFStmtList SVFStmtList
SVFIR edge list.
OrderedSet< NodeBS, SVFUtil::equalNodeBS > PointsToList
bool addModSideEffectOfCallSite(const CallICFGNode *cs, const NodeBS &mods)
Add indirect def an memory object in the function.
void addCPtsToCallSiteRefs(NodeBS &cpts, const CallICFGNode *cs)
NodeBS getRefInfoForCall(const CallICFGNode *cs)
bool hasRefSideEffectOfCallSite(const CallICFGNode *cs)
Has indirect refs of a callsite.
OrderedSet< const MemRegion *, MemRegion::equalMemRegion > MRSet
Get typedef from Pointer Analysis.
virtual void updateAliasMRs()
Update aliased regions for loads/stores/callsites.
void collectCallSitePts(const CallICFGNode *cs)
const NodeBS & getRepPointsTo(const NodeBS &cpts) const
Get superset cpts set.
virtual void getMRsForCallSiteRef(MRSet &aliasMRs, const NodeBS &cpts, const FunObjVar *)
Get memory regions for call site ref according to cpts.
bool hasSVFStmtList(const ICFGNode *icfgNode)
Whether this instruction has SVFIR Edge.
PAGEdgeToFunMap pagEdgeToFunMap
Map a PAGEdge to its fun.
PtsToRepPtsSetMap cptsToRepCPtsMap
Map a condition pts to its rep conditional pts (super set points-to)
void addCPtsToCallSiteMods(NodeBS &cpts, const CallICFGNode *cs)
virtual void getMRsForLoad(MRSet &aliasMRs, const NodeBS &cpts, const FunObjVar *)
Get memory regions for a load statement according to cpts.
CallSiteToPointsToMap callsiteToModPointsToMap
Map a callsite to it mods cpts set.
virtual void partitionMRs()
Partition regions.
ModRefInfo getModRefInfo(const CallICFGNode *cs)
void destroy()
Clean up memory.
const NodeBS & getRefSideEffectOfCallSite(const CallICFGNode *cs)
Get indirect refs of a callsite.
CallSiteToPointsToMap csToRefsMap
Map a callsite to its indirect uses of memory objects.
MRGenerator(BVDataPTAImpl *p, bool ptrOnly)
NodeBS & getCallSiteArgsPts(const CallICFGNode *cs)
Return the pts chain of all callsite arguments.
bool isNonLocalObject(NodeID id, const FunObjVar *curFun) const
void getEscapObjviaGlobals(NodeBS &globs, const NodeBS &pts)
Get all the objects in callee's modref escaped via global objects (the chain pts of globals)
CallSiteToMRsMap callsiteToModMRsMap
Map a callsite to its mods regions.
NodeBS getModInfoForCall(const CallICFGNode *cs)
getModRefInfo APIs
const NodeBS & getModSideEffectOfCallSite(const CallICFGNode *cs)
Get indirect mods of a callsite.
SCCDetection< CallGraph * > SCC
Call Graph SCC.
virtual void modRefAnalysis(CallGraphNode *callGraphNode, WorkList &worklist)
Mod-Ref analysis for callsite invoking this callGraphNode.
NodeBS & getCallSiteRetPts(const CallICFGNode *cs)
Return the pts chain of the return parameter of the callsite.
NodeBS allGlobals
All global variable SVFIR node ids.
LoadsToPointsToMap loadsToPointsToMap
Map a load SVFIR Edge to its CPts set map.
FunToPointsToMap funToRefsMap
Map a function to its indirect uses of memory objects.
MRSet memRegSet
A set of All memory regions.
void collectGlobals()
Collect all global variables for later escape analysis.
CallSiteToPointsToMap csToCallSiteArgsPtsMap
Map a callsite to all its object might pass into its callees.
static u32_t totalVERNum
ver ID 0 is reserved
static u32_t totalMRNum
region ID 0 is reserved
static const Option< bool > IgnoreDeadFun
CallGraph * getCallGraph() const
Return call graph.
NodeBS toNodeBS() const
Returns this points-to set as a NodeBS.
const std::vector< const ICFGNode * > & getICFGNodeList() const
const CallSiteSet & getCallSiteSet() const
Get all callsites.
bool hasPTASVFStmtList(const ICFGNode *inst) const
CallGraph * getCallGraph()
NodeBS getFieldsAfterCollapse(NodeID id)
SVFStmtList & getSVFStmtList(const ICFGNode *inst)
Given an instruction, get all its PAGEdges.
bool hasSVFStmtList(const ICFGNode *inst) const
Whether this instruction has SVFIR Edge.
std::vector< const SVFVar * > SVFVarList
std::vector< const SVFStmt * > SVFStmtList
const BaseObjVar * getBaseObject(NodeID id) const
NodeID getBaseObjVar(NodeID id) const
Base and Offset methods for Value and Object node.
bool hasCallSiteArgsMap(const CallICFGNode *cs) const
Callsite has argument list.
bool callsiteHasRet(const RetICFGNode *cs) const
SVFStmtList & getPTASVFStmtList(const ICFGNode *inst)
Given an instruction, get all its PTA PAGEdges.
const SVFVarList & getCallSiteArgsList(const CallICFGNode *cs) const
Get callsite argument list.
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
const SVFVar * getCallSiteRet(const RetICFGNode *cs) const
Get callsite return.
NodeID getId() const
Get ID.
virtual bool isPointer() const
Check if this variable represents a pointer.
bool test(unsigned Idx) const
bool contains(const SparseBitVector< ElementSize > &RHS) const
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
bool isHeapAllocExtCall(const ICFGNode *cs)
bool isExtCall(const FunObjVar *fun)
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder
IntervalValue operator<<(const IntervalValue &lhs, const IntervalValue &rhs)
Left binary shift of IntervalValues.