Static Value-Flow Analysis
Loading...
Searching...
No Matches
PointerAnalysis.h
Go to the documentation of this file.
1//===- PointerAnalysis.h -- Base class of pointer analyses--------------------//
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 POINTERANALYSIS_H_
31#define POINTERANALYSIS_H_
32
33#include <unistd.h>
34#include <signal.h>
35
36#include "Graphs/CHG.h"
38#include "Graphs/SCC.h"
44#include "SVFIR/SVFIR.h"
45
46namespace SVF
47{
48
49class CommonCHGraph;
50
51class ICFG;
52class PTAStat;
53/*
54 * Pointer Analysis Base Class
55 */
57{
58
59public:
90
98
100
109
110 static const std::string aliasTestMayAlias;
111 static const std::string aliasTestMayAliasMangled;
112 static const std::string aliasTestNoAlias;
113 static const std::string aliasTestNoAliasMangled;
114 static const std::string aliasTestPartialAlias;
115 static const std::string aliasTestPartialAliasMangled;
116 static const std::string aliasTestMustAlias;
117 static const std::string aliasTestMustAliasMangled;
118 static const std::string aliasTestFailMayAlias;
119 static const std::string aliasTestFailMayAliasMangled;
120 static const std::string aliasTestFailNoAlias;
121 static const std::string aliasTestFailNoAliasMangled;
122
123private:
125 void destroy();
126
127protected:
128
130
131
138
140 static SVFIR* pag;
155
156public:
158 inline ICFG* getICFG() const
159 {
160 return pag->getICFG();
161 }
168 inline CallGraph* getCallGraph() const
169 {
170 return callgraph;
171 }
174 {
175 return callGraphSCC;
176 }
177
180
182 inline PTATY getAnalysisTy() const
183 {
184 return ptaTy;
185 }
186
188 inline PTAImplTy getImplTy() const
189 {
190 return ptaImplTy;
191 }
192
195 inline SVFIR* getPAG() const
196 {
197 return pag;
198 }
200
202 inline PTAStat* getStat() const
203 {
204 return stat;
205 }
206
209 {
210 return pag->getAllValidPtrs();
211 }
212
214 virtual ~PointerAnalysis();
215
217 virtual void initialize();
218
220 virtual void finalize();
221
223 virtual void analyze() = 0;
224
226 virtual void computeDDAPts(NodeID) {}
227
229 virtual AliasResult alias(const SVFVar* V1,
230 const SVFVar* V2) = 0;
231
234
236 virtual const PointsTo& getPts(NodeID ptr) = 0;
237
240 virtual const NodeSet& getRevPts(NodeID nodeId) = 0;
241
243 void printIndCSTargets(const CallICFGNode* cs, const FunctionSet& targets);
244
245 // Debug purpose
247 virtual void dumpTopLevelPtsTo() {}
248 virtual void dumpAllPts() {}
249 virtual void dumpCPts() {}
250 virtual void dumpPts(NodeID ptr, const PointsTo& pts);
251 void printIndCSTargets();
252 void dumpAllTypes();
254
255protected:
258 {
259 return pag->getIndirectCallsites();
260 }
262 inline NodeID getFunPtr(const CallICFGNode* cs) const
263 {
264 return pag->getFunPtr(cs);
265 }
267
268 virtual void validateTests();
269 virtual void validateSuccessTests(std::string fun);
270 virtual void validateExpectedFailureTests(std::string fun);
272
275
276public:
278 void dumpStat();
279
281
283 {
284 return pts.test(pag->getBlackHoleNode());
285 }
286 inline bool containConstantNode(const PointsTo& pts)
287 {
288 return pts.test(pag->getConstantNode());
289 }
290 virtual inline bool isBlkObjOrConstantObj(NodeID ptd) const
291 {
293 }
295
297
298 inline bool isHeapMemObj(NodeID id) const
299 {
300 return pag->getBaseObject(id) && SVFUtil::isa<HeapObjVar, DummyObjVar>(pag->getBaseObject(id));
301 }
302
303 inline bool isArrayMemObj(NodeID id) const
304 {
305 const BaseObjVar* obj = pag->getBaseObject(id);
306 assert(obj && "base object is null??");
307 return obj->isArray();
308 }
310
313 inline bool isFIObjNode(NodeID id) const
314 {
315 return (SVFUtil::isa<BaseObjVar>(pag->getGNode(id)));
316 }
318 {
319 return pag->getBaseObjVar(id);
320 }
322 {
323 return pag->getFIObjVar(id);
324 }
325 inline NodeID getGepObjVar(NodeID id, const APOffset& ap)
326 {
327 return pag->getGepObjVar(id, ap);
328 }
329 virtual inline const NodeBS& getAllFieldsObjVars(NodeID id)
330 {
331 return pag->getAllFieldsObjVars(id);
332 }
334 {
335 BaseObjVar* baseObj = const_cast<BaseObjVar*>(pag->getBaseObject(id));
337 }
338 inline bool isFieldInsensitive(NodeID id) const
339 {
340 const BaseObjVar* baseObj = pag->getBaseObject(id);
341 return baseObj->isFieldInsensitive();
342 }
344
346 inline bool printStat()
347 {
348 return print_stat;
349 }
350
352 inline void disablePrintStat()
353 {
354 print_stat = false;
355 }
356
358
360 {
361 return getCallGraph()->getIndCallMap();
362 }
363 inline bool hasIndCSCallees(const CallICFGNode* cs) const
364 {
365 return getCallGraph()->hasIndCSCallees(cs);
366 }
367 inline const FunctionSet& getIndCSCallees(const CallICFGNode* cs) const
368 {
369 return getCallGraph()->getIndCSCallees(cs);
370 }
372
374 virtual void resolveIndCalls(const CallICFGNode* cs, const PointsTo& target, CallEdgeMap& newEdges);
375
377
378
380 {
381 if(callGraphSCC==nullptr)
383
384 callGraphSCC->find();
385 }
388 {
389 return callGraphSCC->repNode(id);
390 }
392 inline bool inSameCallGraphSCC(const FunObjVar* fun1,const FunObjVar* fun2)
393 {
396 return (getCallGraphSCCRepNode(src->getId()) == getCallGraphSCCRepNode(dst->getId()));
397 }
398 inline bool isInRecursion(const FunObjVar* fun) const
399 {
400 return callGraphSCC->isInCycle(callgraph->getCallGraphNode(fun)->getId());
401 }
403 bool isLocalVarInRecursiveFun(NodeID id) const;
405
407 virtual const std::string PTAName() const
408 {
409 return "Pointer Analysis";
410 }
411
414 {
415 return chgraph;
416 }
417
418 void getVFnsFromCHA(const CallICFGNode* cs, VFunSet &vfns);
419 void getVFnsFromPts(const CallICFGNode* cs, const PointsTo &target, VFunSet &vfns);
421 virtual void resolveCPPIndCalls(const CallICFGNode* cs,
422 const PointsTo& target,
424};
425
426} // End namespace SVF
427
428#endif /* POINTERANALYSIS_H_ */
void setFieldInsensitive()
Set the memory object to be field insensitive.
bool isFieldInsensitive() const
Return true if its field limit is 0.
bool hasIndCSCallees(const CallICFGNode *cs) const
Definition CallGraph.h:323
u32_t getNumOfResolvedIndCallEdge() const
Definition CallGraph.h:339
const FunctionSet & getIndCSCallees(const CallICFGNode *cs) const
Definition CallGraph.h:327
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
Definition CallGraph.h:319
const CallGraphNode * getCallGraphNode(const std::string &name)
Get call graph node.
Common base for class hierarchy graph. Only implements what PointerAnalysis needs.
Definition CHG.h:51
NodeType * getGNode(NodeID id) const
Get a node.
NodeID getBlackHoleNode() const
Definition IRGraph.h:247
NodeID getConstantNode() const
Definition IRGraph.h:251
void getVFnsFromPts(const CallICFGNode *cs, const PointsTo &target, VFunSet &vfns)
void destroy()
Release the memory.
virtual void validateTests()
Alias check functions to verify correctness of pointer analysis.
virtual const PointsTo & getPts(NodeID ptr)=0
Get points-to targets of a pointer. It needs to be implemented in child class.
CommonCHGraph * getCHGraph() const
get CHGraph
PTATY
Pointer analysis type list.
@ Cxt_DDA
context sensitive DDA
@ CFLFICI_WPA
Flow-, context-, insensitive CFL-reachability-based analysis.
@ VFS_WPA
Versioned sparse flow-sensitive WPA.
@ FSCS_WPA
Flow-, context- sensitive WPA.
@ FSDATAFLOW_WPA
Traditional Dataflow-based 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.
@ FieldS_DDA
Field sensitive DDA.
@ AndersenWaveDiff_WPA
Diff wave propagation andersen-style WPA.
@ CSCallString_WPA
Call string based context sensitive WPA.
@ PathS_DDA
Guarded value-flow DDA.
@ TypeCPP_WPA
Type-based analysis for C++.
@ AndersenSFR_WPA
Stride-based field representation.
@ Steensgaard_WPA
Steensgaard PTA.
@ FSSPARSE_WPA
Sparse flow sensitive WPA.
@ Default_PTA
default pta without any analysis
@ CSSummary_WPA
Summary based context sensitive WPA.
@ CFLFSCI_WPA
Flow-insensitive, context-sensitive CFL-reachability-based analysis.
virtual void computeDDAPts(NodeID)
Compute points-to results on-demand, overridden by derived classes.
CommonCHGraph * chgraph
CHGraph.
static const std::string aliasTestNoAliasMangled
virtual AliasResult alias(NodeID node1, NodeID node2)=0
Interface exposed to users of our pointer analysis, given PAGNodeID.
bool isFieldInsensitive(NodeID id) const
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.
static const std::string aliasTestMayAliasMangled
static const std::string aliasTestFailNoAlias
virtual void dumpPts(NodeID ptr, const PointsTo &pts)
static const std::string aliasTestFailMayAlias
bool print_stat
User input flags.
OrderedMap< const CallICFGNode *, FunctionSet > CallEdgeMap
Set< const GlobalObjVar * > VTableSet
virtual void initialize()
Initialization of a pointer analysis, including building symbol table and SVFIR etc.
virtual bool isBlkObjOrConstantObj(NodeID ptd) const
bool printStat()
Whether print statistics.
virtual ~PointerAnalysis()
Destructor.
Set< const CallICFGNode * > CallSiteSet
Indirect call edges type, map a callsite to a set of callees.
bool containBlackHoleNode(const PointsTo &pts)
Determine whether a points-to contains a black hole or constant node.
PTAImplTy ptaImplTy
PTA implementation type.
PTAStat * stat
Statistics.
virtual void dumpTopLevelPtsTo()
static const std::string aliasTestFailMayAliasMangled
NodeID getFIObjVar(NodeID id)
SVFIR * getPAG() const
void connectVCallToVFns(const CallICFGNode *cs, const VFunSet &vfns, CallEdgeMap &newEdges)
CallGraph * getCallGraph() const
Return call graph.
OrderedNodeSet & getAllValidPtrs()
Get all Valid Pointers for resolution.
void resetObjFieldSensitive()
Reset all object node as field-sensitive.
static const std::string aliasTestMustAlias
static const std::string aliasTestMayAlias
Set< const FunObjVar * > FunctionSet
virtual void validateSuccessTests(std::string fun)
const CallSiteToFunPtrMap & getIndirectCallsites() const
Return all indirect callsites.
static const std::string aliasTestPartialAlias
virtual void dumpAllPts()
const FunctionSet & getIndCSCallees(const CallICFGNode *cs) const
bool isArrayMemObj(NodeID id) const
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)=0
Interface exposed to users of our pointer analysis, given Value infos.
virtual void resolveIndCalls(const CallICFGNode *cs, const PointsTo &target, CallEdgeMap &newEdges)
Resolve indirect call edges.
ICFG * getICFG() const
Get ICFG.
ICFG * icfg
Interprocedural control-flow graph.
NodeID getBaseObjVar(NodeID id)
CallGraph * callgraph
Call graph used for pointer analysis.
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 SC...
bool alias_validation
Flag for validating points-to/alias results.
NodeID getGepObjVar(NodeID id, const APOffset &ap)
virtual const NodeSet & getRevPts(NodeID nodeId)=0
void callGraphSCCDetection()
PTACallGraph SCC related methods.
void dumpStat()
Dump the statistics.
virtual void validateExpectedFailureTests(std::string fun)
bool hasIndCSCallees(const CallICFGNode *cs) const
virtual void resolveCPPIndCalls(const CallICFGNode *cs, const PointsTo &target, CallEdgeMap &newEdges)
Resolve cpp indirect call edges.
PTAImplTy
Implementation type: BVDataPTAImpl or CondPTAImpl.
@ BaseImpl
Represents PointerAnalaysis.
@ BVDataImpl
Represents BVDataPTAImpl.
@ CondImpl
Represents CondPTAImpl.
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
PTAImplTy getImplTy() const
Return implementation type of the pointer analysis.
PTATY getAnalysisTy() const
Type of pointer analysis.
static const std::string aliasTestNoAlias
void setObjFieldInsensitive(NodeID id)
SCCDetection< CallGraph * > CallGraphSCC
PTAStat * getStat() const
Get PTA stat.
static const std::string aliasTestPartialAliasMangled
u32_t getNumOfResolvedIndCallEdge() const
Return number of resolved indirect call edges.
virtual void dumpCPts()
SVFIR::CallSiteToFunPtrMap CallSiteToFunPtrMap
NodeID getFunPtr(const CallICFGNode *cs) const
Return function pointer PAGNode at a callsite cs.
static SVFIR * pag
SVFIR.
void getVFnsFromCHA(const CallICFGNode *cs, VFunSet &vfns)
PTATY ptaTy
Pointer analysis Type.
virtual void analyze()=0
Start Analysis here (main part of pointer analysis). It needs to be implemented in child class.
CallGraphSCC * callGraphSCC
SCC for PTACallGraph.
CallGraphSCC * getCallGraphSCC() const
Return call graph SCC.
bool isInRecursion(const FunObjVar *fun) const
bool isHeapMemObj(NodeID id) const
Whether this object is heap or array.
NodeID getCallGraphSCCRepNode(NodeID id) const
Get SCC rep node of a SVFG node.
static const std::string aliasTestMustAliasMangled
virtual const std::string PTAName() const
Return PTA name.
virtual const NodeBS & getAllFieldsObjVars(NodeID id)
static const std::string aliasTestFailNoAliasMangled
void disablePrintStat()
Whether print statistics.
Set< const FunObjVar * > VFunSet
bool isFIObjNode(NodeID id) const
bool containConstantNode(const PointsTo &pts)
u32_t OnTheFlyIterBudgetForStat
Flag for iteration budget for on-the-fly statistics.
NodeID getFunPtr(const CallICFGNode *cs) const
Definition SVFIR.h:382
NodeID getGepObjVar(const BaseObjVar *baseObj, const APOffset &ap)
Get a field SVFIR Object node according to base mem obj and offset.
Definition SVFIR.cpp:439
OrderedMap< const CallICFGNode *, NodeID > CallSiteToFunPtrMap
Definition SVFIR.h:54
OrderedNodeSet & getAllValidPtrs()
Return valid pointers.
Definition SVFIR.h:140
const BaseObjVar * getBaseObject(NodeID id) const
Definition SVFIR.h:423
NodeID getBaseObjVar(NodeID id) const
Base and Offset methods for Value and Object node.
Definition SVFIR.h:479
ICFG * getICFG() const
Definition SVFIR.h:163
NodeBS & getAllFieldsObjVars(const BaseObjVar *obj)
Get all fields of an object.
Definition SVFIR.cpp:483
const CallSiteToFunPtrMap & getIndirectCallsites() const
Add/get indirect callsites.
Definition SVFIR.h:378
bool isBlkObjOrConstantObj(NodeID id) const
Get black hole and constant id.
Definition SVFIR.h:462
NodeID getFIObjVar(const BaseObjVar *obj) const
Get a field-insensitive obj SVFIR node according to a mem obj.
Definition SVFIR.h:449
NodeID getId() const
Get ID.
Definition SVFValue.h:158
for isBitcode
Definition BasicTypes.h:68
Set< NodeID > NodeSet
OrderedSet< NodeID > OrderedNodeSet
u32_t NodeID
Definition GeneralType.h:56
s64_t APOffset
Definition GeneralType.h:60
AliasResult
Definition SVFType.h:541
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47
Set< const FunObjVar * > VFunSet
Definition CHG.h:47