1 //===--- SemaStmt.cpp - Semantic Analysis for Statements ------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  This file implements semantic analysis for statements.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/AST/ASTContext.h"
14 #include "clang/AST/ASTDiagnostic.h"
15 #include "clang/AST/ASTLambda.h"
16 #include "clang/AST/CXXInheritance.h"
17 #include "clang/AST/CharUnits.h"
18 #include "clang/AST/DeclObjC.h"
19 #include "clang/AST/EvaluatedExprVisitor.h"
20 #include "clang/AST/ExprCXX.h"
21 #include "clang/AST/ExprObjC.h"
22 #include "clang/AST/IgnoreExpr.h"
23 #include "clang/AST/RecursiveASTVisitor.h"
24 #include "clang/AST/StmtCXX.h"
25 #include "clang/AST/StmtObjC.h"
26 #include "clang/AST/TypeLoc.h"
27 #include "clang/AST/TypeOrdering.h"
28 #include "clang/Basic/TargetInfo.h"
29 #include "clang/Lex/Preprocessor.h"
30 #include "clang/Sema/Initialization.h"
31 #include "clang/Sema/Lookup.h"
32 #include "clang/Sema/Ownership.h"
33 #include "clang/Sema/Scope.h"
34 #include "clang/Sema/ScopeInfo.h"
35 #include "clang/Sema/SemaInternal.h"
36 #include "llvm/ADT/ArrayRef.h"
37 #include "llvm/ADT/DenseMap.h"
38 #include "llvm/ADT/STLExtras.h"
39 #include "llvm/ADT/SmallPtrSet.h"
40 #include "llvm/ADT/SmallString.h"
41 #include "llvm/ADT/SmallVector.h"
42 
43 using namespace clang;
44 using namespace sema;
45 
46 StmtResult Sema::ActOnExprStmt(ExprResult FE, bool DiscardedValue) {
47   if (FE.isInvalid())
48     return StmtError();
49 
50   FE = ActOnFinishFullExpr(FE.get(), FE.get()->getExprLoc(), DiscardedValue);
51   if (FE.isInvalid())
52     return StmtError();
53 
54   // C99 6.8.3p2: The expression in an expression statement is evaluated as a
55   // void expression for its side effects.  Conversion to void allows any
56   // operand, even incomplete types.
57 
58   // Same thing in for stmt first clause (when expr) and third clause.
59   return StmtResult(FE.getAs<Stmt>());
60 }
61 
62 
63 StmtResult Sema::ActOnExprStmtError() {
64   DiscardCleanupsInEvaluationContext();
65   return StmtError();
66 }
67 
68 StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc,
69                                bool HasLeadingEmptyMacro) {
70   return new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro);
71 }
72 
73 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
74                                SourceLocation EndLoc) {
75   DeclGroupRef DG = dg.get();
76 
77   // If we have an invalid decl, just return an error.
78   if (DG.isNull()) return StmtError();
79 
80   return new (Context) DeclStmt(DG, StartLoc, EndLoc);
81 }
82 
83 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
84   DeclGroupRef DG = dg.get();
85 
86   // If we don't have a declaration, or we have an invalid declaration,
87   // just return.
88   if (DG.isNull() || !DG.isSingleDecl())
89     return;
90 
91   Decl *decl = DG.getSingleDecl();
92   if (!decl || decl->isInvalidDecl())
93     return;
94 
95   // Only variable declarations are permitted.
96   VarDecl *var = dyn_cast<VarDecl>(decl);
97   if (!var) {
98     Diag(decl->getLocation(), diag::err_non_variable_decl_in_for);
99     decl->setInvalidDecl();
100     return;
101   }
102 
103   // foreach variables are never actually initialized in the way that
104   // the parser came up with.
105   var->setInit(nullptr);
106 
107   // In ARC, we don't need to retain the iteration variable of a fast
108   // enumeration loop.  Rather than actually trying to catch that
109   // during declaration processing, we remove the consequences here.
110   if (getLangOpts().ObjCAutoRefCount) {
111     QualType type = var->getType();
112 
113     // Only do this if we inferred the lifetime.  Inferred lifetime
114     // will show up as a local qualifier because explicit lifetime
115     // should have shown up as an AttributedType instead.
116     if (type.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong) {
117       // Add 'const' and mark the variable as pseudo-strong.
118       var->setType(type.withConst());
119       var->setARCPseudoStrong(true);
120     }
121   }
122 }
123 
124 /// Diagnose unused comparisons, both builtin and overloaded operators.
125 /// For '==' and '!=', suggest fixits for '=' or '|='.
126 ///
127 /// Adding a cast to void (or other expression wrappers) will prevent the
128 /// warning from firing.
129 static bool DiagnoseUnusedComparison(Sema &S, const Expr *E) {
130   SourceLocation Loc;
131   bool CanAssign;
132   enum { Equality, Inequality, Relational, ThreeWay } Kind;
133 
134   if (const BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
135     if (!Op->isComparisonOp())
136       return false;
137 
138     if (Op->getOpcode() == BO_EQ)
139       Kind = Equality;
140     else if (Op->getOpcode() == BO_NE)
141       Kind = Inequality;
142     else if (Op->getOpcode() == BO_Cmp)
143       Kind = ThreeWay;
144     else {
145       assert(Op->isRelationalOp());
146       Kind = Relational;
147     }
148     Loc = Op->getOperatorLoc();
149     CanAssign = Op->getLHS()->IgnoreParenImpCasts()->isLValue();
150   } else if (const CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
151     switch (Op->getOperator()) {
152     case OO_EqualEqual:
153       Kind = Equality;
154       break;
155     case OO_ExclaimEqual:
156       Kind = Inequality;
157       break;
158     case OO_Less:
159     case OO_Greater:
160     case OO_GreaterEqual:
161     case OO_LessEqual:
162       Kind = Relational;
163       break;
164     case OO_Spaceship:
165       Kind = ThreeWay;
166       break;
167     default:
168       return false;
169     }
170 
171     Loc = Op->getOperatorLoc();
172     CanAssign = Op->getArg(0)->IgnoreParenImpCasts()->isLValue();
173   } else {
174     // Not a typo-prone comparison.
175     return false;
176   }
177 
178   // Suppress warnings when the operator, suspicious as it may be, comes from
179   // a macro expansion.
180   if (S.SourceMgr.isMacroBodyExpansion(Loc))
181     return false;
182 
183   S.Diag(Loc, diag::warn_unused_comparison)
184     << (unsigned)Kind << E->getSourceRange();
185 
186   // If the LHS is a plausible entity to assign to, provide a fixit hint to
187   // correct common typos.
188   if (CanAssign) {
189     if (Kind == Inequality)
190       S.Diag(Loc, diag::note_inequality_comparison_to_or_assign)
191         << FixItHint::CreateReplacement(Loc, "|=");
192     else if (Kind == Equality)
193       S.Diag(Loc, diag::note_equality_comparison_to_assign)
194         << FixItHint::CreateReplacement(Loc, "=");
195   }
196 
197   return true;
198 }
199 
200 static bool DiagnoseNoDiscard(Sema &S, const WarnUnusedResultAttr *A,
201                               SourceLocation Loc, SourceRange R1,
202                               SourceRange R2, bool IsCtor) {
203   if (!A)
204     return false;
205   StringRef Msg = A->getMessage();
206 
207   if (Msg.empty()) {
208     if (IsCtor)
209       return S.Diag(Loc, diag::warn_unused_constructor) << A << R1 << R2;
210     return S.Diag(Loc, diag::warn_unused_result) << A << R1 << R2;
211   }
212 
213   if (IsCtor)
214     return S.Diag(Loc, diag::warn_unused_constructor_msg) << A << Msg << R1
215                                                           << R2;
216   return S.Diag(Loc, diag::warn_unused_result_msg) << A << Msg << R1 << R2;
217 }
218 
219 void Sema::DiagnoseUnusedExprResult(const Stmt *S) {
220   if (const LabelStmt *Label = dyn_cast_or_null<LabelStmt>(S))
221     return DiagnoseUnusedExprResult(Label->getSubStmt());
222 
223   const Expr *E = dyn_cast_or_null<Expr>(S);
224   if (!E)
225     return;
226 
227   // If we are in an unevaluated expression context, then there can be no unused
228   // results because the results aren't expected to be used in the first place.
229   if (isUnevaluatedContext())
230     return;
231 
232   SourceLocation ExprLoc = E->IgnoreParenImpCasts()->getExprLoc();
233   // In most cases, we don't want to warn if the expression is written in a
234   // macro body, or if the macro comes from a system header. If the offending
235   // expression is a call to a function with the warn_unused_result attribute,
236   // we warn no matter the location. Because of the order in which the various
237   // checks need to happen, we factor out the macro-related test here.
238   bool ShouldSuppress =
239       SourceMgr.isMacroBodyExpansion(ExprLoc) ||
240       SourceMgr.isInSystemMacro(ExprLoc);
241 
242   const Expr *WarnExpr;
243   SourceLocation Loc;
244   SourceRange R1, R2;
245   if (!E->isUnusedResultAWarning(WarnExpr, Loc, R1, R2, Context))
246     return;
247 
248   // If this is a GNU statement expression expanded from a macro, it is probably
249   // unused because it is a function-like macro that can be used as either an
250   // expression or statement.  Don't warn, because it is almost certainly a
251   // false positive.
252   if (isa<StmtExpr>(E) && Loc.isMacroID())
253     return;
254 
255   // Check if this is the UNREFERENCED_PARAMETER from the Microsoft headers.
256   // That macro is frequently used to suppress "unused parameter" warnings,
257   // but its implementation makes clang's -Wunused-value fire.  Prevent this.
258   if (isa<ParenExpr>(E->IgnoreImpCasts()) && Loc.isMacroID()) {
259     SourceLocation SpellLoc = Loc;
260     if (findMacroSpelling(SpellLoc, "UNREFERENCED_PARAMETER"))
261       return;
262   }
263 
264   // Okay, we have an unused result.  Depending on what the base expression is,
265   // we might want to make a more specific diagnostic.  Check for one of these
266   // cases now.
267   unsigned DiagID = diag::warn_unused_expr;
268   if (const FullExpr *Temps = dyn_cast<FullExpr>(E))
269     E = Temps->getSubExpr();
270   if (const CXXBindTemporaryExpr *TempExpr = dyn_cast<CXXBindTemporaryExpr>(E))
271     E = TempExpr->getSubExpr();
272 
273   if (DiagnoseUnusedComparison(*this, E))
274     return;
275 
276   E = WarnExpr;
277   if (const auto *Cast = dyn_cast<CastExpr>(E))
278     if (Cast->getCastKind() == CK_NoOp ||
279         Cast->getCastKind() == CK_ConstructorConversion)
280       E = Cast->getSubExpr()->IgnoreImpCasts();
281 
282   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
283     if (E->getType()->isVoidType())
284       return;
285 
286     if (DiagnoseNoDiscard(*this, cast_or_null<WarnUnusedResultAttr>(
287                                      CE->getUnusedResultAttr(Context)),
288                           Loc, R1, R2, /*isCtor=*/false))
289       return;
290 
291     // If the callee has attribute pure, const, or warn_unused_result, warn with
292     // a more specific message to make it clear what is happening. If the call
293     // is written in a macro body, only warn if it has the warn_unused_result
294     // attribute.
295     if (const Decl *FD = CE->getCalleeDecl()) {
296       if (ShouldSuppress)
297         return;
298       if (FD->hasAttr<PureAttr>()) {
299         Diag(Loc, diag::warn_unused_call) << R1 << R2 << "pure";
300         return;
301       }
302       if (FD->hasAttr<ConstAttr>()) {
303         Diag(Loc, diag::warn_unused_call) << R1 << R2 << "const";
304         return;
305       }
306     }
307   } else if (const auto *CE = dyn_cast<CXXConstructExpr>(E)) {
308     if (const CXXConstructorDecl *Ctor = CE->getConstructor()) {
309       const auto *A = Ctor->getAttr<WarnUnusedResultAttr>();
310       A = A ? A : Ctor->getParent()->getAttr<WarnUnusedResultAttr>();
311       if (DiagnoseNoDiscard(*this, A, Loc, R1, R2, /*isCtor=*/true))
312         return;
313     }
314   } else if (const auto *ILE = dyn_cast<InitListExpr>(E)) {
315     if (const TagDecl *TD = ILE->getType()->getAsTagDecl()) {
316 
317       if (DiagnoseNoDiscard(*this, TD->getAttr<WarnUnusedResultAttr>(), Loc, R1,
318                             R2, /*isCtor=*/false))
319         return;
320     }
321   } else if (ShouldSuppress)
322     return;
323 
324   E = WarnExpr;
325   if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) {
326     if (getLangOpts().ObjCAutoRefCount && ME->isDelegateInitCall()) {
327       Diag(Loc, diag::err_arc_unused_init_message) << R1;
328       return;
329     }
330     const ObjCMethodDecl *MD = ME->getMethodDecl();
331     if (MD) {
332       if (DiagnoseNoDiscard(*this, MD->getAttr<WarnUnusedResultAttr>(), Loc, R1,
333                             R2, /*isCtor=*/false))
334         return;
335     }
336   } else if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
337     const Expr *Source = POE->getSyntacticForm();
338     // Handle the actually selected call of an OpenMP specialized call.
339     if (LangOpts.OpenMP && isa<CallExpr>(Source) &&
340         POE->getNumSemanticExprs() == 1 &&
341         isa<CallExpr>(POE->getSemanticExpr(0)))
342       return DiagnoseUnusedExprResult(POE->getSemanticExpr(0));
343     if (isa<ObjCSubscriptRefExpr>(Source))
344       DiagID = diag::warn_unused_container_subscript_expr;
345     else
346       DiagID = diag::warn_unused_property_expr;
347   } else if (const CXXFunctionalCastExpr *FC
348                                        = dyn_cast<CXXFunctionalCastExpr>(E)) {
349     const Expr *E = FC->getSubExpr();
350     if (const CXXBindTemporaryExpr *TE = dyn_cast<CXXBindTemporaryExpr>(E))
351       E = TE->getSubExpr();
352     if (isa<CXXTemporaryObjectExpr>(E))
353       return;
354     if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(E))
355       if (const CXXRecordDecl *RD = CE->getType()->getAsCXXRecordDecl())
356         if (!RD->getAttr<WarnUnusedAttr>())
357           return;
358   }
359   // Diagnose "(void*) blah" as a typo for "(void) blah".
360   else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
361     TypeSourceInfo *TI = CE->getTypeInfoAsWritten();
362     QualType T = TI->getType();
363 
364     // We really do want to use the non-canonical type here.
365     if (T == Context.VoidPtrTy) {
366       PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
367 
368       Diag(Loc, diag::warn_unused_voidptr)
369         << FixItHint::CreateRemoval(TL.getStarLoc());
370       return;
371     }
372   }
373 
374   // Tell the user to assign it into a variable to force a volatile load if this
375   // isn't an array.
376   if (E->isGLValue() && E->getType().isVolatileQualified() &&
377       !E->getType()->isArrayType()) {
378     Diag(Loc, diag::warn_unused_volatile) << R1 << R2;
379     return;
380   }
381 
382   DiagRuntimeBehavior(Loc, nullptr, PDiag(DiagID) << R1 << R2);
383 }
384 
385 void Sema::ActOnStartOfCompoundStmt(bool IsStmtExpr) {
386   PushCompoundScope(IsStmtExpr);
387 }
388 
389 void Sema::ActOnAfterCompoundStatementLeadingPragmas() {
390   if (getCurFPFeatures().isFPConstrained()) {
391     FunctionScopeInfo *FSI = getCurFunction();
392     assert(FSI);
393     FSI->setUsesFPIntrin();
394   }
395 }
396 
397 void Sema::ActOnFinishOfCompoundStmt() {
398   PopCompoundScope();
399 }
400 
401 sema::CompoundScopeInfo &Sema::getCurCompoundScope() const {
402   return getCurFunction()->CompoundScopes.back();
403 }
404 
405 StmtResult Sema::ActOnCompoundStmt(SourceLocation L, SourceLocation R,
406                                    ArrayRef<Stmt *> Elts, bool isStmtExpr) {
407   const unsigned NumElts = Elts.size();
408 
409   // If we're in C89 mode, check that we don't have any decls after stmts.  If
410   // so, emit an extension diagnostic.
411   if (!getLangOpts().C99 && !getLangOpts().CPlusPlus) {
412     // Note that __extension__ can be around a decl.
413     unsigned i = 0;
414     // Skip over all declarations.
415     for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
416       /*empty*/;
417 
418     // We found the end of the list or a statement.  Scan for another declstmt.
419     for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
420       /*empty*/;
421 
422     if (i != NumElts) {
423       Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin();
424       Diag(D->getLocation(), diag::ext_mixed_decls_code);
425     }
426   }
427 
428   // Check for suspicious empty body (null statement) in `for' and `while'
429   // statements.  Don't do anything for template instantiations, this just adds
430   // noise.
431   if (NumElts != 0 && !CurrentInstantiationScope &&
432       getCurCompoundScope().HasEmptyLoopBodies) {
433     for (unsigned i = 0; i != NumElts - 1; ++i)
434       DiagnoseEmptyLoopBody(Elts[i], Elts[i + 1]);
435   }
436 
437   return CompoundStmt::Create(Context, Elts, L, R);
438 }
439 
440 ExprResult
441 Sema::ActOnCaseExpr(SourceLocation CaseLoc, ExprResult Val) {
442   if (!Val.get())
443     return Val;
444 
445   if (DiagnoseUnexpandedParameterPack(Val.get()))
446     return ExprError();
447 
448   // If we're not inside a switch, let the 'case' statement handling diagnose
449   // this. Just clean up after the expression as best we can.
450   if (getCurFunction()->SwitchStack.empty())
451     return ActOnFinishFullExpr(Val.get(), Val.get()->getExprLoc(), false,
452                                getLangOpts().CPlusPlus11);
453 
454   Expr *CondExpr =
455       getCurFunction()->SwitchStack.back().getPointer()->getCond();
456   if (!CondExpr)
457     return ExprError();
458   QualType CondType = CondExpr->getType();
459 
460   auto CheckAndFinish = [&](Expr *E) {
461     if (CondType->isDependentType() || E->isTypeDependent())
462       return ExprResult(E);
463 
464     if (getLangOpts().CPlusPlus11) {
465       // C++11 [stmt.switch]p2: the constant-expression shall be a converted
466       // constant expression of the promoted type of the switch condition.
467       llvm::APSInt TempVal;
468       return CheckConvertedConstantExpression(E, CondType, TempVal,
469                                               CCEK_CaseValue);
470     }
471 
472     ExprResult ER = E;
473     if (!E->isValueDependent())
474       ER = VerifyIntegerConstantExpression(E, AllowFold);
475     if (!ER.isInvalid())
476       ER = DefaultLvalueConversion(ER.get());
477     if (!ER.isInvalid())
478       ER = ImpCastExprToType(ER.get(), CondType, CK_IntegralCast);
479     if (!ER.isInvalid())
480       ER = ActOnFinishFullExpr(ER.get(), ER.get()->getExprLoc(), false);
481     return ER;
482   };
483 
484   ExprResult Converted = CorrectDelayedTyposInExpr(
485       Val, /*InitDecl=*/nullptr, /*RecoverUncorrectedTypos=*/false,
486       CheckAndFinish);
487   if (Converted.get() == Val.get())
488     Converted = CheckAndFinish(Val.get());
489   return Converted;
490 }
491 
492 StmtResult
493 Sema::ActOnCaseStmt(SourceLocation CaseLoc, ExprResult LHSVal,
494                     SourceLocation DotDotDotLoc, ExprResult RHSVal,
495                     SourceLocation ColonLoc) {
496   assert((LHSVal.isInvalid() || LHSVal.get()) && "missing LHS value");
497   assert((DotDotDotLoc.isInvalid() ? RHSVal.isUnset()
498                                    : RHSVal.isInvalid() || RHSVal.get()) &&
499          "missing RHS value");
500 
501   if (getCurFunction()->SwitchStack.empty()) {
502     Diag(CaseLoc, diag::err_case_not_in_switch);
503     return StmtError();
504   }
505 
506   if (LHSVal.isInvalid() || RHSVal.isInvalid()) {
507     getCurFunction()->SwitchStack.back().setInt(true);
508     return StmtError();
509   }
510 
511   auto *CS = CaseStmt::Create(Context, LHSVal.get(), RHSVal.get(),
512                               CaseLoc, DotDotDotLoc, ColonLoc);
513   getCurFunction()->SwitchStack.back().getPointer()->addSwitchCase(CS);
514   return CS;
515 }
516 
517 /// ActOnCaseStmtBody - This installs a statement as the body of a case.
518 void Sema::ActOnCaseStmtBody(Stmt *S, Stmt *SubStmt) {
519   cast<CaseStmt>(S)->setSubStmt(SubStmt);
520 }
521 
522 StmtResult
523 Sema::ActOnDefaultStmt(SourceLocation DefaultLoc, SourceLocation ColonLoc,
524                        Stmt *SubStmt, Scope *CurScope) {
525   if (getCurFunction()->SwitchStack.empty()) {
526     Diag(DefaultLoc, diag::err_default_not_in_switch);
527     return SubStmt;
528   }
529 
530   DefaultStmt *DS = new (Context) DefaultStmt(DefaultLoc, ColonLoc, SubStmt);
531   getCurFunction()->SwitchStack.back().getPointer()->addSwitchCase(DS);
532   return DS;
533 }
534 
535 StmtResult
536 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl,
537                      SourceLocation ColonLoc, Stmt *SubStmt) {
538   // If the label was multiply defined, reject it now.
539   if (TheDecl->getStmt()) {
540     Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName();
541     Diag(TheDecl->getLocation(), diag::note_previous_definition);
542     return SubStmt;
543   }
544 
545   ReservedIdentifierStatus Status = TheDecl->isReserved(getLangOpts());
546   if (Status != ReservedIdentifierStatus::NotReserved &&
547       !Context.getSourceManager().isInSystemHeader(IdentLoc))
548     Diag(IdentLoc, diag::warn_reserved_extern_symbol)
549         << TheDecl << static_cast<int>(Status);
550 
551   // Otherwise, things are good.  Fill in the declaration and return it.
552   LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt);
553   TheDecl->setStmt(LS);
554   if (!TheDecl->isGnuLocal()) {
555     TheDecl->setLocStart(IdentLoc);
556     if (!TheDecl->isMSAsmLabel()) {
557       // Don't update the location of MS ASM labels.  These will result in
558       // a diagnostic, and changing the location here will mess that up.
559       TheDecl->setLocation(IdentLoc);
560     }
561   }
562   return LS;
563 }
564 
565 StmtResult Sema::BuildAttributedStmt(SourceLocation AttrsLoc,
566                                      ArrayRef<const Attr *> Attrs,
567                                      Stmt *SubStmt) {
568   // FIXME: this code should move when a planned refactoring around statement
569   // attributes lands.
570   for (const auto *A : Attrs) {
571     if (A->getKind() == attr::MustTail) {
572       if (!checkAndRewriteMustTailAttr(SubStmt, *A)) {
573         return SubStmt;
574       }
575       setFunctionHasMustTail();
576     }
577   }
578 
579   return AttributedStmt::Create(Context, AttrsLoc, Attrs, SubStmt);
580 }
581 
582 StmtResult Sema::ActOnAttributedStmt(const ParsedAttributesWithRange &Attrs,
583                                      Stmt *SubStmt) {
584   SmallVector<const Attr *, 1> SemanticAttrs;
585   ProcessStmtAttributes(SubStmt, Attrs, SemanticAttrs);
586   if (!SemanticAttrs.empty())
587     return BuildAttributedStmt(Attrs.Range.getBegin(), SemanticAttrs, SubStmt);
588   // If none of the attributes applied, that's fine, we can recover by
589   // returning the substatement directly instead of making an AttributedStmt
590   // with no attributes on it.
591   return SubStmt;
592 }
593 
594 bool Sema::checkAndRewriteMustTailAttr(Stmt *St, const Attr &MTA) {
595   ReturnStmt *R = cast<ReturnStmt>(St);
596   Expr *E = R->getRetValue();
597 
598   if (CurContext->isDependentContext() || (E && E->isInstantiationDependent()))
599     // We have to suspend our check until template instantiation time.
600     return true;
601 
602   if (!checkMustTailAttr(St, MTA))
603     return false;
604 
605   // FIXME: Replace Expr::IgnoreImplicitAsWritten() with this function.
606   // Currently it does not skip implicit constructors in an initialization
607   // context.
608   auto IgnoreImplicitAsWritten = [](Expr *E) -> Expr * {
609     return IgnoreExprNodes(E, IgnoreImplicitAsWrittenSingleStep,
610                            IgnoreElidableImplicitConstructorSingleStep);
611   };
612 
613   // Now that we have verified that 'musttail' is valid here, rewrite the
614   // return value to remove all implicit nodes, but retain parentheses.
615   R->setRetValue(IgnoreImplicitAsWritten(E));
616   return true;
617 }
618 
619 bool Sema::checkMustTailAttr(const Stmt *St, const Attr &MTA) {
620   assert(!CurContext->isDependentContext() &&
621          "musttail cannot be checked from a dependent context");
622 
623   // FIXME: Add Expr::IgnoreParenImplicitAsWritten() with this definition.
624   auto IgnoreParenImplicitAsWritten = [](const Expr *E) -> const Expr * {
625     return IgnoreExprNodes(const_cast<Expr *>(E), IgnoreParensSingleStep,
626                            IgnoreImplicitAsWrittenSingleStep,
627                            IgnoreElidableImplicitConstructorSingleStep);
628   };
629 
630   const Expr *E = cast<ReturnStmt>(St)->getRetValue();
631   const auto *CE = dyn_cast_or_null<CallExpr>(IgnoreParenImplicitAsWritten(E));
632 
633   if (!CE) {
634     Diag(St->getBeginLoc(), diag::err_musttail_needs_call) << &MTA;
635     return false;
636   }
637 
638   if (const auto *EWC = dyn_cast<ExprWithCleanups>(E)) {
639     if (EWC->cleanupsHaveSideEffects()) {
640       Diag(St->getBeginLoc(), diag::err_musttail_needs_trivial_args) << &MTA;
641       return false;
642     }
643   }
644 
645   // We need to determine the full function type (including "this" type, if any)
646   // for both caller and callee.
647   struct FuncType {
648     enum {
649       ft_non_member,
650       ft_static_member,
651       ft_non_static_member,
652       ft_pointer_to_member,
653     } MemberType = ft_non_member;
654 
655     QualType This;
656     const FunctionProtoType *Func;
657     const CXXMethodDecl *Method = nullptr;
658   } CallerType, CalleeType;
659 
660   auto GetMethodType = [this, St, MTA](const CXXMethodDecl *CMD, FuncType &Type,
661                                        bool IsCallee) -> bool {
662     if (isa<CXXConstructorDecl, CXXDestructorDecl>(CMD)) {
663       Diag(St->getBeginLoc(), diag::err_musttail_structors_forbidden)
664           << IsCallee << isa<CXXDestructorDecl>(CMD);
665       if (IsCallee)
666         Diag(CMD->getBeginLoc(), diag::note_musttail_structors_forbidden)
667             << isa<CXXDestructorDecl>(CMD);
668       Diag(MTA.getLocation(), diag::note_tail_call_required) << &MTA;
669       return false;
670     }
671     if (CMD->isStatic())
672       Type.MemberType = FuncType::ft_static_member;
673     else {
674       Type.This = CMD->getThisType()->getPointeeType();
675       Type.MemberType = FuncType::ft_non_static_member;
676     }
677     Type.Func = CMD->getType()->castAs<FunctionProtoType>();
678     return true;
679   };
680 
681   const auto *CallerDecl = dyn_cast<FunctionDecl>(CurContext);
682 
683   // Find caller function signature.
684   if (!CallerDecl) {
685     int ContextType;
686     if (isa<BlockDecl>(CurContext))
687       ContextType = 0;
688     else if (isa<ObjCMethodDecl>(CurContext))
689       ContextType = 1;
690     else
691       ContextType = 2;
692     Diag(St->getBeginLoc(), diag::err_musttail_forbidden_from_this_context)
693         << &MTA << ContextType;
694     return false;
695   } else if (const auto *CMD = dyn_cast<CXXMethodDecl>(CurContext)) {
696     // Caller is a class/struct method.
697     if (!GetMethodType(CMD, CallerType, false))
698       return false;
699   } else {
700     // Caller is a non-method function.
701     CallerType.Func = CallerDecl->getType()->getAs<FunctionProtoType>();
702   }
703 
704   const Expr *CalleeExpr = CE->getCallee()->IgnoreParens();
705   const auto *CalleeBinOp = dyn_cast<BinaryOperator>(CalleeExpr);
706   SourceLocation CalleeLoc = CE->getCalleeDecl()
707                                  ? CE->getCalleeDecl()->getBeginLoc()
708                                  : St->getBeginLoc();
709 
710   // Find callee function signature.
711   if (const CXXMethodDecl *CMD =
712           dyn_cast_or_null<CXXMethodDecl>(CE->getCalleeDecl())) {
713     // Call is: obj.method(), obj->method(), functor(), etc.
714     if (!GetMethodType(CMD, CalleeType, true))
715       return false;
716   } else if (CalleeBinOp && CalleeBinOp->isPtrMemOp()) {
717     // Call is: obj->*method_ptr or obj.*method_ptr
718     const auto *MPT =
719         CalleeBinOp->getRHS()->getType()->castAs<MemberPointerType>();
720     CalleeType.This = QualType(MPT->getClass(), 0);
721     CalleeType.Func = MPT->getPointeeType()->castAs<FunctionProtoType>();
722     CalleeType.MemberType = FuncType::ft_pointer_to_member;
723   } else if (isa<CXXPseudoDestructorExpr>(CalleeExpr)) {
724     Diag(St->getBeginLoc(), diag::err_musttail_structors_forbidden)
725         << /* IsCallee = */ 1 << /* IsDestructor = */ 1;
726     Diag(MTA.getLocation(), diag::note_tail_call_required) << &MTA;
727     return false;
728   } else {
729     // Non-method function.
730     CalleeType.Func =
731         CalleeExpr->getType()->getPointeeType()->getAs<FunctionProtoType>();
732   }
733 
734   // Both caller and callee must have a prototype (no K&R declarations).
735   if (!CalleeType.Func || !CallerType.Func) {
736     Diag(St->getBeginLoc(), diag::err_musttail_needs_prototype) << &MTA;
737     if (!CalleeType.Func && CE->getDirectCallee()) {
738       Diag(CE->getDirectCallee()->getBeginLoc(),
739            diag::note_musttail_fix_non_prototype);
740     }
741     if (!CallerType.Func)
742       Diag(CallerDecl->getBeginLoc(), diag::note_musttail_fix_non_prototype);
743     return false;
744   }
745 
746   // Caller and callee must have matching calling conventions.
747   //
748   // Some calling conventions are physically capable of supporting tail calls
749   // even if the function types don't perfectly match. LLVM is currently too
750   // strict to allow this, but if LLVM added support for this in the future, we
751   // could exit early here and skip the remaining checks if the functions are
752   // using such a calling convention.
753   if (CallerType.Func->getCallConv() != CalleeType.Func->getCallConv()) {
754     if (const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl()))
755       Diag(St->getBeginLoc(), diag::err_musttail_callconv_mismatch)
756           << true << ND->getDeclName();
757     else
758       Diag(St->getBeginLoc(), diag::err_musttail_callconv_mismatch) << false;
759     Diag(CalleeLoc, diag::note_musttail_callconv_mismatch)
760         << FunctionType::getNameForCallConv(CallerType.Func->getCallConv())
761         << FunctionType::getNameForCallConv(CalleeType.Func->getCallConv());
762     Diag(MTA.getLocation(), diag::note_tail_call_required) << &MTA;
763     return false;
764   }
765 
766   if (CalleeType.Func->isVariadic() || CallerType.Func->isVariadic()) {
767     Diag(St->getBeginLoc(), diag::err_musttail_no_variadic) << &MTA;
768     return false;
769   }
770 
771   // Caller and callee must match in whether they have a "this" parameter.
772   if (CallerType.This.isNull() != CalleeType.This.isNull()) {
773     if (const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
774       Diag(St->getBeginLoc(), diag::err_musttail_member_mismatch)
775           << CallerType.MemberType << CalleeType.MemberType << true
776           << ND->getDeclName();
777       Diag(CalleeLoc, diag::note_musttail_callee_defined_here)
778           << ND->getDeclName();
779     } else
780       Diag(St->getBeginLoc(), diag::err_musttail_member_mismatch)
781           << CallerType.MemberType << CalleeType.MemberType << false;
782     Diag(MTA.getLocation(), diag::note_tail_call_required) << &MTA;
783     return false;
784   }
785 
786   auto CheckTypesMatch = [this](FuncType CallerType, FuncType CalleeType,
787                                 PartialDiagnostic &PD) -> bool {
788     enum {
789       ft_different_class,
790       ft_parameter_arity,
791       ft_parameter_mismatch,
792       ft_return_type,
793     };
794 
795     auto DoTypesMatch = [this, &PD](QualType A, QualType B,
796                                     unsigned Select) -> bool {
797       if (!Context.hasSimilarType(A, B)) {
798         PD << Select << A.getUnqualifiedType() << B.getUnqualifiedType();
799         return false;
800       }
801       return true;
802     };
803 
804     if (!CallerType.This.isNull() &&
805         !DoTypesMatch(CallerType.This, CalleeType.This, ft_different_class))
806       return false;
807 
808     if (!DoTypesMatch(CallerType.Func->getReturnType(),
809                       CalleeType.Func->getReturnType(), ft_return_type))
810       return false;
811 
812     if (CallerType.Func->getNumParams() != CalleeType.Func->getNumParams()) {
813       PD << ft_parameter_arity << CallerType.Func->getNumParams()
814          << CalleeType.Func->getNumParams();
815       return false;
816     }
817 
818     ArrayRef<QualType> CalleeParams = CalleeType.Func->getParamTypes();
819     ArrayRef<QualType> CallerParams = CallerType.Func->getParamTypes();
820     size_t N = CallerType.Func->getNumParams();
821     for (size_t I = 0; I < N; I++) {
822       if (!DoTypesMatch(CalleeParams[I], CallerParams[I],
823                         ft_parameter_mismatch)) {
824         PD << static_cast<int>(I) + 1;
825         return false;
826       }
827     }
828 
829     return true;
830   };
831 
832   PartialDiagnostic PD = PDiag(diag::note_musttail_mismatch);
833   if (!CheckTypesMatch(CallerType, CalleeType, PD)) {
834     if (const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl()))
835       Diag(St->getBeginLoc(), diag::err_musttail_mismatch)
836           << true << ND->getDeclName();
837     else
838       Diag(St->getBeginLoc(), diag::err_musttail_mismatch) << false;
839     Diag(CalleeLoc, PD);
840     Diag(MTA.getLocation(), diag::note_tail_call_required) << &MTA;
841     return false;
842   }
843 
844   return true;
845 }
846 
847 namespace {
848 class CommaVisitor : public EvaluatedExprVisitor<CommaVisitor> {
849   typedef EvaluatedExprVisitor<CommaVisitor> Inherited;
850   Sema &SemaRef;
851 public:
852   CommaVisitor(Sema &SemaRef) : Inherited(SemaRef.Context), SemaRef(SemaRef) {}
853   void VisitBinaryOperator(BinaryOperator *E) {
854     if (E->getOpcode() == BO_Comma)
855       SemaRef.DiagnoseCommaOperator(E->getLHS(), E->getExprLoc());
856     EvaluatedExprVisitor<CommaVisitor>::VisitBinaryOperator(E);
857   }
858 };
859 }
860 
861 StmtResult Sema::ActOnIfStmt(SourceLocation IfLoc, bool IsConstexpr,
862                              SourceLocation LParenLoc, Stmt *InitStmt,
863                              ConditionResult Cond, SourceLocation RParenLoc,
864                              Stmt *thenStmt, SourceLocation ElseLoc,
865                              Stmt *elseStmt) {
866   if (Cond.isInvalid())
867     Cond = ConditionResult(
868         *this, nullptr,
869         MakeFullExpr(new (Context) OpaqueValueExpr(SourceLocation(),
870                                                    Context.BoolTy, VK_PRValue),
871                      IfLoc),
872         false);
873 
874   Expr *CondExpr = Cond.get().second;
875   // Only call the CommaVisitor when not C89 due to differences in scope flags.
876   if ((getLangOpts().C99 || getLangOpts().CPlusPlus) &&
877       !Diags.isIgnored(diag::warn_comma_operator, CondExpr->getExprLoc()))
878     CommaVisitor(*this).Visit(CondExpr);
879 
880   if (!elseStmt)
881     DiagnoseEmptyStmtBody(CondExpr->getEndLoc(), thenStmt,
882                           diag::warn_empty_if_body);
883 
884   if (IsConstexpr) {
885     auto DiagnoseLikelihood = [&](const Stmt *S) {
886       if (const Attr *A = Stmt::getLikelihoodAttr(S)) {
887         Diags.Report(A->getLocation(),
888                      diag::warn_attribute_has_no_effect_on_if_constexpr)
889             << A << A->getRange();
890         Diags.Report(IfLoc,
891                      diag::note_attribute_has_no_effect_on_if_constexpr_here)
892             << SourceRange(IfLoc, LParenLoc.getLocWithOffset(-1));
893       }
894     };
895     DiagnoseLikelihood(thenStmt);
896     DiagnoseLikelihood(elseStmt);
897   } else {
898     std::tuple<bool, const Attr *, const Attr *> LHC =
899         Stmt::determineLikelihoodConflict(thenStmt, elseStmt);
900     if (std::get<0>(LHC)) {
901       const Attr *ThenAttr = std::get<1>(LHC);
902       const Attr *ElseAttr = std::get<2>(LHC);
903       Diags.Report(ThenAttr->getLocation(),
904                    diag::warn_attributes_likelihood_ifstmt_conflict)
905           << ThenAttr << ThenAttr->getRange();
906       Diags.Report(ElseAttr->getLocation(), diag::note_conflicting_attribute)
907           << ElseAttr << ElseAttr->getRange();
908     }
909   }
910 
911   return BuildIfStmt(IfLoc, IsConstexpr, LParenLoc, InitStmt, Cond, RParenLoc,
912                      thenStmt, ElseLoc, elseStmt);
913 }
914 
915 StmtResult Sema::BuildIfStmt(SourceLocation IfLoc, bool IsConstexpr,
916                              SourceLocation LParenLoc, Stmt *InitStmt,
917                              ConditionResult Cond, SourceLocation RParenLoc,
918                              Stmt *thenStmt, SourceLocation ElseLoc,
919                              Stmt *elseStmt) {
920   if (Cond.isInvalid())
921     return StmtError();
922 
923   if (IsConstexpr || isa<ObjCAvailabilityCheckExpr>(Cond.get().second))
924     setFunctionHasBranchProtectedScope();
925 
926   return IfStmt::Create(Context, IfLoc, IsConstexpr, InitStmt, Cond.get().first,
927                         Cond.get().second, LParenLoc, RParenLoc, thenStmt,
928                         ElseLoc, elseStmt);
929 }
930 
931 namespace {
932   struct CaseCompareFunctor {
933     bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
934                     const llvm::APSInt &RHS) {
935       return LHS.first < RHS;
936     }
937     bool operator()(const std::pair<llvm::APSInt, CaseStmt*> &LHS,
938                     const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
939       return LHS.first < RHS.first;
940     }
941     bool operator()(const llvm::APSInt &LHS,
942                     const std::pair<llvm::APSInt, CaseStmt*> &RHS) {
943       return LHS < RHS.first;
944     }
945   };
946 }
947 
948 /// CmpCaseVals - Comparison predicate for sorting case values.
949 ///
950 static bool CmpCaseVals(const std::pair<llvm::APSInt, CaseStmt*>& lhs,
951                         const std::pair<llvm::APSInt, CaseStmt*>& rhs) {
952   if (lhs.first < rhs.first)
953     return true;
954 
955   if (lhs.first == rhs.first &&
956       lhs.second->getCaseLoc() < rhs.second->getCaseLoc())
957     return true;
958   return false;
959 }
960 
961 /// CmpEnumVals - Comparison predicate for sorting enumeration values.
962 ///
963 static bool CmpEnumVals(const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
964                         const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
965 {
966   return lhs.first < rhs.first;
967 }
968 
969 /// EqEnumVals - Comparison preficate for uniqing enumeration values.
970 ///
971 static bool EqEnumVals(const std::pair<llvm::APSInt, EnumConstantDecl*>& lhs,
972                        const std::pair<llvm::APSInt, EnumConstantDecl*>& rhs)
973 {
974   return lhs.first == rhs.first;
975 }
976 
977 /// GetTypeBeforeIntegralPromotion - Returns the pre-promotion type of
978 /// potentially integral-promoted expression @p expr.
979 static QualType GetTypeBeforeIntegralPromotion(const Expr *&E) {
980   if (const auto *FE = dyn_cast<FullExpr>(E))
981     E = FE->getSubExpr();
982   while (const auto *ImpCast = dyn_cast<ImplicitCastExpr>(E)) {
983     if (ImpCast->getCastKind() != CK_IntegralCast) break;
984     E = ImpCast->getSubExpr();
985   }
986   return E->getType();
987 }
988 
989 ExprResult Sema::CheckSwitchCondition(SourceLocation SwitchLoc, Expr *Cond) {
990   class SwitchConvertDiagnoser : public ICEConvertDiagnoser {
991     Expr *Cond;
992 
993   public:
994     SwitchConvertDiagnoser(Expr *Cond)
995         : ICEConvertDiagnoser(/*AllowScopedEnumerations*/true, false, true),
996           Cond(Cond) {}
997 
998     SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
999                                          QualType T) override {
1000       return S.Diag(Loc, diag::err_typecheck_statement_requires_integer) << T;
1001     }
1002 
1003     SemaDiagnosticBuilder diagnoseIncomplete(
1004         Sema &S, SourceLocation Loc, QualType T) override {
1005       return S.Diag(Loc, diag::err_switch_incomplete_class_type)
1006                << T << Cond->getSourceRange();
1007     }
1008 
1009     SemaDiagnosticBuilder diagnoseExplicitConv(
1010         Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
1011       return S.Diag(Loc, diag::err_switch_explicit_conversion) << T << ConvTy;
1012     }
1013 
1014     SemaDiagnosticBuilder noteExplicitConv(
1015         Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
1016       return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
1017         << ConvTy->isEnumeralType() << ConvTy;
1018     }
1019 
1020     SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc,
1021                                             QualType T) override {
1022       return S.Diag(Loc, diag::err_switch_multiple_conversions) << T;
1023     }
1024 
1025     SemaDiagnosticBuilder noteAmbiguous(
1026         Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
1027       return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
1028       << ConvTy->isEnumeralType() << ConvTy;
1029     }
1030 
1031     SemaDiagnosticBuilder diagnoseConversion(
1032         Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
1033       llvm_unreachable("conversion functions are permitted");
1034     }
1035   } SwitchDiagnoser(Cond);
1036 
1037   ExprResult CondResult =
1038       PerformContextualImplicitConversion(SwitchLoc, Cond, SwitchDiagnoser);
1039   if (CondResult.isInvalid())
1040     return ExprError();
1041 
1042   // FIXME: PerformContextualImplicitConversion doesn't always tell us if it
1043   // failed and produced a diagnostic.
1044   Cond = CondResult.get();
1045   if (!Cond->isTypeDependent() &&
1046       !Cond->getType()->isIntegralOrEnumerationType())
1047     return ExprError();
1048 
1049   // C99 6.8.4.2p5 - Integer promotions are performed on the controlling expr.
1050   return UsualUnaryConversions(Cond);
1051 }
1052 
1053 StmtResult Sema::ActOnStartOfSwitchStmt(SourceLocation SwitchLoc,
1054                                         SourceLocation LParenLoc,
1055                                         Stmt *InitStmt, ConditionResult Cond,
1056                                         SourceLocation RParenLoc) {
1057   Expr *CondExpr = Cond.get().second;
1058   assert((Cond.isInvalid() || CondExpr) && "switch with no condition");
1059 
1060   if (CondExpr && !CondExpr->isTypeDependent()) {
1061     // We have already converted the expression to an integral or enumeration
1062     // type, when we parsed the switch condition. There are cases where we don't
1063     // have an appropriate type, e.g. a typo-expr Cond was corrected to an
1064     // inappropriate-type expr, we just return an error.
1065     if (!CondExpr->getType()->isIntegralOrEnumerationType())
1066       return StmtError();
1067     if (CondExpr->isKnownToHaveBooleanValue()) {
1068       // switch(bool_expr) {...} is often a programmer error, e.g.
1069       //   switch(n && mask) { ... }  // Doh - should be "n & mask".
1070       // One can always use an if statement instead of switch(bool_expr).
1071       Diag(SwitchLoc, diag::warn_bool_switch_condition)
1072           << CondExpr->getSourceRange();
1073     }
1074   }
1075 
1076   setFunctionHasBranchIntoScope();
1077 
1078   auto *SS = SwitchStmt::Create(Context, InitStmt, Cond.get().first, CondExpr,
1079                                 LParenLoc, RParenLoc);
1080   getCurFunction()->SwitchStack.push_back(
1081       FunctionScopeInfo::SwitchInfo(SS, false));
1082   return SS;
1083 }
1084 
1085 static void AdjustAPSInt(llvm::APSInt &Val, unsigned BitWidth, bool IsSigned) {
1086   Val = Val.extOrTrunc(BitWidth);
1087   Val.setIsSigned(IsSigned);
1088 }
1089 
1090 /// Check the specified case value is in range for the given unpromoted switch
1091 /// type.
1092 static void checkCaseValue(Sema &S, SourceLocation Loc, const llvm::APSInt &Val,
1093                            unsigned UnpromotedWidth, bool UnpromotedSign) {
1094   // In C++11 onwards, this is checked by the language rules.
1095   if (S.getLangOpts().CPlusPlus11)
1096     return;
1097 
1098   // If the case value was signed and negative and the switch expression is
1099   // unsigned, don't bother to warn: this is implementation-defined behavior.
1100   // FIXME: Introduce a second, default-ignored warning for this case?
1101   if (UnpromotedWidth < Val.getBitWidth()) {
1102     llvm::APSInt ConvVal(Val);
1103     AdjustAPSInt(ConvVal, UnpromotedWidth, UnpromotedSign);
1104     AdjustAPSInt(ConvVal, Val.getBitWidth(), Val.isSigned());
1105     // FIXME: Use different diagnostics for overflow  in conversion to promoted
1106     // type versus "switch expression cannot have this value". Use proper
1107     // IntRange checking rather than just looking at the unpromoted type here.
1108     if (ConvVal != Val)
1109       S.Diag(Loc, diag::warn_case_value_overflow) << toString(Val, 10)
1110                                                   << toString(ConvVal, 10);
1111   }
1112 }
1113 
1114 typedef SmallVector<std::pair<llvm::APSInt, EnumConstantDecl*>, 64> EnumValsTy;
1115 
1116 /// Returns true if we should emit a diagnostic about this case expression not
1117 /// being a part of the enum used in the switch controlling expression.
1118 static bool ShouldDiagnoseSwitchCaseNotInEnum(const Sema &S,
1119                                               const EnumDecl *ED,
1120                                               const Expr *CaseExpr,
1121                                               EnumValsTy::iterator &EI,
1122                                               EnumValsTy::iterator &EIEnd,
1123                                               const llvm::APSInt &Val) {
1124   if (!ED->isClosed())
1125     return false;
1126 
1127   if (const DeclRefExpr *DRE =
1128           dyn_cast<DeclRefExpr>(CaseExpr->IgnoreParenImpCasts())) {
1129     if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
1130       QualType VarType = VD->getType();
1131       QualType EnumType = S.Context.getTypeDeclType(ED);
1132       if (VD->hasGlobalStorage() && VarType.isConstQualified() &&
1133           S.Context.hasSameUnqualifiedType(EnumType, VarType))
1134         return false;
1135     }
1136   }
1137 
1138   if (ED->hasAttr<FlagEnumAttr>())
1139     return !S.IsValueInFlagEnum(ED, Val, false);
1140 
1141   while (EI != EIEnd && EI->first < Val)
1142     EI++;
1143 
1144   if (EI != EIEnd && EI->first == Val)
1145     return false;
1146 
1147   return true;
1148 }
1149 
1150 static void checkEnumTypesInSwitchStmt(Sema &S, const Expr *Cond,
1151                                        const Expr *Case) {
1152   QualType CondType = Cond->getType();
1153   QualType CaseType = Case->getType();
1154 
1155   const EnumType *CondEnumType = CondType->getAs<EnumType>();
1156   const EnumType *CaseEnumType = CaseType->getAs<EnumType>();
1157   if (!CondEnumType || !CaseEnumType)
1158     return;
1159 
1160   // Ignore anonymous enums.
1161   if (!CondEnumType->getDecl()->getIdentifier() &&
1162       !CondEnumType->getDecl()->getTypedefNameForAnonDecl())
1163     return;
1164   if (!CaseEnumType->getDecl()->getIdentifier() &&
1165       !CaseEnumType->getDecl()->getTypedefNameForAnonDecl())
1166     return;
1167 
1168   if (S.Context.hasSameUnqualifiedType(CondType, CaseType))
1169     return;
1170 
1171   S.Diag(Case->getExprLoc(), diag::warn_comparison_of_mixed_enum_types_switch)
1172       << CondType << CaseType << Cond->getSourceRange()
1173       << Case->getSourceRange();
1174 }
1175 
1176 StmtResult
1177 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch,
1178                             Stmt *BodyStmt) {
1179   SwitchStmt *SS = cast<SwitchStmt>(Switch);
1180   bool CaseListIsIncomplete = getCurFunction()->SwitchStack.back().getInt();
1181   assert(SS == getCurFunction()->SwitchStack.back().getPointer() &&
1182          "switch stack missing push/pop!");
1183 
1184   getCurFunction()->SwitchStack.pop_back();
1185 
1186   if (!BodyStmt) return StmtError();
1187   SS->setBody(BodyStmt, SwitchLoc);
1188 
1189   Expr *CondExpr = SS->getCond();
1190   if (!CondExpr) return StmtError();
1191 
1192   QualType CondType = CondExpr->getType();
1193 
1194   // C++ 6.4.2.p2:
1195   // Integral promotions are performed (on the switch condition).
1196   //
1197   // A case value unrepresentable by the original switch condition
1198   // type (before the promotion) doesn't make sense, even when it can
1199   // be represented by the promoted type.  Therefore we need to find
1200   // the pre-promotion type of the switch condition.
1201   const Expr *CondExprBeforePromotion = CondExpr;
1202   QualType CondTypeBeforePromotion =
1203       GetTypeBeforeIntegralPromotion(CondExprBeforePromotion);
1204 
1205   // Get the bitwidth of the switched-on value after promotions. We must
1206   // convert the integer case values to this width before comparison.
1207   bool HasDependentValue
1208     = CondExpr->isTypeDependent() || CondExpr->isValueDependent();
1209   unsigned CondWidth = HasDependentValue ? 0 : Context.getIntWidth(CondType);
1210   bool CondIsSigned = CondType->isSignedIntegerOrEnumerationType();
1211 
1212   // Get the width and signedness that the condition might actually have, for
1213   // warning purposes.
1214   // FIXME: Grab an IntRange for the condition rather than using the unpromoted
1215   // type.
1216   unsigned CondWidthBeforePromotion
1217     = HasDependentValue ? 0 : Context.getIntWidth(CondTypeBeforePromotion);
1218   bool CondIsSignedBeforePromotion
1219     = CondTypeBeforePromotion->isSignedIntegerOrEnumerationType();
1220 
1221   // Accumulate all of the case values in a vector so that we can sort them
1222   // and detect duplicates.  This vector contains the APInt for the case after
1223   // it has been converted to the condition type.
1224   typedef SmallVector<std::pair<llvm::APSInt, CaseStmt*>, 64> CaseValsTy;
1225   CaseValsTy CaseVals;
1226 
1227   // Keep track of any GNU case ranges we see.  The APSInt is the low value.
1228   typedef std::vector<std::pair<llvm::APSInt, CaseStmt*> > CaseRangesTy;
1229   CaseRangesTy CaseRanges;
1230 
1231   DefaultStmt *TheDefaultStmt = nullptr;
1232 
1233   bool CaseListIsErroneous = false;
1234 
1235   for (SwitchCase *SC = SS->getSwitchCaseList(); SC && !HasDependentValue;
1236        SC = SC->getNextSwitchCase()) {
1237 
1238     if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC)) {
1239       if (TheDefaultStmt) {
1240         Diag(DS->getDefaultLoc(), diag::err_multiple_default_labels_defined);
1241         Diag(TheDefaultStmt->getDefaultLoc(), diag::note_duplicate_case_prev);
1242 
1243         // FIXME: Remove the default statement from the switch block so that
1244         // we'll return a valid AST.  This requires recursing down the AST and
1245         // finding it, not something we are set up to do right now.  For now,
1246         // just lop the entire switch stmt out of the AST.
1247         CaseListIsErroneous = true;
1248       }
1249       TheDefaultStmt = DS;
1250 
1251     } else {
1252       CaseStmt *CS = cast<CaseStmt>(SC);
1253 
1254       Expr *Lo = CS->getLHS();
1255 
1256       if (Lo->isValueDependent()) {
1257         HasDependentValue = true;
1258         break;
1259       }
1260 
1261       // We already verified that the expression has a constant value;
1262       // get that value (prior to conversions).
1263       const Expr *LoBeforePromotion = Lo;
1264       GetTypeBeforeIntegralPromotion(LoBeforePromotion);
1265       llvm::APSInt LoVal = LoBeforePromotion->EvaluateKnownConstInt(Context);
1266 
1267       // Check the unconverted value is within the range of possible values of
1268       // the switch expression.
1269       checkCaseValue(*this, Lo->getBeginLoc(), LoVal, CondWidthBeforePromotion,
1270                      CondIsSignedBeforePromotion);
1271 
1272       // FIXME: This duplicates the check performed for warn_not_in_enum below.
1273       checkEnumTypesInSwitchStmt(*this, CondExprBeforePromotion,
1274                                  LoBeforePromotion);
1275 
1276       // Convert the value to the same width/sign as the condition.
1277       AdjustAPSInt(LoVal, CondWidth, CondIsSigned);
1278 
1279       // If this is a case range, remember it in CaseRanges, otherwise CaseVals.
1280       if (CS->getRHS()) {
1281         if (CS->getRHS()->isValueDependent()) {
1282           HasDependentValue = true;
1283           break;
1284         }
1285         CaseRanges.push_back(std::make_pair(LoVal, CS));
1286       } else
1287         CaseVals.push_back(std::make_pair(LoVal, CS));
1288     }
1289   }
1290 
1291   if (!HasDependentValue) {
1292     // If we don't have a default statement, check whether the
1293     // condition is constant.
1294     llvm::APSInt ConstantCondValue;
1295     bool HasConstantCond = false;
1296     if (!TheDefaultStmt) {
1297       Expr::EvalResult Result;
1298       HasConstantCond = CondExpr->EvaluateAsInt(Result, Context,
1299                                                 Expr::SE_AllowSideEffects);
1300       if (Result.Val.isInt())
1301         ConstantCondValue = Result.Val.getInt();
1302       assert(!HasConstantCond ||
1303              (ConstantCondValue.getBitWidth() == CondWidth &&
1304               ConstantCondValue.isSigned() == CondIsSigned));
1305     }
1306     bool ShouldCheckConstantCond = HasConstantCond;
1307 
1308     // Sort all the scalar case values so we can easily detect duplicates.
1309     llvm::stable_sort(CaseVals, CmpCaseVals);
1310 
1311     if (!CaseVals.empty()) {
1312       for (unsigned i = 0, e = CaseVals.size(); i != e; ++i) {
1313         if (ShouldCheckConstantCond &&
1314             CaseVals[i].first == ConstantCondValue)
1315           ShouldCheckConstantCond = false;
1316 
1317         if (i != 0 && CaseVals[i].first == CaseVals[i-1].first) {
1318           // If we have a duplicate, report it.
1319           // First, determine if either case value has a name
1320           StringRef PrevString, CurrString;
1321           Expr *PrevCase = CaseVals[i-1].second->getLHS()->IgnoreParenCasts();
1322           Expr *CurrCase = CaseVals[i].second->getLHS()->IgnoreParenCasts();
1323           if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(PrevCase)) {
1324             PrevString = DeclRef->getDecl()->getName();
1325           }
1326           if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(CurrCase)) {
1327             CurrString = DeclRef->getDecl()->getName();
1328           }
1329           SmallString<16> CaseValStr;
1330           CaseVals[i-1].first.toString(CaseValStr);
1331 
1332           if (PrevString == CurrString)
1333             Diag(CaseVals[i].second->getLHS()->getBeginLoc(),
1334                  diag::err_duplicate_case)
1335                 << (PrevString.empty() ? StringRef(CaseValStr) : PrevString);
1336           else
1337             Diag(CaseVals[i].second->getLHS()->getBeginLoc(),
1338                  diag::err_duplicate_case_differing_expr)
1339                 << (PrevString.empty() ? StringRef(CaseValStr) : PrevString)
1340                 << (CurrString.empty() ? StringRef(CaseValStr) : CurrString)
1341                 << CaseValStr;
1342 
1343           Diag(CaseVals[i - 1].second->getLHS()->getBeginLoc(),
1344                diag::note_duplicate_case_prev);
1345           // FIXME: We really want to remove the bogus case stmt from the
1346           // substmt, but we have no way to do this right now.
1347           CaseListIsErroneous = true;
1348         }
1349       }
1350     }
1351 
1352     // Detect duplicate case ranges, which usually don't exist at all in
1353     // the first place.
1354     if (!CaseRanges.empty()) {
1355       // Sort all the case ranges by their low value so we can easily detect
1356       // overlaps between ranges.
1357       llvm::stable_sort(CaseRanges);
1358 
1359       // Scan the ranges, computing the high values and removing empty ranges.
1360       std::vector<llvm::APSInt> HiVals;
1361       for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
1362         llvm::APSInt &LoVal = CaseRanges[i].first;
1363         CaseStmt *CR = CaseRanges[i].second;
1364         Expr *Hi = CR->getRHS();
1365 
1366         const Expr *HiBeforePromotion = Hi;
1367         GetTypeBeforeIntegralPromotion(HiBeforePromotion);
1368         llvm::APSInt HiVal = HiBeforePromotion->EvaluateKnownConstInt(Context);
1369 
1370         // Check the unconverted value is within the range of possible values of
1371         // the switch expression.
1372         checkCaseValue(*this, Hi->getBeginLoc(), HiVal,
1373                        CondWidthBeforePromotion, CondIsSignedBeforePromotion);
1374 
1375         // Convert the value to the same width/sign as the condition.
1376         AdjustAPSInt(HiVal, CondWidth, CondIsSigned);
1377 
1378         // If the low value is bigger than the high value, the case is empty.
1379         if (LoVal > HiVal) {
1380           Diag(CR->getLHS()->getBeginLoc(), diag::warn_case_empty_range)
1381               << SourceRange(CR->getLHS()->getBeginLoc(), Hi->getEndLoc());
1382           CaseRanges.erase(CaseRanges.begin()+i);
1383           --i;
1384           --e;
1385           continue;
1386         }
1387 
1388         if (ShouldCheckConstantCond &&
1389             LoVal <= ConstantCondValue &&
1390             ConstantCondValue <= HiVal)
1391           ShouldCheckConstantCond = false;
1392 
1393         HiVals.push_back(HiVal);
1394       }
1395 
1396       // Rescan the ranges, looking for overlap with singleton values and other
1397       // ranges.  Since the range list is sorted, we only need to compare case
1398       // ranges with their neighbors.
1399       for (unsigned i = 0, e = CaseRanges.size(); i != e; ++i) {
1400         llvm::APSInt &CRLo = CaseRanges[i].first;
1401         llvm::APSInt &CRHi = HiVals[i];
1402         CaseStmt *CR = CaseRanges[i].second;
1403 
1404         // Check to see whether the case range overlaps with any
1405         // singleton cases.
1406         CaseStmt *OverlapStmt = nullptr;
1407         llvm::APSInt OverlapVal(32);
1408 
1409         // Find the smallest value >= the lower bound.  If I is in the
1410         // case range, then we have overlap.
1411         CaseValsTy::iterator I =
1412             llvm::lower_bound(CaseVals, CRLo, CaseCompareFunctor());
1413         if (I != CaseVals.end() && I->first < CRHi) {
1414           OverlapVal  = I->first;   // Found overlap with scalar.
1415           OverlapStmt = I->second;
1416         }
1417 
1418         // Find the smallest value bigger than the upper bound.
1419         I = std::upper_bound(I, CaseVals.end(), CRHi, CaseCompareFunctor());
1420         if (I != CaseVals.begin() && (I-1)->first >= CRLo) {
1421           OverlapVal  = (I-1)->first;      // Found overlap with scalar.
1422           OverlapStmt = (I-1)->second;
1423         }
1424 
1425         // Check to see if this case stmt overlaps with the subsequent
1426         // case range.
1427         if (i && CRLo <= HiVals[i-1]) {
1428           OverlapVal  = HiVals[i-1];       // Found overlap with range.
1429           OverlapStmt = CaseRanges[i-1].second;
1430         }
1431 
1432         if (OverlapStmt) {
1433           // If we have a duplicate, report it.
1434           Diag(CR->getLHS()->getBeginLoc(), diag::err_duplicate_case)
1435               << toString(OverlapVal, 10);
1436           Diag(OverlapStmt->getLHS()->getBeginLoc(),
1437                diag::note_duplicate_case_prev);
1438           // FIXME: We really want to remove the bogus case stmt from the
1439           // substmt, but we have no way to do this right now.
1440           CaseListIsErroneous = true;
1441         }
1442       }
1443     }
1444 
1445     // Complain if we have a constant condition and we didn't find a match.
1446     if (!CaseListIsErroneous && !CaseListIsIncomplete &&
1447         ShouldCheckConstantCond) {
1448       // TODO: it would be nice if we printed enums as enums, chars as
1449       // chars, etc.
1450       Diag(CondExpr->getExprLoc(), diag::warn_missing_case_for_condition)
1451         << toString(ConstantCondValue, 10)
1452         << CondExpr->getSourceRange();
1453     }
1454 
1455     // Check to see if switch is over an Enum and handles all of its
1456     // values.  We only issue a warning if there is not 'default:', but
1457     // we still do the analysis to preserve this information in the AST
1458     // (which can be used by flow-based analyes).
1459     //
1460     const EnumType *ET = CondTypeBeforePromotion->getAs<EnumType>();
1461 
1462     // If switch has default case, then ignore it.
1463     if (!CaseListIsErroneous && !CaseListIsIncomplete && !HasConstantCond &&
1464         ET && ET->getDecl()->isCompleteDefinition()) {
1465       const EnumDecl *ED = ET->getDecl();
1466       EnumValsTy EnumVals;
1467 
1468       // Gather all enum values, set their type and sort them,
1469       // allowing easier comparison with CaseVals.
1470       for (auto *EDI : ED->enumerators()) {
1471         llvm::APSInt Val = EDI->getInitVal();
1472         AdjustAPSInt(Val, CondWidth, CondIsSigned);
1473         EnumVals.push_back(std::make_pair(Val, EDI));
1474       }
1475       llvm::stable_sort(EnumVals, CmpEnumVals);
1476       auto EI = EnumVals.begin(), EIEnd =
1477         std::unique(EnumVals.begin(), EnumVals.end(), EqEnumVals);
1478 
1479       // See which case values aren't in enum.
1480       for (CaseValsTy::const_iterator CI = CaseVals.begin();
1481           CI != CaseVals.end(); CI++) {
1482         Expr *CaseExpr = CI->second->getLHS();
1483         if (ShouldDiagnoseSwitchCaseNotInEnum(*this, ED, CaseExpr, EI, EIEnd,
1484                                               CI->first))
1485           Diag(CaseExpr->getExprLoc(), diag::warn_not_in_enum)
1486             << CondTypeBeforePromotion;
1487       }
1488 
1489       // See which of case ranges aren't in enum
1490       EI = EnumVals.begin();
1491       for (CaseRangesTy::const_iterator RI = CaseRanges.begin();
1492           RI != CaseRanges.end(); RI++) {
1493         Expr *CaseExpr = RI->second->getLHS();
1494         if (ShouldDiagnoseSwitchCaseNotInEnum(*this, ED, CaseExpr, EI, EIEnd,
1495                                               RI->first))
1496           Diag(CaseExpr->getExprLoc(), diag::warn_not_in_enum)
1497             << CondTypeBeforePromotion;
1498 
1499         llvm::APSInt Hi =
1500           RI->second->getRHS()->EvaluateKnownConstInt(Context);
1501         AdjustAPSInt(Hi, CondWidth, CondIsSigned);
1502 
1503         CaseExpr = RI->second->getRHS();
1504         if (ShouldDiagnoseSwitchCaseNotInEnum(*this, ED, CaseExpr, EI, EIEnd,
1505                                               Hi))
1506           Diag(CaseExpr->getExprLoc(), diag::warn_not_in_enum)
1507             << CondTypeBeforePromotion;
1508       }
1509 
1510       // Check which enum vals aren't in switch
1511       auto CI = CaseVals.begin();
1512       auto RI = CaseRanges.begin();
1513       bool hasCasesNotInSwitch = false;
1514 
1515       SmallVector<DeclarationName,8> UnhandledNames;
1516 
1517       for (EI = EnumVals.begin(); EI != EIEnd; EI++) {
1518         // Don't warn about omitted unavailable EnumConstantDecls.
1519         switch (EI->second->getAvailability()) {
1520         case AR_Deprecated:
1521           // Omitting a deprecated constant is ok; it should never materialize.
1522         case AR_Unavailable:
1523           continue;
1524 
1525         case AR_NotYetIntroduced:
1526           // Partially available enum constants should be present. Note that we
1527           // suppress -Wunguarded-availability diagnostics for such uses.
1528         case AR_Available:
1529           break;
1530         }
1531 
1532         if (EI->second->hasAttr<UnusedAttr>())
1533           continue;
1534 
1535         // Drop unneeded case values
1536         while (CI != CaseVals.end() && CI->first < EI->first)
1537           CI++;
1538 
1539         if (CI != CaseVals.end() && CI->first == EI->first)
1540           continue;
1541 
1542         // Drop unneeded case ranges
1543         for (; RI != CaseRanges.end(); RI++) {
1544           llvm::APSInt Hi =
1545             RI->second->getRHS()->EvaluateKnownConstInt(Context);
1546           AdjustAPSInt(Hi, CondWidth, CondIsSigned);
1547           if (EI->first <= Hi)
1548             break;
1549         }
1550 
1551         if (RI == CaseRanges.end() || EI->first < RI->first) {
1552           hasCasesNotInSwitch = true;
1553           UnhandledNames.push_back(EI->second->getDeclName());
1554         }
1555       }
1556 
1557       if (TheDefaultStmt && UnhandledNames.empty() && ED->isClosedNonFlag())
1558         Diag(TheDefaultStmt->getDefaultLoc(), diag::warn_unreachable_default);
1559 
1560       // Produce a nice diagnostic if multiple values aren't handled.
1561       if (!UnhandledNames.empty()) {
1562         auto DB = Diag(CondExpr->getExprLoc(), TheDefaultStmt
1563                                                    ? diag::warn_def_missing_case
1564                                                    : diag::warn_missing_case)
1565                   << (int)UnhandledNames.size();
1566 
1567         for (size_t I = 0, E = std::min(UnhandledNames.size(), (size_t)3);
1568              I != E; ++I)
1569           DB << UnhandledNames[I];
1570       }
1571 
1572       if (!hasCasesNotInSwitch)
1573         SS->setAllEnumCasesCovered();
1574     }
1575   }
1576 
1577   if (BodyStmt)
1578     DiagnoseEmptyStmtBody(CondExpr->getEndLoc(), BodyStmt,
1579                           diag::warn_empty_switch_body);
1580 
1581   // FIXME: If the case list was broken is some way, we don't have a good system
1582   // to patch it up.  Instead, just return the whole substmt as broken.
1583   if (CaseListIsErroneous)
1584     return StmtError();
1585 
1586   return SS;
1587 }
1588 
1589 void
1590 Sema::DiagnoseAssignmentEnum(QualType DstType, QualType SrcType,
1591                              Expr *SrcExpr) {
1592   if (Diags.isIgnored(diag::warn_not_in_enum_assignment, SrcExpr->getExprLoc()))
1593     return;
1594 
1595   if (const EnumType *ET = DstType->getAs<EnumType>())
1596     if (!Context.hasSameUnqualifiedType(SrcType, DstType) &&
1597         SrcType->isIntegerType()) {
1598       if (!SrcExpr->isTypeDependent() && !SrcExpr->isValueDependent() &&
1599           SrcExpr->isIntegerConstantExpr(Context)) {
1600         // Get the bitwidth of the enum value before promotions.
1601         unsigned DstWidth = Context.getIntWidth(DstType);
1602         bool DstIsSigned = DstType->isSignedIntegerOrEnumerationType();
1603 
1604         llvm::APSInt RhsVal = SrcExpr->EvaluateKnownConstInt(Context);
1605         AdjustAPSInt(RhsVal, DstWidth, DstIsSigned);
1606         const EnumDecl *ED = ET->getDecl();
1607 
1608         if (!ED->isClosed())
1609           return;
1610 
1611         if (ED->hasAttr<FlagEnumAttr>()) {
1612           if (!IsValueInFlagEnum(ED, RhsVal, true))
1613             Diag(SrcExpr->getExprLoc(), diag::warn_not_in_enum_assignment)
1614               << DstType.getUnqualifiedType();
1615         } else {
1616           typedef SmallVector<std::pair<llvm::APSInt, EnumConstantDecl *>, 64>
1617               EnumValsTy;
1618           EnumValsTy EnumVals;
1619 
1620           // Gather all enum values, set their type and sort them,
1621           // allowing easier comparison with rhs constant.
1622           for (auto *EDI : ED->enumerators()) {
1623             llvm::APSInt Val = EDI->getInitVal();
1624             AdjustAPSInt(Val, DstWidth, DstIsSigned);
1625             EnumVals.push_back(std::make_pair(Val, EDI));
1626           }
1627           if (EnumVals.empty())
1628             return;
1629           llvm::stable_sort(EnumVals, CmpEnumVals);
1630           EnumValsTy::iterator EIend =
1631               std::unique(EnumVals.begin(), EnumVals.end(), EqEnumVals);
1632 
1633           // See which values aren't in the enum.
1634           EnumValsTy::const_iterator EI = EnumVals.begin();
1635           while (EI != EIend && EI->first < RhsVal)
1636             EI++;
1637           if (EI == EIend || EI->first != RhsVal) {
1638             Diag(SrcExpr->getExprLoc(), diag::warn_not_in_enum_assignment)
1639                 << DstType.getUnqualifiedType();
1640           }
1641         }
1642       }
1643     }
1644 }
1645 
1646 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc,
1647                                 SourceLocation LParenLoc, ConditionResult Cond,
1648                                 SourceLocation RParenLoc, Stmt *Body) {
1649   if (Cond.isInvalid())
1650     return StmtError();
1651 
1652   auto CondVal = Cond.get();
1653   CheckBreakContinueBinding(CondVal.second);
1654 
1655   if (CondVal.second &&
1656       !Diags.isIgnored(diag::warn_comma_operator, CondVal.second->getExprLoc()))
1657     CommaVisitor(*this).Visit(CondVal.second);
1658 
1659   if (isa<NullStmt>(Body))
1660     getCurCompoundScope().setHasEmptyLoopBodies();
1661 
1662   return WhileStmt::Create(Context, CondVal.first, CondVal.second, Body,
1663                            WhileLoc, LParenLoc, RParenLoc);
1664 }
1665 
1666 StmtResult
1667 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
1668                   SourceLocation WhileLoc, SourceLocation CondLParen,
1669                   Expr *Cond, SourceLocation CondRParen) {
1670   assert(Cond && "ActOnDoStmt(): missing expression");
1671 
1672   CheckBreakContinueBinding(Cond);
1673   ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond);
1674   if (CondResult.isInvalid())
1675     return StmtError();
1676   Cond = CondResult.get();
1677 
1678   CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false);
1679   if (CondResult.isInvalid())
1680     return StmtError();
1681   Cond = CondResult.get();
1682 
1683   // Only call the CommaVisitor for C89 due to differences in scope flags.
1684   if (Cond && !getLangOpts().C99 && !getLangOpts().CPlusPlus &&
1685       !Diags.isIgnored(diag::warn_comma_operator, Cond->getExprLoc()))
1686     CommaVisitor(*this).Visit(Cond);
1687 
1688   return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
1689 }
1690 
1691 namespace {
1692   // Use SetVector since the diagnostic cares about the ordering of the Decl's.
1693   using DeclSetVector =
1694       llvm::SetVector<VarDecl *, llvm::SmallVector<VarDecl *, 8>,
1695                       llvm::SmallPtrSet<VarDecl *, 8>>;
1696 
1697   // This visitor will traverse a conditional statement and store all
1698   // the evaluated decls into a vector.  Simple is set to true if none
1699   // of the excluded constructs are used.
1700   class DeclExtractor : public EvaluatedExprVisitor<DeclExtractor> {
1701     DeclSetVector &Decls;
1702     SmallVectorImpl<SourceRange> &Ranges;
1703     bool Simple;
1704   public:
1705     typedef EvaluatedExprVisitor<DeclExtractor> Inherited;
1706 
1707     DeclExtractor(Sema &S, DeclSetVector &Decls,
1708                   SmallVectorImpl<SourceRange> &Ranges) :
1709         Inherited(S.Context),
1710         Decls(Decls),
1711         Ranges(Ranges),
1712         Simple(true) {}
1713 
1714     bool isSimple() { return Simple; }
1715 
1716     // Replaces the method in EvaluatedExprVisitor.
1717     void VisitMemberExpr(MemberExpr* E) {
1718       Simple = false;
1719     }
1720 
1721     // Any Stmt not explicitly listed will cause the condition to be marked
1722     // complex.
1723     void VisitStmt(Stmt *S) { Simple = false; }
1724 
1725     void VisitBinaryOperator(BinaryOperator *E) {
1726       Visit(E->getLHS());
1727       Visit(E->getRHS());
1728     }
1729 
1730     void VisitCastExpr(CastExpr *E) {
1731       Visit(E->getSubExpr());
1732     }
1733 
1734     void VisitUnaryOperator(UnaryOperator *E) {
1735       // Skip checking conditionals with derefernces.
1736       if (E->getOpcode() == UO_Deref)
1737         Simple = false;
1738       else
1739         Visit(E->getSubExpr());
1740     }
1741 
1742     void VisitConditionalOperator(ConditionalOperator *E) {
1743       Visit(E->getCond());
1744       Visit(E->getTrueExpr());
1745       Visit(E->getFalseExpr());
1746     }
1747 
1748     void VisitParenExpr(ParenExpr *E) {
1749       Visit(E->getSubExpr());
1750     }
1751 
1752     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
1753       Visit(E->getOpaqueValue()->getSourceExpr());
1754       Visit(E->getFalseExpr());
1755     }
1756 
1757     void VisitIntegerLiteral(IntegerLiteral *E) { }
1758     void VisitFloatingLiteral(FloatingLiteral *E) { }
1759     void VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { }
1760     void VisitCharacterLiteral(CharacterLiteral *E) { }
1761     void VisitGNUNullExpr(GNUNullExpr *E) { }
1762     void VisitImaginaryLiteral(ImaginaryLiteral *E) { }
1763 
1764     void VisitDeclRefExpr(DeclRefExpr *E) {
1765       VarDecl *VD = dyn_cast<VarDecl>(E->getDecl());
1766       if (!VD) {
1767         // Don't allow unhandled Decl types.
1768         Simple = false;
1769         return;
1770       }
1771 
1772       Ranges.push_back(E->getSourceRange());
1773 
1774       Decls.insert(VD);
1775     }
1776 
1777   }; // end class DeclExtractor
1778 
1779   // DeclMatcher checks to see if the decls are used in a non-evaluated
1780   // context.
1781   class DeclMatcher : public EvaluatedExprVisitor<DeclMatcher> {
1782     DeclSetVector &Decls;
1783     bool FoundDecl;
1784 
1785   public:
1786     typedef EvaluatedExprVisitor<DeclMatcher> Inherited;
1787 
1788     DeclMatcher(Sema &S, DeclSetVector &Decls, Stmt *Statement) :
1789         Inherited(S.Context), Decls(Decls), FoundDecl(false) {
1790       if (!Statement) return;
1791 
1792       Visit(Statement);
1793     }
1794 
1795     void VisitReturnStmt(ReturnStmt *S) {
1796       FoundDecl = true;
1797     }
1798 
1799     void VisitBreakStmt(BreakStmt *S) {
1800       FoundDecl = true;
1801     }
1802 
1803     void VisitGotoStmt(GotoStmt *S) {
1804       FoundDecl = true;
1805     }
1806 
1807     void VisitCastExpr(CastExpr *E) {
1808       if (E->getCastKind() == CK_LValueToRValue)
1809         CheckLValueToRValueCast(E->getSubExpr());
1810       else
1811         Visit(E->getSubExpr());
1812     }
1813 
1814     void CheckLValueToRValueCast(Expr *E) {
1815       E = E->IgnoreParenImpCasts();
1816 
1817       if (isa<DeclRefExpr>(E)) {
1818         return;
1819       }
1820 
1821       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
1822         Visit(CO->getCond());
1823         CheckLValueToRValueCast(CO->getTrueExpr());
1824         CheckLValueToRValueCast(CO->getFalseExpr());
1825         return;
1826       }
1827 
1828       if (BinaryConditionalOperator *BCO =
1829               dyn_cast<BinaryConditionalOperator>(E)) {
1830         CheckLValueToRValueCast(BCO->getOpaqueValue()->getSourceExpr());
1831         CheckLValueToRValueCast(BCO->getFalseExpr());
1832         return;
1833       }
1834 
1835       Visit(E);
1836     }
1837 
1838     void VisitDeclRefExpr(DeclRefExpr *E) {
1839       if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
1840         if (Decls.count(VD))
1841           FoundDecl = true;
1842     }
1843 
1844     void VisitPseudoObjectExpr(PseudoObjectExpr *POE) {
1845       // Only need to visit the semantics for POE.
1846       // SyntaticForm doesn't really use the Decal.
1847       for (auto *S : POE->semantics()) {
1848         if (auto *OVE = dyn_cast<OpaqueValueExpr>(S))
1849           // Look past the OVE into the expression it binds.
1850           Visit(OVE->getSourceExpr());
1851         else
1852           Visit(S);
1853       }
1854     }
1855 
1856     bool FoundDeclInUse() { return FoundDecl; }
1857 
1858   };  // end class DeclMatcher
1859 
1860   void CheckForLoopConditionalStatement(Sema &S, Expr *Second,
1861                                         Expr *Third, Stmt *Body) {
1862     // Condition is empty
1863     if (!Second) return;
1864 
1865     if (S.Diags.isIgnored(diag::warn_variables_not_in_loop_body,
1866                           Second->getBeginLoc()))
1867       return;
1868 
1869     PartialDiagnostic PDiag = S.PDiag(diag::warn_variables_not_in_loop_body);
1870     DeclSetVector Decls;
1871     SmallVector<SourceRange, 10> Ranges;
1872     DeclExtractor DE(S, Decls, Ranges);
1873     DE.Visit(Second);
1874 
1875     // Don't analyze complex conditionals.
1876     if (!DE.isSimple()) return;
1877 
1878     // No decls found.
1879     if (Decls.size() == 0) return;
1880 
1881     // Don't warn on volatile, static, or global variables.
1882     for (auto *VD : Decls)
1883       if (VD->getType().isVolatileQualified() || VD->hasGlobalStorage())
1884         return;
1885 
1886     if (DeclMatcher(S, Decls, Second).FoundDeclInUse() ||
1887         DeclMatcher(S, Decls, Third).FoundDeclInUse() ||
1888         DeclMatcher(S, Decls, Body).FoundDeclInUse())
1889       return;
1890 
1891     // Load decl names into diagnostic.
1892     if (Decls.size() > 4) {
1893       PDiag << 0;
1894     } else {
1895       PDiag << (unsigned)Decls.size();
1896       for (auto *VD : Decls)
1897         PDiag << VD->getDeclName();
1898     }
1899 
1900     for (auto Range : Ranges)
1901       PDiag << Range;
1902 
1903     S.Diag(Ranges.begin()->getBegin(), PDiag);
1904   }
1905 
1906   // If Statement is an incemement or decrement, return true and sets the
1907   // variables Increment and DRE.
1908   bool ProcessIterationStmt(Sema &S, Stmt* Statement, bool &Increment,
1909                             DeclRefExpr *&DRE) {
1910     if (auto Cleanups = dyn_cast<ExprWithCleanups>(Statement))
1911       if (!Cleanups->cleanupsHaveSideEffects())
1912         Statement = Cleanups->getSubExpr();
1913 
1914     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(Statement)) {
1915       switch (UO->getOpcode()) {
1916         default: return false;
1917         case UO_PostInc:
1918         case UO_PreInc:
1919           Increment = true;
1920           break;
1921         case UO_PostDec:
1922         case UO_PreDec:
1923           Increment = false;
1924           break;
1925       }
1926       DRE = dyn_cast<DeclRefExpr>(UO->getSubExpr());
1927       return DRE;
1928     }
1929 
1930     if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(Statement)) {
1931       FunctionDecl *FD = Call->getDirectCallee();
1932       if (!FD || !FD->isOverloadedOperator()) return false;
1933       switch (FD->getOverloadedOperator()) {
1934         default: return false;
1935         case OO_PlusPlus:
1936           Increment = true;
1937           break;
1938         case OO_MinusMinus:
1939           Increment = false;
1940           break;
1941       }
1942       DRE = dyn_cast<DeclRefExpr>(Call->getArg(0));
1943       return DRE;
1944     }
1945 
1946     return false;
1947   }
1948 
1949   // A visitor to determine if a continue or break statement is a
1950   // subexpression.
1951   class BreakContinueFinder : public ConstEvaluatedExprVisitor<BreakContinueFinder> {
1952     SourceLocation BreakLoc;
1953     SourceLocation ContinueLoc;
1954     bool InSwitch = false;
1955 
1956   public:
1957     BreakContinueFinder(Sema &S, const Stmt* Body) :
1958         Inherited(S.Context) {
1959       Visit(Body);
1960     }
1961 
1962     typedef ConstEvaluatedExprVisitor<BreakContinueFinder> Inherited;
1963 
1964     void VisitContinueStmt(const ContinueStmt* E) {
1965       ContinueLoc = E->getContinueLoc();
1966     }
1967 
1968     void VisitBreakStmt(const BreakStmt* E) {
1969       if (!InSwitch)
1970         BreakLoc = E->getBreakLoc();
1971     }
1972 
1973     void VisitSwitchStmt(const SwitchStmt* S) {
1974       if (const Stmt *Init = S->getInit())
1975         Visit(Init);
1976       if (const Stmt *CondVar = S->getConditionVariableDeclStmt())
1977         Visit(CondVar);
1978       if (const Stmt *Cond = S->getCond())
1979         Visit(Cond);
1980 
1981       // Don't return break statements from the body of a switch.
1982       InSwitch = true;
1983       if (const Stmt *Body = S->getBody())
1984         Visit(Body);
1985       InSwitch = false;
1986     }
1987 
1988     void VisitForStmt(const ForStmt *S) {
1989       // Only visit the init statement of a for loop; the body
1990       // has a different break/continue scope.
1991       if (const Stmt *Init = S->getInit())
1992         Visit(Init);
1993     }
1994 
1995     void VisitWhileStmt(const WhileStmt *) {
1996       // Do nothing; the children of a while loop have a different
1997       // break/continue scope.
1998     }
1999 
2000     void VisitDoStmt(const DoStmt *) {
2001       // Do nothing; the children of a while loop have a different
2002       // break/continue scope.
2003     }
2004 
2005     void VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
2006       // Only visit the initialization of a for loop; the body
2007       // has a different break/continue scope.
2008       if (const Stmt *Init = S->getInit())
2009         Visit(Init);
2010       if (const Stmt *Range = S->getRangeStmt())
2011         Visit(Range);
2012       if (const Stmt *Begin = S->getBeginStmt())
2013         Visit(Begin);
2014       if (const Stmt *End = S->getEndStmt())
2015         Visit(End);
2016     }
2017 
2018     void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) {
2019       // Only visit the initialization of a for loop; the body
2020       // has a different break/continue scope.
2021       if (const Stmt *Element = S->getElement())
2022         Visit(Element);
2023       if (const Stmt *Collection = S->getCollection())
2024         Visit(Collection);
2025     }
2026 
2027     bool ContinueFound() { return ContinueLoc.isValid(); }
2028     bool BreakFound() { return BreakLoc.isValid(); }
2029     SourceLocation GetContinueLoc() { return ContinueLoc; }
2030     SourceLocation GetBreakLoc() { return BreakLoc; }
2031 
2032   };  // end class BreakContinueFinder
2033 
2034   // Emit a warning when a loop increment/decrement appears twice per loop
2035   // iteration.  The conditions which trigger this warning are:
2036   // 1) The last statement in the loop body and the third expression in the
2037   //    for loop are both increment or both decrement of the same variable
2038   // 2) No continue statements in the loop body.
2039   void CheckForRedundantIteration(Sema &S, Expr *Third, Stmt *Body) {
2040     // Return when there is nothing to check.
2041     if (!Body || !Third) return;
2042 
2043     if (S.Diags.isIgnored(diag::warn_redundant_loop_iteration,
2044                           Third->getBeginLoc()))
2045       return;
2046 
2047     // Get the last statement from the loop body.
2048     CompoundStmt *CS = dyn_cast<CompoundStmt>(Body);
2049     if (!CS || CS->body_empty()) return;
2050     Stmt *LastStmt = CS->body_back();
2051     if (!LastStmt) return;
2052 
2053     bool LoopIncrement, LastIncrement;
2054     DeclRefExpr *LoopDRE, *LastDRE;
2055 
2056     if (!ProcessIterationStmt(S, Third, LoopIncrement, LoopDRE)) return;
2057     if (!ProcessIterationStmt(S, LastStmt, LastIncrement, LastDRE)) return;
2058 
2059     // Check that the two statements are both increments or both decrements
2060     // on the same variable.
2061     if (LoopIncrement != LastIncrement ||
2062         LoopDRE->getDecl() != LastDRE->getDecl()) return;
2063 
2064     if (BreakContinueFinder(S, Body).ContinueFound()) return;
2065 
2066     S.Diag(LastDRE->getLocation(), diag::warn_redundant_loop_iteration)
2067          << LastDRE->getDecl() << LastIncrement;
2068     S.Diag(LoopDRE->getLocation(), diag::note_loop_iteration_here)
2069          << LoopIncrement;
2070   }
2071 
2072 } // end namespace
2073 
2074 
2075 void Sema::CheckBreakContinueBinding(Expr *E) {
2076   if (!E || getLangOpts().CPlusPlus)
2077     return;
2078   BreakContinueFinder BCFinder(*this, E);
2079   Scope *BreakParent = CurScope->getBreakParent();
2080   if (BCFinder.BreakFound() && BreakParent) {
2081     if (BreakParent->getFlags() & Scope::SwitchScope) {
2082       Diag(BCFinder.GetBreakLoc(), diag::warn_break_binds_to_switch);
2083     } else {
2084       Diag(BCFinder.GetBreakLoc(), diag::warn_loop_ctrl_binds_to_inner)
2085           << "break";
2086     }
2087   } else if (BCFinder.ContinueFound() && CurScope->getContinueParent()) {
2088     Diag(BCFinder.GetContinueLoc(), diag::warn_loop_ctrl_binds_to_inner)
2089         << "continue";
2090   }
2091 }
2092 
2093 StmtResult Sema::ActOnForStmt(SourceLocation ForLoc, SourceLocation LParenLoc,
2094                               Stmt *First, ConditionResult Second,
2095                               FullExprArg third, SourceLocation RParenLoc,
2096                               Stmt *Body) {
2097   if (Second.isInvalid())
2098     return StmtError();
2099 
2100   if (!getLangOpts().CPlusPlus) {
2101     if (DeclStmt *DS = dyn_cast_or_null<DeclStmt>(First)) {
2102       // C99 6.8.5p3: The declaration part of a 'for' statement shall only
2103       // declare identifiers for objects having storage class 'auto' or
2104       // 'register'.
2105       const Decl *NonVarSeen = nullptr;
2106       bool VarDeclSeen = false;
2107       for (auto *DI : DS->decls()) {
2108         if (VarDecl *VD = dyn_cast<VarDecl>(DI)) {
2109           VarDeclSeen = true;
2110           if (VD->isLocalVarDecl() && !VD->hasLocalStorage()) {
2111             Diag(DI->getLocation(), diag::err_non_local_variable_decl_in_for);
2112             DI->setInvalidDecl();
2113           }
2114         } else if (!NonVarSeen) {
2115           // Keep track of the first non-variable declaration we saw so that
2116           // we can diagnose if we don't see any variable declarations. This
2117           // covers a case like declaring a typedef, function, or structure
2118           // type rather than a variable.
2119           NonVarSeen = DI;
2120         }
2121       }
2122       // Diagnose if we saw a non-variable declaration but no variable
2123       // declarations.
2124       if (NonVarSeen && !VarDeclSeen)
2125         Diag(NonVarSeen->getLocation(), diag::err_non_variable_decl_in_for);
2126     }
2127   }
2128 
2129   CheckBreakContinueBinding(Second.get().second);
2130   CheckBreakContinueBinding(third.get());
2131 
2132   if (!Second.get().first)
2133     CheckForLoopConditionalStatement(*this, Second.get().second, third.get(),
2134                                      Body);
2135   CheckForRedundantIteration(*this, third.get(), Body);
2136 
2137   if (Second.get().second &&
2138       !Diags.isIgnored(diag::warn_comma_operator,
2139                        Second.get().second->getExprLoc()))
2140     CommaVisitor(*this).Visit(Second.get().second);
2141 
2142   Expr *Third  = third.release().getAs<Expr>();
2143   if (isa<NullStmt>(Body))
2144     getCurCompoundScope().setHasEmptyLoopBodies();
2145 
2146   return new (Context)
2147       ForStmt(Context, First, Second.get().second, Second.get().first, Third,
2148               Body, ForLoc, LParenLoc, RParenLoc);
2149 }
2150 
2151 /// In an Objective C collection iteration statement:
2152 ///   for (x in y)
2153 /// x can be an arbitrary l-value expression.  Bind it up as a
2154 /// full-expression.
2155 StmtResult Sema::ActOnForEachLValueExpr(Expr *E) {
2156   // Reduce placeholder expressions here.  Note that this rejects the
2157   // use of pseudo-object l-values in this position.
2158   ExprResult result = CheckPlaceholderExpr(E);
2159   if (result.isInvalid()) return StmtError();
2160   E = result.get();
2161 
2162   ExprResult FullExpr = ActOnFinishFullExpr(E, /*DiscardedValue*/ false);
2163   if (FullExpr.isInvalid())
2164     return StmtError();
2165   return StmtResult(static_cast<Stmt*>(FullExpr.get()));
2166 }
2167 
2168 ExprResult
2169 Sema::CheckObjCForCollectionOperand(SourceLocation forLoc, Expr *collection) {
2170   if (!collection)
2171     return ExprError();
2172 
2173   ExprResult result = CorrectDelayedTyposInExpr(collection);
2174   if (!result.isUsable())
2175     return ExprError();
2176   collection = result.get();
2177 
2178   // Bail out early if we've got a type-dependent expression.
2179   if (collection->isTypeDependent()) return collection;
2180 
2181   // Perform normal l-value conversion.
2182   result = DefaultFunctionArrayLvalueConversion(collection);
2183   if (result.isInvalid())
2184     return ExprError();
2185   collection = result.get();
2186 
2187   // The operand needs to have object-pointer type.
2188   // TODO: should we do a contextual conversion?
2189   const ObjCObjectPointerType *pointerType =
2190     collection->getType()->getAs<ObjCObjectPointerType>();
2191   if (!pointerType)
2192     return Diag(forLoc, diag::err_collection_expr_type)
2193              << collection->getType() << collection->getSourceRange();
2194 
2195   // Check that the operand provides
2196   //   - countByEnumeratingWithState:objects:count:
2197   const ObjCObjectType *objectType = pointerType->getObjectType();
2198   ObjCInterfaceDecl *iface = objectType->getInterface();
2199 
2200   // If we have a forward-declared type, we can't do this check.
2201   // Under ARC, it is an error not to have a forward-declared class.
2202   if (iface &&
2203       (getLangOpts().ObjCAutoRefCount
2204            ? RequireCompleteType(forLoc, QualType(objectType, 0),
2205                                  diag::err_arc_collection_forward, collection)
2206            : !isCompleteType(forLoc, QualType(objectType, 0)))) {
2207     // Otherwise, if we have any useful type information, check that
2208     // the type declares the appropriate method.
2209   } else if (iface || !objectType->qual_empty()) {
2210     IdentifierInfo *selectorIdents[] = {
2211       &Context.Idents.get("countByEnumeratingWithState"),
2212       &Context.Idents.get("objects"),
2213       &Context.Idents.get("count")
2214     };
2215     Selector selector = Context.Selectors.getSelector(3, &selectorIdents[0]);
2216 
2217     ObjCMethodDecl *method = nullptr;
2218 
2219     // If there's an interface, look in both the public and private APIs.
2220     if (iface) {
2221       method = iface->lookupInstanceMethod(selector);
2222       if (!method) method = iface->lookupPrivateMethod(selector);
2223     }
2224 
2225     // Also check protocol qualifiers.
2226     if (!method)
2227       method = LookupMethodInQualifiedType(selector, pointerType,
2228                                            /*instance*/ true);
2229 
2230     // If we didn't find it anywhere, give up.
2231     if (!method) {
2232       Diag(forLoc, diag::warn_collection_expr_type)
2233         << collection->getType() << selector << collection->getSourceRange();
2234     }
2235 
2236     // TODO: check for an incompatible signature?
2237   }
2238 
2239   // Wrap up any cleanups in the expression.
2240   return collection;
2241 }
2242 
2243 StmtResult
2244 Sema::ActOnObjCForCollectionStmt(SourceLocation ForLoc,
2245                                  Stmt *First, Expr *collection,
2246                                  SourceLocation RParenLoc) {
2247   setFunctionHasBranchProtectedScope();
2248 
2249   ExprResult CollectionExprResult =
2250     CheckObjCForCollectionOperand(ForLoc, collection);
2251 
2252   if (First) {
2253     QualType FirstType;
2254     if (DeclStmt *DS = dyn_cast<DeclStmt>(First)) {
2255       if (!DS->isSingleDecl())
2256         return StmtError(Diag((*DS->decl_begin())->getLocation(),
2257                          diag::err_toomany_element_decls));
2258 
2259       VarDecl *D = dyn_cast<VarDecl>(DS->getSingleDecl());
2260       if (!D || D->isInvalidDecl())
2261         return StmtError();
2262 
2263       FirstType = D->getType();
2264       // C99 6.8.5p3: The declaration part of a 'for' statement shall only
2265       // declare identifiers for objects having storage class 'auto' or
2266       // 'register'.
2267       if (!D->hasLocalStorage())
2268         return StmtError(Diag(D->getLocation(),
2269                               diag::err_non_local_variable_decl_in_for));
2270 
2271       // If the type contained 'auto', deduce the 'auto' to 'id'.
2272       if (FirstType->getContainedAutoType()) {
2273         OpaqueValueExpr OpaqueId(D->getLocation(), Context.getObjCIdType(),
2274                                  VK_PRValue);
2275         Expr *DeducedInit = &OpaqueId;
2276         if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) ==
2277                 DAR_Failed)
2278           DiagnoseAutoDeductionFailure(D, DeducedInit);
2279         if (FirstType.isNull()) {
2280           D->setInvalidDecl();
2281           return StmtError();
2282         }
2283 
2284         D->setType(FirstType);
2285 
2286         if (!inTemplateInstantiation()) {
2287           SourceLocation Loc =
2288               D->getTypeSourceInfo()->getTypeLoc().getBeginLoc();
2289           Diag(Loc, diag::warn_auto_var_is_id)
2290             << D->getDeclName();
2291         }
2292       }
2293 
2294     } else {
2295       Expr *FirstE = cast<Expr>(First);
2296       if (!FirstE->isTypeDependent() && !FirstE->isLValue())
2297         return StmtError(
2298             Diag(First->getBeginLoc(), diag::err_selector_element_not_lvalue)
2299             << First->getSourceRange());
2300 
2301       FirstType = static_cast<Expr*>(First)->getType();
2302       if (FirstType.isConstQualified())
2303         Diag(ForLoc, diag::err_selector_element_const_type)
2304           << FirstType << First->getSourceRange();
2305     }
2306     if (!FirstType->isDependentType() &&
2307         !FirstType->isObjCObjectPointerType() &&
2308         !FirstType->isBlockPointerType())
2309         return StmtError(Diag(ForLoc, diag::err_selector_element_type)
2310                            << FirstType << First->getSourceRange());
2311   }
2312 
2313   if (CollectionExprResult.isInvalid())
2314     return StmtError();
2315 
2316   CollectionExprResult =
2317       ActOnFinishFullExpr(CollectionExprResult.get(), /*DiscardedValue*/ false);
2318   if (CollectionExprResult.isInvalid())
2319     return StmtError();
2320 
2321   return new (Context) ObjCForCollectionStmt(First, CollectionExprResult.get(),
2322                                              nullptr, ForLoc, RParenLoc);
2323 }
2324 
2325 /// Finish building a variable declaration for a for-range statement.
2326 /// \return true if an error occurs.
2327 static bool FinishForRangeVarDecl(Sema &SemaRef, VarDecl *Decl, Expr *Init,
2328                                   SourceLocation Loc, int DiagID) {
2329   if (Decl->getType()->isUndeducedType()) {
2330     ExprResult Res = SemaRef.CorrectDelayedTyposInExpr(Init);
2331     if (!Res.isUsable()) {
2332       Decl->setInvalidDecl();
2333       return true;
2334     }
2335     Init = Res.get();
2336   }
2337 
2338   // Deduce the type for the iterator variable now rather than leaving it to
2339   // AddInitializerToDecl, so we can produce a more suitable diagnostic.
2340   QualType InitType;
2341   if ((!isa<InitListExpr>(Init) && Init->getType()->isVoidType()) ||
2342       SemaRef.DeduceAutoType(Decl->getTypeSourceInfo(), Init, InitType) ==
2343           Sema::DAR_Failed)
2344     SemaRef.Diag(Loc, DiagID) << Init->getType();
2345   if (InitType.isNull()) {
2346     Decl->setInvalidDecl();
2347     return true;
2348   }
2349   Decl->setType(InitType);
2350 
2351   // In ARC, infer lifetime.
2352   // FIXME: ARC may want to turn this into 'const __unsafe_unretained' if
2353   // we're doing the equivalent of fast iteration.
2354   if (SemaRef.getLangOpts().ObjCAutoRefCount &&
2355       SemaRef.inferObjCARCLifetime(Decl))
2356     Decl->setInvalidDecl();
2357 
2358   SemaRef.AddInitializerToDecl(Decl, Init, /*DirectInit=*/false);
2359   SemaRef.FinalizeDeclaration(Decl);
2360   SemaRef.CurContext->addHiddenDecl(Decl);
2361   return false;
2362 }
2363 
2364 namespace {
2365 // An enum to represent whether something is dealing with a call to begin()
2366 // or a call to end() in a range-based for loop.
2367 enum BeginEndFunction {
2368   BEF_begin,
2369   BEF_end
2370 };
2371 
2372 /// Produce a note indicating which begin/end function was implicitly called
2373 /// by a C++11 for-range statement. This is often not obvious from the code,
2374 /// nor from the diagnostics produced when analysing the implicit expressions
2375 /// required in a for-range statement.
2376 void NoteForRangeBeginEndFunction(Sema &SemaRef, Expr *E,
2377                                   BeginEndFunction BEF) {
2378   CallExpr *CE = dyn_cast<CallExpr>(E);
2379   if (!CE)
2380     return;
2381   FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
2382   if (!D)
2383     return;
2384   SourceLocation Loc = D->getLocation();
2385 
2386   std::string Description;
2387   bool IsTemplate = false;
2388   if (FunctionTemplateDecl *FunTmpl = D->getPrimaryTemplate()) {
2389     Description = SemaRef.getTemplateArgumentBindingsText(
2390       FunTmpl->getTemplateParameters(), *D->getTemplateSpecializationArgs());
2391     IsTemplate = true;
2392   }
2393 
2394   SemaRef.Diag(Loc, diag::note_for_range_begin_end)
2395     << BEF << IsTemplate << Description << E->getType();
2396 }
2397 
2398 /// Build a variable declaration for a for-range statement.
2399 VarDecl *BuildForRangeVarDecl(Sema &SemaRef, SourceLocation Loc,
2400                               QualType Type, StringRef Name) {
2401   DeclContext *DC = SemaRef.CurContext;
2402   IdentifierInfo *II = &SemaRef.PP.getIdentifierTable().get(Name);
2403   TypeSourceInfo *TInfo = SemaRef.Context.getTrivialTypeSourceInfo(Type, Loc);
2404   VarDecl *Decl = VarDecl::Create(SemaRef.Context, DC, Loc, Loc, II, Type,
2405                                   TInfo, SC_None);
2406   Decl->setImplicit();
2407   return Decl;
2408 }
2409 
2410 }
2411 
2412 static bool ObjCEnumerationCollection(Expr *Collection) {
2413   return !Collection->isTypeDependent()
2414           && Collection->getType()->getAs<ObjCObjectPointerType>() != nullptr;
2415 }
2416 
2417 /// ActOnCXXForRangeStmt - Check and build a C++11 for-range statement.
2418 ///
2419 /// C++11 [stmt.ranged]:
2420 ///   A range-based for statement is equivalent to
2421 ///
2422 ///   {
2423 ///     auto && __range = range-init;
2424 ///     for ( auto __begin = begin-expr,
2425 ///           __end = end-expr;
2426 ///           __begin != __end;
2427 ///           ++__begin ) {
2428 ///       for-range-declaration = *__begin;
2429 ///       statement
2430 ///     }
2431 ///   }
2432 ///
2433 /// The body of the loop is not available yet, since it cannot be analysed until
2434 /// we have determined the type of the for-range-declaration.
2435 StmtResult Sema::ActOnCXXForRangeStmt(Scope *S, SourceLocation ForLoc,
2436                                       SourceLocation CoawaitLoc, Stmt *InitStmt,
2437                                       Stmt *First, SourceLocation ColonLoc,
2438                                       Expr *Range, SourceLocation RParenLoc,
2439                                       BuildForRangeKind Kind) {
2440   if (!First)
2441     return StmtError();
2442 
2443   if (Range && ObjCEnumerationCollection(Range)) {
2444     // FIXME: Support init-statements in Objective-C++20 ranged for statement.
2445     if (InitStmt)
2446       return Diag(InitStmt->getBeginLoc(), diag::err_objc_for_range_init_stmt)
2447                  << InitStmt->getSourceRange();
2448     return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc);
2449   }
2450 
2451   DeclStmt *DS = dyn_cast<DeclStmt>(First);
2452   assert(DS && "first part of for range not a decl stmt");
2453 
2454   if (!DS->isSingleDecl()) {
2455     Diag(DS->getBeginLoc(), diag::err_type_defined_in_for_range);
2456     return StmtError();
2457   }
2458 
2459   // This function is responsible for attaching an initializer to LoopVar. We
2460   // must call ActOnInitializerError if we fail to do so.
2461   Decl *LoopVar = DS->getSingleDecl();
2462   if (LoopVar->isInvalidDecl() || !Range ||
2463       DiagnoseUnexpandedParameterPack(Range, UPPC_Expression)) {
2464     ActOnInitializerError(LoopVar);
2465     return StmtError();
2466   }
2467 
2468   // Build the coroutine state immediately and not later during template
2469   // instantiation
2470   if (!CoawaitLoc.isInvalid()) {
2471     if (!ActOnCoroutineBodyStart(S, CoawaitLoc, "co_await")) {
2472       ActOnInitializerError(LoopVar);
2473       return StmtError();
2474     }
2475   }
2476 
2477   // Build  auto && __range = range-init
2478   // Divide by 2, since the variables are in the inner scope (loop body).
2479   const auto DepthStr = std::to_string(S->getDepth() / 2);
2480   SourceLocation RangeLoc = Range->getBeginLoc();
2481   VarDecl *RangeVar = BuildForRangeVarDecl(*this, RangeLoc,
2482                                            Context.getAutoRRefDeductType(),
2483                                            std::string("__range") + DepthStr);
2484   if (FinishForRangeVarDecl(*this, RangeVar, Range, RangeLoc,
2485                             diag::err_for_range_deduction_failure)) {
2486     ActOnInitializerError(LoopVar);
2487     return StmtError();
2488   }
2489 
2490   // Claim the type doesn't contain auto: we've already done the checking.
2491   DeclGroupPtrTy RangeGroup =
2492       BuildDeclaratorGroup(MutableArrayRef<Decl *>((Decl **)&RangeVar, 1));
2493   StmtResult RangeDecl = ActOnDeclStmt(RangeGroup, RangeLoc, RangeLoc);
2494   if (RangeDecl.isInvalid()) {
2495     ActOnInitializerError(LoopVar);
2496     return StmtError();
2497   }
2498 
2499   StmtResult R = BuildCXXForRangeStmt(
2500       ForLoc, CoawaitLoc, InitStmt, ColonLoc, RangeDecl.get(),
2501       /*BeginStmt=*/nullptr, /*EndStmt=*/nullptr,
2502       /*Cond=*/nullptr, /*Inc=*/nullptr, DS, RParenLoc, Kind);
2503   if (R.isInvalid()) {
2504     ActOnInitializerError(LoopVar);
2505     return StmtError();
2506   }
2507 
2508   return R;
2509 }
2510 
2511 /// Create the initialization, compare, and increment steps for
2512 /// the range-based for loop expression.
2513 /// This function does not handle array-based for loops,
2514 /// which are created in Sema::BuildCXXForRangeStmt.
2515 ///
2516 /// \returns a ForRangeStatus indicating success or what kind of error occurred.
2517 /// BeginExpr and EndExpr are set and FRS_Success is returned on success;
2518 /// CandidateSet and BEF are set and some non-success value is returned on
2519 /// failure.
2520 static Sema::ForRangeStatus
2521 BuildNonArrayForRange(Sema &SemaRef, Expr *BeginRange, Expr *EndRange,
2522                       QualType RangeType, VarDecl *BeginVar, VarDecl *EndVar,
2523                       SourceLocation ColonLoc, SourceLocation CoawaitLoc,
2524                       OverloadCandidateSet *CandidateSet, ExprResult *BeginExpr,
2525                       ExprResult *EndExpr, BeginEndFunction *BEF) {
2526   DeclarationNameInfo BeginNameInfo(
2527       &SemaRef.PP.getIdentifierTable().get("begin"), ColonLoc);
2528   DeclarationNameInfo EndNameInfo(&SemaRef.PP.getIdentifierTable().get("end"),
2529                                   ColonLoc);
2530 
2531   LookupResult BeginMemberLookup(SemaRef, BeginNameInfo,
2532                                  Sema::LookupMemberName);
2533   LookupResult EndMemberLookup(SemaRef, EndNameInfo, Sema::LookupMemberName);
2534 
2535   auto BuildBegin = [&] {
2536     *BEF = BEF_begin;
2537     Sema::ForRangeStatus RangeStatus =
2538         SemaRef.BuildForRangeBeginEndCall(ColonLoc, ColonLoc, BeginNameInfo,
2539                                           BeginMemberLookup, CandidateSet,
2540                                           BeginRange, BeginExpr);
2541 
2542     if (RangeStatus != Sema::FRS_Success) {
2543       if (RangeStatus == Sema::FRS_DiagnosticIssued)
2544         SemaRef.Diag(BeginRange->getBeginLoc(), diag::note_in_for_range)
2545             << ColonLoc << BEF_begin << BeginRange->getType();
2546       return RangeStatus;
2547     }
2548     if (!CoawaitLoc.isInvalid()) {
2549       // FIXME: getCurScope() should not be used during template instantiation.
2550       // We should pick up the set of unqualified lookup results for operator
2551       // co_await during the initial parse.
2552       *BeginExpr = SemaRef.ActOnCoawaitExpr(SemaRef.getCurScope(), ColonLoc,
2553                                             BeginExpr->get());
2554       if (BeginExpr->isInvalid())
2555         return Sema::FRS_DiagnosticIssued;
2556     }
2557     if (FinishForRangeVarDecl(SemaRef, BeginVar, BeginExpr->get(), ColonLoc,
2558                               diag::err_for_range_iter_deduction_failure)) {
2559       NoteForRangeBeginEndFunction(SemaRef, BeginExpr->get(), *BEF);
2560       return Sema::FRS_DiagnosticIssued;
2561     }
2562     return Sema::FRS_Success;
2563   };
2564 
2565   auto BuildEnd = [&] {
2566     *BEF = BEF_end;
2567     Sema::ForRangeStatus RangeStatus =
2568         SemaRef.BuildForRangeBeginEndCall(ColonLoc, ColonLoc, EndNameInfo,
2569                                           EndMemberLookup, CandidateSet,
2570                                           EndRange, EndExpr);
2571     if (RangeStatus != Sema::FRS_Success) {
2572       if (RangeStatus == Sema::FRS_DiagnosticIssued)
2573         SemaRef.Diag(EndRange->getBeginLoc(), diag::note_in_for_range)
2574             << ColonLoc << BEF_end << EndRange->getType();
2575       return RangeStatus;
2576     }
2577     if (FinishForRangeVarDecl(SemaRef, EndVar, EndExpr->get(), ColonLoc,
2578                               diag::err_for_range_iter_deduction_failure)) {
2579       NoteForRangeBeginEndFunction(SemaRef, EndExpr->get(), *BEF);
2580       return Sema::FRS_DiagnosticIssued;
2581     }
2582     return Sema::FRS_Success;
2583   };
2584 
2585   if (CXXRecordDecl *D = RangeType->getAsCXXRecordDecl()) {
2586     // - if _RangeT is a class type, the unqualified-ids begin and end are
2587     //   looked up in the scope of class _RangeT as if by class member access
2588     //   lookup (3.4.5), and if either (or both) finds at least one
2589     //   declaration, begin-expr and end-expr are __range.begin() and
2590     //   __range.end(), respectively;
2591     SemaRef.LookupQualifiedName(BeginMemberLookup, D);
2592     if (BeginMemberLookup.isAmbiguous())
2593       return Sema::FRS_DiagnosticIssued;
2594 
2595     SemaRef.LookupQualifiedName(EndMemberLookup, D);
2596     if (EndMemberLookup.isAmbiguous())
2597       return Sema::FRS_DiagnosticIssued;
2598 
2599     if (BeginMemberLookup.empty() != EndMemberLookup.empty()) {
2600       // Look up the non-member form of the member we didn't find, first.
2601       // This way we prefer a "no viable 'end'" diagnostic over a "i found
2602       // a 'begin' but ignored it because there was no member 'end'"
2603       // diagnostic.
2604       auto BuildNonmember = [&](
2605           BeginEndFunction BEFFound, LookupResult &Found,
2606           llvm::function_ref<Sema::ForRangeStatus()> BuildFound,
2607           llvm::function_ref<Sema::ForRangeStatus()> BuildNotFound) {
2608         LookupResult OldFound = std::move(Found);
2609         Found.clear();
2610 
2611         if (Sema::ForRangeStatus Result = BuildNotFound())
2612           return Result;
2613 
2614         switch (BuildFound()) {
2615         case Sema::FRS_Success:
2616           return Sema::FRS_Success;
2617 
2618         case Sema::FRS_NoViableFunction:
2619           CandidateSet->NoteCandidates(
2620               PartialDiagnosticAt(BeginRange->getBeginLoc(),
2621                                   SemaRef.PDiag(diag::err_for_range_invalid)
2622                                       << BeginRange->getType() << BEFFound),
2623               SemaRef, OCD_AllCandidates, BeginRange);
2624           LLVM_FALLTHROUGH;
2625 
2626         case Sema::FRS_DiagnosticIssued:
2627           for (NamedDecl *D : OldFound) {
2628             SemaRef.Diag(D->getLocation(),
2629                          diag::note_for_range_member_begin_end_ignored)
2630                 << BeginRange->getType() << BEFFound;
2631           }
2632           return Sema::FRS_DiagnosticIssued;
2633         }
2634         llvm_unreachable("unexpected ForRangeStatus");
2635       };
2636       if (BeginMemberLookup.empty())
2637         return BuildNonmember(BEF_end, EndMemberLookup, BuildEnd, BuildBegin);
2638       return BuildNonmember(BEF_begin, BeginMemberLookup, BuildBegin, BuildEnd);
2639     }
2640   } else {
2641     // - otherwise, begin-expr and end-expr are begin(__range) and
2642     //   end(__range), respectively, where begin and end are looked up with
2643     //   argument-dependent lookup (3.4.2). For the purposes of this name
2644     //   lookup, namespace std is an associated namespace.
2645   }
2646 
2647   if (Sema::ForRangeStatus Result = BuildBegin())
2648     return Result;
2649   return BuildEnd();
2650 }
2651 
2652 /// Speculatively attempt to dereference an invalid range expression.
2653 /// If the attempt fails, this function will return a valid, null StmtResult
2654 /// and emit no diagnostics.
2655 static StmtResult RebuildForRangeWithDereference(Sema &SemaRef, Scope *S,
2656                                                  SourceLocation ForLoc,
2657                                                  SourceLocation CoawaitLoc,
2658                                                  Stmt *InitStmt,
2659                                                  Stmt *LoopVarDecl,
2660                                                  SourceLocation ColonLoc,
2661                                                  Expr *Range,
2662                                                  SourceLocation RangeLoc,
2663                                                  SourceLocation RParenLoc) {
2664   // Determine whether we can rebuild the for-range statement with a
2665   // dereferenced range expression.
2666   ExprResult AdjustedRange;
2667   {
2668     Sema::SFINAETrap Trap(SemaRef);
2669 
2670     AdjustedRange = SemaRef.BuildUnaryOp(S, RangeLoc, UO_Deref, Range);
2671     if (AdjustedRange.isInvalid())
2672       return StmtResult();
2673 
2674     StmtResult SR = SemaRef.ActOnCXXForRangeStmt(
2675         S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc,
2676         AdjustedRange.get(), RParenLoc, Sema::BFRK_Check);
2677     if (SR.isInvalid())
2678       return StmtResult();
2679   }
2680 
2681   // The attempt to dereference worked well enough that it could produce a valid
2682   // loop. Produce a fixit, and rebuild the loop with diagnostics enabled, in
2683   // case there are any other (non-fatal) problems with it.
2684   SemaRef.Diag(RangeLoc, diag::err_for_range_dereference)
2685     << Range->getType() << FixItHint::CreateInsertion(RangeLoc, "*");
2686   return SemaRef.ActOnCXXForRangeStmt(
2687       S, ForLoc, CoawaitLoc, InitStmt, LoopVarDecl, ColonLoc,
2688       AdjustedRange.get(), RParenLoc, Sema::BFRK_Rebuild);
2689 }
2690 
2691 /// BuildCXXForRangeStmt - Build or instantiate a C++11 for-range statement.
2692 StmtResult Sema::BuildCXXForRangeStmt(SourceLocation ForLoc,
2693                                       SourceLocation CoawaitLoc, Stmt *InitStmt,
2694                                       SourceLocation ColonLoc, Stmt *RangeDecl,
2695                                       Stmt *Begin, Stmt *End, Expr *Cond,
2696                                       Expr *Inc, Stmt *LoopVarDecl,
2697                                       SourceLocation RParenLoc,
2698                                       BuildForRangeKind Kind) {
2699   // FIXME: This should not be used during template instantiation. We should
2700   // pick up the set of unqualified lookup results for the != and + operators
2701   // in the initial parse.
2702   //
2703   // Testcase (accepts-invalid):
2704   //   template<typename T> void f() { for (auto x : T()) {} }
2705   //   namespace N { struct X { X begin(); X end(); int operator*(); }; }
2706   //   bool operator!=(N::X, N::X); void operator++(N::X);
2707   //   void g() { f<N::X>(); }
2708   Scope *S = getCurScope();
2709 
2710   DeclStmt *RangeDS = cast<DeclStmt>(RangeDecl);
2711   VarDecl *RangeVar = cast<VarDecl>(RangeDS->getSingleDecl());
2712   QualType RangeVarType = RangeVar->getType();
2713 
2714   DeclStmt *LoopVarDS = cast<DeclStmt>(LoopVarDecl);
2715   VarDecl *LoopVar = cast<VarDecl>(LoopVarDS->getSingleDecl());
2716 
2717   StmtResult BeginDeclStmt = Begin;
2718   StmtResult EndDeclStmt = End;
2719   ExprResult NotEqExpr = Cond, IncrExpr = Inc;
2720 
2721   if (RangeVarType->isDependentType()) {
2722     // The range is implicitly used as a placeholder when it is dependent.
2723     RangeVar->markUsed(Context);
2724 
2725     // Deduce any 'auto's in the loop variable as 'DependentTy'. We'll fill
2726     // them in properly when we instantiate the loop.
2727     if (!LoopVar->isInvalidDecl() && Kind != BFRK_Check) {
2728       if (auto *DD = dyn_cast<DecompositionDecl>(LoopVar))
2729         for (auto *Binding : DD->bindings())
2730           Binding->setType(Context.DependentTy);
2731       LoopVar->setType(SubstAutoType(LoopVar->getType(), Context.DependentTy));
2732     }
2733   } else if (!BeginDeclStmt.get()) {
2734     SourceLocation RangeLoc = RangeVar->getLocation();
2735 
2736     const QualType RangeVarNonRefType = RangeVarType.getNonReferenceType();
2737 
2738     ExprResult BeginRangeRef = BuildDeclRefExpr(RangeVar, RangeVarNonRefType,
2739                                                 VK_LValue, ColonLoc);
2740     if (BeginRangeRef.isInvalid())
2741       return StmtError();
2742 
2743     ExprResult EndRangeRef = BuildDeclRefExpr(RangeVar, RangeVarNonRefType,
2744                                               VK_LValue, ColonLoc);
2745     if (EndRangeRef.isInvalid())
2746       return StmtError();
2747 
2748     QualType AutoType = Context.getAutoDeductType();
2749     Expr *Range = RangeVar->getInit();
2750     if (!Range)
2751       return StmtError();
2752     QualType RangeType = Range->getType();
2753 
2754     if (RequireCompleteType(RangeLoc, RangeType,
2755                             diag::err_for_range_incomplete_type))
2756       return StmtError();
2757 
2758     // Build auto __begin = begin-expr, __end = end-expr.
2759     // Divide by 2, since the variables are in the inner scope (loop body).
2760     const auto DepthStr = std::to_string(S->getDepth() / 2);
2761     VarDecl *BeginVar = BuildForRangeVarDecl(*this, ColonLoc, AutoType,
2762                                              std::string("__begin") + DepthStr);
2763     VarDecl *EndVar = BuildForRangeVarDecl(*this, ColonLoc, AutoType,
2764                                            std::string("__end") + DepthStr);
2765 
2766     // Build begin-expr and end-expr and attach to __begin and __end variables.
2767     ExprResult BeginExpr, EndExpr;
2768     if (const ArrayType *UnqAT = RangeType->getAsArrayTypeUnsafe()) {
2769       // - if _RangeT is an array type, begin-expr and end-expr are __range and
2770       //   __range + __bound, respectively, where __bound is the array bound. If
2771       //   _RangeT is an array of unknown size or an array of incomplete type,
2772       //   the program is ill-formed;
2773 
2774       // begin-expr is __range.
2775       BeginExpr = BeginRangeRef;
2776       if (!CoawaitLoc.isInvalid()) {
2777         BeginExpr = ActOnCoawaitExpr(S, ColonLoc, BeginExpr.get());
2778         if (BeginExpr.isInvalid())
2779           return StmtError();
2780       }
2781       if (FinishForRangeVarDecl(*this, BeginVar, BeginRangeRef.get(), ColonLoc,
2782                                 diag::err_for_range_iter_deduction_failure)) {
2783         NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2784         return StmtError();
2785       }
2786 
2787       // Find the array bound.
2788       ExprResult BoundExpr;
2789       if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(UnqAT))
2790         BoundExpr = IntegerLiteral::Create(
2791             Context, CAT->getSize(), Context.getPointerDiffType(), RangeLoc);
2792       else if (const VariableArrayType *VAT =
2793                dyn_cast<VariableArrayType>(UnqAT)) {
2794         // For a variably modified type we can't just use the expression within
2795         // the array bounds, since we don't want that to be re-evaluated here.
2796         // Rather, we need to determine what it was when the array was first
2797         // created - so we resort to using sizeof(vla)/sizeof(element).
2798         // For e.g.
2799         //  void f(int b) {
2800         //    int vla[b];
2801         //    b = -1;   <-- This should not affect the num of iterations below
2802         //    for (int &c : vla) { .. }
2803         //  }
2804 
2805         // FIXME: This results in codegen generating IR that recalculates the
2806         // run-time number of elements (as opposed to just using the IR Value
2807         // that corresponds to the run-time value of each bound that was
2808         // generated when the array was created.) If this proves too embarrassing
2809         // even for unoptimized IR, consider passing a magic-value/cookie to
2810         // codegen that then knows to simply use that initial llvm::Value (that
2811         // corresponds to the bound at time of array creation) within
2812         // getelementptr.  But be prepared to pay the price of increasing a
2813         // customized form of coupling between the two components - which  could
2814         // be hard to maintain as the codebase evolves.
2815 
2816         ExprResult SizeOfVLAExprR = ActOnUnaryExprOrTypeTraitExpr(
2817             EndVar->getLocation(), UETT_SizeOf,
2818             /*IsType=*/true,
2819             CreateParsedType(VAT->desugar(), Context.getTrivialTypeSourceInfo(
2820                                                  VAT->desugar(), RangeLoc))
2821                 .getAsOpaquePtr(),
2822             EndVar->getSourceRange());
2823         if (SizeOfVLAExprR.isInvalid())
2824           return StmtError();
2825 
2826         ExprResult SizeOfEachElementExprR = ActOnUnaryExprOrTypeTraitExpr(
2827             EndVar->getLocation(), UETT_SizeOf,
2828             /*IsType=*/true,
2829             CreateParsedType(VAT->desugar(),
2830                              Context.getTrivialTypeSourceInfo(
2831                                  VAT->getElementType(), RangeLoc))
2832                 .getAsOpaquePtr(),
2833             EndVar->getSourceRange());
2834         if (SizeOfEachElementExprR.isInvalid())
2835           return StmtError();
2836 
2837         BoundExpr =
2838             ActOnBinOp(S, EndVar->getLocation(), tok::slash,
2839                        SizeOfVLAExprR.get(), SizeOfEachElementExprR.get());
2840         if (BoundExpr.isInvalid())
2841           return StmtError();
2842 
2843       } else {
2844         // Can't be a DependentSizedArrayType or an IncompleteArrayType since
2845         // UnqAT is not incomplete and Range is not type-dependent.
2846         llvm_unreachable("Unexpected array type in for-range");
2847       }
2848 
2849       // end-expr is __range + __bound.
2850       EndExpr = ActOnBinOp(S, ColonLoc, tok::plus, EndRangeRef.get(),
2851                            BoundExpr.get());
2852       if (EndExpr.isInvalid())
2853         return StmtError();
2854       if (FinishForRangeVarDecl(*this, EndVar, EndExpr.get(), ColonLoc,
2855                                 diag::err_for_range_iter_deduction_failure)) {
2856         NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2857         return StmtError();
2858       }
2859     } else {
2860       OverloadCandidateSet CandidateSet(RangeLoc,
2861                                         OverloadCandidateSet::CSK_Normal);
2862       BeginEndFunction BEFFailure;
2863       ForRangeStatus RangeStatus = BuildNonArrayForRange(
2864           *this, BeginRangeRef.get(), EndRangeRef.get(), RangeType, BeginVar,
2865           EndVar, ColonLoc, CoawaitLoc, &CandidateSet, &BeginExpr, &EndExpr,
2866           &BEFFailure);
2867 
2868       if (Kind == BFRK_Build && RangeStatus == FRS_NoViableFunction &&
2869           BEFFailure == BEF_begin) {
2870         // If the range is being built from an array parameter, emit a
2871         // a diagnostic that it is being treated as a pointer.
2872         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Range)) {
2873           if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
2874             QualType ArrayTy = PVD->getOriginalType();
2875             QualType PointerTy = PVD->getType();
2876             if (PointerTy->isPointerType() && ArrayTy->isArrayType()) {
2877               Diag(Range->getBeginLoc(), diag::err_range_on_array_parameter)
2878                   << RangeLoc << PVD << ArrayTy << PointerTy;
2879               Diag(PVD->getLocation(), diag::note_declared_at);
2880               return StmtError();
2881             }
2882           }
2883         }
2884 
2885         // If building the range failed, try dereferencing the range expression
2886         // unless a diagnostic was issued or the end function is problematic.
2887         StmtResult SR = RebuildForRangeWithDereference(*this, S, ForLoc,
2888                                                        CoawaitLoc, InitStmt,
2889                                                        LoopVarDecl, ColonLoc,
2890                                                        Range, RangeLoc,
2891                                                        RParenLoc);
2892         if (SR.isInvalid() || SR.isUsable())
2893           return SR;
2894       }
2895 
2896       // Otherwise, emit diagnostics if we haven't already.
2897       if (RangeStatus == FRS_NoViableFunction) {
2898         Expr *Range = BEFFailure ? EndRangeRef.get() : BeginRangeRef.get();
2899         CandidateSet.NoteCandidates(
2900             PartialDiagnosticAt(Range->getBeginLoc(),
2901                                 PDiag(diag::err_for_range_invalid)
2902                                     << RangeLoc << Range->getType()
2903                                     << BEFFailure),
2904             *this, OCD_AllCandidates, Range);
2905       }
2906       // Return an error if no fix was discovered.
2907       if (RangeStatus != FRS_Success)
2908         return StmtError();
2909     }
2910 
2911     assert(!BeginExpr.isInvalid() && !EndExpr.isInvalid() &&
2912            "invalid range expression in for loop");
2913 
2914     // C++11 [dcl.spec.auto]p7: BeginType and EndType must be the same.
2915     // C++1z removes this restriction.
2916     QualType BeginType = BeginVar->getType(), EndType = EndVar->getType();
2917     if (!Context.hasSameType(BeginType, EndType)) {
2918       Diag(RangeLoc, getLangOpts().CPlusPlus17
2919                          ? diag::warn_for_range_begin_end_types_differ
2920                          : diag::ext_for_range_begin_end_types_differ)
2921           << BeginType << EndType;
2922       NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2923       NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2924     }
2925 
2926     BeginDeclStmt =
2927         ActOnDeclStmt(ConvertDeclToDeclGroup(BeginVar), ColonLoc, ColonLoc);
2928     EndDeclStmt =
2929         ActOnDeclStmt(ConvertDeclToDeclGroup(EndVar), ColonLoc, ColonLoc);
2930 
2931     const QualType BeginRefNonRefType = BeginType.getNonReferenceType();
2932     ExprResult BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2933                                            VK_LValue, ColonLoc);
2934     if (BeginRef.isInvalid())
2935       return StmtError();
2936 
2937     ExprResult EndRef = BuildDeclRefExpr(EndVar, EndType.getNonReferenceType(),
2938                                          VK_LValue, ColonLoc);
2939     if (EndRef.isInvalid())
2940       return StmtError();
2941 
2942     // Build and check __begin != __end expression.
2943     NotEqExpr = ActOnBinOp(S, ColonLoc, tok::exclaimequal,
2944                            BeginRef.get(), EndRef.get());
2945     if (!NotEqExpr.isInvalid())
2946       NotEqExpr = CheckBooleanCondition(ColonLoc, NotEqExpr.get());
2947     if (!NotEqExpr.isInvalid())
2948       NotEqExpr =
2949           ActOnFinishFullExpr(NotEqExpr.get(), /*DiscardedValue*/ false);
2950     if (NotEqExpr.isInvalid()) {
2951       Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2952         << RangeLoc << 0 << BeginRangeRef.get()->getType();
2953       NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2954       if (!Context.hasSameType(BeginType, EndType))
2955         NoteForRangeBeginEndFunction(*this, EndExpr.get(), BEF_end);
2956       return StmtError();
2957     }
2958 
2959     // Build and check ++__begin expression.
2960     BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2961                                 VK_LValue, ColonLoc);
2962     if (BeginRef.isInvalid())
2963       return StmtError();
2964 
2965     IncrExpr = ActOnUnaryOp(S, ColonLoc, tok::plusplus, BeginRef.get());
2966     if (!IncrExpr.isInvalid() && CoawaitLoc.isValid())
2967       // FIXME: getCurScope() should not be used during template instantiation.
2968       // We should pick up the set of unqualified lookup results for operator
2969       // co_await during the initial parse.
2970       IncrExpr = ActOnCoawaitExpr(S, CoawaitLoc, IncrExpr.get());
2971     if (!IncrExpr.isInvalid())
2972       IncrExpr = ActOnFinishFullExpr(IncrExpr.get(), /*DiscardedValue*/ false);
2973     if (IncrExpr.isInvalid()) {
2974       Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2975         << RangeLoc << 2 << BeginRangeRef.get()->getType() ;
2976       NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2977       return StmtError();
2978     }
2979 
2980     // Build and check *__begin  expression.
2981     BeginRef = BuildDeclRefExpr(BeginVar, BeginRefNonRefType,
2982                                 VK_LValue, ColonLoc);
2983     if (BeginRef.isInvalid())
2984       return StmtError();
2985 
2986     ExprResult DerefExpr = ActOnUnaryOp(S, ColonLoc, tok::star, BeginRef.get());
2987     if (DerefExpr.isInvalid()) {
2988       Diag(RangeLoc, diag::note_for_range_invalid_iterator)
2989         << RangeLoc << 1 << BeginRangeRef.get()->getType();
2990       NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
2991       return StmtError();
2992     }
2993 
2994     // Attach  *__begin  as initializer for VD. Don't touch it if we're just
2995     // trying to determine whether this would be a valid range.
2996     if (!LoopVar->isInvalidDecl() && Kind != BFRK_Check) {
2997       AddInitializerToDecl(LoopVar, DerefExpr.get(), /*DirectInit=*/false);
2998       if (LoopVar->isInvalidDecl() ||
2999           (LoopVar->getInit() && LoopVar->getInit()->containsErrors()))
3000         NoteForRangeBeginEndFunction(*this, BeginExpr.get(), BEF_begin);
3001     }
3002   }
3003 
3004   // Don't bother to actually allocate the result if we're just trying to
3005   // determine whether it would be valid.
3006   if (Kind == BFRK_Check)
3007     return StmtResult();
3008 
3009   // In OpenMP loop region loop control variable must be private. Perform
3010   // analysis of first part (if any).
3011   if (getLangOpts().OpenMP >= 50 && BeginDeclStmt.isUsable())
3012     ActOnOpenMPLoopInitialization(ForLoc, BeginDeclStmt.get());
3013 
3014   return new (Context) CXXForRangeStmt(
3015       InitStmt, RangeDS, cast_or_null<DeclStmt>(BeginDeclStmt.get()),
3016       cast_or_null<DeclStmt>(EndDeclStmt.get()), NotEqExpr.get(),
3017       IncrExpr.get(), LoopVarDS, /*Body=*/nullptr, ForLoc, CoawaitLoc,
3018       ColonLoc, RParenLoc);
3019 }
3020 
3021 /// FinishObjCForCollectionStmt - Attach the body to a objective-C foreach
3022 /// statement.
3023 StmtResult Sema::FinishObjCForCollectionStmt(Stmt *S, Stmt *B) {
3024   if (!S || !B)
3025     return StmtError();
3026   ObjCForCollectionStmt * ForStmt = cast<ObjCForCollectionStmt>(S);
3027 
3028   ForStmt->setBody(B);
3029   return S;
3030 }
3031 
3032 // Warn when the loop variable is a const reference that creates a copy.
3033 // Suggest using the non-reference type for copies.  If a copy can be prevented
3034 // suggest the const reference type that would do so.
3035 // For instance, given "for (const &Foo : Range)", suggest
3036 // "for (const Foo : Range)" to denote a copy is made for the loop.  If
3037 // possible, also suggest "for (const &Bar : Range)" if this type prevents
3038 // the copy altogether.
3039 static void DiagnoseForRangeReferenceVariableCopies(Sema &SemaRef,
3040                                                     const VarDecl *VD,
3041                                                     QualType RangeInitType) {
3042   const Expr *InitExpr = VD->getInit();
3043   if (!InitExpr)
3044     return;
3045 
3046   QualType VariableType = VD->getType();
3047 
3048   if (auto Cleanups = dyn_cast<ExprWithCleanups>(InitExpr))
3049     if (!Cleanups->cleanupsHaveSideEffects())
3050       InitExpr = Cleanups->getSubExpr();
3051 
3052   const MaterializeTemporaryExpr *MTE =
3053       dyn_cast<MaterializeTemporaryExpr>(InitExpr);
3054 
3055   // No copy made.
3056   if (!MTE)
3057     return;
3058 
3059   const Expr *E = MTE->getSubExpr()->IgnoreImpCasts();
3060 
3061   // Searching for either UnaryOperator for dereference of a pointer or
3062   // CXXOperatorCallExpr for handling iterators.
3063   while (!isa<CXXOperatorCallExpr>(E) && !isa<UnaryOperator>(E)) {
3064     if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(E)) {
3065       E = CCE->getArg(0);
3066     } else if (const CXXMemberCallExpr *Call = dyn_cast<CXXMemberCallExpr>(E)) {
3067       const MemberExpr *ME = cast<MemberExpr>(Call->getCallee());
3068       E = ME->getBase();
3069     } else {
3070       const MaterializeTemporaryExpr *MTE = cast<MaterializeTemporaryExpr>(E);
3071       E = MTE->getSubExpr();
3072     }
3073     E = E->IgnoreImpCasts();
3074   }
3075 
3076   QualType ReferenceReturnType;
3077   if (isa<UnaryOperator>(E)) {
3078     ReferenceReturnType = SemaRef.Context.getLValueReferenceType(E->getType());
3079   } else {
3080     const CXXOperatorCallExpr *Call = cast<CXXOperatorCallExpr>(E);
3081     const FunctionDecl *FD = Call->getDirectCallee();
3082     QualType ReturnType = FD->getReturnType();
3083     if (ReturnType->isReferenceType())
3084       ReferenceReturnType = ReturnType;
3085   }
3086 
3087   if (!ReferenceReturnType.isNull()) {
3088     // Loop variable creates a temporary.  Suggest either to go with
3089     // non-reference loop variable to indicate a copy is made, or
3090     // the correct type to bind a const reference.
3091     SemaRef.Diag(VD->getLocation(),
3092                  diag::warn_for_range_const_ref_binds_temp_built_from_ref)
3093         << VD << VariableType << ReferenceReturnType;
3094     QualType NonReferenceType = VariableType.getNonReferenceType();
3095     NonReferenceType.removeLocalConst();
3096     QualType NewReferenceType =
3097         SemaRef.Context.getLValueReferenceType(E->getType().withConst());
3098     SemaRef.Diag(VD->getBeginLoc(), diag::note_use_type_or_non_reference)
3099         << NonReferenceType << NewReferenceType << VD->getSourceRange()
3100         << FixItHint::CreateRemoval(VD->getTypeSpecEndLoc());
3101   } else if (!VariableType->isRValueReferenceType()) {
3102     // The range always returns a copy, so a temporary is always created.
3103     // Suggest removing the reference from the loop variable.
3104     // If the type is a rvalue reference do not warn since that changes the
3105     // semantic of the code.
3106     SemaRef.Diag(VD->getLocation(), diag::warn_for_range_ref_binds_ret_temp)
3107         << VD << RangeInitType;
3108     QualType NonReferenceType = VariableType.getNonReferenceType();
3109     NonReferenceType.removeLocalConst();
3110     SemaRef.Diag(VD->getBeginLoc(), diag::note_use_non_reference_type)
3111         << NonReferenceType << VD->getSourceRange()
3112         << FixItHint::CreateRemoval(VD->getTypeSpecEndLoc());
3113   }
3114 }
3115 
3116 /// Determines whether the @p VariableType's declaration is a record with the
3117 /// clang::trivial_abi attribute.
3118 static bool hasTrivialABIAttr(QualType VariableType) {
3119   if (CXXRecordDecl *RD = VariableType->getAsCXXRecordDecl())
3120     return RD->hasAttr<TrivialABIAttr>();
3121 
3122   return false;
3123 }
3124 
3125 // Warns when the loop variable can be changed to a reference type to
3126 // prevent a copy.  For instance, if given "for (const Foo x : Range)" suggest
3127 // "for (const Foo &x : Range)" if this form does not make a copy.
3128 static void DiagnoseForRangeConstVariableCopies(Sema &SemaRef,
3129                                                 const VarDecl *VD) {
3130   const Expr *InitExpr = VD->getInit();
3131   if (!InitExpr)
3132     return;
3133 
3134   QualType VariableType = VD->getType();
3135 
3136   if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(InitExpr)) {
3137     if (!CE->getConstructor()->isCopyConstructor())
3138       return;
3139   } else if (const CastExpr *CE = dyn_cast<CastExpr>(InitExpr)) {
3140     if (CE->getCastKind() != CK_LValueToRValue)
3141       return;
3142   } else {
3143     return;
3144   }
3145 
3146   // Small trivially copyable types are cheap to copy. Do not emit the
3147   // diagnostic for these instances. 64 bytes is a common size of a cache line.
3148   // (The function `getTypeSize` returns the size in bits.)
3149   ASTContext &Ctx = SemaRef.Context;
3150   if (Ctx.getTypeSize(VariableType) <= 64 * 8 &&
3151       (VariableType.isTriviallyCopyableType(Ctx) ||
3152        hasTrivialABIAttr(VariableType)))
3153     return;
3154 
3155   // Suggest changing from a const variable to a const reference variable
3156   // if doing so will prevent a copy.
3157   SemaRef.Diag(VD->getLocation(), diag::warn_for_range_copy)
3158       << VD << VariableType;
3159   SemaRef.Diag(VD->getBeginLoc(), diag::note_use_reference_type)
3160       << SemaRef.Context.getLValueReferenceType(VariableType)
3161       << VD->getSourceRange()
3162       << FixItHint::CreateInsertion(VD->getLocation(), "&");
3163 }
3164 
3165 /// DiagnoseForRangeVariableCopies - Diagnose three cases and fixes for them.
3166 /// 1) for (const foo &x : foos) where foos only returns a copy.  Suggest
3167 ///    using "const foo x" to show that a copy is made
3168 /// 2) for (const bar &x : foos) where bar is a temporary initialized by bar.
3169 ///    Suggest either "const bar x" to keep the copying or "const foo& x" to
3170 ///    prevent the copy.
3171 /// 3) for (const foo x : foos) where x is constructed from a reference foo.
3172 ///    Suggest "const foo &x" to prevent the copy.
3173 static void DiagnoseForRangeVariableCopies(Sema &SemaRef,
3174                                            const CXXForRangeStmt *ForStmt) {
3175   if (SemaRef.inTemplateInstantiation())
3176     return;
3177 
3178   if (SemaRef.Diags.isIgnored(
3179           diag::warn_for_range_const_ref_binds_temp_built_from_ref,
3180           ForStmt->getBeginLoc()) &&
3181       SemaRef.Diags.isIgnored(diag::warn_for_range_ref_binds_ret_temp,
3182                               ForStmt->getBeginLoc()) &&
3183       SemaRef.Diags.isIgnored(diag::warn_for_range_copy,
3184                               ForStmt->getBeginLoc())) {
3185     return;
3186   }
3187 
3188   const VarDecl *VD = ForStmt->getLoopVariable();
3189   if (!VD)
3190     return;
3191 
3192   QualType VariableType = VD->getType();
3193 
3194   if (VariableType->isIncompleteType())
3195     return;
3196 
3197   const Expr *InitExpr = VD->getInit();
3198   if (!InitExpr)
3199     return;
3200 
3201   if (InitExpr->getExprLoc().isMacroID())
3202     return;
3203 
3204   if (VariableType->isReferenceType()) {
3205     DiagnoseForRangeReferenceVariableCopies(SemaRef, VD,
3206                                             ForStmt->getRangeInit()->getType());
3207   } else if (VariableType.isConstQualified()) {
3208     DiagnoseForRangeConstVariableCopies(SemaRef, VD);
3209   }
3210 }
3211 
3212 /// FinishCXXForRangeStmt - Attach the body to a C++0x for-range statement.
3213 /// This is a separate step from ActOnCXXForRangeStmt because analysis of the
3214 /// body cannot be performed until after the type of the range variable is
3215 /// determined.
3216 StmtResult Sema::FinishCXXForRangeStmt(Stmt *S, Stmt *B) {
3217   if (!S || !B)
3218     return StmtError();
3219 
3220   if (isa<ObjCForCollectionStmt>(S))
3221     return FinishObjCForCollectionStmt(S, B);
3222 
3223   CXXForRangeStmt *ForStmt = cast<CXXForRangeStmt>(S);
3224   ForStmt->setBody(B);
3225 
3226   DiagnoseEmptyStmtBody(ForStmt->getRParenLoc(), B,
3227                         diag::warn_empty_range_based_for_body);
3228 
3229   DiagnoseForRangeVariableCopies(*this, ForStmt);
3230 
3231   return S;
3232 }
3233 
3234 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc,
3235                                SourceLocation LabelLoc,
3236                                LabelDecl *TheDecl) {
3237   setFunctionHasBranchIntoScope();
3238   TheDecl->markUsed(Context);
3239   return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc);
3240 }
3241 
3242 StmtResult
3243 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc,
3244                             Expr *E) {
3245   // Convert operand to void*
3246   if (!E->isTypeDependent()) {
3247     QualType ETy = E->getType();
3248     QualType DestTy = Context.getPointerType(Context.VoidTy.withConst());
3249     ExprResult ExprRes = E;
3250     AssignConvertType ConvTy =
3251       CheckSingleAssignmentConstraints(DestTy, ExprRes);
3252     if (ExprRes.isInvalid())
3253       return StmtError();
3254     E = ExprRes.get();
3255     if (DiagnoseAssignmentResult(ConvTy, StarLoc, DestTy, ETy, E, AA_Passing))
3256       return StmtError();
3257   }
3258 
3259   ExprResult ExprRes = ActOnFinishFullExpr(E, /*DiscardedValue*/ false);
3260   if (ExprRes.isInvalid())
3261     return StmtError();
3262   E = ExprRes.get();
3263 
3264   setFunctionHasIndirectGoto();
3265 
3266   return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E);
3267 }
3268 
3269 static void CheckJumpOutOfSEHFinally(Sema &S, SourceLocation Loc,
3270                                      const Scope &DestScope) {
3271   if (!S.CurrentSEHFinally.empty() &&
3272       DestScope.Contains(*S.CurrentSEHFinally.back())) {
3273     S.Diag(Loc, diag::warn_jump_out_of_seh_finally);
3274   }
3275 }
3276 
3277 StmtResult
3278 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
3279   Scope *S = CurScope->getContinueParent();
3280   if (!S) {
3281     // C99 6.8.6.2p1: A break shall appear only in or as a loop body.
3282     return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
3283   }
3284   if (S->getFlags() & Scope::ConditionVarScope) {
3285     // We cannot 'continue;' from within a statement expression in the
3286     // initializer of a condition variable because we would jump past the
3287     // initialization of that variable.
3288     return StmtError(Diag(ContinueLoc, diag::err_continue_from_cond_var_init));
3289   }
3290   CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S);
3291 
3292   return new (Context) ContinueStmt(ContinueLoc);
3293 }
3294 
3295 StmtResult
3296 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
3297   Scope *S = CurScope->getBreakParent();
3298   if (!S) {
3299     // C99 6.8.6.3p1: A break shall appear only in or as a switch/loop body.
3300     return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
3301   }
3302   if (S->isOpenMPLoopScope())
3303     return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
3304                      << "break");
3305   CheckJumpOutOfSEHFinally(*this, BreakLoc, *S);
3306 
3307   return new (Context) BreakStmt(BreakLoc);
3308 }
3309 
3310 /// Determine whether the given expression might be move-eligible or
3311 /// copy-elidable in either a (co_)return statement or throw expression,
3312 /// without considering function return type, if applicable.
3313 ///
3314 /// \param E The expression being returned from the function or block,
3315 /// being thrown, or being co_returned from a coroutine. This expression
3316 /// might be modified by the implementation.
3317 ///
3318 /// \param ForceCXX2b Overrides detection of current language mode
3319 /// and uses the rules for C++2b.
3320 ///
3321 /// \returns An aggregate which contains the Candidate and isMoveEligible
3322 /// and isCopyElidable methods. If Candidate is non-null, it means
3323 /// isMoveEligible() would be true under the most permissive language standard.
3324 Sema::NamedReturnInfo Sema::getNamedReturnInfo(Expr *&E, bool ForceCXX2b) {
3325   if (!E)
3326     return NamedReturnInfo();
3327   // - in a return statement in a function [where] ...
3328   // ... the expression is the name of a non-volatile automatic object ...
3329   const auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParens());
3330   if (!DR || DR->refersToEnclosingVariableOrCapture())
3331     return NamedReturnInfo();
3332   const auto *VD = dyn_cast<VarDecl>(DR->getDecl());
3333   if (!VD)
3334     return NamedReturnInfo();
3335   NamedReturnInfo Res = getNamedReturnInfo(VD);
3336   if (Res.Candidate && !E->isXValue() &&
3337       (ForceCXX2b || getLangOpts().CPlusPlus2b)) {
3338     E = ImplicitCastExpr::Create(Context, VD->getType().getNonReferenceType(),
3339                                  CK_NoOp, E, nullptr, VK_XValue,
3340                                  FPOptionsOverride());
3341   }
3342   return Res;
3343 }
3344 
3345 /// Determine whether the given NRVO candidate variable is move-eligible or
3346 /// copy-elidable, without considering function return type.
3347 ///
3348 /// \param VD The NRVO candidate variable.
3349 ///
3350 /// \returns An aggregate which contains the Candidate and isMoveEligible
3351 /// and isCopyElidable methods. If Candidate is non-null, it means
3352 /// isMoveEligible() would be true under the most permissive language standard.
3353 Sema::NamedReturnInfo Sema::getNamedReturnInfo(const VarDecl *VD) {
3354   NamedReturnInfo Info{VD, NamedReturnInfo::MoveEligibleAndCopyElidable};
3355 
3356   // C++20 [class.copy.elision]p3:
3357   // - in a return statement in a function with ...
3358   // (other than a function ... parameter)
3359   if (VD->getKind() == Decl::ParmVar)
3360     Info.S = NamedReturnInfo::MoveEligible;
3361   else if (VD->getKind() != Decl::Var)
3362     return NamedReturnInfo();
3363 
3364   // (other than ... a catch-clause parameter)
3365   if (VD->isExceptionVariable())
3366     Info.S = NamedReturnInfo::MoveEligible;
3367 
3368   // ...automatic...
3369   if (!VD->hasLocalStorage())
3370     return NamedReturnInfo();
3371 
3372   // We don't want to implicitly move out of a __block variable during a return
3373   // because we cannot assume the variable will no longer be used.
3374   if (VD->hasAttr<BlocksAttr>())
3375     return NamedReturnInfo();
3376 
3377   QualType VDType = VD->getType();
3378   if (VDType->isObjectType()) {
3379     // C++17 [class.copy.elision]p3:
3380     // ...non-volatile automatic object...
3381     if (VDType.isVolatileQualified())
3382       return NamedReturnInfo();
3383   } else if (VDType->isRValueReferenceType()) {
3384     // C++20 [class.copy.elision]p3:
3385     // ...either a non-volatile object or an rvalue reference to a non-volatile
3386     // object type...
3387     QualType VDReferencedType = VDType.getNonReferenceType();
3388     if (VDReferencedType.isVolatileQualified() ||
3389         !VDReferencedType->isObjectType())
3390       return NamedReturnInfo();
3391     Info.S = NamedReturnInfo::MoveEligible;
3392   } else {
3393     return NamedReturnInfo();
3394   }
3395 
3396   // Variables with higher required alignment than their type's ABI
3397   // alignment cannot use NRVO.
3398   if (!VDType->isDependentType() && VD->hasAttr<AlignedAttr>() &&
3399       Context.getDeclAlign(VD) > Context.getTypeAlignInChars(VDType))
3400     Info.S = NamedReturnInfo::MoveEligible;
3401 
3402   return Info;
3403 }
3404 
3405 /// Updates given NamedReturnInfo's move-eligible and
3406 /// copy-elidable statuses, considering the function
3407 /// return type criteria as applicable to return statements.
3408 ///
3409 /// \param Info The NamedReturnInfo object to update.
3410 ///
3411 /// \param ReturnType This is the return type of the function.
3412 /// \returns The copy elision candidate, in case the initial return expression
3413 /// was copy elidable, or nullptr otherwise.
3414 const VarDecl *Sema::getCopyElisionCandidate(NamedReturnInfo &Info,
3415                                              QualType ReturnType) {
3416   if (!Info.Candidate)
3417     return nullptr;
3418 
3419   auto invalidNRVO = [&] {
3420     Info = NamedReturnInfo();
3421     return nullptr;
3422   };
3423 
3424   // If we got a non-deduced auto ReturnType, we are in a dependent context and
3425   // there is no point in allowing copy elision since we won't have it deduced
3426   // by the point the VardDecl is instantiated, which is the last chance we have
3427   // of deciding if the candidate is really copy elidable.
3428   if ((ReturnType->getTypeClass() == Type::TypeClass::Auto &&
3429        ReturnType->isCanonicalUnqualified()) ||
3430       ReturnType->isSpecificBuiltinType(BuiltinType::Dependent))
3431     return invalidNRVO();
3432 
3433   if (!ReturnType->isDependentType()) {
3434     // - in a return statement in a function with ...
3435     // ... a class return type ...
3436     if (!ReturnType->isRecordType())
3437       return invalidNRVO();
3438 
3439     QualType VDType = Info.Candidate->getType();
3440     // ... the same cv-unqualified type as the function return type ...
3441     // When considering moving this expression out, allow dissimilar types.
3442     if (!VDType->isDependentType() &&
3443         !Context.hasSameUnqualifiedType(ReturnType, VDType))
3444       Info.S = NamedReturnInfo::MoveEligible;
3445   }
3446   return Info.isCopyElidable() ? Info.Candidate : nullptr;
3447 }
3448 
3449 /// Perform the initialization of a potentially-movable value, which
3450 /// is the result of return value.
3451 ///
3452 /// This routine implements C++20 [class.copy.elision]p3, which attempts to
3453 /// treat returned lvalues as rvalues in certain cases (to prefer move
3454 /// construction), then falls back to treating them as lvalues if that failed.
3455 ExprResult
3456 Sema::PerformMoveOrCopyInitialization(const InitializedEntity &Entity,
3457                                       const NamedReturnInfo &NRInfo,
3458                                       Expr *Value) {
3459   if (getLangOpts().CPlusPlus11 && !getLangOpts().CPlusPlus2b &&
3460       NRInfo.isMoveEligible()) {
3461     ImplicitCastExpr AsRvalue(ImplicitCastExpr::OnStack, Value->getType(),
3462                               CK_NoOp, Value, VK_XValue, FPOptionsOverride());
3463     Expr *InitExpr = &AsRvalue;
3464     auto Kind = InitializationKind::CreateCopy(Value->getBeginLoc(),
3465                                                Value->getBeginLoc());
3466     InitializationSequence Seq(*this, Entity, Kind, InitExpr);
3467     auto Res = Seq.getFailedOverloadResult();
3468     if (Res == OR_Success || Res == OR_Deleted) {
3469       // Promote "AsRvalue" to the heap, since we now need this
3470       // expression node to persist.
3471       Value =
3472           ImplicitCastExpr::Create(Context, Value->getType(), CK_NoOp, Value,
3473                                    nullptr, VK_XValue, FPOptionsOverride());
3474       // Complete type-checking the initialization of the return type
3475       // using the constructor we found.
3476       return Seq.Perform(*this, Entity, Kind, Value);
3477     }
3478   }
3479   // Either we didn't meet the criteria for treating an lvalue as an rvalue,
3480   // above, or overload resolution failed. Either way, we need to try
3481   // (again) now with the return value expression as written.
3482   return PerformCopyInitialization(Entity, SourceLocation(), Value);
3483 }
3484 
3485 /// Determine whether the declared return type of the specified function
3486 /// contains 'auto'.
3487 static bool hasDeducedReturnType(FunctionDecl *FD) {
3488   const FunctionProtoType *FPT =
3489       FD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>();
3490   return FPT->getReturnType()->isUndeducedType();
3491 }
3492 
3493 /// ActOnCapScopeReturnStmt - Utility routine to type-check return statements
3494 /// for capturing scopes.
3495 ///
3496 StmtResult Sema::ActOnCapScopeReturnStmt(SourceLocation ReturnLoc,
3497                                          Expr *RetValExp,
3498                                          NamedReturnInfo &NRInfo) {
3499   // If this is the first return we've seen, infer the return type.
3500   // [expr.prim.lambda]p4 in C++11; block literals follow the same rules.
3501   CapturingScopeInfo *CurCap = cast<CapturingScopeInfo>(getCurFunction());
3502   QualType FnRetType = CurCap->ReturnType;
3503   LambdaScopeInfo *CurLambda = dyn_cast<LambdaScopeInfo>(CurCap);
3504   bool HasDeducedReturnType =
3505       CurLambda && hasDeducedReturnType(CurLambda->CallOperator);
3506 
3507   if (ExprEvalContexts.back().Context ==
3508           ExpressionEvaluationContext::DiscardedStatement &&
3509       (HasDeducedReturnType || CurCap->HasImplicitReturnType)) {
3510     if (RetValExp) {
3511       ExprResult ER =
3512           ActOnFinishFullExpr(RetValExp, ReturnLoc, /*DiscardedValue*/ false);
3513       if (ER.isInvalid())
3514         return StmtError();
3515       RetValExp = ER.get();
3516     }
3517     return ReturnStmt::Create(Context, ReturnLoc, RetValExp,
3518                               /* NRVOCandidate=*/nullptr);
3519   }
3520 
3521   if (HasDeducedReturnType) {
3522     FunctionDecl *FD = CurLambda->CallOperator;
3523     // If we've already decided this lambda is invalid, e.g. because
3524     // we saw a `return` whose expression had an error, don't keep
3525     // trying to deduce its return type.
3526     if (FD->isInvalidDecl())
3527       return StmtError();
3528     // In C++1y, the return type may involve 'auto'.
3529     // FIXME: Blocks might have a return type of 'auto' explicitly specified.
3530     if (CurCap->ReturnType.isNull())
3531       CurCap->ReturnType = FD->getReturnType();
3532 
3533     AutoType *AT = CurCap->ReturnType->getContainedAutoType();
3534     assert(AT && "lost auto type from lambda return type");
3535     if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
3536       FD->setInvalidDecl();
3537       // FIXME: preserve the ill-formed return expression.
3538       return StmtError();
3539     }
3540     CurCap->ReturnType = FnRetType = FD->getReturnType();
3541   } else if (CurCap->HasImplicitReturnType) {
3542     // For blocks/lambdas with implicit return types, we check each return
3543     // statement individually, and deduce the common return type when the block
3544     // or lambda is completed.
3545     // FIXME: Fold this into the 'auto' codepath above.
3546     if (RetValExp && !isa<InitListExpr>(RetValExp)) {
3547       ExprResult Result = DefaultFunctionArrayLvalueConversion(RetValExp);
3548       if (Result.isInvalid())
3549         return StmtError();
3550       RetValExp = Result.get();
3551 
3552       // DR1048: even prior to C++14, we should use the 'auto' deduction rules
3553       // when deducing a return type for a lambda-expression (or by extension
3554       // for a block). These rules differ from the stated C++11 rules only in
3555       // that they remove top-level cv-qualifiers.
3556       if (!CurContext->isDependentContext())
3557         FnRetType = RetValExp->getType().getUnqualifiedType();
3558       else
3559         FnRetType = CurCap->ReturnType = Context.DependentTy;
3560     } else {
3561       if (RetValExp) {
3562         // C++11 [expr.lambda.prim]p4 bans inferring the result from an
3563         // initializer list, because it is not an expression (even
3564         // though we represent it as one). We still deduce 'void'.
3565         Diag(ReturnLoc, diag::err_lambda_return_init_list)
3566           << RetValExp->getSourceRange();
3567       }
3568 
3569       FnRetType = Context.VoidTy;
3570     }
3571 
3572     // Although we'll properly infer the type of the block once it's completed,
3573     // make sure we provide a return type now for better error recovery.
3574     if (CurCap->ReturnType.isNull())
3575       CurCap->ReturnType = FnRetType;
3576   }
3577   const VarDecl *NRVOCandidate = getCopyElisionCandidate(NRInfo, FnRetType);
3578 
3579   if (auto *CurBlock = dyn_cast<BlockScopeInfo>(CurCap)) {
3580     if (CurBlock->FunctionType->castAs<FunctionType>()->getNoReturnAttr()) {
3581       Diag(ReturnLoc, diag::err_noreturn_block_has_return_expr);
3582       return StmtError();
3583     }
3584   } else if (auto *CurRegion = dyn_cast<CapturedRegionScopeInfo>(CurCap)) {
3585     Diag(ReturnLoc, diag::err_return_in_captured_stmt) << CurRegion->getRegionName();
3586     return StmtError();
3587   } else {
3588     assert(CurLambda && "unknown kind of captured scope");
3589     if (CurLambda->CallOperator->getType()
3590             ->castAs<FunctionType>()
3591             ->getNoReturnAttr()) {
3592       Diag(ReturnLoc, diag::err_noreturn_lambda_has_return_expr);
3593       return StmtError();
3594     }
3595   }
3596 
3597   // Otherwise, verify that this result type matches the previous one.  We are
3598   // pickier with blocks than for normal functions because we don't have GCC
3599   // compatibility to worry about here.
3600   if (FnRetType->isDependentType()) {
3601     // Delay processing for now.  TODO: there are lots of dependent
3602     // types we can conclusively prove aren't void.
3603   } else if (FnRetType->isVoidType()) {
3604     if (RetValExp && !isa<InitListExpr>(RetValExp) &&
3605         !(getLangOpts().CPlusPlus &&
3606           (RetValExp->isTypeDependent() ||
3607            RetValExp->getType()->isVoidType()))) {
3608       if (!getLangOpts().CPlusPlus &&
3609           RetValExp->getType()->isVoidType())
3610         Diag(ReturnLoc, diag::ext_return_has_void_expr) << "literal" << 2;
3611       else {
3612         Diag(ReturnLoc, diag::err_return_block_has_expr);
3613         RetValExp = nullptr;
3614       }
3615     }
3616   } else if (!RetValExp) {
3617     return StmtError(Diag(ReturnLoc, diag::err_block_return_missing_expr));
3618   } else if (!RetValExp->isTypeDependent()) {
3619     // we have a non-void block with an expression, continue checking
3620 
3621     // C99 6.8.6.4p3(136): The return statement is not an assignment. The
3622     // overlap restriction of subclause 6.5.16.1 does not apply to the case of
3623     // function return.
3624 
3625     // In C++ the return statement is handled via a copy initialization.
3626     // the C version of which boils down to CheckSingleAssignmentConstraints.
3627     InitializedEntity Entity = InitializedEntity::InitializeResult(
3628         ReturnLoc, FnRetType, NRVOCandidate != nullptr);
3629     ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRInfo, RetValExp);
3630     if (Res.isInvalid()) {
3631       // FIXME: Cleanup temporaries here, anyway?
3632       return StmtError();
3633     }
3634     RetValExp = Res.get();
3635     CheckReturnValExpr(RetValExp, FnRetType, ReturnLoc);
3636   }
3637 
3638   if (RetValExp) {
3639     ExprResult ER =
3640         ActOnFinishFullExpr(RetValExp, ReturnLoc, /*DiscardedValue*/ false);
3641     if (ER.isInvalid())
3642       return StmtError();
3643     RetValExp = ER.get();
3644   }
3645   auto *Result =
3646       ReturnStmt::Create(Context, ReturnLoc, RetValExp, NRVOCandidate);
3647 
3648   // If we need to check for the named return value optimization,
3649   // or if we need to infer the return type,
3650   // save the return statement in our scope for later processing.
3651   if (CurCap->HasImplicitReturnType || NRVOCandidate)
3652     FunctionScopes.back()->Returns.push_back(Result);
3653 
3654   if (FunctionScopes.back()->FirstReturnLoc.isInvalid())
3655     FunctionScopes.back()->FirstReturnLoc = ReturnLoc;
3656 
3657   return Result;
3658 }
3659 
3660 namespace {
3661 /// Marks all typedefs in all local classes in a type referenced.
3662 ///
3663 /// In a function like
3664 /// auto f() {
3665 ///   struct S { typedef int a; };
3666 ///   return S();
3667 /// }
3668 ///
3669 /// the local type escapes and could be referenced in some TUs but not in
3670 /// others. Pretend that all local typedefs are always referenced, to not warn
3671 /// on this. This isn't necessary if f has internal linkage, or the typedef
3672 /// is private.
3673 class LocalTypedefNameReferencer
3674     : public RecursiveASTVisitor<LocalTypedefNameReferencer> {
3675 public:
3676   LocalTypedefNameReferencer(Sema &S) : S(S) {}
3677   bool VisitRecordType(const RecordType *RT);
3678 private:
3679   Sema &S;
3680 };
3681 bool LocalTypedefNameReferencer::VisitRecordType(const RecordType *RT) {
3682   auto *R = dyn_cast<CXXRecordDecl>(RT->getDecl());
3683   if (!R || !R->isLocalClass() || !R->isLocalClass()->isExternallyVisible() ||
3684       R->isDependentType())
3685     return true;
3686   for (auto *TmpD : R->decls())
3687     if (auto *T = dyn_cast<TypedefNameDecl>(TmpD))
3688       if (T->getAccess() != AS_private || R->hasFriends())
3689         S.MarkAnyDeclReferenced(T->getLocation(), T, /*OdrUse=*/false);
3690   return true;
3691 }
3692 }
3693 
3694 TypeLoc Sema::getReturnTypeLoc(FunctionDecl *FD) const {
3695   return FD->getTypeSourceInfo()
3696       ->getTypeLoc()
3697       .getAsAdjusted<FunctionProtoTypeLoc>()
3698       .getReturnLoc();
3699 }
3700 
3701 /// Deduce the return type for a function from a returned expression, per
3702 /// C++1y [dcl.spec.auto]p6.
3703 bool Sema::DeduceFunctionTypeFromReturnExpr(FunctionDecl *FD,
3704                                             SourceLocation ReturnLoc,
3705                                             Expr *&RetExpr,
3706                                             AutoType *AT) {
3707   // If this is the conversion function for a lambda, we choose to deduce it
3708   // type from the corresponding call operator, not from the synthesized return
3709   // statement within it. See Sema::DeduceReturnType.
3710   if (isLambdaConversionOperator(FD))
3711     return false;
3712 
3713   TypeLoc OrigResultType = getReturnTypeLoc(FD);
3714   QualType Deduced;
3715 
3716   if (RetExpr && isa<InitListExpr>(RetExpr)) {
3717     //  If the deduction is for a return statement and the initializer is
3718     //  a braced-init-list, the program is ill-formed.
3719     Diag(RetExpr->getExprLoc(),
3720          getCurLambda() ? diag::err_lambda_return_init_list
3721                         : diag::err_auto_fn_return_init_list)
3722         << RetExpr->getSourceRange();
3723     return true;
3724   }
3725 
3726   if (FD->isDependentContext()) {
3727     // C++1y [dcl.spec.auto]p12:
3728     //   Return type deduction [...] occurs when the definition is
3729     //   instantiated even if the function body contains a return
3730     //   statement with a non-type-dependent operand.
3731     assert(AT->isDeduced() && "should have deduced to dependent type");
3732     return false;
3733   }
3734 
3735   if (RetExpr) {
3736     //  Otherwise, [...] deduce a value for U using the rules of template
3737     //  argument deduction.
3738     DeduceAutoResult DAR = DeduceAutoType(OrigResultType, RetExpr, Deduced);
3739 
3740     if (DAR == DAR_Failed && !FD->isInvalidDecl())
3741       Diag(RetExpr->getExprLoc(), diag::err_auto_fn_deduction_failure)
3742         << OrigResultType.getType() << RetExpr->getType();
3743 
3744     if (DAR != DAR_Succeeded)
3745       return true;
3746 
3747     // If a local type is part of the returned type, mark its fields as
3748     // referenced.
3749     LocalTypedefNameReferencer Referencer(*this);
3750     Referencer.TraverseType(RetExpr->getType());
3751   } else {
3752     //  In the case of a return with no operand, the initializer is considered
3753     //  to be void().
3754     //
3755     // Deduction here can only succeed if the return type is exactly 'cv auto'
3756     // or 'decltype(auto)', so just check for that case directly.
3757     if (!OrigResultType.getType()->getAs<AutoType>()) {
3758       Diag(ReturnLoc, diag::err_auto_fn_return_void_but_not_auto)
3759         << OrigResultType.getType();
3760       return true;
3761     }
3762     // We always deduce U = void in this case.
3763     Deduced = SubstAutoType(OrigResultType.getType(), Context.VoidTy);
3764     if (Deduced.isNull())
3765       return true;
3766   }
3767 
3768   // CUDA: Kernel function must have 'void' return type.
3769   if (getLangOpts().CUDA)
3770     if (FD->hasAttr<CUDAGlobalAttr>() && !Deduced->isVoidType()) {
3771       Diag(FD->getLocation(), diag::err_kern_type_not_void_return)
3772           << FD->getType() << FD->getSourceRange();
3773       return true;
3774     }
3775 
3776   //  If a function with a declared return type that contains a placeholder type
3777   //  has multiple return statements, the return type is deduced for each return
3778   //  statement. [...] if the type deduced is not the same in each deduction,
3779   //  the program is ill-formed.
3780   QualType DeducedT = AT->getDeducedType();
3781   if (!DeducedT.isNull() && !FD->isInvalidDecl()) {
3782     AutoType *NewAT = Deduced->getContainedAutoType();
3783     // It is possible that NewAT->getDeducedType() is null. When that happens,
3784     // we should not crash, instead we ignore this deduction.
3785     if (NewAT->getDeducedType().isNull())
3786       return false;
3787 
3788     CanQualType OldDeducedType = Context.getCanonicalFunctionResultType(
3789                                    DeducedT);
3790     CanQualType NewDeducedType = Context.getCanonicalFunctionResultType(
3791                                    NewAT->getDeducedType());
3792     if (!FD->isDependentContext() && OldDeducedType != NewDeducedType) {
3793       const LambdaScopeInfo *LambdaSI = getCurLambda();
3794       if (LambdaSI && LambdaSI->HasImplicitReturnType) {
3795         Diag(ReturnLoc, diag::err_typecheck_missing_return_type_incompatible)
3796           << NewAT->getDeducedType() << DeducedT
3797           << true /*IsLambda*/;
3798       } else {
3799         Diag(ReturnLoc, diag::err_auto_fn_different_deductions)
3800           << (AT->isDecltypeAuto() ? 1 : 0)
3801           << NewAT->getDeducedType() << DeducedT;
3802       }
3803       return true;
3804     }
3805   } else if (!FD->isInvalidDecl()) {
3806     // Update all declarations of the function to have the deduced return type.
3807     Context.adjustDeducedFunctionResultType(FD, Deduced);
3808   }
3809 
3810   return false;
3811 }
3812 
3813 StmtResult
3814 Sema::ActOnReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp,
3815                       Scope *CurScope) {
3816   // Correct typos, in case the containing function returns 'auto' and
3817   // RetValExp should determine the deduced type.
3818   ExprResult RetVal = CorrectDelayedTyposInExpr(
3819       RetValExp, nullptr, /*RecoverUncorrectedTypos=*/true);
3820   if (RetVal.isInvalid())
3821     return StmtError();
3822   StmtResult R = BuildReturnStmt(ReturnLoc, RetVal.get());
3823   if (R.isInvalid() || ExprEvalContexts.back().Context ==
3824                            ExpressionEvaluationContext::DiscardedStatement)
3825     return R;
3826 
3827   if (VarDecl *VD =
3828       const_cast<VarDecl*>(cast<ReturnStmt>(R.get())->getNRVOCandidate())) {
3829     CurScope->addNRVOCandidate(VD);
3830   } else {
3831     CurScope->setNoNRVO();
3832   }
3833 
3834   CheckJumpOutOfSEHFinally(*this, ReturnLoc, *CurScope->getFnParent());
3835 
3836   return R;
3837 }
3838 
3839 StmtResult Sema::BuildReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp) {
3840   // Check for unexpanded parameter packs.
3841   if (RetValExp && DiagnoseUnexpandedParameterPack(RetValExp))
3842     return StmtError();
3843 
3844   NamedReturnInfo NRInfo = getNamedReturnInfo(RetValExp);
3845 
3846   if (isa<CapturingScopeInfo>(getCurFunction()))
3847     return ActOnCapScopeReturnStmt(ReturnLoc, RetValExp, NRInfo);
3848 
3849   QualType FnRetType;
3850   QualType RelatedRetType;
3851   const AttrVec *Attrs = nullptr;
3852   bool isObjCMethod = false;
3853 
3854   if (const FunctionDecl *FD = getCurFunctionDecl()) {
3855     FnRetType = FD->getReturnType();
3856     if (FD->hasAttrs())
3857       Attrs = &FD->getAttrs();
3858     if (FD->isNoReturn())
3859       Diag(ReturnLoc, diag::warn_noreturn_function_has_return_expr) << FD;
3860     if (FD->isMain() && RetValExp)
3861       if (isa<CXXBoolLiteralExpr>(RetValExp))
3862         Diag(ReturnLoc, diag::warn_main_returns_bool_literal)
3863             << RetValExp->getSourceRange();
3864     if (FD->hasAttr<CmseNSEntryAttr>() && RetValExp) {
3865       if (const auto *RT = dyn_cast<RecordType>(FnRetType.getCanonicalType())) {
3866         if (RT->getDecl()->isOrContainsUnion())
3867           Diag(RetValExp->getBeginLoc(), diag::warn_cmse_nonsecure_union) << 1;
3868       }
3869     }
3870   } else if (ObjCMethodDecl *MD = getCurMethodDecl()) {
3871     FnRetType = MD->getReturnType();
3872     isObjCMethod = true;
3873     if (MD->hasAttrs())
3874       Attrs = &MD->getAttrs();
3875     if (MD->hasRelatedResultType() && MD->getClassInterface()) {
3876       // In the implementation of a method with a related return type, the
3877       // type used to type-check the validity of return statements within the
3878       // method body is a pointer to the type of the class being implemented.
3879       RelatedRetType = Context.getObjCInterfaceType(MD->getClassInterface());
3880       RelatedRetType = Context.getObjCObjectPointerType(RelatedRetType);
3881     }
3882   } else // If we don't have a function/method context, bail.
3883     return StmtError();
3884 
3885   // C++1z: discarded return statements are not considered when deducing a
3886   // return type.
3887   if (ExprEvalContexts.back().Context ==
3888           ExpressionEvaluationContext::DiscardedStatement &&
3889       FnRetType->getContainedAutoType()) {
3890     if (RetValExp) {
3891       ExprResult ER =
3892           ActOnFinishFullExpr(RetValExp, ReturnLoc, /*DiscardedValue*/ false);
3893       if (ER.isInvalid())
3894         return StmtError();
3895       RetValExp = ER.get();
3896     }
3897     return ReturnStmt::Create(Context, ReturnLoc, RetValExp,
3898                               /* NRVOCandidate=*/nullptr);
3899   }
3900 
3901   // FIXME: Add a flag to the ScopeInfo to indicate whether we're performing
3902   // deduction.
3903   if (getLangOpts().CPlusPlus14) {
3904     if (AutoType *AT = FnRetType->getContainedAutoType()) {
3905       FunctionDecl *FD = cast<FunctionDecl>(CurContext);
3906       // If we've already decided this function is invalid, e.g. because
3907       // we saw a `return` whose expression had an error, don't keep
3908       // trying to deduce its return type.
3909       if (FD->isInvalidDecl())
3910         return StmtError();
3911       if (DeduceFunctionTypeFromReturnExpr(FD, ReturnLoc, RetValExp, AT)) {
3912         FD->setInvalidDecl();
3913         return StmtError();
3914       } else {
3915         FnRetType = FD->getReturnType();
3916       }
3917     }
3918   }
3919   const VarDecl *NRVOCandidate = getCopyElisionCandidate(NRInfo, FnRetType);
3920 
3921   bool HasDependentReturnType = FnRetType->isDependentType();
3922 
3923   ReturnStmt *Result = nullptr;
3924   if (FnRetType->isVoidType()) {
3925     if (RetValExp) {
3926       if (isa<InitListExpr>(RetValExp)) {
3927         // We simply never allow init lists as the return value of void
3928         // functions. This is compatible because this was never allowed before,
3929         // so there's no legacy code to deal with.
3930         NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3931         int FunctionKind = 0;
3932         if (isa<ObjCMethodDecl>(CurDecl))
3933           FunctionKind = 1;
3934         else if (isa<CXXConstructorDecl>(CurDecl))
3935           FunctionKind = 2;
3936         else if (isa<CXXDestructorDecl>(CurDecl))
3937           FunctionKind = 3;
3938 
3939         Diag(ReturnLoc, diag::err_return_init_list)
3940             << CurDecl << FunctionKind << RetValExp->getSourceRange();
3941 
3942         // Drop the expression.
3943         RetValExp = nullptr;
3944       } else if (!RetValExp->isTypeDependent()) {
3945         // C99 6.8.6.4p1 (ext_ since GCC warns)
3946         unsigned D = diag::ext_return_has_expr;
3947         if (RetValExp->getType()->isVoidType()) {
3948           NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3949           if (isa<CXXConstructorDecl>(CurDecl) ||
3950               isa<CXXDestructorDecl>(CurDecl))
3951             D = diag::err_ctor_dtor_returns_void;
3952           else
3953             D = diag::ext_return_has_void_expr;
3954         }
3955         else {
3956           ExprResult Result = RetValExp;
3957           Result = IgnoredValueConversions(Result.get());
3958           if (Result.isInvalid())
3959             return StmtError();
3960           RetValExp = Result.get();
3961           RetValExp = ImpCastExprToType(RetValExp,
3962                                         Context.VoidTy, CK_ToVoid).get();
3963         }
3964         // return of void in constructor/destructor is illegal in C++.
3965         if (D == diag::err_ctor_dtor_returns_void) {
3966           NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3967           Diag(ReturnLoc, D) << CurDecl << isa<CXXDestructorDecl>(CurDecl)
3968                              << RetValExp->getSourceRange();
3969         }
3970         // return (some void expression); is legal in C++.
3971         else if (D != diag::ext_return_has_void_expr ||
3972                  !getLangOpts().CPlusPlus) {
3973           NamedDecl *CurDecl = getCurFunctionOrMethodDecl();
3974 
3975           int FunctionKind = 0;
3976           if (isa<ObjCMethodDecl>(CurDecl))
3977             FunctionKind = 1;
3978           else if (isa<CXXConstructorDecl>(CurDecl))
3979             FunctionKind = 2;
3980           else if (isa<CXXDestructorDecl>(CurDecl))
3981             FunctionKind = 3;
3982 
3983           Diag(ReturnLoc, D)
3984               << CurDecl << FunctionKind << RetValExp->getSourceRange();
3985         }
3986       }
3987 
3988       if (RetValExp) {
3989         ExprResult ER =
3990             ActOnFinishFullExpr(RetValExp, ReturnLoc, /*DiscardedValue*/ false);
3991         if (ER.isInvalid())
3992           return StmtError();
3993         RetValExp = ER.get();
3994       }
3995     }
3996 
3997     Result = ReturnStmt::Create(Context, ReturnLoc, RetValExp,
3998                                 /* NRVOCandidate=*/nullptr);
3999   } else if (!RetValExp && !HasDependentReturnType) {
4000     FunctionDecl *FD = getCurFunctionDecl();
4001 
4002     if (getLangOpts().CPlusPlus11 && FD && FD->isConstexpr()) {
4003       // C++11 [stmt.return]p2
4004       Diag(ReturnLoc, diag::err_constexpr_return_missing_expr)
4005           << FD << FD->isConsteval();
4006       FD->setInvalidDecl();
4007     } else {
4008       // C99 6.8.6.4p1 (ext_ since GCC warns)
4009       // C90 6.6.6.4p4
4010       unsigned DiagID = getLangOpts().C99 ? diag::ext_return_missing_expr
4011                                           : diag::warn_return_missing_expr;
4012       // Note that at this point one of getCurFunctionDecl() or
4013       // getCurMethodDecl() must be non-null (see above).
4014       assert((getCurFunctionDecl() || getCurMethodDecl()) &&
4015              "Not in a FunctionDecl or ObjCMethodDecl?");
4016       bool IsMethod = FD == nullptr;
4017       const NamedDecl *ND =
4018           IsMethod ? cast<NamedDecl>(getCurMethodDecl()) : cast<NamedDecl>(FD);
4019       Diag(ReturnLoc, DiagID) << ND << IsMethod;
4020     }
4021 
4022     Result = ReturnStmt::Create(Context, ReturnLoc, /* RetExpr=*/nullptr,
4023                                 /* NRVOCandidate=*/nullptr);
4024   } else {
4025     assert(RetValExp || HasDependentReturnType);
4026     QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType;
4027 
4028     // C99 6.8.6.4p3(136): The return statement is not an assignment. The
4029     // overlap restriction of subclause 6.5.16.1 does not apply to the case of
4030     // function return.
4031 
4032     // In C++ the return statement is handled via a copy initialization,
4033     // the C version of which boils down to CheckSingleAssignmentConstraints.
4034     if (!HasDependentReturnType && !RetValExp->isTypeDependent()) {
4035       // we have a non-void function with an expression, continue checking
4036       InitializedEntity Entity = InitializedEntity::InitializeResult(
4037           ReturnLoc, RetType, NRVOCandidate != nullptr);
4038       ExprResult Res =
4039           PerformMoveOrCopyInitialization(Entity, NRInfo, RetValExp);
4040       if (Res.isInvalid()) {
4041         // FIXME: Clean up temporaries here anyway?
4042         return StmtError();
4043       }
4044       RetValExp = Res.getAs<Expr>();
4045 
4046       // If we have a related result type, we need to implicitly
4047       // convert back to the formal result type.  We can't pretend to
4048       // initialize the result again --- we might end double-retaining
4049       // --- so instead we initialize a notional temporary.
4050       if (!RelatedRetType.isNull()) {
4051         Entity = InitializedEntity::InitializeRelatedResult(getCurMethodDecl(),
4052                                                             FnRetType);
4053         Res = PerformCopyInitialization(Entity, ReturnLoc, RetValExp);
4054         if (Res.isInvalid()) {
4055           // FIXME: Clean up temporaries here anyway?
4056           return StmtError();
4057         }
4058         RetValExp = Res.getAs<Expr>();
4059       }
4060 
4061       CheckReturnValExpr(RetValExp, FnRetType, ReturnLoc, isObjCMethod, Attrs,
4062                          getCurFunctionDecl());
4063     }
4064 
4065     if (RetValExp) {
4066       ExprResult ER =
4067           ActOnFinishFullExpr(RetValExp, ReturnLoc, /*DiscardedValue*/ false);
4068       if (ER.isInvalid())
4069         return StmtError();
4070       RetValExp = ER.get();
4071     }
4072     Result = ReturnStmt::Create(Context, ReturnLoc, RetValExp, NRVOCandidate);
4073   }
4074 
4075   // If we need to check for the named return value optimization, save the
4076   // return statement in our scope for later processing.
4077   if (Result->getNRVOCandidate())
4078     FunctionScopes.back()->Returns.push_back(Result);
4079 
4080   if (FunctionScopes.back()->FirstReturnLoc.isInvalid())
4081     FunctionScopes.back()->FirstReturnLoc = ReturnLoc;
4082 
4083   return Result;
4084 }
4085 
4086 StmtResult
4087 Sema::ActOnObjCAtCatchStmt(SourceLocation AtLoc,
4088                            SourceLocation RParen, Decl *Parm,
4089                            Stmt *Body) {
4090   VarDecl *Var = cast_or_null<VarDecl>(Parm);
4091   if (Var && Var->isInvalidDecl())
4092     return StmtError();
4093 
4094   return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body);
4095 }
4096 
4097 StmtResult
4098 Sema::ActOnObjCAtFinallyStmt(SourceLocation AtLoc, Stmt *Body) {
4099   return new (Context) ObjCAtFinallyStmt(AtLoc, Body);
4100 }
4101 
4102 StmtResult
4103 Sema::ActOnObjCAtTryStmt(SourceLocation AtLoc, Stmt *Try,
4104                          MultiStmtArg CatchStmts, Stmt *Finally) {
4105   if (!getLangOpts().ObjCExceptions)
4106     Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@try";
4107 
4108   setFunctionHasBranchProtectedScope();
4109   unsigned NumCatchStmts = CatchStmts.size();
4110   return ObjCAtTryStmt::Create(Context, AtLoc, Try, CatchStmts.data(),
4111                                NumCatchStmts, Finally);
4112 }
4113 
4114 StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) {
4115   if (Throw) {
4116     ExprResult Result = DefaultLvalueConversion(Throw);
4117     if (Result.isInvalid())
4118       return StmtError();
4119 
4120     Result = ActOnFinishFullExpr(Result.get(), /*DiscardedValue*/ false);
4121     if (Result.isInvalid())
4122       return StmtError();
4123     Throw = Result.get();
4124 
4125     QualType ThrowType = Throw->getType();
4126     // Make sure the expression type is an ObjC pointer or "void *".
4127     if (!ThrowType->isDependentType() &&
4128         !ThrowType->isObjCObjectPointerType()) {
4129       const PointerType *PT = ThrowType->getAs<PointerType>();
4130       if (!PT || !PT->getPointeeType()->isVoidType())
4131         return StmtError(Diag(AtLoc, diag::err_objc_throw_expects_object)
4132                          << Throw->getType() << Throw->getSourceRange());
4133     }
4134   }
4135 
4136   return new (Context) ObjCAtThrowStmt(AtLoc, Throw);
4137 }
4138 
4139 StmtResult
4140 Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
4141                            Scope *CurScope) {
4142   if (!getLangOpts().ObjCExceptions)
4143     Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@throw";
4144 
4145   if (!Throw) {
4146     // @throw without an expression designates a rethrow (which must occur
4147     // in the context of an @catch clause).
4148     Scope *AtCatchParent = CurScope;
4149     while (AtCatchParent && !AtCatchParent->isAtCatchScope())
4150       AtCatchParent = AtCatchParent->getParent();
4151     if (!AtCatchParent)
4152       return StmtError(Diag(AtLoc, diag::err_rethrow_used_outside_catch));
4153   }
4154   return BuildObjCAtThrowStmt(AtLoc, Throw);
4155 }
4156 
4157 ExprResult
4158 Sema::ActOnObjCAtSynchronizedOperand(SourceLocation atLoc, Expr *operand) {
4159   ExprResult result = DefaultLvalueConversion(operand);
4160   if (result.isInvalid())
4161     return ExprError();
4162   operand = result.get();
4163 
4164   // Make sure the expression type is an ObjC pointer or "void *".
4165   QualType type = operand->getType();
4166   if (!type->isDependentType() &&
4167       !type->isObjCObjectPointerType()) {
4168     const PointerType *pointerType = type->getAs<PointerType>();
4169     if (!pointerType || !pointerType->getPointeeType()->isVoidType()) {
4170       if (getLangOpts().CPlusPlus) {
4171         if (RequireCompleteType(atLoc, type,
4172                                 diag::err_incomplete_receiver_type))
4173           return Diag(atLoc, diag::err_objc_synchronized_expects_object)
4174                    << type << operand->getSourceRange();
4175 
4176         ExprResult result = PerformContextuallyConvertToObjCPointer(operand);
4177         if (result.isInvalid())
4178           return ExprError();
4179         if (!result.isUsable())
4180           return Diag(atLoc, diag::err_objc_synchronized_expects_object)
4181                    << type << operand->getSourceRange();
4182 
4183         operand = result.get();
4184       } else {
4185           return Diag(atLoc, diag::err_objc_synchronized_expects_object)
4186                    << type << operand->getSourceRange();
4187       }
4188     }
4189   }
4190 
4191   // The operand to @synchronized is a full-expression.
4192   return ActOnFinishFullExpr(operand, /*DiscardedValue*/ false);
4193 }
4194 
4195 StmtResult
4196 Sema::ActOnObjCAtSynchronizedStmt(SourceLocation AtLoc, Expr *SyncExpr,
4197                                   Stmt *SyncBody) {
4198   // We can't jump into or indirect-jump out of a @synchronized block.
4199   setFunctionHasBranchProtectedScope();
4200   return new (Context) ObjCAtSynchronizedStmt(AtLoc, SyncExpr, SyncBody);
4201 }
4202 
4203 /// ActOnCXXCatchBlock - Takes an exception declaration and a handler block
4204 /// and creates a proper catch handler from them.
4205 StmtResult
4206 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,
4207                          Stmt *HandlerBlock) {
4208   // There's nothing to test that ActOnExceptionDecl didn't already test.
4209   return new (Context)
4210       CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
4211 }
4212 
4213 StmtResult
4214 Sema::ActOnObjCAutoreleasePoolStmt(SourceLocation AtLoc, Stmt *Body) {
4215   setFunctionHasBranchProtectedScope();
4216   return new (Context) ObjCAutoreleasePoolStmt(AtLoc, Body);
4217 }
4218 
4219 namespace {
4220 class CatchHandlerType {
4221   QualType QT;
4222   unsigned IsPointer : 1;
4223 
4224   // This is a special constructor to be used only with DenseMapInfo's
4225   // getEmptyKey() and getTombstoneKey() functions.
4226   friend struct llvm::DenseMapInfo<CatchHandlerType>;
4227   enum Unique { ForDenseMap };
4228   CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {}
4229 
4230 public:
4231   /// Used when creating a CatchHandlerType from a handler type; will determine
4232   /// whether the type is a pointer or reference and will strip off the top
4233   /// level pointer and cv-qualifiers.
4234   CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) {
4235     if (QT->isPointerType())
4236       IsPointer = true;
4237 
4238     if (IsPointer || QT->isReferenceType())
4239       QT = QT->getPointeeType();
4240     QT = QT.getUnqualifiedType();
4241   }
4242 
4243   /// Used when creating a CatchHandlerType from a base class type; pretends the
4244   /// type passed in had the pointer qualifier, does not need to get an
4245   /// unqualified type.
4246   CatchHandlerType(QualType QT, bool IsPointer)
4247       : QT(QT), IsPointer(IsPointer) {}
4248 
4249   QualType underlying() const { return QT; }
4250   bool isPointer() const { return IsPointer; }
4251 
4252   friend bool operator==(const CatchHandlerType &LHS,
4253                          const CatchHandlerType &RHS) {
4254     // If the pointer qualification does not match, we can return early.
4255     if (LHS.IsPointer != RHS.IsPointer)
4256       return false;
4257     // Otherwise, check the underlying type without cv-qualifiers.
4258     return LHS.QT == RHS.QT;
4259   }
4260 };
4261 } // namespace
4262 
4263 namespace llvm {
4264 template <> struct DenseMapInfo<CatchHandlerType> {
4265   static CatchHandlerType getEmptyKey() {
4266     return CatchHandlerType(DenseMapInfo<QualType>::getEmptyKey(),
4267                        CatchHandlerType::ForDenseMap);
4268   }
4269 
4270   static CatchHandlerType getTombstoneKey() {
4271     return CatchHandlerType(DenseMapInfo<QualType>::getTombstoneKey(),
4272                        CatchHandlerType::ForDenseMap);
4273   }
4274 
4275   static unsigned getHashValue(const CatchHandlerType &Base) {
4276     return DenseMapInfo<QualType>::getHashValue(Base.underlying());
4277   }
4278 
4279   static bool isEqual(const CatchHandlerType &LHS,
4280                       const CatchHandlerType &RHS) {
4281     return LHS == RHS;
4282   }
4283 };
4284 }
4285 
4286 namespace {
4287 class CatchTypePublicBases {
4288   ASTContext &Ctx;
4289   const llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> &TypesToCheck;
4290   const bool CheckAgainstPointer;
4291 
4292   CXXCatchStmt *FoundHandler;
4293   CanQualType FoundHandlerType;
4294 
4295 public:
4296   CatchTypePublicBases(
4297       ASTContext &Ctx,
4298       const llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> &T, bool C)
4299       : Ctx(Ctx), TypesToCheck(T), CheckAgainstPointer(C),
4300         FoundHandler(nullptr) {}
4301 
4302   CXXCatchStmt *getFoundHandler() const { return FoundHandler; }
4303   CanQualType getFoundHandlerType() const { return FoundHandlerType; }
4304 
4305   bool operator()(const CXXBaseSpecifier *S, CXXBasePath &) {
4306     if (S->getAccessSpecifier() == AccessSpecifier::AS_public) {
4307       CatchHandlerType Check(S->getType(), CheckAgainstPointer);
4308       const auto &M = TypesToCheck;
4309       auto I = M.find(Check);
4310       if (I != M.end()) {
4311         FoundHandler = I->second;
4312         FoundHandlerType = Ctx.getCanonicalType(S->getType());
4313         return true;
4314       }
4315     }
4316     return false;
4317   }
4318 };
4319 }
4320 
4321 /// ActOnCXXTryBlock - Takes a try compound-statement and a number of
4322 /// handlers and creates a try statement from them.
4323 StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
4324                                   ArrayRef<Stmt *> Handlers) {
4325   // Don't report an error if 'try' is used in system headers.
4326   if (!getLangOpts().CXXExceptions &&
4327       !getSourceManager().isInSystemHeader(TryLoc) && !getLangOpts().CUDA) {
4328     // Delay error emission for the OpenMP device code.
4329     targetDiag(TryLoc, diag::err_exceptions_disabled) << "try";
4330   }
4331 
4332   // Exceptions aren't allowed in CUDA device code.
4333   if (getLangOpts().CUDA)
4334     CUDADiagIfDeviceCode(TryLoc, diag::err_cuda_device_exceptions)
4335         << "try" << CurrentCUDATarget();
4336 
4337   if (getCurScope() && getCurScope()->isOpenMPSimdDirectiveScope())
4338     Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try";
4339 
4340   sema::FunctionScopeInfo *FSI = getCurFunction();
4341 
4342   // C++ try is incompatible with SEH __try.
4343   if (!getLangOpts().Borland && FSI->FirstSEHTryLoc.isValid()) {
4344     Diag(TryLoc, diag::err_mixing_cxx_try_seh_try);
4345     Diag(FSI->FirstSEHTryLoc, diag::note_conflicting_try_here) << "'__try'";
4346   }
4347 
4348   const unsigned NumHandlers = Handlers.size();
4349   assert(!Handlers.empty() &&
4350          "The parser shouldn't call this if there are no handlers.");
4351 
4352   llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> HandledTypes;
4353   for (unsigned i = 0; i < NumHandlers; ++i) {
4354     CXXCatchStmt *H = cast<CXXCatchStmt>(Handlers[i]);
4355 
4356     // Diagnose when the handler is a catch-all handler, but it isn't the last
4357     // handler for the try block. [except.handle]p5. Also, skip exception
4358     // declarations that are invalid, since we can't usefully report on them.
4359     if (!H->getExceptionDecl()) {
4360       if (i < NumHandlers - 1)
4361         return StmtError(Diag(H->getBeginLoc(), diag::err_early_catch_all));
4362       continue;
4363     } else if (H->getExceptionDecl()->isInvalidDecl())
4364       continue;
4365 
4366     // Walk the type hierarchy to diagnose when this type has already been
4367     // handled (duplication), or cannot be handled (derivation inversion). We
4368     // ignore top-level cv-qualifiers, per [except.handle]p3
4369     CatchHandlerType HandlerCHT =
4370         (QualType)Context.getCanonicalType(H->getCaughtType());
4371 
4372     // We can ignore whether the type is a reference or a pointer; we need the
4373     // underlying declaration type in order to get at the underlying record
4374     // decl, if there is one.
4375     QualType Underlying = HandlerCHT.underlying();
4376     if (auto *RD = Underlying->getAsCXXRecordDecl()) {
4377       if (!RD->hasDefinition())
4378         continue;
4379       // Check that none of the public, unambiguous base classes are in the
4380       // map ([except.handle]p1). Give the base classes the same pointer
4381       // qualification as the original type we are basing off of. This allows
4382       // comparison against the handler type using the same top-level pointer
4383       // as the original type.
4384       CXXBasePaths Paths;
4385       Paths.setOrigin(RD);
4386       CatchTypePublicBases CTPB(Context, HandledTypes, HandlerCHT.isPointer());
4387       if (RD->lookupInBases(CTPB, Paths)) {
4388         const CXXCatchStmt *Problem = CTPB.getFoundHandler();
4389         if (!Paths.isAmbiguous(CTPB.getFoundHandlerType())) {
4390           Diag(H->getExceptionDecl()->getTypeSpecStartLoc(),
4391                diag::warn_exception_caught_by_earlier_handler)
4392               << H->getCaughtType();
4393           Diag(Problem->getExceptionDecl()->getTypeSpecStartLoc(),
4394                 diag::note_previous_exception_handler)
4395               << Problem->getCaughtType();
4396         }
4397       }
4398     }
4399 
4400     // Add the type the list of ones we have handled; diagnose if we've already
4401     // handled it.
4402     auto R = HandledTypes.insert(std::make_pair(H->getCaughtType(), H));
4403     if (!R.second) {
4404       const CXXCatchStmt *Problem = R.first->second;
4405       Diag(H->getExceptionDecl()->getTypeSpecStartLoc(),
4406            diag::warn_exception_caught_by_earlier_handler)
4407           << H->getCaughtType();
4408       Diag(Problem->getExceptionDecl()->getTypeSpecStartLoc(),
4409            diag::note_previous_exception_handler)
4410           << Problem->getCaughtType();
4411     }
4412   }
4413 
4414   FSI->setHasCXXTry(TryLoc);
4415 
4416   return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers);
4417 }
4418 
4419 StmtResult Sema::ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc,
4420                                   Stmt *TryBlock, Stmt *Handler) {
4421   assert(TryBlock && Handler);
4422 
4423   sema::FunctionScopeInfo *FSI = getCurFunction();
4424 
4425   // SEH __try is incompatible with C++ try. Borland appears to support this,
4426   // however.
4427   if (!getLangOpts().Borland) {
4428     if (FSI->FirstCXXTryLoc.isValid()) {
4429       Diag(TryLoc, diag::err_mixing_cxx_try_seh_try);
4430       Diag(FSI->FirstCXXTryLoc, diag::note_conflicting_try_here) << "'try'";
4431     }
4432   }
4433 
4434   FSI->setHasSEHTry(TryLoc);
4435 
4436   // Reject __try in Obj-C methods, blocks, and captured decls, since we don't
4437   // track if they use SEH.
4438   DeclContext *DC = CurContext;
4439   while (DC && !DC->isFunctionOrMethod())
4440     DC = DC->getParent();
4441   FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(DC);
4442   if (FD)
4443     FD->setUsesSEHTry(true);
4444   else
4445     Diag(TryLoc, diag::err_seh_try_outside_functions);
4446 
4447   // Reject __try on unsupported targets.
4448   if (!Context.getTargetInfo().isSEHTrySupported())
4449     Diag(TryLoc, diag::err_seh_try_unsupported);
4450 
4451   return SEHTryStmt::Create(Context, IsCXXTry, TryLoc, TryBlock, Handler);
4452 }
4453 
4454 StmtResult Sema::ActOnSEHExceptBlock(SourceLocation Loc, Expr *FilterExpr,
4455                                      Stmt *Block) {
4456   assert(FilterExpr && Block);
4457   QualType FTy = FilterExpr->getType();
4458   if (!FTy->isIntegerType() && !FTy->isDependentType()) {
4459     return StmtError(
4460         Diag(FilterExpr->getExprLoc(), diag::err_filter_expression_integral)
4461         << FTy);
4462   }
4463   return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block);
4464 }
4465 
4466 void Sema::ActOnStartSEHFinallyBlock() {
4467   CurrentSEHFinally.push_back(CurScope);
4468 }
4469 
4470 void Sema::ActOnAbortSEHFinallyBlock() {
4471   CurrentSEHFinally.pop_back();
4472 }
4473 
4474 StmtResult Sema::ActOnFinishSEHFinallyBlock(SourceLocation Loc, Stmt *Block) {
4475   assert(Block);
4476   CurrentSEHFinally.pop_back();
4477   return SEHFinallyStmt::Create(Context, Loc, Block);
4478 }
4479 
4480 StmtResult
4481 Sema::ActOnSEHLeaveStmt(SourceLocation Loc, Scope *CurScope) {
4482   Scope *SEHTryParent = CurScope;
4483   while (SEHTryParent && !SEHTryParent->isSEHTryScope())
4484     SEHTryParent = SEHTryParent->getParent();
4485   if (!SEHTryParent)
4486     return StmtError(Diag(Loc, diag::err_ms___leave_not_in___try));
4487   CheckJumpOutOfSEHFinally(*this, Loc, *SEHTryParent);
4488 
4489   return new (Context) SEHLeaveStmt(Loc);
4490 }
4491 
4492 StmtResult Sema::BuildMSDependentExistsStmt(SourceLocation KeywordLoc,
4493                                             bool IsIfExists,
4494                                             NestedNameSpecifierLoc QualifierLoc,
4495                                             DeclarationNameInfo NameInfo,
4496                                             Stmt *Nested)
4497 {
4498   return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists,
4499                                              QualifierLoc, NameInfo,
4500                                              cast<CompoundStmt>(Nested));
4501 }
4502 
4503 
4504 StmtResult Sema::ActOnMSDependentExistsStmt(SourceLocation KeywordLoc,
4505                                             bool IsIfExists,
4506                                             CXXScopeSpec &SS,
4507                                             UnqualifiedId &Name,
4508                                             Stmt *Nested) {
4509   return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists,
4510                                     SS.getWithLocInContext(Context),
4511                                     GetNameFromUnqualifiedId(Name),
4512                                     Nested);
4513 }
4514 
4515 RecordDecl*
4516 Sema::CreateCapturedStmtRecordDecl(CapturedDecl *&CD, SourceLocation Loc,
4517                                    unsigned NumParams) {
4518   DeclContext *DC = CurContext;
4519   while (!(DC->isFunctionOrMethod() || DC->isRecord() || DC->isFileContext()))
4520     DC = DC->getParent();
4521 
4522   RecordDecl *RD = nullptr;
4523   if (getLangOpts().CPlusPlus)
4524     RD = CXXRecordDecl::Create(Context, TTK_Struct, DC, Loc, Loc,
4525                                /*Id=*/nullptr);
4526   else
4527     RD = RecordDecl::Create(Context, TTK_Struct, DC, Loc, Loc, /*Id=*/nullptr);
4528 
4529   RD->setCapturedRecord();
4530   DC->addDecl(RD);
4531   RD->setImplicit();
4532   RD->startDefinition();
4533 
4534   assert(NumParams > 0 && "CapturedStmt requires context parameter");
4535   CD = CapturedDecl::Create(Context, CurContext, NumParams);
4536   DC->addDecl(CD);
4537   return RD;
4538 }
4539 
4540 static bool
4541 buildCapturedStmtCaptureList(Sema &S, CapturedRegionScopeInfo *RSI,
4542                              SmallVectorImpl<CapturedStmt::Capture> &Captures,
4543                              SmallVectorImpl<Expr *> &CaptureInits) {
4544   for (const sema::Capture &Cap : RSI->Captures) {
4545     if (Cap.isInvalid())
4546       continue;
4547 
4548     // Form the initializer for the capture.
4549     ExprResult Init = S.BuildCaptureInit(Cap, Cap.getLocation(),
4550                                          RSI->CapRegionKind == CR_OpenMP);
4551 
4552     // FIXME: Bail out now if the capture is not used and the initializer has
4553     // no side-effects.
4554 
4555     // Create a field for this capture.
4556     FieldDecl *Field = S.BuildCaptureField(RSI->TheRecordDecl, Cap);
4557 
4558     // Add the capture to our list of captures.
4559     if (Cap.isThisCapture()) {
4560       Captures.push_back(CapturedStmt::Capture(Cap.getLocation(),
4561                                                CapturedStmt::VCK_This));
4562     } else if (Cap.isVLATypeCapture()) {
4563       Captures.push_back(
4564           CapturedStmt::Capture(Cap.getLocation(), CapturedStmt::VCK_VLAType));
4565     } else {
4566       assert(Cap.isVariableCapture() && "unknown kind of capture");
4567 
4568       if (S.getLangOpts().OpenMP && RSI->CapRegionKind == CR_OpenMP)
4569         S.setOpenMPCaptureKind(Field, Cap.getVariable(), RSI->OpenMPLevel);
4570 
4571       Captures.push_back(CapturedStmt::Capture(Cap.getLocation(),
4572                                                Cap.isReferenceCapture()
4573                                                    ? CapturedStmt::VCK_ByRef
4574                                                    : CapturedStmt::VCK_ByCopy,
4575                                                Cap.getVariable()));
4576     }
4577     CaptureInits.push_back(Init.get());
4578   }
4579   return false;
4580 }
4581 
4582 void Sema::ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
4583                                     CapturedRegionKind Kind,
4584                                     unsigned NumParams) {
4585   CapturedDecl *CD = nullptr;
4586   RecordDecl *RD = CreateCapturedStmtRecordDecl(CD, Loc, NumParams);
4587 
4588   // Build the context parameter
4589   DeclContext *DC = CapturedDecl::castToDeclContext(CD);
4590   IdentifierInfo *ParamName = &Context.Idents.get("__context");
4591   QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD));
4592   auto *Param =
4593       ImplicitParamDecl::Create(Context, DC, Loc, ParamName, ParamType,
4594                                 ImplicitParamDecl::CapturedContext);
4595   DC->addDecl(Param);
4596 
4597   CD->setContextParam(0, Param);
4598 
4599   // Enter the capturing scope for this captured region.
4600   PushCapturedRegionScope(CurScope, CD, RD, Kind);
4601 
4602   if (CurScope)
4603     PushDeclContext(CurScope, CD);
4604   else
4605     CurContext = CD;
4606 
4607   PushExpressionEvaluationContext(
4608       ExpressionEvaluationContext::PotentiallyEvaluated);
4609 }
4610 
4611 void Sema::ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
4612                                     CapturedRegionKind Kind,
4613                                     ArrayRef<CapturedParamNameType> Params,
4614                                     unsigned OpenMPCaptureLevel) {
4615   CapturedDecl *CD = nullptr;
4616   RecordDecl *RD = CreateCapturedStmtRecordDecl(CD, Loc, Params.size());
4617 
4618   // Build the context parameter
4619   DeclContext *DC = CapturedDecl::castToDeclContext(CD);
4620   bool ContextIsFound = false;
4621   unsigned ParamNum = 0;
4622   for (ArrayRef<CapturedParamNameType>::iterator I = Params.begin(),
4623                                                  E = Params.end();
4624        I != E; ++I, ++ParamNum) {
4625     if (I->second.isNull()) {
4626       assert(!ContextIsFound &&
4627              "null type has been found already for '__context' parameter");
4628       IdentifierInfo *ParamName = &Context.Idents.get("__context");
4629       QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD))
4630                                .withConst()
4631                                .withRestrict();
4632       auto *Param =
4633           ImplicitParamDecl::Create(Context, DC, Loc, ParamName, ParamType,
4634                                     ImplicitParamDecl::CapturedContext);
4635       DC->addDecl(Param);
4636       CD->setContextParam(ParamNum, Param);
4637       ContextIsFound = true;
4638     } else {
4639       IdentifierInfo *ParamName = &Context.Idents.get(I->first);
4640       auto *Param =
4641           ImplicitParamDecl::Create(Context, DC, Loc, ParamName, I->second,
4642                                     ImplicitParamDecl::CapturedContext);
4643       DC->addDecl(Param);
4644       CD->setParam(ParamNum, Param);
4645     }
4646   }
4647   assert(ContextIsFound && "no null type for '__context' parameter");
4648   if (!ContextIsFound) {
4649     // Add __context implicitly if it is not specified.
4650     IdentifierInfo *ParamName = &Context.Idents.get("__context");
4651     QualType ParamType = Context.getPointerType(Context.getTagDeclType(RD));
4652     auto *Param =
4653         ImplicitParamDecl::Create(Context, DC, Loc, ParamName, ParamType,
4654                                   ImplicitParamDecl::CapturedContext);
4655     DC->addDecl(Param);
4656     CD->setContextParam(ParamNum, Param);
4657   }
4658   // Enter the capturing scope for this captured region.
4659   PushCapturedRegionScope(CurScope, CD, RD, Kind, OpenMPCaptureLevel);
4660 
4661   if (CurScope)
4662     PushDeclContext(CurScope, CD);
4663   else
4664     CurContext = CD;
4665 
4666   PushExpressionEvaluationContext(
4667       ExpressionEvaluationContext::PotentiallyEvaluated);
4668 }
4669 
4670 void Sema::ActOnCapturedRegionError() {
4671   DiscardCleanupsInEvaluationContext();
4672   PopExpressionEvaluationContext();
4673   PopDeclContext();
4674   PoppedFunctionScopePtr ScopeRAII = PopFunctionScopeInfo();
4675   CapturedRegionScopeInfo *RSI = cast<CapturedRegionScopeInfo>(ScopeRAII.get());
4676 
4677   RecordDecl *Record = RSI->TheRecordDecl;
4678   Record->setInvalidDecl();
4679 
4680   SmallVector<Decl*, 4> Fields(Record->fields());
4681   ActOnFields(/*Scope=*/nullptr, Record->getLocation(), Record, Fields,
4682               SourceLocation(), SourceLocation(), ParsedAttributesView());
4683 }
4684 
4685 StmtResult Sema::ActOnCapturedRegionEnd(Stmt *S) {
4686   // Leave the captured scope before we start creating captures in the
4687   // enclosing scope.
4688   DiscardCleanupsInEvaluationContext();
4689   PopExpressionEvaluationContext();
4690   PopDeclContext();
4691   PoppedFunctionScopePtr ScopeRAII = PopFunctionScopeInfo();
4692   CapturedRegionScopeInfo *RSI = cast<CapturedRegionScopeInfo>(ScopeRAII.get());
4693 
4694   SmallVector<CapturedStmt::Capture, 4> Captures;
4695   SmallVector<Expr *, 4> CaptureInits;
4696   if (buildCapturedStmtCaptureList(*this, RSI, Captures, CaptureInits))
4697     return StmtError();
4698 
4699   CapturedDecl *CD = RSI->TheCapturedDecl;
4700   RecordDecl *RD = RSI->TheRecordDecl;
4701 
4702   CapturedStmt *Res = CapturedStmt::Create(
4703       getASTContext(), S, static_cast<CapturedRegionKind>(RSI->CapRegionKind),
4704       Captures, CaptureInits, CD, RD);
4705 
4706   CD->setBody(Res->getCapturedStmt());
4707   RD->completeDefinition();
4708 
4709   return Res;
4710 }
4711