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

Public Types

typedef CallGraphNode NodeType
 
typedef NodeType::iterator ChildIteratorType
 

Public Member Functions

 DOTGraphTraits (bool isSimple=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 (CallGraph *)
 Return name of the graph.
 
static std::string getNodeLabel (CallGraphNode *node, CallGraph *)
 Return function name;.
 
static std::string getNodeAttributes (CallGraphNode *node, CallGraph *)
 
template<class EdgeIter >
static std::string getEdgeAttributes (CallGraphNode *, EdgeIter EI, CallGraph *)
 
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

Write value flow graph into dot file for debugging

Definition at line 403 of file CallGraph.cpp.

Member Typedef Documentation

◆ ChildIteratorType

Definition at line 407 of file CallGraph.cpp.

◆ NodeType

Definition at line 406 of file CallGraph.cpp.

Constructor & Destructor Documentation

◆ DOTGraphTraits()

Member Function Documentation

◆ getEdgeAttributes()

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

Definition at line 436 of file CallGraph.cpp.

438 {
439
440 //TODO: mark indirect call of Fork with different color
441 CallGraphEdge* edge = *(EI.getCurrent());
442 assert(edge && "No edge found!!");
443
444 std::string color;
445
446 if (edge->getEdgeKind() == CallGraphEdge::TDJoinEdge)
447 {
448 color = "color=green";
449 }
450 else if (edge->getEdgeKind() == CallGraphEdge::TDForkEdge)
451 {
452 color = "color=blue";
453 }
454 else
455 {
456 color = "color=black";
457 }
458 if (0 != edge->getIndirectCalls().size())
459 {
460 color = "color=red";
461 }
462 return color;
463 }
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ getEdgeSourceLabel()

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

Definition at line 466 of file CallGraph.cpp.

467 {
468 CallGraphEdge* edge = *(EI.getCurrent());
469 assert(edge && "No edge found!!");
470
471 std::string str;
472 std::stringstream rawstr(str);
473 rawstr << edge->getCallSiteID();
474
475 return rawstr.str();
476 }

◆ getGraphName()

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

Return name of the graph.

Definition at line 414 of file CallGraph.cpp.

415 {
416 return "Call Graph";
417 }

◆ getNodeAttributes()

static std::string SVF::DOTGraphTraits< CallGraph * >::getNodeAttributes ( CallGraphNode node,
CallGraph  
)
inlinestatic

Definition at line 424 of file CallGraph.cpp.

425 {
426 const FunObjVar* fun = node->getFunction();
427 if (!SVFUtil::isExtCall(fun))
428 {
429 return "shape=box";
430 }
431 else
432 return "shape=Mrecord";
433 }
const FunObjVar * getFunction() const
Get function of this call node.
Definition CallGraph.h:191
bool isExtCall(const FunObjVar *fun)
Definition SVFUtil.cpp:437

◆ getNodeLabel()

static std::string SVF::DOTGraphTraits< CallGraph * >::getNodeLabel ( CallGraphNode node,
CallGraph  
)
inlinestatic

Return function name;.

Definition at line 419 of file CallGraph.cpp.

420 {
421 return node->toString();
422 }
virtual const std::string toString() const
Definition CallGraph.cpp:80

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