Searched refs:StoreRef (Results 1 – 10 of 10) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | StoreRef.h | 29 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 D | Store.h | 107 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 D | BasicValueFactory.h | 64 StoreRef store; 68 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) in LazyCompoundValData() 77 const StoreRef &store, 244 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
|
| H A D | SValBuilder.h | 50 class StoreRef; variable 276 NonLoc makeLazyCompoundVal(const StoreRef &store, in makeLazyCompoundVal()
|
| H A D | ProgramState.h | 92 ProgramStateRef makeWithStore(const StoreRef &store) const; 94 void setStore(const StoreRef &storeRef); 99 StoreRef st, GenericDataMap gdm);
|
| H A D | SymbolManager.h | 523 StoreRef reapedStore; 579 void setReapedStore(StoreRef st) { reapedStore = st; } in setReapedStore()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ProgramState.cpp | 47 StoreRef st, GenericDataMap gdm) in ProgramState() 109 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore() 136 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultInitial(getStore(), R, V); in bindDefaultInitial() 145 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); in bindDefaultZero() 204 const StoreRef &newStore in invalidateRegionsImpl() 226 const StoreRef &newStore = in killBinding() 238 const StoreRef &NewStore = in enterStackFrame() 430 ProgramStateRef ProgramState::makeWithStore(const StoreRef &store) const { in makeWithStore() 436 void ProgramState::setStore(const StoreRef &newStore) { in setStore()
|
| H A D | RegionStore.cpp | 410 return StoreRef(RegionBindingsRef( in getInitialStore() 425 StoreRef invalidateRegions(Store store, 443 StoreRef Bind(Store store, Loc LV, SVal V) override { in Bind() 451 StoreRef BindDefaultInitial(Store store, const MemRegion *R, in BindDefaultInitial() 476 return StoreRef(store, *this); in BindDefaultZero() 521 StoreRef killBinding(Store ST, Loc L) override; 1325 StoreRef 1377 return StoreRef(B.asStore(), *this); in invalidateRegions() 2111 StoreRef RegionStoreManager::killBinding(Store ST, Loc L) { in killBinding() 2119 return StoreRef(ST, *this); in killBinding() [all …]
|
| H A D | Store.cpp | 46 StoreRef StoreManager::enterStackFrame(Store OldStore, in enterStackFrame() 49 StoreRef Store = StoreRef(OldStore, *this); in enterStackFrame()
|
| H A D | BasicValueFactory.cpp | 39 const StoreRef &store, in Profile() 144 BasicValueFactory::getLazyCompoundValData(const StoreRef &store, in getLazyCompoundValData()
|