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