xref: /llvm-project/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp (revision 2b9abf0db2d106c7208b4372e662ef5df869e6f1)
1 //===- ExprEngine.cpp - Path-Sensitive Expression-Level Dataflow ----------===//
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 a meta-engine for path-sensitive dataflow analysis that
10 //  is built on CoreEngine, but provides the boilerplate to execute transfer
11 //  functions and build the ExplodedGraph at the expression level.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
16 #include "PrettyStackTraceLocationContext.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/Decl.h"
19 #include "clang/AST/DeclBase.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclObjC.h"
22 #include "clang/AST/Expr.h"
23 #include "clang/AST/ExprCXX.h"
24 #include "clang/AST/ExprObjC.h"
25 #include "clang/AST/ParentMap.h"
26 #include "clang/AST/PrettyPrinter.h"
27 #include "clang/AST/Stmt.h"
28 #include "clang/AST/StmtCXX.h"
29 #include "clang/AST/StmtObjC.h"
30 #include "clang/AST/Type.h"
31 #include "clang/Analysis/AnalysisDeclContext.h"
32 #include "clang/Analysis/CFG.h"
33 #include "clang/Analysis/ConstructionContext.h"
34 #include "clang/Analysis/ProgramPoint.h"
35 #include "clang/Basic/IdentifierTable.h"
36 #include "clang/Basic/JsonSupport.h"
37 #include "clang/Basic/LLVM.h"
38 #include "clang/Basic/LangOptions.h"
39 #include "clang/Basic/PrettyStackTrace.h"
40 #include "clang/Basic/SourceLocation.h"
41 #include "clang/Basic/SourceManager.h"
42 #include "clang/Basic/Specifiers.h"
43 #include "clang/StaticAnalyzer/Core/AnalyzerOptions.h"
44 #include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
45 #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
46 #include "clang/StaticAnalyzer/Core/CheckerManager.h"
47 #include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
48 #include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
49 #include "clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h"
50 #include "clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h"
51 #include "clang/StaticAnalyzer/Core/PathSensitive/DynamicExtent.h"
52 #include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
53 #include "clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h"
54 #include "clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h"
55 #include "clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h"
56 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
57 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
58 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h"
59 #include "clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h"
60 #include "clang/StaticAnalyzer/Core/PathSensitive/SVals.h"
61 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"
62 #include "clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h"
63 #include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
64 #include "llvm/ADT/APSInt.h"
65 #include "llvm/ADT/DenseMap.h"
66 #include "llvm/ADT/ImmutableMap.h"
67 #include "llvm/ADT/ImmutableSet.h"
68 #include "llvm/ADT/STLExtras.h"
69 #include "llvm/ADT/SmallVector.h"
70 #include "llvm/ADT/Statistic.h"
71 #include "llvm/Support/Casting.h"
72 #include "llvm/Support/Compiler.h"
73 #include "llvm/Support/DOTGraphTraits.h"
74 #include "llvm/Support/ErrorHandling.h"
75 #include "llvm/Support/GraphWriter.h"
76 #include "llvm/Support/SaveAndRestore.h"
77 #include "llvm/Support/raw_ostream.h"
78 #include <cassert>
79 #include <cstdint>
80 #include <memory>
81 #include <optional>
82 #include <string>
83 #include <tuple>
84 #include <utility>
85 #include <vector>
86 
87 using namespace clang;
88 using namespace ento;
89 
90 #define DEBUG_TYPE "ExprEngine"
91 
92 STATISTIC(NumRemoveDeadBindings,
93             "The # of times RemoveDeadBindings is called");
94 STATISTIC(NumMaxBlockCountReached,
95             "The # of aborted paths due to reaching the maximum block count in "
96             "a top level function");
97 STATISTIC(NumMaxBlockCountReachedInInlined,
98             "The # of aborted paths due to reaching the maximum block count in "
99             "an inlined function");
100 STATISTIC(NumTimesRetriedWithoutInlining,
101             "The # of times we re-evaluated a call without inlining");
102 
103 //===----------------------------------------------------------------------===//
104 // Internal program state traits.
105 //===----------------------------------------------------------------------===//
106 
107 namespace {
108 
109 // When modeling a C++ constructor, for a variety of reasons we need to track
110 // the location of the object for the duration of its ConstructionContext.
111 // ObjectsUnderConstruction maps statements within the construction context
112 // to the object's location, so that on every such statement the location
113 // could have been retrieved.
114 
115 /// ConstructedObjectKey is used for being able to find the path-sensitive
116 /// memory region of a freshly constructed object while modeling the AST node
117 /// that syntactically represents the object that is being constructed.
118 /// Semantics of such nodes may sometimes require access to the region that's
119 /// not otherwise present in the program state, or to the very fact that
120 /// the construction context was present and contained references to these
121 /// AST nodes.
122 class ConstructedObjectKey {
123   using ConstructedObjectKeyImpl =
124       std::pair<ConstructionContextItem, const LocationContext *>;
125   const ConstructedObjectKeyImpl Impl;
126 
127 public:
128   explicit ConstructedObjectKey(const ConstructionContextItem &Item,
129                        const LocationContext *LC)
130       : Impl(Item, LC) {}
131 
132   const ConstructionContextItem &getItem() const { return Impl.first; }
133   const LocationContext *getLocationContext() const { return Impl.second; }
134 
135   ASTContext &getASTContext() const {
136     return getLocationContext()->getDecl()->getASTContext();
137   }
138 
139   void printJson(llvm::raw_ostream &Out, PrinterHelper *Helper,
140                  PrintingPolicy &PP) const {
141     const Stmt *S = getItem().getStmtOrNull();
142     const CXXCtorInitializer *I = nullptr;
143     if (!S)
144       I = getItem().getCXXCtorInitializer();
145 
146     if (S)
147       Out << "\"stmt_id\": " << S->getID(getASTContext());
148     else
149       Out << "\"init_id\": " << I->getID(getASTContext());
150 
151     // Kind
152     Out << ", \"kind\": \"" << getItem().getKindAsString()
153         << "\", \"argument_index\": ";
154 
155     if (getItem().getKind() == ConstructionContextItem::ArgumentKind)
156       Out << getItem().getIndex();
157     else
158       Out << "null";
159 
160     // Pretty-print
161     Out << ", \"pretty\": ";
162 
163     if (S) {
164       S->printJson(Out, Helper, PP, /*AddQuotes=*/true);
165     } else {
166       Out << '\"' << I->getAnyMember()->getDeclName() << '\"';
167     }
168   }
169 
170   void Profile(llvm::FoldingSetNodeID &ID) const {
171     ID.Add(Impl.first);
172     ID.AddPointer(Impl.second);
173   }
174 
175   bool operator==(const ConstructedObjectKey &RHS) const {
176     return Impl == RHS.Impl;
177   }
178 
179   bool operator<(const ConstructedObjectKey &RHS) const {
180     return Impl < RHS.Impl;
181   }
182 };
183 } // namespace
184 
185 typedef llvm::ImmutableMap<ConstructedObjectKey, SVal>
186     ObjectsUnderConstructionMap;
187 REGISTER_TRAIT_WITH_PROGRAMSTATE(ObjectsUnderConstruction,
188                                  ObjectsUnderConstructionMap)
189 
190 // This trait is responsible for storing the index of the element that is to be
191 // constructed in the next iteration. As a result a CXXConstructExpr is only
192 // stored if it is array type. Also the index is the index of the continuous
193 // memory region, which is important for multi-dimensional arrays. E.g:: int
194 // arr[2][2]; assume arr[1][1] will be the next element under construction, so
195 // the index is 3.
196 typedef llvm::ImmutableMap<
197     std::pair<const CXXConstructExpr *, const LocationContext *>, unsigned>
198     IndexOfElementToConstructMap;
199 REGISTER_TRAIT_WITH_PROGRAMSTATE(IndexOfElementToConstruct,
200                                  IndexOfElementToConstructMap)
201 
202 // This trait is responsible for holding our pending ArrayInitLoopExprs.
203 // It pairs the LocationContext and the initializer CXXConstructExpr with
204 // the size of the array that's being copy initialized.
205 typedef llvm::ImmutableMap<
206     std::pair<const CXXConstructExpr *, const LocationContext *>, unsigned>
207     PendingInitLoopMap;
208 REGISTER_TRAIT_WITH_PROGRAMSTATE(PendingInitLoop, PendingInitLoopMap)
209 
210 typedef llvm::ImmutableMap<const LocationContext *, unsigned>
211     PendingArrayDestructionMap;
212 REGISTER_TRAIT_WITH_PROGRAMSTATE(PendingArrayDestruction,
213                                  PendingArrayDestructionMap)
214 
215 //===----------------------------------------------------------------------===//
216 // Engine construction and deletion.
217 //===----------------------------------------------------------------------===//
218 
219 static const char* TagProviderName = "ExprEngine";
220 
221 ExprEngine::ExprEngine(cross_tu::CrossTranslationUnitContext &CTU,
222                        AnalysisManager &mgr, SetOfConstDecls *VisitedCalleesIn,
223                        FunctionSummariesTy *FS, InliningModes HowToInlineIn)
224     : CTU(CTU), IsCTUEnabled(mgr.getAnalyzerOptions().IsNaiveCTUEnabled),
225       AMgr(mgr), AnalysisDeclContexts(mgr.getAnalysisDeclContextManager()),
226       Engine(*this, FS, mgr.getAnalyzerOptions()), G(Engine.getGraph()),
227       StateMgr(getContext(), mgr.getStoreManagerCreator(),
228                mgr.getConstraintManagerCreator(), G.getAllocator(), this),
229       SymMgr(StateMgr.getSymbolManager()), MRMgr(StateMgr.getRegionManager()),
230       svalBuilder(StateMgr.getSValBuilder()), ObjCNoRet(mgr.getASTContext()),
231       BR(mgr, *this), VisitedCallees(VisitedCalleesIn),
232       HowToInline(HowToInlineIn) {
233   unsigned TrimInterval = mgr.options.GraphTrimInterval;
234   if (TrimInterval != 0) {
235     // Enable eager node reclamation when constructing the ExplodedGraph.
236     G.enableNodeReclamation(TrimInterval);
237   }
238 }
239 
240 //===----------------------------------------------------------------------===//
241 // Utility methods.
242 //===----------------------------------------------------------------------===//
243 
244 ProgramStateRef ExprEngine::getInitialState(const LocationContext *InitLoc) {
245   ProgramStateRef state = StateMgr.getInitialState(InitLoc);
246   const Decl *D = InitLoc->getDecl();
247 
248   // Preconditions.
249   // FIXME: It would be nice if we had a more general mechanism to add
250   // such preconditions.  Some day.
251   do {
252     if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
253       // Precondition: the first argument of 'main' is an integer guaranteed
254       //  to be > 0.
255       const IdentifierInfo *II = FD->getIdentifier();
256       if (!II || !(II->getName() == "main" && FD->getNumParams() > 0))
257         break;
258 
259       const ParmVarDecl *PD = FD->getParamDecl(0);
260       QualType T = PD->getType();
261       const auto *BT = dyn_cast<BuiltinType>(T);
262       if (!BT || !BT->isInteger())
263         break;
264 
265       const MemRegion *R = state->getRegion(PD, InitLoc);
266       if (!R)
267         break;
268 
269       SVal V = state->getSVal(loc::MemRegionVal(R));
270       SVal Constraint_untested = evalBinOp(state, BO_GT, V,
271                                            svalBuilder.makeZeroVal(T),
272                                            svalBuilder.getConditionType());
273 
274       std::optional<DefinedOrUnknownSVal> Constraint =
275           Constraint_untested.getAs<DefinedOrUnknownSVal>();
276 
277       if (!Constraint)
278         break;
279 
280       if (ProgramStateRef newState = state->assume(*Constraint, true))
281         state = newState;
282     }
283     break;
284   }
285   while (false);
286 
287   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
288     // Precondition: 'self' is always non-null upon entry to an Objective-C
289     // method.
290     const ImplicitParamDecl *SelfD = MD->getSelfDecl();
291     const MemRegion *R = state->getRegion(SelfD, InitLoc);
292     SVal V = state->getSVal(loc::MemRegionVal(R));
293 
294     if (std::optional<Loc> LV = V.getAs<Loc>()) {
295       // Assume that the pointer value in 'self' is non-null.
296       state = state->assume(*LV, true);
297       assert(state && "'self' cannot be null");
298     }
299   }
300 
301   if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
302     if (MD->isImplicitObjectMemberFunction()) {
303       // Precondition: 'this' is always non-null upon entry to the
304       // top-level function.  This is our starting assumption for
305       // analyzing an "open" program.
306       const StackFrameContext *SFC = InitLoc->getStackFrame();
307       if (SFC->getParent() == nullptr) {
308         loc::MemRegionVal L = svalBuilder.getCXXThis(MD, SFC);
309         SVal V = state->getSVal(L);
310         if (std::optional<Loc> LV = V.getAs<Loc>()) {
311           state = state->assume(*LV, true);
312           assert(state && "'this' cannot be null");
313         }
314       }
315     }
316   }
317 
318   return state;
319 }
320 
321 ProgramStateRef ExprEngine::createTemporaryRegionIfNeeded(
322     ProgramStateRef State, const LocationContext *LC,
323     const Expr *InitWithAdjustments, const Expr *Result,
324     const SubRegion **OutRegionWithAdjustments) {
325   // FIXME: This function is a hack that works around the quirky AST
326   // we're often having with respect to C++ temporaries. If only we modelled
327   // the actual execution order of statements properly in the CFG,
328   // all the hassle with adjustments would not be necessary,
329   // and perhaps the whole function would be removed.
330   SVal InitValWithAdjustments = State->getSVal(InitWithAdjustments, LC);
331   if (!Result) {
332     // If we don't have an explicit result expression, we're in "if needed"
333     // mode. Only create a region if the current value is a NonLoc.
334     if (!isa<NonLoc>(InitValWithAdjustments)) {
335       if (OutRegionWithAdjustments)
336         *OutRegionWithAdjustments = nullptr;
337       return State;
338     }
339     Result = InitWithAdjustments;
340   } else {
341     // We need to create a region no matter what. Make sure we don't try to
342     // stuff a Loc into a non-pointer temporary region.
343     assert(!isa<Loc>(InitValWithAdjustments) ||
344            Loc::isLocType(Result->getType()) ||
345            Result->getType()->isMemberPointerType());
346   }
347 
348   ProgramStateManager &StateMgr = State->getStateManager();
349   MemRegionManager &MRMgr = StateMgr.getRegionManager();
350   StoreManager &StoreMgr = StateMgr.getStoreManager();
351 
352   // MaterializeTemporaryExpr may appear out of place, after a few field and
353   // base-class accesses have been made to the object, even though semantically
354   // it is the whole object that gets materialized and lifetime-extended.
355   //
356   // For example:
357   //
358   //   `-MaterializeTemporaryExpr
359   //     `-MemberExpr
360   //       `-CXXTemporaryObjectExpr
361   //
362   // instead of the more natural
363   //
364   //   `-MemberExpr
365   //     `-MaterializeTemporaryExpr
366   //       `-CXXTemporaryObjectExpr
367   //
368   // Use the usual methods for obtaining the expression of the base object,
369   // and record the adjustments that we need to make to obtain the sub-object
370   // that the whole expression 'Ex' refers to. This trick is usual,
371   // in the sense that CodeGen takes a similar route.
372 
373   SmallVector<const Expr *, 2> CommaLHSs;
374   SmallVector<SubobjectAdjustment, 2> Adjustments;
375 
376   const Expr *Init = InitWithAdjustments->skipRValueSubobjectAdjustments(
377       CommaLHSs, Adjustments);
378 
379   // Take the region for Init, i.e. for the whole object. If we do not remember
380   // the region in which the object originally was constructed, come up with
381   // a new temporary region out of thin air and copy the contents of the object
382   // (which are currently present in the Environment, because Init is an rvalue)
383   // into that region. This is not correct, but it is better than nothing.
384   const TypedValueRegion *TR = nullptr;
385   if (const auto *MT = dyn_cast<MaterializeTemporaryExpr>(Result)) {
386     if (std::optional<SVal> V = getObjectUnderConstruction(State, MT, LC)) {
387       State = finishObjectConstruction(State, MT, LC);
388       State = State->BindExpr(Result, LC, *V);
389       return State;
390     } else if (const ValueDecl *VD = MT->getExtendingDecl()) {
391       StorageDuration SD = MT->getStorageDuration();
392       assert(SD != SD_FullExpression);
393       // If this object is bound to a reference with static storage duration, we
394       // put it in a different region to prevent "address leakage" warnings.
395       if (SD == SD_Static || SD == SD_Thread) {
396         TR = MRMgr.getCXXStaticLifetimeExtendedObjectRegion(Init, VD);
397       } else {
398         TR = MRMgr.getCXXLifetimeExtendedObjectRegion(Init, VD, LC);
399       }
400     } else {
401       assert(MT->getStorageDuration() == SD_FullExpression);
402       TR = MRMgr.getCXXTempObjectRegion(Init, LC);
403     }
404   } else {
405     TR = MRMgr.getCXXTempObjectRegion(Init, LC);
406   }
407 
408   SVal Reg = loc::MemRegionVal(TR);
409   SVal BaseReg = Reg;
410 
411   // Make the necessary adjustments to obtain the sub-object.
412   for (const SubobjectAdjustment &Adj : llvm::reverse(Adjustments)) {
413     switch (Adj.Kind) {
414     case SubobjectAdjustment::DerivedToBaseAdjustment:
415       Reg = StoreMgr.evalDerivedToBase(Reg, Adj.DerivedToBase.BasePath);
416       break;
417     case SubobjectAdjustment::FieldAdjustment:
418       Reg = StoreMgr.getLValueField(Adj.Field, Reg);
419       break;
420     case SubobjectAdjustment::MemberPointerAdjustment:
421       // FIXME: Unimplemented.
422       State = State->invalidateRegions(Reg, InitWithAdjustments,
423                                        currBldrCtx->blockCount(), LC, true,
424                                        nullptr, nullptr, nullptr);
425       return State;
426     }
427   }
428 
429   // What remains is to copy the value of the object to the new region.
430   // FIXME: In other words, what we should always do is copy value of the
431   // Init expression (which corresponds to the bigger object) to the whole
432   // temporary region TR. However, this value is often no longer present
433   // in the Environment. If it has disappeared, we instead invalidate TR.
434   // Still, what we can do is assign the value of expression Ex (which
435   // corresponds to the sub-object) to the TR's sub-region Reg. At least,
436   // values inside Reg would be correct.
437   SVal InitVal = State->getSVal(Init, LC);
438   if (InitVal.isUnknown()) {
439     InitVal = getSValBuilder().conjureSymbolVal(Result, LC, Init->getType(),
440                                                 currBldrCtx->blockCount());
441     State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false);
442 
443     // Then we'd need to take the value that certainly exists and bind it
444     // over.
445     if (InitValWithAdjustments.isUnknown()) {
446       // Try to recover some path sensitivity in case we couldn't
447       // compute the value.
448       InitValWithAdjustments = getSValBuilder().conjureSymbolVal(
449           Result, LC, InitWithAdjustments->getType(),
450           currBldrCtx->blockCount());
451     }
452     State =
453         State->bindLoc(Reg.castAs<Loc>(), InitValWithAdjustments, LC, false);
454   } else {
455     State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false);
456   }
457 
458   // The result expression would now point to the correct sub-region of the
459   // newly created temporary region. Do this last in order to getSVal of Init
460   // correctly in case (Result == Init).
461   if (Result->isGLValue()) {
462     State = State->BindExpr(Result, LC, Reg);
463   } else {
464     State = State->BindExpr(Result, LC, InitValWithAdjustments);
465   }
466 
467   // Notify checkers once for two bindLoc()s.
468   State = processRegionChange(State, TR, LC);
469 
470   if (OutRegionWithAdjustments)
471     *OutRegionWithAdjustments = cast<SubRegion>(Reg.getAsRegion());
472   return State;
473 }
474 
475 ProgramStateRef ExprEngine::setIndexOfElementToConstruct(
476     ProgramStateRef State, const CXXConstructExpr *E,
477     const LocationContext *LCtx, unsigned Idx) {
478   auto Key = std::make_pair(E, LCtx->getStackFrame());
479 
480   assert(!State->contains<IndexOfElementToConstruct>(Key) || Idx > 0);
481 
482   return State->set<IndexOfElementToConstruct>(Key, Idx);
483 }
484 
485 std::optional<unsigned>
486 ExprEngine::getPendingInitLoop(ProgramStateRef State, const CXXConstructExpr *E,
487                                const LocationContext *LCtx) {
488   const unsigned *V = State->get<PendingInitLoop>({E, LCtx->getStackFrame()});
489   return V ? std::make_optional(*V) : std::nullopt;
490 }
491 
492 ProgramStateRef ExprEngine::removePendingInitLoop(ProgramStateRef State,
493                                                   const CXXConstructExpr *E,
494                                                   const LocationContext *LCtx) {
495   auto Key = std::make_pair(E, LCtx->getStackFrame());
496 
497   assert(E && State->contains<PendingInitLoop>(Key));
498   return State->remove<PendingInitLoop>(Key);
499 }
500 
501 ProgramStateRef ExprEngine::setPendingInitLoop(ProgramStateRef State,
502                                                const CXXConstructExpr *E,
503                                                const LocationContext *LCtx,
504                                                unsigned Size) {
505   auto Key = std::make_pair(E, LCtx->getStackFrame());
506 
507   assert(!State->contains<PendingInitLoop>(Key) && Size > 0);
508 
509   return State->set<PendingInitLoop>(Key, Size);
510 }
511 
512 std::optional<unsigned>
513 ExprEngine::getIndexOfElementToConstruct(ProgramStateRef State,
514                                          const CXXConstructExpr *E,
515                                          const LocationContext *LCtx) {
516   const unsigned *V =
517       State->get<IndexOfElementToConstruct>({E, LCtx->getStackFrame()});
518   return V ? std::make_optional(*V) : std::nullopt;
519 }
520 
521 ProgramStateRef
522 ExprEngine::removeIndexOfElementToConstruct(ProgramStateRef State,
523                                             const CXXConstructExpr *E,
524                                             const LocationContext *LCtx) {
525   auto Key = std::make_pair(E, LCtx->getStackFrame());
526 
527   assert(E && State->contains<IndexOfElementToConstruct>(Key));
528   return State->remove<IndexOfElementToConstruct>(Key);
529 }
530 
531 std::optional<unsigned>
532 ExprEngine::getPendingArrayDestruction(ProgramStateRef State,
533                                        const LocationContext *LCtx) {
534   assert(LCtx && "LocationContext shouldn't be null!");
535 
536   const unsigned *V =
537       State->get<PendingArrayDestruction>(LCtx->getStackFrame());
538   return V ? std::make_optional(*V) : std::nullopt;
539 }
540 
541 ProgramStateRef ExprEngine::setPendingArrayDestruction(
542     ProgramStateRef State, const LocationContext *LCtx, unsigned Idx) {
543   assert(LCtx && "LocationContext shouldn't be null!");
544 
545   auto Key = LCtx->getStackFrame();
546 
547   return State->set<PendingArrayDestruction>(Key, Idx);
548 }
549 
550 ProgramStateRef
551 ExprEngine::removePendingArrayDestruction(ProgramStateRef State,
552                                           const LocationContext *LCtx) {
553   assert(LCtx && "LocationContext shouldn't be null!");
554 
555   auto Key = LCtx->getStackFrame();
556 
557   assert(LCtx && State->contains<PendingArrayDestruction>(Key));
558   return State->remove<PendingArrayDestruction>(Key);
559 }
560 
561 ProgramStateRef
562 ExprEngine::addObjectUnderConstruction(ProgramStateRef State,
563                                        const ConstructionContextItem &Item,
564                                        const LocationContext *LC, SVal V) {
565   ConstructedObjectKey Key(Item, LC->getStackFrame());
566 
567   const Expr *Init = nullptr;
568 
569   if (auto DS = dyn_cast_or_null<DeclStmt>(Item.getStmtOrNull())) {
570     if (auto VD = dyn_cast_or_null<VarDecl>(DS->getSingleDecl()))
571       Init = VD->getInit();
572   }
573 
574   if (auto LE = dyn_cast_or_null<LambdaExpr>(Item.getStmtOrNull()))
575     Init = *(LE->capture_init_begin() + Item.getIndex());
576 
577   if (!Init && !Item.getStmtOrNull())
578     Init = Item.getCXXCtorInitializer()->getInit();
579 
580   // In an ArrayInitLoopExpr the real initializer is returned by
581   // getSubExpr(). Note that AILEs can be nested in case of
582   // multidimesnional arrays.
583   if (const auto *AILE = dyn_cast_or_null<ArrayInitLoopExpr>(Init))
584     Init = extractElementInitializerFromNestedAILE(AILE);
585 
586   // FIXME: Currently the state might already contain the marker due to
587   // incorrect handling of temporaries bound to default parameters.
588   // The state will already contain the marker if we construct elements
589   // in an array, as we visit the same statement multiple times before
590   // the array declaration. The marker is removed when we exit the
591   // constructor call.
592   assert((!State->get<ObjectsUnderConstruction>(Key) ||
593           Key.getItem().getKind() ==
594               ConstructionContextItem::TemporaryDestructorKind ||
595           State->contains<IndexOfElementToConstruct>(
596               {dyn_cast_or_null<CXXConstructExpr>(Init), LC})) &&
597          "The object is already marked as `UnderConstruction`, when it's not "
598          "supposed to!");
599   return State->set<ObjectsUnderConstruction>(Key, V);
600 }
601 
602 std::optional<SVal>
603 ExprEngine::getObjectUnderConstruction(ProgramStateRef State,
604                                        const ConstructionContextItem &Item,
605                                        const LocationContext *LC) {
606   ConstructedObjectKey Key(Item, LC->getStackFrame());
607   const SVal *V = State->get<ObjectsUnderConstruction>(Key);
608   return V ? std::make_optional(*V) : std::nullopt;
609 }
610 
611 ProgramStateRef
612 ExprEngine::finishObjectConstruction(ProgramStateRef State,
613                                      const ConstructionContextItem &Item,
614                                      const LocationContext *LC) {
615   ConstructedObjectKey Key(Item, LC->getStackFrame());
616   assert(State->contains<ObjectsUnderConstruction>(Key));
617   return State->remove<ObjectsUnderConstruction>(Key);
618 }
619 
620 ProgramStateRef ExprEngine::elideDestructor(ProgramStateRef State,
621                                             const CXXBindTemporaryExpr *BTE,
622                                             const LocationContext *LC) {
623   ConstructedObjectKey Key({BTE, /*IsElided=*/true}, LC);
624   // FIXME: Currently the state might already contain the marker due to
625   // incorrect handling of temporaries bound to default parameters.
626   return State->set<ObjectsUnderConstruction>(Key, UnknownVal());
627 }
628 
629 ProgramStateRef
630 ExprEngine::cleanupElidedDestructor(ProgramStateRef State,
631                                     const CXXBindTemporaryExpr *BTE,
632                                     const LocationContext *LC) {
633   ConstructedObjectKey Key({BTE, /*IsElided=*/true}, LC);
634   assert(State->contains<ObjectsUnderConstruction>(Key));
635   return State->remove<ObjectsUnderConstruction>(Key);
636 }
637 
638 bool ExprEngine::isDestructorElided(ProgramStateRef State,
639                                     const CXXBindTemporaryExpr *BTE,
640                                     const LocationContext *LC) {
641   ConstructedObjectKey Key({BTE, /*IsElided=*/true}, LC);
642   return State->contains<ObjectsUnderConstruction>(Key);
643 }
644 
645 bool ExprEngine::areAllObjectsFullyConstructed(ProgramStateRef State,
646                                                const LocationContext *FromLC,
647                                                const LocationContext *ToLC) {
648   const LocationContext *LC = FromLC;
649   while (LC != ToLC) {
650     assert(LC && "ToLC must be a parent of FromLC!");
651     for (auto I : State->get<ObjectsUnderConstruction>())
652       if (I.first.getLocationContext() == LC)
653         return false;
654 
655     LC = LC->getParent();
656   }
657   return true;
658 }
659 
660 
661 //===----------------------------------------------------------------------===//
662 // Top-level transfer function logic (Dispatcher).
663 //===----------------------------------------------------------------------===//
664 
665 /// evalAssume - Called by ConstraintManager. Used to call checker-specific
666 ///  logic for handling assumptions on symbolic values.
667 ProgramStateRef ExprEngine::processAssume(ProgramStateRef state,
668                                               SVal cond, bool assumption) {
669   return getCheckerManager().runCheckersForEvalAssume(state, cond, assumption);
670 }
671 
672 ProgramStateRef
673 ExprEngine::processRegionChanges(ProgramStateRef state,
674                                  const InvalidatedSymbols *invalidated,
675                                  ArrayRef<const MemRegion *> Explicits,
676                                  ArrayRef<const MemRegion *> Regions,
677                                  const LocationContext *LCtx,
678                                  const CallEvent *Call) {
679   return getCheckerManager().runCheckersForRegionChanges(state, invalidated,
680                                                          Explicits, Regions,
681                                                          LCtx, Call);
682 }
683 
684 static void
685 printObjectsUnderConstructionJson(raw_ostream &Out, ProgramStateRef State,
686                                   const char *NL, const LocationContext *LCtx,
687                                   unsigned int Space = 0, bool IsDot = false) {
688   PrintingPolicy PP =
689       LCtx->getAnalysisDeclContext()->getASTContext().getPrintingPolicy();
690 
691   ++Space;
692   bool HasItem = false;
693 
694   // Store the last key.
695   const ConstructedObjectKey *LastKey = nullptr;
696   for (const auto &I : State->get<ObjectsUnderConstruction>()) {
697     const ConstructedObjectKey &Key = I.first;
698     if (Key.getLocationContext() != LCtx)
699       continue;
700 
701     if (!HasItem) {
702       Out << '[' << NL;
703       HasItem = true;
704     }
705 
706     LastKey = &Key;
707   }
708 
709   for (const auto &I : State->get<ObjectsUnderConstruction>()) {
710     const ConstructedObjectKey &Key = I.first;
711     SVal Value = I.second;
712     if (Key.getLocationContext() != LCtx)
713       continue;
714 
715     Indent(Out, Space, IsDot) << "{ ";
716     Key.printJson(Out, nullptr, PP);
717     Out << ", \"value\": \"" << Value << "\" }";
718 
719     if (&Key != LastKey)
720       Out << ',';
721     Out << NL;
722   }
723 
724   if (HasItem)
725     Indent(Out, --Space, IsDot) << ']'; // End of "location_context".
726   else {
727     Out << "null ";
728   }
729 }
730 
731 static void printIndicesOfElementsToConstructJson(
732     raw_ostream &Out, ProgramStateRef State, const char *NL,
733     const LocationContext *LCtx, unsigned int Space = 0, bool IsDot = false) {
734   using KeyT = std::pair<const Expr *, const LocationContext *>;
735 
736   const auto &Context = LCtx->getAnalysisDeclContext()->getASTContext();
737   PrintingPolicy PP = Context.getPrintingPolicy();
738 
739   ++Space;
740   bool HasItem = false;
741 
742   // Store the last key.
743   KeyT LastKey;
744   for (const auto &I : State->get<IndexOfElementToConstruct>()) {
745     const KeyT &Key = I.first;
746     if (Key.second != LCtx)
747       continue;
748 
749     if (!HasItem) {
750       Out << '[' << NL;
751       HasItem = true;
752     }
753 
754     LastKey = Key;
755   }
756 
757   for (const auto &I : State->get<IndexOfElementToConstruct>()) {
758     const KeyT &Key = I.first;
759     unsigned Value = I.second;
760     if (Key.second != LCtx)
761       continue;
762 
763     Indent(Out, Space, IsDot) << "{ ";
764 
765     // Expr
766     const Expr *E = Key.first;
767     Out << "\"stmt_id\": " << E->getID(Context);
768 
769     // Kind
770     Out << ", \"kind\": null";
771 
772     // Pretty-print
773     Out << ", \"pretty\": ";
774     Out << "\"" << E->getStmtClassName() << ' '
775         << E->getSourceRange().printToString(Context.getSourceManager()) << " '"
776         << QualType::getAsString(E->getType().split(), PP);
777     Out << "'\"";
778 
779     Out << ", \"value\": \"Current index: " << Value - 1 << "\" }";
780 
781     if (Key != LastKey)
782       Out << ',';
783     Out << NL;
784   }
785 
786   if (HasItem)
787     Indent(Out, --Space, IsDot) << ']'; // End of "location_context".
788   else {
789     Out << "null ";
790   }
791 }
792 
793 static void printPendingInitLoopJson(raw_ostream &Out, ProgramStateRef State,
794                                      const char *NL,
795                                      const LocationContext *LCtx,
796                                      unsigned int Space = 0,
797                                      bool IsDot = false) {
798   using KeyT = std::pair<const CXXConstructExpr *, const LocationContext *>;
799 
800   const auto &Context = LCtx->getAnalysisDeclContext()->getASTContext();
801   PrintingPolicy PP = Context.getPrintingPolicy();
802 
803   ++Space;
804   bool HasItem = false;
805 
806   // Store the last key.
807   KeyT LastKey;
808   for (const auto &I : State->get<PendingInitLoop>()) {
809     const KeyT &Key = I.first;
810     if (Key.second != LCtx)
811       continue;
812 
813     if (!HasItem) {
814       Out << '[' << NL;
815       HasItem = true;
816     }
817 
818     LastKey = Key;
819   }
820 
821   for (const auto &I : State->get<PendingInitLoop>()) {
822     const KeyT &Key = I.first;
823     unsigned Value = I.second;
824     if (Key.second != LCtx)
825       continue;
826 
827     Indent(Out, Space, IsDot) << "{ ";
828 
829     const CXXConstructExpr *E = Key.first;
830     Out << "\"stmt_id\": " << E->getID(Context);
831 
832     Out << ", \"kind\": null";
833     Out << ", \"pretty\": ";
834     Out << '\"' << E->getStmtClassName() << ' '
835         << E->getSourceRange().printToString(Context.getSourceManager()) << " '"
836         << QualType::getAsString(E->getType().split(), PP);
837     Out << "'\"";
838 
839     Out << ", \"value\": \"Flattened size: " << Value << "\"}";
840 
841     if (Key != LastKey)
842       Out << ',';
843     Out << NL;
844   }
845 
846   if (HasItem)
847     Indent(Out, --Space, IsDot) << ']'; // End of "location_context".
848   else {
849     Out << "null ";
850   }
851 }
852 
853 static void
854 printPendingArrayDestructionsJson(raw_ostream &Out, ProgramStateRef State,
855                                   const char *NL, const LocationContext *LCtx,
856                                   unsigned int Space = 0, bool IsDot = false) {
857   using KeyT = const LocationContext *;
858 
859   ++Space;
860   bool HasItem = false;
861 
862   // Store the last key.
863   KeyT LastKey = nullptr;
864   for (const auto &I : State->get<PendingArrayDestruction>()) {
865     const KeyT &Key = I.first;
866     if (Key != LCtx)
867       continue;
868 
869     if (!HasItem) {
870       Out << '[' << NL;
871       HasItem = true;
872     }
873 
874     LastKey = Key;
875   }
876 
877   for (const auto &I : State->get<PendingArrayDestruction>()) {
878     const KeyT &Key = I.first;
879     if (Key != LCtx)
880       continue;
881 
882     Indent(Out, Space, IsDot) << "{ ";
883 
884     Out << "\"stmt_id\": null";
885     Out << ", \"kind\": null";
886     Out << ", \"pretty\": \"Current index: \"";
887     Out << ", \"value\": \"" << I.second << "\" }";
888 
889     if (Key != LastKey)
890       Out << ',';
891     Out << NL;
892   }
893 
894   if (HasItem)
895     Indent(Out, --Space, IsDot) << ']'; // End of "location_context".
896   else {
897     Out << "null ";
898   }
899 }
900 
901 /// A helper function to generalize program state trait printing.
902 /// The function invokes Printer as 'Printer(Out, State, NL, LC, Space, IsDot,
903 /// std::forward<Args>(args)...)'. \n One possible type for Printer is
904 /// 'void()(raw_ostream &, ProgramStateRef, const char *, const LocationContext
905 /// *, unsigned int, bool, ...)' \n \param Trait The state trait to be printed.
906 /// \param Printer A void function that prints Trait.
907 /// \param Args An additional parameter pack that is passed to Print upon
908 /// invocation.
909 template <typename Trait, typename Printer, typename... Args>
910 static void printStateTraitWithLocationContextJson(
911     raw_ostream &Out, ProgramStateRef State, const LocationContext *LCtx,
912     const char *NL, unsigned int Space, bool IsDot,
913     const char *jsonPropertyName, Printer printer, Args &&...args) {
914 
915   using RequiredType =
916       void (*)(raw_ostream &, ProgramStateRef, const char *,
917                const LocationContext *, unsigned int, bool, Args &&...);
918 
919   // Try to do as much compile time checking as possible.
920   // FIXME: check for invocable instead of function?
921   static_assert(std::is_function_v<std::remove_pointer_t<Printer>>,
922                 "Printer is not a function!");
923   static_assert(std::is_convertible_v<Printer, RequiredType>,
924                 "Printer doesn't have the required type!");
925 
926   if (LCtx && !State->get<Trait>().isEmpty()) {
927     Indent(Out, Space, IsDot) << '\"' << jsonPropertyName << "\": ";
928     ++Space;
929     Out << '[' << NL;
930     LCtx->printJson(Out, NL, Space, IsDot, [&](const LocationContext *LC) {
931       printer(Out, State, NL, LC, Space, IsDot, std::forward<Args>(args)...);
932     });
933 
934     --Space;
935     Indent(Out, Space, IsDot) << "]," << NL; // End of "jsonPropertyName".
936   }
937 }
938 
939 void ExprEngine::printJson(raw_ostream &Out, ProgramStateRef State,
940                            const LocationContext *LCtx, const char *NL,
941                            unsigned int Space, bool IsDot) const {
942 
943   printStateTraitWithLocationContextJson<ObjectsUnderConstruction>(
944       Out, State, LCtx, NL, Space, IsDot, "constructing_objects",
945       printObjectsUnderConstructionJson);
946   printStateTraitWithLocationContextJson<IndexOfElementToConstruct>(
947       Out, State, LCtx, NL, Space, IsDot, "index_of_element",
948       printIndicesOfElementsToConstructJson);
949   printStateTraitWithLocationContextJson<PendingInitLoop>(
950       Out, State, LCtx, NL, Space, IsDot, "pending_init_loops",
951       printPendingInitLoopJson);
952   printStateTraitWithLocationContextJson<PendingArrayDestruction>(
953       Out, State, LCtx, NL, Space, IsDot, "pending_destructors",
954       printPendingArrayDestructionsJson);
955 
956   getCheckerManager().runCheckersForPrintStateJson(Out, State, NL, Space,
957                                                    IsDot);
958 }
959 
960 void ExprEngine::processEndWorklist() {
961   // This prints the name of the top-level function if we crash.
962   PrettyStackTraceLocationContext CrashInfo(getRootLocationContext());
963   getCheckerManager().runCheckersForEndAnalysis(G, BR, *this);
964 }
965 
966 void ExprEngine::processCFGElement(const CFGElement E, ExplodedNode *Pred,
967                                    unsigned StmtIdx, NodeBuilderContext *Ctx) {
968   PrettyStackTraceLocationContext CrashInfo(Pred->getLocationContext());
969   currStmtIdx = StmtIdx;
970   currBldrCtx = Ctx;
971 
972   switch (E.getKind()) {
973     case CFGElement::Statement:
974     case CFGElement::Constructor:
975     case CFGElement::CXXRecordTypedCall:
976       ProcessStmt(E.castAs<CFGStmt>().getStmt(), Pred);
977       return;
978     case CFGElement::Initializer:
979       ProcessInitializer(E.castAs<CFGInitializer>(), Pred);
980       return;
981     case CFGElement::NewAllocator:
982       ProcessNewAllocator(E.castAs<CFGNewAllocator>().getAllocatorExpr(),
983                           Pred);
984       return;
985     case CFGElement::AutomaticObjectDtor:
986     case CFGElement::DeleteDtor:
987     case CFGElement::BaseDtor:
988     case CFGElement::MemberDtor:
989     case CFGElement::TemporaryDtor:
990       ProcessImplicitDtor(E.castAs<CFGImplicitDtor>(), Pred);
991       return;
992     case CFGElement::LoopExit:
993       ProcessLoopExit(E.castAs<CFGLoopExit>().getLoopStmt(), Pred);
994       return;
995     case CFGElement::LifetimeEnds:
996     case CFGElement::CleanupFunction:
997     case CFGElement::ScopeBegin:
998     case CFGElement::ScopeEnd:
999       return;
1000   }
1001 }
1002 
1003 static bool shouldRemoveDeadBindings(AnalysisManager &AMgr,
1004                                      const Stmt *S,
1005                                      const ExplodedNode *Pred,
1006                                      const LocationContext *LC) {
1007   // Are we never purging state values?
1008   if (AMgr.options.AnalysisPurgeOpt == PurgeNone)
1009     return false;
1010 
1011   // Is this the beginning of a basic block?
1012   if (Pred->getLocation().getAs<BlockEntrance>())
1013     return true;
1014 
1015   // Is this on a non-expression?
1016   if (!isa<Expr>(S))
1017     return true;
1018 
1019   // Run before processing a call.
1020   if (CallEvent::isCallStmt(S))
1021     return true;
1022 
1023   // Is this an expression that is consumed by another expression?  If so,
1024   // postpone cleaning out the state.
1025   ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
1026   return !PM.isConsumedExpr(cast<Expr>(S));
1027 }
1028 
1029 void ExprEngine::removeDead(ExplodedNode *Pred, ExplodedNodeSet &Out,
1030                             const Stmt *ReferenceStmt,
1031                             const LocationContext *LC,
1032                             const Stmt *DiagnosticStmt,
1033                             ProgramPoint::Kind K) {
1034   assert((K == ProgramPoint::PreStmtPurgeDeadSymbolsKind ||
1035           ReferenceStmt == nullptr || isa<ReturnStmt>(ReferenceStmt))
1036           && "PostStmt is not generally supported by the SymbolReaper yet");
1037   assert(LC && "Must pass the current (or expiring) LocationContext");
1038 
1039   if (!DiagnosticStmt) {
1040     DiagnosticStmt = ReferenceStmt;
1041     assert(DiagnosticStmt && "Required for clearing a LocationContext");
1042   }
1043 
1044   NumRemoveDeadBindings++;
1045   ProgramStateRef CleanedState = Pred->getState();
1046 
1047   // LC is the location context being destroyed, but SymbolReaper wants a
1048   // location context that is still live. (If this is the top-level stack
1049   // frame, this will be null.)
1050   if (!ReferenceStmt) {
1051     assert(K == ProgramPoint::PostStmtPurgeDeadSymbolsKind &&
1052            "Use PostStmtPurgeDeadSymbolsKind for clearing a LocationContext");
1053     LC = LC->getParent();
1054   }
1055 
1056   const StackFrameContext *SFC = LC ? LC->getStackFrame() : nullptr;
1057   SymbolReaper SymReaper(SFC, ReferenceStmt, SymMgr, getStoreManager());
1058 
1059   for (auto I : CleanedState->get<ObjectsUnderConstruction>()) {
1060     if (SymbolRef Sym = I.second.getAsSymbol())
1061       SymReaper.markLive(Sym);
1062     if (const MemRegion *MR = I.second.getAsRegion())
1063       SymReaper.markLive(MR);
1064   }
1065 
1066   getCheckerManager().runCheckersForLiveSymbols(CleanedState, SymReaper);
1067 
1068   // Create a state in which dead bindings are removed from the environment
1069   // and the store. TODO: The function should just return new env and store,
1070   // not a new state.
1071   CleanedState = StateMgr.removeDeadBindingsFromEnvironmentAndStore(
1072       CleanedState, SFC, SymReaper);
1073 
1074   // Process any special transfer function for dead symbols.
1075   // Call checkers with the non-cleaned state so that they could query the
1076   // values of the soon to be dead symbols.
1077   ExplodedNodeSet CheckedSet;
1078   getCheckerManager().runCheckersForDeadSymbols(CheckedSet, Pred, SymReaper,
1079                                                 DiagnosticStmt, *this, K);
1080 
1081   // For each node in CheckedSet, generate CleanedNodes that have the
1082   // environment, the store, and the constraints cleaned up but have the
1083   // user-supplied states as the predecessors.
1084   StmtNodeBuilder Bldr(CheckedSet, Out, *currBldrCtx);
1085   for (const auto I : CheckedSet) {
1086     ProgramStateRef CheckerState = I->getState();
1087 
1088     // The constraint manager has not been cleaned up yet, so clean up now.
1089     CheckerState =
1090         getConstraintManager().removeDeadBindings(CheckerState, SymReaper);
1091 
1092     assert(StateMgr.haveEqualEnvironments(CheckerState, Pred->getState()) &&
1093            "Checkers are not allowed to modify the Environment as a part of "
1094            "checkDeadSymbols processing.");
1095     assert(StateMgr.haveEqualStores(CheckerState, Pred->getState()) &&
1096            "Checkers are not allowed to modify the Store as a part of "
1097            "checkDeadSymbols processing.");
1098 
1099     // Create a state based on CleanedState with CheckerState GDM and
1100     // generate a transition to that state.
1101     ProgramStateRef CleanedCheckerSt =
1102         StateMgr.getPersistentStateWithGDM(CleanedState, CheckerState);
1103     Bldr.generateNode(DiagnosticStmt, I, CleanedCheckerSt, cleanupNodeTag(), K);
1104   }
1105 }
1106 
1107 const ProgramPointTag *ExprEngine::cleanupNodeTag() {
1108   static SimpleProgramPointTag cleanupTag(TagProviderName, "Clean Node");
1109   return &cleanupTag;
1110 }
1111 
1112 void ExprEngine::ProcessStmt(const Stmt *currStmt, ExplodedNode *Pred) {
1113   // Reclaim any unnecessary nodes in the ExplodedGraph.
1114   G.reclaimRecentlyAllocatedNodes();
1115 
1116   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
1117                                 currStmt->getBeginLoc(),
1118                                 "Error evaluating statement");
1119 
1120   // Remove dead bindings and symbols.
1121   ExplodedNodeSet CleanedStates;
1122   if (shouldRemoveDeadBindings(AMgr, currStmt, Pred,
1123                                Pred->getLocationContext())) {
1124     removeDead(Pred, CleanedStates, currStmt,
1125                                     Pred->getLocationContext());
1126   } else
1127     CleanedStates.Add(Pred);
1128 
1129   // Visit the statement.
1130   ExplodedNodeSet Dst;
1131   for (const auto I : CleanedStates) {
1132     ExplodedNodeSet DstI;
1133     // Visit the statement.
1134     Visit(currStmt, I, DstI);
1135     Dst.insert(DstI);
1136   }
1137 
1138   // Enqueue the new nodes onto the work list.
1139   Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
1140 }
1141 
1142 void ExprEngine::ProcessLoopExit(const Stmt* S, ExplodedNode *Pred) {
1143   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
1144                                 S->getBeginLoc(),
1145                                 "Error evaluating end of the loop");
1146   ExplodedNodeSet Dst;
1147   Dst.Add(Pred);
1148   NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1149   ProgramStateRef NewState = Pred->getState();
1150 
1151   if(AMgr.options.ShouldUnrollLoops)
1152     NewState = processLoopEnd(S, NewState);
1153 
1154   LoopExit PP(S, Pred->getLocationContext());
1155   Bldr.generateNode(PP, NewState, Pred);
1156   // Enqueue the new nodes onto the work list.
1157   Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
1158 }
1159 
1160 void ExprEngine::ProcessInitializer(const CFGInitializer CFGInit,
1161                                     ExplodedNode *Pred) {
1162   const CXXCtorInitializer *BMI = CFGInit.getInitializer();
1163   const Expr *Init = BMI->getInit()->IgnoreImplicit();
1164   const LocationContext *LC = Pred->getLocationContext();
1165 
1166   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
1167                                 BMI->getSourceLocation(),
1168                                 "Error evaluating initializer");
1169 
1170   // We don't clean up dead bindings here.
1171   const auto *stackFrame = cast<StackFrameContext>(Pred->getLocationContext());
1172   const auto *decl = cast<CXXConstructorDecl>(stackFrame->getDecl());
1173 
1174   ProgramStateRef State = Pred->getState();
1175   SVal thisVal = State->getSVal(svalBuilder.getCXXThis(decl, stackFrame));
1176 
1177   ExplodedNodeSet Tmp;
1178   SVal FieldLoc;
1179 
1180   // Evaluate the initializer, if necessary
1181   if (BMI->isAnyMemberInitializer()) {
1182     // Constructors build the object directly in the field,
1183     // but non-objects must be copied in from the initializer.
1184     if (getObjectUnderConstruction(State, BMI, LC)) {
1185       // The field was directly constructed, so there is no need to bind.
1186       // But we still need to stop tracking the object under construction.
1187       State = finishObjectConstruction(State, BMI, LC);
1188       NodeBuilder Bldr(Pred, Tmp, *currBldrCtx);
1189       PostStore PS(Init, LC, /*Loc*/ nullptr, /*tag*/ nullptr);
1190       Bldr.generateNode(PS, State, Pred);
1191     } else {
1192       const ValueDecl *Field;
1193       if (BMI->isIndirectMemberInitializer()) {
1194         Field = BMI->getIndirectMember();
1195         FieldLoc = State->getLValue(BMI->getIndirectMember(), thisVal);
1196       } else {
1197         Field = BMI->getMember();
1198         FieldLoc = State->getLValue(BMI->getMember(), thisVal);
1199       }
1200 
1201       SVal InitVal;
1202       if (Init->getType()->isArrayType()) {
1203         // Handle arrays of trivial type. We can represent this with a
1204         // primitive load/copy from the base array region.
1205         const ArraySubscriptExpr *ASE;
1206         while ((ASE = dyn_cast<ArraySubscriptExpr>(Init)))
1207           Init = ASE->getBase()->IgnoreImplicit();
1208 
1209         InitVal = State->getSVal(Init, stackFrame);
1210 
1211         // If we fail to get the value for some reason, use a symbolic value.
1212         if (InitVal.isUnknownOrUndef()) {
1213           SValBuilder &SVB = getSValBuilder();
1214           InitVal = SVB.conjureSymbolVal(BMI->getInit(), stackFrame,
1215                                          Field->getType(),
1216                                          currBldrCtx->blockCount());
1217         }
1218       } else {
1219         InitVal = State->getSVal(BMI->getInit(), stackFrame);
1220       }
1221 
1222       PostInitializer PP(BMI, FieldLoc.getAsRegion(), stackFrame);
1223       evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP);
1224     }
1225   } else if (BMI->isBaseInitializer() && isa<InitListExpr>(Init)) {
1226     // When the base class is initialized with an initialization list and the
1227     // base class does not have a ctor, there will not be a CXXConstructExpr to
1228     // initialize the base region. Hence, we need to make the bind for it.
1229     SVal BaseLoc = getStoreManager().evalDerivedToBase(
1230         thisVal, QualType(BMI->getBaseClass(), 0), BMI->isBaseVirtual());
1231     SVal InitVal = State->getSVal(Init, stackFrame);
1232     evalBind(Tmp, Init, Pred, BaseLoc, InitVal, /*isInit=*/true);
1233   } else {
1234     assert(BMI->isBaseInitializer() || BMI->isDelegatingInitializer());
1235     Tmp.insert(Pred);
1236     // We already did all the work when visiting the CXXConstructExpr.
1237   }
1238 
1239   // Construct PostInitializer nodes whether the state changed or not,
1240   // so that the diagnostics don't get confused.
1241   PostInitializer PP(BMI, FieldLoc.getAsRegion(), stackFrame);
1242   ExplodedNodeSet Dst;
1243   NodeBuilder Bldr(Tmp, Dst, *currBldrCtx);
1244   for (const auto I : Tmp) {
1245     ProgramStateRef State = I->getState();
1246     Bldr.generateNode(PP, State, I);
1247   }
1248 
1249   // Enqueue the new nodes onto the work list.
1250   Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
1251 }
1252 
1253 std::pair<ProgramStateRef, uint64_t>
1254 ExprEngine::prepareStateForArrayDestruction(const ProgramStateRef State,
1255                                             const MemRegion *Region,
1256                                             const QualType &ElementTy,
1257                                             const LocationContext *LCtx,
1258                                             SVal *ElementCountVal) {
1259   assert(Region != nullptr && "Not-null region expected");
1260 
1261   QualType Ty = ElementTy.getDesugaredType(getContext());
1262   while (const auto *NTy = dyn_cast<ArrayType>(Ty))
1263     Ty = NTy->getElementType().getDesugaredType(getContext());
1264 
1265   auto ElementCount = getDynamicElementCount(State, Region, svalBuilder, Ty);
1266 
1267   if (ElementCountVal)
1268     *ElementCountVal = ElementCount;
1269 
1270   // Note: the destructors are called in reverse order.
1271   unsigned Idx = 0;
1272   if (auto OptionalIdx = getPendingArrayDestruction(State, LCtx)) {
1273     Idx = *OptionalIdx;
1274   } else {
1275     // The element count is either unknown, or an SVal that's not an integer.
1276     if (!ElementCount.isConstant())
1277       return {State, 0};
1278 
1279     Idx = ElementCount.getAsInteger()->getLimitedValue();
1280   }
1281 
1282   if (Idx == 0)
1283     return {State, 0};
1284 
1285   --Idx;
1286 
1287   return {setPendingArrayDestruction(State, LCtx, Idx), Idx};
1288 }
1289 
1290 void ExprEngine::ProcessImplicitDtor(const CFGImplicitDtor D,
1291                                      ExplodedNode *Pred) {
1292   ExplodedNodeSet Dst;
1293   switch (D.getKind()) {
1294   case CFGElement::AutomaticObjectDtor:
1295     ProcessAutomaticObjDtor(D.castAs<CFGAutomaticObjDtor>(), Pred, Dst);
1296     break;
1297   case CFGElement::BaseDtor:
1298     ProcessBaseDtor(D.castAs<CFGBaseDtor>(), Pred, Dst);
1299     break;
1300   case CFGElement::MemberDtor:
1301     ProcessMemberDtor(D.castAs<CFGMemberDtor>(), Pred, Dst);
1302     break;
1303   case CFGElement::TemporaryDtor:
1304     ProcessTemporaryDtor(D.castAs<CFGTemporaryDtor>(), Pred, Dst);
1305     break;
1306   case CFGElement::DeleteDtor:
1307     ProcessDeleteDtor(D.castAs<CFGDeleteDtor>(), Pred, Dst);
1308     break;
1309   default:
1310     llvm_unreachable("Unexpected dtor kind.");
1311   }
1312 
1313   // Enqueue the new nodes onto the work list.
1314   Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
1315 }
1316 
1317 void ExprEngine::ProcessNewAllocator(const CXXNewExpr *NE,
1318                                      ExplodedNode *Pred) {
1319   ExplodedNodeSet Dst;
1320   AnalysisManager &AMgr = getAnalysisManager();
1321   AnalyzerOptions &Opts = AMgr.options;
1322   // TODO: We're not evaluating allocators for all cases just yet as
1323   // we're not handling the return value correctly, which causes false
1324   // positives when the alpha.cplusplus.NewDeleteLeaks check is on.
1325   if (Opts.MayInlineCXXAllocator)
1326     VisitCXXNewAllocatorCall(NE, Pred, Dst);
1327   else {
1328     NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1329     const LocationContext *LCtx = Pred->getLocationContext();
1330     PostImplicitCall PP(NE->getOperatorNew(), NE->getBeginLoc(), LCtx,
1331                         getCFGElementRef());
1332     Bldr.generateNode(PP, Pred->getState(), Pred);
1333   }
1334   Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
1335 }
1336 
1337 void ExprEngine::ProcessAutomaticObjDtor(const CFGAutomaticObjDtor Dtor,
1338                                          ExplodedNode *Pred,
1339                                          ExplodedNodeSet &Dst) {
1340   const auto *DtorDecl = Dtor.getDestructorDecl(getContext());
1341   const VarDecl *varDecl = Dtor.getVarDecl();
1342   QualType varType = varDecl->getType();
1343 
1344   ProgramStateRef state = Pred->getState();
1345   const LocationContext *LCtx = Pred->getLocationContext();
1346 
1347   SVal dest = state->getLValue(varDecl, LCtx);
1348   const MemRegion *Region = dest.castAs<loc::MemRegionVal>().getRegion();
1349 
1350   if (varType->isReferenceType()) {
1351     const MemRegion *ValueRegion = state->getSVal(Region).getAsRegion();
1352     if (!ValueRegion) {
1353       // FIXME: This should not happen. The language guarantees a presence
1354       // of a valid initializer here, so the reference shall not be undefined.
1355       // It seems that we're calling destructors over variables that
1356       // were not initialized yet.
1357       return;
1358     }
1359     Region = ValueRegion->getBaseRegion();
1360     varType = cast<TypedValueRegion>(Region)->getValueType();
1361   }
1362 
1363   unsigned Idx = 0;
1364   if (isa<ArrayType>(varType)) {
1365     SVal ElementCount;
1366     std::tie(state, Idx) = prepareStateForArrayDestruction(
1367         state, Region, varType, LCtx, &ElementCount);
1368 
1369     if (ElementCount.isConstant()) {
1370       uint64_t ArrayLength = ElementCount.getAsInteger()->getLimitedValue();
1371       assert(ArrayLength &&
1372              "An automatic dtor for a 0 length array shouldn't be triggered!");
1373 
1374       // Still handle this case if we don't have assertions enabled.
1375       if (!ArrayLength) {
1376         static SimpleProgramPointTag PT(
1377             "ExprEngine", "Skipping automatic 0 length array destruction, "
1378                           "which shouldn't be in the CFG.");
1379         PostImplicitCall PP(DtorDecl, varDecl->getLocation(), LCtx,
1380                             getCFGElementRef(), &PT);
1381         NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1382         Bldr.generateSink(PP, Pred->getState(), Pred);
1383         return;
1384       }
1385     }
1386   }
1387 
1388   EvalCallOptions CallOpts;
1389   Region = makeElementRegion(state, loc::MemRegionVal(Region), varType,
1390                              CallOpts.IsArrayCtorOrDtor, Idx)
1391                .getAsRegion();
1392 
1393   NodeBuilder Bldr(Pred, Dst, getBuilderContext());
1394 
1395   static SimpleProgramPointTag PT("ExprEngine",
1396                                   "Prepare for object destruction");
1397   PreImplicitCall PP(DtorDecl, varDecl->getLocation(), LCtx, getCFGElementRef(),
1398                      &PT);
1399   Pred = Bldr.generateNode(PP, state, Pred);
1400 
1401   if (!Pred)
1402     return;
1403   Bldr.takeNodes(Pred);
1404 
1405   VisitCXXDestructor(varType, Region, Dtor.getTriggerStmt(),
1406                      /*IsBase=*/false, Pred, Dst, CallOpts);
1407 }
1408 
1409 void ExprEngine::ProcessDeleteDtor(const CFGDeleteDtor Dtor,
1410                                    ExplodedNode *Pred,
1411                                    ExplodedNodeSet &Dst) {
1412   ProgramStateRef State = Pred->getState();
1413   const LocationContext *LCtx = Pred->getLocationContext();
1414   const CXXDeleteExpr *DE = Dtor.getDeleteExpr();
1415   const Stmt *Arg = DE->getArgument();
1416   QualType DTy = DE->getDestroyedType();
1417   SVal ArgVal = State->getSVal(Arg, LCtx);
1418 
1419   // If the argument to delete is known to be a null value,
1420   // don't run destructor.
1421   if (State->isNull(ArgVal).isConstrainedTrue()) {
1422     QualType BTy = getContext().getBaseElementType(DTy);
1423     const CXXRecordDecl *RD = BTy->getAsCXXRecordDecl();
1424     const CXXDestructorDecl *Dtor = RD->getDestructor();
1425 
1426     PostImplicitCall PP(Dtor, DE->getBeginLoc(), LCtx, getCFGElementRef());
1427     NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1428     Bldr.generateNode(PP, Pred->getState(), Pred);
1429     return;
1430   }
1431 
1432   auto getDtorDecl = [](const QualType &DTy) {
1433     const CXXRecordDecl *RD = DTy->getAsCXXRecordDecl();
1434     return RD->getDestructor();
1435   };
1436 
1437   unsigned Idx = 0;
1438   EvalCallOptions CallOpts;
1439   const MemRegion *ArgR = ArgVal.getAsRegion();
1440 
1441   if (DE->isArrayForm()) {
1442     CallOpts.IsArrayCtorOrDtor = true;
1443     // Yes, it may even be a multi-dimensional array.
1444     while (const auto *AT = getContext().getAsArrayType(DTy))
1445       DTy = AT->getElementType();
1446 
1447     if (ArgR) {
1448       SVal ElementCount;
1449       std::tie(State, Idx) = prepareStateForArrayDestruction(
1450           State, ArgR, DTy, LCtx, &ElementCount);
1451 
1452       // If we're about to destruct a 0 length array, don't run any of the
1453       // destructors.
1454       if (ElementCount.isConstant() &&
1455           ElementCount.getAsInteger()->getLimitedValue() == 0) {
1456 
1457         static SimpleProgramPointTag PT(
1458             "ExprEngine", "Skipping 0 length array delete destruction");
1459         PostImplicitCall PP(getDtorDecl(DTy), DE->getBeginLoc(), LCtx,
1460                             getCFGElementRef(), &PT);
1461         NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1462         Bldr.generateNode(PP, Pred->getState(), Pred);
1463         return;
1464       }
1465 
1466       ArgR = State->getLValue(DTy, svalBuilder.makeArrayIndex(Idx), ArgVal)
1467                  .getAsRegion();
1468     }
1469   }
1470 
1471   NodeBuilder Bldr(Pred, Dst, getBuilderContext());
1472   static SimpleProgramPointTag PT("ExprEngine",
1473                                   "Prepare for object destruction");
1474   PreImplicitCall PP(getDtorDecl(DTy), DE->getBeginLoc(), LCtx,
1475                      getCFGElementRef(), &PT);
1476   Pred = Bldr.generateNode(PP, State, Pred);
1477 
1478   if (!Pred)
1479     return;
1480   Bldr.takeNodes(Pred);
1481 
1482   VisitCXXDestructor(DTy, ArgR, DE, /*IsBase=*/false, Pred, Dst, CallOpts);
1483 }
1484 
1485 void ExprEngine::ProcessBaseDtor(const CFGBaseDtor D,
1486                                  ExplodedNode *Pred, ExplodedNodeSet &Dst) {
1487   const LocationContext *LCtx = Pred->getLocationContext();
1488 
1489   const auto *CurDtor = cast<CXXDestructorDecl>(LCtx->getDecl());
1490   Loc ThisPtr = getSValBuilder().getCXXThis(CurDtor,
1491                                             LCtx->getStackFrame());
1492   SVal ThisVal = Pred->getState()->getSVal(ThisPtr);
1493 
1494   // Create the base object region.
1495   const CXXBaseSpecifier *Base = D.getBaseSpecifier();
1496   QualType BaseTy = Base->getType();
1497   SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal, BaseTy,
1498                                                      Base->isVirtual());
1499 
1500   EvalCallOptions CallOpts;
1501   VisitCXXDestructor(BaseTy, BaseVal.getAsRegion(), CurDtor->getBody(),
1502                      /*IsBase=*/true, Pred, Dst, CallOpts);
1503 }
1504 
1505 void ExprEngine::ProcessMemberDtor(const CFGMemberDtor D,
1506                                    ExplodedNode *Pred, ExplodedNodeSet &Dst) {
1507   const auto *DtorDecl = D.getDestructorDecl(getContext());
1508   const FieldDecl *Member = D.getFieldDecl();
1509   QualType T = Member->getType();
1510   ProgramStateRef State = Pred->getState();
1511   const LocationContext *LCtx = Pred->getLocationContext();
1512 
1513   const auto *CurDtor = cast<CXXDestructorDecl>(LCtx->getDecl());
1514   Loc ThisStorageLoc =
1515       getSValBuilder().getCXXThis(CurDtor, LCtx->getStackFrame());
1516   Loc ThisLoc = State->getSVal(ThisStorageLoc).castAs<Loc>();
1517   SVal FieldVal = State->getLValue(Member, ThisLoc);
1518 
1519   unsigned Idx = 0;
1520   if (isa<ArrayType>(T)) {
1521     SVal ElementCount;
1522     std::tie(State, Idx) = prepareStateForArrayDestruction(
1523         State, FieldVal.getAsRegion(), T, LCtx, &ElementCount);
1524 
1525     if (ElementCount.isConstant()) {
1526       uint64_t ArrayLength = ElementCount.getAsInteger()->getLimitedValue();
1527       assert(ArrayLength &&
1528              "A member dtor for a 0 length array shouldn't be triggered!");
1529 
1530       // Still handle this case if we don't have assertions enabled.
1531       if (!ArrayLength) {
1532         static SimpleProgramPointTag PT(
1533             "ExprEngine", "Skipping member 0 length array destruction, which "
1534                           "shouldn't be in the CFG.");
1535         PostImplicitCall PP(DtorDecl, Member->getLocation(), LCtx,
1536                             getCFGElementRef(), &PT);
1537         NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1538         Bldr.generateSink(PP, Pred->getState(), Pred);
1539         return;
1540       }
1541     }
1542   }
1543 
1544   EvalCallOptions CallOpts;
1545   FieldVal =
1546       makeElementRegion(State, FieldVal, T, CallOpts.IsArrayCtorOrDtor, Idx);
1547 
1548   NodeBuilder Bldr(Pred, Dst, getBuilderContext());
1549 
1550   static SimpleProgramPointTag PT("ExprEngine",
1551                                   "Prepare for object destruction");
1552   PreImplicitCall PP(DtorDecl, Member->getLocation(), LCtx, getCFGElementRef(),
1553                      &PT);
1554   Pred = Bldr.generateNode(PP, State, Pred);
1555 
1556   if (!Pred)
1557     return;
1558   Bldr.takeNodes(Pred);
1559 
1560   VisitCXXDestructor(T, FieldVal.getAsRegion(), CurDtor->getBody(),
1561                      /*IsBase=*/false, Pred, Dst, CallOpts);
1562 }
1563 
1564 void ExprEngine::ProcessTemporaryDtor(const CFGTemporaryDtor D,
1565                                       ExplodedNode *Pred,
1566                                       ExplodedNodeSet &Dst) {
1567   const CXXBindTemporaryExpr *BTE = D.getBindTemporaryExpr();
1568   ProgramStateRef State = Pred->getState();
1569   const LocationContext *LC = Pred->getLocationContext();
1570   const MemRegion *MR = nullptr;
1571 
1572   if (std::optional<SVal> V = getObjectUnderConstruction(
1573           State, D.getBindTemporaryExpr(), Pred->getLocationContext())) {
1574     // FIXME: Currently we insert temporary destructors for default parameters,
1575     // but we don't insert the constructors, so the entry in
1576     // ObjectsUnderConstruction may be missing.
1577     State = finishObjectConstruction(State, D.getBindTemporaryExpr(),
1578                                      Pred->getLocationContext());
1579     MR = V->getAsRegion();
1580   }
1581 
1582   // If copy elision has occurred, and the constructor corresponding to the
1583   // destructor was elided, we need to skip the destructor as well.
1584   if (isDestructorElided(State, BTE, LC)) {
1585     State = cleanupElidedDestructor(State, BTE, LC);
1586     NodeBuilder Bldr(Pred, Dst, *currBldrCtx);
1587     PostImplicitCall PP(D.getDestructorDecl(getContext()),
1588                         D.getBindTemporaryExpr()->getBeginLoc(),
1589                         Pred->getLocationContext(), getCFGElementRef());
1590     Bldr.generateNode(PP, State, Pred);
1591     return;
1592   }
1593 
1594   ExplodedNodeSet CleanDtorState;
1595   StmtNodeBuilder StmtBldr(Pred, CleanDtorState, *currBldrCtx);
1596   StmtBldr.generateNode(D.getBindTemporaryExpr(), Pred, State);
1597 
1598   QualType T = D.getBindTemporaryExpr()->getSubExpr()->getType();
1599   // FIXME: Currently CleanDtorState can be empty here due to temporaries being
1600   // bound to default parameters.
1601   assert(CleanDtorState.size() <= 1);
1602   ExplodedNode *CleanPred =
1603       CleanDtorState.empty() ? Pred : *CleanDtorState.begin();
1604 
1605   EvalCallOptions CallOpts;
1606   CallOpts.IsTemporaryCtorOrDtor = true;
1607   if (!MR) {
1608     // FIXME: If we have no MR, we still need to unwrap the array to avoid
1609     // destroying the whole array at once.
1610     //
1611     // For this case there is no universal solution as there is no way to
1612     // directly create an array of temporary objects. There are some expressions
1613     // however which can create temporary objects and have an array type.
1614     //
1615     // E.g.: std::initializer_list<S>{S(), S()};
1616     //
1617     // The expression above has a type of 'const struct S[2]' but it's a single
1618     // 'std::initializer_list<>'. The destructors of the 2 temporary 'S()'
1619     // objects will be called anyway, because they are 2 separate objects in 2
1620     // separate clusters, i.e.: not an array.
1621     //
1622     // Now the 'std::initializer_list<>' is not an array either even though it
1623     // has the type of an array. The point is, we only want to invoke the
1624     // destructor for the initializer list once not twice or so.
1625     while (const ArrayType *AT = getContext().getAsArrayType(T)) {
1626       T = AT->getElementType();
1627 
1628       // FIXME: Enable this flag once we handle this case properly.
1629       // CallOpts.IsArrayCtorOrDtor = true;
1630     }
1631   } else {
1632     // FIXME: We'd eventually need to makeElementRegion() trick here,
1633     // but for now we don't have the respective construction contexts,
1634     // so MR would always be null in this case. Do nothing for now.
1635   }
1636   VisitCXXDestructor(T, MR, D.getBindTemporaryExpr(),
1637                      /*IsBase=*/false, CleanPred, Dst, CallOpts);
1638 }
1639 
1640 void ExprEngine::processCleanupTemporaryBranch(const CXXBindTemporaryExpr *BTE,
1641                                                NodeBuilderContext &BldCtx,
1642                                                ExplodedNode *Pred,
1643                                                ExplodedNodeSet &Dst,
1644                                                const CFGBlock *DstT,
1645                                                const CFGBlock *DstF) {
1646   BranchNodeBuilder TempDtorBuilder(Pred, Dst, BldCtx, DstT, DstF);
1647   ProgramStateRef State = Pred->getState();
1648   const LocationContext *LC = Pred->getLocationContext();
1649   if (getObjectUnderConstruction(State, BTE, LC)) {
1650     TempDtorBuilder.generateNode(State, true, Pred);
1651   } else {
1652     TempDtorBuilder.generateNode(State, false, Pred);
1653   }
1654 }
1655 
1656 void ExprEngine::VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *BTE,
1657                                            ExplodedNodeSet &PreVisit,
1658                                            ExplodedNodeSet &Dst) {
1659   // This is a fallback solution in case we didn't have a construction
1660   // context when we were constructing the temporary. Otherwise the map should
1661   // have been populated there.
1662   if (!getAnalysisManager().options.ShouldIncludeTemporaryDtorsInCFG) {
1663     // In case we don't have temporary destructors in the CFG, do not mark
1664     // the initialization - we would otherwise never clean it up.
1665     Dst = PreVisit;
1666     return;
1667   }
1668   StmtNodeBuilder StmtBldr(PreVisit, Dst, *currBldrCtx);
1669   for (ExplodedNode *Node : PreVisit) {
1670     ProgramStateRef State = Node->getState();
1671     const LocationContext *LC = Node->getLocationContext();
1672     if (!getObjectUnderConstruction(State, BTE, LC)) {
1673       // FIXME: Currently the state might also already contain the marker due to
1674       // incorrect handling of temporaries bound to default parameters; for
1675       // those, we currently skip the CXXBindTemporaryExpr but rely on adding
1676       // temporary destructor nodes.
1677       State = addObjectUnderConstruction(State, BTE, LC, UnknownVal());
1678     }
1679     StmtBldr.generateNode(BTE, Node, State);
1680   }
1681 }
1682 
1683 ProgramStateRef ExprEngine::escapeValues(ProgramStateRef State,
1684                                          ArrayRef<SVal> Vs,
1685                                          PointerEscapeKind K,
1686                                          const CallEvent *Call) const {
1687   class CollectReachableSymbolsCallback final : public SymbolVisitor {
1688     InvalidatedSymbols &Symbols;
1689 
1690   public:
1691     explicit CollectReachableSymbolsCallback(InvalidatedSymbols &Symbols)
1692         : Symbols(Symbols) {}
1693 
1694     const InvalidatedSymbols &getSymbols() const { return Symbols; }
1695 
1696     bool VisitSymbol(SymbolRef Sym) override {
1697       Symbols.insert(Sym);
1698       return true;
1699     }
1700   };
1701   InvalidatedSymbols Symbols;
1702   CollectReachableSymbolsCallback CallBack(Symbols);
1703   for (SVal V : Vs)
1704     State->scanReachableSymbols(V, CallBack);
1705 
1706   return getCheckerManager().runCheckersForPointerEscape(
1707       State, CallBack.getSymbols(), Call, K, nullptr);
1708 }
1709 
1710 void ExprEngine::Visit(const Stmt *S, ExplodedNode *Pred,
1711                        ExplodedNodeSet &DstTop) {
1712   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
1713                                 S->getBeginLoc(), "Error evaluating statement");
1714   ExplodedNodeSet Dst;
1715   StmtNodeBuilder Bldr(Pred, DstTop, *currBldrCtx);
1716 
1717   assert(!isa<Expr>(S) || S == cast<Expr>(S)->IgnoreParens());
1718 
1719   switch (S->getStmtClass()) {
1720     // C++, OpenMP and ARC stuff we don't support yet.
1721     case Stmt::CXXDependentScopeMemberExprClass:
1722     case Stmt::CXXTryStmtClass:
1723     case Stmt::CXXTypeidExprClass:
1724     case Stmt::CXXUuidofExprClass:
1725     case Stmt::CXXFoldExprClass:
1726     case Stmt::MSPropertyRefExprClass:
1727     case Stmt::MSPropertySubscriptExprClass:
1728     case Stmt::CXXUnresolvedConstructExprClass:
1729     case Stmt::DependentScopeDeclRefExprClass:
1730     case Stmt::ArrayTypeTraitExprClass:
1731     case Stmt::ExpressionTraitExprClass:
1732     case Stmt::UnresolvedLookupExprClass:
1733     case Stmt::UnresolvedMemberExprClass:
1734     case Stmt::TypoExprClass:
1735     case Stmt::RecoveryExprClass:
1736     case Stmt::CXXNoexceptExprClass:
1737     case Stmt::PackExpansionExprClass:
1738     case Stmt::PackIndexingExprClass:
1739     case Stmt::SubstNonTypeTemplateParmPackExprClass:
1740     case Stmt::FunctionParmPackExprClass:
1741     case Stmt::CoroutineBodyStmtClass:
1742     case Stmt::CoawaitExprClass:
1743     case Stmt::DependentCoawaitExprClass:
1744     case Stmt::CoreturnStmtClass:
1745     case Stmt::CoyieldExprClass:
1746     case Stmt::SEHTryStmtClass:
1747     case Stmt::SEHExceptStmtClass:
1748     case Stmt::SEHLeaveStmtClass:
1749     case Stmt::SEHFinallyStmtClass:
1750     case Stmt::OMPCanonicalLoopClass:
1751     case Stmt::OMPParallelDirectiveClass:
1752     case Stmt::OMPSimdDirectiveClass:
1753     case Stmt::OMPForDirectiveClass:
1754     case Stmt::OMPForSimdDirectiveClass:
1755     case Stmt::OMPSectionsDirectiveClass:
1756     case Stmt::OMPSectionDirectiveClass:
1757     case Stmt::OMPScopeDirectiveClass:
1758     case Stmt::OMPSingleDirectiveClass:
1759     case Stmt::OMPMasterDirectiveClass:
1760     case Stmt::OMPCriticalDirectiveClass:
1761     case Stmt::OMPParallelForDirectiveClass:
1762     case Stmt::OMPParallelForSimdDirectiveClass:
1763     case Stmt::OMPParallelSectionsDirectiveClass:
1764     case Stmt::OMPParallelMasterDirectiveClass:
1765     case Stmt::OMPParallelMaskedDirectiveClass:
1766     case Stmt::OMPTaskDirectiveClass:
1767     case Stmt::OMPTaskyieldDirectiveClass:
1768     case Stmt::OMPBarrierDirectiveClass:
1769     case Stmt::OMPTaskwaitDirectiveClass:
1770     case Stmt::OMPErrorDirectiveClass:
1771     case Stmt::OMPTaskgroupDirectiveClass:
1772     case Stmt::OMPFlushDirectiveClass:
1773     case Stmt::OMPDepobjDirectiveClass:
1774     case Stmt::OMPScanDirectiveClass:
1775     case Stmt::OMPOrderedDirectiveClass:
1776     case Stmt::OMPAtomicDirectiveClass:
1777     case Stmt::OMPAssumeDirectiveClass:
1778     case Stmt::OMPTargetDirectiveClass:
1779     case Stmt::OMPTargetDataDirectiveClass:
1780     case Stmt::OMPTargetEnterDataDirectiveClass:
1781     case Stmt::OMPTargetExitDataDirectiveClass:
1782     case Stmt::OMPTargetParallelDirectiveClass:
1783     case Stmt::OMPTargetParallelForDirectiveClass:
1784     case Stmt::OMPTargetUpdateDirectiveClass:
1785     case Stmt::OMPTeamsDirectiveClass:
1786     case Stmt::OMPCancellationPointDirectiveClass:
1787     case Stmt::OMPCancelDirectiveClass:
1788     case Stmt::OMPTaskLoopDirectiveClass:
1789     case Stmt::OMPTaskLoopSimdDirectiveClass:
1790     case Stmt::OMPMasterTaskLoopDirectiveClass:
1791     case Stmt::OMPMaskedTaskLoopDirectiveClass:
1792     case Stmt::OMPMasterTaskLoopSimdDirectiveClass:
1793     case Stmt::OMPMaskedTaskLoopSimdDirectiveClass:
1794     case Stmt::OMPParallelMasterTaskLoopDirectiveClass:
1795     case Stmt::OMPParallelMaskedTaskLoopDirectiveClass:
1796     case Stmt::OMPParallelMasterTaskLoopSimdDirectiveClass:
1797     case Stmt::OMPParallelMaskedTaskLoopSimdDirectiveClass:
1798     case Stmt::OMPDistributeDirectiveClass:
1799     case Stmt::OMPDistributeParallelForDirectiveClass:
1800     case Stmt::OMPDistributeParallelForSimdDirectiveClass:
1801     case Stmt::OMPDistributeSimdDirectiveClass:
1802     case Stmt::OMPTargetParallelForSimdDirectiveClass:
1803     case Stmt::OMPTargetSimdDirectiveClass:
1804     case Stmt::OMPTeamsDistributeDirectiveClass:
1805     case Stmt::OMPTeamsDistributeSimdDirectiveClass:
1806     case Stmt::OMPTeamsDistributeParallelForSimdDirectiveClass:
1807     case Stmt::OMPTeamsDistributeParallelForDirectiveClass:
1808     case Stmt::OMPTargetTeamsDirectiveClass:
1809     case Stmt::OMPTargetTeamsDistributeDirectiveClass:
1810     case Stmt::OMPTargetTeamsDistributeParallelForDirectiveClass:
1811     case Stmt::OMPTargetTeamsDistributeParallelForSimdDirectiveClass:
1812     case Stmt::OMPTargetTeamsDistributeSimdDirectiveClass:
1813     case Stmt::OMPReverseDirectiveClass:
1814     case Stmt::OMPTileDirectiveClass:
1815     case Stmt::OMPInterchangeDirectiveClass:
1816     case Stmt::OMPInteropDirectiveClass:
1817     case Stmt::OMPDispatchDirectiveClass:
1818     case Stmt::OMPMaskedDirectiveClass:
1819     case Stmt::OMPGenericLoopDirectiveClass:
1820     case Stmt::OMPTeamsGenericLoopDirectiveClass:
1821     case Stmt::OMPTargetTeamsGenericLoopDirectiveClass:
1822     case Stmt::OMPParallelGenericLoopDirectiveClass:
1823     case Stmt::OMPTargetParallelGenericLoopDirectiveClass:
1824     case Stmt::CapturedStmtClass:
1825     case Stmt::OpenACCComputeConstructClass:
1826     case Stmt::OpenACCLoopConstructClass:
1827     case Stmt::OpenACCCombinedConstructClass:
1828     case Stmt::OpenACCDataConstructClass:
1829     case Stmt::OpenACCEnterDataConstructClass:
1830     case Stmt::OpenACCExitDataConstructClass:
1831     case Stmt::OpenACCHostDataConstructClass:
1832     case Stmt::OpenACCWaitConstructClass:
1833     case Stmt::OMPUnrollDirectiveClass:
1834     case Stmt::OMPMetaDirectiveClass:
1835     case Stmt::HLSLOutArgExprClass: {
1836       const ExplodedNode *node = Bldr.generateSink(S, Pred, Pred->getState());
1837       Engine.addAbortedBlock(node, currBldrCtx->getBlock());
1838       break;
1839     }
1840 
1841     case Stmt::ParenExprClass:
1842       llvm_unreachable("ParenExprs already handled.");
1843     case Stmt::GenericSelectionExprClass:
1844       llvm_unreachable("GenericSelectionExprs already handled.");
1845     // Cases that should never be evaluated simply because they shouldn't
1846     // appear in the CFG.
1847     case Stmt::BreakStmtClass:
1848     case Stmt::CaseStmtClass:
1849     case Stmt::CompoundStmtClass:
1850     case Stmt::ContinueStmtClass:
1851     case Stmt::CXXForRangeStmtClass:
1852     case Stmt::DefaultStmtClass:
1853     case Stmt::DoStmtClass:
1854     case Stmt::ForStmtClass:
1855     case Stmt::GotoStmtClass:
1856     case Stmt::IfStmtClass:
1857     case Stmt::IndirectGotoStmtClass:
1858     case Stmt::LabelStmtClass:
1859     case Stmt::NoStmtClass:
1860     case Stmt::NullStmtClass:
1861     case Stmt::SwitchStmtClass:
1862     case Stmt::WhileStmtClass:
1863     case Expr::MSDependentExistsStmtClass:
1864       llvm_unreachable("Stmt should not be in analyzer evaluation loop");
1865     case Stmt::ImplicitValueInitExprClass:
1866       // These nodes are shared in the CFG and would case caching out.
1867       // Moreover, no additional evaluation required for them, the
1868       // analyzer can reconstruct these values from the AST.
1869       llvm_unreachable("Should be pruned from CFG");
1870 
1871     case Stmt::ObjCSubscriptRefExprClass:
1872     case Stmt::ObjCPropertyRefExprClass:
1873       llvm_unreachable("These are handled by PseudoObjectExpr");
1874 
1875     case Stmt::GNUNullExprClass: {
1876       // GNU __null is a pointer-width integer, not an actual pointer.
1877       ProgramStateRef state = Pred->getState();
1878       state = state->BindExpr(
1879           S, Pred->getLocationContext(),
1880           svalBuilder.makeIntValWithWidth(getContext().VoidPtrTy, 0));
1881       Bldr.generateNode(S, Pred, state);
1882       break;
1883     }
1884 
1885     case Stmt::ObjCAtSynchronizedStmtClass:
1886       Bldr.takeNodes(Pred);
1887       VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S), Pred, Dst);
1888       Bldr.addNodes(Dst);
1889       break;
1890 
1891     case Expr::ConstantExprClass:
1892     case Stmt::ExprWithCleanupsClass:
1893       // Handled due to fully linearised CFG.
1894       break;
1895 
1896     case Stmt::CXXBindTemporaryExprClass: {
1897       Bldr.takeNodes(Pred);
1898       ExplodedNodeSet PreVisit;
1899       getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
1900       ExplodedNodeSet Next;
1901       VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), PreVisit, Next);
1902       getCheckerManager().runCheckersForPostStmt(Dst, Next, S, *this);
1903       Bldr.addNodes(Dst);
1904       break;
1905     }
1906 
1907     case Stmt::ArrayInitLoopExprClass:
1908       Bldr.takeNodes(Pred);
1909       VisitArrayInitLoopExpr(cast<ArrayInitLoopExpr>(S), Pred, Dst);
1910       Bldr.addNodes(Dst);
1911       break;
1912     // Cases not handled yet; but will handle some day.
1913     case Stmt::DesignatedInitExprClass:
1914     case Stmt::DesignatedInitUpdateExprClass:
1915     case Stmt::ArrayInitIndexExprClass:
1916     case Stmt::ExtVectorElementExprClass:
1917     case Stmt::ImaginaryLiteralClass:
1918     case Stmt::ObjCAtCatchStmtClass:
1919     case Stmt::ObjCAtFinallyStmtClass:
1920     case Stmt::ObjCAtTryStmtClass:
1921     case Stmt::ObjCAutoreleasePoolStmtClass:
1922     case Stmt::ObjCEncodeExprClass:
1923     case Stmt::ObjCIsaExprClass:
1924     case Stmt::ObjCProtocolExprClass:
1925     case Stmt::ObjCSelectorExprClass:
1926     case Stmt::ParenListExprClass:
1927     case Stmt::ShuffleVectorExprClass:
1928     case Stmt::ConvertVectorExprClass:
1929     case Stmt::VAArgExprClass:
1930     case Stmt::CUDAKernelCallExprClass:
1931     case Stmt::OpaqueValueExprClass:
1932     case Stmt::AsTypeExprClass:
1933     case Stmt::ConceptSpecializationExprClass:
1934     case Stmt::CXXRewrittenBinaryOperatorClass:
1935     case Stmt::RequiresExprClass:
1936     case Expr::CXXParenListInitExprClass:
1937     case Stmt::EmbedExprClass:
1938       // Fall through.
1939 
1940     // Cases we intentionally don't evaluate, since they don't need
1941     // to be explicitly evaluated.
1942     case Stmt::PredefinedExprClass:
1943     case Stmt::AddrLabelExprClass:
1944     case Stmt::AttributedStmtClass:
1945     case Stmt::IntegerLiteralClass:
1946     case Stmt::FixedPointLiteralClass:
1947     case Stmt::CharacterLiteralClass:
1948     case Stmt::CXXScalarValueInitExprClass:
1949     case Stmt::CXXBoolLiteralExprClass:
1950     case Stmt::ObjCBoolLiteralExprClass:
1951     case Stmt::ObjCAvailabilityCheckExprClass:
1952     case Stmt::FloatingLiteralClass:
1953     case Stmt::NoInitExprClass:
1954     case Stmt::SizeOfPackExprClass:
1955     case Stmt::StringLiteralClass:
1956     case Stmt::SourceLocExprClass:
1957     case Stmt::ObjCStringLiteralClass:
1958     case Stmt::CXXPseudoDestructorExprClass:
1959     case Stmt::SubstNonTypeTemplateParmExprClass:
1960     case Stmt::CXXNullPtrLiteralExprClass:
1961     case Stmt::ArraySectionExprClass:
1962     case Stmt::OMPArrayShapingExprClass:
1963     case Stmt::OMPIteratorExprClass:
1964     case Stmt::SYCLUniqueStableNameExprClass:
1965     case Stmt::OpenACCAsteriskSizeExprClass:
1966     case Stmt::TypeTraitExprClass: {
1967       Bldr.takeNodes(Pred);
1968       ExplodedNodeSet preVisit;
1969       getCheckerManager().runCheckersForPreStmt(preVisit, Pred, S, *this);
1970       getCheckerManager().runCheckersForPostStmt(Dst, preVisit, S, *this);
1971       Bldr.addNodes(Dst);
1972       break;
1973     }
1974 
1975     case Stmt::CXXDefaultArgExprClass:
1976     case Stmt::CXXDefaultInitExprClass: {
1977       Bldr.takeNodes(Pred);
1978       ExplodedNodeSet PreVisit;
1979       getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
1980 
1981       ExplodedNodeSet Tmp;
1982       StmtNodeBuilder Bldr2(PreVisit, Tmp, *currBldrCtx);
1983 
1984       const Expr *ArgE;
1985       if (const auto *DefE = dyn_cast<CXXDefaultArgExpr>(S))
1986         ArgE = DefE->getExpr();
1987       else if (const auto *DefE = dyn_cast<CXXDefaultInitExpr>(S))
1988         ArgE = DefE->getExpr();
1989       else
1990         llvm_unreachable("unknown constant wrapper kind");
1991 
1992       bool IsTemporary = false;
1993       if (const auto *MTE = dyn_cast<MaterializeTemporaryExpr>(ArgE)) {
1994         ArgE = MTE->getSubExpr();
1995         IsTemporary = true;
1996       }
1997 
1998       std::optional<SVal> ConstantVal = svalBuilder.getConstantVal(ArgE);
1999       if (!ConstantVal)
2000         ConstantVal = UnknownVal();
2001 
2002       const LocationContext *LCtx = Pred->getLocationContext();
2003       for (const auto I : PreVisit) {
2004         ProgramStateRef State = I->getState();
2005         State = State->BindExpr(S, LCtx, *ConstantVal);
2006         if (IsTemporary)
2007           State = createTemporaryRegionIfNeeded(State, LCtx,
2008                                                 cast<Expr>(S),
2009                                                 cast<Expr>(S));
2010         Bldr2.generateNode(S, I, State);
2011       }
2012 
2013       getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
2014       Bldr.addNodes(Dst);
2015       break;
2016     }
2017 
2018     // Cases we evaluate as opaque expressions, conjuring a symbol.
2019     case Stmt::CXXStdInitializerListExprClass:
2020     case Expr::ObjCArrayLiteralClass:
2021     case Expr::ObjCDictionaryLiteralClass:
2022     case Expr::ObjCBoxedExprClass: {
2023       Bldr.takeNodes(Pred);
2024 
2025       ExplodedNodeSet preVisit;
2026       getCheckerManager().runCheckersForPreStmt(preVisit, Pred, S, *this);
2027 
2028       ExplodedNodeSet Tmp;
2029       StmtNodeBuilder Bldr2(preVisit, Tmp, *currBldrCtx);
2030 
2031       const auto *Ex = cast<Expr>(S);
2032       QualType resultType = Ex->getType();
2033 
2034       for (const auto N : preVisit) {
2035         const LocationContext *LCtx = N->getLocationContext();
2036         SVal result = svalBuilder.conjureSymbolVal(nullptr, Ex, LCtx,
2037                                                    resultType,
2038                                                    currBldrCtx->blockCount());
2039         ProgramStateRef State = N->getState()->BindExpr(Ex, LCtx, result);
2040 
2041         // Escape pointers passed into the list, unless it's an ObjC boxed
2042         // expression which is not a boxable C structure.
2043         if (!(isa<ObjCBoxedExpr>(Ex) &&
2044               !cast<ObjCBoxedExpr>(Ex)->getSubExpr()
2045                                       ->getType()->isRecordType()))
2046           for (auto Child : Ex->children()) {
2047             assert(Child);
2048             SVal Val = State->getSVal(Child, LCtx);
2049             State = escapeValues(State, Val, PSK_EscapeOther);
2050           }
2051 
2052         Bldr2.generateNode(S, N, State);
2053       }
2054 
2055       getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
2056       Bldr.addNodes(Dst);
2057       break;
2058     }
2059 
2060     case Stmt::ArraySubscriptExprClass:
2061       Bldr.takeNodes(Pred);
2062       VisitArraySubscriptExpr(cast<ArraySubscriptExpr>(S), Pred, Dst);
2063       Bldr.addNodes(Dst);
2064       break;
2065 
2066     case Stmt::MatrixSubscriptExprClass:
2067       llvm_unreachable("Support for MatrixSubscriptExpr is not implemented.");
2068       break;
2069 
2070     case Stmt::GCCAsmStmtClass: {
2071       Bldr.takeNodes(Pred);
2072       ExplodedNodeSet PreVisit;
2073       getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
2074       ExplodedNodeSet PostVisit;
2075       for (ExplodedNode *const N : PreVisit)
2076         VisitGCCAsmStmt(cast<GCCAsmStmt>(S), N, PostVisit);
2077       getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);
2078       Bldr.addNodes(Dst);
2079       break;
2080     }
2081 
2082     case Stmt::MSAsmStmtClass:
2083       Bldr.takeNodes(Pred);
2084       VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst);
2085       Bldr.addNodes(Dst);
2086       break;
2087 
2088     case Stmt::BlockExprClass:
2089       Bldr.takeNodes(Pred);
2090       VisitBlockExpr(cast<BlockExpr>(S), Pred, Dst);
2091       Bldr.addNodes(Dst);
2092       break;
2093 
2094     case Stmt::LambdaExprClass:
2095       if (AMgr.options.ShouldInlineLambdas) {
2096         Bldr.takeNodes(Pred);
2097         VisitLambdaExpr(cast<LambdaExpr>(S), Pred, Dst);
2098         Bldr.addNodes(Dst);
2099       } else {
2100         const ExplodedNode *node = Bldr.generateSink(S, Pred, Pred->getState());
2101         Engine.addAbortedBlock(node, currBldrCtx->getBlock());
2102       }
2103       break;
2104 
2105     case Stmt::BinaryOperatorClass: {
2106       const auto *B = cast<BinaryOperator>(S);
2107       if (B->isLogicalOp()) {
2108         Bldr.takeNodes(Pred);
2109         VisitLogicalExpr(B, Pred, Dst);
2110         Bldr.addNodes(Dst);
2111         break;
2112       }
2113       else if (B->getOpcode() == BO_Comma) {
2114         ProgramStateRef state = Pred->getState();
2115         Bldr.generateNode(B, Pred,
2116                           state->BindExpr(B, Pred->getLocationContext(),
2117                                           state->getSVal(B->getRHS(),
2118                                                   Pred->getLocationContext())));
2119         break;
2120       }
2121 
2122       Bldr.takeNodes(Pred);
2123 
2124       if (AMgr.options.ShouldEagerlyAssume &&
2125           (B->isRelationalOp() || B->isEqualityOp())) {
2126         ExplodedNodeSet Tmp;
2127         VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Tmp);
2128         evalEagerlyAssumeBifurcation(Dst, Tmp, cast<Expr>(S));
2129       }
2130       else
2131         VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
2132 
2133       Bldr.addNodes(Dst);
2134       break;
2135     }
2136 
2137     case Stmt::CXXOperatorCallExprClass: {
2138       const auto *OCE = cast<CXXOperatorCallExpr>(S);
2139 
2140       // For instance method operators, make sure the 'this' argument has a
2141       // valid region.
2142       const Decl *Callee = OCE->getCalleeDecl();
2143       if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(Callee)) {
2144         if (MD->isImplicitObjectMemberFunction()) {
2145           ProgramStateRef State = Pred->getState();
2146           const LocationContext *LCtx = Pred->getLocationContext();
2147           ProgramStateRef NewState =
2148             createTemporaryRegionIfNeeded(State, LCtx, OCE->getArg(0));
2149           if (NewState != State) {
2150             Pred = Bldr.generateNode(OCE, Pred, NewState, /*tag=*/nullptr,
2151                                      ProgramPoint::PreStmtKind);
2152             // Did we cache out?
2153             if (!Pred)
2154               break;
2155           }
2156         }
2157       }
2158       [[fallthrough]];
2159     }
2160 
2161     case Stmt::CallExprClass:
2162     case Stmt::CXXMemberCallExprClass:
2163     case Stmt::UserDefinedLiteralClass:
2164       Bldr.takeNodes(Pred);
2165       VisitCallExpr(cast<CallExpr>(S), Pred, Dst);
2166       Bldr.addNodes(Dst);
2167       break;
2168 
2169     case Stmt::CXXCatchStmtClass:
2170       Bldr.takeNodes(Pred);
2171       VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst);
2172       Bldr.addNodes(Dst);
2173       break;
2174 
2175     case Stmt::CXXTemporaryObjectExprClass:
2176     case Stmt::CXXConstructExprClass:
2177       Bldr.takeNodes(Pred);
2178       VisitCXXConstructExpr(cast<CXXConstructExpr>(S), Pred, Dst);
2179       Bldr.addNodes(Dst);
2180       break;
2181 
2182     case Stmt::CXXInheritedCtorInitExprClass:
2183       Bldr.takeNodes(Pred);
2184       VisitCXXInheritedCtorInitExpr(cast<CXXInheritedCtorInitExpr>(S), Pred,
2185                                     Dst);
2186       Bldr.addNodes(Dst);
2187       break;
2188 
2189     case Stmt::CXXNewExprClass: {
2190       Bldr.takeNodes(Pred);
2191 
2192       ExplodedNodeSet PreVisit;
2193       getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
2194 
2195       ExplodedNodeSet PostVisit;
2196       for (const auto i : PreVisit)
2197         VisitCXXNewExpr(cast<CXXNewExpr>(S), i, PostVisit);
2198 
2199       getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);
2200       Bldr.addNodes(Dst);
2201       break;
2202     }
2203 
2204     case Stmt::CXXDeleteExprClass: {
2205       Bldr.takeNodes(Pred);
2206       ExplodedNodeSet PreVisit;
2207       const auto *CDE = cast<CXXDeleteExpr>(S);
2208       getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
2209       ExplodedNodeSet PostVisit;
2210       getCheckerManager().runCheckersForPostStmt(PostVisit, PreVisit, S, *this);
2211 
2212       for (const auto i : PostVisit)
2213         VisitCXXDeleteExpr(CDE, i, Dst);
2214 
2215       Bldr.addNodes(Dst);
2216       break;
2217     }
2218       // FIXME: ChooseExpr is really a constant.  We need to fix
2219       //        the CFG do not model them as explicit control-flow.
2220 
2221     case Stmt::ChooseExprClass: { // __builtin_choose_expr
2222       Bldr.takeNodes(Pred);
2223       const auto *C = cast<ChooseExpr>(S);
2224       VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst);
2225       Bldr.addNodes(Dst);
2226       break;
2227     }
2228 
2229     case Stmt::CompoundAssignOperatorClass:
2230       Bldr.takeNodes(Pred);
2231       VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
2232       Bldr.addNodes(Dst);
2233       break;
2234 
2235     case Stmt::CompoundLiteralExprClass:
2236       Bldr.takeNodes(Pred);
2237       VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(S), Pred, Dst);
2238       Bldr.addNodes(Dst);
2239       break;
2240 
2241     case Stmt::BinaryConditionalOperatorClass:
2242     case Stmt::ConditionalOperatorClass: { // '?' operator
2243       Bldr.takeNodes(Pred);
2244       const auto *C = cast<AbstractConditionalOperator>(S);
2245       VisitGuardedExpr(C, C->getTrueExpr(), C->getFalseExpr(), Pred, Dst);
2246       Bldr.addNodes(Dst);
2247       break;
2248     }
2249 
2250     case Stmt::CXXThisExprClass:
2251       Bldr.takeNodes(Pred);
2252       VisitCXXThisExpr(cast<CXXThisExpr>(S), Pred, Dst);
2253       Bldr.addNodes(Dst);
2254       break;
2255 
2256     case Stmt::DeclRefExprClass: {
2257       Bldr.takeNodes(Pred);
2258       const auto *DE = cast<DeclRefExpr>(S);
2259       VisitCommonDeclRefExpr(DE, DE->getDecl(), Pred, Dst);
2260       Bldr.addNodes(Dst);
2261       break;
2262     }
2263 
2264     case Stmt::DeclStmtClass:
2265       Bldr.takeNodes(Pred);
2266       VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst);
2267       Bldr.addNodes(Dst);
2268       break;
2269 
2270     case Stmt::ImplicitCastExprClass:
2271     case Stmt::CStyleCastExprClass:
2272     case Stmt::CXXStaticCastExprClass:
2273     case Stmt::CXXDynamicCastExprClass:
2274     case Stmt::CXXReinterpretCastExprClass:
2275     case Stmt::CXXConstCastExprClass:
2276     case Stmt::CXXFunctionalCastExprClass:
2277     case Stmt::BuiltinBitCastExprClass:
2278     case Stmt::ObjCBridgedCastExprClass:
2279     case Stmt::CXXAddrspaceCastExprClass: {
2280       Bldr.takeNodes(Pred);
2281       const auto *C = cast<CastExpr>(S);
2282       ExplodedNodeSet dstExpr;
2283       VisitCast(C, C->getSubExpr(), Pred, dstExpr);
2284 
2285       // Handle the postvisit checks.
2286       getCheckerManager().runCheckersForPostStmt(Dst, dstExpr, C, *this);
2287       Bldr.addNodes(Dst);
2288       break;
2289     }
2290 
2291     case Expr::MaterializeTemporaryExprClass: {
2292       Bldr.takeNodes(Pred);
2293       const auto *MTE = cast<MaterializeTemporaryExpr>(S);
2294       ExplodedNodeSet dstPrevisit;
2295       getCheckerManager().runCheckersForPreStmt(dstPrevisit, Pred, MTE, *this);
2296       ExplodedNodeSet dstExpr;
2297       for (const auto i : dstPrevisit)
2298         CreateCXXTemporaryObject(MTE, i, dstExpr);
2299       getCheckerManager().runCheckersForPostStmt(Dst, dstExpr, MTE, *this);
2300       Bldr.addNodes(Dst);
2301       break;
2302     }
2303 
2304     case Stmt::InitListExprClass:
2305       Bldr.takeNodes(Pred);
2306       VisitInitListExpr(cast<InitListExpr>(S), Pred, Dst);
2307       Bldr.addNodes(Dst);
2308       break;
2309 
2310     case Stmt::MemberExprClass:
2311       Bldr.takeNodes(Pred);
2312       VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst);
2313       Bldr.addNodes(Dst);
2314       break;
2315 
2316     case Stmt::AtomicExprClass:
2317       Bldr.takeNodes(Pred);
2318       VisitAtomicExpr(cast<AtomicExpr>(S), Pred, Dst);
2319       Bldr.addNodes(Dst);
2320       break;
2321 
2322     case Stmt::ObjCIvarRefExprClass:
2323       Bldr.takeNodes(Pred);
2324       VisitLvalObjCIvarRefExpr(cast<ObjCIvarRefExpr>(S), Pred, Dst);
2325       Bldr.addNodes(Dst);
2326       break;
2327 
2328     case Stmt::ObjCForCollectionStmtClass:
2329       Bldr.takeNodes(Pred);
2330       VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst);
2331       Bldr.addNodes(Dst);
2332       break;
2333 
2334     case Stmt::ObjCMessageExprClass:
2335       Bldr.takeNodes(Pred);
2336       VisitObjCMessage(cast<ObjCMessageExpr>(S), Pred, Dst);
2337       Bldr.addNodes(Dst);
2338       break;
2339 
2340     case Stmt::ObjCAtThrowStmtClass:
2341     case Stmt::CXXThrowExprClass:
2342       // FIXME: This is not complete.  We basically treat @throw as
2343       // an abort.
2344       Bldr.generateSink(S, Pred, Pred->getState());
2345       break;
2346 
2347     case Stmt::ReturnStmtClass:
2348       Bldr.takeNodes(Pred);
2349       VisitReturnStmt(cast<ReturnStmt>(S), Pred, Dst);
2350       Bldr.addNodes(Dst);
2351       break;
2352 
2353     case Stmt::OffsetOfExprClass: {
2354       Bldr.takeNodes(Pred);
2355       ExplodedNodeSet PreVisit;
2356       getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
2357 
2358       ExplodedNodeSet PostVisit;
2359       for (const auto Node : PreVisit)
2360         VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Node, PostVisit);
2361 
2362       getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);
2363       Bldr.addNodes(Dst);
2364       break;
2365     }
2366 
2367     case Stmt::UnaryExprOrTypeTraitExprClass:
2368       Bldr.takeNodes(Pred);
2369       VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S),
2370                                     Pred, Dst);
2371       Bldr.addNodes(Dst);
2372       break;
2373 
2374     case Stmt::StmtExprClass: {
2375       const auto *SE = cast<StmtExpr>(S);
2376 
2377       if (SE->getSubStmt()->body_empty()) {
2378         // Empty statement expression.
2379         assert(SE->getType() == getContext().VoidTy
2380                && "Empty statement expression must have void type.");
2381         break;
2382       }
2383 
2384       if (const auto *LastExpr =
2385               dyn_cast<Expr>(*SE->getSubStmt()->body_rbegin())) {
2386         ProgramStateRef state = Pred->getState();
2387         Bldr.generateNode(SE, Pred,
2388                           state->BindExpr(SE, Pred->getLocationContext(),
2389                                           state->getSVal(LastExpr,
2390                                                   Pred->getLocationContext())));
2391       }
2392       break;
2393     }
2394 
2395     case Stmt::UnaryOperatorClass: {
2396       Bldr.takeNodes(Pred);
2397       const auto *U = cast<UnaryOperator>(S);
2398       if (AMgr.options.ShouldEagerlyAssume && (U->getOpcode() == UO_LNot)) {
2399         ExplodedNodeSet Tmp;
2400         VisitUnaryOperator(U, Pred, Tmp);
2401         evalEagerlyAssumeBifurcation(Dst, Tmp, U);
2402       }
2403       else
2404         VisitUnaryOperator(U, Pred, Dst);
2405       Bldr.addNodes(Dst);
2406       break;
2407     }
2408 
2409     case Stmt::PseudoObjectExprClass: {
2410       Bldr.takeNodes(Pred);
2411       ProgramStateRef state = Pred->getState();
2412       const auto *PE = cast<PseudoObjectExpr>(S);
2413       if (const Expr *Result = PE->getResultExpr()) {
2414         SVal V = state->getSVal(Result, Pred->getLocationContext());
2415         Bldr.generateNode(S, Pred,
2416                           state->BindExpr(S, Pred->getLocationContext(), V));
2417       }
2418       else
2419         Bldr.generateNode(S, Pred,
2420                           state->BindExpr(S, Pred->getLocationContext(),
2421                                                    UnknownVal()));
2422 
2423       Bldr.addNodes(Dst);
2424       break;
2425     }
2426 
2427     case Expr::ObjCIndirectCopyRestoreExprClass: {
2428       // ObjCIndirectCopyRestoreExpr implies passing a temporary for
2429       // correctness of lifetime management.  Due to limited analysis
2430       // of ARC, this is implemented as direct arg passing.
2431       Bldr.takeNodes(Pred);
2432       ProgramStateRef state = Pred->getState();
2433       const auto *OIE = cast<ObjCIndirectCopyRestoreExpr>(S);
2434       const Expr *E = OIE->getSubExpr();
2435       SVal V = state->getSVal(E, Pred->getLocationContext());
2436       Bldr.generateNode(S, Pred,
2437               state->BindExpr(S, Pred->getLocationContext(), V));
2438       Bldr.addNodes(Dst);
2439       break;
2440     }
2441   }
2442 }
2443 
2444 bool ExprEngine::replayWithoutInlining(ExplodedNode *N,
2445                                        const LocationContext *CalleeLC) {
2446   const StackFrameContext *CalleeSF = CalleeLC->getStackFrame();
2447   const StackFrameContext *CallerSF = CalleeSF->getParent()->getStackFrame();
2448   assert(CalleeSF && CallerSF);
2449   ExplodedNode *BeforeProcessingCall = nullptr;
2450   const Stmt *CE = CalleeSF->getCallSite();
2451 
2452   // Find the first node before we started processing the call expression.
2453   while (N) {
2454     ProgramPoint L = N->getLocation();
2455     BeforeProcessingCall = N;
2456     N = N->pred_empty() ? nullptr : *(N->pred_begin());
2457 
2458     // Skip the nodes corresponding to the inlined code.
2459     if (L.getStackFrame() != CallerSF)
2460       continue;
2461     // We reached the caller. Find the node right before we started
2462     // processing the call.
2463     if (L.isPurgeKind())
2464       continue;
2465     if (L.getAs<PreImplicitCall>())
2466       continue;
2467     if (L.getAs<CallEnter>())
2468       continue;
2469     if (std::optional<StmtPoint> SP = L.getAs<StmtPoint>())
2470       if (SP->getStmt() == CE)
2471         continue;
2472     break;
2473   }
2474 
2475   if (!BeforeProcessingCall)
2476     return false;
2477 
2478   // TODO: Clean up the unneeded nodes.
2479 
2480   // Build an Epsilon node from which we will restart the analyzes.
2481   // Note that CE is permitted to be NULL!
2482   static SimpleProgramPointTag PT("ExprEngine", "Replay without inlining");
2483   ProgramPoint NewNodeLoc = EpsilonPoint(
2484       BeforeProcessingCall->getLocationContext(), CE, nullptr, &PT);
2485   // Add the special flag to GDM to signal retrying with no inlining.
2486   // Note, changing the state ensures that we are not going to cache out.
2487   ProgramStateRef NewNodeState = BeforeProcessingCall->getState();
2488   NewNodeState =
2489     NewNodeState->set<ReplayWithoutInlining>(const_cast<Stmt *>(CE));
2490 
2491   // Make the new node a successor of BeforeProcessingCall.
2492   bool IsNew = false;
2493   ExplodedNode *NewNode = G.getNode(NewNodeLoc, NewNodeState, false, &IsNew);
2494   // We cached out at this point. Caching out is common due to us backtracking
2495   // from the inlined function, which might spawn several paths.
2496   if (!IsNew)
2497     return true;
2498 
2499   NewNode->addPredecessor(BeforeProcessingCall, G);
2500 
2501   // Add the new node to the work list.
2502   Engine.enqueueStmtNode(NewNode, CalleeSF->getCallSiteBlock(),
2503                                   CalleeSF->getIndex());
2504   NumTimesRetriedWithoutInlining++;
2505   return true;
2506 }
2507 
2508 /// Block entrance.  (Update counters).
2509 void ExprEngine::processCFGBlockEntrance(const BlockEdge &L,
2510                                          NodeBuilderWithSinks &nodeBuilder,
2511                                          ExplodedNode *Pred) {
2512   PrettyStackTraceLocationContext CrashInfo(Pred->getLocationContext());
2513   // If we reach a loop which has a known bound (and meets
2514   // other constraints) then consider completely unrolling it.
2515   if(AMgr.options.ShouldUnrollLoops) {
2516     unsigned maxBlockVisitOnPath = AMgr.options.maxBlockVisitOnPath;
2517     const Stmt *Term = nodeBuilder.getContext().getBlock()->getTerminatorStmt();
2518     if (Term) {
2519       ProgramStateRef NewState = updateLoopStack(Term, AMgr.getASTContext(),
2520                                                  Pred, maxBlockVisitOnPath);
2521       if (NewState != Pred->getState()) {
2522         ExplodedNode *UpdatedNode = nodeBuilder.generateNode(NewState, Pred);
2523         if (!UpdatedNode)
2524           return;
2525         Pred = UpdatedNode;
2526       }
2527     }
2528     // Is we are inside an unrolled loop then no need the check the counters.
2529     if(isUnrolledState(Pred->getState()))
2530       return;
2531   }
2532 
2533   // If this block is terminated by a loop and it has already been visited the
2534   // maximum number of times, widen the loop.
2535   unsigned int BlockCount = nodeBuilder.getContext().blockCount();
2536   if (BlockCount == AMgr.options.maxBlockVisitOnPath - 1 &&
2537       AMgr.options.ShouldWidenLoops) {
2538     const Stmt *Term = nodeBuilder.getContext().getBlock()->getTerminatorStmt();
2539     if (!isa_and_nonnull<ForStmt, WhileStmt, DoStmt, CXXForRangeStmt>(Term))
2540       return;
2541     // Widen.
2542     const LocationContext *LCtx = Pred->getLocationContext();
2543     ProgramStateRef WidenedState =
2544         getWidenedLoopState(Pred->getState(), LCtx, BlockCount, Term);
2545     nodeBuilder.generateNode(WidenedState, Pred);
2546     return;
2547   }
2548 
2549   // FIXME: Refactor this into a checker.
2550   if (BlockCount >= AMgr.options.maxBlockVisitOnPath) {
2551     static SimpleProgramPointTag tag(TagProviderName, "Block count exceeded");
2552     const ExplodedNode *Sink =
2553                    nodeBuilder.generateSink(Pred->getState(), Pred, &tag);
2554 
2555     // Check if we stopped at the top level function or not.
2556     // Root node should have the location context of the top most function.
2557     const LocationContext *CalleeLC = Pred->getLocation().getLocationContext();
2558     const LocationContext *CalleeSF = CalleeLC->getStackFrame();
2559     const LocationContext *RootLC =
2560                         (*G.roots_begin())->getLocation().getLocationContext();
2561     if (RootLC->getStackFrame() != CalleeSF) {
2562       Engine.FunctionSummaries->markReachedMaxBlockCount(CalleeSF->getDecl());
2563 
2564       // Re-run the call evaluation without inlining it, by storing the
2565       // no-inlining policy in the state and enqueuing the new work item on
2566       // the list. Replay should almost never fail. Use the stats to catch it
2567       // if it does.
2568       if ((!AMgr.options.NoRetryExhausted &&
2569            replayWithoutInlining(Pred, CalleeLC)))
2570         return;
2571       NumMaxBlockCountReachedInInlined++;
2572     } else
2573       NumMaxBlockCountReached++;
2574 
2575     // Make sink nodes as exhausted(for stats) only if retry failed.
2576     Engine.blocksExhausted.push_back(std::make_pair(L, Sink));
2577   }
2578 }
2579 
2580 //===----------------------------------------------------------------------===//
2581 // Branch processing.
2582 //===----------------------------------------------------------------------===//
2583 
2584 /// RecoverCastedSymbol - A helper function for ProcessBranch that is used
2585 /// to try to recover some path-sensitivity for casts of symbolic
2586 /// integers that promote their values (which are currently not tracked well).
2587 /// This function returns the SVal bound to Condition->IgnoreCasts if all the
2588 //  cast(s) did was sign-extend the original value.
2589 static SVal RecoverCastedSymbol(ProgramStateRef state,
2590                                 const Stmt *Condition,
2591                                 const LocationContext *LCtx,
2592                                 ASTContext &Ctx) {
2593 
2594   const auto *Ex = dyn_cast<Expr>(Condition);
2595   if (!Ex)
2596     return UnknownVal();
2597 
2598   uint64_t bits = 0;
2599   bool bitsInit = false;
2600 
2601   while (const auto *CE = dyn_cast<CastExpr>(Ex)) {
2602     QualType T = CE->getType();
2603 
2604     if (!T->isIntegralOrEnumerationType())
2605       return UnknownVal();
2606 
2607     uint64_t newBits = Ctx.getTypeSize(T);
2608     if (!bitsInit || newBits < bits) {
2609       bitsInit = true;
2610       bits = newBits;
2611     }
2612 
2613     Ex = CE->getSubExpr();
2614   }
2615 
2616   // We reached a non-cast.  Is it a symbolic value?
2617   QualType T = Ex->getType();
2618 
2619   if (!bitsInit || !T->isIntegralOrEnumerationType() ||
2620       Ctx.getTypeSize(T) > bits)
2621     return UnknownVal();
2622 
2623   return state->getSVal(Ex, LCtx);
2624 }
2625 
2626 #ifndef NDEBUG
2627 static const Stmt *getRightmostLeaf(const Stmt *Condition) {
2628   while (Condition) {
2629     const auto *BO = dyn_cast<BinaryOperator>(Condition);
2630     if (!BO || !BO->isLogicalOp()) {
2631       return Condition;
2632     }
2633     Condition = BO->getRHS()->IgnoreParens();
2634   }
2635   return nullptr;
2636 }
2637 #endif
2638 
2639 // Returns the condition the branch at the end of 'B' depends on and whose value
2640 // has been evaluated within 'B'.
2641 // In most cases, the terminator condition of 'B' will be evaluated fully in
2642 // the last statement of 'B'; in those cases, the resolved condition is the
2643 // given 'Condition'.
2644 // If the condition of the branch is a logical binary operator tree, the CFG is
2645 // optimized: in that case, we know that the expression formed by all but the
2646 // rightmost leaf of the logical binary operator tree must be true, and thus
2647 // the branch condition is at this point equivalent to the truth value of that
2648 // rightmost leaf; the CFG block thus only evaluates this rightmost leaf
2649 // expression in its final statement. As the full condition in that case was
2650 // not evaluated, and is thus not in the SVal cache, we need to use that leaf
2651 // expression to evaluate the truth value of the condition in the current state
2652 // space.
2653 static const Stmt *ResolveCondition(const Stmt *Condition,
2654                                     const CFGBlock *B) {
2655   if (const auto *Ex = dyn_cast<Expr>(Condition))
2656     Condition = Ex->IgnoreParens();
2657 
2658   const auto *BO = dyn_cast<BinaryOperator>(Condition);
2659   if (!BO || !BO->isLogicalOp())
2660     return Condition;
2661 
2662   assert(B->getTerminator().isStmtBranch() &&
2663          "Other kinds of branches are handled separately!");
2664 
2665   // For logical operations, we still have the case where some branches
2666   // use the traditional "merge" approach and others sink the branch
2667   // directly into the basic blocks representing the logical operation.
2668   // We need to distinguish between those two cases here.
2669 
2670   // The invariants are still shifting, but it is possible that the
2671   // last element in a CFGBlock is not a CFGStmt.  Look for the last
2672   // CFGStmt as the value of the condition.
2673   for (CFGElement Elem : llvm::reverse(*B)) {
2674     std::optional<CFGStmt> CS = Elem.getAs<CFGStmt>();
2675     if (!CS)
2676       continue;
2677     const Stmt *LastStmt = CS->getStmt();
2678     assert(LastStmt == Condition || LastStmt == getRightmostLeaf(Condition));
2679     return LastStmt;
2680   }
2681   llvm_unreachable("could not resolve condition");
2682 }
2683 
2684 using ObjCForLctxPair =
2685     std::pair<const ObjCForCollectionStmt *, const LocationContext *>;
2686 
2687 REGISTER_MAP_WITH_PROGRAMSTATE(ObjCForHasMoreIterations, ObjCForLctxPair, bool)
2688 
2689 ProgramStateRef ExprEngine::setWhetherHasMoreIteration(
2690     ProgramStateRef State, const ObjCForCollectionStmt *O,
2691     const LocationContext *LC, bool HasMoreIteraton) {
2692   assert(!State->contains<ObjCForHasMoreIterations>({O, LC}));
2693   return State->set<ObjCForHasMoreIterations>({O, LC}, HasMoreIteraton);
2694 }
2695 
2696 ProgramStateRef
2697 ExprEngine::removeIterationState(ProgramStateRef State,
2698                                  const ObjCForCollectionStmt *O,
2699                                  const LocationContext *LC) {
2700   assert(State->contains<ObjCForHasMoreIterations>({O, LC}));
2701   return State->remove<ObjCForHasMoreIterations>({O, LC});
2702 }
2703 
2704 bool ExprEngine::hasMoreIteration(ProgramStateRef State,
2705                                   const ObjCForCollectionStmt *O,
2706                                   const LocationContext *LC) {
2707   assert(State->contains<ObjCForHasMoreIterations>({O, LC}));
2708   return *State->get<ObjCForHasMoreIterations>({O, LC});
2709 }
2710 
2711 /// Split the state on whether there are any more iterations left for this loop.
2712 /// Returns a (HasMoreIteration, HasNoMoreIteration) pair, or std::nullopt when
2713 /// the acquisition of the loop condition value failed.
2714 static std::optional<std::pair<ProgramStateRef, ProgramStateRef>>
2715 assumeCondition(const Stmt *Condition, ExplodedNode *N) {
2716   ProgramStateRef State = N->getState();
2717   if (const auto *ObjCFor = dyn_cast<ObjCForCollectionStmt>(Condition)) {
2718     bool HasMoreIteraton =
2719         ExprEngine::hasMoreIteration(State, ObjCFor, N->getLocationContext());
2720     // Checkers have already ran on branch conditions, so the current
2721     // information as to whether the loop has more iteration becomes outdated
2722     // after this point.
2723     State = ExprEngine::removeIterationState(State, ObjCFor,
2724                                              N->getLocationContext());
2725     if (HasMoreIteraton)
2726       return std::pair<ProgramStateRef, ProgramStateRef>{State, nullptr};
2727     else
2728       return std::pair<ProgramStateRef, ProgramStateRef>{nullptr, State};
2729   }
2730   SVal X = State->getSVal(Condition, N->getLocationContext());
2731 
2732   if (X.isUnknownOrUndef()) {
2733     // Give it a chance to recover from unknown.
2734     if (const auto *Ex = dyn_cast<Expr>(Condition)) {
2735       if (Ex->getType()->isIntegralOrEnumerationType()) {
2736         // Try to recover some path-sensitivity.  Right now casts of symbolic
2737         // integers that promote their values are currently not tracked well.
2738         // If 'Condition' is such an expression, try and recover the
2739         // underlying value and use that instead.
2740         SVal recovered =
2741             RecoverCastedSymbol(State, Condition, N->getLocationContext(),
2742                                 N->getState()->getStateManager().getContext());
2743 
2744         if (!recovered.isUnknown()) {
2745           X = recovered;
2746         }
2747       }
2748     }
2749   }
2750 
2751   // If the condition is still unknown, give up.
2752   if (X.isUnknownOrUndef())
2753     return std::nullopt;
2754 
2755   DefinedSVal V = X.castAs<DefinedSVal>();
2756 
2757   ProgramStateRef StTrue, StFalse;
2758   return State->assume(V);
2759 }
2760 
2761 void ExprEngine::processBranch(const Stmt *Condition,
2762                                NodeBuilderContext& BldCtx,
2763                                ExplodedNode *Pred,
2764                                ExplodedNodeSet &Dst,
2765                                const CFGBlock *DstT,
2766                                const CFGBlock *DstF) {
2767   assert((!Condition || !isa<CXXBindTemporaryExpr>(Condition)) &&
2768          "CXXBindTemporaryExprs are handled by processBindTemporary.");
2769   const LocationContext *LCtx = Pred->getLocationContext();
2770   PrettyStackTraceLocationContext StackCrashInfo(LCtx);
2771   currBldrCtx = &BldCtx;
2772 
2773   // Check for NULL conditions; e.g. "for(;;)"
2774   if (!Condition) {
2775     BranchNodeBuilder NullCondBldr(Pred, Dst, BldCtx, DstT, DstF);
2776     NullCondBldr.generateNode(Pred->getState(), true, Pred);
2777     return;
2778   }
2779 
2780   if (const auto *Ex = dyn_cast<Expr>(Condition))
2781     Condition = Ex->IgnoreParens();
2782 
2783   Condition = ResolveCondition(Condition, BldCtx.getBlock());
2784   PrettyStackTraceLoc CrashInfo(getContext().getSourceManager(),
2785                                 Condition->getBeginLoc(),
2786                                 "Error evaluating branch");
2787 
2788   ExplodedNodeSet CheckersOutSet;
2789   getCheckerManager().runCheckersForBranchCondition(Condition, CheckersOutSet,
2790                                                     Pred, *this);
2791   // We generated only sinks.
2792   if (CheckersOutSet.empty())
2793     return;
2794 
2795   BranchNodeBuilder Builder(CheckersOutSet, Dst, BldCtx, DstT, DstF);
2796   for (ExplodedNode *PredN : CheckersOutSet) {
2797     if (PredN->isSink())
2798       continue;
2799 
2800     ProgramStateRef PrevState = PredN->getState();
2801 
2802     ProgramStateRef StTrue = PrevState, StFalse = PrevState;
2803     if (const auto KnownCondValueAssumption = assumeCondition(Condition, PredN))
2804       std::tie(StTrue, StFalse) = *KnownCondValueAssumption;
2805 
2806     if (StTrue && StFalse)
2807       assert(!isa<ObjCForCollectionStmt>(Condition));
2808 
2809     if (StTrue)
2810       Builder.generateNode(StTrue, true, PredN);
2811 
2812     if (StFalse)
2813       Builder.generateNode(StFalse, false, PredN);
2814   }
2815   currBldrCtx = nullptr;
2816 }
2817 
2818 /// The GDM component containing the set of global variables which have been
2819 /// previously initialized with explicit initializers.
2820 REGISTER_TRAIT_WITH_PROGRAMSTATE(InitializedGlobalsSet,
2821                                  llvm::ImmutableSet<const VarDecl *>)
2822 
2823 void ExprEngine::processStaticInitializer(const DeclStmt *DS,
2824                                           NodeBuilderContext &BuilderCtx,
2825                                           ExplodedNode *Pred,
2826                                           ExplodedNodeSet &Dst,
2827                                           const CFGBlock *DstT,
2828                                           const CFGBlock *DstF) {
2829   PrettyStackTraceLocationContext CrashInfo(Pred->getLocationContext());
2830   currBldrCtx = &BuilderCtx;
2831 
2832   const auto *VD = cast<VarDecl>(DS->getSingleDecl());
2833   ProgramStateRef state = Pred->getState();
2834   bool initHasRun = state->contains<InitializedGlobalsSet>(VD);
2835   BranchNodeBuilder Builder(Pred, Dst, BuilderCtx, DstT, DstF);
2836 
2837   if (!initHasRun) {
2838     state = state->add<InitializedGlobalsSet>(VD);
2839   }
2840 
2841   Builder.generateNode(state, initHasRun, Pred);
2842 
2843   currBldrCtx = nullptr;
2844 }
2845 
2846 /// processIndirectGoto - Called by CoreEngine.  Used to generate successor
2847 ///  nodes by processing the 'effects' of a computed goto jump.
2848 void ExprEngine::processIndirectGoto(IndirectGotoNodeBuilder &builder) {
2849   ProgramStateRef state = builder.getState();
2850   SVal V = state->getSVal(builder.getTarget(), builder.getLocationContext());
2851 
2852   // Three possibilities:
2853   //
2854   //   (1) We know the computed label.
2855   //   (2) The label is NULL (or some other constant), or Undefined.
2856   //   (3) We have no clue about the label.  Dispatch to all targets.
2857   //
2858 
2859   using iterator = IndirectGotoNodeBuilder::iterator;
2860 
2861   if (std::optional<loc::GotoLabel> LV = V.getAs<loc::GotoLabel>()) {
2862     const LabelDecl *L = LV->getLabel();
2863 
2864     for (iterator Succ : builder) {
2865       if (Succ.getLabel() == L) {
2866         builder.generateNode(Succ, state);
2867         return;
2868       }
2869     }
2870 
2871     llvm_unreachable("No block with label.");
2872   }
2873 
2874   if (isa<UndefinedVal, loc::ConcreteInt>(V)) {
2875     // Dispatch to the first target and mark it as a sink.
2876     //ExplodedNode* N = builder.generateNode(builder.begin(), state, true);
2877     // FIXME: add checker visit.
2878     //    UndefBranches.insert(N);
2879     return;
2880   }
2881 
2882   // This is really a catch-all.  We don't support symbolics yet.
2883   // FIXME: Implement dispatch for symbolic pointers.
2884 
2885   for (iterator Succ : builder)
2886     builder.generateNode(Succ, state);
2887 }
2888 
2889 void ExprEngine::processBeginOfFunction(NodeBuilderContext &BC,
2890                                         ExplodedNode *Pred,
2891                                         ExplodedNodeSet &Dst,
2892                                         const BlockEdge &L) {
2893   SaveAndRestore<const NodeBuilderContext *> NodeContextRAII(currBldrCtx, &BC);
2894   getCheckerManager().runCheckersForBeginFunction(Dst, L, Pred, *this);
2895 }
2896 
2897 /// ProcessEndPath - Called by CoreEngine.  Used to generate end-of-path
2898 ///  nodes when the control reaches the end of a function.
2899 void ExprEngine::processEndOfFunction(NodeBuilderContext& BC,
2900                                       ExplodedNode *Pred,
2901                                       const ReturnStmt *RS) {
2902   ProgramStateRef State = Pred->getState();
2903 
2904   if (!Pred->getStackFrame()->inTopFrame())
2905     State = finishArgumentConstruction(
2906         State, *getStateManager().getCallEventManager().getCaller(
2907                    Pred->getStackFrame(), Pred->getState()));
2908 
2909   // FIXME: We currently cannot assert that temporaries are clear, because
2910   // lifetime extended temporaries are not always modelled correctly. In some
2911   // cases when we materialize the temporary, we do
2912   // createTemporaryRegionIfNeeded(), and the region changes, and also the
2913   // respective destructor becomes automatic from temporary. So for now clean up
2914   // the state manually before asserting. Ideally, this braced block of code
2915   // should go away.
2916   {
2917     const LocationContext *FromLC = Pred->getLocationContext();
2918     const LocationContext *ToLC = FromLC->getStackFrame()->getParent();
2919     const LocationContext *LC = FromLC;
2920     while (LC != ToLC) {
2921       assert(LC && "ToLC must be a parent of FromLC!");
2922       for (auto I : State->get<ObjectsUnderConstruction>())
2923         if (I.first.getLocationContext() == LC) {
2924           // The comment above only pardons us for not cleaning up a
2925           // temporary destructor. If any other statements are found here,
2926           // it must be a separate problem.
2927           assert(I.first.getItem().getKind() ==
2928                      ConstructionContextItem::TemporaryDestructorKind ||
2929                  I.first.getItem().getKind() ==
2930                      ConstructionContextItem::ElidedDestructorKind);
2931           State = State->remove<ObjectsUnderConstruction>(I.first);
2932         }
2933       LC = LC->getParent();
2934     }
2935   }
2936 
2937   // Perform the transition with cleanups.
2938   if (State != Pred->getState()) {
2939     ExplodedNodeSet PostCleanup;
2940     NodeBuilder Bldr(Pred, PostCleanup, BC);
2941     Pred = Bldr.generateNode(Pred->getLocation(), State, Pred);
2942     if (!Pred) {
2943       // The node with clean temporaries already exists. We might have reached
2944       // it on a path on which we initialize different temporaries.
2945       return;
2946     }
2947   }
2948 
2949   assert(areAllObjectsFullyConstructed(Pred->getState(),
2950                                        Pred->getLocationContext(),
2951                                        Pred->getStackFrame()->getParent()));
2952 
2953   PrettyStackTraceLocationContext CrashInfo(Pred->getLocationContext());
2954 
2955   ExplodedNodeSet Dst;
2956   if (Pred->getLocationContext()->inTopFrame()) {
2957     // Remove dead symbols.
2958     ExplodedNodeSet AfterRemovedDead;
2959     removeDeadOnEndOfFunction(BC, Pred, AfterRemovedDead);
2960 
2961     // Notify checkers.
2962     for (const auto I : AfterRemovedDead)
2963       getCheckerManager().runCheckersForEndFunction(BC, Dst, I, *this, RS);
2964   } else {
2965     getCheckerManager().runCheckersForEndFunction(BC, Dst, Pred, *this, RS);
2966   }
2967 
2968   Engine.enqueueEndOfFunction(Dst, RS);
2969 }
2970 
2971 /// ProcessSwitch - Called by CoreEngine.  Used to generate successor
2972 ///  nodes by processing the 'effects' of a switch statement.
2973 void ExprEngine::processSwitch(SwitchNodeBuilder& builder) {
2974   using iterator = SwitchNodeBuilder::iterator;
2975 
2976   ProgramStateRef state = builder.getState();
2977   const Expr *CondE = builder.getCondition();
2978   SVal  CondV_untested = state->getSVal(CondE, builder.getLocationContext());
2979 
2980   if (CondV_untested.isUndef()) {
2981     //ExplodedNode* N = builder.generateDefaultCaseNode(state, true);
2982     // FIXME: add checker
2983     //UndefBranches.insert(N);
2984 
2985     return;
2986   }
2987   DefinedOrUnknownSVal CondV = CondV_untested.castAs<DefinedOrUnknownSVal>();
2988 
2989   ProgramStateRef DefaultSt = state;
2990 
2991   iterator I = builder.begin(), EI = builder.end();
2992   bool defaultIsFeasible = I == EI;
2993 
2994   for ( ; I != EI; ++I) {
2995     // Successor may be pruned out during CFG construction.
2996     if (!I.getBlock())
2997       continue;
2998 
2999     const CaseStmt *Case = I.getCase();
3000 
3001     // Evaluate the LHS of the case value.
3002     llvm::APSInt V1 = Case->getLHS()->EvaluateKnownConstInt(getContext());
3003     assert(V1.getBitWidth() == getContext().getIntWidth(CondE->getType()));
3004 
3005     // Get the RHS of the case, if it exists.
3006     llvm::APSInt V2;
3007     if (const Expr *E = Case->getRHS())
3008       V2 = E->EvaluateKnownConstInt(getContext());
3009     else
3010       V2 = V1;
3011 
3012     ProgramStateRef StateCase;
3013     if (std::optional<NonLoc> NL = CondV.getAs<NonLoc>())
3014       std::tie(StateCase, DefaultSt) =
3015           DefaultSt->assumeInclusiveRange(*NL, V1, V2);
3016     else // UnknownVal
3017       StateCase = DefaultSt;
3018 
3019     if (StateCase)
3020       builder.generateCaseStmtNode(I, StateCase);
3021 
3022     // Now "assume" that the case doesn't match.  Add this state
3023     // to the default state (if it is feasible).
3024     if (DefaultSt)
3025       defaultIsFeasible = true;
3026     else {
3027       defaultIsFeasible = false;
3028       break;
3029     }
3030   }
3031 
3032   if (!defaultIsFeasible)
3033     return;
3034 
3035   // If we have switch(enum value), the default branch is not
3036   // feasible if all of the enum constants not covered by 'case:' statements
3037   // are not feasible values for the switch condition.
3038   //
3039   // Note that this isn't as accurate as it could be.  Even if there isn't
3040   // a case for a particular enum value as long as that enum value isn't
3041   // feasible then it shouldn't be considered for making 'default:' reachable.
3042   const SwitchStmt *SS = builder.getSwitch();
3043   const Expr *CondExpr = SS->getCond()->IgnoreParenImpCasts();
3044   if (CondExpr->getType()->getAs<EnumType>()) {
3045     if (SS->isAllEnumCasesCovered())
3046       return;
3047   }
3048 
3049   builder.generateDefaultCaseNode(DefaultSt);
3050 }
3051 
3052 //===----------------------------------------------------------------------===//
3053 // Transfer functions: Loads and stores.
3054 //===----------------------------------------------------------------------===//
3055 
3056 void ExprEngine::VisitCommonDeclRefExpr(const Expr *Ex, const NamedDecl *D,
3057                                         ExplodedNode *Pred,
3058                                         ExplodedNodeSet &Dst) {
3059   StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
3060 
3061   ProgramStateRef state = Pred->getState();
3062   const LocationContext *LCtx = Pred->getLocationContext();
3063 
3064   if (const auto *VD = dyn_cast<VarDecl>(D)) {
3065     // C permits "extern void v", and if you cast the address to a valid type,
3066     // you can even do things with it. We simply pretend
3067     assert(Ex->isGLValue() || VD->getType()->isVoidType());
3068     const LocationContext *LocCtxt = Pred->getLocationContext();
3069     const Decl *D = LocCtxt->getDecl();
3070     const auto *MD = dyn_cast_or_null<CXXMethodDecl>(D);
3071     const auto *DeclRefEx = dyn_cast<DeclRefExpr>(Ex);
3072     std::optional<std::pair<SVal, QualType>> VInfo;
3073 
3074     if (AMgr.options.ShouldInlineLambdas && DeclRefEx &&
3075         DeclRefEx->refersToEnclosingVariableOrCapture() && MD &&
3076         MD->getParent()->isLambda()) {
3077       // Lookup the field of the lambda.
3078       const CXXRecordDecl *CXXRec = MD->getParent();
3079       llvm::DenseMap<const ValueDecl *, FieldDecl *> LambdaCaptureFields;
3080       FieldDecl *LambdaThisCaptureField;
3081       CXXRec->getCaptureFields(LambdaCaptureFields, LambdaThisCaptureField);
3082 
3083       // Sema follows a sequence of complex rules to determine whether the
3084       // variable should be captured.
3085       if (const FieldDecl *FD = LambdaCaptureFields[VD]) {
3086         Loc CXXThis =
3087             svalBuilder.getCXXThis(MD, LocCtxt->getStackFrame());
3088         SVal CXXThisVal = state->getSVal(CXXThis);
3089         VInfo = std::make_pair(state->getLValue(FD, CXXThisVal), FD->getType());
3090       }
3091     }
3092 
3093     if (!VInfo)
3094       VInfo = std::make_pair(state->getLValue(VD, LocCtxt), VD->getType());
3095 
3096     SVal V = VInfo->first;
3097     bool IsReference = VInfo->second->isReferenceType();
3098 
3099     // For references, the 'lvalue' is the pointer address stored in the
3100     // reference region.
3101     if (IsReference) {
3102       if (const MemRegion *R = V.getAsRegion())
3103         V = state->getSVal(R);
3104       else
3105         V = UnknownVal();
3106     }
3107 
3108     Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, V), nullptr,
3109                       ProgramPoint::PostLValueKind);
3110     return;
3111   }
3112   if (const auto *ED = dyn_cast<EnumConstantDecl>(D)) {
3113     assert(!Ex->isGLValue());
3114     SVal V = svalBuilder.makeIntVal(ED->getInitVal());
3115     Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, V));
3116     return;
3117   }
3118   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
3119     SVal V = svalBuilder.getFunctionPointer(FD);
3120     Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, V), nullptr,
3121                       ProgramPoint::PostLValueKind);
3122     return;
3123   }
3124   if (isa<FieldDecl, IndirectFieldDecl>(D)) {
3125     // Delegate all work related to pointer to members to the surrounding
3126     // operator&.
3127     return;
3128   }
3129   if (const auto *BD = dyn_cast<BindingDecl>(D)) {
3130     const auto *DD = cast<DecompositionDecl>(BD->getDecomposedDecl());
3131 
3132     SVal Base = state->getLValue(DD, LCtx);
3133     if (DD->getType()->isReferenceType()) {
3134       if (const MemRegion *R = Base.getAsRegion())
3135         Base = state->getSVal(R);
3136       else
3137         Base = UnknownVal();
3138     }
3139 
3140     SVal V = UnknownVal();
3141 
3142     // Handle binding to data members
3143     if (const auto *ME = dyn_cast<MemberExpr>(BD->getBinding())) {
3144       const auto *Field = cast<FieldDecl>(ME->getMemberDecl());
3145       V = state->getLValue(Field, Base);
3146     }
3147     // Handle binding to arrays
3148     else if (const auto *ASE = dyn_cast<ArraySubscriptExpr>(BD->getBinding())) {
3149       SVal Idx = state->getSVal(ASE->getIdx(), LCtx);
3150 
3151       // Note: the index of an element in a structured binding is automatically
3152       // created and it is a unique identifier of the specific element. Thus it
3153       // cannot be a value that varies at runtime.
3154       assert(Idx.isConstant() && "BindingDecl array index is not a constant!");
3155 
3156       V = state->getLValue(BD->getType(), Idx, Base);
3157     }
3158     // Handle binding to tuple-like structures
3159     else if (const auto *HV = BD->getHoldingVar()) {
3160       V = state->getLValue(HV, LCtx);
3161 
3162       if (HV->getType()->isReferenceType()) {
3163         if (const MemRegion *R = V.getAsRegion())
3164           V = state->getSVal(R);
3165         else
3166           V = UnknownVal();
3167       }
3168     } else
3169       llvm_unreachable("An unknown case of structured binding encountered!");
3170 
3171     // In case of tuple-like types the references are already handled, so we
3172     // don't want to handle them again.
3173     if (BD->getType()->isReferenceType() && !BD->getHoldingVar()) {
3174       if (const MemRegion *R = V.getAsRegion())
3175         V = state->getSVal(R);
3176       else
3177         V = UnknownVal();
3178     }
3179 
3180     Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, V), nullptr,
3181                       ProgramPoint::PostLValueKind);
3182 
3183     return;
3184   }
3185 
3186   if (const auto *TPO = dyn_cast<TemplateParamObjectDecl>(D)) {
3187     // FIXME: We should meaningfully implement this.
3188     (void)TPO;
3189     return;
3190   }
3191 
3192   llvm_unreachable("Support for this Decl not implemented.");
3193 }
3194 
3195 /// VisitArrayInitLoopExpr - Transfer function for array init loop.
3196 void ExprEngine::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *Ex,
3197                                         ExplodedNode *Pred,
3198                                         ExplodedNodeSet &Dst) {
3199   ExplodedNodeSet CheckerPreStmt;
3200   getCheckerManager().runCheckersForPreStmt(CheckerPreStmt, Pred, Ex, *this);
3201 
3202   ExplodedNodeSet EvalSet;
3203   StmtNodeBuilder Bldr(CheckerPreStmt, EvalSet, *currBldrCtx);
3204 
3205   const Expr *Arr = Ex->getCommonExpr()->getSourceExpr();
3206 
3207   for (auto *Node : CheckerPreStmt) {
3208 
3209     // The constructor visitior has already taken care of everything.
3210     if (isa<CXXConstructExpr>(Ex->getSubExpr()))
3211       break;
3212 
3213     const LocationContext *LCtx = Node->getLocationContext();
3214     ProgramStateRef state = Node->getState();
3215 
3216     SVal Base = UnknownVal();
3217 
3218     // As in case of this expression the sub-expressions are not visited by any
3219     // other transfer functions, they are handled by matching their AST.
3220 
3221     // Case of implicit copy or move ctor of object with array member
3222     //
3223     // Note: ExprEngine::VisitMemberExpr is not able to bind the array to the
3224     // environment.
3225     //
3226     //    struct S {
3227     //      int arr[2];
3228     //    };
3229     //
3230     //
3231     //    S a;
3232     //    S b = a;
3233     //
3234     // The AST in case of a *copy constructor* looks like this:
3235     //    ArrayInitLoopExpr
3236     //    |-OpaqueValueExpr
3237     //    | `-MemberExpr              <-- match this
3238     //    |   `-DeclRefExpr
3239     //    ` ...
3240     //
3241     //
3242     //    S c;
3243     //    S d = std::move(d);
3244     //
3245     // In case of a *move constructor* the resulting AST looks like:
3246     //    ArrayInitLoopExpr
3247     //    |-OpaqueValueExpr
3248     //    | `-MemberExpr              <-- match this first
3249     //    |   `-CXXStaticCastExpr     <-- match this after
3250     //    |     `-DeclRefExpr
3251     //    ` ...
3252     if (const auto *ME = dyn_cast<MemberExpr>(Arr)) {
3253       Expr *MEBase = ME->getBase();
3254 
3255       // Move ctor
3256       if (auto CXXSCE = dyn_cast<CXXStaticCastExpr>(MEBase)) {
3257         MEBase = CXXSCE->getSubExpr();
3258       }
3259 
3260       auto ObjDeclExpr = cast<DeclRefExpr>(MEBase);
3261       SVal Obj = state->getLValue(cast<VarDecl>(ObjDeclExpr->getDecl()), LCtx);
3262 
3263       Base = state->getLValue(cast<FieldDecl>(ME->getMemberDecl()), Obj);
3264     }
3265 
3266     // Case of lambda capture and decomposition declaration
3267     //
3268     //    int arr[2];
3269     //
3270     //    [arr]{ int a = arr[0]; }();
3271     //    auto[a, b] = arr;
3272     //
3273     // In both of these cases the AST looks like the following:
3274     //    ArrayInitLoopExpr
3275     //    |-OpaqueValueExpr
3276     //    | `-DeclRefExpr             <-- match this
3277     //    ` ...
3278     if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arr))
3279       Base = state->getLValue(cast<VarDecl>(DRE->getDecl()), LCtx);
3280 
3281     // Create a lazy compound value to the original array
3282     if (const MemRegion *R = Base.getAsRegion())
3283       Base = state->getSVal(R);
3284     else
3285       Base = UnknownVal();
3286 
3287     Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, Base));
3288   }
3289 
3290   getCheckerManager().runCheckersForPostStmt(Dst, EvalSet, Ex, *this);
3291 }
3292 
3293 /// VisitArraySubscriptExpr - Transfer function for array accesses
3294 void ExprEngine::VisitArraySubscriptExpr(const ArraySubscriptExpr *A,
3295                                              ExplodedNode *Pred,
3296                                              ExplodedNodeSet &Dst){
3297   const Expr *Base = A->getBase()->IgnoreParens();
3298   const Expr *Idx  = A->getIdx()->IgnoreParens();
3299 
3300   ExplodedNodeSet CheckerPreStmt;
3301   getCheckerManager().runCheckersForPreStmt(CheckerPreStmt, Pred, A, *this);
3302 
3303   ExplodedNodeSet EvalSet;
3304   StmtNodeBuilder Bldr(CheckerPreStmt, EvalSet, *currBldrCtx);
3305 
3306   bool IsVectorType = A->getBase()->getType()->isVectorType();
3307 
3308   // The "like" case is for situations where C standard prohibits the type to
3309   // be an lvalue, e.g. taking the address of a subscript of an expression of
3310   // type "void *".
3311   bool IsGLValueLike = A->isGLValue() ||
3312     (A->getType().isCForbiddenLValueType() && !AMgr.getLangOpts().CPlusPlus);
3313 
3314   for (auto *Node : CheckerPreStmt) {
3315     const LocationContext *LCtx = Node->getLocationContext();
3316     ProgramStateRef state = Node->getState();
3317 
3318     if (IsGLValueLike) {
3319       QualType T = A->getType();
3320 
3321       // One of the forbidden LValue types! We still need to have sensible
3322       // symbolic locations to represent this stuff. Note that arithmetic on
3323       // void pointers is a GCC extension.
3324       if (T->isVoidType())
3325         T = getContext().CharTy;
3326 
3327       SVal V = state->getLValue(T,
3328                                 state->getSVal(Idx, LCtx),
3329                                 state->getSVal(Base, LCtx));
3330       Bldr.generateNode(A, Node, state->BindExpr(A, LCtx, V), nullptr,
3331           ProgramPoint::PostLValueKind);
3332     } else if (IsVectorType) {
3333       // FIXME: non-glvalue vector reads are not modelled.
3334       Bldr.generateNode(A, Node, state, nullptr);
3335     } else {
3336       llvm_unreachable("Array subscript should be an lValue when not \
3337 a vector and not a forbidden lvalue type");
3338     }
3339   }
3340 
3341   getCheckerManager().runCheckersForPostStmt(Dst, EvalSet, A, *this);
3342 }
3343 
3344 /// VisitMemberExpr - Transfer function for member expressions.
3345 void ExprEngine::VisitMemberExpr(const MemberExpr *M, ExplodedNode *Pred,
3346                                  ExplodedNodeSet &Dst) {
3347   // FIXME: Prechecks eventually go in ::Visit().
3348   ExplodedNodeSet CheckedSet;
3349   getCheckerManager().runCheckersForPreStmt(CheckedSet, Pred, M, *this);
3350 
3351   ExplodedNodeSet EvalSet;
3352   ValueDecl *Member = M->getMemberDecl();
3353 
3354   // Handle static member variables and enum constants accessed via
3355   // member syntax.
3356   if (isa<VarDecl, EnumConstantDecl>(Member)) {
3357     for (const auto I : CheckedSet)
3358       VisitCommonDeclRefExpr(M, Member, I, EvalSet);
3359   } else {
3360     StmtNodeBuilder Bldr(CheckedSet, EvalSet, *currBldrCtx);
3361     ExplodedNodeSet Tmp;
3362 
3363     for (const auto I : CheckedSet) {
3364       ProgramStateRef state = I->getState();
3365       const LocationContext *LCtx = I->getLocationContext();
3366       Expr *BaseExpr = M->getBase();
3367 
3368       // Handle C++ method calls.
3369       if (const auto *MD = dyn_cast<CXXMethodDecl>(Member)) {
3370         if (MD->isImplicitObjectMemberFunction())
3371           state = createTemporaryRegionIfNeeded(state, LCtx, BaseExpr);
3372 
3373         SVal MDVal = svalBuilder.getFunctionPointer(MD);
3374         state = state->BindExpr(M, LCtx, MDVal);
3375 
3376         Bldr.generateNode(M, I, state);
3377         continue;
3378       }
3379 
3380       // Handle regular struct fields / member variables.
3381       const SubRegion *MR = nullptr;
3382       state = createTemporaryRegionIfNeeded(state, LCtx, BaseExpr,
3383                                             /*Result=*/nullptr,
3384                                             /*OutRegionWithAdjustments=*/&MR);
3385       SVal baseExprVal =
3386           MR ? loc::MemRegionVal(MR) : state->getSVal(BaseExpr, LCtx);
3387 
3388       // FIXME: Copied from RegionStoreManager::bind()
3389       if (const auto *SR =
3390               dyn_cast_or_null<SymbolicRegion>(baseExprVal.getAsRegion())) {
3391         QualType T = SR->getPointeeStaticType();
3392         baseExprVal =
3393             loc::MemRegionVal(getStoreManager().GetElementZeroRegion(SR, T));
3394       }
3395 
3396       const auto *field = cast<FieldDecl>(Member);
3397       SVal L = state->getLValue(field, baseExprVal);
3398 
3399       if (M->isGLValue() || M->getType()->isArrayType()) {
3400         // We special-case rvalues of array type because the analyzer cannot
3401         // reason about them, since we expect all regions to be wrapped in Locs.
3402         // We instead treat these as lvalues and assume that they will decay to
3403         // pointers as soon as they are used.
3404         if (!M->isGLValue()) {
3405           assert(M->getType()->isArrayType());
3406           const auto *PE =
3407             dyn_cast<ImplicitCastExpr>(I->getParentMap().getParentIgnoreParens(M));
3408           if (!PE || PE->getCastKind() != CK_ArrayToPointerDecay) {
3409             llvm_unreachable("should always be wrapped in ArrayToPointerDecay");
3410           }
3411         }
3412 
3413         if (field->getType()->isReferenceType()) {
3414           if (const MemRegion *R = L.getAsRegion())
3415             L = state->getSVal(R);
3416           else
3417             L = UnknownVal();
3418         }
3419 
3420         Bldr.generateNode(M, I, state->BindExpr(M, LCtx, L), nullptr,
3421                           ProgramPoint::PostLValueKind);
3422       } else {
3423         Bldr.takeNodes(I);
3424         evalLoad(Tmp, M, M, I, state, L);
3425         Bldr.addNodes(Tmp);
3426       }
3427     }
3428   }
3429 
3430   getCheckerManager().runCheckersForPostStmt(Dst, EvalSet, M, *this);
3431 }
3432 
3433 void ExprEngine::VisitAtomicExpr(const AtomicExpr *AE, ExplodedNode *Pred,
3434                                  ExplodedNodeSet &Dst) {
3435   ExplodedNodeSet AfterPreSet;
3436   getCheckerManager().runCheckersForPreStmt(AfterPreSet, Pred, AE, *this);
3437 
3438   // For now, treat all the arguments to C11 atomics as escaping.
3439   // FIXME: Ideally we should model the behavior of the atomics precisely here.
3440 
3441   ExplodedNodeSet AfterInvalidateSet;
3442   StmtNodeBuilder Bldr(AfterPreSet, AfterInvalidateSet, *currBldrCtx);
3443 
3444   for (const auto I : AfterPreSet) {
3445     ProgramStateRef State = I->getState();
3446     const LocationContext *LCtx = I->getLocationContext();
3447 
3448     SmallVector<SVal, 8> ValuesToInvalidate;
3449     for (unsigned SI = 0, Count = AE->getNumSubExprs(); SI != Count; SI++) {
3450       const Expr *SubExpr = AE->getSubExprs()[SI];
3451       SVal SubExprVal = State->getSVal(SubExpr, LCtx);
3452       ValuesToInvalidate.push_back(SubExprVal);
3453     }
3454 
3455     State = State->invalidateRegions(ValuesToInvalidate, AE,
3456                                     currBldrCtx->blockCount(),
3457                                     LCtx,
3458                                     /*CausedByPointerEscape*/true,
3459                                     /*Symbols=*/nullptr);
3460 
3461     SVal ResultVal = UnknownVal();
3462     State = State->BindExpr(AE, LCtx, ResultVal);
3463     Bldr.generateNode(AE, I, State, nullptr,
3464                       ProgramPoint::PostStmtKind);
3465   }
3466 
3467   getCheckerManager().runCheckersForPostStmt(Dst, AfterInvalidateSet, AE, *this);
3468 }
3469 
3470 // A value escapes in four possible cases:
3471 // (1) We are binding to something that is not a memory region.
3472 // (2) We are binding to a MemRegion that does not have stack storage.
3473 // (3) We are binding to a top-level parameter region with a non-trivial
3474 //     destructor. We won't see the destructor during analysis, but it's there.
3475 // (4) We are binding to a MemRegion with stack storage that the store
3476 //     does not understand.
3477 ProgramStateRef ExprEngine::processPointerEscapedOnBind(
3478     ProgramStateRef State, ArrayRef<std::pair<SVal, SVal>> LocAndVals,
3479     const LocationContext *LCtx, PointerEscapeKind Kind,
3480     const CallEvent *Call) {
3481   SmallVector<SVal, 8> Escaped;
3482   for (const std::pair<SVal, SVal> &LocAndVal : LocAndVals) {
3483     // Cases (1) and (2).
3484     const MemRegion *MR = LocAndVal.first.getAsRegion();
3485     if (!MR ||
3486         !isa<StackSpaceRegion, StaticGlobalSpaceRegion>(MR->getMemorySpace())) {
3487       Escaped.push_back(LocAndVal.second);
3488       continue;
3489     }
3490 
3491     // Case (3).
3492     if (const auto *VR = dyn_cast<VarRegion>(MR->getBaseRegion()))
3493       if (VR->hasStackParametersStorage() && VR->getStackFrame()->inTopFrame())
3494         if (const auto *RD = VR->getValueType()->getAsCXXRecordDecl())
3495           if (!RD->hasTrivialDestructor()) {
3496             Escaped.push_back(LocAndVal.second);
3497             continue;
3498           }
3499 
3500     // Case (4): in order to test that, generate a new state with the binding
3501     // added. If it is the same state, then it escapes (since the store cannot
3502     // represent the binding).
3503     // Do this only if we know that the store is not supposed to generate the
3504     // same state.
3505     SVal StoredVal = State->getSVal(MR);
3506     if (StoredVal != LocAndVal.second)
3507       if (State ==
3508           (State->bindLoc(loc::MemRegionVal(MR), LocAndVal.second, LCtx)))
3509         Escaped.push_back(LocAndVal.second);
3510   }
3511 
3512   if (Escaped.empty())
3513     return State;
3514 
3515   return escapeValues(State, Escaped, Kind, Call);
3516 }
3517 
3518 ProgramStateRef
3519 ExprEngine::processPointerEscapedOnBind(ProgramStateRef State, SVal Loc,
3520                                         SVal Val, const LocationContext *LCtx) {
3521   std::pair<SVal, SVal> LocAndVal(Loc, Val);
3522   return processPointerEscapedOnBind(State, LocAndVal, LCtx, PSK_EscapeOnBind,
3523                                      nullptr);
3524 }
3525 
3526 ProgramStateRef
3527 ExprEngine::notifyCheckersOfPointerEscape(ProgramStateRef State,
3528     const InvalidatedSymbols *Invalidated,
3529     ArrayRef<const MemRegion *> ExplicitRegions,
3530     const CallEvent *Call,
3531     RegionAndSymbolInvalidationTraits &ITraits) {
3532   if (!Invalidated || Invalidated->empty())
3533     return State;
3534 
3535   if (!Call)
3536     return getCheckerManager().runCheckersForPointerEscape(State,
3537                                                            *Invalidated,
3538                                                            nullptr,
3539                                                            PSK_EscapeOther,
3540                                                            &ITraits);
3541 
3542   // If the symbols were invalidated by a call, we want to find out which ones
3543   // were invalidated directly due to being arguments to the call.
3544   InvalidatedSymbols SymbolsDirectlyInvalidated;
3545   for (const auto I : ExplicitRegions) {
3546     if (const SymbolicRegion *R = I->StripCasts()->getAs<SymbolicRegion>())
3547       SymbolsDirectlyInvalidated.insert(R->getSymbol());
3548   }
3549 
3550   InvalidatedSymbols SymbolsIndirectlyInvalidated;
3551   for (const auto &sym : *Invalidated) {
3552     if (SymbolsDirectlyInvalidated.count(sym))
3553       continue;
3554     SymbolsIndirectlyInvalidated.insert(sym);
3555   }
3556 
3557   if (!SymbolsDirectlyInvalidated.empty())
3558     State = getCheckerManager().runCheckersForPointerEscape(State,
3559         SymbolsDirectlyInvalidated, Call, PSK_DirectEscapeOnCall, &ITraits);
3560 
3561   // Notify about the symbols that get indirectly invalidated by the call.
3562   if (!SymbolsIndirectlyInvalidated.empty())
3563     State = getCheckerManager().runCheckersForPointerEscape(State,
3564         SymbolsIndirectlyInvalidated, Call, PSK_IndirectEscapeOnCall, &ITraits);
3565 
3566   return State;
3567 }
3568 
3569 /// evalBind - Handle the semantics of binding a value to a specific location.
3570 ///  This method is used by evalStore and (soon) VisitDeclStmt, and others.
3571 void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE,
3572                           ExplodedNode *Pred,
3573                           SVal location, SVal Val,
3574                           bool atDeclInit, const ProgramPoint *PP) {
3575   const LocationContext *LC = Pred->getLocationContext();
3576   PostStmt PS(StoreE, LC);
3577   if (!PP)
3578     PP = &PS;
3579 
3580   // Do a previsit of the bind.
3581   ExplodedNodeSet CheckedSet;
3582   getCheckerManager().runCheckersForBind(CheckedSet, Pred, location, Val,
3583                                          StoreE, *this, *PP);
3584 
3585   StmtNodeBuilder Bldr(CheckedSet, Dst, *currBldrCtx);
3586 
3587   // If the location is not a 'Loc', it will already be handled by
3588   // the checkers.  There is nothing left to do.
3589   if (!isa<Loc>(location)) {
3590     const ProgramPoint L = PostStore(StoreE, LC, /*Loc*/nullptr,
3591                                      /*tag*/nullptr);
3592     ProgramStateRef state = Pred->getState();
3593     state = processPointerEscapedOnBind(state, location, Val, LC);
3594     Bldr.generateNode(L, state, Pred);
3595     return;
3596   }
3597 
3598   for (const auto PredI : CheckedSet) {
3599     ProgramStateRef state = PredI->getState();
3600 
3601     state = processPointerEscapedOnBind(state, location, Val, LC);
3602 
3603     // When binding the value, pass on the hint that this is a initialization.
3604     // For initializations, we do not need to inform clients of region
3605     // changes.
3606     state = state->bindLoc(location.castAs<Loc>(),
3607                            Val, LC, /* notifyChanges = */ !atDeclInit);
3608 
3609     const MemRegion *LocReg = nullptr;
3610     if (std::optional<loc::MemRegionVal> LocRegVal =
3611             location.getAs<loc::MemRegionVal>()) {
3612       LocReg = LocRegVal->getRegion();
3613     }
3614 
3615     const ProgramPoint L = PostStore(StoreE, LC, LocReg, nullptr);
3616     Bldr.generateNode(L, state, PredI);
3617   }
3618 }
3619 
3620 /// evalStore - Handle the semantics of a store via an assignment.
3621 ///  @param Dst The node set to store generated state nodes
3622 ///  @param AssignE The assignment expression if the store happens in an
3623 ///         assignment.
3624 ///  @param LocationE The location expression that is stored to.
3625 ///  @param state The current simulation state
3626 ///  @param location The location to store the value
3627 ///  @param Val The value to be stored
3628 void ExprEngine::evalStore(ExplodedNodeSet &Dst, const Expr *AssignE,
3629                              const Expr *LocationE,
3630                              ExplodedNode *Pred,
3631                              ProgramStateRef state, SVal location, SVal Val,
3632                              const ProgramPointTag *tag) {
3633   // Proceed with the store.  We use AssignE as the anchor for the PostStore
3634   // ProgramPoint if it is non-NULL, and LocationE otherwise.
3635   const Expr *StoreE = AssignE ? AssignE : LocationE;
3636 
3637   // Evaluate the location (checks for bad dereferences).
3638   ExplodedNodeSet Tmp;
3639   evalLocation(Tmp, AssignE, LocationE, Pred, state, location, false);
3640 
3641   if (Tmp.empty())
3642     return;
3643 
3644   if (location.isUndef())
3645     return;
3646 
3647   for (const auto I : Tmp)
3648     evalBind(Dst, StoreE, I, location, Val, false);
3649 }
3650 
3651 void ExprEngine::evalLoad(ExplodedNodeSet &Dst,
3652                           const Expr *NodeEx,
3653                           const Expr *BoundEx,
3654                           ExplodedNode *Pred,
3655                           ProgramStateRef state,
3656                           SVal location,
3657                           const ProgramPointTag *tag,
3658                           QualType LoadTy) {
3659   assert(!isa<NonLoc>(location) && "location cannot be a NonLoc.");
3660   assert(NodeEx);
3661   assert(BoundEx);
3662   // Evaluate the location (checks for bad dereferences).
3663   ExplodedNodeSet Tmp;
3664   evalLocation(Tmp, NodeEx, BoundEx, Pred, state, location, true);
3665   if (Tmp.empty())
3666     return;
3667 
3668   StmtNodeBuilder Bldr(Tmp, Dst, *currBldrCtx);
3669   if (location.isUndef())
3670     return;
3671 
3672   // Proceed with the load.
3673   for (const auto I : Tmp) {
3674     state = I->getState();
3675     const LocationContext *LCtx = I->getLocationContext();
3676 
3677     SVal V = UnknownVal();
3678     if (location.isValid()) {
3679       if (LoadTy.isNull())
3680         LoadTy = BoundEx->getType();
3681       V = state->getSVal(location.castAs<Loc>(), LoadTy);
3682     }
3683 
3684     Bldr.generateNode(NodeEx, I, state->BindExpr(BoundEx, LCtx, V), tag,
3685                       ProgramPoint::PostLoadKind);
3686   }
3687 }
3688 
3689 void ExprEngine::evalLocation(ExplodedNodeSet &Dst,
3690                               const Stmt *NodeEx,
3691                               const Stmt *BoundEx,
3692                               ExplodedNode *Pred,
3693                               ProgramStateRef state,
3694                               SVal location,
3695                               bool isLoad) {
3696   StmtNodeBuilder BldrTop(Pred, Dst, *currBldrCtx);
3697   // Early checks for performance reason.
3698   if (location.isUnknown()) {
3699     return;
3700   }
3701 
3702   ExplodedNodeSet Src;
3703   BldrTop.takeNodes(Pred);
3704   StmtNodeBuilder Bldr(Pred, Src, *currBldrCtx);
3705   if (Pred->getState() != state) {
3706     // Associate this new state with an ExplodedNode.
3707     // FIXME: If I pass null tag, the graph is incorrect, e.g for
3708     //   int *p;
3709     //   p = 0;
3710     //   *p = 0xDEADBEEF;
3711     // "p = 0" is not noted as "Null pointer value stored to 'p'" but
3712     // instead "int *p" is noted as
3713     // "Variable 'p' initialized to a null pointer value"
3714 
3715     static SimpleProgramPointTag tag(TagProviderName, "Location");
3716     Bldr.generateNode(NodeEx, Pred, state, &tag);
3717   }
3718   ExplodedNodeSet Tmp;
3719   getCheckerManager().runCheckersForLocation(Tmp, Src, location, isLoad,
3720                                              NodeEx, BoundEx, *this);
3721   BldrTop.addNodes(Tmp);
3722 }
3723 
3724 std::pair<const ProgramPointTag *, const ProgramPointTag *>
3725 ExprEngine::getEagerlyAssumeBifurcationTags() {
3726   static SimpleProgramPointTag TrueTag(TagProviderName, "Eagerly Assume True"),
3727       FalseTag(TagProviderName, "Eagerly Assume False");
3728 
3729   return std::make_pair(&TrueTag, &FalseTag);
3730 }
3731 
3732 void ExprEngine::evalEagerlyAssumeBifurcation(ExplodedNodeSet &Dst,
3733                                               ExplodedNodeSet &Src,
3734                                               const Expr *Ex) {
3735   StmtNodeBuilder Bldr(Src, Dst, *currBldrCtx);
3736 
3737   for (ExplodedNode *Pred : Src) {
3738     // Test if the previous node was as the same expression.  This can happen
3739     // when the expression fails to evaluate to anything meaningful and
3740     // (as an optimization) we don't generate a node.
3741     ProgramPoint P = Pred->getLocation();
3742     if (!P.getAs<PostStmt>() || P.castAs<PostStmt>().getStmt() != Ex) {
3743       continue;
3744     }
3745 
3746     ProgramStateRef State = Pred->getState();
3747     SVal V = State->getSVal(Ex, Pred->getLocationContext());
3748     std::optional<nonloc::SymbolVal> SEV = V.getAs<nonloc::SymbolVal>();
3749     if (SEV && SEV->isExpression()) {
3750       const auto &[TrueTag, FalseTag] = getEagerlyAssumeBifurcationTags();
3751 
3752       auto [StateTrue, StateFalse] = State->assume(*SEV);
3753 
3754       // First assume that the condition is true.
3755       if (StateTrue) {
3756         SVal Val = svalBuilder.makeIntVal(1U, Ex->getType());
3757         StateTrue = StateTrue->BindExpr(Ex, Pred->getLocationContext(), Val);
3758         Bldr.generateNode(Ex, Pred, StateTrue, TrueTag);
3759       }
3760 
3761       // Next, assume that the condition is false.
3762       if (StateFalse) {
3763         SVal Val = svalBuilder.makeIntVal(0U, Ex->getType());
3764         StateFalse = StateFalse->BindExpr(Ex, Pred->getLocationContext(), Val);
3765         Bldr.generateNode(Ex, Pred, StateFalse, FalseTag);
3766       }
3767     }
3768   }
3769 }
3770 
3771 void ExprEngine::VisitGCCAsmStmt(const GCCAsmStmt *A, ExplodedNode *Pred,
3772                                  ExplodedNodeSet &Dst) {
3773   StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
3774   // We have processed both the inputs and the outputs.  All of the outputs
3775   // should evaluate to Locs.  Nuke all of their values.
3776 
3777   // FIXME: Some day in the future it would be nice to allow a "plug-in"
3778   // which interprets the inline asm and stores proper results in the
3779   // outputs.
3780 
3781   ProgramStateRef state = Pred->getState();
3782 
3783   for (const Expr *O : A->outputs()) {
3784     SVal X = state->getSVal(O, Pred->getLocationContext());
3785     assert(!isa<NonLoc>(X)); // Should be an Lval, or unknown, undef.
3786 
3787     if (std::optional<Loc> LV = X.getAs<Loc>())
3788       state = state->invalidateRegions(*LV, A, currBldrCtx->blockCount(),
3789                                        Pred->getLocationContext(),
3790                                        /*CausedByPointerEscape=*/true);
3791   }
3792 
3793   // Do not reason about locations passed inside inline assembly.
3794   for (const Expr *I : A->inputs()) {
3795     SVal X = state->getSVal(I, Pred->getLocationContext());
3796 
3797     if (std::optional<Loc> LV = X.getAs<Loc>())
3798       state = state->invalidateRegions(*LV, A, currBldrCtx->blockCount(),
3799                                        Pred->getLocationContext(),
3800                                        /*CausedByPointerEscape=*/true);
3801   }
3802 
3803   Bldr.generateNode(A, Pred, state);
3804 }
3805 
3806 void ExprEngine::VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred,
3807                                 ExplodedNodeSet &Dst) {
3808   StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
3809   Bldr.generateNode(A, Pred, Pred->getState());
3810 }
3811 
3812 //===----------------------------------------------------------------------===//
3813 // Visualization.
3814 //===----------------------------------------------------------------------===//
3815 
3816 namespace llvm {
3817 
3818 template<>
3819 struct DOTGraphTraits<ExplodedGraph*> : public DefaultDOTGraphTraits {
3820   DOTGraphTraits (bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
3821 
3822   static bool nodeHasBugReport(const ExplodedNode *N) {
3823     BugReporter &BR = static_cast<ExprEngine &>(
3824       N->getState()->getStateManager().getOwningEngine()).getBugReporter();
3825 
3826     for (const auto &Class : BR.equivalenceClasses()) {
3827       for (const auto &Report : Class.getReports()) {
3828         const auto *PR = dyn_cast<PathSensitiveBugReport>(Report.get());
3829         if (!PR)
3830           continue;
3831         const ExplodedNode *EN = PR->getErrorNode();
3832         if (EN->getState() == N->getState() &&
3833             EN->getLocation() == N->getLocation())
3834           return true;
3835       }
3836     }
3837     return false;
3838   }
3839 
3840   /// \p PreCallback: callback before break.
3841   /// \p PostCallback: callback after break.
3842   /// \p Stop: stop iteration if returns @c true
3843   /// \return Whether @c Stop ever returned @c true.
3844   static bool traverseHiddenNodes(
3845       const ExplodedNode *N,
3846       llvm::function_ref<void(const ExplodedNode *)> PreCallback,
3847       llvm::function_ref<void(const ExplodedNode *)> PostCallback,
3848       llvm::function_ref<bool(const ExplodedNode *)> Stop) {
3849     while (true) {
3850       PreCallback(N);
3851       if (Stop(N))
3852         return true;
3853 
3854       if (N->succ_size() != 1 || !isNodeHidden(N->getFirstSucc(), nullptr))
3855         break;
3856       PostCallback(N);
3857 
3858       N = N->getFirstSucc();
3859     }
3860     return false;
3861   }
3862 
3863   static bool isNodeHidden(const ExplodedNode *N, const ExplodedGraph *G) {
3864     return N->isTrivial();
3865   }
3866 
3867   static std::string getNodeLabel(const ExplodedNode *N, ExplodedGraph *G){
3868     std::string Buf;
3869     llvm::raw_string_ostream Out(Buf);
3870 
3871     const bool IsDot = true;
3872     const unsigned int Space = 1;
3873     ProgramStateRef State = N->getState();
3874 
3875     Out << "{ \"state_id\": " << State->getID()
3876         << ",\\l";
3877 
3878     Indent(Out, Space, IsDot) << "\"program_points\": [\\l";
3879 
3880     // Dump program point for all the previously skipped nodes.
3881     traverseHiddenNodes(
3882         N,
3883         [&](const ExplodedNode *OtherNode) {
3884           Indent(Out, Space + 1, IsDot) << "{ ";
3885           OtherNode->getLocation().printJson(Out, /*NL=*/"\\l");
3886           Out << ", \"tag\": ";
3887           if (const ProgramPointTag *Tag = OtherNode->getLocation().getTag())
3888             Out << '\"' << Tag->getTagDescription() << '\"';
3889           else
3890             Out << "null";
3891           Out << ", \"node_id\": " << OtherNode->getID() <<
3892                  ", \"is_sink\": " << OtherNode->isSink() <<
3893                  ", \"has_report\": " << nodeHasBugReport(OtherNode) << " }";
3894         },
3895         // Adds a comma and a new-line between each program point.
3896         [&](const ExplodedNode *) { Out << ",\\l"; },
3897         [&](const ExplodedNode *) { return false; });
3898 
3899     Out << "\\l"; // Adds a new-line to the last program point.
3900     Indent(Out, Space, IsDot) << "],\\l";
3901 
3902     State->printDOT(Out, N->getLocationContext(), Space);
3903 
3904     Out << "\\l}\\l";
3905     return Buf;
3906   }
3907 };
3908 
3909 } // namespace llvm
3910 
3911 void ExprEngine::ViewGraph(bool trim) {
3912   std::string Filename = DumpGraph(trim);
3913   llvm::DisplayGraph(Filename, false, llvm::GraphProgram::DOT);
3914 }
3915 
3916 void ExprEngine::ViewGraph(ArrayRef<const ExplodedNode *> Nodes) {
3917   std::string Filename = DumpGraph(Nodes);
3918   llvm::DisplayGraph(Filename, false, llvm::GraphProgram::DOT);
3919 }
3920 
3921 std::string ExprEngine::DumpGraph(bool trim, StringRef Filename) {
3922   if (trim) {
3923     std::vector<const ExplodedNode *> Src;
3924 
3925     // Iterate through the reports and get their nodes.
3926     for (const auto &Class : BR.equivalenceClasses()) {
3927       const auto *R =
3928           dyn_cast<PathSensitiveBugReport>(Class.getReports()[0].get());
3929       if (!R)
3930         continue;
3931       const auto *N = const_cast<ExplodedNode *>(R->getErrorNode());
3932       Src.push_back(N);
3933     }
3934     return DumpGraph(Src, Filename);
3935   }
3936 
3937   return llvm::WriteGraph(&G, "ExprEngine", /*ShortNames=*/false,
3938                           /*Title=*/"Exploded Graph",
3939                           /*Filename=*/std::string(Filename));
3940 }
3941 
3942 std::string ExprEngine::DumpGraph(ArrayRef<const ExplodedNode *> Nodes,
3943                                   StringRef Filename) {
3944   std::unique_ptr<ExplodedGraph> TrimmedG(G.trim(Nodes));
3945 
3946   if (!TrimmedG.get()) {
3947     llvm::errs() << "warning: Trimmed ExplodedGraph is empty.\n";
3948     return "";
3949   }
3950 
3951   return llvm::WriteGraph(TrimmedG.get(), "TrimmedExprEngine",
3952                           /*ShortNames=*/false,
3953                           /*Title=*/"Trimmed Exploded Graph",
3954                           /*Filename=*/std::string(Filename));
3955 }
3956 
3957 void *ProgramStateTrait<ReplayWithoutInlining>::GDMIndex() {
3958   static int index = 0;
3959   return &index;
3960 }
3961 
3962 void ExprEngine::anchor() { }
3963