30#ifndef GENERICGRAPH_H_
31#define GENERICGRAPH_H_
115 if (
lhs->edgeFlag !=
rhs->edgeFlag)
116 return lhs->edgeFlag <
rhs->edgeFlag;
117 else if (
lhs->getSrcID() !=
rhs->getSrcID())
118 return lhs->getSrcID() <
rhs->getSrcID();
120 return lhs->getDstID() <
rhs->getDstID();
126 return (
rhs->edgeFlag ==
this->edgeFlag &&
127 rhs->getSrcID() ==
this->getSrcID() &&
128 rhs->getDstID() ==
this->getDstID());
142template<
class NodeTy,
class EdgeTy>
194 return (
InEdges.empty() ==
false);
340template<
class NodeTy,
class EdgeTy>
420 assert(node->hasIncomingEdge() ==
false
421 && node->hasOutgoingEdge() ==
false
422 &&
"node which have edges can't be deleted");
470 decltype(std::declval<FuncTy>()(*std::declval<ItTy>()))>
473 mapped_iter<ItTy, FuncTy>, ItTy,
474 typename std::iterator_traits<ItTy>::iterator_category,
475 typename std::remove_reference<FuncReturnTy>::type>
497template <
class ItTy,
class FuncTy>
513 return E->getDstNode();
526 return map_iter(
N->OutEdgeBegin(), &edge_dest);
530 return map_iter(
N->OutEdgeEnd(), &edge_dest);
534 return map_iter(
N->directOutEdgeBegin(), &edge_dest);
538 return map_iter(
N->directOutEdgeEnd(), &edge_dest);
545template<
class NodeTy,
class EdgeTy>
553 return E->getSrcNode();
566 return map_iter(
N->InEdgeBegin(), &edge_dest);
570 return map_iter(
N->InEdgeEnd(), &edge_dest);
593 typedef std::pair<SVF::NodeID, NodeType*>
PairTy;
virtual bool operator==(const GenericEdge< NodeType > *rhs) const
GEdgeKind getEdgeKindWithoutMask() const
NodeType * getSrcNode() const
virtual ~GenericEdge()
Destructor.
GenericEdge(NodeTy *s, NodeTy *d, GEdgeFlag k)
Constructor.
NodeType * getDstNode() const
static constexpr u64_t EdgeKindMask
GEdgeFlag edgeFlag
edge kind
NodeTy * dst
destination node
GEdgeKind getEdgeKind() const
NodeID getSrcID() const
get methods of the components
static constexpr unsigned char EdgeKindMaskBits
We use the lower 8 bits to denote edge kind.
NodeTy NodeType
Node type.
void addGNode(NodeID id, NodeType *node)
Add a Node.
iterator begin()
Iterators.
void removeGNode(NodeType *node)
Delete a node.
u32_t getTotalEdgeNum() const
u32_t edgeNum
total num of node
const_iterator end() const
const_iterator begin() const
u32_t nodeNum
total num of edge
virtual ~GenericGraph()
Destructor.
IDToNodeMapTy IDToNodeMap
node map
IDToNodeMapTy::const_iterator const_iterator
bool hasGNode(NodeID id) const
Has a node.
void incNodeNum()
Increase number of node/edge.
u32_t getTotalNodeNum() const
Get total number of node/edge.
GenericGraph()
Constructor.
IDToNodeMapTy::iterator iterator
Node Iterators.
NodeType * getGNode(NodeID id) const
Get a node.
void destroy()
Release memory.
OrderedMap< NodeID, NodeType * > IDToNodeMapTy
NodeID to GenericNode map.
const_iterator InEdgeEnd() const
OrderedSet< EdgeType *, typename EdgeType::equalGEdge > GEdgeSetTy
Edge kind.
GEdgeSetTy OutEdges
all outgoing edge of this node
bool hasIncomingEdge() const
Has incoming/outgoing edge set.
bool hasOutgoingEdge() const
u32_t removeOutgoingEdge(EdgeType *edge)
GenericNode(NodeID i, GNodeK k, const SVFType *svfType=nullptr)
Constructor.
virtual iterator directInEdgeEnd()
EdgeType * hasIncomingEdge(EdgeType *edge) const
Find incoming and outgoing edges.
GEdgeSetTy InEdges
all incoming edge of this node
GEdgeSetTy::iterator iterator
const GEdgeSetTy & getOutEdges() const
virtual ~GenericNode()
Destructor.
virtual iterator directInEdgeBegin()
const_iterator OutEdgeBegin() const
virtual iterator directOutEdgeEnd()
const GEdgeSetTy & getInEdges() const
static bool classof(const SVFValue *)
const_iterator InEdgeBegin() const
virtual const_iterator directOutEdgeEnd() const
bool addIncomingEdge(EdgeType *inEdge)
Add incoming and outgoing edges.
u32_t removeIncomingEdge(EdgeType *edge)
virtual iterator directOutEdgeBegin()
Iterators used for SCC detection, overwrite it in child class if necessary.
iterator OutEdgeBegin()
iterators
virtual const_iterator directInEdgeEnd() const
static bool classof(const GenericNode< NodeTy, EdgeTy > *)
virtual const_iterator directInEdgeBegin() const
GEdgeSetTy::const_iterator const_iterator
const_iterator OutEdgeEnd() const
virtual const_iterator directOutEdgeBegin() const
EdgeType * hasOutgoingEdge(EdgeType *edge) const
bool addOutgoingEdge(EdgeType *outEdge)
mapped_iter(ItTy U, FuncTy F)
FuncReturnTy operator*() const
llvm::IRBuilder IRBuilder
mapped_iter< ItTy, FuncTy > map_iter(ItTy I, FuncTy F)
Add the hash function for std::set (we also can overload operator< to implement this)
bool operator()(const GenericEdge< NodeType > *lhs, const GenericEdge< NodeType > *rhs) const
mapped_iter< typename SVF::GenericNode< NodeTy, EdgeTy >::iterator, decltype(&edge_dest)> ChildIteratorType
static NodeType * getEntryNode(Inverse< NodeType * > G)
static ChildIteratorType child_begin(const NodeType *N)
static ChildIteratorType child_end(const NodeType *N)
static NodeType * edge_dest(const EdgeType *E)
static unsigned getNodeID(const NodeType *N)
static unsigned getNodeID(NodeType *N)
static unsigned graphSize(GenericGraphTy *G)
static NodeType * getNode(GenericGraphTy *G, SVF::NodeID id)
mapped_iter< typename GenericGraphTy::iterator, decltype(&deref_val)> nodes_iterator
static NodeType * deref_val(PairTy P)
static NodeType * getEntryNode(GenericGraphTy *pag)
static nodes_iterator nodes_end(GenericGraphTy *G)
std::pair< SVF::NodeID, NodeType * > PairTy
static nodes_iterator nodes_begin(GenericGraphTy *G)
SVF::GenericGraph< NodeTy, EdgeTy > GenericGraphTy
static NodeType * getEntryNode(NodeType *pagN)
static ChildIteratorType direct_child_begin(const NodeType *N)
static ChildIteratorType child_end(const NodeType *N)
static ChildIteratorType direct_child_end(const NodeType *N)
static NodeType * edge_dest(const EdgeType *E)
mapped_iter< typename SVF::GenericNode< NodeTy, EdgeTy >::iterator, decltype(&edge_dest)> ChildIteratorType
static ChildIteratorType child_begin(const NodeType *N)