Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp108 NewState.setStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
109 SymReaper.setReapedStore(newStore); in removeDeadBindingsFromEnvironmentAndStore()
134 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultInitial()
143 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultZero()
200 const StoreRef &newStore in invalidateRegionsImpl() local
205 ProgramStateRef newState = makeWithStore(newStore); in invalidateRegionsImpl()
220 const StoreRef &newStore = in killBinding() local
223 if (newStore.getStore() == OldStore) in killBinding()
226 return makeWithStore(newStore); in killBinding()
445 void ProgramState::setStore(const StoreRef &newStore) { in setStore() argument
[all …]
/freebsd-14.2/contrib/llvm-project/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);