Static Value-Flow Analysis
Loading...
Searching...
No Matches
FlowSensitive.h
Go to the documentation of this file.
1//===- FlowSensitive.h -- Flow-sensitive pointer analysis---------------------//
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 * FlowSensitiveAnalysis.h
25 *
26 * Created on: Oct 28, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef FLOWSENSITIVEANALYSIS_H_
31#define FLOWSENSITIVEANALYSIS_H_
32
34#include "Graphs/SVFGOPT.h"
36#include "MSSA/SVFGBuilder.h"
37#include "WPA/WPAFSSolver.h"
38
39namespace SVF
40{
41
42class AndersenWaveDiff;
43
49{
50 friend class FlowSensitiveStat;
51protected:
53
54public:
58
73
75 ~FlowSensitive() override = default;
76
79 {
80 if (fspta == nullptr)
81 {
82 fspta = std::unique_ptr<FlowSensitive>(new FlowSensitive(_pag));
83 fspta->analyze();
84 }
85 return fspta.get();
86 }
87
89 static void releaseFSWPA()
90 {
91 fspta = nullptr;
92 }
93
95 virtual bool runOnModule()
96 {
97 return false;
98 }
99
101 void analyze() override;
102
103 virtual void solveAndwritePtsToFile(const std::string& filename);
104
105 virtual void readPtsFromFile(const std::string& filename);
106
107 virtual void solveConstraints();
108
110 void initialize() override;
111
113 void finalize() override;
114
116 const std::string PTAName() const override
117 {
118 return "FlowSensitive";
119 }
120
122
123 static inline bool classof(const FlowSensitive *)
124 {
125 return true;
126 }
127 static inline bool classof(const PointerAnalysis *pta)
128 {
129 return pta->getAnalysisTy() == FSSPARSE_WPA;
130 }
132
134 inline SVFG* getSVFG() const
135 {
136 return svfg;
137 }
138
139protected:
141 NodeStack& SCCDetect() override;
142
144
145
146 bool propFromSrcToDst(SVFGEdge* edge) override;
148 virtual bool propAlongDirectEdge(const DirectSVFGEdge* edge);
150 virtual bool propAlongIndirectEdge(const IndirectSVFGEdge* edge);
152 virtual bool propVarPtsFromSrcToDst(NodeID var, const SVFGNode* src, const SVFGNode* dst);
155 virtual bool propagateFromAPToFP(const ActualParmSVFGNode* ap, const SVFGNode* dst);
158 virtual bool propagateFromFRToAR(const FormalRetSVFGNode* fr, const SVFGNode* dst);
160 virtual bool weakUpdateOutFromIn(const SVFGNode* node)
161 {
162 return getDFPTDataTy()->updateAllDFOutFromIn(node->getId(),0,false);
163 }
166 {
167 return getDFPTDataTy()->updateAllDFOutFromIn(node->getId(),singleton,true);
168 }
170
173
174 bool propVarPtsAfterCGUpdated(NodeID var, const SVFGNode* src, const SVFGNode* dst);
175
177 {
178 return getDFPTDataTy()->updateAllDFInFromOut(srcStmt->getId(), srcVar, dstStmt->getId(),dstVar);
179 }
180 virtual inline bool propDFInToIn(const SVFGNode* srcStmt, NodeID srcVar, const SVFGNode* dstStmt, NodeID dstVar)
181 {
182 return getDFPTDataTy()->updateAllDFInFromIn(srcStmt->getId(), srcVar, dstStmt->getId(),dstVar);
183 }
185
187
189 {
190 return getDFPTDataTy()->updateDFOutFromIn(srcStmt->getId(),srcVar, dstStmt->getId(),dstVar);
191 }
193 {
194 return getDFPTDataTy()->updateDFInFromIn(srcStmt->getId(),srcVar, dstStmt->getId(),dstVar);
195 }
197 {
198 return getDFPTDataTy()->updateDFInFromOut(srcStmt->getId(),srcVar, dstStmt->getId(),dstVar);
199 }
200
201 virtual inline bool unionPtsFromIn(const SVFGNode* stmt, NodeID srcVar, NodeID dstVar)
202 {
203 return getDFPTDataTy()->updateTLVPts(stmt->getId(),srcVar,dstVar);
204 }
205 virtual inline bool unionPtsFromTop(const SVFGNode* stmt, NodeID srcVar, NodeID dstVar)
206 {
207 return getDFPTDataTy()->updateATVPts(srcVar,stmt->getId(),dstVar);
208 }
209
211 {
212 getDFPTDataTy()->clearAllDFOutUpdatedVar(stmt->getId());
213 }
215
217
218 void processNode(NodeID nodeId) override;
219 bool processSVFGNode(SVFGNode* node);
220 virtual bool processAddr(const AddrSVFGNode* addr);
221 virtual bool processCopy(const CopySVFGNode* copy);
222 virtual bool processPhi(const PHISVFGNode* phi);
223 virtual bool processGep(const GepSVFGNode* edge);
224 virtual bool processLoad(const LoadSVFGNode* load);
225 virtual bool processStore(const StoreSVFGNode* store);
227
229
230
231 bool updateCallGraph(const CallSiteToFunPtrMap& callsites) override;
235 virtual void updateConnectedNodes(const SVFGEdgeSetTy& edges);
237
239 bool isStrongUpdate(const SVFGNode* node, NodeID& singleton);
240
242 virtual void countAliases(Set<std::pair<NodeID, NodeID>> cmp, unsigned *mayAliases, unsigned *noAliases);
243
246
247 inline const PointsTo& getDFInPtsSet(const SVFGNode* stmt, const NodeID node)
248 {
249 return getDFPTDataTy()->getDFInPtsSet(stmt->getId(),node);
250 }
251 inline const PointsTo& getDFOutPtsSet(const SVFGNode* stmt, const NodeID node)
252 {
253 return getDFPTDataTy()->getDFOutPtsSet(stmt->getId(),node);
254 }
256
260 inline const DFInOutMap& getDFInputMap() const
261 {
262 return getMutDFPTDataTy()->getDFIn();
263 }
264 inline const DFInOutMap& getDFOutputMap() const
265 {
266 return getMutDFPTDataTy()->getDFOut();
267 }
269
272 virtual void cluster(void);
274 virtual void plainMap(void) const;
275
276 static std::unique_ptr<FlowSensitive> fspta;
279
281 std::vector<std::pair<hclust_fast_methods, std::vector<NodeID>>> candidateMappings;
282
284
294
298
299 double solveTime;
300 double sccTime;
301 double processTime;
305 double updateTime;
306 double addrTime;
307 double copyTime;
308 double gepTime;
309 double loadTime;
310 double storeTime;
311 double phiTime;
313
316
317 void svfgStat();
318};
319
320} // End namespace SVF
321
322#endif /* FLOWSENSITIVEANALYSIS_H_ */
newitem type
Definition cJSON.cpp:2739
copy
Definition cJSON.cpp:414
MutDFPTDataTy * getMutDFPTDataTy() const
DFPTDataTy * getDFPTDataTy() const
BVDataPTAImpl::MutDFPTDataTy MutDFPTDataTy
bool updateOutFromIn(const SVFGNode *srcStmt, NodeID srcVar, const SVFGNode *dstStmt, NodeID dstVar)
Update data-flow points-to data.
~FlowSensitive() override=default
Destructor.
void processNode(NodeID nodeId) override
Handle various constraints.
u32_t numOfProcessedLoad
Number of processed Phi node.
static bool classof(const PointerAnalysis *pta)
const PointsTo & getDFInPtsSet(const SVFGNode *stmt, const NodeID node)
Get points-to set for a node from data flow IN/OUT set at a statement.
virtual void solveConstraints()
virtual bool unionPtsFromIn(const SVFGNode *stmt, NodeID srcVar, NodeID dstVar)
virtual void updateConnectedNodes(const SVFGEdgeSetTy &edges)
Update nodes connected during updating call graph.
u32_t numOfProcessedCopy
Number of processed Addr node.
virtual void countAliases(Set< std::pair< NodeID, NodeID > > cmp, unsigned *mayAliases, unsigned *noAliases)
Fills may/noAliases for the location/pointer pairs in cmp.
double gepTime
time of handling gep edges
static std::unique_ptr< FlowSensitive > fspta
double indirectPropaTime
time of points-to propagation of top-level pointers
virtual bool propagateFromAPToFP(const ActualParmSVFGNode *ap, const SVFGNode *dst)
double addrTime
time of handling address edges
virtual bool propagateFromFRToAR(const FormalRetSVFGNode *fr, const SVFGNode *dst)
virtual bool propDFInToIn(const SVFGNode *srcStmt, NodeID srcVar, const SVFGNode *dstStmt, NodeID dstVar)
const DFInOutMap & getDFOutputMap() const
NodeStack & SCCDetect() override
SCC detection.
double solveTime
time of solve.
bool isStrongUpdate(const SVFGNode *node, NodeID &singleton)
Return TRUE if this is a strong update STORE statement.
virtual void readPtsFromFile(const std::string &filename)
virtual bool unionPtsFromTop(const SVFGNode *stmt, NodeID srcVar, NodeID dstVar)
const DFInOutMap & getDFInputMap() const
virtual bool runOnModule()
We start from here.
virtual void plainMap(void) const
Sets the global best mapping as a plain mapping, i.e. n -> n.
AndersenWaveDiff * ander
virtual bool propDFOutToIn(const SVFGNode *srcStmt, NodeID srcVar, const SVFGNode *dstStmt, NodeID dstVar)
u32_t numOfProcessedStore
Number of processed Load node.
SVFG::SVFGEdgeSetTy SVFGEdgeSetTy
const PointsTo & getDFOutPtsSet(const SVFGNode *stmt, const NodeID node)
void analyze() override
Flow sensitive analysis.
BVDataPTAImpl::MutDFPTDataTy::PtsMap PtsMap
double storeTime
time of store edges
SVFG * getSVFG() const
Return SVFG.
virtual bool updateInFromIn(const SVFGNode *srcStmt, NodeID srcVar, const SVFGNode *dstStmt, NodeID dstVar)
double copyTime
time of handling copy edges
bool propFromSrcToDst(SVFGEdge *edge) override
Propagation.
u32_t numOfProcessedGep
Number of processed Copy node.
virtual void cluster(void)
virtual bool strongUpdateOutFromIn(const SVFGNode *node, NodeID singleton)
Handle strong updates.
void finalize() override
Finalize analysis.
void clearAllDFOutVarFlag(const SVFGNode *stmt)
bool processSVFGNode(SVFGNode *node)
virtual bool processLoad(const LoadSVFGNode *load)
bool propVarPtsAfterCGUpdated(NodeID var, const SVFGNode *src, const SVFGNode *dst)
virtual bool processPhi(const PHISVFGNode *phi)
virtual bool processStore(const StoreSVFGNode *store)
u32_t maxSCCSize
Number of processed mssa node.
virtual bool processCopy(const CopySVFGNode *copy)
double loadTime
time of load edges
FlowSensitive(SVFIR *_pag, PTATY type=FSSPARSE_WPA)
Constructor.
bool updateCallGraph(const CallSiteToFunPtrMap &callsites) override
Update call graph.
virtual bool weakUpdateOutFromIn(const SVFGNode *node)
Handle weak updates.
virtual bool processAddr(const AddrSVFGNode *addr)
u32_t numOfProcessedActualParam
Number of processed Store node.
u32_t numOfProcessedPhi
Number of processed Gep node.
double propagationTime
time of points-to propagation.
const std::string PTAName() const override
Get PTA name.
static bool classof(const FlowSensitive *)
Methods for support type inquiry through isa, cast, and dyn_cast.
virtual bool propAlongDirectEdge(const DirectSVFGEdge *edge)
Propagate points-to information along a DIRECT SVFG edge.
void initialize() override
Initialize analysis.
void connectCallerAndCallee(const CallEdgeMap &newEdges, SVFGEdgeSetTy &edges)
Connect nodes in SVFG.
std::vector< std::pair< hclust_fast_methods, std::vector< NodeID > > > candidateMappings
Save candidate mappings for evaluation's sake.
virtual bool processGep(const GepSVFGNode *edge)
u32_t numOfProcessedFormalRet
Number of processed actual param node.
double directPropaTime
time of points-to propagation of address-taken objects
double processTime
time of processNode.
u32_t numOfProcessedAddr
Statistics.
virtual bool propVarPtsFromSrcToDst(NodeID var, const SVFGNode *src, const SVFGNode *dst)
Propagate points-to information of a certain variable from src to dst.
static void releaseFSWPA()
Release flow-sensitive pointer analysis.
virtual bool propAlongIndirectEdge(const IndirectSVFGEdge *edge)
Propagate points-to information along an INDIRECT SVFG edge.
double phiTime
time of phi nodes.
static FlowSensitive * createFSWPA(SVFIR *_pag)
Create single instance of flow-sensitive pointer analysis.
double sccTime
time of SCC detection.
double updateTime
time of strong/weak updates.
virtual bool updateInFromOut(const SVFGNode *srcStmt, NodeID srcVar, const SVFGNode *dstStmt, NodeID dstVar)
u32_t numOfProcessedMSSANode
Number of processed formal ret node.
BVDataPTAImpl::MutDFPTDataTy::DFPtsMap DFInOutMap
virtual void solveAndwritePtsToFile(const std::string &filename)
double updateCallGraphTime
time of updating call graph
Map< LocID, PtsMap > DFPtsMap
Data-flow point-to map.
const DFPtsMap & getDFIn()
const DFPtsMap & getDFOut()
BaseMutPTData::PtsMap PtsMap
PTATY
Pointer analysis type list.
@ FSSPARSE_WPA
Sparse flow sensitive WPA.
OrderedMap< const CallICFGNode *, FunctionSet > CallEdgeMap
PTATY getAnalysisTy() const
Type of pointer analysis.
SVFIR::CallSiteToFunPtrMap CallSiteToFunPtrMap
u32_t OnTheFlyIterBudgetForStat
Flag for iteration budget for on-the-fly statistics.
NodeID getId() const
Get ID.
Definition SVFValue.h:158
VFGEdge::SVFGEdgeSetTy SVFGEdgeSetTy
Definition VFG.h:78
u32_t iterationForPrintStat
print out statistics for i-th iteration
Definition WPASolver.h:173
for isBitcode
Definition BasicTypes.h:68
std::stack< NodeID > NodeStack
WPAFSSolver< SVFG * > WPASVFGFSSolver
u32_t NodeID
Definition GeneralType.h:56
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47
std::unordered_set< Key, Hash, KeyEqual, Allocator > Set
Definition GeneralType.h:96