Static Value-Flow Analysis
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Types | Public Member Functions | Private Types | Private Attributes | List of all members
SVF::AliasDDAClient Class Reference

#include <DDAClient.h>

Inheritance diagram for SVF::AliasDDAClient:
SVF::DDAClient

Public Types

typedef OrderedSet< const PAGNode * > PAGNodeSet
 

Public Member Functions

 AliasDDAClient ()
 
 ~AliasDDAClient ()
 
virtual OrderedNodeSetcollectCandidateQueries (SVFIR *pag)
 Only collect function pointers as query candidates.
 
virtual void performStat (PointerAnalysis *pta)
 
- Public Member Functions inherited from SVF::DDAClient
 DDAClient ()
 
virtual ~DDAClient ()
 
virtual void initialise ()
 
const OrderedNodeSetgetCandidateQueries () const
 Get candidate queries.
 
virtual void handleStatement (const SVFGNode *, NodeID)
 Call back used by DDAVFSolver.
 
void setPAG (SVFIR *g)
 Set SVFIR graph.
 
void setCurrentQueryPtr (NodeID ptr)
 Set the pointer being queried.
 
void setQuery (NodeID ptr)
 Set pointer to be queried by DDA analysis.
 
virtual void answerQueries (PointerAnalysis *pta)
 
virtual void collectWPANum ()
 

Private Types

typedef OrderedMap< NodeID, const CallICFGNode * > VTablePtrToCallSiteMap
 

Private Attributes

VTablePtrToCallSiteMap vtableToCallSiteMap
 
PAGNodeSet loadSrcNodes
 
PAGNodeSet storeDstNodes
 
PAGNodeSet gepSrcNodes
 

Additional Inherited Members

- Protected Member Functions inherited from SVF::DDAClient
void addCandidate (NodeID id)
 
- Protected Attributes inherited from SVF::DDAClient
SVFIRpag
 SVFIR graph used by current DDA analysis.
 
NodeID curPtr
 current pointer being queried
 
OrderedNodeSet candidateQueries
 store all candidate pointers to be queried
 

Detailed Description

DDA client with function pointers as query candidates.

Definition at line 139 of file DDAClient.h.

Member Typedef Documentation

◆ PAGNodeSet

Definition at line 143 of file DDAClient.h.

◆ VTablePtrToCallSiteMap

Definition at line 154 of file DDAClient.h.

Constructor & Destructor Documentation

◆ AliasDDAClient()

SVF::AliasDDAClient::AliasDDAClient ( )
inline

Definition at line 145 of file DDAClient.h.

145: DDAClient() {}

◆ ~AliasDDAClient()

SVF::AliasDDAClient::~AliasDDAClient ( )
inline

Definition at line 146 of file DDAClient.h.

146{}

Member Function Documentation

◆ collectCandidateQueries()

OrderedNodeSet & AliasDDAClient::collectCandidateQueries ( SVFIR pag)
virtual

Only collect function pointers as query candidates.

Reimplemented from SVF::DDAClient.

Definition at line 176 of file DDAClient.cpp.

177{
178 setPAG(pag);
180 for (SVFStmt::SVFStmtSetTy::iterator iter = loads.begin(), eiter =
181 loads.end(); iter != eiter; ++iter)
182 {
183 PAGNode* loadsrc = (*iter)->getSrcNode();
184 loadSrcNodes.insert(loadsrc);
185 addCandidate(loadsrc->getId());
186 }
187
189 for (SVFStmt::SVFStmtSetTy::iterator iter = stores.begin(), eiter =
190 stores.end(); iter != eiter; ++iter)
191 {
192 PAGNode* storedst = (*iter)->getDstNode();
193 storeDstNodes.insert(storedst);
194 addCandidate(storedst->getId());
195 }
197 for (SVFStmt::SVFStmtSetTy::iterator iter = geps.begin(), eiter =
198 geps.end(); iter != eiter; ++iter)
199 {
200 PAGNode* gepsrc = (*iter)->getSrcNode();
201 gepSrcNodes.insert(gepsrc);
202 addCandidate(gepsrc->getId());
203 }
204 return candidateQueries;
205}
PAGNodeSet loadSrcNodes
Definition DDAClient.h:156
PAGNodeSet storeDstNodes
Definition DDAClient.h:157
PAGNodeSet gepSrcNodes
Definition DDAClient.h:158
void setPAG(SVFIR *g)
Set SVFIR graph.
Definition DDAClient.h:79
SVFIR * pag
SVFIR graph used by current DDA analysis.
Definition DDAClient.h:107
void addCandidate(NodeID id)
Definition DDAClient.h:101
OrderedNodeSet candidateQueries
store all candidate pointers to be queried
Definition DDAClient.h:109
SVFStmt::SVFStmtSetTy & getSVFStmtSet(SVFStmt::PEDGEK kind)
Get/set methods to get SVFStmts based on their kinds and ICFGNodes.
Definition SVFIR.h:229
GenericNode< SVFVar, SVFStmt >::GEdgeSetTy SVFStmtSetTy
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ performStat()

void AliasDDAClient::performStat ( PointerAnalysis pta)
virtual

Reimplemented from SVF::DDAClient.

Definition at line 207 of file DDAClient.cpp.

208{
209
210 for(PAGNodeSet::const_iterator lit = loadSrcNodes.begin(); lit!=loadSrcNodes.end(); lit++)
211 {
212 for(PAGNodeSet::const_iterator sit = storeDstNodes.begin(); sit!=storeDstNodes.end(); sit++)
213 {
214 const PAGNode* node1 = *lit;
215 const PAGNode* node2 = *sit;
216 AliasResult result = pta->alias(node1->getId(), node2->getId());
217 outs() << "\n=================================================\n";
218 outs() << "Alias Query for (" << node1->valueOnlyToString() << ",";
219 outs() << node2->valueOnlyToString() << ") \n";
220 outs() << "[NodeID:" << node1->getId() << ", NodeID:" << node2->getId() << " " << result << "]\n";
221 outs() << "=================================================\n";
222 }
223 }
224}
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

Member Data Documentation

◆ gepSrcNodes

PAGNodeSet SVF::AliasDDAClient::gepSrcNodes
private

Definition at line 158 of file DDAClient.h.

◆ loadSrcNodes

PAGNodeSet SVF::AliasDDAClient::loadSrcNodes
private

Definition at line 156 of file DDAClient.h.

◆ storeDstNodes

PAGNodeSet SVF::AliasDDAClient::storeDstNodes
private

Definition at line 157 of file DDAClient.h.

◆ vtableToCallSiteMap

VTablePtrToCallSiteMap SVF::AliasDDAClient::vtableToCallSiteMap
private

Definition at line 155 of file DDAClient.h.


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