Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp113 NewState.setStore(newStore); in removeDeadBindings()
114 SymReaper.setReapedStore(newStore); in removeDeadBindings()
140 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultInitial()
149 ProgramStateRef new_state = makeWithStore(newStore); in bindDefaultZero()
207 const StoreRef &newStore in invalidateRegionsImpl() local
212 ProgramStateRef newState = makeWithStore(newStore); in invalidateRegionsImpl()
229 const StoreRef &newStore = in killBinding() local
232 if (newStore.getStore() == OldStore) in killBinding()
235 return makeWithStore(newStore); in killBinding()
432 void ProgramState::setStore(const StoreRef &newStore) { in setStore() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h319 inline StoreRef &StoreRef::operator=(StoreRef const &newStore) {
320 assert(&newStore.mgr == &mgr);
321 if (store != newStore.store) {
322 mgr.incrementReferenceCount(newStore.store);
324 store = newStore.getStore();
H A DStoreRef.h37 StoreRef &operator=(StoreRef const &newStore);