|
template<typename FilteredEdge , typename FindSuccessors , typename FindEnd , typename AddChildren , typename Join > |
std::vector< FilteredEdge > | VirtualCFG::makeClosure (const std::vector< CFGPath > &p, const FindSuccessors &findSuccessors, const FindEnd &findEnd, const AddChildren &addChildren, const Join &join) |
|
template<typename FilteredEdge , typename Filter > |
std::vector< FilteredEdge > | VirtualCFG::makeClosure (const std::vector< CFGEdge > &orig, std::vector< CFGEdge >(CFGNode::*closure)() const, CFGNode(CFGPath::*otherSide)() const, CFGPath(*merge)(const CFGPath &, const CFGPath &), const Filter &filter) |
|
template<typename NodeT > |
void | VirtualCFG::printNode (std::ostream &o, const NodeT &n) |
| Helper function to print Node information. More...
|
|
template<typename EdgeT > |
void | VirtualCFG::printEdge (std::ostream &o, const EdgeT &e, bool isInEdge) |
| Edge printer. More...
|
|
template<typename NodeT , typename EdgeT > |
void | VirtualCFG::printNodePlusEdges (std::ostream &o, NodeT n) |
| Print out a node plus all its outgoing edges. More...
|
|
template<typename FilterFunction > |
std::ostream & | VirtualCFG::cfgToDot (std::ostream &o, std::string graphName, FilteredCFGNode< FilterFunction > start) |
|