Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Protected Attributes | Friends | List of all members
SVF::GenericGraph< NodeTy, EdgeTy > Class Template Reference

#include <GenericGraph.h>

Inheritance diagram for SVF::GenericGraph< NodeTy, EdgeTy >:
SVF::BasicBlockGraph SVF::CDG SVF::CFLGraph SVF::CHGraph SVF::CallGraph SVF::ICFG SVF::TCT SVF::VFG

Public Types

typedef NodeTy NodeType
 
typedef EdgeTy EdgeType
 
typedef OrderedMap< NodeID, NodeType * > IDToNodeMapTy
 NodeID to GenericNode map.
 
typedef IDToNodeMapTy::iterator iterator
 Node Iterators.
 
typedef IDToNodeMapTy::const_iterator const_iterator
 

Public Member Functions

 GenericGraph ()
 Constructor.
 
virtual ~GenericGraph ()
 Destructor.
 
void destroy ()
 Release memory.
 
iterator begin ()
 Iterators.
 
iterator end ()
 
const_iterator begin () const
 
const_iterator end () const
 
void addGNode (NodeID id, NodeType *node)
 Add a Node.
 
NodeTypegetGNode (NodeID id) const
 Get a node.
 
bool hasGNode (NodeID id) const
 Has a node.
 
void removeGNode (NodeType *node)
 Delete a node.
 
u32_t getTotalNodeNum () const
 Get total number of node/edge.
 
u32_t getTotalEdgeNum () const
 
void incNodeNum ()
 Increase number of node/edge.
 
void incEdgeNum ()
 

Public Attributes

u32_t edgeNum
 total num of node
 
u32_t nodeNum
 total num of edge
 

Protected Attributes

IDToNodeMapTy IDToNodeMap
 node map
 

Friends

class SVFIRWriter
 
class SVFIRReader
 
class GenericGraphWriter< NodeTy, EdgeTy >
 
class GenericGraphReader< NodeTy, EdgeTy >
 

Detailed Description

template<class NodeTy, class EdgeTy>
class SVF::GenericGraph< NodeTy, EdgeTy >

Definition at line 341 of file GenericGraph.h.

Member Typedef Documentation

◆ const_iterator

template<class NodeTy , class EdgeTy >
typedef IDToNodeMapTy::const_iterator SVF::GenericGraph< NodeTy, EdgeTy >::const_iterator

Definition at line 357 of file GenericGraph.h.

◆ EdgeType

Definition at line 350 of file GenericGraph.h.

◆ IDToNodeMapTy

NodeID to GenericNode map.

Definition at line 352 of file GenericGraph.h.

◆ iterator

template<class NodeTy , class EdgeTy >
typedef IDToNodeMapTy::iterator SVF::GenericGraph< NodeTy, EdgeTy >::iterator

Node Iterators.

Definition at line 356 of file GenericGraph.h.

◆ NodeType

Definition at line 349 of file GenericGraph.h.

Constructor & Destructor Documentation

◆ GenericGraph()

template<class NodeTy , class EdgeTy >
SVF::GenericGraph< NodeTy, EdgeTy >::GenericGraph ( )
inline

Constructor.

Definition at line 361 of file GenericGraph.h.

361: edgeNum(0), nodeNum(0) {}
u32_t edgeNum
total num of node
u32_t nodeNum
total num of edge

◆ ~GenericGraph()

template<class NodeTy , class EdgeTy >
virtual SVF::GenericGraph< NodeTy, EdgeTy >::~GenericGraph ( )
inlinevirtual

Destructor.

Definition at line 364 of file GenericGraph.h.

365 {
366 destroy();
367 }
void destroy()
Release memory.

Member Function Documentation

◆ addGNode()

template<class NodeTy , class EdgeTy >
void SVF::GenericGraph< NodeTy, EdgeTy >::addGNode ( NodeID  id,
NodeType node 
)
inline

Add a Node.

Definition at line 396 of file GenericGraph.h.

397 {
398 IDToNodeMap[id] = node;
399 nodeNum++;
400 }
IDToNodeMapTy IDToNodeMap
node map

◆ begin() [1/2]

template<class NodeTy , class EdgeTy >
iterator SVF::GenericGraph< NodeTy, EdgeTy >::begin ( )
inline

Iterators.

Definition at line 377 of file GenericGraph.h.

378 {
379 return IDToNodeMap.begin();
380 }

◆ begin() [2/2]

template<class NodeTy , class EdgeTy >
const_iterator SVF::GenericGraph< NodeTy, EdgeTy >::begin ( ) const
inline

Definition at line 385 of file GenericGraph.h.

386 {
387 return IDToNodeMap.begin();
388 }

◆ destroy()

template<class NodeTy , class EdgeTy >
void SVF::GenericGraph< NodeTy, EdgeTy >::destroy ( )
inline

Release memory.

Definition at line 370 of file GenericGraph.h.

371 {
372 for (auto &entry : IDToNodeMap)
373 delete entry.second;
374 }
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ end() [1/2]

template<class NodeTy , class EdgeTy >
iterator SVF::GenericGraph< NodeTy, EdgeTy >::end ( )
inline

Definition at line 381 of file GenericGraph.h.

382 {
383 return IDToNodeMap.end();
384 }

◆ end() [2/2]

template<class NodeTy , class EdgeTy >
const_iterator SVF::GenericGraph< NodeTy, EdgeTy >::end ( ) const
inline

Definition at line 389 of file GenericGraph.h.

390 {
391 return IDToNodeMap.end();
392 }

◆ getGNode()

template<class NodeTy , class EdgeTy >
NodeType * SVF::GenericGraph< NodeTy, EdgeTy >::getGNode ( NodeID  id) const
inline

Get a node.

Definition at line 403 of file GenericGraph.h.

404 {
405 const_iterator it = IDToNodeMap.find(id);
406 assert(it != IDToNodeMap.end() && "Node not found!");
407 return it->second;
408 }
IDToNodeMapTy::const_iterator const_iterator

◆ getTotalEdgeNum()

template<class NodeTy , class EdgeTy >
u32_t SVF::GenericGraph< NodeTy, EdgeTy >::getTotalEdgeNum ( ) const
inline

Definition at line 434 of file GenericGraph.h.

435 {
436 return edgeNum;
437 }

◆ getTotalNodeNum()

template<class NodeTy , class EdgeTy >
u32_t SVF::GenericGraph< NodeTy, EdgeTy >::getTotalNodeNum ( ) const
inline

Get total number of node/edge.

Definition at line 430 of file GenericGraph.h.

431 {
432 return nodeNum;
433 }

◆ hasGNode()

template<class NodeTy , class EdgeTy >
bool SVF::GenericGraph< NodeTy, EdgeTy >::hasGNode ( NodeID  id) const
inline

Has a node.

Definition at line 411 of file GenericGraph.h.

412 {
413 const_iterator it = IDToNodeMap.find(id);
414 return it != IDToNodeMap.end();
415 }

◆ incEdgeNum()

template<class NodeTy , class EdgeTy >
void SVF::GenericGraph< NodeTy, EdgeTy >::incEdgeNum ( )
inline

Definition at line 443 of file GenericGraph.h.

444 {
445 edgeNum++;
446 }

◆ incNodeNum()

template<class NodeTy , class EdgeTy >
void SVF::GenericGraph< NodeTy, EdgeTy >::incNodeNum ( )
inline

Increase number of node/edge.

Definition at line 439 of file GenericGraph.h.

440 {
441 nodeNum++;
442 }

◆ removeGNode()

template<class NodeTy , class EdgeTy >
void SVF::GenericGraph< NodeTy, EdgeTy >::removeGNode ( NodeType node)
inline

Delete a node.

Definition at line 418 of file GenericGraph.h.

419 {
420 assert(node->hasIncomingEdge() == false
421 && node->hasOutgoingEdge() == false
422 && "node which have edges can't be deleted");
423 iterator it = IDToNodeMap.find(node->getId());
424 assert(it != IDToNodeMap.end() && "can not find the node");
425 IDToNodeMap.erase(it);
426 delete node;
427 }
IDToNodeMapTy::iterator iterator
Node Iterators.

Friends And Related Symbol Documentation

◆ GenericGraphReader< NodeTy, EdgeTy >

Definition at line 344 of file GenericGraph.h.

◆ GenericGraphWriter< NodeTy, EdgeTy >

Definition at line 344 of file GenericGraph.h.

◆ SVFIRReader

template<class NodeTy , class EdgeTy >
friend class SVFIRReader
friend

Definition at line 344 of file GenericGraph.h.

◆ SVFIRWriter

template<class NodeTy , class EdgeTy >
friend class SVFIRWriter
friend

Definition at line 343 of file GenericGraph.h.

Member Data Documentation

◆ edgeNum

total num of node

Definition at line 452 of file GenericGraph.h.

◆ IDToNodeMap

template<class NodeTy , class EdgeTy >
IDToNodeMapTy SVF::GenericGraph< NodeTy, EdgeTy >::IDToNodeMap
protected

node map

Definition at line 449 of file GenericGraph.h.

◆ nodeNum

total num of edge

Definition at line 453 of file GenericGraph.h.


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