Home
last modified time | relevance | path

Searched refs:StoreRef (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h29 class StoreRef {
34 StoreRef(Store store, StoreManager &smgr);
35 StoreRef(const StoreRef &sr);
36 StoreRef &operator=(StoreRef const &newStore);
37 ~StoreRef();
39 bool operator==(const StoreRef &x) const {
44 bool operator!=(const StoreRef &x) const { return !operator==(x); }
H A DStore.h108 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
113 virtual StoreRef BindDefaultInitial(Store store, const MemRegion *R,
118 virtual StoreRef BindDefaultZero(Store store, const MemRegion *R) = 0;
123 virtual StoreRef killBinding(Store ST, Loc L) = 0;
127 virtual StoreRef getInitialStore(const LocationContext *InitLoc) = 0;
188 virtual StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx,
228 virtual StoreRef invalidateRegions(
236 StoreRef enterStackFrame(Store store,
285 inline StoreRef::StoreRef(Store store, StoreManager & smgr) in StoreRef() function
291 inline StoreRef::StoreRef(const StoreRef &sr) in StoreRef() function
[all …]
H A DBasicValueFactory.h63 StoreRef store;
67 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) in LazyCompoundValData()
80 const StoreRef &store,
247 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
H A DSValBuilder.h51 class StoreRef; variable
266 NonLoc makeLazyCompoundVal(const StoreRef &store, in makeLazyCompoundVal()
H A DProgramState.h129 ProgramStateRef makeWithStore(const StoreRef &store) const;
131 void setStore(const StoreRef &storeRef);
136 StoreRef st, GenericDataMap gdm);
H A DSymbolManager.h596 StoreRef reapedStore;
653 void setReapedStore(StoreRef st) { reapedStore = st; } in setReapedStore()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp48 StoreRef st, GenericDataMap gdm) in ProgramState()
106 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore()
133 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultInitial(getStore(), R, V); in bindDefaultInitial()
142 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); in bindDefaultZero()
200 const StoreRef &newStore in invalidateRegionsImpl()
220 const StoreRef &newStore = in killBinding()
246 const StoreRef &NewStore = in enterStackFrame()
447 ProgramStateRef ProgramState::makeWithStore(const StoreRef &store) const { in makeWithStore()
459 void ProgramState::setStore(const StoreRef &newStore) { in setStore()
H A DRegionStore.cpp396 StoreRef getInitialStore(const LocationContext *InitLoc) override { in getInitialStore()
400 return StoreRef(RegionBindingsRef( in getInitialStore()
415 StoreRef invalidateRegions(Store store,
442 StoreRef Bind(Store store, Loc LV, SVal V) override { in Bind()
443 return StoreRef(bind(getRegionBindings(store), LV, V).asStore(), *this); in Bind()
450 StoreRef BindDefaultInitial(Store store, const MemRegion *R, in BindDefaultInitial()
458 return StoreRef(B.asImmutableMap().getRootWithoutRetain(), *this); in BindDefaultInitial()
463 StoreRef BindDefaultZero(Store store, const MemRegion *R) override { in BindDefaultZero()
475 return StoreRef(store, *this); in BindDefaultZero()
481 return StoreRef(B.asImmutableMap().getRootWithoutRetain(), *this); in BindDefaultZero()
[all …]
H A DStore.cpp46 StoreRef StoreManager::enterStackFrame(Store OldStore, in enterStackFrame()
49 StoreRef Store = StoreRef(OldStore, *this); in enterStackFrame()