1 //===- CFG.cpp - Classes for representing and building CFGs ---------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file defines the CFG and CFGBuilder classes for representing and
11 //  building Control-Flow Graphs (CFGs) from ASTs.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "clang/Analysis/CFG.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/Attr.h"
18 #include "clang/AST/Decl.h"
19 #include "clang/AST/DeclBase.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclGroup.h"
22 #include "clang/AST/Expr.h"
23 #include "clang/AST/ExprCXX.h"
24 #include "clang/AST/OperationKinds.h"
25 #include "clang/AST/PrettyPrinter.h"
26 #include "clang/AST/Stmt.h"
27 #include "clang/AST/StmtCXX.h"
28 #include "clang/AST/StmtObjC.h"
29 #include "clang/AST/StmtVisitor.h"
30 #include "clang/AST/Type.h"
31 #include "clang/Analysis/Support/BumpVector.h"
32 #include "clang/Analysis/ConstructionContext.h"
33 #include "clang/Basic/Builtins.h"
34 #include "clang/Basic/ExceptionSpecificationType.h"
35 #include "clang/Basic/LLVM.h"
36 #include "clang/Basic/LangOptions.h"
37 #include "clang/Basic/SourceLocation.h"
38 #include "clang/Basic/Specifiers.h"
39 #include "llvm/ADT/APInt.h"
40 #include "llvm/ADT/APSInt.h"
41 #include "llvm/ADT/ArrayRef.h"
42 #include "llvm/ADT/DenseMap.h"
43 #include "llvm/ADT/Optional.h"
44 #include "llvm/ADT/STLExtras.h"
45 #include "llvm/ADT/SetVector.h"
46 #include "llvm/ADT/SmallPtrSet.h"
47 #include "llvm/ADT/SmallVector.h"
48 #include "llvm/Support/Allocator.h"
49 #include "llvm/Support/Casting.h"
50 #include "llvm/Support/Compiler.h"
51 #include "llvm/Support/DOTGraphTraits.h"
52 #include "llvm/Support/ErrorHandling.h"
53 #include "llvm/Support/Format.h"
54 #include "llvm/Support/GraphWriter.h"
55 #include "llvm/Support/SaveAndRestore.h"
56 #include "llvm/Support/raw_ostream.h"
57 #include <cassert>
58 #include <memory>
59 #include <string>
60 #include <tuple>
61 #include <utility>
62 #include <vector>
63 
64 using namespace clang;
65 
66 static SourceLocation GetEndLoc(Decl *D) {
67   if (VarDecl *VD = dyn_cast<VarDecl>(D))
68     if (Expr *Ex = VD->getInit())
69       return Ex->getSourceRange().getEnd();
70   return D->getLocation();
71 }
72 
73 /// Helper for tryNormalizeBinaryOperator. Attempts to extract an IntegerLiteral
74 /// or EnumConstantDecl from the given Expr. If it fails, returns nullptr.
75 static const Expr *tryTransformToIntOrEnumConstant(const Expr *E) {
76   E = E->IgnoreParens();
77   if (isa<IntegerLiteral>(E))
78     return E;
79   if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
80     return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr;
81   return nullptr;
82 }
83 
84 /// Tries to interpret a binary operator into `Decl Op Expr` form, if Expr is
85 /// an integer literal or an enum constant.
86 ///
87 /// If this fails, at least one of the returned DeclRefExpr or Expr will be
88 /// null.
89 static std::tuple<const DeclRefExpr *, BinaryOperatorKind, const Expr *>
90 tryNormalizeBinaryOperator(const BinaryOperator *B) {
91   BinaryOperatorKind Op = B->getOpcode();
92 
93   const Expr *MaybeDecl = B->getLHS();
94   const Expr *Constant = tryTransformToIntOrEnumConstant(B->getRHS());
95   // Expr looked like `0 == Foo` instead of `Foo == 0`
96   if (Constant == nullptr) {
97     // Flip the operator
98     if (Op == BO_GT)
99       Op = BO_LT;
100     else if (Op == BO_GE)
101       Op = BO_LE;
102     else if (Op == BO_LT)
103       Op = BO_GT;
104     else if (Op == BO_LE)
105       Op = BO_GE;
106 
107     MaybeDecl = B->getRHS();
108     Constant = tryTransformToIntOrEnumConstant(B->getLHS());
109   }
110 
111   auto *D = dyn_cast<DeclRefExpr>(MaybeDecl->IgnoreParenImpCasts());
112   return std::make_tuple(D, Op, Constant);
113 }
114 
115 /// For an expression `x == Foo && x == Bar`, this determines whether the
116 /// `Foo` and `Bar` are either of the same enumeration type, or both integer
117 /// literals.
118 ///
119 /// It's an error to pass this arguments that are not either IntegerLiterals
120 /// or DeclRefExprs (that have decls of type EnumConstantDecl)
121 static bool areExprTypesCompatible(const Expr *E1, const Expr *E2) {
122   // User intent isn't clear if they're mixing int literals with enum
123   // constants.
124   if (isa<IntegerLiteral>(E1) != isa<IntegerLiteral>(E2))
125     return false;
126 
127   // Integer literal comparisons, regardless of literal type, are acceptable.
128   if (isa<IntegerLiteral>(E1))
129     return true;
130 
131   // IntegerLiterals are handled above and only EnumConstantDecls are expected
132   // beyond this point
133   assert(isa<DeclRefExpr>(E1) && isa<DeclRefExpr>(E2));
134   auto *Decl1 = cast<DeclRefExpr>(E1)->getDecl();
135   auto *Decl2 = cast<DeclRefExpr>(E2)->getDecl();
136 
137   assert(isa<EnumConstantDecl>(Decl1) && isa<EnumConstantDecl>(Decl2));
138   const DeclContext *DC1 = Decl1->getDeclContext();
139   const DeclContext *DC2 = Decl2->getDeclContext();
140 
141   assert(isa<EnumDecl>(DC1) && isa<EnumDecl>(DC2));
142   return DC1 == DC2;
143 }
144 
145 namespace {
146 
147 class CFGBuilder;
148 
149 /// The CFG builder uses a recursive algorithm to build the CFG.  When
150 ///  we process an expression, sometimes we know that we must add the
151 ///  subexpressions as block-level expressions.  For example:
152 ///
153 ///    exp1 || exp2
154 ///
155 ///  When processing the '||' expression, we know that exp1 and exp2
156 ///  need to be added as block-level expressions, even though they
157 ///  might not normally need to be.  AddStmtChoice records this
158 ///  contextual information.  If AddStmtChoice is 'NotAlwaysAdd', then
159 ///  the builder has an option not to add a subexpression as a
160 ///  block-level expression.
161 class AddStmtChoice {
162 public:
163   enum Kind { NotAlwaysAdd = 0, AlwaysAdd = 1 };
164 
165   AddStmtChoice(Kind a_kind = NotAlwaysAdd) : kind(a_kind) {}
166 
167   bool alwaysAdd(CFGBuilder &builder,
168                  const Stmt *stmt) const;
169 
170   /// Return a copy of this object, except with the 'always-add' bit
171   ///  set as specified.
172   AddStmtChoice withAlwaysAdd(bool alwaysAdd) const {
173     return AddStmtChoice(alwaysAdd ? AlwaysAdd : NotAlwaysAdd);
174   }
175 
176 private:
177   Kind kind;
178 };
179 
180 /// LocalScope - Node in tree of local scopes created for C++ implicit
181 /// destructor calls generation. It contains list of automatic variables
182 /// declared in the scope and link to position in previous scope this scope
183 /// began in.
184 ///
185 /// The process of creating local scopes is as follows:
186 /// - Init CFGBuilder::ScopePos with invalid position (equivalent for null),
187 /// - Before processing statements in scope (e.g. CompoundStmt) create
188 ///   LocalScope object using CFGBuilder::ScopePos as link to previous scope
189 ///   and set CFGBuilder::ScopePos to the end of new scope,
190 /// - On every occurrence of VarDecl increase CFGBuilder::ScopePos if it points
191 ///   at this VarDecl,
192 /// - For every normal (without jump) end of scope add to CFGBlock destructors
193 ///   for objects in the current scope,
194 /// - For every jump add to CFGBlock destructors for objects
195 ///   between CFGBuilder::ScopePos and local scope position saved for jump
196 ///   target. Thanks to C++ restrictions on goto jumps we can be sure that
197 ///   jump target position will be on the path to root from CFGBuilder::ScopePos
198 ///   (adding any variable that doesn't need constructor to be called to
199 ///   LocalScope can break this assumption),
200 ///
201 class LocalScope {
202 public:
203   friend class const_iterator;
204 
205   using AutomaticVarsTy = BumpVector<VarDecl *>;
206 
207   /// const_iterator - Iterates local scope backwards and jumps to previous
208   /// scope on reaching the beginning of currently iterated scope.
209   class const_iterator {
210     const LocalScope* Scope = nullptr;
211 
212     /// VarIter is guaranteed to be greater then 0 for every valid iterator.
213     /// Invalid iterator (with null Scope) has VarIter equal to 0.
214     unsigned VarIter = 0;
215 
216   public:
217     /// Create invalid iterator. Dereferencing invalid iterator is not allowed.
218     /// Incrementing invalid iterator is allowed and will result in invalid
219     /// iterator.
220     const_iterator() = default;
221 
222     /// Create valid iterator. In case when S.Prev is an invalid iterator and
223     /// I is equal to 0, this will create invalid iterator.
224     const_iterator(const LocalScope& S, unsigned I)
225         : Scope(&S), VarIter(I) {
226       // Iterator to "end" of scope is not allowed. Handle it by going up
227       // in scopes tree possibly up to invalid iterator in the root.
228       if (VarIter == 0 && Scope)
229         *this = Scope->Prev;
230     }
231 
232     VarDecl *const* operator->() const {
233       assert(Scope && "Dereferencing invalid iterator is not allowed");
234       assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
235       return &Scope->Vars[VarIter - 1];
236     }
237 
238     const VarDecl *getFirstVarInScope() const {
239       assert(Scope && "Dereferencing invalid iterator is not allowed");
240       assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
241       return Scope->Vars[0];
242     }
243 
244     VarDecl *operator*() const {
245       return *this->operator->();
246     }
247 
248     const_iterator &operator++() {
249       if (!Scope)
250         return *this;
251 
252       assert(VarIter != 0 && "Iterator has invalid value of VarIter member");
253       --VarIter;
254       if (VarIter == 0)
255         *this = Scope->Prev;
256       return *this;
257     }
258     const_iterator operator++(int) {
259       const_iterator P = *this;
260       ++*this;
261       return P;
262     }
263 
264     bool operator==(const const_iterator &rhs) const {
265       return Scope == rhs.Scope && VarIter == rhs.VarIter;
266     }
267     bool operator!=(const const_iterator &rhs) const {
268       return !(*this == rhs);
269     }
270 
271     explicit operator bool() const {
272       return *this != const_iterator();
273     }
274 
275     int distance(const_iterator L);
276     const_iterator shared_parent(const_iterator L);
277     bool pointsToFirstDeclaredVar() { return VarIter == 1; }
278   };
279 
280 private:
281   BumpVectorContext ctx;
282 
283   /// Automatic variables in order of declaration.
284   AutomaticVarsTy Vars;
285 
286   /// Iterator to variable in previous scope that was declared just before
287   /// begin of this scope.
288   const_iterator Prev;
289 
290 public:
291   /// Constructs empty scope linked to previous scope in specified place.
292   LocalScope(BumpVectorContext ctx, const_iterator P)
293       : ctx(std::move(ctx)), Vars(this->ctx, 4), Prev(P) {}
294 
295   /// Begin of scope in direction of CFG building (backwards).
296   const_iterator begin() const { return const_iterator(*this, Vars.size()); }
297 
298   void addVar(VarDecl *VD) {
299     Vars.push_back(VD, ctx);
300   }
301 };
302 
303 } // namespace
304 
305 /// distance - Calculates distance from this to L. L must be reachable from this
306 /// (with use of ++ operator). Cost of calculating the distance is linear w.r.t.
307 /// number of scopes between this and L.
308 int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
309   int D = 0;
310   const_iterator F = *this;
311   while (F.Scope != L.Scope) {
312     assert(F != const_iterator() &&
313            "L iterator is not reachable from F iterator.");
314     D += F.VarIter;
315     F = F.Scope->Prev;
316   }
317   D += F.VarIter - L.VarIter;
318   return D;
319 }
320 
321 /// Calculates the closest parent of this iterator
322 /// that is in a scope reachable through the parents of L.
323 /// I.e. when using 'goto' from this to L, the lifetime of all variables
324 /// between this and shared_parent(L) end.
325 LocalScope::const_iterator
326 LocalScope::const_iterator::shared_parent(LocalScope::const_iterator L) {
327   llvm::SmallPtrSet<const LocalScope *, 4> ScopesOfL;
328   while (true) {
329     ScopesOfL.insert(L.Scope);
330     if (L == const_iterator())
331       break;
332     L = L.Scope->Prev;
333   }
334 
335   const_iterator F = *this;
336   while (true) {
337     if (ScopesOfL.count(F.Scope))
338       return F;
339     assert(F != const_iterator() &&
340            "L iterator is not reachable from F iterator.");
341     F = F.Scope->Prev;
342   }
343 }
344 
345 namespace {
346 
347 /// Structure for specifying position in CFG during its build process. It
348 /// consists of CFGBlock that specifies position in CFG and
349 /// LocalScope::const_iterator that specifies position in LocalScope graph.
350 struct BlockScopePosPair {
351   CFGBlock *block = nullptr;
352   LocalScope::const_iterator scopePosition;
353 
354   BlockScopePosPair() = default;
355   BlockScopePosPair(CFGBlock *b, LocalScope::const_iterator scopePos)
356       : block(b), scopePosition(scopePos) {}
357 };
358 
359 /// TryResult - a class representing a variant over the values
360 ///  'true', 'false', or 'unknown'.  This is returned by tryEvaluateBool,
361 ///  and is used by the CFGBuilder to decide if a branch condition
362 ///  can be decided up front during CFG construction.
363 class TryResult {
364   int X = -1;
365 
366 public:
367   TryResult() = default;
368   TryResult(bool b) : X(b ? 1 : 0) {}
369 
370   bool isTrue() const { return X == 1; }
371   bool isFalse() const { return X == 0; }
372   bool isKnown() const { return X >= 0; }
373 
374   void negate() {
375     assert(isKnown());
376     X ^= 0x1;
377   }
378 };
379 
380 } // namespace
381 
382 static TryResult bothKnownTrue(TryResult R1, TryResult R2) {
383   if (!R1.isKnown() || !R2.isKnown())
384     return TryResult();
385   return TryResult(R1.isTrue() && R2.isTrue());
386 }
387 
388 namespace {
389 
390 class reverse_children {
391   llvm::SmallVector<Stmt *, 12> childrenBuf;
392   ArrayRef<Stmt *> children;
393 
394 public:
395   reverse_children(Stmt *S);
396 
397   using iterator = ArrayRef<Stmt *>::reverse_iterator;
398 
399   iterator begin() const { return children.rbegin(); }
400   iterator end() const { return children.rend(); }
401 };
402 
403 } // namespace
404 
405 reverse_children::reverse_children(Stmt *S) {
406   if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
407     children = CE->getRawSubExprs();
408     return;
409   }
410   switch (S->getStmtClass()) {
411     // Note: Fill in this switch with more cases we want to optimize.
412     case Stmt::InitListExprClass: {
413       InitListExpr *IE = cast<InitListExpr>(S);
414       children = llvm::makeArrayRef(reinterpret_cast<Stmt**>(IE->getInits()),
415                                     IE->getNumInits());
416       return;
417     }
418     default:
419       break;
420   }
421 
422   // Default case for all other statements.
423   for (Stmt *SubStmt : S->children())
424     childrenBuf.push_back(SubStmt);
425 
426   // This needs to be done *after* childrenBuf has been populated.
427   children = childrenBuf;
428 }
429 
430 namespace {
431 
432 /// CFGBuilder - This class implements CFG construction from an AST.
433 ///   The builder is stateful: an instance of the builder should be used to only
434 ///   construct a single CFG.
435 ///
436 ///   Example usage:
437 ///
438 ///     CFGBuilder builder;
439 ///     std::unique_ptr<CFG> cfg = builder.buildCFG(decl, stmt1);
440 ///
441 ///  CFG construction is done via a recursive walk of an AST.  We actually parse
442 ///  the AST in reverse order so that the successor of a basic block is
443 ///  constructed prior to its predecessor.  This allows us to nicely capture
444 ///  implicit fall-throughs without extra basic blocks.
445 class CFGBuilder {
446   using JumpTarget = BlockScopePosPair;
447   using JumpSource = BlockScopePosPair;
448 
449   ASTContext *Context;
450   std::unique_ptr<CFG> cfg;
451 
452   // Current block.
453   CFGBlock *Block = nullptr;
454 
455   // Block after the current block.
456   CFGBlock *Succ = nullptr;
457 
458   JumpTarget ContinueJumpTarget;
459   JumpTarget BreakJumpTarget;
460   JumpTarget SEHLeaveJumpTarget;
461   CFGBlock *SwitchTerminatedBlock = nullptr;
462   CFGBlock *DefaultCaseBlock = nullptr;
463 
464   // This can point either to a try or a __try block. The frontend forbids
465   // mixing both kinds in one function, so having one for both is enough.
466   CFGBlock *TryTerminatedBlock = nullptr;
467 
468   // Current position in local scope.
469   LocalScope::const_iterator ScopePos;
470 
471   // LabelMap records the mapping from Label expressions to their jump targets.
472   using LabelMapTy = llvm::DenseMap<LabelDecl *, JumpTarget>;
473   LabelMapTy LabelMap;
474 
475   // A list of blocks that end with a "goto" that must be backpatched to their
476   // resolved targets upon completion of CFG construction.
477   using BackpatchBlocksTy = std::vector<JumpSource>;
478   BackpatchBlocksTy BackpatchBlocks;
479 
480   // A list of labels whose address has been taken (for indirect gotos).
481   using LabelSetTy = llvm::SmallSetVector<LabelDecl *, 8>;
482   LabelSetTy AddressTakenLabels;
483 
484   // Information about the currently visited C++ object construction site.
485   // This is set in the construction trigger and read when the constructor
486   // or a function that returns an object by value is being visited.
487   llvm::DenseMap<Expr *, const ConstructionContextLayer *>
488       ConstructionContextMap;
489 
490   using DeclsWithEndedScopeSetTy = llvm::SmallSetVector<VarDecl *, 16>;
491   DeclsWithEndedScopeSetTy DeclsWithEndedScope;
492 
493   bool badCFG = false;
494   const CFG::BuildOptions &BuildOpts;
495 
496   // State to track for building switch statements.
497   bool switchExclusivelyCovered = false;
498   Expr::EvalResult *switchCond = nullptr;
499 
500   CFG::BuildOptions::ForcedBlkExprs::value_type *cachedEntry = nullptr;
501   const Stmt *lastLookup = nullptr;
502 
503   // Caches boolean evaluations of expressions to avoid multiple re-evaluations
504   // during construction of branches for chained logical operators.
505   using CachedBoolEvalsTy = llvm::DenseMap<Expr *, TryResult>;
506   CachedBoolEvalsTy CachedBoolEvals;
507 
508 public:
509   explicit CFGBuilder(ASTContext *astContext,
510                       const CFG::BuildOptions &buildOpts)
511       : Context(astContext), cfg(new CFG()), // crew a new CFG
512         ConstructionContextMap(), BuildOpts(buildOpts) {}
513 
514 
515   // buildCFG - Used by external clients to construct the CFG.
516   std::unique_ptr<CFG> buildCFG(const Decl *D, Stmt *Statement);
517 
518   bool alwaysAdd(const Stmt *stmt);
519 
520 private:
521   // Visitors to walk an AST and construct the CFG.
522   CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
523   CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
524   CFGBlock *VisitBreakStmt(BreakStmt *B);
525   CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
526   CFGBlock *VisitCaseStmt(CaseStmt *C);
527   CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
528   CFGBlock *VisitCompoundStmt(CompoundStmt *C);
529   CFGBlock *VisitConditionalOperator(AbstractConditionalOperator *C,
530                                      AddStmtChoice asc);
531   CFGBlock *VisitContinueStmt(ContinueStmt *C);
532   CFGBlock *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
533                                       AddStmtChoice asc);
534   CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
535   CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc);
536   CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc);
537   CFGBlock *VisitCXXDeleteExpr(CXXDeleteExpr *DE, AddStmtChoice asc);
538   CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S);
539   CFGBlock *VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
540                                        AddStmtChoice asc);
541   CFGBlock *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
542                                         AddStmtChoice asc);
543   CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
544   CFGBlock *VisitCXXTryStmt(CXXTryStmt *S);
545   CFGBlock *VisitDeclStmt(DeclStmt *DS);
546   CFGBlock *VisitDeclSubExpr(DeclStmt *DS);
547   CFGBlock *VisitDefaultStmt(DefaultStmt *D);
548   CFGBlock *VisitDoStmt(DoStmt *D);
549   CFGBlock *VisitExprWithCleanups(ExprWithCleanups *E, AddStmtChoice asc);
550   CFGBlock *VisitForStmt(ForStmt *F);
551   CFGBlock *VisitGotoStmt(GotoStmt *G);
552   CFGBlock *VisitIfStmt(IfStmt *I);
553   CFGBlock *VisitImplicitCastExpr(ImplicitCastExpr *E, AddStmtChoice asc);
554   CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
555   CFGBlock *VisitLabelStmt(LabelStmt *L);
556   CFGBlock *VisitBlockExpr(BlockExpr *E, AddStmtChoice asc);
557   CFGBlock *VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc);
558   CFGBlock *VisitLogicalOperator(BinaryOperator *B);
559   std::pair<CFGBlock *, CFGBlock *> VisitLogicalOperator(BinaryOperator *B,
560                                                          Stmt *Term,
561                                                          CFGBlock *TrueBlock,
562                                                          CFGBlock *FalseBlock);
563   CFGBlock *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
564                                           AddStmtChoice asc);
565   CFGBlock *VisitMemberExpr(MemberExpr *M, AddStmtChoice asc);
566   CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
567   CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
568   CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
569   CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
570   CFGBlock *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
571   CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
572   CFGBlock *VisitPseudoObjectExpr(PseudoObjectExpr *E);
573   CFGBlock *VisitReturnStmt(ReturnStmt *R);
574   CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S);
575   CFGBlock *VisitSEHFinallyStmt(SEHFinallyStmt *S);
576   CFGBlock *VisitSEHLeaveStmt(SEHLeaveStmt *S);
577   CFGBlock *VisitSEHTryStmt(SEHTryStmt *S);
578   CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
579   CFGBlock *VisitSwitchStmt(SwitchStmt *S);
580   CFGBlock *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
581                                           AddStmtChoice asc);
582   CFGBlock *VisitUnaryOperator(UnaryOperator *U, AddStmtChoice asc);
583   CFGBlock *VisitWhileStmt(WhileStmt *W);
584 
585   CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
586   CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
587   CFGBlock *VisitChildren(Stmt *S);
588   CFGBlock *VisitNoRecurse(Expr *E, AddStmtChoice asc);
589 
590   void maybeAddScopeBeginForVarDecl(CFGBlock *B, const VarDecl *VD,
591                                     const Stmt *S) {
592     if (ScopePos && (VD == ScopePos.getFirstVarInScope()))
593       appendScopeBegin(B, VD, S);
594   }
595 
596   /// When creating the CFG for temporary destructors, we want to mirror the
597   /// branch structure of the corresponding constructor calls.
598   /// Thus, while visiting a statement for temporary destructors, we keep a
599   /// context to keep track of the following information:
600   /// - whether a subexpression is executed unconditionally
601   /// - if a subexpression is executed conditionally, the first
602   ///   CXXBindTemporaryExpr we encounter in that subexpression (which
603   ///   corresponds to the last temporary destructor we have to call for this
604   ///   subexpression) and the CFG block at that point (which will become the
605   ///   successor block when inserting the decision point).
606   ///
607   /// That way, we can build the branch structure for temporary destructors as
608   /// follows:
609   /// 1. If a subexpression is executed unconditionally, we add the temporary
610   ///    destructor calls to the current block.
611   /// 2. If a subexpression is executed conditionally, when we encounter a
612   ///    CXXBindTemporaryExpr:
613   ///    a) If it is the first temporary destructor call in the subexpression,
614   ///       we remember the CXXBindTemporaryExpr and the current block in the
615   ///       TempDtorContext; we start a new block, and insert the temporary
616   ///       destructor call.
617   ///    b) Otherwise, add the temporary destructor call to the current block.
618   ///  3. When we finished visiting a conditionally executed subexpression,
619   ///     and we found at least one temporary constructor during the visitation
620   ///     (2.a has executed), we insert a decision block that uses the
621   ///     CXXBindTemporaryExpr as terminator, and branches to the current block
622   ///     if the CXXBindTemporaryExpr was marked executed, and otherwise
623   ///     branches to the stored successor.
624   struct TempDtorContext {
625     TempDtorContext() = default;
626     TempDtorContext(TryResult KnownExecuted)
627         : IsConditional(true), KnownExecuted(KnownExecuted) {}
628 
629     /// Returns whether we need to start a new branch for a temporary destructor
630     /// call. This is the case when the temporary destructor is
631     /// conditionally executed, and it is the first one we encounter while
632     /// visiting a subexpression - other temporary destructors at the same level
633     /// will be added to the same block and are executed under the same
634     /// condition.
635     bool needsTempDtorBranch() const {
636       return IsConditional && !TerminatorExpr;
637     }
638 
639     /// Remember the successor S of a temporary destructor decision branch for
640     /// the corresponding CXXBindTemporaryExpr E.
641     void setDecisionPoint(CFGBlock *S, CXXBindTemporaryExpr *E) {
642       Succ = S;
643       TerminatorExpr = E;
644     }
645 
646     const bool IsConditional = false;
647     const TryResult KnownExecuted = true;
648     CFGBlock *Succ = nullptr;
649     CXXBindTemporaryExpr *TerminatorExpr = nullptr;
650   };
651 
652   // Visitors to walk an AST and generate destructors of temporaries in
653   // full expression.
654   CFGBlock *VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
655                                    TempDtorContext &Context);
656   CFGBlock *VisitChildrenForTemporaryDtors(Stmt *E, TempDtorContext &Context);
657   CFGBlock *VisitBinaryOperatorForTemporaryDtors(BinaryOperator *E,
658                                                  TempDtorContext &Context);
659   CFGBlock *VisitCXXBindTemporaryExprForTemporaryDtors(
660       CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context);
661   CFGBlock *VisitConditionalOperatorForTemporaryDtors(
662       AbstractConditionalOperator *E, bool BindToTemporary,
663       TempDtorContext &Context);
664   void InsertTempDtorDecisionBlock(const TempDtorContext &Context,
665                                    CFGBlock *FalseSucc = nullptr);
666 
667   // NYS == Not Yet Supported
668   CFGBlock *NYS() {
669     badCFG = true;
670     return Block;
671   }
672 
673   // Remember to apply the construction context based on the current \p Layer
674   // when constructing the CFG element for \p CE.
675   void consumeConstructionContext(const ConstructionContextLayer *Layer,
676                                   Expr *E);
677 
678   // Scan \p Child statement to find constructors in it, while keeping in mind
679   // that its parent statement is providing a partial construction context
680   // described by \p Layer. If a constructor is found, it would be assigned
681   // the context based on the layer. If an additional construction context layer
682   // is found, the function recurses into that.
683   void findConstructionContexts(const ConstructionContextLayer *Layer,
684                                 Stmt *Child);
685 
686   // Unset the construction context after consuming it. This is done immediately
687   // after adding the CFGConstructor or CFGCXXRecordTypedCall element, so
688   // there's no need to do this manually in every Visit... function.
689   void cleanupConstructionContext(Expr *E);
690 
691   void autoCreateBlock() { if (!Block) Block = createBlock(); }
692   CFGBlock *createBlock(bool add_successor = true);
693   CFGBlock *createNoReturnBlock();
694 
695   CFGBlock *addStmt(Stmt *S) {
696     return Visit(S, AddStmtChoice::AlwaysAdd);
697   }
698 
699   CFGBlock *addInitializer(CXXCtorInitializer *I);
700   void addLoopExit(const Stmt *LoopStmt);
701   void addAutomaticObjDtors(LocalScope::const_iterator B,
702                             LocalScope::const_iterator E, Stmt *S);
703   void addLifetimeEnds(LocalScope::const_iterator B,
704                        LocalScope::const_iterator E, Stmt *S);
705   void addAutomaticObjHandling(LocalScope::const_iterator B,
706                                LocalScope::const_iterator E, Stmt *S);
707   void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD);
708   void addScopesEnd(LocalScope::const_iterator B, LocalScope::const_iterator E,
709                     Stmt *S);
710 
711   void getDeclsWithEndedScope(LocalScope::const_iterator B,
712                               LocalScope::const_iterator E, Stmt *S);
713 
714   // Local scopes creation.
715   LocalScope* createOrReuseLocalScope(LocalScope* Scope);
716 
717   void addLocalScopeForStmt(Stmt *S);
718   LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS,
719                                        LocalScope* Scope = nullptr);
720   LocalScope* addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope = nullptr);
721 
722   void addLocalScopeAndDtors(Stmt *S);
723 
724   // Interface to CFGBlock - adding CFGElements.
725 
726   void appendStmt(CFGBlock *B, const Stmt *S) {
727     if (alwaysAdd(S) && cachedEntry)
728       cachedEntry->second = B;
729 
730     // All block-level expressions should have already been IgnoreParens()ed.
731     assert(!isa<Expr>(S) || cast<Expr>(S)->IgnoreParens() == S);
732     B->appendStmt(const_cast<Stmt*>(S), cfg->getBumpVectorContext());
733   }
734 
735   void appendConstructor(CFGBlock *B, CXXConstructExpr *CE) {
736     if (BuildOpts.AddRichCXXConstructors) {
737       if (const ConstructionContextLayer *Layer =
738               ConstructionContextMap.lookup(CE)) {
739         const ConstructionContext *CC =
740             ConstructionContext::createFromLayers(cfg->getBumpVectorContext(),
741                                                   Layer);
742         B->appendConstructor(CE, CC, cfg->getBumpVectorContext());
743         cleanupConstructionContext(CE);
744         return;
745       }
746     }
747 
748     // No valid construction context found. Fall back to statement.
749     B->appendStmt(CE, cfg->getBumpVectorContext());
750   }
751 
752   void appendCall(CFGBlock *B, CallExpr *CE) {
753     if (BuildOpts.AddRichCXXConstructors) {
754       if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(CE, *Context)) {
755         if (const ConstructionContextLayer *Layer =
756                 ConstructionContextMap.lookup(CE)) {
757           const ConstructionContext *CC =
758               ConstructionContext::createFromLayers(cfg->getBumpVectorContext(),
759                                                     Layer);
760           B->appendCXXRecordTypedCall(
761               CE, cast<TemporaryObjectConstructionContext>(CC),
762               cfg->getBumpVectorContext());
763           cleanupConstructionContext(CE);
764           return;
765         }
766       }
767     }
768 
769     // No valid construction context found. Fall back to statement.
770     B->appendStmt(CE, cfg->getBumpVectorContext());
771   }
772 
773   void appendInitializer(CFGBlock *B, CXXCtorInitializer *I) {
774     B->appendInitializer(I, cfg->getBumpVectorContext());
775   }
776 
777   void appendNewAllocator(CFGBlock *B, CXXNewExpr *NE) {
778     B->appendNewAllocator(NE, cfg->getBumpVectorContext());
779   }
780 
781   void appendBaseDtor(CFGBlock *B, const CXXBaseSpecifier *BS) {
782     B->appendBaseDtor(BS, cfg->getBumpVectorContext());
783   }
784 
785   void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
786     B->appendMemberDtor(FD, cfg->getBumpVectorContext());
787   }
788 
789   void appendTemporaryDtor(CFGBlock *B, CXXBindTemporaryExpr *E) {
790     B->appendTemporaryDtor(E, cfg->getBumpVectorContext());
791   }
792 
793   void appendAutomaticObjDtor(CFGBlock *B, VarDecl *VD, Stmt *S) {
794     B->appendAutomaticObjDtor(VD, S, cfg->getBumpVectorContext());
795   }
796 
797   void appendLifetimeEnds(CFGBlock *B, VarDecl *VD, Stmt *S) {
798     B->appendLifetimeEnds(VD, S, cfg->getBumpVectorContext());
799   }
800 
801   void appendLoopExit(CFGBlock *B, const Stmt *LoopStmt) {
802     B->appendLoopExit(LoopStmt, cfg->getBumpVectorContext());
803   }
804 
805   void appendDeleteDtor(CFGBlock *B, CXXRecordDecl *RD, CXXDeleteExpr *DE) {
806     B->appendDeleteDtor(RD, DE, cfg->getBumpVectorContext());
807   }
808 
809   void prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
810       LocalScope::const_iterator B, LocalScope::const_iterator E);
811 
812   void prependAutomaticObjLifetimeWithTerminator(CFGBlock *Blk,
813                                                  LocalScope::const_iterator B,
814                                                  LocalScope::const_iterator E);
815 
816   const VarDecl *
817   prependAutomaticObjScopeEndWithTerminator(CFGBlock *Blk,
818                                             LocalScope::const_iterator B,
819                                             LocalScope::const_iterator E);
820 
821   void addSuccessor(CFGBlock *B, CFGBlock *S, bool IsReachable = true) {
822     B->addSuccessor(CFGBlock::AdjacentBlock(S, IsReachable),
823                     cfg->getBumpVectorContext());
824   }
825 
826   /// Add a reachable successor to a block, with the alternate variant that is
827   /// unreachable.
828   void addSuccessor(CFGBlock *B, CFGBlock *ReachableBlock, CFGBlock *AltBlock) {
829     B->addSuccessor(CFGBlock::AdjacentBlock(ReachableBlock, AltBlock),
830                     cfg->getBumpVectorContext());
831   }
832 
833   void appendScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
834     if (BuildOpts.AddScopes)
835       B->appendScopeBegin(VD, S, cfg->getBumpVectorContext());
836   }
837 
838   void prependScopeBegin(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
839     if (BuildOpts.AddScopes)
840       B->prependScopeBegin(VD, S, cfg->getBumpVectorContext());
841   }
842 
843   void appendScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
844     if (BuildOpts.AddScopes)
845       B->appendScopeEnd(VD, S, cfg->getBumpVectorContext());
846   }
847 
848   void prependScopeEnd(CFGBlock *B, const VarDecl *VD, const Stmt *S) {
849     if (BuildOpts.AddScopes)
850       B->prependScopeEnd(VD, S, cfg->getBumpVectorContext());
851   }
852 
853   /// \brief Find a relational comparison with an expression evaluating to a
854   /// boolean and a constant other than 0 and 1.
855   /// e.g. if ((x < y) == 10)
856   TryResult checkIncorrectRelationalOperator(const BinaryOperator *B) {
857     const Expr *LHSExpr = B->getLHS()->IgnoreParens();
858     const Expr *RHSExpr = B->getRHS()->IgnoreParens();
859 
860     const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
861     const Expr *BoolExpr = RHSExpr;
862     bool IntFirst = true;
863     if (!IntLiteral) {
864       IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
865       BoolExpr = LHSExpr;
866       IntFirst = false;
867     }
868 
869     if (!IntLiteral || !BoolExpr->isKnownToHaveBooleanValue())
870       return TryResult();
871 
872     llvm::APInt IntValue = IntLiteral->getValue();
873     if ((IntValue == 1) || (IntValue == 0))
874       return TryResult();
875 
876     bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() ||
877                      !IntValue.isNegative();
878 
879     BinaryOperatorKind Bok = B->getOpcode();
880     if (Bok == BO_GT || Bok == BO_GE) {
881       // Always true for 10 > bool and bool > -1
882       // Always false for -1 > bool and bool > 10
883       return TryResult(IntFirst == IntLarger);
884     } else {
885       // Always true for -1 < bool and bool < 10
886       // Always false for 10 < bool and bool < -1
887       return TryResult(IntFirst != IntLarger);
888     }
889   }
890 
891   /// Find an incorrect equality comparison. Either with an expression
892   /// evaluating to a boolean and a constant other than 0 and 1.
893   /// e.g. if (!x == 10) or a bitwise and/or operation that always evaluates to
894   /// true/false e.q. (x & 8) == 4.
895   TryResult checkIncorrectEqualityOperator(const BinaryOperator *B) {
896     const Expr *LHSExpr = B->getLHS()->IgnoreParens();
897     const Expr *RHSExpr = B->getRHS()->IgnoreParens();
898 
899     const IntegerLiteral *IntLiteral = dyn_cast<IntegerLiteral>(LHSExpr);
900     const Expr *BoolExpr = RHSExpr;
901 
902     if (!IntLiteral) {
903       IntLiteral = dyn_cast<IntegerLiteral>(RHSExpr);
904       BoolExpr = LHSExpr;
905     }
906 
907     if (!IntLiteral)
908       return TryResult();
909 
910     const BinaryOperator *BitOp = dyn_cast<BinaryOperator>(BoolExpr);
911     if (BitOp && (BitOp->getOpcode() == BO_And ||
912                   BitOp->getOpcode() == BO_Or)) {
913       const Expr *LHSExpr2 = BitOp->getLHS()->IgnoreParens();
914       const Expr *RHSExpr2 = BitOp->getRHS()->IgnoreParens();
915 
916       const IntegerLiteral *IntLiteral2 = dyn_cast<IntegerLiteral>(LHSExpr2);
917 
918       if (!IntLiteral2)
919         IntLiteral2 = dyn_cast<IntegerLiteral>(RHSExpr2);
920 
921       if (!IntLiteral2)
922         return TryResult();
923 
924       llvm::APInt L1 = IntLiteral->getValue();
925       llvm::APInt L2 = IntLiteral2->getValue();
926       if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) ||
927           (BitOp->getOpcode() == BO_Or  && (L2 | L1) != L1)) {
928         if (BuildOpts.Observer)
929           BuildOpts.Observer->compareBitwiseEquality(B,
930                                                      B->getOpcode() != BO_EQ);
931         TryResult(B->getOpcode() != BO_EQ);
932       }
933     } else if (BoolExpr->isKnownToHaveBooleanValue()) {
934       llvm::APInt IntValue = IntLiteral->getValue();
935       if ((IntValue == 1) || (IntValue == 0)) {
936         return TryResult();
937       }
938       return TryResult(B->getOpcode() != BO_EQ);
939     }
940 
941     return TryResult();
942   }
943 
944   TryResult analyzeLogicOperatorCondition(BinaryOperatorKind Relation,
945                                           const llvm::APSInt &Value1,
946                                           const llvm::APSInt &Value2) {
947     assert(Value1.isSigned() == Value2.isSigned());
948     switch (Relation) {
949       default:
950         return TryResult();
951       case BO_EQ:
952         return TryResult(Value1 == Value2);
953       case BO_NE:
954         return TryResult(Value1 != Value2);
955       case BO_LT:
956         return TryResult(Value1 <  Value2);
957       case BO_LE:
958         return TryResult(Value1 <= Value2);
959       case BO_GT:
960         return TryResult(Value1 >  Value2);
961       case BO_GE:
962         return TryResult(Value1 >= Value2);
963     }
964   }
965 
966   /// \brief Find a pair of comparison expressions with or without parentheses
967   /// with a shared variable and constants and a logical operator between them
968   /// that always evaluates to either true or false.
969   /// e.g. if (x != 3 || x != 4)
970   TryResult checkIncorrectLogicOperator(const BinaryOperator *B) {
971     assert(B->isLogicalOp());
972     const BinaryOperator *LHS =
973         dyn_cast<BinaryOperator>(B->getLHS()->IgnoreParens());
974     const BinaryOperator *RHS =
975         dyn_cast<BinaryOperator>(B->getRHS()->IgnoreParens());
976     if (!LHS || !RHS)
977       return {};
978 
979     if (!LHS->isComparisonOp() || !RHS->isComparisonOp())
980       return {};
981 
982     const DeclRefExpr *Decl1;
983     const Expr *Expr1;
984     BinaryOperatorKind BO1;
985     std::tie(Decl1, BO1, Expr1) = tryNormalizeBinaryOperator(LHS);
986 
987     if (!Decl1 || !Expr1)
988       return {};
989 
990     const DeclRefExpr *Decl2;
991     const Expr *Expr2;
992     BinaryOperatorKind BO2;
993     std::tie(Decl2, BO2, Expr2) = tryNormalizeBinaryOperator(RHS);
994 
995     if (!Decl2 || !Expr2)
996       return {};
997 
998     // Check that it is the same variable on both sides.
999     if (Decl1->getDecl() != Decl2->getDecl())
1000       return {};
1001 
1002     // Make sure the user's intent is clear (e.g. they're comparing against two
1003     // int literals, or two things from the same enum)
1004     if (!areExprTypesCompatible(Expr1, Expr2))
1005       return {};
1006 
1007     llvm::APSInt L1, L2;
1008 
1009     if (!Expr1->EvaluateAsInt(L1, *Context) ||
1010         !Expr2->EvaluateAsInt(L2, *Context))
1011       return {};
1012 
1013     // Can't compare signed with unsigned or with different bit width.
1014     if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth())
1015       return {};
1016 
1017     // Values that will be used to determine if result of logical
1018     // operator is always true/false
1019     const llvm::APSInt Values[] = {
1020       // Value less than both Value1 and Value2
1021       llvm::APSInt::getMinValue(L1.getBitWidth(), L1.isUnsigned()),
1022       // L1
1023       L1,
1024       // Value between Value1 and Value2
1025       ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1),
1026                               L1.isUnsigned()),
1027       // L2
1028       L2,
1029       // Value greater than both Value1 and Value2
1030       llvm::APSInt::getMaxValue(L1.getBitWidth(), L1.isUnsigned()),
1031     };
1032 
1033     // Check whether expression is always true/false by evaluating the following
1034     // * variable x is less than the smallest literal.
1035     // * variable x is equal to the smallest literal.
1036     // * Variable x is between smallest and largest literal.
1037     // * Variable x is equal to the largest literal.
1038     // * Variable x is greater than largest literal.
1039     bool AlwaysTrue = true, AlwaysFalse = true;
1040     for (const llvm::APSInt &Value : Values) {
1041       TryResult Res1, Res2;
1042       Res1 = analyzeLogicOperatorCondition(BO1, Value, L1);
1043       Res2 = analyzeLogicOperatorCondition(BO2, Value, L2);
1044 
1045       if (!Res1.isKnown() || !Res2.isKnown())
1046         return {};
1047 
1048       if (B->getOpcode() == BO_LAnd) {
1049         AlwaysTrue &= (Res1.isTrue() && Res2.isTrue());
1050         AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue());
1051       } else {
1052         AlwaysTrue &= (Res1.isTrue() || Res2.isTrue());
1053         AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue());
1054       }
1055     }
1056 
1057     if (AlwaysTrue || AlwaysFalse) {
1058       if (BuildOpts.Observer)
1059         BuildOpts.Observer->compareAlwaysTrue(B, AlwaysTrue);
1060       return TryResult(AlwaysTrue);
1061     }
1062     return {};
1063   }
1064 
1065   /// Try and evaluate an expression to an integer constant.
1066   bool tryEvaluate(Expr *S, Expr::EvalResult &outResult) {
1067     if (!BuildOpts.PruneTriviallyFalseEdges)
1068       return false;
1069     return !S->isTypeDependent() &&
1070            !S->isValueDependent() &&
1071            S->EvaluateAsRValue(outResult, *Context);
1072   }
1073 
1074   /// tryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
1075   /// if we can evaluate to a known value, otherwise return -1.
1076   TryResult tryEvaluateBool(Expr *S) {
1077     if (!BuildOpts.PruneTriviallyFalseEdges ||
1078         S->isTypeDependent() || S->isValueDependent())
1079       return {};
1080 
1081     if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(S)) {
1082       if (Bop->isLogicalOp()) {
1083         // Check the cache first.
1084         CachedBoolEvalsTy::iterator I = CachedBoolEvals.find(S);
1085         if (I != CachedBoolEvals.end())
1086           return I->second; // already in map;
1087 
1088         // Retrieve result at first, or the map might be updated.
1089         TryResult Result = evaluateAsBooleanConditionNoCache(S);
1090         CachedBoolEvals[S] = Result; // update or insert
1091         return Result;
1092       }
1093       else {
1094         switch (Bop->getOpcode()) {
1095           default: break;
1096           // For 'x & 0' and 'x * 0', we can determine that
1097           // the value is always false.
1098           case BO_Mul:
1099           case BO_And: {
1100             // If either operand is zero, we know the value
1101             // must be false.
1102             llvm::APSInt IntVal;
1103             if (Bop->getLHS()->EvaluateAsInt(IntVal, *Context)) {
1104               if (!IntVal.getBoolValue()) {
1105                 return TryResult(false);
1106               }
1107             }
1108             if (Bop->getRHS()->EvaluateAsInt(IntVal, *Context)) {
1109               if (!IntVal.getBoolValue()) {
1110                 return TryResult(false);
1111               }
1112             }
1113           }
1114           break;
1115         }
1116       }
1117     }
1118 
1119     return evaluateAsBooleanConditionNoCache(S);
1120   }
1121 
1122   /// \brief Evaluate as boolean \param E without using the cache.
1123   TryResult evaluateAsBooleanConditionNoCache(Expr *E) {
1124     if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(E)) {
1125       if (Bop->isLogicalOp()) {
1126         TryResult LHS = tryEvaluateBool(Bop->getLHS());
1127         if (LHS.isKnown()) {
1128           // We were able to evaluate the LHS, see if we can get away with not
1129           // evaluating the RHS: 0 && X -> 0, 1 || X -> 1
1130           if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr))
1131             return LHS.isTrue();
1132 
1133           TryResult RHS = tryEvaluateBool(Bop->getRHS());
1134           if (RHS.isKnown()) {
1135             if (Bop->getOpcode() == BO_LOr)
1136               return LHS.isTrue() || RHS.isTrue();
1137             else
1138               return LHS.isTrue() && RHS.isTrue();
1139           }
1140         } else {
1141           TryResult RHS = tryEvaluateBool(Bop->getRHS());
1142           if (RHS.isKnown()) {
1143             // We can't evaluate the LHS; however, sometimes the result
1144             // is determined by the RHS: X && 0 -> 0, X || 1 -> 1.
1145             if (RHS.isTrue() == (Bop->getOpcode() == BO_LOr))
1146               return RHS.isTrue();
1147           } else {
1148             TryResult BopRes = checkIncorrectLogicOperator(Bop);
1149             if (BopRes.isKnown())
1150               return BopRes.isTrue();
1151           }
1152         }
1153 
1154         return {};
1155       } else if (Bop->isEqualityOp()) {
1156           TryResult BopRes = checkIncorrectEqualityOperator(Bop);
1157           if (BopRes.isKnown())
1158             return BopRes.isTrue();
1159       } else if (Bop->isRelationalOp()) {
1160         TryResult BopRes = checkIncorrectRelationalOperator(Bop);
1161         if (BopRes.isKnown())
1162           return BopRes.isTrue();
1163       }
1164     }
1165 
1166     bool Result;
1167     if (E->EvaluateAsBooleanCondition(Result, *Context))
1168       return Result;
1169 
1170     return {};
1171   }
1172 
1173   bool hasTrivialDestructor(VarDecl *VD);
1174 };
1175 
1176 } // namespace
1177 
1178 inline bool AddStmtChoice::alwaysAdd(CFGBuilder &builder,
1179                                      const Stmt *stmt) const {
1180   return builder.alwaysAdd(stmt) || kind == AlwaysAdd;
1181 }
1182 
1183 bool CFGBuilder::alwaysAdd(const Stmt *stmt) {
1184   bool shouldAdd = BuildOpts.alwaysAdd(stmt);
1185 
1186   if (!BuildOpts.forcedBlkExprs)
1187     return shouldAdd;
1188 
1189   if (lastLookup == stmt) {
1190     if (cachedEntry) {
1191       assert(cachedEntry->first == stmt);
1192       return true;
1193     }
1194     return shouldAdd;
1195   }
1196 
1197   lastLookup = stmt;
1198 
1199   // Perform the lookup!
1200   CFG::BuildOptions::ForcedBlkExprs *fb = *BuildOpts.forcedBlkExprs;
1201 
1202   if (!fb) {
1203     // No need to update 'cachedEntry', since it will always be null.
1204     assert(!cachedEntry);
1205     return shouldAdd;
1206   }
1207 
1208   CFG::BuildOptions::ForcedBlkExprs::iterator itr = fb->find(stmt);
1209   if (itr == fb->end()) {
1210     cachedEntry = nullptr;
1211     return shouldAdd;
1212   }
1213 
1214   cachedEntry = &*itr;
1215   return true;
1216 }
1217 
1218 // FIXME: Add support for dependent-sized array types in C++?
1219 // Does it even make sense to build a CFG for an uninstantiated template?
1220 static const VariableArrayType *FindVA(const Type *t) {
1221   while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {
1222     if (const VariableArrayType *vat = dyn_cast<VariableArrayType>(vt))
1223       if (vat->getSizeExpr())
1224         return vat;
1225 
1226     t = vt->getElementType().getTypePtr();
1227   }
1228 
1229   return nullptr;
1230 }
1231 
1232 void CFGBuilder::consumeConstructionContext(
1233     const ConstructionContextLayer *Layer, Expr *E) {
1234   if (const ConstructionContextLayer *PreviouslyStoredLayer =
1235           ConstructionContextMap.lookup(E)) {
1236     (void)PreviouslyStoredLayer;
1237     // We might have visited this child when we were finding construction
1238     // contexts within its parents.
1239     assert(PreviouslyStoredLayer->isStrictlyMoreSpecificThan(Layer) &&
1240            "Already within a different construction context!");
1241   } else {
1242     ConstructionContextMap[E] = Layer;
1243   }
1244 }
1245 
1246 void CFGBuilder::findConstructionContexts(
1247     const ConstructionContextLayer *Layer, Stmt *Child) {
1248   if (!BuildOpts.AddRichCXXConstructors)
1249     return;
1250 
1251   if (!Child)
1252     return;
1253 
1254   switch(Child->getStmtClass()) {
1255   case Stmt::CXXConstructExprClass:
1256   case Stmt::CXXTemporaryObjectExprClass: {
1257     consumeConstructionContext(Layer, cast<CXXConstructExpr>(Child));
1258     break;
1259   }
1260   // FIXME: This, like the main visit, doesn't support CUDAKernelCallExpr.
1261   // FIXME: An isa<> would look much better but this whole switch is a
1262   // workaround for an internal compiler error in MSVC 2015 (see r326021).
1263   case Stmt::CallExprClass:
1264   case Stmt::CXXMemberCallExprClass:
1265   case Stmt::CXXOperatorCallExprClass:
1266   case Stmt::UserDefinedLiteralClass: {
1267     auto *CE = cast<CallExpr>(Child);
1268     if (CFGCXXRecordTypedCall::isCXXRecordTypedCall(CE, *Context))
1269       consumeConstructionContext(Layer, CE);
1270     break;
1271   }
1272   case Stmt::ExprWithCleanupsClass: {
1273     auto *Cleanups = cast<ExprWithCleanups>(Child);
1274     findConstructionContexts(Layer, Cleanups->getSubExpr());
1275     break;
1276   }
1277   case Stmt::CXXFunctionalCastExprClass: {
1278     auto *Cast = cast<CXXFunctionalCastExpr>(Child);
1279     findConstructionContexts(Layer, Cast->getSubExpr());
1280     break;
1281   }
1282   case Stmt::ImplicitCastExprClass: {
1283     auto *Cast = cast<ImplicitCastExpr>(Child);
1284     // TODO: We need to support CK_ConstructorConversion, maybe other kinds?
1285     switch (Cast->getCastKind()) {
1286     case CK_NoOp:
1287     case CK_ConstructorConversion:
1288       findConstructionContexts(Layer, Cast->getSubExpr());
1289     default:
1290       break;
1291     }
1292     break;
1293   }
1294   case Stmt::CXXBindTemporaryExprClass: {
1295     auto *BTE = cast<CXXBindTemporaryExpr>(Child);
1296     findConstructionContexts(
1297         ConstructionContextLayer::create(cfg->getBumpVectorContext(),
1298                                          BTE, Layer),
1299         BTE->getSubExpr());
1300     break;
1301   }
1302   case Stmt::ConditionalOperatorClass: {
1303     auto *CO = cast<ConditionalOperator>(Child);
1304     findConstructionContexts(Layer, CO->getLHS());
1305     findConstructionContexts(Layer, CO->getRHS());
1306     break;
1307   }
1308   default:
1309     break;
1310   }
1311 }
1312 
1313 void CFGBuilder::cleanupConstructionContext(Expr *E) {
1314   assert(BuildOpts.AddRichCXXConstructors &&
1315          "We should not be managing construction contexts!");
1316   assert(ConstructionContextMap.count(E) &&
1317          "Cannot exit construction context without the context!");
1318   ConstructionContextMap.erase(E);
1319 }
1320 
1321 
1322 /// BuildCFG - Constructs a CFG from an AST (a Stmt*).  The AST can represent an
1323 ///  arbitrary statement.  Examples include a single expression or a function
1324 ///  body (compound statement).  The ownership of the returned CFG is
1325 ///  transferred to the caller.  If CFG construction fails, this method returns
1326 ///  NULL.
1327 std::unique_ptr<CFG> CFGBuilder::buildCFG(const Decl *D, Stmt *Statement) {
1328   assert(cfg.get());
1329   if (!Statement)
1330     return nullptr;
1331 
1332   // Create an empty block that will serve as the exit block for the CFG.  Since
1333   // this is the first block added to the CFG, it will be implicitly registered
1334   // as the exit block.
1335   Succ = createBlock();
1336   assert(Succ == &cfg->getExit());
1337   Block = nullptr;  // the EXIT block is empty.  Create all other blocks lazily.
1338 
1339   assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1340          "AddImplicitDtors and AddLifetime cannot be used at the same time");
1341 
1342   if (BuildOpts.AddImplicitDtors)
1343     if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D))
1344       addImplicitDtorsForDestructor(DD);
1345 
1346   // Visit the statements and create the CFG.
1347   CFGBlock *B = addStmt(Statement);
1348 
1349   if (badCFG)
1350     return nullptr;
1351 
1352   // For C++ constructor add initializers to CFG.
1353   if (const CXXConstructorDecl *CD = dyn_cast_or_null<CXXConstructorDecl>(D)) {
1354     for (auto *I : llvm::reverse(CD->inits())) {
1355       B = addInitializer(I);
1356       if (badCFG)
1357         return nullptr;
1358     }
1359   }
1360 
1361   if (B)
1362     Succ = B;
1363 
1364   // Backpatch the gotos whose label -> block mappings we didn't know when we
1365   // encountered them.
1366   for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
1367                                    E = BackpatchBlocks.end(); I != E; ++I ) {
1368 
1369     CFGBlock *B = I->block;
1370     const GotoStmt *G = cast<GotoStmt>(B->getTerminator());
1371     LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
1372 
1373     // If there is no target for the goto, then we are looking at an
1374     // incomplete AST.  Handle this by not registering a successor.
1375     if (LI == LabelMap.end()) continue;
1376 
1377     JumpTarget JT = LI->second;
1378     prependAutomaticObjLifetimeWithTerminator(B, I->scopePosition,
1379                                               JT.scopePosition);
1380     prependAutomaticObjDtorsWithTerminator(B, I->scopePosition,
1381                                            JT.scopePosition);
1382     const VarDecl *VD = prependAutomaticObjScopeEndWithTerminator(
1383         B, I->scopePosition, JT.scopePosition);
1384     appendScopeBegin(JT.block, VD, G);
1385     addSuccessor(B, JT.block);
1386   }
1387 
1388   // Add successors to the Indirect Goto Dispatch block (if we have one).
1389   if (CFGBlock *B = cfg->getIndirectGotoBlock())
1390     for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
1391                               E = AddressTakenLabels.end(); I != E; ++I ) {
1392       // Lookup the target block.
1393       LabelMapTy::iterator LI = LabelMap.find(*I);
1394 
1395       // If there is no target block that contains label, then we are looking
1396       // at an incomplete AST.  Handle this by not registering a successor.
1397       if (LI == LabelMap.end()) continue;
1398 
1399       addSuccessor(B, LI->second.block);
1400     }
1401 
1402   // Create an empty entry block that has no predecessors.
1403   cfg->setEntry(createBlock());
1404 
1405   if (BuildOpts.AddRichCXXConstructors)
1406     assert(ConstructionContextMap.empty() &&
1407            "Not all construction contexts were cleaned up!");
1408 
1409   return std::move(cfg);
1410 }
1411 
1412 /// createBlock - Used to lazily create blocks that are connected
1413 ///  to the current (global) succcessor.
1414 CFGBlock *CFGBuilder::createBlock(bool add_successor) {
1415   CFGBlock *B = cfg->createBlock();
1416   if (add_successor && Succ)
1417     addSuccessor(B, Succ);
1418   return B;
1419 }
1420 
1421 /// createNoReturnBlock - Used to create a block is a 'noreturn' point in the
1422 /// CFG. It is *not* connected to the current (global) successor, and instead
1423 /// directly tied to the exit block in order to be reachable.
1424 CFGBlock *CFGBuilder::createNoReturnBlock() {
1425   CFGBlock *B = createBlock(false);
1426   B->setHasNoReturnElement();
1427   addSuccessor(B, &cfg->getExit(), Succ);
1428   return B;
1429 }
1430 
1431 /// addInitializer - Add C++ base or member initializer element to CFG.
1432 CFGBlock *CFGBuilder::addInitializer(CXXCtorInitializer *I) {
1433   if (!BuildOpts.AddInitializers)
1434     return Block;
1435 
1436   bool HasTemporaries = false;
1437 
1438   // Destructors of temporaries in initialization expression should be called
1439   // after initialization finishes.
1440   Expr *Init = I->getInit();
1441   if (Init) {
1442     HasTemporaries = isa<ExprWithCleanups>(Init);
1443 
1444     if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
1445       // Generate destructors for temporaries in initialization expression.
1446       TempDtorContext Context;
1447       VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
1448                              /*BindToTemporary=*/false, Context);
1449     }
1450   }
1451 
1452   autoCreateBlock();
1453   appendInitializer(Block, I);
1454 
1455   if (Init) {
1456     findConstructionContexts(
1457         ConstructionContextLayer::create(cfg->getBumpVectorContext(), I),
1458         Init);
1459 
1460     if (HasTemporaries) {
1461       // For expression with temporaries go directly to subexpression to omit
1462       // generating destructors for the second time.
1463       return Visit(cast<ExprWithCleanups>(Init)->getSubExpr());
1464     }
1465     if (BuildOpts.AddCXXDefaultInitExprInCtors) {
1466       if (CXXDefaultInitExpr *Default = dyn_cast<CXXDefaultInitExpr>(Init)) {
1467         // In general, appending the expression wrapped by a CXXDefaultInitExpr
1468         // may cause the same Expr to appear more than once in the CFG. Doing it
1469         // here is safe because there's only one initializer per field.
1470         autoCreateBlock();
1471         appendStmt(Block, Default);
1472         if (Stmt *Child = Default->getExpr())
1473           if (CFGBlock *R = Visit(Child))
1474             Block = R;
1475         return Block;
1476       }
1477     }
1478     return Visit(Init);
1479   }
1480 
1481   return Block;
1482 }
1483 
1484 /// \brief Retrieve the type of the temporary object whose lifetime was
1485 /// extended by a local reference with the given initializer.
1486 static QualType getReferenceInitTemporaryType(ASTContext &Context,
1487                                               const Expr *Init,
1488                                               bool *FoundMTE = nullptr) {
1489   while (true) {
1490     // Skip parentheses.
1491     Init = Init->IgnoreParens();
1492 
1493     // Skip through cleanups.
1494     if (const ExprWithCleanups *EWC = dyn_cast<ExprWithCleanups>(Init)) {
1495       Init = EWC->getSubExpr();
1496       continue;
1497     }
1498 
1499     // Skip through the temporary-materialization expression.
1500     if (const MaterializeTemporaryExpr *MTE
1501           = dyn_cast<MaterializeTemporaryExpr>(Init)) {
1502       Init = MTE->GetTemporaryExpr();
1503       if (FoundMTE)
1504         *FoundMTE = true;
1505       continue;
1506     }
1507 
1508     // Skip derived-to-base and no-op casts.
1509     if (const CastExpr *CE = dyn_cast<CastExpr>(Init)) {
1510       if ((CE->getCastKind() == CK_DerivedToBase ||
1511            CE->getCastKind() == CK_UncheckedDerivedToBase ||
1512            CE->getCastKind() == CK_NoOp) &&
1513           Init->getType()->isRecordType()) {
1514         Init = CE->getSubExpr();
1515         continue;
1516       }
1517     }
1518 
1519     // Skip member accesses into rvalues.
1520     if (const MemberExpr *ME = dyn_cast<MemberExpr>(Init)) {
1521       if (!ME->isArrow() && ME->getBase()->isRValue()) {
1522         Init = ME->getBase();
1523         continue;
1524       }
1525     }
1526 
1527     break;
1528   }
1529 
1530   return Init->getType();
1531 }
1532 
1533 // TODO: Support adding LoopExit element to the CFG in case where the loop is
1534 // ended by ReturnStmt, GotoStmt or ThrowExpr.
1535 void CFGBuilder::addLoopExit(const Stmt *LoopStmt){
1536   if(!BuildOpts.AddLoopExit)
1537     return;
1538   autoCreateBlock();
1539   appendLoopExit(Block, LoopStmt);
1540 }
1541 
1542 void CFGBuilder::getDeclsWithEndedScope(LocalScope::const_iterator B,
1543                                         LocalScope::const_iterator E, Stmt *S) {
1544   if (!BuildOpts.AddScopes)
1545     return;
1546 
1547   if (B == E)
1548     return;
1549 
1550   // To go from B to E, one first goes up the scopes from B to P
1551   // then sideways in one scope from P to P' and then down
1552   // the scopes from P' to E.
1553   // The lifetime of all objects between B and P end.
1554   LocalScope::const_iterator P = B.shared_parent(E);
1555   int Dist = B.distance(P);
1556   if (Dist <= 0)
1557     return;
1558 
1559   for (LocalScope::const_iterator I = B; I != P; ++I)
1560     if (I.pointsToFirstDeclaredVar())
1561       DeclsWithEndedScope.insert(*I);
1562 }
1563 
1564 void CFGBuilder::addAutomaticObjHandling(LocalScope::const_iterator B,
1565                                          LocalScope::const_iterator E,
1566                                          Stmt *S) {
1567   getDeclsWithEndedScope(B, E, S);
1568   if (BuildOpts.AddScopes)
1569     addScopesEnd(B, E, S);
1570   if (BuildOpts.AddImplicitDtors)
1571     addAutomaticObjDtors(B, E, S);
1572   if (BuildOpts.AddLifetime)
1573     addLifetimeEnds(B, E, S);
1574 }
1575 
1576 /// Add to current block automatic objects that leave the scope.
1577 void CFGBuilder::addLifetimeEnds(LocalScope::const_iterator B,
1578                                  LocalScope::const_iterator E, Stmt *S) {
1579   if (!BuildOpts.AddLifetime)
1580     return;
1581 
1582   if (B == E)
1583     return;
1584 
1585   // To go from B to E, one first goes up the scopes from B to P
1586   // then sideways in one scope from P to P' and then down
1587   // the scopes from P' to E.
1588   // The lifetime of all objects between B and P end.
1589   LocalScope::const_iterator P = B.shared_parent(E);
1590   int dist = B.distance(P);
1591   if (dist <= 0)
1592     return;
1593 
1594   // We need to perform the scope leaving in reverse order
1595   SmallVector<VarDecl *, 10> DeclsTrivial;
1596   SmallVector<VarDecl *, 10> DeclsNonTrivial;
1597   DeclsTrivial.reserve(dist);
1598   DeclsNonTrivial.reserve(dist);
1599 
1600   for (LocalScope::const_iterator I = B; I != P; ++I)
1601     if (hasTrivialDestructor(*I))
1602       DeclsTrivial.push_back(*I);
1603     else
1604       DeclsNonTrivial.push_back(*I);
1605 
1606   autoCreateBlock();
1607   // object with trivial destructor end their lifetime last (when storage
1608   // duration ends)
1609   for (SmallVectorImpl<VarDecl *>::reverse_iterator I = DeclsTrivial.rbegin(),
1610                                                     E = DeclsTrivial.rend();
1611        I != E; ++I)
1612     appendLifetimeEnds(Block, *I, S);
1613 
1614   for (SmallVectorImpl<VarDecl *>::reverse_iterator
1615            I = DeclsNonTrivial.rbegin(),
1616            E = DeclsNonTrivial.rend();
1617        I != E; ++I)
1618     appendLifetimeEnds(Block, *I, S);
1619 }
1620 
1621 /// Add to current block markers for ending scopes.
1622 void CFGBuilder::addScopesEnd(LocalScope::const_iterator B,
1623                               LocalScope::const_iterator E, Stmt *S) {
1624   // If implicit destructors are enabled, we'll add scope ends in
1625   // addAutomaticObjDtors.
1626   if (BuildOpts.AddImplicitDtors)
1627     return;
1628 
1629   autoCreateBlock();
1630 
1631   for (auto I = DeclsWithEndedScope.rbegin(), E = DeclsWithEndedScope.rend();
1632        I != E; ++I)
1633     appendScopeEnd(Block, *I, S);
1634 
1635   return;
1636 }
1637 
1638 /// addAutomaticObjDtors - Add to current block automatic objects destructors
1639 /// for objects in range of local scope positions. Use S as trigger statement
1640 /// for destructors.
1641 void CFGBuilder::addAutomaticObjDtors(LocalScope::const_iterator B,
1642                                       LocalScope::const_iterator E, Stmt *S) {
1643   if (!BuildOpts.AddImplicitDtors)
1644     return;
1645 
1646   if (B == E)
1647     return;
1648 
1649   // We need to append the destructors in reverse order, but any one of them
1650   // may be a no-return destructor which changes the CFG. As a result, buffer
1651   // this sequence up and replay them in reverse order when appending onto the
1652   // CFGBlock(s).
1653   SmallVector<VarDecl*, 10> Decls;
1654   Decls.reserve(B.distance(E));
1655   for (LocalScope::const_iterator I = B; I != E; ++I)
1656     Decls.push_back(*I);
1657 
1658   for (SmallVectorImpl<VarDecl*>::reverse_iterator I = Decls.rbegin(),
1659                                                    E = Decls.rend();
1660        I != E; ++I) {
1661     if (hasTrivialDestructor(*I)) {
1662       // If AddScopes is enabled and *I is a first variable in a scope, add a
1663       // ScopeEnd marker in a Block.
1664       if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I)) {
1665         autoCreateBlock();
1666         appendScopeEnd(Block, *I, S);
1667       }
1668       continue;
1669     }
1670     // If this destructor is marked as a no-return destructor, we need to
1671     // create a new block for the destructor which does not have as a successor
1672     // anything built thus far: control won't flow out of this block.
1673     QualType Ty = (*I)->getType();
1674     if (Ty->isReferenceType()) {
1675       Ty = getReferenceInitTemporaryType(*Context, (*I)->getInit());
1676     }
1677     Ty = Context->getBaseElementType(Ty);
1678 
1679     if (Ty->getAsCXXRecordDecl()->isAnyDestructorNoReturn())
1680       Block = createNoReturnBlock();
1681     else
1682       autoCreateBlock();
1683 
1684     // Add ScopeEnd just after automatic obj destructor.
1685     if (BuildOpts.AddScopes && DeclsWithEndedScope.count(*I))
1686       appendScopeEnd(Block, *I, S);
1687     appendAutomaticObjDtor(Block, *I, S);
1688   }
1689 }
1690 
1691 /// addImplicitDtorsForDestructor - Add implicit destructors generated for
1692 /// base and member objects in destructor.
1693 void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) {
1694   assert(BuildOpts.AddImplicitDtors &&
1695          "Can be called only when dtors should be added");
1696   const CXXRecordDecl *RD = DD->getParent();
1697 
1698   // At the end destroy virtual base objects.
1699   for (const auto &VI : RD->vbases()) {
1700     const CXXRecordDecl *CD = VI.getType()->getAsCXXRecordDecl();
1701     if (!CD->hasTrivialDestructor()) {
1702       autoCreateBlock();
1703       appendBaseDtor(Block, &VI);
1704     }
1705   }
1706 
1707   // Before virtual bases destroy direct base objects.
1708   for (const auto &BI : RD->bases()) {
1709     if (!BI.isVirtual()) {
1710       const CXXRecordDecl *CD = BI.getType()->getAsCXXRecordDecl();
1711       if (!CD->hasTrivialDestructor()) {
1712         autoCreateBlock();
1713         appendBaseDtor(Block, &BI);
1714       }
1715     }
1716   }
1717 
1718   // First destroy member objects.
1719   for (auto *FI : RD->fields()) {
1720     // Check for constant size array. Set type to array element type.
1721     QualType QT = FI->getType();
1722     if (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1723       if (AT->getSize() == 0)
1724         continue;
1725       QT = AT->getElementType();
1726     }
1727 
1728     if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
1729       if (!CD->hasTrivialDestructor()) {
1730         autoCreateBlock();
1731         appendMemberDtor(Block, FI);
1732       }
1733   }
1734 }
1735 
1736 /// createOrReuseLocalScope - If Scope is NULL create new LocalScope. Either
1737 /// way return valid LocalScope object.
1738 LocalScope* CFGBuilder::createOrReuseLocalScope(LocalScope* Scope) {
1739   if (Scope)
1740     return Scope;
1741   llvm::BumpPtrAllocator &alloc = cfg->getAllocator();
1742   return new (alloc.Allocate<LocalScope>())
1743       LocalScope(BumpVectorContext(alloc), ScopePos);
1744 }
1745 
1746 /// addLocalScopeForStmt - Add LocalScope to local scopes tree for statement
1747 /// that should create implicit scope (e.g. if/else substatements).
1748 void CFGBuilder::addLocalScopeForStmt(Stmt *S) {
1749   if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1750       !BuildOpts.AddScopes)
1751     return;
1752 
1753   LocalScope *Scope = nullptr;
1754 
1755   // For compound statement we will be creating explicit scope.
1756   if (CompoundStmt *CS = dyn_cast<CompoundStmt>(S)) {
1757     for (auto *BI : CS->body()) {
1758       Stmt *SI = BI->stripLabelLikeStatements();
1759       if (DeclStmt *DS = dyn_cast<DeclStmt>(SI))
1760         Scope = addLocalScopeForDeclStmt(DS, Scope);
1761     }
1762     return;
1763   }
1764 
1765   // For any other statement scope will be implicit and as such will be
1766   // interesting only for DeclStmt.
1767   if (DeclStmt *DS = dyn_cast<DeclStmt>(S->stripLabelLikeStatements()))
1768     addLocalScopeForDeclStmt(DS);
1769 }
1770 
1771 /// addLocalScopeForDeclStmt - Add LocalScope for declaration statement. Will
1772 /// reuse Scope if not NULL.
1773 LocalScope* CFGBuilder::addLocalScopeForDeclStmt(DeclStmt *DS,
1774                                                  LocalScope* Scope) {
1775   if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1776       !BuildOpts.AddScopes)
1777     return Scope;
1778 
1779   for (auto *DI : DS->decls())
1780     if (VarDecl *VD = dyn_cast<VarDecl>(DI))
1781       Scope = addLocalScopeForVarDecl(VD, Scope);
1782   return Scope;
1783 }
1784 
1785 bool CFGBuilder::hasTrivialDestructor(VarDecl *VD) {
1786   // Check for const references bound to temporary. Set type to pointee.
1787   QualType QT = VD->getType();
1788   if (QT.getTypePtr()->isReferenceType()) {
1789     // Attempt to determine whether this declaration lifetime-extends a
1790     // temporary.
1791     //
1792     // FIXME: This is incorrect. Non-reference declarations can lifetime-extend
1793     // temporaries, and a single declaration can extend multiple temporaries.
1794     // We should look at the storage duration on each nested
1795     // MaterializeTemporaryExpr instead.
1796 
1797     const Expr *Init = VD->getInit();
1798     if (!Init)
1799       return true;
1800 
1801     // Lifetime-extending a temporary.
1802     bool FoundMTE = false;
1803     QT = getReferenceInitTemporaryType(*Context, Init, &FoundMTE);
1804     if (!FoundMTE)
1805       return true;
1806   }
1807 
1808   // Check for constant size array. Set type to array element type.
1809   while (const ConstantArrayType *AT = Context->getAsConstantArrayType(QT)) {
1810     if (AT->getSize() == 0)
1811       return true;
1812     QT = AT->getElementType();
1813   }
1814 
1815   // Check if type is a C++ class with non-trivial destructor.
1816   if (const CXXRecordDecl *CD = QT->getAsCXXRecordDecl())
1817     return !CD->hasDefinition() || CD->hasTrivialDestructor();
1818   return true;
1819 }
1820 
1821 /// addLocalScopeForVarDecl - Add LocalScope for variable declaration. It will
1822 /// create add scope for automatic objects and temporary objects bound to
1823 /// const reference. Will reuse Scope if not NULL.
1824 LocalScope* CFGBuilder::addLocalScopeForVarDecl(VarDecl *VD,
1825                                                 LocalScope* Scope) {
1826   assert(!(BuildOpts.AddImplicitDtors && BuildOpts.AddLifetime) &&
1827          "AddImplicitDtors and AddLifetime cannot be used at the same time");
1828   if (!BuildOpts.AddImplicitDtors && !BuildOpts.AddLifetime &&
1829       !BuildOpts.AddScopes)
1830     return Scope;
1831 
1832   // Check if variable is local.
1833   switch (VD->getStorageClass()) {
1834   case SC_None:
1835   case SC_Auto:
1836   case SC_Register:
1837     break;
1838   default: return Scope;
1839   }
1840 
1841   if (BuildOpts.AddImplicitDtors) {
1842     if (!hasTrivialDestructor(VD) || BuildOpts.AddScopes) {
1843       // Add the variable to scope
1844       Scope = createOrReuseLocalScope(Scope);
1845       Scope->addVar(VD);
1846       ScopePos = Scope->begin();
1847     }
1848     return Scope;
1849   }
1850 
1851   assert(BuildOpts.AddLifetime);
1852   // Add the variable to scope
1853   Scope = createOrReuseLocalScope(Scope);
1854   Scope->addVar(VD);
1855   ScopePos = Scope->begin();
1856   return Scope;
1857 }
1858 
1859 /// addLocalScopeAndDtors - For given statement add local scope for it and
1860 /// add destructors that will cleanup the scope. Will reuse Scope if not NULL.
1861 void CFGBuilder::addLocalScopeAndDtors(Stmt *S) {
1862   LocalScope::const_iterator scopeBeginPos = ScopePos;
1863   addLocalScopeForStmt(S);
1864   addAutomaticObjHandling(ScopePos, scopeBeginPos, S);
1865 }
1866 
1867 /// prependAutomaticObjDtorsWithTerminator - Prepend destructor CFGElements for
1868 /// variables with automatic storage duration to CFGBlock's elements vector.
1869 /// Elements will be prepended to physical beginning of the vector which
1870 /// happens to be logical end. Use blocks terminator as statement that specifies
1871 /// destructors call site.
1872 /// FIXME: This mechanism for adding automatic destructors doesn't handle
1873 /// no-return destructors properly.
1874 void CFGBuilder::prependAutomaticObjDtorsWithTerminator(CFGBlock *Blk,
1875     LocalScope::const_iterator B, LocalScope::const_iterator E) {
1876   if (!BuildOpts.AddImplicitDtors)
1877     return;
1878   BumpVectorContext &C = cfg->getBumpVectorContext();
1879   CFGBlock::iterator InsertPos
1880     = Blk->beginAutomaticObjDtorsInsert(Blk->end(), B.distance(E), C);
1881   for (LocalScope::const_iterator I = B; I != E; ++I)
1882     InsertPos = Blk->insertAutomaticObjDtor(InsertPos, *I,
1883                                             Blk->getTerminator());
1884 }
1885 
1886 /// prependAutomaticObjLifetimeWithTerminator - Prepend lifetime CFGElements for
1887 /// variables with automatic storage duration to CFGBlock's elements vector.
1888 /// Elements will be prepended to physical beginning of the vector which
1889 /// happens to be logical end. Use blocks terminator as statement that specifies
1890 /// where lifetime ends.
1891 void CFGBuilder::prependAutomaticObjLifetimeWithTerminator(
1892     CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1893   if (!BuildOpts.AddLifetime)
1894     return;
1895   BumpVectorContext &C = cfg->getBumpVectorContext();
1896   CFGBlock::iterator InsertPos =
1897       Blk->beginLifetimeEndsInsert(Blk->end(), B.distance(E), C);
1898   for (LocalScope::const_iterator I = B; I != E; ++I)
1899     InsertPos = Blk->insertLifetimeEnds(InsertPos, *I, Blk->getTerminator());
1900 }
1901 
1902 /// prependAutomaticObjScopeEndWithTerminator - Prepend scope end CFGElements for
1903 /// variables with automatic storage duration to CFGBlock's elements vector.
1904 /// Elements will be prepended to physical beginning of the vector which
1905 /// happens to be logical end. Use blocks terminator as statement that specifies
1906 /// where scope ends.
1907 const VarDecl *
1908 CFGBuilder::prependAutomaticObjScopeEndWithTerminator(
1909     CFGBlock *Blk, LocalScope::const_iterator B, LocalScope::const_iterator E) {
1910   if (!BuildOpts.AddScopes)
1911     return nullptr;
1912   BumpVectorContext &C = cfg->getBumpVectorContext();
1913   CFGBlock::iterator InsertPos =
1914       Blk->beginScopeEndInsert(Blk->end(), 1, C);
1915   LocalScope::const_iterator PlaceToInsert = B;
1916   for (LocalScope::const_iterator I = B; I != E; ++I)
1917     PlaceToInsert = I;
1918   Blk->insertScopeEnd(InsertPos, *PlaceToInsert, Blk->getTerminator());
1919   return *PlaceToInsert;
1920 }
1921 
1922 /// Visit - Walk the subtree of a statement and add extra
1923 ///   blocks for ternary operators, &&, and ||.  We also process "," and
1924 ///   DeclStmts (which may contain nested control-flow).
1925 CFGBlock *CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
1926   if (!S) {
1927     badCFG = true;
1928     return nullptr;
1929   }
1930 
1931   if (Expr *E = dyn_cast<Expr>(S))
1932     S = E->IgnoreParens();
1933 
1934   switch (S->getStmtClass()) {
1935     default:
1936       return VisitStmt(S, asc);
1937 
1938     case Stmt::AddrLabelExprClass:
1939       return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
1940 
1941     case Stmt::BinaryConditionalOperatorClass:
1942       return VisitConditionalOperator(cast<BinaryConditionalOperator>(S), asc);
1943 
1944     case Stmt::BinaryOperatorClass:
1945       return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
1946 
1947     case Stmt::BlockExprClass:
1948       return VisitBlockExpr(cast<BlockExpr>(S), asc);
1949 
1950     case Stmt::BreakStmtClass:
1951       return VisitBreakStmt(cast<BreakStmt>(S));
1952 
1953     case Stmt::CallExprClass:
1954     case Stmt::CXXOperatorCallExprClass:
1955     case Stmt::CXXMemberCallExprClass:
1956     case Stmt::UserDefinedLiteralClass:
1957       return VisitCallExpr(cast<CallExpr>(S), asc);
1958 
1959     case Stmt::CaseStmtClass:
1960       return VisitCaseStmt(cast<CaseStmt>(S));
1961 
1962     case Stmt::ChooseExprClass:
1963       return VisitChooseExpr(cast<ChooseExpr>(S), asc);
1964 
1965     case Stmt::CompoundStmtClass:
1966       return VisitCompoundStmt(cast<CompoundStmt>(S));
1967 
1968     case Stmt::ConditionalOperatorClass:
1969       return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
1970 
1971     case Stmt::ContinueStmtClass:
1972       return VisitContinueStmt(cast<ContinueStmt>(S));
1973 
1974     case Stmt::CXXCatchStmtClass:
1975       return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
1976 
1977     case Stmt::ExprWithCleanupsClass:
1978       return VisitExprWithCleanups(cast<ExprWithCleanups>(S), asc);
1979 
1980     case Stmt::CXXDefaultArgExprClass:
1981     case Stmt::CXXDefaultInitExprClass:
1982       // FIXME: The expression inside a CXXDefaultArgExpr is owned by the
1983       // called function's declaration, not by the caller. If we simply add
1984       // this expression to the CFG, we could end up with the same Expr
1985       // appearing multiple times.
1986       // PR13385 / <rdar://problem/12156507>
1987       //
1988       // It's likewise possible for multiple CXXDefaultInitExprs for the same
1989       // expression to be used in the same function (through aggregate
1990       // initialization).
1991       return VisitStmt(S, asc);
1992 
1993     case Stmt::CXXBindTemporaryExprClass:
1994       return VisitCXXBindTemporaryExpr(cast<CXXBindTemporaryExpr>(S), asc);
1995 
1996     case Stmt::CXXConstructExprClass:
1997       return VisitCXXConstructExpr(cast<CXXConstructExpr>(S), asc);
1998 
1999     case Stmt::CXXNewExprClass:
2000       return VisitCXXNewExpr(cast<CXXNewExpr>(S), asc);
2001 
2002     case Stmt::CXXDeleteExprClass:
2003       return VisitCXXDeleteExpr(cast<CXXDeleteExpr>(S), asc);
2004 
2005     case Stmt::CXXFunctionalCastExprClass:
2006       return VisitCXXFunctionalCastExpr(cast<CXXFunctionalCastExpr>(S), asc);
2007 
2008     case Stmt::CXXTemporaryObjectExprClass:
2009       return VisitCXXTemporaryObjectExpr(cast<CXXTemporaryObjectExpr>(S), asc);
2010 
2011     case Stmt::CXXThrowExprClass:
2012       return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
2013 
2014     case Stmt::CXXTryStmtClass:
2015       return VisitCXXTryStmt(cast<CXXTryStmt>(S));
2016 
2017     case Stmt::CXXForRangeStmtClass:
2018       return VisitCXXForRangeStmt(cast<CXXForRangeStmt>(S));
2019 
2020     case Stmt::DeclStmtClass:
2021       return VisitDeclStmt(cast<DeclStmt>(S));
2022 
2023     case Stmt::DefaultStmtClass:
2024       return VisitDefaultStmt(cast<DefaultStmt>(S));
2025 
2026     case Stmt::DoStmtClass:
2027       return VisitDoStmt(cast<DoStmt>(S));
2028 
2029     case Stmt::ForStmtClass:
2030       return VisitForStmt(cast<ForStmt>(S));
2031 
2032     case Stmt::GotoStmtClass:
2033       return VisitGotoStmt(cast<GotoStmt>(S));
2034 
2035     case Stmt::IfStmtClass:
2036       return VisitIfStmt(cast<IfStmt>(S));
2037 
2038     case Stmt::ImplicitCastExprClass:
2039       return VisitImplicitCastExpr(cast<ImplicitCastExpr>(S), asc);
2040 
2041     case Stmt::IndirectGotoStmtClass:
2042       return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
2043 
2044     case Stmt::LabelStmtClass:
2045       return VisitLabelStmt(cast<LabelStmt>(S));
2046 
2047     case Stmt::LambdaExprClass:
2048       return VisitLambdaExpr(cast<LambdaExpr>(S), asc);
2049 
2050     case Stmt::MaterializeTemporaryExprClass:
2051       return VisitMaterializeTemporaryExpr(cast<MaterializeTemporaryExpr>(S),
2052                                            asc);
2053 
2054     case Stmt::MemberExprClass:
2055       return VisitMemberExpr(cast<MemberExpr>(S), asc);
2056 
2057     case Stmt::NullStmtClass:
2058       return Block;
2059 
2060     case Stmt::ObjCAtCatchStmtClass:
2061       return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
2062 
2063     case Stmt::ObjCAutoreleasePoolStmtClass:
2064     return VisitObjCAutoreleasePoolStmt(cast<ObjCAutoreleasePoolStmt>(S));
2065 
2066     case Stmt::ObjCAtSynchronizedStmtClass:
2067       return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
2068 
2069     case Stmt::ObjCAtThrowStmtClass:
2070       return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
2071 
2072     case Stmt::ObjCAtTryStmtClass:
2073       return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
2074 
2075     case Stmt::ObjCForCollectionStmtClass:
2076       return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
2077 
2078     case Stmt::OpaqueValueExprClass:
2079       return Block;
2080 
2081     case Stmt::PseudoObjectExprClass:
2082       return VisitPseudoObjectExpr(cast<PseudoObjectExpr>(S));
2083 
2084     case Stmt::ReturnStmtClass:
2085       return VisitReturnStmt(cast<ReturnStmt>(S));
2086 
2087     case Stmt::SEHExceptStmtClass:
2088       return VisitSEHExceptStmt(cast<SEHExceptStmt>(S));
2089 
2090     case Stmt::SEHFinallyStmtClass:
2091       return VisitSEHFinallyStmt(cast<SEHFinallyStmt>(S));
2092 
2093     case Stmt::SEHLeaveStmtClass:
2094       return VisitSEHLeaveStmt(cast<SEHLeaveStmt>(S));
2095 
2096     case Stmt::SEHTryStmtClass:
2097       return VisitSEHTryStmt(cast<SEHTryStmt>(S));
2098 
2099     case Stmt::UnaryExprOrTypeTraitExprClass:
2100       return VisitUnaryExprOrTypeTraitExpr(cast<UnaryExprOrTypeTraitExpr>(S),
2101                                            asc);
2102 
2103     case Stmt::StmtExprClass:
2104       return VisitStmtExpr(cast<StmtExpr>(S), asc);
2105 
2106     case Stmt::SwitchStmtClass:
2107       return VisitSwitchStmt(cast<SwitchStmt>(S));
2108 
2109     case Stmt::UnaryOperatorClass:
2110       return VisitUnaryOperator(cast<UnaryOperator>(S), asc);
2111 
2112     case Stmt::WhileStmtClass:
2113       return VisitWhileStmt(cast<WhileStmt>(S));
2114   }
2115 }
2116 
2117 CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
2118   if (asc.alwaysAdd(*this, S)) {
2119     autoCreateBlock();
2120     appendStmt(Block, S);
2121   }
2122 
2123   return VisitChildren(S);
2124 }
2125 
2126 /// VisitChildren - Visit the children of a Stmt.
2127 CFGBlock *CFGBuilder::VisitChildren(Stmt *S) {
2128   CFGBlock *B = Block;
2129 
2130   // Visit the children in their reverse order so that they appear in
2131   // left-to-right (natural) order in the CFG.
2132   reverse_children RChildren(S);
2133   for (reverse_children::iterator I = RChildren.begin(), E = RChildren.end();
2134        I != E; ++I) {
2135     if (Stmt *Child = *I)
2136       if (CFGBlock *R = Visit(Child))
2137         B = R;
2138   }
2139   return B;
2140 }
2141 
2142 CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
2143                                          AddStmtChoice asc) {
2144   AddressTakenLabels.insert(A->getLabel());
2145 
2146   if (asc.alwaysAdd(*this, A)) {
2147     autoCreateBlock();
2148     appendStmt(Block, A);
2149   }
2150 
2151   return Block;
2152 }
2153 
2154 CFGBlock *CFGBuilder::VisitUnaryOperator(UnaryOperator *U,
2155            AddStmtChoice asc) {
2156   if (asc.alwaysAdd(*this, U)) {
2157     autoCreateBlock();
2158     appendStmt(Block, U);
2159   }
2160 
2161   return Visit(U->getSubExpr(), AddStmtChoice());
2162 }
2163 
2164 CFGBlock *CFGBuilder::VisitLogicalOperator(BinaryOperator *B) {
2165   CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
2166   appendStmt(ConfluenceBlock, B);
2167 
2168   if (badCFG)
2169     return nullptr;
2170 
2171   return VisitLogicalOperator(B, nullptr, ConfluenceBlock,
2172                               ConfluenceBlock).first;
2173 }
2174 
2175 std::pair<CFGBlock*, CFGBlock*>
2176 CFGBuilder::VisitLogicalOperator(BinaryOperator *B,
2177                                  Stmt *Term,
2178                                  CFGBlock *TrueBlock,
2179                                  CFGBlock *FalseBlock) {
2180   // Introspect the RHS.  If it is a nested logical operation, we recursively
2181   // build the CFG using this function.  Otherwise, resort to default
2182   // CFG construction behavior.
2183   Expr *RHS = B->getRHS()->IgnoreParens();
2184   CFGBlock *RHSBlock, *ExitBlock;
2185 
2186   do {
2187     if (BinaryOperator *B_RHS = dyn_cast<BinaryOperator>(RHS))
2188       if (B_RHS->isLogicalOp()) {
2189         std::tie(RHSBlock, ExitBlock) =
2190           VisitLogicalOperator(B_RHS, Term, TrueBlock, FalseBlock);
2191         break;
2192       }
2193 
2194     // The RHS is not a nested logical operation.  Don't push the terminator
2195     // down further, but instead visit RHS and construct the respective
2196     // pieces of the CFG, and link up the RHSBlock with the terminator
2197     // we have been provided.
2198     ExitBlock = RHSBlock = createBlock(false);
2199 
2200     // Even though KnownVal is only used in the else branch of the next
2201     // conditional, tryEvaluateBool performs additional checking on the
2202     // Expr, so it should be called unconditionally.
2203     TryResult KnownVal = tryEvaluateBool(RHS);
2204     if (!KnownVal.isKnown())
2205       KnownVal = tryEvaluateBool(B);
2206 
2207     if (!Term) {
2208       assert(TrueBlock == FalseBlock);
2209       addSuccessor(RHSBlock, TrueBlock);
2210     }
2211     else {
2212       RHSBlock->setTerminator(Term);
2213       addSuccessor(RHSBlock, TrueBlock, !KnownVal.isFalse());
2214       addSuccessor(RHSBlock, FalseBlock, !KnownVal.isTrue());
2215     }
2216 
2217     Block = RHSBlock;
2218     RHSBlock = addStmt(RHS);
2219   }
2220   while (false);
2221 
2222   if (badCFG)
2223     return std::make_pair(nullptr, nullptr);
2224 
2225   // Generate the blocks for evaluating the LHS.
2226   Expr *LHS = B->getLHS()->IgnoreParens();
2227 
2228   if (BinaryOperator *B_LHS = dyn_cast<BinaryOperator>(LHS))
2229     if (B_LHS->isLogicalOp()) {
2230       if (B->getOpcode() == BO_LOr)
2231         FalseBlock = RHSBlock;
2232       else
2233         TrueBlock = RHSBlock;
2234 
2235       // For the LHS, treat 'B' as the terminator that we want to sink
2236       // into the nested branch.  The RHS always gets the top-most
2237       // terminator.
2238       return VisitLogicalOperator(B_LHS, B, TrueBlock, FalseBlock);
2239     }
2240 
2241   // Create the block evaluating the LHS.
2242   // This contains the '&&' or '||' as the terminator.
2243   CFGBlock *LHSBlock = createBlock(false);
2244   LHSBlock->setTerminator(B);
2245 
2246   Block = LHSBlock;
2247   CFGBlock *EntryLHSBlock = addStmt(LHS);
2248 
2249   if (badCFG)
2250     return std::make_pair(nullptr, nullptr);
2251 
2252   // See if this is a known constant.
2253   TryResult KnownVal = tryEvaluateBool(LHS);
2254 
2255   // Now link the LHSBlock with RHSBlock.
2256   if (B->getOpcode() == BO_LOr) {
2257     addSuccessor(LHSBlock, TrueBlock, !KnownVal.isFalse());
2258     addSuccessor(LHSBlock, RHSBlock, !KnownVal.isTrue());
2259   } else {
2260     assert(B->getOpcode() == BO_LAnd);
2261     addSuccessor(LHSBlock, RHSBlock, !KnownVal.isFalse());
2262     addSuccessor(LHSBlock, FalseBlock, !KnownVal.isTrue());
2263   }
2264 
2265   return std::make_pair(EntryLHSBlock, ExitBlock);
2266 }
2267 
2268 CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
2269                                           AddStmtChoice asc) {
2270    // && or ||
2271   if (B->isLogicalOp())
2272     return VisitLogicalOperator(B);
2273 
2274   if (B->getOpcode() == BO_Comma) { // ,
2275     autoCreateBlock();
2276     appendStmt(Block, B);
2277     addStmt(B->getRHS());
2278     return addStmt(B->getLHS());
2279   }
2280 
2281   if (B->isAssignmentOp()) {
2282     if (asc.alwaysAdd(*this, B)) {
2283       autoCreateBlock();
2284       appendStmt(Block, B);
2285     }
2286     Visit(B->getLHS());
2287     return Visit(B->getRHS());
2288   }
2289 
2290   if (asc.alwaysAdd(*this, B)) {
2291     autoCreateBlock();
2292     appendStmt(Block, B);
2293   }
2294 
2295   CFGBlock *RBlock = Visit(B->getRHS());
2296   CFGBlock *LBlock = Visit(B->getLHS());
2297   // If visiting RHS causes us to finish 'Block', e.g. the RHS is a StmtExpr
2298   // containing a DoStmt, and the LHS doesn't create a new block, then we should
2299   // return RBlock.  Otherwise we'll incorrectly return NULL.
2300   return (LBlock ? LBlock : RBlock);
2301 }
2302 
2303 CFGBlock *CFGBuilder::VisitNoRecurse(Expr *E, AddStmtChoice asc) {
2304   if (asc.alwaysAdd(*this, E)) {
2305     autoCreateBlock();
2306     appendStmt(Block, E);
2307   }
2308   return Block;
2309 }
2310 
2311 CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
2312   // "break" is a control-flow statement.  Thus we stop processing the current
2313   // block.
2314   if (badCFG)
2315     return nullptr;
2316 
2317   // Now create a new block that ends with the break statement.
2318   Block = createBlock(false);
2319   Block->setTerminator(B);
2320 
2321   // If there is no target for the break, then we are looking at an incomplete
2322   // AST.  This means that the CFG cannot be constructed.
2323   if (BreakJumpTarget.block) {
2324     addAutomaticObjHandling(ScopePos, BreakJumpTarget.scopePosition, B);
2325     addSuccessor(Block, BreakJumpTarget.block);
2326   } else
2327     badCFG = true;
2328 
2329   return Block;
2330 }
2331 
2332 static bool CanThrow(Expr *E, ASTContext &Ctx) {
2333   QualType Ty = E->getType();
2334   if (Ty->isFunctionPointerType())
2335     Ty = Ty->getAs<PointerType>()->getPointeeType();
2336   else if (Ty->isBlockPointerType())
2337     Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
2338 
2339   const FunctionType *FT = Ty->getAs<FunctionType>();
2340   if (FT) {
2341     if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
2342       if (!isUnresolvedExceptionSpec(Proto->getExceptionSpecType()) &&
2343           Proto->isNothrow(Ctx))
2344         return false;
2345   }
2346   return true;
2347 }
2348 
2349 CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
2350   // Compute the callee type.
2351   QualType calleeType = C->getCallee()->getType();
2352   if (calleeType == Context->BoundMemberTy) {
2353     QualType boundType = Expr::findBoundMemberType(C->getCallee());
2354 
2355     // We should only get a null bound type if processing a dependent
2356     // CFG.  Recover by assuming nothing.
2357     if (!boundType.isNull()) calleeType = boundType;
2358   }
2359 
2360   // If this is a call to a no-return function, this stops the block here.
2361   bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
2362 
2363   bool AddEHEdge = false;
2364 
2365   // Languages without exceptions are assumed to not throw.
2366   if (Context->getLangOpts().Exceptions) {
2367     if (BuildOpts.AddEHEdges)
2368       AddEHEdge = true;
2369   }
2370 
2371   // If this is a call to a builtin function, it might not actually evaluate
2372   // its arguments. Don't add them to the CFG if this is the case.
2373   bool OmitArguments = false;
2374 
2375   if (FunctionDecl *FD = C->getDirectCallee()) {
2376     if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context))
2377       NoReturn = true;
2378     if (FD->hasAttr<NoThrowAttr>())
2379       AddEHEdge = false;
2380     if (FD->getBuiltinID() == Builtin::BI__builtin_object_size)
2381       OmitArguments = true;
2382   }
2383 
2384   if (!CanThrow(C->getCallee(), *Context))
2385     AddEHEdge = false;
2386 
2387   if (OmitArguments) {
2388     assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
2389     assert(!AddEHEdge && "EH calls with unevaluated args not implemented");
2390     autoCreateBlock();
2391     appendStmt(Block, C);
2392     return Visit(C->getCallee());
2393   }
2394 
2395   if (!NoReturn && !AddEHEdge) {
2396     autoCreateBlock();
2397     appendCall(Block, C);
2398 
2399     return VisitChildren(C);
2400   }
2401 
2402   if (Block) {
2403     Succ = Block;
2404     if (badCFG)
2405       return nullptr;
2406   }
2407 
2408   if (NoReturn)
2409     Block = createNoReturnBlock();
2410   else
2411     Block = createBlock();
2412 
2413   appendCall(Block, C);
2414 
2415   if (AddEHEdge) {
2416     // Add exceptional edges.
2417     if (TryTerminatedBlock)
2418       addSuccessor(Block, TryTerminatedBlock);
2419     else
2420       addSuccessor(Block, &cfg->getExit());
2421   }
2422 
2423   return VisitChildren(C);
2424 }
2425 
2426 CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
2427                                       AddStmtChoice asc) {
2428   CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
2429   appendStmt(ConfluenceBlock, C);
2430   if (badCFG)
2431     return nullptr;
2432 
2433   AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
2434   Succ = ConfluenceBlock;
2435   Block = nullptr;
2436   CFGBlock *LHSBlock = Visit(C->getLHS(), alwaysAdd);
2437   if (badCFG)
2438     return nullptr;
2439 
2440   Succ = ConfluenceBlock;
2441   Block = nullptr;
2442   CFGBlock *RHSBlock = Visit(C->getRHS(), alwaysAdd);
2443   if (badCFG)
2444     return nullptr;
2445 
2446   Block = createBlock(false);
2447   // See if this is a known constant.
2448   const TryResult& KnownVal = tryEvaluateBool(C->getCond());
2449   addSuccessor(Block, KnownVal.isFalse() ? nullptr : LHSBlock);
2450   addSuccessor(Block, KnownVal.isTrue() ? nullptr : RHSBlock);
2451   Block->setTerminator(C);
2452   return addStmt(C->getCond());
2453 }
2454 
2455 CFGBlock *CFGBuilder::VisitCompoundStmt(CompoundStmt *C) {
2456   LocalScope::const_iterator scopeBeginPos = ScopePos;
2457   addLocalScopeForStmt(C);
2458 
2459   if (!C->body_empty() && !isa<ReturnStmt>(*C->body_rbegin())) {
2460     // If the body ends with a ReturnStmt, the dtors will be added in
2461     // VisitReturnStmt.
2462     addAutomaticObjHandling(ScopePos, scopeBeginPos, C);
2463   }
2464 
2465   CFGBlock *LastBlock = Block;
2466 
2467   for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
2468        I != E; ++I ) {
2469     // If we hit a segment of code just containing ';' (NullStmts), we can
2470     // get a null block back.  In such cases, just use the LastBlock
2471     if (CFGBlock *newBlock = addStmt(*I))
2472       LastBlock = newBlock;
2473 
2474     if (badCFG)
2475       return nullptr;
2476   }
2477 
2478   return LastBlock;
2479 }
2480 
2481 CFGBlock *CFGBuilder::VisitConditionalOperator(AbstractConditionalOperator *C,
2482                                                AddStmtChoice asc) {
2483   const BinaryConditionalOperator *BCO = dyn_cast<BinaryConditionalOperator>(C);
2484   const OpaqueValueExpr *opaqueValue = (BCO ? BCO->getOpaqueValue() : nullptr);
2485 
2486   // Create the confluence block that will "merge" the results of the ternary
2487   // expression.
2488   CFGBlock *ConfluenceBlock = Block ? Block : createBlock();
2489   appendStmt(ConfluenceBlock, C);
2490   if (badCFG)
2491     return nullptr;
2492 
2493   AddStmtChoice alwaysAdd = asc.withAlwaysAdd(true);
2494 
2495   // Create a block for the LHS expression if there is an LHS expression.  A
2496   // GCC extension allows LHS to be NULL, causing the condition to be the
2497   // value that is returned instead.
2498   //  e.g: x ?: y is shorthand for: x ? x : y;
2499   Succ = ConfluenceBlock;
2500   Block = nullptr;
2501   CFGBlock *LHSBlock = nullptr;
2502   const Expr *trueExpr = C->getTrueExpr();
2503   if (trueExpr != opaqueValue) {
2504     LHSBlock = Visit(C->getTrueExpr(), alwaysAdd);
2505     if (badCFG)
2506       return nullptr;
2507     Block = nullptr;
2508   }
2509   else
2510     LHSBlock = ConfluenceBlock;
2511 
2512   // Create the block for the RHS expression.
2513   Succ = ConfluenceBlock;
2514   CFGBlock *RHSBlock = Visit(C->getFalseExpr(), alwaysAdd);
2515   if (badCFG)
2516     return nullptr;
2517 
2518   // If the condition is a logical '&&' or '||', build a more accurate CFG.
2519   if (BinaryOperator *Cond =
2520         dyn_cast<BinaryOperator>(C->getCond()->IgnoreParens()))
2521     if (Cond->isLogicalOp())
2522       return VisitLogicalOperator(Cond, C, LHSBlock, RHSBlock).first;
2523 
2524   // Create the block that will contain the condition.
2525   Block = createBlock(false);
2526 
2527   // See if this is a known constant.
2528   const TryResult& KnownVal = tryEvaluateBool(C->getCond());
2529   addSuccessor(Block, LHSBlock, !KnownVal.isFalse());
2530   addSuccessor(Block, RHSBlock, !KnownVal.isTrue());
2531   Block->setTerminator(C);
2532   Expr *condExpr = C->getCond();
2533 
2534   if (opaqueValue) {
2535     // Run the condition expression if it's not trivially expressed in
2536     // terms of the opaque value (or if there is no opaque value).
2537     if (condExpr != opaqueValue)
2538       addStmt(condExpr);
2539 
2540     // Before that, run the common subexpression if there was one.
2541     // At least one of this or the above will be run.
2542     return addStmt(BCO->getCommon());
2543   }
2544 
2545   return addStmt(condExpr);
2546 }
2547 
2548 CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
2549   // Check if the Decl is for an __label__.  If so, elide it from the
2550   // CFG entirely.
2551   if (isa<LabelDecl>(*DS->decl_begin()))
2552     return Block;
2553 
2554   // This case also handles static_asserts.
2555   if (DS->isSingleDecl())
2556     return VisitDeclSubExpr(DS);
2557 
2558   CFGBlock *B = nullptr;
2559 
2560   // Build an individual DeclStmt for each decl.
2561   for (DeclStmt::reverse_decl_iterator I = DS->decl_rbegin(),
2562                                        E = DS->decl_rend();
2563        I != E; ++I) {
2564     // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
2565     unsigned A = alignof(DeclStmt) < 8 ? 8 : alignof(DeclStmt);
2566 
2567     // Allocate the DeclStmt using the BumpPtrAllocator.  It will get
2568     // automatically freed with the CFG.
2569     DeclGroupRef DG(*I);
2570     Decl *D = *I;
2571     void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
2572     DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
2573     cfg->addSyntheticDeclStmt(DSNew, DS);
2574 
2575     // Append the fake DeclStmt to block.
2576     B = VisitDeclSubExpr(DSNew);
2577   }
2578 
2579   return B;
2580 }
2581 
2582 /// VisitDeclSubExpr - Utility method to add block-level expressions for
2583 /// DeclStmts and initializers in them.
2584 CFGBlock *CFGBuilder::VisitDeclSubExpr(DeclStmt *DS) {
2585   assert(DS->isSingleDecl() && "Can handle single declarations only.");
2586   VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
2587 
2588   if (!VD) {
2589     // Of everything that can be declared in a DeclStmt, only VarDecls impact
2590     // runtime semantics.
2591     return Block;
2592   }
2593 
2594   bool HasTemporaries = false;
2595 
2596   // Guard static initializers under a branch.
2597   CFGBlock *blockAfterStaticInit = nullptr;
2598 
2599   if (BuildOpts.AddStaticInitBranches && VD->isStaticLocal()) {
2600     // For static variables, we need to create a branch to track
2601     // whether or not they are initialized.
2602     if (Block) {
2603       Succ = Block;
2604       Block = nullptr;
2605       if (badCFG)
2606         return nullptr;
2607     }
2608     blockAfterStaticInit = Succ;
2609   }
2610 
2611   // Destructors of temporaries in initialization expression should be called
2612   // after initialization finishes.
2613   Expr *Init = VD->getInit();
2614   if (Init) {
2615     HasTemporaries = isa<ExprWithCleanups>(Init);
2616 
2617     if (BuildOpts.AddTemporaryDtors && HasTemporaries) {
2618       // Generate destructors for temporaries in initialization expression.
2619       TempDtorContext Context;
2620       VisitForTemporaryDtors(cast<ExprWithCleanups>(Init)->getSubExpr(),
2621                              /*BindToTemporary=*/false, Context);
2622     }
2623   }
2624 
2625   autoCreateBlock();
2626   appendStmt(Block, DS);
2627 
2628   findConstructionContexts(
2629       ConstructionContextLayer::create(cfg->getBumpVectorContext(), DS),
2630       Init);
2631 
2632   // Keep track of the last non-null block, as 'Block' can be nulled out
2633   // if the initializer expression is something like a 'while' in a
2634   // statement-expression.
2635   CFGBlock *LastBlock = Block;
2636 
2637   if (Init) {
2638     if (HasTemporaries) {
2639       // For expression with temporaries go directly to subexpression to omit
2640       // generating destructors for the second time.
2641       ExprWithCleanups *EC = cast<ExprWithCleanups>(Init);
2642       if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
2643         LastBlock = newBlock;
2644     }
2645     else {
2646       if (CFGBlock *newBlock = Visit(Init))
2647         LastBlock = newBlock;
2648     }
2649   }
2650 
2651   // If the type of VD is a VLA, then we must process its size expressions.
2652   for (const VariableArrayType* VA = FindVA(VD->getType().getTypePtr());
2653        VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr())) {
2654     if (CFGBlock *newBlock = addStmt(VA->getSizeExpr()))
2655       LastBlock = newBlock;
2656   }
2657 
2658   maybeAddScopeBeginForVarDecl(Block, VD, DS);
2659 
2660   // Remove variable from local scope.
2661   if (ScopePos && VD == *ScopePos)
2662     ++ScopePos;
2663 
2664   CFGBlock *B = LastBlock;
2665   if (blockAfterStaticInit) {
2666     Succ = B;
2667     Block = createBlock(false);
2668     Block->setTerminator(DS);
2669     addSuccessor(Block, blockAfterStaticInit);
2670     addSuccessor(Block, B);
2671     B = Block;
2672   }
2673 
2674   return B;
2675 }
2676 
2677 CFGBlock *CFGBuilder::VisitIfStmt(IfStmt *I) {
2678   // We may see an if statement in the middle of a basic block, or it may be the
2679   // first statement we are processing.  In either case, we create a new basic
2680   // block.  First, we create the blocks for the then...else statements, and
2681   // then we create the block containing the if statement.  If we were in the
2682   // middle of a block, we stop processing that block.  That block is then the
2683   // implicit successor for the "then" and "else" clauses.
2684 
2685   // Save local scope position because in case of condition variable ScopePos
2686   // won't be restored when traversing AST.
2687   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2688 
2689   // Create local scope for C++17 if init-stmt if one exists.
2690   if (Stmt *Init = I->getInit())
2691     addLocalScopeForStmt(Init);
2692 
2693   // Create local scope for possible condition variable.
2694   // Store scope position. Add implicit destructor.
2695   if (VarDecl *VD = I->getConditionVariable())
2696     addLocalScopeForVarDecl(VD);
2697 
2698   addAutomaticObjHandling(ScopePos, save_scope_pos.get(), I);
2699 
2700   // The block we were processing is now finished.  Make it the successor
2701   // block.
2702   if (Block) {
2703     Succ = Block;
2704     if (badCFG)
2705       return nullptr;
2706   }
2707 
2708   // Process the false branch.
2709   CFGBlock *ElseBlock = Succ;
2710 
2711   if (Stmt *Else = I->getElse()) {
2712     SaveAndRestore<CFGBlock*> sv(Succ);
2713 
2714     // NULL out Block so that the recursive call to Visit will
2715     // create a new basic block.
2716     Block = nullptr;
2717 
2718     // If branch is not a compound statement create implicit scope
2719     // and add destructors.
2720     if (!isa<CompoundStmt>(Else))
2721       addLocalScopeAndDtors(Else);
2722 
2723     ElseBlock = addStmt(Else);
2724 
2725     if (!ElseBlock) // Can occur when the Else body has all NullStmts.
2726       ElseBlock = sv.get();
2727     else if (Block) {
2728       if (badCFG)
2729         return nullptr;
2730     }
2731   }
2732 
2733   // Process the true branch.
2734   CFGBlock *ThenBlock;
2735   {
2736     Stmt *Then = I->getThen();
2737     assert(Then);
2738     SaveAndRestore<CFGBlock*> sv(Succ);
2739     Block = nullptr;
2740 
2741     // If branch is not a compound statement create implicit scope
2742     // and add destructors.
2743     if (!isa<CompoundStmt>(Then))
2744       addLocalScopeAndDtors(Then);
2745 
2746     ThenBlock = addStmt(Then);
2747 
2748     if (!ThenBlock) {
2749       // We can reach here if the "then" body has all NullStmts.
2750       // Create an empty block so we can distinguish between true and false
2751       // branches in path-sensitive analyses.
2752       ThenBlock = createBlock(false);
2753       addSuccessor(ThenBlock, sv.get());
2754     } else if (Block) {
2755       if (badCFG)
2756         return nullptr;
2757     }
2758   }
2759 
2760   // Specially handle "if (expr1 || ...)" and "if (expr1 && ...)" by
2761   // having these handle the actual control-flow jump.  Note that
2762   // if we introduce a condition variable, e.g. "if (int x = exp1 || exp2)"
2763   // we resort to the old control-flow behavior.  This special handling
2764   // removes infeasible paths from the control-flow graph by having the
2765   // control-flow transfer of '&&' or '||' go directly into the then/else
2766   // blocks directly.
2767   BinaryOperator *Cond =
2768       I->getConditionVariable()
2769           ? nullptr
2770           : dyn_cast<BinaryOperator>(I->getCond()->IgnoreParens());
2771   CFGBlock *LastBlock;
2772   if (Cond && Cond->isLogicalOp())
2773     LastBlock = VisitLogicalOperator(Cond, I, ThenBlock, ElseBlock).first;
2774   else {
2775     // Now create a new block containing the if statement.
2776     Block = createBlock(false);
2777 
2778     // Set the terminator of the new block to the If statement.
2779     Block->setTerminator(I);
2780 
2781     // See if this is a known constant.
2782     const TryResult &KnownVal = tryEvaluateBool(I->getCond());
2783 
2784     // Add the successors.  If we know that specific branches are
2785     // unreachable, inform addSuccessor() of that knowledge.
2786     addSuccessor(Block, ThenBlock, /* isReachable = */ !KnownVal.isFalse());
2787     addSuccessor(Block, ElseBlock, /* isReachable = */ !KnownVal.isTrue());
2788 
2789     // Add the condition as the last statement in the new block.  This may
2790     // create new blocks as the condition may contain control-flow.  Any newly
2791     // created blocks will be pointed to be "Block".
2792     LastBlock = addStmt(I->getCond());
2793 
2794     // If the IfStmt contains a condition variable, add it and its
2795     // initializer to the CFG.
2796     if (const DeclStmt* DS = I->getConditionVariableDeclStmt()) {
2797       autoCreateBlock();
2798       LastBlock = addStmt(const_cast<DeclStmt *>(DS));
2799     }
2800   }
2801 
2802   // Finally, if the IfStmt contains a C++17 init-stmt, add it to the CFG.
2803   if (Stmt *Init = I->getInit()) {
2804     autoCreateBlock();
2805     LastBlock = addStmt(Init);
2806   }
2807 
2808   return LastBlock;
2809 }
2810 
2811 CFGBlock *CFGBuilder::VisitReturnStmt(ReturnStmt *R) {
2812   // If we were in the middle of a block we stop processing that block.
2813   //
2814   // NOTE: If a "return" appears in the middle of a block, this means that the
2815   //       code afterwards is DEAD (unreachable).  We still keep a basic block
2816   //       for that code; a simple "mark-and-sweep" from the entry block will be
2817   //       able to report such dead blocks.
2818 
2819   // Create the new block.
2820   Block = createBlock(false);
2821 
2822   addAutomaticObjHandling(ScopePos, LocalScope::const_iterator(), R);
2823 
2824   findConstructionContexts(
2825       ConstructionContextLayer::create(cfg->getBumpVectorContext(), R),
2826       R->getRetValue());
2827 
2828   // If the one of the destructors does not return, we already have the Exit
2829   // block as a successor.
2830   if (!Block->hasNoReturnElement())
2831     addSuccessor(Block, &cfg->getExit());
2832 
2833   // Add the return statement to the block.  This may create new blocks if R
2834   // contains control-flow (short-circuit operations).
2835   return VisitStmt(R, AddStmtChoice::AlwaysAdd);
2836 }
2837 
2838 CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) {
2839   // SEHExceptStmt are treated like labels, so they are the first statement in a
2840   // block.
2841 
2842   // Save local scope position because in case of exception variable ScopePos
2843   // won't be restored when traversing AST.
2844   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
2845 
2846   addStmt(ES->getBlock());
2847   CFGBlock *SEHExceptBlock = Block;
2848   if (!SEHExceptBlock)
2849     SEHExceptBlock = createBlock();
2850 
2851   appendStmt(SEHExceptBlock, ES);
2852 
2853   // Also add the SEHExceptBlock as a label, like with regular labels.
2854   SEHExceptBlock->setLabel(ES);
2855 
2856   // Bail out if the CFG is bad.
2857   if (badCFG)
2858     return nullptr;
2859 
2860   // We set Block to NULL to allow lazy creation of a new block (if necessary).
2861   Block = nullptr;
2862 
2863   return SEHExceptBlock;
2864 }
2865 
2866 CFGBlock *CFGBuilder::VisitSEHFinallyStmt(SEHFinallyStmt *FS) {
2867   return VisitCompoundStmt(FS->getBlock());
2868 }
2869 
2870 CFGBlock *CFGBuilder::VisitSEHLeaveStmt(SEHLeaveStmt *LS) {
2871   // "__leave" is a control-flow statement.  Thus we stop processing the current
2872   // block.
2873   if (badCFG)
2874     return nullptr;
2875 
2876   // Now create a new block that ends with the __leave statement.
2877   Block = createBlock(false);
2878   Block->setTerminator(LS);
2879 
2880   // If there is no target for the __leave, then we are looking at an incomplete
2881   // AST.  This means that the CFG cannot be constructed.
2882   if (SEHLeaveJumpTarget.block) {
2883     addAutomaticObjHandling(ScopePos, SEHLeaveJumpTarget.scopePosition, LS);
2884     addSuccessor(Block, SEHLeaveJumpTarget.block);
2885   } else
2886     badCFG = true;
2887 
2888   return Block;
2889 }
2890 
2891 CFGBlock *CFGBuilder::VisitSEHTryStmt(SEHTryStmt *Terminator) {
2892   // "__try"/"__except"/"__finally" is a control-flow statement.  Thus we stop
2893   // processing the current block.
2894   CFGBlock *SEHTrySuccessor = nullptr;
2895 
2896   if (Block) {
2897     if (badCFG)
2898       return nullptr;
2899     SEHTrySuccessor = Block;
2900   } else SEHTrySuccessor = Succ;
2901 
2902   // FIXME: Implement __finally support.
2903   if (Terminator->getFinallyHandler())
2904     return NYS();
2905 
2906   CFGBlock *PrevSEHTryTerminatedBlock = TryTerminatedBlock;
2907 
2908   // Create a new block that will contain the __try statement.
2909   CFGBlock *NewTryTerminatedBlock = createBlock(false);
2910 
2911   // Add the terminator in the __try block.
2912   NewTryTerminatedBlock->setTerminator(Terminator);
2913 
2914   if (SEHExceptStmt *Except = Terminator->getExceptHandler()) {
2915     // The code after the try is the implicit successor if there's an __except.
2916     Succ = SEHTrySuccessor;
2917     Block = nullptr;
2918     CFGBlock *ExceptBlock = VisitSEHExceptStmt(Except);
2919     if (!ExceptBlock)
2920       return nullptr;
2921     // Add this block to the list of successors for the block with the try
2922     // statement.
2923     addSuccessor(NewTryTerminatedBlock, ExceptBlock);
2924   }
2925   if (PrevSEHTryTerminatedBlock)
2926     addSuccessor(NewTryTerminatedBlock, PrevSEHTryTerminatedBlock);
2927   else
2928     addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
2929 
2930   // The code after the try is the implicit successor.
2931   Succ = SEHTrySuccessor;
2932 
2933   // Save the current "__try" context.
2934   SaveAndRestore<CFGBlock *> save_try(TryTerminatedBlock,
2935                                       NewTryTerminatedBlock);
2936   cfg->addTryDispatchBlock(TryTerminatedBlock);
2937 
2938   // Save the current value for the __leave target.
2939   // All __leaves should go to the code following the __try
2940   // (FIXME: or if the __try has a __finally, to the __finally.)
2941   SaveAndRestore<JumpTarget> save_break(SEHLeaveJumpTarget);
2942   SEHLeaveJumpTarget = JumpTarget(SEHTrySuccessor, ScopePos);
2943 
2944   assert(Terminator->getTryBlock() && "__try must contain a non-NULL body");
2945   Block = nullptr;
2946   return addStmt(Terminator->getTryBlock());
2947 }
2948 
2949 CFGBlock *CFGBuilder::VisitLabelStmt(LabelStmt *L) {
2950   // Get the block of the labeled statement.  Add it to our map.
2951   addStmt(L->getSubStmt());
2952   CFGBlock *LabelBlock = Block;
2953 
2954   if (!LabelBlock)              // This can happen when the body is empty, i.e.
2955     LabelBlock = createBlock(); // scopes that only contains NullStmts.
2956 
2957   assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
2958          "label already in map");
2959   LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
2960 
2961   // Labels partition blocks, so this is the end of the basic block we were
2962   // processing (L is the block's label).  Because this is label (and we have
2963   // already processed the substatement) there is no extra control-flow to worry
2964   // about.
2965   LabelBlock->setLabel(L);
2966   if (badCFG)
2967     return nullptr;
2968 
2969   // We set Block to NULL to allow lazy creation of a new block (if necessary);
2970   Block = nullptr;
2971 
2972   // This block is now the implicit successor of other blocks.
2973   Succ = LabelBlock;
2974 
2975   return LabelBlock;
2976 }
2977 
2978 CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) {
2979   CFGBlock *LastBlock = VisitNoRecurse(E, asc);
2980   for (const BlockDecl::Capture &CI : E->getBlockDecl()->captures()) {
2981     if (Expr *CopyExpr = CI.getCopyExpr()) {
2982       CFGBlock *Tmp = Visit(CopyExpr);
2983       if (Tmp)
2984         LastBlock = Tmp;
2985     }
2986   }
2987   return LastBlock;
2988 }
2989 
2990 CFGBlock *CFGBuilder::VisitLambdaExpr(LambdaExpr *E, AddStmtChoice asc) {
2991   CFGBlock *LastBlock = VisitNoRecurse(E, asc);
2992   for (LambdaExpr::capture_init_iterator it = E->capture_init_begin(),
2993        et = E->capture_init_end(); it != et; ++it) {
2994     if (Expr *Init = *it) {
2995       CFGBlock *Tmp = Visit(Init);
2996       if (Tmp)
2997         LastBlock = Tmp;
2998     }
2999   }
3000   return LastBlock;
3001 }
3002 
3003 CFGBlock *CFGBuilder::VisitGotoStmt(GotoStmt *G) {
3004   // Goto is a control-flow statement.  Thus we stop processing the current
3005   // block and create a new one.
3006 
3007   Block = createBlock(false);
3008   Block->setTerminator(G);
3009 
3010   // If we already know the mapping to the label block add the successor now.
3011   LabelMapTy::iterator I = LabelMap.find(G->getLabel());
3012 
3013   if (I == LabelMap.end())
3014     // We will need to backpatch this block later.
3015     BackpatchBlocks.push_back(JumpSource(Block, ScopePos));
3016   else {
3017     JumpTarget JT = I->second;
3018     addAutomaticObjHandling(ScopePos, JT.scopePosition, G);
3019     addSuccessor(Block, JT.block);
3020   }
3021 
3022   return Block;
3023 }
3024 
3025 CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) {
3026   CFGBlock *LoopSuccessor = nullptr;
3027 
3028   // Save local scope position because in case of condition variable ScopePos
3029   // won't be restored when traversing AST.
3030   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3031 
3032   // Create local scope for init statement and possible condition variable.
3033   // Add destructor for init statement and condition variable.
3034   // Store scope position for continue statement.
3035   if (Stmt *Init = F->getInit())
3036     addLocalScopeForStmt(Init);
3037   LocalScope::const_iterator LoopBeginScopePos = ScopePos;
3038 
3039   if (VarDecl *VD = F->getConditionVariable())
3040     addLocalScopeForVarDecl(VD);
3041   LocalScope::const_iterator ContinueScopePos = ScopePos;
3042 
3043   addAutomaticObjHandling(ScopePos, save_scope_pos.get(), F);
3044 
3045   addLoopExit(F);
3046 
3047   // "for" is a control-flow statement.  Thus we stop processing the current
3048   // block.
3049   if (Block) {
3050     if (badCFG)
3051       return nullptr;
3052     LoopSuccessor = Block;
3053   } else
3054     LoopSuccessor = Succ;
3055 
3056   // Save the current value for the break targets.
3057   // All breaks should go to the code following the loop.
3058   SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
3059   BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
3060 
3061   CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
3062 
3063   // Now create the loop body.
3064   {
3065     assert(F->getBody());
3066 
3067     // Save the current values for Block, Succ, continue and break targets.
3068     SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3069     SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
3070 
3071     // Create an empty block to represent the transition block for looping back
3072     // to the head of the loop.  If we have increment code, it will
3073     // go in this block as well.
3074     Block = Succ = TransitionBlock = createBlock(false);
3075     TransitionBlock->setLoopTarget(F);
3076 
3077     if (Stmt *I = F->getInc()) {
3078       // Generate increment code in its own basic block.  This is the target of
3079       // continue statements.
3080       Succ = addStmt(I);
3081     }
3082 
3083     // Finish up the increment (or empty) block if it hasn't been already.
3084     if (Block) {
3085       assert(Block == Succ);
3086       if (badCFG)
3087         return nullptr;
3088       Block = nullptr;
3089     }
3090 
3091    // The starting block for the loop increment is the block that should
3092    // represent the 'loop target' for looping back to the start of the loop.
3093    ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
3094    ContinueJumpTarget.block->setLoopTarget(F);
3095 
3096     // Loop body should end with destructor of Condition variable (if any).
3097    addAutomaticObjHandling(ScopePos, LoopBeginScopePos, F);
3098 
3099     // If body is not a compound statement create implicit scope
3100     // and add destructors.
3101     if (!isa<CompoundStmt>(F->getBody()))
3102       addLocalScopeAndDtors(F->getBody());
3103 
3104     // Now populate the body block, and in the process create new blocks as we
3105     // walk the body of the loop.
3106     BodyBlock = addStmt(F->getBody());
3107 
3108     if (!BodyBlock) {
3109       // In the case of "for (...;...;...);" we can have a null BodyBlock.
3110       // Use the continue jump target as the proxy for the body.
3111       BodyBlock = ContinueJumpTarget.block;
3112     }
3113     else if (badCFG)
3114       return nullptr;
3115   }
3116 
3117   // Because of short-circuit evaluation, the condition of the loop can span
3118   // multiple basic blocks.  Thus we need the "Entry" and "Exit" blocks that
3119   // evaluate the condition.
3120   CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
3121 
3122   do {
3123     Expr *C = F->getCond();
3124     SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3125 
3126     // Specially handle logical operators, which have a slightly
3127     // more optimal CFG representation.
3128     if (BinaryOperator *Cond =
3129             dyn_cast_or_null<BinaryOperator>(C ? C->IgnoreParens() : nullptr))
3130       if (Cond->isLogicalOp()) {
3131         std::tie(EntryConditionBlock, ExitConditionBlock) =
3132           VisitLogicalOperator(Cond, F, BodyBlock, LoopSuccessor);
3133         break;
3134       }
3135 
3136     // The default case when not handling logical operators.
3137     EntryConditionBlock = ExitConditionBlock = createBlock(false);
3138     ExitConditionBlock->setTerminator(F);
3139 
3140     // See if this is a known constant.
3141     TryResult KnownVal(true);
3142 
3143     if (C) {
3144       // Now add the actual condition to the condition block.
3145       // Because the condition itself may contain control-flow, new blocks may
3146       // be created.  Thus we update "Succ" after adding the condition.
3147       Block = ExitConditionBlock;
3148       EntryConditionBlock = addStmt(C);
3149 
3150       // If this block contains a condition variable, add both the condition
3151       // variable and initializer to the CFG.
3152       if (VarDecl *VD = F->getConditionVariable()) {
3153         if (Expr *Init = VD->getInit()) {
3154           autoCreateBlock();
3155           appendStmt(Block, F->getConditionVariableDeclStmt());
3156           EntryConditionBlock = addStmt(Init);
3157           assert(Block == EntryConditionBlock);
3158           maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C);
3159         }
3160       }
3161 
3162       if (Block && badCFG)
3163         return nullptr;
3164 
3165       KnownVal = tryEvaluateBool(C);
3166     }
3167 
3168     // Add the loop body entry as a successor to the condition.
3169     addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
3170     // Link up the condition block with the code that follows the loop.  (the
3171     // false branch).
3172     addSuccessor(ExitConditionBlock,
3173                  KnownVal.isTrue() ? nullptr : LoopSuccessor);
3174   } while (false);
3175 
3176   // Link up the loop-back block to the entry condition block.
3177   addSuccessor(TransitionBlock, EntryConditionBlock);
3178 
3179   // The condition block is the implicit successor for any code above the loop.
3180   Succ = EntryConditionBlock;
3181 
3182   // If the loop contains initialization, create a new block for those
3183   // statements.  This block can also contain statements that precede the loop.
3184   if (Stmt *I = F->getInit()) {
3185     SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3186     ScopePos = LoopBeginScopePos;
3187     Block = createBlock();
3188     return addStmt(I);
3189   }
3190 
3191   // There is no loop initialization.  We are thus basically a while loop.
3192   // NULL out Block to force lazy block construction.
3193   Block = nullptr;
3194   Succ = EntryConditionBlock;
3195   return EntryConditionBlock;
3196 }
3197 
3198 CFGBlock *
3199 CFGBuilder::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *MTE,
3200                                           AddStmtChoice asc) {
3201   findConstructionContexts(
3202       ConstructionContextLayer::create(cfg->getBumpVectorContext(), MTE),
3203       MTE->getTemporary());
3204 
3205   return VisitStmt(MTE, asc);
3206 }
3207 
3208 CFGBlock *CFGBuilder::VisitMemberExpr(MemberExpr *M, AddStmtChoice asc) {
3209   if (asc.alwaysAdd(*this, M)) {
3210     autoCreateBlock();
3211     appendStmt(Block, M);
3212   }
3213   return Visit(M->getBase());
3214 }
3215 
3216 CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
3217   // Objective-C fast enumeration 'for' statements:
3218   //  http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
3219   //
3220   //  for ( Type newVariable in collection_expression ) { statements }
3221   //
3222   //  becomes:
3223   //
3224   //   prologue:
3225   //     1. collection_expression
3226   //     T. jump to loop_entry
3227   //   loop_entry:
3228   //     1. side-effects of element expression
3229   //     1. ObjCForCollectionStmt [performs binding to newVariable]
3230   //     T. ObjCForCollectionStmt  TB, FB  [jumps to TB if newVariable != nil]
3231   //   TB:
3232   //     statements
3233   //     T. jump to loop_entry
3234   //   FB:
3235   //     what comes after
3236   //
3237   //  and
3238   //
3239   //  Type existingItem;
3240   //  for ( existingItem in expression ) { statements }
3241   //
3242   //  becomes:
3243   //
3244   //   the same with newVariable replaced with existingItem; the binding works
3245   //   the same except that for one ObjCForCollectionStmt::getElement() returns
3246   //   a DeclStmt and the other returns a DeclRefExpr.
3247 
3248   CFGBlock *LoopSuccessor = nullptr;
3249 
3250   if (Block) {
3251     if (badCFG)
3252       return nullptr;
3253     LoopSuccessor = Block;
3254     Block = nullptr;
3255   } else
3256     LoopSuccessor = Succ;
3257 
3258   // Build the condition blocks.
3259   CFGBlock *ExitConditionBlock = createBlock(false);
3260 
3261   // Set the terminator for the "exit" condition block.
3262   ExitConditionBlock->setTerminator(S);
3263 
3264   // The last statement in the block should be the ObjCForCollectionStmt, which
3265   // performs the actual binding to 'element' and determines if there are any
3266   // more items in the collection.
3267   appendStmt(ExitConditionBlock, S);
3268   Block = ExitConditionBlock;
3269 
3270   // Walk the 'element' expression to see if there are any side-effects.  We
3271   // generate new blocks as necessary.  We DON'T add the statement by default to
3272   // the CFG unless it contains control-flow.
3273   CFGBlock *EntryConditionBlock = Visit(S->getElement(),
3274                                         AddStmtChoice::NotAlwaysAdd);
3275   if (Block) {
3276     if (badCFG)
3277       return nullptr;
3278     Block = nullptr;
3279   }
3280 
3281   // The condition block is the implicit successor for the loop body as well as
3282   // any code above the loop.
3283   Succ = EntryConditionBlock;
3284 
3285   // Now create the true branch.
3286   {
3287     // Save the current values for Succ, continue and break targets.
3288     SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3289     SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
3290                                save_break(BreakJumpTarget);
3291 
3292     // Add an intermediate block between the BodyBlock and the
3293     // EntryConditionBlock to represent the "loop back" transition, for looping
3294     // back to the head of the loop.
3295     CFGBlock *LoopBackBlock = nullptr;
3296     Succ = LoopBackBlock = createBlock();
3297     LoopBackBlock->setLoopTarget(S);
3298 
3299     BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
3300     ContinueJumpTarget = JumpTarget(Succ, ScopePos);
3301 
3302     CFGBlock *BodyBlock = addStmt(S->getBody());
3303 
3304     if (!BodyBlock)
3305       BodyBlock = ContinueJumpTarget.block; // can happen for "for (X in Y) ;"
3306     else if (Block) {
3307       if (badCFG)
3308         return nullptr;
3309     }
3310 
3311     // This new body block is a successor to our "exit" condition block.
3312     addSuccessor(ExitConditionBlock, BodyBlock);
3313   }
3314 
3315   // Link up the condition block with the code that follows the loop.
3316   // (the false branch).
3317   addSuccessor(ExitConditionBlock, LoopSuccessor);
3318 
3319   // Now create a prologue block to contain the collection expression.
3320   Block = createBlock();
3321   return addStmt(S->getCollection());
3322 }
3323 
3324 CFGBlock *CFGBuilder::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) {
3325   // Inline the body.
3326   return addStmt(S->getSubStmt());
3327   // TODO: consider adding cleanups for the end of @autoreleasepool scope.
3328 }
3329 
3330 CFGBlock *CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
3331   // FIXME: Add locking 'primitives' to CFG for @synchronized.
3332 
3333   // Inline the body.
3334   CFGBlock *SyncBlock = addStmt(S->getSynchBody());
3335 
3336   // The sync body starts its own basic block.  This makes it a little easier
3337   // for diagnostic clients.
3338   if (SyncBlock) {
3339     if (badCFG)
3340       return nullptr;
3341 
3342     Block = nullptr;
3343     Succ = SyncBlock;
3344   }
3345 
3346   // Add the @synchronized to the CFG.
3347   autoCreateBlock();
3348   appendStmt(Block, S);
3349 
3350   // Inline the sync expression.
3351   return addStmt(S->getSynchExpr());
3352 }
3353 
3354 CFGBlock *CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
3355   // FIXME
3356   return NYS();
3357 }
3358 
3359 CFGBlock *CFGBuilder::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
3360   autoCreateBlock();
3361 
3362   // Add the PseudoObject as the last thing.
3363   appendStmt(Block, E);
3364 
3365   CFGBlock *lastBlock = Block;
3366 
3367   // Before that, evaluate all of the semantics in order.  In
3368   // CFG-land, that means appending them in reverse order.
3369   for (unsigned i = E->getNumSemanticExprs(); i != 0; ) {
3370     Expr *Semantic = E->getSemanticExpr(--i);
3371 
3372     // If the semantic is an opaque value, we're being asked to bind
3373     // it to its source expression.
3374     if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic))
3375       Semantic = OVE->getSourceExpr();
3376 
3377     if (CFGBlock *B = Visit(Semantic))
3378       lastBlock = B;
3379   }
3380 
3381   return lastBlock;
3382 }
3383 
3384 CFGBlock *CFGBuilder::VisitWhileStmt(WhileStmt *W) {
3385   CFGBlock *LoopSuccessor = nullptr;
3386 
3387   // Save local scope position because in case of condition variable ScopePos
3388   // won't be restored when traversing AST.
3389   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3390 
3391   // Create local scope for possible condition variable.
3392   // Store scope position for continue statement.
3393   LocalScope::const_iterator LoopBeginScopePos = ScopePos;
3394   if (VarDecl *VD = W->getConditionVariable()) {
3395     addLocalScopeForVarDecl(VD);
3396     addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
3397   }
3398   addLoopExit(W);
3399 
3400   // "while" is a control-flow statement.  Thus we stop processing the current
3401   // block.
3402   if (Block) {
3403     if (badCFG)
3404       return nullptr;
3405     LoopSuccessor = Block;
3406     Block = nullptr;
3407   } else {
3408     LoopSuccessor = Succ;
3409   }
3410 
3411   CFGBlock *BodyBlock = nullptr, *TransitionBlock = nullptr;
3412 
3413   // Process the loop body.
3414   {
3415     assert(W->getBody());
3416 
3417     // Save the current values for Block, Succ, continue and break targets.
3418     SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3419     SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
3420                                save_break(BreakJumpTarget);
3421 
3422     // Create an empty block to represent the transition block for looping back
3423     // to the head of the loop.
3424     Succ = TransitionBlock = createBlock(false);
3425     TransitionBlock->setLoopTarget(W);
3426     ContinueJumpTarget = JumpTarget(Succ, LoopBeginScopePos);
3427 
3428     // All breaks should go to the code following the loop.
3429     BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
3430 
3431     // Loop body should end with destructor of Condition variable (if any).
3432     addAutomaticObjHandling(ScopePos, LoopBeginScopePos, W);
3433 
3434     // If body is not a compound statement create implicit scope
3435     // and add destructors.
3436     if (!isa<CompoundStmt>(W->getBody()))
3437       addLocalScopeAndDtors(W->getBody());
3438 
3439     // Create the body.  The returned block is the entry to the loop body.
3440     BodyBlock = addStmt(W->getBody());
3441 
3442     if (!BodyBlock)
3443       BodyBlock = ContinueJumpTarget.block; // can happen for "while(...) ;"
3444     else if (Block && badCFG)
3445       return nullptr;
3446   }
3447 
3448   // Because of short-circuit evaluation, the condition of the loop can span
3449   // multiple basic blocks.  Thus we need the "Entry" and "Exit" blocks that
3450   // evaluate the condition.
3451   CFGBlock *EntryConditionBlock = nullptr, *ExitConditionBlock = nullptr;
3452 
3453   do {
3454     Expr *C = W->getCond();
3455 
3456     // Specially handle logical operators, which have a slightly
3457     // more optimal CFG representation.
3458     if (BinaryOperator *Cond = dyn_cast<BinaryOperator>(C->IgnoreParens()))
3459       if (Cond->isLogicalOp()) {
3460         std::tie(EntryConditionBlock, ExitConditionBlock) =
3461             VisitLogicalOperator(Cond, W, BodyBlock, LoopSuccessor);
3462         break;
3463       }
3464 
3465     // The default case when not handling logical operators.
3466     ExitConditionBlock = createBlock(false);
3467     ExitConditionBlock->setTerminator(W);
3468 
3469     // Now add the actual condition to the condition block.
3470     // Because the condition itself may contain control-flow, new blocks may
3471     // be created.  Thus we update "Succ" after adding the condition.
3472     Block = ExitConditionBlock;
3473     Block = EntryConditionBlock = addStmt(C);
3474 
3475     // If this block contains a condition variable, add both the condition
3476     // variable and initializer to the CFG.
3477     if (VarDecl *VD = W->getConditionVariable()) {
3478       if (Expr *Init = VD->getInit()) {
3479         autoCreateBlock();
3480         appendStmt(Block, W->getConditionVariableDeclStmt());
3481         EntryConditionBlock = addStmt(Init);
3482         assert(Block == EntryConditionBlock);
3483         maybeAddScopeBeginForVarDecl(EntryConditionBlock, VD, C);
3484       }
3485     }
3486 
3487     if (Block && badCFG)
3488       return nullptr;
3489 
3490     // See if this is a known constant.
3491     const TryResult& KnownVal = tryEvaluateBool(C);
3492 
3493     // Add the loop body entry as a successor to the condition.
3494     addSuccessor(ExitConditionBlock, KnownVal.isFalse() ? nullptr : BodyBlock);
3495     // Link up the condition block with the code that follows the loop.  (the
3496     // false branch).
3497     addSuccessor(ExitConditionBlock,
3498                  KnownVal.isTrue() ? nullptr : LoopSuccessor);
3499   } while(false);
3500 
3501   // Link up the loop-back block to the entry condition block.
3502   addSuccessor(TransitionBlock, EntryConditionBlock);
3503 
3504   // There can be no more statements in the condition block since we loop back
3505   // to this block.  NULL out Block to force lazy creation of another block.
3506   Block = nullptr;
3507 
3508   // Return the condition block, which is the dominating block for the loop.
3509   Succ = EntryConditionBlock;
3510   return EntryConditionBlock;
3511 }
3512 
3513 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
3514   // FIXME: For now we pretend that @catch and the code it contains does not
3515   //  exit.
3516   return Block;
3517 }
3518 
3519 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
3520   // FIXME: This isn't complete.  We basically treat @throw like a return
3521   //  statement.
3522 
3523   // If we were in the middle of a block we stop processing that block.
3524   if (badCFG)
3525     return nullptr;
3526 
3527   // Create the new block.
3528   Block = createBlock(false);
3529 
3530   // The Exit block is the only successor.
3531   addSuccessor(Block, &cfg->getExit());
3532 
3533   // Add the statement to the block.  This may create new blocks if S contains
3534   // control-flow (short-circuit operations).
3535   return VisitStmt(S, AddStmtChoice::AlwaysAdd);
3536 }
3537 
3538 CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) {
3539   // If we were in the middle of a block we stop processing that block.
3540   if (badCFG)
3541     return nullptr;
3542 
3543   // Create the new block.
3544   Block = createBlock(false);
3545 
3546   if (TryTerminatedBlock)
3547     // The current try statement is the only successor.
3548     addSuccessor(Block, TryTerminatedBlock);
3549   else
3550     // otherwise the Exit block is the only successor.
3551     addSuccessor(Block, &cfg->getExit());
3552 
3553   // Add the statement to the block.  This may create new blocks if S contains
3554   // control-flow (short-circuit operations).
3555   return VisitStmt(T, AddStmtChoice::AlwaysAdd);
3556 }
3557 
3558 CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
3559   CFGBlock *LoopSuccessor = nullptr;
3560 
3561   addLoopExit(D);
3562 
3563   // "do...while" is a control-flow statement.  Thus we stop processing the
3564   // current block.
3565   if (Block) {
3566     if (badCFG)
3567       return nullptr;
3568     LoopSuccessor = Block;
3569   } else
3570     LoopSuccessor = Succ;
3571 
3572   // Because of short-circuit evaluation, the condition of the loop can span
3573   // multiple basic blocks.  Thus we need the "Entry" and "Exit" blocks that
3574   // evaluate the condition.
3575   CFGBlock *ExitConditionBlock = createBlock(false);
3576   CFGBlock *EntryConditionBlock = ExitConditionBlock;
3577 
3578   // Set the terminator for the "exit" condition block.
3579   ExitConditionBlock->setTerminator(D);
3580 
3581   // Now add the actual condition to the condition block.  Because the condition
3582   // itself may contain control-flow, new blocks may be created.
3583   if (Stmt *C = D->getCond()) {
3584     Block = ExitConditionBlock;
3585     EntryConditionBlock = addStmt(C);
3586     if (Block) {
3587       if (badCFG)
3588         return nullptr;
3589     }
3590   }
3591 
3592   // The condition block is the implicit successor for the loop body.
3593   Succ = EntryConditionBlock;
3594 
3595   // See if this is a known constant.
3596   const TryResult &KnownVal = tryEvaluateBool(D->getCond());
3597 
3598   // Process the loop body.
3599   CFGBlock *BodyBlock = nullptr;
3600   {
3601     assert(D->getBody());
3602 
3603     // Save the current values for Block, Succ, and continue and break targets
3604     SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
3605     SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget),
3606         save_break(BreakJumpTarget);
3607 
3608     // All continues within this loop should go to the condition block
3609     ContinueJumpTarget = JumpTarget(EntryConditionBlock, ScopePos);
3610 
3611     // All breaks should go to the code following the loop.
3612     BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
3613 
3614     // NULL out Block to force lazy instantiation of blocks for the body.
3615     Block = nullptr;
3616 
3617     // If body is not a compound statement create implicit scope
3618     // and add destructors.
3619     if (!isa<CompoundStmt>(D->getBody()))
3620       addLocalScopeAndDtors(D->getBody());
3621 
3622     // Create the body.  The returned block is the entry to the loop body.
3623     BodyBlock = addStmt(D->getBody());
3624 
3625     if (!BodyBlock)
3626       BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
3627     else if (Block) {
3628       if (badCFG)
3629         return nullptr;
3630     }
3631 
3632     // Add an intermediate block between the BodyBlock and the
3633     // ExitConditionBlock to represent the "loop back" transition.  Create an
3634     // empty block to represent the transition block for looping back to the
3635     // head of the loop.
3636     // FIXME: Can we do this more efficiently without adding another block?
3637     Block = nullptr;
3638     Succ = BodyBlock;
3639     CFGBlock *LoopBackBlock = createBlock();
3640     LoopBackBlock->setLoopTarget(D);
3641 
3642     if (!KnownVal.isFalse())
3643       // Add the loop body entry as a successor to the condition.
3644       addSuccessor(ExitConditionBlock, LoopBackBlock);
3645     else
3646       addSuccessor(ExitConditionBlock, nullptr);
3647   }
3648 
3649   // Link up the condition block with the code that follows the loop.
3650   // (the false branch).
3651   addSuccessor(ExitConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
3652 
3653   // There can be no more statements in the body block(s) since we loop back to
3654   // the body.  NULL out Block to force lazy creation of another block.
3655   Block = nullptr;
3656 
3657   // Return the loop body, which is the dominating block for the loop.
3658   Succ = BodyBlock;
3659   return BodyBlock;
3660 }
3661 
3662 CFGBlock *CFGBuilder::VisitContinueStmt(ContinueStmt *C) {
3663   // "continue" is a control-flow statement.  Thus we stop processing the
3664   // current block.
3665   if (badCFG)
3666     return nullptr;
3667 
3668   // Now create a new block that ends with the continue statement.
3669   Block = createBlock(false);
3670   Block->setTerminator(C);
3671 
3672   // If there is no target for the continue, then we are looking at an
3673   // incomplete AST.  This means the CFG cannot be constructed.
3674   if (ContinueJumpTarget.block) {
3675     addAutomaticObjHandling(ScopePos, ContinueJumpTarget.scopePosition, C);
3676     addSuccessor(Block, ContinueJumpTarget.block);
3677   } else
3678     badCFG = true;
3679 
3680   return Block;
3681 }
3682 
3683 CFGBlock *CFGBuilder::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E,
3684                                                     AddStmtChoice asc) {
3685   if (asc.alwaysAdd(*this, E)) {
3686     autoCreateBlock();
3687     appendStmt(Block, E);
3688   }
3689 
3690   // VLA types have expressions that must be evaluated.
3691   CFGBlock *lastBlock = Block;
3692 
3693   if (E->isArgumentType()) {
3694     for (const VariableArrayType *VA =FindVA(E->getArgumentType().getTypePtr());
3695          VA != nullptr; VA = FindVA(VA->getElementType().getTypePtr()))
3696       lastBlock = addStmt(VA->getSizeExpr());
3697   }
3698   return lastBlock;
3699 }
3700 
3701 /// VisitStmtExpr - Utility method to handle (nested) statement
3702 ///  expressions (a GCC extension).
3703 CFGBlock *CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
3704   if (asc.alwaysAdd(*this, SE)) {
3705     autoCreateBlock();
3706     appendStmt(Block, SE);
3707   }
3708   return VisitCompoundStmt(SE->getSubStmt());
3709 }
3710 
3711 CFGBlock *CFGBuilder::VisitSwitchStmt(SwitchStmt *Terminator) {
3712   // "switch" is a control-flow statement.  Thus we stop processing the current
3713   // block.
3714   CFGBlock *SwitchSuccessor = nullptr;
3715 
3716   // Save local scope position because in case of condition variable ScopePos
3717   // won't be restored when traversing AST.
3718   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
3719 
3720   // Create local scope for C++17 switch init-stmt if one exists.
3721   if (Stmt *Init = Terminator->getInit())
3722     addLocalScopeForStmt(Init);
3723 
3724   // Create local scope for possible condition variable.
3725   // Store scope position. Add implicit destructor.
3726   if (VarDecl *VD = Terminator->getConditionVariable())
3727     addLocalScopeForVarDecl(VD);
3728 
3729   addAutomaticObjHandling(ScopePos, save_scope_pos.get(), Terminator);
3730 
3731   if (Block) {
3732     if (badCFG)
3733       return nullptr;
3734     SwitchSuccessor = Block;
3735   } else SwitchSuccessor = Succ;
3736 
3737   // Save the current "switch" context.
3738   SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
3739                             save_default(DefaultCaseBlock);
3740   SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
3741 
3742   // Set the "default" case to be the block after the switch statement.  If the
3743   // switch statement contains a "default:", this value will be overwritten with
3744   // the block for that code.
3745   DefaultCaseBlock = SwitchSuccessor;
3746 
3747   // Create a new block that will contain the switch statement.
3748   SwitchTerminatedBlock = createBlock(false);
3749 
3750   // Now process the switch body.  The code after the switch is the implicit
3751   // successor.
3752   Succ = SwitchSuccessor;
3753   BreakJumpTarget = JumpTarget(SwitchSuccessor, ScopePos);
3754 
3755   // When visiting the body, the case statements should automatically get linked
3756   // up to the switch.  We also don't keep a pointer to the body, since all
3757   // control-flow from the switch goes to case/default statements.
3758   assert(Terminator->getBody() && "switch must contain a non-NULL body");
3759   Block = nullptr;
3760 
3761   // For pruning unreachable case statements, save the current state
3762   // for tracking the condition value.
3763   SaveAndRestore<bool> save_switchExclusivelyCovered(switchExclusivelyCovered,
3764                                                      false);
3765 
3766   // Determine if the switch condition can be explicitly evaluated.
3767   assert(Terminator->getCond() && "switch condition must be non-NULL");
3768   Expr::EvalResult result;
3769   bool b = tryEvaluate(Terminator->getCond(), result);
3770   SaveAndRestore<Expr::EvalResult*> save_switchCond(switchCond,
3771                                                     b ? &result : nullptr);
3772 
3773   // If body is not a compound statement create implicit scope
3774   // and add destructors.
3775   if (!isa<CompoundStmt>(Terminator->getBody()))
3776     addLocalScopeAndDtors(Terminator->getBody());
3777 
3778   addStmt(Terminator->getBody());
3779   if (Block) {
3780     if (badCFG)
3781       return nullptr;
3782   }
3783 
3784   // If we have no "default:" case, the default transition is to the code
3785   // following the switch body.  Moreover, take into account if all the
3786   // cases of a switch are covered (e.g., switching on an enum value).
3787   //
3788   // Note: We add a successor to a switch that is considered covered yet has no
3789   //       case statements if the enumeration has no enumerators.
3790   bool SwitchAlwaysHasSuccessor = false;
3791   SwitchAlwaysHasSuccessor |= switchExclusivelyCovered;
3792   SwitchAlwaysHasSuccessor |= Terminator->isAllEnumCasesCovered() &&
3793                               Terminator->getSwitchCaseList();
3794   addSuccessor(SwitchTerminatedBlock, DefaultCaseBlock,
3795                !SwitchAlwaysHasSuccessor);
3796 
3797   // Add the terminator and condition in the switch block.
3798   SwitchTerminatedBlock->setTerminator(Terminator);
3799   Block = SwitchTerminatedBlock;
3800   CFGBlock *LastBlock = addStmt(Terminator->getCond());
3801 
3802   // If the SwitchStmt contains a condition variable, add both the
3803   // SwitchStmt and the condition variable initialization to the CFG.
3804   if (VarDecl *VD = Terminator->getConditionVariable()) {
3805     if (Expr *Init = VD->getInit()) {
3806       autoCreateBlock();
3807       appendStmt(Block, Terminator->getConditionVariableDeclStmt());
3808       LastBlock = addStmt(Init);
3809       maybeAddScopeBeginForVarDecl(LastBlock, VD, Init);
3810     }
3811   }
3812 
3813   // Finally, if the SwitchStmt contains a C++17 init-stmt, add it to the CFG.
3814   if (Stmt *Init = Terminator->getInit()) {
3815     autoCreateBlock();
3816     LastBlock = addStmt(Init);
3817   }
3818 
3819   return LastBlock;
3820 }
3821 
3822 static bool shouldAddCase(bool &switchExclusivelyCovered,
3823                           const Expr::EvalResult *switchCond,
3824                           const CaseStmt *CS,
3825                           ASTContext &Ctx) {
3826   if (!switchCond)
3827     return true;
3828 
3829   bool addCase = false;
3830 
3831   if (!switchExclusivelyCovered) {
3832     if (switchCond->Val.isInt()) {
3833       // Evaluate the LHS of the case value.
3834       const llvm::APSInt &lhsInt = CS->getLHS()->EvaluateKnownConstInt(Ctx);
3835       const llvm::APSInt &condInt = switchCond->Val.getInt();
3836 
3837       if (condInt == lhsInt) {
3838         addCase = true;
3839         switchExclusivelyCovered = true;
3840       }
3841       else if (condInt > lhsInt) {
3842         if (const Expr *RHS = CS->getRHS()) {
3843           // Evaluate the RHS of the case value.
3844           const llvm::APSInt &V2 = RHS->EvaluateKnownConstInt(Ctx);
3845           if (V2 >= condInt) {
3846             addCase = true;
3847             switchExclusivelyCovered = true;
3848           }
3849         }
3850       }
3851     }
3852     else
3853       addCase = true;
3854   }
3855   return addCase;
3856 }
3857 
3858 CFGBlock *CFGBuilder::VisitCaseStmt(CaseStmt *CS) {
3859   // CaseStmts are essentially labels, so they are the first statement in a
3860   // block.
3861   CFGBlock *TopBlock = nullptr, *LastBlock = nullptr;
3862 
3863   if (Stmt *Sub = CS->getSubStmt()) {
3864     // For deeply nested chains of CaseStmts, instead of doing a recursion
3865     // (which can blow out the stack), manually unroll and create blocks
3866     // along the way.
3867     while (isa<CaseStmt>(Sub)) {
3868       CFGBlock *currentBlock = createBlock(false);
3869       currentBlock->setLabel(CS);
3870 
3871       if (TopBlock)
3872         addSuccessor(LastBlock, currentBlock);
3873       else
3874         TopBlock = currentBlock;
3875 
3876       addSuccessor(SwitchTerminatedBlock,
3877                    shouldAddCase(switchExclusivelyCovered, switchCond,
3878                                  CS, *Context)
3879                    ? currentBlock : nullptr);
3880 
3881       LastBlock = currentBlock;
3882       CS = cast<CaseStmt>(Sub);
3883       Sub = CS->getSubStmt();
3884     }
3885 
3886     addStmt(Sub);
3887   }
3888 
3889   CFGBlock *CaseBlock = Block;
3890   if (!CaseBlock)
3891     CaseBlock = createBlock();
3892 
3893   // Cases statements partition blocks, so this is the top of the basic block we
3894   // were processing (the "case XXX:" is the label).
3895   CaseBlock->setLabel(CS);
3896 
3897   if (badCFG)
3898     return nullptr;
3899 
3900   // Add this block to the list of successors for the block with the switch
3901   // statement.
3902   assert(SwitchTerminatedBlock);
3903   addSuccessor(SwitchTerminatedBlock, CaseBlock,
3904                shouldAddCase(switchExclusivelyCovered, switchCond,
3905                              CS, *Context));
3906 
3907   // We set Block to NULL to allow lazy creation of a new block (if necessary)
3908   Block = nullptr;
3909 
3910   if (TopBlock) {
3911     addSuccessor(LastBlock, CaseBlock);
3912     Succ = TopBlock;
3913   } else {
3914     // This block is now the implicit successor of other blocks.
3915     Succ = CaseBlock;
3916   }
3917 
3918   return Succ;
3919 }
3920 
3921 CFGBlock *CFGBuilder::VisitDefaultStmt(DefaultStmt *Terminator) {
3922   if (Terminator->getSubStmt())
3923     addStmt(Terminator->getSubStmt());
3924 
3925   DefaultCaseBlock = Block;
3926 
3927   if (!DefaultCaseBlock)
3928     DefaultCaseBlock = createBlock();
3929 
3930   // Default statements partition blocks, so this is the top of the basic block
3931   // we were processing (the "default:" is the label).
3932   DefaultCaseBlock->setLabel(Terminator);
3933 
3934   if (badCFG)
3935     return nullptr;
3936 
3937   // Unlike case statements, we don't add the default block to the successors
3938   // for the switch statement immediately.  This is done when we finish
3939   // processing the switch statement.  This allows for the default case
3940   // (including a fall-through to the code after the switch statement) to always
3941   // be the last successor of a switch-terminated block.
3942 
3943   // We set Block to NULL to allow lazy creation of a new block (if necessary)
3944   Block = nullptr;
3945 
3946   // This block is now the implicit successor of other blocks.
3947   Succ = DefaultCaseBlock;
3948 
3949   return DefaultCaseBlock;
3950 }
3951 
3952 CFGBlock *CFGBuilder::VisitCXXTryStmt(CXXTryStmt *Terminator) {
3953   // "try"/"catch" is a control-flow statement.  Thus we stop processing the
3954   // current block.
3955   CFGBlock *TrySuccessor = nullptr;
3956 
3957   if (Block) {
3958     if (badCFG)
3959       return nullptr;
3960     TrySuccessor = Block;
3961   } else TrySuccessor = Succ;
3962 
3963   CFGBlock *PrevTryTerminatedBlock = TryTerminatedBlock;
3964 
3965   // Create a new block that will contain the try statement.
3966   CFGBlock *NewTryTerminatedBlock = createBlock(false);
3967   // Add the terminator in the try block.
3968   NewTryTerminatedBlock->setTerminator(Terminator);
3969 
3970   bool HasCatchAll = false;
3971   for (unsigned h = 0; h <Terminator->getNumHandlers(); ++h) {
3972     // The code after the try is the implicit successor.
3973     Succ = TrySuccessor;
3974     CXXCatchStmt *CS = Terminator->getHandler(h);
3975     if (CS->getExceptionDecl() == nullptr) {
3976       HasCatchAll = true;
3977     }
3978     Block = nullptr;
3979     CFGBlock *CatchBlock = VisitCXXCatchStmt(CS);
3980     if (!CatchBlock)
3981       return nullptr;
3982     // Add this block to the list of successors for the block with the try
3983     // statement.
3984     addSuccessor(NewTryTerminatedBlock, CatchBlock);
3985   }
3986   if (!HasCatchAll) {
3987     if (PrevTryTerminatedBlock)
3988       addSuccessor(NewTryTerminatedBlock, PrevTryTerminatedBlock);
3989     else
3990       addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
3991   }
3992 
3993   // The code after the try is the implicit successor.
3994   Succ = TrySuccessor;
3995 
3996   // Save the current "try" context.
3997   SaveAndRestore<CFGBlock*> save_try(TryTerminatedBlock, NewTryTerminatedBlock);
3998   cfg->addTryDispatchBlock(TryTerminatedBlock);
3999 
4000   assert(Terminator->getTryBlock() && "try must contain a non-NULL body");
4001   Block = nullptr;
4002   return addStmt(Terminator->getTryBlock());
4003 }
4004 
4005 CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) {
4006   // CXXCatchStmt are treated like labels, so they are the first statement in a
4007   // block.
4008 
4009   // Save local scope position because in case of exception variable ScopePos
4010   // won't be restored when traversing AST.
4011   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
4012 
4013   // Create local scope for possible exception variable.
4014   // Store scope position. Add implicit destructor.
4015   if (VarDecl *VD = CS->getExceptionDecl()) {
4016     LocalScope::const_iterator BeginScopePos = ScopePos;
4017     addLocalScopeForVarDecl(VD);
4018     addAutomaticObjHandling(ScopePos, BeginScopePos, CS);
4019   }
4020 
4021   if (CS->getHandlerBlock())
4022     addStmt(CS->getHandlerBlock());
4023 
4024   CFGBlock *CatchBlock = Block;
4025   if (!CatchBlock)
4026     CatchBlock = createBlock();
4027 
4028   // CXXCatchStmt is more than just a label.  They have semantic meaning
4029   // as well, as they implicitly "initialize" the catch variable.  Add
4030   // it to the CFG as a CFGElement so that the control-flow of these
4031   // semantics gets captured.
4032   appendStmt(CatchBlock, CS);
4033 
4034   // Also add the CXXCatchStmt as a label, to mirror handling of regular
4035   // labels.
4036   CatchBlock->setLabel(CS);
4037 
4038   // Bail out if the CFG is bad.
4039   if (badCFG)
4040     return nullptr;
4041 
4042   // We set Block to NULL to allow lazy creation of a new block (if necessary)
4043   Block = nullptr;
4044 
4045   return CatchBlock;
4046 }
4047 
4048 CFGBlock *CFGBuilder::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
4049   // C++0x for-range statements are specified as [stmt.ranged]:
4050   //
4051   // {
4052   //   auto && __range = range-init;
4053   //   for ( auto __begin = begin-expr,
4054   //         __end = end-expr;
4055   //         __begin != __end;
4056   //         ++__begin ) {
4057   //     for-range-declaration = *__begin;
4058   //     statement
4059   //   }
4060   // }
4061 
4062   // Save local scope position before the addition of the implicit variables.
4063   SaveAndRestore<LocalScope::const_iterator> save_scope_pos(ScopePos);
4064 
4065   // Create local scopes and destructors for range, begin and end variables.
4066   if (Stmt *Range = S->getRangeStmt())
4067     addLocalScopeForStmt(Range);
4068   if (Stmt *Begin = S->getBeginStmt())
4069     addLocalScopeForStmt(Begin);
4070   if (Stmt *End = S->getEndStmt())
4071     addLocalScopeForStmt(End);
4072   addAutomaticObjHandling(ScopePos, save_scope_pos.get(), S);
4073 
4074   LocalScope::const_iterator ContinueScopePos = ScopePos;
4075 
4076   // "for" is a control-flow statement.  Thus we stop processing the current
4077   // block.
4078   CFGBlock *LoopSuccessor = nullptr;
4079   if (Block) {
4080     if (badCFG)
4081       return nullptr;
4082     LoopSuccessor = Block;
4083   } else
4084     LoopSuccessor = Succ;
4085 
4086   // Save the current value for the break targets.
4087   // All breaks should go to the code following the loop.
4088   SaveAndRestore<JumpTarget> save_break(BreakJumpTarget);
4089   BreakJumpTarget = JumpTarget(LoopSuccessor, ScopePos);
4090 
4091   // The block for the __begin != __end expression.
4092   CFGBlock *ConditionBlock = createBlock(false);
4093   ConditionBlock->setTerminator(S);
4094 
4095   // Now add the actual condition to the condition block.
4096   if (Expr *C = S->getCond()) {
4097     Block = ConditionBlock;
4098     CFGBlock *BeginConditionBlock = addStmt(C);
4099     if (badCFG)
4100       return nullptr;
4101     assert(BeginConditionBlock == ConditionBlock &&
4102            "condition block in for-range was unexpectedly complex");
4103     (void)BeginConditionBlock;
4104   }
4105 
4106   // The condition block is the implicit successor for the loop body as well as
4107   // any code above the loop.
4108   Succ = ConditionBlock;
4109 
4110   // See if this is a known constant.
4111   TryResult KnownVal(true);
4112 
4113   if (S->getCond())
4114     KnownVal = tryEvaluateBool(S->getCond());
4115 
4116   // Now create the loop body.
4117   {
4118     assert(S->getBody());
4119 
4120     // Save the current values for Block, Succ, and continue targets.
4121     SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ);
4122     SaveAndRestore<JumpTarget> save_continue(ContinueJumpTarget);
4123 
4124     // Generate increment code in its own basic block.  This is the target of
4125     // continue statements.
4126     Block = nullptr;
4127     Succ = addStmt(S->getInc());
4128     if (badCFG)
4129       return nullptr;
4130     ContinueJumpTarget = JumpTarget(Succ, ContinueScopePos);
4131 
4132     // The starting block for the loop increment is the block that should
4133     // represent the 'loop target' for looping back to the start of the loop.
4134     ContinueJumpTarget.block->setLoopTarget(S);
4135 
4136     // Finish up the increment block and prepare to start the loop body.
4137     assert(Block);
4138     if (badCFG)
4139       return nullptr;
4140     Block = nullptr;
4141 
4142     // Add implicit scope and dtors for loop variable.
4143     addLocalScopeAndDtors(S->getLoopVarStmt());
4144 
4145     // Populate a new block to contain the loop body and loop variable.
4146     addStmt(S->getBody());
4147     if (badCFG)
4148       return nullptr;
4149     CFGBlock *LoopVarStmtBlock = addStmt(S->getLoopVarStmt());
4150     if (badCFG)
4151       return nullptr;
4152 
4153     // This new body block is a successor to our condition block.
4154     addSuccessor(ConditionBlock,
4155                  KnownVal.isFalse() ? nullptr : LoopVarStmtBlock);
4156   }
4157 
4158   // Link up the condition block with the code that follows the loop (the
4159   // false branch).
4160   addSuccessor(ConditionBlock, KnownVal.isTrue() ? nullptr : LoopSuccessor);
4161 
4162   // Add the initialization statements.
4163   Block = createBlock();
4164   addStmt(S->getBeginStmt());
4165   addStmt(S->getEndStmt());
4166   return addStmt(S->getRangeStmt());
4167 }
4168 
4169 CFGBlock *CFGBuilder::VisitExprWithCleanups(ExprWithCleanups *E,
4170     AddStmtChoice asc) {
4171   if (BuildOpts.AddTemporaryDtors) {
4172     // If adding implicit destructors visit the full expression for adding
4173     // destructors of temporaries.
4174     TempDtorContext Context;
4175     VisitForTemporaryDtors(E->getSubExpr(), false, Context);
4176 
4177     // Full expression has to be added as CFGStmt so it will be sequenced
4178     // before destructors of it's temporaries.
4179     asc = asc.withAlwaysAdd(true);
4180   }
4181   return Visit(E->getSubExpr(), asc);
4182 }
4183 
4184 CFGBlock *CFGBuilder::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E,
4185                                                 AddStmtChoice asc) {
4186   if (asc.alwaysAdd(*this, E)) {
4187     autoCreateBlock();
4188     appendStmt(Block, E);
4189 
4190     findConstructionContexts(
4191         ConstructionContextLayer::create(cfg->getBumpVectorContext(), E),
4192         E->getSubExpr());
4193 
4194     // We do not want to propagate the AlwaysAdd property.
4195     asc = asc.withAlwaysAdd(false);
4196   }
4197   return Visit(E->getSubExpr(), asc);
4198 }
4199 
4200 CFGBlock *CFGBuilder::VisitCXXConstructExpr(CXXConstructExpr *C,
4201                                             AddStmtChoice asc) {
4202   autoCreateBlock();
4203   appendConstructor(Block, C);
4204 
4205   return VisitChildren(C);
4206 }
4207 
4208 CFGBlock *CFGBuilder::VisitCXXNewExpr(CXXNewExpr *NE,
4209                                       AddStmtChoice asc) {
4210   autoCreateBlock();
4211   appendStmt(Block, NE);
4212 
4213   findConstructionContexts(
4214       ConstructionContextLayer::create(cfg->getBumpVectorContext(), NE),
4215       const_cast<CXXConstructExpr *>(NE->getConstructExpr()));
4216 
4217   if (NE->getInitializer())
4218     Block = Visit(NE->getInitializer());
4219 
4220   if (BuildOpts.AddCXXNewAllocator)
4221     appendNewAllocator(Block, NE);
4222 
4223   if (NE->isArray())
4224     Block = Visit(NE->getArraySize());
4225 
4226   for (CXXNewExpr::arg_iterator I = NE->placement_arg_begin(),
4227        E = NE->placement_arg_end(); I != E; ++I)
4228     Block = Visit(*I);
4229 
4230   return Block;
4231 }
4232 
4233 CFGBlock *CFGBuilder::VisitCXXDeleteExpr(CXXDeleteExpr *DE,
4234                                          AddStmtChoice asc) {
4235   autoCreateBlock();
4236   appendStmt(Block, DE);
4237   QualType DTy = DE->getDestroyedType();
4238   if (!DTy.isNull()) {
4239     DTy = DTy.getNonReferenceType();
4240     CXXRecordDecl *RD = Context->getBaseElementType(DTy)->getAsCXXRecordDecl();
4241     if (RD) {
4242       if (RD->isCompleteDefinition() && !RD->hasTrivialDestructor())
4243         appendDeleteDtor(Block, RD, DE);
4244     }
4245   }
4246 
4247   return VisitChildren(DE);
4248 }
4249 
4250 CFGBlock *CFGBuilder::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E,
4251                                                  AddStmtChoice asc) {
4252   if (asc.alwaysAdd(*this, E)) {
4253     autoCreateBlock();
4254     appendStmt(Block, E);
4255     // We do not want to propagate the AlwaysAdd property.
4256     asc = asc.withAlwaysAdd(false);
4257   }
4258   return Visit(E->getSubExpr(), asc);
4259 }
4260 
4261 CFGBlock *CFGBuilder::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *C,
4262                                                   AddStmtChoice asc) {
4263   autoCreateBlock();
4264   appendConstructor(Block, C);
4265   return VisitChildren(C);
4266 }
4267 
4268 CFGBlock *CFGBuilder::VisitImplicitCastExpr(ImplicitCastExpr *E,
4269                                             AddStmtChoice asc) {
4270   if (asc.alwaysAdd(*this, E)) {
4271     autoCreateBlock();
4272     appendStmt(Block, E);
4273   }
4274   return Visit(E->getSubExpr(), AddStmtChoice());
4275 }
4276 
4277 CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) {
4278   // Lazily create the indirect-goto dispatch block if there isn't one already.
4279   CFGBlock *IBlock = cfg->getIndirectGotoBlock();
4280 
4281   if (!IBlock) {
4282     IBlock = createBlock(false);
4283     cfg->setIndirectGotoBlock(IBlock);
4284   }
4285 
4286   // IndirectGoto is a control-flow statement.  Thus we stop processing the
4287   // current block and create a new one.
4288   if (badCFG)
4289     return nullptr;
4290 
4291   Block = createBlock(false);
4292   Block->setTerminator(I);
4293   addSuccessor(Block, IBlock);
4294   return addStmt(I->getTarget());
4295 }
4296 
4297 CFGBlock *CFGBuilder::VisitForTemporaryDtors(Stmt *E, bool BindToTemporary,
4298                                              TempDtorContext &Context) {
4299   assert(BuildOpts.AddImplicitDtors && BuildOpts.AddTemporaryDtors);
4300 
4301 tryAgain:
4302   if (!E) {
4303     badCFG = true;
4304     return nullptr;
4305   }
4306   switch (E->getStmtClass()) {
4307     default:
4308       return VisitChildrenForTemporaryDtors(E, Context);
4309 
4310     case Stmt::BinaryOperatorClass:
4311       return VisitBinaryOperatorForTemporaryDtors(cast<BinaryOperator>(E),
4312                                                   Context);
4313 
4314     case Stmt::CXXBindTemporaryExprClass:
4315       return VisitCXXBindTemporaryExprForTemporaryDtors(
4316           cast<CXXBindTemporaryExpr>(E), BindToTemporary, Context);
4317 
4318     case Stmt::BinaryConditionalOperatorClass:
4319     case Stmt::ConditionalOperatorClass:
4320       return VisitConditionalOperatorForTemporaryDtors(
4321           cast<AbstractConditionalOperator>(E), BindToTemporary, Context);
4322 
4323     case Stmt::ImplicitCastExprClass:
4324       // For implicit cast we want BindToTemporary to be passed further.
4325       E = cast<CastExpr>(E)->getSubExpr();
4326       goto tryAgain;
4327 
4328     case Stmt::CXXFunctionalCastExprClass:
4329       // For functional cast we want BindToTemporary to be passed further.
4330       E = cast<CXXFunctionalCastExpr>(E)->getSubExpr();
4331       goto tryAgain;
4332 
4333     case Stmt::ParenExprClass:
4334       E = cast<ParenExpr>(E)->getSubExpr();
4335       goto tryAgain;
4336 
4337     case Stmt::MaterializeTemporaryExprClass: {
4338       const MaterializeTemporaryExpr* MTE = cast<MaterializeTemporaryExpr>(E);
4339       BindToTemporary = (MTE->getStorageDuration() != SD_FullExpression);
4340       SmallVector<const Expr *, 2> CommaLHSs;
4341       SmallVector<SubobjectAdjustment, 2> Adjustments;
4342       // Find the expression whose lifetime needs to be extended.
4343       E = const_cast<Expr *>(
4344           cast<MaterializeTemporaryExpr>(E)
4345               ->GetTemporaryExpr()
4346               ->skipRValueSubobjectAdjustments(CommaLHSs, Adjustments));
4347       // Visit the skipped comma operator left-hand sides for other temporaries.
4348       for (const Expr *CommaLHS : CommaLHSs) {
4349         VisitForTemporaryDtors(const_cast<Expr *>(CommaLHS),
4350                                /*BindToTemporary=*/false, Context);
4351       }
4352       goto tryAgain;
4353     }
4354 
4355     case Stmt::BlockExprClass:
4356       // Don't recurse into blocks; their subexpressions don't get evaluated
4357       // here.
4358       return Block;
4359 
4360     case Stmt::LambdaExprClass: {
4361       // For lambda expressions, only recurse into the capture initializers,
4362       // and not the body.
4363       auto *LE = cast<LambdaExpr>(E);
4364       CFGBlock *B = Block;
4365       for (Expr *Init : LE->capture_inits()) {
4366         if (CFGBlock *R = VisitForTemporaryDtors(
4367                 Init, /*BindToTemporary=*/false, Context))
4368           B = R;
4369       }
4370       return B;
4371     }
4372 
4373     case Stmt::CXXDefaultArgExprClass:
4374       E = cast<CXXDefaultArgExpr>(E)->getExpr();
4375       goto tryAgain;
4376 
4377     case Stmt::CXXDefaultInitExprClass:
4378       E = cast<CXXDefaultInitExpr>(E)->getExpr();
4379       goto tryAgain;
4380   }
4381 }
4382 
4383 CFGBlock *CFGBuilder::VisitChildrenForTemporaryDtors(Stmt *E,
4384                                                      TempDtorContext &Context) {
4385   if (isa<LambdaExpr>(E)) {
4386     // Do not visit the children of lambdas; they have their own CFGs.
4387     return Block;
4388   }
4389 
4390   // When visiting children for destructors we want to visit them in reverse
4391   // order that they will appear in the CFG.  Because the CFG is built
4392   // bottom-up, this means we visit them in their natural order, which
4393   // reverses them in the CFG.
4394   CFGBlock *B = Block;
4395   for (Stmt *Child : E->children())
4396     if (Child)
4397       if (CFGBlock *R = VisitForTemporaryDtors(Child, false, Context))
4398         B = R;
4399 
4400   return B;
4401 }
4402 
4403 CFGBlock *CFGBuilder::VisitBinaryOperatorForTemporaryDtors(
4404     BinaryOperator *E, TempDtorContext &Context) {
4405   if (E->isLogicalOp()) {
4406     VisitForTemporaryDtors(E->getLHS(), false, Context);
4407     TryResult RHSExecuted = tryEvaluateBool(E->getLHS());
4408     if (RHSExecuted.isKnown() && E->getOpcode() == BO_LOr)
4409       RHSExecuted.negate();
4410 
4411     // We do not know at CFG-construction time whether the right-hand-side was
4412     // executed, thus we add a branch node that depends on the temporary
4413     // constructor call.
4414     TempDtorContext RHSContext(
4415         bothKnownTrue(Context.KnownExecuted, RHSExecuted));
4416     VisitForTemporaryDtors(E->getRHS(), false, RHSContext);
4417     InsertTempDtorDecisionBlock(RHSContext);
4418 
4419     return Block;
4420   }
4421 
4422   if (E->isAssignmentOp()) {
4423     // For assignment operator (=) LHS expression is visited
4424     // before RHS expression. For destructors visit them in reverse order.
4425     CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
4426     CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
4427     return LHSBlock ? LHSBlock : RHSBlock;
4428   }
4429 
4430   // For any other binary operator RHS expression is visited before
4431   // LHS expression (order of children). For destructors visit them in reverse
4432   // order.
4433   CFGBlock *LHSBlock = VisitForTemporaryDtors(E->getLHS(), false, Context);
4434   CFGBlock *RHSBlock = VisitForTemporaryDtors(E->getRHS(), false, Context);
4435   return RHSBlock ? RHSBlock : LHSBlock;
4436 }
4437 
4438 CFGBlock *CFGBuilder::VisitCXXBindTemporaryExprForTemporaryDtors(
4439     CXXBindTemporaryExpr *E, bool BindToTemporary, TempDtorContext &Context) {
4440   // First add destructors for temporaries in subexpression.
4441   CFGBlock *B = VisitForTemporaryDtors(E->getSubExpr(), false, Context);
4442   if (!BindToTemporary) {
4443     // If lifetime of temporary is not prolonged (by assigning to constant
4444     // reference) add destructor for it.
4445 
4446     const CXXDestructorDecl *Dtor = E->getTemporary()->getDestructor();
4447 
4448     if (Dtor->getParent()->isAnyDestructorNoReturn()) {
4449       // If the destructor is marked as a no-return destructor, we need to
4450       // create a new block for the destructor which does not have as a
4451       // successor anything built thus far. Control won't flow out of this
4452       // block.
4453       if (B) Succ = B;
4454       Block = createNoReturnBlock();
4455     } else if (Context.needsTempDtorBranch()) {
4456       // If we need to introduce a branch, we add a new block that we will hook
4457       // up to a decision block later.
4458       if (B) Succ = B;
4459       Block = createBlock();
4460     } else {
4461       autoCreateBlock();
4462     }
4463     if (Context.needsTempDtorBranch()) {
4464       Context.setDecisionPoint(Succ, E);
4465     }
4466     appendTemporaryDtor(Block, E);
4467 
4468     B = Block;
4469   }
4470   return B;
4471 }
4472 
4473 void CFGBuilder::InsertTempDtorDecisionBlock(const TempDtorContext &Context,
4474                                              CFGBlock *FalseSucc) {
4475   if (!Context.TerminatorExpr) {
4476     // If no temporary was found, we do not need to insert a decision point.
4477     return;
4478   }
4479   assert(Context.TerminatorExpr);
4480   CFGBlock *Decision = createBlock(false);
4481   Decision->setTerminator(CFGTerminator(Context.TerminatorExpr, true));
4482   addSuccessor(Decision, Block, !Context.KnownExecuted.isFalse());
4483   addSuccessor(Decision, FalseSucc ? FalseSucc : Context.Succ,
4484                !Context.KnownExecuted.isTrue());
4485   Block = Decision;
4486 }
4487 
4488 CFGBlock *CFGBuilder::VisitConditionalOperatorForTemporaryDtors(
4489     AbstractConditionalOperator *E, bool BindToTemporary,
4490     TempDtorContext &Context) {
4491   VisitForTemporaryDtors(E->getCond(), false, Context);
4492   CFGBlock *ConditionBlock = Block;
4493   CFGBlock *ConditionSucc = Succ;
4494   TryResult ConditionVal = tryEvaluateBool(E->getCond());
4495   TryResult NegatedVal = ConditionVal;
4496   if (NegatedVal.isKnown()) NegatedVal.negate();
4497 
4498   TempDtorContext TrueContext(
4499       bothKnownTrue(Context.KnownExecuted, ConditionVal));
4500   VisitForTemporaryDtors(E->getTrueExpr(), BindToTemporary, TrueContext);
4501   CFGBlock *TrueBlock = Block;
4502 
4503   Block = ConditionBlock;
4504   Succ = ConditionSucc;
4505   TempDtorContext FalseContext(
4506       bothKnownTrue(Context.KnownExecuted, NegatedVal));
4507   VisitForTemporaryDtors(E->getFalseExpr(), BindToTemporary, FalseContext);
4508 
4509   if (TrueContext.TerminatorExpr && FalseContext.TerminatorExpr) {
4510     InsertTempDtorDecisionBlock(FalseContext, TrueBlock);
4511   } else if (TrueContext.TerminatorExpr) {
4512     Block = TrueBlock;
4513     InsertTempDtorDecisionBlock(TrueContext);
4514   } else {
4515     InsertTempDtorDecisionBlock(FalseContext);
4516   }
4517   return Block;
4518 }
4519 
4520 /// createBlock - Constructs and adds a new CFGBlock to the CFG.  The block has
4521 ///  no successors or predecessors.  If this is the first block created in the
4522 ///  CFG, it is automatically set to be the Entry and Exit of the CFG.
4523 CFGBlock *CFG::createBlock() {
4524   bool first_block = begin() == end();
4525 
4526   // Create the block.
4527   CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
4528   new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this);
4529   Blocks.push_back(Mem, BlkBVC);
4530 
4531   // If this is the first block, set it as the Entry and Exit.
4532   if (first_block)
4533     Entry = Exit = &back();
4534 
4535   // Return the block.
4536   return &back();
4537 }
4538 
4539 /// buildCFG - Constructs a CFG from an AST.
4540 std::unique_ptr<CFG> CFG::buildCFG(const Decl *D, Stmt *Statement,
4541                                    ASTContext *C, const BuildOptions &BO) {
4542   CFGBuilder Builder(C, BO);
4543   return Builder.buildCFG(D, Statement);
4544 }
4545 
4546 const CXXDestructorDecl *
4547 CFGImplicitDtor::getDestructorDecl(ASTContext &astContext) const {
4548   switch (getKind()) {
4549     case CFGElement::Initializer:
4550     case CFGElement::NewAllocator:
4551     case CFGElement::LoopExit:
4552     case CFGElement::LifetimeEnds:
4553     case CFGElement::Statement:
4554     case CFGElement::Constructor:
4555     case CFGElement::CXXRecordTypedCall:
4556     case CFGElement::ScopeBegin:
4557     case CFGElement::ScopeEnd:
4558       llvm_unreachable("getDestructorDecl should only be used with "
4559                        "ImplicitDtors");
4560     case CFGElement::AutomaticObjectDtor: {
4561       const VarDecl *var = castAs<CFGAutomaticObjDtor>().getVarDecl();
4562       QualType ty = var->getType();
4563 
4564       // FIXME: See CFGBuilder::addLocalScopeForVarDecl.
4565       //
4566       // Lifetime-extending constructs are handled here. This works for a single
4567       // temporary in an initializer expression.
4568       if (ty->isReferenceType()) {
4569         if (const Expr *Init = var->getInit()) {
4570           ty = getReferenceInitTemporaryType(astContext, Init);
4571         }
4572       }
4573 
4574       while (const ArrayType *arrayType = astContext.getAsArrayType(ty)) {
4575         ty = arrayType->getElementType();
4576       }
4577       const RecordType *recordType = ty->getAs<RecordType>();
4578       const CXXRecordDecl *classDecl =
4579       cast<CXXRecordDecl>(recordType->getDecl());
4580       return classDecl->getDestructor();
4581     }
4582     case CFGElement::DeleteDtor: {
4583       const CXXDeleteExpr *DE = castAs<CFGDeleteDtor>().getDeleteExpr();
4584       QualType DTy = DE->getDestroyedType();
4585       DTy = DTy.getNonReferenceType();
4586       const CXXRecordDecl *classDecl =
4587           astContext.getBaseElementType(DTy)->getAsCXXRecordDecl();
4588       return classDecl->getDestructor();
4589     }
4590     case CFGElement::TemporaryDtor: {
4591       const CXXBindTemporaryExpr *bindExpr =
4592         castAs<CFGTemporaryDtor>().getBindTemporaryExpr();
4593       const CXXTemporary *temp = bindExpr->getTemporary();
4594       return temp->getDestructor();
4595     }
4596     case CFGElement::BaseDtor:
4597     case CFGElement::MemberDtor:
4598       // Not yet supported.
4599       return nullptr;
4600   }
4601   llvm_unreachable("getKind() returned bogus value");
4602 }
4603 
4604 bool CFGImplicitDtor::isNoReturn(ASTContext &astContext) const {
4605   if (const CXXDestructorDecl *DD = getDestructorDecl(astContext))
4606     return DD->isNoReturn();
4607   return false;
4608 }
4609 
4610 //===----------------------------------------------------------------------===//
4611 // CFGBlock operations.
4612 //===----------------------------------------------------------------------===//
4613 
4614 CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, bool IsReachable)
4615     : ReachableBlock(IsReachable ? B : nullptr),
4616       UnreachableBlock(!IsReachable ? B : nullptr,
4617                        B && IsReachable ? AB_Normal : AB_Unreachable) {}
4618 
4619 CFGBlock::AdjacentBlock::AdjacentBlock(CFGBlock *B, CFGBlock *AlternateBlock)
4620     : ReachableBlock(B),
4621       UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock,
4622                        B == AlternateBlock ? AB_Alternate : AB_Normal) {}
4623 
4624 void CFGBlock::addSuccessor(AdjacentBlock Succ,
4625                             BumpVectorContext &C) {
4626   if (CFGBlock *B = Succ.getReachableBlock())
4627     B->Preds.push_back(AdjacentBlock(this, Succ.isReachable()), C);
4628 
4629   if (CFGBlock *UnreachableB = Succ.getPossiblyUnreachableBlock())
4630     UnreachableB->Preds.push_back(AdjacentBlock(this, false), C);
4631 
4632   Succs.push_back(Succ, C);
4633 }
4634 
4635 bool CFGBlock::FilterEdge(const CFGBlock::FilterOptions &F,
4636         const CFGBlock *From, const CFGBlock *To) {
4637   if (F.IgnoreNullPredecessors && !From)
4638     return true;
4639 
4640   if (To && From && F.IgnoreDefaultsWithCoveredEnums) {
4641     // If the 'To' has no label or is labeled but the label isn't a
4642     // CaseStmt then filter this edge.
4643     if (const SwitchStmt *S =
4644         dyn_cast_or_null<SwitchStmt>(From->getTerminator().getStmt())) {
4645       if (S->isAllEnumCasesCovered()) {
4646         const Stmt *L = To->getLabel();
4647         if (!L || !isa<CaseStmt>(L))
4648           return true;
4649       }
4650     }
4651   }
4652 
4653   return false;
4654 }
4655 
4656 //===----------------------------------------------------------------------===//
4657 // CFG pretty printing
4658 //===----------------------------------------------------------------------===//
4659 
4660 namespace {
4661 
4662 class StmtPrinterHelper : public PrinterHelper  {
4663   using StmtMapTy = llvm::DenseMap<const Stmt *, std::pair<unsigned, unsigned>>;
4664   using DeclMapTy = llvm::DenseMap<const Decl *, std::pair<unsigned, unsigned>>;
4665 
4666   StmtMapTy StmtMap;
4667   DeclMapTy DeclMap;
4668   signed currentBlock = 0;
4669   unsigned currStmt = 0;
4670   const LangOptions &LangOpts;
4671 
4672 public:
4673   StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
4674       : LangOpts(LO) {
4675     for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
4676       unsigned j = 1;
4677       for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
4678            BI != BEnd; ++BI, ++j ) {
4679         if (Optional<CFGStmt> SE = BI->getAs<CFGStmt>()) {
4680           const Stmt *stmt= SE->getStmt();
4681           std::pair<unsigned, unsigned> P((*I)->getBlockID(), j);
4682           StmtMap[stmt] = P;
4683 
4684           switch (stmt->getStmtClass()) {
4685             case Stmt::DeclStmtClass:
4686               DeclMap[cast<DeclStmt>(stmt)->getSingleDecl()] = P;
4687               break;
4688             case Stmt::IfStmtClass: {
4689               const VarDecl *var = cast<IfStmt>(stmt)->getConditionVariable();
4690               if (var)
4691                 DeclMap[var] = P;
4692               break;
4693             }
4694             case Stmt::ForStmtClass: {
4695               const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable();
4696               if (var)
4697                 DeclMap[var] = P;
4698               break;
4699             }
4700             case Stmt::WhileStmtClass: {
4701               const VarDecl *var =
4702                 cast<WhileStmt>(stmt)->getConditionVariable();
4703               if (var)
4704                 DeclMap[var] = P;
4705               break;
4706             }
4707             case Stmt::SwitchStmtClass: {
4708               const VarDecl *var =
4709                 cast<SwitchStmt>(stmt)->getConditionVariable();
4710               if (var)
4711                 DeclMap[var] = P;
4712               break;
4713             }
4714             case Stmt::CXXCatchStmtClass: {
4715               const VarDecl *var =
4716                 cast<CXXCatchStmt>(stmt)->getExceptionDecl();
4717               if (var)
4718                 DeclMap[var] = P;
4719               break;
4720             }
4721             default:
4722               break;
4723           }
4724         }
4725       }
4726     }
4727   }
4728 
4729   ~StmtPrinterHelper() override = default;
4730 
4731   const LangOptions &getLangOpts() const { return LangOpts; }
4732   void setBlockID(signed i) { currentBlock = i; }
4733   void setStmtID(unsigned i) { currStmt = i; }
4734 
4735   bool handledStmt(Stmt *S, raw_ostream &OS) override {
4736     StmtMapTy::iterator I = StmtMap.find(S);
4737 
4738     if (I == StmtMap.end())
4739       return false;
4740 
4741     if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
4742                           && I->second.second == currStmt) {
4743       return false;
4744     }
4745 
4746     OS << "[B" << I->second.first << "." << I->second.second << "]";
4747     return true;
4748   }
4749 
4750   bool handleDecl(const Decl *D, raw_ostream &OS) {
4751     DeclMapTy::iterator I = DeclMap.find(D);
4752 
4753     if (I == DeclMap.end())
4754       return false;
4755 
4756     if (currentBlock >= 0 && I->second.first == (unsigned) currentBlock
4757                           && I->second.second == currStmt) {
4758       return false;
4759     }
4760 
4761     OS << "[B" << I->second.first << "." << I->second.second << "]";
4762     return true;
4763   }
4764 };
4765 
4766 class CFGBlockTerminatorPrint
4767     : public StmtVisitor<CFGBlockTerminatorPrint,void> {
4768   raw_ostream &OS;
4769   StmtPrinterHelper* Helper;
4770   PrintingPolicy Policy;
4771 
4772 public:
4773   CFGBlockTerminatorPrint(raw_ostream &os, StmtPrinterHelper* helper,
4774                           const PrintingPolicy &Policy)
4775       : OS(os), Helper(helper), Policy(Policy) {
4776     this->Policy.IncludeNewlines = false;
4777   }
4778 
4779   void VisitIfStmt(IfStmt *I) {
4780     OS << "if ";
4781     if (Stmt *C = I->getCond())
4782       C->printPretty(OS, Helper, Policy);
4783   }
4784 
4785   // Default case.
4786   void VisitStmt(Stmt *Terminator) {
4787     Terminator->printPretty(OS, Helper, Policy);
4788   }
4789 
4790   void VisitDeclStmt(DeclStmt *DS) {
4791     VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
4792     OS << "static init " << VD->getName();
4793   }
4794 
4795   void VisitForStmt(ForStmt *F) {
4796     OS << "for (" ;
4797     if (F->getInit())
4798       OS << "...";
4799     OS << "; ";
4800     if (Stmt *C = F->getCond())
4801       C->printPretty(OS, Helper, Policy);
4802     OS << "; ";
4803     if (F->getInc())
4804       OS << "...";
4805     OS << ")";
4806   }
4807 
4808   void VisitWhileStmt(WhileStmt *W) {
4809     OS << "while " ;
4810     if (Stmt *C = W->getCond())
4811       C->printPretty(OS, Helper, Policy);
4812   }
4813 
4814   void VisitDoStmt(DoStmt *D) {
4815     OS << "do ... while ";
4816     if (Stmt *C = D->getCond())
4817       C->printPretty(OS, Helper, Policy);
4818   }
4819 
4820   void VisitSwitchStmt(SwitchStmt *Terminator) {
4821     OS << "switch ";
4822     Terminator->getCond()->printPretty(OS, Helper, Policy);
4823   }
4824 
4825   void VisitCXXTryStmt(CXXTryStmt *CS) {
4826     OS << "try ...";
4827   }
4828 
4829   void VisitSEHTryStmt(SEHTryStmt *CS) {
4830     OS << "__try ...";
4831   }
4832 
4833   void VisitAbstractConditionalOperator(AbstractConditionalOperator* C) {
4834     if (Stmt *Cond = C->getCond())
4835       Cond->printPretty(OS, Helper, Policy);
4836     OS << " ? ... : ...";
4837   }
4838 
4839   void VisitChooseExpr(ChooseExpr *C) {
4840     OS << "__builtin_choose_expr( ";
4841     if (Stmt *Cond = C->getCond())
4842       Cond->printPretty(OS, Helper, Policy);
4843     OS << " )";
4844   }
4845 
4846   void VisitIndirectGotoStmt(IndirectGotoStmt *I) {
4847     OS << "goto *";
4848     if (Stmt *T = I->getTarget())
4849       T->printPretty(OS, Helper, Policy);
4850   }
4851 
4852   void VisitBinaryOperator(BinaryOperator* B) {
4853     if (!B->isLogicalOp()) {
4854       VisitExpr(B);
4855       return;
4856     }
4857 
4858     if (B->getLHS())
4859       B->getLHS()->printPretty(OS, Helper, Policy);
4860 
4861     switch (B->getOpcode()) {
4862       case BO_LOr:
4863         OS << " || ...";
4864         return;
4865       case BO_LAnd:
4866         OS << " && ...";
4867         return;
4868       default:
4869         llvm_unreachable("Invalid logical operator.");
4870     }
4871   }
4872 
4873   void VisitExpr(Expr *E) {
4874     E->printPretty(OS, Helper, Policy);
4875   }
4876 
4877 public:
4878   void print(CFGTerminator T) {
4879     if (T.isTemporaryDtorsBranch())
4880       OS << "(Temp Dtor) ";
4881     Visit(T.getStmt());
4882   }
4883 };
4884 
4885 } // namespace
4886 
4887 static void print_initializer(raw_ostream &OS, StmtPrinterHelper &Helper,
4888                               const CXXCtorInitializer *I) {
4889   if (I->isBaseInitializer())
4890     OS << I->getBaseClass()->getAsCXXRecordDecl()->getName();
4891   else if (I->isDelegatingInitializer())
4892     OS << I->getTypeSourceInfo()->getType()->getAsCXXRecordDecl()->getName();
4893   else
4894     OS << I->getAnyMember()->getName();
4895   OS << "(";
4896   if (Expr *IE = I->getInit())
4897     IE->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
4898   OS << ")";
4899 
4900   if (I->isBaseInitializer())
4901     OS << " (Base initializer)";
4902   else if (I->isDelegatingInitializer())
4903     OS << " (Delegating initializer)";
4904   else
4905     OS << " (Member initializer)";
4906 }
4907 
4908 static void print_construction_context(raw_ostream &OS,
4909                                        StmtPrinterHelper &Helper,
4910                                        const ConstructionContext *CC) {
4911   const Stmt *S1 = nullptr, *S2 = nullptr;
4912   switch (CC->getKind()) {
4913   case ConstructionContext::ConstructorInitializerKind: {
4914     OS << ", ";
4915     const auto *ICC = cast<ConstructorInitializerConstructionContext>(CC);
4916     print_initializer(OS, Helper, ICC->getCXXCtorInitializer());
4917     break;
4918   }
4919   case ConstructionContext::SimpleVariableKind: {
4920     const auto *DSCC = cast<SimpleVariableConstructionContext>(CC);
4921     S1 = DSCC->getDeclStmt();
4922     break;
4923   }
4924   case ConstructionContext::NewAllocatedObjectKind: {
4925     const auto *NECC = cast<NewAllocatedObjectConstructionContext>(CC);
4926     S1 = NECC->getCXXNewExpr();
4927     break;
4928   }
4929   case ConstructionContext::ReturnedValueKind: {
4930     const auto *RSCC = cast<ReturnedValueConstructionContext>(CC);
4931     S1 = RSCC->getReturnStmt();
4932     break;
4933   }
4934   case ConstructionContext::TemporaryObjectKind: {
4935     const auto *TOCC = cast<TemporaryObjectConstructionContext>(CC);
4936     S1 = TOCC->getCXXBindTemporaryExpr();
4937     S2 = TOCC->getMaterializedTemporaryExpr();
4938     break;
4939   }
4940   }
4941   if (S1) {
4942     OS << ", ";
4943     Helper.handledStmt(const_cast<Stmt *>(S1), OS);
4944   }
4945   if (S2) {
4946     OS << ", ";
4947     Helper.handledStmt(const_cast<Stmt *>(S2), OS);
4948   }
4949 }
4950 
4951 static void print_elem(raw_ostream &OS, StmtPrinterHelper &Helper,
4952                        const CFGElement &E) {
4953   if (Optional<CFGStmt> CS = E.getAs<CFGStmt>()) {
4954     const Stmt *S = CS->getStmt();
4955     assert(S != nullptr && "Expecting non-null Stmt");
4956 
4957     // special printing for statement-expressions.
4958     if (const StmtExpr *SE = dyn_cast<StmtExpr>(S)) {
4959       const CompoundStmt *Sub = SE->getSubStmt();
4960 
4961       auto Children = Sub->children();
4962       if (Children.begin() != Children.end()) {
4963         OS << "({ ... ; ";
4964         Helper.handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
4965         OS << " })\n";
4966         return;
4967       }
4968     }
4969     // special printing for comma expressions.
4970     if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
4971       if (B->getOpcode() == BO_Comma) {
4972         OS << "... , ";
4973         Helper.handledStmt(B->getRHS(),OS);
4974         OS << '\n';
4975         return;
4976       }
4977     }
4978     S->printPretty(OS, &Helper, PrintingPolicy(Helper.getLangOpts()));
4979 
4980     if (auto VTC = E.getAs<CFGCXXRecordTypedCall>()) {
4981       if (isa<CXXOperatorCallExpr>(S))
4982         OS << " (OperatorCall)";
4983       OS << " (CXXRecordTypedCall";
4984       print_construction_context(OS, Helper, VTC->getConstructionContext());
4985       OS << ")";
4986     } else if (isa<CXXOperatorCallExpr>(S)) {
4987       OS << " (OperatorCall)";
4988     } else if (isa<CXXBindTemporaryExpr>(S)) {
4989       OS << " (BindTemporary)";
4990     } else if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(S)) {
4991       OS << " (CXXConstructExpr";
4992       if (Optional<CFGConstructor> CE = E.getAs<CFGConstructor>()) {
4993         print_construction_context(OS, Helper, CE->getConstructionContext());
4994       }
4995       OS << ", " << CCE->getType().getAsString() << ")";
4996     } else if (const CastExpr *CE = dyn_cast<CastExpr>(S)) {
4997       OS << " (" << CE->getStmtClassName() << ", "
4998          << CE->getCastKindName()
4999          << ", " << CE->getType().getAsString()
5000          << ")";
5001     }
5002 
5003     // Expressions need a newline.
5004     if (isa<Expr>(S))
5005       OS << '\n';
5006   } else if (Optional<CFGInitializer> IE = E.getAs<CFGInitializer>()) {
5007     print_initializer(OS, Helper, IE->getInitializer());
5008     OS << '\n';
5009   } else if (Optional<CFGAutomaticObjDtor> DE =
5010                  E.getAs<CFGAutomaticObjDtor>()) {
5011     const VarDecl *VD = DE->getVarDecl();
5012     Helper.handleDecl(VD, OS);
5013 
5014     const Type* T = VD->getType().getTypePtr();
5015     if (const ReferenceType* RT = T->getAs<ReferenceType>())
5016       T = RT->getPointeeType().getTypePtr();
5017     T = T->getBaseElementTypeUnsafe();
5018 
5019     OS << ".~" << T->getAsCXXRecordDecl()->getName().str() << "()";
5020     OS << " (Implicit destructor)\n";
5021   } else if (Optional<CFGLifetimeEnds> DE = E.getAs<CFGLifetimeEnds>()) {
5022     const VarDecl *VD = DE->getVarDecl();
5023     Helper.handleDecl(VD, OS);
5024 
5025     OS << " (Lifetime ends)\n";
5026   } else if (Optional<CFGLoopExit> LE = E.getAs<CFGLoopExit>()) {
5027     const Stmt *LoopStmt = LE->getLoopStmt();
5028     OS << LoopStmt->getStmtClassName() << " (LoopExit)\n";
5029   } else if (Optional<CFGScopeBegin> SB = E.getAs<CFGScopeBegin>()) {
5030     OS << "CFGScopeBegin(";
5031     if (const VarDecl *VD = SB->getVarDecl())
5032       OS << VD->getQualifiedNameAsString();
5033     OS << ")\n";
5034   } else if (Optional<CFGScopeEnd> SE = E.getAs<CFGScopeEnd>()) {
5035     OS << "CFGScopeEnd(";
5036     if (const VarDecl *VD = SE->getVarDecl())
5037       OS << VD->getQualifiedNameAsString();
5038     OS << ")\n";
5039   } else if (Optional<CFGNewAllocator> NE = E.getAs<CFGNewAllocator>()) {
5040     OS << "CFGNewAllocator(";
5041     if (const CXXNewExpr *AllocExpr = NE->getAllocatorExpr())
5042       AllocExpr->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
5043     OS << ")\n";
5044   } else if (Optional<CFGDeleteDtor> DE = E.getAs<CFGDeleteDtor>()) {
5045     const CXXRecordDecl *RD = DE->getCXXRecordDecl();
5046     if (!RD)
5047       return;
5048     CXXDeleteExpr *DelExpr =
5049         const_cast<CXXDeleteExpr*>(DE->getDeleteExpr());
5050     Helper.handledStmt(cast<Stmt>(DelExpr->getArgument()), OS);
5051     OS << "->~" << RD->getName().str() << "()";
5052     OS << " (Implicit destructor)\n";
5053   } else if (Optional<CFGBaseDtor> BE = E.getAs<CFGBaseDtor>()) {
5054     const CXXBaseSpecifier *BS = BE->getBaseSpecifier();
5055     OS << "~" << BS->getType()->getAsCXXRecordDecl()->getName() << "()";
5056     OS << " (Base object destructor)\n";
5057   } else if (Optional<CFGMemberDtor> ME = E.getAs<CFGMemberDtor>()) {
5058     const FieldDecl *FD = ME->getFieldDecl();
5059     const Type *T = FD->getType()->getBaseElementTypeUnsafe();
5060     OS << "this->" << FD->getName();
5061     OS << ".~" << T->getAsCXXRecordDecl()->getName() << "()";
5062     OS << " (Member object destructor)\n";
5063   } else if (Optional<CFGTemporaryDtor> TE = E.getAs<CFGTemporaryDtor>()) {
5064     const CXXBindTemporaryExpr *BT = TE->getBindTemporaryExpr();
5065     OS << "~";
5066     BT->getType().print(OS, PrintingPolicy(Helper.getLangOpts()));
5067     OS << "() (Temporary object destructor)\n";
5068   }
5069 }
5070 
5071 static void print_block(raw_ostream &OS, const CFG* cfg,
5072                         const CFGBlock &B,
5073                         StmtPrinterHelper &Helper, bool print_edges,
5074                         bool ShowColors) {
5075   Helper.setBlockID(B.getBlockID());
5076 
5077   // Print the header.
5078   if (ShowColors)
5079     OS.changeColor(raw_ostream::YELLOW, true);
5080 
5081   OS << "\n [B" << B.getBlockID();
5082 
5083   if (&B == &cfg->getEntry())
5084     OS << " (ENTRY)]\n";
5085   else if (&B == &cfg->getExit())
5086     OS << " (EXIT)]\n";
5087   else if (&B == cfg->getIndirectGotoBlock())
5088     OS << " (INDIRECT GOTO DISPATCH)]\n";
5089   else if (B.hasNoReturnElement())
5090     OS << " (NORETURN)]\n";
5091   else
5092     OS << "]\n";
5093 
5094   if (ShowColors)
5095     OS.resetColor();
5096 
5097   // Print the label of this block.
5098   if (Stmt *Label = const_cast<Stmt*>(B.getLabel())) {
5099     if (print_edges)
5100       OS << "  ";
5101 
5102     if (LabelStmt *L = dyn_cast<LabelStmt>(Label))
5103       OS << L->getName();
5104     else if (CaseStmt *C = dyn_cast<CaseStmt>(Label)) {
5105       OS << "case ";
5106       if (C->getLHS())
5107         C->getLHS()->printPretty(OS, &Helper,
5108                                  PrintingPolicy(Helper.getLangOpts()));
5109       if (C->getRHS()) {
5110         OS << " ... ";
5111         C->getRHS()->printPretty(OS, &Helper,
5112                                  PrintingPolicy(Helper.getLangOpts()));
5113       }
5114     } else if (isa<DefaultStmt>(Label))
5115       OS << "default";
5116     else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) {
5117       OS << "catch (";
5118       if (CS->getExceptionDecl())
5119         CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()),
5120                                       0);
5121       else
5122         OS << "...";
5123       OS << ")";
5124     } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) {
5125       OS << "__except (";
5126       ES->getFilterExpr()->printPretty(OS, &Helper,
5127                                        PrintingPolicy(Helper.getLangOpts()), 0);
5128       OS << ")";
5129     } else
5130       llvm_unreachable("Invalid label statement in CFGBlock.");
5131 
5132     OS << ":\n";
5133   }
5134 
5135   // Iterate through the statements in the block and print them.
5136   unsigned j = 1;
5137 
5138   for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
5139        I != E ; ++I, ++j ) {
5140     // Print the statement # in the basic block and the statement itself.
5141     if (print_edges)
5142       OS << " ";
5143 
5144     OS << llvm::format("%3d", j) << ": ";
5145 
5146     Helper.setStmtID(j);
5147 
5148     print_elem(OS, Helper, *I);
5149   }
5150 
5151   // Print the terminator of this block.
5152   if (B.getTerminator()) {
5153     if (ShowColors)
5154       OS.changeColor(raw_ostream::GREEN);
5155 
5156     OS << "   T: ";
5157 
5158     Helper.setBlockID(-1);
5159 
5160     PrintingPolicy PP(Helper.getLangOpts());
5161     CFGBlockTerminatorPrint TPrinter(OS, &Helper, PP);
5162     TPrinter.print(B.getTerminator());
5163     OS << '\n';
5164 
5165     if (ShowColors)
5166       OS.resetColor();
5167   }
5168 
5169   if (print_edges) {
5170     // Print the predecessors of this block.
5171     if (!B.pred_empty()) {
5172       const raw_ostream::Colors Color = raw_ostream::BLUE;
5173       if (ShowColors)
5174         OS.changeColor(Color);
5175       OS << "   Preds " ;
5176       if (ShowColors)
5177         OS.resetColor();
5178       OS << '(' << B.pred_size() << "):";
5179       unsigned i = 0;
5180 
5181       if (ShowColors)
5182         OS.changeColor(Color);
5183 
5184       for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
5185            I != E; ++I, ++i) {
5186         if (i % 10 == 8)
5187           OS << "\n     ";
5188 
5189         CFGBlock *B = *I;
5190         bool Reachable = true;
5191         if (!B) {
5192           Reachable = false;
5193           B = I->getPossiblyUnreachableBlock();
5194         }
5195 
5196         OS << " B" << B->getBlockID();
5197         if (!Reachable)
5198           OS << "(Unreachable)";
5199       }
5200 
5201       if (ShowColors)
5202         OS.resetColor();
5203 
5204       OS << '\n';
5205     }
5206 
5207     // Print the successors of this block.
5208     if (!B.succ_empty()) {
5209       const raw_ostream::Colors Color = raw_ostream::MAGENTA;
5210       if (ShowColors)
5211         OS.changeColor(Color);
5212       OS << "   Succs ";
5213       if (ShowColors)
5214         OS.resetColor();
5215       OS << '(' << B.succ_size() << "):";
5216       unsigned i = 0;
5217 
5218       if (ShowColors)
5219         OS.changeColor(Color);
5220 
5221       for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
5222            I != E; ++I, ++i) {
5223         if (i % 10 == 8)
5224           OS << "\n    ";
5225 
5226         CFGBlock *B = *I;
5227 
5228         bool Reachable = true;
5229         if (!B) {
5230           Reachable = false;
5231           B = I->getPossiblyUnreachableBlock();
5232         }
5233 
5234         if (B) {
5235           OS << " B" << B->getBlockID();
5236           if (!Reachable)
5237             OS << "(Unreachable)";
5238         }
5239         else {
5240           OS << " NULL";
5241         }
5242       }
5243 
5244       if (ShowColors)
5245         OS.resetColor();
5246       OS << '\n';
5247     }
5248   }
5249 }
5250 
5251 /// dump - A simple pretty printer of a CFG that outputs to stderr.
5252 void CFG::dump(const LangOptions &LO, bool ShowColors) const {
5253   print(llvm::errs(), LO, ShowColors);
5254 }
5255 
5256 /// print - A simple pretty printer of a CFG that outputs to an ostream.
5257 void CFG::print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const {
5258   StmtPrinterHelper Helper(this, LO);
5259 
5260   // Print the entry block.
5261   print_block(OS, this, getEntry(), Helper, true, ShowColors);
5262 
5263   // Iterate through the CFGBlocks and print them one by one.
5264   for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
5265     // Skip the entry block, because we already printed it.
5266     if (&(**I) == &getEntry() || &(**I) == &getExit())
5267       continue;
5268 
5269     print_block(OS, this, **I, Helper, true, ShowColors);
5270   }
5271 
5272   // Print the exit block.
5273   print_block(OS, this, getExit(), Helper, true, ShowColors);
5274   OS << '\n';
5275   OS.flush();
5276 }
5277 
5278 /// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
5279 void CFGBlock::dump(const CFG* cfg, const LangOptions &LO,
5280                     bool ShowColors) const {
5281   print(llvm::errs(), cfg, LO, ShowColors);
5282 }
5283 
5284 LLVM_DUMP_METHOD void CFGBlock::dump() const {
5285   dump(getParent(), LangOptions(), false);
5286 }
5287 
5288 /// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
5289 ///   Generally this will only be called from CFG::print.
5290 void CFGBlock::print(raw_ostream &OS, const CFG* cfg,
5291                      const LangOptions &LO, bool ShowColors) const {
5292   StmtPrinterHelper Helper(cfg, LO);
5293   print_block(OS, cfg, *this, Helper, true, ShowColors);
5294   OS << '\n';
5295 }
5296 
5297 /// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
5298 void CFGBlock::printTerminator(raw_ostream &OS,
5299                                const LangOptions &LO) const {
5300   CFGBlockTerminatorPrint TPrinter(OS, nullptr, PrintingPolicy(LO));
5301   TPrinter.print(getTerminator());
5302 }
5303 
5304 Stmt *CFGBlock::getTerminatorCondition(bool StripParens) {
5305   Stmt *Terminator = this->Terminator;
5306   if (!Terminator)
5307     return nullptr;
5308 
5309   Expr *E = nullptr;
5310 
5311   switch (Terminator->getStmtClass()) {
5312     default:
5313       break;
5314 
5315     case Stmt::CXXForRangeStmtClass:
5316       E = cast<CXXForRangeStmt>(Terminator)->getCond();
5317       break;
5318 
5319     case Stmt::ForStmtClass:
5320       E = cast<ForStmt>(Terminator)->getCond();
5321       break;
5322 
5323     case Stmt::WhileStmtClass:
5324       E = cast<WhileStmt>(Terminator)->getCond();
5325       break;
5326 
5327     case Stmt::DoStmtClass:
5328       E = cast<DoStmt>(Terminator)->getCond();
5329       break;
5330 
5331     case Stmt::IfStmtClass:
5332       E = cast<IfStmt>(Terminator)->getCond();
5333       break;
5334 
5335     case Stmt::ChooseExprClass:
5336       E = cast<ChooseExpr>(Terminator)->getCond();
5337       break;
5338 
5339     case Stmt::IndirectGotoStmtClass:
5340       E = cast<IndirectGotoStmt>(Terminator)->getTarget();
5341       break;
5342 
5343     case Stmt::SwitchStmtClass:
5344       E = cast<SwitchStmt>(Terminator)->getCond();
5345       break;
5346 
5347     case Stmt::BinaryConditionalOperatorClass:
5348       E = cast<BinaryConditionalOperator>(Terminator)->getCond();
5349       break;
5350 
5351     case Stmt::ConditionalOperatorClass:
5352       E = cast<ConditionalOperator>(Terminator)->getCond();
5353       break;
5354 
5355     case Stmt::BinaryOperatorClass: // '&&' and '||'
5356       E = cast<BinaryOperator>(Terminator)->getLHS();
5357       break;
5358 
5359     case Stmt::ObjCForCollectionStmtClass:
5360       return Terminator;
5361   }
5362 
5363   if (!StripParens)
5364     return E;
5365 
5366   return E ? E->IgnoreParens() : nullptr;
5367 }
5368 
5369 //===----------------------------------------------------------------------===//
5370 // CFG Graphviz Visualization
5371 //===----------------------------------------------------------------------===//
5372 
5373 #ifndef NDEBUG
5374 static StmtPrinterHelper* GraphHelper;
5375 #endif
5376 
5377 void CFG::viewCFG(const LangOptions &LO) const {
5378 #ifndef NDEBUG
5379   StmtPrinterHelper H(this, LO);
5380   GraphHelper = &H;
5381   llvm::ViewGraph(this,"CFG");
5382   GraphHelper = nullptr;
5383 #endif
5384 }
5385 
5386 namespace llvm {
5387 
5388 template<>
5389 struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
5390   DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {}
5391 
5392   static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) {
5393 #ifndef NDEBUG
5394     std::string OutSStr;
5395     llvm::raw_string_ostream Out(OutSStr);
5396     print_block(Out,Graph, *Node, *GraphHelper, false, false);
5397     std::string& OutStr = Out.str();
5398 
5399     if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
5400 
5401     // Process string output to make it nicer...
5402     for (unsigned i = 0; i != OutStr.length(); ++i)
5403       if (OutStr[i] == '\n') {                            // Left justify
5404         OutStr[i] = '\\';
5405         OutStr.insert(OutStr.begin()+i+1, 'l');
5406       }
5407 
5408     return OutStr;
5409 #else
5410     return {};
5411 #endif
5412   }
5413 };
5414 
5415 } // namespace llvm
5416