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

#include <SCC.h>

Classes

class  GNodeSCCInfo
 

Public Types

typedef std::stack< NodeIDGNodeStack
 
typedef Map< NodeID, GNodeSCCInfoGNODESCCInfoMap
 
typedef Map< NodeID, NodeIDNodeToNodeMap
 

Public Member Functions

 SCCDetection (const GraphType &GT)
 
GNodeStacktopoNodeStack ()
 
const GNodeStacktopoNodeStack () const
 
FIFOWorkList< NodeIDrevTopoNodeStack () const
 
const GNODESCCInfoMapGNodeSCCInfo () const
 
NodeID repNode (NodeID n) const
 get the rep node if not found return itself
 
bool isInCycle (NodeID n) const
 whether the node is in a cycle
 
const NodeBSsubNodes (NodeID n) const
 get all subnodes in one scc, if size is empty insert itself into the set
 
const NodeBSgetRepNodes () const
 get all repNodeID
 
const GraphTypegraph ()
 
void find (void)
 
void find (NodeSet &candidates)
 

Private Types

typedef SVF::GenericGraphTraits< GraphTypeGTraits
 Define the GTraits and node iterator for printing.
 
typedef GTraits::NodeRef GNODE
 
typedef GTraits::nodes_iterator node_iterator
 
typedef GTraits::ChildIteratorType child_iterator
 
typedef unsigned NodeID
 

Private Member Functions

bool visited (NodeID n)
 
bool inSCC (NodeID n)
 
void setVisited (NodeID n, bool v)
 
void setInSCC (NodeID n, bool v)
 
void rep (NodeID n, NodeID r)
 
NodeID rep (NodeID n)
 
bool isInSCC (NodeID n)
 
GNODE Node (NodeID id) const
 
NodeID Node_Index (GNODE node) const
 
void visit (NodeID v)
 
void clear ()
 

Private Attributes

GNODESCCInfoMap _NodeSCCAuxInfo
 
const GraphType_graph
 
NodeID _I
 
NodeToNodeMap _D
 
GNodeStack _SS
 
GNodeStack _T
 
NodeBS repNodes
 

Detailed Description

template<class GraphType>
class SVF::SCCDetection< GraphType >

Definition at line 54 of file SCC.h.

Member Typedef Documentation

◆ child_iterator

template<class GraphType >
typedef GTraits::ChildIteratorType SVF::SCCDetection< GraphType >::child_iterator
private

Definition at line 62 of file SCC.h.

◆ GNODE

Definition at line 60 of file SCC.h.

◆ GNODESCCInfoMap

Definition at line 116 of file SCC.h.

◆ GNodeStack

template<class GraphType >
typedef std::stack<NodeID> SVF::SCCDetection< GraphType >::GNodeStack

Definition at line 66 of file SCC.h.

◆ GTraits

Define the GTraits and node iterator for printing.

Definition at line 59 of file SCC.h.

◆ node_iterator

template<class GraphType >
typedef GTraits::nodes_iterator SVF::SCCDetection< GraphType >::node_iterator
private

Definition at line 61 of file SCC.h.

◆ NodeID

template<class GraphType >
typedef unsigned SVF::SCCDetection< GraphType >::NodeID
private

Definition at line 63 of file SCC.h.

◆ NodeToNodeMap

Definition at line 117 of file SCC.h.

Constructor & Destructor Documentation

◆ SCCDetection()

template<class GraphType >
SVF::SCCDetection< GraphType >::SCCDetection ( const GraphType GT)
inline

Definition at line 119 of file SCC.h.

120 : _graph(GT),
121 _I(0)
122 {}
const GraphType & _graph
Definition SCC.h:215
NodeID _I
Definition SCC.h:216
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ clear()

template<class GraphType >
void SVF::SCCDetection< GraphType >::clear ( )
inlineprivate

Definition at line 316 of file SCC.h.

317 {
318 _NodeSCCAuxInfo.clear();
319 _I = 0;
320 _D.clear();
321 repNodes.clear();
322 while(!_SS.empty())
323 _SS.pop();
324 while(!_T.empty())
325 _T.pop();
326 }
GNodeStack _T
Definition SCC.h:219
GNodeStack _SS
Definition SCC.h:218
NodeBS repNodes
Definition SCC.h:220
GNODESCCInfoMap _NodeSCCAuxInfo
Definition SCC.h:213
NodeToNodeMap _D
Definition SCC.h:217

◆ find() [1/2]

template<class GraphType >
void SVF::SCCDetection< GraphType >::find ( NodeSet candidates)
inline

Definition at line 355 of file SCC.h.

356 {
357 // This function is reloaded to only visit candidate NODES
358 clear();
359 for (NodeID node : candidates)
360 {
361 if (!this->visited(node))
362 {
363 if (this->rep(node) == UINT_MAX || this->rep(node) == node)
364 visit(node);
365 else
366 this->visited(node);
367 }
368 }
369 }
void rep(NodeID n, NodeID r)
Definition SCC.h:239
void clear()
Definition SCC.h:316
unsigned NodeID
Definition SCC.h:63
bool visited(NodeID n)
Definition SCC.h:222
void visit(NodeID v)
Definition SCC.h:270

◆ find() [2/2]

template<class GraphType >
void SVF::SCCDetection< GraphType >::find ( void  )
inline

Definition at line 329 of file SCC.h.

330 {
331 // Visit each unvisited root node. A root node is defined
332 // to be a node that has no incoming copy/skew edges
333 clear();
334 node_iterator I = GTraits::nodes_begin(_graph);
335 node_iterator E = GTraits::nodes_end(_graph);
336 for (; I != E; ++I)
337 {
338 NodeID node = Node_Index(*I);
339 if (!this->visited(node))
340 {
341 // We skip any nodes that have a representative other than
342 // themselves. Such nodes occur as a result of merging
343 // nodes either through unifying an ACC or other node
344 // merging optimizations. Any such node should have no
345 // outgoing edges and therefore should no longer be a member
346 // of an SCC.
347 if (this->rep(node) == UINT_MAX || this->rep(node) == node)
348 visit(node);
349 else
350 this->visited(node);
351 }
352 }
353 }
NodeID Node_Index(GNODE node) const
Definition SCC.h:265
GTraits::nodes_iterator node_iterator
Definition SCC.h:61

◆ getRepNodes()

template<class GraphType >
const NodeBS & SVF::SCCDetection< GraphType >::getRepNodes ( ) const
inline

get all repNodeID

Definition at line 202 of file SCC.h.

203 {
204 return repNodes;
205 }

◆ GNodeSCCInfo()

template<class GraphType >
const GNODESCCInfoMap & SVF::SCCDetection< GraphType >::GNodeSCCInfo ( ) const
inline

Definition at line 154 of file SCC.h.

155 {
156 return _NodeSCCAuxInfo;
157 }

◆ graph()

template<class GraphType >
const GraphType & SVF::SCCDetection< GraphType >::graph ( )
inline

Definition at line 207 of file SCC.h.

208 {
209 return _graph;
210 }

◆ inSCC()

template<class GraphType >
bool SVF::SCCDetection< GraphType >::inSCC ( NodeID  n)
inlineprivate

Definition at line 226 of file SCC.h.

227 {
228 return _NodeSCCAuxInfo[n].inSCC();
229 }
cJSON * n
Definition cJSON.cpp:2558

◆ isInCycle()

template<class GraphType >
bool SVF::SCCDetection< GraphType >::isInCycle ( NodeID  n) const
inline

whether the node is in a cycle

Definition at line 170 of file SCC.h.

171 {
172 NodeID rep = repNode(n);
173 // multi-node cycle
174 if (subNodes(rep).count() > 1)
175 {
176 return true;
177 }
178 // self-cycle
179 else
180 {
181 child_iterator EI = GTraits::direct_child_begin(Node(rep));
182 child_iterator EE = GTraits::direct_child_end(Node(rep));
183 for (; EI != EE; ++EI)
184 {
185 NodeID w = Node_Index(*EI);
186 if(w==rep)
187 return true;
188 }
189 return false;
190 }
191 }
int count
Definition cJSON.h:216
NodeID repNode(NodeID n) const
get the rep node if not found return itself
Definition SCC.h:160
GNODE Node(NodeID id) const
Definition SCC.h:260
const NodeBS & subNodes(NodeID n) const
get all subnodes in one scc, if size is empty insert itself into the set
Definition SCC.h:194
GTraits::ChildIteratorType child_iterator
Definition SCC.h:62

◆ isInSCC()

template<class GraphType >
bool SVF::SCCDetection< GraphType >::isInSCC ( NodeID  n)
inlineprivate

Definition at line 255 of file SCC.h.

256 {
257 return _NodeSCCAuxInfo[n].inSCC();
258 }

◆ Node()

template<class GraphType >
GNODE SVF::SCCDetection< GraphType >::Node ( NodeID  id) const
inlineprivate

Definition at line 260 of file SCC.h.

261 {
262 return GTraits::getNode(_graph, id);
263 }

◆ Node_Index()

template<class GraphType >
NodeID SVF::SCCDetection< GraphType >::Node_Index ( GNODE  node) const
inlineprivate

Definition at line 265 of file SCC.h.

266 {
267 return GTraits::getNodeID(node);
268 }

◆ rep() [1/2]

template<class GraphType >
NodeID SVF::SCCDetection< GraphType >::rep ( NodeID  n)
inlineprivate

Definition at line 251 of file SCC.h.

252 {
253 return _NodeSCCAuxInfo[n].rep();
254 }

◆ rep() [2/2]

template<class GraphType >
void SVF::SCCDetection< GraphType >::rep ( NodeID  n,
NodeID  r 
)
inlineprivate

Definition at line 239 of file SCC.h.

240 {
241 _NodeSCCAuxInfo[n].rep(r);
242 _NodeSCCAuxInfo[r].addSubNodes(n);
243 if (n != r)
244 {
245 _NodeSCCAuxInfo[n].subNodes().clear();
247 repNodes.set(r);
248 }
249 }
void set(unsigned Idx)
void reset(unsigned Idx)

◆ repNode()

template<class GraphType >
NodeID SVF::SCCDetection< GraphType >::repNode ( NodeID  n) const
inline

get the rep node if not found return itself

Definition at line 160 of file SCC.h.

161 {
162 typename GNODESCCInfoMap::const_iterator it = _NodeSCCAuxInfo.find(n);
163 assert(it!=_NodeSCCAuxInfo.end() && "scc rep not found");
164 NodeID rep = it->second.rep();
165 return rep!= UINT_MAX ? rep : n ;
166 }

◆ revTopoNodeStack()

template<class GraphType >
FIFOWorkList< NodeID > SVF::SCCDetection< GraphType >::revTopoNodeStack ( ) const
inline

Return a handle to the stack of nodes in reverse topological order. This will be used to seed the initial solution and improve efficiency.

Definition at line 141 of file SCC.h.

142 {
143 FIFOWorkList<NodeID> revTopoOrder;
145 while(!topoOrder.empty())
146 {
147 NodeID nodeID = topoOrder.top();
148 topoOrder.pop();
149 revTopoOrder.push(nodeID);
150 }
151 return revTopoOrder;
152 }
GNodeStack & topoNodeStack()
Definition SCC.h:128
std::stack< NodeID > GNodeStack
Definition SCC.h:66

◆ setInSCC()

template<class GraphType >
void SVF::SCCDetection< GraphType >::setInSCC ( NodeID  n,
bool  v 
)
inlineprivate

Definition at line 235 of file SCC.h.

236 {
237 _NodeSCCAuxInfo[n].inSCC(v);
238 }

◆ setVisited()

template<class GraphType >
void SVF::SCCDetection< GraphType >::setVisited ( NodeID  n,
bool  v 
)
inlineprivate

Definition at line 231 of file SCC.h.

232 {
233 _NodeSCCAuxInfo[n].visited(v);
234 }

◆ subNodes()

template<class GraphType >
const NodeBS & SVF::SCCDetection< GraphType >::subNodes ( NodeID  n) const
inline

get all subnodes in one scc, if size is empty insert itself into the set

Definition at line 194 of file SCC.h.

195 {
196 typename GNODESCCInfoMap::const_iterator it = _NodeSCCAuxInfo.find(n);
197 assert(it!=_NodeSCCAuxInfo.end() && "scc rep not found");
198 return it->second.subNodes();
199 }

◆ topoNodeStack() [1/2]

template<class GraphType >
GNodeStack & SVF::SCCDetection< GraphType >::topoNodeStack ( )
inline

Definition at line 128 of file SCC.h.

129 {
130 return _T;
131 }

◆ topoNodeStack() [2/2]

template<class GraphType >
const GNodeStack & SVF::SCCDetection< GraphType >::topoNodeStack ( ) const
inline

Definition at line 133 of file SCC.h.

134 {
135 return _T;
136 }

◆ visit()

template<class GraphType >
void SVF::SCCDetection< GraphType >::visit ( NodeID  v)
inlineprivate

Definition at line 270 of file SCC.h.

271 {
272 // SVFUtil::outs() << "visit GNODE: " << Node_Index(v)<< "\n";
273 _I += 1;
274 _D[v] = _I;
275 this->rep(v,v);
276 this->setVisited(v,true);
277
278 child_iterator EI = GTraits::direct_child_begin(Node(v));
279 child_iterator EE = GTraits::direct_child_end(Node(v));
280
281 for (; EI != EE; ++EI)
282 {
283 NodeID w = Node_Index(*EI);
284
285 if (!this->visited(w))
286 visit(w);
287 if (!this->inSCC(w))
288 {
289 NodeID rep;
290 rep = _D[this->rep(v)] < _D[this->rep(w)] ?
291 this->rep(v) : this->rep(w);
292 this->rep(v,rep);
293 }
294 }
295 if (this->rep(v) == v)
296 {
297 this->setInSCC(v,true);
298 while (!_SS.empty())
299 {
300 NodeID w = _SS.top();
301 if (_D[w] <= _D[v])
302 break;
303 else
304 {
305 _SS.pop();
306 this->setInSCC(w,true);
307 this->rep(w,v);
308 }
309 }
310 _T.push(v);
311 }
312 else
313 _SS.push(v);
314 }
bool inSCC(NodeID n)
Definition SCC.h:226
void setInSCC(NodeID n, bool v)
Definition SCC.h:235
void setVisited(NodeID n, bool v)
Definition SCC.h:231

◆ visited()

template<class GraphType >
bool SVF::SCCDetection< GraphType >::visited ( NodeID  n)
inlineprivate

Definition at line 222 of file SCC.h.

223 {
224 return _NodeSCCAuxInfo[n].visited();
225 }

Member Data Documentation

◆ _D

Definition at line 217 of file SCC.h.

◆ _graph

template<class GraphType >
const GraphType& SVF::SCCDetection< GraphType >::_graph
private

Definition at line 215 of file SCC.h.

◆ _I

template<class GraphType >
NodeID SVF::SCCDetection< GraphType >::_I
private

Definition at line 216 of file SCC.h.

◆ _NodeSCCAuxInfo

template<class GraphType >
GNODESCCInfoMap SVF::SCCDetection< GraphType >::_NodeSCCAuxInfo
private

Definition at line 213 of file SCC.h.

◆ _SS

Definition at line 218 of file SCC.h.

◆ _T

Definition at line 219 of file SCC.h.

◆ repNodes

template<class GraphType >
NodeBS SVF::SCCDetection< GraphType >::repNodes
private

Definition at line 220 of file SCC.h.


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