Static Value-Flow Analysis
Loading...
Searching...
No Matches
BasicBlockG.h
Go to the documentation of this file.
1//===- BasicBlockG.h -- BasicBlock node------------------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2025> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * ICFGNode.h
25 *
26 * Created on: 23 Jan, 2025
27 * Author: Jiawei, Xiao
28 */
29
30#ifndef BASICBLOCKGRAPH_H_
31#define BASICBLOCKGRAPH_H_
32#include "GenericGraph.h"
33#include <sstream>
34#include <algorithm>
35
36
37namespace SVF
38{
39class SVFBasicBlock;
40class BasicBlockEdge;
41class ICFGNode;
42class FunObjVar;
43
46{
47 friend class SVFIRWriter;
48 friend class SVFIRReader;
49
50public:
51public:
58
60
62 {
63 o << edge.toString();
64 return o;
65 }
67
68 virtual const std::string toString() const;
69};
70
71
74{
75 friend class LLVMModuleSet;
76 friend class SVFIRWriter;
77 friend class SVFIRReader;
78 friend class SVFIRBuilder;
79 friend class FunObjVar;
80 friend class ICFGBuilder;
81 friend class ICFG;
82
83public:
84 typedef std::vector<const ICFGNode*>::const_iterator const_iterator;
85 std::vector<const SVFBasicBlock*> succBBs;
86 std::vector<const SVFBasicBlock*> predBBs;
87
88private:
89 std::vector<const ICFGNode*> allICFGNodes;
90 const FunObjVar* fun;
91
92
93
94protected:
96
97 inline void addICFGNode(const ICFGNode* icfgNode)
98 {
100 icfgNode) == getICFGNodeList().end() && "duplicated icfgnode");
101 allICFGNodes.push_back(icfgNode);
102 }
103
105
106public:
112 SVFBasicBlock() = delete;
114 {
115
116 }
117
118 static inline bool classof(const SVFValue* node)
119 {
120 return node->getNodeKind() == SVFValue::BasicBlockKd;
121 }
122
123 static inline bool classof(const SVFBasicBlock* node)
124 {
125 return true;
126 }
127
130 {
131 o << node.toString();
132 return o;
133 }
135
136
137 inline const std::vector<const ICFGNode*>& getICFGNodeList() const
138 {
139 return allICFGNodes;
140 }
141
142 inline const_iterator begin() const
143 {
144 return allICFGNodes.begin();
145 }
146
147 inline const_iterator end() const
148 {
149 return allICFGNodes.end();
150 }
151
152
153 inline void setFun(const FunObjVar* f)
154 {
155 fun = f;
156 }
157
159 {
160 // check if the edge already exists
161 for (auto edge: this->getOutEdges())
162 {
163 if (edge->getDstNode() == succ2)
164 return;
165 }
166
167 SVFBasicBlock* succ = const_cast<SVFBasicBlock*>(succ2);
169 this->addOutgoingEdge(edge);
170 succ->addIncomingEdge(edge);
171 this->succBBs.push_back(succ);
172 succ->predBBs.push_back(this);
173 }
174
176 {
177 // check if the edge already exists
178 for (auto edge: this->getInEdges())
179 {
180 if (edge->getSrcNode() == pred2)
181 return;
182 }
183 SVFBasicBlock* pred = const_cast<SVFBasicBlock*>(pred2);
185 this->addIncomingEdge(edge);
186 pred->addOutgoingEdge(edge);
187 this->predBBs.push_back(pred);
188 pred->succBBs.push_back(this);
189 }
190
191 inline const FunObjVar* getParent() const
192 {
193 assert(fun && "Function is null?");
194 return fun;
195 }
196
197 inline const FunObjVar* getFunction() const
198 {
199 assert(fun && "Function is null?");
200 return fun;
201 }
202
203 inline const ICFGNode* front() const
204 {
205 assert(!allICFGNodes.empty() && "bb empty?");
206 return allICFGNodes.front();
207 }
208
209 inline const ICFGNode* back() const
210 {
211 assert(!allICFGNodes.empty() && "bb empty?");
212 return allICFGNodes.back();
213 }
214
215 inline std::vector<const SVFBasicBlock*> getSuccessors() const
216 {
217 std::vector<const SVFBasicBlock*> res;
218 for (auto edge : this->getOutEdges())
219 {
220 res.push_back(edge->getDstNode());
221 }
222 return res;
223 }
224
225 inline std::vector<const SVFBasicBlock*> getPredecessors() const
226 {
227 std::vector<const SVFBasicBlock*> res;
228 for (auto edge : this->getInEdges())
229 {
230 res.push_back(edge->getSrcNode());
231 }
232 return res;
233 }
235 {
236 return this->getOutEdges().size();
237 }
239 {
240 u32_t i = 0;
241 for (const SVFBasicBlock* SuccBB: succBBs)
242 {
243 if (SuccBB == Succ)
244 return i;
245 i++;
246 }
247 assert(false && "Didn't find successor edge?");
248 return 0;
249 }
251 {
252 u32_t i = 0;
253 for (const SVFBasicBlock* SuccBB: succBBs)
254 {
255 if (SuccBB == Succ)
256 return i;
257 i++;
258 }
259 assert(false && "Didn't find successor edge?");
260 return 0;
261
262 }
264 {
265 u32_t pos = 0;
266 for (const SVFBasicBlock* PredBB : succbb->getPredecessors())
267 {
268 if(PredBB == this)
269 return pos;
270 ++pos;
271 }
272 assert(false && "Didn't find predecessor edge?");
273 return pos;
274 }
276 {
277 u32_t pos = 0;
278 for (const SVFBasicBlock* PredBB : succbb->getPredecessors())
279 {
280 if(PredBB == this)
281 return pos;
282 ++pos;
283 }
284 assert(false && "Didn't find predecessor edge?");
285 return pos;
286 }
287
288 const std::string toString() const;
289
290};
291
292
293
296{
297private:
298 NodeID id{0};
299public:
302 {
303
304 }
305
306 SVFBasicBlock* addBasicBlock(const std::string& bbname)
307 {
308 id++;
309 SVFBasicBlock* bb = new SVFBasicBlock(id, nullptr);
310 addGNode(id, bb);
311 bb->setName(bbname);
312 return bb;
313 }
314
315};
316}
317
318#endif
friend OutStream & operator<<(OutStream &o, const BasicBlockEdge &edge)
Overloading operator << for dumping ICFG node ID.
Definition BasicBlockG.h:61
BasicBlockEdge(SVFBasicBlock *s, SVFBasicBlock *d)
Constructor.
Definition BasicBlockG.h:53
friend class SVFIRReader
Definition BasicBlockG.h:48
virtual const std::string toString() const
~BasicBlockEdge()
Destructor.
Definition BasicBlockG.h:57
friend class SVFIRWriter
Definition BasicBlockG.h:47
SVFBasicBlock * addBasicBlock(const std::string &bbname)
BasicBlockGraph()
Constructor.
void addGNode(NodeID id, NodeType *node)
Add a Node.
const GEdgeSetTy & getOutEdges() const
const GEdgeSetTy & getInEdges() const
bool addIncomingEdge(EdgeType *inEdge)
Add incoming and outgoing edges.
bool addOutgoingEdge(EdgeType *outEdge)
static bool classof(const SVFValue *node)
const FunObjVar * fun
Definition BasicBlockG.h:90
u32_t getBBSuccessorPos(const SVFBasicBlock *Succ) const
const FunObjVar * getParent() const
SVFBasicBlock(NodeID id, const FunObjVar *f)
Constructor without name.
void setFun(const FunObjVar *f)
void addPredBasicBlock(const SVFBasicBlock *pred2)
std::vector< const SVFBasicBlock * > getPredecessors() const
const std::vector< const ICFGNode * > & getICFGNodeList() const
const FunObjVar * getFunction() const
const std::string toString() const
void addSuccBasicBlock(const SVFBasicBlock *succ2)
void addICFGNode(const ICFGNode *icfgNode)
Function where this BasicBlock is.
Definition BasicBlockG.h:97
friend OutStream & operator<<(OutStream &o, const SVFBasicBlock &node)
const ICFGNode * front() const
std::vector< const SVFBasicBlock * > succBBs
Definition BasicBlockG.h:85
u32_t getBBPredecessorPos(const SVFBasicBlock *succbb)
u32_t getBBPredecessorPos(const SVFBasicBlock *succbb) const
std::vector< constICFGNode * >::const_iterator const_iterator
Definition BasicBlockG.h:84
friend class SVFIRReader
Definition BasicBlockG.h:77
std::vector< const ICFGNode * > allICFGNodes
all ICFGNodes in this BasicBlock
Definition BasicBlockG.h:89
static bool classof(const SVFBasicBlock *node)
const_iterator end() const
friend class SVFIRWriter
Definition BasicBlockG.h:76
const_iterator begin() const
u32_t getBBSuccessorPos(const SVFBasicBlock *Succ)
SVFBasicBlock()=delete
u32_t getNumSuccessors() const
std::vector< const SVFBasicBlock * > predBBs
Definition BasicBlockG.h:86
const ICFGNode * back() const
std::vector< const SVFBasicBlock * > getSuccessors() const
GNodeK getNodeKind() const
Get node kind.
Definition SVFValue.h:164
NodeID id
Node ID.
Definition SVFValue.h:203
virtual void setName(const std::string &nameInfo)
Definition SVFValue.h:174
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:56
std::ostream OutStream
Definition GeneralType.h:46
GenericNode< SVFBasicBlock, BasicBlockEdge > GenericBasicBlockNodeTy
Definition BasicBlockG.h:72
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
GenericEdge< SVFBasicBlock > GenericBasicBlockEdgeTy
Definition BasicBlockG.h:44
unsigned u32_t
Definition GeneralType.h:47
GenericGraph< SVFBasicBlock, BasicBlockEdge > GenericBasicBlockGraphTy