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