Home
last modified time | relevance | path

Searched refs:newStore (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp106 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore() local
108 NewState.setStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
109 SymReaper.setReapedStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
133 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultInitial(getStore(), R, V); in bindDefaultInitial() local
134 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultInitial()
142 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); in bindDefaultZero() local
143 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultZero()
201 const StoreRef &newStore in invalidateRegionsImpl() local
206 ProgramStateRef newState = makeWithStore(newStore); in invalidateRegionsImpl()
221 const StoreRef &newStore = in killBinding() local
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h307 inline StoreRef &StoreRef::operator=(StoreRef const &newStore) {
308 assert(&newStore.mgr == &mgr);
309 if (store != newStore.store) {
310 mgr.incrementReferenceCount(newStore.store);
312 store = newStore.getStore();
H A DStoreRef.h36 StoreRef &operator=(StoreRef const &newStore);