Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
SVF::WPAMinimumSolver< GraphType > Class Template Reference

#include <WPAFSSolver.h>

Inheritance diagram for SVF::WPAMinimumSolver< GraphType >:
SVF::WPASCCSolver< GraphType > SVF::WPAFSSolver< GraphType > SVF::WPASolver< GraphType >

Public Types

typedef WPASolver< GraphType >::GTraits GTraits
 
typedef WPASolver< GraphType >::GNODE GNODE
 
typedef WPASolver< GraphType >::child_iterator child_iterator
 
- Public Types inherited from SVF::WPASCCSolver< GraphType >
typedef WPASolver< GraphType >::GTraits GTraits
 
typedef WPASolver< GraphType >::GNODE GNODE
 
typedef WPASolver< GraphType >::child_iterator child_iterator
 
- Public Types inherited from SVF::WPASolver< GraphType >
typedef SVF::GenericGraphTraits< GraphTypeGTraits
 Define the GTraits and node iterator for printing.
 
typedef GTraits::NodeRef GNODE
 
typedef GTraits::EdgeType GEDGE
 
typedef GTraits::ChildIteratorType child_iterator
 
typedef SCCDetection< GraphTypeSCC
 
typedef FIFOWorkList< NodeIDWorkList
 

Public Member Functions

 WPAMinimumSolver ()
 
virtual ~WPAMinimumSolver ()
 
- Public Member Functions inherited from SVF::WPASCCSolver< GraphType >
 WPASCCSolver ()
 
virtual ~WPASCCSolver ()
 
- Public Member Functions inherited from SVF::WPAFSSolver< GraphType >
 WPAFSSolver ()
 Constructor.
 
virtual ~WPAFSSolver ()
 Destructor.
 
virtual NodeID sccRepNode (NodeID id) const
 SCC methods.
 

Protected Member Functions

virtual void solve ()
 
virtual void addNodeIntoWorkList (NodeID node)
 
- Protected Member Functions inherited from SVF::WPASCCSolver< GraphType >
virtual void propagate (GNODE *v)
 Propagation for the solving, to be implemented in the child class.
 
bool isInCurrentSCC (NodeID node)
 
void setCurrentSCC (NodeID id)
 
- Protected Member Functions inherited from SVF::WPAFSSolver< GraphType >
virtual NodeStackSCCDetect ()
 SCC detection.
 
- Protected Member Functions inherited from SVF::WPASolver< GraphType >
 WPASolver ()
 Constructor.
 
virtual ~WPASolver ()=default
 Destructor.
 
SCCgetSCCDetector () const
 Get SCC detector.
 
const GraphType graph ()
 Get/Set graph methods.
 
void setGraph (GraphType g)
 
virtual NodeStackSCCDetect (NodeSet &candidates)
 
virtual void initWorklist ()
 
virtual void solveWorklist ()
 
virtual void processNode (NodeID)
 Following methods are to be implemented in child class, in order to achieve a fully worked PTA.
 
virtual void collapseFields ()
 collapse positive weight cycles of a graph
 
virtual bool propFromSrcToDst (GEDGE *)
 Propagate information from source to destination node, to be implemented in the child class.
 
NodeID popFromWorklist ()
 Worklist operations.
 
virtual void pushIntoWorklist (NodeID id)
 
bool isWorklistEmpty ()
 
bool isInWorklist (NodeID id)
 
GNODENode (NodeID id)
 Get node on the graph.
 
NodeID Node_Index (GNODE node)
 Get node ID.
 

Private Member Functions

void addNewCandidate (NodeID node)
 
const NodeBSgetCandidates () const
 
void removeCandidates (const NodeBS &nodes)
 

Private Attributes

NodeBS candidates
 nodes which need to be analyzed in current iteration.
 

Additional Inherited Members

- Public Attributes inherited from SVF::WPASolver< GraphType >
u32_t numOfIteration
 num of iterations during constraint solving
 
- Protected Attributes inherited from SVF::WPASCCSolver< GraphType >
NodeID curSCCID
 index of current SCC.
 
- Protected Attributes inherited from SVF::WPAFSSolver< GraphType >
NodeStack nodeStack
 stack used for processing nodes.
 
- Protected Attributes inherited from SVF::WPASolver< GraphType >
bool reanalyze
 Reanalyze if any constraint value changed.
 
u32_t iterationForPrintStat
 print out statistics for i-th iteration
 
GraphType _graph
 Graph.
 
std::unique_ptr< SCCscc
 SCC.
 
WorkList worklist
 Worklist for resolution.
 

Detailed Description

template<class GraphType>
class SVF::WPAMinimumSolver< GraphType >

Only solve nodes which need to be analyzed.

Definition at line 172 of file WPAFSSolver.h.

Member Typedef Documentation

◆ child_iterator

template<class GraphType >
typedef WPASolver<GraphType>::child_iterator SVF::WPAMinimumSolver< GraphType >::child_iterator

Definition at line 177 of file WPAFSSolver.h.

◆ GNODE

Definition at line 176 of file WPAFSSolver.h.

◆ GTraits

Definition at line 175 of file WPAFSSolver.h.

Constructor & Destructor Documentation

◆ WPAMinimumSolver()

template<class GraphType >
SVF::WPAMinimumSolver< GraphType >::WPAMinimumSolver ( )
inline

Definition at line 179 of file WPAFSSolver.h.

llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ ~WPAMinimumSolver()

Definition at line 181 of file WPAFSSolver.h.

181{}

Member Function Documentation

◆ addNewCandidate()

template<class GraphType >
void SVF::WPAMinimumSolver< GraphType >::addNewCandidate ( NodeID  node)
inlineprivate

Definition at line 228 of file WPAFSSolver.h.

229 {
230 candidates.set(node);
231 }
void set(unsigned Idx)
NodeBS candidates
nodes which need to be analyzed in current iteration.

◆ addNodeIntoWorkList()

template<class GraphType >
virtual void SVF::WPAMinimumSolver< GraphType >::addNodeIntoWorkList ( NodeID  node)
inlineprotectedvirtual

Reimplemented from SVF::WPASCCSolver< GraphType >.

Definition at line 219 of file WPAFSSolver.h.

220 {
221 if (this->isInCurrentSCC(node))
222 this->pushIntoWorklist(node);
223 else
224 addNewCandidate(node);
225 }
void addNewCandidate(NodeID node)
bool isInCurrentSCC(NodeID node)
virtual void pushIntoWorklist(NodeID id)
Definition WPASolver.h:156

◆ getCandidates()

template<class GraphType >
const NodeBS & SVF::WPAMinimumSolver< GraphType >::getCandidates ( ) const
inlineprivate

Definition at line 232 of file WPAFSSolver.h.

233 {
234 return candidates;
235 }

◆ removeCandidates()

template<class GraphType >
void SVF::WPAMinimumSolver< GraphType >::removeCandidates ( const NodeBS nodes)
inlineprivate

Definition at line 236 of file WPAFSSolver.h.

237 {
239 }
bool intersectWithComplement(const SparseBitVector &RHS)
iter_range< typename GenericGraphTraits< GraphType >::nodes_iterator > nodes(const GraphType &G)

◆ solve()

template<class GraphType >
virtual void SVF::WPAMinimumSolver< GraphType >::solve ( )
inlineprotectedvirtual

If the worklist is not empty, then only solve these nodes contained in worklist. Otherwise all nodes in the graph will be processed.

get nodes which need to be processed in this SCC cycle

remove nodes which have been processed from the candidate set

Reimplemented from SVF::WPASCCSolver< GraphType >.

Definition at line 184 of file WPAFSSolver.h.

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 }
SparseBitVectorIterator iterator
NodeStack nodeStack
stack used for processing nodes.
Definition WPAFSSolver.h:64
virtual NodeStack & SCCDetect()
SCC detection.
Definition WPAFSSolver.h:67
const NodeBS & getCandidates() const
void removeCandidates(const NodeBS &nodes)
void setCurrentSCC(NodeID id)
NodeID popFromWorklist()
Worklist operations.
Definition WPASolver.h:151
SCC * getSCCDetector() const
Get SCC detector.
Definition WPASolver.h:67
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
std::stack< NodeID > NodeStack
u32_t NodeID
Definition GeneralType.h:56
SparseBitVector NodeBS
Definition GeneralType.h:62

Member Data Documentation

◆ candidates

template<class GraphType >
NodeBS SVF::WPAMinimumSolver< GraphType >::candidates
private

nodes which need to be analyzed in current iteration.

Definition at line 241 of file WPAFSSolver.h.


The documentation for this class was generated from the following file: