Static Value-Flow Analysis
Loading...
Searching...
No Matches
Functions
svf-ex.cpp File Reference
#include "AE/Core/AbstractState.h"
#include "Graphs/SVFG.h"
#include "SVF-LLVM/LLVMUtil.h"
#include "SVF-LLVM/SVFIRBuilder.h"
#include "Util/CommandLine.h"
#include "Util/Options.h"
#include "WPA/Andersen.h"

Go to the source code of this file.

Functions

SVF::AliasResult aliasQuery (PointerAnalysis *pta, const SVFVar *v1, const SVFVar *v2)
 
std::string printPts (PointerAnalysis *pta, const SVFVar *svfval)
 
void traverseOnICFG (ICFG *icfg, const ICFGNode *iNode)
 
void dummyVisit (const VFGNode *node)
 
void traverseOnVFG (const SVFG *vfg, const SVFVar *svfval)
 
int main (int argc, char **argv)
 

Function Documentation

◆ aliasQuery()

SVF::AliasResult aliasQuery ( PointerAnalysis pta,
const SVFVar v1,
const SVFVar v2 
)

An example to query alias results of two SVF values

Definition at line 44 of file svf-ex.cpp.

45{
46 return pta->alias(v1->getId(), v2->getId());
47}
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)=0
Interface exposed to users of our pointer analysis, given Value infos.
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ dummyVisit()

void dummyVisit ( const VFGNode node)

Definition at line 98 of file svf-ex.cpp.

99{
100
101}

◆ main()

int main ( int  argc,
char **  argv 
)

Build Program Assignment Graph (SVFIR)

Create Andersen's pointer analysis

Call Graph

ICFG

Value-Flow Graph (VFG)

Sparse value-flow graph (SVFG)

Collect uses of an LLVM Value

Print points-to information

Collect all successor nodes on ICFG

Definition at line 142 of file svf-ex.cpp.

143{
144
145 std::vector<std::string> moduleNameVec;
147 argc, argv, "Whole Program Points-to Analysis", "[options] <input-bitcode...>"
148 );
149
150 if (Options::WriteAnder() == "ir_annotator")
151 {
153 }
154
156
159 SVFIR* pag = builder.build();
160
163
164
166 CallGraph* callgraph = ander->getCallGraph();
167
169 ICFG* icfg = pag->getICFG();
170
172 VFG* vfg = new VFG(callgraph);
173
176 SVFG* svfg = svfBuilder.buildFullSVFG(ander);
177
179 if (Options::PTSPrint())
180 {
181 for (const auto& it : *svfg)
182 {
183 const SVFGNode* node = it.second;
184 if (node->getValue())
185 {
186 traverseOnVFG(svfg, node->getValue());
188 printPts(ander, node->getValue());
189 for (const SVFGEdge* edge : node->getOutEdges())
190 {
191 const SVFGNode* node2 = edge->getDstNode();
192 if (node2->getValue())
193 aliasQuery(ander, node->getValue(), node2->getValue());
194 }
195 }
196 }
197 }
198
200 if (Options::PTSPrint())
201 {
202 for (const auto& it : *icfg)
203 {
204 const ICFGNode* node = it.second;
205 traverseOnICFG(icfg, node);
206 }
207 }
208
209 // clean up memory
210 delete vfg;
213
216 llvm::llvm_shutdown();
217 return 0;
218}
static std::vector< std::string > parseOptions(int argc, char *argv[], std::string description, std::string callFormat)
Definition CommandLine.h:75
static AndersenWaveDiff * createAndersenWaveDiff(SVFIR *_pag)
Create an singleton instance directly instead of invoking llvm pass manager.
Definition Andersen.h:407
static void releaseAndersenWaveDiff()
Definition Andersen.h:417
static LLVMModuleSet * getLLVMModuleSet()
Definition LLVMModule.h:129
static void releaseLLVMModuleSet()
Definition LLVMModule.h:136
static void preProcessBCs(std::vector< std::string > &moduleNameVec)
static void buildSVFModule(Module &mod)
void dumpModulesToFile(const std::string &suffix)
static const Option< bool > PTSPrint
Definition Options.h:116
static const Option< std::string > WriteAnder
Definition Options.h:212
CallGraph * getCallGraph() const
Return call graph.
static void releaseSVFIR()
Definition SVFIR.h:124
ICFG * getICFG() const
Definition SVFIR.h:163
virtual const SVFVar * getValue() const
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFGNode.h:85
Definition VFG.h:51
void traverseOnICFG(ICFG *icfg, const ICFGNode *iNode)
Definition svf-ex.cpp:74
std::string printPts(PointerAnalysis *pta, const SVFVar *svfval)
Definition svf-ex.cpp:52
SVF::AliasResult aliasQuery(PointerAnalysis *pta, const SVFVar *v1, const SVFVar *v2)
Definition svf-ex.cpp:44
void traverseOnVFG(const SVFG *vfg, const SVFVar *svfval)
Definition svf-ex.cpp:105

◆ printPts()

std::string printPts ( PointerAnalysis pta,
const SVFVar svfval 
)

An example to print points-to set of an SVF value

Definition at line 52 of file svf-ex.cpp.

53{
54
55 std::string str;
57
58 NodeID pNodeId = svfval->getId();
59 const PointsTo& pts = pta->getPts(pNodeId);
60 for (PointsTo::iterator ii = pts.begin(), ie = pts.end();
61 ii != ie; ii++)
62 {
63 rawstr << " " << *ii << " ";
64 PAGNode* targetObj = pta->getPAG()->getGNode(*ii);
65 rawstr << "(" << targetObj->toString() << ")\t ";
66 }
67
68 return rawstr.str();
69
70}
NodeType * getGNode(NodeID id) const
Get a node.
virtual const PointsTo & getPts(NodeID ptr)=0
Get points-to targets of a pointer. It needs to be implemented in child class.
SVFIR * getPAG() const
virtual const std::string toString() const
Get string representation.
u32_t NodeID
Definition GeneralType.h:56

◆ traverseOnICFG()

void traverseOnICFG ( ICFG icfg,
const ICFGNode iNode 
)

An example to query/collect all successor nodes from a ICFGNode (iNode) along control-flow graph (ICFG)

Traverse along VFG

Definition at line 74 of file svf-ex.cpp.

75{
78 worklist.push(iNode);
79
81 while (!worklist.empty())
82 {
83 const ICFGNode* vNode = worklist.pop();
84 for (ICFGNode::const_iterator it = vNode->OutEdgeBegin(), eit =
85 vNode->OutEdgeEnd(); it != eit; ++it)
86 {
87 ICFGEdge* edge = *it;
88 ICFGNode* succNode = edge->getDstNode();
89 if (visited.find(succNode) == visited.end())
90 {
91 visited.insert(succNode);
92 worklist.push(succNode);
93 }
94 }
95 }
96}
bool push(const Data &data)
Definition WorkList.h:165
bool empty() const
Definition WorkList.h:146
ICFGEdge::ICFGEdgeSetTy::const_iterator const_iterator
Definition ICFGNode.h:62

◆ traverseOnVFG()

void traverseOnVFG ( const SVFG vfg,
const SVFVar svfval 
)

An example to query/collect all the uses of a definition of a value along value-flow graph (VFG)

Traverse along VFG

Collect all LLVM Values

can only query VFGNode involving top-level pointers (starting with % or @ in LLVM IR) PAGNode* pNode = vfg->getLHSTopLevPtr(node); Value* val = pNode->getValue();

Definition at line 105 of file svf-ex.cpp.

106{
107 if (!vfg->hasDefSVFGNode(svfval))
108 return;
109 const VFGNode* vNode = vfg->getDefSVFGNode(svfval);
111 Set<const VFGNode*> visited;
112 worklist.push(vNode);
113
115 while (!worklist.empty())
116 {
117 const VFGNode* vNode = worklist.pop();
118 for (VFGNode::const_iterator it = vNode->OutEdgeBegin(), eit =
119 vNode->OutEdgeEnd(); it != eit; ++it)
120 {
121 VFGEdge* edge = *it;
122 VFGNode* succNode = edge->getDstNode();
123 if (visited.find(succNode) == visited.end())
124 {
125 visited.insert(succNode);
126 worklist.push(succNode);
127 }
128 }
129 }
130
132 for(Set<const VFGNode*>::const_iterator it = visited.begin(), eit = visited.end(); it!=eit; ++it)
133 {
134 const VFGNode* node = *it;
135 dummyVisit(node);
139 }
140}
VFGEdge::VFGEdgeSetTy::const_iterator const_iterator
Definition VFGNode.h:55
std::unordered_set< Key, Hash, KeyEqual, Allocator > Set
Definition GeneralType.h:96
void dummyVisit(const VFGNode *node)
Definition svf-ex.cpp:98