clang 19.0.0git
Classes | Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
clang::ento::StoreManager Class Referenceabstract

#include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"

Classes

class  BindingsHandler
 
class  FindUniqueBinding
 

Public Types

using InvalidatedRegions = SmallVector< const MemRegion *, 8 >
 

Public Member Functions

virtual ~StoreManager ()=default
 
virtual SVal getBinding (Store store, Loc loc, QualType T=QualType())=0
 Return the value bound to specified location in a given state.
 
virtual std::optional< SValgetDefaultBinding (Store store, const MemRegion *R)=0
 Return the default value bound to a region in a given store.
 
std::optional< SValgetDefaultBinding (nonloc::LazyCompoundVal lcv)
 Return the default value bound to a LazyCompoundVal.
 
virtual StoreRef Bind (Store store, Loc loc, SVal val)=0
 Return a store with the specified value bound to the given location.
 
virtual StoreRef BindDefaultInitial (Store store, const MemRegion *R, SVal V)=0
 Return a store with the specified value bound to all sub-regions of the region.
 
virtual StoreRef BindDefaultZero (Store store, const MemRegion *R)=0
 Return a store with in which all values within the given region are reset to zero.
 
virtual StoreRef killBinding (Store ST, Loc L)=0
 Create a new store with the specified binding removed.
 
virtual StoreRef getInitialStore (const LocationContext *InitLoc)=0
 getInitialStore - Returns the initial "empty" store representing the value bindings upon entry to an analyzed function.
 
MemRegionManagergetRegionManager ()
 getRegionManager - Returns the internal RegionManager object that is used to query and manipulate MemRegion objects.
 
SValBuildergetSValBuilder ()
 
virtual Loc getLValueVar (const VarDecl *VD, const LocationContext *LC)
 
Loc getLValueCompoundLiteral (const CompoundLiteralExpr *CL, const LocationContext *LC)
 
virtual SVal getLValueIvar (const ObjCIvarDecl *decl, SVal base)
 
virtual SVal getLValueField (const FieldDecl *D, SVal Base)
 
virtual SVal getLValueElement (QualType elementType, NonLoc offset, SVal Base)
 
virtual SVal ArrayToPointer (Loc Array, QualType ElementTy)=0
 ArrayToPointer - Used by ExprEngine::VistCast to handle implicit conversions between arrays and pointers.
 
SVal evalDerivedToBase (SVal Derived, const CastExpr *Cast)
 Evaluates a chain of derived-to-base casts through the path specified in Cast.
 
SVal evalDerivedToBase (SVal Derived, const CXXBasePath &CastPath)
 Evaluates a chain of derived-to-base casts through the specified path.
 
SVal evalDerivedToBase (SVal Derived, QualType DerivedPtrType, bool IsVirtual)
 Evaluates a derived-to-base cast through a single level of derivation.
 
std::optional< SValevalBaseToDerived (SVal Base, QualType DerivedPtrType)
 Attempts to do a down cast.
 
const ElementRegionGetElementZeroRegion (const SubRegion *R, QualType T)
 
std::optional< const MemRegion * > castRegion (const MemRegion *region, QualType CastToTy)
 castRegion - Used by ExprEngine::VisitCast to handle casts from a MemRegion* to a specific location type.
 
virtual StoreRef removeDeadBindings (Store store, const StackFrameContext *LCtx, SymbolReaper &SymReaper)=0
 
virtual bool includedInBindings (Store store, const MemRegion *region) const =0
 
virtual void incrementReferenceCount (Store store)
 If the StoreManager supports it, increment the reference count of the specified Store object.
 
virtual void decrementReferenceCount (Store store)
 If the StoreManager supports it, decrement the reference count of the specified Store object.
 
virtual StoreRef invalidateRegions (Store store, ArrayRef< SVal > Values, const Expr *E, unsigned Count, const LocationContext *LCtx, const CallEvent *Call, InvalidatedSymbols &IS, RegionAndSymbolInvalidationTraits &ITraits, InvalidatedRegions *InvalidatedTopLevel, InvalidatedRegions *Invalidated)=0
 invalidateRegions - Clears out the specified regions from the store, marking their values as unknown.
 
StoreRef enterStackFrame (Store store, const CallEvent &Call, const StackFrameContext *CalleeCtx)
 enterStackFrame - Let the StoreManager to do something when execution engine is about to execute into a callee.
 
virtual bool scanReachableSymbols (Store S, const MemRegion *R, ScanReachableSymbols &Visitor)=0
 Finds the transitive closure of symbols within the given region.
 
virtual void printJson (raw_ostream &Out, Store S, const char *NL, unsigned int Space, bool IsDot) const =0
 
virtual void iterBindings (Store store, BindingsHandler &f)=0
 iterBindings - Iterate over the bindings in the Store.
 

Protected Member Functions

 StoreManager (ProgramStateManager &stateMgr)
 
const ElementRegionMakeElementRegion (const SubRegion *baseRegion, QualType pointeeTy, uint64_t index=0)
 

Protected Attributes

SValBuildersvalBuilder
 
ProgramStateManagerStateMgr
 
MemRegionManagerMRMgr
 MRMgr - Manages region objects associated with this StoreManager.
 
ASTContextCtx
 

Detailed Description

Definition at line 53 of file Store.h.

Member Typedef Documentation

◆ InvalidatedRegions

Definition at line 203 of file Store.h.

Constructor & Destructor Documentation

◆ StoreManager()

StoreManager::StoreManager ( ProgramStateManager stateMgr)
protected

Definition at line 42 of file Store.cpp.

◆ ~StoreManager()

virtual clang::ento::StoreManager::~StoreManager ( )
virtualdefault

Member Function Documentation

◆ ArrayToPointer()

virtual SVal clang::ento::StoreManager::ArrayToPointer ( Loc  Array,
QualType  ElementTy 
)
pure virtual

ArrayToPointer - Used by ExprEngine::VistCast to handle implicit conversions between arrays and pointers.

◆ Bind()

virtual StoreRef clang::ento::StoreManager::Bind ( Store  store,
Loc  loc,
SVal  val 
)
pure virtual

Return a store with the specified value bound to the given location.

Parameters
[in]storeThe store in which to make the binding.
[in]locThe symbolic memory location.
[in]valThe value to bind to location loc.
Returns
A StoreRef object that contains the same bindings as store with the addition of having the value specified by val bound to the location given for loc.

◆ BindDefaultInitial()

virtual StoreRef clang::ento::StoreManager::BindDefaultInitial ( Store  store,
const MemRegion R,
SVal  V 
)
pure virtual

Return a store with the specified value bound to all sub-regions of the region.

The region must not have previous bindings. If you need to invalidate existing bindings, consider invalidateRegions().

◆ BindDefaultZero()

virtual StoreRef clang::ento::StoreManager::BindDefaultZero ( Store  store,
const MemRegion R 
)
pure virtual

Return a store with in which all values within the given region are reset to zero.

This method is allowed to overwrite previous bindings.

◆ castRegion()

std::optional< const MemRegion * > StoreManager::castRegion ( const MemRegion region,
QualType  CastToTy 
)

◆ decrementReferenceCount()

virtual void clang::ento::StoreManager::decrementReferenceCount ( Store  store)
inlinevirtual

If the StoreManager supports it, decrement the reference count of the specified Store object.

If the reference count hits 0, the memory associated with the object is recycled.

Definition at line 201 of file Store.h.

Referenced by clang::ento::StoreRef::operator=(), clang::ento::ProgramState::~ProgramState(), and clang::ento::StoreRef::~StoreRef().

◆ enterStackFrame()

StoreRef StoreManager::enterStackFrame ( Store  store,
const CallEvent Call,
const StackFrameContext CalleeCtx 
)

enterStackFrame - Let the StoreManager to do something when execution engine is about to execute into a callee.

Definition at line 46 of file Store.cpp.

References clang::Bind, and clang::Call.

◆ evalBaseToDerived()

std::optional< SVal > StoreManager::evalBaseToDerived ( SVal  Base,
QualType  DerivedPtrType 
)

Attempts to do a down cast.

Used to model BaseToDerived and C++ dynamic_cast. The callback may result in the following 3 scenarios:

  • Successful cast (ex: derived is subclass of base).
  • Failed cast (ex: derived is definitely not a subclass of base). The distinction of this case from the next one is necessary to model dynamic_cast.
  • We don't know (base is a symbolic region and we don't have enough info to determine if the cast will succeed at run time). The function returns an optional with SVal representing the derived class in case of a successful cast and std::nullopt otherwise.

Definition at line 316 of file Store.cpp.

References evalDerivedToBase(), clang::Type::getAsCXXRecordDecl(), clang::ento::MemRegionManager::getCXXDerivedObjectRegion(), getCXXRecordType(), GetElementZeroRegion(), clang::Type::getPointeeCXXRecordDecl(), clang::Type::getPointeeType(), clang::CXXRecordDecl::isDerivedFrom(), clang::QualType::isNull(), clang::Type::isVoidType(), MRMgr, clang::ento::MemRegion::StripCasts(), and clang::T.

Referenced by clang::ento::CXXInstanceCall::getInitialStackFrameContents(), and clang::ento::ExprEngine::VisitCast().

◆ evalDerivedToBase() [1/3]

SVal StoreManager::evalDerivedToBase ( SVal  Derived,
const CastExpr Cast 
)

◆ evalDerivedToBase() [2/3]

SVal StoreManager::evalDerivedToBase ( SVal  Derived,
const CXXBasePath CastPath 
)

Evaluates a chain of derived-to-base casts through the specified path.

Definition at line 266 of file Store.cpp.

References evalDerivedToBase(), and clang::Result.

◆ evalDerivedToBase() [3/3]

SVal StoreManager::evalDerivedToBase ( SVal  Derived,
QualType  DerivedPtrType,
bool  IsVirtual 
)

Evaluates a derived-to-base cast through a single level of derivation.

Definition at line 275 of file Store.cpp.

References clang::Type::getAsCXXRecordDecl(), clang::ento::SVal::getAsRegion(), clang::ento::MemRegionManager::getCXXBaseObjectRegion(), clang::Type::getPointeeCXXRecordDecl(), and MRMgr.

◆ getBinding()

virtual SVal clang::ento::StoreManager::getBinding ( Store  store,
Loc  loc,
QualType  T = QualType() 
)
pure virtual

Return the value bound to specified location in a given state.

Parameters
[in]storeThe store in which to make the lookup.
[in]locThe symbolic memory location.
[in]TAn optional type that provides a hint indicating the expected type of the returned value. This is used if the value is lazily computed.
Returns
The value bound to the location loc.

Referenced by evalComparison().

◆ getDefaultBinding() [1/2]

std::optional< SVal > clang::ento::StoreManager::getDefaultBinding ( nonloc::LazyCompoundVal  lcv)
inline

Return the default value bound to a LazyCompoundVal.

The default binding is used to represent the value of any fields or elements within the structure represented by the LazyCompoundVal which were not initialized explicitly separately from the whole structure. Default binding may be an unknown, undefined, concrete, or symbolic value.

Parameters
[in]lcvThe lazy compound value.
Returns
The default value bound to the LazyCompoundVal lcv, if a default binding exists.

Definition at line 97 of file Store.h.

References getDefaultBinding(), clang::ento::nonloc::LazyCompoundVal::getRegion(), and clang::ento::nonloc::LazyCompoundVal::getStore().

◆ getDefaultBinding() [2/2]

virtual std::optional< SVal > clang::ento::StoreManager::getDefaultBinding ( Store  store,
const MemRegion R 
)
pure virtual

Return the default value bound to a region in a given store.

The default binding is the value of sub-regions that were not initialized separately from their base region. For example, if the structure is zero-initialized upon construction, this method retrieves the concrete zero value, even if some or all fields were later overwritten manually. Default binding may be an unknown, undefined, concrete, or symbolic value.

Parameters
[in]storeThe store in which to make the lookup.
[in]RThe region to find the default binding for.
Returns
The default value bound to the region in the store, if a default binding exists.

Referenced by getDefaultBinding().

◆ GetElementZeroRegion()

const ElementRegion * StoreManager::GetElementZeroRegion ( const SubRegion R,
QualType  T 
)

◆ getInitialStore()

virtual StoreRef clang::ento::StoreManager::getInitialStore ( const LocationContext InitLoc)
pure virtual

getInitialStore - Returns the initial "empty" store representing the value bindings upon entry to an analyzed function.

◆ getLValueCompoundLiteral()

Loc clang::ento::StoreManager::getLValueCompoundLiteral ( const CompoundLiteralExpr CL,
const LocationContext LC 
)
inline

Definition at line 139 of file Store.h.

References clang::ento::MemRegionManager::getCompoundLiteralRegion(), and MRMgr.

◆ getLValueElement()

SVal StoreManager::getLValueElement ( QualType  elementType,
NonLoc  offset,
SVal  Base 
)
virtual

◆ getLValueField()

virtual SVal clang::ento::StoreManager::getLValueField ( const FieldDecl D,
SVal  Base 
)
inlinevirtual

Definition at line 146 of file Store.h.

◆ getLValueIvar()

SVal StoreManager::getLValueIvar ( const ObjCIvarDecl decl,
SVal  base 
)
virtual

Definition at line 439 of file Store.cpp.

References clang::ast_matchers::decl.

◆ getLValueVar()

virtual Loc clang::ento::StoreManager::getLValueVar ( const VarDecl VD,
const LocationContext LC 
)
inlinevirtual

◆ getRegionManager()

MemRegionManager & clang::ento::StoreManager::getRegionManager ( )
inline

getRegionManager - Returns the internal RegionManager object that is used to query and manipulate MemRegion objects.

Definition at line 131 of file Store.h.

References MRMgr.

◆ getSValBuilder()

SValBuilder & clang::ento::StoreManager::getSValBuilder ( )
inline

Definition at line 133 of file Store.h.

References svalBuilder.

◆ includedInBindings()

virtual bool clang::ento::StoreManager::includedInBindings ( Store  store,
const MemRegion region 
) const
pure virtual

◆ incrementReferenceCount()

virtual void clang::ento::StoreManager::incrementReferenceCount ( Store  store)
inlinevirtual

If the StoreManager supports it, increment the reference count of the specified Store object.

Definition at line 196 of file Store.h.

Referenced by clang::ento::StoreRef::operator=(), clang::ento::ProgramState::ProgramState(), and clang::ento::StoreRef::StoreRef().

◆ invalidateRegions()

virtual StoreRef clang::ento::StoreManager::invalidateRegions ( Store  store,
ArrayRef< SVal Values,
const Expr E,
unsigned  Count,
const LocationContext LCtx,
const CallEvent Call,
InvalidatedSymbols IS,
RegionAndSymbolInvalidationTraits ITraits,
InvalidatedRegions InvalidatedTopLevel,
InvalidatedRegions Invalidated 
)
pure virtual

invalidateRegions - Clears out the specified regions from the store, marking their values as unknown.

Depending on the store, this may also invalidate additional regions that may have changed based on accessing the given regions. Optionally, invalidates non-static globals as well.

Parameters
[in]storeThe initial store
[in]ValuesThe values to invalidate.
[in]EThe current statement being evaluated. Used to conjure symbols to mark the values of invalidated regions.
[in]CountThe current block count. Used to conjure symbols to mark the values of invalidated regions.
[in]CallThe call expression which will be used to determine which globals should get invalidated.
[in,out]ISA set to fill with any symbols that are no longer accessible. Pass NULL if this information will not be used.
[in]ITraitsInformation about invalidation for a particular region/symbol.
[in,out]InvalidatedTopLevelA vector to fill with regions explicitly being invalidated. Pass NULL if this information will not be used.
[in,out]InvalidatedA vector to fill with any regions being invalidated. This should include any regions explicitly invalidated even if they do not currently have bindings. Pass NULL if this information will not be used.

◆ iterBindings()

virtual void clang::ento::StoreManager::iterBindings ( Store  store,
BindingsHandler f 
)
pure virtual

iterBindings - Iterate over the bindings in the Store.

◆ killBinding()

virtual StoreRef clang::ento::StoreManager::killBinding ( Store  ST,
Loc  L 
)
pure virtual

Create a new store with the specified binding removed.

Parameters
STthe original store, that is the basis for the new store.
Lthe location whose binding should be removed.

◆ MakeElementRegion()

const ElementRegion * StoreManager::MakeElementRegion ( const SubRegion baseRegion,
QualType  pointeeTy,
uint64_t  index = 0 
)
protected

◆ printJson()

virtual void clang::ento::StoreManager::printJson ( raw_ostream &  Out,
Store  S,
const char *  NL,
unsigned int  Space,
bool  IsDot 
) const
pure virtual

◆ removeDeadBindings()

virtual StoreRef clang::ento::StoreManager::removeDeadBindings ( Store  store,
const StackFrameContext LCtx,
SymbolReaper SymReaper 
)
pure virtual

◆ scanReachableSymbols()

virtual bool clang::ento::StoreManager::scanReachableSymbols ( Store  S,
const MemRegion R,
ScanReachableSymbols Visitor 
)
pure virtual

Finds the transitive closure of symbols within the given region.

Returns false if the visitor aborted the scan.

Referenced by clang::ento::ScanReachableSymbols::scan().

Member Data Documentation

◆ Ctx

ASTContext& clang::ento::StoreManager::Ctx
protected

Definition at line 60 of file Store.h.

Referenced by castRegion(), GetElementZeroRegion(), and getLValueElement().

◆ MRMgr

MemRegionManager& clang::ento::StoreManager::MRMgr
protected

MRMgr - Manages region objects associated with this StoreManager.

Definition at line 59 of file Store.h.

Referenced by evalBaseToDerived(), evalDerivedToBase(), GetElementZeroRegion(), getLValueCompoundLiteral(), getLValueElement(), getLValueVar(), getRegionManager(), and MakeElementRegion().

◆ StateMgr

ProgramStateManager& clang::ento::StoreManager::StateMgr
protected

Definition at line 56 of file Store.h.

Referenced by castRegion().

◆ svalBuilder

SValBuilder& clang::ento::StoreManager::svalBuilder
protected

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