MCPcopy Create free account
hub / github.com/SVF-tools/SVF / PointerAnalysis

Method PointerAnalysis

svf/lib/MemoryModel/PointerAnalysis.cpp:68–77  ·  view source on GitHub ↗

! * Constructor */

Source from the content-addressed store, hash-verified

66 * Constructor
67 */
68PointerAnalysis::PointerAnalysis(SVFIR *p, PTATY ty, bool alias_check) : ptaTy(ty), stat(nullptr), callgraph(nullptr),
69 callGraphSCC(nullptr), icfg(nullptr),
70 chgraph(nullptr)
71{
72 pag = p;
73 OnTheFlyIterBudgetForStat = Options::StatBudget();
74 print_stat = Options::PStat();
75 ptaImplTy = BaseImpl;
76 alias_validation = (alias_check && Options::EnableAliasCheck());
77}
78
79/*!
80 * Destructor

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected