| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | Store.cpp | 42 StoreManager::StoreManager(ProgramStateManager &stateMgr) in StoreManager() function in StoreManager 46 StoreRef StoreManager::enterStackFrame(Store OldStore, in enterStackFrame() 60 const ElementRegion *StoreManager::MakeElementRegion(const SubRegion *Base, in MakeElementRegion() 67 const ElementRegion *StoreManager::GetElementZeroRegion(const SubRegion *R, in GetElementZeroRegion() 74 std::optional<const MemRegion *> StoreManager::castRegion(const MemRegion *R, in castRegion() 251 SVal StoreManager::evalDerivedToBase(SVal Derived, const CastExpr *Cast) { in evalDerivedToBase() 267 SVal StoreManager::evalDerivedToBase(SVal Derived, const CXXBasePath &Path) { in evalDerivedToBase() 276 SVal StoreManager::evalDerivedToBase(SVal Derived, QualType BaseType, in evalDerivedToBase() 317 std::optional<SVal> StoreManager::evalBaseToDerived(SVal Base, in evalBaseToDerived() 399 SVal StoreManager::getLValueFieldOrIvar(const Decl *D, SVal Base) { in getLValueFieldOrIvar() [all …]
|
| H A D | ProgramState.cpp | 199 StoreManager::InvalidatedRegions TopLevelInvalidated; in invalidateRegionsImpl() 200 StoreManager::InvalidatedRegions Invalidated; in invalidateRegionsImpl() 550 StoreManager &StoreMgr = state->getStateManager().getStoreManager(); in scan() 625 StoreManager &StoreMgr = state->getStateManager().getStoreManager(); in scan()
|
| H A D | RegionStore.cpp | 331 class RegionStoreManager : public StoreManager { 370 : StoreManager(mgr), RBFactory(mgr.getAllocator()), in RegionStoreManager() 670 std::unique_ptr<StoreManager> 987 StoreManager::InvalidatedRegions *Regions; 997 StoreManager::InvalidatedRegions *r, in InvalidateRegionsWorker()
|
| H A D | ExprEngineCallAndReturn.cpp | 131 StoreManager &StoreMgr) { in adjustReturnValue()
|
| H A D | BugReporterVisitors.cpp | 1685 const StoreManager &SM = BRC.getStateManager().getStoreManager(); in VisitNode() 1730 StoreManager::FindUniqueBinding FB(V.getAsLocSymbol()); in VisitNode()
|
| H A D | ExprEngine.cpp | 349 StoreManager &StoreMgr = StateMgr.getStoreManager(); in createTemporaryRegionIfNeeded()
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | StoreRef.h | 21 class StoreManager; variable 31 StoreManager &mgr; 34 StoreRef(Store store, StoreManager &smgr); 47 const StoreManager &getStoreManager() const { return mgr; } in getStoreManager()
|
| H A D | Store.h | 53 class StoreManager { 62 StoreManager(ProgramStateManager &stateMgr); 65 virtual ~StoreManager() = default; 258 virtual bool HandleBinding(StoreManager& SMgr, Store store, 272 bool HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R, 289 inline StoreRef::StoreRef(Store store, StoreManager & smgr) in StoreRef() 318 std::unique_ptr<StoreManager>
|
| H A D | ProgramState.h | 44 typedef std::unique_ptr<StoreManager>(*StoreManagerCreator)( 511 std::unique_ptr<StoreManager> StoreMgr; 579 StoreManager &getStoreManager() { return *StoreMgr; } in getStoreManager() 600 void iterBindings(ProgramStateRef state, StoreManager::BindingsHandler& F) { in iterBindings() 791 StoreManager &SM = *getStateManager().StoreMgr; in getLValue()
|
| H A D | CheckerContext.h | 64 StoreManager &getStoreManager() { in getStoreManager()
|
| H A D | SymbolManager.h | 38 class StoreManager; variable 607 SymbolManager &symmgr, StoreManager &storeMgr) in SymbolReaper()
|
| H A D | ExprEngine.h | 420 StoreManager &getStoreManager() { return StateMgr.getStoreManager(); } in getStoreManager()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StackAddrEscapeChecker.cpp | 294 class CallBack : public StoreManager::BindingsHandler { in checkEndFunction() 330 bool HandleBinding(StoreManager &SMgr, Store S, const MemRegion *Region, in checkEndFunction()
|
| H A D | CallAndMessageChecker.cpp | 244 StoreManager &StoreMgr; 249 FindUninitializedField(StoreManager &storeMgr, MemRegionManager &mrMgr, in FindUninitializedField()
|
| H A D | MacOSKeychainAPIChecker.cpp | 214 StoreManager& SM = C.getStoreManager(); in getAsPointeeSymbol()
|
| H A D | MallocChecker.cpp | 741 class OwnershipBindingsHandler : public StoreManager::BindingsHandler { 749 bool HandleBinding(StoreManager &SMgr, Store Store, const MemRegion *Region, in HandleBinding()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountDiagnostics.cpp | 616 class VarBindingsCollector : public StoreManager::BindingsHandler { 624 bool HandleBinding(StoreManager &SMgr, Store Store, const MemRegion *R, in HandleBinding() 685 StoreManager::FindUniqueBinding FB(Sym); in GetAllocationSite()
|
| /openbsd-src/gnu/llvm/clang/docs/analyzer/developer-docs/ |
| H A D | RegionStore.rst | 6 can modify the store is its associated StoreManager. 8 Currently (Feb. 2013), the only StoreManager implementation being used is
|