Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.h107 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
112 virtual StoreRef BindDefaultInitial(Store store, const MemRegion *R,
117 virtual StoreRef BindDefaultZero(Store store, const MemRegion *R) = 0;
122 virtual StoreRef killBinding(Store ST, Loc L) = 0;
126 virtual StoreRef getInitialStore(const LocationContext *InitLoc) = 0;
227 virtual StoreRef invalidateRegions(Store store,
239 StoreRef enterStackFrame(Store store,
288 inline StoreRef::StoreRef(Store store, StoreManager & smgr) in StoreRef() function
294 inline StoreRef::StoreRef(const StoreRef &sr) in StoreRef() function
301 inline StoreRef::~StoreRef() { in ~StoreRef()
[all …]
H A DBasicValueFactory.h63 StoreRef store;
67 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) in LazyCompoundValData()
80 const StoreRef &store,
241 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
H A DSValBuilder.h51 class StoreRef; variable
245 NonLoc makeLazyCompoundVal(const StoreRef &store, in makeLazyCompoundVal()
H A DProgramState.h128 ProgramStateRef makeWithStore(const StoreRef &store) const;
130 void setStore(const StoreRef &storeRef);
135 StoreRef st, GenericDataMap gdm);
H A DSymbolManager.h590 StoreRef reapedStore;
647 void setReapedStore(StoreRef st) { reapedStore = st; } in setReapedStore()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp47 StoreRef st, GenericDataMap gdm) in ProgramState()
105 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore()
132 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultInitial(getStore(), R, V); in bindDefaultInitial()
141 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); in bindDefaultZero()
200 const StoreRef &newStore in invalidateRegionsImpl()
222 const StoreRef &newStore = in killBinding()
234 const StoreRef &NewStore = in enterStackFrame()
435 ProgramStateRef ProgramState::makeWithStore(const StoreRef &store) const { in makeWithStore()
447 void ProgramState::setStore(const StoreRef &newStore) { in setStore()
H A DRegionStore.cpp394 return StoreRef(RegionBindingsRef( in getInitialStore()
409 StoreRef invalidateRegions(Store store,
436 StoreRef Bind(Store store, Loc LV, SVal V) override { in Bind()
444 StoreRef BindDefaultInitial(Store store, const MemRegion *R, in BindDefaultInitial()
469 return StoreRef(store, *this); in BindDefaultZero()
519 StoreRef killBinding(Store ST, Loc L) override;
1314 StoreRef
1366 return StoreRef(B.asStore(), *this); in invalidateRegions()
2361 StoreRef RegionStoreManager::killBinding(Store ST, Loc L) { in killBinding()
2369 return StoreRef(ST, *this); in killBinding()
[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()
/llvm-project-15.0.7/clang/docs/tools/
H A Dclang-formatted-files.txt245 clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h