1 //== ProgramState.h - Path-sensitive "State" for tracking values -*- C++ -*--=//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines the state of the program along the analysis path.
10 //
11 //===----------------------------------------------------------------------===//
12
13 #ifndef LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_PROGRAMSTATE_H
14 #define LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_PROGRAMSTATE_H
15
16 #include "clang/Basic/LLVM.h"
17 #include "clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h"
18 #include "clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h"
19 #include "clang/StaticAnalyzer/Core/PathSensitive/Environment.h"
20 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h"
21 #include "clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h"
22 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"
23 #include "llvm/ADT/FoldingSet.h"
24 #include "llvm/ADT/ImmutableMap.h"
25 #include "llvm/Support/Allocator.h"
26 #include <optional>
27 #include <utility>
28
29 namespace llvm {
30 class APSInt;
31 }
32
33 namespace clang {
34 class ASTContext;
35
36 namespace ento {
37
38 class AnalysisManager;
39 class CallEvent;
40 class CallEventManager;
41
42 typedef std::unique_ptr<ConstraintManager>(*ConstraintManagerCreator)(
43 ProgramStateManager &, ExprEngine *);
44 typedef std::unique_ptr<StoreManager>(*StoreManagerCreator)(
45 ProgramStateManager &);
46
47 //===----------------------------------------------------------------------===//
48 // ProgramStateTrait - Traits used by the Generic Data Map of a ProgramState.
49 //===----------------------------------------------------------------------===//
50
51 template <typename T> struct ProgramStateTrait {
52 typedef typename T::data_type data_type;
MakeVoidPtrProgramStateTrait53 static inline void *MakeVoidPtr(data_type D) { return (void*) D; }
MakeDataProgramStateTrait54 static inline data_type MakeData(void *const* P) {
55 return P ? (data_type) *P : (data_type) 0;
56 }
57 };
58
59 /// \class ProgramState
60 /// ProgramState - This class encapsulates:
61 ///
62 /// 1. A mapping from expressions to values (Environment)
63 /// 2. A mapping from locations to values (Store)
64 /// 3. Constraints on symbolic values (GenericDataMap)
65 ///
66 /// Together these represent the "abstract state" of a program.
67 ///
68 /// ProgramState is intended to be used as a functional object; that is,
69 /// once it is created and made "persistent" in a FoldingSet, its
70 /// values will never change.
71 class ProgramState : public llvm::FoldingSetNode {
72 public:
73 typedef llvm::ImmutableMap<void*, void*> GenericDataMap;
74
75 private:
76 void operator=(const ProgramState& R) = delete;
77
78 friend class ProgramStateManager;
79 friend class ExplodedGraph;
80 friend class ExplodedNode;
81 friend class NodeBuilder;
82
83 ProgramStateManager *stateMgr;
84 Environment Env; // Maps a Stmt to its current SVal.
85 Store store; // Maps a location to its current value.
86 GenericDataMap GDM; // Custom data stored by a client of this class.
87
88 // A state is infeasible if there is a contradiction among the constraints.
89 // An infeasible state is represented by a `nullptr`.
90 // In the sense of `assumeDual`, a state can have two children by adding a
91 // new constraint and the negation of that new constraint. A parent state is
92 // over-constrained if both of its children are infeasible. In the
93 // mathematical sense, it means that the parent is infeasible and we should
94 // have realized that at the moment when we have created it. However, we
95 // could not recognize that because of the imperfection of the underlying
96 // constraint solver. We say it is posteriorly over-constrained because we
97 // recognize that a parent is infeasible only *after* a new and more specific
98 // constraint and its negation are evaluated.
99 //
100 // Example:
101 //
102 // x * x = 4 and x is in the range [0, 1]
103 // This is an already infeasible state, but the constraint solver is not
104 // capable of handling sqrt, thus we don't know it yet.
105 //
106 // Then a new constraint `x = 0` is added. At this moment the constraint
107 // solver re-evaluates the existing constraints and realizes the
108 // contradiction `0 * 0 = 4`.
109 // We also evaluate the negated constraint `x != 0`; the constraint solver
110 // deduces `x = 1` and then realizes the contradiction `1 * 1 = 4`.
111 // Both children are infeasible, thus the parent state is marked as
112 // posteriorly over-constrained. These parents are handled with special care:
113 // we do not allow transitions to exploded nodes with such states.
114 bool PosteriorlyOverconstrained = false;
115 // Make internal constraint solver entities friends so they can access the
116 // overconstrained-related functions. We want to keep this API inaccessible
117 // for Checkers.
118 friend class ConstraintManager;
isPosteriorlyOverconstrained()119 bool isPosteriorlyOverconstrained() const {
120 return PosteriorlyOverconstrained;
121 }
122 ProgramStateRef cloneAsPosteriorlyOverconstrained() const;
123
124 unsigned refCount;
125
126 /// makeWithStore - Return a ProgramState with the same values as the current
127 /// state with the exception of using the specified Store.
128 ProgramStateRef makeWithStore(const StoreRef &store) const;
129 ProgramStateRef makeWithStore(const BindResult &BindRes) const;
130
131 void setStore(const StoreRef &storeRef);
132
133 public:
134 /// This ctor is used when creating the first ProgramState object.
135 ProgramState(ProgramStateManager *mgr, const Environment& env,
136 StoreRef st, GenericDataMap gdm);
137
138 /// Copy ctor - We must explicitly define this or else the "Next" ptr
139 /// in FoldingSetNode will also get copied.
140 ProgramState(const ProgramState &RHS);
141
142 ~ProgramState();
143
144 int64_t getID() const;
145
146 /// Return the ProgramStateManager associated with this state.
getStateManager()147 ProgramStateManager &getStateManager() const {
148 return *stateMgr;
149 }
150
151 AnalysisManager &getAnalysisManager() const;
152
153 /// Return the ConstraintManager.
154 ConstraintManager &getConstraintManager() const;
155
156 /// getEnvironment - Return the environment associated with this state.
157 /// The environment is the mapping from expressions to values.
getEnvironment()158 const Environment& getEnvironment() const { return Env; }
159
160 /// Return the store associated with this state. The store
161 /// is a mapping from locations to values.
getStore()162 Store getStore() const { return store; }
163
164 /// getGDM - Return the generic data map associated with this state.
getGDM()165 GenericDataMap getGDM() const { return GDM; }
166
setGDM(GenericDataMap gdm)167 void setGDM(GenericDataMap gdm) { GDM = gdm; }
168
169 /// Profile - Profile the contents of a ProgramState object for use in a
170 /// FoldingSet. Two ProgramState objects are considered equal if they
171 /// have the same Environment, Store, and GenericDataMap.
Profile(llvm::FoldingSetNodeID & ID,const ProgramState * V)172 static void Profile(llvm::FoldingSetNodeID& ID, const ProgramState *V) {
173 V->Env.Profile(ID);
174 ID.AddPointer(V->store);
175 V->GDM.Profile(ID);
176 ID.AddBoolean(V->PosteriorlyOverconstrained);
177 }
178
179 /// Profile - Used to profile the contents of this object for inclusion
180 /// in a FoldingSet.
Profile(llvm::FoldingSetNodeID & ID)181 void Profile(llvm::FoldingSetNodeID& ID) const {
182 Profile(ID, this);
183 }
184
185 BasicValueFactory &getBasicVals() const;
186 SymbolManager &getSymbolManager() const;
187
188 //==---------------------------------------------------------------------==//
189 // Constraints on values.
190 //==---------------------------------------------------------------------==//
191 //
192 // Each ProgramState records constraints on symbolic values. These constraints
193 // are managed using the ConstraintManager associated with a ProgramStateManager.
194 // As constraints gradually accrue on symbolic values, added constraints
195 // may conflict and indicate that a state is infeasible (as no real values
196 // could satisfy all the constraints). This is the principal mechanism
197 // for modeling path-sensitivity in ExprEngine/ProgramState.
198 //
199 // Various "assume" methods form the interface for adding constraints to
200 // symbolic values. A call to 'assume' indicates an assumption being placed
201 // on one or symbolic values. 'assume' methods take the following inputs:
202 //
203 // (1) A ProgramState object representing the current state.
204 //
205 // (2) The assumed constraint (which is specific to a given "assume" method).
206 //
207 // (3) A binary value "Assumption" that indicates whether the constraint is
208 // assumed to be true or false.
209 //
210 // The output of "assume*" is a new ProgramState object with the added constraints.
211 // If no new state is feasible, NULL is returned.
212 //
213
214 /// Assumes that the value of \p cond is zero (if \p assumption is "false")
215 /// or non-zero (if \p assumption is "true").
216 ///
217 /// This returns a new state with the added constraint on \p cond.
218 /// If no new state is feasible, NULL is returned.
219 [[nodiscard]] ProgramStateRef assume(DefinedOrUnknownSVal cond,
220 bool assumption) const;
221
222 /// Assumes both "true" and "false" for \p cond, and returns both
223 /// corresponding states (respectively).
224 ///
225 /// This is more efficient than calling assume() twice. Note that one (but not
226 /// both) of the returned states may be NULL.
227 [[nodiscard]] std::pair<ProgramStateRef, ProgramStateRef>
228 assume(DefinedOrUnknownSVal cond) const;
229
230 [[nodiscard]] std::pair<ProgramStateRef, ProgramStateRef>
231 assumeInBoundDual(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound,
232 QualType IndexType = QualType()) const;
233
234 [[nodiscard]] ProgramStateRef
235 assumeInBound(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound,
236 bool assumption, QualType IndexType = QualType()) const;
237
238 /// Assumes that the value of \p Val is bounded with [\p From; \p To]
239 /// (if \p assumption is "true") or it is fully out of this range
240 /// (if \p assumption is "false").
241 ///
242 /// This returns a new state with the added constraint on \p cond.
243 /// If no new state is feasible, NULL is returned.
244 [[nodiscard]] ProgramStateRef assumeInclusiveRange(DefinedOrUnknownSVal Val,
245 const llvm::APSInt &From,
246 const llvm::APSInt &To,
247 bool assumption) const;
248
249 /// Assumes given range both "true" and "false" for \p Val, and returns both
250 /// corresponding states (respectively).
251 ///
252 /// This is more efficient than calling assume() twice. Note that one (but not
253 /// both) of the returned states may be NULL.
254 [[nodiscard]] std::pair<ProgramStateRef, ProgramStateRef>
255 assumeInclusiveRange(DefinedOrUnknownSVal Val, const llvm::APSInt &From,
256 const llvm::APSInt &To) const;
257
258 /// Check if the given SVal is not constrained to zero and is not
259 /// a zero constant.
260 ConditionTruthVal isNonNull(SVal V) const;
261
262 /// Check if the given SVal is constrained to zero or is a zero
263 /// constant.
264 ConditionTruthVal isNull(SVal V) const;
265
266 /// \return Whether values \p Lhs and \p Rhs are equal.
267 ConditionTruthVal areEqual(SVal Lhs, SVal Rhs) const;
268
269 /// Utility method for getting regions.
270 LLVM_ATTRIBUTE_RETURNS_NONNULL
271 const VarRegion* getRegion(const VarDecl *D, const LocationContext *LC) const;
272
273 //==---------------------------------------------------------------------==//
274 // Binding and retrieving values to/from the environment and symbolic store.
275 //==---------------------------------------------------------------------==//
276
277 /// Create a new state by binding the value 'V' to the statement 'S' in the
278 /// state's environment.
279 [[nodiscard]] ProgramStateRef BindExpr(const Stmt *S,
280 const LocationContext *LCtx, SVal V,
281 bool Invalidate = true) const;
282
283 [[nodiscard]] ProgramStateRef bindLoc(Loc location, SVal V,
284 const LocationContext *LCtx,
285 bool notifyChanges = true) const;
286
287 [[nodiscard]] ProgramStateRef bindLoc(SVal location, SVal V,
288 const LocationContext *LCtx) const;
289
290 /// Initializes the region of memory represented by \p loc with an initial
291 /// value. Once initialized, all values loaded from any sub-regions of that
292 /// region will be equal to \p V, unless overwritten later by the program.
293 /// This method should not be used on regions that are already initialized.
294 /// If you need to indicate that memory contents have suddenly become unknown
295 /// within a certain region of memory, consider invalidateRegions().
296 [[nodiscard]] ProgramStateRef
297 bindDefaultInitial(SVal loc, SVal V, const LocationContext *LCtx) const;
298
299 /// Performs C++ zero-initialization procedure on the region of memory
300 /// represented by \p loc.
301 [[nodiscard]] ProgramStateRef
302 bindDefaultZero(SVal loc, const LocationContext *LCtx) const;
303
304 [[nodiscard]] ProgramStateRef killBinding(Loc LV) const;
305
306 /// Returns the state with bindings for the given regions cleared from the
307 /// store. If \p Call is non-null, also invalidates global regions (but if
308 /// \p Call is from a system header, then this is limited to globals declared
309 /// in system headers).
310 ///
311 /// This calls the lower-level method \c StoreManager::invalidateRegions to
312 /// do the actual invalidation, then calls the checker callbacks which should
313 /// be triggered by this event.
314 ///
315 /// \param Regions the set of regions to be invalidated.
316 /// \param Elem The CFG Element that caused the invalidation.
317 /// \param BlockCount The number of times the current basic block has been
318 /// visited.
319 /// \param CausesPointerEscape the flag is set to true when the invalidation
320 /// entails escape of a symbol (representing a pointer). For example,
321 /// due to it being passed as an argument in a call.
322 /// \param IS the set of invalidated symbols.
323 /// \param Call if non-null, the invalidated regions represent parameters to
324 /// the call and should be considered directly invalidated.
325 /// \param ITraits information about special handling for particular regions
326 /// or symbols.
327 [[nodiscard]] ProgramStateRef
328 invalidateRegions(ArrayRef<const MemRegion *> Regions,
329 ConstCFGElementRef Elem, unsigned BlockCount,
330 const LocationContext *LCtx, bool CausesPointerEscape,
331 InvalidatedSymbols *IS = nullptr,
332 const CallEvent *Call = nullptr,
333 RegionAndSymbolInvalidationTraits *ITraits = nullptr) const;
334
335 [[nodiscard]] ProgramStateRef
336 invalidateRegions(ArrayRef<SVal> Values, ConstCFGElementRef Elem,
337 unsigned BlockCount, const LocationContext *LCtx,
338 bool CausesPointerEscape, InvalidatedSymbols *IS = nullptr,
339 const CallEvent *Call = nullptr,
340 RegionAndSymbolInvalidationTraits *ITraits = nullptr) const;
341
342 /// enterStackFrame - Returns the state for entry to the given stack frame,
343 /// preserving the current state.
344 [[nodiscard]] ProgramStateRef
345 enterStackFrame(const CallEvent &Call,
346 const StackFrameContext *CalleeCtx) const;
347
348 /// Return the value of 'self' if available in the given context.
349 SVal getSelfSVal(const LocationContext *LC) const;
350
351 /// Get the lvalue for a base class object reference.
352 Loc getLValue(const CXXBaseSpecifier &BaseSpec, const SubRegion *Super) const;
353
354 /// Get the lvalue for a base class object reference.
355 Loc getLValue(const CXXRecordDecl *BaseClass, const SubRegion *Super,
356 bool IsVirtual) const;
357
358 /// Get the lvalue for a variable reference.
359 Loc getLValue(const VarDecl *D, const LocationContext *LC) const;
360
361 Loc getLValue(const CompoundLiteralExpr *literal,
362 const LocationContext *LC) const;
363
364 /// Get the lvalue for an ivar reference.
365 SVal getLValue(const ObjCIvarDecl *decl, SVal base) const;
366
367 /// Get the lvalue for a field reference.
368 SVal getLValue(const FieldDecl *decl, SVal Base) const;
369
370 /// Get the lvalue for an indirect field reference.
371 SVal getLValue(const IndirectFieldDecl *decl, SVal Base) const;
372
373 /// Get the lvalue for an array index.
374 SVal getLValue(QualType ElementType, SVal Idx, SVal Base) const;
375
376 /// Returns the SVal bound to the statement 'S' in the state's environment.
377 SVal getSVal(const Stmt *S, const LocationContext *LCtx) const;
378
379 SVal getSValAsScalarOrLoc(const Stmt *Ex, const LocationContext *LCtx) const;
380
381 /// Return the value bound to the specified location.
382 /// Returns UnknownVal() if none found.
383 SVal getSVal(Loc LV, QualType T = QualType()) const;
384
385 /// Returns the "raw" SVal bound to LV before any value simplification.
386 SVal getRawSVal(Loc LV, QualType T= QualType()) const;
387
388 /// Return the value bound to the specified location.
389 /// Returns UnknownVal() if none found.
390 SVal getSVal(const MemRegion* R, QualType T = QualType()) const;
391
392 /// Return the value bound to the specified location, assuming
393 /// that the value is a scalar integer or an enumeration or a pointer.
394 /// Returns UnknownVal() if none found or the region is not known to hold
395 /// a value of such type.
396 SVal getSValAsScalarOrLoc(const MemRegion *R) const;
397
398 using region_iterator = const MemRegion **;
399
400 /// Visits the symbols reachable from the given SVal using the provided
401 /// SymbolVisitor.
402 ///
403 /// This is a convenience API. Consider using ScanReachableSymbols class
404 /// directly when making multiple scans on the same state with the same
405 /// visitor to avoid repeated initialization cost.
406 /// \sa ScanReachableSymbols
407 bool scanReachableSymbols(SVal val, SymbolVisitor& visitor) const;
408
409 /// Visits the symbols reachable from the regions in the given
410 /// MemRegions range using the provided SymbolVisitor.
411 bool scanReachableSymbols(llvm::iterator_range<region_iterator> Reachable,
412 SymbolVisitor &visitor) const;
413
414 template <typename CB> CB scanReachableSymbols(SVal val) const;
415 template <typename CB> CB
416 scanReachableSymbols(llvm::iterator_range<region_iterator> Reachable) const;
417
418 //==---------------------------------------------------------------------==//
419 // Accessing the Generic Data Map (GDM).
420 //==---------------------------------------------------------------------==//
421
422 void *const* FindGDM(void *K) const;
423
424 template <typename T>
425 [[nodiscard]] ProgramStateRef
426 add(typename ProgramStateTrait<T>::key_type K) const;
427
428 template <typename T>
429 typename ProgramStateTrait<T>::data_type
get()430 get() const {
431 return ProgramStateTrait<T>::MakeData(FindGDM(ProgramStateTrait<T>::GDMIndex()));
432 }
433
434 template<typename T>
435 typename ProgramStateTrait<T>::lookup_type
get(typename ProgramStateTrait<T>::key_type key)436 get(typename ProgramStateTrait<T>::key_type key) const {
437 void *const* d = FindGDM(ProgramStateTrait<T>::GDMIndex());
438 return ProgramStateTrait<T>::Lookup(ProgramStateTrait<T>::MakeData(d), key);
439 }
440
441 template <typename T>
442 typename ProgramStateTrait<T>::context_type get_context() const;
443
444 template <typename T>
445 [[nodiscard]] ProgramStateRef
446 remove(typename ProgramStateTrait<T>::key_type K) const;
447
448 template <typename T>
449 [[nodiscard]] ProgramStateRef
450 remove(typename ProgramStateTrait<T>::key_type K,
451 typename ProgramStateTrait<T>::context_type C) const;
452
453 template <typename T> [[nodiscard]] ProgramStateRef remove() const;
454
455 template <typename T>
456 [[nodiscard]] ProgramStateRef
457 set(typename ProgramStateTrait<T>::data_type D) const;
458
459 template <typename T>
460 [[nodiscard]] ProgramStateRef
461 set(typename ProgramStateTrait<T>::key_type K,
462 typename ProgramStateTrait<T>::value_type E) const;
463
464 template <typename T>
465 [[nodiscard]] ProgramStateRef
466 set(typename ProgramStateTrait<T>::key_type K,
467 typename ProgramStateTrait<T>::value_type E,
468 typename ProgramStateTrait<T>::context_type C) const;
469
470 template<typename T>
contains(typename ProgramStateTrait<T>::key_type key)471 bool contains(typename ProgramStateTrait<T>::key_type key) const {
472 void *const* d = FindGDM(ProgramStateTrait<T>::GDMIndex());
473 return ProgramStateTrait<T>::Contains(ProgramStateTrait<T>::MakeData(d), key);
474 }
475
476 // Pretty-printing.
477 void printJson(raw_ostream &Out, const LocationContext *LCtx = nullptr,
478 const char *NL = "\n", unsigned int Space = 0,
479 bool IsDot = false) const;
480
481 void printDOT(raw_ostream &Out, const LocationContext *LCtx = nullptr,
482 unsigned int Space = 0) const;
483
484 void dump() const;
485
486 private:
487 friend void ProgramStateRetain(const ProgramState *state);
488 friend void ProgramStateRelease(const ProgramState *state);
489
490 SVal desugarReference(SVal Val) const;
491 SVal wrapSymbolicRegion(SVal Base) const;
492 };
493
494 //===----------------------------------------------------------------------===//
495 // ProgramStateManager - Factory object for ProgramStates.
496 //===----------------------------------------------------------------------===//
497
498 class ProgramStateManager {
499 friend class ProgramState;
500 friend void ProgramStateRelease(const ProgramState *state);
501 private:
502 /// Eng - The ExprEngine that owns this state manager.
503 ExprEngine *Eng; /* Can be null. */
504
505 EnvironmentManager EnvMgr;
506 std::unique_ptr<StoreManager> StoreMgr;
507 std::unique_ptr<ConstraintManager> ConstraintMgr;
508
509 ProgramState::GenericDataMap::Factory GDMFactory;
510
511 typedef llvm::DenseMap<void*,std::pair<void*,void (*)(void*)> > GDMContextsTy;
512 GDMContextsTy GDMContexts;
513
514 /// StateSet - FoldingSet containing all the states created for analyzing
515 /// a particular function. This is used to unique states.
516 llvm::FoldingSet<ProgramState> StateSet;
517
518 /// Object that manages the data for all created SVals.
519 std::unique_ptr<SValBuilder> svalBuilder;
520
521 /// Manages memory for created CallEvents.
522 std::unique_ptr<CallEventManager> CallEventMgr;
523
524 /// A BumpPtrAllocator to allocate states.
525 llvm::BumpPtrAllocator &Alloc;
526
527 /// A vector of ProgramStates that we can reuse.
528 std::vector<ProgramState *> freeStates;
529
530 public:
531 ProgramStateManager(ASTContext &Ctx,
532 StoreManagerCreator CreateStoreManager,
533 ConstraintManagerCreator CreateConstraintManager,
534 llvm::BumpPtrAllocator& alloc,
535 ExprEngine *expreng);
536
537 ~ProgramStateManager();
538
539 ProgramStateRef getInitialState(const LocationContext *InitLoc);
540
getContext()541 ASTContext &getContext() { return svalBuilder->getContext(); }
getContext()542 const ASTContext &getContext() const { return svalBuilder->getContext(); }
543
getBasicVals()544 BasicValueFactory &getBasicVals() {
545 return svalBuilder->getBasicValueFactory();
546 }
547
getSValBuilder()548 SValBuilder &getSValBuilder() {
549 return *svalBuilder;
550 }
551
getSValBuilder()552 const SValBuilder &getSValBuilder() const {
553 return *svalBuilder;
554 }
555
getSymbolManager()556 SymbolManager &getSymbolManager() {
557 return svalBuilder->getSymbolManager();
558 }
getSymbolManager()559 const SymbolManager &getSymbolManager() const {
560 return svalBuilder->getSymbolManager();
561 }
562
getAllocator()563 llvm::BumpPtrAllocator& getAllocator() { return Alloc; }
564
getRegionManager()565 MemRegionManager& getRegionManager() {
566 return svalBuilder->getRegionManager();
567 }
getRegionManager()568 const MemRegionManager &getRegionManager() const {
569 return svalBuilder->getRegionManager();
570 }
571
getCallEventManager()572 CallEventManager &getCallEventManager() { return *CallEventMgr; }
573
getStoreManager()574 StoreManager &getStoreManager() { return *StoreMgr; }
getConstraintManager()575 ConstraintManager &getConstraintManager() { return *ConstraintMgr; }
getOwningEngine()576 ExprEngine &getOwningEngine() { return *Eng; }
577
578 ProgramStateRef
579 removeDeadBindingsFromEnvironmentAndStore(ProgramStateRef St,
580 const StackFrameContext *LCtx,
581 SymbolReaper &SymReaper);
582
583 public:
584
ArrayToPointer(Loc Array,QualType ElementTy)585 SVal ArrayToPointer(Loc Array, QualType ElementTy) {
586 return StoreMgr->ArrayToPointer(Array, ElementTy);
587 }
588
589 // Methods that manipulate the GDM.
590 ProgramStateRef addGDM(ProgramStateRef St, void *Key, void *Data);
591 ProgramStateRef removeGDM(ProgramStateRef state, void *Key);
592
593 // Methods that query & manipulate the Store.
594
iterBindings(ProgramStateRef state,StoreManager::BindingsHandler & F)595 void iterBindings(ProgramStateRef state, StoreManager::BindingsHandler& F) {
596 StoreMgr->iterBindings(state->getStore(), F);
597 }
598
599 ProgramStateRef getPersistentState(ProgramState &Impl);
600 ProgramStateRef getPersistentStateWithGDM(ProgramStateRef FromState,
601 ProgramStateRef GDMState);
602
haveEqualConstraints(ProgramStateRef S1,ProgramStateRef S2)603 bool haveEqualConstraints(ProgramStateRef S1, ProgramStateRef S2) const {
604 return ConstraintMgr->haveEqualConstraints(S1, S2);
605 }
606
haveEqualEnvironments(ProgramStateRef S1,ProgramStateRef S2)607 bool haveEqualEnvironments(ProgramStateRef S1, ProgramStateRef S2) const {
608 return S1->Env == S2->Env;
609 }
610
haveEqualStores(ProgramStateRef S1,ProgramStateRef S2)611 bool haveEqualStores(ProgramStateRef S1, ProgramStateRef S2) const {
612 return S1->store == S2->store;
613 }
614
615 //==---------------------------------------------------------------------==//
616 // Generic Data Map methods.
617 //==---------------------------------------------------------------------==//
618 //
619 // ProgramStateManager and ProgramState support a "generic data map" that allows
620 // different clients of ProgramState objects to embed arbitrary data within a
621 // ProgramState object. The generic data map is essentially an immutable map
622 // from a "tag" (that acts as the "key" for a client) and opaque values.
623 // Tags/keys and values are simply void* values. The typical way that clients
624 // generate unique tags are by taking the address of a static variable.
625 // Clients are responsible for ensuring that data values referred to by a
626 // the data pointer are immutable (and thus are essentially purely functional
627 // data).
628 //
629 // The templated methods below use the ProgramStateTrait<T> class
630 // to resolve keys into the GDM and to return data values to clients.
631 //
632
633 // Trait based GDM dispatch.
634 template <typename T>
set(ProgramStateRef st,typename ProgramStateTrait<T>::data_type D)635 ProgramStateRef set(ProgramStateRef st, typename ProgramStateTrait<T>::data_type D) {
636 return addGDM(st, ProgramStateTrait<T>::GDMIndex(),
637 ProgramStateTrait<T>::MakeVoidPtr(D));
638 }
639
640 template<typename T>
set(ProgramStateRef st,typename ProgramStateTrait<T>::key_type K,typename ProgramStateTrait<T>::value_type V,typename ProgramStateTrait<T>::context_type C)641 ProgramStateRef set(ProgramStateRef st,
642 typename ProgramStateTrait<T>::key_type K,
643 typename ProgramStateTrait<T>::value_type V,
644 typename ProgramStateTrait<T>::context_type C) {
645
646 return addGDM(st, ProgramStateTrait<T>::GDMIndex(),
647 ProgramStateTrait<T>::MakeVoidPtr(ProgramStateTrait<T>::Set(st->get<T>(), K, V, C)));
648 }
649
650 template <typename T>
add(ProgramStateRef st,typename ProgramStateTrait<T>::key_type K,typename ProgramStateTrait<T>::context_type C)651 ProgramStateRef add(ProgramStateRef st,
652 typename ProgramStateTrait<T>::key_type K,
653 typename ProgramStateTrait<T>::context_type C) {
654 return addGDM(st, ProgramStateTrait<T>::GDMIndex(),
655 ProgramStateTrait<T>::MakeVoidPtr(ProgramStateTrait<T>::Add(st->get<T>(), K, C)));
656 }
657
658 template <typename T>
remove(ProgramStateRef st,typename ProgramStateTrait<T>::key_type K,typename ProgramStateTrait<T>::context_type C)659 ProgramStateRef remove(ProgramStateRef st,
660 typename ProgramStateTrait<T>::key_type K,
661 typename ProgramStateTrait<T>::context_type C) {
662
663 return addGDM(st, ProgramStateTrait<T>::GDMIndex(),
664 ProgramStateTrait<T>::MakeVoidPtr(ProgramStateTrait<T>::Remove(st->get<T>(), K, C)));
665 }
666
667 template <typename T>
remove(ProgramStateRef st)668 ProgramStateRef remove(ProgramStateRef st) {
669 return removeGDM(st, ProgramStateTrait<T>::GDMIndex());
670 }
671
672 void *FindGDMContext(void *index,
673 void *(*CreateContext)(llvm::BumpPtrAllocator&),
674 void (*DeleteContext)(void*));
675
676 template <typename T>
get_context()677 typename ProgramStateTrait<T>::context_type get_context() {
678 void *p = FindGDMContext(ProgramStateTrait<T>::GDMIndex(),
679 ProgramStateTrait<T>::CreateContext,
680 ProgramStateTrait<T>::DeleteContext);
681
682 return ProgramStateTrait<T>::MakeContext(p);
683 }
684 };
685
686
687 //===----------------------------------------------------------------------===//
688 // Out-of-line method definitions for ProgramState.
689 //===----------------------------------------------------------------------===//
690
getConstraintManager()691 inline ConstraintManager &ProgramState::getConstraintManager() const {
692 return stateMgr->getConstraintManager();
693 }
694
getRegion(const VarDecl * D,const LocationContext * LC)695 inline const VarRegion* ProgramState::getRegion(const VarDecl *D,
696 const LocationContext *LC) const
697 {
698 return getStateManager().getRegionManager().getVarRegion(D, LC);
699 }
700
assume(DefinedOrUnknownSVal Cond,bool Assumption)701 inline ProgramStateRef ProgramState::assume(DefinedOrUnknownSVal Cond,
702 bool Assumption) const {
703 if (Cond.isUnknown())
704 return this;
705
706 return getStateManager().ConstraintMgr
707 ->assume(this, Cond.castAs<DefinedSVal>(), Assumption);
708 }
709
710 inline std::pair<ProgramStateRef , ProgramStateRef >
assume(DefinedOrUnknownSVal Cond)711 ProgramState::assume(DefinedOrUnknownSVal Cond) const {
712 if (Cond.isUnknown())
713 return std::make_pair(this, this);
714
715 return getStateManager().ConstraintMgr
716 ->assumeDual(this, Cond.castAs<DefinedSVal>());
717 }
718
assumeInclusiveRange(DefinedOrUnknownSVal Val,const llvm::APSInt & From,const llvm::APSInt & To,bool Assumption)719 inline ProgramStateRef ProgramState::assumeInclusiveRange(
720 DefinedOrUnknownSVal Val, const llvm::APSInt &From, const llvm::APSInt &To,
721 bool Assumption) const {
722 if (Val.isUnknown())
723 return this;
724
725 assert(isa<NonLoc>(Val) && "Only NonLocs are supported!");
726
727 return getStateManager().ConstraintMgr->assumeInclusiveRange(
728 this, Val.castAs<NonLoc>(), From, To, Assumption);
729 }
730
731 inline std::pair<ProgramStateRef, ProgramStateRef>
assumeInclusiveRange(DefinedOrUnknownSVal Val,const llvm::APSInt & From,const llvm::APSInt & To)732 ProgramState::assumeInclusiveRange(DefinedOrUnknownSVal Val,
733 const llvm::APSInt &From,
734 const llvm::APSInt &To) const {
735 if (Val.isUnknown())
736 return std::make_pair(this, this);
737
738 assert(isa<NonLoc>(Val) && "Only NonLocs are supported!");
739
740 return getStateManager().ConstraintMgr->assumeInclusiveRangeDual(
741 this, Val.castAs<NonLoc>(), From, To);
742 }
743
bindLoc(SVal LV,SVal V,const LocationContext * LCtx)744 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V, const LocationContext *LCtx) const {
745 if (std::optional<Loc> L = LV.getAs<Loc>())
746 return bindLoc(*L, V, LCtx);
747 return this;
748 }
749
getLValue(const CXXBaseSpecifier & BaseSpec,const SubRegion * Super)750 inline Loc ProgramState::getLValue(const CXXBaseSpecifier &BaseSpec,
751 const SubRegion *Super) const {
752 const auto *Base = BaseSpec.getType()->getAsCXXRecordDecl();
753 return loc::MemRegionVal(
754 getStateManager().getRegionManager().getCXXBaseObjectRegion(
755 Base, Super, BaseSpec.isVirtual()));
756 }
757
getLValue(const CXXRecordDecl * BaseClass,const SubRegion * Super,bool IsVirtual)758 inline Loc ProgramState::getLValue(const CXXRecordDecl *BaseClass,
759 const SubRegion *Super,
760 bool IsVirtual) const {
761 return loc::MemRegionVal(
762 getStateManager().getRegionManager().getCXXBaseObjectRegion(
763 BaseClass, Super, IsVirtual));
764 }
765
getLValue(const VarDecl * VD,const LocationContext * LC)766 inline Loc ProgramState::getLValue(const VarDecl *VD,
767 const LocationContext *LC) const {
768 return getStateManager().StoreMgr->getLValueVar(VD, LC);
769 }
770
getLValue(const CompoundLiteralExpr * literal,const LocationContext * LC)771 inline Loc ProgramState::getLValue(const CompoundLiteralExpr *literal,
772 const LocationContext *LC) const {
773 return getStateManager().StoreMgr->getLValueCompoundLiteral(literal, LC);
774 }
775
getLValue(const ObjCIvarDecl * D,SVal Base)776 inline SVal ProgramState::getLValue(const ObjCIvarDecl *D, SVal Base) const {
777 return getStateManager().StoreMgr->getLValueIvar(D, Base);
778 }
779
getLValue(QualType ElementType,SVal Idx,SVal Base)780 inline SVal ProgramState::getLValue(QualType ElementType, SVal Idx, SVal Base) const{
781 if (std::optional<NonLoc> N = Idx.getAs<NonLoc>())
782 return getStateManager().StoreMgr->getLValueElement(ElementType, *N, Base);
783 return UnknownVal();
784 }
785
getSVal(const Stmt * Ex,const LocationContext * LCtx)786 inline SVal ProgramState::getSVal(const Stmt *Ex,
787 const LocationContext *LCtx) const{
788 return Env.getSVal(EnvironmentEntry(Ex, LCtx),
789 *getStateManager().svalBuilder);
790 }
791
792 inline SVal
getSValAsScalarOrLoc(const Stmt * S,const LocationContext * LCtx)793 ProgramState::getSValAsScalarOrLoc(const Stmt *S,
794 const LocationContext *LCtx) const {
795 if (const Expr *Ex = dyn_cast<Expr>(S)) {
796 QualType T = Ex->getType();
797 if (Ex->isGLValue() || Loc::isLocType(T) ||
798 T->isIntegralOrEnumerationType())
799 return getSVal(S, LCtx);
800 }
801
802 return UnknownVal();
803 }
804
getRawSVal(Loc LV,QualType T)805 inline SVal ProgramState::getRawSVal(Loc LV, QualType T) const {
806 return getStateManager().StoreMgr->getBinding(getStore(), LV, T);
807 }
808
getSVal(const MemRegion * R,QualType T)809 inline SVal ProgramState::getSVal(const MemRegion* R, QualType T) const {
810 return getStateManager().StoreMgr->getBinding(getStore(),
811 loc::MemRegionVal(R),
812 T);
813 }
814
getBasicVals()815 inline BasicValueFactory &ProgramState::getBasicVals() const {
816 return getStateManager().getBasicVals();
817 }
818
getSymbolManager()819 inline SymbolManager &ProgramState::getSymbolManager() const {
820 return getStateManager().getSymbolManager();
821 }
822
823 template<typename T>
add(typename ProgramStateTrait<T>::key_type K)824 ProgramStateRef ProgramState::add(typename ProgramStateTrait<T>::key_type K) const {
825 return getStateManager().add<T>(this, K, get_context<T>());
826 }
827
828 template <typename T>
get_context()829 typename ProgramStateTrait<T>::context_type ProgramState::get_context() const {
830 return getStateManager().get_context<T>();
831 }
832
833 template<typename T>
remove(typename ProgramStateTrait<T>::key_type K)834 ProgramStateRef ProgramState::remove(typename ProgramStateTrait<T>::key_type K) const {
835 return getStateManager().remove<T>(this, K, get_context<T>());
836 }
837
838 template<typename T>
remove(typename ProgramStateTrait<T>::key_type K,typename ProgramStateTrait<T>::context_type C)839 ProgramStateRef ProgramState::remove(typename ProgramStateTrait<T>::key_type K,
840 typename ProgramStateTrait<T>::context_type C) const {
841 return getStateManager().remove<T>(this, K, C);
842 }
843
844 template <typename T>
remove()845 ProgramStateRef ProgramState::remove() const {
846 return getStateManager().remove<T>(this);
847 }
848
849 template<typename T>
set(typename ProgramStateTrait<T>::data_type D)850 ProgramStateRef ProgramState::set(typename ProgramStateTrait<T>::data_type D) const {
851 return getStateManager().set<T>(this, D);
852 }
853
854 template<typename T>
set(typename ProgramStateTrait<T>::key_type K,typename ProgramStateTrait<T>::value_type E)855 ProgramStateRef ProgramState::set(typename ProgramStateTrait<T>::key_type K,
856 typename ProgramStateTrait<T>::value_type E) const {
857 return getStateManager().set<T>(this, K, E, get_context<T>());
858 }
859
860 template<typename T>
set(typename ProgramStateTrait<T>::key_type K,typename ProgramStateTrait<T>::value_type E,typename ProgramStateTrait<T>::context_type C)861 ProgramStateRef ProgramState::set(typename ProgramStateTrait<T>::key_type K,
862 typename ProgramStateTrait<T>::value_type E,
863 typename ProgramStateTrait<T>::context_type C) const {
864 return getStateManager().set<T>(this, K, E, C);
865 }
866
867 template <typename CB>
scanReachableSymbols(SVal val)868 CB ProgramState::scanReachableSymbols(SVal val) const {
869 CB cb(this);
870 scanReachableSymbols(val, cb);
871 return cb;
872 }
873
874 template <typename CB>
scanReachableSymbols(llvm::iterator_range<region_iterator> Reachable)875 CB ProgramState::scanReachableSymbols(
876 llvm::iterator_range<region_iterator> Reachable) const {
877 CB cb(this);
878 scanReachableSymbols(Reachable, cb);
879 return cb;
880 }
881
882 /// \class ScanReachableSymbols
883 /// A utility class that visits the reachable symbols using a custom
884 /// SymbolVisitor. Terminates recursive traversal when the visitor function
885 /// returns false.
886 class ScanReachableSymbols {
887 typedef llvm::DenseSet<const void*> VisitedItems;
888
889 VisitedItems visited;
890 ProgramStateRef state;
891 SymbolVisitor &visitor;
892 public:
ScanReachableSymbols(ProgramStateRef st,SymbolVisitor & v)893 ScanReachableSymbols(ProgramStateRef st, SymbolVisitor &v)
894 : state(std::move(st)), visitor(v) {}
895
896 bool scan(nonloc::LazyCompoundVal val);
897 bool scan(nonloc::CompoundVal val);
898 bool scan(SVal val);
899 bool scan(const MemRegion *R);
900 bool scan(const SymExpr *sym);
901 };
902
903 } // end ento namespace
904
905 } // end clang namespace
906
907 #endif
908