Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | List of all members
SVF::BVDataPTAImpl Class Reference

#include <PointerAnalysisImpl.h>

Inheritance diagram for SVF::BVDataPTAImpl:
SVF::PointerAnalysis SVF::AndersenBase SVF::CFLBase SVF::FlowDDA SVF::FlowSensitive SVF::Andersen SVF::Steensgaard SVF::TypeAnalysis SVF::CFLAlias SVF::CFLVF SVF::VersionedFlowSensitive SVF::AndersenSCD SVF::AndersenWaveDiff SVF::POCRAlias SVF::POCRHybrid SVF::AndersenSFR

Public Types

enum  PTBackingType { Mutable , Persistent }
 How the PTData used is implemented. More...
 
typedef PTData< NodeID, NodeSet, NodeID, PointsToPTDataTy
 
typedef DiffPTData< NodeID, NodeSet, NodeID, PointsToDiffPTDataTy
 
typedef DFPTData< NodeID, NodeSet, NodeID, PointsToDFPTDataTy
 
typedef VersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > VersionedPTDataTy
 
typedef MutablePTData< NodeID, NodeSet, NodeID, PointsToMutPTDataTy
 
typedef MutableDiffPTData< NodeID, NodeSet, NodeID, PointsToMutDiffPTDataTy
 
typedef MutableDFPTData< NodeID, NodeSet, NodeID, PointsToMutDFPTDataTy
 
typedef MutableIncDFPTData< NodeID, NodeSet, NodeID, PointsToMutIncDFPTDataTy
 
typedef MutableVersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > MutVersionedPTDataTy
 
typedef PersistentPTData< NodeID, NodeSet, NodeID, PointsToPersPTDataTy
 
typedef PersistentDiffPTData< NodeID, NodeSet, NodeID, PointsToPersDiffPTDataTy
 
typedef PersistentDFPTData< NodeID, NodeSet, NodeID, PointsToPersDFPTDataTy
 
typedef PersistentIncDFPTData< NodeID, NodeSet, NodeID, PointsToPersIncDFPTDataTy
 
typedef PersistentVersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > PersVersionedPTDataTy
 
- Public Types inherited from SVF::PointerAnalysis
enum  PTATY {
  Andersen_BASE , Andersen_WPA , AndersenSCD_WPA , AndersenSFR_WPA ,
  AndersenWaveDiff_WPA , Steensgaard_WPA , CSCallString_WPA , CSSummary_WPA ,
  FSDATAFLOW_WPA , FSSPARSE_WPA , VFS_WPA , FSCS_WPA ,
  CFLFICI_WPA , CFLFSCI_WPA , CFLFSCS_WPA , TypeCPP_WPA ,
  FieldS_DDA , FlowS_DDA , PathS_DDA , Cxt_DDA ,
  Default_PTA
}
 Pointer analysis type list. More...
 
enum  PTAImplTy { BaseImpl , BVDataImpl , CondImpl }
 Implementation type: BVDataPTAImpl or CondPTAImpl. More...
 
typedef Set< const CallICFGNode * > CallSiteSet
 Indirect call edges type, map a callsite to a set of callees.
 
typedef SVFIR::CallSiteToFunPtrMap CallSiteToFunPtrMap
 
typedef Set< const FunObjVar * > FunctionSet
 
typedef OrderedMap< const CallICFGNode *, FunctionSetCallEdgeMap
 
typedef SCCDetection< CallGraph * > CallGraphSCC
 
typedef Set< const GlobalObjVar * > VTableSet
 
typedef Set< const FunObjVar * > VFunSet
 

Public Member Functions

 BVDataPTAImpl (SVFIR *pag, PointerAnalysis::PTATY type, bool alias_check=true)
 Constructor.
 
 ~BVDataPTAImpl () override=default
 Destructor.
 
PersistentPointsToCache< PointsTo > & getPtCache ()
 
- Public Member Functions inherited from SVF::PointerAnalysis
ICFGgetICFG () const
 Get ICFG.
 
u32_t getNumOfResolvedIndCallEdge () const
 Return number of resolved indirect call edges.
 
CallGraphgetCallGraph () const
 Return call graph.
 
CallGraphSCCgetCallGraphSCC () const
 Return call graph SCC.
 
 PointerAnalysis (SVFIR *pag, PTATY ty=Default_PTA, bool alias_check=true)
 Constructor.
 
PTATY getAnalysisTy () const
 Type of pointer analysis.
 
PTAImplTy getImplTy () const
 Return implementation type of the pointer analysis.
 
bool printStat ()
 Whether print statistics.
 
void disablePrintStat ()
 Whether print statistics.
 
CallEdgeMapgetIndCallMap ()
 Get callees from an indirect callsite.
 
bool hasIndCSCallees (const CallICFGNode *cs) const
 
const FunctionSetgetIndCSCallees (const CallICFGNode *cs) const
 
virtual void resolveIndCalls (const CallICFGNode *cs, const PointsTo &target, CallEdgeMap &newEdges)
 Resolve indirect call edges.
 
void callGraphSCCDetection ()
 PTACallGraph SCC related methods.
 
NodeID getCallGraphSCCRepNode (NodeID id) const
 Get SCC rep node of a SVFG node.
 
bool inSameCallGraphSCC (const FunObjVar *fun1, const FunObjVar *fun2)
 Return TRUE if this edge is inside a PTACallGraph SCC, i.e., src node and dst node are in the same SCC on the SVFG.
 
bool isInRecursion (const FunObjVar *fun) const
 
bool isLocalVarInRecursiveFun (NodeID id) const
 Whether a local variable is in function recursions.
 
virtual const std::string PTAName () const
 Return PTA name.
 
CommonCHGraphgetCHGraph () const
 get CHGraph
 
void getVFnsFromCHA (const CallICFGNode *cs, VFunSet &vfns)
 
void getVFnsFromPts (const CallICFGNode *cs, const PointsTo &target, VFunSet &vfns)
 
void connectVCallToVFns (const CallICFGNode *cs, const VFunSet &vfns, CallEdgeMap &newEdges)
 
virtual void resolveCPPIndCalls (const CallICFGNode *cs, const PointsTo &target, CallEdgeMap &newEdges)
 Resolve cpp indirect call edges.
 
SVFIRgetPAG () const
 
PTAStatgetStat () const
 Get PTA stat.
 
OrderedNodeSetgetAllValidPtrs ()
 Get all Valid Pointers for resolution.
 
virtual void initialize ()
 Initialization of a pointer analysis, including building symbol table and SVFIR etc.
 
virtual void analyze ()=0
 Start Analysis here (main part of pointer analysis). It needs to be implemented in child class.
 
virtual void computeDDAPts (NodeID)
 Compute points-to results on-demand, overridden by derived classes.
 
void printIndCSTargets (const CallICFGNode *cs, const FunctionSet &targets)
 Print targets of a function pointer.
 
virtual void dumpPts (NodeID ptr, const PointsTo &pts)
 
void printIndCSTargets ()
 
void dumpAllTypes ()
 
void dumpStat ()
 Dump the statistics.
 
bool containBlackHoleNode (const PointsTo &pts)
 Determine whether a points-to contains a black hole or constant node.
 
bool containConstantNode (const PointsTo &pts)
 
virtual bool isBlkObjOrConstantObj (NodeID ptd) const
 
bool isHeapMemObj (NodeID id) const
 Whether this object is heap or array.
 
bool isArrayMemObj (NodeID id) const
 
bool isFIObjNode (NodeID id) const
 
NodeID getBaseObjVar (NodeID id)
 
NodeID getFIObjVar (NodeID id)
 
NodeID getGepObjVar (NodeID id, const APOffset &ap)
 
virtual const NodeBSgetAllFieldsObjVars (NodeID id)
 
void setObjFieldInsensitive (NodeID id)
 
bool isFieldInsensitive (NodeID id) const
 

Static Public Member Functions

static bool classof (const PointerAnalysis *pta)
 
std::unique_ptr< PTDataTyptD
 Points-to data.
 
PersistentPointsToCache< PointsToptCache
 
const PointsTogetPts (NodeID id) override
 
const NodeSetgetRevPts (NodeID nodeId) override
 
virtual void clearPts (NodeID id, NodeID element)
 Remove element from the points-to set of id.
 
virtual void clearFullPts (NodeID id)
 Clear points-to set of id.
 
virtual bool unionPts (NodeID id, const PointsTo &target)
 
virtual bool unionPts (NodeID id, NodeID ptd)
 
virtual bool addPts (NodeID id, NodeID ptd)
 
virtual void clearAllPts ()
 Clear all data.
 
virtual void expandFIObjs (const PointsTo &pts, PointsTo &expandedPts)
 Expand FI objects.
 
virtual void expandFIObjs (const NodeBS &pts, NodeBS &expandedPts)
 TODO: remove repetition.
 
void remapPointsToSets (void)
 Remap all points-to sets to use the current mapping.
 
virtual void writeToFile (const std::string &filename)
 Interface for analysis result storage on filesystem.
 
virtual void writeObjVarToFile (const std::string &filename)
 
virtual void writePtsResultToFile (std::fstream &f)
 
virtual void writeGepObjVarMapToFile (std::fstream &f)
 
virtual bool readFromFile (const std::string &filename)
 
virtual void readPtsResultFromFile (std::ifstream &f)
 
virtual void readGepObjVarMapFromFile (std::ifstream &f)
 
virtual void readAndSetObjFieldSensitivity (std::ifstream &f, const std::string &delimiterStr)
 
AliasResult alias (const SVFVar *V1, const SVFVar *V2) override
 Interface expose to users of our pointer analysis, given Value infos.
 
AliasResult alias (NodeID node1, NodeID node2) override
 Interface expose to users of our pointer analysis, given PAGNodeID.
 
virtual AliasResult alias (const PointsTo &pts1, const PointsTo &pts2)
 Interface expose to users of our pointer analysis, given two pts.
 
void dumpCPts () override
 dump and debug, print out conditional pts
 
void dumpTopLevelPtsTo () override
 
void dumpAllPts () override
 
PTDataTygetPTDataTy () const
 Get points-to data structure.
 
void finalize () override
 Finalization of pointer analysis, and normalize points-to information to Bit Vector representation.
 
virtual bool updateCallGraph (const CallSiteToFunPtrMap &)
 Update callgraph. This should be implemented by its subclass.
 
DiffPTDataTygetDiffPTDataTy () const
 
DFPTDataTygetDFPTDataTy () const
 
MutDFPTDataTygetMutDFPTDataTy () const
 
VersionedPTDataTygetVersionedPTDataTy () const
 
virtual void onTheFlyCallGraphSolve (const CallSiteToFunPtrMap &callsites, CallEdgeMap &newEdges)
 On the fly call graph construction.
 
virtual void onTheFlyThreadCallGraphSolve (const CallSiteToFunPtrMap &callsites, CallEdgeMap &newForkEdges)
 On the fly thread call graph construction respecting forksite.
 
virtual void normalizePointsTo ()
 

Additional Inherited Members

- Static Public Attributes inherited from SVF::PointerAnalysis
static const std::string aliasTestMayAlias = "MAYALIAS"
 
static const std::string aliasTestMayAliasMangled = "_Z8MAYALIASPvS_"
 
static const std::string aliasTestNoAlias = "NOALIAS"
 
static const std::string aliasTestNoAliasMangled = "_Z7NOALIASPvS_"
 
static const std::string aliasTestPartialAlias = "PARTIALALIAS"
 
static const std::string aliasTestPartialAliasMangled = "_Z12PARTIALALIASPvS_"
 
static const std::string aliasTestMustAlias = "MUSTALIAS"
 
static const std::string aliasTestMustAliasMangled = "_Z9MUSTALIASPvS_"
 
static const std::string aliasTestFailMayAlias = "EXPECTEDFAIL_MAYALIAS"
 
static const std::string aliasTestFailMayAliasMangled = "_Z21EXPECTEDFAIL_MAYALIASPvS_"
 
static const std::string aliasTestFailNoAlias = "EXPECTEDFAIL_NOALIAS"
 
static const std::string aliasTestFailNoAliasMangled = "_Z20EXPECTEDFAIL_NOALIASPvS_"
 
- Protected Member Functions inherited from SVF::PointerAnalysis
const CallSiteToFunPtrMapgetIndirectCallsites () const
 Return all indirect callsites.
 
NodeID getFunPtr (const CallICFGNode *cs) const
 Return function pointer PAGNode at a callsite cs.
 
virtual void validateTests ()
 Alias check functions to verify correctness of pointer analysis.
 
virtual void validateSuccessTests (std::string fun)
 
virtual void validateExpectedFailureTests (std::string fun)
 
void resetObjFieldSensitive ()
 Reset all object node as field-sensitive.
 
- Protected Attributes inherited from SVF::PointerAnalysis
bool print_stat
 User input flags.
 
bool alias_validation
 Flag for validating points-to/alias results.
 
u32_t OnTheFlyIterBudgetForStat
 Flag for iteration budget for on-the-fly statistics.
 
PTATY ptaTy
 Pointer analysis Type.
 
PTAImplTy ptaImplTy
 PTA implementation type.
 
PTAStatstat
 Statistics.
 
CallGraphcallgraph
 Call graph used for pointer analysis.
 
CallGraphSCCcallGraphSCC
 SCC for PTACallGraph.
 
ICFGicfg
 Interprocedural control-flow graph.
 
CommonCHGraphchgraph
 CHGraph.
 
- Static Protected Attributes inherited from SVF::PointerAnalysis
static SVFIRpag = nullptr
 SVFIR.
 

Detailed Description

Pointer analysis implementation which uses bit vector based points-to data structure

Definition at line 42 of file PointerAnalysisImpl.h.

Member Typedef Documentation

◆ DFPTDataTy

Definition at line 48 of file PointerAnalysisImpl.h.

◆ DiffPTDataTy

Definition at line 47 of file PointerAnalysisImpl.h.

◆ MutDFPTDataTy

Definition at line 53 of file PointerAnalysisImpl.h.

◆ MutDiffPTDataTy

Definition at line 52 of file PointerAnalysisImpl.h.

◆ MutIncDFPTDataTy

Definition at line 54 of file PointerAnalysisImpl.h.

◆ MutPTDataTy

Definition at line 51 of file PointerAnalysisImpl.h.

◆ MutVersionedPTDataTy

Definition at line 55 of file PointerAnalysisImpl.h.

◆ PersDFPTDataTy

Definition at line 59 of file PointerAnalysisImpl.h.

◆ PersDiffPTDataTy

Definition at line 58 of file PointerAnalysisImpl.h.

◆ PersIncDFPTDataTy

Definition at line 60 of file PointerAnalysisImpl.h.

◆ PersPTDataTy

Definition at line 57 of file PointerAnalysisImpl.h.

◆ PersVersionedPTDataTy

Definition at line 61 of file PointerAnalysisImpl.h.

◆ PTDataTy

Definition at line 46 of file PointerAnalysisImpl.h.

◆ VersionedPTDataTy

Definition at line 49 of file PointerAnalysisImpl.h.

Member Enumeration Documentation

◆ PTBackingType

How the PTData used is implemented.

Enumerator
Mutable 
Persistent 

Definition at line 64 of file PointerAnalysisImpl.h.

Constructor & Destructor Documentation

◆ BVDataPTAImpl()

BVDataPTAImpl::BVDataPTAImpl ( SVFIR p,
PointerAnalysis::PTATY  type,
bool  alias_check = true 
)

Constructor.

Constructor

Definition at line 46 of file PointerAnalysisImpl.cpp.

46 :
48{
50 || type == TypeCPP_WPA || type == FlowS_DDA
52 {
53 // Only maintain reverse points-to when the analysis is field-sensitive, as objects turning
54 // field-insensitive is all it is used for.
56 if (Options::ptDataBacking() == PTBackingType::Mutable) ptD = std::make_unique<MutDiffPTDataTy>(maintainRevPts);
57 else if (Options::ptDataBacking() == PTBackingType::Persistent) ptD = std::make_unique<PersDiffPTDataTy>(getPtCache(), maintainRevPts);
58 else assert(false && "BVDataPTAImpl::BVDataPTAImpl: unexpected points-to backing type!");
59 }
60 else if (type == Steensgaard_WPA)
61 {
62 // Steensgaard is only field-insensitive (for now?), so no reverse points-to.
63 if (Options::ptDataBacking() == PTBackingType::Mutable) ptD = std::make_unique<MutDiffPTDataTy>(false);
64 else if (Options::ptDataBacking() == PTBackingType::Persistent) ptD = std::make_unique<PersDiffPTDataTy>(getPtCache(), false);
65 else assert(false && "BVDataPTAImpl::BVDataPTAImpl: unexpected points-to backing type!");
66 }
67 else if (type == FSSPARSE_WPA)
68 {
70 {
71 if (Options::ptDataBacking() == PTBackingType::Mutable) ptD = std::make_unique<MutIncDFPTDataTy>(false);
72 else if (Options::ptDataBacking() == PTBackingType::Persistent) ptD = std::make_unique<PersIncDFPTDataTy>(getPtCache(), false);
73 else assert(false && "BVDataPTAImpl::BVDataPTAImpl: unexpected points-to backing type!");
74 }
75 else
76 {
77 if (Options::ptDataBacking() == PTBackingType::Mutable) ptD = std::make_unique<MutDFPTDataTy>(false);
78 else if (Options::ptDataBacking() == PTBackingType::Persistent) ptD = std::make_unique<PersDFPTDataTy>(getPtCache(), false);
79 else assert(false && "BVDataPTAImpl::BVDataPTAImpl: unexpected points-to backing type!");
80 }
81 }
82 else if (type == VFS_WPA)
83 {
84 if (Options::ptDataBacking() == PTBackingType::Mutable) ptD = std::make_unique<MutVersionedPTDataTy>(false);
85 else if (Options::ptDataBacking() == PTBackingType::Persistent) ptD = std::make_unique<PersVersionedPTDataTy>(getPtCache(), false);
86 else assert(false && "BVDataPTAImpl::BVDataPTAImpl: unexpected points-to backing type!");
87 }
88 else assert(false && "no points-to data available");
89
91}
cJSON * p
Definition cJSON.cpp:2559
newitem type
Definition cJSON.cpp:2739
PersistentPointsToCache< PointsTo > ptCache
std::unique_ptr< PTDataTy > ptD
Points-to data.
PersistentPointsToCache< PointsTo > & getPtCache()
static const Option< bool > INCDFPTData
Definition Options.h:136
static const Option< u32_t > MaxFieldLimit
Maximum number of field derivations for an object.
Definition Options.h:38
static const OptionMap< BVDataPTAImpl::PTBackingType > ptDataBacking
PTData type.
Definition Options.h:69
@ CFLFICI_WPA
Flow-, context-, insensitive CFL-reachability-based analysis.
@ VFS_WPA
Versioned sparse flow-sensitive WPA.
@ AndersenSCD_WPA
Selective cycle detection andersen-style WPA.
@ Andersen_BASE
Base Andersen PTA.
@ FlowS_DDA
Flow sensitive DDA.
@ Andersen_WPA
Andersen PTA.
@ CFLFSCS_WPA
Flow-, context-, CFL-reachability-based analysis.
@ AndersenWaveDiff_WPA
Diff wave propagation andersen-style WPA.
@ TypeCPP_WPA
Type-based analysis for C++.
@ AndersenSFR_WPA
Stride-based field representation.
@ Steensgaard_WPA
Steensgaard PTA.
@ FSSPARSE_WPA
Sparse flow sensitive WPA.
PTAImplTy ptaImplTy
PTA implementation type.
@ BVDataImpl
Represents BVDataPTAImpl.
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~BVDataPTAImpl()

SVF::BVDataPTAImpl::~BVDataPTAImpl ( )
overridedefault

Destructor.

Member Function Documentation

◆ addPts()

virtual bool SVF::BVDataPTAImpl::addPts ( NodeID  id,
NodeID  ptd 
)
inlinevirtual

Definition at line 121 of file PointerAnalysisImpl.h.

122 {
123 return ptD->addPts(id,ptd);
124 }

◆ alias() [1/3]

AliasResult BVDataPTAImpl::alias ( const PointsTo p1,
const PointsTo p2 
)
virtual

Interface expose to users of our pointer analysis, given two pts.

Return alias results based on our points-to/alias analysis

Definition at line 627 of file PointerAnalysisImpl.cpp.

628{
629
634
637 else
639}
virtual void expandFIObjs(const PointsTo &pts, PointsTo &expandedPts)
Expand FI objects.
bool containBlackHoleNode(const PointsTo &pts)
Determine whether a points-to contains a black hole or constant node.
@ MayAlias
Definition SVFType.h:543
@ NoAlias
Definition SVFType.h:542

◆ alias() [2/3]

AliasResult SVF::BVDataPTAImpl::alias ( const SVFVar V1,
const SVFVar V2 
)
inlineoverridevirtual

Interface expose to users of our pointer analysis, given Value infos.

Implements SVF::PointerAnalysis.

Definition at line 218 of file PointerAnalysisImpl.h.

220 {
221 return alias(V1->getId(), V2->getId());
222 }
AliasResult alias(const SVFVar *V1, const SVFVar *V2) override
Interface expose to users of our pointer analysis, given Value infos.

◆ alias() [3/3]

AliasResult BVDataPTAImpl::alias ( NodeID  node1,
NodeID  node2 
)
overridevirtual

Interface expose to users of our pointer analysis, given PAGNodeID.

Return alias results based on our points-to/alias analysis

Implements SVF::PointerAnalysis.

Reimplemented in SVF::CFLAlias.

Definition at line 619 of file PointerAnalysisImpl.cpp.

620{
621 return alias(getPts(node1),getPts(node2));
622}
const PointsTo & getPts(NodeID id) override

◆ classof()

static bool SVF::BVDataPTAImpl::classof ( const PointerAnalysis pta)
inlinestatic

Definition at line 81 of file PointerAnalysisImpl.h.

82 {
83 return pta->getImplTy() == BVDataImpl;
84 }

◆ clearAllPts()

virtual void SVF::BVDataPTAImpl::clearAllPts ( )
inlinevirtual

Clear all data.

Definition at line 128 of file PointerAnalysisImpl.h.

129 {
130 ptD->clear();
131 }

◆ clearFullPts()

virtual void SVF::BVDataPTAImpl::clearFullPts ( NodeID  id)
inlinevirtual

Clear points-to set of id.

Definition at line 105 of file PointerAnalysisImpl.h.

106 {
107 ptD->clearFullPts(id);
108 }

◆ clearPts()

virtual void SVF::BVDataPTAImpl::clearPts ( NodeID  id,
NodeID  element 
)
inlinevirtual

Remove element from the points-to set of id.

Definition at line 99 of file PointerAnalysisImpl.h.

100 {
101 ptD->clearPts(id, element);
102 }

◆ dumpAllPts()

void BVDataPTAImpl::dumpAllPts ( )
overridevirtual

Dump all points-to including top-level (ValVar) and address-taken (ObjVar) variables

Reimplemented from SVF::PointerAnalysis.

Definition at line 477 of file PointerAnalysisImpl.cpp.

478{
480 for(SVFIR::iterator it = pag->begin(), eit = pag->end(); it!=eit; it++)
481 {
482 pagNodes.insert(it->first);
483 }
484
485 for (NodeID n : pagNodes)
486 {
487 outs() << "----------------------------------------------\n";
488 dumpPts(n, this->getPts(n));
489 }
490
491 outs() << "----------------------------------------------\n";
492}
cJSON * n
Definition cJSON.cpp:2558
iterator begin()
Iterators.
IDToNodeMapTy::iterator iterator
Node Iterators.
virtual void dumpPts(NodeID ptr, const PointsTo &pts)
static SVFIR * pag
SVFIR.
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
OrderedSet< NodeID > OrderedNodeSet
u32_t NodeID
Definition GeneralType.h:56

◆ dumpCPts()

void SVF::BVDataPTAImpl::dumpCPts ( )
inlineoverridevirtual

dump and debug, print out conditional pts

Reimplemented from SVF::PointerAnalysis.

Definition at line 232 of file PointerAnalysisImpl.h.

233 {
234 ptD->dumpPTData();
235 }

◆ dumpTopLevelPtsTo()

void BVDataPTAImpl::dumpTopLevelPtsTo ( )
overridevirtual

Dump points-to of each pag node

Reimplemented from SVF::PointerAnalysis.

Definition at line 444 of file PointerAnalysisImpl.cpp.

445{
446 for (OrderedNodeSet::iterator nIter = this->getAllValidPtrs().begin();
447 nIter != this->getAllValidPtrs().end(); ++nIter)
448 {
449 const PAGNode* node = getPAG()->getGNode(*nIter);
450 if (getPAG()->isValidTopLevelPtr(node))
451 {
452 const PointsTo& pts = this->getPts(node->getId());
453 outs() << "\nNodeID " << node->getId() << " ";
454
455 if (pts.empty())
456 {
457 outs() << "\t\tPointsTo: {empty}\n\n";
458 }
459 else
460 {
461 outs() << "\t\tPointsTo: { ";
462 for (PointsTo::iterator it = pts.begin(), eit = pts.end();
463 it != eit; ++it)
464 outs() << *it << " ";
465 outs() << "}\n\n";
466 }
467 }
468 }
469
470 outs().flush();
471}
NodeType * getGNode(NodeID id) const
Get a node.
SVFIR * getPAG() const
OrderedNodeSet & getAllValidPtrs()
Get all Valid Pointers for resolution.
NodeID getId() const
Get ID.
Definition SVFValue.h:158

◆ expandFIObjs() [1/2]

void BVDataPTAImpl::expandFIObjs ( const NodeBS pts,
NodeBS expandedPts 
)
virtual

TODO: remove repetition.

Definition at line 145 of file PointerAnalysisImpl.cpp.

146{
148 for (const NodeID o : pts)
149 {
151 {
153 }
154 }
155}
bool isFieldInsensitive(NodeID id) const
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

◆ expandFIObjs() [2/2]

void BVDataPTAImpl::expandFIObjs ( const PointsTo pts,
PointsTo expandedPts 
)
virtual

Expand FI objects.

Expand all fields of an aggregate in all points-to sets

Definition at line 133 of file PointerAnalysisImpl.cpp.

134{
135 expandedPts = pts;;
136 for(PointsTo::iterator pit = pts.begin(), epit = pts.end(); pit!=epit; ++pit)
137 {
139 {
141 }
142 }
143}

◆ finalize()

void BVDataPTAImpl::finalize ( )
overrideprotectedvirtual

Finalization of pointer analysis, and normalize points-to information to Bit Vector representation.

Reimplemented from SVF::PointerAnalysis.

Reimplemented in SVF::CFLAlias, SVF::CFLBase, SVF::CFLVF, SVF::FlowDDA, SVF::FlowSensitive, SVF::TypeAnalysis, and SVF::VersionedFlowSensitive.

Definition at line 93 of file PointerAnalysisImpl.cpp.

94{
97
99 {
100 std::string moduleName(pag->getModuleIdentifier());
101 std::vector<std::string> names = SVFUtil::split(moduleName,'/');
102 if (names.size() > 1)
103 moduleName = names[names.size() - 1];
104
105 std::string subtitle;
106
108 subtitle = "Andersen's analysis bitvector";
109 else if(ptaTy >=FSDATAFLOW_WPA && ptaTy <=FSCS_WPA)
110 subtitle = "flow-sensitive analysis bitvector";
111 else if(ptaTy >=CFLFICI_WPA && ptaTy <=CFLFSCS_WPA)
112 subtitle = "CFL analysis bitvector";
113 else if(ptaTy == TypeCPP_WPA)
114 subtitle = "Type analysis bitvector";
115 else if(ptaTy >=FieldS_DDA && ptaTy <=Cxt_DDA)
116 subtitle = "DDA bitvector";
117 else
118 subtitle = "bitvector";
119
120 SVFUtil::outs() << "\n****Persistent Points-To Cache Statistics: " << subtitle << "****\n";
121 SVFUtil::outs() << "################ (program : " << moduleName << ")###############\n";
122 SVFUtil::outs().flags(std::ios::left);
123 ptCache.printStats("bitvector");
124 SVFUtil::outs() << "#######################################################" << std::endl;
125 SVFUtil::outs().flush();
126 }
127
128}
virtual void normalizePointsTo()
@ Cxt_DDA
context sensitive DDA
@ FSCS_WPA
Flow-, context- sensitive WPA.
@ FSDATAFLOW_WPA
Traditional Dataflow-based flow sensitive WPA.
@ FieldS_DDA
Field sensitive DDA.
virtual void finalize()
Finalization of a pointer analysis, including checking alias correctness.
bool print_stat
User input flags.
PTATY ptaTy
Pointer analysis Type.
const std::string & getModuleIdentifier() const
Definition SVFIR.h:192
std::vector< std::string > split(const std::string &s, char separator)
Split into two substrings around the first occurrence of a separator string.
Definition SVFUtil.h:196

◆ getDFPTDataTy()

DFPTDataTy * SVF::BVDataPTAImpl::getDFPTDataTy ( ) const
inlineprotected

Definition at line 178 of file PointerAnalysisImpl.h.

179 {
180 DFPTDataTy* df = SVFUtil::dyn_cast<DFPTDataTy>(ptD.get());
181 assert(df && "BVDataPTAImpl::getDFPTDataTy: not a DFPTDataTy!");
182 return df;
183 }
DFPTData< NodeID, NodeSet, NodeID, PointsTo > DFPTDataTy

◆ getDiffPTDataTy()

DiffPTDataTy * SVF::BVDataPTAImpl::getDiffPTDataTy ( ) const
inlineprotected

Definition at line 171 of file PointerAnalysisImpl.h.

172 {
173 DiffPTDataTy* diff = SVFUtil::dyn_cast<DiffPTDataTy>(ptD.get());
174 assert(diff && "BVDataPTAImpl::getDiffPTDataTy: not a DiffPTDataTy!");
175 return diff;
176 }
DiffPTData< NodeID, NodeSet, NodeID, PointsTo > DiffPTDataTy

◆ getMutDFPTDataTy()

MutDFPTDataTy * SVF::BVDataPTAImpl::getMutDFPTDataTy ( ) const
inlineprotected

Definition at line 185 of file PointerAnalysisImpl.h.

186 {
187 MutDFPTDataTy* mdf = SVFUtil::dyn_cast<MutDFPTDataTy>(ptD.get());
188 assert(mdf && "BVDataPTAImpl::getMutDFPTDataTy: not a MutDFPTDataTy!");
189 return mdf;
190 }
MutableDFPTData< NodeID, NodeSet, NodeID, PointsTo > MutDFPTDataTy

◆ getPtCache()

PersistentPointsToCache< PointsTo > & SVF::BVDataPTAImpl::getPtCache ( )
inline

Definition at line 76 of file PointerAnalysisImpl.h.

77 {
78 return ptCache;
79 }

◆ getPTDataTy()

PTDataTy * SVF::BVDataPTAImpl::getPTDataTy ( ) const
inlineprotected

Get points-to data structure.

Definition at line 155 of file PointerAnalysisImpl.h.

156 {
157 return ptD.get();
158 }

◆ getPts()

const PointsTo & SVF::BVDataPTAImpl::getPts ( NodeID  id)
inlineoverridevirtual

Get points-to and reverse points-to

Implements SVF::PointerAnalysis.

Reimplemented in SVF::Steensgaard.

Definition at line 88 of file PointerAnalysisImpl.h.

89 {
90 return ptD->getPts(id);
91 }

◆ getRevPts()

const NodeSet & SVF::BVDataPTAImpl::getRevPts ( NodeID  nodeId)
inlineoverridevirtual

Given an object, get all the nodes having whose pointsto contains the object. Similar to getPts, this also needs to be implemented in child classes.

Implements SVF::PointerAnalysis.

Reimplemented in SVF::CFLAlias.

Definition at line 92 of file PointerAnalysisImpl.h.

93 {
94 return ptD->getRevPts(nodeId);
95 }

◆ getVersionedPTDataTy()

VersionedPTDataTy * SVF::BVDataPTAImpl::getVersionedPTDataTy ( ) const
inlineprotected

Definition at line 192 of file PointerAnalysisImpl.h.

193 {
194 VersionedPTDataTy* v = SVFUtil::dyn_cast<VersionedPTDataTy>(ptD.get());
195 assert(v && "BVDataPTAImpl::getVersionedPTDataTy: not a VersionedPTDataTy!");
196 return v;
197 }
VersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > VersionedPTDataTy

◆ normalizePointsTo()

void BVDataPTAImpl::normalizePointsTo ( )
protectedvirtual

Normalize points-to information for field-sensitive analysis, i.e., replace fieldObj with baseObj if it is field-insensitive

Normalize points-to information for field-sensitive analysis

Reimplemented in SVF::AndersenBase.

Definition at line 558 of file PointerAnalysisImpl.cpp.

559{
561 SVFIR::NodeOffsetMap &GepObjVarMap = pag->getGepObjNodeMap();
562
563 // collect each gep node whose base node has been set as field-insensitive
565 for (auto t: memToFieldsMap)
566 {
567 NodeID base = t.first;
568 const BaseObjVar* obj = pag->getBaseObject(base);
569 assert(obj && "Invalid baseObj in memToFieldsMap");
570 assert(obj->isFieldInsensitive() == obj->isFieldInsensitive());
571 if (obj->isFieldInsensitive())
572 {
573 for (NodeID id : t.second)
574 {
575 if (SVFUtil::isa<GepObjVar>(pag->getGNode(id)))
576 {
577 dropNodes.set(id);
578 }
579 else
580 assert(id == base && "Not a GepObj Node or a baseObj Node?");
581 }
582 }
583 }
584
585 // remove the collected redundant gep nodes in each pointers's pts
586 for (SVFIR::iterator nIter = pag->begin(); nIter != pag->end(); ++nIter)
587 {
588 NodeID n = nIter->first;
589
590 const PointsTo &tmpPts = getPts(n);
591 for (NodeID obj : tmpPts)
592 {
593 if (!dropNodes.test(obj))
594 continue;
596 clearPts(n, obj);
597 addPts(n, baseObj);
598 }
599 }
600
601 // clear GepObjVarMap and memToFieldsMap for redundant gepnodes
602 // and remove those nodes from pag
603 for (NodeID n: dropNodes)
604 {
605 NodeID base = pag->getBaseObjVar(n);
606 GepObjVar *gepNode = SVFUtil::dyn_cast<GepObjVar>(pag->getGNode(n));
607 const APOffset apOffset = gepNode->getConstantFieldIdx();
608 GepObjVarMap.erase(std::make_pair(base, apOffset));
609 memToFieldsMap[base].reset(n);
610
612 }
613}
virtual void clearPts(NodeID id, NodeID element)
Remove element from the points-to set of id.
virtual bool addPts(NodeID id, NodeID ptd)
void removeGNode(NodeType *node)
Delete a node.
const BaseObjVar * getBaseObject(NodeID id) const
Definition SVFIR.h:423
NodeOffsetMap & getGepObjNodeMap()
Return GepObjVarMap.
Definition SVFIR.h:135
Map< NodeID, NodeBS > MemObjToFieldsMap
Definition SVFIR.h:56
Map< NodeOffset, NodeID > NodeOffsetMap
Definition SVFIR.h:69
MemObjToFieldsMap & getMemToFieldsMap()
Return memToFieldsMap.
Definition SVFIR.h:130
s64_t APOffset
Definition GeneralType.h:60

◆ onTheFlyCallGraphSolve()

void BVDataPTAImpl::onTheFlyCallGraphSolve ( const CallSiteToFunPtrMap callsites,
CallEdgeMap newEdges 
)
protectedvirtual

On the fly call graph construction.

On the fly call graph construction callsites is candidate indirect callsites need to be analyzed based on points-to results newEdges is the new indirect call edges discovered

Reimplemented in SVF::CFLAlias.

Definition at line 500 of file PointerAnalysisImpl.cpp.

501{
502 for(CallSiteToFunPtrMap::const_iterator iter = callsites.begin(), eiter = callsites.end(); iter!=eiter; ++iter)
503 {
504 const CallICFGNode* cs = iter->first;
505
506 if (cs->isVirtualCall())
507 {
508 const SVFVar* vtbl = cs->getVtablePtr();
509 assert(vtbl != nullptr);
510 NodeID vtblId = vtbl->getId();
512 }
513 else
514 resolveIndCalls(iter->first,getPts(iter->second),newEdges);
515 }
516}
const SVFVar * getVtablePtr() const
Definition ICFGNode.h:531
bool isVirtualCall() const
Definition ICFGNode.h:521
virtual void resolveIndCalls(const CallICFGNode *cs, const PointsTo &target, CallEdgeMap &newEdges)
Resolve indirect call edges.
virtual void resolveCPPIndCalls(const CallICFGNode *cs, const PointsTo &target, CallEdgeMap &newEdges)
Resolve cpp indirect call edges.

◆ onTheFlyThreadCallGraphSolve()

void BVDataPTAImpl::onTheFlyThreadCallGraphSolve ( const CallSiteToFunPtrMap callsites,
CallEdgeMap newForkEdges 
)
protectedvirtual

On the fly thread call graph construction respecting forksite.

On the fly call graph construction respecting forksite callsites is candidate indirect callsites need to be analyzed based on points-to results newEdges is the new indirect call edges discovered

Definition at line 523 of file PointerAnalysisImpl.cpp.

525{
526 // add indirect fork edges
527 if(ThreadCallGraph *tdCallGraph = SVFUtil::dyn_cast<ThreadCallGraph>(callgraph))
528 {
529 for(CallSiteSet::const_iterator it = tdCallGraph->forksitesBegin(),
530 eit = tdCallGraph->forksitesEnd(); it != eit; ++it)
531 {
532 const ValVar* pVar = tdCallGraph->getThreadAPI()->getForkedFun(*it);
533 if(SVFUtil::dyn_cast<FunValVar>(pVar) == nullptr)
534 {
535 SVFIR *pag = this->getPAG();
536 const NodeBS targets = this->getPts(pVar->getId()).toNodeBS();
537 for(NodeBS::iterator ii = targets.begin(), ie = targets.end(); ii != ie; ++ii)
538 {
539 if(ObjVar *objPN = SVFUtil::dyn_cast<ObjVar>(pag->getGNode(*ii)))
540 {
541 const BaseObjVar* obj = pag->getBaseObject(objPN->getId());
542 if(obj->isFunction())
543 {
544 const FunObjVar *svfForkedFun = SVFUtil::cast<FunObjVar>(obj)->getFunction();
545 if(tdCallGraph->addIndirectForkEdge(*it, svfForkedFun))
546 newForkEdges[*it].insert(svfForkedFun);
547 }
548 }
549 }
550 }
551 }
552 }
553}
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
CallGraph * callgraph
Call graph used for pointer analysis.
NodeBS toNodeBS() const
Returns this points-to set as a NodeBS.
Definition PointsTo.cpp:313

◆ readAndSetObjFieldSensitivity()

void BVDataPTAImpl::readAndSetObjFieldSensitivity ( std::ifstream &  f,
const std::string &  delimiterStr 
)
virtual

Definition at line 385 of file PointerAnalysisImpl.cpp.

386{
387 string line;
388 // //update ObjVar status
389 while (F.good())
390 {
391 getline(F, line);
392 if (line.empty() || line == delimiterStr)
393 break;
394 // Parse a single line in the form of "baseNodeID insensitive"
396 NodeID base;
397 bool insensitive;
398 ss >> base >> insensitive;
399
400 if (insensitive)
402 }
403
404}
void setObjFieldInsensitive(NodeID id)

◆ readFromFile()

bool BVDataPTAImpl::readFromFile ( const std::string &  filename)
virtual

Load pointer analysis result form a file. It populates BVDataPTAImpl with the points-to data, and updates SVFIR with the SVFIR offset nodes created during Andersen's solving stage.

Definition at line 411 of file PointerAnalysisImpl.cpp.

412{
413
414 outs() << "Loading pointer analysis results from '" << filename << "'...";
415
416 ifstream F(filename.c_str());
417 if (!F.is_open())
418 {
419 outs() << " error opening file for reading!\n";
420 return false;
421 }
422
424
426
428
430
431 // Update callgraph
433
434 F.close();
435 outs() << "\n";
436
437 return true;
438}
virtual void readAndSetObjFieldSensitivity(std::ifstream &f, const std::string &delimiterStr)
virtual bool updateCallGraph(const CallSiteToFunPtrMap &)
Update callgraph. This should be implemented by its subclass.
virtual void readPtsResultFromFile(std::ifstream &f)
virtual void readGepObjVarMapFromFile(std::ifstream &f)
const CallSiteToFunPtrMap & getIndirectCallsites() const
Add/get indirect callsites.
Definition SVFIR.h:378

◆ readGepObjVarMapFromFile()

void BVDataPTAImpl::readGepObjVarMapFromFile ( std::ifstream &  f)
virtual

Definition at line 343 of file PointerAnalysisImpl.cpp.

344{
345 string line;
346 //read GepObjVarMap from file
348 while (F.good())
349 {
350 getline(F, line);
351 if (line == "------") break;
352 // Parse a single line in the form of "ID baseNodeID offset"
354 NodeID base;
355 size_t offset;
356 NodeID id;
357 ss >> base >> offset >>id;
358 SVFIR::NodeOffsetMap::const_iterator iter = gepObjVarMap.find(std::make_pair(base, offset));
359 if (iter == gepObjVarMap.end())
360 {
361 SVFVar* node = pag->getGNode(base);
362 const BaseObjVar* obj = nullptr;
363 if (GepObjVar* gepObjVar = SVFUtil::dyn_cast<GepObjVar>(node))
364 {
365 obj = gepObjVar->getBaseObj();
366 }
367 else if (BaseObjVar* baseNode = SVFUtil::dyn_cast<BaseObjVar>(node))
368 {
369 obj = baseNode;
370 }
371 else if (DummyObjVar* baseNode = SVFUtil::dyn_cast<DummyObjVar>(node))
372 {
373 obj = baseNode;
374 }
375 else
376 assert(false && "new gep obj node kind?");
377 pag->addGepObjNode( obj, offset, id);
379 }
380
381
382 }
383}
buffer offset
Definition cJSON.cpp:1113
static NodeIDAllocator * get(void)
Return (singleton) allocator.
NodeID addGepObjNode(const BaseObjVar *baseObj, const APOffset &apOffset, const NodeID gepId)
Add a field obj node, this method can only invoked by getGepObjVar.
Definition SVFIR.cpp:466

◆ readPtsResultFromFile()

void BVDataPTAImpl::readPtsResultFromFile ( std::ifstream &  f)
virtual

Definition at line 289 of file PointerAnalysisImpl.cpp.

290{
291 string line;
292 // Read analysis results from file
294
295 // Read points-to sets
296 string delimiter1 = " -> { ";
297 string delimiter2 = " }";
300
301 while (F.good())
302 {
303 // Parse a single line in the form of "var -> { obj1 obj2 obj3 }"
304 getline(F, line);
305 if (line.at(0) == '[' || line == "---VERSIONED---") continue;
306 if (line == "------") break;
307 size_t pos = line.find(delimiter1);
308 if (pos == string::npos) break;
309 if (line.back() != '}') break;
310
311 // var
312 NodeID var = atoi(line.substr(0, pos).c_str());
313
314 // objs
315 pos = pos + delimiter1.length();
316 size_t len = line.length() - pos - delimiter2.length();
317 string objs = line.substr(pos, len);
319
320 if (!objs.empty())
321 {
322 // map the variable ID to its unique string pointer set
324 if (strPtsMap.count(objs)) continue;
325
327 NodeID obj;
328 while (ss.good())
329 {
330 ss >> obj;
331 dstPts.set(obj);
332 }
333 // map the string pointer set to the parsed PointsTo set
335 }
336 }
337
338 // map the variable ID to its pointer set
339 for (auto t: nodePtsMap)
341}
PTData< NodeID, NodeSet, NodeID, PointsTo > PTDataTy
virtual bool unionPts(NodeID id, const PointsTo &target)
PTDataTy * getPTDataTy() const
Get points-to data structure.

◆ remapPointsToSets()

void BVDataPTAImpl::remapPointsToSets ( void  )

Remap all points-to sets to use the current mapping.

Definition at line 157 of file PointerAnalysisImpl.cpp.

158{
159 getPTDataTy()->remapAllPts();
160}

◆ unionPts() [1/2]

virtual bool SVF::BVDataPTAImpl::unionPts ( NodeID  id,
const PointsTo target 
)
inlinevirtual

Union/add points-to. Add the reverse points-to for node collapse purpose To be noted that adding reverse pts might incur 10% total overhead during solving

Reimplemented in SVF::Andersen, and SVF::Steensgaard.

Definition at line 113 of file PointerAnalysisImpl.h.

114 {
115 return ptD->unionPts(id, target);
116 }

◆ unionPts() [2/2]

virtual bool SVF::BVDataPTAImpl::unionPts ( NodeID  id,
NodeID  ptd 
)
inlinevirtual

Reimplemented in SVF::Andersen, and SVF::Steensgaard.

Definition at line 117 of file PointerAnalysisImpl.h.

118 {
119 return ptD->unionPts(id,ptd);
120 }

◆ updateCallGraph()

virtual bool SVF::BVDataPTAImpl::updateCallGraph ( const CallSiteToFunPtrMap )
inlineprotectedvirtual

Update callgraph. This should be implemented by its subclass.

Reimplemented in SVF::AndersenBase, SVF::CFLAlias, SVF::AndersenSCD, and SVF::FlowSensitive.

Definition at line 165 of file PointerAnalysisImpl.h.

166 {
167 assert(false && "Virtual function not implemented!");
168 return false;
169 }

◆ writeGepObjVarMapToFile()

void BVDataPTAImpl::writeGepObjVarMapToFile ( std::fstream &  f)
virtual

Definition at line 224 of file PointerAnalysisImpl.cpp.

225{
226 //write gepObjVarMap to file(in form of: baseID offset gepObjNodeId)
228 for(SVFIR::NodeOffsetMap::const_iterator it = gepObjVarMap.begin(), eit = gepObjVarMap.end(); it != eit; it++)
229 {
231 //write the base id to file
232 f << offsetPair.first << " ";
233 //write the offset to file
234 f << offsetPair.second << " ";
235 //write the gepObjNodeId to file
236 f << it->second << "\n";
237 }
238
239}
std::pair< NodeID, APOffset > NodeOffset
Definition SVFIR.h:67

◆ writeObjVarToFile()

void BVDataPTAImpl::writeObjVarToFile ( const std::string &  filename)
virtual

Definition at line 162 of file PointerAnalysisImpl.cpp.

163{
164 outs() << "Storing ObjVar to '" << filename << "'...";
166 std::fstream f(filename.c_str(), std::ios_base::out);
167 if (!f.good())
168 {
169 outs() << " error opening file for writing!\n";
170 return;
171 }
172
173 // Write BaseNodes insensitivity to file
175 for (auto it = pag->begin(), ie = pag->end(); it != ie; ++it)
176 {
177 PAGNode* pagNode = it->second;
178 if (!isa<ObjVar>(pagNode)) continue;
179 NodeID n = pag->getBaseObjVar(it->first);
180 if (NodeIDs.test(n)) continue;
181 f << n << " ";
182 f << isFieldInsensitive(n) << "\n";
183 NodeIDs.set(n);
184 }
185
186 f << "------\n";
187
188 f.close();
189 if (f.good())
190 {
191 outs() << "\n";
192 return;
193 }
194
195
196}

◆ writePtsResultToFile()

void BVDataPTAImpl::writePtsResultToFile ( std::fstream &  f)
virtual

Definition at line 198 of file PointerAnalysisImpl.cpp.

199{
200 // Write analysis results to file
201 for (auto it = pag->begin(), ie = pag->end(); it != ie; ++it)
202 {
203 NodeID var = it->first;
204 const PointsTo &pts = getPts(var);
205
207 f << var << " -> { ";
208 if (pts.empty())
209 {
210 f << " ";
211 }
212 else
213 {
214 for (NodeID n: pts)
215 {
216 f << n << " ";
217 }
218 }
219 f << "}\n";
220 }
221
222}

◆ writeToFile()

void BVDataPTAImpl::writeToFile ( const std::string &  filename)
virtual

Interface for analysis result storage on filesystem.

Store pointer analysis result into a file. It includes the points-to relations, and all SVFIR nodes including those created when solving Andersen's constraints.

Definition at line 246 of file PointerAnalysisImpl.cpp.

247{
248
249 outs() << "Storing pointer analysis results to '" << filename << "'...";
250
252 std::fstream f(filename.c_str(), std::ios_base::app);
253 if (!f.good())
254 {
255 outs() << " error opening file for writing!\n";
256 return;
257 }
258
260
261 f << "------\n";
262
264
265 f << "------\n";
266
267 // Write BaseNodes insensitivity to file
269 for (auto it = pag->begin(), ie = pag->end(); it != ie; ++it)
270 {
271 PAGNode* pagNode = it->second;
272 if (!isa<ObjVar>(pagNode)) continue;
273 NodeID n = pag->getBaseObjVar(it->first);
274 if (NodeIDs.test(n)) continue;
275 f << n << " ";
276 f << isFieldInsensitive(n) << "\n";
277 NodeIDs.set(n);
278 }
279
280 // Job finish and close file
281 f.close();
282 if (f.good())
283 {
284 outs() << "\n";
285 return;
286 }
287}
virtual void writeGepObjVarMapToFile(std::fstream &f)
virtual void writePtsResultToFile(std::fstream &f)

Member Data Documentation

◆ ptCache

PersistentPointsToCache<PointsTo> SVF::BVDataPTAImpl::ptCache
private

Definition at line 214 of file PointerAnalysisImpl.h.

◆ ptD

std::unique_ptr<PTDataTy> SVF::BVDataPTAImpl::ptD
private

Points-to data.

Definition at line 212 of file PointerAnalysisImpl.h.


The documentation for this class was generated from the following files: