Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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(Store store,
240 StoreRef enterStackFrame(Store store,
289 inline StoreRef::StoreRef(Store store, StoreManager & smgr) in StoreRef() function
295 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
245 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.h595 StoreRef reapedStore;
653 void setReapedStore(StoreRef st) { reapedStore = st; } in setReapedStore()
/openbsd-src/gnu/llvm/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()
201 const StoreRef &newStore in invalidateRegionsImpl()
221 const StoreRef &newStore = in killBinding()
233 const StoreRef &NewStore = in enterStackFrame()
434 ProgramStateRef ProgramState::makeWithStore(const StoreRef &store) const { in makeWithStore()
446 void ProgramState::setStore(const StoreRef &newStore) { in setStore()
H A DRegionStore.cpp394 StoreRef getInitialStore(const LocationContext *InitLoc) override { in getInitialStore()
398 return StoreRef(RegionBindingsRef( in getInitialStore()
413 StoreRef invalidateRegions(Store store,
440 StoreRef Bind(Store store, Loc LV, SVal V) override { in Bind()
441 return StoreRef(bind(getRegionBindings(store), LV, V).asStore(), *this); in Bind()
448 StoreRef BindDefaultInitial(Store store, const MemRegion *R, in BindDefaultInitial()
456 return StoreRef(B.asImmutableMap().getRootWithoutRetain(), *this); in BindDefaultInitial()
461 StoreRef BindDefaultZero(Store store, const MemRegion *R) override { in BindDefaultZero()
473 return StoreRef(store, *this); in BindDefaultZero()
479 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()
H A DBasicValueFactory.cpp39 const StoreRef &store, in Profile()
144 BasicValueFactory::getLazyCompoundValData(const StoreRef &store, in getLazyCompoundValData()
/openbsd-src/gnu/llvm/clang/docs/tools/
H A Dclang-formatted-files.txt243 clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h