Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h317 inline StoreRef &StoreRef::operator=(StoreRef const &newStore) {
318 assert(&newStore.mgr == &mgr);
319 if (store != newStore.store) {
320 mgr.incrementReferenceCount(newStore.store);
322 store = newStore.getStore();
H A DStoreRef.h36 StoreRef &operator=(StoreRef const &newStore);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp105 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindingsFromEnvironmentAndStore() local
107 NewState.setStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
108 SymReaper.setReapedStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
199 const StoreRef &newStore = in killBinding() local
202 if (newStore.getStore() == OldStore) in killBinding()
205 return makeWithStore(newStore); in killBinding()
457 void ProgramState::setStore(const StoreRef &newStore) { in setStore() argument
458 Store newStoreStore = newStore.getStore(); in setStore()