Static Value-Flow Analysis
Loading...
Searching...
No Matches
VFG.cpp
Go to the documentation of this file.
1//===- VFG.cpp -- Sparse value-flow graph-----------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2018> <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 * VFG.cpp
25 *
26 * Created on: Sep 11, 2018
27 * Author: Yulei Sui
28 */
29
30
31#include <Graphs/SVFGNode.h>
32#include "Util/Options.h"
33#include "Graphs/VFG.h"
34#include "Util/SVFUtil.h"
35
36using namespace SVF;
37using namespace SVFUtil;
38
39const std::string VFGNode::toString() const
40{
41 std::string str;
42 std::stringstream rawstr(str);
43 rawstr << "VFGNode ID: " << getId() << " ";
44 return rawstr.str();
45}
46
47const std::string StmtVFGNode::toString() const
48{
49 std::string str;
50 std::stringstream rawstr(str);
51 rawstr << "StmtVFGNode ID: " << getId() << " ";
53 return rawstr.str();
54}
55
57{
58 NodeBS nb;
60 return nb;
61}
62
63const std::string LoadVFGNode::toString() const
64{
65 std::string str;
66 std::stringstream rawstr(str);
67 rawstr << "LoadVFGNode ID: " << getId() << " ";
69 return rawstr.str();
70}
71
73{
74 NodeBS nb;
75 for (auto edge: getOutEdges())
76 {
77 if (IndirectSVFGEdge *iedge = SVFUtil::dyn_cast<IndirectSVFGEdge>(edge))
78 {
79 nb |= iedge->getPointsTo();
80 }
81 }
82 return nb;
83}
84
85const std::string StoreVFGNode::toString() const
86{
87 std::string str;
88 std::stringstream rawstr(str);
89 rawstr << "StoreVFGNode ID: " << getId() << " ";
91 return rawstr.str();
92}
93
95{
96 NodeBS nb;
98 return nb;
99}
100
101const std::string CopyVFGNode::toString() const
102{
103 std::string str;
104 std::stringstream rawstr(str);
105 rawstr << "CopyVFGNode ID: " << getId() << " ";
106 rawstr << getPAGEdge()->toString();
107 return rawstr.str();
108}
109
111{
112 NodeBS nb;
113 nb.set(getRes()->getId());
114 return nb;
115}
116
117const std::string CmpVFGNode::toString() const
118{
119 std::string str;
120 std::stringstream rawstr(str);
121 rawstr << "CmpVFGNode ID: " << getId() << " ";
122 rawstr << "PAGEdge: [" << res->getId() << " = cmp(";
123 for(CmpVFGNode::OPVers::const_iterator it = opVerBegin(), eit = opVerEnd();
124 it != eit; it++)
125 rawstr << it->second->getId() << ", ";
126 rawstr << ")]\n";
127 rawstr << " " << res->valueOnlyToString();
128 return rawstr.str();
129}
130
132{
133 NodeBS nb;
134 nb.set(getRes()->getId());
135 return nb;
136}
137
138const std::string BinaryOPVFGNode::toString() const
139{
140 std::string str;
141 std::stringstream rawstr(str);
142 rawstr << "BinaryOPVFGNode ID: " << getId() << " ";
143 rawstr << "PAGEdge: [" << res->getId() << " = Binary(";
144 for(BinaryOPVFGNode::OPVers::const_iterator it = opVerBegin(), eit = opVerEnd();
145 it != eit; it++)
146 rawstr << it->second->getId() << ", ";
147 rawstr << ")]\t";
148 rawstr << " " << res->valueOnlyToString();
149 return rawstr.str();
150}
151
153{
154 NodeBS nb;
155 nb.set(getRes()->getId());
156 return nb;
157}
158
159const std::string UnaryOPVFGNode::toString() const
160{
161 std::string str;
162 std::stringstream rawstr(str);
163 rawstr << "UnaryOPVFGNode ID: " << getId() << " ";
164 rawstr << "PAGEdge: [" << res->getId() << " = Unary(";
165 for(UnaryOPVFGNode::OPVers::const_iterator it = opVerBegin(), eit = opVerEnd();
166 it != eit; it++)
167 rawstr << it->second->getId() << ", ";
168 rawstr << ")]\t";
169 rawstr << " " << res->valueOnlyToString();
170 return rawstr.str();
171}
172
174{
175 return NodeBS();
176}
177
178const std::string BranchVFGNode::toString() const
179{
180 std::string str;
181 std::stringstream rawstr(str);
182 rawstr << "BranchVFGNode ID: " << getId() << " ";
183 rawstr << "PAGEdge: [" << brstmt->toString() << "\t";
184 return rawstr.str();
185}
186
188{
189 NodeBS nb;
191 return nb;
192}
193
194const std::string GepVFGNode::toString() const
195{
196 std::string str;
197 std::stringstream rawstr(str);
198 rawstr << "GepVFGNode ID: " << getId() << " ";
199 rawstr << getPAGEdge()->toString();
200 return rawstr.str();
201}
202
204{
205 NodeBS nb;
206 nb.set(getRes()->getId());
207 return nb;
208}
209
210const std::string PHIVFGNode::toString() const
211{
212 std::string str;
213 std::stringstream rawstr(str);
214 rawstr << "PHIVFGNode ID: " << getId() << " ";
215 rawstr << "PAGNode: [" << res->getId() << " = PHI(";
216 for(PHIVFGNode::OPVers::const_iterator it = opVerBegin(), eit = opVerEnd();
217 it != eit; it++)
218 rawstr << it->second->getId() << ", ";
219 rawstr << ")]\t";
220 rawstr << " " << res->valueOnlyToString();
221 return rawstr.str();
222}
223
224
225const std::string IntraPHIVFGNode::toString() const
226{
227 std::string str;
228 std::stringstream rawstr(str);
229 rawstr << "IntraPHIVFGNode ID: " << getId() << " ";
230 rawstr << "PAGNode: [" << res->getId() << " = PHI(";
231 for(PHIVFGNode::OPVers::const_iterator it = opVerBegin(), eit = opVerEnd();
232 it != eit; it++)
233 rawstr << it->second->getId() << ", ";
234 rawstr << ")]\t";
235 rawstr << " " << res->valueOnlyToString();
236 return rawstr.str();
237}
238
240{
241 NodeBS nb;
243 return nb;
244}
245
246const std::string AddrVFGNode::toString() const
247{
248 std::string str;
249 std::stringstream rawstr(str);
250 rawstr << "AddrVFGNode ID: " << getId() << " ";
251 rawstr << getPAGEdge()->toString();
252 return rawstr.str();
253}
254
255
256const std::string ArgumentVFGNode::toString() const
257{
258 std::string str;
259 std::stringstream rawstr(str);
260 rawstr << "ArgumentVFGNode ID: " << getId() << " ";
261 rawstr << param->toString();
262 return rawstr.str();
263}
264
266{
267 NodeBS nb;
268 nb.set(getParam()->getId());
269 return nb;
270}
271
272const std::string ActualParmVFGNode::toString() const
273{
274 std::string str;
275 std::stringstream rawstr(str);
276 rawstr << "ActualParmVFGNode ID: " << getId() << " ";
277 rawstr << "CS[" << getCallSite()->getSourceLoc() << "]";
278 rawstr << param->toString();
279 return rawstr.str();
280}
281
283{
284 NodeBS nb;
285 nb.set(getParam()->getId());
286 return nb;
287}
288
289const std::string FormalParmVFGNode::toString() const
290{
291 std::string str;
292 std::stringstream rawstr(str);
293 rawstr << "FormalParmVFGNode ID: " << getId() << " ";
294 rawstr << "Fun[" << getFun()->getName() << "]";
295 rawstr << param->toString();
296 return rawstr.str();
297}
298
300{
301 NodeBS nb;
302 nb.set(getRev()->getId());
303 return nb;
304}
305
306const std::string ActualRetVFGNode::toString() const
307{
308 std::string str;
309 std::stringstream rawstr(str);
310 rawstr << "ActualRetVFGNode ID: " << getId() << " ";
311 rawstr << "CS[" << getCallSite()->getSourceLoc() << "]";
312 rawstr << param->toString();
313 return rawstr.str();
314}
315
316
318{
319 NodeBS nb;
320 nb.set(getRet()->getId());
321 return nb;
322}
323
324const std::string FormalRetVFGNode::toString() const
325{
326 std::string str;
327 std::stringstream rawstr(str);
328 rawstr << "FormalRetVFGNode ID: " << getId() << " ";
329 rawstr << "Fun[" << getFun()->getName() << "]";
330 rawstr << param->toString();
331 return rawstr.str();
332}
333
334
335const std::string InterPHIVFGNode::toString() const
336{
337 std::string str;
338 std::stringstream rawstr(str);
339 if(isFormalParmPHI())
340 rawstr << "FormalParmPHI ID: " << getId() << " PAGNode ID: " << res->getId() << "\n" << res->valueOnlyToString();
341 else
342 rawstr << "ActualRetPHI ID: " << getId() << " PAGNode ID: " << res->getId() << "\n" << res->valueOnlyToString();
343 return rawstr.str();
344}
345
347{
348 NodeBS nb;
349 nb.set(getPAGNode()->getId());
350 return nb;
351}
352
353const std::string NullPtrVFGNode::toString() const
354{
355 std::string str;
356 std::stringstream rawstr(str);
357 rawstr << "NullPtrVFGNode ID: " << getId();
358 rawstr << " PAGNode ID: " << node->getId() << "\n";
359 return rawstr.str();
360}
361
362
363const std::string VFGEdge::toString() const
364{
365 std::string str;
366 std::stringstream rawstr(str);
367 rawstr << "VFGEdge: [" << getDstID() << "<--" << getSrcID() << "]\t";
368 return rawstr.str();
369}
370
371const std::string DirectSVFGEdge::toString() const
372{
373 std::string str;
374 std::stringstream rawstr(str);
375 rawstr << "DirectVFGEdge: [" << getDstID() << "<--" << getSrcID() << "]\t";
376 return rawstr.str();
377}
378
379const std::string IntraDirSVFGEdge::toString() const
380{
381 std::string str;
382 std::stringstream rawstr(str);
383 rawstr << "IntraDirSVFGEdge: [" << getDstID() << "<--" << getSrcID() << "]\t";
384 return rawstr.str();
385}
386
387const std::string CallDirSVFGEdge::toString() const
388{
389 std::string str;
390 std::stringstream rawstr(str);
391 rawstr << "CallDirSVFGEdge CallSite ID: " << getCallSiteId() << " [";
392 rawstr << getDstID() << "<--" << getSrcID() << "]\t";
393 return rawstr.str();
394}
395
396const std::string RetDirSVFGEdge::toString() const
397{
398 std::string str;
399 std::stringstream rawstr(str);
400 rawstr << "RetDirSVFGEdge CallSite ID: " << getCallSiteId() << " [";
401 rawstr << getDstID() << "<--" << getSrcID() << "]\t";
402 return rawstr.str();
403}
404
405
406
408 ArgumentVFGNode(id, n, FRet), fun(f)
409{
410}
411
413{
414
415}
416
425VFG::VFG(CallGraph* cg, VFGK k): totalVFGNode(0), callgraph(cg), pag(SVFIR::getPAG()), kind(k)
426{
427
428 DBOUT(DGENERAL, outs() << pasMsg("\tCreate VFG Top Level Node\n"));
429 addVFGNodes();
430
431 DBOUT(DGENERAL, outs() << pasMsg("\tCreate SVFG Direct Edge\n"));
433}
434
439{
440 pag = nullptr;
441}
442
443
448{
449
450 // initialize dummy definition null pointers in order to uniform the construction
451 // to be noted for black hole pointer it has already has address edge connected,
452 // and its definition will be set when processing addr SVFIR edge.
454
455 // initialize address nodes
457 for (SVFStmt::SVFStmtSetTy::iterator iter = addrs.begin(), eiter =
458 addrs.end(); iter != eiter; ++iter)
459 {
460 addAddrVFGNode(SVFUtil::cast<AddrStmt>(*iter));
461 }
462
463 // initialize copy nodes
465 for (SVFStmt::SVFStmtSetTy::iterator iter = copys.begin(), eiter =
466 copys.end(); iter != eiter; ++iter)
467 {
468 const CopyStmt* edge = SVFUtil::cast<CopyStmt>(*iter);
469 assert(!isPhiCopyEdge(edge) && "Copy edges can not be a PhiNode (or from PhiNode)");
471 }
472
473 // initialize gep nodes
475 for (SVFStmt::SVFStmtSetTy::iterator iter = ngeps.begin(), eiter =
476 ngeps.end(); iter != eiter; ++iter)
477 {
478 addGepVFGNode(SVFUtil::cast<GepStmt>(*iter));
479 }
480
481 // initialize load nodes
483 for (SVFStmt::SVFStmtSetTy::iterator iter = loads.begin(), eiter =
484 loads.end(); iter != eiter; ++iter)
485 {
486 addLoadVFGNode(SVFUtil::cast<LoadStmt>(*iter));
487 }
488
489 // initialize store nodes
491 for (SVFStmt::SVFStmtSetTy::iterator iter = stores.begin(), eiter =
492 stores.end(); iter != eiter; ++iter)
493 {
494 addStoreVFGNode(SVFUtil::cast<StoreStmt>(*iter));
495 }
496
498 for (SVFStmt::SVFStmtSetTy::iterator iter = forks.begin(), eiter =
499 forks.end(); iter != eiter; ++iter)
500 {
501 TDForkPE* forkedge = SVFUtil::cast<TDForkPE>(*iter);
502 addActualParmVFGNode(forkedge->getRHSVar(),forkedge->getCallSite());
503 }
504
505 // initialize actual parameter nodes
506 for(SVFIR::CSToArgsListMap::iterator it = pag->getCallSiteArgsMap().begin(), eit = pag->getCallSiteArgsMap().end(); it !=eit; ++it)
507 {
508
509 for(SVFIR::SVFVarList::iterator pit = it->second.begin(), epit = it->second.end(); pit!=epit; ++pit)
510 {
511 const PAGNode* pagNode = *pit;
514 }
515 }
516
517 // initialize actual return nodes (callsite return)
518 for(SVFIR::CSToRetMap::iterator it = pag->getCallSiteRets().begin(), eit = pag->getCallSiteRets().end(); it !=eit; ++it)
519 {
520
524 if(isInterestedPAGNode(it->second) == false || hasDef(it->second))
525 continue;
526
527 addActualRetVFGNode(it->second,it->first->getCallICFGNode());
528 }
529
530 // initialize formal parameter nodes
531 for(SVFIR::FunToArgsListMap::iterator it = pag->getFunArgsMap().begin(), eit = pag->getFunArgsMap().end(); it !=eit; ++it)
532 {
533 const FunObjVar* func = it->first;
534
535 for(SVFIR::SVFVarList::iterator pit = it->second.begin(), epit = it->second.end(); pit!=epit; ++pit)
536 {
537 const PAGNode* param = *pit;
538 if (isInterestedPAGNode(param) == false || hasBlackHoleConstObjAddrAsDef(param))
539 continue;
540
541 CallPESet callPEs;
543 {
544 for (SVFStmt::SVFStmtSetTy::const_iterator cit = param->getIncomingEdgesBegin(SVFStmt::Call), ecit =
546 {
547 CallPE* callPE = SVFUtil::cast<CallPE>(*cit);
548 if (isInterestedPAGNode(callPE->getRHSVar()))
549 callPEs.insert(callPE);
550 }
551 }
552 addFormalParmVFGNode(param,func,callPEs);
553 }
554
555 if (func->isVarArg())
556 {
559 continue;
560
561 CallPESet callPEs;
562 if (varParam->hasIncomingEdges(SVFStmt::Call))
563 {
564 for(SVFStmt::SVFStmtSetTy::const_iterator cit = varParam->getIncomingEdgesBegin(SVFStmt::Call),
565 ecit = varParam->getIncomingEdgesEnd(SVFStmt::Call); cit!=ecit; ++cit)
566 {
567 CallPE* callPE = SVFUtil::cast<CallPE>(*cit);
568 if(isInterestedPAGNode(callPE->getRHSVar()))
569 callPEs.insert(callPE);
570 }
571 }
573 }
574 }
575
576 // initialize formal return nodes (callee return)
577 for (SVFIR::FunToRetMap::iterator it = pag->getFunRets().begin(), eit = pag->getFunRets().end(); it != eit; ++it)
578 {
579 const FunObjVar* func = it->first;
580
581 const PAGNode* uniqueFunRetNode = it->second;
582
583 RetPESet retPEs;
584 if (uniqueFunRetNode->hasOutgoingEdges(SVFStmt::Ret))
585 {
586 for (SVFStmt::SVFStmtSetTy::const_iterator cit = uniqueFunRetNode->getOutgoingEdgesBegin(SVFStmt::Ret),
587 ecit = uniqueFunRetNode->getOutgoingEdgesEnd(SVFStmt::Ret);
588 cit != ecit; ++cit)
589 {
590 const RetPE* retPE = SVFUtil::cast<RetPE>(*cit);
591 if (isInterestedPAGNode(retPE->getLHSVar()))
592 retPEs.insert(retPE);
593 }
594 }
595
598 }
599
600 // initialize llvm phi nodes (phi of top level pointers)
602 for (SVFStmt::SVFStmtSetTy::iterator iter = phis.begin(), eiter =
603 phis.end(); iter != eiter; ++iter)
604 {
605 const PhiStmt* edge = SVFUtil::cast<PhiStmt>(*iter);
606 if(isInterestedPAGNode(edge->getRes()))
608 }
609 // initialize select statement
611 for (SVFStmt::SVFStmtSetTy::iterator iter = selects.begin(), eiter =
612 selects.end(); iter != eiter; ++iter)
613 {
614 const MultiOpndStmt* edge = SVFUtil::cast<MultiOpndStmt>(*iter);
615 if(isInterestedPAGNode(edge->getRes()))
617 }
618 // initialize llvm binary nodes (binary operators)
620 for (SVFStmt::SVFStmtSetTy::iterator iter = binaryops.begin(), eiter =
621 binaryops.end(); iter != eiter; ++iter)
622 {
623 const BinaryOPStmt* edge = SVFUtil::cast<BinaryOPStmt>(*iter);
624 if(isInterestedPAGNode(edge->getRes()))
626 }
627 // initialize llvm unary nodes (unary operators)
629 for (SVFStmt::SVFStmtSetTy::iterator iter = unaryops.begin(), eiter =
630 unaryops.end(); iter != eiter; ++iter)
631 {
632 const UnaryOPStmt* edge = SVFUtil::cast<UnaryOPStmt>(*iter);
633 if(isInterestedPAGNode(edge->getRes()))
635 }
636 // initialize llvm unary nodes (unary operators)
638 for (SVFStmt::SVFStmtSetTy::iterator iter = brs.begin(), eiter =
639 brs.end(); iter != eiter; ++iter)
640 {
641 const BranchStmt* edge = SVFUtil::cast<BranchStmt>(*iter);
642 if(isInterestedPAGNode(edge->getBranchInst()))
644 }
645 // initialize llvm cmp nodes (comparison)
647 for (SVFStmt::SVFStmtSetTy::iterator iter = cmps.begin(), eiter =
648 cmps.end(); iter != eiter; ++iter)
649 {
650 const CmpStmt* edge = SVFUtil::cast<CmpStmt>(*iter);
651 if(isInterestedPAGNode(edge->getRes()))
653 }
654}
655
660{
665 if (edge != nullptr)
666 {
667 assert(edge->isDirectVFGEdge() && "this should be a direct value flow edge!");
668 return nullptr;
669 }
670 else
671 {
672 if(srcNode!=dstNode)
673 {
675 return (addVFGEdge(directEdge) ? directEdge : nullptr);
676 }
677 else
678 return nullptr;
679 }
680}
681
686{
690 if (edge != nullptr)
691 {
692 assert(edge->isCallDirectVFGEdge() && "this should be a direct value flow edge!");
693 return nullptr;
694 }
695 else
696 {
698 return (addVFGEdge(callEdge) ? callEdge : nullptr);
699 }
700}
701
706{
710 if (edge != nullptr)
711 {
712 assert(edge->isRetDirectVFGEdge() && "this should be a direct value flow edge!");
713 return nullptr;
714 }
715 else
716 {
718 return (addVFGEdge(retEdge) ? retEdge : nullptr);
719 }
720}
721
722
727{
728
729 for(iterator it = begin(), eit = end(); it!=eit; ++it)
730 {
731 NodeID nodeId = it->first;
732 VFGNode* node = it->second;
733
734 if(StmtVFGNode* stmtNode = SVFUtil::dyn_cast<StmtVFGNode>(node))
735 {
737 if(SVFUtil::isa<AddrVFGNode>(stmtNode))
738 continue;
740 if (stmtNode->getPAGSrcNode()->isConstDataOrAggDataButNotNullPtr() == false)
741 // for ptr vfg, we skip src node of integer type if it is at a int2ptr copystmt
742 if(isInterestedPAGNode(stmtNode->getPAGSrcNode()))
743 addIntraDirectVFEdge(getDef(stmtNode->getPAGSrcNode()), nodeId);
744 if (const GepStmt* gepStmt = SVFUtil::dyn_cast<GepStmt>(stmtNode->getPAGEdge()))
745 {
746 for (const auto &varType: gepStmt->getOffsetVarAndGepTypePairVec())
747 {
748 if(varType.first->isConstDataOrAggDataButNotNullPtr() || isInterestedPAGNode(varType.first) == false)
749 continue;
751 }
752 }
754 if(SVFUtil::isa<StoreVFGNode>(stmtNode) && (stmtNode->getPAGDstNode()->isConstDataOrAggDataButNotNullPtr() == false))
755 {
756 addIntraDirectVFEdge(getDef(stmtNode->getPAGDstNode()), nodeId);
757 }
758
759 }
760 else if(PHIVFGNode* phiNode = SVFUtil::dyn_cast<PHIVFGNode>(node))
761 {
762 for (PHIVFGNode::OPVers::const_iterator it = phiNode->opVerBegin(), eit = phiNode->opVerEnd(); it != eit; it++)
763 {
764 if (it->second->isConstDataOrAggDataButNotNullPtr() == false)
766 }
767 }
768 else if(BinaryOPVFGNode* binaryNode = SVFUtil::dyn_cast<BinaryOPVFGNode>(node))
769 {
770 for (BinaryOPVFGNode::OPVers::const_iterator it = binaryNode->opVerBegin(), eit = binaryNode->opVerEnd(); it != eit; it++)
771 {
772 if (it->second->isConstDataOrAggDataButNotNullPtr() == false)
774 }
775 }
776 else if(UnaryOPVFGNode* unaryNode = SVFUtil::dyn_cast<UnaryOPVFGNode>(node))
777 {
778 for (UnaryOPVFGNode::OPVers::const_iterator it = unaryNode->opVerBegin(), eit = unaryNode->opVerEnd(); it != eit; it++)
779 {
780 if (it->second->isConstDataOrAggDataButNotNullPtr() == false)
782 }
783 }
784 else if(CmpVFGNode* cmpNode = SVFUtil::dyn_cast<CmpVFGNode>(node))
785 {
786 for (CmpVFGNode::OPVers::const_iterator it = cmpNode->opVerBegin(), eit = cmpNode->opVerEnd(); it != eit; it++)
787 {
788 if (it->second->isConstDataOrAggDataButNotNullPtr() == false)
790 }
791 }
792 else if(BranchVFGNode* branchNode = SVFUtil::dyn_cast<BranchVFGNode>(node))
793 {
794 const SVFVar* cond = branchNode->getBranchStmt()->getCondition();
795 if (cond->isConstDataOrAggDataButNotNullPtr() == false)
797 }
798 else if(ActualParmVFGNode* actualParm = SVFUtil::dyn_cast<ActualParmVFGNode>(node))
799 {
800 if (actualParm->getParam()->isConstDataOrAggDataButNotNullPtr() == false)
802 }
803 else if(FormalParmVFGNode* formalParm = SVFUtil::dyn_cast<FormalParmVFGNode>(node))
804 {
805 for(CallPESet::const_iterator it = formalParm->callPEBegin(), eit = formalParm->callPEEnd();
806 it!=eit; ++it)
807 {
808 const CallICFGNode* cs = (*it)->getCallSite();
809 ActualParmVFGNode* acutalParm = getActualParmVFGNode((*it)->getRHSVar(),cs);
811 }
812 }
813 else if(FormalRetVFGNode* calleeRet = SVFUtil::dyn_cast<FormalRetVFGNode>(node))
814 {
817
819 for(RetPESet::const_iterator it = calleeRet->retPEBegin(), eit = calleeRet->retPEEnd(); it!=eit; ++it)
820 {
821 ActualRetVFGNode* callsiteRev = getActualRetVFGNode((*it)->getLHSVar());
822 const CallICFGNode* callBlockNode = (*it)->getCallSite();
824 }
825 }
828 }
829
832 {
835 for (SVFStmt::SVFStmtSetTy::iterator iter = forks.begin(), eiter =
836 forks.end(); iter != eiter; ++iter)
837 {
838 TDForkPE* forkedge = SVFUtil::cast<TDForkPE>(*iter);
839 ActualParmVFGNode* acutalParm = getActualParmVFGNode(forkedge->getRHSVar(),forkedge->getCallSite());
842 }
845 for (SVFStmt::SVFStmtSetTy::iterator iter = joins.begin(), eiter =
846 joins.end(); iter != eiter; ++iter)
847 {
848 TDJoinPE* joinedge = SVFUtil::cast<TDJoinPE>(*iter);
849 NodeID callsiteRev = getDef(joinedge->getLHSVar());
851 addRetEdge(calleeRet->getId(),callsiteRev, getCallSiteID(joinedge->getCallSite(), calleeRet->getFun()));
852 }
853 }
854}
855
860{
861 VFGEdge edge(src,dst,kind);
864 if (outEdge && inEdge)
865 {
866 assert(outEdge == inEdge && "edges not match");
867 return outEdge;
868 }
869 else
870 return nullptr;
871}
872
873
878{
879 VFGEdge edge(src,dst,kind);
882 if (outEdge && inEdge)
883 {
884 assert(outEdge == inEdge && "edges not match");
885 return outEdge;
886 }
887 else
888 return nullptr;
889}
890
895{
899 if (outEdge && inEdge)
900 {
901 assert(outEdge == inEdge && "edges not match");
902 return outEdge;
903 }
904 else
905 return nullptr;
906}
907
908
913{
914 return hasIntraVFGEdge(const_cast<VFGNode*>(src),const_cast<VFGNode*>(dst),kind);
915}
916
917
921void VFG::dump(const std::string& file, bool simple)
922{
924}
925
930{
931 SVF::ViewGraph(this, "Value Flow Graph");
932}
933
934
936{
937 VFGEdgeSetTy vfEdgesAtIndCallSite;
938 PointerAnalysis::CallEdgeMap::const_iterator iter = pta->getIndCallMap().begin();
939 PointerAnalysis::CallEdgeMap::const_iterator eiter = pta->getIndCallMap().end();
940 for (; iter != eiter; iter++)
941 {
942 const CallICFGNode* newcs = iter->first;
943 assert(newcs->isIndirectCall() && "this is not an indirect call?");
945 for (PointerAnalysis::FunctionSet::const_iterator func_iter = functions.begin(); func_iter != functions.end(); func_iter++)
946 {
947 const FunObjVar* func = *func_iter;
948 connectCallerAndCallee(newcs, func, vfEdgesAtIndCallSite);
949 }
950 }
951}
952
958{
959 SVFIR * pag = SVFIR::getPAG();
960 CallSiteID csId = getCallSiteID(callBlockNode, callee);
961 const RetICFGNode* retBlockNode = callBlockNode->getRetICFGNode();
962 // connect actual and formal param
963 if (pag->hasCallSiteArgsMap(callBlockNode) && pag->hasFunArgsList(callee) &&
964 matchArgs(callBlockNode, callee))
965 {
966 const SVFIR::SVFVarList& csArgList = pag->getCallSiteArgsList(callBlockNode);
968 SVFIR::SVFVarList::const_iterator csArgIt = csArgList.begin(), csArgEit = csArgList.end();
969 SVFIR::SVFVarList::const_iterator funArgIt = funArgList.begin(), funArgEit = funArgList.end();
970 for (; funArgIt != funArgEit && csArgIt != csArgEit; funArgIt++, csArgIt++)
971 {
972 const PAGNode *cs_arg = *csArgIt;
973 const PAGNode *fun_arg = *funArgIt;
975 connectAParamAndFParam(cs_arg, fun_arg, callBlockNode, csId, edges);
976 }
977 assert(funArgIt == funArgEit && "function has more arguments than call site");
978
979 if (callee->isVarArg())
980 {
984 {
985 for (; csArgIt != csArgEit; csArgIt++)
986 {
987 const PAGNode *cs_arg = *csArgIt;
989 connectAParamAndFParam(cs_arg, varFunArgNode, callBlockNode, csId, edges);
990 }
991 }
992 }
993 }
994
995 // connect actual return and formal return
997 {
1002 }
1003}
1004
1008const PAGNode* VFG::getLHSTopLevPtr(const VFGNode* node) const
1009{
1010
1011 if(const AddrVFGNode* addr = SVFUtil::dyn_cast<AddrVFGNode>(node))
1012 return addr->getPAGDstNode();
1013 else if(const CopyVFGNode* copy = SVFUtil::dyn_cast<CopyVFGNode>(node))
1014 return copy->getPAGDstNode();
1015 else if(const GepVFGNode* gep = SVFUtil::dyn_cast<GepVFGNode>(node))
1016 return gep->getPAGDstNode();
1017 else if(const LoadVFGNode* load = SVFUtil::dyn_cast<LoadVFGNode>(node))
1018 return load->getPAGDstNode();
1019 else if(const PHIVFGNode* phi = SVFUtil::dyn_cast<PHIVFGNode>(node))
1020 return phi->getRes();
1021 else if(const CmpVFGNode* cmp = SVFUtil::dyn_cast<CmpVFGNode>(node))
1022 return cmp->getRes();
1023 else if(const BinaryOPVFGNode* bop = SVFUtil::dyn_cast<BinaryOPVFGNode>(node))
1024 return bop->getRes();
1025 else if(const UnaryOPVFGNode* uop = SVFUtil::dyn_cast<UnaryOPVFGNode>(node))
1026 return uop->getRes();
1027 else if(const ActualParmVFGNode* ap = SVFUtil::dyn_cast<ActualParmVFGNode>(node))
1028 return ap->getParam();
1029 else if(const FormalParmVFGNode*fp = SVFUtil::dyn_cast<FormalParmVFGNode>(node))
1030 return fp->getParam();
1031 else if(const ActualRetVFGNode* ar = SVFUtil::dyn_cast<ActualRetVFGNode>(node))
1032 return ar->getRev();
1033 else if(const FormalRetVFGNode* fr = SVFUtil::dyn_cast<FormalRetVFGNode>(node))
1034 return fr->getRet();
1035 else if(const NullPtrVFGNode* nullVFG = SVFUtil::dyn_cast<NullPtrVFGNode>(node))
1036 return nullVFG->getPAGNode();
1037 else
1038 assert(false && "unexpected node kind!");
1039 return nullptr;
1040}
1041
1046{
1047 if(const FormalParmVFGNode* fp = SVFUtil::dyn_cast<FormalParmVFGNode>(node))
1048 {
1049 return fp->getFun();
1050 }
1051 else if(const InterPHIVFGNode* phi = SVFUtil::dyn_cast<InterPHIVFGNode>(node))
1052 {
1053 if(phi->isFormalParmPHI())
1054 return phi->getFun();
1055 }
1056 return nullptr;
1057}
1058
1059
1061{
1062 return getPAGEdge()->getValue();
1063}
1064
1066{
1067 return getRes();
1068}
1069
1071{
1072 return getRes();
1073}
1074
1076{
1077 return getRes();
1078}
1079
1081{
1082 return param;
1083}
1084
1088namespace SVF
1089{
1090template<>
1092{
1093
1095 DOTGraphTraits(bool isSimple = false) :
1096 DOTGraphTraits<SVFIR*>(isSimple)
1097 {
1098 }
1099
1101 static std::string getGraphName(VFG*)
1102 {
1103 return "VFG";
1104 }
1105
1106 std::string getNodeLabel(NodeType *node, VFG *graph)
1107 {
1108 if (isSimple())
1109 return getSimpleNodeLabel(node, graph);
1110 else
1111 return getCompleteNodeLabel(node, graph);
1112 }
1113
1115 static std::string getSimpleNodeLabel(NodeType *node, VFG*)
1116 {
1117 std::string str;
1118 std::stringstream rawstr(str);
1119 if(StmtVFGNode* stmtNode = SVFUtil::dyn_cast<StmtVFGNode>(node))
1120 {
1121 rawstr << stmtNode->toString();
1122 }
1123 else if(PHIVFGNode* tphi = SVFUtil::dyn_cast<PHIVFGNode>(node))
1124 {
1125 rawstr << tphi->toString();
1126 }
1127 else if(FormalParmVFGNode* fp = SVFUtil::dyn_cast<FormalParmVFGNode>(node))
1128 {
1129 rawstr << fp->toString();
1130 }
1131 else if(ActualParmVFGNode* ap = SVFUtil::dyn_cast<ActualParmVFGNode>(node))
1132 {
1133 rawstr << ap->toString();
1134 }
1135 else if (ActualRetVFGNode* ar = SVFUtil::dyn_cast<ActualRetVFGNode>(node))
1136 {
1137 rawstr << ar->toString();
1138 }
1139 else if (FormalRetVFGNode* fr = SVFUtil::dyn_cast<FormalRetVFGNode>(node))
1140 {
1141 rawstr << fr->toString();
1142 }
1143 else if(SVFUtil::isa<NullPtrVFGNode>(node))
1144 {
1145 rawstr << "NullPtr";
1146 }
1147 else if(BinaryOPVFGNode* bop = SVFUtil::dyn_cast<BinaryOPVFGNode>(node))
1148 {
1149 rawstr << bop->toString();
1150 }
1151 else if(UnaryOPVFGNode* uop = SVFUtil::dyn_cast<UnaryOPVFGNode>(node))
1152 {
1153 rawstr << uop->toString();
1154 }
1155 else if(CmpVFGNode* cmp = SVFUtil::dyn_cast<CmpVFGNode>(node))
1156 {
1157 rawstr << cmp->toString();;
1158 }
1159 else if (BranchVFGNode* branchNode = SVFUtil::dyn_cast<BranchVFGNode>(node))
1160 {
1161 rawstr << branchNode->toString();
1162 }
1163 else
1164 assert(false && "what else kinds of nodes do we have??");
1165
1166 return rawstr.str();
1167 }
1168
1170 static std::string getCompleteNodeLabel(NodeType *node, VFG*)
1171 {
1172
1173 std::string str;
1174 std::stringstream rawstr(str);
1175 if(StmtVFGNode* stmtNode = SVFUtil::dyn_cast<StmtVFGNode>(node))
1176 {
1177 rawstr << stmtNode->toString();
1178 }
1179 else if(BinaryOPVFGNode* bop = SVFUtil::dyn_cast<BinaryOPVFGNode>(node))
1180 {
1181 rawstr << bop->toString();
1182 }
1183 else if(UnaryOPVFGNode* uop = SVFUtil::dyn_cast<UnaryOPVFGNode>(node))
1184 {
1185 rawstr << uop->toString();
1186 }
1187 else if(CmpVFGNode* cmp = SVFUtil::dyn_cast<CmpVFGNode>(node))
1188 {
1189 rawstr << cmp->toString();
1190 }
1191 else if(PHIVFGNode* phi = SVFUtil::dyn_cast<PHIVFGNode>(node))
1192 {
1193 rawstr << phi->toString();
1194 }
1195 else if(FormalParmVFGNode* fp = SVFUtil::dyn_cast<FormalParmVFGNode>(node))
1196 {
1197 rawstr << fp->toString();
1198 }
1199 else if(ActualParmVFGNode* ap = SVFUtil::dyn_cast<ActualParmVFGNode>(node))
1200 {
1201 rawstr << ap->toString();
1202 }
1203 else if(NullPtrVFGNode* nptr = SVFUtil::dyn_cast<NullPtrVFGNode>(node))
1204 {
1205 rawstr << nptr->toString();
1206 }
1207 else if (ActualRetVFGNode* ar = SVFUtil::dyn_cast<ActualRetVFGNode>(node))
1208 {
1209 rawstr << ar->toString();
1210 }
1211 else if (FormalRetVFGNode* fr = SVFUtil::dyn_cast<FormalRetVFGNode>(node))
1212 {
1213 rawstr << fr->toString();
1214 }
1215 else if (MRSVFGNode* mr = SVFUtil::dyn_cast<MRSVFGNode>(node))
1216 {
1217 rawstr << mr->toString();
1218 }
1219 else if (BranchVFGNode* branchNode = SVFUtil::dyn_cast<BranchVFGNode>(node))
1220 {
1221 rawstr << branchNode->toString();
1222 }
1223 else
1224 assert(false && "what else kinds of nodes do we have??");
1225
1226 return rawstr.str();
1227 }
1228
1229 static std::string getNodeAttributes(NodeType *node, VFG*)
1230 {
1231 std::string str;
1232 std::stringstream rawstr(str);
1233
1234 if(StmtVFGNode* stmtNode = SVFUtil::dyn_cast<StmtVFGNode>(node))
1235 {
1236 const PAGEdge* edge = stmtNode->getPAGEdge();
1237 if (SVFUtil::isa<AddrStmt>(edge))
1238 {
1239 rawstr << "color=green";
1240 }
1241 else if (SVFUtil::isa<CopyStmt>(edge))
1242 {
1243 rawstr << "color=black";
1244 }
1245 else if (SVFUtil::isa<RetPE>(edge))
1246 {
1247 rawstr << "color=black,style=dotted";
1248 }
1249 else if (SVFUtil::isa<GepStmt>(edge))
1250 {
1251 rawstr << "color=purple";
1252 }
1253 else if (SVFUtil::isa<StoreStmt>(edge))
1254 {
1255 rawstr << "color=blue";
1256 }
1257 else if (SVFUtil::isa<LoadStmt>(edge))
1258 {
1259 rawstr << "color=red";
1260 }
1261 else
1262 {
1263 assert(0 && "No such kind edge!!");
1264 }
1265 rawstr << "";
1266 }
1267 else if (SVFUtil::isa<CmpVFGNode>(node))
1268 {
1269 rawstr << "color=grey";
1270 }
1271 else if (SVFUtil::isa<BinaryOPVFGNode>(node))
1272 {
1273 rawstr << "color=grey";
1274 }
1275 else if (SVFUtil::isa<UnaryOPVFGNode>(node))
1276 {
1277 rawstr << "color=grey";
1278 }
1279 else if(SVFUtil::isa<PHIVFGNode>(node))
1280 {
1281 rawstr << "color=black";
1282 }
1283 else if(SVFUtil::isa<NullPtrVFGNode>(node))
1284 {
1285 rawstr << "color=grey";
1286 }
1287 else if(SVFUtil::isa<FormalParmVFGNode>(node))
1288 {
1289 rawstr << "color=yellow,penwidth=2";
1290 }
1291 else if(SVFUtil::isa<ActualParmVFGNode>(node))
1292 {
1293 rawstr << "color=yellow,penwidth=2";
1294 }
1295 else if (SVFUtil::isa<ActualRetVFGNode>(node))
1296 {
1297 rawstr << "color=yellow,penwidth=2";
1298 }
1299 else if (SVFUtil::isa<FormalRetVFGNode>(node))
1300 {
1301 rawstr << "color=yellow,penwidth=2";
1302 }
1303 else if (SVFUtil::isa<MRSVFGNode>(node))
1304 {
1305 rawstr << "color=orange,penwidth=2";
1306 }
1307 else if (SVFUtil::isa<BranchVFGNode>(node))
1308 {
1309 rawstr << "color=gold,penwidth=2";
1310 }
1311 else
1312 assert(false && "no such kind of node!!");
1313
1314 rawstr << "";
1315
1316 return rawstr.str();
1317 }
1318
1319 template<class EdgeIter>
1320 static std::string getEdgeAttributes(NodeType*, EdgeIter EI, VFG*)
1321 {
1322 VFGEdge* edge = *(EI.getCurrent());
1323 assert(edge && "No edge found!!");
1324 if (SVFUtil::isa<DirectSVFGEdge>(edge))
1325 {
1326 if (SVFUtil::isa<CallDirSVFGEdge>(edge))
1327 return "style=solid,color=red";
1328 else if (SVFUtil::isa<RetDirSVFGEdge>(edge))
1329 return "style=solid,color=blue";
1330 else
1331 return "style=solid";
1332 }
1333 else if (SVFUtil::isa<IndirectSVFGEdge>(edge))
1334 {
1335 if (SVFUtil::isa<CallIndSVFGEdge>(edge))
1336 return "style=dashed,color=red";
1337 else if (SVFUtil::isa<RetIndSVFGEdge>(edge))
1338 return "style=dashed,color=blue";
1339 else
1340 return "style=dashed";
1341 }
1342 else
1343 {
1344 assert(false && "what else edge we have?");
1345 }
1346 return "";
1347 }
1348
1349 template<class EdgeIter>
1351 {
1352 VFGEdge* edge = *(EI.getCurrent());
1353 assert(edge && "No edge found!!");
1354
1355 std::string str;
1356 std::stringstream rawstr(str);
1357 if (CallDirSVFGEdge* dirCall = SVFUtil::dyn_cast<CallDirSVFGEdge>(edge))
1358 rawstr << dirCall->getCallSiteId();
1359 else if (RetDirSVFGEdge* dirRet = SVFUtil::dyn_cast<RetDirSVFGEdge>(edge))
1360 rawstr << dirRet->getCallSiteId();
1361
1362 return rawstr.str();
1363 }
1364};
1365} // End namespace llvm
#define DBOUT(TYPE, X)
LLVM debug macros, define type of your DBUG model of each pass.
Definition SVFType.h:498
#define DGENERAL
Definition SVFType.h:504
copy
Definition cJSON.cpp:414
cJSON * n
Definition cJSON.cpp:2558
const std::string toString() const override
Definition VFG.cpp:272
const PAGNode * getParam() const
Return parameter.
Definition VFGNode.h:909
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:265
const CallICFGNode * getCallSite() const
Return callsite.
Definition VFGNode.h:903
const CallICFGNode * getCallSite() const
Return callsite.
Definition VFGNode.h:1036
const std::string toString() const override
Definition VFG.cpp:306
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:299
const PAGNode * getRev() const
Receive parameter at callsite.
Definition VFGNode.h:1046
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:239
const std::string toString() const override
Definition VFG.cpp:246
const std::string toString() const override
Definition VFG.cpp:256
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1080
const PAGNode * param
Definition VFGNode.h:850
SVFVar * getLHSVar() const
const PAGNode * res
Definition VFGNode.h:419
const PAGNode * getRes() const
Definition VFGNode.h:461
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:131
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1070
const std::string toString() const override
Definition VFG.cpp:138
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:469
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:473
virtual const std::string toString() const override
virtual const std::string toString() const override
Definition VFG.cpp:178
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:173
const BranchStmt * brstmt
Definition VFGNode.h:572
CallSiteID getCallSiteId() const
Return callsite ID.
Definition VFGEdge.h:223
virtual const std::string toString() const
Definition VFG.cpp:387
const RetICFGNode * getRetICFGNode() const
Return callsite.
Definition ICFGNode.h:451
const std::string getSourceLoc() const override
Definition ICFGNode.h:582
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:392
const PAGNode * res
Definition VFGNode.h:342
const std::string toString() const override
Definition VFG.cpp:117
const PAGNode * getRes() const
Definition VFGNode.h:384
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:110
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:396
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1065
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:94
const std::string toString() const override
Definition VFG.cpp:101
virtual const std::string toString() const
Definition VFG.cpp:371
const FunObjVar * getFun() const override
Return function.
Definition VFGNode.h:967
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:282
const std::string toString() const override
Definition VFG.cpp:289
const PAGNode * getParam() const
Return parameter.
Definition VFGNode.h:961
FormalRetVFGNode()
place holder
const FunObjVar * getFun() const override
Function.
Definition VFGNode.h:1102
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:317
const std::string toString() const override
Definition VFG.cpp:324
const PAGNode * getRet() const
Return value at callee.
Definition VFGNode.h:1097
NodeID getDstID() const
NodeID getSrcID() const
get methods of the components
iterator begin()
Iterators.
NodeType * getGNode(NodeID id) const
Get a node.
bool hasIncomingEdge() const
Has incoming/outgoing edge set.
bool hasOutgoingEdge() const
const GEdgeSetTy & getOutEdges() const
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:187
const std::string toString() const override
Definition VFG.cpp:194
static void WriteGraphToFile(SVF::OutStream &O, const std::string &GraphName, const GraphType &GT, bool simple=false)
virtual const FunObjVar * getFun() const
Return the function of this ICFGNode.
Definition ICFGNode.h:76
NodeID getNullPtr() const
Definition IRGraph.h:259
NodeID getVarargNode(const FunObjVar *func) const
getVarargNode - Return the unique node representing the variadic argument of a variadic function.
Definition IRGraph.cpp:67
bool isFormalParmPHI() const
Definition VFGNode.h:1161
const std::string toString() const override
Definition VFG.cpp:335
virtual const std::string toString() const
Definition VFG.cpp:379
const std::string toString() const override
Definition VFG.cpp:225
const std::string toString() const override
Definition VFG.cpp:63
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:56
const std::string toString() const override
Definition VFG.cpp:353
const PAGNode * node
Definition VFGNode.h:1222
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:346
const PAGNode * getPAGNode() const
Return corresponding PAGNode.
Definition VFGNode.h:1235
static const Option< bool > EnableThreadCallGraph
Definition Options.h:132
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:709
const PAGNode * getRes() const
Definition VFGNode.h:701
const PAGNode * res
Definition VFGNode.h:676
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:203
const std::string toString() const override
Definition VFG.cpp:210
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:713
PHIVFGNode(NodeID id, const PAGNode *r, VFGNodeK k=TPhi)
Constructor.
Definition VFG.cpp:412
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1075
Set< const FunObjVar * > FunctionSet
CallEdgeMap & getIndCallMap()
Get callees from an indirect callsite.
virtual const std::string toString() const
Definition VFG.cpp:396
CallSiteID getCallSiteId() const
Return callsite ID.
Definition VFGEdge.h:266
CSToArgsListMap & getCallSiteArgsMap()
Get callsite argument list.
Definition SVFIR.h:315
bool funHasRet(const FunObjVar *func) const
Definition SVFIR.h:354
bool hasFunArgsList(const FunObjVar *func) const
Function has arguments list.
Definition SVFIR.h:293
std::vector< const SVFVar * > SVFVarList
Definition SVFIR.h:58
CSToRetMap & getCallSiteRets()
Get callsite return.
Definition SVFIR.h:327
FunToRetMap & getFunRets()
Get function return list.
Definition SVFIR.h:343
bool hasCallSiteArgsMap(const CallICFGNode *cs) const
Callsite has argument list.
Definition SVFIR.h:310
bool callsiteHasRet(const RetICFGNode *cs) const
Definition SVFIR.h:338
const SVFVarList & getCallSiteArgsList(const CallICFGNode *cs) const
Get callsite argument list.
Definition SVFIR.h:320
static SVFIR * getPAG(bool buildFromFile=false)
Singleton design here to make sure we only have one instance during any analysis.
Definition SVFIR.h:116
const SVFVar * getCallSiteRet(const RetICFGNode *cs) const
Get callsite return.
Definition SVFIR.h:332
const SVFVarList & getFunArgsList(const FunObjVar *func) const
Get function arguments list.
Definition SVFIR.h:303
const SVFVar * getFunRet(const FunObjVar *func) const
Get function return list.
Definition SVFIR.h:348
FunToArgsListMap & getFunArgsMap()
Get function arguments list.
Definition SVFIR.h:298
const SVFVar * getValue() const
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
virtual const std::string toString() const
NodeID getId() const
Get ID.
Definition SVFValue.h:158
virtual const std::string & getName() const
Definition SVFValue.h:184
const std::string valueOnlyToString() const
Definition LLVMUtil.cpp:735
virtual bool isConstDataOrAggDataButNotNullPtr() const
Check if this variable represents constant data/metadata but not null pointer.
bool hasIncomingEdges(SVFStmt::PEDGEK kind) const
SVFStmt::SVFStmtSetTy::iterator getIncomingEdgesBegin(SVFStmt::PEDGEK kind) const
Edge iterators.
virtual const std::string toString() const
Get string representation.
SVFStmt::SVFStmtSetTy::iterator getIncomingEdgesEnd(SVFStmt::PEDGEK kind) const
void set(unsigned Idx)
NodeID getPAGDstNodeID() const
Definition VFGNode.h:157
const PAGEdge * getPAGEdge() const
Definition VFGNode.h:147
const SVFVar * getValue() const override
Return the corresponding LLVM value, if possible, nullptr otherwise.
Definition VFG.cpp:1060
const std::string toString() const override
Definition VFG.cpp:47
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:72
const std::string toString() const override
Definition VFG.cpp:85
const PAGNode * res
Definition VFGNode.h:493
const NodeBS getDefSVFVars() const override
Return the left hand side SVF Vars.
Definition VFG.cpp:152
OPVers::const_iterator opVerBegin() const
Definition VFGNode.h:548
virtual const std::string toString() const override
Definition VFG.cpp:159
const PAGNode * getRes() const
Definition VFGNode.h:535
OPVers::const_iterator opVerEnd() const
Definition VFGNode.h:552
@ IntraDirectVF
Definition VFGEdge.h:53
static GEdgeFlag makeEdgeFlagWithInvokeID(GEdgeKind k, CallSiteID cs)
Compute the unique edgeFlag value from edge kind and CallSiteID.
Definition VFGEdge.h:120
virtual const std::string toString() const
Definition VFG.cpp:363
virtual const std::string toString() const
Definition VFG.cpp:39
Definition VFG.h:51
VFGEdge::VFGEdgeSetTy VFGEdgeSetTy
Definition VFG.h:77
void updateCallGraph(PointerAnalysis *pta)
Update VFG based on pointer analysis results.
Definition VFG.cpp:935
VFGEdge * addInterEdgeFromAPToFP(ActualParmVFGNode *src, FormalParmVFGNode *dst, CallSiteID csId)
Add inter VF edge from actual to formal parameters.
Definition VFG.h:362
void addStoreVFGNode(const StoreStmt *store)
Definition VFG.h:521
VFGEdge * addInterEdgeFromFRToAR(FormalRetVFGNode *src, ActualRetVFGNode *dst, CallSiteID csId)
Add inter VF edge from callee return to callsite receive parameter.
Definition VFG.h:367
void addBranchVFGNode(const BranchStmt *edge)
Add a BranchVFGNode.
Definition VFG.h:630
virtual SVFStmt::SVFStmtSetTy & getPAGEdgeSet(SVFStmt::PEDGEK kind)
Get PAGEdge set.
Definition VFG.h:436
const PAGNode * getLHSTopLevPtr(const VFGNode *node) const
Definition VFG.cpp:1008
FormalParmVFGNode * getFormalParmVFGNode(const PAGNode *fparm) const
Definition VFG.h:247
VFGNodeIDToNodeMapTy::iterator iterator
Definition VFG.h:80
SVFIR * pag
Definition VFG.h:104
ActualRetVFGNode * getActualRetVFGNode(const PAGNode *aret) const
Definition VFG.h:241
VFGEdge * addRetEdge(NodeID srcId, NodeID dstId, CallSiteID csId)
Definition VFG.cpp:705
virtual void connectAParamAndFParam(const PAGNode *csArg, const PAGNode *funArg, const CallICFGNode *cbn, CallSiteID csId, VFGEdgeSetTy &edges)
Connect VFG nodes between caller and callee for indirect call site.
Definition VFG.h:386
FormalRetVFGNode * getFormalRetVFGNode(const PAGNode *fret) const
Definition VFG.h:253
void addVFGNodes()
Create VFG nodes.
Definition VFG.cpp:447
void addLoadVFGNode(const LoadStmt *load)
Add a Load VFG node.
Definition VFG.h:513
CallSiteID getCallSiteID(const CallICFGNode *cs, const FunObjVar *func) const
Get callsite given a callsiteID.
Definition VFG.h:178
VFGK kind
Definition VFG.h:105
VFGEdge * addIntraDirectVFEdge(NodeID srcId, NodeID dstId)
Definition VFG.cpp:659
void checkIntraEdgeParents(const VFGNode *srcNode, const VFGNode *dstNode)
sanitize Intra edges, verify that both nodes belong to the same function.
Definition VFG.h:351
void addCopyVFGNode(const CopyStmt *copy)
Add a Copy VFG node.
Definition VFG.h:499
void addGepVFGNode(const GepStmt *gep)
Add a Gep VFG node.
Definition VFG.h:506
void addNullPtrVFGNode(const PAGNode *pagNode)
Definition VFG.h:485
void addActualRetVFGNode(const PAGNode *ret, const CallICFGNode *cs)
Add a callsite Receive VFG node.
Definition VFG.h:571
void addUnaryOPVFGNode(const UnaryOPStmt *edge)
Add a UnaryOperator VFG node.
Definition VFG.h:621
void addFormalParmVFGNode(const PAGNode *fparm, const FunObjVar *fun, CallPESet &callPEs)
Add a formal parameter VFG node.
Definition VFG.h:538
void addActualParmVFGNode(const PAGNode *aparm, const CallICFGNode *cs)
Definition VFG.h:530
void addCmpVFGNode(const CmpStmt *edge)
Add a Compare VFG node.
Definition VFG.h:593
NodeID getDef(const PAGNode *pagNode) const
Definition VFG.h:420
bool addVFGEdge(VFGEdge *edge)
Add VFG edge.
Definition VFG.h:339
virtual bool isInterestedPAGNode(const SVFVar *node) const
Definition VFG.h:444
bool hasBlackHoleConstObjAddrAsDef(const PAGNode *pagNode) const
Whether a PAGNode has a blackhole or const object as its definition.
Definition VFG.h:265
ActualParmVFGNode * getActualParmVFGNode(const PAGNode *aparm, const CallICFGNode *cs) const
Definition VFG.h:235
bool isPhiCopyEdge(const PAGEdge *copy) const
Definition VFG.h:458
VFGNode * getVFGNode(NodeID id) const
Get a VFG node.
Definition VFG.h:145
const FunObjVar * isFunEntryVFGNode(const VFGNode *node) const
Whether a node is function entry VFGNode.
Definition VFG.cpp:1045
VFG(CallGraph *callgraph, VFGK k=FULLSVFG)
Constructor.
Definition VFG.cpp:425
VFGEdge * addCallEdge(NodeID srcId, NodeID dstId, CallSiteID csId)
Definition VFG.cpp:685
virtual void connectFRetAndARet(const PAGNode *funReturn, const PAGNode *csReturn, CallSiteID csId, VFGEdgeSetTy &edges)
Connect formal-ret and actual ret.
Definition VFG.h:395
bool hasDef(const PAGNode *pagNode) const
Definition VFG.h:426
FormalRetVFGNode::RetPESet RetPESet
Definition VFG.h:76
VFGK
VFG kind.
Definition VFG.h:56
VFGEdge * hasIntraVFGEdge(VFGNode *src, VFGNode *dst, VFGEdge::VFGEdgeK kind)
Whether we has a SVFG edge.
Definition VFG.cpp:859
void addBinaryOPVFGNode(const BinaryOPStmt *edge)
Add a BinaryOperator VFG node.
Definition VFG.h:607
void addAddrVFGNode(const AddrStmt *addr)
Add an Address VFG node.
Definition VFG.h:492
VFGEdge * hasInterVFGEdge(VFGNode *src, VFGNode *dst, VFGEdge::VFGEdgeK kind, CallSiteID csId)
Definition VFG.cpp:894
FormalParmVFGNode::CallPESet CallPESet
Definition VFG.h:75
void connectDirectVFGEdges()
Create edges between VFG nodes within a function.
Definition VFG.cpp:726
VFGEdge * getIntraVFGEdge(const VFGNode *src, const VFGNode *dst, VFGEdge::VFGEdgeK kind)
Get a SVFG edge according to src and dst.
Definition VFG.cpp:912
void view()
Dump graph into dot file.
Definition VFG.cpp:929
VFGEdge * hasThreadVFGEdge(VFGNode *src, VFGNode *dst, VFGEdge::VFGEdgeK kind)
Definition VFG.cpp:877
void dump(const std::string &file, bool simple=false)
Dump graph into dot file.
Definition VFG.cpp:921
virtual void connectCallerAndCallee(const CallICFGNode *cs, const FunObjVar *callee, VFGEdgeSetTy &edges)
Connect VFG nodes between caller and callee for indirect call site.
Definition VFG.cpp:957
void addFormalRetVFGNode(const PAGNode *uniqueFunRet, const FunObjVar *fun, RetPESet &retPEs)
Definition VFG.h:552
void destroy()
Clean up memory.
Definition VFG.cpp:438
void addIntraPHIVFGNode(const MultiOpndStmt *edge)
Add an llvm PHI VFG node.
Definition VFG.h:579
std::string pasMsg(const std::string &msg)
Print each pass/phase message by converting a string into blue string output.
Definition SVFUtil.cpp:101
bool matchArgs(const CallICFGNode *cs, const FunObjVar *callee)
Definition SVFUtil.cpp:308
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
unsigned CallSiteID
Definition GeneralType.h:58
u32_t NodeID
Definition GeneralType.h:56
void ViewGraph(const GraphType &G, const std::string &name, bool ShortNames=false, GraphProgram::Name Program=GraphProgram::DOT)
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
SparseBitVector NodeBS
Definition GeneralType.h:62
static std::string getCompleteNodeLabel(NodeType *node, VFG *)
Return label of a VFG node with MemSSA information.
Definition VFG.cpp:1170
static std::string getNodeAttributes(NodeType *node, VFG *)
Definition VFG.cpp:1229
static std::string getEdgeSourceLabel(NodeType *, EdgeIter EI)
Definition VFG.cpp:1350
DOTGraphTraits(bool isSimple=false)
Definition VFG.cpp:1095
static std::string getEdgeAttributes(NodeType *, EdgeIter EI, VFG *)
Definition VFG.cpp:1320
std::string getNodeLabel(NodeType *node, VFG *graph)
Definition VFG.cpp:1106
static std::string getSimpleNodeLabel(NodeType *node, VFG *)
Return label of a VFG node without MemSSA information.
Definition VFG.cpp:1115
static std::string getGraphName(VFG *)
Return name of the graph.
Definition VFG.cpp:1101