Static Value-Flow Analysis
Loading...
Searching...
No Matches
BasicBlockG.cpp
Go to the documentation of this file.
2#include "Graphs/ICFGNode.h"
3
4using namespace SVF;
5const std::string BasicBlockEdge::toString() const
6{
7 std::string str;
8 std::stringstream rawstr(str);
9 rawstr << "BasicBlockEdge: " << getSrcNode()->toString() << " -> " << getDstNode()->getName();
10 return rawstr.str();
11}
12
13const std::string SVFBasicBlock::toString() const
14{
15 std::string str;
16 std::stringstream rawstr(str);
17 rawstr << "----------"<< "SVFBasicBlock: " << getName() <<"----------\n";
18 for (const ICFGNode* icfgNode : allICFGNodes)
19 {
20 rawstr << icfgNode->toString();
21 }
22 rawstr << "\n----------------------------------------\n";
23 return rawstr.str();
24}
virtual const std::string toString() const
NodeType * getSrcNode() const
NodeType * getDstNode() const
const std::string toString() const
std::vector< const ICFGNode * > allICFGNodes
all ICFGNodes in this BasicBlock
Definition BasicBlockG.h:89
virtual const std::string & getName() const
Definition SVFValue.h:184
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74