Static Value-Flow Analysis
Loading...
Searching...
No Matches
MemSSA.cpp
Go to the documentation of this file.
1//===- MemSSA.cpp -- Base class of pointer analyses------------------//
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 * MemSSA.cpp
25 *
26 * Created on: Dec 14, 2013
27 * Author: Yulei Sui
28 */
29
30#include "Util/Options.h"
31#include "MSSA/MemPartition.h"
32#include "MSSA/MemSSA.h"
33#include "Graphs/SVFGStat.h"
34#include "Graphs/CallGraph.h"
35#include "SVFIR/SVFVariables.h"
36
37using namespace SVF;
38using namespace SVFUtil;
39
44
48MemSSA::MemSSA(BVDataPTAImpl* p, bool ptrOnlyMSSA)
49{
50 pta = p;
52 && "please specify a pointer analysis");
53
55 mrGen = new DistinctMRG(pta, ptrOnlyMSSA);
57 mrGen = new IntraDisjointMRG(pta, ptrOnlyMSSA);
59 mrGen = new InterDisjointMRG(pta, ptrOnlyMSSA);
60 else
61 assert(false && "unrecognised memory partition strategy");
62
63
64 stat = new MemSSAStat(this);
65
67 double mrStart = stat->getClk(true);
69 double mrEnd = stat->getClk(true);
71}
72
74{
75 return pta->getPAG();
76}
77
82{
83
84 assert(!isExtCall(&fun) && "we do not build memory ssa for external functions");
85
86 DBOUT(DMSSA, outs() << "Building Memory SSA for function " << fun.getName()
87 << " \n");
88
89 usedRegs.clear();
90 reg2BBMap.clear();
91
93 double muchiStart = stat->getClk(true);
94 createMUCHI(fun);
95 double muchiEnd = stat->getClk(true);
97
99 double phiStart = stat->getClk(true);
100 insertPHI(fun);
101 double phiEnd = stat->getClk(true);
103
105 double renameStart = stat->getClk(true);
106 SSARename(fun);
107 double renameEnd = stat->getClk(true);
109
110}
111
117{
118
119
120 DBOUT(DMSSA,
121 outs() << "\t creating mu chi for function " << fun.getName()
122 << "\n");
123 // 1. create mu/chi
124 // insert a set of mus for memory regions at each load
125 // inset a set of chis for memory regions at each store
126
127 // 2. find global names (region name before renaming) of each memory region,
128 // collect used mrs in usedRegs, and collect its def basic block in reg2BBMap
129 // in the form of mu(r) and r = chi (r)
130 // a) mu(r):
131 // if(r \not\in varKills) global = global \cup r
132 // b) r = chi(r):
133 // if(r \not\in varKills) global = global \cup r
134 // varKills = varKills \cup r
135 // block(r) = block(r) \cup bb_{chi}
136
139 BBList reachableBBs = fun.getReachableBBs();
140
141 for (BBList::const_iterator iter = reachableBBs.begin(), eiter = reachableBBs.end();
142 iter != eiter; ++iter)
143 {
144 const SVFBasicBlock* bb = *iter;
145 varKills.clear();
146 for (const auto& inst: bb->getICFGNodeList())
147 {
148 if(mrGen->hasSVFStmtList(inst))
149 {
151 for (SVFStmtList::const_iterator bit = pagEdgeList.begin(),
152 ebit = pagEdgeList.end(); bit != ebit; ++bit)
153 {
154 const PAGEdge* inst = *bit;
155 if (const LoadStmt* load = SVFUtil::dyn_cast<LoadStmt>(inst))
156 AddLoadMU(bb, load, mrGen->getLoadMRSet(load));
157 else if (const StoreStmt* store = SVFUtil::dyn_cast<StoreStmt>(inst))
158 AddStoreCHI(bb, store, mrGen->getStoreMRSet(store));
159 }
160 }
161 if (isNonInstricCallSite(inst))
162 {
163 const CallICFGNode* cs = cast<CallICFGNode>(inst);
164 if(mrGen->hasRefMRSet(cs))
166
167 if(mrGen->hasModMRSet(cs))
169 }
170 }
171 }
172
173 // create entry chi for this function including all memory regions
174 // initialize them with version 0 and 1 r_1 = chi (r_0)
175 for (MRSet::iterator iter = usedRegs.begin(), eiter = usedRegs.end();
176 iter != eiter; ++iter)
177 {
178 const MemRegion* mr = *iter;
179 // initialize mem region version and stack for renaming phase
180 mr2CounterMap[mr] = 0;
181 mr2VerStackMap[mr].clear();
182 ENTRYCHI* chi = new ENTRYCHI(&fun, mr);
183 chi->setOpVer(newSSAName(mr,chi));
184 chi->setResVer(newSSAName(mr,chi));
185 funToEntryChiSetMap[&fun].insert(chi);
186
189 if(fun.hasReturn())
190 {
191 RETMU* mu = new RETMU(&fun, mr);
192 funToReturnMuSetMap[&fun].insert(mu);
193 }
194
195 }
196
197}
198
199/*
200 * Insert phi node
201 */
203{
204
205 DBOUT(DMSSA,
206 outs() << "\t insert phi for function " << fun.getName() << "\n");
207
209 // record whether a phi of mr has already been inserted into the bb.
211
212 // start inserting phi node
213 for (MRSet::iterator iter = usedRegs.begin(), eiter = usedRegs.end();
214 iter != eiter; ++iter)
215 {
216 const MemRegion* mr = *iter;
217
218 BBList bbs = reg2BBMap[mr];
219 while (!bbs.empty())
220 {
221 const SVFBasicBlock* bb = bbs.back();
222 bbs.pop_back();
223 Map<const SVFBasicBlock*,Set<const SVFBasicBlock*>>::const_iterator it = df.find(bb);
224 if(it == df.end())
225 {
226 writeWrnMsg("bb not in the dominance frontier map??");
227 continue;
228 }
229 const Set<const SVFBasicBlock*>& domSet = it->second;
230 for (const SVFBasicBlock* pbb : domSet)
231 {
232 // if we never insert this phi node before
233 if (0 == bb2MRSetMap[pbb].count(mr))
234 {
235 bb2MRSetMap[pbb].insert(mr);
236 // insert phi node
237 AddMSSAPHI(pbb,mr);
238 // continue to insert phi in its iterative dominate frontiers
239 bbs.push_back(pbb);
240 }
241 }
242 }
243 }
244
245}
246
251{
252
253 DBOUT(DMSSA,
254 outs() << "\t ssa rename for function " << fun.getName() << "\n");
255
257}
258
264{
265
266 // record which mem region needs to pop stack
268
269 // rename phi result op
270 // for each r = phi (...)
271 // rewrite r as new name
272 if (hasPHISet(&bb))
274
275
276 // process mu and chi
277 // for each mu(r)
278 // rewrite r with top mrver of stack(r)
279 // for each r = chi(r')
280 // rewrite r' with top mrver of stack(r)
281 // rewrite r with new name
282
283 for (const auto& pNode: bb.getICFGNodeList())
284 {
286 {
288 for(SVFStmtList::const_iterator bit = pagEdgeList.begin(), ebit= pagEdgeList.end();
289 bit!=ebit; ++bit)
290 {
291 const PAGEdge* inst = *bit;
292 if (const LoadStmt* load = SVFUtil::dyn_cast<LoadStmt>(inst))
293 RenameMuSet(getMUSet(load));
294
295 else if (const StoreStmt* store = SVFUtil::dyn_cast<StoreStmt>(inst))
297
298 }
299 }
301 {
303 if(mrGen->hasRefMRSet(cs))
305
306 if(mrGen->hasModMRSet(cs))
308 }
309 else if(isRetInstNode(pNode))
310 {
311 const FunObjVar* fun = bb.getParent();
313 }
314 }
315
316
317 // fill phi operands of succ basic blocks
318 for (const SVFBasicBlock* succ : bb.getSuccessors())
319 {
321 if (hasPHISet(succ))
323 }
324
325 // for succ basic block in dominator tree
326 const FunObjVar* fun = bb.getParent();
328 Map<const SVFBasicBlock*,Set<const SVFBasicBlock*>>::const_iterator mapIter = dtBBsMap.find(&bb);
329 if (mapIter != dtBBsMap.end())
330 {
331 const Set<const SVFBasicBlock*>& dtBBs = mapIter->second;
332 for (const SVFBasicBlock* dtbb : dtBBs)
333 {
335 }
336 }
337 // for each r = chi(..), and r = phi(..)
338 // pop ver stack(r)
339 while (!memRegs.empty())
340 {
341 const MemRegion* mr = memRegs.back();
342 memRegs.pop_back();
343 mr2VerStackMap[mr].pop_back();
344 }
345
346}
347
349{
350 assert(0 != mr2CounterMap.count(mr)
351 && "did not find initial version in map? ");
352 assert(0 != mr2VerStackMap.count(mr)
353 && "did not find initial stack in map? ");
354
355 MRVERSION version = mr2CounterMap[mr];
356 mr2CounterMap[mr] = version + 1;
357 auto mrVer = std::make_unique<MRVer>(mr, version, def);
358 auto mrVerPtr = mrVer.get();
359 mr2VerStackMap[mr].push_back(mrVerPtr);
360 usedMRVers.push_back(std::move(mrVer));
361 return mrVerPtr;
362}
363
368{
369
370 for (LoadToMUSetMap::iterator iter = load2MuSetMap.begin(), eiter =
371 load2MuSetMap.end(); iter != eiter; ++iter)
372 {
373 for (MUSet::iterator it = iter->second.begin(), eit =
374 iter->second.end(); it != eit; ++it)
375 {
376 delete *it;
377 }
378 }
379
380 for (StoreToChiSetMap::iterator iter = store2ChiSetMap.begin(), eiter =
381 store2ChiSetMap.end(); iter != eiter; ++iter)
382 {
383 for (CHISet::iterator it = iter->second.begin(), eit =
384 iter->second.end(); it != eit; ++it)
385 {
386 delete *it;
387 }
388 }
389
390 for (CallSiteToMUSetMap::iterator iter = callsiteToMuSetMap.begin(),
391 eiter = callsiteToMuSetMap.end(); iter != eiter; ++iter)
392 {
393 for (MUSet::iterator it = iter->second.begin(), eit =
394 iter->second.end(); it != eit; ++it)
395 {
396 delete *it;
397 }
398 }
399
400 for (CallSiteToCHISetMap::iterator iter = callsiteToChiSetMap.begin(),
401 eiter = callsiteToChiSetMap.end(); iter != eiter; ++iter)
402 {
403 for (CHISet::iterator it = iter->second.begin(), eit =
404 iter->second.end(); it != eit; ++it)
405 {
406 delete *it;
407 }
408 }
409
410 for (FunToEntryChiSetMap::iterator iter = funToEntryChiSetMap.begin(),
411 eiter = funToEntryChiSetMap.end(); iter != eiter; ++iter)
412 {
413 for (CHISet::iterator it = iter->second.begin(), eit =
414 iter->second.end(); it != eit; ++it)
415 {
416 delete *it;
417 }
418 }
419
420 for (FunToReturnMuSetMap::iterator iter = funToReturnMuSetMap.begin(),
421 eiter = funToReturnMuSetMap.end(); iter != eiter; ++iter)
422 {
423 for (MUSet::iterator it = iter->second.begin(), eit =
424 iter->second.end(); it != eit; ++it)
425 {
426 delete *it;
427 }
428 }
429
430 for (BBToPhiSetMap::iterator iter = bb2PhiSetMap.begin(), eiter =
431 bb2PhiSetMap.end(); iter != eiter; ++iter)
432 {
433 for (PHISet::iterator it = iter->second.begin(), eit =
434 iter->second.end(); it != eit; ++it)
435 {
436 delete *it;
437 }
438 }
439
440 delete mrGen;
441 mrGen = nullptr;
442 delete stat;
443 stat = nullptr;
444 pta = nullptr;
445}
446
451{
452 if(pta->printStat())
453 stat->performStat();
454}
455
460{
461 u32_t num = 0;
462 LoadToMUSetMap::const_iterator it = load2MuSetMap.begin();
463 LoadToMUSetMap::const_iterator eit = load2MuSetMap.end();
464 for (; it != eit; it++)
465 {
466 const MUSet & muSet = it->second;
467 num+= muSet.size();
468 }
469 return num;
470}
471
472
477{
478 u32_t num = 0;
479 StoreToChiSetMap::const_iterator it = store2ChiSetMap.begin();
480 StoreToChiSetMap::const_iterator eit = store2ChiSetMap.end();
481 for (; it != eit; it++)
482 {
483 const CHISet& chiSet = it->second;
484 num += chiSet.size();
485 }
486 return num;
487}
488
489
494{
495 u32_t num = 0;
496 FunToEntryChiSetMap::const_iterator it = funToEntryChiSetMap.begin();
497 FunToEntryChiSetMap::const_iterator eit = funToEntryChiSetMap.end();
498 for (; it != eit; it++)
499 {
500 const CHISet& chiSet = it->second;
501 num += chiSet.size();
502 }
503 return num;
504}
505
506
511{
512 u32_t num = 0;
513 FunToReturnMuSetMap::const_iterator it = funToReturnMuSetMap.begin();
514 FunToReturnMuSetMap::const_iterator eit = funToReturnMuSetMap.end();
515 for (; it != eit; it++)
516 {
517 const MUSet & muSet = it->second;
518 num+= muSet.size();
519 }
520 return num;
521}
522
523
528{
529 u32_t num = 0;
530 CallSiteToMUSetMap::const_iterator it = callsiteToMuSetMap.begin();
531 CallSiteToMUSetMap::const_iterator eit = callsiteToMuSetMap.end();
532 for (; it != eit; it++)
533 {
534 const MUSet & muSet = it->second;
535 num+= muSet.size();
536 }
537 return num;
538}
539
540
545{
546 u32_t num = 0;
547 CallSiteToCHISetMap::const_iterator it = callsiteToChiSetMap.begin();
548 CallSiteToCHISetMap::const_iterator eit = callsiteToChiSetMap.end();
549 for (; it != eit; it++)
550 {
551 const CHISet & chiSet = it->second;
552 num+= chiSet.size();
553 }
554 return num;
555}
556
557
562{
563 u32_t num = 0;
564 BBToPhiSetMap::const_iterator it = bb2PhiSetMap.begin();
565 BBToPhiSetMap::const_iterator eit = bb2PhiSetMap.end();
566 for (; it != eit; it++)
567 {
568 const PHISet & phiSet = it->second;
569 num+= phiSet.size();
570 }
571 return num;
572}
573
578{
579
581 for (const auto& item: *svfirCallGraph)
582 {
583 const FunObjVar* fun = item.second->getFunction();
584 if(Options::MSSAFun()!="" && Options::MSSAFun()!=fun->getName())
585 continue;
586
587 Out << "==========FUNCTION: " << fun->getName() << "==========\n";
588 // dump function entry chi nodes
589 if (hasFuncEntryChi(fun))
590 {
592 for (CHISet::iterator chi_it = entry_chis.begin(); chi_it != entry_chis.end(); chi_it++)
593 {
594 (*chi_it)->dump();
595 }
596 }
597
598 for (FunObjVar::const_bb_iterator bit = fun->begin(), ebit = fun->end();
599 bit != ebit; ++bit)
600 {
601 const SVFBasicBlock* bb = bit->second;
602 Out << bb->getName() << "\n";
603 PHISet& phiSet = getPHISet(bb);
604 for(PHISet::iterator pi = phiSet.begin(), epi = phiSet.end(); pi !=epi; ++pi)
605 {
606 (*pi)->dump();
607 }
608
609 bool last_is_chi = false;
610 for (const auto& inst: bb->getICFGNodeList())
611 {
612 bool isAppCall = isNonInstricCallSite(inst) && !isExtCall(inst);
613 if (isAppCall || isHeapAllocExtCall(inst))
614 {
615 const CallICFGNode* cs = cast<CallICFGNode>(inst);
616 if(hasMU(cs))
617 {
618 if (!last_is_chi)
619 {
620 Out << "\n";
621 }
622 for (MUSet::iterator mit = getMUSet(cs).begin(), emit = getMUSet(cs).end();
623 mit != emit; ++mit)
624 {
625 (*mit)->dump();
626 }
627 }
628
629 Out << inst->toString() << "\n";
630
631 if(hasCHI(cs))
632 {
633 for (CHISet::iterator cit = getCHISet(cs).begin(), ecit = getCHISet(cs).end();
634 cit != ecit; ++cit)
635 {
636 (*cit)->dump();
637 }
638 Out << "\n";
639 last_is_chi = true;
640 }
641 else
642 last_is_chi = false;
643 }
644 else
645 {
646 bool dump_preamble = false;
648 for(SVFStmtList::const_iterator bit = pagEdgeList.begin(), ebit= pagEdgeList.end();
649 bit!=ebit; ++bit)
650 {
651 const PAGEdge* edge = *bit;
652 if (const LoadStmt* load = SVFUtil::dyn_cast<LoadStmt>(edge))
653 {
654 MUSet& muSet = getMUSet(load);
655 for(MUSet::iterator it = muSet.begin(), eit = muSet.end(); it!=eit; ++it)
656 {
657 if (!dump_preamble && !last_is_chi)
658 {
659 Out << "\n";
660 dump_preamble = true;
661 }
662 (*it)->dump();
663 }
664 }
665 }
666
667 Out << inst->toString() << "\n";
668
669 bool has_chi = false;
670 for(SVFStmtList::const_iterator bit = pagEdgeList.begin(), ebit= pagEdgeList.end();
671 bit!=ebit; ++bit)
672 {
673 const PAGEdge* edge = *bit;
674 if (const StoreStmt* store = SVFUtil::dyn_cast<StoreStmt>(edge))
675 {
676 CHISet& chiSet = getCHISet(store);
677 for(CHISet::iterator it = chiSet.begin(), eit = chiSet.end(); it!=eit; ++it)
678 {
679 has_chi = true;
680 (*it)->dump();
681 }
682 }
683 }
684 if (has_chi)
685 {
686 Out << "\n";
687 last_is_chi = true;
688 }
689 else
690 last_is_chi = false;
691 }
692 }
693 }
694
695 // dump return mu nodes
696 if (hasReturnMu(fun))
697 {
699 for (MUSet::iterator mu_it = return_mus.begin(); mu_it != return_mus.end(); mu_it++)
700 {
701 (*mu_it)->dump();
702 }
703 }
704 }
705}
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
Definition SVFType.h:498
#define TIMEINTERVAL
Definition SVFType.h:526
#define DMSSA
Definition SVFType.h:515
cJSON * p
Definition cJSON.cpp:2559
cJSON * item
Definition cJSON.h:222
int count
Definition cJSON.h:216
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
bool hasReturn() const
MRSet & getStoreMRSet(const StoreStmt *store)
Definition MemRegion.h:449
MRSet & getCallSiteRefMRSet(const CallICFGNode *cs)
Definition MemRegion.h:461
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)
Definition MemRegion.h:457
bool hasSVFStmtList(const ICFGNode *icfgNode)
Whether this instruction has SVFIR Edge.
MRSet & getLoadMRSet(const LoadStmt *load)
Definition MemRegion.h:445
MRSet & getCallSiteModMRSet(const CallICFGNode *cs)
Definition MemRegion.h:465
bool hasRefMRSet(const CallICFGNode *cs)
Definition MemRegion.h:453
Memory Region class.
Definition MemRegion.h:56
virtual void performStat() override
Definition SVFGStat.cpp:74
PHISet & getPHISet(const SVFBasicBlock *bb)
Definition MemSSA.h:397
std::vector< const SVFBasicBlock * > BBList
For phi insertion.
Definition MemSSA.h:93
void RenamePhiOps(const PHISet &phiSet, u32_t pos, MRVector &)
Rename operands (RHS) of phis.
Definition MemSSA.h:285
u32_t getFunEntryChiNum() const
Definition MemSSA.cpp:493
BBToPhiSetMap bb2PhiSetMap
Definition MemSSA.h:138
CallSiteToCHISetMap callsiteToChiSetMap
Definition MemSSA.h:137
MRGenerator * mrGen
Definition MemSSA.h:122
CHISet & getCHISet(const StoreStmt *st)
Definition MemSSA.h:385
MemRegToCounterMap mr2CounterMap
Definition MemSSA.h:144
void RenameMuSet(const MUSet &muSet)
Rename mus, chis and phis.
Definition MemSSA.h:249
virtual void createMUCHI(const FunObjVar &fun)
Create mu chi for candidate regions in a function.
Definition MemSSA.cpp:116
u32_t getCallSiteChiNum() const
Definition MemSSA.cpp:544
static double timeOfGeneratingMemRegions
Statistics.
Definition MemSSA.h:107
MRVer * newSSAName(const MemRegion *mr, MSSADEF *def)
Get a new SSA name of a memory region.
Definition MemSSA.cpp:348
void AddStoreCHI(const SVFBasicBlock *bb, const StoreStmt *store, const MRSet &mrSet)
Definition MemSSA.h:194
static double timeOfInsertingPHI
Time for inserting phis.
Definition MemSSA.h:109
bool hasReturnMu(const FunObjVar *fun) const
Definition MemSSA.h:364
void destroy()
Release the memory.
Definition MemSSA.cpp:367
SVFIR * getPAG()
Return SVFIR.
Definition MemSSA.cpp:73
bool hasPHISet(const SVFBasicBlock *bb) const
Definition MemSSA.h:401
void AddLoadMU(const SVFBasicBlock *bb, const LoadStmt *load, const MRSet &mrSet)
Add methods for mus/chis/phis.
Definition MemSSA.h:189
SVFIR::SVFStmtList SVFStmtList
SVFIR edge list.
Definition MemSSA.h:103
BVDataPTAImpl * pta
Definition MemSSA.h:121
static double timeOfCreateMUCHI
Time for generating mu/chi for load/store/calls.
Definition MemSSA.h:108
MemSSAStat * stat
Definition MemSSA.h:123
CHISet & getFuncEntryChiSet(const FunObjVar *fun)
Definition MemSSA.h:369
FunToEntryChiSetMap funToEntryChiSetMap
Definition MemSSA.h:140
virtual void insertPHI(const FunObjVar &fun)
Insert phi for candidate regions in a function.
Definition MemSSA.cpp:202
LoadToMUSetMap load2MuSetMap
Definition MemSSA.h:134
void RenameChiSet(const CHISet &chiSet, MRVector &memRegs)
Rename chi set.
Definition MemSSA.h:260
void RenamePhiRes(const PHISet &phiSet, MRVector &memRegs)
Rename result (LHS) of phis.
Definition MemSSA.h:273
u32_t getFunRetMuNum() const
Definition MemSSA.cpp:510
EntryCHI< Condition > ENTRYCHI
Definition MemSSA.h:64
MemSSA(BVDataPTAImpl *p, bool ptrOnlyMSSA)
Constructor.
Definition MemSSA.cpp:48
std::vector< std::unique_ptr< MRVer > > usedMRVers
Definition MemSSA.h:157
StoreToChiSetMap store2ChiSetMap
Definition MemSSA.h:135
void dumpMSSA(OutStream &Out=SVFUtil::outs())
Print Memory SSA.
Definition MemSSA.cpp:577
std::vector< const MemRegion * > MRVector
Definition MemSSA.h:76
Set< MU * > MUSet
Definition MemSSA.h:70
void performStat()
Perform statistics.
Definition MemSSA.cpp:450
Set< PHI * > PHISet
Definition MemSSA.h:72
virtual void buildMemSSA(const FunObjVar &fun)
We start from here.
Definition MemSSA.cpp:81
void AddCallSiteMU(const CallICFGNode *cs, const MRSet &mrSet)
Definition MemSSA.h:199
bool hasFuncEntryChi(const FunObjVar *fun) const
Has function entry chi or return mu.
Definition MemSSA.h:360
RetMU< Condition > RETMU
Definition MemSSA.h:60
static double timeOfSSARenaming
Time for SSA rename.
Definition MemSSA.h:110
u32_t getBBPhiNum() const
Definition MemSSA.cpp:561
u32_t getCallSiteMuNum() const
Definition MemSSA.cpp:527
u32_t getStoreChiNum() const
Definition MemSSA.cpp:476
u32_t getLoadMuNum() const
Stat methods.
Definition MemSSA.cpp:459
CallSiteToMUSetMap callsiteToMuSetMap
Definition MemSSA.h:136
FunToReturnMuSetMap funToReturnMuSetMap
Definition MemSSA.h:141
bool hasCHI(const PAGEdge *inst) const
Definition MemSSA.h:336
@ InterDisjoint
Definition MemSSA.h:117
@ IntraDisjoint
Definition MemSSA.h:116
virtual void SSARename(const FunObjVar &fun)
SSA rename for a function.
Definition MemSSA.cpp:250
MRSet usedRegs
The following three set are used for prune SSA phi insertion.
Definition MemSSA.h:150
Map< const SVFBasicBlock *, MRSet > BBToMRSetMap
Definition MemSSA.h:94
MUSet & getMUSet(const LoadStmt *ld)
Get methods of mu/chi/phi.
Definition MemSSA.h:381
void AddCallSiteCHI(const CallICFGNode *cs, const MRSet &mrSet)
Definition MemSSA.h:204
MUSet & getReturnMuSet(const FunObjVar *fun)
Definition MemSSA.h:373
MemRegToBBsMap reg2BBMap
Maps memory region to its basic block.
Definition MemSSA.h:152
void AddMSSAPHI(const SVFBasicBlock *bb, const MRSet &mrSet)
Definition MemSSA.h:209
MemRegToVerStackMap mr2VerStackMap
Definition MemSSA.h:143
MRSet varKills
Collect memory regions whose definition killed.
Definition MemSSA.h:154
virtual void SSARenameBB(const SVFBasicBlock &bb)
SSA rename for a basic block.
Definition MemSSA.cpp:263
bool hasMU(const PAGEdge *inst) const
Has mu/chi methods.
Definition MemSSA.h:325
Set< CHI * > CHISet
Definition MemSSA.h:71
static const OptionMap< MemSSA::MemPartition > MemPar
Definition Options.h:145
static const Option< std::string > MSSAFun
Definition Options.h:143
@ Default_PTA
default pta without any analysis
bool printStat()
Whether print statistics.
SVFIR * getPAG() const
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()
Definition SVFIR.h:184
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
static double getClk(bool mark=false)
Definition SVFStat.cpp:48
virtual const std::string & getName() const
Definition SVFValue.h:184
bool isHeapAllocExtCall(const ICFGNode *cs)
Definition SVFUtil.cpp:357
bool isNonInstricCallSite(const ICFGNode *inst)
Whether an instruction is a callsite in the application code, excluding llvm intrinsic calls.
Definition SVFUtil.h:182
bool isExtCall(const FunObjVar *fun)
Definition SVFUtil.cpp:437
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:68
bool isRetInstNode(const ICFGNode *node)
Definition SVFUtil.cpp:376
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
NodeID MRVERSION
Definition MemRegion.h:52
std::ostream OutStream
Definition GeneralType.h:46
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47