Static Value-Flow Analysis
Loading...
Searching...
No Matches
MemRegion.cpp
Go to the documentation of this file.
1//===- MemRegion.cpp -- Memory region-----------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * MemRegion.cpp
25 *
26 * Created on: Dec 14, 2013
27 * Author: Yulei Sui
28 */
29
30#include "Util/Options.h"
31#include "MSSA/MemRegion.h"
32#include "MSSA/MSSAMuChi.h"
33#include "Graphs/CallGraph.h"
34
35using namespace SVF;
36using namespace SVFUtil;
37
40
42 pta(p), ptrOnlyMSSA(ptrOnly)
43{
46}
47
52{
53
54 for (MRSet::iterator it = memRegSet.begin(), eit = memRegSet.end();
55 it != eit; ++it)
56 {
57 delete *it;
58 }
59
60 delete callGraphSCC;
61 callGraphSCC = nullptr;
62 callGraph = nullptr;
63 pta = nullptr;
64}
65
69void MRGenerator::createMR(const FunObjVar* fun, const NodeBS& cpts)
70{
71 const NodeBS& repCPts = getRepPointsTo(cpts);
73 MRSet::const_iterator mit = memRegSet.find(&mr);
74 if(mit!=memRegSet.end())
75 {
76 const MemRegion* mr = *mit;
77 MRSet& mrs = funToMRsMap[fun];
78 if(mrs.find(mr)==mrs.end())
79 mrs.insert(mr);
80 }
81 else
82 {
84 memRegSet.insert(m);
85 funToMRsMap[fun].insert(m);
86 }
87}
88
92const MemRegion* MRGenerator::getMR(const NodeBS& cpts) const
93{
94 MemRegion mr(getRepPointsTo(cpts));
95 MRSet::iterator mit = memRegSet.find(&mr);
96 assert(mit!=memRegSet.end() && "memory region not found!!");
97 return *mit;
98}
99
100
105{
106 SVFIR* pag = pta->getPAG();
107 for (SVFIR::iterator nIter = pag->begin(); nIter != pag->end(); ++nIter)
108 {
109 if(ObjVar* obj = SVFUtil::dyn_cast<ObjVar>(nIter->second))
110 {
111 if (pag->getBaseObject(obj->getId())->isGlobalObj())
112 {
113 allGlobals.set(nIter->first);
115 }
116 }
117 }
118}
119
125{
126
127 DBOUT(DGENERAL, outs() << pasMsg("Generate Memory Regions \n"));
128
130
131 callGraphSCC->find();
132
133 DBOUT(DGENERAL, outs() << pasMsg("\tCollect ModRef For Load/Store \n"));
134
137
138 DBOUT(DGENERAL, outs() << pasMsg("\tCollect ModRef For const CallICFGNode*\n"));
139
142
143 DBOUT(DGENERAL, outs() << pasMsg("\tPartition Memory Regions \n"));
145 partitionMRs();
148}
149
151{
152 SVFIR* pag = pta->getPAG();
153 if (ptrOnlyMSSA)
154 return pag->hasPTASVFStmtList(node);
155 else
156 return pag->hasSVFStmtList(node);
157}
158
159
161{
162 SVFIR* pag = pta->getPAG();
163 if (ptrOnlyMSSA)
164 return pag->getPTASVFStmtList(node);
165 else
166 return pag->getSVFStmtList(node);
167}
168
169
174{
175
177 for (const auto& item: *svfirCallGraph)
178 {
179 const FunObjVar& fun = *item.second->getFunction();
180
183 continue;
184
185 for (FunObjVar::const_bb_iterator iter = fun.begin(), eiter = fun.end();
186 iter != eiter; ++iter)
187 {
188 const SVFBasicBlock* bb = iter->second;
189 for (const auto& inst: bb->getICFGNodeList())
190 {
192 for (SVFStmtList::iterator bit = pagEdgeList.begin(), ebit =
193 pagEdgeList.end(); bit != ebit; ++bit)
194 {
195 const PAGEdge* inst = *bit;
196 pagEdgeToFunMap[inst] = &fun;
197 if (const StoreStmt *st = SVFUtil::dyn_cast<StoreStmt>(inst))
198 {
199 NodeBS cpts(pta->getPts(st->getLHSVarID()).toNodeBS());
200 // TODO: change this assertion check later when we have conditional points-to set
201 if (cpts.empty())
202 continue;
203 assert(!cpts.empty() && "null pointer!!");
204 addCPtsToStore(cpts, st, &fun);
205 }
206
207 else if (const LoadStmt *ld = SVFUtil::dyn_cast<LoadStmt>(inst))
208 {
209 NodeBS cpts(pta->getPts(ld->getRHSVarID()).toNodeBS());
210 // TODO: change this assertion check later when we have conditional points-to set
211 if (cpts.empty())
212 continue;
213 assert(!cpts.empty() && "null pointer!!");
214 addCPtsToLoad(cpts, ld, &fun);
215 }
216 }
217 }
218 }
219 }
220}
221
222
227{
228
229 DBOUT(DGENERAL, outs() << pasMsg("\t\tCollect Callsite PointsTo \n"));
230
232 for(SVFIR::CallSiteSet::const_iterator it = pta->getPAG()->getCallSiteSet().begin(),
233 eit = pta->getPAG()->getCallSiteSet().end(); it!=eit; ++it)
234 {
236 }
237
238 DBOUT(DGENERAL, outs() << pasMsg("\t\tPerform Callsite Mod-Ref \n"));
239
240 WorkList worklist = callGraphSCC->revTopoNodeStack();
241
242 while(!worklist.empty())
243 {
244 NodeID callGraphNodeID = worklist.front();
245 worklist.pop();
247 const NodeBS& subNodes = callGraphSCC->subNodes(callGraphNodeID);
248 for(NodeBS::iterator it = subNodes.begin(), eit = subNodes.end(); it!=eit; ++it)
249 {
253 }
254 }
255
256 DBOUT(DGENERAL, outs() << pasMsg("\t\tAdd PointsTo to Callsites \n"));
257
258 for (const CallICFGNode* callBlockNode : pta->getPAG()->getCallSiteSet())
259 {
260 if(hasRefSideEffectOfCallSite(callBlockNode))
261 {
262 NodeBS refs = getRefSideEffectOfCallSite(callBlockNode);
263 addCPtsToCallSiteRefs(refs,callBlockNode);
264 }
265 if(hasModSideEffectOfCallSite(callBlockNode))
266 {
267 NodeBS mods = getModSideEffectOfCallSite(callBlockNode);
269 addCPtsToCallSiteMods(mods,callBlockNode);
270 addCPtsToCallSiteRefs(mods,callBlockNode);
271 }
272 }
273}
274
282{
283
284 if(cptsToRepCPtsMap.find(cpts)!=cptsToRepCPtsMap.end())
285 return;
286
288 NodeBS repCPts = cpts;
289 for(PtsToRepPtsSetMap::iterator it = cptsToRepCPtsMap.begin(),
290 eit = cptsToRepCPtsMap.end(); it!=eit; ++it)
291 {
292 NodeBS& existCPts = it->second;
293 if(cpts.contains(existCPts))
294 {
295 subSetList.insert(it->first);
296 }
297 else if(existCPts.contains(cpts))
298 {
300 }
301 }
302
303 for(PointsToList::iterator it = subSetList.begin(), eit = subSetList.end(); it!=eit; ++it)
304 {
305 cptsToRepCPtsMap[*it] = cpts;
306 }
307
309}
310
315{
316
321 for(FunToPointsTosMap::iterator it = getFunToPointsToList().begin(), eit = getFunToPointsToList().end();
322 it!=eit; ++it)
323 {
324 for(PointsToList::iterator cit = it->second.begin(), ecit = it->second.end(); cit!=ecit; ++cit)
325 {
327 }
328 }
330 for(FunToPointsTosMap::iterator it = getFunToPointsToList().begin(), eit = getFunToPointsToList().end();
331 it!=eit; ++it)
332 {
333 const FunObjVar* fun = it->first;
334 for(PointsToList::iterator cit = it->second.begin(), ecit = it->second.end(); cit!=ecit; ++cit)
335 {
336 createMR(fun,*cit);
337 }
338 }
339
340}
341
346{
347
349 for(StoresToPointsToMap::const_iterator it = storesToPointsToMap.begin(), eit = storesToPointsToMap.end(); it!=eit; ++it)
350 {
352 const FunObjVar* fun = getFunction(it->first);
353 const NodeBS& storeCPts = it->second;
355 for(MRSet::iterator ait = aliasMRs.begin(), eait = aliasMRs.end(); ait!=eait; ++ait)
356 {
357 storesToMRsMap[it->first].insert(*ait);
358 }
359 }
360
361 for(LoadsToPointsToMap::const_iterator it = loadsToPointsToMap.begin(), eit = loadsToPointsToMap.end(); it!=eit; ++it)
362 {
364 const FunObjVar* fun = getFunction(it->first);
365 const NodeBS& loadCPts = it->second;
367 for(MRSet::iterator ait = aliasMRs.begin(), eait = aliasMRs.end(); ait!=eait; ++ait)
368 {
369 loadsToMRsMap[it->first].insert(*ait);
370 }
371 }
372
374 for(CallSiteToPointsToMap::const_iterator it = callsiteToModPointsToMap.begin(),
375 eit = callsiteToModPointsToMap.end(); it!=eit; ++it)
376 {
377 const FunObjVar* fun = it->first->getCaller();
379 const NodeBS& callsiteModCPts = it->second;
381 for(MRSet::iterator ait = aliasMRs.begin(), eait = aliasMRs.end(); ait!=eait; ++ait)
382 {
383 callsiteToModMRsMap[it->first].insert(*ait);
384 }
385 }
386 for(CallSiteToPointsToMap::const_iterator it = callsiteToRefPointsToMap.begin(),
387 eit = callsiteToRefPointsToMap.end(); it!=eit; ++it)
388 {
389 const FunObjVar* fun = it->first->getCaller();
391 const NodeBS& callsiteRefCPts = it->second;
393 for(MRSet::iterator ait = aliasMRs.begin(), eait = aliasMRs.end(); ait!=eait; ++ait)
394 {
395 callsiteToRefMRsMap[it->first].insert(*ait);
396 }
397 }
398}
399
400
405{
406 for(NodeBS::iterator it = refs.begin(), eit = refs.end(); it!=eit; ++it)
407 {
408 if(isNonLocalObject(*it,fun))
409 funToRefsMap[fun].set(*it);
410 }
411}
412
417{
418 for(NodeBS::iterator it = mods.begin(), eit = mods.end(); it!=eit; ++it)
419 {
420 if(isNonLocalObject(*it,fun))
421 funToModsMap[fun].set(*it);
422 }
423}
424
429{
430 if(!refs.empty())
431 {
436 return csToRefsMap[cs] |= refset;
437 }
438 return false;
439}
440
445{
446 if(!mods.empty())
447 {
452 return csToModsMap[cs] |= modset;
453 }
454 return false;
455}
456
457
462{
465 SVFIR* pag = pta->getPAG();
466 CallICFGNode* callBlockNode = const_cast<CallICFGNode*>(cs);
468
469 WorkList worklist;
470 if (pag->hasCallSiteArgsMap(callBlockNode))
471 {
472 const SVFIR::SVFVarList& args = pta->getPAG()->getCallSiteArgsList(callBlockNode);
473 for(SVFIR::SVFVarList::const_iterator itA = args.begin(), ieA = args.end(); itA!=ieA; ++itA)
474 {
475 const PAGNode* node = *itA;
476 if(node->isPointer())
477 worklist.push(node->getId());
478 }
479 }
480
481 while(!worklist.empty())
482 {
483 NodeID nodeId = worklist.pop();
484 const NodeBS& tmp = pta->getPts(nodeId).toNodeBS();
485 for(NodeBS::iterator it = tmp.begin(), eit = tmp.end(); it!=eit; ++it)
487 }
488
491
493 {
494 const PAGNode* node = pta->getPAG()->getCallSiteRet(retBlockNode);
495 if(node->isPointer())
496 {
497 const NodeBS& tmp = pta->getPts(node->getId()).toNodeBS();
498 for(NodeBS::iterator it = tmp.begin(), eit = tmp.end(); it!=eit; ++it)
500 }
501 }
502
503}
504
505
510{
512 NodeToPTSSMap::iterator it = cachedPtsChainMap.find(baseId);
513 if(it!=cachedPtsChainMap.end())
514 return it->second;
515 else
516 {
519
520 WorkList worklist;
521 for(NodeBS::iterator it = pts.begin(), eit = pts.end(); it!=eit; ++it)
522 worklist.push(*it);
523
524 while(!worklist.empty())
525 {
526 NodeID nodeId = worklist.pop();
527 const NodeBS& tmp = pta->getPts(nodeId).toNodeBS();
528 for(NodeBS::iterator it = tmp.begin(), eit = tmp.end(); it!=eit; ++it)
529 {
531 }
532 }
533 return pts;
534 }
535
536}
537
544{
545 for(NodeBS::iterator it = calleeModRef.begin(), eit = calleeModRef.end(); it!=eit; ++it)
546 {
547 const BaseObjVar* pVar = pta->getPAG()->getBaseObject(*it);
548 (void)pVar;
549 //(void)obj; // Suppress warning of unused variable under release build
550 assert(pVar && "object not found!!");
551 if(allGlobals.test(*it))
552 globs.set(*it);
553 }
554}
555
561{
562 //ABTest
563 const BaseObjVar* obj = pta->getPAG()->getBaseObject(id);
564 assert(obj && "object not found!!");
566 const BaseObjVar* pVar = pta->getPAG()->getBaseObject(id);
567 assert(pVar && "object not found!");
568 if(obj->isGlobalObj() || SVFUtil::isa<HeapObjVar, DummyObjVar>(pVar))
569 return true;
572 else if(SVFUtil::isa<StackObjVar>(pVar))
573 {
574 if(const FunObjVar* svffun = pVar->getFunction())
575 {
576 if(svffun!=curFun)
577 return true;
578 else
579 return callGraphSCC->isInCycle(callGraph->getCallGraphNode(svffun)->getId());
580 }
581 }
582
583 return false;
584}
585
590{
592 if(isHeapAllocExtCall(cs))
593 {
595 for (SVFStmtList::const_iterator bit = pagEdgeList.begin(),
596 ebit = pagEdgeList.end(); bit != ebit; ++bit)
597 {
598 const PAGEdge* edge = *bit;
599 if (const AddrStmt* addr = SVFUtil::dyn_cast<AddrStmt>(edge))
600 mod.set(addr->getRHSVarID());
601 }
602 }
604 else
605 {
608 }
609 // add ref set
611 // add mod set
613
614 return refchanged || modchanged;
615}
616
622{
623
625 for(CallGraphNode::iterator it = callGraphNode->InEdgeBegin(), eit = callGraphNode->InEdgeEnd();
626 it!=eit; ++it)
627 {
629
631 for(CallGraphEdge::CallInstSet::iterator cit = edge->getDirectCalls().begin(),
632 ecit = edge->getDirectCalls().end(); cit!=ecit; ++cit)
633 {
634 NodeBS mod, ref;
635 const CallICFGNode* cs = (*cit);
636 bool modrefchanged = handleCallsiteModRef(mod, ref, cs, callGraphNode->getFunction());
637 if(modrefchanged)
638 worklist.push(edge->getSrcID());
639 }
641 for(CallGraphEdge::CallInstSet::iterator cit = edge->getIndirectCalls().begin(),
642 ecit = edge->getIndirectCalls().end(); cit!=ecit; ++cit)
643 {
644 NodeBS mod, ref;
645 const CallICFGNode* cs = (*cit);
646 bool modrefchanged = handleCallsiteModRef(mod, ref, cs, callGraphNode->getFunction());
647 if(modrefchanged)
648 worklist.push(edge->getSrcID());
649 }
650 }
651}
652
657{
658 if (isExtCall(cs) && !isHeapAllocExtCall(cs))
659 {
661 NodeBS mods;
662 for (SVFStmtList::const_iterator bit = pagEdgeList.begin(), ebit =
663 pagEdgeList.end(); bit != ebit; ++bit)
664 {
665 const PAGEdge* edge = *bit;
666 if (const StoreStmt* st = SVFUtil::dyn_cast<StoreStmt>(edge))
667 mods |= pta->getPts(st->getLHSVarID()).toNodeBS();
668 }
669 return mods;
670 }
671 else
672 {
674 }
675}
676
681{
682 if (isExtCall(cs) && !isHeapAllocExtCall(cs))
683 {
685 NodeBS refs;
686 for (SVFStmtList::const_iterator bit = pagEdgeList.begin(), ebit =
687 pagEdgeList.end(); bit != ebit; ++bit)
688 {
689 const PAGEdge* edge = *bit;
690 if (const LoadStmt* ld = SVFUtil::dyn_cast<LoadStmt>(edge))
691 refs |= pta->getPts(ld->getRHSVarID()).toNodeBS();
692 }
693 return refs;
694 }
695 else
696 {
698 }
699}
700
706{
707 bool ref = !getRefInfoForCall(cs).empty();
708 bool mod = !getModInfoForCall(cs).empty();
709
710 if (mod && ref)
711 return ModRefInfo::ModRef;
712 else if (ref)
713 return ModRefInfo::Ref;
714 else if (mod)
715 return ModRefInfo::Mod;
716 else
718}
719
725{
726 bool ref = false;
727 bool mod = false;
728
729 const NodeBS pts(pta->getPts(V->getId()).toNodeBS());
730 const NodeBS csRef = getRefInfoForCall(cs);
731 const NodeBS csMod = getModInfoForCall(cs);
736
737 if (csRefExpanded.intersects(ptsExpanded))
738 ref = true;
739 if (csModExpanded.intersects(ptsExpanded))
740 mod = true;
741
742 if (mod && ref)
743 return ModRefInfo::ModRef;
744 else if (ref)
745 return ModRefInfo::Ref;
746 else if (mod)
747 return ModRefInfo::Mod;
748 else
750}
751
756{
757 bool ref = false;
758 bool mod = false;
759
763
773
775 if (cs1RefExpanded.intersects(cs2ModExpanded))
776 ref = true;
778 if (cs1ModExpanded.intersects(cs2RefExpanded) || cs1ModExpanded.intersects(cs2ModExpanded))
779 mod = true;
781 if (cs1RefExpanded.intersects(cs2ModExpanded) && cs1ModExpanded.intersects(cs2ModExpanded))
782 ref = mod = true;
783
784 if (ref && mod)
785 return ModRefInfo::ModRef;
786 else if (ref)
787 return ModRefInfo::Ref;
788 else if (mod)
789 return ModRefInfo::Mod;
790 else
792}
793
794std::ostream& SVF::operator<<(std::ostream &o, const MRVer& mrver)
795{
796 o << "MRVERID: " << mrver.getID() <<" MemRegion: " << mrver.getMR()->dumpStr() << " MRVERSION: " << mrver.getSSAVersion() << " MSSADef: " << mrver.getDef()->getType() << ", "
797 << mrver.getDef()->getMR()->dumpStr() ;
798 return o;
799}
unsigned u32_t
Definition CommandLine.h:18
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
Definition SVFType.h:498
#define DGENERAL
Definition SVFType.h:504
set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) add_llvm_executable(wpa wpa.cpp) target_link_libraries(wpa PUBLIC $
Definition CMakeLists.txt:1
cJSON * p
Definition cJSON.cpp:2559
cJSON * item
Definition cJSON.h:222
virtual void expandFIObjs(const PointsTo &pts, PointsTo &expandedPts)
Expand FI objects.
const PointsTo & getPts(NodeID id) override
bool isGlobalObj() const
const FunObjVar * getFunction() const
Get function of this call node.
Definition CallGraph.h:191
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
const RetICFGNode * getRetICFGNode() const
Return callsite.
Definition ICFGNode.h:451
const FunObjVar * getCaller() const
Return callsite.
Definition ICFGNode.h:464
bool push(const Data &data)
Definition WorkList.h:165
bool empty() const
Definition WorkList.h:146
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
iterator InEdgeBegin()
iterator InEdgeEnd()
LoadsToMRsMap loadsToMRsMap
Map a load SVFIR Edge to its memory regions sets in order for inserting mus in Memory SSA.
Definition MemRegion.h:205
NodeToPTSSMap cachedPtsChainMap
Map a pointer to its cached points-to chain;.
Definition MemRegion.h:240
const NodeBS & getModSideEffectOfFunction(const FunObjVar *fun)
Get indirect mods of a function.
Definition MemRegion.h:391
bool hasModSideEffectOfCallSite(const CallICFGNode *cs)
Has indirect mods of a callsite.
Definition MemRegion.h:411
virtual void collectModRefForLoadStore()
Generate regions for loads/stores.
CallSiteToPointsToMap csToCallSiteRetPtsMap
Map a callsite to all its object might return from its callees.
Definition MemRegion.h:237
StoresToMRsMap storesToMRsMap
Map a store SVFIR Edge to its memory regions sets in order for inserting chis in Memory SSA.
Definition MemRegion.h:207
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.
Definition MemRegion.h:386
FunToPointsToMap funToModsMap
Map a function to its indirect defs of memory objects.
Definition MemRegion.h:229
CallSiteToPointsToMap callsiteToRefPointsToMap
Map a callsite to it refs cpts set.
Definition MemRegion.h:217
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.
Definition MemRegion.h:203
virtual bool handleCallsiteModRef(NodeBS &mod, NodeBS &ref, const CallICFGNode *cs, const FunObjVar *fun)
Get Mod-Ref of a callee function.
CallGraph * callGraph
Definition MemRegion.h:199
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.
Definition MemRegion.cpp:69
const MemRegion * getMR(const NodeBS &cpts) const
Get a memory region according to cpts.
Definition MemRegion.cpp:92
void addCPtsToLoad(NodeBS &cpts, const LoadStmt *ld, const FunObjVar *fun)
Definition MemRegion.h:345
FunToPointsTosMap & getFunToPointsToList()
Definition MemRegion.h:369
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.
Definition MemRegion.h:233
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.
Definition MemRegion.h:339
CallSiteToMRsMap callsiteToRefMRsMap
Map a callsite to its refs regions.
Definition MemRegion.h:209
virtual void getAliasMemRegions(MRSet &aliasMRs, const NodeBS &cpts, const FunObjVar *fun)
Get all aliased mem regions from function fun according to cpts.
Definition MemRegion.h:307
StoresToPointsToMap storesToPointsToMap
Map a store SVFIR Edge to its CPts set map.
Definition MemRegion.h:215
const FunObjVar * getFunction(const PAGEdge *pagEdge) const
Get the function which SVFIR Edge located.
Definition MemRegion.h:433
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.
Definition MemRegion.h:176
OrderedSet< NodeBS, SVFUtil::equalNodeBS > PointsToList
Definition MemRegion.h:143
bool addModSideEffectOfCallSite(const CallICFGNode *cs, const NodeBS &mods)
Add indirect def an memory object in the function.
void addCPtsToCallSiteRefs(NodeBS &cpts, const CallICFGNode *cs)
Definition MemRegion.h:351
NodeBS getRefInfoForCall(const CallICFGNode *cs)
bool hasRefSideEffectOfCallSite(const CallICFGNode *cs)
Has indirect refs of a callsite.
Definition MemRegion.h:406
OrderedSet< const MemRegion *, MemRegion::equalMemRegion > MRSet
Get typedef from Pointer Analysis.
Definition MemRegion.h:141
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.
Definition MemRegion.h:186
virtual void getMRsForCallSiteRef(MRSet &aliasMRs, const NodeBS &cpts, const FunObjVar *)
Get memory regions for call site ref according to cpts.
Definition MemRegion.h:324
bool hasSVFStmtList(const ICFGNode *icfgNode)
Whether this instruction has SVFIR Edge.
PAGEdgeToFunMap pagEdgeToFunMap
Map a PAGEdge to its fun.
Definition MemRegion.h:224
PtsToRepPtsSetMap cptsToRepCPtsMap
Map a condition pts to its rep conditional pts (super set points-to)
Definition MemRegion.h:278
void addCPtsToCallSiteMods(NodeBS &cpts, const CallICFGNode *cs)
Definition MemRegion.h:356
virtual void getMRsForLoad(MRSet &aliasMRs, const NodeBS &cpts, const FunObjVar *)
Get memory regions for a load statement according to cpts.
Definition MemRegion.h:317
CallSiteToPointsToMap callsiteToModPointsToMap
Map a callsite to it mods cpts set.
Definition MemRegion.h:219
virtual void partitionMRs()
Partition regions.
ModRefInfo getModRefInfo(const CallICFGNode *cs)
void destroy()
Clean up memory.
Definition MemRegion.cpp:51
const NodeBS & getRefSideEffectOfCallSite(const CallICFGNode *cs)
Get indirect refs of a callsite.
Definition MemRegion.h:396
CallSiteToPointsToMap csToRefsMap
Map a callsite to its indirect uses of memory objects.
Definition MemRegion.h:231
MRGenerator(BVDataPTAImpl *p, bool ptrOnly)
Definition MemRegion.cpp:41
NodeBS & getCallSiteArgsPts(const CallICFGNode *cs)
Return the pts chain of all callsite arguments.
Definition MemRegion.h:255
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.
Definition MemRegion.h:211
NodeBS getModInfoForCall(const CallICFGNode *cs)
getModRefInfo APIs
const NodeBS & getModSideEffectOfCallSite(const CallICFGNode *cs)
Get indirect mods of a callsite.
Definition MemRegion.h:401
SCCDetection< CallGraph * > SCC
Call Graph SCC.
Definition MemRegion.h:178
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.
Definition MemRegion.h:260
NodeBS allGlobals
All global variable SVFIR node ids.
Definition MemRegion.h:243
LoadsToPointsToMap loadsToPointsToMap
Map a load SVFIR Edge to its CPts set map.
Definition MemRegion.h:213
FunToPointsToMap funToRefsMap
Map a function to its indirect uses of memory objects.
Definition MemRegion.h:227
MRSet memRegSet
A set of All memory regions.
Definition MemRegion.h:276
BVDataPTAImpl * pta
Definition MemRegion.h:197
void collectGlobals()
Collect all global variables for later escape analysis.
CallSiteToPointsToMap csToCallSiteArgsPtsMap
Map a callsite to all its object might pass into its callees.
Definition MemRegion.h:235
static u32_t totalVERNum
ver ID 0 is reserved
Definition MSSAMuChi.h:50
Memory Region class.
Definition MemRegion.h:56
static u32_t totalMRNum
region ID 0 is reserved
Definition MemRegion.h:62
static const Option< bool > IgnoreDeadFun
Definition Options.h:139
SVFIR * getPAG() const
CallGraph * getCallGraph() const
Return call graph.
NodeBS toNodeBS() const
Returns this points-to set as a NodeBS.
Definition PointsTo.cpp:313
const std::vector< const ICFGNode * > & getICFGNodeList() const
const CallSiteSet & getCallSiteSet() const
Get all callsites.
Definition SVFIR.h:282
bool hasPTASVFStmtList(const ICFGNode *inst) const
Definition SVFIR.h:243
CallGraph * getCallGraph()
Definition SVFIR.h:184
NodeBS getFieldsAfterCollapse(NodeID id)
Definition SVFIR.cpp:504
SVFStmtList & getSVFStmtList(const ICFGNode *inst)
Given an instruction, get all its PAGEdges.
Definition SVFIR.h:249
bool hasSVFStmtList(const ICFGNode *inst) const
Whether this instruction has SVFIR Edge.
Definition SVFIR.h:239
std::vector< const SVFVar * > SVFVarList
Definition SVFIR.h:58
std::vector< const SVFStmt * > SVFStmtList
Definition SVFIR.h:57
const BaseObjVar * getBaseObject(NodeID id) const
Definition SVFIR.h:423
NodeID getBaseObjVar(NodeID id) const
Base and Offset methods for Value and Object node.
Definition SVFIR.h:479
bool hasCallSiteArgsMap(const CallICFGNode *cs) const
Callsite has argument list.
Definition SVFIR.h:310
bool callsiteHasRet(const RetICFGNode *cs) const
Definition SVFIR.h:338
SVFStmtList & getPTASVFStmtList(const ICFGNode *inst)
Given an instruction, get all its PTA PAGEdges.
Definition SVFIR.h:254
const SVFVarList & getCallSiteArgsList(const CallICFGNode *cs) const
Get callsite argument list.
Definition SVFIR.h:320
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
const SVFVar * getCallSiteRet(const RetICFGNode *cs) const
Get callsite return.
Definition SVFIR.h:332
NodeID getId() const
Get ID.
Definition SVFValue.h:158
virtual bool isPointer() const
Check if this variable represents a pointer.
bool test(unsigned Idx) const
void set(unsigned Idx)
bool contains(const SparseBitVector< ElementSize > &RHS) const
iterator begin() const
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
Definition SVFUtil.cpp:101
bool isHeapAllocExtCall(const ICFGNode *cs)
Definition SVFUtil.cpp:357
bool isExtCall(const FunObjVar *fun)
Definition SVFUtil.cpp:437
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
ModRefInfo
Definition SVFType.h:533
@ Ref
Definition SVFType.h:535
@ NoModRef
Definition SVFType.h:537
@ ModRef
Definition SVFType.h:534
@ Mod
Definition SVFType.h:536
u32_t NodeID
Definition GeneralType.h:56
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
IntervalValue operator<<(const IntervalValue &lhs, const IntervalValue &rhs)
Left binary shift of IntervalValues.