Static Value-Flow Analysis
Loading...
Searching...
No Matches
WPAFSSolver.h
Go to the documentation of this file.
1//===- WPAFSSolver.h -- WPA flow-sensitive solver-----------------------------//
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 * @file: WPAFSSolver.h
25 * @author: yesen
26 * @date: 14/02/2014
27 * @version: 1.0
28 *
29 * @section LICENSE
30 *
31 * @section DESCRIPTION
32 *
33 */
34
35
36#ifndef WPAFSSOLVER_H_
37#define WPAFSSOLVER_H_
38
39#include "WPA/WPASolver.h"
40
41namespace SVF
42{
43
47template<class GraphType>
48class WPAFSSolver : public WPASolver<GraphType>
49{
50public:
55 virtual ~WPAFSSolver() {}
56
58 virtual inline NodeID sccRepNode(NodeID id) const
59 {
60 return id;
61 }
62
63protected:
65
68 {
70 this->getSCCDetector()->find();
71
72 assert(nodeStack.empty() && "node stack is not empty, some nodes are not popped properly.");
73
76 FIFOWorkList<NodeID> revTopoStack = this->getSCCDetector()->revTopoNodeStack();
77 while (!revTopoStack.empty())
78 {
79 NodeID nodeId = revTopoStack.front();
80 revTopoStack.pop();
81 const NodeBS& subNodes = this->getSCCDetector()->subNodes(nodeId);
82 for (NodeBS::iterator it = subNodes.begin(), eit = subNodes.end(); it != eit; ++it)
83 {
85 nodeStack.push(*it);
86 }
87 }
88
89 return nodeStack;
90 }
91};
92
93
94
98template<class GraphType>
99class WPASCCSolver : public WPAFSSolver<GraphType>
100{
101public:
105
107
108 virtual ~WPASCCSolver() {}
109
110protected:
111 virtual void solve()
112 {
115 while (!this->isWorklistEmpty())
116 this->popFromWorklist();
117
118 NodeStack& nodeStack = this->SCCDetect();
119
120 while (!nodeStack.empty())
121 {
122 NodeID rep = nodeStack.top();
123 nodeStack.pop();
124
125 setCurrentSCC(rep);
126
127 const NodeBS& sccNodes = this->getSCCDetector()->subNodes(rep);
128 for (NodeBS::iterator it = sccNodes.begin(), eit = sccNodes.end(); it != eit; ++it)
129 this->pushIntoWorklist(*it);
130
131 while (!this->isWorklistEmpty())
132 this->processNode(this->popFromWorklist());
133 }
134 }
135
137 virtual void propagate(GNODE* v)
138 {
139 child_iterator EI = GTraits::direct_child_begin(v);
140 child_iterator EE = GTraits::direct_child_end(v);
141 for (; EI != EE; ++EI)
142 {
143 if (this->propFromSrcToDst(*(EI.getCurrent())))
145 }
146 }
147
148 virtual inline void addNodeIntoWorkList(NodeID node)
149 {
150 if (isInCurrentSCC(node))
151 this->pushIntoWorklist(node);
152 }
153
154 inline bool isInCurrentSCC(NodeID node)
155 {
156 return (const_cast<NodeBS&>(this->getSCCDetector()->subNodes(curSCCID))).test(node);
157 }
158 inline void setCurrentSCC(NodeID id)
159 {
160 curSCCID = this->getSCCDetector()->repNode(id);
161 }
162
164};
165
166
167
171template<class GraphType>
172class WPAMinimumSolver : public WPASCCSolver<GraphType>
173{
174public:
178
180
181 virtual ~WPAMinimumSolver() {}
182
183protected:
184 virtual void solve()
185 {
186 bool solveAll = true;
189 if (!this->isWorklistEmpty())
190 {
191 solveAll = false;
192 while (!this->isWorklistEmpty())
194 }
195
196 NodeStack& nodeStack = this->SCCDetect();
197
198 while (!nodeStack.empty())
199 {
200 NodeID rep = nodeStack.top();
201 nodeStack.pop();
202
203 this->setCurrentSCC(rep);
204
205 NodeBS sccNodes = this->getSCCDetector()->subNodes(rep);
206 if (solveAll == false)
208
209 for (NodeBS::iterator it = sccNodes.begin(), eit = sccNodes.end(); it != eit; ++it)
210 this->pushIntoWorklist(*it);
211
212 while (!this->isWorklistEmpty())
213 this->processNode(this->popFromWorklist());
214
215 removeCandidates(sccNodes);
216 }
217 }
218
219 virtual inline void addNodeIntoWorkList(NodeID node)
220 {
221 if (this->isInCurrentSCC(node))
222 this->pushIntoWorklist(node);
223 else
224 addNewCandidate(node);
225 }
226
227private:
228 inline void addNewCandidate(NodeID node)
229 {
230 candidates.set(node);
231 }
232 inline const NodeBS& getCandidates() const
233 {
234 return candidates;
235 }
240
242};
243
244} // End namespace SVF
245
246#endif /* WPAFSSOLVER_H_ */
bool empty() const
Definition WorkList.h:146
void set(unsigned Idx)
bool intersectWithComplement(const SparseBitVector &RHS)
iterator begin() const
virtual NodeID sccRepNode(NodeID id) const
SCC methods.
Definition WPAFSSolver.h:58
NodeStack nodeStack
stack used for processing nodes.
Definition WPAFSSolver.h:64
WPAFSSolver()
Constructor.
Definition WPAFSSolver.h:52
virtual NodeStack & SCCDetect()
SCC detection.
Definition WPAFSSolver.h:67
virtual ~WPAFSSolver()
Destructor.
Definition WPAFSSolver.h:55
const NodeBS & getCandidates() const
NodeBS candidates
nodes which need to be analyzed in current iteration.
WPASolver< GraphType >::GTraits GTraits
void addNewCandidate(NodeID node)
void removeCandidates(const NodeBS &nodes)
virtual ~WPAMinimumSolver()
WPASolver< GraphType >::child_iterator child_iterator
WPASolver< GraphType >::GNODE GNODE
virtual void addNodeIntoWorkList(NodeID node)
virtual void solve()
WPASolver< GraphType >::GTraits GTraits
NodeID curSCCID
index of current SCC.
void setCurrentSCC(NodeID id)
virtual void addNodeIntoWorkList(NodeID node)
WPASolver< GraphType >::GNODE GNODE
virtual ~WPASCCSolver()
WPASolver< GraphType >::child_iterator child_iterator
virtual void solve()
bool isInCurrentSCC(NodeID node)
virtual void propagate(GNODE *v)
Propagation for the solving, to be implemented in the child class.
NodeID Node_Index(GNODE node)
Get node ID.
Definition WPASolver.h:183
NodeID popFromWorklist()
Worklist operations.
Definition WPASolver.h:151
GTraits::NodeRef GNODE
Definition WPASolver.h:49
SCC * getSCCDetector() const
Get SCC detector.
Definition WPASolver.h:67
virtual void pushIntoWorklist(NodeID id)
Definition WPASolver.h:156
GTraits::ChildIteratorType child_iterator
Definition WPASolver.h:51
virtual bool propFromSrcToDst(GEDGE *)
Propagate information from source to destination node, to be implemented in the child class.
Definition WPASolver.h:138
bool isWorklistEmpty()
Definition WPASolver.h:160
virtual void processNode(NodeID)
Following methods are to be implemented in child class, in order to achieve a fully worked PTA.
Definition WPASolver.h:122
for isBitcode
Definition BasicTypes.h:68
std::stack< NodeID > NodeStack
u32_t NodeID
Definition GeneralType.h:56
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
iter_range< typename GenericGraphTraits< GraphType >::nodes_iterator > nodes(const GraphType &G)