Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DProgramState.cpp105 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindings() local
107 NewState.setStore(newStore); in removeDeadBindings()
108 SymReaper.setReapedStore(newStore); in removeDeadBindings()
128 const StoreRef &newStore = Mgr.StoreMgr->BindDefault(getStore(), R, V); in bindDefault() local
129 ProgramStateRef new_state = makeWithStore(newStore); in bindDefault()
190 const StoreRef &newStore in invalidateRegionsImpl() local
195 ProgramStateRef newState = makeWithStore(newStore); in invalidateRegionsImpl()
208 const StoreRef &newStore = in invalidateRegionsImpl() local
211 return makeWithStore(newStore); in invalidateRegionsImpl()
218 const StoreRef &newStore = in killBinding() local
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DStore.h268 inline StoreRef &StoreRef::operator=(StoreRef const &newStore) {
269 assert(&newStore.mgr == &mgr);
270 if (store != newStore.store) {
271 mgr.incrementReferenceCount(newStore.store);
273 store = newStore.getStore();