Static Value-Flow Analysis
|
#include <PointerAnalysis.h>
Public Types | |
enum | PTATY { Andersen_BASE , Andersen_WPA , AndersenSCD_WPA , AndersenSFR_WPA , AndersenWaveDiff_WPA , Steensgaard_WPA , CSCallString_WPA , CSSummary_WPA , FSDATAFLOW_WPA , FSSPARSE_WPA , VFS_WPA , FSCS_WPA , CFLFICI_WPA , CFLFSCI_WPA , CFLFSCS_WPA , TypeCPP_WPA , FieldS_DDA , FlowS_DDA , PathS_DDA , Cxt_DDA , Default_PTA } |
Pointer analysis type list. More... | |
enum | PTAImplTy { BaseImpl , BVDataImpl , CondImpl } |
Implementation type: BVDataPTAImpl or CondPTAImpl. More... | |
typedef Set< const CallICFGNode * > | CallSiteSet |
Indirect call edges type, map a callsite to a set of callees. | |
typedef SVFIR::CallSiteToFunPtrMap | CallSiteToFunPtrMap |
typedef Set< const FunObjVar * > | FunctionSet |
typedef OrderedMap< const CallICFGNode *, FunctionSet > | CallEdgeMap |
typedef SCCDetection< CallGraph * > | CallGraphSCC |
typedef Set< const GlobalObjVar * > | VTableSet |
typedef Set< const FunObjVar * > | VFunSet |
Static Public Attributes | |
static const std::string | aliasTestMayAlias = "MAYALIAS" |
static const std::string | aliasTestMayAliasMangled = "_Z8MAYALIASPvS_" |
static const std::string | aliasTestNoAlias = "NOALIAS" |
static const std::string | aliasTestNoAliasMangled = "_Z7NOALIASPvS_" |
static const std::string | aliasTestPartialAlias = "PARTIALALIAS" |
static const std::string | aliasTestPartialAliasMangled = "_Z12PARTIALALIASPvS_" |
static const std::string | aliasTestMustAlias = "MUSTALIAS" |
static const std::string | aliasTestMustAliasMangled = "_Z9MUSTALIASPvS_" |
static const std::string | aliasTestFailMayAlias = "EXPECTEDFAIL_MAYALIAS" |
static const std::string | aliasTestFailMayAliasMangled = "_Z21EXPECTEDFAIL_MAYALIASPvS_" |
static const std::string | aliasTestFailNoAlias = "EXPECTEDFAIL_NOALIAS" |
static const std::string | aliasTestFailNoAliasMangled = "_Z20EXPECTEDFAIL_NOALIASPvS_" |
Protected Attributes | |
bool | print_stat |
User input flags. | |
bool | alias_validation |
Flag for validating points-to/alias results. | |
u32_t | OnTheFlyIterBudgetForStat |
Flag for iteration budget for on-the-fly statistics. | |
PTATY | ptaTy |
Pointer analysis Type. | |
PTAImplTy | ptaImplTy |
PTA implementation type. | |
PTAStat * | stat |
Statistics. | |
CallGraph * | callgraph |
Call graph used for pointer analysis. | |
CallGraphSCC * | callGraphSCC |
SCC for PTACallGraph. | |
ICFG * | icfg |
Interprocedural control-flow graph. | |
CommonCHGraph * | chgraph |
CHGraph. | |
Static Protected Attributes | |
static SVFIR * | pag = nullptr |
SVFIR. | |
Private Member Functions | |
void | destroy () |
Release the memory. | |
SVFIR * | getPAG () const |
PTAStat * | getStat () const |
Get PTA stat. | |
OrderedNodeSet & | getAllValidPtrs () |
Get all Valid Pointers for resolution. | |
virtual void | initialize () |
Initialization of a pointer analysis, including building symbol table and SVFIR etc. | |
virtual void | finalize () |
Finalization of a pointer analysis, including checking alias correctness. | |
virtual void | analyze ()=0 |
Start Analysis here (main part of pointer analysis). It needs to be implemented in child class. | |
virtual void | computeDDAPts (NodeID) |
Compute points-to results on-demand, overridden by derived classes. | |
virtual AliasResult | alias (const SVFVar *V1, const SVFVar *V2)=0 |
Interface exposed to users of our pointer analysis, given Value infos. | |
virtual AliasResult | alias (NodeID node1, NodeID node2)=0 |
Interface exposed to users of our pointer analysis, given PAGNodeID. | |
virtual const PointsTo & | getPts (NodeID ptr)=0 |
Get points-to targets of a pointer. It needs to be implemented in child class. | |
virtual const NodeSet & | getRevPts (NodeID nodeId)=0 |
void | printIndCSTargets (const CallICFGNode *cs, const FunctionSet &targets) |
Print targets of a function pointer. | |
virtual void | dumpTopLevelPtsTo () |
virtual void | dumpAllPts () |
virtual void | dumpCPts () |
virtual void | dumpPts (NodeID ptr, const PointsTo &pts) |
void | printIndCSTargets () |
void | dumpAllTypes () |
void | dumpStat () |
Dump the statistics. | |
bool | containBlackHoleNode (const PointsTo &pts) |
Determine whether a points-to contains a black hole or constant node. | |
bool | containConstantNode (const PointsTo &pts) |
virtual bool | isBlkObjOrConstantObj (NodeID ptd) const |
bool | isHeapMemObj (NodeID id) const |
Whether this object is heap or array. | |
bool | isArrayMemObj (NodeID id) const |
bool | isFIObjNode (NodeID id) const |
NodeID | getBaseObjVar (NodeID id) |
NodeID | getFIObjVar (NodeID id) |
NodeID | getGepObjVar (NodeID id, const APOffset &ap) |
virtual const NodeBS & | getAllFieldsObjVars (NodeID id) |
void | setObjFieldInsensitive (NodeID id) |
bool | isFieldInsensitive (NodeID id) const |
const CallSiteToFunPtrMap & | getIndirectCallsites () const |
Return all indirect callsites. | |
NodeID | getFunPtr (const CallICFGNode *cs) const |
Return function pointer PAGNode at a callsite cs. | |
virtual void | validateTests () |
Alias check functions to verify correctness of pointer analysis. | |
virtual void | validateSuccessTests (std::string fun) |
virtual void | validateExpectedFailureTests (std::string fun) |
void | resetObjFieldSensitive () |
Reset all object node as field-sensitive. | |
Definition at line 56 of file PointerAnalysis.h.
Definition at line 104 of file PointerAnalysis.h.
Definition at line 105 of file PointerAnalysis.h.
Indirect call edges type, map a callsite to a set of callees.
Definition at line 101 of file PointerAnalysis.h.
Definition at line 102 of file PointerAnalysis.h.
Definition at line 103 of file PointerAnalysis.h.
Definition at line 107 of file PointerAnalysis.h.
Definition at line 106 of file PointerAnalysis.h.
Implementation type: BVDataPTAImpl or CondPTAImpl.
Enumerator | |
---|---|
BaseImpl | Represents PointerAnalaysis. |
BVDataImpl | Represents BVDataPTAImpl. |
CondImpl | Represents CondPTAImpl. |
Definition at line 92 of file PointerAnalysis.h.
Pointer analysis type list.
Enumerator | |
---|---|
Andersen_BASE | Base Andersen PTA. |
Andersen_WPA | Andersen PTA. |
AndersenSCD_WPA | Selective cycle detection andersen-style WPA. |
AndersenSFR_WPA | Stride-based field representation. |
AndersenWaveDiff_WPA | Diff wave propagation andersen-style WPA. |
Steensgaard_WPA | Steensgaard PTA. |
CSCallString_WPA | Call string based context sensitive WPA. |
CSSummary_WPA | Summary based context sensitive WPA. |
FSDATAFLOW_WPA | Traditional Dataflow-based flow sensitive WPA. |
FSSPARSE_WPA | Sparse flow sensitive WPA. |
VFS_WPA | Versioned sparse flow-sensitive WPA. |
FSCS_WPA | Flow-, context- sensitive WPA. |
CFLFICI_WPA | Flow-, context-, insensitive CFL-reachability-based analysis. |
CFLFSCI_WPA | Flow-insensitive, context-sensitive CFL-reachability-based analysis. |
CFLFSCS_WPA | Flow-, context-, CFL-reachability-based analysis. |
TypeCPP_WPA | Type-based analysis for C++. |
FieldS_DDA | Field sensitive DDA. |
FlowS_DDA | Flow sensitive DDA. |
PathS_DDA | Guarded value-flow DDA. |
Cxt_DDA | context sensitive DDA |
Default_PTA | default pta without any analysis |
Definition at line 61 of file PointerAnalysis.h.
PointerAnalysis::PointerAnalysis | ( | SVFIR * | p, |
PTATY | ty = Default_PTA , |
||
bool | alias_check = true |
||
) |
Constructor.
Constructor
Definition at line 68 of file PointerAnalysis.cpp.
|
virtual |
Destructor.
Destructor
Definition at line 82 of file PointerAnalysis.cpp.
|
pure virtual |
Interface exposed to users of our pointer analysis, given Value infos.
Implemented in SVF::CondPTAImpl< Cond >, SVF::CondPTAImpl< ContextCond >, and SVF::BVDataPTAImpl.
|
pure virtual |
Interface exposed to users of our pointer analysis, given PAGNodeID.
Implemented in SVF::CFLAlias, SVF::CondPTAImpl< Cond >, SVF::CondPTAImpl< ContextCond >, and SVF::BVDataPTAImpl.
|
pure virtual |
Start Analysis here (main part of pointer analysis). It needs to be implemented in child class.
Implemented in SVF::CFLBase, SVF::ContextDDA, SVF::FlowDDA, SVF::AndersenBase, SVF::FlowSensitive, and SVF::TypeAnalysis.
|
inline |
PTACallGraph SCC related methods.
PTACallGraph SCC detection
Definition at line 379 of file PointerAnalysis.h.
Compute points-to results on-demand, overridden by derived classes.
Reimplemented in SVF::ContextDDA, and SVF::FlowDDA.
Definition at line 226 of file PointerAnalysis.h.
void PointerAnalysis::connectVCallToVFns | ( | const CallICFGNode * | cs, |
const VFunSet & | vfns, | ||
CallEdgeMap & | newEdges | ||
) |
Definition at line 465 of file PointerAnalysis.cpp.
Determine whether a points-to contains a black hole or constant node.
Definition at line 282 of file PointerAnalysis.h.
Definition at line 286 of file PointerAnalysis.h.
|
private |
|
inline |
Whether print statistics.
Definition at line 352 of file PointerAnalysis.h.
|
inlinevirtual |
void PointerAnalysis::dumpAllTypes | ( | ) |
Definition at line 232 of file PointerAnalysis.cpp.
|
inlinevirtual |
Reimplemented in SVF::CondPTAImpl< Cond >, SVF::CondPTAImpl< ContextCond >, and SVF::BVDataPTAImpl.
Definition at line 249 of file PointerAnalysis.h.
Dump points-to of top-level pointers (ValVar)
print the points-to set of node which has the maximum pts size.
Definition at line 253 of file PointerAnalysis.cpp.
void PointerAnalysis::dumpStat | ( | ) |
|
inlinevirtual |
Reimplemented in SVF::CondPTAImpl< Cond >, SVF::CondPTAImpl< ContextCond >, SVF::Andersen, and SVF::BVDataPTAImpl.
Definition at line 247 of file PointerAnalysis.h.
|
virtual |
Finalization of a pointer analysis, including checking alias correctness.
Finalize the analysis after solving Given the alias results, verify whether it is correct or not using alias check functions
Print statistics
Dump results
Reimplemented in SVF::CFLAlias, SVF::CFLBase, SVF::CFLVF, SVF::CondPTAImpl< Cond >, SVF::CondPTAImpl< ContextCond >, SVF::Andersen, SVF::ContextDDA, SVF::FlowDDA, SVF::BVDataPTAImpl, SVF::AndersenBase, SVF::FlowSensitive, SVF::TypeAnalysis, and SVF::VersionedFlowSensitive.
Definition at line 176 of file PointerAnalysis.cpp.
Definition at line 329 of file PointerAnalysis.h.
|
inline |
Get all Valid Pointers for resolution.
Definition at line 208 of file PointerAnalysis.h.
|
inline |
Type of pointer analysis.
Definition at line 182 of file PointerAnalysis.h.
Definition at line 317 of file PointerAnalysis.h.
|
inline |
Return call graph.
Definition at line 168 of file PointerAnalysis.h.
|
inline |
Return call graph SCC.
Definition at line 173 of file PointerAnalysis.h.
Get SCC rep node of a SVFG node.
Definition at line 387 of file PointerAnalysis.h.
|
inline |
Definition at line 321 of file PointerAnalysis.h.
|
inlineprotected |
Return function pointer PAGNode at a callsite cs.
Definition at line 262 of file PointerAnalysis.h.
Definition at line 325 of file PointerAnalysis.h.
|
inline |
|
inline |
Return implementation type of the pointer analysis.
Definition at line 188 of file PointerAnalysis.h.
|
inline |
Get callees from an indirect callsite.
Definition at line 359 of file PointerAnalysis.h.
|
inline |
Definition at line 367 of file PointerAnalysis.h.
|
inlineprotected |
Return all indirect callsites.
Definition at line 257 of file PointerAnalysis.h.
|
inline |
Return number of resolved indirect call edges.
Definition at line 163 of file PointerAnalysis.h.
|
inline |
Get points-to targets of a pointer. It needs to be implemented in child class.
Implemented in SVF::Andersen, SVF::BVDataPTAImpl, SVF::Steensgaard, SVF::CondPTAImpl< Cond >, and SVF::CondPTAImpl< ContextCond >.
Given an object, get all the nodes having whose pointsto contains the object. Similar to getPts, this also needs to be implemented in child classes.
Implemented in SVF::CFLAlias, SVF::BVDataPTAImpl, SVF::CondPTAImpl< Cond >, and SVF::CondPTAImpl< ContextCond >.
|
inline |
void PointerAnalysis::getVFnsFromCHA | ( | const CallICFGNode * | cs, |
VFunSet & | vfns | ||
) |
Definition at line 421 of file PointerAnalysis.cpp.
void PointerAnalysis::getVFnsFromPts | ( | const CallICFGNode * | cs, |
const PointsTo & | target, | ||
VFunSet & | vfns | ||
) |
Definition at line 430 of file PointerAnalysis.cpp.
|
inline |
Definition at line 363 of file PointerAnalysis.h.
|
virtual |
Initialization of a pointer analysis, including building symbol table and SVFIR etc.
Initialization of pointer analysis
initialise pta call graph for every pointer analysis instance
Reimplemented in SVF::CFLAlias, SVF::CFLVF, SVF::Andersen, SVF::AndersenWaveDiff, SVF::AndersenSFR, SVF::ContextDDA, SVF::FlowDDA, SVF::AndersenBase, SVF::FlowSensitive, SVF::TypeAnalysis, and SVF::VersionedFlowSensitive.
Definition at line 105 of file PointerAnalysis.cpp.
|
inline |
Return TRUE if this edge is inside a PTACallGraph SCC, i.e., src node and dst node are in the same SCC on the SVFG.
Definition at line 392 of file PointerAnalysis.h.
Definition at line 303 of file PointerAnalysis.h.
Definition at line 290 of file PointerAnalysis.h.
Definition at line 338 of file PointerAnalysis.h.
For field-sensitivity
Definition at line 313 of file PointerAnalysis.h.
Definition at line 398 of file PointerAnalysis.h.
Whether a local variable is in function recursions.
Return TRUE if this node is a local variable of recursive function.
Definition at line 133 of file PointerAnalysis.cpp.
void PointerAnalysis::printIndCSTargets | ( | ) |
Print all indirect callsites
Definition at line 340 of file PointerAnalysis.cpp.
void PointerAnalysis::printIndCSTargets | ( | const CallICFGNode * | cs, |
const FunctionSet & | targets | ||
) |
Print targets of a function pointer.
Print indirect call targets at an indirect callsite
Definition at line 311 of file PointerAnalysis.cpp.
|
inline |
Whether print statistics.
Definition at line 346 of file PointerAnalysis.h.
Return PTA name.
Reimplemented in SVF::Andersen, SVF::ContextDDA, SVF::FlowDDA, SVF::FlowSensitive, and SVF::VersionedFlowSensitive.
Definition at line 407 of file PointerAnalysis.h.
|
protected |
Reset all object node as field-sensitive.
Reset field sensitivity
Definition at line 150 of file PointerAnalysis.cpp.
|
virtual |
Resolve cpp indirect call edges.
Definition at line 487 of file PointerAnalysis.cpp.
|
virtual |
Resolve indirect call edges.
Resolve indirect calls
discover indirect pointer target
Definition at line 375 of file PointerAnalysis.cpp.
|
inline |
Definition at line 333 of file PointerAnalysis.h.
|
protectedvirtual |
Pointer analysis validator
Definition at line 568 of file PointerAnalysis.cpp.
|
protectedvirtual |
Find the alias check functions annotated in the C files check whether the alias analysis results consistent with the alias check function itself
Definition at line 503 of file PointerAnalysis.cpp.
|
protectedvirtual |
Alias check functions to verify correctness of pointer analysis.
Validate test cases
Definition at line 214 of file PointerAnalysis.cpp.
|
protected |
Flag for validating points-to/alias results.
Definition at line 134 of file PointerAnalysis.h.
|
static |
Definition at line 118 of file PointerAnalysis.h.
|
static |
Definition at line 119 of file PointerAnalysis.h.
|
static |
Definition at line 120 of file PointerAnalysis.h.
|
static |
Definition at line 121 of file PointerAnalysis.h.
|
static |
Definition at line 110 of file PointerAnalysis.h.
|
static |
Definition at line 111 of file PointerAnalysis.h.
|
static |
Definition at line 116 of file PointerAnalysis.h.
|
static |
Definition at line 117 of file PointerAnalysis.h.
|
static |
Definition at line 112 of file PointerAnalysis.h.
|
static |
Definition at line 113 of file PointerAnalysis.h.
|
static |
Definition at line 114 of file PointerAnalysis.h.
|
static |
Definition at line 115 of file PointerAnalysis.h.
|
protected |
Call graph used for pointer analysis.
Definition at line 148 of file PointerAnalysis.h.
|
protected |
SCC for PTACallGraph.
Definition at line 150 of file PointerAnalysis.h.
|
protected |
Definition at line 154 of file PointerAnalysis.h.
|
protected |
Interprocedural control-flow graph.
Definition at line 152 of file PointerAnalysis.h.
|
protected |
Flag for iteration budget for on-the-fly statistics.
Definition at line 136 of file PointerAnalysis.h.
Definition at line 140 of file PointerAnalysis.h.
|
protected |
User input flags.
Flag for printing the statistic results
Definition at line 132 of file PointerAnalysis.h.
|
protected |
PTA implementation type.
Definition at line 144 of file PointerAnalysis.h.
|
protected |
Pointer analysis Type.
Definition at line 142 of file PointerAnalysis.h.
|
protected |
Statistics.
Definition at line 146 of file PointerAnalysis.h.