Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFVariables.cpp
Go to the documentation of this file.
1//===- SVFVariables.cpp -- SVF symbols and variables----------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <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 * SVFVariables.cpp
25 *
26 * Created on: Oct 11, 2013
27 * Author: Yulei Sui
28 */
29
30#include "SVFIR/SVFVariables.h"
31#include "Util/Options.h"
32#include "Util/SVFUtil.h"
33#include "Graphs/CallGraph.h"
34
35using namespace SVF;
36using namespace SVFUtil;
37
38
46
48{
49 if (const FunObjVar* fun = getFunction())
50 {
51 return fun->isUncalledFunction();
52 }
53 else
54 {
55 return false;
56 }
57}
58
60{
61 if (getInEdges().empty() && getOutEdges().empty())
62 return true;
64 return true;
65 else
66 return false;
67}
68
69
70const std::string SVFVar::toString() const
71{
72 std::string str;
73 std::stringstream rawstr(str);
74 rawstr << "SVFVar ID: " << getId();
75 return rawstr.str();
76}
77
78void SVFVar::dump() const
79{
80 outs() << this->toString() << "\n";
81}
82
84{
85 if(icfgNode)
86 return icfgNode->getFun();
87 return nullptr;
88}
89
90const std::string ValVar::toString() const
91{
92 std::string str;
93 std::stringstream rawstr(str);
94 rawstr << "ValVar ID: " << getId();
96 {
97 rawstr << "\n";
99 }
100 return rawstr.str();
101}
102
103const std::string ObjVar::toString() const
104{
105 std::string str;
106 std::stringstream rawstr(str);
107 rawstr << "ObjVar ID: " << getId();
109 {
110 rawstr << "\n";
112 }
113 return rawstr.str();
114}
115
117 const SVF::FunObjVar* callGraphNode, const SVFType* svfType)
118 : ValVar(i, svfType, icn, ArgValNode),
119 cgNode(callGraphNode), argNo(argNo)
120{
121
122}
123
125{
126 return getParent();
127}
128
130{
131 return cgNode;
132}
133
138
140{
141 return cgNode->getArg(argNo)->getType()->isPointerTy();
142}
143
144const std::string ArgValVar::toString() const
145{
146 std::string str;
147 std::stringstream rawstr(str);
148 rawstr << "ArgValVar ID: " << getId();
150 {
151 rawstr << "\n";
153 }
154 return rawstr.str();
155}
156
158 const AccessPath& ap, const SVFType* ty, const ICFGNode* node)
159 : ValVar(i, ty, node, GepValNode), ap(ap), base(baseNode), gepValType(ty)
160{
161
162}
163
164const std::string GepValVar::toString() const
165{
166 std::string str;
167 std::stringstream rawstr(str);
168 rawstr << "GepValVar ID: " << getId() << " with offset_" + std::to_string(getConstantFieldIdx());
170 {
171 rawstr << "\n";
173 }
174 return rawstr.str();
175}
176
178 : ValVar(i, svfType, icn, RetValNode), callGraphNode(node)
179{
180}
181
183{
184 return callGraphNode;
185}
186
188{
190}
191
192
193const std::string RetValPN::getValueName() const
194{
195 return callGraphNode->getName() + "_ret";
196}
197
198const std::string GepObjVar::toString() const
199{
200 std::string str;
201 std::stringstream rawstr(str);
202 rawstr << "GepObjVar ID: " << getId() << " with offset_" + std::to_string(apOffset);
204 {
205 rawstr << "\n";
207 }
208 return rawstr.str();
209}
210
215
217{
218 return IRGraph::isBlkObj(getId());
219}
220
221
223{
224 if(icfgNode)
225 return icfgNode->getFun();
226 return nullptr;
227}
228const std::string BaseObjVar::toString() const
229{
230 std::string str;
231 std::stringstream rawstr(str);
232 rawstr << "BaseObjVar ID: " << getId() << " (base object)";
234 {
235 rawstr << "\n";
237 }
238 return rawstr.str();
239}
240
241
242const std::string HeapObjVar::toString() const
243{
244 std::string str;
245 std::stringstream rawstr(str);
246 rawstr << "HeapObjVar ID: " << getId();
248 {
249 rawstr << "\n";
251 }
252 return rawstr.str();
253}
254
255const std::string StackObjVar::toString() const
256{
257 std::string str;
258 std::stringstream rawstr(str);
259 rawstr << "StackObjVar ID: " << getId();
261 {
262 rawstr << "\n";
264 }
265 return rawstr.str();
266}
267
268
269
271 : ValVar(i, svfType, icn, FunValNode), funObjVar(cgn)
272{
273}
274
275const std::string FunValVar::toString() const
276{
277 std::string str;
278 std::stringstream rawstr(str);
279 rawstr << "FunValVar ID: " << getId();
281 {
282 rawstr << "\n";
284 }
285 return rawstr.str();
286}
287
288const std::string ConstAggValVar::toString() const
289{
290 std::string str;
291 std::stringstream rawstr(str);
292 rawstr << "ConstAggValVar ID: " << getId();
294 {
295 rawstr << "\n";
297 }
298 return rawstr.str();
299}
300const std::string ConstDataValVar::toString() const
301{
302 std::string str;
303 std::stringstream rawstr(str);
304 rawstr << "ConstDataValVar ID: " << getId();
306 {
307 rawstr << "\n";
309 }
310 return rawstr.str();
311}
312
313const std::string GlobalValVar::toString() const
314{
315 std::string str;
316 std::stringstream rawstr(str);
317 rawstr << "GlobalValVar ID: " << getId();
319 {
320 rawstr << "\n";
322 }
323 return rawstr.str();
324}
325
326const std::string ConstFPValVar::toString() const
327{
328 std::string str;
329 std::stringstream rawstr(str);
330 rawstr << "ConstFPValVar ID: " << getId();
332 {
333 rawstr << "\n";
335 }
336 return rawstr.str();
337}
338
339const std::string ConstIntValVar::toString() const
340{
341 std::string str;
342 std::stringstream rawstr(str);
343 rawstr << "ConstIntValVar ID: " << getId();
345 {
346 rawstr << "\n";
348 }
349 return rawstr.str();
350}
351
352const std::string ConstNullPtrValVar::toString() const
353{
354 std::string str;
355 std::stringstream rawstr(str);
356 rawstr << "ConstNullPtrValVar ID: " << getId();
358 {
359 rawstr << "\n";
361 }
362 return rawstr.str();
363}
364
365const std::string GlobalObjVar::toString() const
366{
367 std::string str;
368 std::stringstream rawstr(str);
369 rawstr << "GlobalObjVar ID: " << getId();
371 {
372 rawstr << "\n";
374 }
375 return rawstr.str();
376}
377const std::string ConstAggObjVar::toString() const
378{
379 std::string str;
380 std::stringstream rawstr(str);
381 rawstr << "ConstAggObjVar ID: " << getId();
383 {
384 rawstr << "\n";
386 }
387 return rawstr.str();
388}
389const std::string ConstDataObjVar::toString() const
390{
391 std::string str;
392 std::stringstream rawstr(str);
393 rawstr << "ConstDataObjVar ID: " << getId();
395 {
396 rawstr << "\n";
398 }
399 return rawstr.str();
400}
401
402const std::string ConstFPObjVar::toString() const
403{
404 std::string str;
405 std::stringstream rawstr(str);
406 rawstr << "ConstFPObjVar ID: " << getId();
408 {
409 rawstr << "\n";
411 }
412 return rawstr.str();
413}
414
415const std::string ConstIntObjVar::toString() const
416{
417 std::string str;
418 std::stringstream rawstr(str);
419 rawstr << "ConstIntObjVar ID: " << getId();
421 {
422 rawstr << "\n";
424 }
425 return rawstr.str();
426}
427
428const std::string ConstNullPtrObjVar::toString() const
429{
430 std::string str;
431 std::stringstream rawstr(str);
432 rawstr << "ConstNullPtrObjVar ID: " << getId();
434 {
435 rawstr << "\n";
437 }
438 return rawstr.str();
439}
440
442 : BaseObjVar(i, ti, svfType, node, FunObjNode)
443{
444}
445
446void FunObjVar::initFunObjVar(bool decl, bool intrinc, bool addr, bool uncalled, bool notret, bool vararg,
448 const std::vector<const ArgValVar *> &allarg, const SVFBasicBlock *exit)
449{
450 isDecl = decl;
456 funcType = ft;
457 loopAndDom = ld;
459 bbGraph = bbg;
460 allArgs = allarg;
461 exitBlock = exit;
462}
463
464
466{
467 return isIntrinsic();
468}
469
471{
472 return this;
473}
474
475const std::string FunObjVar::toString() const
476{
477 std::string str;
478 std::stringstream rawstr(str);
479 rawstr << "FunObjVar ID: " << getId() << " (base object)";
481 {
482 rawstr << "\n";
483 rawstr << getName();
484 }
485 return rawstr.str();
486}
487
488const std::string RetValPN::toString() const
489{
490 std::string str;
491 std::stringstream rawstr(str);
492 rawstr << "RetValPN ID: " << getId() << " unique return node for function " << callGraphNode->getName();
493 return rawstr.str();
494}
495
497{
498 return callGraphNode;
499}
500
501const std::string VarArgValPN::getValueName() const
502{
503 return callGraphNode->getName() + "_vararg";
504}
505
506const std::string VarArgValPN::toString() const
507{
508 std::string str;
509 std::stringstream rawstr(str);
510 rawstr << "VarArgValPN ID: " << getId() << " Var arg node for function " << callGraphNode->getName();
511 return rawstr.str();
512}
513
514const std::string DummyValVar::toString() const
515{
516 std::string str;
517 std::stringstream rawstr(str);
518 rawstr << "DummyValVar ID: " << getId();
519 return rawstr.str();
520}
521
522const std::string DummyObjVar::toString() const
523{
524 std::string str;
525 std::stringstream rawstr(str);
526 rawstr << "DummyObjVar ID: " << getId();
527 return rawstr.str();
528}
529
bool isArgOfUncalledFunction() const
const FunObjVar * cgNode
ArgValVar(NodeID i, PNODEK ty=ArgValNode)
Constructor to create function argument (for SVFIRReader/deserialization)
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
virtual bool isPointer() const
Check if this variable represents a pointer.
const FunObjVar * getParent() const
virtual const std::string toString() const
Get string representation.
const ICFGNode * icfgNode
virtual const std::string toString() const
Get string representation.
NodeID getId() const
Get the memory object id.
bool isBlackHoleObj() const
Whether it is a black hole object.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
const ArgValVar * getArg(u32_t idx) const
virtual const std::string toString() const
Get string representation.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
virtual bool isIsolatedNode() const
Check if this node is isolated (no edges) in the SVFIR graph.
bool isAddrTaken
return true if this function is an intrinsic function (e.g., llvm.dbg), which does not reside in the ...
bool isNotRet
return true if this function is never called
SVFLoopAndDomInfo * loopAndDom
FunctionType, which is different from the type (PointerType) of this SVF Function.
const SVFType * getReturnType() const
Returns the FunctionType.
FunObjVar(NodeID i, const ICFGNode *node)
a 'single' basic block having no successors and containing return instruction in a function
std::vector< const ArgValVar * > allArgs
the basic block graph of this function
bool supVarArg
return true if this function never returns
const SVFBasicBlock * exitBlock
all formal arguments of this function
bool isUncalledFunction() const
const SVFFunctionType * funcType
return true if this function supports variable arguments
bool intrinsic
return true if this function does not have a body
const FunObjVar * realDefFun
the loop and dominate information
bool isUncalled
return true if this function is address-taken (for indirect call purposes)
bool isIntrinsic() const
void initFunObjVar(bool decl, bool intrinc, bool addr, bool uncalled, bool notret, bool vararg, const SVFFunctionType *ft, SVFLoopAndDomInfo *ld, const FunObjVar *real, BasicBlockGraph *bbg, const std::vector< const ArgValVar * > &allarg, const SVFBasicBlock *exit)
BasicBlockGraph * bbGraph
the definition of a function across multiple modules
virtual const std::string toString() const
Get string representation.
const FunObjVar * funObjVar
FunValVar(NodeID i, const ICFGNode *icn, const FunObjVar *cgn, const SVFType *svfType)
Constructor.
const GEdgeSetTy & getOutEdges() const
const GEdgeSetTy & getInEdges() const
const BaseObjVar * getBaseObj() const
virtual const std::string toString() const
Get string representation.
APOffset apOffset
virtual const SVFType * getType() const
Return the type of this gep object.
const ValVar * getBaseNode(void) const
Return the base object from which this GEP node came from.
GepValVar(NodeID i)
Constructor to create empty GeValVar (for SVFIRReader/deserialization)
virtual const std::string toString() const
Get string representation.
APOffset getConstantFieldIdx() const
offset of the base value variable
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const FunObjVar * getFun() const
Return the function of this ICFGNode.
Definition ICFGNode.h:76
const SVFType * getFlatternedElemType(const SVFType *baseType, u32_t flatten_idx)
Return the type of a flattened element given a flattened index.
Definition IRGraph.cpp:123
static bool isBlkObj(NodeID id)
Definition IRGraph.h:165
virtual const std::string toString() const
Get string representation.
static const Option< bool > ShowSVFIRValue
Definition Options.h:122
const FunObjVar * callGraphNode
virtual bool isPointer() const
Check if this variable represents a pointer.
const std::string getValueName() const
Return name of a LLVM value.
RetValPN(NodeID i)
Constructor to create empty RetValPN (for SVFIRReader/deserialization)
virtual const std::string toString() const
Get string representation.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
bool isPointerTy() const
Definition SVFType.h:249
NodeID getId() const
Get ID.
Definition SVFValue.h:158
virtual const SVFType * getType() const
Definition SVFValue.h:169
virtual const std::string & getName() const
Definition SVFValue.h:184
const std::string valueOnlyToString() const
Definition LLVMUtil.cpp:735
const SVFType * type
SVF type.
Definition SVFValue.h:205
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
SVFVar(NodeID i, PNODEK k)
Empty constructor for deserialization.
virtual bool ptrInUncalledFunction() const
Check if this pointer is in an uncalled function.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
void dump() const
Debug dump to console.
virtual bool isIsolatedNode() const
Check if this node is isolated (no edges) in the SVFIR graph.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const std::string toString() const
Get string representation.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
const ICFGNode * icfgNode
virtual const std::string toString() const
Get string representation.
const FunObjVar * callGraphNode
const std::string getValueName() const
Return name of a LLVM value.
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
u32_t NodeID
Definition GeneralType.h:56
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47