Static Value-Flow Analysis
Loading...
Searching...
No Matches
ConsG.h
Go to the documentation of this file.
1//===- ConsG.h -- Constraint graph representation-----------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <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 * ConstraintGraph.h
25 *
26 * Created on: Oct 14, 2013
27 * Author: Yulei Sui
28 */
29
30#ifndef CONSG_H_
31#define CONSG_H_
32
33#include "Graphs/ConsGEdge.h"
34#include "Graphs/ConsGNode.h"
35
36namespace SVF
37{
38
44class ConstraintGraph : public GenericGraph<ConstraintNode,ConstraintEdge>
45{
46
47public:
49 typedef ConstraintEdge::ConstraintEdgeSetTy::iterator ConstraintNodeIter;
53
54protected:
60
65
66 void buildCG();
67
68 void destroy();
69
70 void clearSolitaries(); // remove nodes that are neither pointers nor connected with any edge
71
76
78
79 inline NodeID getReturnNode(const FunObjVar* value) const
80 {
81 return pag->getReturnNode(value);
82 }
83
84 inline NodeID getVarargNode(const FunObjVar* value) const
85 {
86 return pag->getVarargNode(value);
87 }
89
90public:
93 {
94 buildCG();
95 }
98 {
99 destroy();
100 }
101
103
105 {
106 id = sccRepNode(id);
107 return getGNode(id);
108 }
110 {
111 addGNode(id,node);
112 }
113 inline bool hasConstraintNode(NodeID id) const
114 {
115 id = sccRepNode(id);
116 return hasGNode(id);
117 }
119 {
120 removeGNode(node);
121 }
123
126 {
127 ConstraintEdge edge(src,dst,kind);
128 if(kind == ConstraintEdge::Copy ||
130 return directEdgeSet.find(&edge) != directEdgeSet.end();
131 else if(kind == ConstraintEdge::Addr)
132 return AddrCGEdgeSet.find(&edge) != AddrCGEdgeSet.end();
133 else if(kind == ConstraintEdge::Store)
134 return StoreCGEdgeSet.find(&edge) != StoreCGEdgeSet.end();
135 else if(kind == ConstraintEdge::Load)
136 return LoadCGEdgeSet.find(&edge) != LoadCGEdgeSet.end();
137 else
138 assert(false && "no other kind!");
139 return false;
140 }
141
144 {
145 ConstraintEdge edge(src,dst,kind);
147 {
148 auto eit = directEdgeSet.find(&edge);
149 return *eit;
150 }
151 else if(kind == ConstraintEdge::Addr)
152 {
153 auto eit = AddrCGEdgeSet.find(&edge);
154 return *eit;
155 }
156 else if(kind == ConstraintEdge::Store)
157 {
158 auto eit = StoreCGEdgeSet.find(&edge);
159 return *eit;
160 }
161 else if(kind == ConstraintEdge::Load)
162 {
163 auto eit = LoadCGEdgeSet.find(&edge);
164 return *eit;
165 }
166 else
167 {
168 assert(false && "no other kind!");
169 return nullptr;
170 }
171 }
172
174
175
187
189
190
211
213
214
227
229
230 inline NodeID sccRepNode(NodeID id) const
231 {
232 NodeToRepMap::const_iterator it = nodeToRepMap.find(id);
233 if(it==nodeToRepMap.end())
234 return id;
235 else
236 return it->second;
237 }
239 {
240 nodeToSubsMap[id].set(id);
241 return nodeToSubsMap[id];
242 }
243 inline void setRep(NodeID node, NodeID rep)
244 {
245 nodeToRepMap[node] = rep;
246 }
247 inline void setSubs(NodeID node, NodeBS& subs)
248 {
249 nodeToSubsMap[node] |= subs;
250 }
251 inline void resetSubs(NodeID node)
252 {
253 nodeToSubsMap.erase(node);
254 }
255 inline NodeBS& getSubs(NodeID node)
256 {
257 return nodeToSubsMap[node];
258 }
259 inline NodeID getRep(NodeID node)
260 {
261 return nodeToRepMap[node];
262 }
263 inline void resetRep(NodeID node)
264 {
265 nodeToRepMap.erase(node);
266 }
268
273
278
282 {
283 bool gepIn = moveInEdgesToRepNode(node, rep);
284 bool gepOut = moveOutEdgesToRepNode(node, rep);
285 return (gepIn || gepOut);
286 }
287
290 {
291 if (NormalGepCGEdge *normalGepCGEdge = SVFUtil::dyn_cast<NormalGepCGEdge>(edge))
292 if (0 == normalGepCGEdge->getConstantFieldIdx())
293 return true;
294 return false;
295 }
296
298
300 {
301 return pag->getIndirectCallsites();
302 }
304 {
305 return pag->getBlackHoleNode();
306 }
308 {
309 return pag->isBlkObjOrConstantObj(id);
310 }
312 {
313 return pag->getAllFieldsObjVars(id);
314 }
316 {
317 return pag->getBaseObjVar(id);
318 }
319 inline bool isSingleFieldObj(NodeID id) const
320 {
321 const BaseObjVar* baseObj = pag->getBaseObject(id);
322 return (baseObj->getMaxFieldOffsetLimit() == 1);
323 }
325 inline NodeID getGepObjVar(NodeID id, const APOffset& apOffset)
326 {
327 NodeID gep = pag->getGepObjVar(id, apOffset);
329 if(sccRepNode(gep)==gep && hasConstraintNode(gep)==false)
331 return gep;
332 }
335 {
336 NodeID fi = pag->getFIObjVar(id);
338 assert((hasConstraintNode(fi) || sccRepNode(fi) != fi) && "non-existing fi obj??");
339 return fi;
340 }
342
344
346 {
348 }
350 {
352 }
354
356
357 inline bool hasNodesToBeCollapsed() const
358 {
359 return (!nodesToBeCollapsed.empty());
360 }
362 {
364 }
366 {
367 return nodesToBeCollapsed.pop();
368 }
370
372 void dump(std::string name);
374 void print();
375
377 void view();
378};
379
380
381/* !
382 * GenericGraphTraits specializations for the generic graph algorithms.
383 * Provide graph traits for traversing from a constraint node using standard graph traversals.
384 */
385template<> struct GenericGraphTraits<SVF::ConstraintNode*> : public GenericGraphTraits<SVF::GenericNode<SVF::ConstraintNode,SVF::ConstraintEdge>* >
386{
387};
388
390template<>
391struct GenericGraphTraits<Inverse<SVF::ConstraintNode *> > : public GenericGraphTraits<Inverse<SVF::GenericNode<SVF::ConstraintNode,SVF::ConstraintEdge>* > >
392{
393};
394
395template<> struct GenericGraphTraits<SVF::ConstraintGraph*> : public GenericGraphTraits<SVF::GenericGraph<SVF::ConstraintNode,SVF::ConstraintEdge>* >
396{
398};
399
400} // End namespace SVF
401
402#endif /* CONSG_H_ */
cJSON * p
Definition cJSON.cpp:2559
const char *const name
Definition cJSON.h:264
GenericNode< ConstraintNode, ConstraintEdge >::GEdgeSetTy ConstraintEdgeSetTy
Constraint edge type.
Definition ConsGEdge.h:85
NodeID getNextCollapseNode()
Definition ConsG.h:365
void setPWCNode(NodeID nodeId)
Definition ConsG.h:349
bool moveInEdgesToRepNode(ConstraintNode *node, ConstraintNode *rep)
Definition ConsG.cpp:474
ConstraintEdge::ConstraintEdgeSetTy StoreCGEdgeSet
Definition ConsG.h:64
void setSubs(NodeID node, NodeBS &subs)
Definition ConsG.h:247
ConstraintEdge::ConstraintEdgeSetTy::iterator ConstraintNodeIter
Definition ConsG.h:49
virtual ~ConstraintGraph()
Destructor.
Definition ConsG.h:97
void addNodeToBeCollapsed(NodeID id)
Definition ConsG.h:361
ConstraintEdge::ConstraintEdgeSetTy directEdgeSet
Definition ConsG.h:62
ConstraintEdge::ConstraintEdgeSetTy LoadCGEdgeSet
Definition ConsG.h:63
LoadCGEdge * addLoadCGEdge(NodeID src, NodeID dst)
Add Load edge.
Definition ConsG.cpp:288
SVFStmt::SVFStmtSetTy & getPAGEdgeSet(SVFStmt::PEDGEK kind)
Definition ConsG.h:72
void view()
View graph from the debugger.
Definition ConsG.cpp:659
bool isSingleFieldObj(NodeID id) const
Definition ConsG.h:319
NodeID sccRepNode(NodeID id) const
SCC rep/sub nodes methods.
Definition ConsG.h:230
ConstraintEdge::ConstraintEdgeSetTy & getStoreCGEdges()
Get Store edges.
Definition ConsG.h:206
ConstraintEdge::ConstraintEdgeSetTy & getDirectCGEdges()
Get Copy/call/ret/gep edges.
Definition ConsG.h:196
void reTargetDstOfEdge(ConstraintEdge *edge, ConstraintNode *newDstNode)
Used for cycle elimination.
Definition ConsG.cpp:335
OrderedMap< NodeID, ConstraintNode * > ConstraintNodeIDToNodeMapTy
Definition ConsG.h:48
AddrCGEdge * addAddrCGEdge(NodeID src, NodeID dst)
Add a SVFIR edge into Edge map.
Definition ConsG.cpp:202
ConstraintEdge::ConstraintEdgeSetTy AddrCGEdgeSet
Definition ConsG.h:61
void addConstraintNode(ConstraintNode *node, NodeID id)
Definition ConsG.h:109
bool hasEdge(ConstraintNode *src, ConstraintNode *dst, ConstraintEdge::ConstraintEdgeK kind)
Definition ConsG.h:125
void resetSubs(NodeID node)
Definition ConsG.h:251
ConstraintEdge::ConstraintEdgeSetTy & getLoadCGEdges()
Get Load edges.
Definition ConsG.h:201
CopyCGEdge * addCopyCGEdge(NodeID src, NodeID dst)
Add Copy edge.
Definition ConsG.cpp:222
StoreCGEdge * addStoreCGEdge(NodeID src, NodeID dst)
Add Store edge.
Definition ConsG.cpp:309
NodeID getVarargNode(const FunObjVar *value) const
Definition ConsG.h:84
NodeID getGepObjVar(NodeID id, const APOffset &apOffset)
Get a field of a memory object.
Definition ConsG.h:325
VariantGepCGEdge * addVariantGepCGEdge(NodeID src, NodeID dst)
Definition ConsG.cpp:267
const SVFIR::CallSiteToFunPtrMap & getIndirectCallsites() const
Wrappers for invoking SVFIR methods.
Definition ConsG.h:299
NodeID getBaseObjVar(NodeID id)
Definition ConsG.h:315
NodeID getReturnNode(const FunObjVar *value) const
Wrappers used internally, not expose to Andersen Pass.
Definition ConsG.h:79
NodeID getFIObjVar(NodeID id)
Get a field-insensitive node of a memory object.
Definition ConsG.h:334
ConstraintGraph(SVFIR *p)
Constructor.
Definition ConsG.h:92
NodeBS & getSubs(NodeID node)
Definition ConsG.h:255
bool isPWCNode(NodeID nodeId)
Check/Set PWC (positive weight cycle) flag.
Definition ConsG.h:345
bool isBlkObjOrConstantObj(NodeID id)
Definition ConsG.h:307
void removeConstraintNode(ConstraintNode *node)
Definition ConsG.h:118
void removeDirectEdge(ConstraintEdge *edge)
Remove direct edge from their src and dst edge sets.
Definition ConsG.cpp:459
void resetRep(NodeID node)
Definition ConsG.h:263
bool moveOutEdgesToRepNode(ConstraintNode *node, ConstraintNode *rep)
Definition ConsG.cpp:532
void removeLoadEdge(LoadCGEdge *edge)
Remove load edge from their src and dst edge sets.
Definition ConsG.cpp:433
ConstraintNode * getConstraintNode(NodeID id) const
Get/add/remove constraint node.
Definition ConsG.h:104
ConstraintEdge * getEdge(ConstraintNode *src, ConstraintNode *dst, ConstraintEdge::ConstraintEdgeK kind)
Get an edge via its src and dst nodes and kind.
Definition ConsG.h:143
bool hasNodesToBeCollapsed() const
Add/get nodes to be collapsed.
Definition ConsG.h:357
void print()
Print CG into terminal.
Definition ConsG.cpp:599
void reTargetSrcOfEdge(ConstraintEdge *edge, ConstraintNode *newSrcNode)
Remove edge from old src target, change edge dst id and add modified edge into new src.
Definition ConsG.cpp:379
bool moveEdgesToRepNode(ConstraintNode *node, ConstraintNode *rep)
Definition ConsG.h:281
void removeStoreEdge(StoreCGEdge *edge)
Remove store edge from their src and dst edge sets.
Definition ConsG.cpp:446
bool hasConstraintNode(NodeID id) const
Definition ConsG.h:113
NormalGepCGEdge * addNormalGepCGEdge(NodeID src, NodeID dst, const AccessPath &ap)
Add Gep edge.
Definition ConsG.cpp:245
NodeToRepMap nodeToRepMap
Definition ConsG.h:56
NodeID getBlackHoleNode()
Definition ConsG.h:303
NodeBS & sccSubNodes(NodeID id)
Definition ConsG.h:238
void setRep(NodeID node, NodeID rep)
Definition ConsG.h:243
ConstraintEdge::ConstraintEdgeSetTy & getAddrCGEdges()
Get SVFIR edge.
Definition ConsG.h:191
Map< NodeID, NodeBS > NodeToSubsMap
Definition ConsG.h:51
void removeAddrEdge(AddrCGEdge *edge)
Remove addr edge from their src and dst edge sets.
Definition ConsG.cpp:420
NodeID getRep(NodeID node)
Definition ConsG.h:259
FIFOWorkList< NodeID > WorkList
Definition ConsG.h:52
WorkList nodesToBeCollapsed
Definition ConsG.h:58
bool isZeroOffsettedGepCGEdge(ConstraintEdge *edge) const
Check if a given edge is a NormalGepCGEdge with 0 offset.
Definition ConsG.h:289
NodeBS & getAllFieldsObjVars(NodeID id)
Definition ConsG.h:311
NodeToSubsMap nodeToSubsMap
Definition ConsG.h:57
void dump(std::string name)
Dump graph into dot file.
Definition ConsG.cpp:591
Map< NodeID, NodeID > NodeToRepMap
Definition ConsG.h:50
bool isPWCNode() const
Whether a node involves in PWC, if so, all its points-to elements should become field-insensitive.
Definition ConsGNode.h:81
bool push(const Data &data)
Definition WorkList.h:165
bool empty() const
Definition WorkList.h:146
void addGNode(NodeID id, NodeType *node)
Add a Node.
void removeGNode(NodeType *node)
Delete a node.
NodeType * getGNode(NodeID id) const
Get a node.
NodeID getBlackHoleNode() const
Definition IRGraph.h:247
NodeID getReturnNode(const FunObjVar *func) const
GetReturnNode - Return the unique node representing the return value of a function.
Definition IRGraph.cpp:60
NodeID getVarargNode(const FunObjVar *func) const
getVarargNode - Return the unique node representing the variadic argument of a variadic function.
Definition IRGraph.cpp:67
SVFStmt::SVFStmtSetTy & getPTASVFStmtSet(SVFStmt::PEDGEK kind)
Get PTA edges set according to its kind.
Definition SVFIR.h:234
NodeID getGepObjVar(const BaseObjVar *baseObj, const APOffset &ap)
Get a field SVFIR Object node according to base mem obj and offset.
Definition SVFIR.cpp:439
OrderedMap< const CallICFGNode *, NodeID > CallSiteToFunPtrMap
Definition SVFIR.h:54
const BaseObjVar * getBaseObject(NodeID id) const
Definition SVFIR.h:423
NodeID getBaseObjVar(NodeID id) const
Base and Offset methods for Value and Object node.
Definition SVFIR.h:479
NodeBS & getAllFieldsObjVars(const BaseObjVar *obj)
Get all fields of an object.
Definition SVFIR.cpp:483
const CallSiteToFunPtrMap & getIndirectCallsites() const
Add/get indirect callsites.
Definition SVFIR.h:378
bool isBlkObjOrConstantObj(NodeID id) const
Get black hole and constant id.
Definition SVFIR.h:462
NodeID getFIObjVar(const BaseObjVar *obj) const
Get a field-insensitive obj SVFIR node according to a mem obj.
Definition SVFIR.h:449
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
void set(unsigned Idx)
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:56
s64_t APOffset
Definition GeneralType.h:60
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
u32_t EdgeID
Definition GeneralType.h:57