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