Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | List of all members
SVF::DOTGraphTraits< ICFG * > Struct Reference
Inheritance diagram for SVF::DOTGraphTraits< ICFG * >:
SVF::DOTGraphTraits< SVFIR * > SVF::DefaultDOTGraphTraits

Public Types

typedef ICFGNode NodeType
 

Public Member Functions

 DOTGraphTraits (bool isSimple=false)
 
std::string getNodeLabel (NodeType *node, ICFG *graph)
 
- Public Member Functions inherited from SVF::DOTGraphTraits< SVFIR * >
 DOTGraphTraits (bool simple=false)
 
- Public Member Functions inherited from SVF::DefaultDOTGraphTraits
 DefaultDOTGraphTraits (bool simple=false)
 
template<typename GraphType >
std::string getNodeLabel (const void *, const GraphType &)
 

Static Public Member Functions

static std::string getGraphName (ICFG *)
 Return name of the graph.
 
static std::string getSimpleNodeLabel (NodeType *node, ICFG *)
 Return the label of an ICFG node.
 
static bool isNodeHidden (ICFGNode *node, ICFG *)
 
static std::string getNodeAttributes (NodeType *node, ICFG *)
 
template<class EdgeIter >
static std::string getEdgeAttributes (NodeType *, EdgeIter EI, ICFG *)
 
template<class EdgeIter >
static std::string getEdgeSourceLabel (NodeType *, EdgeIter EI)
 
- Static Public Member Functions inherited from SVF::DefaultDOTGraphTraits
template<typename GraphType >
static std::string getGraphName (const GraphType &)
 
template<typename GraphType >
static std::string getGraphProperties (const GraphType &)
 
static bool renderGraphFromBottomUp ()
 
template<typename GraphType >
static bool isNodeHidden (const void *, const GraphType &)
 
template<typename GraphType >
static std::string getNodeIdentifierLabel (const void *, const GraphType &)
 
template<typename GraphType >
static std::string getNodeDescription (const void *, const GraphType &)
 
template<typename GraphType >
static std::string getNodeAttributes (const void *, const GraphType &)
 
template<typename EdgeIter , typename GraphType >
static std::string getEdgeAttributes (const void *, EdgeIter, const GraphType &)
 
template<typename EdgeIter >
static std::string getEdgeSourceLabel (const void *, EdgeIter)
 
template<typename EdgeIter >
static bool edgeTargetsEdgeSource (const void *, EdgeIter)
 
template<typename EdgeIter >
static EdgeIter getEdgeTarget (const void *, EdgeIter I)
 
static bool hasEdgeDestLabels ()
 
static unsigned numEdgeDestLabels (const void *)
 
static std::string getEdgeDestLabel (const void *, unsigned)
 
template<typename GraphType , typename GraphWriter >
static void addCustomGraphFeatures (const GraphType &, GraphWriter &)
 

Additional Inherited Members

- Protected Member Functions inherited from SVF::DefaultDOTGraphTraits
bool isSimple ()
 

Detailed Description

Definition at line 490 of file ICFG.cpp.

Member Typedef Documentation

◆ NodeType

Definition at line 493 of file ICFG.cpp.

Constructor & Destructor Documentation

◆ DOTGraphTraits()

SVF::DOTGraphTraits< ICFG * >::DOTGraphTraits ( bool  isSimple = false)
inline

Definition at line 494 of file ICFG.cpp.

494 :
496 {
497 }
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ getEdgeAttributes()

template<class EdgeIter >
static std::string SVF::DOTGraphTraits< ICFG * >::getEdgeAttributes ( NodeType ,
EdgeIter  EI,
ICFG  
)
inlinestatic

Definition at line 562 of file ICFG.cpp.

563 {
564 ICFGEdge* edge = *(EI.getCurrent());
565 assert(edge && "No edge found!!");
566 if (SVFUtil::isa<CallCFGEdge>(edge))
567 return "style=solid,color=red";
568 else if (SVFUtil::isa<RetCFGEdge>(edge))
569 return "style=solid,color=blue";
570 else
571 return "style=solid";
572 return "";
573 }

◆ getEdgeSourceLabel()

template<class EdgeIter >
static std::string SVF::DOTGraphTraits< ICFG * >::getEdgeSourceLabel ( NodeType ,
EdgeIter  EI 
)
inlinestatic

Definition at line 576 of file ICFG.cpp.

577 {
578 ICFGEdge* edge = *(EI.getCurrent());
579 assert(edge && "No edge found!!");
580
581 std::string str;
582 std::stringstream rawstr(str);
583 if (CallCFGEdge* dirCall = SVFUtil::dyn_cast<CallCFGEdge>(edge))
584 rawstr << dirCall->getSrcNode();
585 else if (RetCFGEdge* dirRet = SVFUtil::dyn_cast<RetCFGEdge>(edge))
586 {
587 if(RetICFGNode* ret = SVFUtil::dyn_cast<RetICFGNode>(dirRet->getDstNode()))
588 rawstr << ret->getCallICFGNode();
589 }
590
591 return rawstr.str();
592 }

◆ getGraphName()

static std::string SVF::DOTGraphTraits< ICFG * >::getGraphName ( ICFG )
inlinestatic

Return name of the graph.

Definition at line 500 of file ICFG.cpp.

501 {
502 return "ICFG";
503 }

◆ getNodeAttributes()

static std::string SVF::DOTGraphTraits< ICFG * >::getNodeAttributes ( NodeType node,
ICFG  
)
inlinestatic

Definition at line 524 of file ICFG.cpp.

525 {
526 std::string str;
527 std::stringstream rawstr(str);
528
529 if(SVFUtil::isa<IntraICFGNode>(node))
530 {
531 rawstr << "color=black";
532 }
533 else if(SVFUtil::isa<FunEntryICFGNode>(node))
534 {
535 rawstr << "color=yellow";
536 }
537 else if(SVFUtil::isa<FunExitICFGNode>(node))
538 {
539 rawstr << "color=green";
540 }
541 else if(SVFUtil::isa<CallICFGNode>(node))
542 {
543 rawstr << "color=red";
544 }
545 else if(SVFUtil::isa<RetICFGNode>(node))
546 {
547 rawstr << "color=blue";
548 }
549 else if(SVFUtil::isa<GlobalICFGNode>(node))
550 {
551 rawstr << "color=purple";
552 }
553 else
554 assert(false && "no such kind of node!!");
555
556 rawstr << "";
557
558 return rawstr.str();
559 }

◆ getNodeLabel()

std::string SVF::DOTGraphTraits< ICFG * >::getNodeLabel ( NodeType node,
ICFG graph 
)
inline

Definition at line 505 of file ICFG.cpp.

506 {
507 return getSimpleNodeLabel(node, graph);
508 }
static std::string getSimpleNodeLabel(NodeType *node, ICFG *)
Return the label of an ICFG node.
Definition ICFG.cpp:511

◆ getSimpleNodeLabel()

static std::string SVF::DOTGraphTraits< ICFG * >::getSimpleNodeLabel ( NodeType node,
ICFG  
)
inlinestatic

Return the label of an ICFG node.

Definition at line 511 of file ICFG.cpp.

512 {
513 return node->toString();
514 }

◆ isNodeHidden()

static bool SVF::DOTGraphTraits< ICFG * >::isNodeHidden ( ICFGNode node,
ICFG  
)
inlinestatic

Definition at line 516 of file ICFG.cpp.

517 {
519 return false;
520 else
521 return node->getInEdges().empty() && node->getOutEdges().empty();
522 }
const GEdgeSetTy & getOutEdges() const
const GEdgeSetTy & getInEdges() const
static const Option< bool > ShowHiddenNode
Definition Options.h:228

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