clang
8.0.0
|
A class responsible for cleaning up unused symbols. More...
#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
Public Types | |
using | region_iterator = RegionSetTy::const_iterator |
Public Member Functions | |
SymbolReaper (const StackFrameContext *Ctx, const Stmt *s, SymbolManager &symmgr, StoreManager &storeMgr) | |
Construct a reaper object, which removes everything which is not live before we execute statement s in the given location context. More... | |
const LocationContext * | getLocationContext () const |
bool | isLive (SymbolRef sym) |
bool | isLiveRegion (const MemRegion *region) |
bool | isLive (const Stmt *ExprVal, const LocationContext *LCtx) const |
bool | isLive (const VarRegion *VR, bool includeStoreBindings=false) const |
void | markLive (SymbolRef sym) |
Unconditionally marks a symbol as live. More... | |
void | markInUse (SymbolRef sym) |
Marks a symbol as important to a checker. More... | |
region_iterator | region_begin () const |
region_iterator | region_end () const |
bool | isDead (SymbolRef sym) |
Returns whether or not a symbol has been confirmed dead. More... | |
void | markLive (const MemRegion *region) |
void | markElementIndicesLive (const MemRegion *region) |
void | setReapedStore (StoreRef st) |
Set to the value of the symbolic store after StoreManager::removeDeadBindings has been called. More... | |
A class responsible for cleaning up unused symbols.
Definition at line 549 of file SymbolManager.h.
using clang::ento::SymbolReaper::region_iterator = RegionSetTy::const_iterator |
Definition at line 605 of file SymbolManager.h.
|
inline |
Construct a reaper object, which removes everything which is not live before we execute statement s in the given location context.
If the statement is NULL, everything is this and parent contexts is considered live. If the stack frame context is NULL, everything on stack is considered dead.
Definition at line 578 of file SymbolManager.h.
|
inline |
Definition at line 582 of file SymbolManager.h.
Returns whether or not a symbol has been confirmed dead.
This should only be called once all marking of dead symbols has completed. (For checkers, this means only in the checkDeadSymbols callback.)
Definition at line 614 of file SymbolManager.h.
Referenced by clang::ento::retaincountchecker::RetainCountChecker::checkDeadSymbols(), clang::ento::CreateRangeConstraintManager(), and clang::ento::SMTConstraintManager< ConstraintSMT, SMTExprTy >::removeDeadBindings().
Definition at line 459 of file SymbolManager.cpp.
Referenced by clang::ento::EnvironmentManager::removeDeadBindings().
bool clang::ento::SymbolReaper::isLive | ( | const Stmt * | ExprVal, |
const LocationContext * | LCtx | ||
) | const |
bool clang::ento::SymbolReaper::isLive | ( | const VarRegion * | VR, |
bool | includeStoreBindings = false |
||
) | const |
Definition at line 428 of file SymbolManager.cpp.
Referenced by clang::ento::mpi::MPIChecker::checkMissingWaits().
void SymbolReaper::markElementIndicesLive | ( | const MemRegion * | region | ) |
Definition at line 412 of file SymbolManager.cpp.
void SymbolReaper::markInUse | ( | SymbolRef | sym | ) |
Marks a symbol as important to a checker.
For metadata symbols, this will keep the symbol alive as long as its associated region is also live. For other symbols, this has no effect; checkers are not permitted to influence the life of other symbols. This should be used before any symbol marking has occurred, i.e. in the MarkLiveSymbols callback.
Definition at line 423 of file SymbolManager.cpp.
void SymbolReaper::markLive | ( | SymbolRef | sym | ) |
Unconditionally marks a symbol as live.
This should never be used by checkers, only by the state infrastructure such as the store and environment. Checkers should instead use metadata symbols and markInUse.
Definition at line 402 of file SymbolManager.cpp.
Referenced by clang::ento::ExprEngine::removeDead().
void SymbolReaper::markLive | ( | const MemRegion * | region | ) |
Definition at line 407 of file SymbolManager.cpp.
|
inline |
Definition at line 607 of file SymbolManager.h.
|
inline |
Definition at line 608 of file SymbolManager.h.
|
inline |
Set to the value of the symbolic store after StoreManager::removeDeadBindings has been called.
Definition at line 623 of file SymbolManager.h.
Referenced by clang::ento::ProgramStateManager::removeDeadBindings().