Static Value-Flow Analysis
Loading...
Searching...
No Matches
VersionedFlowSensitive.h
Go to the documentation of this file.
1//===- VersionedFlowSensitive.h -- Versioned flow-sensitive pointer analysis --------//
2
3/*
4 * VersionedFlowSensitiveAnalysis.h
5 *
6 * Created on: Jun 26, 2020
7 * Author: Mohamad Barbar
8 *
9 * The implementation is based on
10 * Mohamad Barbar, Yulei Sui and Shiping Chen. "Object Versioning for Flow-Sensitive Pointer Analysis".
11 * International Symposium on Code Generation and Optimization (CGO'21)
12 */
13
14#ifndef VFS_H_
15#define VFS_H_
16
17#include "Graphs/SVFGOPT.h"
18#include "MSSA/SVFGBuilder.h"
19#include "WPA/FlowSensitive.h"
20#include "WPA/WPAFSSolver.h"
22
23namespace SVF
24{
25
26class AndersenWaveDiff;
27
32{
34
35private:
37
38public:
41
42 typedef std::vector<ObjToVersionMap> LocVersionMap;
45
47 static const Version invalidVersion;
48
51
54
56 virtual void initialize() override;
57
59 virtual void finalize() override;
60
62 virtual const std::string PTAName() const override
63 {
64 return "VersionedFlowSensitive";
65 }
66
68
69 static inline bool classof(const VersionedFlowSensitive *)
70 {
71 return true;
72 }
73 static inline bool classof(const PointerAnalysis *pta)
74 {
75 return pta->getAnalysisTy() == VFS_WPA;
76 }
78
81 {
82 if (vfspta == nullptr)
83 {
85 vfspta->analyze();
86 }
87
88 return vfspta;
89 }
90
92 static void releaseVFSWPA()
93 {
94 if (vfspta) delete vfspta;
95 vfspta = nullptr;
96 }
97
98protected:
99 virtual bool processLoad(const LoadSVFGNode* load) override;
100 virtual bool processStore(const StoreSVFGNode* store) override;
101 virtual void processNode(NodeID n) override;
102 virtual void updateConnectedNodes(const SVFGEdgeSetTy& newEdges) override;
103
105 virtual bool propAlongIndirectEdge(const IndirectSVFGEdge*) override
106 {
107 return false;
108 }
109
111 virtual void cluster(void) override;
112
113private:
115 void prelabel(void);
117 void meldLabel(void);
119 static bool meld(MeldVersion &mv1, const MeldVersion &mv2);
120
123
128
131 void propagateVersion(const NodeID o, const Version v, const Version vp, bool time=true);
132
134 virtual void buildIsStoreLoadMaps(void);
135
137 virtual bool isStore(const NodeID l) const;
138
140 virtual bool isLoad(const NodeID l) const;
141
143 virtual void buildDeltaMaps(void);
144
147 virtual bool delta(const NodeID l) const;
148
151 virtual bool deltaSource(const NodeID l) const;
152
154 Version getVersion(const NodeID l, const NodeID o, const LocVersionMap &lvm) const;
155
157 Version getConsume(const NodeID l, const NodeID o) const;
158
160 Version getYield(const NodeID l, const NodeID o) const;
161
163 void setVersion(const NodeID l, const NodeID o, const Version v, LocVersionMap &lvm);
164
166 void setConsume(const NodeID l, const NodeID o, const Version v);
167
169 void setYield(const NodeID l, const NodeID o, const Version v);
170
172 std::vector<Version> &getReliantVersions(const NodeID o, const Version v);
173
175 NodeBS &getStmtReliance(const NodeID o, const Version v);
176
178 void dumpReliances(void) const;
179
181 void dumpLocVersionMaps(void) const;
182
183 void solveAndwritePtsToFile(const std::string& filename) override;
184
185 void writeVersionedAnalysisResultToFile(const std::string& filename);
186
187 void readVersionedAnalysisResultFromFile(std::ifstream& F);
188
189 void readPtsFromFile(const std::string& filename) override;
190
192 static void dumpMeldVersion(MeldVersion &v);
193
199
204
208
209 // Maps an object o to o' if o is equivalent to o' with respect to
210 // versioning. Thus, we don't need to store the versions of o and look
211 // up those for o' instead.
213
217
219
222
225 std::vector<bool> deltaMap;
226
230 std::vector<bool> deltaSourceMap;
231
233 std::vector<bool> isStoreMap;
234
236 std::vector<bool> isLoadMap;
237
239
242
247
249
250 class SCC
251 {
252 private:
253 typedef struct NodeData
254 {
255 int index;
258 } NodeData;
259
260 public:
272 static unsigned detectSCCs(VersionedFlowSensitive *vfs,
273 const SVFG *svfg, const NodeID object,
274 const std::vector<const SVFGNode *> &startingNodes,
275 std::vector<int> &partOf,
276 std::vector<const IndirectSVFGEdge *> &footprint);
277
278 private:
280 static void visit(VersionedFlowSensitive *vfs,
281 const NodeID object,
282 std::vector<int> &partOf,
283 std::vector<const IndirectSVFGEdge *> &footprint,
284 std::vector<NodeData> &nodeData,
285 std::stack<const SVFGNode *> &stack,
286 int &index,
287 int &currentSCC,
288 const SVFGNode *v);
289 };
290};
291
292} // End namespace SVF
293
294#endif /* VFS_H_ */
newitem type
Definition cJSON.cpp:2739
cJSON * n
Definition cJSON.cpp:2558
int index
Definition cJSON.h:170
VersionedPTData< NodeID, NodeSet, NodeID, PointsTo, VersionedVar, Set< VersionedVar > > VersionedPTDataTy
SVFG::SVFGEdgeSetTy SVFGEdgeSetTy
void analyze() override
Flow sensitive analysis.
PTATY
Pointer analysis type list.
@ VFS_WPA
Versioned sparse flow-sensitive WPA.
PTATY getAnalysisTy() const
Type of pointer analysis.
static void visit(VersionedFlowSensitive *vfs, const NodeID object, std::vector< int > &partOf, std::vector< const IndirectSVFGEdge * > &footprint, std::vector< NodeData > &nodeData, std::stack< const SVFGNode * > &stack, int &index, int &currentSCC, const SVFGNode *v)
Called by detectSCCs then called recursively.
static unsigned detectSCCs(VersionedFlowSensitive *vfs, const SVFG *svfg, const NodeID object, const std::vector< const SVFGNode * > &startingNodes, std::vector< int > &partOf, std::vector< const IndirectSVFGEdge * > &footprint)
Version getYield(const NodeID l, const NodeID o) const
Returns the yielded version of o at l. If no such version exists, returns invalidVersion.
void dumpLocVersionMaps(void) const
Dumps maps consume and yield.
BVDataPTAImpl::VersionedPTDataTy * vPtD
Points-to DS for working with versions.
LocVersionMap yield
Actual yield map. Yield analogue to consume.
std::vector< bool > isStoreMap
isStoreMap[l] means SVFG node l is a store node.
virtual void updateConnectedNodes(const SVFGEdgeSetTy &newEdges) override
Update nodes connected during updating call graph.
virtual bool processLoad(const LoadSVFGNode *load) override
static bool meld(MeldVersion &mv1, const MeldVersion &mv2)
Melds v2 into v1 (in place), returns whether a change occurred.
VersionRelianceMap versionReliance
o -> (version -> versions which rely on it).
u32_t numPrelabelVersions
Number of versions created during prelabeling.
void removeAllIndirectSVFGEdges(void)
Removes all indirect edges in the SVFG.
Map< NodeID, NodeID > equivalentObject
void readVersionedAnalysisResultFromFile(std::ifstream &F)
virtual void buildDeltaMaps(void)
Fills in deltaMap and deltaSourceMap for the SVFG.
NodeBS & getStmtReliance(const NodeID o, const Version v)
Returns the statements which rely on o:v.
static const Version invalidVersion
If this version appears, there has been an error.
virtual bool deltaSource(const NodeID l) const
double meldLabelingTime
Time to meld label SVFG.
static VersionedFlowSensitive * vfspta
static VersionedVar atKey(NodeID, Version)
Return key into vPtD for address-taken var of a specific version.
Version getVersion(const NodeID l, const NodeID o, const LocVersionMap &lvm) const
Shared code for getConsume and getYield. They wrap this function.
std::vector< bool > isLoadMap
isLoadMap[l] means SVFG node l is a load node.
virtual const std::string PTAName() const override
Get PTA name.
static void releaseVFSWPA()
Release flow-sensitive pointer analysis.
static void dumpMeldVersion(MeldVersion &v)
Dumps a MeldVersion to stdout.
double prelabelingTime
Time to prelabel SVFG.
void propagateVersion(NodeID o, Version v)
void prelabel(void)
Prelabel the SVFG: set y(o) for stores and c(o) for delta nodes to a new version.
virtual void initialize() override
Initialize analysis.
virtual void processNode(NodeID n) override
Handle various constraints.
virtual void buildIsStoreLoadMaps(void)
Fills in isStoreMap and isLoadMap.
static VersionedFlowSensitive * createVFSWPA(SVFIR *_pag)
Create single instance of versioned flow-sensitive points-to analysis.
virtual bool isLoad(const NodeID l) const
Returns true if l is a load node.
void dumpReliances(void) const
Dumps versionReliance and stmtReliance.
Map< VersionedVar, const DummyVersionPropSVFGNode * > VarToPropNodeMap
virtual bool delta(const NodeID l) const
std::vector< ObjToVersionMap > LocVersionMap
virtual bool processStore(const StoreSVFGNode *store) override
void setConsume(const NodeID l, const NodeID o, const Version v)
Sets the consumed version of o at l to v.
virtual bool isStore(const NodeID l) const
Returns true if l is a store node.
void meldLabel(void)
Meld label the prelabeled SVFG.
void writeVersionedAnalysisResultToFile(const std::string &filename)
static bool classof(const PointerAnalysis *pta)
void setYield(const NodeID l, const NodeID o, const Version v)
Sets the yielded version of o at l to v.
void solveAndwritePtsToFile(const std::string &filename) override
virtual bool propAlongIndirectEdge(const IndirectSVFGEdge *) override
Override to do nothing. Instead, we will use propagateVersion when necessary.
Map< NodeID, Map< Version, std::vector< Version > > > VersionRelianceMap
(o -> (v -> versions with rely on o:v).
virtual void finalize() override
Finalize analysis.
void setVersion(const NodeID l, const NodeID o, const Version v, LocVersionMap &lvm)
Shared code for setConsume and setYield. They wrap this function.
std::vector< Version > & getReliantVersions(const NodeID o, const Version v)
Returns the versions of o which rely on o:v.
void readPtsFromFile(const std::string &filename) override
virtual void cluster(void) override
Override since we want to assign different weights based on versioning.
Map< NodeID, Map< Version, NodeBS > > stmtReliance
o x version -> statement nodes which rely on that o/version.
double versionPropTime
Time to propagate versions to versions which rely on them.
Version getConsume(const NodeID l, const NodeID o) const
Returns the consumed version of o at l. If no such version exists, returns invalidVersion.
Map< NodeID, Version > ObjToVersionMap
static bool classof(const VersionedFlowSensitive *)
Methods to support type inquiry through isa, cast, and dyn_cast.
u32_t numPrelabeledNodes
Additional statistics.
for isBitcode
Definition BasicTypes.h:68
std::pair< NodeID, Version > VersionedVar
u32_t NodeID
Definition GeneralType.h:56
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned Version
unsigned u32_t
Definition GeneralType.h:47