clang 22.0.0git
ProgramState.h
Go to the documentation of this file.
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"
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
29namespace llvm {
30class APSInt;
31}
32
33namespace clang {
34class ASTContext;
35
36namespace ento {
37
38class AnalysisManager;
39class CallEvent;
40class CallEventManager;
41
42typedef std::unique_ptr<ConstraintManager>(*ConstraintManagerCreator)(
44typedef std::unique_ptr<StoreManager>(*StoreManagerCreator)(
46
47//===----------------------------------------------------------------------===//
48// ProgramStateTrait - Traits used by the Generic Data Map of a ProgramState.
49//===----------------------------------------------------------------------===//
50
51template <typename T> struct ProgramStateTrait {
52 typedef typename T::data_type data_type;
53 static inline void *MakeVoidPtr(data_type D) { return (void*) D; }
54 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.
71class ProgramState : public llvm::FoldingSetNode {
72public:
73 typedef llvm::ImmutableMap<void*, void*> GenericDataMap;
74
75private:
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;
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
133public:
134 /// This ctor is used when creating the first ProgramState object.
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
143
144 int64_t getID() const;
145
146 /// Return the ProgramStateManager associated with this state.
148 return *stateMgr;
149 }
150
152
153 /// Return the ConstraintManager.
155
156 /// getEnvironment - Return the environment associated with this state.
157 /// The environment is the mapping from expressions to values.
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.
162 Store getStore() const { return store; }
163
164 /// getGDM - Return the generic data map associated with this state.
165 GenericDataMap getGDM() const { return GDM; }
166
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.
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.
181 void Profile(llvm::FoldingSetNodeID& ID) const {
182 Profile(ID, this);
183 }
184
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.
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>
232 QualType IndexType = QualType()) const;
233
234 [[nodiscard]] ProgramStateRef
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.
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.
261
262 /// Check if the given SVal is constrained to zero or is a zero
263 /// constant.
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
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
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
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.
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>
430 get() const {
432 }
433
434 template<typename T>
437 void *const* d = FindGDM(ProgramStateTrait<T>::GDMIndex());
439 }
440
441 template <typename T>
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
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
462 typename ProgramStateTrait<T>::value_type E) const;
463
464 template <typename T>
465 [[nodiscard]] ProgramStateRef
469
470 template<typename T>
471 bool contains(typename ProgramStateTrait<T>::key_type key) const {
472 void *const* d = FindGDM(ProgramStateTrait<T>::GDMIndex());
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
486private:
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
499 friend class ProgramState;
500 friend void ProgramStateRelease(const ProgramState *state);
501private:
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
530public:
532 StoreManagerCreator CreateStoreManager,
533 ConstraintManagerCreator CreateConstraintManager,
534 llvm::BumpPtrAllocator& alloc,
535 ExprEngine *expreng);
536
538
540
541 ASTContext &getContext() { return svalBuilder->getContext(); }
542 const ASTContext &getContext() const { return svalBuilder->getContext(); }
543
545 return svalBuilder->getBasicValueFactory();
546 }
547
549 return *svalBuilder;
550 }
551
553 return *svalBuilder;
554 }
555
557 return svalBuilder->getSymbolManager();
558 }
560 return svalBuilder->getSymbolManager();
561 }
562
563 llvm::BumpPtrAllocator& getAllocator() { return Alloc; }
564
566 return svalBuilder->getRegionManager();
567 }
569 return svalBuilder->getRegionManager();
570 }
571
572 CallEventManager &getCallEventManager() { return *CallEventMgr; }
573
574 StoreManager &getStoreManager() { return *StoreMgr; }
575 const StoreManager &getStoreManager() const { return *StoreMgr; }
576 ConstraintManager &getConstraintManager() { return *ConstraintMgr; }
578 return *ConstraintMgr;
579 }
580 ExprEngine &getOwningEngine() { return *Eng; }
581
584 const StackFrameContext *LCtx,
585 SymbolReaper &SymReaper);
586
587public:
588
589 SVal ArrayToPointer(Loc Array, QualType ElementTy) {
590 return StoreMgr->ArrayToPointer(Array, ElementTy);
591 }
592
593 // Methods that manipulate the GDM.
594 ProgramStateRef addGDM(ProgramStateRef St, void *Key, void *Data);
595 ProgramStateRef removeGDM(ProgramStateRef state, void *Key);
596
597 // Methods that query & manipulate the Store.
598
600 StoreMgr->iterBindings(state->getStore(), F);
601 }
602
605 ProgramStateRef GDMState);
606
608 return ConstraintMgr->haveEqualConstraints(S1, S2);
609 }
610
612 return S1->Env == S2->Env;
613 }
614
616 return S1->store == S2->store;
617 }
618
619 //==---------------------------------------------------------------------==//
620 // Generic Data Map methods.
621 //==---------------------------------------------------------------------==//
622 //
623 // ProgramStateManager and ProgramState support a "generic data map" that allows
624 // different clients of ProgramState objects to embed arbitrary data within a
625 // ProgramState object. The generic data map is essentially an immutable map
626 // from a "tag" (that acts as the "key" for a client) and opaque values.
627 // Tags/keys and values are simply void* values. The typical way that clients
628 // generate unique tags are by taking the address of a static variable.
629 // Clients are responsible for ensuring that data values referred to by a
630 // the data pointer are immutable (and thus are essentially purely functional
631 // data).
632 //
633 // The templated methods below use the ProgramStateTrait<T> class
634 // to resolve keys into the GDM and to return data values to clients.
635 //
636
637 // Trait based GDM dispatch.
638 template <typename T>
642 }
643
644 template<typename T>
649
652 }
653
654 template <typename T>
660 }
661
662 template <typename T>
666
669 }
670
671 template <typename T>
674 }
675
676 void *FindGDMContext(void *index,
677 void *(*CreateContext)(llvm::BumpPtrAllocator&),
678 void (*DeleteContext)(void*));
679
680 template <typename T>
685
687 }
688};
689
690
691//===----------------------------------------------------------------------===//
692// Out-of-line method definitions for ProgramState.
693//===----------------------------------------------------------------------===//
694
696 return stateMgr->getConstraintManager();
697}
698
700 const LocationContext *LC) const
701{
703}
704
706 bool Assumption) const {
707 if (Cond.isUnknown())
708 return this;
709
710 return getStateManager().ConstraintMgr
711 ->assume(this, Cond.castAs<DefinedSVal>(), Assumption);
712}
713
714inline std::pair<ProgramStateRef , ProgramStateRef >
716 if (Cond.isUnknown())
717 return std::make_pair(this, this);
718
719 return getStateManager().ConstraintMgr
720 ->assumeDual(this, Cond.castAs<DefinedSVal>());
721}
722
724 DefinedOrUnknownSVal Val, const llvm::APSInt &From, const llvm::APSInt &To,
725 bool Assumption) const {
726 if (Val.isUnknown())
727 return this;
728
729 assert(isa<NonLoc>(Val) && "Only NonLocs are supported!");
730
731 return getStateManager().ConstraintMgr->assumeInclusiveRange(
732 this, Val.castAs<NonLoc>(), From, To, Assumption);
733}
734
735inline std::pair<ProgramStateRef, ProgramStateRef>
737 const llvm::APSInt &From,
738 const llvm::APSInt &To) const {
739 if (Val.isUnknown())
740 return std::make_pair(this, this);
741
742 assert(isa<NonLoc>(Val) && "Only NonLocs are supported!");
743
744 return getStateManager().ConstraintMgr->assumeInclusiveRangeDual(
745 this, Val.castAs<NonLoc>(), From, To);
746}
747
749 if (std::optional<Loc> L = LV.getAs<Loc>())
750 return bindLoc(*L, V, LCtx);
751 return this;
752}
753
755 const SubRegion *Super) const {
756 const auto *Base = BaseSpec.getType()->getAsCXXRecordDecl();
757 return loc::MemRegionVal(
758 getStateManager().getRegionManager().getCXXBaseObjectRegion(
759 Base, Super, BaseSpec.isVirtual()));
760}
761
763 const SubRegion *Super,
764 bool IsVirtual) const {
765 return loc::MemRegionVal(
766 getStateManager().getRegionManager().getCXXBaseObjectRegion(
767 BaseClass, Super, IsVirtual));
768}
769
771 const LocationContext *LC) const {
772 return getStateManager().StoreMgr->getLValueVar(VD, LC);
773}
774
776 const LocationContext *LC) const {
777 return getStateManager().StoreMgr->getLValueCompoundLiteral(literal, LC);
778}
779
781 return getStateManager().StoreMgr->getLValueIvar(D, Base);
782}
783
784inline SVal ProgramState::getLValue(QualType ElementType, SVal Idx, SVal Base) const{
785 if (std::optional<NonLoc> N = Idx.getAs<NonLoc>())
786 return getStateManager().StoreMgr->getLValueElement(ElementType, *N, Base);
787 return UnknownVal();
788}
789
791 const LocationContext *LCtx) const{
792 return Env.getSVal(EnvironmentEntry(Ex, LCtx),
793 *getStateManager().svalBuilder);
794}
795
796inline SVal
798 const LocationContext *LCtx) const {
799 if (const Expr *Ex = dyn_cast<Expr>(S)) {
800 QualType T = Ex->getType();
801 if (Ex->isGLValue() || Loc::isLocType(T) ||
803 return getSVal(S, LCtx);
804 }
805
806 return UnknownVal();
807}
808
810 return getStateManager().StoreMgr->getBinding(getStore(), LV, T);
811}
812
814 return getStateManager().StoreMgr->getBinding(getStore(),
816 T);
817}
818
820 return getStateManager().getBasicVals();
821}
822
825}
826
827template<typename T>
829 return getStateManager().add<T>(this, K, get_context<T>());
830}
831
832template <typename T>
834 return getStateManager().get_context<T>();
835}
836
837template<typename T>
839 return getStateManager().remove<T>(this, K, get_context<T>());
840}
841
842template<typename T>
844 typename ProgramStateTrait<T>::context_type C) const {
845 return getStateManager().remove<T>(this, K, C);
846}
847
848template <typename T>
850 return getStateManager().remove<T>(this);
851}
852
853template<typename T>
855 return getStateManager().set<T>(this, D);
856}
857
858template<typename T>
860 typename ProgramStateTrait<T>::value_type E) const {
861 return getStateManager().set<T>(this, K, E, get_context<T>());
862}
863
864template<typename T>
867 typename ProgramStateTrait<T>::context_type C) const {
868 return getStateManager().set<T>(this, K, E, C);
869}
870
871template <typename CB>
873 CB cb(this);
874 scanReachableSymbols(val, cb);
875 return cb;
876}
877
878template <typename CB>
880 llvm::iterator_range<region_iterator> Reachable) const {
881 CB cb(this);
882 scanReachableSymbols(Reachable, cb);
883 return cb;
884}
885
886/// \class ScanReachableSymbols
887/// A utility class that visits the reachable symbols using a custom
888/// SymbolVisitor. Terminates recursive traversal when the visitor function
889/// returns false.
891 typedef llvm::DenseSet<const void*> VisitedItems;
892
893 VisitedItems visited;
894 ProgramStateRef state;
895 SymbolVisitor &visitor;
896public:
898 : state(std::move(st)), visitor(v) {}
899
901 bool scan(nonloc::CompoundVal val);
902 bool scan(SVal val);
903 bool scan(const MemRegion *R);
904 bool scan(const SymExpr *sym);
905};
906
907} // end ento namespace
908
909} // end clang namespace
910
911#endif
#define V(N, I)
Definition: ASTContext.h:3597
StringRef P
static char ID
Definition: Arena.cpp:183
const Decl * D
Expr * E
llvm::APSInt APSInt
Definition: Compiler.cpp:23
const Environment & Env
Definition: HTMLLogger.cpp:147
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:188
Represents a base class of a C++ class.
Definition: DeclCXX.h:146
bool isVirtual() const
Determines whether the base class is a virtual base class (or not).
Definition: DeclCXX.h:203
QualType getType() const
Retrieves the type of the base class.
Definition: DeclCXX.h:249
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
CompoundLiteralExpr - [C99 6.5.2.5].
Definition: Expr.h:3541
This represents one expression.
Definition: Expr.h:112
Represents a member of a struct/union/class.
Definition: Decl.h:3157
Represents a field injected from an anonymous union/struct into the parent scope.
Definition: Decl.h:3464
It wraps the AnalysisDeclContext to represent both the call stack with the help of StackFrameContext ...
ObjCIvarDecl - Represents an ObjC instance variable.
Definition: DeclObjC.h:1952
A (possibly-)qualified type.
Definition: TypeBase.h:937
It represents a stack frame of the call stack (based on CallEvent).
Stmt - This represents one statement.
Definition: Stmt.h:85
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
Definition: Type.h:26
bool isIntegralOrEnumerationType() const
Determine whether this type is an integral or enumeration type.
Definition: TypeBase.h:9054
Represents a variable declaration or definition.
Definition: Decl.h:925
Manages the lifetime of CallEvent objects.
Definition: CallEvent.h:1363
Represents an abstract call to a function or method along a particular path.
Definition: CallEvent.h:153
An entry in the environment consists of a Stmt and an LocationContext.
Definition: Environment.h:36
An immutable map from EnvironemntEntries to SVals.
Definition: Environment.h:56
static bool isLocType(QualType T)
Definition: SVals.h:262
const VarRegion * getVarRegion(const VarDecl *VD, const LocationContext *LC)
getVarRegion - Retrieve or create the memory region associated with a specified VarDecl and LocationC...
Definition: MemRegion.cpp:1041
MemRegion - The root abstract class for all memory regions.
Definition: MemRegion.h:98
This is the simplest builder which generates nodes in the ExplodedGraph.
Definition: CoreEngine.h:240
ProgramStateRef remove(ProgramStateRef st)
Definition: ProgramState.h:672
const MemRegionManager & getRegionManager() const
Definition: ProgramState.h:568
ProgramStateRef removeDeadBindingsFromEnvironmentAndStore(ProgramStateRef St, const StackFrameContext *LCtx, SymbolReaper &SymReaper)
bool haveEqualStores(ProgramStateRef S1, ProgramStateRef S2) const
Definition: ProgramState.h:615
const ASTContext & getContext() const
Definition: ProgramState.h:542
const StoreManager & getStoreManager() const
Definition: ProgramState.h:575
ProgramStateRef removeGDM(ProgramStateRef state, void *Key)
void * FindGDMContext(void *index, void *(*CreateContext)(llvm::BumpPtrAllocator &), void(*DeleteContext)(void *))
CallEventManager & getCallEventManager()
Definition: ProgramState.h:572
bool haveEqualEnvironments(ProgramStateRef S1, ProgramStateRef S2) const
Definition: ProgramState.h:611
const SymbolManager & getSymbolManager() const
Definition: ProgramState.h:559
const SValBuilder & getSValBuilder() const
Definition: ProgramState.h:552
friend void ProgramStateRelease(const ProgramState *state)
Decrement the number of times this state is referenced.
ProgramStateRef set(ProgramStateRef st, typename ProgramStateTrait< T >::data_type D)
Definition: ProgramState.h:639
ProgramStateRef getPersistentStateWithGDM(ProgramStateRef FromState, ProgramStateRef GDMState)
MemRegionManager & getRegionManager()
Definition: ProgramState.h:565
bool haveEqualConstraints(ProgramStateRef S1, ProgramStateRef S2) const
Definition: ProgramState.h:607
ProgramStateRef remove(ProgramStateRef st, typename ProgramStateTrait< T >::key_type K, typename ProgramStateTrait< T >::context_type C)
Definition: ProgramState.h:663
ProgramStateRef addGDM(ProgramStateRef St, void *Key, void *Data)
ProgramStateRef set(ProgramStateRef st, typename ProgramStateTrait< T >::key_type K, typename ProgramStateTrait< T >::value_type V, typename ProgramStateTrait< T >::context_type C)
Definition: ProgramState.h:645
ProgramStateRef add(ProgramStateRef st, typename ProgramStateTrait< T >::key_type K, typename ProgramStateTrait< T >::context_type C)
Definition: ProgramState.h:655
ProgramStateRef getPersistentState(ProgramState &Impl)
void iterBindings(ProgramStateRef state, StoreManager::BindingsHandler &F)
Definition: ProgramState.h:599
SVal ArrayToPointer(Loc Array, QualType ElementTy)
Definition: ProgramState.h:589
const ConstraintManager & getConstraintManager() const
Definition: ProgramState.h:577
ProgramStateRef getInitialState(const LocationContext *InitLoc)
llvm::BumpPtrAllocator & getAllocator()
Definition: ProgramState.h:563
BasicValueFactory & getBasicVals()
Definition: ProgramState.h:544
ProgramStateTrait< T >::context_type get_context()
Definition: ProgramState.h:681
SymbolManager & getSymbolManager()
Definition: ProgramState.h:556
ConstraintManager & getConstraintManager()
Definition: ProgramState.h:576
ProgramState - This class encapsulates:
Definition: ProgramState.h:71
bool scanReachableSymbols(SVal val, SymbolVisitor &visitor) const
Visits the symbols reachable from the given SVal using the provided SymbolVisitor.
ProgramStateTrait< T >::data_type get() const
Definition: ProgramState.h:430
Loc getLValue(const CXXBaseSpecifier &BaseSpec, const SubRegion *Super) const
Get the lvalue for a base class object reference.
Definition: ProgramState.h:754
friend void ProgramStateRetain(const ProgramState *state)
Increments the number of times this state is referenced.
ProgramStateRef bindDefaultZero(SVal loc, const LocationContext *LCtx) const
Performs C++ zero-initialization procedure on the region of memory represented by loc.
llvm::ImmutableMap< void *, void * > GenericDataMap
Definition: ProgramState.h:73
ProgramStateRef BindExpr(const Stmt *S, const LocationContext *LCtx, SVal V, bool Invalidate=true) const
Create a new state by binding the value 'V' to the statement 'S' in the state's environment.
void printJson(raw_ostream &Out, const LocationContext *LCtx=nullptr, const char *NL="\n", unsigned int Space=0, bool IsDot=false) const
ProgramStateRef assumeInclusiveRange(DefinedOrUnknownSVal Val, const llvm::APSInt &From, const llvm::APSInt &To, bool assumption) const
Assumes that the value of Val is bounded with [From; To] (if assumption is "true") or it is fully out...
Definition: ProgramState.h:723
bool contains(typename ProgramStateTrait< T >::key_type key) const
Definition: ProgramState.h:471
ProgramStateRef bindDefaultInitial(SVal loc, SVal V, const LocationContext *LCtx) const
Initializes the region of memory represented by loc with an initial value.
ConstraintManager & getConstraintManager() const
Return the ConstraintManager.
Definition: ProgramState.h:695
ProgramStateRef add(typename ProgramStateTrait< T >::key_type K) const
Definition: ProgramState.h:828
SVal getSValAsScalarOrLoc(const Stmt *Ex, const LocationContext *LCtx) const
Definition: ProgramState.h:797
void Profile(llvm::FoldingSetNodeID &ID) const
Profile - Used to profile the contents of this object for inclusion in a FoldingSet.
Definition: ProgramState.h:181
SVal getSelfSVal(const LocationContext *LC) const
Return the value of 'self' if available in the given context.
SVal getRawSVal(Loc LV, QualType T=QualType()) const
Returns the "raw" SVal bound to LV before any value simplification.
Definition: ProgramState.h:809
ConditionTruthVal isNull(SVal V) const
Check if the given SVal is constrained to zero or is a zero constant.
ProgramStateManager & getStateManager() const
Return the ProgramStateManager associated with this state.
Definition: ProgramState.h:147
ProgramStateRef killBinding(Loc LV) const
GenericDataMap getGDM() const
getGDM - Return the generic data map associated with this state.
Definition: ProgramState.h:165
const Environment & getEnvironment() const
getEnvironment - Return the environment associated with this state.
Definition: ProgramState.h:158
friend void ProgramStateRelease(const ProgramState *state)
Decrement the number of times this state is referenced.
ProgramStateRef assume(DefinedOrUnknownSVal cond, bool assumption) const
Assumes that the value of cond is zero (if assumption is "false") or non-zero (if assumption is "true...
Definition: ProgramState.h:705
Store getStore() const
Return the store associated with this state.
Definition: ProgramState.h:162
ConditionTruthVal areEqual(SVal Lhs, SVal Rhs) const
void printDOT(raw_ostream &Out, const LocationContext *LCtx=nullptr, unsigned int Space=0) const
ConditionTruthVal isNonNull(SVal V) const
Check if the given SVal is not constrained to zero and is not a zero constant.
ProgramStateRef set(typename ProgramStateTrait< T >::data_type D) const
Definition: ProgramState.h:854
ProgramStateRef assumeInBound(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound, bool assumption, QualType IndexType=QualType()) const
ProgramStateRef enterStackFrame(const CallEvent &Call, const StackFrameContext *CalleeCtx) const
enterStackFrame - Returns the state for entry to the given stack frame, preserving the current state.
LLVM_ATTRIBUTE_RETURNS_NONNULL const VarRegion * getRegion(const VarDecl *D, const LocationContext *LC) const
Utility method for getting regions.
Definition: ProgramState.h:699
SVal getSVal(const Stmt *S, const LocationContext *LCtx) const
Returns the SVal bound to the statement 'S' in the state's environment.
Definition: ProgramState.h:790
ProgramStateTrait< T >::lookup_type get(typename ProgramStateTrait< T >::key_type key) const
Definition: ProgramState.h:436
ProgramStateTrait< T >::context_type get_context() const
Definition: ProgramState.h:833
ProgramStateRef invalidateRegions(ArrayRef< const MemRegion * > Regions, ConstCFGElementRef Elem, unsigned BlockCount, const LocationContext *LCtx, bool CausesPointerEscape, InvalidatedSymbols *IS=nullptr, const CallEvent *Call=nullptr, RegionAndSymbolInvalidationTraits *ITraits=nullptr) const
Returns the state with bindings for the given regions cleared from the store.
ProgramStateRef bindLoc(Loc location, SVal V, const LocationContext *LCtx, bool notifyChanges=true) const
static void Profile(llvm::FoldingSetNodeID &ID, const ProgramState *V)
Profile - Profile the contents of a ProgramState object for use in a FoldingSet.
Definition: ProgramState.h:172
BasicValueFactory & getBasicVals() const
Definition: ProgramState.h:819
std::pair< ProgramStateRef, ProgramStateRef > assumeInBoundDual(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound, QualType IndexType=QualType()) const
ProgramStateRef invalidateRegions(ArrayRef< SVal > Values, ConstCFGElementRef Elem, unsigned BlockCount, const LocationContext *LCtx, bool CausesPointerEscape, InvalidatedSymbols *IS=nullptr, const CallEvent *Call=nullptr, RegionAndSymbolInvalidationTraits *ITraits=nullptr) const
ProgramStateRef remove() const
Definition: ProgramState.h:849
void setGDM(GenericDataMap gdm)
Definition: ProgramState.h:167
AnalysisManager & getAnalysisManager() const
void *const * FindGDM(void *K) const
SymbolManager & getSymbolManager() const
Definition: ProgramState.h:823
Information about invalidation for a particular region/symbol.
Definition: MemRegion.h:1657
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
Definition: SVals.h:56
std::optional< T > getAs() const
Convert to the specified SVal type, returning std::nullopt if this SVal is not of the desired type.
Definition: SVals.h:87
T castAs() const
Convert to the specified SVal type, asserting that this SVal is of the desired type.
Definition: SVals.h:83
bool isUnknown() const
Definition: SVals.h:105
A utility class that visits the reachable symbols using a custom SymbolVisitor.
Definition: ProgramState.h:890
ScanReachableSymbols(ProgramStateRef st, SymbolVisitor &v)
Definition: ProgramState.h:897
bool scan(nonloc::LazyCompoundVal val)
SubRegion - A region that subsets another larger region.
Definition: MemRegion.h:474
Symbolic value.
Definition: SymExpr.h:32
A class responsible for cleaning up unused symbols.
The simplest example of a concrete compound value is nonloc::CompoundVal, which represents a concrete...
Definition: SVals.h:339
While nonloc::CompoundVal covers a few simple use cases, nonloc::LazyCompoundVal is a more performant...
Definition: SVals.h:389
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
std::unique_ptr< ConstraintManager >(* ConstraintManagerCreator)(ProgramStateManager &, ExprEngine *)
Definition: ProgramState.h:42
std::unique_ptr< StoreManager >(* StoreManagerCreator)(ProgramStateManager &)
Definition: ProgramState.h:44
llvm::DenseSet< SymbolRef > InvalidatedSymbols
Definition: Store.h:51
const void * Store
Store - This opaque type encapsulates an immutable mapping from locations to values.
Definition: StoreRef.h:27
The JSON file list parser is used to communicate input to InstallAPI.
CFGBlock::ConstCFGElementRef ConstCFGElementRef
Definition: CFG.h:1199
const FunctionProtoType * T
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
static void * MakeVoidPtr(data_type D)
Definition: ProgramState.h:53
static data_type MakeData(void *const *P)
Definition: ProgramState.h:54