Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
SVF::ICFG Class Reference

#include <ICFG.h>

Inheritance diagram for SVF::ICFG:
SVF::GenericGraph< NodeTy, EdgeTy >

Public Types

typedef OrderedMap< NodeID, ICFGNode * > ICFGNodeIDToNodeMapTy
 
typedef ICFGEdge::ICFGEdgeSetTy ICFGEdgeSetTy
 
typedef ICFGNodeIDToNodeMapTy::iterator iterator
 
typedef ICFGNodeIDToNodeMapTy::const_iterator const_iterator
 
typedef Map< const FunObjVar *, FunEntryICFGNode * > FunToFunEntryNodeMapTy
 
typedef Map< const FunObjVar *, FunExitICFGNode * > FunToFunExitNodeMapTy
 
typedef std::vector< const SVFLoop * > SVFLoopVec
 
typedef Map< const ICFGNode *, SVFLoopVecICFGNodeToSVFLoopVec
 
- Public Types inherited from SVF::GenericGraph< NodeTy, EdgeTy >
typedef NodeTy NodeType
 
typedef EdgeTy EdgeType
 
typedef OrderedMap< NodeID, NodeType * > IDToNodeMapTy
 NodeID to GenericNode map.
 
typedef IDToNodeMapTy::iterator iterator
 Node Iterators.
 
typedef IDToNodeMapTy::const_iterator const_iterator
 

Public Member Functions

 ICFG ()
 Constructor.
 
 ~ICFG () override
 Destructor.
 
ICFGNodegetICFGNode (NodeID id) const
 Get a ICFG node.
 
bool hasICFGNode (NodeID id) const
 Whether has the ICFGNode.
 
ICFGEdgehasIntraICFGEdge (ICFGNode *src, ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
 Whether we has a SVFG edge.
 
ICFGEdgehasInterICFGEdge (ICFGNode *src, ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
 
ICFGEdgehasThreadICFGEdge (ICFGNode *src, ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
 
ICFGEdgegetICFGEdge (const ICFGNode *src, const ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
 Get a SVFG edge according to src and dst.
 
void dump (const std::string &file, bool simple=false)
 Dump graph into dot file.
 
void view ()
 View graph from the debugger.
 
void updateCallGraph (CallGraph *callgraph)
 update ICFG for indirect calls
 
bool isInLoop (const ICFGNode *node)
 Whether node is in a loop.
 
void addNodeToSVFLoop (const ICFGNode *node, const SVFLoop *loop)
 Insert (node, loop) to icfgNodeToSVFLoopVec.
 
SVFLoopVecgetSVFLoops (const ICFGNode *node)
 Get loops where a node resides.
 
const ICFGNodeToSVFLoopVecgetIcfgNodeToSVFLoopVec () const
 
FunEntryICFGNodegetFunEntryICFGNode (const FunObjVar *fun)
 Add a function entry node.
 
FunExitICFGNodegetFunExitICFGNode (const FunObjVar *fun)
 Add a function exit node.
 
GlobalICFGNodegetGlobalICFGNode () const
 
const std::vector< const ICFGNode * > & getSubNodes (const ICFGNode *node) const
 
const ICFGNodegetRepNode (const ICFGNode *node) const
 
void updateSubAndRep (const ICFGNode *rep, const ICFGNode *sub)
 
- Public Member Functions inherited from SVF::GenericGraph< NodeTy, EdgeTy >
 GenericGraph ()
 Constructor.
 
virtual ~GenericGraph ()
 Destructor.
 
void destroy ()
 Release memory.
 
iterator begin ()
 Iterators.
 
iterator end ()
 
const_iterator begin () const
 
const_iterator end () const
 
void addGNode (NodeID id, NodeType *node)
 Add a Node.
 
NodeTypegetGNode (NodeID id) const
 Get a node.
 
bool hasGNode (NodeID id) const
 Has a node.
 
void removeGNode (NodeType *node)
 Delete a node.
 
u32_t getTotalNodeNum () const
 Get total number of node/edge.
 
u32_t getTotalEdgeNum () const
 
void incNodeNum ()
 Increase number of node/edge.
 
void incEdgeNum ()
 

Public Attributes

NodeID totalICFGNode
 
- Public Attributes inherited from SVF::GenericGraph< NodeTy, EdgeTy >
u32_t edgeNum
 total num of node
 
u32_t nodeNum
 total num of edge
 

Protected Member Functions

ICFGEdgeaddIntraEdge (ICFGNode *srcNode, ICFGNode *dstNode)
 Add intraprocedural and interprocedural control-flow edges.
 
ICFGEdgeaddConditionalIntraEdge (ICFGNode *srcNode, ICFGNode *dstNode, s64_t branchCondVal)
 
ICFGEdgeaddCallEdge (ICFGNode *srcNode, ICFGNode *dstNode)
 
ICFGEdgeaddRetEdge (ICFGNode *srcNode, ICFGNode *dstNode)
 
void removeICFGEdge (ICFGEdge *edge)
 Remove a ICFG edge.
 
void removeICFGNode (ICFGNode *node)
 Remove a ICFGNode.
 
void checkIntraEdgeParents (const ICFGNode *srcNode, const ICFGNode *dstNode)
 sanitize Intra edges, verify that both nodes belong to the same function.
 
virtual IntraICFGNodeaddIntraICFGNode (const SVFBasicBlock *bb, bool isRet)
 
virtual CallICFGNodeaddCallICFGNode (const SVFBasicBlock *bb, const SVFType *ty, const FunObjVar *calledFunc, bool isVararg, bool isvcall, s32_t vcallIdx, const std::string &funNameOfVcall)
 
virtual RetICFGNodeaddRetICFGNode (CallICFGNode *call)
 
virtual FunEntryICFGNodeaddFunEntryICFGNode (const FunObjVar *svfFunc)
 
virtual FunExitICFGNodeaddFunExitICFGNode (const FunObjVar *svfFunc)
 
virtual void addICFGNode (ICFGNode *node)
 Add a ICFG node.
 

Private Member Functions

void addSubNode (const ICFGNode *rep, const ICFGNode *sub)
 when ICFG is simplified, SubNode would merge repNode, then update the map
 
void updateRepNode (const ICFGNode *rep, const ICFGNode *sub)
 when ICFG is simplified, some node would be removed, this map records the removed node to its rep node
 
bool addICFGEdge (ICFGEdge *edge)
 Add ICFG edge, only used by addIntraEdge, addCallEdge, addRetEdge etc.
 
FunEntryICFGNodegetFunEntryBlock (const FunObjVar *fun)
 Get/Add a function entry node.
 
FunExitICFGNodegetFunExitBlock (const FunObjVar *fun)
 Get/Add a function exit node.
 

Private Attributes

FunToFunEntryNodeMapTy FunToFunEntryNodeMap
 map a function to its FunExitICFGNode
 
FunToFunExitNodeMapTy FunToFunExitNodeMap
 map a function to its FunEntryICFGNode
 
GlobalICFGNodeglobalBlockNode
 unique basic block for all globals
 
ICFGNodeToSVFLoopVec icfgNodeToSVFLoopVec
 map ICFG node to the SVF loops where it resides
 
Map< const ICFGNode *, std::vector< const ICFGNode * > > _subNodes
 map a node(1st node of basicblock) to its subnodes
 
Map< const ICFGNode *, const ICFGNode * > _repNode
 map a subnode to its representative node(1st node of basicblock)
 

Friends

class ICFGBuilder
 
class SVFIRWriter
 
class SVFIRReader
 
class ICFGSimplification
 

Additional Inherited Members

- Protected Attributes inherited from SVF::GenericGraph< NodeTy, EdgeTy >
IDToNodeMapTy IDToNodeMap
 node map
 

Detailed Description

Definition at line 47 of file ICFG.h.

Member Typedef Documentation

◆ const_iterator

typedef ICFGNodeIDToNodeMapTy::const_iterator SVF::ICFG::const_iterator

Definition at line 59 of file ICFG.h.

◆ FunToFunEntryNodeMapTy

Definition at line 61 of file ICFG.h.

◆ FunToFunExitNodeMapTy

Definition at line 62 of file ICFG.h.

◆ ICFGEdgeSetTy

Definition at line 57 of file ICFG.h.

◆ ICFGNodeIDToNodeMapTy

Definition at line 56 of file ICFG.h.

◆ ICFGNodeToSVFLoopVec

Definition at line 64 of file ICFG.h.

◆ iterator

typedef ICFGNodeIDToNodeMapTy::iterator SVF::ICFG::iterator

Definition at line 58 of file ICFG.h.

◆ SVFLoopVec

Definition at line 63 of file ICFG.h.

Constructor & Destructor Documentation

◆ ICFG()

ICFG::ICFG ( )

Constructor.

Constructor

  • Build ICFG 1) build ICFG nodes statements for top level pointers (PAGEdges) 2) connect ICFG edges between two statements (PAGEdges)

Definition at line 218 of file ICFG.cpp.

218 : totalICFGNode(0), globalBlockNode(nullptr)
219{
220}
NodeID totalICFGNode
Definition ICFG.h:66
GlobalICFGNode * globalBlockNode
unique basic block for all globals
Definition ICFG.h:71

◆ ~ICFG()

ICFG::~ICFG ( )
override

Destructor.

Definition at line 222 of file ICFG.cpp.

223{
225 for (const auto &it: icfgNodeToSVFLoopVec)
226 {
227 for (const auto &loop: it.second)
228 {
229 loops.insert(loop);
230 }
231 }
232
233 for (const auto &it: loops)
234 {
235 delete it;
236 }
237 icfgNodeToSVFLoopVec.clear();
238}
ICFGNodeToSVFLoopVec icfgNodeToSVFLoopVec
map ICFG node to the SVF loops where it resides
Definition ICFG.h:72
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ addCallEdge()

ICFGEdge * ICFG::addCallEdge ( ICFGNode srcNode,
ICFGNode dstNode 
)
protected

Add interprocedural call edges between two nodes

Definition at line 374 of file ICFG.cpp.

375{
377 if (edge != nullptr)
378 {
379 assert(edge->isCallCFGEdge() && "this should be a call CFG edge!");
380 return nullptr;
381 }
382 else
383 {
385 return (addICFGEdge(callEdge) ? callEdge : nullptr);
386 }
387}
bool addICFGEdge(ICFGEdge *edge)
Add ICFG edge, only used by addIntraEdge, addCallEdge, addRetEdge etc.
Definition ICFG.h:277
ICFGEdge * hasInterICFGEdge(ICFGNode *src, ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
Definition ICFG.cpp:276

◆ addCallICFGNode()

virtual CallICFGNode * SVF::ICFG::addCallICFGNode ( const SVFBasicBlock bb,
const SVFType ty,
const FunObjVar calledFunc,
bool  isVararg,
bool  isvcall,
s32_t  vcallIdx,
const std::string &  funNameOfVcall 
)
inlineprotectedvirtual

Definition at line 183 of file ICFG.h.

187 {
188
189 CallICFGNode* callICFGNode =
190 new CallICFGNode(totalICFGNode++, bb, ty, calledFunc, isVararg,
191 isvcall, vcallIdx, funNameOfVcall);
193 return callICFGNode;
194 }
virtual void addICFGNode(ICFGNode *node)
Add a ICFG node.
Definition ICFG.h:219

◆ addConditionalIntraEdge()

ICFGEdge * ICFG::addConditionalIntraEdge ( ICFGNode srcNode,
ICFGNode dstNode,
s64_t  branchCondVal 
)
protected

Add conditional intraprocedural edges between two nodes

Definition at line 352 of file ICFG.cpp.

353{
354
357 if (edge != nullptr)
358 {
359 assert(edge->isIntraCFGEdge() && "this should be an intra CFG edge!");
360 return nullptr;
361 }
362 else
363 {
365 intraEdge->setBranchCondVal(branchCondVal);
367 }
368}
void checkIntraEdgeParents(const ICFGNode *srcNode, const ICFGNode *dstNode)
sanitize Intra edges, verify that both nodes belong to the same function.
Definition ICFG.h:165
ICFGEdge * hasIntraICFGEdge(ICFGNode *src, ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
Whether we has a SVFG edge.
Definition ICFG.cpp:259

◆ addFunEntryICFGNode()

virtual FunEntryICFGNode * SVF::ICFG::addFunEntryICFGNode ( const FunObjVar svfFunc)
inlineprotectedvirtual

Definition at line 204 of file ICFG.h.

205 {
206 FunEntryICFGNode* sNode = new FunEntryICFGNode(totalICFGNode++,svfFunc);
209 }
FunToFunEntryNodeMapTy FunToFunEntryNodeMap
map a function to its FunExitICFGNode
Definition ICFG.h:69

◆ addFunExitICFGNode()

virtual FunExitICFGNode * SVF::ICFG::addFunExitICFGNode ( const FunObjVar svfFunc)
inlineprotectedvirtual

Definition at line 211 of file ICFG.h.

212 {
213 FunExitICFGNode* sNode = new FunExitICFGNode(totalICFGNode++, svfFunc);
216 }
FunToFunExitNodeMapTy FunToFunExitNodeMap
map a function to its FunEntryICFGNode
Definition ICFG.h:70

◆ addICFGEdge()

bool SVF::ICFG::addICFGEdge ( ICFGEdge edge)
inlineprivate

Add ICFG edge, only used by addIntraEdge, addCallEdge, addRetEdge etc.

Definition at line 277 of file ICFG.h.

278 {
279 bool added1 = edge->getDstNode()->addIncomingEdge(edge);
280 bool added2 = edge->getSrcNode()->addOutgoingEdge(edge);
281 bool all_added = added1 && added2;
282 assert(all_added && "ICFGEdge not added?");
283 return all_added;
284 }

◆ addICFGNode()

virtual void SVF::ICFG::addICFGNode ( ICFGNode node)
inlineprotectedvirtual

Add a ICFG node.

Definition at line 219 of file ICFG.h.

220 {
221 addGNode(node->getId(),node);
222 _repNode[node] = node;
223 _subNodes[node].push_back(node);
224 }
void addGNode(NodeID id, NodeType *node)
Add a Node.
Map< const ICFGNode *, const ICFGNode * > _repNode
map a subnode to its representative node(1st node of basicblock)
Definition ICFG.h:75
Map< const ICFGNode *, std::vector< const ICFGNode * > > _subNodes
map a node(1st node of basicblock) to its subnodes
Definition ICFG.h:74

◆ addIntraEdge()

ICFGEdge * ICFG::addIntraEdge ( ICFGNode srcNode,
ICFGNode dstNode 
)
protected

Add intraprocedural and interprocedural control-flow edges.

Add intraprocedural edges between two nodes

Definition at line 333 of file ICFG.cpp.

334{
337 if (edge != nullptr)
338 {
339 assert(edge->isIntraCFGEdge() && "this should be an intra CFG edge!");
340 return nullptr;
341 }
342 else
343 {
346 }
347}

◆ addIntraICFGNode()

virtual IntraICFGNode * SVF::ICFG::addIntraICFGNode ( const SVFBasicBlock bb,
bool  isRet 
)
inlineprotectedvirtual

Definition at line 175 of file ICFG.h.

176 {
177 IntraICFGNode* intraIcfgNode =
178 new IntraICFGNode(totalICFGNode++, bb, isRet);
180 return intraIcfgNode;
181 }

◆ addNodeToSVFLoop()

void SVF::ICFG::addNodeToSVFLoop ( const ICFGNode node,
const SVFLoop loop 
)
inline

Insert (node, loop) to icfgNodeToSVFLoopVec.

Definition at line 124 of file ICFG.h.

125 {
126 icfgNodeToSVFLoopVec[node].push_back(loop);
127 }

◆ addRetEdge()

ICFGEdge * ICFG::addRetEdge ( ICFGNode srcNode,
ICFGNode dstNode 
)
protected

Add interprocedural return edges between two nodes

Definition at line 392 of file ICFG.cpp.

393{
395 if (edge != nullptr)
396 {
397 assert(edge->isRetCFGEdge() && "this should be a return CFG edge!");
398 return nullptr;
399 }
400 else
401 {
403 return (addICFGEdge(retEdge) ? retEdge : nullptr);
404 }
405}

◆ addRetICFGNode()

virtual RetICFGNode * SVF::ICFG::addRetICFGNode ( CallICFGNode call)
inlineprotectedvirtual

Definition at line 196 of file ICFG.h.

197 {
198 RetICFGNode* retICFGNode = new RetICFGNode(totalICFGNode++, call);
199 call->setRetICFGNode(retICFGNode);
201 return retICFGNode;
202 }

◆ addSubNode()

void SVF::ICFG::addSubNode ( const ICFGNode rep,
const ICFGNode sub 
)
inlineprivate

when ICFG is simplified, SubNode would merge repNode, then update the map

Definition at line 261 of file ICFG.h.

262 {
263 std::vector<const ICFGNode*>& subNodes = _subNodes[sub];
264 if(std::find(subNodes.begin(), subNodes.end(), rep) == subNodes.end())
265 {
266 subNodes.push_back(rep);
267 }
268 }

◆ checkIntraEdgeParents()

void SVF::ICFG::checkIntraEdgeParents ( const ICFGNode srcNode,
const ICFGNode dstNode 
)
inlineprotected

sanitize Intra edges, verify that both nodes belong to the same function.

Definition at line 165 of file ICFG.h.

166 {
167 const FunObjVar* srcfun = srcNode->getFun();
168 const FunObjVar* dstfun = dstNode->getFun();
169 if(srcfun != nullptr && dstfun != nullptr)
170 {
171 assert((srcfun == dstfun) && "src and dst nodes of an intra edge should in the same function!" );
172 }
173 }

◆ dump()

void ICFG::dump ( const std::string &  file,
bool  simple = false 
)

Dump graph into dot file.

Dump ICFG

Definition at line 411 of file ICFG.cpp.

412{
414}
static void WriteGraphToFile(SVF::OutStream &O, const std::string &GraphName, const GraphType &GT, bool simple=false)
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52

◆ getFunEntryBlock()

FunEntryICFGNode * SVF::ICFG::getFunEntryBlock ( const FunObjVar fun)
inlineprivate

Get/Add a function entry node.

Definition at line 287 of file ICFG.h.

288 {
289 FunToFunEntryNodeMapTy::const_iterator it = FunToFunEntryNodeMap.find(fun);
290 if (it == FunToFunEntryNodeMap.end())
291 return nullptr;
292 return it->second;
293 }

◆ getFunEntryICFGNode()

FunEntryICFGNode * ICFG::getFunEntryICFGNode ( const FunObjVar fun)

Add a function entry node.

Get a basic block ICFGNode TODO:: need to fix the assertions

Definition at line 242 of file ICFG.cpp.

243{
245 assert (entry && "fun entry not created in ICFGBuilder?");
246 return entry;
247}
FunEntryICFGNode * getFunEntryBlock(const FunObjVar *fun)
Get/Add a function entry node.
Definition ICFG.h:287

◆ getFunExitBlock()

FunExitICFGNode * SVF::ICFG::getFunExitBlock ( const FunObjVar fun)
inlineprivate

Get/Add a function exit node.

Definition at line 296 of file ICFG.h.

297 {
298 FunToFunExitNodeMapTy::const_iterator it = FunToFunExitNodeMap.find(fun);
299 if (it == FunToFunExitNodeMap.end())
300 return nullptr;
301 return it->second;
302 }

◆ getFunExitICFGNode()

FunExitICFGNode * ICFG::getFunExitICFGNode ( const FunObjVar fun)

Add a function exit node.

Definition at line 249 of file ICFG.cpp.

250{
251 FunExitICFGNode* exit = getFunExitBlock(fun);
252 assert (exit && "fun exit not created in ICFGBuilder?");
253 return exit;
254}
FunExitICFGNode * getFunExitBlock(const FunObjVar *fun)
Get/Add a function exit node.
Definition ICFG.h:296

◆ getGlobalICFGNode()

GlobalICFGNode * SVF::ICFG::getGlobalICFGNode ( ) const
inline

Definition at line 236 of file ICFG.h.

237 {
238 return globalBlockNode;
239 }

◆ getICFGEdge()

ICFGEdge * ICFG::getICFGEdge ( const ICFGNode src,
const ICFGNode dst,
ICFGEdge::ICFGEdgeK  kind 
)

Get a SVFG edge according to src and dst.

Return the corresponding ICFGEdge

Definition at line 311 of file ICFG.cpp.

312{
313
314 ICFGEdge * edge = nullptr;
315 u32_t counter = 0;
316 for (ICFGEdge::ICFGEdgeSetTy::iterator iter = src->OutEdgeBegin();
317 iter != src->OutEdgeEnd(); ++iter)
318 {
319 if ((*iter)->getDstID() == dst->getId() && (*iter)->getEdgeKind() == kind)
320 {
321 counter++;
322 edge = (*iter);
323 }
324 }
325 assert(counter <= 1 && "there's more than one edge between two ICFG nodes");
326 return edge;
327
328}
unsigned u32_t
Definition CommandLine.h:18
iterator OutEdgeEnd()
iterator OutEdgeBegin()
iterators
NodeID getId() const
Get ID.
Definition SVFValue.h:158

◆ getICFGNode()

ICFGNode * SVF::ICFG::getICFGNode ( NodeID  id) const
inline

Get a ICFG node.

Definition at line 86 of file ICFG.h.

87 {
88 return getGNode(id);
89 }
NodeType * getGNode(NodeID id) const
Get a node.

◆ getIcfgNodeToSVFLoopVec()

const ICFGNodeToSVFLoopVec & SVF::ICFG::getIcfgNodeToSVFLoopVec ( ) const
inline

Definition at line 137 of file ICFG.h.

138 {
140 }

◆ getRepNode()

const ICFGNode * SVF::ICFG::getRepNode ( const ICFGNode node) const
inline

Definition at line 246 of file ICFG.h.

247 {
248 return _repNode.at(node);
249 }

◆ getSubNodes()

const std::vector< const ICFGNode * > & SVF::ICFG::getSubNodes ( const ICFGNode node) const
inline

Definition at line 241 of file ICFG.h.

242 {
243 return _subNodes.at(node);
244 }

◆ getSVFLoops()

SVFLoopVec & SVF::ICFG::getSVFLoops ( const ICFGNode node)
inline

Get loops where a node resides.

Definition at line 130 of file ICFG.h.

131 {
132 auto it = icfgNodeToSVFLoopVec.find(node);
133 assert(it != icfgNodeToSVFLoopVec.end() && "node not in loop");
134 return it->second;
135 }

◆ hasICFGNode()

bool SVF::ICFG::hasICFGNode ( NodeID  id) const
inline

Whether has the ICFGNode.

Definition at line 92 of file ICFG.h.

93 {
94 return hasGNode(id);
95 }
bool hasGNode(NodeID id) const
Has a node.

◆ hasInterICFGEdge()

ICFGEdge * ICFG::hasInterICFGEdge ( ICFGNode src,
ICFGNode dst,
ICFGEdge::ICFGEdgeK  kind 
)

Whether we has an inter ICFG edge

Definition at line 276 of file ICFG.cpp.

277{
278 ICFGEdge edge(src,dst, kind);
281 if (outEdge && inEdge)
282 {
283 assert(outEdge == inEdge && "edges not match");
284 return outEdge;
285 }
286 else
287 return nullptr;
288}
bool hasIncomingEdge() const
Has incoming/outgoing edge set.
bool hasOutgoingEdge() const

◆ hasIntraICFGEdge()

ICFGEdge * ICFG::hasIntraICFGEdge ( ICFGNode src,
ICFGNode dst,
ICFGEdge::ICFGEdgeK  kind 
)

Whether we has a SVFG edge.

Whether we has an intra ICFG edge

Definition at line 259 of file ICFG.cpp.

260{
261 ICFGEdge edge(src,dst,kind);
264 if (outEdge && inEdge)
265 {
266 assert(outEdge == inEdge && "edges not match");
267 return outEdge;
268 }
269 else
270 return nullptr;
271}

◆ hasThreadICFGEdge()

ICFGEdge * ICFG::hasThreadICFGEdge ( ICFGNode src,
ICFGNode dst,
ICFGEdge::ICFGEdgeK  kind 
)

Whether we has an thread ICFG edge

Definition at line 293 of file ICFG.cpp.

294{
295 ICFGEdge edge(src,dst,kind);
298 if (outEdge && inEdge)
299 {
300 assert(outEdge == inEdge && "edges not match");
301 return outEdge;
302 }
303 else
304 return nullptr;
305}

◆ isInLoop()

bool SVF::ICFG::isInLoop ( const ICFGNode node)
inline

Whether node is in a loop.

Definition at line 117 of file ICFG.h.

118 {
119 auto it = icfgNodeToSVFLoopVec.find(node);
120 return it != icfgNodeToSVFLoopVec.end();
121 }

◆ removeICFGEdge()

void SVF::ICFG::removeICFGEdge ( ICFGEdge edge)
inlineprotected

Remove a ICFG edge.

Definition at line 151 of file ICFG.h.

152 {
153 edge->getDstNode()->removeIncomingEdge(edge);
154 edge->getSrcNode()->removeOutgoingEdge(edge);
155 delete edge;
156 }

◆ removeICFGNode()

void SVF::ICFG::removeICFGNode ( ICFGNode node)
inlineprotected

Remove a ICFGNode.

Definition at line 159 of file ICFG.h.

160 {
161 removeGNode(node);
162 }
void removeGNode(NodeType *node)
Delete a node.

◆ updateCallGraph()

void ICFG::updateCallGraph ( CallGraph callgraph)

update ICFG for indirect calls

Update ICFG for indirect calls

if this is an external function (no function body), connect calleeEntryNode to calleeExitNode

Remove callBlockNode to retBlockNode intraICFGEdge since we found at least one inter procedural edge

Definition at line 427 of file ICFG.cpp.

428{
429 CallGraph::CallEdgeMap::const_iterator iter = callgraph->getIndCallMap().begin();
430 CallGraph::CallEdgeMap::const_iterator eiter = callgraph->getIndCallMap().end();
431 for (; iter != eiter; iter++)
432 {
433 CallICFGNode* callBlockNode = const_cast<CallICFGNode*>(iter->first);
434 assert(callBlockNode->isIndirectCall() && "this is not an indirect call?");
435 const CallGraph::FunctionSet & functions = iter->second;
436 for (CallGraph::FunctionSet::const_iterator func_iter = functions.begin(); func_iter != functions.end(); func_iter++)
437 {
438 const FunObjVar* callee = *func_iter;
439 RetICFGNode* retBlockNode = const_cast<RetICFGNode*>(callBlockNode->getRetICFGNode());
441 if (isExtCall(callee))
442 addIntraEdge(callBlockNode, retBlockNode);
443 else
444 {
447 if(ICFGEdge* callEdge = addCallEdge(callBlockNode, calleeEntryNode))
448 {
449 for (const SVFStmt *stmt : callBlockNode->getSVFStmts())
450 {
451 if(const CallPE *callPE = SVFUtil::dyn_cast<CallPE>(stmt))
452 {
453 if(callPE->getFunEntryICFGNode() == calleeEntryNode)
454 SVFUtil::cast<CallCFGEdge>(callEdge)->addCallPE(callPE);
455 }
456 }
457 }
459 {
460 for (const SVFStmt *stmt : retBlockNode->getSVFStmts())
461 {
462 if(const RetPE *retPE = SVFUtil::dyn_cast<RetPE>(stmt))
463 {
464 if(retPE->getFunExitICFGNode() == calleeExitNode)
465 SVFUtil::cast<RetCFGEdge>(retEdge)->addRetPE(retPE);
466 }
467 }
468 }
469
473 }
474
475 }
476 }
477 // dump ICFG
478 if (Options::DumpICFG())
479 {
480 dump("icfg_final");
481 }
482}
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
Definition CallGraph.h:319
Set< const FunObjVar * > FunctionSet
Definition CallGraph.h:244
const RetICFGNode * getRetICFGNode() const
Return callsite.
Definition ICFGNode.h:451
bool isIndirectCall() const
Return true if this is an indirect call.
Definition ICFGNode.h:476
void removeICFGEdge(ICFGEdge *edge)
Remove a ICFG edge.
Definition ICFG.h:151
ICFGEdge * addCallEdge(ICFGNode *srcNode, ICFGNode *dstNode)
Definition ICFG.cpp:374
void dump(const std::string &file, bool simple=false)
Dump graph into dot file.
Definition ICFG.cpp:411
ICFGEdge * addRetEdge(ICFGNode *srcNode, ICFGNode *dstNode)
Definition ICFG.cpp:392
ICFGEdge * addIntraEdge(ICFGNode *srcNode, ICFGNode *dstNode)
Add intraprocedural and interprocedural control-flow edges.
Definition ICFG.cpp:333
static const Option< bool > DumpICFG
Definition Options.h:123
bool isExtCall(const FunObjVar *fun)
Definition SVFUtil.cpp:437

◆ updateRepNode()

void SVF::ICFG::updateRepNode ( const ICFGNode rep,
const ICFGNode sub 
)
inlineprivate

when ICFG is simplified, some node would be removed, this map records the removed node to its rep node

Definition at line 271 of file ICFG.h.

272 {
273 _repNode[rep] = sub;
274 }

◆ updateSubAndRep()

void SVF::ICFG::updateSubAndRep ( const ICFGNode rep,
const ICFGNode sub 
)
inline

Definition at line 252 of file ICFG.h.

253 {
254 addSubNode(rep, sub);
255 updateRepNode(rep, sub);
256 }
void updateRepNode(const ICFGNode *rep, const ICFGNode *sub)
when ICFG is simplified, some node would be removed, this map records the removed node to its rep nod...
Definition ICFG.h:271
void addSubNode(const ICFGNode *rep, const ICFGNode *sub)
when ICFG is simplified, SubNode would merge repNode, then update the map
Definition ICFG.h:261

◆ view()

void ICFG::view ( )

View graph from the debugger.

View ICFG

Definition at line 419 of file ICFG.cpp.

420{
421 SVF::ViewGraph(this, "Interprocedural Control-Flow Graph");
422}
void ViewGraph(const GraphType &G, const std::string &name, bool ShortNames=false, GraphProgram::Name Program=GraphProgram::DOT)

Friends And Related Symbol Documentation

◆ ICFGBuilder

Definition at line 49 of file ICFG.h.

◆ ICFGSimplification

friend class ICFGSimplification
friend

Definition at line 52 of file ICFG.h.

◆ SVFIRReader

friend class SVFIRReader
friend

Definition at line 51 of file ICFG.h.

◆ SVFIRWriter

friend class SVFIRWriter
friend

Definition at line 50 of file ICFG.h.

Member Data Documentation

◆ _repNode

Map<const ICFGNode*, const ICFGNode*> SVF::ICFG::_repNode
private

map a subnode to its representative node(1st node of basicblock)

Definition at line 75 of file ICFG.h.

◆ _subNodes

Map<const ICFGNode*, std::vector<const ICFGNode*> > SVF::ICFG::_subNodes
private

map a node(1st node of basicblock) to its subnodes

Definition at line 74 of file ICFG.h.

◆ FunToFunEntryNodeMap

FunToFunEntryNodeMapTy SVF::ICFG::FunToFunEntryNodeMap
private

map a function to its FunExitICFGNode

Definition at line 69 of file ICFG.h.

◆ FunToFunExitNodeMap

FunToFunExitNodeMapTy SVF::ICFG::FunToFunExitNodeMap
private

map a function to its FunEntryICFGNode

Definition at line 70 of file ICFG.h.

◆ globalBlockNode

GlobalICFGNode* SVF::ICFG::globalBlockNode
private

unique basic block for all globals

Definition at line 71 of file ICFG.h.

◆ icfgNodeToSVFLoopVec

ICFGNodeToSVFLoopVec SVF::ICFG::icfgNodeToSVFLoopVec
private

map ICFG node to the SVF loops where it resides

Definition at line 72 of file ICFG.h.

◆ totalICFGNode

NodeID SVF::ICFG::totalICFGNode

Definition at line 66 of file ICFG.h.


The documentation for this class was generated from the following files: