Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Attributes | Private Types | Private Member Functions | Private Attributes | List of all members
SVF::WPAPass Class Reference

#include <WPAPass.h>

Public Types

enum  AliasCheckRule { Conservative , Veto , Precise }
 

Public Member Functions

 WPAPass ()
 Constructor needs TargetLibraryInfo to be passed to the AliasAnalysis.
 
virtual ~WPAPass ()
 Destructor.
 
virtual const PointsTogetPts (NodeID var)
 Retrieve points-to set information.
 
virtual void PrintAliasPairs (PointerAnalysis *pta)
 Print all alias pairs.
 
virtual ModRefInfo getModRefInfo (const CallICFGNode *callInst)
 Interface of mod-ref analysis to determine whether a CallSite instruction can mod or ref any memory location.
 
virtual ModRefInfo getModRefInfo (const CallICFGNode *callInst1, const CallICFGNode *callInst2)
 Interface of mod-ref analysis to determine whether a CallSite instruction can mod or ref a specific memory location, given Location infos.
 
virtual void runOnModule (SVFIR *svfModule)
 Run pointer analysis on SVFModule.
 
virtual std::string getPassName () const
 PTA name.
 

Static Public Attributes

static char ID = 0
 Pass ID.
 

Private Types

typedef std::vector< PointerAnalysis * > PTAVector
 

Private Member Functions

void runPointerAnalysis (SVFIR *pag, u32_t kind)
 Create pointer analysis according to specified kind and analyze the module.
 

Private Attributes

PTAVector ptaVector
 all pointer analysis to be executed.
 
PointerAnalysis_pta
 pointer analysis to be executed.
 
SVFG_svfg
 svfg generated through -ander pointer analysis
 

Detailed Description

Whole program pointer analysis. This class performs various pointer analysis on the given module.

Definition at line 53 of file WPAPass.h.

Member Typedef Documentation

◆ PTAVector

Definition at line 55 of file WPAPass.h.

Member Enumeration Documentation

◆ AliasCheckRule

Enumerator
Conservative 

return MayAlias if any pta says alias

Veto 

return NoAlias if any pta says no alias

Precise 

return alias result by the most precise pta

Definition at line 61 of file WPAPass.h.

62 {
64 Veto,
65 Precise
66 };
@ 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

Constructor & Destructor Documentation

◆ WPAPass()

SVF::WPAPass::WPAPass ( )
inline

Constructor needs TargetLibraryInfo to be passed to the AliasAnalysis.

Definition at line 69 of file WPAPass.h.

70 {
71
72 }

◆ ~WPAPass()

WPAPass::~WPAPass ( )
virtual

Destructor.

Destructor

Definition at line 53 of file WPAPass.cpp.

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}
PTAVector ptaVector
all pointer analysis to be executed.
Definition WPAPass.h:108
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

Member Function Documentation

◆ getModRefInfo() [1/2]

ModRefInfo WPAPass::getModRefInfo ( const CallICFGNode callInst)
virtual

Interface of mod-ref analysis to determine whether a CallSite instruction can mod or ref any memory location.

Return mod-ref result of a Callsite

Definition at line 166 of file WPAPass.cpp.

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}
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 > AnderSVFG
Definition Options.h:221
@ AndersenWaveDiff_WPA
Diff wave propagation andersen-style WPA.
MemSSA * getMSSA() const
Get SVFG memory SSA.
Definition SVFG.h:138
SVFG * _svfg
svfg generated through -ander pointer analysis
Definition WPAPass.h:110

◆ getModRefInfo() [2/2]

ModRefInfo WPAPass::getModRefInfo ( const CallICFGNode callInst1,
const CallICFGNode callInst2 
)
virtual

Interface of mod-ref analysis to determine whether a CallSite instruction can mod or ref a specific memory location, given Location infos.

Interface of mod-ref analysis between two CallSite instructions

Return mod-ref result between two CallInsts

Definition at line 176 of file WPAPass.cpp.

177{
178 assert(Options::PASelected(PointerAnalysis::AndersenWaveDiff_WPA) && Options::AnderSVFG() && "mod-ref query is only support with -ander and -svfg turned on");
180}

◆ getPassName()

virtual std::string SVF::WPAPass::getPassName ( ) const
inlinevirtual

PTA name.

Definition at line 99 of file WPAPass.h.

100 {
101 return "WPAPass";
102 }

◆ getPts()

const PointsTo & WPAPass::getPts ( NodeID  var)
virtual

Retrieve points-to set information.

Definition at line 157 of file WPAPass.cpp.

158{
159 assert(_pta && "initialize a pointer analysis first");
160 return _pta->getPts(var);
161}
virtual const PointsTo & getPts(NodeID ptr)=0
Get points-to targets of a pointer. It needs to be implemented in child class.
PointerAnalysis * _pta
pointer analysis to be executed.
Definition WPAPass.h:109

◆ PrintAliasPairs()

void WPAPass::PrintAliasPairs ( PointerAnalysis pta)
virtual

Print all alias pairs.

Definition at line 132 of file WPAPass.cpp.

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}
virtual const FunObjVar * getFunction() const
Get containing function, or null for globals/constants.
iterator begin()
Iterators.
IDToNodeMapTy::iterator iterator
Node Iterators.
SVFIR * getPAG() const
virtual AliasResult alias(const SVFVar *V1, const SVFVar *V2)=0
Interface exposed to users of our pointer analysis, given Value infos.
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
AliasResult
Definition SVFType.h:541
@ NoAlias
Definition SVFType.h:542

◆ runOnModule()

void WPAPass::runOnModule ( SVFIR pag)
virtual

Run pointer analysis on SVFModule.

We start from here

Definition at line 68 of file WPAPass.cpp.

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}
unsigned u32_t
Definition CommandLine.h:18
PTATY
Pointer analysis type list.
@ Default_PTA
default pta without any analysis
void runPointerAnalysis(SVFIR *pag, u32_t kind)
Create pointer analysis according to specified kind and analyze the module.
Definition WPAPass.cpp:82

◆ runPointerAnalysis()

void WPAPass::runPointerAnalysis ( SVFIR pag,
u32_t  kind 
)
private

Create pointer analysis according to specified kind and analyze the module.

Create pointer analysis according to a specified kind and then analyze the module.

Initialize pointer analysis.

support mod-ref queries only for -ander

Definition at line 82 of file WPAPass.cpp.

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}
static const Option< bool > PrintAliases
Definition Options.h:223
@ VFS_WPA
Versioned sparse flow-sensitive WPA.
@ AndersenSCD_WPA
Selective cycle detection andersen-style WPA.
@ Andersen_WPA
Andersen PTA.
@ TypeCPP_WPA
Type-based analysis for C++.
@ AndersenSFR_WPA
Stride-based field representation.
@ Steensgaard_WPA
Steensgaard PTA.
@ FSSPARSE_WPA
Sparse flow sensitive WPA.
virtual void analyze()=0
Start Analysis here (main part of pointer analysis). It needs to be implemented in child class.
virtual void PrintAliasPairs(PointerAnalysis *pta)
Print all alias pairs.
Definition WPAPass.cpp:132

Member Data Documentation

◆ _pta

PointerAnalysis* SVF::WPAPass::_pta
private

pointer analysis to be executed.

Definition at line 109 of file WPAPass.h.

◆ _svfg

SVFG* SVF::WPAPass::_svfg
private

svfg generated through -ander pointer analysis

Definition at line 110 of file WPAPass.h.

◆ ID

char WPAPass::ID = 0
static

Pass ID.

Definition at line 59 of file WPAPass.h.

◆ ptaVector

PTAVector SVF::WPAPass::ptaVector
private

all pointer analysis to be executed.

Definition at line 108 of file WPAPass.h.


The documentation for this class was generated from the following files: