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