Static Value-Flow Analysis
Loading...
Searching...
No Matches
WPAPass.cpp
Go to the documentation of this file.
1//===- WPAPass.cpp -- Whole program analysis pass------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===-----------------------------------------------------------------------===//
22
23/*
24 * @file: WPA.cpp
25 * @author: yesen
26 * @date: 10/06/2014
27 * @version: 1.0
28 *
29 * @section LICENSE
30 *
31 * @section DESCRIPTION
32 *
33 */
34
35
36#include "Util/Options.h"
38#include "WPA/WPAPass.h"
39#include "WPA/Andersen.h"
40#include "WPA/AndersenPWC.h"
41#include "WPA/FlowSensitive.h"
43#include "WPA/TypeAnalysis.h"
44#include "WPA/Steensgaard.h"
45
46using namespace SVF;
47
48char WPAPass::ID = 0;
49
54{
55 PTAVector::const_iterator it = ptaVector.begin();
56 PTAVector::const_iterator eit = ptaVector.end();
57 for (; it != eit; ++it)
58 {
59 PointerAnalysis* pta = *it;
60 delete pta;
61 }
62 ptaVector.clear();
63}
64
69{
70 for (u32_t i = 0; i<= PointerAnalysis::Default_PTA; i++)
71 {
75 }
76 assert(!ptaVector.empty() && "No pointer analysis is specified.\n");
77}
78
83{
85 switch (kind)
86 {
88 _pta = new Andersen(pag);
89 break;
91 _pta = new AndersenSCD(pag);
92 break;
94 _pta = new AndersenSFR(pag);
95 break;
97 _pta = new AndersenWaveDiff(pag);
98 break;
100 _pta = new Steensgaard(pag);
101 break;
103 _pta = new FlowSensitive(pag);
104 break;
106 _pta = new VersionedFlowSensitive(pag);
107 break;
109 _pta = new TypeAnalysis(pag);
110 break;
111 default:
112 assert(false && "This pointer analysis has not been implemented yet.\n");
113 return;
114 }
115
116 ptaVector.push_back(_pta);
117 _pta->analyze();
118 if (Options::AnderSVFG())
119 {
120 SVFGBuilder memSSA(true);
121 assert(SVFUtil::isa<AndersenBase>(_pta) && "supports only andersen/steensgaard for pre-computed SVFG");
122 SVFG *svfg = memSSA.buildFullSVFG((BVDataPTAImpl*)_pta);
125 _svfg = svfg;
126 }
127
130}
131
133{
134 SVFIR* pag = pta->getPAG();
135 for (SVFIR::iterator lit = pag->begin(), elit = pag->end(); lit != elit; ++lit)
136 {
137 PAGNode* node1 = lit->second;
139 for (SVFIR::iterator rit = lit, erit = pag->end(); rit != erit; ++rit)
140 {
141 node2 = rit->second;
142 if(node1==node2)
143 continue;
144 const FunObjVar* fun1 = node1->getFunction();
145 const FunObjVar* fun2 = node2->getFunction();
146 AliasResult result = pta->alias(node1->getId(), node2->getId());
147 SVFUtil::outs() << (result == AliasResult::NoAlias ? "NoAlias" : "MayAlias")
148 << " var" << node1->getId() << "[" << node1->getName()
149 << "@" << (fun1==nullptr?"":fun1->getName()) << "] --"
150 << " var" << node2->getId() << "[" << node2->getName()
151 << "@" << (fun2==nullptr?"":fun2->getName()) << "]\n";
152 }
153 }
154}
155
156
158{
159 assert(_pta && "initialize a pointer analysis first");
160 return _pta->getPts(var);
161}
162
167{
168 assert(Options::PASelected(PointerAnalysis::AndersenWaveDiff_WPA) && Options::AnderSVFG() && "mod-ref query is only support with -ander and -svfg turned on");
169 return _svfg->getMSSA()->getMRGenerator()->getModRefInfo(callInst);
170}
171
172
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
iterator begin()
Iterators.
IDToNodeMapTy::iterator iterator
Node Iterators.
ModRefInfo getModRefInfo(const CallICFGNode *cs)
MRGenerator * getMRGenerator()
Return MRGenerator.
Definition MemSSA.h:313
static OptionMultiple< PointerAnalysis::PTATY > PASelected
Definition Options.h:224
static const Option< bool > PrintAliases
Definition Options.h:223
static const Option< bool > AnderSVFG
Definition Options.h:221
virtual const PointsTo & getPts(NodeID ptr)=0
Get points-to targets of a pointer. It needs to be implemented in child class.
PTATY
Pointer analysis type list.
@ VFS_WPA
Versioned sparse flow-sensitive WPA.
@ AndersenSCD_WPA
Selective cycle detection andersen-style WPA.
@ Andersen_WPA
Andersen PTA.
@ AndersenWaveDiff_WPA
Diff wave propagation andersen-style WPA.
@ TypeCPP_WPA
Type-based analysis for C++.
@ AndersenSFR_WPA
Stride-based field representation.
@ Steensgaard_WPA
Steensgaard PTA.
@ FSSPARSE_WPA
Sparse flow sensitive WPA.
@ Default_PTA
default pta without any analysis
SVFIR * getPAG() const
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)=0
Interface exposed to users of our pointer analysis, given Value infos.
virtual void analyze()=0
Start Analysis here (main part of pointer analysis). It needs to be implemented in child class.
SVFG * buildFullSVFG(BVDataPTAImpl *pta)
MemSSA * getMSSA() const
Get SVFG memory SSA.
Definition SVFG.h:138
PointerAnalysis * _pta
pointer analysis to be executed.
Definition WPAPass.h:109
static char ID
Pass ID.
Definition WPAPass.h:59
PTAVector ptaVector
all pointer analysis to be executed.
Definition WPAPass.h:108
virtual ~WPAPass()
Destructor.
Definition WPAPass.cpp:53
virtual ModRefInfo getModRefInfo(const CallICFGNode *callInst)
Interface of mod-ref analysis to determine whether a CallSite instruction can mod or ref any memory l...
Definition WPAPass.cpp:166
virtual const PointsTo & getPts(NodeID var)
Retrieve points-to set information.
Definition WPAPass.cpp:157
virtual void PrintAliasPairs(PointerAnalysis *pta)
Print all alias pairs.
Definition WPAPass.cpp:132
SVFG * _svfg
svfg generated through -ander pointer analysis
Definition WPAPass.h:110
void runPointerAnalysis(SVFIR *pag, u32_t kind)
Create pointer analysis according to specified kind and analyze the module.
Definition WPAPass.cpp:82
virtual void runOnModule(SVFIR *svfModule)
Run pointer analysis on SVFModule.
Definition WPAPass.cpp:68
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
ModRefInfo
Definition SVFType.h:533
u32_t NodeID
Definition GeneralType.h:56
AliasResult
Definition SVFType.h:541
@ NoAlias
Definition SVFType.h:542
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47