Static Value-Flow Analysis
Loading...
Searching...
No Matches
WPAPass.h
Go to the documentation of this file.
1//===- WPAPass.h -- Whole program analysis------------------------------------//
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/*
25 * @file: WPA.h
26 * @author: yesen
27 * @date: 10/06/2014
28 * @version: 1.0
29 *
30 * @section LICENSE
31 *
32 * @section DESCRIPTION
33 *
34 */
35
36
37#ifndef WPA_H_
38#define WPA_H_
39
41
42namespace SVF
43{
44
45class SVFG;
46
51// excised ", public llvm::AliasAnalysis" as that has a very light interface
52// and I want to see what breaks.
54{
55 typedef std::vector<PointerAnalysis*> PTAVector;
56
57public:
59 static char ID;
60
67
70 {
71
72 }
73
75 virtual ~WPAPass();
76
78 virtual const PointsTo& getPts(NodeID var);
79
81 virtual void PrintAliasPairs(PointerAnalysis* pta);
82
84 virtual ModRefInfo getModRefInfo(const CallICFGNode* callInst);
85
87 // virtual inline ModRefInfo getModRefInfo(const CallSite callInst, const MemoryLocation& Loc)
88 // {
89 // return getModRefInfo(callInst, Loc.Ptr);
90 // }
91
94
96 virtual void runOnModule(SVFIR* svfModule);
97
99 virtual inline std::string getPassName() const
100 {
101 return "WPAPass";
102 }
103
104private:
106 void runPointerAnalysis(SVFIR* pag, u32_t kind);
107
111};
112
113} // End namespace SVF
114
115#endif /* WPA_H_ */
PointerAnalysis * _pta
pointer analysis to be executed.
Definition WPAPass.h:109
static char ID
Pass ID.
Definition WPAPass.h:59
WPAPass()
Constructor needs TargetLibraryInfo to be passed to the AliasAnalysis.
Definition WPAPass.h:69
@ Conservative
return MayAlias if any pta says alias
Definition WPAPass.h:63
@ Precise
return alias result by the most precise pta
Definition WPAPass.h:65
@ Veto
return NoAlias if any pta says no alias
Definition WPAPass.h:64
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 std::string getPassName() const
PTA name.
Definition WPAPass.h:99
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
std::vector< PointerAnalysis * > PTAVector
Definition WPAPass.h:55
virtual void runOnModule(SVFIR *svfModule)
Run pointer analysis on SVFModule.
Definition WPAPass.cpp:68
for isBitcode
Definition BasicTypes.h:68
ModRefInfo
Definition SVFType.h:533
u32_t NodeID
Definition GeneralType.h:56
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
unsigned u32_t
Definition GeneralType.h:47