Static Value-Flow Analysis
|
VFCFLGraphBuilder: a CFLGraphBuilder specialized for handling value-flow. More...
#include <CFLGraphBuilder.h>
Public Member Functions | |
CFLGraph * | buildBigraph (SVFG *graph, Kind startKind, GrammarBase *grammar) |
Builds a bidirectional CFL graph by copying nodes and edges from a const graph that inherits from SVFG. | |
CFLGraph * | buildBiPEGgraph (ConstraintGraph *graph, Kind startKind, GrammarBase *grammar, SVFIR *pag) |
![]() | |
template<class N , class E > | |
CFLGraph * | build (GenericGraph< N, E > *graph, GrammarBase *grammar, BuildDirection direction=BuildDirection::plain) |
CFLGraph * | build (std::string fileName, GrammarBase *grammar, BuildDirection direction=BuildDirection::plain) |
Method to build a CFL graph from external file. | |
Map< std::string, Kind > & | getLabelToKindMap () |
Returns a reference to the map that associates string labels with their corresponding Kind. | |
Map< Kind, std::string > & | getKindToLabelMap () |
Returns a reference to the map that associates Kinds with their corresponding string labels. | |
Map< CFGrammar::Kind, Set< CFGrammar::Attribute > > & | getKindToAttrsMap () |
Returns a reference to the map that associates Kinds with their corresponding attributes. | |
Private Member Functions | |
void | connectVGep (CFLGraph *cflGraph, ConstraintGraph *graph, ConstraintNode *src, ConstraintNode *dst, u32_t level, SVFIR *pag) |
Connects VGep (Variable GEP) | |
void | addBiCFLEdge (CFLGraph *cflGraph, ConstraintNode *src, ConstraintNode *dst, CFGrammar::Kind label) |
Handles edges, with the exception of the GEP. | |
void | addBiGepCFLEdge (CFLGraph *cflGraph, ConstraintNode *src, ConstraintNode *dst, CFGrammar::Attribute attri) |
Adds bidirectional GEP edges with attributes. | |
Additional Inherited Members | |
![]() | |
typedef CFGrammar::Kind | Kind |
typedef CFGrammar::Symbol | Symbol |
![]() | |
void | addAttribute (CFGrammar::Kind kind, CFGrammar::Attribute attribute) |
Method to add an attribute to a specific kind. | |
void | buildlabelToKindMap (GrammarBase *grammar) |
build label and kind connect from the grammar | |
CFLNode * | addGNode (u32_t NodeID) |
add src and dst node from file | |
CFLGraph * | buildFromText (std::string fileName, GrammarBase *grammar, BuildDirection direction=BuildDirection::plain) |
Method to build a CFL graph from a Text file. | |
CFLGraph * | buildFromDot (std::string filename, GrammarBase *grammar, BuildDirection direction=BuildDirection::plain) |
Method to build a CFL graph from a Dot file. | |
CFLGraph * | buildFromJson (std::string filename, GrammarBase *grammar, BuildDirection direction=BuildDirection::plain) |
Method to build a CFL graph from a Json file. | |
![]() | |
Map< std::string, Kind > | labelToKindMap |
Maps to maintain mapping between labels and kinds. | |
Map< Kind, std::string > | kindToLabelMap |
Map< CFGrammar::Kind, Set< CFGrammar::Attribute > > | kindToAttrsMap |
Map to maintain attributes associated with each kind. | |
Kind | current |
CFLGraph * | cflGraph |
VFCFLGraphBuilder: a CFLGraphBuilder specialized for handling value-flow.
Definition at line 142 of file CFLGraphBuilder.h.
|
private |
Handles edges, with the exception of the GEP.
|
private |
Adds bidirectional GEP edges with attributes.
CFLGraph * SVF::VFCFLGraphBuilder::buildBigraph | ( | SVFG * | graph, |
Kind | startKind, | ||
GrammarBase * | grammar | ||
) |
Builds a bidirectional CFL graph by copying nodes and edges from a const graph that inherits from SVFG.
Definition at line 480 of file CFLGraphBuilder.cpp.
CFLGraph * SVF::VFCFLGraphBuilder::buildBiPEGgraph | ( | ConstraintGraph * | graph, |
Kind | startKind, | ||
GrammarBase * | grammar, | ||
SVFIR * | pag | ||
) |
Builds a bidirectional CFL graph by copying nodes and edges from any graph that inherits from GenericGraph Transfers Load and Store to copy edge and address edge to construct PEG style CFLGraph
Definition at line 567 of file CFLGraphBuilder.cpp.
|
private |
Connects VGep (Variable GEP)