Static Value-Flow Analysis
Loading...
Searching...
No Matches
SVFIRBuilder.cpp
Go to the documentation of this file.
1//===- SVFIRBuilder.cpp -- SVFIR builder-----------------------------------------//
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 * SVFIRBuilder.cpp
25 *
26 * Created on: Nov 1, 2013
27 * Author: Yulei Sui
28 */
29
31#include "SVF-LLVM/BasicTypes.h"
32#include "SVF-LLVM/CHGBuilder.h"
33#include "SVF-LLVM/CppUtil.h"
35#include "SVF-LLVM/LLVMUtil.h"
39#include "Graphs/CallGraph.h"
40#include "Util/Options.h"
41#include "Util/SVFUtil.h"
42
43using namespace std;
44using namespace SVF;
45using namespace SVFUtil;
46using namespace LLVMUtil;
47
48
53{
54 double startTime = SVFStat::getClk(true);
55
56 DBOUT(DGENERAL, outs() << pasMsg("\t Building SVFIR ...\n"));
57
58 // We read SVFIR from a user-defined txt instead of parsing SVFIR from LLVM IR
60 {
62 return fileBuilder.build();
63 }
64
65 // If the SVFIR has been built before, then we return the unique SVFIR of the program
67 return pag;
68
69
71
74 pag->icfg = icfgbuilder.build();
75
83
84
85
88 std::vector<const FunObjVar*> funset;
89 for (const auto& item: llvmModuleSet()->getFunctionSet())
90 {
92 }
93 pag->callGraph = callGraphBuilder.buildSVFIRCallGraph(funset);
94
95 CHGraph* chg = new CHGraph();
97 chgbuilder.buildCHG();
98 pag->setCHG(chg);
99
102 {
103 for (Module::const_iterator F = M.begin(), E = M.end(); F != E; ++F)
104 {
105 const Function& fun = *F;
106 const FunObjVar* svffun = llvmModuleSet()->getFunObjVar(&fun);
108 if(!fun.isDeclaration())
109 {
115 if (fun.doesNotReturn() == false &&
116 fun.getReturnType()->isVoidTy() == false)
117 {
120 }
121
124 for (Function::const_arg_iterator I = fun.arg_begin(), E = fun.arg_end();
125 I != E; ++I)
126 {
127 setCurrentLocation(&*I,&fun.getEntryBlock());
129 // if this is the function does not have caller (e.g. main)
130 // or a dead function, shall we create a black hole address edge for it?
131 // it is (1) too conservative, and (2) make FormalParmVFGNode defined at blackhole address PAGEdge.
132 // if(SVFUtil::ArgInNoCallerFunction(&*I)) {
133 // if(I->getType()->isPointerTy())
134 // addBlackHoleAddrEdge(argValNodeId);
135 //}
137 }
138 }
139 for (Function::const_iterator bit = fun.begin(), ebit = fun.end();
140 bit != ebit; ++bit)
141 {
142 const BasicBlock& bb = *bit;
143 for (BasicBlock::const_iterator it = bb.begin(), eit = bb.end();
144 it != eit; ++it)
145 {
146 const Instruction& inst = *it;
147 setCurrentLocation(&inst,&bb);
148 visit(const_cast<Instruction&>(inst));
149 }
150 }
151 }
152 }
153
154 sanityCheck();
155
157
159
160 // dump SVFIR
162 pag->dump("svfir_initial");
163
164 // print to command line of the SVFIR graph
165 if (Options::PAGPrint())
166 pag->print();
167
168 // dump ICFG
169 if (Options::DumpICFG())
170 pag->getICFG()->dump("icfg_initial");
171
173 {
176 }
177
178 // dump SVFIR as JSON
179 if (!Options::DumpJson().empty())
180 {
181 assert(false && "please implement SVFIRWriter::writeJsonToPath");
182 }
183
184 double endTime = SVFStat::getClk(true);
185 SVFStat::timeOfBuildingSVFIR = (endTime - startTime) / TIMEINTERVAL;
186
187 return pag;
188}
189
191{
193 {
195 for (const Function& f : mod.functions())
196 {
199
200 if (!LLVMUtil::isExtCall(&f))
201 {
203 }
206 svffun->setRelDefFun(realfun == nullptr ? nullptr : llvmModuleSet()->getFunObjVar(realfun));
207 }
208 }
209
210 // Store annotations of functions in extapi.bc
211 for (const auto& pair : llvmModuleSet()->ExtFun2Annotations)
212 {
214 }
215
216}
217
219{
221 for (Function::const_iterator bit = func->begin(), ebit = func->end(); bit != ebit; ++bit)
222 {
223 const BasicBlock* bb = &*bit;
226 {
229 }
231 {
234 }
235
237 if (svfbb->getSuccessors().empty())
238 {
240 {
242 SVFUtil::isa<ReturnInst>(bb->back())) &&
243 "last inst must be return inst");
244 svfFun->setExitBlock(svfbb);
245 }
246 }
247 }
248 // For no return functions, we set the last block as exit BB
249 // This ensures that each function that has definition must have an exit BB
250 if (svfFun->hasBasicBlock() && svfFun->exitBlock == nullptr)
251 {
252 SVFBasicBlock* retBB = const_cast<SVFBasicBlock*>(svfFun->back());
254 SVFUtil::isa<ReturnInst>(&func->back().back())) &&
255 "last inst must be return inst");
256 svfFun->setExitBlock(retBB);
257 }
258}
259
260
262{
263 if (fun->isDeclaration())
264 return;
265 //process and stored dt & df
268 df.analyze(dt);
270 PostDominatorTree pdt = PostDominatorTree(const_cast<Function&>(*fun));
271 SVFLoopAndDomInfo* ld = svffun->getLoopAndDomInfo();
272
274 for (DominanceFrontierBase::const_iterator dfIter = df.begin(), eDfIter = df.end(); dfIter != eDfIter; dfIter++)
275 {
276 const BasicBlock* keyBB = dfIter->first;
277 const std::set<BasicBlock* >& domSet = dfIter->second;
279 for (const BasicBlock* bbValue:domSet)
280 {
282 }
283 }
284 std::vector<const SVFBasicBlock*> reachableBBs;
285 LLVMUtil::getFunReachableBBs(fun, reachableBBs);
286 ld->setReachableBBs(reachableBBs);
287
288 for (Function::const_iterator bit = fun->begin(), beit = fun->end(); bit!=beit; ++bit)
289 {
290 const BasicBlock &bb = *bit;
292 if (DomTreeNode* dtNode = dt.getNode(&bb))
293 {
294 SVFLoopAndDomInfo::BBSet& bbSet = ld->getDomTreeMap()[svfBB];
295 for (const auto domBB : *dtNode)
296 {
297 const auto* domSVFBB = llvmModuleSet()->getSVFBasicBlock(domBB->getBlock());
298 bbSet.insert(domSVFBB);
299 }
300 }
301
302 if (DomTreeNode* pdtNode = pdt.getNode(&bb))
303 {
304 u32_t level = pdtNode->getLevel();
305 ld->getBBPDomLevel()[svfBB] = level;
306 BasicBlock* idomBB = pdtNode->getIDom()->getBlock();
308 ld->getBB2PIdom()[svfBB] = idom;
309
310 SVFLoopAndDomInfo::BBSet& bbSet = ld->getPostDomTreeMap()[svfBB];
311 for (const auto domBB : *pdtNode)
312 {
313 const auto* domSVFBB = llvmModuleSet()->getSVFBasicBlock(domBB->getBlock());
314 bbSet.insert(domSVFBB);
315 }
316 }
317
318 if (const Loop* loop = loopInfo.getLoopFor(&bb))
319 {
320 for (const BasicBlock* loopBlock : loop->getBlocks())
321 {
323 ld->addToBB2LoopMap(svfBB, loopbb);
324 }
325 }
326 }
327}
328
330{
331 std::vector<FunObjVar*> funset;
332 // Iterate over all object symbols in the symbol table
333 for (const auto* fun: llvmModuleSet()->getFunctionSet())
334 {
335 u32_t id = llvmModuleSet()->objSyms()[fun];
336 // Debug output for adding object node
337 DBOUT(DPAGBuild, outs() << "add obj node " << id << "\n");
338
339 // Check if the value is a function and add a function object node
340 pag->addFunObjNode(id, pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(fun->getType()), nullptr);
342
343 FunObjVar *funObjVar = SVFUtil::cast<FunObjVar>(pag->getGNode(id));
344 funset.push_back(funObjVar);
345
346 funObjVar->initFunObjVar(fun->isDeclaration(), LLVMUtil::isIntrinsicFun(fun), fun->hasAddressTaken(),
348 SVFUtil::cast<SVFFunctionType>(llvmModuleSet()->getSVFType(fun->getFunctionType())),
349 new SVFLoopAndDomInfo, nullptr, nullptr,
350 {}, nullptr);
351 BasicBlockGraph* bbGraph = new BasicBlockGraph();
352 funObjVar->setBasicBlockGraph(bbGraph);
353
354
355 for (const BasicBlock& bb : *fun)
356 {
357 llvmModuleSet()->addBasicBlock(funObjVar, &bb);
358 }
359
361 for (auto& bb: *funObjVar->bbGraph)
362 {
363 bb.second->setFun(funObjVar);
364 }
366 }
367
369}
370
372{
373 // Iterate over all object symbols in the symbol table
374 for (LLVMModuleSet::ValueToIDMapTy::iterator iter =
375 llvmModuleSet()->objSyms().begin(); iter != llvmModuleSet()->objSyms().end();
376 ++iter)
377 {
378 // Debug output for adding object node
379 DBOUT(DPAGBuild, outs() << "add obj node " << iter->second << "\n");
380
381 // Skip blackhole and constant symbols
382 if(iter->second == pag->blackholeSymID() || iter->second == pag->constantSymID())
383 continue;
384
385 // Get the LLVM value corresponding to the symbol
386 const Value* llvmValue = iter->first;
387
388 const ICFGNode* icfgNode = nullptr;
389 if (const Instruction* inst = SVFUtil::dyn_cast<Instruction>(llvmValue))
390 {
391 if(llvmModuleSet()->hasICFGNode(inst))
392 icfgNode = llvmModuleSet()->getICFGNode(inst);
393 }
394
395 // Check if the value is a function and add a function object node
396 if (SVFUtil::dyn_cast<Function>(llvmValue))
397 {
398 // already one
399 }
400 // Check if the value is a heap object and add a heap object node
402 {
403 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
404 pag->addHeapObjNode(iter->second, pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
405 }
406 // Check if the value is an alloca instruction and add a stack object node
408 {
409 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
410 pag->addStackObjNode(iter->second, pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
411 }
412 else if (auto fpValue = SVFUtil::dyn_cast<ConstantFP>(llvmValue))
413 {
414 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
415 pag->addConstantFPObjNode(iter->second, pag->getObjTypeInfo(id), LLVMUtil::getDoubleValue(fpValue), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
416 }
417 else if (auto intValue = SVFUtil::dyn_cast<ConstantInt>(llvmValue))
418 {
419 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
420 pag->addConstantIntObjNode(iter->second, pag->getObjTypeInfo(id), LLVMUtil::getIntegerValue(intValue), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
421 }
422 else if (SVFUtil::isa<ConstantPointerNull>(llvmValue))
423 {
424 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
425 pag->addConstantNullPtrObjNode(iter->second, pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
426 }
427 else if (SVFUtil::isa<GlobalValue>(llvmValue))
428 {
429 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
430 pag->addGlobalObjNode(iter->second,
431 pag->getObjTypeInfo(id),
432 llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
433 }
434 else if (SVFUtil::isa<ConstantData, MetadataAsValue, BlockAddress>(llvmValue))
435 {
436 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
437 pag->addConstantDataObjNode(iter->second, pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
438 }
439 else if (SVFUtil::isa<ConstantAggregate>(llvmValue))
440 {
441 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
442 pag->addConstantAggObjNode(iter->second, pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
443 }
444 // Add a generic object node for other types of values
445 else
446 {
447 NodeID id = llvmModuleSet()->getObjectNode(iter->first);
448 pag->addObjNode(iter->second,
449 pag->getObjTypeInfo(id), llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
450 }
452 }
453
454}
455
457{
458 // Iterate over all value symbols in the symbol table
459 for (LLVMModuleSet::ValueToIDMapTy::iterator iter =
460 llvmModuleSet()->valSyms().begin(); iter != llvmModuleSet()->valSyms().end();
461 ++iter)
462 {
463 // Debug output for adding value node
464 DBOUT(DPAGBuild, outs() << "add val node " << iter->second << "\n");
465
466 // Skip blackhole and null pointer symbols
467 if(iter->second == pag->blkPtrSymID() || iter->second == pag->nullPtrSymID())
468 continue;
469
470 const ICFGNode* icfgNode = nullptr;
471 auto llvmValue = iter->first;
472 if (const Instruction* inst =
473 SVFUtil::dyn_cast<Instruction>(llvmValue))
474 {
475 if (llvmModuleSet()->hasICFGNode(inst))
476 {
477 icfgNode = llvmModuleSet()->getICFGNode(inst);
478 }
479 }
480
481 // Check if the value is a function and get its call graph node
482 if (const Function* func = SVFUtil::dyn_cast<Function>(llvmValue))
483 {
484 // add value node representing the function
485 pag->addFunValNode(iter->second, icfgNode, llvmModuleSet()->getFunObjVar(func), llvmModuleSet()->getSVFType(llvmValue->getType()));
486 }
487 else if (auto argval = SVFUtil::dyn_cast<Argument>(llvmValue))
488 {
490 iter->second, argval->getArgNo(), icfgNode,
491 llvmModuleSet()->getFunObjVar(argval->getParent()),llvmModuleSet()->getSVFType(llvmValue->getType()));
492 if (!argval->hasName())
493 pag->getGNode(iter->second)->setName("arg_" + std::to_string(argval->getArgNo()));
494 }
495 else if (auto fpValue = SVFUtil::dyn_cast<ConstantFP>(llvmValue))
496 {
497 pag->addConstantFPValNode(iter->second, LLVMUtil::getDoubleValue(fpValue), icfgNode, llvmModuleSet()->getSVFType(llvmValue->getType()));
498 }
499 else if (auto intValue = SVFUtil::dyn_cast<ConstantInt>(llvmValue))
500 {
501 pag->addConstantIntValNode(iter->second, LLVMUtil::getIntegerValue(intValue), icfgNode, llvmModuleSet()->getSVFType(llvmValue->getType()));
502 }
503 else if (SVFUtil::isa<ConstantPointerNull>(llvmValue))
504 {
505 pag->addConstantNullPtrValNode(iter->second, icfgNode, llvmModuleSet()->getSVFType(llvmValue->getType()));
506 }
507 else if (SVFUtil::isa<GlobalValue>(llvmValue))
508 {
509 pag->addGlobalValNode(iter->second, icfgNode,
510 llvmModuleSet()->getSVFType(llvmValue->getType()));
511 }
512 else if (SVFUtil::isa<ConstantData, MetadataAsValue, BlockAddress>(llvmValue))
513 {
514 pag->addConstantDataValNode(iter->second, icfgNode, llvmModuleSet()->getSVFType(llvmValue->getType()));
515 }
516 else if (SVFUtil::isa<ConstantAggregate>(llvmValue))
517 {
518 pag->addConstantAggValNode(iter->second, icfgNode, llvmModuleSet()->getSVFType(llvmValue->getType()));
519 }
520 else
521 {
522 // Add value node to PAG
523 pag->addValNode(iter->second, llvmModuleSet()->getSVFType(llvmValue->getType()), icfgNode);
524 }
526 pag->getGNode(iter->second));
527 }
528}
529
530
531/*
532 * Initial all the nodes from symbol table
533 */
535{
536 DBOUT(DPAGBuild, outs() << "Initialise SVFIR Nodes ...\n");
537
538
543
546
547 for (LLVMModuleSet::FunToIDMapTy::iterator iter =
548 llvmModuleSet()->retSyms().begin(); iter != llvmModuleSet()->retSyms().end();
549 ++iter)
550 {
551 const Value* llvmValue = iter->first;
552 const ICFGNode* icfgNode = nullptr;
553 if (const Instruction* inst = SVFUtil::dyn_cast<Instruction>(llvmValue))
554 {
555 if(llvmModuleSet()->hasICFGNode(inst))
556 icfgNode = llvmModuleSet()->getICFGNode(inst);
557 }
558 DBOUT(DPAGBuild, outs() << "add ret node " << iter->second << "\n");
559 pag->addRetNode(iter->second,
560 llvmModuleSet()->getFunObjVar(SVFUtil::cast<Function>(llvmValue)),
561 llvmModuleSet()->getSVFType(iter->first->getType()), icfgNode);
563 const FunObjVar* funObjVar = llvmModuleSet()->getFunObjVar(SVFUtil::cast<Function>(llvmValue));
564 pag->returnFunObjSymMap[funObjVar] = iter->second;
565 }
566
567 for (LLVMModuleSet::FunToIDMapTy::iterator iter =
568 llvmModuleSet()->varargSyms().begin();
569 iter != llvmModuleSet()->varargSyms().end(); ++iter)
570 {
571 const Value* llvmValue = iter->first;
572
573 const ICFGNode *icfgNode = nullptr;
574 if (const Instruction *inst = SVFUtil::dyn_cast<Instruction>(llvmValue))
575 {
576 if (llvmModuleSet()->hasICFGNode(inst))
577 icfgNode = llvmModuleSet()->getICFGNode(inst);
578 }
579 DBOUT(DPAGBuild, outs() << "add vararg node " << iter->second << "\n");
580 pag->addVarargNode(iter->second,
581 llvmModuleSet()->getFunObjVar(SVFUtil::cast<Function>(llvmValue)),
582 llvmModuleSet()->getSVFType(iter->first->getType()), icfgNode);
584 const FunObjVar* funObjVar = llvmModuleSet()->getFunObjVar(SVFUtil::cast<Function>(llvmValue));
585 pag->varargFunObjSymMap[funObjVar] = iter->second;
586 }
587
589 for (LLVMModuleSet::ValueToIDMapTy::iterator iter =
590 llvmModuleSet()->objSyms().begin(); iter != llvmModuleSet()->objSyms().end(); ++iter)
591 {
592 DBOUT(DPAGBuild, outs() << "add address edges for constant node " << iter->second << "\n");
593 const Value* val = iter->first;
595 {
597 if(ptr!= pag->getBlkPtr() && ptr!= pag->getNullPtr())
598 {
600 addAddrEdge(iter->second, ptr);
601 }
602 }
603 }
604
606 && "not all node have been initialized!!!");
607
609 for (auto& fun: llvmModuleSet()->getFunctionSet())
610 {
611 for (const Argument& arg : fun->args())
612 {
613 const_cast<FunObjVar*>(llvmModuleSet()->getFunObjVar(fun))->addArgument(SVFUtil::cast<ArgValVar>(
615 }
616 }
617
618}
619
620/*
621 https://github.com/SVF-tools/SVF/issues/524
622 Handling single value types, for constant index, including pointer, integer, etc
623 e.g. field_idx = getelementptr i8, %i8* %p, i64 -4
624 We can obtain the field index by inferring the byteoffset if %p is casted from a pointer to a struct
625 For another example, the following can be an array access.
626 e.g. field_idx = getelementptr i8, %struct_type %p, i64 1
627
628*/
630{
631 return 0;
632}
633
641{
642 assert(V);
643
644 const llvm::GEPOperator *gepOp = SVFUtil::dyn_cast<const llvm::GEPOperator>(V);
645 DataLayout * dataLayout = getDataLayout(llvmModuleSet()->getMainLLVMModule());
646 llvm::APInt byteOffset(dataLayout->getIndexSizeInBits(gepOp->getPointerAddressSpace()),0,true);
647 if(gepOp && dataLayout && gepOp->accumulateConstantOffset(*dataLayout,byteOffset))
648 {
649 //s32_t bo = byteOffset.getSExtValue();
650 }
651
652 bool isConst = true;
653
654 bool prevPtrOperand = false;
655 for (bridge_gep_iterator gi = bridge_gep_begin(*V), ge = bridge_gep_end(*V);
656 gi != ge; ++gi)
657 {
658 const Type* gepTy = *gi;
660
661 assert((prevPtrOperand && svfGepTy->isPointerTy()) == false &&
662 "Expect no more than one gep operand to be of a pointer type");
663 if(!prevPtrOperand && svfGepTy->isPointerTy()) prevPtrOperand = true;
664 const Value* offsetVal = gi.getOperand();
665 assert(gepTy != offsetVal->getType() && "iteration and operand have the same type?");
667
668 //The int value of the current index operand
669 const ConstantInt* op = SVFUtil::dyn_cast<ConstantInt>(offsetVal);
670
671 // if Options::ModelConsts() is disabled. We will treat whole array as one,
672 // but we can distinguish different field of an array of struct, e.g. s[1].f1 is different from s[0].f2
673 if(const ArrayType* arrTy = SVFUtil::dyn_cast<ArrayType>(gepTy))
674 {
675 if(!op || (arrTy->getArrayNumElements() <= (u32_t)LLVMUtil::getIntegerValue(op).first))
676 continue;
680 }
681 else if (const StructType *ST = SVFUtil::dyn_cast<StructType>(gepTy))
682 {
683 assert(op && "non-const offset accessing a struct");
684 //The actual index
688 }
689 else if (gepTy->isSingleValueType())
690 {
691 // If it's a non-constant offset access
692 // If its point-to target is struct or array, it's likely an array accessing (%result = gep %struct.A* %a, i32 %non-const-index)
693 // If its point-to target is single value (pointer arithmetic), then it's a variant gep (%result = gep i8* %p, i32 %non-const-index)
694 if(!op && gepTy->isPointerTy() && gepOp->getSourceElementType()->isSingleValueType())
695 {
696 isConst = false;
697 }
698
699 // The actual index
700 //s32_t idx = op->getSExtValue();
701
702 // For pointer arithmetic we ignore the byte offset
703 // consider using inferFieldIdxFromByteOffset(geopOp,dataLayout,ap,idx)?
704 // ap.setFldIdx(ap.getConstantFieldIdx() + inferFieldIdxFromByteOffset(geopOp,idx));
705 }
706 }
707 return isConst;
708}
709
714{
715 if (const Constant* ref = SVFUtil::dyn_cast<Constant>(val))
716 {
718 {
719 DBOUT(DPAGBuild, outs() << "handle gep constant expression " << llvmModuleSet()->getSVFValue(ref)->toString() << "\n");
720 const Constant* opnd = gepce->getOperand(0);
721 // handle recursive constant express case (gep (bitcast (gep X 1)) 1)
723 auto &GEPOp = llvm::cast<llvm::GEPOperator>(*gepce);
724 Type *pType = GEPOp.getSourceElementType();
725 AccessPath ap(0, llvmModuleSet()->getSVFType(pType));
726 bool constGep = computeGepOffset(gepce, ap);
727 // must invoke pag methods here, otherwise it will be a dead recursion cycle
728 const Value* cval = getCurrentValue();
729 const SVFBasicBlock* cbb = getCurrentBB();
731 /*
732 * The gep edge created are like constexpr (same edge may appear at multiple callsites)
733 * so bb/inst of this edge may be rewritten several times, we treat it as global here.
734 */
737 }
738 else if (const ConstantExpr* castce = isCastConstantExpr(ref))
739 {
740 DBOUT(DPAGBuild, outs() << "handle cast constant expression " << llvmModuleSet()->getSVFValue(ref)->toString() << "\n");
741 const Constant* opnd = castce->getOperand(0);
743 const Value* cval = getCurrentValue();
744 const SVFBasicBlock* cbb = getCurrentBB();
748 }
750 {
751 DBOUT(DPAGBuild, outs() << "handle select constant expression " << llvmModuleSet()->getSVFValue(ref)->toString() << "\n");
752 const Constant* src1 = selectce->getOperand(1);
753 const Constant* src2 = selectce->getOperand(2);
756 const Value* cval = getCurrentValue();
757 const SVFBasicBlock* cbb = getCurrentBB();
759 NodeID cond = llvmModuleSet()->getValueNode(selectce->getOperand(0));
765 }
766 // if we meet a int2ptr, then it points-to black hole
768 {
769 const Constant* opnd = int2Ptrce->getOperand(0);
771 const SVFBasicBlock* cbb = getCurrentBB();
772 const Value* cval = getCurrentValue();
776 }
778 {
779 const Constant* opnd = ptr2Intce->getOperand(0);
781 const SVFBasicBlock* cbb = getCurrentBB();
782 const Value* cval = getCurrentValue();
786 }
788 {
789 // we don't handle trunc and cmp instruction for now
790 const Value* cval = getCurrentValue();
791 const SVFBasicBlock* cbb = getCurrentBB();
796 }
797 else if (isBinaryConstantExpr(ref))
798 {
799 // we don't handle binary constant expression like add(x,y) now
800 const Value* cval = getCurrentValue();
801 const SVFBasicBlock* cbb = getCurrentBB();
806 }
807 else if (isUnaryConstantExpr(ref))
808 {
809 // we don't handle unary constant expression like fneg(x) now
810 const Value* cval = getCurrentValue();
811 const SVFBasicBlock* cbb = getCurrentBB();
816 }
817 else if (SVFUtil::isa<ConstantAggregate>(ref))
818 {
819 // we don't handle constant aggregate like constant vectors
820 }
821 else if (SVFUtil::isa<BlockAddress>(ref))
822 {
823 // blockaddress instruction (e.g. i8* blockaddress(@run_vm, %182))
824 // is treated as constant data object for now, see LLVMUtil.h:397, SymbolTableInfo.cpp:674 and SVFIRBuilder.cpp:183-194
825 const Value* cval = getCurrentValue();
826 const SVFBasicBlock* cbb = getCurrentBB();
831 }
832 else
833 {
834 if(SVFUtil::isa<ConstantExpr>(val))
835 assert(false && "we don't handle all other constant expression for now!");
836 }
837 }
838}
845{
846
847 // if the global variable do not have any field needs to be initialized
848 if (offset == 0 && gvar->getInitializer()->getType()->isSingleValueType())
849 {
850 return getValueNode(gvar);
851 }
854 else
855 {
857 }
858}
859
860/*For global variable initialization
861 * Give a simple global variable
862 * int x = 10; // store 10 x (constant, non pointer) |
863 * int *y = &x; // store x y (pointer type)
864 * Given a struct
865 * struct Z { int s; int *t;};
866 * Global initialization:
867 * struct Z z = {10,&x}; // store x z.t (struct type)
868 * struct Z *m = &z; // store z m (pointer type)
869 * struct Z n = {10,&z.s}; // store z.s n , &z.s constant expression (constant expression)
870 */
873{
874 DBOUT(DPAGBuild, outs() << "global " << llvmModuleSet()->getSVFValue(gvar)->toString() << " constant initializer: " << llvmModuleSet()->getSVFValue(C)->toString() << "\n");
875 if (C->getType()->isSingleValueType())
876 {
877 NodeID src = getValueNode(C);
878 // get the field value if it is available, otherwise we create a dummy field node.
880 NodeID field = getGlobalVarField(gvar, offset, llvmModuleSet()->getSVFType(C->getType()));
881
882 if (SVFUtil::isa<GlobalVariable, Function>(C))
883 {
885 addStoreEdge(src, field);
886 }
887 else if (SVFUtil::isa<ConstantExpr>(C))
888 {
889 // add gep edge of C1 itself is a constant expression
890 processCE(C);
892 addStoreEdge(src, field);
893 }
894 else if (SVFUtil::isa<BlockAddress>(C))
895 {
896 // blockaddress instruction (e.g. i8* blockaddress(@run_vm, %182))
897 // is treated as constant data object for now, see LLVMUtil.h:397, SymbolTableInfo.cpp:674 and SVFIRBuilder.cpp:183-194
898 processCE(C);
901 }
902 else
903 {
905 addStoreEdge(src, field);
907 if (C->getType()->isPtrOrPtrVectorTy() && src != pag->getNullPtr())
909 }
910 }
911 else if (SVFUtil::isa<ConstantArray, ConstantStruct>(C))
912 {
914 return;
915 for (u32_t i = 0, e = C->getNumOperands(); i != e; i++)
916 {
918 InitialGlobal(gvar, SVFUtil::cast<Constant>(C->getOperand(i)), offset + off);
919 }
920 }
921 else if(ConstantData* data = SVFUtil::dyn_cast<ConstantData>(C))
922 {
924 {
925 if(ConstantDataSequential* seq = SVFUtil::dyn_cast<ConstantDataSequential>(data))
926 {
927 for(u32_t i = 0; i < seq->getNumElements(); i++)
928 {
929 u32_t off = pag->getFlattenedElemIdx(llvmModuleSet()->getSVFType(C->getType()), i);
930 Constant* ct = seq->getElementAsConstant(i);
932 }
933 }
934 else
935 {
936 assert((SVFUtil::isa<ConstantAggregateZero, UndefValue>(data)) && "Single value type data should have been handled!");
937 }
938 }
939 }
940 else
941 {
942 //TODO:assert(SVFUtil::isa<ConstantVector>(C),"what else do we have");
943 }
944}
945
950{
951
954 {
955 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
956 {
957 GlobalVariable *gvar = &*I;
960
963
964 if (gvar->hasInitializer())
965 {
966 Constant *C = gvar->getInitializer();
967 DBOUT(DPAGBuild, outs() << "add global var node " << llvmModuleSet()->getSVFValue(gvar)->toString() << "\n");
968 InitialGlobal(gvar, C, 0);
969 }
970 }
971
972
974 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I)
975 {
976 const Function* fun = &*I;
977 NodeID idx = getValueNode(fun);
978 NodeID obj = getObjectNode(fun);
979
980 DBOUT(DPAGBuild, outs() << "add global function node " << fun->getName().str() << "\n");
981 setCurrentLocation(fun, (SVFBasicBlock*) nullptr);
983 }
984
985 // Handle global aliases (due to linkage of multiple bc files), e.g., @x = internal alias @y. We need to add a copy from y to x.
986 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); I != E; I++)
987 {
988 const GlobalAlias* alias = &*I;
989 NodeID dst = llvmModuleSet()->getValueNode(alias);
990 NodeID src = llvmModuleSet()->getValueNode(alias->getAliasee());
991 processCE(alias->getAliasee());
992 setCurrentLocation(alias, (SVFBasicBlock*) nullptr);
994 }
995 }
996}
997
1003{
1004
1005 // AllocaInst should always be a pointer type
1006 assert(SVFUtil::isa<PointerType>(inst.getType()));
1007
1008 DBOUT(DPAGBuild, outs() << "process alloca " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1009 NodeID dst = getValueNode(&inst);
1010
1011 NodeID src = getObjectNode(&inst);
1012
1013 addAddrWithStackArraySz(src, dst, inst);
1014
1015}
1016
1021{
1022
1023 DBOUT(DPAGBuild, outs() << "process phi " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1024
1025 NodeID dst = getValueNode(&inst);
1026
1027 for (u32_t i = 0; i < inst.getNumIncomingValues(); ++i)
1028 {
1029 const Value* val = inst.getIncomingValue(i);
1030 const Instruction* incomingInst = SVFUtil::dyn_cast<Instruction>(val);
1031 bool matched = (incomingInst == nullptr ||
1032 incomingInst->getFunction() == inst.getFunction());
1033 (void) matched; // Suppress warning of unused variable under release build
1034 assert(matched && "incomingInst's Function incorrect");
1035 const Instruction* predInst = &inst.getIncomingBlock(i)->back();
1036 const ICFGNode* icfgNode = llvmModuleSet()->getICFGNode(predInst);
1037 NodeID src = getValueNode(val);
1038 addPhiStmt(dst,src,icfgNode);
1039 }
1040}
1041
1042/*
1043 * Visit load instructions
1044 */
1046{
1047 DBOUT(DPAGBuild, outs() << "process load " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1048
1049 NodeID dst = getValueNode(&inst);
1050
1051 NodeID src = getValueNode(inst.getPointerOperand());
1052
1053 addLoadEdge(src, dst);
1054}
1055
1060{
1061 // StoreInst itself should always not be a pointer type
1062 assert(!SVFUtil::isa<PointerType>(inst.getType()));
1063
1064 DBOUT(DPAGBuild, outs() << "process store " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1065
1066 NodeID dst = getValueNode(inst.getPointerOperand());
1067
1068 NodeID src = getValueNode(inst.getValueOperand());
1069
1070 addStoreEdge(src, dst);
1071
1072}
1073
1078{
1079
1080 NodeID dst = getValueNode(&inst);
1081 // GetElementPtrInst should always be a pointer or a vector contains pointers
1082 // for now we don't handle vector type here
1083 if(SVFUtil::isa<VectorType>(inst.getType()))
1084 {
1086 return;
1087 }
1088
1089 assert(SVFUtil::isa<PointerType>(inst.getType()));
1090
1091 DBOUT(DPAGBuild, outs() << "process gep " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1092
1093 NodeID src = getValueNode(inst.getPointerOperand());
1094
1095 AccessPath ap(0, llvmModuleSet()->getSVFType(inst.getSourceElementType()));
1096 bool constGep = computeGepOffset(&inst, ap);
1097 addGepEdge(src, dst, ap, constGep);
1098}
1099
1100/*
1101 * Visit cast instructions
1102 */
1104{
1105
1106 DBOUT(DPAGBuild, outs() << "process cast " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1107 NodeID dst = getValueNode(&inst);
1108
1109 const Value* opnd = inst.getOperand(0);
1110 NodeID src = getValueNode(opnd);
1111 addCopyEdge(src, dst, getCopyKind(&inst));
1112}
1113
1118{
1119 NodeID dst = getValueNode(&inst);
1120 assert(inst.getNumOperands() == 2 && "not two operands for BinaryOperator?");
1121 Value* op1 = inst.getOperand(0);
1123 Value* op2 = inst.getOperand(1);
1125 u32_t opcode = inst.getOpcode();
1126 addBinaryOPEdge(op1Node, op2Node, dst, opcode);
1127}
1128
1133{
1134 NodeID dst = getValueNode(&inst);
1135 assert(inst.getNumOperands() == 1 && "not one operand for Unary instruction?");
1136 Value* opnd = inst.getOperand(0);
1137 NodeID src = getValueNode(opnd);
1138 u32_t opcode = inst.getOpcode();
1139 addUnaryOPEdge(src, dst, opcode);
1140}
1141
1146{
1147 NodeID dst = getValueNode(&inst);
1148 assert(inst.getNumOperands() == 2 && "not two operands for compare instruction?");
1149 Value* op1 = inst.getOperand(0);
1151 Value* op2 = inst.getOperand(1);
1153 u32_t predicate = inst.getPredicate();
1154 addCmpEdge(op1Node, op2Node, dst, predicate);
1155}
1156
1157
1162{
1163
1164 DBOUT(DPAGBuild, outs() << "process select " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1165
1166 NodeID dst = getValueNode(&inst);
1167 NodeID src1 = getValueNode(inst.getTrueValue());
1168 NodeID src2 = getValueNode(inst.getFalseValue());
1169 NodeID cond = getValueNode(inst.getCondition());
1171 addSelectStmt(dst,src1,src2, cond);
1172}
1173
1178
1183
1188
1189/*
1190 * Visit callsites
1191 */
1193{
1194
1195 // skip llvm intrinsics
1196 if(isIntrinsicInst(cs))
1197 return;
1198
1200 outs() << "process callsite " << svfcall->valueOnlyToString() << "\n");
1201
1202
1203 CallICFGNode* callBlockNode = llvmModuleSet()->getCallICFGNode(cs);
1205
1206 pag->addCallSite(callBlockNode);
1207
1209 for (u32_t i = 0; i < cs->arg_size(); i++)
1211 callBlockNode,
1212 SVFUtil::cast<ValVar>(pag->getGNode(getValueNode(cs->getArgOperand(i)))));
1213
1214 if(!cs->getType()->isVoidTy())
1216
1217 if (callBlockNode->isVirtualCall())
1218 {
1219 const Value* value = cppUtil::getVCallVtblPtr(cs);
1220 callBlockNode->setVtablePtr(pag->getGNode(getValueNode(value)));
1221 }
1222 if (const Function *callee = LLVMUtil::getCallee(cs))
1223 {
1225 {
1226 handleExtCall(cs, callee);
1227 }
1228 else
1229 {
1231 }
1232 }
1233 else
1234 {
1235 //If the callee was not identified as a function (null F), this is indirect.
1236 handleIndCall(cs);
1237 }
1238}
1239
1244{
1245
1246 // ReturnInst itself should always not be a pointer type
1247 assert(!SVFUtil::isa<PointerType>(inst.getType()));
1248
1249 DBOUT(DPAGBuild, outs() << "process return " << llvmModuleSet()->getSVFValue(&inst)->toString() << " \n");
1250
1251 if(Value* src = inst.getReturnValue())
1252 {
1253 const FunObjVar *F = llvmModuleSet()->getFunObjVar(inst.getParent()->getParent());
1254
1256 NodeID vnS = getValueNode(src);
1257 const ICFGNode* icfgNode = llvmModuleSet()->getICFGNode(&inst);
1258 //vnS may be null if src is a null ptr
1259 addPhiStmt(rnF,vnS,icfgNode);
1260 }
1261}
1262
1263
1277
1291
1297{
1298 NodeID brinst = getValueNode(&inst);
1299 NodeID cond;
1300 if (inst.isConditional())
1301 cond = getValueNode(inst.getCondition());
1302 else
1303 cond = pag->getNullPtr();
1304
1305 assert(inst.getNumSuccessors() <= 2 && "if/else has more than two branches?");
1306
1308 std::vector<const Instruction*> nextInsts;
1310 u32_t branchID = 0;
1311 for (const Instruction* succInst : nextInsts)
1312 {
1313 assert(branchID <= 1 && "if/else has more than two branches?");
1314 const ICFGNode* icfgNode = llvmModuleSet()->getICFGNode(succInst);
1315 successors.push_back(std::make_pair(icfgNode, 1-branchID));
1316 branchID++;
1317 }
1318 addBranchStmt(brinst, cond, successors);
1320 if (inst.isConditional())
1321 {
1322 for (auto& edge : llvmModuleSet()->getICFGNode(&inst)->getOutEdges())
1323 {
1324 if (IntraCFGEdge* intraEdge = SVFUtil::dyn_cast<IntraCFGEdge>(edge))
1325 {
1326 intraEdge->setConditionVar(pag->getGNode(cond));
1327 }
1328 }
1329 }
1330}
1331
1332
1376
1379{
1380 NodeID brinst = getValueNode(&inst);
1381 NodeID cond = getValueNode(inst.getCondition());
1382
1384 std::vector<const Instruction*> nextInsts;
1386 for (const Instruction* succInst : nextInsts)
1387 {
1389 const ConstantInt* condVal = inst.findCaseDest(const_cast<BasicBlock*>(succInst->getParent()));
1391 s64_t val = -1;
1392 if (condVal && condVal->getBitWidth() <= 64)
1394 const ICFGNode* icfgNode = llvmModuleSet()->getICFGNode(succInst);
1395 successors.push_back(std::make_pair(icfgNode, val));
1396 }
1397 addBranchStmt(brinst, cond, successors);
1399 for (auto& edge : llvmModuleSet()->getICFGNode(&inst)->getOutEdges())
1400 {
1401 if (IntraCFGEdge* intraEdge = SVFUtil::dyn_cast<IntraCFGEdge>(edge))
1402 {
1403 intraEdge->setConditionVar(pag->getGNode(cond));
1404 }
1405 }
1406}
1407
1408
1415{
1416 NodeID dst = getValueNode(&inst);
1417 Value* opnd = inst.getPointerOperand();
1418 NodeID src = getValueNode(opnd);
1419 addCopyEdge(src, dst, CopyStmt::COPYVAL);
1420}
1421
1427{
1428 NodeID dst = getValueNode(&inst);
1429 for (u32_t i = 0; i < inst.getNumOperands(); i++)
1430 {
1431 Value* opnd = inst.getOperand(i);
1432 NodeID src = getValueNode(opnd);
1433 addCopyEdge(src, dst, CopyStmt::COPYVAL);
1434 }
1435}
1436
1437
1442{
1443
1444 assert(F);
1448 outs() << "handle direct call " << LLVMUtil::dumpValue(cs) << " callee " << F->getName().str() << "\n");
1449
1450 //Only handle the ret.val. if it's used as a ptr.
1452 //Does it actually return a ptr?
1453 if (!cs->getType()->isVoidTy())
1454 {
1458 }
1459 //Iterators for the actual and formal parameters
1460 u32_t itA = 0, ieA = cs->arg_size();
1461 Function::const_arg_iterator itF = F->arg_begin(), ieF = F->arg_end();
1462 //Go through the fixed parameters.
1463 DBOUT(DPAGBuild, outs() << " args:");
1464 for (; itF != ieF; ++itA, ++itF)
1465 {
1466 //Some programs (e.g. Linux kernel) leave unneeded parameters empty.
1467 if (itA == ieA)
1468 {
1469 DBOUT(DPAGBuild, outs() << " !! not enough args\n");
1470 break;
1471 }
1472 const Value* AA = cs->getArgOperand(itA), *FA = &*itF; //current actual/formal arg
1473
1474 DBOUT(DPAGBuild, outs() << "process actual parm " << llvmModuleSet()->getSVFValue(AA)->toString() << " \n");
1475
1480 }
1481 //Any remaining actual args must be varargs.
1482 if (F->isVarArg())
1483 {
1485 DBOUT(DPAGBuild, outs() << "\n varargs:");
1486 for (; itA != ieA; ++itA)
1487 {
1488 const Value* AA = cs->getArgOperand(itA);
1492 }
1493 }
1494 if(itA != ieA)
1495 {
1498 writeWrnMsg("too many args to non-vararg func.");
1499 writeWrnMsg("(" + callICFGNode->getSourceLoc() + ")");
1500
1501 }
1502}
1503
1526{
1527 const Value* value = stripAllCasts(V);
1528 assert(value && "null ptr?");
1529 if(const GetElementPtrInst* gep = SVFUtil::dyn_cast<GetElementPtrInst>(value))
1530 {
1531 APOffset totalidx = 0;
1532 for (bridge_gep_iterator gi = bridge_gep_begin(gep), ge = bridge_gep_end(gep); gi != ge; ++gi)
1533 {
1534 if(const ConstantInt* op = SVFUtil::dyn_cast<ConstantInt>(gi.getOperand()))
1536 }
1537 if(totalidx == 0 && !SVFUtil::isa<StructType>(value->getType()))
1538 value = gep->getPointerOperand();
1539 }
1540 else if (const LoadInst* load = SVFUtil::dyn_cast<LoadInst>(value))
1541 {
1542 const Value* loadP = load->getPointerOperand();
1543 if (const GetElementPtrInst* gep = SVFUtil::dyn_cast<GetElementPtrInst>(loadP))
1544 {
1545 APOffset totalidx = 0;
1546 for (bridge_gep_iterator gi = bridge_gep_begin(gep), ge = bridge_gep_end(gep); gi != ge; ++gi)
1547 {
1548 if(const ConstantInt* op = SVFUtil::dyn_cast<ConstantInt>(gi.getOperand()))
1550 }
1551 const Value * pointer_operand = gep->getPointerOperand();
1552 if (auto *glob = SVFUtil::dyn_cast<GlobalVariable>(pointer_operand))
1553 {
1554 if (glob->hasInitializer())
1555 {
1556 if (auto *initializer = SVFUtil::dyn_cast<
1557 ConstantStruct>(glob->getInitializer()))
1558 {
1559 auto *ptrField = initializer->getOperand(totalidx);
1560 if (auto *ptrValue = SVFUtil::dyn_cast<llvm::GlobalVariable>(ptrField))
1561 {
1562 return ptrValue;
1563 }
1564 }
1565 }
1566 }
1567 }
1568 }
1569
1570 return value;
1571}
1572
1577{
1579 pag->addIndirectCallsites(cbn,llvmModuleSet()->getValueNode(cs->getCalledOperand()));
1580}
1581
1583{
1584 CallGraph::CallEdgeMap::const_iterator iter = callgraph->getIndCallMap().begin();
1585 CallGraph::CallEdgeMap::const_iterator eiter = callgraph->getIndCallMap().end();
1586 for (; iter != eiter; iter++)
1587 {
1588 const CallICFGNode* callBlock = iter->first;
1589 const CallBase* callbase = SVFUtil::cast<CallBase>(llvmModuleSet()->getLLVMValue(callBlock));
1590 assert(callBlock->isIndirectCall() && "this is not an indirect call?");
1591 const CallGraph::FunctionSet& functions = iter->second;
1592 for (CallGraph::FunctionSet::const_iterator func_iter = functions.begin(); func_iter != functions.end(); func_iter++)
1593 {
1594 const Function* callee = SVFUtil::cast<Function>(llvmModuleSet()->getLLVMValue(*func_iter));
1595
1596 if (isExtCall(*func_iter))
1597 {
1598 setCurrentLocation(callee, callee->empty() ? nullptr : &callee->getEntryBlock());
1600 }
1601 else
1602 {
1603 setCurrentLocation(llvmModuleSet()->getLLVMValue(callBlock), callBlock->getBB());
1604 handleDirectCall(const_cast<CallBase*>(callbase), callee);
1605 }
1606 }
1607 }
1608
1609 // dump SVFIR
1611 pag->dump("svfir_final");
1612}
1613
1614/*
1615 * TODO: more sanity checks might be needed here
1616 */
1618{
1619 for (SVFIR::iterator nIter = pag->begin(); nIter != pag->end(); ++nIter)
1620 {
1621 (void) pag->getGNode(nIter->first);
1622 //TODO::
1623 // (1) every source(root) node of a pag tree should be object node
1624 // if a node has no incoming edge, but has outgoing edges
1625 // then it has to be an object node.
1626 // (2) make sure every variable should be initialized
1627 // otherwise it causes the a null pointer, the aliasing relation may not be captured
1628 // when loading a pointer value should make sure
1629 // some value has been store into this pointer before
1630 // q = load p, some value should stored into p first like store w p;
1631 // (3) make sure PAGNode should not have a const expr value (pointer should have unique def)
1632 // (4) look closely into addComplexConsForExt, make sure program locations(e.g.,inst bb)
1633 // are set correctly for dummy gepval node
1634 // (5) reduce unnecessary copy edge (const casts) and ensure correctness.
1635 }
1636}
1637
1638
1644{
1645 NodeID base = getValueNode(val);
1647 if (gepval==UINT_MAX)
1648 {
1649 assert(((int) UINT_MAX)==-1 && "maximum limit of unsigned int is not -1?");
1650 /*
1651 * getGepValVar can only be called from two places:
1652 * 1. SVFIRBuilder::addComplexConsForExt to handle external calls
1653 * 2. SVFIRBuilder::getGlobalVarField to initialize global variable
1654 * so curVal can only be
1655 * 1. Instruction
1656 * 2. GlobalVariable
1657 */
1658 assert(
1659 (SVFUtil::isa<Instruction>(curVal) || SVFUtil::isa<GlobalVariable>(curVal)) && "curVal not an instruction or a globalvariable?");
1660
1661 // We assume every GepValNode and its GepEdge to the baseNode are unique across the whole program
1662 // We preserve the current BB information to restore it after creating the gepNode
1663 const Value* cval = getCurrentValue();
1664 const SVFBasicBlock* cbb = getCurrentBB();
1667 const ICFGNode* node = nullptr;
1668 if (const Instruction* inst = SVFUtil::dyn_cast<Instruction>(curVal))
1669 if (llvmmodule->hasICFGNode(inst))
1670 {
1671 node = llvmmodule->getICFGNode(inst);
1672 }
1674 NodeIDAllocator::get()->allocateValueId(),
1675 llvmmodule->getSVFType(PointerType::getUnqual(llvmmodule->getContext())), node);
1676 addGepEdge(base, gepNode, ap, true);
1678 return gepNode;
1679 }
1680 else
1681 return gepval;
1682}
1683
1684
1685/*
1686 * curVal <--------> PAGEdge
1687 * Instruction Any Edge
1688 * Argument CopyEdge (SVFIR::addFormalParamBlackHoleAddrEdge)
1689 * ConstantExpr CopyEdge (Int2PtrConstantExpr CastConstantExpr SVFIRBuilder::processCE)
1690 * GepEdge (GepConstantExpr SVFIRBuilder::processCE)
1691 * ConstantPointerNull CopyEdge (3-->2 NullPtr-->BlkPtr SVFIR::addNullPtrNode)
1692 * AddrEdge (0-->2 BlkObj-->BlkPtr SVFIR::addNullPtrNode)
1693 * GlobalVariable AddrEdge (SVFIRBuilder::visitGlobal)
1694 * GepEdge (SVFIRBuilder::getGlobalVarField)
1695 * Function AddrEdge (SVFIRBuilder::visitGlobal)
1696 * Constant StoreEdge (SVFIRBuilder::InitialGlobal)
1697 */
1699{
1701 return;
1702
1703 assert(curVal && "current Val is nullptr?");
1704 edge->setBB(curBB!=nullptr ? curBB : nullptr);
1706 ICFGNode* icfgNode = pag->getICFG()->getGlobalICFGNode();
1708 if (const Instruction* curInst = SVFUtil::dyn_cast<Instruction>(curVal))
1709 {
1710 const FunObjVar* srcFun = edge->getSrcNode()->getFunction();
1711 const FunObjVar* dstFun = edge->getDstNode()->getFunction();
1712 if(srcFun!=nullptr && !SVFUtil::isa<RetPE>(edge) && !SVFUtil::isa<FunValVar>(edge->getSrcNode()) && !SVFUtil::isa<FunObjVar>(edge->getSrcNode()))
1713 {
1714 assert(srcFun==llvmMS->getFunObjVar(curInst->getFunction()) && "SrcNode of the PAGEdge not in the same function?");
1715 }
1716 if(dstFun!=nullptr && !SVFUtil::isa<CallPE>(edge) && !SVFUtil::isa<RetValPN>(edge->getDstNode()))
1717 {
1718 assert(dstFun==llvmMS->getFunObjVar(curInst->getFunction()) && "DstNode of the PAGEdge not in the same function?");
1719 }
1720
1722 if (!(SVFUtil::isa<GepStmt>(edge) && SVFUtil::isa<GepValVar>(edge->getDstNode())))
1723 assert(curBB && "instruction does not have a basic block??");
1724
1726 if(SVFUtil::isa<ReturnInst>(curInst))
1727 {
1728 icfgNode = pag->getICFG()->getFunExitICFGNode(llvmMS->getFunObjVar(curInst->getFunction()));
1729 }
1730 else
1731 {
1732 if(SVFUtil::isa<RetPE>(edge))
1733 icfgNode = llvmMS->getRetICFGNode(SVFUtil::cast<Instruction>(curInst));
1734 else
1735 icfgNode = llvmMS->getICFGNode(SVFUtil::cast<Instruction>(curInst));
1736 }
1737 }
1738 else if (const Argument* arg = SVFUtil::dyn_cast<Argument>(curVal))
1739 {
1741 icfgNode = pag->getICFG()->getFunEntryICFGNode(
1742 llvmModuleSet()->getFunObjVar(SVFUtil::cast<Function>(arg->getParent())));
1743 }
1744 else if (SVFUtil::isa<Constant>(curVal) ||
1745 SVFUtil::isa<Function>(curVal) ||
1746 SVFUtil::isa<MetadataAsValue>(curVal))
1747 {
1748 if (!curBB)
1750 else
1751 {
1752 icfgNode = const_cast<ICFGNode*>(curBB->front());
1753 }
1754 }
1755 else
1756 {
1757 assert(false && "what else value can we have?");
1758 }
1759
1760 pag->addToSVFStmtList(icfgNode,edge);
1761 icfgNode->addSVFStmt(edge);
1762 if(const CallPE* callPE = SVFUtil::dyn_cast<CallPE>(edge))
1763 {
1764 CallICFGNode* callNode = const_cast<CallICFGNode*>(callPE->getCallSite());
1765 FunEntryICFGNode* entryNode = const_cast<FunEntryICFGNode*>(callPE->getFunEntryICFGNode());
1767 SVFUtil::cast<CallCFGEdge>(edge)->addCallPE(callPE);
1768 }
1769 else if(const RetPE* retPE = SVFUtil::dyn_cast<RetPE>(edge))
1770 {
1771 RetICFGNode* retNode = const_cast<RetICFGNode*>(retPE->getCallSite()->getRetICFGNode());
1772 FunExitICFGNode* exitNode = const_cast<FunExitICFGNode*>(retPE->getFunExitICFGNode());
1774 SVFUtil::cast<RetCFGEdge>(edge)->addRetPE(retPE);
1775 }
1776}
1777
1778
1786{
1787 SVFVar* node = pag->getGNode(nodeId);
1790 if(geps.empty())
1791 return AccessPath(0);
1792
1793 assert(geps.size()==1 && "one node can only be connected by at most one gep edge!");
1794 SVFVar::iterator it = geps.begin();
1795 const GepStmt* gepEdge = SVFUtil::cast<GepStmt>(*it);
1796 if(gepEdge->isVariantFieldGep())
1797 return AccessPath(0);
1798 else
1799 return gepEdge->getAccessPath();
1800}
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
Definition SVFType.h:498
#define TIMEINTERVAL
Definition SVFType.h:526
#define DGENERAL
Definition SVFType.h:504
#define DPAGBuild
Definition SVFType.h:506
buffer offset
Definition cJSON.cpp:1113
cJSON * item
Definition cJSON.h:222
bool addOffsetVarAndGepTypePair(const SVFVar *var, const SVFType *gepIterType)
APOffset getConstantStructFldIdx() const
Get methods.
Definition AccessPath.h:99
void setFldIdx(APOffset idx)
Definition AccessPath.h:103
std::vector< std::pair< const ICFGNode *, s32_t > > SuccAndCondPairVec
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
Definition CallGraph.h:319
Set< const FunObjVar * > FunctionSet
Definition CallGraph.h:244
bool isVirtualCall() const
Definition ICFGNode.h:521
void setVtablePtr(SVFVar *v)
Definition ICFGNode.h:526
static ExtAPI * getExtAPI()
Definition ExtAPI.cpp:43
void setExtFuncAnnotations(const FunObjVar *fun, const std::vector< std::string > &funcAnnotations)
Definition ExtAPI.cpp:166
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
const SVFBasicBlock * getEntryBlock() const
void setBasicBlockGraph(BasicBlockGraph *graph)
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
iterator begin()
Iterators.
u32_t getTotalNodeNum() const
Get total number of node/edge.
IDToNodeMapTy::iterator iterator
Node Iterators.
NodeType * getGNode(NodeID id) const
Get a node.
GEdgeSetTy::iterator iterator
const GEdgeSetTy & getOutEdges() const
void addSVFStmt(const SVFStmt *edge)
Definition ICFGNode.h:112
FunExitICFGNode * getFunExitICFGNode(const FunObjVar *fun)
Add a function exit node.
Definition ICFG.cpp:249
ICFGEdge * hasInterICFGEdge(ICFGNode *src, ICFGNode *dst, ICFGEdge::ICFGEdgeK kind)
Definition ICFG.cpp:276
void dump(const std::string &file, bool simple=false)
Dump graph into dot file.
Definition ICFG.cpp:411
FunEntryICFGNode * getFunEntryICFGNode(const FunObjVar *fun)
Add a function entry node.
Definition ICFG.cpp:242
GlobalICFGNode * getGlobalICFGNode() const
Definition ICFG.h:236
NodeID constantSymID() const
Definition IRGraph.h:188
u32_t getFlattenedElemIdx(const SVFType *T, u32_t origId)
Flattened element idx of an array or struct by considering stride.
Definition IRGraph.cpp:144
u32_t getNodeNumAfterPAGBuild() const
Definition IRGraph.h:313
void dump(std::string name)
Dump SVFIR.
Definition IRGraph.cpp:310
NodeID getBlkPtr() const
Definition IRGraph.h:255
NodeID blkPtrSymID() const
Definition IRGraph.h:178
NodeID getNullPtr() const
Definition IRGraph.h:259
NodeID nullPtrSymID() const
Definition IRGraph.h:183
u32_t getTotalSymNum() const
Statistics.
Definition IRGraph.h:200
FunObjVarToIDMapTy varargFunObjSymMap
vararg map
Definition IRGraph.h:87
NodeID getReturnNode(const FunObjVar *func) const
GetReturnNode - Return the unique node representing the return value of a function.
Definition IRGraph.cpp:60
void setNodeNumAfterPAGBuild(u32_t num)
Definition IRGraph.h:317
NodeID blackholeSymID() const
Definition IRGraph.h:193
ObjTypeInfo * getObjTypeInfo(NodeID id) const
Definition IRGraph.h:234
NodeID getConstantNode() const
Definition IRGraph.h:251
FunObjVarToIDMapTy returnFunObjSymMap
return map
Definition IRGraph.h:86
virtual void build(ICFG *icfg)
Start from here.
NodeID getValueNode(const Value *V)
ValueToIDMapTy & valSyms()
Definition LLVMModule.h:205
FunToIDMapTy & retSyms()
Definition LLVMModule.h:267
const FunObjVar * getFunObjVar(const Function *fun) const
Definition LLVMModule.h:260
SVFBasicBlock * getSVFBasicBlock(const BasicBlock *bb)
Definition LLVMModule.h:291
DominatorTree & getDomTree(const Function *fun)
void addToSVFVar2LLVMValueMap(const Value *val, SVFValue *svfBaseNode)
LLVMFun2FunObjVarMap LLVMFun2FunObjVar
Map an LLVM Function to an SVF Funobjvar.
Definition LLVMModule.h:97
SVFType * getSVFType(const Type *T)
Get or create SVFType and typeinfo.
bool hasICFGNode(const Instruction *inst)
ICFGNode * getICFGNode(const Instruction *inst)
Get a basic block ICFGNode.
CallICFGNode * getCallICFGNode(const Instruction *cs)
get a call node
Fun2AnnoMap ExtFun2Annotations
Record annotations of function in extapi.bc.
Definition LLVMModule.h:89
NodeID getObjectNode(const Value *V)
RetICFGNode * getRetICFGNode(const Instruction *cs)
get a return node
const std::vector< std::reference_wrapper< Module > > & getLLVMModules() const
Definition LLVMModule.h:155
const Function * getRealDefFun(const Function *fun) const
Definition LLVMModule.h:183
ValueToIDMapTy & objSyms()
Definition LLVMModule.h:210
void addBasicBlock(FunObjVar *fun, const BasicBlock *bb)
Definition LLVMModule.h:230
FunToIDMapTy & varargSyms()
Definition LLVMModule.h:272
const FunctionSet & getFunctionSet() const
Definition LLVMModule.h:190
static NodeIDAllocator * get(void)
Return (singleton) allocator.
static const Option< bool > PAGDotGraph
Definition Options.h:121
static const Option< std::string > DumpJson
Definition Options.h:124
static Option< bool > ModelConsts
Definition Options.h:187
static const Option< bool > PAGPrint
Definition Options.h:127
static const Option< bool > VtableInSVFIR
Definition Options.h:217
static const Option< bool > LoopAnalysis
Definition Options.h:242
static const Option< bool > DumpICFG
Definition Options.h:123
const FunObjVar * getParent() const
void addPredBasicBlock(const SVFBasicBlock *pred2)
void addSuccBasicBlock(const SVFBasicBlock *succ2)
const ICFGNode * front() const
u32_t inferFieldIdxFromByteOffset(const llvm::GEPOperator *gepOp, DataLayout *dl, AccessPath &ap, APOffset idx)
Infer field index from byteoffset.
CopyStmt::CopyKind getCopyKind(const Value *val)
void sanityCheck()
Sanity check for SVFIR.
SVFIR * getPAG() const
Return SVFIR.
void setCurrentLocation(const Value *val, const BasicBlock *bb)
Set current basic block in order to keep track of control flow information.
NodeID addNullPtrNode()
Add NullPtr PAGNode.
void visitLoadInst(LoadInst &I)
NodeID getVarargNode(const FunObjVar *func)
getVarargNode - Return the node representing the unique variadic argument of a function.
void addPhiStmt(NodeID res, NodeID opnd, const ICFGNode *pred)
Add Copy edge.
void updateCallGraph(CallGraph *callgraph)
connect PAG edges based on callgraph
void initSVFBasicBlock(const Function *func)
void addStoreEdge(NodeID src, NodeID dst)
Add Store edge.
AddrStmt * addAddrEdge(NodeID src, NodeID dst)
Add Address edge.
void visitInvokeInst(InvokeInst &II)
void handleDirectCall(CallBase *cs, const Function *F)
Handle direct call.
void addBinaryOPEdge(NodeID op1, NodeID op2, NodeID dst, u32_t opcode)
Add Copy edge.
void visitCallInst(CallInst &I)
void addLoadEdge(NodeID src, NodeID dst)
Add Load edge.
virtual void handleExtCall(const CallBase *cs, const Function *callee)
void visitGetElementPtrInst(GetElementPtrInst &I)
void visitBranchInst(BranchInst &I)
virtual void visitAllocaInst(AllocaInst &AI)
Our visit overrides.
void addGepEdge(NodeID src, NodeID dst, const AccessPath &ap, bool constGep)
Add Gep edge.
void addCmpEdge(NodeID op1, NodeID op2, NodeID dst, u32_t predict)
Add Copy edge.
LLVMModuleSet * llvmModuleSet()
void visitStoreInst(StoreInst &I)
NodeID getReturnNode(const FunObjVar *func)
getReturnNode - Return the node representing the unique return value of a function.
NodeID getObjectNode(const Value *V)
GetObject - Return the object node (stack/global/heap/function) according to a LLVM Value.
void visitCallSite(CallBase *cs)
void processCE(const Value *val)
Process constant expression.
void handleIndCall(CallBase *cs)
Handle indirect call.
const Value * curVal
Current Value during SVFIR construction when visiting the module.
void addSelectStmt(NodeID res, NodeID op1, NodeID op2, NodeID cond)
Add SelectStmt.
void addBranchStmt(NodeID br, NodeID cond, const BranchStmt::SuccAndCondPairVec &succs)
Add Branch statement.
virtual SVFIR * build()
Start building SVFIR here.
void visitCallBrInst(CallBrInst &I)
void visitExtractValueInst(ExtractValueInst &EVI)
AccessPath getAccessPathFromBaseNode(NodeID nodeId)
const SVFBasicBlock * curBB
Current basic block during SVFIR construction when visiting the module.
void visitSwitchInst(SwitchInst &I)
The following implementation follows ICFGBuilder::processFunBody.
void visitFreezeInst(FreezeInst &I)
const Value * getBaseValueForExtArg(const Value *V)
Get the base value of (i8* src and i8* dst) for external argument (e.g. memcpy(i8* dst,...
void initDomTree(FunObjVar *func, const Function *f)
void addRetEdge(NodeID src, NodeID dst, const CallICFGNode *cs, const FunExitICFGNode *exit)
Add Return edge.
void addBlackHoleAddrEdge(NodeID node)
void visitGlobal()
Handle globals including (global variable and functions)
void addUnaryOPEdge(NodeID src, NodeID dst, u32_t opcode)
Add Unary edge.
const SVFBasicBlock * getCurrentBB() const
void visitPHINode(PHINode &I)
CopyStmt * addCopyEdge(NodeID src, NodeID dst, CopyStmt::CopyKind kind)
void addCallEdge(NodeID src, NodeID dst, const CallICFGNode *cs, const FunEntryICFGNode *entry)
Add Call edge.
void setCurrentBBAndValueForPAGEdge(PAGEdge *edge)
void visitSelectInst(SelectInst &I)
void visitVAArgInst(VAArgInst &)
void visitCmpInst(CmpInst &I)
void visitExtractElementInst(ExtractElementInst &I)
bool computeGepOffset(const User *V, AccessPath &ap)
Compute offset of a gep instruction or gep constant expression.
void visitReturnInst(ReturnInst &I)
const Value * getCurrentValue() const
NodeID getValueNode(const Value *V)
Get different kinds of node.
void visitCastInst(CastInst &I)
AddrStmt * addAddrWithStackArraySz(NodeID src, NodeID dst, llvm::AllocaInst &inst)
Add Address edge from allocinst with arraysize like "%4 = alloca i8, i64 3".
NodeID getGepValVar(const Value *val, const AccessPath &ap, const SVFType *elementType)
void InitialGlobal(const GlobalVariable *gvar, Constant *C, u32_t offset)
void visitUnaryOperator(UnaryOperator &I)
void visitBinaryOperator(BinaryOperator &I)
void initialiseNodes()
Initialize nodes and edges.
NodeID getGlobalVarField(const GlobalVariable *gvar, u32_t offset, SVFType *tpy)
NodeID addObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Add a memory obj node.
Definition SVFIR.h:623
NodeID addGlobalValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *svfType)
Definition SVFIR.h:603
NodeID getGepValVar(NodeID curInst, NodeID base, const AccessPath &ap) const
Due to constraint expression, curInst is used to distinguish different instructions (e....
Definition SVFIR.cpp:522
NodeID addGlobalObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:680
void print()
Print SVFIR.
Definition SVFIR.cpp:557
NodeID addConstantFPObjNode(NodeID i, ObjTypeInfo *ti, double dval, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:656
NodeID addBlackholePtrNode()
Definition SVFIR.h:755
NodeID addBlackholeObjNode()
Definition SVFIR.h:747
void addFunArgs(const FunObjVar *fun, const SVFVar *arg)
Get/set method for function/callsite arguments and returns.
Definition SVFIR.h:527
NodeID addHeapObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:631
NodeID addGepValNode(NodeID curInst, const ValVar *base, const AccessPath &ap, NodeID i, const SVFType *type, const ICFGNode *node)
Add a temp field value node, this method can only invoked by getGepValVar.
Definition SVFIR.cpp:403
void addFunRet(const FunObjVar *fun, const SVFVar *ret)
Add function returns.
Definition SVFIR.h:534
NodeID addFunObjNode(NodeID id, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:648
NodeID addStackObjNode(NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:641
static std::string pagFileName()
Definition SVFIR.h:206
NodeID addConstantNullPtrValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *type)
Definition SVFIR.h:597
static bool pagReadFromTXT()
Definition SVFIR.h:211
CallGraph * callGraph
all the callsites of a program
Definition SVFIR.h:99
NodeID addConstantDataObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:692
void addToSVFStmtList(ICFGNode *inst, SVFStmt *edge)
Add a SVFStmt into instruction map.
Definition SVFIR.h:259
void addCallSiteRets(RetICFGNode *retBlockNode, const SVFVar *arg)
Add callsite returns.
Definition SVFIR.h:547
NodeID addConstantDataValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *type)
Definition SVFIR.h:615
void addCallSiteArgs(CallICFGNode *callBlockNode, const ValVar *arg)
Add callsite arguments.
Definition SVFIR.h:541
NodeID addConstantAggObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:686
NodeID addConstantIntValNode(NodeID i, const std::pair< s64_t, u64_t > &intValue, const ICFGNode *icfgNode, const SVFType *type)
Definition SVFIR.h:590
ICFG * getICFG() const
Definition SVFIR.h:163
NodeID addFunValNode(NodeID i, const ICFGNode *icfgNode, const FunObjVar *funObjVar, const SVFType *type)
Definition SVFIR.h:570
NodeID addConstantFPValNode(const NodeID i, double dval, const ICFGNode *icfgNode, const SVFType *type)
Definition SVFIR.h:583
NodeID addConstantAggValNode(const NodeID i, const ICFGNode *icfgNode, const SVFType *svfType)
Definition SVFIR.h:609
NodeID addConstantNullPtrObjNode(const NodeID i, ObjTypeInfo *ti, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:673
void addCallSite(const CallICFGNode *call)
Add callsites.
Definition SVFIR.h:796
NodeID addValNode(NodeID i, const SVFType *type, const ICFGNode *icfgNode)
add node into SVFIR
Definition SVFIR.h:564
NodeID addVarargNode(NodeID i, const FunObjVar *val, const SVFType *type, const ICFGNode *n)
Add a unique vararg node for a procedure.
Definition SVFIR.h:706
void setCHG(CommonCHGraph *c)
Set/Get CHG.
Definition SVFIR.h:169
ICFG * icfg
Definition SVFIR.h:96
NodeID addConstantIntObjNode(NodeID i, ObjTypeInfo *ti, const std::pair< s64_t, u64_t > &intValue, const SVFType *type, const ICFGNode *node)
Definition SVFIR.h:664
void addGlobalPAGEdge(const SVFStmt *edge)
Add global PAGEdges (not in a procedure)
Definition SVFIR.h:791
void addIndirectCallsites(const CallICFGNode *cs, NodeID funPtr)
Add indirect callsites.
Definition SVFIR.h:553
void initialiseCandidatePointers()
Initialize candidate pointers.
Definition SVFIR.cpp:642
NodeID addRetNode(NodeID i, const FunObjVar *callGraphNode, const SVFType *type, const ICFGNode *icn)
Add a unique return node for a procedure.
Definition SVFIR.h:700
NodeID addArgValNode(NodeID i, u32_t argNo, const ICFGNode *icfgNode, const FunObjVar *callGraphNode, const SVFType *type)
Definition SVFIR.h:576
NodeID addConstantObjNode()
Definition SVFIR.h:751
const Map< const SVFBasicBlock *, BBSet > & getDomFrontierMap() const
Set< const SVFBasicBlock * > BBSet
static double getClk(bool mark=false)
Definition SVFStat.cpp:48
static double timeOfBuildingSVFIR
Definition SVFStat.h:95
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
virtual void setName(const std::string &nameInfo)
Definition SVFValue.h:174
SVFStmt::SVFStmtSetTy & getIncomingEdges(SVFStmt::PEDGEK kind)
Edge accessors and checkers.
#define NULL
Definition extapi.c:2
bool isIntrinsicInst(const Instruction *inst)
Return true if it is an intrinsic instruction.
Definition LLVMUtil.cpp:202
const ConstantExpr * isBinaryConstantExpr(const Value *val)
Definition LLVMUtil.h:290
bool isUncalledFunction(const Function *fun)
whether this is a function without any possible caller?
Definition LLVMUtil.cpp:157
double getDoubleValue(const ConstantFP *fpValue)
Definition LLVMUtil.h:54
bool isConstantObjSym(const Value *val)
Check whether this value points-to a constant object.
Definition CppUtil.cpp:672
const Value * stripAllCasts(const Value *val)
Strip off the all casts.
Definition LLVMUtil.cpp:249
const ConstantExpr * isInt2PtrConstantExpr(const Value *val)
Definition LLVMUtil.h:225
const ConstantExpr * isSelectConstantExpr(const Value *val)
Definition LLVMUtil.h:255
bool isIntrinsicFun(const Function *func)
Definition LLVMUtil.cpp:189
bool functionDoesNotRet(const Function *fun)
Definition LLVMUtil.cpp:122
const ConstantExpr * isTruncConstantExpr(const Value *val)
Definition LLVMUtil.h:265
std::pair< s64_t, u64_t > getIntegerValue(const ConstantInt *intValue)
Definition LLVMUtil.h:82
void getNextInsts(const Instruction *curInst, std::vector< const Instruction * > &instList)
Get the next instructions following control flow.
Definition LLVMUtil.cpp:573
const ConstantExpr * isPtr2IntConstantExpr(const Value *val)
Definition LLVMUtil.h:235
bool isHeapObj(const Value *val)
Definition LLVMUtil.cpp:682
const ConstantExpr * isUnaryConstantExpr(const Value *val)
Definition LLVMUtil.h:301
void getFunReachableBBs(const Function *svfFun, std::vector< const SVFBasicBlock * > &bbs)
Get reachable basic block from function entry.
Definition LLVMUtil.cpp:74
const ConstantExpr * isCastConstantExpr(const Value *val)
Definition LLVMUtil.h:245
bool isExtCall(const Function *fun)
Definition LLVMUtil.cpp:383
bool basicBlockHasRetInst(const BasicBlock *bb)
Return true if the function has a return instruction.
Definition LLVMUtil.cpp:108
bool isStackObj(const Value *val)
Definition LLVMUtil.cpp:704
const ConstantExpr * isGepConstantExpr(const Value *val)
Return corresponding constant expression, otherwise return nullptr.
Definition LLVMUtil.h:215
static DataLayout * getDataLayout(Module *mod)
Definition LLVMUtil.h:313
const Function * getCallee(const CallBase *cs)
Definition LLVMUtil.h:97
const FunObjVar * getFunObjVar(const std::string &name)
Definition LLVMUtil.cpp:435
std::string dumpValue(const Value *val)
Definition LLVMUtil.cpp:600
const ConstantExpr * isCmpConstantExpr(const Value *val)
Definition LLVMUtil.h:279
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
Definition SVFUtil.cpp:101
void writeWrnMsg(const std::string &msg)
Writes a message run through wrnMsg.
Definition SVFUtil.cpp:68
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
LLVM_NODISCARD std::enable_if_t<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type > dyn_cast(const Y &Val)
Definition Casting.h:405
const Value * getVCallVtblPtr(const CallBase *cs)
Definition CppUtil.cpp:537
bool isValVtbl(const Value *val)
Definition CppUtil.cpp:336
for isBitcode
Definition BasicTypes.h:68
llvm::DataLayout DataLayout
Definition BasicTypes.h:108
llvm::GlobalVariable GlobalVariable
Definition BasicTypes.h:130
llvm::GlobalAlias GlobalAlias
Definition BasicTypes.h:128
llvm::ArrayType ArrayType
Definition BasicTypes.h:95
llvm::Type Type
Definition BasicTypes.h:83
llvm::CallBase CallBase
Definition BasicTypes.h:146
llvm::BasicBlock BasicBlock
Definition BasicTypes.h:86
llvm::UnaryOperator UnaryOperator
Definition BasicTypes.h:180
llvm::ConstantStruct ConstantStruct
Definition BasicTypes.h:106
llvm::StructType StructType
LLVM types.
Definition BasicTypes.h:94
llvm::succ_const_iterator succ_const_iterator
LLVM Iterators.
Definition BasicTypes.h:276
llvm::AllocaInst AllocaInst
Definition BasicTypes.h:150
llvm::SwitchInst SwitchInst
Definition BasicTypes.h:155
u32_t NodeID
Definition GeneralType.h:56
llvm::InvokeInst InvokeInst
Definition BasicTypes.h:163
llvm::Argument Argument
Definition BasicTypes.h:145
llvm::LoadInst LoadInst
Definition BasicTypes.h:149
s64_t APOffset
Definition GeneralType.h:60
llvm::const_pred_iterator const_pred_iterator
Definition BasicTypes.h:254
llvm::CmpInst CmpInst
Definition BasicTypes.h:159
llvm::Function Function
Definition BasicTypes.h:85
llvm::ConstantData ConstantData
Definition BasicTypes.h:116
llvm::LoopInfo LoopInfo
Definition BasicTypes.h:141
llvm::Instruction Instruction
Definition BasicTypes.h:87
llvm::Constant Constant
Definition BasicTypes.h:124
llvm::DomTreeNode DomTreeNode
Definition BasicTypes.h:134
llvm::ConstantDataSequential ConstantDataSequential
Definition BasicTypes.h:119
llvm::Value Value
LLVM Basic classes.
Definition BasicTypes.h:82
llvm::ConstantExpr ConstantExpr
Definition BasicTypes.h:120
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
llvm::CastInst CastInst
Definition BasicTypes.h:158
llvm::FreezeInst FreezeInst
Definition BasicTypes.h:169
llvm::Module Module
Definition BasicTypes.h:84
llvm::BinaryOperator BinaryOperator
Definition BasicTypes.h:179
llvm::PostDominatorTree PostDominatorTree
Definition BasicTypes.h:136
llvm::DominanceFrontier DominanceFrontier
Definition BasicTypes.h:135
llvm::StoreInst StoreInst
Definition BasicTypes.h:148
llvm::SelectInst SelectInst
Definition BasicTypes.h:174
llvm::VAArgInst VAArgInst
Definition BasicTypes.h:175
llvm::Loop Loop
LLVM Loop.
Definition BasicTypes.h:140
llvm::GetElementPtrInst GetElementPtrInst
Definition BasicTypes.h:162
llvm::CallBrInst CallBrInst
Definition BasicTypes.h:156
llvm::ReturnInst ReturnInst
Definition BasicTypes.h:157
llvm::PHINode PHINode
Definition BasicTypes.h:165
llvm::BranchInst BranchInst
Definition BasicTypes.h:154
llvm::ExtractValueInst ExtractValueInst
Definition BasicTypes.h:160
unsigned u32_t
Definition GeneralType.h:47
signed long long s64_t
Definition GeneralType.h:50
llvm::CallInst CallInst
Definition BasicTypes.h:147
llvm::ConstantInt ConstantInt
Definition BasicTypes.h:125
llvm::DominatorTree DominatorTree
LLVM Dominators.
Definition BasicTypes.h:133
llvm::ExtractElementInst ExtractElementInst
Definition BasicTypes.h:161
llvm::User User
Definition BasicTypes.h:142