Static Value-Flow Analysis
Loading...
Searching...
No Matches
PointerAnalysisImpl.h
Go to the documentation of this file.
1//===- PointerAnalysisImpl.h -- Pointer analysis implementation--------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <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 * PointerAnalysis.h
25 *
26 * Created on: Nov 12, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_MEMORYMODEL_POINTERANALYSISIMPL_H_
31#define INCLUDE_MEMORYMODEL_POINTERANALYSISIMPL_H_
32
33#include <Graphs/ConsG.h>
35
36namespace SVF
37{
38
43{
44
45public:
50
56
62
69
72
74 ~BVDataPTAImpl() override = default;
75
80
81 static inline bool classof(const PointerAnalysis *pta)
82 {
83 return pta->getImplTy() == BVDataImpl;
84 }
85
88 inline const PointsTo& getPts(NodeID id) override
89 {
90 return ptD->getPts(id);
91 }
92 inline const NodeSet& getRevPts(NodeID nodeId) override
93 {
94 return ptD->getRevPts(nodeId);
95 }
97
99 virtual inline void clearPts(NodeID id, NodeID element)
100 {
101 ptD->clearPts(id, element);
102 }
103
105 virtual inline void clearFullPts(NodeID id)
106 {
107 ptD->clearFullPts(id);
108 }
109
112
113 virtual inline bool unionPts(NodeID id, const PointsTo& target)
114 {
115 return ptD->unionPts(id, target);
116 }
117 virtual inline bool unionPts(NodeID id, NodeID ptd)
118 {
119 return ptD->unionPts(id,ptd);
120 }
121 virtual inline bool addPts(NodeID id, NodeID ptd)
122 {
123 return ptD->addPts(id,ptd);
124 }
126
128 virtual inline void clearAllPts()
129 {
130 ptD->clear();
131 }
132
134 virtual void expandFIObjs(const PointsTo& pts, PointsTo& expandedPts);
136 virtual void expandFIObjs(const NodeBS& pts, NodeBS& expandedPts);
137
139 void remapPointsToSets(void);
140
142
143 virtual void writeToFile(const std::string& filename);
144 virtual void writeObjVarToFile(const std::string& filename);
145 virtual void writePtsResultToFile(std::fstream& f);
146 virtual void writeGepObjVarMapToFile(std::fstream& f);
147 virtual bool readFromFile(const std::string& filename);
148 virtual void readPtsResultFromFile(std::ifstream& f);
149 virtual void readGepObjVarMapFromFile(std::ifstream& f);
150 virtual void readAndSetObjFieldSensitivity(std::ifstream& f, const std::string& delimiterStr);
152
153protected:
155 inline PTDataTy* getPTDataTy() const
156 {
157 return ptD.get();
158 }
159
160
162 void finalize() override;
163
165 virtual inline bool updateCallGraph(const CallSiteToFunPtrMap&)
166 {
167 assert(false && "Virtual function not implemented!");
168 return false;
169 }
170
172 {
173 DiffPTDataTy* diff = SVFUtil::dyn_cast<DiffPTDataTy>(ptD.get());
174 assert(diff && "BVDataPTAImpl::getDiffPTDataTy: not a DiffPTDataTy!");
175 return diff;
176 }
177
178 inline DFPTDataTy* getDFPTDataTy() const
179 {
180 DFPTDataTy* df = SVFUtil::dyn_cast<DFPTDataTy>(ptD.get());
181 assert(df && "BVDataPTAImpl::getDFPTDataTy: not a DFPTDataTy!");
182 return df;
183 }
184
186 {
187 MutDFPTDataTy* mdf = SVFUtil::dyn_cast<MutDFPTDataTy>(ptD.get());
188 assert(mdf && "BVDataPTAImpl::getMutDFPTDataTy: not a MutDFPTDataTy!");
189 return mdf;
190 }
191
193 {
194 VersionedPTDataTy* v = SVFUtil::dyn_cast<VersionedPTDataTy>(ptD.get());
195 assert(v && "BVDataPTAImpl::getVersionedPTDataTy: not a VersionedPTDataTy!");
196 return v;
197 }
198
201
205
208 virtual void normalizePointsTo();
209
210private:
212 std::unique_ptr<PTDataTy> ptD;
213
215
216public:
219 const SVFVar* V2) override
220 {
221 return alias(V1->getId(), V2->getId());
222 }
223
226
228 virtual AliasResult alias(const PointsTo& pts1, const PointsTo& pts2);
229
231
232 void dumpCPts() override
233 {
234 ptD->dumpPTData();
235 }
236
237 void dumpTopLevelPtsTo() override;
238
239 void dumpAllPts() override;
241};
242
246template<class Cond>
248{
249
250public:
258
261 {
262 if (type == PathS_DDA || type == Cxt_DDA)
263 ptD = new MutPTDataTy();
264 else
265 assert(false && "no points-to data available");
266
268 }
269
271 virtual ~CondPTAImpl()
272 {
273 destroy();
274 }
275
276 static inline bool classof(const PointerAnalysis *pta)
277 {
278 return pta->getImplTy() == CondImpl;
279 }
280
282 inline void destroy()
283 {
284 delete ptD;
285 ptD = nullptr;
286 }
287
289 inline PTDataTy* getPTDataTy() const
290 {
291 return ptD;
292 }
293
295 {
296 MutPTDataTy* mut = SVFUtil::dyn_cast<MutPTDataTy>(ptD);
297 assert(mut && "BVDataPTAImpl::getMutPTDataTy: not a MutPTDataTy!");
298 return mut;
299 }
300
301 inline bool hasPtsMap(void) const
302 {
303 return SVFUtil::isa<MutPTDataTy>(ptD);
304 }
305
306 inline const typename MutPTDataTy::PtsMap& getPtsMap() const
307 {
308 if (MutPTDataTy *m = SVFUtil::dyn_cast<MutPTDataTy>(ptD)) return m->getPtsMap();
309 assert(false && "CondPTAImpl::getPtsMap: not a PTData with a PtsMap!");
310 exit(1);
311 }
312
315 virtual inline const CPtSet& getPts(CVar id)
316 {
317 return ptD->getPts(id);
318 }
319 virtual inline const Set<CVar>& getRevPts(CVar nodeId)
320 {
321 return ptD->getRevPts(nodeId);
322 }
324
326 virtual inline void clearPts()
327 {
328 ptD->clear();
329 }
330
332 bool overlap(const CPtSet& cpts1, const CPtSet& cpts2) const
333 {
334 for (typename CPtSet::const_iterator it1 = cpts1.begin(); it1 != cpts1.end(); ++it1)
335 {
336 for (typename CPtSet::const_iterator it2 = cpts2.begin(); it2 != cpts2.end(); ++it2)
337 {
338 if(isSameVar(*it1,*it2))
339 return true;
340 }
341 }
342 return false;
343 }
344
347 {
348 expandedCpts = cpts;;
349 for(typename CPtSet::const_iterator cit = cpts.begin(), ecit=cpts.end(); cit!=ecit; ++cit)
350 {
351 if(pag->getBaseObjVar(cit->get_id())==cit->get_id())
352 {
353 NodeBS& fields = pag->getAllFieldsObjVars(cit->get_id());
354 for(NodeBS::iterator it = fields.begin(), eit = fields.end(); it!=eit; ++it)
355 {
356 CVar cvar(cit->get_cond(),*it);
357 expandedCpts.set(cvar);
358 }
359 }
360 }
361 }
362
363protected:
364
366 virtual void finalize()
367 {
370 }
373
374 virtual inline bool unionPts(CVar id, const CPtSet& target)
375 {
376 return ptD->unionPts(id, target);
377 }
378
379 virtual inline bool unionPts(CVar id, CVar ptd)
380 {
381 return ptD->unionPts(id,ptd);
382 }
383
384 virtual inline bool addPts(CVar id, CVar ptd)
385 {
386 return ptD->addPts(id,ptd);
387 }
389
391
392 inline bool mustAlias(const CVar& var1, const CVar& var2)
393 {
394 if(isSameVar(var1,var2))
395 return true;
396
397 bool singleton = !(isHeapMemObj(var1.get_id()) || isLocalVarInRecursiveFun(var1.get_id()));
398 if(isCondCompatible(var1.get_cond(),var2.get_cond(),singleton) == false)
399 return false;
400
401 const CPtSet& cpts1 = getPts(var1);
402 const CPtSet& cpts2 = getPts(var2);
403 return (contains(cpts1,cpts2) && contains(cpts2,cpts1));
404 }
405
406 // Whether cpts1 contains all points-to targets of pts2
407 bool contains(const CPtSet& cpts1, const CPtSet& cpts2)
408 {
409 if (cpts1.empty() || cpts2.empty())
410 return false;
411
412 for (typename CPtSet::const_iterator it2 = cpts2.begin(); it2 != cpts2.end(); ++it2)
413 {
414 bool hasObj = false;
415 for (typename CPtSet::const_iterator it1 = cpts1.begin(); it1 != cpts1.end(); ++it1)
416 {
417 if(isSameVar(*it1,*it2))
418 {
419 hasObj = true;
420 break;
421 }
422 }
423 if(hasObj == false)
424 return false;
425 }
426 return true;
427 }
428
430 bool isSameVar(const CVar& var1, const CVar& var2) const
431 {
432 if(var1.get_id() != var2.get_id())
433 return false;
434
436 bool singleton = !(isHeapMemObj(var1.get_id()) || isLocalVarInRecursiveFun(var1.get_id()));
437 return isCondCompatible(var1.get_cond(),var2.get_cond(),singleton);
438 }
440
442 virtual void normalizePointsTo()
443 {
444 normalized = true;
445 if (hasPtsMap())
446 {
447 const typename MutPTDataTy::PtsMap& ptsMap = getPtsMap();
448 for(typename MutPTDataTy::PtsMap::const_iterator it = ptsMap.begin(), eit=ptsMap.end(); it!=eit; ++it)
449 {
450 for(typename CPtSet::const_iterator cit = it->second.begin(), ecit=it->second.end(); cit!=ecit; ++cit)
451 {
452 ptrToBVPtsMap[(it->first).get_id()].set(cit->get_id());
453 objToNSRevPtsMap[cit->get_id()].insert((it->first).get_id());
454 ptrToCPtsMap[(it->first).get_id()].set(*cit);
455 }
456 }
457 }
458 else
459 {
460 assert(false && "CondPTAImpl::NormalizePointsTo: could not normalize points-to sets");
461 }
462 }
473public:
475 virtual void dumpCPts()
476 {
477 ptD->dumpPTData();
478 }
480 virtual inline PointsTo getBVPointsTo(const CPtSet& cpts) const
481 {
483 for(typename CPtSet::const_iterator cit = cpts.begin(), ecit=cpts.end(); cit!=ecit; ++cit)
484 pts.set(cit->get_id());
485 return pts;
486 }
488 virtual inline PointsTo& getPts(NodeID ptr)
489 {
490 assert(normalized && "Pts of all context-var have to be merged/normalized. Want to use getPts(CVar cvar)??");
491 return ptrToBVPtsMap[ptr];
492 }
494 virtual inline const CPtSet& getCondPointsTo(NodeID ptr)
495 {
496 assert(normalized && "Pts of all context-vars have to be merged/normalized. Want to use getPts(CVar cvar)??");
497 return ptrToCPtsMap[ptr];
498 }
500 virtual inline NodeSet& getRevPts(NodeID obj)
501 {
502 assert(normalized && "Pts of all context-var have to be merged/normalized. Want to use getPts(CVar cvar)??");
503 return objToNSRevPtsMap[obj];
504 }
505
507 virtual inline AliasResult alias(const SVFVar* V1, const SVFVar* V2)
508 {
509 return alias(V1->getId(), V2->getId());
510 }
517 virtual AliasResult alias(const CVar& var1, const CVar& var2)
518 {
519 return alias(getPts(var1),getPts(var2));
520 }
522 virtual inline AliasResult alias(const CPtSet& pts1, const CPtSet& pts2)
523 {
530 else if(this->getAnalysisTy()==PathS_DDA && contains(cpts1,cpts2) && contains(cpts2,cpts1))
531 {
533 }
534 else if(overlap(cpts1,cpts2))
536 else
538 }
540 inline bool containBlackHoleNode(const CPtSet& cpts)
541 {
542 for(typename CPtSet::const_iterator cit = cpts.begin(), ecit=cpts.end(); cit!=ecit; ++cit)
543 {
544 if(cit->get_id() == pag->getBlackHoleNode())
545 return true;
546 }
547 return false;
548 }
550 inline bool containConstantNode(const CPtSet& cpts)
551 {
552 for(typename CPtSet::const_iterator cit = cpts.begin(), ecit=cpts.end(); cit!=ecit; ++cit)
553 {
554 if(cit->get_id() == pag->getConstantNode())
555 return true;
556 }
557 return false;
558 }
560 virtual bool isCondCompatible(const Cond& cxt1, const Cond& cxt2, bool singleton) const = 0;
561
564 {
565 for (OrderedNodeSet::iterator nIter = this->getAllValidPtrs().begin(); nIter != this->getAllValidPtrs().end(); ++nIter)
566 {
567 const PAGNode* node = this->getPAG()->getGNode(*nIter);
568 if (this->getPAG()->isValidTopLevelPtr(node))
569 {
570 if (SVFUtil::isa<DummyObjVar>(node))
571 {
572 SVFUtil::outs() << "##<Blackhole or constant> id:" << node->getId();
573 }
574 else if (!SVFUtil::isa<DummyValVar>(node))
575 {
576 SVFUtil::outs() << "##<" << node->toString() << "> ";
577 //SVFUtil::outs() << "Source Loc: " << SVFUtil::getSourceLoc(node->getValue());
578 }
579
580 const PointsTo& pts = getPts(node->getId());
581 SVFUtil::outs() << "\nNodeID " << node->getId() << " ";
582 if (pts.empty())
583 {
584 SVFUtil::outs() << "\t\tPointsTo: {empty}\n\n";
585 }
586 else
587 {
588 SVFUtil::outs() << "\t\tPointsTo: { ";
589 for (PointsTo::iterator it = pts.begin(), eit = pts.end(); it != eit; ++it)
590 SVFUtil::outs() << *it << " ";
591 SVFUtil::outs() << "}\n\n";
592 }
593 }
594 }
595
596 SVFUtil::outs().flush();
597 }
598};
599
600} // End namespace SVF
601
602#endif /* INCLUDE_MEMORYMODEL_POINTERANALYSISIMPL_H_ */
newitem type
Definition cJSON.cpp:2739
#define false
Definition cJSON.cpp:70
VersionedPTDataTy * getVersionedPTDataTy() const
PersistentDiffPTData< NodeID, NodeSet, NodeID, PointsTo > PersDiffPTDataTy
virtual void normalizePointsTo()
virtual void writeToFile(const std::string &filename)
Interface for analysis result storage on filesystem.
virtual bool readFromFile(const std::string &filename)
PersistentIncDFPTData< NodeID, NodeSet, NodeID, PointsTo > PersIncDFPTDataTy
virtual void writeObjVarToFile(const std::string &filename)
const NodeSet & getRevPts(NodeID nodeId) override
virtual void clearAllPts()
Clear all data.
virtual void clearPts(NodeID id, NodeID element)
Remove element from the points-to set of id.
~BVDataPTAImpl() override=default
Destructor.
virtual void readAndSetObjFieldSensitivity(std::ifstream &f, const std::string &delimiterStr)
DiffPTDataTy * getDiffPTDataTy() const
AliasResult alias(const SVFVar *V1, const SVFVar *V2) override
Interface expose to users of our pointer analysis, given Value infos.
MutablePTData< NodeID, NodeSet, NodeID, PointsTo > MutPTDataTy
DFPTData< NodeID, NodeSet, NodeID, PointsTo > DFPTDataTy
virtual void writeGepObjVarMapToFile(std::fstream &f)
void finalize() override
Finalization of pointer analysis, and normalize points-to information to Bit Vector representation.
MutableIncDFPTData< NodeID, NodeSet, NodeID, PointsTo > MutIncDFPTDataTy
static bool classof(const PointerAnalysis *pta)
virtual void writePtsResultToFile(std::fstream &f)
PersistentDFPTData< NodeID, NodeSet, NodeID, PointsTo > PersDFPTDataTy
virtual void expandFIObjs(const PointsTo &pts, PointsTo &expandedPts)
Expand FI objects.
void remapPointsToSets(void)
Remap all points-to sets to use the current mapping.
MutableVersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > MutVersionedPTDataTy
MutDFPTDataTy * getMutDFPTDataTy() const
VersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > VersionedPTDataTy
virtual void onTheFlyThreadCallGraphSolve(const CallSiteToFunPtrMap &callsites, CallEdgeMap &newForkEdges)
On the fly thread call graph construction respecting forksite.
PersistentPointsToCache< PointsTo > ptCache
virtual void onTheFlyCallGraphSolve(const CallSiteToFunPtrMap &callsites, CallEdgeMap &newEdges)
On the fly call graph construction.
virtual bool updateCallGraph(const CallSiteToFunPtrMap &)
Update callgraph. This should be implemented by its subclass.
std::unique_ptr< PTDataTy > ptD
Points-to data.
DFPTDataTy * getDFPTDataTy() const
DiffPTData< NodeID, NodeSet, NodeID, PointsTo > DiffPTDataTy
MutableDFPTData< NodeID, NodeSet, NodeID, PointsTo > MutDFPTDataTy
PersistentPointsToCache< PointsTo > & getPtCache()
MutableDiffPTData< NodeID, NodeSet, NodeID, PointsTo > MutDiffPTDataTy
void dumpCPts() override
dump and debug, print out conditional pts
PTData< NodeID, NodeSet, NodeID, PointsTo > PTDataTy
void dumpTopLevelPtsTo() override
virtual bool unionPts(NodeID id, NodeID ptd)
PTBackingType
How the PTData used is implemented.
const PointsTo & getPts(NodeID id) override
PersistentVersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > PersVersionedPTDataTy
PersistentPTData< NodeID, NodeSet, NodeID, PointsTo > PersPTDataTy
virtual bool unionPts(NodeID id, const PointsTo &target)
virtual void readPtsResultFromFile(std::ifstream &f)
PTDataTy * getPTDataTy() const
Get points-to data structure.
virtual bool addPts(NodeID id, NodeID ptd)
virtual void readGepObjVarMapFromFile(std::ifstream &f)
virtual void clearFullPts(NodeID id)
Clear points-to set of id.
virtual ~CondPTAImpl()
Destructor.
virtual bool addPts(CVar id, CVar ptd)
MutPTDataTy * getMutPTDataTy() const
virtual bool unionPts(CVar id, const CPtSet &target)
PtrToNSMap objToNSRevPtsMap
Normal points-to representation (without conditions)
PTDataTy * getPTDataTy() const
Get points-to data.
PtrToBVPtsMap ptrToBVPtsMap
Normal points-to representation (without conditions)
bool containConstantNode(const CPtSet &cpts)
Test constant node for cpts.
bool mustAlias(const CVar &var1, const CVar &var2)
Internal interface to be used for conditional points-to set queries.
CondStdSet< CVar > CPtSet
virtual const CPtSet & getCondPointsTo(NodeID ptr)
Given a pointer return its conditional points-to.
virtual bool unionPts(CVar id, CVar ptd)
Map< NodeID, CPtSet > PtrToCPtsMap
virtual const Set< CVar > & getRevPts(CVar nodeId)
bool hasPtsMap(void) const
bool contains(const CPtSet &cpts1, const CPtSet &cpts2)
void destroy()
Release memory.
CondPTAImpl(SVFIR *pag, PointerAnalysis::PTATY type)
map a pointer to its conditional points-to set
PtrToCPtsMap ptrToCPtsMap
Conditional points-to representation (with conditions)
virtual bool isCondCompatible(const Cond &cxt1, const Cond &cxt2, bool singleton) const =0
Whether two conditions are compatible (to be implemented by child class)
PTData< CVar, Set< CVar >, CVar, CPtSet > PTDataTy
bool isSameVar(const CVar &var1, const CVar &var2) const
Whether two pointers/objects are the same one by considering their conditions.
void dumpTopLevelPtsTo()
Dump points-to information of top-level pointers.
Map< NodeID, NodeSet > PtrToNSMap
map a pointer to its BitVector points-to representation
void expandFIObjs(const CPtSet &cpts, CPtSet &expandedCpts)
Expand all fields of an aggregate in all points-to sets.
bool containBlackHoleNode(const CPtSet &cpts)
Test blk node for cpts.
virtual AliasResult alias(const CPtSet &pts1, const CPtSet &pts2)
Interface expose to users of our pointer analysis, given two conditional points-to sets.
virtual PointsTo getBVPointsTo(const CPtSet &cpts) const
Given a conditional pts return its bit vector points-to.
virtual NodeSet & getRevPts(NodeID obj)
Given an object return all pointers points to this object.
virtual void finalize()
Finalization of pointer analysis, and normalize points-to information to Bit Vector representation.
virtual void dumpCPts()
Print out conditional pts.
virtual void normalizePointsTo()
Normalize points-to information to BitVector/conditional representation.
bool normalized
Normalized flag.
Map< NodeID, PointsTo > PtrToBVPtsMap
virtual AliasResult alias(NodeID node1, NodeID node2)
Interface expose to users of our pointer analysis, given two pointers.
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)
Interface expose to users of our pointer analysis, given Value infos.
virtual AliasResult alias(const CVar &var1, const CVar &var2)
Interface expose to users of our pointer analysis, given conditional variables.
bool overlap(const CPtSet &cpts1, const CPtSet &cpts2) const
Whether cpts1 and cpts2 have overlap points-to targets.
virtual void clearPts()
Clear all data.
virtual PointsTo & getPts(NodeID ptr)
Given a pointer return its bit vector points-to.
static bool classof(const PointerAnalysis *pta)
virtual const CPtSet & getPts(CVar id)
const MutPTDataTy::PtsMap & getPtsMap() const
MutablePTData< CVar, Set< CVar >, CVar, CPtSet > MutPTDataTy
PTDataTy * ptD
Points-to data.
OrderedSet< Element >::const_iterator const_iterator
iterator begin()
Iterators.
NodeType * getGNode(NodeID id) const
Get a node.
NodeID getBlackHoleNode() const
Definition IRGraph.h:247
NodeID getConstantNode() const
Definition IRGraph.h:251
Map< Key, DataSet > PtsMap
PTATY
Pointer analysis type list.
@ Cxt_DDA
context sensitive DDA
@ PathS_DDA
Guarded value-flow DDA.
bool isLocalVarInRecursiveFun(NodeID id) const
Whether a local variable is in function recursions.
virtual void finalize()
Finalization of a pointer analysis, including checking alias correctness.
OrderedMap< const CallICFGNode *, FunctionSet > CallEdgeMap
PTAImplTy ptaImplTy
PTA implementation type.
SVFIR * getPAG() const
OrderedNodeSet & getAllValidPtrs()
Get all Valid Pointers for resolution.
@ BVDataImpl
Represents BVDataPTAImpl.
@ CondImpl
Represents CondPTAImpl.
PTAImplTy getImplTy() const
Return implementation type of the pointer analysis.
PTATY getAnalysisTy() const
Type of pointer analysis.
SVFIR::CallSiteToFunPtrMap CallSiteToFunPtrMap
static SVFIR * pag
SVFIR.
bool isHeapMemObj(NodeID id) const
Whether this object is heap or array.
void set(u32_t n)
Inserts n in the set.
Definition PointsTo.cpp:157
NodeID getBaseObjVar(NodeID id) const
Base and Offset methods for Value and Object node.
Definition SVFIR.h:479
NodeBS & getAllFieldsObjVars(const BaseObjVar *obj)
Get all fields of an object.
Definition SVFIR.cpp:483
NodeID getId() const
Get ID.
Definition SVFValue.h:158
virtual const std::string toString() const
Get string representation.
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
Set< NodeID > NodeSet
u32_t NodeID
Definition GeneralType.h:56
AliasResult
Definition SVFType.h:541
@ MustAlias
Definition SVFType.h:544
@ MayAlias
Definition SVFType.h:543
@ NoAlias
Definition SVFType.h:542
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74