Home
last modified time | relevance | path

Searched refs:StoreMgr (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp84 StoreMgr = (*CreateSMgr)(*this); in ProgramStateManager()
111 StoreRef newStore = StoreMgr->removeDeadBindings(NewState.getStore(), LCtx, in removeDeadBindings()
125 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(), in bindLoc()
148 const StoreRef &newStore = Mgr.StoreMgr->BindDefaultZero(getStore(), R); in bindDefaultZero()
208 = Mgr.StoreMgr->invalidateRegions(getStore(), Values, E, Count, LCtx, Call, in invalidateRegionsImpl()
230 getStateManager().StoreMgr->killBinding(OldStore, LV); in killBinding()
390 StoreMgr->getInitialStore(InitLoc), in getInitialState()
549 StoreManager &StoreMgr = state->getStateManager().getStoreManager(); in scan() local
554 return StoreMgr.scanReachableSymbols(val.getStore(), R, *this); in scan()
627 StoreManager &StoreMgr = state->getStateManager().getStoreManager(); in scan() local
[all …]
H A DExprEngineCallAndReturn.cpp127 StoreManager &StoreMgr) { in adjustReturnValue() argument
151 return StoreMgr.evalDerivedToBase(V, Paths.front()); in adjustReturnValue()
H A DExprEngine.cpp325 StoreManager &StoreMgr = StateMgr.getStoreManager(); in createTemporaryRegionIfNeeded() local
387 Reg = StoreMgr.evalDerivedToBase(Reg, Adj.DerivedToBase.BasePath); in createTemporaryRegionIfNeeded()
390 Reg = StoreMgr.getLValueField(Adj.Field, Reg); in createTemporaryRegionIfNeeded()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h499 std::unique_ptr<StoreManager> StoreMgr; variable
564 StoreManager &getStoreManager() { return *StoreMgr; } in getStoreManager()
575 return StoreMgr->ArrayToPointer(Array, ElementTy); in ArrayToPointer()
585 StoreMgr->iterBindings(state->getStore(), F); in iterBindings()
757 return getStateManager().StoreMgr->getLValueVar(VD, LC); in getLValue()
762 return getStateManager().StoreMgr->getLValueCompoundLiteral(literal, LC); in getLValue()
766 return getStateManager().StoreMgr->getLValueIvar(D, Base); in getLValue()
770 return getStateManager().StoreMgr->getLValueField(D, Base); in getLValue()
775 StoreManager &SM = *getStateManager().StoreMgr; in getLValue()
809 return getStateManager().StoreMgr->getBinding(getStore(), LV, T); in getRawSVal()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp205 StoreManager &StoreMgr; member in __anon88e10e860211::FindUninitializedField
212 : StoreMgr(storeMgr), MrMgr(mrMgr), store(s) {} in FindUninitializedField()
227 const SVal &V = StoreMgr.getBinding(store, loc::MemRegionVal(FR)); in Find()