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

Public Types

typedef SVFVar 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 (IRGraph *graph)
 Return name of the graph.
 
static bool isNodeHidden (SVFVar *node, IRGraph *)
 
static std::string getNodeLabel (SVFVar *node, IRGraph *)
 
static std::string getNodeAttributes (SVFVar *node, IRGraph *)
 
template<class EdgeIter >
static std::string getEdgeAttributes (SVFVar *, EdgeIter EI, IRGraph *)
 
template<class EdgeIter >
static std::string getEdgeSourceLabel (SVFVar *, 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 357 of file IRGraph.cpp.

Member Typedef Documentation

◆ ChildIteratorType

Definition at line 361 of file IRGraph.cpp.

◆ NodeType

Definition at line 360 of file IRGraph.cpp.

Constructor & Destructor Documentation

◆ DOTGraphTraits()

Member Function Documentation

◆ getEdgeAttributes()

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

Definition at line 435 of file IRGraph.cpp.

436 {
437 const SVFStmt* edge = *(EI.getCurrent());
438 assert(edge && "No edge found!!");
439 if (SVFUtil::isa<AddrStmt>(edge))
440 {
441 return "color=green";
442 }
443 else if (SVFUtil::isa<CopyStmt>(edge))
444 {
445 return "color=black";
446 }
447 else if (SVFUtil::isa<GepStmt>(edge))
448 {
449 return "color=purple";
450 }
451 else if (SVFUtil::isa<StoreStmt>(edge))
452 {
453 return "color=blue";
454 }
455 else if (SVFUtil::isa<LoadStmt>(edge))
456 {
457 return "color=red";
458 }
459 else if (SVFUtil::isa<PhiStmt>(edge))
460 {
461 return "color=grey";
462 }
463 else if (SVFUtil::isa<SelectStmt>(edge))
464 {
465 return "color=grey";
466 }
467 else if (SVFUtil::isa<CmpStmt>(edge))
468 {
469 return "color=grey";
470 }
471 else if (SVFUtil::isa<BinaryOPStmt>(edge))
472 {
473 return "color=grey";
474 }
475 else if (SVFUtil::isa<UnaryOPStmt>(edge))
476 {
477 return "color=grey";
478 }
479 else if (SVFUtil::isa<BranchStmt>(edge))
480 {
481 return "color=grey";
482 }
483 else if (SVFUtil::isa<TDForkPE>(edge))
484 {
485 return "color=Turquoise";
486 }
487 else if (SVFUtil::isa<TDJoinPE>(edge))
488 {
489 return "color=Turquoise";
490 }
491 else if (SVFUtil::isa<CallPE>(edge))
492 {
493 return "color=black,style=dashed";
494 }
495 else if (SVFUtil::isa<RetPE>(edge))
496 {
497 return "color=black,style=dotted";
498 }
499
500 assert(false && "No such kind edge!!");
501 exit(1);
502 }
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ getEdgeSourceLabel()

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

Definition at line 505 of file IRGraph.cpp.

506 {
507 const SVFStmt* edge = *(EI.getCurrent());
508 assert(edge && "No edge found!!");
509 if(const CallPE* calledge = SVFUtil::dyn_cast<CallPE>(edge))
510 {
511 return calledge->getCallSite()->getSourceLoc();
512 }
513 else if(const RetPE* retedge = SVFUtil::dyn_cast<RetPE>(edge))
514 {
515 return retedge->getCallSite()->getSourceLoc();
516 }
517 return "";
518 }

◆ getGraphName()

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

Return name of the graph.

Definition at line 368 of file IRGraph.cpp.

369 {
370 return graph->getGraphName();
371 }
std::string getGraphName() const
Return graph name.
Definition IRGraph.h:335

◆ getNodeAttributes()

static std::string SVF::DOTGraphTraits< IRGraph * >::getNodeAttributes ( SVFVar node,
IRGraph  
)
inlinestatic

Definition at line 397 of file IRGraph.cpp.

398 {
399 if (SVFUtil::isa<ValVar>(node))
400 {
401 if(SVFUtil::isa<GepValVar>(node))
402 return "shape=hexagon";
403 else if (SVFUtil::isa<DummyValVar>(node))
404 return "shape=diamond";
405 else
406 return "shape=box";
407 }
408 else if (SVFUtil::isa<ObjVar>(node))
409 {
410 if(SVFUtil::isa<GepObjVar>(node))
411 return "shape=doubleoctagon";
412 else if(SVFUtil::isa<BaseObjVar>(node))
413 return "shape=box3d";
414 else if (SVFUtil::isa<DummyObjVar>(node))
415 return "shape=tab";
416 else
417 return "shape=component";
418 }
419 else if (SVFUtil::isa<RetValPN>(node))
420 {
421 return "shape=Mrecord";
422 }
423 else if (SVFUtil::isa<VarArgValPN>(node))
424 {
425 return "shape=octagon";
426 }
427 else
428 {
429 assert(0 && "no such kind!!");
430 }
431 return "";
432 }

◆ getNodeLabel()

static std::string SVF::DOTGraphTraits< IRGraph * >::getNodeLabel ( SVFVar node,
IRGraph  
)
inlinestatic

Return label of a VFG node with two display mode Either you can choose to display the name of the value or the whole instruction

Definition at line 383 of file IRGraph.cpp.

384 {
385 std::string str;
386 std::stringstream rawstr(str);
387 // print function info
388 if (node->getFunction())
389 rawstr << "[" << node->getFunction()->getName() << "] ";
390
391 rawstr << node->toString();
392
393 return rawstr.str();
394
395 }
virtual const std::string & getName() const
Definition SVFValue.h:184
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
virtual const std::string toString() const
Get string representation.

◆ isNodeHidden()

static bool SVF::DOTGraphTraits< IRGraph * >::isNodeHidden ( SVFVar node,
IRGraph  
)
inlinestatic

isNodeHidden - If the function returns true, the given node is not displayed in the graph

Definition at line 375 of file IRGraph.cpp.

376 {
377 if (Options::ShowHiddenNode()) return false;
378 else return node->isIsolatedNode();
379 }
static const Option< bool > ShowHiddenNode
Definition Options.h:228
virtual bool isIsolatedNode() const
Check if this node is isolated (no edges) in the SVFIR graph.

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