1 //===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements semantic analysis for C++ declarations. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/AST/ASTConsumer.h" 14 #include "clang/AST/ASTContext.h" 15 #include "clang/AST/ASTLambda.h" 16 #include "clang/AST/ASTMutationListener.h" 17 #include "clang/AST/CXXInheritance.h" 18 #include "clang/AST/CharUnits.h" 19 #include "clang/AST/ComparisonCategories.h" 20 #include "clang/AST/EvaluatedExprVisitor.h" 21 #include "clang/AST/ExprCXX.h" 22 #include "clang/AST/RecordLayout.h" 23 #include "clang/AST/RecursiveASTVisitor.h" 24 #include "clang/AST/StmtVisitor.h" 25 #include "clang/AST/TypeLoc.h" 26 #include "clang/AST/TypeOrdering.h" 27 #include "clang/Basic/AttributeCommonInfo.h" 28 #include "clang/Basic/PartialDiagnostic.h" 29 #include "clang/Basic/TargetInfo.h" 30 #include "clang/Lex/LiteralSupport.h" 31 #include "clang/Lex/Preprocessor.h" 32 #include "clang/Sema/CXXFieldCollector.h" 33 #include "clang/Sema/DeclSpec.h" 34 #include "clang/Sema/Initialization.h" 35 #include "clang/Sema/Lookup.h" 36 #include "clang/Sema/ParsedTemplate.h" 37 #include "clang/Sema/Scope.h" 38 #include "clang/Sema/ScopeInfo.h" 39 #include "clang/Sema/SemaInternal.h" 40 #include "clang/Sema/Template.h" 41 #include "llvm/ADT/STLExtras.h" 42 #include "llvm/ADT/SmallString.h" 43 #include "llvm/ADT/StringExtras.h" 44 #include <map> 45 #include <set> 46 47 using namespace clang; 48 49 //===----------------------------------------------------------------------===// 50 // CheckDefaultArgumentVisitor 51 //===----------------------------------------------------------------------===// 52 53 namespace { 54 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses 55 /// the default argument of a parameter to determine whether it 56 /// contains any ill-formed subexpressions. For example, this will 57 /// diagnose the use of local variables or parameters within the 58 /// default argument expression. 59 class CheckDefaultArgumentVisitor 60 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> { 61 Expr *DefaultArg; 62 Sema *S; 63 64 public: 65 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s) 66 : DefaultArg(defarg), S(s) {} 67 68 bool VisitExpr(Expr *Node); 69 bool VisitDeclRefExpr(DeclRefExpr *DRE); 70 bool VisitCXXThisExpr(CXXThisExpr *ThisE); 71 bool VisitLambdaExpr(LambdaExpr *Lambda); 72 bool VisitPseudoObjectExpr(PseudoObjectExpr *POE); 73 }; 74 75 /// VisitExpr - Visit all of the children of this expression. 76 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) { 77 bool IsInvalid = false; 78 for (Stmt *SubStmt : Node->children()) 79 IsInvalid |= Visit(SubStmt); 80 return IsInvalid; 81 } 82 83 /// VisitDeclRefExpr - Visit a reference to a declaration, to 84 /// determine whether this declaration can be used in the default 85 /// argument expression. 86 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) { 87 NamedDecl *Decl = DRE->getDecl(); 88 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) { 89 // C++ [dcl.fct.default]p9 90 // Default arguments are evaluated each time the function is 91 // called. The order of evaluation of function arguments is 92 // unspecified. Consequently, parameters of a function shall not 93 // be used in default argument expressions, even if they are not 94 // evaluated. Parameters of a function declared before a default 95 // argument expression are in scope and can hide namespace and 96 // class member names. 97 return S->Diag(DRE->getBeginLoc(), 98 diag::err_param_default_argument_references_param) 99 << Param->getDeclName() << DefaultArg->getSourceRange(); 100 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) { 101 // C++ [dcl.fct.default]p7 102 // Local variables shall not be used in default argument 103 // expressions. 104 if (VDecl->isLocalVarDecl()) 105 return S->Diag(DRE->getBeginLoc(), 106 diag::err_param_default_argument_references_local) 107 << VDecl->getDeclName() << DefaultArg->getSourceRange(); 108 } 109 110 return false; 111 } 112 113 /// VisitCXXThisExpr - Visit a C++ "this" expression. 114 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) { 115 // C++ [dcl.fct.default]p8: 116 // The keyword this shall not be used in a default argument of a 117 // member function. 118 return S->Diag(ThisE->getBeginLoc(), 119 diag::err_param_default_argument_references_this) 120 << ThisE->getSourceRange(); 121 } 122 123 bool CheckDefaultArgumentVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *POE) { 124 bool Invalid = false; 125 for (PseudoObjectExpr::semantics_iterator 126 i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) { 127 Expr *E = *i; 128 129 // Look through bindings. 130 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 131 E = OVE->getSourceExpr(); 132 assert(E && "pseudo-object binding without source expression?"); 133 } 134 135 Invalid |= Visit(E); 136 } 137 return Invalid; 138 } 139 140 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) { 141 // C++11 [expr.lambda.prim]p13: 142 // A lambda-expression appearing in a default argument shall not 143 // implicitly or explicitly capture any entity. 144 if (Lambda->capture_begin() == Lambda->capture_end()) 145 return false; 146 147 return S->Diag(Lambda->getBeginLoc(), diag::err_lambda_capture_default_arg); 148 } 149 } 150 151 void 152 Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc, 153 const CXXMethodDecl *Method) { 154 // If we have an MSAny spec already, don't bother. 155 if (!Method || ComputedEST == EST_MSAny) 156 return; 157 158 const FunctionProtoType *Proto 159 = Method->getType()->getAs<FunctionProtoType>(); 160 Proto = Self->ResolveExceptionSpec(CallLoc, Proto); 161 if (!Proto) 162 return; 163 164 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); 165 166 // If we have a throw-all spec at this point, ignore the function. 167 if (ComputedEST == EST_None) 168 return; 169 170 if (EST == EST_None && Method->hasAttr<NoThrowAttr>()) 171 EST = EST_BasicNoexcept; 172 173 switch (EST) { 174 case EST_Unparsed: 175 case EST_Uninstantiated: 176 case EST_Unevaluated: 177 llvm_unreachable("should not see unresolved exception specs here"); 178 179 // If this function can throw any exceptions, make a note of that. 180 case EST_MSAny: 181 case EST_None: 182 // FIXME: Whichever we see last of MSAny and None determines our result. 183 // We should make a consistent, order-independent choice here. 184 ClearExceptions(); 185 ComputedEST = EST; 186 return; 187 case EST_NoexceptFalse: 188 ClearExceptions(); 189 ComputedEST = EST_None; 190 return; 191 // FIXME: If the call to this decl is using any of its default arguments, we 192 // need to search them for potentially-throwing calls. 193 // If this function has a basic noexcept, it doesn't affect the outcome. 194 case EST_BasicNoexcept: 195 case EST_NoexceptTrue: 196 case EST_NoThrow: 197 return; 198 // If we're still at noexcept(true) and there's a throw() callee, 199 // change to that specification. 200 case EST_DynamicNone: 201 if (ComputedEST == EST_BasicNoexcept) 202 ComputedEST = EST_DynamicNone; 203 return; 204 case EST_DependentNoexcept: 205 llvm_unreachable( 206 "should not generate implicit declarations for dependent cases"); 207 case EST_Dynamic: 208 break; 209 } 210 assert(EST == EST_Dynamic && "EST case not considered earlier."); 211 assert(ComputedEST != EST_None && 212 "Shouldn't collect exceptions when throw-all is guaranteed."); 213 ComputedEST = EST_Dynamic; 214 // Record the exceptions in this function's exception specification. 215 for (const auto &E : Proto->exceptions()) 216 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)).second) 217 Exceptions.push_back(E); 218 } 219 220 void Sema::ImplicitExceptionSpecification::CalledStmt(Stmt *S) { 221 if (!S || ComputedEST == EST_MSAny) 222 return; 223 224 // FIXME: 225 // 226 // C++0x [except.spec]p14: 227 // [An] implicit exception-specification specifies the type-id T if and 228 // only if T is allowed by the exception-specification of a function directly 229 // invoked by f's implicit definition; f shall allow all exceptions if any 230 // function it directly invokes allows all exceptions, and f shall allow no 231 // exceptions if every function it directly invokes allows no exceptions. 232 // 233 // Note in particular that if an implicit exception-specification is generated 234 // for a function containing a throw-expression, that specification can still 235 // be noexcept(true). 236 // 237 // Note also that 'directly invoked' is not defined in the standard, and there 238 // is no indication that we should only consider potentially-evaluated calls. 239 // 240 // Ultimately we should implement the intent of the standard: the exception 241 // specification should be the set of exceptions which can be thrown by the 242 // implicit definition. For now, we assume that any non-nothrow expression can 243 // throw any exception. 244 245 if (Self->canThrow(S)) 246 ComputedEST = EST_None; 247 } 248 249 bool 250 Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, 251 SourceLocation EqualLoc) { 252 if (RequireCompleteType(Param->getLocation(), Param->getType(), 253 diag::err_typecheck_decl_incomplete_type)) { 254 Param->setInvalidDecl(); 255 return true; 256 } 257 258 // C++ [dcl.fct.default]p5 259 // A default argument expression is implicitly converted (clause 260 // 4) to the parameter type. The default argument expression has 261 // the same semantic constraints as the initializer expression in 262 // a declaration of a variable of the parameter type, using the 263 // copy-initialization semantics (8.5). 264 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, 265 Param); 266 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(), 267 EqualLoc); 268 InitializationSequence InitSeq(*this, Entity, Kind, Arg); 269 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg); 270 if (Result.isInvalid()) 271 return true; 272 Arg = Result.getAs<Expr>(); 273 274 CheckCompletedExpr(Arg, EqualLoc); 275 Arg = MaybeCreateExprWithCleanups(Arg); 276 277 // Okay: add the default argument to the parameter 278 Param->setDefaultArg(Arg); 279 280 // We have already instantiated this parameter; provide each of the 281 // instantiations with the uninstantiated default argument. 282 UnparsedDefaultArgInstantiationsMap::iterator InstPos 283 = UnparsedDefaultArgInstantiations.find(Param); 284 if (InstPos != UnparsedDefaultArgInstantiations.end()) { 285 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I) 286 InstPos->second[I]->setUninstantiatedDefaultArg(Arg); 287 288 // We're done tracking this parameter's instantiations. 289 UnparsedDefaultArgInstantiations.erase(InstPos); 290 } 291 292 return false; 293 } 294 295 /// ActOnParamDefaultArgument - Check whether the default argument 296 /// provided for a function parameter is well-formed. If so, attach it 297 /// to the parameter declaration. 298 void 299 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc, 300 Expr *DefaultArg) { 301 if (!param || !DefaultArg) 302 return; 303 304 ParmVarDecl *Param = cast<ParmVarDecl>(param); 305 UnparsedDefaultArgLocs.erase(Param); 306 307 // Default arguments are only permitted in C++ 308 if (!getLangOpts().CPlusPlus) { 309 Diag(EqualLoc, diag::err_param_default_argument) 310 << DefaultArg->getSourceRange(); 311 Param->setInvalidDecl(); 312 return; 313 } 314 315 // Check for unexpanded parameter packs. 316 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) { 317 Param->setInvalidDecl(); 318 return; 319 } 320 321 // C++11 [dcl.fct.default]p3 322 // A default argument expression [...] shall not be specified for a 323 // parameter pack. 324 if (Param->isParameterPack()) { 325 Diag(EqualLoc, diag::err_param_default_argument_on_parameter_pack) 326 << DefaultArg->getSourceRange(); 327 return; 328 } 329 330 // Check that the default argument is well-formed 331 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this); 332 if (DefaultArgChecker.Visit(DefaultArg)) { 333 Param->setInvalidDecl(); 334 return; 335 } 336 337 SetParamDefaultArgument(Param, DefaultArg, EqualLoc); 338 } 339 340 /// ActOnParamUnparsedDefaultArgument - We've seen a default 341 /// argument for a function parameter, but we can't parse it yet 342 /// because we're inside a class definition. Note that this default 343 /// argument will be parsed later. 344 void Sema::ActOnParamUnparsedDefaultArgument(Decl *param, 345 SourceLocation EqualLoc, 346 SourceLocation ArgLoc) { 347 if (!param) 348 return; 349 350 ParmVarDecl *Param = cast<ParmVarDecl>(param); 351 Param->setUnparsedDefaultArg(); 352 UnparsedDefaultArgLocs[Param] = ArgLoc; 353 } 354 355 /// ActOnParamDefaultArgumentError - Parsing or semantic analysis of 356 /// the default argument for the parameter param failed. 357 void Sema::ActOnParamDefaultArgumentError(Decl *param, 358 SourceLocation EqualLoc) { 359 if (!param) 360 return; 361 362 ParmVarDecl *Param = cast<ParmVarDecl>(param); 363 Param->setInvalidDecl(); 364 UnparsedDefaultArgLocs.erase(Param); 365 Param->setDefaultArg(new(Context) 366 OpaqueValueExpr(EqualLoc, 367 Param->getType().getNonReferenceType(), 368 VK_RValue)); 369 } 370 371 /// CheckExtraCXXDefaultArguments - Check for any extra default 372 /// arguments in the declarator, which is not a function declaration 373 /// or definition and therefore is not permitted to have default 374 /// arguments. This routine should be invoked for every declarator 375 /// that is not a function declaration or definition. 376 void Sema::CheckExtraCXXDefaultArguments(Declarator &D) { 377 // C++ [dcl.fct.default]p3 378 // A default argument expression shall be specified only in the 379 // parameter-declaration-clause of a function declaration or in a 380 // template-parameter (14.1). It shall not be specified for a 381 // parameter pack. If it is specified in a 382 // parameter-declaration-clause, it shall not occur within a 383 // declarator or abstract-declarator of a parameter-declaration. 384 bool MightBeFunction = D.isFunctionDeclarationContext(); 385 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) { 386 DeclaratorChunk &chunk = D.getTypeObject(i); 387 if (chunk.Kind == DeclaratorChunk::Function) { 388 if (MightBeFunction) { 389 // This is a function declaration. It can have default arguments, but 390 // keep looking in case its return type is a function type with default 391 // arguments. 392 MightBeFunction = false; 393 continue; 394 } 395 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e; 396 ++argIdx) { 397 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param); 398 if (Param->hasUnparsedDefaultArg()) { 399 std::unique_ptr<CachedTokens> Toks = 400 std::move(chunk.Fun.Params[argIdx].DefaultArgTokens); 401 SourceRange SR; 402 if (Toks->size() > 1) 403 SR = SourceRange((*Toks)[1].getLocation(), 404 Toks->back().getLocation()); 405 else 406 SR = UnparsedDefaultArgLocs[Param]; 407 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) 408 << SR; 409 } else if (Param->getDefaultArg()) { 410 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) 411 << Param->getDefaultArg()->getSourceRange(); 412 Param->setDefaultArg(nullptr); 413 } 414 } 415 } else if (chunk.Kind != DeclaratorChunk::Paren) { 416 MightBeFunction = false; 417 } 418 } 419 } 420 421 static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) { 422 for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) { 423 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1); 424 if (!PVD->hasDefaultArg()) 425 return false; 426 if (!PVD->hasInheritedDefaultArg()) 427 return true; 428 } 429 return false; 430 } 431 432 /// MergeCXXFunctionDecl - Merge two declarations of the same C++ 433 /// function, once we already know that they have the same 434 /// type. Subroutine of MergeFunctionDecl. Returns true if there was an 435 /// error, false otherwise. 436 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old, 437 Scope *S) { 438 bool Invalid = false; 439 440 // The declaration context corresponding to the scope is the semantic 441 // parent, unless this is a local function declaration, in which case 442 // it is that surrounding function. 443 DeclContext *ScopeDC = New->isLocalExternDecl() 444 ? New->getLexicalDeclContext() 445 : New->getDeclContext(); 446 447 // Find the previous declaration for the purpose of default arguments. 448 FunctionDecl *PrevForDefaultArgs = Old; 449 for (/**/; PrevForDefaultArgs; 450 // Don't bother looking back past the latest decl if this is a local 451 // extern declaration; nothing else could work. 452 PrevForDefaultArgs = New->isLocalExternDecl() 453 ? nullptr 454 : PrevForDefaultArgs->getPreviousDecl()) { 455 // Ignore hidden declarations. 456 if (!LookupResult::isVisible(*this, PrevForDefaultArgs)) 457 continue; 458 459 if (S && !isDeclInScope(PrevForDefaultArgs, ScopeDC, S) && 460 !New->isCXXClassMember()) { 461 // Ignore default arguments of old decl if they are not in 462 // the same scope and this is not an out-of-line definition of 463 // a member function. 464 continue; 465 } 466 467 if (PrevForDefaultArgs->isLocalExternDecl() != New->isLocalExternDecl()) { 468 // If only one of these is a local function declaration, then they are 469 // declared in different scopes, even though isDeclInScope may think 470 // they're in the same scope. (If both are local, the scope check is 471 // sufficient, and if neither is local, then they are in the same scope.) 472 continue; 473 } 474 475 // We found the right previous declaration. 476 break; 477 } 478 479 // C++ [dcl.fct.default]p4: 480 // For non-template functions, default arguments can be added in 481 // later declarations of a function in the same 482 // scope. Declarations in different scopes have completely 483 // distinct sets of default arguments. That is, declarations in 484 // inner scopes do not acquire default arguments from 485 // declarations in outer scopes, and vice versa. In a given 486 // function declaration, all parameters subsequent to a 487 // parameter with a default argument shall have default 488 // arguments supplied in this or previous declarations. A 489 // default argument shall not be redefined by a later 490 // declaration (not even to the same value). 491 // 492 // C++ [dcl.fct.default]p6: 493 // Except for member functions of class templates, the default arguments 494 // in a member function definition that appears outside of the class 495 // definition are added to the set of default arguments provided by the 496 // member function declaration in the class definition. 497 for (unsigned p = 0, NumParams = PrevForDefaultArgs 498 ? PrevForDefaultArgs->getNumParams() 499 : 0; 500 p < NumParams; ++p) { 501 ParmVarDecl *OldParam = PrevForDefaultArgs->getParamDecl(p); 502 ParmVarDecl *NewParam = New->getParamDecl(p); 503 504 bool OldParamHasDfl = OldParam ? OldParam->hasDefaultArg() : false; 505 bool NewParamHasDfl = NewParam->hasDefaultArg(); 506 507 if (OldParamHasDfl && NewParamHasDfl) { 508 unsigned DiagDefaultParamID = 509 diag::err_param_default_argument_redefinition; 510 511 // MSVC accepts that default parameters be redefined for member functions 512 // of template class. The new default parameter's value is ignored. 513 Invalid = true; 514 if (getLangOpts().MicrosoftExt) { 515 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(New); 516 if (MD && MD->getParent()->getDescribedClassTemplate()) { 517 // Merge the old default argument into the new parameter. 518 NewParam->setHasInheritedDefaultArg(); 519 if (OldParam->hasUninstantiatedDefaultArg()) 520 NewParam->setUninstantiatedDefaultArg( 521 OldParam->getUninstantiatedDefaultArg()); 522 else 523 NewParam->setDefaultArg(OldParam->getInit()); 524 DiagDefaultParamID = diag::ext_param_default_argument_redefinition; 525 Invalid = false; 526 } 527 } 528 529 // FIXME: If we knew where the '=' was, we could easily provide a fix-it 530 // hint here. Alternatively, we could walk the type-source information 531 // for NewParam to find the last source location in the type... but it 532 // isn't worth the effort right now. This is the kind of test case that 533 // is hard to get right: 534 // int f(int); 535 // void g(int (*fp)(int) = f); 536 // void g(int (*fp)(int) = &f); 537 Diag(NewParam->getLocation(), DiagDefaultParamID) 538 << NewParam->getDefaultArgRange(); 539 540 // Look for the function declaration where the default argument was 541 // actually written, which may be a declaration prior to Old. 542 for (auto Older = PrevForDefaultArgs; 543 OldParam->hasInheritedDefaultArg(); /**/) { 544 Older = Older->getPreviousDecl(); 545 OldParam = Older->getParamDecl(p); 546 } 547 548 Diag(OldParam->getLocation(), diag::note_previous_definition) 549 << OldParam->getDefaultArgRange(); 550 } else if (OldParamHasDfl) { 551 // Merge the old default argument into the new parameter unless the new 552 // function is a friend declaration in a template class. In the latter 553 // case the default arguments will be inherited when the friend 554 // declaration will be instantiated. 555 if (New->getFriendObjectKind() == Decl::FOK_None || 556 !New->getLexicalDeclContext()->isDependentContext()) { 557 // It's important to use getInit() here; getDefaultArg() 558 // strips off any top-level ExprWithCleanups. 559 NewParam->setHasInheritedDefaultArg(); 560 if (OldParam->hasUnparsedDefaultArg()) 561 NewParam->setUnparsedDefaultArg(); 562 else if (OldParam->hasUninstantiatedDefaultArg()) 563 NewParam->setUninstantiatedDefaultArg( 564 OldParam->getUninstantiatedDefaultArg()); 565 else 566 NewParam->setDefaultArg(OldParam->getInit()); 567 } 568 } else if (NewParamHasDfl) { 569 if (New->getDescribedFunctionTemplate()) { 570 // Paragraph 4, quoted above, only applies to non-template functions. 571 Diag(NewParam->getLocation(), 572 diag::err_param_default_argument_template_redecl) 573 << NewParam->getDefaultArgRange(); 574 Diag(PrevForDefaultArgs->getLocation(), 575 diag::note_template_prev_declaration) 576 << false; 577 } else if (New->getTemplateSpecializationKind() 578 != TSK_ImplicitInstantiation && 579 New->getTemplateSpecializationKind() != TSK_Undeclared) { 580 // C++ [temp.expr.spec]p21: 581 // Default function arguments shall not be specified in a declaration 582 // or a definition for one of the following explicit specializations: 583 // - the explicit specialization of a function template; 584 // - the explicit specialization of a member function template; 585 // - the explicit specialization of a member function of a class 586 // template where the class template specialization to which the 587 // member function specialization belongs is implicitly 588 // instantiated. 589 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg) 590 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization) 591 << New->getDeclName() 592 << NewParam->getDefaultArgRange(); 593 } else if (New->getDeclContext()->isDependentContext()) { 594 // C++ [dcl.fct.default]p6 (DR217): 595 // Default arguments for a member function of a class template shall 596 // be specified on the initial declaration of the member function 597 // within the class template. 598 // 599 // Reading the tea leaves a bit in DR217 and its reference to DR205 600 // leads me to the conclusion that one cannot add default function 601 // arguments for an out-of-line definition of a member function of a 602 // dependent type. 603 int WhichKind = 2; 604 if (CXXRecordDecl *Record 605 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) { 606 if (Record->getDescribedClassTemplate()) 607 WhichKind = 0; 608 else if (isa<ClassTemplatePartialSpecializationDecl>(Record)) 609 WhichKind = 1; 610 else 611 WhichKind = 2; 612 } 613 614 Diag(NewParam->getLocation(), 615 diag::err_param_default_argument_member_template_redecl) 616 << WhichKind 617 << NewParam->getDefaultArgRange(); 618 } 619 } 620 } 621 622 // DR1344: If a default argument is added outside a class definition and that 623 // default argument makes the function a special member function, the program 624 // is ill-formed. This can only happen for constructors. 625 if (isa<CXXConstructorDecl>(New) && 626 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) { 627 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)), 628 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old)); 629 if (NewSM != OldSM) { 630 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments()); 631 assert(NewParam->hasDefaultArg()); 632 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special) 633 << NewParam->getDefaultArgRange() << NewSM; 634 Diag(Old->getLocation(), diag::note_previous_declaration); 635 } 636 } 637 638 const FunctionDecl *Def; 639 // C++11 [dcl.constexpr]p1: If any declaration of a function or function 640 // template has a constexpr specifier then all its declarations shall 641 // contain the constexpr specifier. 642 if (New->getConstexprKind() != Old->getConstexprKind()) { 643 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch) 644 << New << New->getConstexprKind() << Old->getConstexprKind(); 645 Diag(Old->getLocation(), diag::note_previous_declaration); 646 Invalid = true; 647 } else if (!Old->getMostRecentDecl()->isInlined() && New->isInlined() && 648 Old->isDefined(Def) && 649 // If a friend function is inlined but does not have 'inline' 650 // specifier, it is a definition. Do not report attribute conflict 651 // in this case, redefinition will be diagnosed later. 652 (New->isInlineSpecified() || 653 New->getFriendObjectKind() == Decl::FOK_None)) { 654 // C++11 [dcl.fcn.spec]p4: 655 // If the definition of a function appears in a translation unit before its 656 // first declaration as inline, the program is ill-formed. 657 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New; 658 Diag(Def->getLocation(), diag::note_previous_definition); 659 Invalid = true; 660 } 661 662 // C++17 [temp.deduct.guide]p3: 663 // Two deduction guide declarations in the same translation unit 664 // for the same class template shall not have equivalent 665 // parameter-declaration-clauses. 666 if (isa<CXXDeductionGuideDecl>(New) && 667 !New->isFunctionTemplateSpecialization()) { 668 Diag(New->getLocation(), diag::err_deduction_guide_redeclared); 669 Diag(Old->getLocation(), diag::note_previous_declaration); 670 } 671 672 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default 673 // argument expression, that declaration shall be a definition and shall be 674 // the only declaration of the function or function template in the 675 // translation unit. 676 if (Old->getFriendObjectKind() == Decl::FOK_Undeclared && 677 functionDeclHasDefaultArgument(Old)) { 678 Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 679 Diag(Old->getLocation(), diag::note_previous_declaration); 680 Invalid = true; 681 } 682 683 return Invalid; 684 } 685 686 NamedDecl * 687 Sema::ActOnDecompositionDeclarator(Scope *S, Declarator &D, 688 MultiTemplateParamsArg TemplateParamLists) { 689 assert(D.isDecompositionDeclarator()); 690 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); 691 692 // The syntax only allows a decomposition declarator as a simple-declaration, 693 // a for-range-declaration, or a condition in Clang, but we parse it in more 694 // cases than that. 695 if (!D.mayHaveDecompositionDeclarator()) { 696 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) 697 << Decomp.getSourceRange(); 698 return nullptr; 699 } 700 701 if (!TemplateParamLists.empty()) { 702 // FIXME: There's no rule against this, but there are also no rules that 703 // would actually make it usable, so we reject it for now. 704 Diag(TemplateParamLists.front()->getTemplateLoc(), 705 diag::err_decomp_decl_template); 706 return nullptr; 707 } 708 709 Diag(Decomp.getLSquareLoc(), 710 !getLangOpts().CPlusPlus17 711 ? diag::ext_decomp_decl 712 : D.getContext() == DeclaratorContext::ConditionContext 713 ? diag::ext_decomp_decl_cond 714 : diag::warn_cxx14_compat_decomp_decl) 715 << Decomp.getSourceRange(); 716 717 // The semantic context is always just the current context. 718 DeclContext *const DC = CurContext; 719 720 // C++17 [dcl.dcl]/8: 721 // The decl-specifier-seq shall contain only the type-specifier auto 722 // and cv-qualifiers. 723 // C++2a [dcl.dcl]/8: 724 // If decl-specifier-seq contains any decl-specifier other than static, 725 // thread_local, auto, or cv-qualifiers, the program is ill-formed. 726 auto &DS = D.getDeclSpec(); 727 { 728 SmallVector<StringRef, 8> BadSpecifiers; 729 SmallVector<SourceLocation, 8> BadSpecifierLocs; 730 SmallVector<StringRef, 8> CPlusPlus20Specifiers; 731 SmallVector<SourceLocation, 8> CPlusPlus20SpecifierLocs; 732 if (auto SCS = DS.getStorageClassSpec()) { 733 if (SCS == DeclSpec::SCS_static) { 734 CPlusPlus20Specifiers.push_back(DeclSpec::getSpecifierName(SCS)); 735 CPlusPlus20SpecifierLocs.push_back(DS.getStorageClassSpecLoc()); 736 } else { 737 BadSpecifiers.push_back(DeclSpec::getSpecifierName(SCS)); 738 BadSpecifierLocs.push_back(DS.getStorageClassSpecLoc()); 739 } 740 } 741 if (auto TSCS = DS.getThreadStorageClassSpec()) { 742 CPlusPlus20Specifiers.push_back(DeclSpec::getSpecifierName(TSCS)); 743 CPlusPlus20SpecifierLocs.push_back(DS.getThreadStorageClassSpecLoc()); 744 } 745 if (DS.hasConstexprSpecifier()) { 746 BadSpecifiers.push_back( 747 DeclSpec::getSpecifierName(DS.getConstexprSpecifier())); 748 BadSpecifierLocs.push_back(DS.getConstexprSpecLoc()); 749 } 750 if (DS.isInlineSpecified()) { 751 BadSpecifiers.push_back("inline"); 752 BadSpecifierLocs.push_back(DS.getInlineSpecLoc()); 753 } 754 if (!BadSpecifiers.empty()) { 755 auto &&Err = Diag(BadSpecifierLocs.front(), diag::err_decomp_decl_spec); 756 Err << (int)BadSpecifiers.size() 757 << llvm::join(BadSpecifiers.begin(), BadSpecifiers.end(), " "); 758 // Don't add FixItHints to remove the specifiers; we do still respect 759 // them when building the underlying variable. 760 for (auto Loc : BadSpecifierLocs) 761 Err << SourceRange(Loc, Loc); 762 } else if (!CPlusPlus20Specifiers.empty()) { 763 auto &&Warn = Diag(CPlusPlus20SpecifierLocs.front(), 764 getLangOpts().CPlusPlus2a 765 ? diag::warn_cxx17_compat_decomp_decl_spec 766 : diag::ext_decomp_decl_spec); 767 Warn << (int)CPlusPlus20Specifiers.size() 768 << llvm::join(CPlusPlus20Specifiers.begin(), 769 CPlusPlus20Specifiers.end(), " "); 770 for (auto Loc : CPlusPlus20SpecifierLocs) 771 Warn << SourceRange(Loc, Loc); 772 } 773 // We can't recover from it being declared as a typedef. 774 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) 775 return nullptr; 776 } 777 778 // C++2a [dcl.struct.bind]p1: 779 // A cv that includes volatile is deprecated 780 if ((DS.getTypeQualifiers() & DeclSpec::TQ_volatile) && 781 getLangOpts().CPlusPlus2a) 782 Diag(DS.getVolatileSpecLoc(), 783 diag::warn_deprecated_volatile_structured_binding); 784 785 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 786 QualType R = TInfo->getType(); 787 788 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 789 UPPC_DeclarationType)) 790 D.setInvalidType(); 791 792 // The syntax only allows a single ref-qualifier prior to the decomposition 793 // declarator. No other declarator chunks are permitted. Also check the type 794 // specifier here. 795 if (DS.getTypeSpecType() != DeclSpec::TST_auto || 796 D.hasGroupingParens() || D.getNumTypeObjects() > 1 || 797 (D.getNumTypeObjects() == 1 && 798 D.getTypeObject(0).Kind != DeclaratorChunk::Reference)) { 799 Diag(Decomp.getLSquareLoc(), 800 (D.hasGroupingParens() || 801 (D.getNumTypeObjects() && 802 D.getTypeObject(0).Kind == DeclaratorChunk::Paren)) 803 ? diag::err_decomp_decl_parens 804 : diag::err_decomp_decl_type) 805 << R; 806 807 // In most cases, there's no actual problem with an explicitly-specified 808 // type, but a function type won't work here, and ActOnVariableDeclarator 809 // shouldn't be called for such a type. 810 if (R->isFunctionType()) 811 D.setInvalidType(); 812 } 813 814 // Build the BindingDecls. 815 SmallVector<BindingDecl*, 8> Bindings; 816 817 // Build the BindingDecls. 818 for (auto &B : D.getDecompositionDeclarator().bindings()) { 819 // Check for name conflicts. 820 DeclarationNameInfo NameInfo(B.Name, B.NameLoc); 821 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 822 ForVisibleRedeclaration); 823 LookupName(Previous, S, 824 /*CreateBuiltins*/DC->getRedeclContext()->isTranslationUnit()); 825 826 // It's not permitted to shadow a template parameter name. 827 if (Previous.isSingleResult() && 828 Previous.getFoundDecl()->isTemplateParameter()) { 829 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), 830 Previous.getFoundDecl()); 831 Previous.clear(); 832 } 833 834 bool ConsiderLinkage = DC->isFunctionOrMethod() && 835 DS.getStorageClassSpec() == DeclSpec::SCS_extern; 836 FilterLookupForScope(Previous, DC, S, ConsiderLinkage, 837 /*AllowInlineNamespace*/false); 838 if (!Previous.empty()) { 839 auto *Old = Previous.getRepresentativeDecl(); 840 Diag(B.NameLoc, diag::err_redefinition) << B.Name; 841 Diag(Old->getLocation(), diag::note_previous_definition); 842 } 843 844 auto *BD = BindingDecl::Create(Context, DC, B.NameLoc, B.Name); 845 PushOnScopeChains(BD, S, true); 846 Bindings.push_back(BD); 847 ParsingInitForAutoVars.insert(BD); 848 } 849 850 // There are no prior lookup results for the variable itself, because it 851 // is unnamed. 852 DeclarationNameInfo NameInfo((IdentifierInfo *)nullptr, 853 Decomp.getLSquareLoc()); 854 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 855 ForVisibleRedeclaration); 856 857 // Build the variable that holds the non-decomposed object. 858 bool AddToScope = true; 859 NamedDecl *New = 860 ActOnVariableDeclarator(S, D, DC, TInfo, Previous, 861 MultiTemplateParamsArg(), AddToScope, Bindings); 862 if (AddToScope) { 863 S->AddDecl(New); 864 CurContext->addHiddenDecl(New); 865 } 866 867 if (isInOpenMPDeclareTargetContext()) 868 checkDeclIsAllowedInOpenMPTarget(nullptr, New); 869 870 return New; 871 } 872 873 static bool checkSimpleDecomposition( 874 Sema &S, ArrayRef<BindingDecl *> Bindings, ValueDecl *Src, 875 QualType DecompType, const llvm::APSInt &NumElems, QualType ElemType, 876 llvm::function_ref<ExprResult(SourceLocation, Expr *, unsigned)> GetInit) { 877 if ((int64_t)Bindings.size() != NumElems) { 878 S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings) 879 << DecompType << (unsigned)Bindings.size() << NumElems.toString(10) 880 << (NumElems < Bindings.size()); 881 return true; 882 } 883 884 unsigned I = 0; 885 for (auto *B : Bindings) { 886 SourceLocation Loc = B->getLocation(); 887 ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc); 888 if (E.isInvalid()) 889 return true; 890 E = GetInit(Loc, E.get(), I++); 891 if (E.isInvalid()) 892 return true; 893 B->setBinding(ElemType, E.get()); 894 } 895 896 return false; 897 } 898 899 static bool checkArrayLikeDecomposition(Sema &S, 900 ArrayRef<BindingDecl *> Bindings, 901 ValueDecl *Src, QualType DecompType, 902 const llvm::APSInt &NumElems, 903 QualType ElemType) { 904 return checkSimpleDecomposition( 905 S, Bindings, Src, DecompType, NumElems, ElemType, 906 [&](SourceLocation Loc, Expr *Base, unsigned I) -> ExprResult { 907 ExprResult E = S.ActOnIntegerConstant(Loc, I); 908 if (E.isInvalid()) 909 return ExprError(); 910 return S.CreateBuiltinArraySubscriptExpr(Base, Loc, E.get(), Loc); 911 }); 912 } 913 914 static bool checkArrayDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings, 915 ValueDecl *Src, QualType DecompType, 916 const ConstantArrayType *CAT) { 917 return checkArrayLikeDecomposition(S, Bindings, Src, DecompType, 918 llvm::APSInt(CAT->getSize()), 919 CAT->getElementType()); 920 } 921 922 static bool checkVectorDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings, 923 ValueDecl *Src, QualType DecompType, 924 const VectorType *VT) { 925 return checkArrayLikeDecomposition( 926 S, Bindings, Src, DecompType, llvm::APSInt::get(VT->getNumElements()), 927 S.Context.getQualifiedType(VT->getElementType(), 928 DecompType.getQualifiers())); 929 } 930 931 static bool checkComplexDecomposition(Sema &S, 932 ArrayRef<BindingDecl *> Bindings, 933 ValueDecl *Src, QualType DecompType, 934 const ComplexType *CT) { 935 return checkSimpleDecomposition( 936 S, Bindings, Src, DecompType, llvm::APSInt::get(2), 937 S.Context.getQualifiedType(CT->getElementType(), 938 DecompType.getQualifiers()), 939 [&](SourceLocation Loc, Expr *Base, unsigned I) -> ExprResult { 940 return S.CreateBuiltinUnaryOp(Loc, I ? UO_Imag : UO_Real, Base); 941 }); 942 } 943 944 static std::string printTemplateArgs(const PrintingPolicy &PrintingPolicy, 945 TemplateArgumentListInfo &Args) { 946 SmallString<128> SS; 947 llvm::raw_svector_ostream OS(SS); 948 bool First = true; 949 for (auto &Arg : Args.arguments()) { 950 if (!First) 951 OS << ", "; 952 Arg.getArgument().print(PrintingPolicy, OS); 953 First = false; 954 } 955 return std::string(OS.str()); 956 } 957 958 static bool lookupStdTypeTraitMember(Sema &S, LookupResult &TraitMemberLookup, 959 SourceLocation Loc, StringRef Trait, 960 TemplateArgumentListInfo &Args, 961 unsigned DiagID) { 962 auto DiagnoseMissing = [&] { 963 if (DiagID) 964 S.Diag(Loc, DiagID) << printTemplateArgs(S.Context.getPrintingPolicy(), 965 Args); 966 return true; 967 }; 968 969 // FIXME: Factor out duplication with lookupPromiseType in SemaCoroutine. 970 NamespaceDecl *Std = S.getStdNamespace(); 971 if (!Std) 972 return DiagnoseMissing(); 973 974 // Look up the trait itself, within namespace std. We can diagnose various 975 // problems with this lookup even if we've been asked to not diagnose a 976 // missing specialization, because this can only fail if the user has been 977 // declaring their own names in namespace std or we don't support the 978 // standard library implementation in use. 979 LookupResult Result(S, &S.PP.getIdentifierTable().get(Trait), 980 Loc, Sema::LookupOrdinaryName); 981 if (!S.LookupQualifiedName(Result, Std)) 982 return DiagnoseMissing(); 983 if (Result.isAmbiguous()) 984 return true; 985 986 ClassTemplateDecl *TraitTD = Result.getAsSingle<ClassTemplateDecl>(); 987 if (!TraitTD) { 988 Result.suppressDiagnostics(); 989 NamedDecl *Found = *Result.begin(); 990 S.Diag(Loc, diag::err_std_type_trait_not_class_template) << Trait; 991 S.Diag(Found->getLocation(), diag::note_declared_at); 992 return true; 993 } 994 995 // Build the template-id. 996 QualType TraitTy = S.CheckTemplateIdType(TemplateName(TraitTD), Loc, Args); 997 if (TraitTy.isNull()) 998 return true; 999 if (!S.isCompleteType(Loc, TraitTy)) { 1000 if (DiagID) 1001 S.RequireCompleteType( 1002 Loc, TraitTy, DiagID, 1003 printTemplateArgs(S.Context.getPrintingPolicy(), Args)); 1004 return true; 1005 } 1006 1007 CXXRecordDecl *RD = TraitTy->getAsCXXRecordDecl(); 1008 assert(RD && "specialization of class template is not a class?"); 1009 1010 // Look up the member of the trait type. 1011 S.LookupQualifiedName(TraitMemberLookup, RD); 1012 return TraitMemberLookup.isAmbiguous(); 1013 } 1014 1015 static TemplateArgumentLoc 1016 getTrivialIntegralTemplateArgument(Sema &S, SourceLocation Loc, QualType T, 1017 uint64_t I) { 1018 TemplateArgument Arg(S.Context, S.Context.MakeIntValue(I, T), T); 1019 return S.getTrivialTemplateArgumentLoc(Arg, T, Loc); 1020 } 1021 1022 static TemplateArgumentLoc 1023 getTrivialTypeTemplateArgument(Sema &S, SourceLocation Loc, QualType T) { 1024 return S.getTrivialTemplateArgumentLoc(TemplateArgument(T), QualType(), Loc); 1025 } 1026 1027 namespace { enum class IsTupleLike { TupleLike, NotTupleLike, Error }; } 1028 1029 static IsTupleLike isTupleLike(Sema &S, SourceLocation Loc, QualType T, 1030 llvm::APSInt &Size) { 1031 EnterExpressionEvaluationContext ContextRAII( 1032 S, Sema::ExpressionEvaluationContext::ConstantEvaluated); 1033 1034 DeclarationName Value = S.PP.getIdentifierInfo("value"); 1035 LookupResult R(S, Value, Loc, Sema::LookupOrdinaryName); 1036 1037 // Form template argument list for tuple_size<T>. 1038 TemplateArgumentListInfo Args(Loc, Loc); 1039 Args.addArgument(getTrivialTypeTemplateArgument(S, Loc, T)); 1040 1041 // If there's no tuple_size specialization or the lookup of 'value' is empty, 1042 // it's not tuple-like. 1043 if (lookupStdTypeTraitMember(S, R, Loc, "tuple_size", Args, /*DiagID*/ 0) || 1044 R.empty()) 1045 return IsTupleLike::NotTupleLike; 1046 1047 // If we get this far, we've committed to the tuple interpretation, but 1048 // we can still fail if there actually isn't a usable ::value. 1049 1050 struct ICEDiagnoser : Sema::VerifyICEDiagnoser { 1051 LookupResult &R; 1052 TemplateArgumentListInfo &Args; 1053 ICEDiagnoser(LookupResult &R, TemplateArgumentListInfo &Args) 1054 : R(R), Args(Args) {} 1055 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) { 1056 S.Diag(Loc, diag::err_decomp_decl_std_tuple_size_not_constant) 1057 << printTemplateArgs(S.Context.getPrintingPolicy(), Args); 1058 } 1059 } Diagnoser(R, Args); 1060 1061 ExprResult E = 1062 S.BuildDeclarationNameExpr(CXXScopeSpec(), R, /*NeedsADL*/false); 1063 if (E.isInvalid()) 1064 return IsTupleLike::Error; 1065 1066 E = S.VerifyIntegerConstantExpression(E.get(), &Size, Diagnoser, false); 1067 if (E.isInvalid()) 1068 return IsTupleLike::Error; 1069 1070 return IsTupleLike::TupleLike; 1071 } 1072 1073 /// \return std::tuple_element<I, T>::type. 1074 static QualType getTupleLikeElementType(Sema &S, SourceLocation Loc, 1075 unsigned I, QualType T) { 1076 // Form template argument list for tuple_element<I, T>. 1077 TemplateArgumentListInfo Args(Loc, Loc); 1078 Args.addArgument( 1079 getTrivialIntegralTemplateArgument(S, Loc, S.Context.getSizeType(), I)); 1080 Args.addArgument(getTrivialTypeTemplateArgument(S, Loc, T)); 1081 1082 DeclarationName TypeDN = S.PP.getIdentifierInfo("type"); 1083 LookupResult R(S, TypeDN, Loc, Sema::LookupOrdinaryName); 1084 if (lookupStdTypeTraitMember( 1085 S, R, Loc, "tuple_element", Args, 1086 diag::err_decomp_decl_std_tuple_element_not_specialized)) 1087 return QualType(); 1088 1089 auto *TD = R.getAsSingle<TypeDecl>(); 1090 if (!TD) { 1091 R.suppressDiagnostics(); 1092 S.Diag(Loc, diag::err_decomp_decl_std_tuple_element_not_specialized) 1093 << printTemplateArgs(S.Context.getPrintingPolicy(), Args); 1094 if (!R.empty()) 1095 S.Diag(R.getRepresentativeDecl()->getLocation(), diag::note_declared_at); 1096 return QualType(); 1097 } 1098 1099 return S.Context.getTypeDeclType(TD); 1100 } 1101 1102 namespace { 1103 struct BindingDiagnosticTrap { 1104 Sema &S; 1105 DiagnosticErrorTrap Trap; 1106 BindingDecl *BD; 1107 1108 BindingDiagnosticTrap(Sema &S, BindingDecl *BD) 1109 : S(S), Trap(S.Diags), BD(BD) {} 1110 ~BindingDiagnosticTrap() { 1111 if (Trap.hasErrorOccurred()) 1112 S.Diag(BD->getLocation(), diag::note_in_binding_decl_init) << BD; 1113 } 1114 }; 1115 } 1116 1117 static bool checkTupleLikeDecomposition(Sema &S, 1118 ArrayRef<BindingDecl *> Bindings, 1119 VarDecl *Src, QualType DecompType, 1120 const llvm::APSInt &TupleSize) { 1121 if ((int64_t)Bindings.size() != TupleSize) { 1122 S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings) 1123 << DecompType << (unsigned)Bindings.size() << TupleSize.toString(10) 1124 << (TupleSize < Bindings.size()); 1125 return true; 1126 } 1127 1128 if (Bindings.empty()) 1129 return false; 1130 1131 DeclarationName GetDN = S.PP.getIdentifierInfo("get"); 1132 1133 // [dcl.decomp]p3: 1134 // The unqualified-id get is looked up in the scope of E by class member 1135 // access lookup ... 1136 LookupResult MemberGet(S, GetDN, Src->getLocation(), Sema::LookupMemberName); 1137 bool UseMemberGet = false; 1138 if (S.isCompleteType(Src->getLocation(), DecompType)) { 1139 if (auto *RD = DecompType->getAsCXXRecordDecl()) 1140 S.LookupQualifiedName(MemberGet, RD); 1141 if (MemberGet.isAmbiguous()) 1142 return true; 1143 // ... and if that finds at least one declaration that is a function 1144 // template whose first template parameter is a non-type parameter ... 1145 for (NamedDecl *D : MemberGet) { 1146 if (FunctionTemplateDecl *FTD = 1147 dyn_cast<FunctionTemplateDecl>(D->getUnderlyingDecl())) { 1148 TemplateParameterList *TPL = FTD->getTemplateParameters(); 1149 if (TPL->size() != 0 && 1150 isa<NonTypeTemplateParmDecl>(TPL->getParam(0))) { 1151 // ... the initializer is e.get<i>(). 1152 UseMemberGet = true; 1153 break; 1154 } 1155 } 1156 } 1157 } 1158 1159 unsigned I = 0; 1160 for (auto *B : Bindings) { 1161 BindingDiagnosticTrap Trap(S, B); 1162 SourceLocation Loc = B->getLocation(); 1163 1164 ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc); 1165 if (E.isInvalid()) 1166 return true; 1167 1168 // e is an lvalue if the type of the entity is an lvalue reference and 1169 // an xvalue otherwise 1170 if (!Src->getType()->isLValueReferenceType()) 1171 E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), CK_NoOp, 1172 E.get(), nullptr, VK_XValue); 1173 1174 TemplateArgumentListInfo Args(Loc, Loc); 1175 Args.addArgument( 1176 getTrivialIntegralTemplateArgument(S, Loc, S.Context.getSizeType(), I)); 1177 1178 if (UseMemberGet) { 1179 // if [lookup of member get] finds at least one declaration, the 1180 // initializer is e.get<i-1>(). 1181 E = S.BuildMemberReferenceExpr(E.get(), DecompType, Loc, false, 1182 CXXScopeSpec(), SourceLocation(), nullptr, 1183 MemberGet, &Args, nullptr); 1184 if (E.isInvalid()) 1185 return true; 1186 1187 E = S.BuildCallExpr(nullptr, E.get(), Loc, None, Loc); 1188 } else { 1189 // Otherwise, the initializer is get<i-1>(e), where get is looked up 1190 // in the associated namespaces. 1191 Expr *Get = UnresolvedLookupExpr::Create( 1192 S.Context, nullptr, NestedNameSpecifierLoc(), SourceLocation(), 1193 DeclarationNameInfo(GetDN, Loc), /*RequiresADL*/true, &Args, 1194 UnresolvedSetIterator(), UnresolvedSetIterator()); 1195 1196 Expr *Arg = E.get(); 1197 E = S.BuildCallExpr(nullptr, Get, Loc, Arg, Loc); 1198 } 1199 if (E.isInvalid()) 1200 return true; 1201 Expr *Init = E.get(); 1202 1203 // Given the type T designated by std::tuple_element<i - 1, E>::type, 1204 QualType T = getTupleLikeElementType(S, Loc, I, DecompType); 1205 if (T.isNull()) 1206 return true; 1207 1208 // each vi is a variable of type "reference to T" initialized with the 1209 // initializer, where the reference is an lvalue reference if the 1210 // initializer is an lvalue and an rvalue reference otherwise 1211 QualType RefType = 1212 S.BuildReferenceType(T, E.get()->isLValue(), Loc, B->getDeclName()); 1213 if (RefType.isNull()) 1214 return true; 1215 auto *RefVD = VarDecl::Create( 1216 S.Context, Src->getDeclContext(), Loc, Loc, 1217 B->getDeclName().getAsIdentifierInfo(), RefType, 1218 S.Context.getTrivialTypeSourceInfo(T, Loc), Src->getStorageClass()); 1219 RefVD->setLexicalDeclContext(Src->getLexicalDeclContext()); 1220 RefVD->setTSCSpec(Src->getTSCSpec()); 1221 RefVD->setImplicit(); 1222 if (Src->isInlineSpecified()) 1223 RefVD->setInlineSpecified(); 1224 RefVD->getLexicalDeclContext()->addHiddenDecl(RefVD); 1225 1226 InitializedEntity Entity = InitializedEntity::InitializeBinding(RefVD); 1227 InitializationKind Kind = InitializationKind::CreateCopy(Loc, Loc); 1228 InitializationSequence Seq(S, Entity, Kind, Init); 1229 E = Seq.Perform(S, Entity, Kind, Init); 1230 if (E.isInvalid()) 1231 return true; 1232 E = S.ActOnFinishFullExpr(E.get(), Loc, /*DiscardedValue*/ false); 1233 if (E.isInvalid()) 1234 return true; 1235 RefVD->setInit(E.get()); 1236 if (!E.get()->isValueDependent()) 1237 RefVD->checkInitIsICE(); 1238 1239 E = S.BuildDeclarationNameExpr(CXXScopeSpec(), 1240 DeclarationNameInfo(B->getDeclName(), Loc), 1241 RefVD); 1242 if (E.isInvalid()) 1243 return true; 1244 1245 B->setBinding(T, E.get()); 1246 I++; 1247 } 1248 1249 return false; 1250 } 1251 1252 /// Find the base class to decompose in a built-in decomposition of a class type. 1253 /// This base class search is, unfortunately, not quite like any other that we 1254 /// perform anywhere else in C++. 1255 static DeclAccessPair findDecomposableBaseClass(Sema &S, SourceLocation Loc, 1256 const CXXRecordDecl *RD, 1257 CXXCastPath &BasePath) { 1258 auto BaseHasFields = [](const CXXBaseSpecifier *Specifier, 1259 CXXBasePath &Path) { 1260 return Specifier->getType()->getAsCXXRecordDecl()->hasDirectFields(); 1261 }; 1262 1263 const CXXRecordDecl *ClassWithFields = nullptr; 1264 AccessSpecifier AS = AS_public; 1265 if (RD->hasDirectFields()) 1266 // [dcl.decomp]p4: 1267 // Otherwise, all of E's non-static data members shall be public direct 1268 // members of E ... 1269 ClassWithFields = RD; 1270 else { 1271 // ... or of ... 1272 CXXBasePaths Paths; 1273 Paths.setOrigin(const_cast<CXXRecordDecl*>(RD)); 1274 if (!RD->lookupInBases(BaseHasFields, Paths)) { 1275 // If no classes have fields, just decompose RD itself. (This will work 1276 // if and only if zero bindings were provided.) 1277 return DeclAccessPair::make(const_cast<CXXRecordDecl*>(RD), AS_public); 1278 } 1279 1280 CXXBasePath *BestPath = nullptr; 1281 for (auto &P : Paths) { 1282 if (!BestPath) 1283 BestPath = &P; 1284 else if (!S.Context.hasSameType(P.back().Base->getType(), 1285 BestPath->back().Base->getType())) { 1286 // ... the same ... 1287 S.Diag(Loc, diag::err_decomp_decl_multiple_bases_with_members) 1288 << false << RD << BestPath->back().Base->getType() 1289 << P.back().Base->getType(); 1290 return DeclAccessPair(); 1291 } else if (P.Access < BestPath->Access) { 1292 BestPath = &P; 1293 } 1294 } 1295 1296 // ... unambiguous ... 1297 QualType BaseType = BestPath->back().Base->getType(); 1298 if (Paths.isAmbiguous(S.Context.getCanonicalType(BaseType))) { 1299 S.Diag(Loc, diag::err_decomp_decl_ambiguous_base) 1300 << RD << BaseType << S.getAmbiguousPathsDisplayString(Paths); 1301 return DeclAccessPair(); 1302 } 1303 1304 // ... [accessible, implied by other rules] base class of E. 1305 S.CheckBaseClassAccess(Loc, BaseType, S.Context.getRecordType(RD), 1306 *BestPath, diag::err_decomp_decl_inaccessible_base); 1307 AS = BestPath->Access; 1308 1309 ClassWithFields = BaseType->getAsCXXRecordDecl(); 1310 S.BuildBasePathArray(Paths, BasePath); 1311 } 1312 1313 // The above search did not check whether the selected class itself has base 1314 // classes with fields, so check that now. 1315 CXXBasePaths Paths; 1316 if (ClassWithFields->lookupInBases(BaseHasFields, Paths)) { 1317 S.Diag(Loc, diag::err_decomp_decl_multiple_bases_with_members) 1318 << (ClassWithFields == RD) << RD << ClassWithFields 1319 << Paths.front().back().Base->getType(); 1320 return DeclAccessPair(); 1321 } 1322 1323 return DeclAccessPair::make(const_cast<CXXRecordDecl*>(ClassWithFields), AS); 1324 } 1325 1326 static bool checkMemberDecomposition(Sema &S, ArrayRef<BindingDecl*> Bindings, 1327 ValueDecl *Src, QualType DecompType, 1328 const CXXRecordDecl *OrigRD) { 1329 if (S.RequireCompleteType(Src->getLocation(), DecompType, 1330 diag::err_incomplete_type)) 1331 return true; 1332 1333 CXXCastPath BasePath; 1334 DeclAccessPair BasePair = 1335 findDecomposableBaseClass(S, Src->getLocation(), OrigRD, BasePath); 1336 const CXXRecordDecl *RD = cast_or_null<CXXRecordDecl>(BasePair.getDecl()); 1337 if (!RD) 1338 return true; 1339 QualType BaseType = S.Context.getQualifiedType(S.Context.getRecordType(RD), 1340 DecompType.getQualifiers()); 1341 1342 auto DiagnoseBadNumberOfBindings = [&]() -> bool { 1343 unsigned NumFields = 1344 std::count_if(RD->field_begin(), RD->field_end(), 1345 [](FieldDecl *FD) { return !FD->isUnnamedBitfield(); }); 1346 assert(Bindings.size() != NumFields); 1347 S.Diag(Src->getLocation(), diag::err_decomp_decl_wrong_number_bindings) 1348 << DecompType << (unsigned)Bindings.size() << NumFields 1349 << (NumFields < Bindings.size()); 1350 return true; 1351 }; 1352 1353 // all of E's non-static data members shall be [...] well-formed 1354 // when named as e.name in the context of the structured binding, 1355 // E shall not have an anonymous union member, ... 1356 unsigned I = 0; 1357 for (auto *FD : RD->fields()) { 1358 if (FD->isUnnamedBitfield()) 1359 continue; 1360 1361 if (FD->isAnonymousStructOrUnion()) { 1362 S.Diag(Src->getLocation(), diag::err_decomp_decl_anon_union_member) 1363 << DecompType << FD->getType()->isUnionType(); 1364 S.Diag(FD->getLocation(), diag::note_declared_at); 1365 return true; 1366 } 1367 1368 // We have a real field to bind. 1369 if (I >= Bindings.size()) 1370 return DiagnoseBadNumberOfBindings(); 1371 auto *B = Bindings[I++]; 1372 SourceLocation Loc = B->getLocation(); 1373 1374 // The field must be accessible in the context of the structured binding. 1375 // We already checked that the base class is accessible. 1376 // FIXME: Add 'const' to AccessedEntity's classes so we can remove the 1377 // const_cast here. 1378 S.CheckStructuredBindingMemberAccess( 1379 Loc, const_cast<CXXRecordDecl *>(OrigRD), 1380 DeclAccessPair::make(FD, CXXRecordDecl::MergeAccess( 1381 BasePair.getAccess(), FD->getAccess()))); 1382 1383 // Initialize the binding to Src.FD. 1384 ExprResult E = S.BuildDeclRefExpr(Src, DecompType, VK_LValue, Loc); 1385 if (E.isInvalid()) 1386 return true; 1387 E = S.ImpCastExprToType(E.get(), BaseType, CK_UncheckedDerivedToBase, 1388 VK_LValue, &BasePath); 1389 if (E.isInvalid()) 1390 return true; 1391 E = S.BuildFieldReferenceExpr(E.get(), /*IsArrow*/ false, Loc, 1392 CXXScopeSpec(), FD, 1393 DeclAccessPair::make(FD, FD->getAccess()), 1394 DeclarationNameInfo(FD->getDeclName(), Loc)); 1395 if (E.isInvalid()) 1396 return true; 1397 1398 // If the type of the member is T, the referenced type is cv T, where cv is 1399 // the cv-qualification of the decomposition expression. 1400 // 1401 // FIXME: We resolve a defect here: if the field is mutable, we do not add 1402 // 'const' to the type of the field. 1403 Qualifiers Q = DecompType.getQualifiers(); 1404 if (FD->isMutable()) 1405 Q.removeConst(); 1406 B->setBinding(S.BuildQualifiedType(FD->getType(), Loc, Q), E.get()); 1407 } 1408 1409 if (I != Bindings.size()) 1410 return DiagnoseBadNumberOfBindings(); 1411 1412 return false; 1413 } 1414 1415 void Sema::CheckCompleteDecompositionDeclaration(DecompositionDecl *DD) { 1416 QualType DecompType = DD->getType(); 1417 1418 // If the type of the decomposition is dependent, then so is the type of 1419 // each binding. 1420 if (DecompType->isDependentType()) { 1421 for (auto *B : DD->bindings()) 1422 B->setType(Context.DependentTy); 1423 return; 1424 } 1425 1426 DecompType = DecompType.getNonReferenceType(); 1427 ArrayRef<BindingDecl*> Bindings = DD->bindings(); 1428 1429 // C++1z [dcl.decomp]/2: 1430 // If E is an array type [...] 1431 // As an extension, we also support decomposition of built-in complex and 1432 // vector types. 1433 if (auto *CAT = Context.getAsConstantArrayType(DecompType)) { 1434 if (checkArrayDecomposition(*this, Bindings, DD, DecompType, CAT)) 1435 DD->setInvalidDecl(); 1436 return; 1437 } 1438 if (auto *VT = DecompType->getAs<VectorType>()) { 1439 if (checkVectorDecomposition(*this, Bindings, DD, DecompType, VT)) 1440 DD->setInvalidDecl(); 1441 return; 1442 } 1443 if (auto *CT = DecompType->getAs<ComplexType>()) { 1444 if (checkComplexDecomposition(*this, Bindings, DD, DecompType, CT)) 1445 DD->setInvalidDecl(); 1446 return; 1447 } 1448 1449 // C++1z [dcl.decomp]/3: 1450 // if the expression std::tuple_size<E>::value is a well-formed integral 1451 // constant expression, [...] 1452 llvm::APSInt TupleSize(32); 1453 switch (isTupleLike(*this, DD->getLocation(), DecompType, TupleSize)) { 1454 case IsTupleLike::Error: 1455 DD->setInvalidDecl(); 1456 return; 1457 1458 case IsTupleLike::TupleLike: 1459 if (checkTupleLikeDecomposition(*this, Bindings, DD, DecompType, TupleSize)) 1460 DD->setInvalidDecl(); 1461 return; 1462 1463 case IsTupleLike::NotTupleLike: 1464 break; 1465 } 1466 1467 // C++1z [dcl.dcl]/8: 1468 // [E shall be of array or non-union class type] 1469 CXXRecordDecl *RD = DecompType->getAsCXXRecordDecl(); 1470 if (!RD || RD->isUnion()) { 1471 Diag(DD->getLocation(), diag::err_decomp_decl_unbindable_type) 1472 << DD << !RD << DecompType; 1473 DD->setInvalidDecl(); 1474 return; 1475 } 1476 1477 // C++1z [dcl.decomp]/4: 1478 // all of E's non-static data members shall be [...] direct members of 1479 // E or of the same unambiguous public base class of E, ... 1480 if (checkMemberDecomposition(*this, Bindings, DD, DecompType, RD)) 1481 DD->setInvalidDecl(); 1482 } 1483 1484 /// Merge the exception specifications of two variable declarations. 1485 /// 1486 /// This is called when there's a redeclaration of a VarDecl. The function 1487 /// checks if the redeclaration might have an exception specification and 1488 /// validates compatibility and merges the specs if necessary. 1489 void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) { 1490 // Shortcut if exceptions are disabled. 1491 if (!getLangOpts().CXXExceptions) 1492 return; 1493 1494 assert(Context.hasSameType(New->getType(), Old->getType()) && 1495 "Should only be called if types are otherwise the same."); 1496 1497 QualType NewType = New->getType(); 1498 QualType OldType = Old->getType(); 1499 1500 // We're only interested in pointers and references to functions, as well 1501 // as pointers to member functions. 1502 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) { 1503 NewType = R->getPointeeType(); 1504 OldType = OldType->castAs<ReferenceType>()->getPointeeType(); 1505 } else if (const PointerType *P = NewType->getAs<PointerType>()) { 1506 NewType = P->getPointeeType(); 1507 OldType = OldType->castAs<PointerType>()->getPointeeType(); 1508 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) { 1509 NewType = M->getPointeeType(); 1510 OldType = OldType->castAs<MemberPointerType>()->getPointeeType(); 1511 } 1512 1513 if (!NewType->isFunctionProtoType()) 1514 return; 1515 1516 // There's lots of special cases for functions. For function pointers, system 1517 // libraries are hopefully not as broken so that we don't need these 1518 // workarounds. 1519 if (CheckEquivalentExceptionSpec( 1520 OldType->getAs<FunctionProtoType>(), Old->getLocation(), 1521 NewType->getAs<FunctionProtoType>(), New->getLocation())) { 1522 New->setInvalidDecl(); 1523 } 1524 } 1525 1526 /// CheckCXXDefaultArguments - Verify that the default arguments for a 1527 /// function declaration are well-formed according to C++ 1528 /// [dcl.fct.default]. 1529 void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) { 1530 unsigned NumParams = FD->getNumParams(); 1531 unsigned p; 1532 1533 // Find first parameter with a default argument 1534 for (p = 0; p < NumParams; ++p) { 1535 ParmVarDecl *Param = FD->getParamDecl(p); 1536 if (Param->hasDefaultArg()) 1537 break; 1538 } 1539 1540 // C++11 [dcl.fct.default]p4: 1541 // In a given function declaration, each parameter subsequent to a parameter 1542 // with a default argument shall have a default argument supplied in this or 1543 // a previous declaration or shall be a function parameter pack. A default 1544 // argument shall not be redefined by a later declaration (not even to the 1545 // same value). 1546 unsigned LastMissingDefaultArg = 0; 1547 for (; p < NumParams; ++p) { 1548 ParmVarDecl *Param = FD->getParamDecl(p); 1549 if (!Param->hasDefaultArg() && !Param->isParameterPack()) { 1550 if (Param->isInvalidDecl()) 1551 /* We already complained about this parameter. */; 1552 else if (Param->getIdentifier()) 1553 Diag(Param->getLocation(), 1554 diag::err_param_default_argument_missing_name) 1555 << Param->getIdentifier(); 1556 else 1557 Diag(Param->getLocation(), 1558 diag::err_param_default_argument_missing); 1559 1560 LastMissingDefaultArg = p; 1561 } 1562 } 1563 1564 if (LastMissingDefaultArg > 0) { 1565 // Some default arguments were missing. Clear out all of the 1566 // default arguments up to (and including) the last missing 1567 // default argument, so that we leave the function parameters 1568 // in a semantically valid state. 1569 for (p = 0; p <= LastMissingDefaultArg; ++p) { 1570 ParmVarDecl *Param = FD->getParamDecl(p); 1571 if (Param->hasDefaultArg()) { 1572 Param->setDefaultArg(nullptr); 1573 } 1574 } 1575 } 1576 } 1577 1578 /// Check that the given type is a literal type. Issue a diagnostic if not, 1579 /// if Kind is Diagnose. 1580 /// \return \c true if a problem has been found (and optionally diagnosed). 1581 template <typename... Ts> 1582 static bool CheckLiteralType(Sema &SemaRef, Sema::CheckConstexprKind Kind, 1583 SourceLocation Loc, QualType T, unsigned DiagID, 1584 Ts &&...DiagArgs) { 1585 if (T->isDependentType()) 1586 return false; 1587 1588 switch (Kind) { 1589 case Sema::CheckConstexprKind::Diagnose: 1590 return SemaRef.RequireLiteralType(Loc, T, DiagID, 1591 std::forward<Ts>(DiagArgs)...); 1592 1593 case Sema::CheckConstexprKind::CheckValid: 1594 return !T->isLiteralType(SemaRef.Context); 1595 } 1596 1597 llvm_unreachable("unknown CheckConstexprKind"); 1598 } 1599 1600 /// Determine whether a destructor cannot be constexpr due to 1601 static bool CheckConstexprDestructorSubobjects(Sema &SemaRef, 1602 const CXXDestructorDecl *DD, 1603 Sema::CheckConstexprKind Kind) { 1604 auto Check = [&](SourceLocation Loc, QualType T, const FieldDecl *FD) { 1605 const CXXRecordDecl *RD = 1606 T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 1607 if (!RD || RD->hasConstexprDestructor()) 1608 return true; 1609 1610 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1611 SemaRef.Diag(DD->getLocation(), diag::err_constexpr_dtor_subobject) 1612 << DD->getConstexprKind() << !FD 1613 << (FD ? FD->getDeclName() : DeclarationName()) << T; 1614 SemaRef.Diag(Loc, diag::note_constexpr_dtor_subobject) 1615 << !FD << (FD ? FD->getDeclName() : DeclarationName()) << T; 1616 } 1617 return false; 1618 }; 1619 1620 const CXXRecordDecl *RD = DD->getParent(); 1621 for (const CXXBaseSpecifier &B : RD->bases()) 1622 if (!Check(B.getBaseTypeLoc(), B.getType(), nullptr)) 1623 return false; 1624 for (const FieldDecl *FD : RD->fields()) 1625 if (!Check(FD->getLocation(), FD->getType(), FD)) 1626 return false; 1627 return true; 1628 } 1629 1630 /// Check whether a function's parameter types are all literal types. If so, 1631 /// return true. If not, produce a suitable diagnostic and return false. 1632 static bool CheckConstexprParameterTypes(Sema &SemaRef, 1633 const FunctionDecl *FD, 1634 Sema::CheckConstexprKind Kind) { 1635 unsigned ArgIndex = 0; 1636 const auto *FT = FD->getType()->castAs<FunctionProtoType>(); 1637 for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(), 1638 e = FT->param_type_end(); 1639 i != e; ++i, ++ArgIndex) { 1640 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex); 1641 SourceLocation ParamLoc = PD->getLocation(); 1642 if (CheckLiteralType(SemaRef, Kind, ParamLoc, *i, 1643 diag::err_constexpr_non_literal_param, ArgIndex + 1, 1644 PD->getSourceRange(), isa<CXXConstructorDecl>(FD), 1645 FD->isConsteval())) 1646 return false; 1647 } 1648 return true; 1649 } 1650 1651 /// Check whether a function's return type is a literal type. If so, return 1652 /// true. If not, produce a suitable diagnostic and return false. 1653 static bool CheckConstexprReturnType(Sema &SemaRef, const FunctionDecl *FD, 1654 Sema::CheckConstexprKind Kind) { 1655 if (CheckLiteralType(SemaRef, Kind, FD->getLocation(), FD->getReturnType(), 1656 diag::err_constexpr_non_literal_return, 1657 FD->isConsteval())) 1658 return false; 1659 return true; 1660 } 1661 1662 /// Get diagnostic %select index for tag kind for 1663 /// record diagnostic message. 1664 /// WARNING: Indexes apply to particular diagnostics only! 1665 /// 1666 /// \returns diagnostic %select index. 1667 static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) { 1668 switch (Tag) { 1669 case TTK_Struct: return 0; 1670 case TTK_Interface: return 1; 1671 case TTK_Class: return 2; 1672 default: llvm_unreachable("Invalid tag kind for record diagnostic!"); 1673 } 1674 } 1675 1676 static bool CheckConstexprFunctionBody(Sema &SemaRef, const FunctionDecl *Dcl, 1677 Stmt *Body, 1678 Sema::CheckConstexprKind Kind); 1679 1680 // Check whether a function declaration satisfies the requirements of a 1681 // constexpr function definition or a constexpr constructor definition. If so, 1682 // return true. If not, produce appropriate diagnostics (unless asked not to by 1683 // Kind) and return false. 1684 // 1685 // This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360. 1686 bool Sema::CheckConstexprFunctionDefinition(const FunctionDecl *NewFD, 1687 CheckConstexprKind Kind) { 1688 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 1689 if (MD && MD->isInstance()) { 1690 // C++11 [dcl.constexpr]p4: 1691 // The definition of a constexpr constructor shall satisfy the following 1692 // constraints: 1693 // - the class shall not have any virtual base classes; 1694 // 1695 // FIXME: This only applies to constructors and destructors, not arbitrary 1696 // member functions. 1697 const CXXRecordDecl *RD = MD->getParent(); 1698 if (RD->getNumVBases()) { 1699 if (Kind == CheckConstexprKind::CheckValid) 1700 return false; 1701 1702 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base) 1703 << isa<CXXConstructorDecl>(NewFD) 1704 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases(); 1705 for (const auto &I : RD->vbases()) 1706 Diag(I.getBeginLoc(), diag::note_constexpr_virtual_base_here) 1707 << I.getSourceRange(); 1708 return false; 1709 } 1710 } 1711 1712 if (!isa<CXXConstructorDecl>(NewFD)) { 1713 // C++11 [dcl.constexpr]p3: 1714 // The definition of a constexpr function shall satisfy the following 1715 // constraints: 1716 // - it shall not be virtual; (removed in C++20) 1717 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD); 1718 if (Method && Method->isVirtual()) { 1719 if (getLangOpts().CPlusPlus2a) { 1720 if (Kind == CheckConstexprKind::Diagnose) 1721 Diag(Method->getLocation(), diag::warn_cxx17_compat_constexpr_virtual); 1722 } else { 1723 if (Kind == CheckConstexprKind::CheckValid) 1724 return false; 1725 1726 Method = Method->getCanonicalDecl(); 1727 Diag(Method->getLocation(), diag::err_constexpr_virtual); 1728 1729 // If it's not obvious why this function is virtual, find an overridden 1730 // function which uses the 'virtual' keyword. 1731 const CXXMethodDecl *WrittenVirtual = Method; 1732 while (!WrittenVirtual->isVirtualAsWritten()) 1733 WrittenVirtual = *WrittenVirtual->begin_overridden_methods(); 1734 if (WrittenVirtual != Method) 1735 Diag(WrittenVirtual->getLocation(), 1736 diag::note_overridden_virtual_function); 1737 return false; 1738 } 1739 } 1740 1741 // - its return type shall be a literal type; 1742 if (!CheckConstexprReturnType(*this, NewFD, Kind)) 1743 return false; 1744 } 1745 1746 if (auto *Dtor = dyn_cast<CXXDestructorDecl>(NewFD)) { 1747 // A destructor can be constexpr only if the defaulted destructor could be; 1748 // we don't need to check the members and bases if we already know they all 1749 // have constexpr destructors. 1750 if (!Dtor->getParent()->defaultedDestructorIsConstexpr()) { 1751 if (Kind == CheckConstexprKind::CheckValid) 1752 return false; 1753 if (!CheckConstexprDestructorSubobjects(*this, Dtor, Kind)) 1754 return false; 1755 } 1756 } 1757 1758 // - each of its parameter types shall be a literal type; 1759 if (!CheckConstexprParameterTypes(*this, NewFD, Kind)) 1760 return false; 1761 1762 Stmt *Body = NewFD->getBody(); 1763 assert(Body && 1764 "CheckConstexprFunctionDefinition called on function with no body"); 1765 return CheckConstexprFunctionBody(*this, NewFD, Body, Kind); 1766 } 1767 1768 /// Check the given declaration statement is legal within a constexpr function 1769 /// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3. 1770 /// 1771 /// \return true if the body is OK (maybe only as an extension), false if we 1772 /// have diagnosed a problem. 1773 static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl, 1774 DeclStmt *DS, SourceLocation &Cxx1yLoc, 1775 Sema::CheckConstexprKind Kind) { 1776 // C++11 [dcl.constexpr]p3 and p4: 1777 // The definition of a constexpr function(p3) or constructor(p4) [...] shall 1778 // contain only 1779 for (const auto *DclIt : DS->decls()) { 1780 switch (DclIt->getKind()) { 1781 case Decl::StaticAssert: 1782 case Decl::Using: 1783 case Decl::UsingShadow: 1784 case Decl::UsingDirective: 1785 case Decl::UnresolvedUsingTypename: 1786 case Decl::UnresolvedUsingValue: 1787 // - static_assert-declarations 1788 // - using-declarations, 1789 // - using-directives, 1790 continue; 1791 1792 case Decl::Typedef: 1793 case Decl::TypeAlias: { 1794 // - typedef declarations and alias-declarations that do not define 1795 // classes or enumerations, 1796 const auto *TN = cast<TypedefNameDecl>(DclIt); 1797 if (TN->getUnderlyingType()->isVariablyModifiedType()) { 1798 // Don't allow variably-modified types in constexpr functions. 1799 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1800 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc(); 1801 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla) 1802 << TL.getSourceRange() << TL.getType() 1803 << isa<CXXConstructorDecl>(Dcl); 1804 } 1805 return false; 1806 } 1807 continue; 1808 } 1809 1810 case Decl::Enum: 1811 case Decl::CXXRecord: 1812 // C++1y allows types to be defined, not just declared. 1813 if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition()) { 1814 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1815 SemaRef.Diag(DS->getBeginLoc(), 1816 SemaRef.getLangOpts().CPlusPlus14 1817 ? diag::warn_cxx11_compat_constexpr_type_definition 1818 : diag::ext_constexpr_type_definition) 1819 << isa<CXXConstructorDecl>(Dcl); 1820 } else if (!SemaRef.getLangOpts().CPlusPlus14) { 1821 return false; 1822 } 1823 } 1824 continue; 1825 1826 case Decl::EnumConstant: 1827 case Decl::IndirectField: 1828 case Decl::ParmVar: 1829 // These can only appear with other declarations which are banned in 1830 // C++11 and permitted in C++1y, so ignore them. 1831 continue; 1832 1833 case Decl::Var: 1834 case Decl::Decomposition: { 1835 // C++1y [dcl.constexpr]p3 allows anything except: 1836 // a definition of a variable of non-literal type or of static or 1837 // thread storage duration or [before C++2a] for which no 1838 // initialization is performed. 1839 const auto *VD = cast<VarDecl>(DclIt); 1840 if (VD->isThisDeclarationADefinition()) { 1841 if (VD->isStaticLocal()) { 1842 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1843 SemaRef.Diag(VD->getLocation(), 1844 diag::err_constexpr_local_var_static) 1845 << isa<CXXConstructorDecl>(Dcl) 1846 << (VD->getTLSKind() == VarDecl::TLS_Dynamic); 1847 } 1848 return false; 1849 } 1850 if (CheckLiteralType(SemaRef, Kind, VD->getLocation(), VD->getType(), 1851 diag::err_constexpr_local_var_non_literal_type, 1852 isa<CXXConstructorDecl>(Dcl))) 1853 return false; 1854 if (!VD->getType()->isDependentType() && 1855 !VD->hasInit() && !VD->isCXXForRangeDecl()) { 1856 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1857 SemaRef.Diag( 1858 VD->getLocation(), 1859 SemaRef.getLangOpts().CPlusPlus2a 1860 ? diag::warn_cxx17_compat_constexpr_local_var_no_init 1861 : diag::ext_constexpr_local_var_no_init) 1862 << isa<CXXConstructorDecl>(Dcl); 1863 } else if (!SemaRef.getLangOpts().CPlusPlus2a) { 1864 return false; 1865 } 1866 continue; 1867 } 1868 } 1869 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1870 SemaRef.Diag(VD->getLocation(), 1871 SemaRef.getLangOpts().CPlusPlus14 1872 ? diag::warn_cxx11_compat_constexpr_local_var 1873 : diag::ext_constexpr_local_var) 1874 << isa<CXXConstructorDecl>(Dcl); 1875 } else if (!SemaRef.getLangOpts().CPlusPlus14) { 1876 return false; 1877 } 1878 continue; 1879 } 1880 1881 case Decl::NamespaceAlias: 1882 case Decl::Function: 1883 // These are disallowed in C++11 and permitted in C++1y. Allow them 1884 // everywhere as an extension. 1885 if (!Cxx1yLoc.isValid()) 1886 Cxx1yLoc = DS->getBeginLoc(); 1887 continue; 1888 1889 default: 1890 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1891 SemaRef.Diag(DS->getBeginLoc(), diag::err_constexpr_body_invalid_stmt) 1892 << isa<CXXConstructorDecl>(Dcl) << Dcl->isConsteval(); 1893 } 1894 return false; 1895 } 1896 } 1897 1898 return true; 1899 } 1900 1901 /// Check that the given field is initialized within a constexpr constructor. 1902 /// 1903 /// \param Dcl The constexpr constructor being checked. 1904 /// \param Field The field being checked. This may be a member of an anonymous 1905 /// struct or union nested within the class being checked. 1906 /// \param Inits All declarations, including anonymous struct/union members and 1907 /// indirect members, for which any initialization was provided. 1908 /// \param Diagnosed Whether we've emitted the error message yet. Used to attach 1909 /// multiple notes for different members to the same error. 1910 /// \param Kind Whether we're diagnosing a constructor as written or determining 1911 /// whether the formal requirements are satisfied. 1912 /// \return \c false if we're checking for validity and the constructor does 1913 /// not satisfy the requirements on a constexpr constructor. 1914 static bool CheckConstexprCtorInitializer(Sema &SemaRef, 1915 const FunctionDecl *Dcl, 1916 FieldDecl *Field, 1917 llvm::SmallSet<Decl*, 16> &Inits, 1918 bool &Diagnosed, 1919 Sema::CheckConstexprKind Kind) { 1920 // In C++20 onwards, there's nothing to check for validity. 1921 if (Kind == Sema::CheckConstexprKind::CheckValid && 1922 SemaRef.getLangOpts().CPlusPlus2a) 1923 return true; 1924 1925 if (Field->isInvalidDecl()) 1926 return true; 1927 1928 if (Field->isUnnamedBitfield()) 1929 return true; 1930 1931 // Anonymous unions with no variant members and empty anonymous structs do not 1932 // need to be explicitly initialized. FIXME: Anonymous structs that contain no 1933 // indirect fields don't need initializing. 1934 if (Field->isAnonymousStructOrUnion() && 1935 (Field->getType()->isUnionType() 1936 ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers() 1937 : Field->getType()->getAsCXXRecordDecl()->isEmpty())) 1938 return true; 1939 1940 if (!Inits.count(Field)) { 1941 if (Kind == Sema::CheckConstexprKind::Diagnose) { 1942 if (!Diagnosed) { 1943 SemaRef.Diag(Dcl->getLocation(), 1944 SemaRef.getLangOpts().CPlusPlus2a 1945 ? diag::warn_cxx17_compat_constexpr_ctor_missing_init 1946 : diag::ext_constexpr_ctor_missing_init); 1947 Diagnosed = true; 1948 } 1949 SemaRef.Diag(Field->getLocation(), 1950 diag::note_constexpr_ctor_missing_init); 1951 } else if (!SemaRef.getLangOpts().CPlusPlus2a) { 1952 return false; 1953 } 1954 } else if (Field->isAnonymousStructOrUnion()) { 1955 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl(); 1956 for (auto *I : RD->fields()) 1957 // If an anonymous union contains an anonymous struct of which any member 1958 // is initialized, all members must be initialized. 1959 if (!RD->isUnion() || Inits.count(I)) 1960 if (!CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed, 1961 Kind)) 1962 return false; 1963 } 1964 return true; 1965 } 1966 1967 /// Check the provided statement is allowed in a constexpr function 1968 /// definition. 1969 static bool 1970 CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S, 1971 SmallVectorImpl<SourceLocation> &ReturnStmts, 1972 SourceLocation &Cxx1yLoc, SourceLocation &Cxx2aLoc, 1973 Sema::CheckConstexprKind Kind) { 1974 // - its function-body shall be [...] a compound-statement that contains only 1975 switch (S->getStmtClass()) { 1976 case Stmt::NullStmtClass: 1977 // - null statements, 1978 return true; 1979 1980 case Stmt::DeclStmtClass: 1981 // - static_assert-declarations 1982 // - using-declarations, 1983 // - using-directives, 1984 // - typedef declarations and alias-declarations that do not define 1985 // classes or enumerations, 1986 if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc, Kind)) 1987 return false; 1988 return true; 1989 1990 case Stmt::ReturnStmtClass: 1991 // - and exactly one return statement; 1992 if (isa<CXXConstructorDecl>(Dcl)) { 1993 // C++1y allows return statements in constexpr constructors. 1994 if (!Cxx1yLoc.isValid()) 1995 Cxx1yLoc = S->getBeginLoc(); 1996 return true; 1997 } 1998 1999 ReturnStmts.push_back(S->getBeginLoc()); 2000 return true; 2001 2002 case Stmt::CompoundStmtClass: { 2003 // C++1y allows compound-statements. 2004 if (!Cxx1yLoc.isValid()) 2005 Cxx1yLoc = S->getBeginLoc(); 2006 2007 CompoundStmt *CompStmt = cast<CompoundStmt>(S); 2008 for (auto *BodyIt : CompStmt->body()) { 2009 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts, 2010 Cxx1yLoc, Cxx2aLoc, Kind)) 2011 return false; 2012 } 2013 return true; 2014 } 2015 2016 case Stmt::AttributedStmtClass: 2017 if (!Cxx1yLoc.isValid()) 2018 Cxx1yLoc = S->getBeginLoc(); 2019 return true; 2020 2021 case Stmt::IfStmtClass: { 2022 // C++1y allows if-statements. 2023 if (!Cxx1yLoc.isValid()) 2024 Cxx1yLoc = S->getBeginLoc(); 2025 2026 IfStmt *If = cast<IfStmt>(S); 2027 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts, 2028 Cxx1yLoc, Cxx2aLoc, Kind)) 2029 return false; 2030 if (If->getElse() && 2031 !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts, 2032 Cxx1yLoc, Cxx2aLoc, Kind)) 2033 return false; 2034 return true; 2035 } 2036 2037 case Stmt::WhileStmtClass: 2038 case Stmt::DoStmtClass: 2039 case Stmt::ForStmtClass: 2040 case Stmt::CXXForRangeStmtClass: 2041 case Stmt::ContinueStmtClass: 2042 // C++1y allows all of these. We don't allow them as extensions in C++11, 2043 // because they don't make sense without variable mutation. 2044 if (!SemaRef.getLangOpts().CPlusPlus14) 2045 break; 2046 if (!Cxx1yLoc.isValid()) 2047 Cxx1yLoc = S->getBeginLoc(); 2048 for (Stmt *SubStmt : S->children()) 2049 if (SubStmt && 2050 !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts, 2051 Cxx1yLoc, Cxx2aLoc, Kind)) 2052 return false; 2053 return true; 2054 2055 case Stmt::SwitchStmtClass: 2056 case Stmt::CaseStmtClass: 2057 case Stmt::DefaultStmtClass: 2058 case Stmt::BreakStmtClass: 2059 // C++1y allows switch-statements, and since they don't need variable 2060 // mutation, we can reasonably allow them in C++11 as an extension. 2061 if (!Cxx1yLoc.isValid()) 2062 Cxx1yLoc = S->getBeginLoc(); 2063 for (Stmt *SubStmt : S->children()) 2064 if (SubStmt && 2065 !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts, 2066 Cxx1yLoc, Cxx2aLoc, Kind)) 2067 return false; 2068 return true; 2069 2070 case Stmt::GCCAsmStmtClass: 2071 case Stmt::MSAsmStmtClass: 2072 // C++2a allows inline assembly statements. 2073 case Stmt::CXXTryStmtClass: 2074 if (Cxx2aLoc.isInvalid()) 2075 Cxx2aLoc = S->getBeginLoc(); 2076 for (Stmt *SubStmt : S->children()) { 2077 if (SubStmt && 2078 !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts, 2079 Cxx1yLoc, Cxx2aLoc, Kind)) 2080 return false; 2081 } 2082 return true; 2083 2084 case Stmt::CXXCatchStmtClass: 2085 // Do not bother checking the language mode (already covered by the 2086 // try block check). 2087 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, 2088 cast<CXXCatchStmt>(S)->getHandlerBlock(), 2089 ReturnStmts, Cxx1yLoc, Cxx2aLoc, Kind)) 2090 return false; 2091 return true; 2092 2093 default: 2094 if (!isa<Expr>(S)) 2095 break; 2096 2097 // C++1y allows expression-statements. 2098 if (!Cxx1yLoc.isValid()) 2099 Cxx1yLoc = S->getBeginLoc(); 2100 return true; 2101 } 2102 2103 if (Kind == Sema::CheckConstexprKind::Diagnose) { 2104 SemaRef.Diag(S->getBeginLoc(), diag::err_constexpr_body_invalid_stmt) 2105 << isa<CXXConstructorDecl>(Dcl) << Dcl->isConsteval(); 2106 } 2107 return false; 2108 } 2109 2110 /// Check the body for the given constexpr function declaration only contains 2111 /// the permitted types of statement. C++11 [dcl.constexpr]p3,p4. 2112 /// 2113 /// \return true if the body is OK, false if we have found or diagnosed a 2114 /// problem. 2115 static bool CheckConstexprFunctionBody(Sema &SemaRef, const FunctionDecl *Dcl, 2116 Stmt *Body, 2117 Sema::CheckConstexprKind Kind) { 2118 SmallVector<SourceLocation, 4> ReturnStmts; 2119 2120 if (isa<CXXTryStmt>(Body)) { 2121 // C++11 [dcl.constexpr]p3: 2122 // The definition of a constexpr function shall satisfy the following 2123 // constraints: [...] 2124 // - its function-body shall be = delete, = default, or a 2125 // compound-statement 2126 // 2127 // C++11 [dcl.constexpr]p4: 2128 // In the definition of a constexpr constructor, [...] 2129 // - its function-body shall not be a function-try-block; 2130 // 2131 // This restriction is lifted in C++2a, as long as inner statements also 2132 // apply the general constexpr rules. 2133 switch (Kind) { 2134 case Sema::CheckConstexprKind::CheckValid: 2135 if (!SemaRef.getLangOpts().CPlusPlus2a) 2136 return false; 2137 break; 2138 2139 case Sema::CheckConstexprKind::Diagnose: 2140 SemaRef.Diag(Body->getBeginLoc(), 2141 !SemaRef.getLangOpts().CPlusPlus2a 2142 ? diag::ext_constexpr_function_try_block_cxx2a 2143 : diag::warn_cxx17_compat_constexpr_function_try_block) 2144 << isa<CXXConstructorDecl>(Dcl); 2145 break; 2146 } 2147 } 2148 2149 // - its function-body shall be [...] a compound-statement that contains only 2150 // [... list of cases ...] 2151 // 2152 // Note that walking the children here is enough to properly check for 2153 // CompoundStmt and CXXTryStmt body. 2154 SourceLocation Cxx1yLoc, Cxx2aLoc; 2155 for (Stmt *SubStmt : Body->children()) { 2156 if (SubStmt && 2157 !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts, 2158 Cxx1yLoc, Cxx2aLoc, Kind)) 2159 return false; 2160 } 2161 2162 if (Kind == Sema::CheckConstexprKind::CheckValid) { 2163 // If this is only valid as an extension, report that we don't satisfy the 2164 // constraints of the current language. 2165 if ((Cxx2aLoc.isValid() && !SemaRef.getLangOpts().CPlusPlus2a) || 2166 (Cxx1yLoc.isValid() && !SemaRef.getLangOpts().CPlusPlus17)) 2167 return false; 2168 } else if (Cxx2aLoc.isValid()) { 2169 SemaRef.Diag(Cxx2aLoc, 2170 SemaRef.getLangOpts().CPlusPlus2a 2171 ? diag::warn_cxx17_compat_constexpr_body_invalid_stmt 2172 : diag::ext_constexpr_body_invalid_stmt_cxx2a) 2173 << isa<CXXConstructorDecl>(Dcl); 2174 } else if (Cxx1yLoc.isValid()) { 2175 SemaRef.Diag(Cxx1yLoc, 2176 SemaRef.getLangOpts().CPlusPlus14 2177 ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt 2178 : diag::ext_constexpr_body_invalid_stmt) 2179 << isa<CXXConstructorDecl>(Dcl); 2180 } 2181 2182 if (const CXXConstructorDecl *Constructor 2183 = dyn_cast<CXXConstructorDecl>(Dcl)) { 2184 const CXXRecordDecl *RD = Constructor->getParent(); 2185 // DR1359: 2186 // - every non-variant non-static data member and base class sub-object 2187 // shall be initialized; 2188 // DR1460: 2189 // - if the class is a union having variant members, exactly one of them 2190 // shall be initialized; 2191 if (RD->isUnion()) { 2192 if (Constructor->getNumCtorInitializers() == 0 && 2193 RD->hasVariantMembers()) { 2194 if (Kind == Sema::CheckConstexprKind::Diagnose) { 2195 SemaRef.Diag( 2196 Dcl->getLocation(), 2197 SemaRef.getLangOpts().CPlusPlus2a 2198 ? diag::warn_cxx17_compat_constexpr_union_ctor_no_init 2199 : diag::ext_constexpr_union_ctor_no_init); 2200 } else if (!SemaRef.getLangOpts().CPlusPlus2a) { 2201 return false; 2202 } 2203 } 2204 } else if (!Constructor->isDependentContext() && 2205 !Constructor->isDelegatingConstructor()) { 2206 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases"); 2207 2208 // Skip detailed checking if we have enough initializers, and we would 2209 // allow at most one initializer per member. 2210 bool AnyAnonStructUnionMembers = false; 2211 unsigned Fields = 0; 2212 for (CXXRecordDecl::field_iterator I = RD->field_begin(), 2213 E = RD->field_end(); I != E; ++I, ++Fields) { 2214 if (I->isAnonymousStructOrUnion()) { 2215 AnyAnonStructUnionMembers = true; 2216 break; 2217 } 2218 } 2219 // DR1460: 2220 // - if the class is a union-like class, but is not a union, for each of 2221 // its anonymous union members having variant members, exactly one of 2222 // them shall be initialized; 2223 if (AnyAnonStructUnionMembers || 2224 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) { 2225 // Check initialization of non-static data members. Base classes are 2226 // always initialized so do not need to be checked. Dependent bases 2227 // might not have initializers in the member initializer list. 2228 llvm::SmallSet<Decl*, 16> Inits; 2229 for (const auto *I: Constructor->inits()) { 2230 if (FieldDecl *FD = I->getMember()) 2231 Inits.insert(FD); 2232 else if (IndirectFieldDecl *ID = I->getIndirectMember()) 2233 Inits.insert(ID->chain_begin(), ID->chain_end()); 2234 } 2235 2236 bool Diagnosed = false; 2237 for (auto *I : RD->fields()) 2238 if (!CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed, 2239 Kind)) 2240 return false; 2241 } 2242 } 2243 } else { 2244 if (ReturnStmts.empty()) { 2245 // C++1y doesn't require constexpr functions to contain a 'return' 2246 // statement. We still do, unless the return type might be void, because 2247 // otherwise if there's no return statement, the function cannot 2248 // be used in a core constant expression. 2249 bool OK = SemaRef.getLangOpts().CPlusPlus14 && 2250 (Dcl->getReturnType()->isVoidType() || 2251 Dcl->getReturnType()->isDependentType()); 2252 switch (Kind) { 2253 case Sema::CheckConstexprKind::Diagnose: 2254 SemaRef.Diag(Dcl->getLocation(), 2255 OK ? diag::warn_cxx11_compat_constexpr_body_no_return 2256 : diag::err_constexpr_body_no_return) 2257 << Dcl->isConsteval(); 2258 if (!OK) 2259 return false; 2260 break; 2261 2262 case Sema::CheckConstexprKind::CheckValid: 2263 // The formal requirements don't include this rule in C++14, even 2264 // though the "must be able to produce a constant expression" rules 2265 // still imply it in some cases. 2266 if (!SemaRef.getLangOpts().CPlusPlus14) 2267 return false; 2268 break; 2269 } 2270 } else if (ReturnStmts.size() > 1) { 2271 switch (Kind) { 2272 case Sema::CheckConstexprKind::Diagnose: 2273 SemaRef.Diag( 2274 ReturnStmts.back(), 2275 SemaRef.getLangOpts().CPlusPlus14 2276 ? diag::warn_cxx11_compat_constexpr_body_multiple_return 2277 : diag::ext_constexpr_body_multiple_return); 2278 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I) 2279 SemaRef.Diag(ReturnStmts[I], 2280 diag::note_constexpr_body_previous_return); 2281 break; 2282 2283 case Sema::CheckConstexprKind::CheckValid: 2284 if (!SemaRef.getLangOpts().CPlusPlus14) 2285 return false; 2286 break; 2287 } 2288 } 2289 } 2290 2291 // C++11 [dcl.constexpr]p5: 2292 // if no function argument values exist such that the function invocation 2293 // substitution would produce a constant expression, the program is 2294 // ill-formed; no diagnostic required. 2295 // C++11 [dcl.constexpr]p3: 2296 // - every constructor call and implicit conversion used in initializing the 2297 // return value shall be one of those allowed in a constant expression. 2298 // C++11 [dcl.constexpr]p4: 2299 // - every constructor involved in initializing non-static data members and 2300 // base class sub-objects shall be a constexpr constructor. 2301 // 2302 // Note that this rule is distinct from the "requirements for a constexpr 2303 // function", so is not checked in CheckValid mode. 2304 SmallVector<PartialDiagnosticAt, 8> Diags; 2305 if (Kind == Sema::CheckConstexprKind::Diagnose && 2306 !Expr::isPotentialConstantExpr(Dcl, Diags)) { 2307 SemaRef.Diag(Dcl->getLocation(), 2308 diag::ext_constexpr_function_never_constant_expr) 2309 << isa<CXXConstructorDecl>(Dcl) << Dcl->isConsteval(); 2310 for (size_t I = 0, N = Diags.size(); I != N; ++I) 2311 SemaRef.Diag(Diags[I].first, Diags[I].second); 2312 // Don't return false here: we allow this for compatibility in 2313 // system headers. 2314 } 2315 2316 return true; 2317 } 2318 2319 /// Get the class that is directly named by the current context. This is the 2320 /// class for which an unqualified-id in this scope could name a constructor 2321 /// or destructor. 2322 /// 2323 /// If the scope specifier denotes a class, this will be that class. 2324 /// If the scope specifier is empty, this will be the class whose 2325 /// member-specification we are currently within. Otherwise, there 2326 /// is no such class. 2327 CXXRecordDecl *Sema::getCurrentClass(Scope *, const CXXScopeSpec *SS) { 2328 assert(getLangOpts().CPlusPlus && "No class names in C!"); 2329 2330 if (SS && SS->isInvalid()) 2331 return nullptr; 2332 2333 if (SS && SS->isNotEmpty()) { 2334 DeclContext *DC = computeDeclContext(*SS, true); 2335 return dyn_cast_or_null<CXXRecordDecl>(DC); 2336 } 2337 2338 return dyn_cast_or_null<CXXRecordDecl>(CurContext); 2339 } 2340 2341 /// isCurrentClassName - Determine whether the identifier II is the 2342 /// name of the class type currently being defined. In the case of 2343 /// nested classes, this will only return true if II is the name of 2344 /// the innermost class. 2345 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *S, 2346 const CXXScopeSpec *SS) { 2347 CXXRecordDecl *CurDecl = getCurrentClass(S, SS); 2348 return CurDecl && &II == CurDecl->getIdentifier(); 2349 } 2350 2351 /// Determine whether the identifier II is a typo for the name of 2352 /// the class type currently being defined. If so, update it to the identifier 2353 /// that should have been used. 2354 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) { 2355 assert(getLangOpts().CPlusPlus && "No class names in C!"); 2356 2357 if (!getLangOpts().SpellChecking) 2358 return false; 2359 2360 CXXRecordDecl *CurDecl; 2361 if (SS && SS->isSet() && !SS->isInvalid()) { 2362 DeclContext *DC = computeDeclContext(*SS, true); 2363 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC); 2364 } else 2365 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext); 2366 2367 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() && 2368 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName()) 2369 < II->getLength()) { 2370 II = CurDecl->getIdentifier(); 2371 return true; 2372 } 2373 2374 return false; 2375 } 2376 2377 /// Determine whether the given class is a base class of the given 2378 /// class, including looking at dependent bases. 2379 static bool findCircularInheritance(const CXXRecordDecl *Class, 2380 const CXXRecordDecl *Current) { 2381 SmallVector<const CXXRecordDecl*, 8> Queue; 2382 2383 Class = Class->getCanonicalDecl(); 2384 while (true) { 2385 for (const auto &I : Current->bases()) { 2386 CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl(); 2387 if (!Base) 2388 continue; 2389 2390 Base = Base->getDefinition(); 2391 if (!Base) 2392 continue; 2393 2394 if (Base->getCanonicalDecl() == Class) 2395 return true; 2396 2397 Queue.push_back(Base); 2398 } 2399 2400 if (Queue.empty()) 2401 return false; 2402 2403 Current = Queue.pop_back_val(); 2404 } 2405 2406 return false; 2407 } 2408 2409 /// Check the validity of a C++ base class specifier. 2410 /// 2411 /// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics 2412 /// and returns NULL otherwise. 2413 CXXBaseSpecifier * 2414 Sema::CheckBaseSpecifier(CXXRecordDecl *Class, 2415 SourceRange SpecifierRange, 2416 bool Virtual, AccessSpecifier Access, 2417 TypeSourceInfo *TInfo, 2418 SourceLocation EllipsisLoc) { 2419 QualType BaseType = TInfo->getType(); 2420 2421 // C++ [class.union]p1: 2422 // A union shall not have base classes. 2423 if (Class->isUnion()) { 2424 Diag(Class->getLocation(), diag::err_base_clause_on_union) 2425 << SpecifierRange; 2426 return nullptr; 2427 } 2428 2429 if (EllipsisLoc.isValid() && 2430 !TInfo->getType()->containsUnexpandedParameterPack()) { 2431 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 2432 << TInfo->getTypeLoc().getSourceRange(); 2433 EllipsisLoc = SourceLocation(); 2434 } 2435 2436 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc(); 2437 2438 if (BaseType->isDependentType()) { 2439 // Make sure that we don't have circular inheritance among our dependent 2440 // bases. For non-dependent bases, the check for completeness below handles 2441 // this. 2442 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) { 2443 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() || 2444 ((BaseDecl = BaseDecl->getDefinition()) && 2445 findCircularInheritance(Class, BaseDecl))) { 2446 Diag(BaseLoc, diag::err_circular_inheritance) 2447 << BaseType << Context.getTypeDeclType(Class); 2448 2449 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl()) 2450 Diag(BaseDecl->getLocation(), diag::note_previous_decl) 2451 << BaseType; 2452 2453 return nullptr; 2454 } 2455 } 2456 2457 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, 2458 Class->getTagKind() == TTK_Class, 2459 Access, TInfo, EllipsisLoc); 2460 } 2461 2462 // Base specifiers must be record types. 2463 if (!BaseType->isRecordType()) { 2464 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange; 2465 return nullptr; 2466 } 2467 2468 // C++ [class.union]p1: 2469 // A union shall not be used as a base class. 2470 if (BaseType->isUnionType()) { 2471 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange; 2472 return nullptr; 2473 } 2474 2475 // For the MS ABI, propagate DLL attributes to base class templates. 2476 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 2477 if (Attr *ClassAttr = getDLLAttr(Class)) { 2478 if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>( 2479 BaseType->getAsCXXRecordDecl())) { 2480 propagateDLLAttrToBaseClassTemplate(Class, ClassAttr, BaseTemplate, 2481 BaseLoc); 2482 } 2483 } 2484 } 2485 2486 // C++ [class.derived]p2: 2487 // The class-name in a base-specifier shall not be an incompletely 2488 // defined class. 2489 if (RequireCompleteType(BaseLoc, BaseType, 2490 diag::err_incomplete_base_class, SpecifierRange)) { 2491 Class->setInvalidDecl(); 2492 return nullptr; 2493 } 2494 2495 // If the base class is polymorphic or isn't empty, the new one is/isn't, too. 2496 RecordDecl *BaseDecl = BaseType->castAs<RecordType>()->getDecl(); 2497 assert(BaseDecl && "Record type has no declaration"); 2498 BaseDecl = BaseDecl->getDefinition(); 2499 assert(BaseDecl && "Base type is not incomplete, but has no definition"); 2500 CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl); 2501 assert(CXXBaseDecl && "Base type is not a C++ type"); 2502 2503 // Microsoft docs say: 2504 // "If a base-class has a code_seg attribute, derived classes must have the 2505 // same attribute." 2506 const auto *BaseCSA = CXXBaseDecl->getAttr<CodeSegAttr>(); 2507 const auto *DerivedCSA = Class->getAttr<CodeSegAttr>(); 2508 if ((DerivedCSA || BaseCSA) && 2509 (!BaseCSA || !DerivedCSA || BaseCSA->getName() != DerivedCSA->getName())) { 2510 Diag(Class->getLocation(), diag::err_mismatched_code_seg_base); 2511 Diag(CXXBaseDecl->getLocation(), diag::note_base_class_specified_here) 2512 << CXXBaseDecl; 2513 return nullptr; 2514 } 2515 2516 // A class which contains a flexible array member is not suitable for use as a 2517 // base class: 2518 // - If the layout determines that a base comes before another base, 2519 // the flexible array member would index into the subsequent base. 2520 // - If the layout determines that base comes before the derived class, 2521 // the flexible array member would index into the derived class. 2522 if (CXXBaseDecl->hasFlexibleArrayMember()) { 2523 Diag(BaseLoc, diag::err_base_class_has_flexible_array_member) 2524 << CXXBaseDecl->getDeclName(); 2525 return nullptr; 2526 } 2527 2528 // C++ [class]p3: 2529 // If a class is marked final and it appears as a base-type-specifier in 2530 // base-clause, the program is ill-formed. 2531 if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) { 2532 Diag(BaseLoc, diag::err_class_marked_final_used_as_base) 2533 << CXXBaseDecl->getDeclName() 2534 << FA->isSpelledAsSealed(); 2535 Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at) 2536 << CXXBaseDecl->getDeclName() << FA->getRange(); 2537 return nullptr; 2538 } 2539 2540 if (BaseDecl->isInvalidDecl()) 2541 Class->setInvalidDecl(); 2542 2543 // Create the base specifier. 2544 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, 2545 Class->getTagKind() == TTK_Class, 2546 Access, TInfo, EllipsisLoc); 2547 } 2548 2549 /// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is 2550 /// one entry in the base class list of a class specifier, for 2551 /// example: 2552 /// class foo : public bar, virtual private baz { 2553 /// 'public bar' and 'virtual private baz' are each base-specifiers. 2554 BaseResult 2555 Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange, 2556 ParsedAttributes &Attributes, 2557 bool Virtual, AccessSpecifier Access, 2558 ParsedType basetype, SourceLocation BaseLoc, 2559 SourceLocation EllipsisLoc) { 2560 if (!classdecl) 2561 return true; 2562 2563 AdjustDeclIfTemplate(classdecl); 2564 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl); 2565 if (!Class) 2566 return true; 2567 2568 // We haven't yet attached the base specifiers. 2569 Class->setIsParsingBaseSpecifiers(); 2570 2571 // We do not support any C++11 attributes on base-specifiers yet. 2572 // Diagnose any attributes we see. 2573 for (const ParsedAttr &AL : Attributes) { 2574 if (AL.isInvalid() || AL.getKind() == ParsedAttr::IgnoredAttribute) 2575 continue; 2576 Diag(AL.getLoc(), AL.getKind() == ParsedAttr::UnknownAttribute 2577 ? (unsigned)diag::warn_unknown_attribute_ignored 2578 : (unsigned)diag::err_base_specifier_attribute) 2579 << AL; 2580 } 2581 2582 TypeSourceInfo *TInfo = nullptr; 2583 GetTypeFromParser(basetype, &TInfo); 2584 2585 if (EllipsisLoc.isInvalid() && 2586 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo, 2587 UPPC_BaseType)) 2588 return true; 2589 2590 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange, 2591 Virtual, Access, TInfo, 2592 EllipsisLoc)) 2593 return BaseSpec; 2594 else 2595 Class->setInvalidDecl(); 2596 2597 return true; 2598 } 2599 2600 /// Use small set to collect indirect bases. As this is only used 2601 /// locally, there's no need to abstract the small size parameter. 2602 typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet; 2603 2604 /// Recursively add the bases of Type. Don't add Type itself. 2605 static void 2606 NoteIndirectBases(ASTContext &Context, IndirectBaseSet &Set, 2607 const QualType &Type) 2608 { 2609 // Even though the incoming type is a base, it might not be 2610 // a class -- it could be a template parm, for instance. 2611 if (auto Rec = Type->getAs<RecordType>()) { 2612 auto Decl = Rec->getAsCXXRecordDecl(); 2613 2614 // Iterate over its bases. 2615 for (const auto &BaseSpec : Decl->bases()) { 2616 QualType Base = Context.getCanonicalType(BaseSpec.getType()) 2617 .getUnqualifiedType(); 2618 if (Set.insert(Base).second) 2619 // If we've not already seen it, recurse. 2620 NoteIndirectBases(Context, Set, Base); 2621 } 2622 } 2623 } 2624 2625 /// Performs the actual work of attaching the given base class 2626 /// specifiers to a C++ class. 2627 bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, 2628 MutableArrayRef<CXXBaseSpecifier *> Bases) { 2629 if (Bases.empty()) 2630 return false; 2631 2632 // Used to keep track of which base types we have already seen, so 2633 // that we can properly diagnose redundant direct base types. Note 2634 // that the key is always the unqualified canonical type of the base 2635 // class. 2636 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes; 2637 2638 // Used to track indirect bases so we can see if a direct base is 2639 // ambiguous. 2640 IndirectBaseSet IndirectBaseTypes; 2641 2642 // Copy non-redundant base specifiers into permanent storage. 2643 unsigned NumGoodBases = 0; 2644 bool Invalid = false; 2645 for (unsigned idx = 0; idx < Bases.size(); ++idx) { 2646 QualType NewBaseType 2647 = Context.getCanonicalType(Bases[idx]->getType()); 2648 NewBaseType = NewBaseType.getLocalUnqualifiedType(); 2649 2650 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType]; 2651 if (KnownBase) { 2652 // C++ [class.mi]p3: 2653 // A class shall not be specified as a direct base class of a 2654 // derived class more than once. 2655 Diag(Bases[idx]->getBeginLoc(), diag::err_duplicate_base_class) 2656 << KnownBase->getType() << Bases[idx]->getSourceRange(); 2657 2658 // Delete the duplicate base class specifier; we're going to 2659 // overwrite its pointer later. 2660 Context.Deallocate(Bases[idx]); 2661 2662 Invalid = true; 2663 } else { 2664 // Okay, add this new base class. 2665 KnownBase = Bases[idx]; 2666 Bases[NumGoodBases++] = Bases[idx]; 2667 2668 // Note this base's direct & indirect bases, if there could be ambiguity. 2669 if (Bases.size() > 1) 2670 NoteIndirectBases(Context, IndirectBaseTypes, NewBaseType); 2671 2672 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) { 2673 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()); 2674 if (Class->isInterface() && 2675 (!RD->isInterfaceLike() || 2676 KnownBase->getAccessSpecifier() != AS_public)) { 2677 // The Microsoft extension __interface does not permit bases that 2678 // are not themselves public interfaces. 2679 Diag(KnownBase->getBeginLoc(), diag::err_invalid_base_in_interface) 2680 << getRecordDiagFromTagKind(RD->getTagKind()) << RD 2681 << RD->getSourceRange(); 2682 Invalid = true; 2683 } 2684 if (RD->hasAttr<WeakAttr>()) 2685 Class->addAttr(WeakAttr::CreateImplicit(Context)); 2686 } 2687 } 2688 } 2689 2690 // Attach the remaining base class specifiers to the derived class. 2691 Class->setBases(Bases.data(), NumGoodBases); 2692 2693 // Check that the only base classes that are duplicate are virtual. 2694 for (unsigned idx = 0; idx < NumGoodBases; ++idx) { 2695 // Check whether this direct base is inaccessible due to ambiguity. 2696 QualType BaseType = Bases[idx]->getType(); 2697 2698 // Skip all dependent types in templates being used as base specifiers. 2699 // Checks below assume that the base specifier is a CXXRecord. 2700 if (BaseType->isDependentType()) 2701 continue; 2702 2703 CanQualType CanonicalBase = Context.getCanonicalType(BaseType) 2704 .getUnqualifiedType(); 2705 2706 if (IndirectBaseTypes.count(CanonicalBase)) { 2707 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 2708 /*DetectVirtual=*/true); 2709 bool found 2710 = Class->isDerivedFrom(CanonicalBase->getAsCXXRecordDecl(), Paths); 2711 assert(found); 2712 (void)found; 2713 2714 if (Paths.isAmbiguous(CanonicalBase)) 2715 Diag(Bases[idx]->getBeginLoc(), diag::warn_inaccessible_base_class) 2716 << BaseType << getAmbiguousPathsDisplayString(Paths) 2717 << Bases[idx]->getSourceRange(); 2718 else 2719 assert(Bases[idx]->isVirtual()); 2720 } 2721 2722 // Delete the base class specifier, since its data has been copied 2723 // into the CXXRecordDecl. 2724 Context.Deallocate(Bases[idx]); 2725 } 2726 2727 return Invalid; 2728 } 2729 2730 /// ActOnBaseSpecifiers - Attach the given base specifiers to the 2731 /// class, after checking whether there are any duplicate base 2732 /// classes. 2733 void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, 2734 MutableArrayRef<CXXBaseSpecifier *> Bases) { 2735 if (!ClassDecl || Bases.empty()) 2736 return; 2737 2738 AdjustDeclIfTemplate(ClassDecl); 2739 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases); 2740 } 2741 2742 /// Determine whether the type \p Derived is a C++ class that is 2743 /// derived from the type \p Base. 2744 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base) { 2745 if (!getLangOpts().CPlusPlus) 2746 return false; 2747 2748 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl(); 2749 if (!DerivedRD) 2750 return false; 2751 2752 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl(); 2753 if (!BaseRD) 2754 return false; 2755 2756 // If either the base or the derived type is invalid, don't try to 2757 // check whether one is derived from the other. 2758 if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl()) 2759 return false; 2760 2761 // FIXME: In a modules build, do we need the entire path to be visible for us 2762 // to be able to use the inheritance relationship? 2763 if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined()) 2764 return false; 2765 2766 return DerivedRD->isDerivedFrom(BaseRD); 2767 } 2768 2769 /// Determine whether the type \p Derived is a C++ class that is 2770 /// derived from the type \p Base. 2771 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base, 2772 CXXBasePaths &Paths) { 2773 if (!getLangOpts().CPlusPlus) 2774 return false; 2775 2776 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl(); 2777 if (!DerivedRD) 2778 return false; 2779 2780 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl(); 2781 if (!BaseRD) 2782 return false; 2783 2784 if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined()) 2785 return false; 2786 2787 return DerivedRD->isDerivedFrom(BaseRD, Paths); 2788 } 2789 2790 static void BuildBasePathArray(const CXXBasePath &Path, 2791 CXXCastPath &BasePathArray) { 2792 // We first go backward and check if we have a virtual base. 2793 // FIXME: It would be better if CXXBasePath had the base specifier for 2794 // the nearest virtual base. 2795 unsigned Start = 0; 2796 for (unsigned I = Path.size(); I != 0; --I) { 2797 if (Path[I - 1].Base->isVirtual()) { 2798 Start = I - 1; 2799 break; 2800 } 2801 } 2802 2803 // Now add all bases. 2804 for (unsigned I = Start, E = Path.size(); I != E; ++I) 2805 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base)); 2806 } 2807 2808 2809 void Sema::BuildBasePathArray(const CXXBasePaths &Paths, 2810 CXXCastPath &BasePathArray) { 2811 assert(BasePathArray.empty() && "Base path array must be empty!"); 2812 assert(Paths.isRecordingPaths() && "Must record paths!"); 2813 return ::BuildBasePathArray(Paths.front(), BasePathArray); 2814 } 2815 /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base 2816 /// conversion (where Derived and Base are class types) is 2817 /// well-formed, meaning that the conversion is unambiguous (and 2818 /// that all of the base classes are accessible). Returns true 2819 /// and emits a diagnostic if the code is ill-formed, returns false 2820 /// otherwise. Loc is the location where this routine should point to 2821 /// if there is an error, and Range is the source range to highlight 2822 /// if there is an error. 2823 /// 2824 /// If either InaccessibleBaseID or AmbigiousBaseConvID are 0, then the 2825 /// diagnostic for the respective type of error will be suppressed, but the 2826 /// check for ill-formed code will still be performed. 2827 bool 2828 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 2829 unsigned InaccessibleBaseID, 2830 unsigned AmbigiousBaseConvID, 2831 SourceLocation Loc, SourceRange Range, 2832 DeclarationName Name, 2833 CXXCastPath *BasePath, 2834 bool IgnoreAccess) { 2835 // First, determine whether the path from Derived to Base is 2836 // ambiguous. This is slightly more expensive than checking whether 2837 // the Derived to Base conversion exists, because here we need to 2838 // explore multiple paths to determine if there is an ambiguity. 2839 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 2840 /*DetectVirtual=*/false); 2841 bool DerivationOkay = IsDerivedFrom(Loc, Derived, Base, Paths); 2842 if (!DerivationOkay) 2843 return true; 2844 2845 const CXXBasePath *Path = nullptr; 2846 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) 2847 Path = &Paths.front(); 2848 2849 // For MSVC compatibility, check if Derived directly inherits from Base. Clang 2850 // warns about this hierarchy under -Winaccessible-base, but MSVC allows the 2851 // user to access such bases. 2852 if (!Path && getLangOpts().MSVCCompat) { 2853 for (const CXXBasePath &PossiblePath : Paths) { 2854 if (PossiblePath.size() == 1) { 2855 Path = &PossiblePath; 2856 if (AmbigiousBaseConvID) 2857 Diag(Loc, diag::ext_ms_ambiguous_direct_base) 2858 << Base << Derived << Range; 2859 break; 2860 } 2861 } 2862 } 2863 2864 if (Path) { 2865 if (!IgnoreAccess) { 2866 // Check that the base class can be accessed. 2867 switch ( 2868 CheckBaseClassAccess(Loc, Base, Derived, *Path, InaccessibleBaseID)) { 2869 case AR_inaccessible: 2870 return true; 2871 case AR_accessible: 2872 case AR_dependent: 2873 case AR_delayed: 2874 break; 2875 } 2876 } 2877 2878 // Build a base path if necessary. 2879 if (BasePath) 2880 ::BuildBasePathArray(*Path, *BasePath); 2881 return false; 2882 } 2883 2884 if (AmbigiousBaseConvID) { 2885 // We know that the derived-to-base conversion is ambiguous, and 2886 // we're going to produce a diagnostic. Perform the derived-to-base 2887 // search just one more time to compute all of the possible paths so 2888 // that we can print them out. This is more expensive than any of 2889 // the previous derived-to-base checks we've done, but at this point 2890 // performance isn't as much of an issue. 2891 Paths.clear(); 2892 Paths.setRecordingPaths(true); 2893 bool StillOkay = IsDerivedFrom(Loc, Derived, Base, Paths); 2894 assert(StillOkay && "Can only be used with a derived-to-base conversion"); 2895 (void)StillOkay; 2896 2897 // Build up a textual representation of the ambiguous paths, e.g., 2898 // D -> B -> A, that will be used to illustrate the ambiguous 2899 // conversions in the diagnostic. We only print one of the paths 2900 // to each base class subobject. 2901 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths); 2902 2903 Diag(Loc, AmbigiousBaseConvID) 2904 << Derived << Base << PathDisplayStr << Range << Name; 2905 } 2906 return true; 2907 } 2908 2909 bool 2910 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 2911 SourceLocation Loc, SourceRange Range, 2912 CXXCastPath *BasePath, 2913 bool IgnoreAccess) { 2914 return CheckDerivedToBaseConversion( 2915 Derived, Base, diag::err_upcast_to_inaccessible_base, 2916 diag::err_ambiguous_derived_to_base_conv, Loc, Range, DeclarationName(), 2917 BasePath, IgnoreAccess); 2918 } 2919 2920 2921 /// Builds a string representing ambiguous paths from a 2922 /// specific derived class to different subobjects of the same base 2923 /// class. 2924 /// 2925 /// This function builds a string that can be used in error messages 2926 /// to show the different paths that one can take through the 2927 /// inheritance hierarchy to go from the derived class to different 2928 /// subobjects of a base class. The result looks something like this: 2929 /// @code 2930 /// struct D -> struct B -> struct A 2931 /// struct D -> struct C -> struct A 2932 /// @endcode 2933 std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) { 2934 std::string PathDisplayStr; 2935 std::set<unsigned> DisplayedPaths; 2936 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 2937 Path != Paths.end(); ++Path) { 2938 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) { 2939 // We haven't displayed a path to this particular base 2940 // class subobject yet. 2941 PathDisplayStr += "\n "; 2942 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString(); 2943 for (CXXBasePath::const_iterator Element = Path->begin(); 2944 Element != Path->end(); ++Element) 2945 PathDisplayStr += " -> " + Element->Base->getType().getAsString(); 2946 } 2947 } 2948 2949 return PathDisplayStr; 2950 } 2951 2952 //===----------------------------------------------------------------------===// 2953 // C++ class member Handling 2954 //===----------------------------------------------------------------------===// 2955 2956 /// ActOnAccessSpecifier - Parsed an access specifier followed by a colon. 2957 bool Sema::ActOnAccessSpecifier(AccessSpecifier Access, SourceLocation ASLoc, 2958 SourceLocation ColonLoc, 2959 const ParsedAttributesView &Attrs) { 2960 assert(Access != AS_none && "Invalid kind for syntactic access specifier!"); 2961 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext, 2962 ASLoc, ColonLoc); 2963 CurContext->addHiddenDecl(ASDecl); 2964 return ProcessAccessDeclAttributeList(ASDecl, Attrs); 2965 } 2966 2967 /// CheckOverrideControl - Check C++11 override control semantics. 2968 void Sema::CheckOverrideControl(NamedDecl *D) { 2969 if (D->isInvalidDecl()) 2970 return; 2971 2972 // We only care about "override" and "final" declarations. 2973 if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>()) 2974 return; 2975 2976 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 2977 2978 // We can't check dependent instance methods. 2979 if (MD && MD->isInstance() && 2980 (MD->getParent()->hasAnyDependentBases() || 2981 MD->getType()->isDependentType())) 2982 return; 2983 2984 if (MD && !MD->isVirtual()) { 2985 // If we have a non-virtual method, check if if hides a virtual method. 2986 // (In that case, it's most likely the method has the wrong type.) 2987 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 2988 FindHiddenVirtualMethods(MD, OverloadedMethods); 2989 2990 if (!OverloadedMethods.empty()) { 2991 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 2992 Diag(OA->getLocation(), 2993 diag::override_keyword_hides_virtual_member_function) 2994 << "override" << (OverloadedMethods.size() > 1); 2995 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 2996 Diag(FA->getLocation(), 2997 diag::override_keyword_hides_virtual_member_function) 2998 << (FA->isSpelledAsSealed() ? "sealed" : "final") 2999 << (OverloadedMethods.size() > 1); 3000 } 3001 NoteHiddenVirtualMethods(MD, OverloadedMethods); 3002 MD->setInvalidDecl(); 3003 return; 3004 } 3005 // Fall through into the general case diagnostic. 3006 // FIXME: We might want to attempt typo correction here. 3007 } 3008 3009 if (!MD || !MD->isVirtual()) { 3010 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 3011 Diag(OA->getLocation(), 3012 diag::override_keyword_only_allowed_on_virtual_member_functions) 3013 << "override" << FixItHint::CreateRemoval(OA->getLocation()); 3014 D->dropAttr<OverrideAttr>(); 3015 } 3016 if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 3017 Diag(FA->getLocation(), 3018 diag::override_keyword_only_allowed_on_virtual_member_functions) 3019 << (FA->isSpelledAsSealed() ? "sealed" : "final") 3020 << FixItHint::CreateRemoval(FA->getLocation()); 3021 D->dropAttr<FinalAttr>(); 3022 } 3023 return; 3024 } 3025 3026 // C++11 [class.virtual]p5: 3027 // If a function is marked with the virt-specifier override and 3028 // does not override a member function of a base class, the program is 3029 // ill-formed. 3030 bool HasOverriddenMethods = MD->size_overridden_methods() != 0; 3031 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) 3032 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding) 3033 << MD->getDeclName(); 3034 } 3035 3036 void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) { 3037 if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>()) 3038 return; 3039 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 3040 if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>()) 3041 return; 3042 3043 SourceLocation Loc = MD->getLocation(); 3044 SourceLocation SpellingLoc = Loc; 3045 if (getSourceManager().isMacroArgExpansion(Loc)) 3046 SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).getBegin(); 3047 SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc); 3048 if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc)) 3049 return; 3050 3051 if (MD->size_overridden_methods() > 0) { 3052 unsigned DiagID = isa<CXXDestructorDecl>(MD) 3053 ? diag::warn_destructor_marked_not_override_overriding 3054 : diag::warn_function_marked_not_override_overriding; 3055 Diag(MD->getLocation(), DiagID) << MD->getDeclName(); 3056 const CXXMethodDecl *OMD = *MD->begin_overridden_methods(); 3057 Diag(OMD->getLocation(), diag::note_overridden_virtual_function); 3058 } 3059 } 3060 3061 /// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member 3062 /// function overrides a virtual member function marked 'final', according to 3063 /// C++11 [class.virtual]p4. 3064 bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New, 3065 const CXXMethodDecl *Old) { 3066 FinalAttr *FA = Old->getAttr<FinalAttr>(); 3067 if (!FA) 3068 return false; 3069 3070 Diag(New->getLocation(), diag::err_final_function_overridden) 3071 << New->getDeclName() 3072 << FA->isSpelledAsSealed(); 3073 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 3074 return true; 3075 } 3076 3077 static bool InitializationHasSideEffects(const FieldDecl &FD) { 3078 const Type *T = FD.getType()->getBaseElementTypeUnsafe(); 3079 // FIXME: Destruction of ObjC lifetime types has side-effects. 3080 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 3081 return !RD->isCompleteDefinition() || 3082 !RD->hasTrivialDefaultConstructor() || 3083 !RD->hasTrivialDestructor(); 3084 return false; 3085 } 3086 3087 static const ParsedAttr *getMSPropertyAttr(const ParsedAttributesView &list) { 3088 ParsedAttributesView::const_iterator Itr = 3089 llvm::find_if(list, [](const ParsedAttr &AL) { 3090 return AL.isDeclspecPropertyAttribute(); 3091 }); 3092 if (Itr != list.end()) 3093 return &*Itr; 3094 return nullptr; 3095 } 3096 3097 // Check if there is a field shadowing. 3098 void Sema::CheckShadowInheritedFields(const SourceLocation &Loc, 3099 DeclarationName FieldName, 3100 const CXXRecordDecl *RD, 3101 bool DeclIsField) { 3102 if (Diags.isIgnored(diag::warn_shadow_field, Loc)) 3103 return; 3104 3105 // To record a shadowed field in a base 3106 std::map<CXXRecordDecl*, NamedDecl*> Bases; 3107 auto FieldShadowed = [&](const CXXBaseSpecifier *Specifier, 3108 CXXBasePath &Path) { 3109 const auto Base = Specifier->getType()->getAsCXXRecordDecl(); 3110 // Record an ambiguous path directly 3111 if (Bases.find(Base) != Bases.end()) 3112 return true; 3113 for (const auto Field : Base->lookup(FieldName)) { 3114 if ((isa<FieldDecl>(Field) || isa<IndirectFieldDecl>(Field)) && 3115 Field->getAccess() != AS_private) { 3116 assert(Field->getAccess() != AS_none); 3117 assert(Bases.find(Base) == Bases.end()); 3118 Bases[Base] = Field; 3119 return true; 3120 } 3121 } 3122 return false; 3123 }; 3124 3125 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 3126 /*DetectVirtual=*/true); 3127 if (!RD->lookupInBases(FieldShadowed, Paths)) 3128 return; 3129 3130 for (const auto &P : Paths) { 3131 auto Base = P.back().Base->getType()->getAsCXXRecordDecl(); 3132 auto It = Bases.find(Base); 3133 // Skip duplicated bases 3134 if (It == Bases.end()) 3135 continue; 3136 auto BaseField = It->second; 3137 assert(BaseField->getAccess() != AS_private); 3138 if (AS_none != 3139 CXXRecordDecl::MergeAccess(P.Access, BaseField->getAccess())) { 3140 Diag(Loc, diag::warn_shadow_field) 3141 << FieldName << RD << Base << DeclIsField; 3142 Diag(BaseField->getLocation(), diag::note_shadow_field); 3143 Bases.erase(It); 3144 } 3145 } 3146 } 3147 3148 /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member 3149 /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the 3150 /// bitfield width if there is one, 'InitExpr' specifies the initializer if 3151 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is 3152 /// present (but parsing it has been deferred). 3153 NamedDecl * 3154 Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, 3155 MultiTemplateParamsArg TemplateParameterLists, 3156 Expr *BW, const VirtSpecifiers &VS, 3157 InClassInitStyle InitStyle) { 3158 const DeclSpec &DS = D.getDeclSpec(); 3159 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 3160 DeclarationName Name = NameInfo.getName(); 3161 SourceLocation Loc = NameInfo.getLoc(); 3162 3163 // For anonymous bitfields, the location should point to the type. 3164 if (Loc.isInvalid()) 3165 Loc = D.getBeginLoc(); 3166 3167 Expr *BitWidth = static_cast<Expr*>(BW); 3168 3169 assert(isa<CXXRecordDecl>(CurContext)); 3170 assert(!DS.isFriendSpecified()); 3171 3172 bool isFunc = D.isDeclarationOfFunction(); 3173 const ParsedAttr *MSPropertyAttr = 3174 getMSPropertyAttr(D.getDeclSpec().getAttributes()); 3175 3176 if (cast<CXXRecordDecl>(CurContext)->isInterface()) { 3177 // The Microsoft extension __interface only permits public member functions 3178 // and prohibits constructors, destructors, operators, non-public member 3179 // functions, static methods and data members. 3180 unsigned InvalidDecl; 3181 bool ShowDeclName = true; 3182 if (!isFunc && 3183 (DS.getStorageClassSpec() == DeclSpec::SCS_typedef || MSPropertyAttr)) 3184 InvalidDecl = 0; 3185 else if (!isFunc) 3186 InvalidDecl = 1; 3187 else if (AS != AS_public) 3188 InvalidDecl = 2; 3189 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static) 3190 InvalidDecl = 3; 3191 else switch (Name.getNameKind()) { 3192 case DeclarationName::CXXConstructorName: 3193 InvalidDecl = 4; 3194 ShowDeclName = false; 3195 break; 3196 3197 case DeclarationName::CXXDestructorName: 3198 InvalidDecl = 5; 3199 ShowDeclName = false; 3200 break; 3201 3202 case DeclarationName::CXXOperatorName: 3203 case DeclarationName::CXXConversionFunctionName: 3204 InvalidDecl = 6; 3205 break; 3206 3207 default: 3208 InvalidDecl = 0; 3209 break; 3210 } 3211 3212 if (InvalidDecl) { 3213 if (ShowDeclName) 3214 Diag(Loc, diag::err_invalid_member_in_interface) 3215 << (InvalidDecl-1) << Name; 3216 else 3217 Diag(Loc, diag::err_invalid_member_in_interface) 3218 << (InvalidDecl-1) << ""; 3219 return nullptr; 3220 } 3221 } 3222 3223 // C++ 9.2p6: A member shall not be declared to have automatic storage 3224 // duration (auto, register) or with the extern storage-class-specifier. 3225 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class 3226 // data members and cannot be applied to names declared const or static, 3227 // and cannot be applied to reference members. 3228 switch (DS.getStorageClassSpec()) { 3229 case DeclSpec::SCS_unspecified: 3230 case DeclSpec::SCS_typedef: 3231 case DeclSpec::SCS_static: 3232 break; 3233 case DeclSpec::SCS_mutable: 3234 if (isFunc) { 3235 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function); 3236 3237 // FIXME: It would be nicer if the keyword was ignored only for this 3238 // declarator. Otherwise we could get follow-up errors. 3239 D.getMutableDeclSpec().ClearStorageClassSpecs(); 3240 } 3241 break; 3242 default: 3243 Diag(DS.getStorageClassSpecLoc(), 3244 diag::err_storageclass_invalid_for_member); 3245 D.getMutableDeclSpec().ClearStorageClassSpecs(); 3246 break; 3247 } 3248 3249 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified || 3250 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) && 3251 !isFunc); 3252 3253 if (DS.hasConstexprSpecifier() && isInstField) { 3254 SemaDiagnosticBuilder B = 3255 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member); 3256 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc(); 3257 if (InitStyle == ICIS_NoInit) { 3258 B << 0 << 0; 3259 if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const) 3260 B << FixItHint::CreateRemoval(ConstexprLoc); 3261 else { 3262 B << FixItHint::CreateReplacement(ConstexprLoc, "const"); 3263 D.getMutableDeclSpec().ClearConstexprSpec(); 3264 const char *PrevSpec; 3265 unsigned DiagID; 3266 bool Failed = D.getMutableDeclSpec().SetTypeQual( 3267 DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts()); 3268 (void)Failed; 3269 assert(!Failed && "Making a constexpr member const shouldn't fail"); 3270 } 3271 } else { 3272 B << 1; 3273 const char *PrevSpec; 3274 unsigned DiagID; 3275 if (D.getMutableDeclSpec().SetStorageClassSpec( 3276 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID, 3277 Context.getPrintingPolicy())) { 3278 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable && 3279 "This is the only DeclSpec that should fail to be applied"); 3280 B << 1; 3281 } else { 3282 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static "); 3283 isInstField = false; 3284 } 3285 } 3286 } 3287 3288 NamedDecl *Member; 3289 if (isInstField) { 3290 CXXScopeSpec &SS = D.getCXXScopeSpec(); 3291 3292 // Data members must have identifiers for names. 3293 if (!Name.isIdentifier()) { 3294 Diag(Loc, diag::err_bad_variable_name) 3295 << Name; 3296 return nullptr; 3297 } 3298 3299 IdentifierInfo *II = Name.getAsIdentifierInfo(); 3300 3301 // Member field could not be with "template" keyword. 3302 // So TemplateParameterLists should be empty in this case. 3303 if (TemplateParameterLists.size()) { 3304 TemplateParameterList* TemplateParams = TemplateParameterLists[0]; 3305 if (TemplateParams->size()) { 3306 // There is no such thing as a member field template. 3307 Diag(D.getIdentifierLoc(), diag::err_template_member) 3308 << II 3309 << SourceRange(TemplateParams->getTemplateLoc(), 3310 TemplateParams->getRAngleLoc()); 3311 } else { 3312 // There is an extraneous 'template<>' for this member. 3313 Diag(TemplateParams->getTemplateLoc(), 3314 diag::err_template_member_noparams) 3315 << II 3316 << SourceRange(TemplateParams->getTemplateLoc(), 3317 TemplateParams->getRAngleLoc()); 3318 } 3319 return nullptr; 3320 } 3321 3322 if (SS.isSet() && !SS.isInvalid()) { 3323 // The user provided a superfluous scope specifier inside a class 3324 // definition: 3325 // 3326 // class X { 3327 // int X::member; 3328 // }; 3329 if (DeclContext *DC = computeDeclContext(SS, false)) 3330 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc(), 3331 D.getName().getKind() == 3332 UnqualifiedIdKind::IK_TemplateId); 3333 else 3334 Diag(D.getIdentifierLoc(), diag::err_member_qualification) 3335 << Name << SS.getRange(); 3336 3337 SS.clear(); 3338 } 3339 3340 if (MSPropertyAttr) { 3341 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D, 3342 BitWidth, InitStyle, AS, *MSPropertyAttr); 3343 if (!Member) 3344 return nullptr; 3345 isInstField = false; 3346 } else { 3347 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, 3348 BitWidth, InitStyle, AS); 3349 if (!Member) 3350 return nullptr; 3351 } 3352 3353 CheckShadowInheritedFields(Loc, Name, cast<CXXRecordDecl>(CurContext)); 3354 } else { 3355 Member = HandleDeclarator(S, D, TemplateParameterLists); 3356 if (!Member) 3357 return nullptr; 3358 3359 // Non-instance-fields can't have a bitfield. 3360 if (BitWidth) { 3361 if (Member->isInvalidDecl()) { 3362 // don't emit another diagnostic. 3363 } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) { 3364 // C++ 9.6p3: A bit-field shall not be a static member. 3365 // "static member 'A' cannot be a bit-field" 3366 Diag(Loc, diag::err_static_not_bitfield) 3367 << Name << BitWidth->getSourceRange(); 3368 } else if (isa<TypedefDecl>(Member)) { 3369 // "typedef member 'x' cannot be a bit-field" 3370 Diag(Loc, diag::err_typedef_not_bitfield) 3371 << Name << BitWidth->getSourceRange(); 3372 } else { 3373 // A function typedef ("typedef int f(); f a;"). 3374 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 3375 Diag(Loc, diag::err_not_integral_type_bitfield) 3376 << Name << cast<ValueDecl>(Member)->getType() 3377 << BitWidth->getSourceRange(); 3378 } 3379 3380 BitWidth = nullptr; 3381 Member->setInvalidDecl(); 3382 } 3383 3384 NamedDecl *NonTemplateMember = Member; 3385 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member)) 3386 NonTemplateMember = FunTmpl->getTemplatedDecl(); 3387 else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member)) 3388 NonTemplateMember = VarTmpl->getTemplatedDecl(); 3389 3390 Member->setAccess(AS); 3391 3392 // If we have declared a member function template or static data member 3393 // template, set the access of the templated declaration as well. 3394 if (NonTemplateMember != Member) 3395 NonTemplateMember->setAccess(AS); 3396 3397 // C++ [temp.deduct.guide]p3: 3398 // A deduction guide [...] for a member class template [shall be 3399 // declared] with the same access [as the template]. 3400 if (auto *DG = dyn_cast<CXXDeductionGuideDecl>(NonTemplateMember)) { 3401 auto *TD = DG->getDeducedTemplate(); 3402 // Access specifiers are only meaningful if both the template and the 3403 // deduction guide are from the same scope. 3404 if (AS != TD->getAccess() && 3405 TD->getDeclContext()->getRedeclContext()->Equals( 3406 DG->getDeclContext()->getRedeclContext())) { 3407 Diag(DG->getBeginLoc(), diag::err_deduction_guide_wrong_access); 3408 Diag(TD->getBeginLoc(), diag::note_deduction_guide_template_access) 3409 << TD->getAccess(); 3410 const AccessSpecDecl *LastAccessSpec = nullptr; 3411 for (const auto *D : cast<CXXRecordDecl>(CurContext)->decls()) { 3412 if (const auto *AccessSpec = dyn_cast<AccessSpecDecl>(D)) 3413 LastAccessSpec = AccessSpec; 3414 } 3415 assert(LastAccessSpec && "differing access with no access specifier"); 3416 Diag(LastAccessSpec->getBeginLoc(), diag::note_deduction_guide_access) 3417 << AS; 3418 } 3419 } 3420 } 3421 3422 if (VS.isOverrideSpecified()) 3423 Member->addAttr(OverrideAttr::Create(Context, VS.getOverrideLoc(), 3424 AttributeCommonInfo::AS_Keyword)); 3425 if (VS.isFinalSpecified()) 3426 Member->addAttr(FinalAttr::Create( 3427 Context, VS.getFinalLoc(), AttributeCommonInfo::AS_Keyword, 3428 static_cast<FinalAttr::Spelling>(VS.isFinalSpelledSealed()))); 3429 3430 if (VS.getLastLocation().isValid()) { 3431 // Update the end location of a method that has a virt-specifiers. 3432 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member)) 3433 MD->setRangeEnd(VS.getLastLocation()); 3434 } 3435 3436 CheckOverrideControl(Member); 3437 3438 assert((Name || isInstField) && "No identifier for non-field ?"); 3439 3440 if (isInstField) { 3441 FieldDecl *FD = cast<FieldDecl>(Member); 3442 FieldCollector->Add(FD); 3443 3444 if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) { 3445 // Remember all explicit private FieldDecls that have a name, no side 3446 // effects and are not part of a dependent type declaration. 3447 if (!FD->isImplicit() && FD->getDeclName() && 3448 FD->getAccess() == AS_private && 3449 !FD->hasAttr<UnusedAttr>() && 3450 !FD->getParent()->isDependentContext() && 3451 !InitializationHasSideEffects(*FD)) 3452 UnusedPrivateFields.insert(FD); 3453 } 3454 } 3455 3456 return Member; 3457 } 3458 3459 namespace { 3460 class UninitializedFieldVisitor 3461 : public EvaluatedExprVisitor<UninitializedFieldVisitor> { 3462 Sema &S; 3463 // List of Decls to generate a warning on. Also remove Decls that become 3464 // initialized. 3465 llvm::SmallPtrSetImpl<ValueDecl*> &Decls; 3466 // List of base classes of the record. Classes are removed after their 3467 // initializers. 3468 llvm::SmallPtrSetImpl<QualType> &BaseClasses; 3469 // Vector of decls to be removed from the Decl set prior to visiting the 3470 // nodes. These Decls may have been initialized in the prior initializer. 3471 llvm::SmallVector<ValueDecl*, 4> DeclsToRemove; 3472 // If non-null, add a note to the warning pointing back to the constructor. 3473 const CXXConstructorDecl *Constructor; 3474 // Variables to hold state when processing an initializer list. When 3475 // InitList is true, special case initialization of FieldDecls matching 3476 // InitListFieldDecl. 3477 bool InitList; 3478 FieldDecl *InitListFieldDecl; 3479 llvm::SmallVector<unsigned, 4> InitFieldIndex; 3480 3481 public: 3482 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited; 3483 UninitializedFieldVisitor(Sema &S, 3484 llvm::SmallPtrSetImpl<ValueDecl*> &Decls, 3485 llvm::SmallPtrSetImpl<QualType> &BaseClasses) 3486 : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses), 3487 Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {} 3488 3489 // Returns true if the use of ME is not an uninitialized use. 3490 bool IsInitListMemberExprInitialized(MemberExpr *ME, 3491 bool CheckReferenceOnly) { 3492 llvm::SmallVector<FieldDecl*, 4> Fields; 3493 bool ReferenceField = false; 3494 while (ME) { 3495 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 3496 if (!FD) 3497 return false; 3498 Fields.push_back(FD); 3499 if (FD->getType()->isReferenceType()) 3500 ReferenceField = true; 3501 ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts()); 3502 } 3503 3504 // Binding a reference to an uninitialized field is not an 3505 // uninitialized use. 3506 if (CheckReferenceOnly && !ReferenceField) 3507 return true; 3508 3509 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 3510 // Discard the first field since it is the field decl that is being 3511 // initialized. 3512 for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) { 3513 UsedFieldIndex.push_back((*I)->getFieldIndex()); 3514 } 3515 3516 for (auto UsedIter = UsedFieldIndex.begin(), 3517 UsedEnd = UsedFieldIndex.end(), 3518 OrigIter = InitFieldIndex.begin(), 3519 OrigEnd = InitFieldIndex.end(); 3520 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 3521 if (*UsedIter < *OrigIter) 3522 return true; 3523 if (*UsedIter > *OrigIter) 3524 break; 3525 } 3526 3527 return false; 3528 } 3529 3530 void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly, 3531 bool AddressOf) { 3532 if (isa<EnumConstantDecl>(ME->getMemberDecl())) 3533 return; 3534 3535 // FieldME is the inner-most MemberExpr that is not an anonymous struct 3536 // or union. 3537 MemberExpr *FieldME = ME; 3538 3539 bool AllPODFields = FieldME->getType().isPODType(S.Context); 3540 3541 Expr *Base = ME; 3542 while (MemberExpr *SubME = 3543 dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) { 3544 3545 if (isa<VarDecl>(SubME->getMemberDecl())) 3546 return; 3547 3548 if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl())) 3549 if (!FD->isAnonymousStructOrUnion()) 3550 FieldME = SubME; 3551 3552 if (!FieldME->getType().isPODType(S.Context)) 3553 AllPODFields = false; 3554 3555 Base = SubME->getBase(); 3556 } 3557 3558 if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts())) 3559 return; 3560 3561 if (AddressOf && AllPODFields) 3562 return; 3563 3564 ValueDecl* FoundVD = FieldME->getMemberDecl(); 3565 3566 if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) { 3567 while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) { 3568 BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr()); 3569 } 3570 3571 if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) { 3572 QualType T = BaseCast->getType(); 3573 if (T->isPointerType() && 3574 BaseClasses.count(T->getPointeeType())) { 3575 S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit) 3576 << T->getPointeeType() << FoundVD; 3577 } 3578 } 3579 } 3580 3581 if (!Decls.count(FoundVD)) 3582 return; 3583 3584 const bool IsReference = FoundVD->getType()->isReferenceType(); 3585 3586 if (InitList && !AddressOf && FoundVD == InitListFieldDecl) { 3587 // Special checking for initializer lists. 3588 if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) { 3589 return; 3590 } 3591 } else { 3592 // Prevent double warnings on use of unbounded references. 3593 if (CheckReferenceOnly && !IsReference) 3594 return; 3595 } 3596 3597 unsigned diag = IsReference 3598 ? diag::warn_reference_field_is_uninit 3599 : diag::warn_field_is_uninit; 3600 S.Diag(FieldME->getExprLoc(), diag) << FoundVD; 3601 if (Constructor) 3602 S.Diag(Constructor->getLocation(), 3603 diag::note_uninit_in_this_constructor) 3604 << (Constructor->isDefaultConstructor() && Constructor->isImplicit()); 3605 3606 } 3607 3608 void HandleValue(Expr *E, bool AddressOf) { 3609 E = E->IgnoreParens(); 3610 3611 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 3612 HandleMemberExpr(ME, false /*CheckReferenceOnly*/, 3613 AddressOf /*AddressOf*/); 3614 return; 3615 } 3616 3617 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 3618 Visit(CO->getCond()); 3619 HandleValue(CO->getTrueExpr(), AddressOf); 3620 HandleValue(CO->getFalseExpr(), AddressOf); 3621 return; 3622 } 3623 3624 if (BinaryConditionalOperator *BCO = 3625 dyn_cast<BinaryConditionalOperator>(E)) { 3626 Visit(BCO->getCond()); 3627 HandleValue(BCO->getFalseExpr(), AddressOf); 3628 return; 3629 } 3630 3631 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 3632 HandleValue(OVE->getSourceExpr(), AddressOf); 3633 return; 3634 } 3635 3636 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 3637 switch (BO->getOpcode()) { 3638 default: 3639 break; 3640 case(BO_PtrMemD): 3641 case(BO_PtrMemI): 3642 HandleValue(BO->getLHS(), AddressOf); 3643 Visit(BO->getRHS()); 3644 return; 3645 case(BO_Comma): 3646 Visit(BO->getLHS()); 3647 HandleValue(BO->getRHS(), AddressOf); 3648 return; 3649 } 3650 } 3651 3652 Visit(E); 3653 } 3654 3655 void CheckInitListExpr(InitListExpr *ILE) { 3656 InitFieldIndex.push_back(0); 3657 for (auto Child : ILE->children()) { 3658 if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) { 3659 CheckInitListExpr(SubList); 3660 } else { 3661 Visit(Child); 3662 } 3663 ++InitFieldIndex.back(); 3664 } 3665 InitFieldIndex.pop_back(); 3666 } 3667 3668 void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor, 3669 FieldDecl *Field, const Type *BaseClass) { 3670 // Remove Decls that may have been initialized in the previous 3671 // initializer. 3672 for (ValueDecl* VD : DeclsToRemove) 3673 Decls.erase(VD); 3674 DeclsToRemove.clear(); 3675 3676 Constructor = FieldConstructor; 3677 InitListExpr *ILE = dyn_cast<InitListExpr>(E); 3678 3679 if (ILE && Field) { 3680 InitList = true; 3681 InitListFieldDecl = Field; 3682 InitFieldIndex.clear(); 3683 CheckInitListExpr(ILE); 3684 } else { 3685 InitList = false; 3686 Visit(E); 3687 } 3688 3689 if (Field) 3690 Decls.erase(Field); 3691 if (BaseClass) 3692 BaseClasses.erase(BaseClass->getCanonicalTypeInternal()); 3693 } 3694 3695 void VisitMemberExpr(MemberExpr *ME) { 3696 // All uses of unbounded reference fields will warn. 3697 HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/); 3698 } 3699 3700 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 3701 if (E->getCastKind() == CK_LValueToRValue) { 3702 HandleValue(E->getSubExpr(), false /*AddressOf*/); 3703 return; 3704 } 3705 3706 Inherited::VisitImplicitCastExpr(E); 3707 } 3708 3709 void VisitCXXConstructExpr(CXXConstructExpr *E) { 3710 if (E->getConstructor()->isCopyConstructor()) { 3711 Expr *ArgExpr = E->getArg(0); 3712 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 3713 if (ILE->getNumInits() == 1) 3714 ArgExpr = ILE->getInit(0); 3715 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 3716 if (ICE->getCastKind() == CK_NoOp) 3717 ArgExpr = ICE->getSubExpr(); 3718 HandleValue(ArgExpr, false /*AddressOf*/); 3719 return; 3720 } 3721 Inherited::VisitCXXConstructExpr(E); 3722 } 3723 3724 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) { 3725 Expr *Callee = E->getCallee(); 3726 if (isa<MemberExpr>(Callee)) { 3727 HandleValue(Callee, false /*AddressOf*/); 3728 for (auto Arg : E->arguments()) 3729 Visit(Arg); 3730 return; 3731 } 3732 3733 Inherited::VisitCXXMemberCallExpr(E); 3734 } 3735 3736 void VisitCallExpr(CallExpr *E) { 3737 // Treat std::move as a use. 3738 if (E->isCallToStdMove()) { 3739 HandleValue(E->getArg(0), /*AddressOf=*/false); 3740 return; 3741 } 3742 3743 Inherited::VisitCallExpr(E); 3744 } 3745 3746 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 3747 Expr *Callee = E->getCallee(); 3748 3749 if (isa<UnresolvedLookupExpr>(Callee)) 3750 return Inherited::VisitCXXOperatorCallExpr(E); 3751 3752 Visit(Callee); 3753 for (auto Arg : E->arguments()) 3754 HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/); 3755 } 3756 3757 void VisitBinaryOperator(BinaryOperator *E) { 3758 // If a field assignment is detected, remove the field from the 3759 // uninitiailized field set. 3760 if (E->getOpcode() == BO_Assign) 3761 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS())) 3762 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) 3763 if (!FD->getType()->isReferenceType()) 3764 DeclsToRemove.push_back(FD); 3765 3766 if (E->isCompoundAssignmentOp()) { 3767 HandleValue(E->getLHS(), false /*AddressOf*/); 3768 Visit(E->getRHS()); 3769 return; 3770 } 3771 3772 Inherited::VisitBinaryOperator(E); 3773 } 3774 3775 void VisitUnaryOperator(UnaryOperator *E) { 3776 if (E->isIncrementDecrementOp()) { 3777 HandleValue(E->getSubExpr(), false /*AddressOf*/); 3778 return; 3779 } 3780 if (E->getOpcode() == UO_AddrOf) { 3781 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) { 3782 HandleValue(ME->getBase(), true /*AddressOf*/); 3783 return; 3784 } 3785 } 3786 3787 Inherited::VisitUnaryOperator(E); 3788 } 3789 }; 3790 3791 // Diagnose value-uses of fields to initialize themselves, e.g. 3792 // foo(foo) 3793 // where foo is not also a parameter to the constructor. 3794 // Also diagnose across field uninitialized use such as 3795 // x(y), y(x) 3796 // TODO: implement -Wuninitialized and fold this into that framework. 3797 static void DiagnoseUninitializedFields( 3798 Sema &SemaRef, const CXXConstructorDecl *Constructor) { 3799 3800 if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit, 3801 Constructor->getLocation())) { 3802 return; 3803 } 3804 3805 if (Constructor->isInvalidDecl()) 3806 return; 3807 3808 const CXXRecordDecl *RD = Constructor->getParent(); 3809 3810 if (RD->isDependentContext()) 3811 return; 3812 3813 // Holds fields that are uninitialized. 3814 llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields; 3815 3816 // At the beginning, all fields are uninitialized. 3817 for (auto *I : RD->decls()) { 3818 if (auto *FD = dyn_cast<FieldDecl>(I)) { 3819 UninitializedFields.insert(FD); 3820 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { 3821 UninitializedFields.insert(IFD->getAnonField()); 3822 } 3823 } 3824 3825 llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses; 3826 for (auto I : RD->bases()) 3827 UninitializedBaseClasses.insert(I.getType().getCanonicalType()); 3828 3829 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 3830 return; 3831 3832 UninitializedFieldVisitor UninitializedChecker(SemaRef, 3833 UninitializedFields, 3834 UninitializedBaseClasses); 3835 3836 for (const auto *FieldInit : Constructor->inits()) { 3837 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 3838 break; 3839 3840 Expr *InitExpr = FieldInit->getInit(); 3841 if (!InitExpr) 3842 continue; 3843 3844 if (CXXDefaultInitExpr *Default = 3845 dyn_cast<CXXDefaultInitExpr>(InitExpr)) { 3846 InitExpr = Default->getExpr(); 3847 if (!InitExpr) 3848 continue; 3849 // In class initializers will point to the constructor. 3850 UninitializedChecker.CheckInitializer(InitExpr, Constructor, 3851 FieldInit->getAnyMember(), 3852 FieldInit->getBaseClass()); 3853 } else { 3854 UninitializedChecker.CheckInitializer(InitExpr, nullptr, 3855 FieldInit->getAnyMember(), 3856 FieldInit->getBaseClass()); 3857 } 3858 } 3859 } 3860 } // namespace 3861 3862 /// Enter a new C++ default initializer scope. After calling this, the 3863 /// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if 3864 /// parsing or instantiating the initializer failed. 3865 void Sema::ActOnStartCXXInClassMemberInitializer() { 3866 // Create a synthetic function scope to represent the call to the constructor 3867 // that notionally surrounds a use of this initializer. 3868 PushFunctionScope(); 3869 } 3870 3871 void Sema::ActOnStartTrailingRequiresClause(Scope *S, Declarator &D) { 3872 if (!D.isFunctionDeclarator()) 3873 return; 3874 auto &FTI = D.getFunctionTypeInfo(); 3875 if (!FTI.Params) 3876 return; 3877 for (auto &Param : ArrayRef<DeclaratorChunk::ParamInfo>(FTI.Params, 3878 FTI.NumParams)) { 3879 auto *ParamDecl = cast<NamedDecl>(Param.Param); 3880 if (ParamDecl->getDeclName()) 3881 PushOnScopeChains(ParamDecl, S, /*AddToContext=*/false); 3882 } 3883 } 3884 3885 ExprResult Sema::ActOnFinishTrailingRequiresClause(ExprResult ConstraintExpr) { 3886 if (ConstraintExpr.isInvalid()) 3887 return ExprError(); 3888 return CorrectDelayedTyposInExpr(ConstraintExpr); 3889 } 3890 3891 /// This is invoked after parsing an in-class initializer for a 3892 /// non-static C++ class member, and after instantiating an in-class initializer 3893 /// in a class template. Such actions are deferred until the class is complete. 3894 void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D, 3895 SourceLocation InitLoc, 3896 Expr *InitExpr) { 3897 // Pop the notional constructor scope we created earlier. 3898 PopFunctionScopeInfo(nullptr, D); 3899 3900 FieldDecl *FD = dyn_cast<FieldDecl>(D); 3901 assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) && 3902 "must set init style when field is created"); 3903 3904 if (!InitExpr) { 3905 D->setInvalidDecl(); 3906 if (FD) 3907 FD->removeInClassInitializer(); 3908 return; 3909 } 3910 3911 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) { 3912 FD->setInvalidDecl(); 3913 FD->removeInClassInitializer(); 3914 return; 3915 } 3916 3917 ExprResult Init = InitExpr; 3918 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) { 3919 InitializedEntity Entity = 3920 InitializedEntity::InitializeMemberFromDefaultMemberInitializer(FD); 3921 InitializationKind Kind = 3922 FD->getInClassInitStyle() == ICIS_ListInit 3923 ? InitializationKind::CreateDirectList(InitExpr->getBeginLoc(), 3924 InitExpr->getBeginLoc(), 3925 InitExpr->getEndLoc()) 3926 : InitializationKind::CreateCopy(InitExpr->getBeginLoc(), InitLoc); 3927 InitializationSequence Seq(*this, Entity, Kind, InitExpr); 3928 Init = Seq.Perform(*this, Entity, Kind, InitExpr); 3929 if (Init.isInvalid()) { 3930 FD->setInvalidDecl(); 3931 return; 3932 } 3933 } 3934 3935 // C++11 [class.base.init]p7: 3936 // The initialization of each base and member constitutes a 3937 // full-expression. 3938 Init = ActOnFinishFullExpr(Init.get(), InitLoc, /*DiscardedValue*/ false); 3939 if (Init.isInvalid()) { 3940 FD->setInvalidDecl(); 3941 return; 3942 } 3943 3944 InitExpr = Init.get(); 3945 3946 FD->setInClassInitializer(InitExpr); 3947 } 3948 3949 /// Find the direct and/or virtual base specifiers that 3950 /// correspond to the given base type, for use in base initialization 3951 /// within a constructor. 3952 static bool FindBaseInitializer(Sema &SemaRef, 3953 CXXRecordDecl *ClassDecl, 3954 QualType BaseType, 3955 const CXXBaseSpecifier *&DirectBaseSpec, 3956 const CXXBaseSpecifier *&VirtualBaseSpec) { 3957 // First, check for a direct base class. 3958 DirectBaseSpec = nullptr; 3959 for (const auto &Base : ClassDecl->bases()) { 3960 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) { 3961 // We found a direct base of this type. That's what we're 3962 // initializing. 3963 DirectBaseSpec = &Base; 3964 break; 3965 } 3966 } 3967 3968 // Check for a virtual base class. 3969 // FIXME: We might be able to short-circuit this if we know in advance that 3970 // there are no virtual bases. 3971 VirtualBaseSpec = nullptr; 3972 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) { 3973 // We haven't found a base yet; search the class hierarchy for a 3974 // virtual base class. 3975 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 3976 /*DetectVirtual=*/false); 3977 if (SemaRef.IsDerivedFrom(ClassDecl->getLocation(), 3978 SemaRef.Context.getTypeDeclType(ClassDecl), 3979 BaseType, Paths)) { 3980 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 3981 Path != Paths.end(); ++Path) { 3982 if (Path->back().Base->isVirtual()) { 3983 VirtualBaseSpec = Path->back().Base; 3984 break; 3985 } 3986 } 3987 } 3988 } 3989 3990 return DirectBaseSpec || VirtualBaseSpec; 3991 } 3992 3993 /// Handle a C++ member initializer using braced-init-list syntax. 3994 MemInitResult 3995 Sema::ActOnMemInitializer(Decl *ConstructorD, 3996 Scope *S, 3997 CXXScopeSpec &SS, 3998 IdentifierInfo *MemberOrBase, 3999 ParsedType TemplateTypeTy, 4000 const DeclSpec &DS, 4001 SourceLocation IdLoc, 4002 Expr *InitList, 4003 SourceLocation EllipsisLoc) { 4004 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 4005 DS, IdLoc, InitList, 4006 EllipsisLoc); 4007 } 4008 4009 /// Handle a C++ member initializer using parentheses syntax. 4010 MemInitResult 4011 Sema::ActOnMemInitializer(Decl *ConstructorD, 4012 Scope *S, 4013 CXXScopeSpec &SS, 4014 IdentifierInfo *MemberOrBase, 4015 ParsedType TemplateTypeTy, 4016 const DeclSpec &DS, 4017 SourceLocation IdLoc, 4018 SourceLocation LParenLoc, 4019 ArrayRef<Expr *> Args, 4020 SourceLocation RParenLoc, 4021 SourceLocation EllipsisLoc) { 4022 Expr *List = ParenListExpr::Create(Context, LParenLoc, Args, RParenLoc); 4023 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 4024 DS, IdLoc, List, EllipsisLoc); 4025 } 4026 4027 namespace { 4028 4029 // Callback to only accept typo corrections that can be a valid C++ member 4030 // intializer: either a non-static field member or a base class. 4031 class MemInitializerValidatorCCC final : public CorrectionCandidateCallback { 4032 public: 4033 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl) 4034 : ClassDecl(ClassDecl) {} 4035 4036 bool ValidateCandidate(const TypoCorrection &candidate) override { 4037 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 4038 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND)) 4039 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl); 4040 return isa<TypeDecl>(ND); 4041 } 4042 return false; 4043 } 4044 4045 std::unique_ptr<CorrectionCandidateCallback> clone() override { 4046 return std::make_unique<MemInitializerValidatorCCC>(*this); 4047 } 4048 4049 private: 4050 CXXRecordDecl *ClassDecl; 4051 }; 4052 4053 } 4054 4055 ValueDecl *Sema::tryLookupCtorInitMemberDecl(CXXRecordDecl *ClassDecl, 4056 CXXScopeSpec &SS, 4057 ParsedType TemplateTypeTy, 4058 IdentifierInfo *MemberOrBase) { 4059 if (SS.getScopeRep() || TemplateTypeTy) 4060 return nullptr; 4061 DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase); 4062 if (Result.empty()) 4063 return nullptr; 4064 ValueDecl *Member; 4065 if ((Member = dyn_cast<FieldDecl>(Result.front())) || 4066 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) 4067 return Member; 4068 return nullptr; 4069 } 4070 4071 /// Handle a C++ member initializer. 4072 MemInitResult 4073 Sema::BuildMemInitializer(Decl *ConstructorD, 4074 Scope *S, 4075 CXXScopeSpec &SS, 4076 IdentifierInfo *MemberOrBase, 4077 ParsedType TemplateTypeTy, 4078 const DeclSpec &DS, 4079 SourceLocation IdLoc, 4080 Expr *Init, 4081 SourceLocation EllipsisLoc) { 4082 ExprResult Res = CorrectDelayedTyposInExpr(Init); 4083 if (!Res.isUsable()) 4084 return true; 4085 Init = Res.get(); 4086 4087 if (!ConstructorD) 4088 return true; 4089 4090 AdjustDeclIfTemplate(ConstructorD); 4091 4092 CXXConstructorDecl *Constructor 4093 = dyn_cast<CXXConstructorDecl>(ConstructorD); 4094 if (!Constructor) { 4095 // The user wrote a constructor initializer on a function that is 4096 // not a C++ constructor. Ignore the error for now, because we may 4097 // have more member initializers coming; we'll diagnose it just 4098 // once in ActOnMemInitializers. 4099 return true; 4100 } 4101 4102 CXXRecordDecl *ClassDecl = Constructor->getParent(); 4103 4104 // C++ [class.base.init]p2: 4105 // Names in a mem-initializer-id are looked up in the scope of the 4106 // constructor's class and, if not found in that scope, are looked 4107 // up in the scope containing the constructor's definition. 4108 // [Note: if the constructor's class contains a member with the 4109 // same name as a direct or virtual base class of the class, a 4110 // mem-initializer-id naming the member or base class and composed 4111 // of a single identifier refers to the class member. A 4112 // mem-initializer-id for the hidden base class may be specified 4113 // using a qualified name. ] 4114 4115 // Look for a member, first. 4116 if (ValueDecl *Member = tryLookupCtorInitMemberDecl( 4117 ClassDecl, SS, TemplateTypeTy, MemberOrBase)) { 4118 if (EllipsisLoc.isValid()) 4119 Diag(EllipsisLoc, diag::err_pack_expansion_member_init) 4120 << MemberOrBase 4121 << SourceRange(IdLoc, Init->getSourceRange().getEnd()); 4122 4123 return BuildMemberInitializer(Member, Init, IdLoc); 4124 } 4125 // It didn't name a member, so see if it names a class. 4126 QualType BaseType; 4127 TypeSourceInfo *TInfo = nullptr; 4128 4129 if (TemplateTypeTy) { 4130 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo); 4131 if (BaseType.isNull()) 4132 return true; 4133 } else if (DS.getTypeSpecType() == TST_decltype) { 4134 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); 4135 } else if (DS.getTypeSpecType() == TST_decltype_auto) { 4136 Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid); 4137 return true; 4138 } else { 4139 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName); 4140 LookupParsedName(R, S, &SS); 4141 4142 TypeDecl *TyD = R.getAsSingle<TypeDecl>(); 4143 if (!TyD) { 4144 if (R.isAmbiguous()) return true; 4145 4146 // We don't want access-control diagnostics here. 4147 R.suppressDiagnostics(); 4148 4149 if (SS.isSet() && isDependentScopeSpecifier(SS)) { 4150 bool NotUnknownSpecialization = false; 4151 DeclContext *DC = computeDeclContext(SS, false); 4152 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC)) 4153 NotUnknownSpecialization = !Record->hasAnyDependentBases(); 4154 4155 if (!NotUnknownSpecialization) { 4156 // When the scope specifier can refer to a member of an unknown 4157 // specialization, we take it as a type name. 4158 BaseType = CheckTypenameType(ETK_None, SourceLocation(), 4159 SS.getWithLocInContext(Context), 4160 *MemberOrBase, IdLoc); 4161 if (BaseType.isNull()) 4162 return true; 4163 4164 TInfo = Context.CreateTypeSourceInfo(BaseType); 4165 DependentNameTypeLoc TL = 4166 TInfo->getTypeLoc().castAs<DependentNameTypeLoc>(); 4167 if (!TL.isNull()) { 4168 TL.setNameLoc(IdLoc); 4169 TL.setElaboratedKeywordLoc(SourceLocation()); 4170 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 4171 } 4172 4173 R.clear(); 4174 R.setLookupName(MemberOrBase); 4175 } 4176 } 4177 4178 // If no results were found, try to correct typos. 4179 TypoCorrection Corr; 4180 MemInitializerValidatorCCC CCC(ClassDecl); 4181 if (R.empty() && BaseType.isNull() && 4182 (Corr = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 4183 CCC, CTK_ErrorRecovery, ClassDecl))) { 4184 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) { 4185 // We have found a non-static data member with a similar 4186 // name to what was typed; complain and initialize that 4187 // member. 4188 diagnoseTypo(Corr, 4189 PDiag(diag::err_mem_init_not_member_or_class_suggest) 4190 << MemberOrBase << true); 4191 return BuildMemberInitializer(Member, Init, IdLoc); 4192 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) { 4193 const CXXBaseSpecifier *DirectBaseSpec; 4194 const CXXBaseSpecifier *VirtualBaseSpec; 4195 if (FindBaseInitializer(*this, ClassDecl, 4196 Context.getTypeDeclType(Type), 4197 DirectBaseSpec, VirtualBaseSpec)) { 4198 // We have found a direct or virtual base class with a 4199 // similar name to what was typed; complain and initialize 4200 // that base class. 4201 diagnoseTypo(Corr, 4202 PDiag(diag::err_mem_init_not_member_or_class_suggest) 4203 << MemberOrBase << false, 4204 PDiag() /*Suppress note, we provide our own.*/); 4205 4206 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec 4207 : VirtualBaseSpec; 4208 Diag(BaseSpec->getBeginLoc(), diag::note_base_class_specified_here) 4209 << BaseSpec->getType() << BaseSpec->getSourceRange(); 4210 4211 TyD = Type; 4212 } 4213 } 4214 } 4215 4216 if (!TyD && BaseType.isNull()) { 4217 Diag(IdLoc, diag::err_mem_init_not_member_or_class) 4218 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd()); 4219 return true; 4220 } 4221 } 4222 4223 if (BaseType.isNull()) { 4224 BaseType = Context.getTypeDeclType(TyD); 4225 MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false); 4226 if (SS.isSet()) { 4227 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(), 4228 BaseType); 4229 TInfo = Context.CreateTypeSourceInfo(BaseType); 4230 ElaboratedTypeLoc TL = TInfo->getTypeLoc().castAs<ElaboratedTypeLoc>(); 4231 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc); 4232 TL.setElaboratedKeywordLoc(SourceLocation()); 4233 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 4234 } 4235 } 4236 } 4237 4238 if (!TInfo) 4239 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc); 4240 4241 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc); 4242 } 4243 4244 MemInitResult 4245 Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init, 4246 SourceLocation IdLoc) { 4247 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member); 4248 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member); 4249 assert((DirectMember || IndirectMember) && 4250 "Member must be a FieldDecl or IndirectFieldDecl"); 4251 4252 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 4253 return true; 4254 4255 if (Member->isInvalidDecl()) 4256 return true; 4257 4258 MultiExprArg Args; 4259 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 4260 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 4261 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) { 4262 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); 4263 } else { 4264 // Template instantiation doesn't reconstruct ParenListExprs for us. 4265 Args = Init; 4266 } 4267 4268 SourceRange InitRange = Init->getSourceRange(); 4269 4270 if (Member->getType()->isDependentType() || Init->isTypeDependent()) { 4271 // Can't check initialization for a member of dependent type or when 4272 // any of the arguments are type-dependent expressions. 4273 DiscardCleanupsInEvaluationContext(); 4274 } else { 4275 bool InitList = false; 4276 if (isa<InitListExpr>(Init)) { 4277 InitList = true; 4278 Args = Init; 4279 } 4280 4281 // Initialize the member. 4282 InitializedEntity MemberEntity = 4283 DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr) 4284 : InitializedEntity::InitializeMember(IndirectMember, 4285 nullptr); 4286 InitializationKind Kind = 4287 InitList ? InitializationKind::CreateDirectList( 4288 IdLoc, Init->getBeginLoc(), Init->getEndLoc()) 4289 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(), 4290 InitRange.getEnd()); 4291 4292 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args); 4293 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args, 4294 nullptr); 4295 if (MemberInit.isInvalid()) 4296 return true; 4297 4298 // C++11 [class.base.init]p7: 4299 // The initialization of each base and member constitutes a 4300 // full-expression. 4301 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin(), 4302 /*DiscardedValue*/ false); 4303 if (MemberInit.isInvalid()) 4304 return true; 4305 4306 Init = MemberInit.get(); 4307 } 4308 4309 if (DirectMember) { 4310 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc, 4311 InitRange.getBegin(), Init, 4312 InitRange.getEnd()); 4313 } else { 4314 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc, 4315 InitRange.getBegin(), Init, 4316 InitRange.getEnd()); 4317 } 4318 } 4319 4320 MemInitResult 4321 Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init, 4322 CXXRecordDecl *ClassDecl) { 4323 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin(); 4324 if (!LangOpts.CPlusPlus11) 4325 return Diag(NameLoc, diag::err_delegating_ctor) 4326 << TInfo->getTypeLoc().getLocalSourceRange(); 4327 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor); 4328 4329 bool InitList = true; 4330 MultiExprArg Args = Init; 4331 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 4332 InitList = false; 4333 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 4334 } 4335 4336 SourceRange InitRange = Init->getSourceRange(); 4337 // Initialize the object. 4338 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation( 4339 QualType(ClassDecl->getTypeForDecl(), 0)); 4340 InitializationKind Kind = 4341 InitList ? InitializationKind::CreateDirectList( 4342 NameLoc, Init->getBeginLoc(), Init->getEndLoc()) 4343 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(), 4344 InitRange.getEnd()); 4345 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args); 4346 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind, 4347 Args, nullptr); 4348 if (DelegationInit.isInvalid()) 4349 return true; 4350 4351 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() && 4352 "Delegating constructor with no target?"); 4353 4354 // C++11 [class.base.init]p7: 4355 // The initialization of each base and member constitutes a 4356 // full-expression. 4357 DelegationInit = ActOnFinishFullExpr( 4358 DelegationInit.get(), InitRange.getBegin(), /*DiscardedValue*/ false); 4359 if (DelegationInit.isInvalid()) 4360 return true; 4361 4362 // If we are in a dependent context, template instantiation will 4363 // perform this type-checking again. Just save the arguments that we 4364 // received in a ParenListExpr. 4365 // FIXME: This isn't quite ideal, since our ASTs don't capture all 4366 // of the information that we have about the base 4367 // initializer. However, deconstructing the ASTs is a dicey process, 4368 // and this approach is far more likely to get the corner cases right. 4369 if (CurContext->isDependentContext()) 4370 DelegationInit = Init; 4371 4372 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(), 4373 DelegationInit.getAs<Expr>(), 4374 InitRange.getEnd()); 4375 } 4376 4377 MemInitResult 4378 Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, 4379 Expr *Init, CXXRecordDecl *ClassDecl, 4380 SourceLocation EllipsisLoc) { 4381 SourceLocation BaseLoc 4382 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin(); 4383 4384 if (!BaseType->isDependentType() && !BaseType->isRecordType()) 4385 return Diag(BaseLoc, diag::err_base_init_does_not_name_class) 4386 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 4387 4388 // C++ [class.base.init]p2: 4389 // [...] Unless the mem-initializer-id names a nonstatic data 4390 // member of the constructor's class or a direct or virtual base 4391 // of that class, the mem-initializer is ill-formed. A 4392 // mem-initializer-list can initialize a base class using any 4393 // name that denotes that base class type. 4394 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent(); 4395 4396 SourceRange InitRange = Init->getSourceRange(); 4397 if (EllipsisLoc.isValid()) { 4398 // This is a pack expansion. 4399 if (!BaseType->containsUnexpandedParameterPack()) { 4400 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 4401 << SourceRange(BaseLoc, InitRange.getEnd()); 4402 4403 EllipsisLoc = SourceLocation(); 4404 } 4405 } else { 4406 // Check for any unexpanded parameter packs. 4407 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer)) 4408 return true; 4409 4410 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 4411 return true; 4412 } 4413 4414 // Check for direct and virtual base classes. 4415 const CXXBaseSpecifier *DirectBaseSpec = nullptr; 4416 const CXXBaseSpecifier *VirtualBaseSpec = nullptr; 4417 if (!Dependent) { 4418 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0), 4419 BaseType)) 4420 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl); 4421 4422 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec, 4423 VirtualBaseSpec); 4424 4425 // C++ [base.class.init]p2: 4426 // Unless the mem-initializer-id names a nonstatic data member of the 4427 // constructor's class or a direct or virtual base of that class, the 4428 // mem-initializer is ill-formed. 4429 if (!DirectBaseSpec && !VirtualBaseSpec) { 4430 // If the class has any dependent bases, then it's possible that 4431 // one of those types will resolve to the same type as 4432 // BaseType. Therefore, just treat this as a dependent base 4433 // class initialization. FIXME: Should we try to check the 4434 // initialization anyway? It seems odd. 4435 if (ClassDecl->hasAnyDependentBases()) 4436 Dependent = true; 4437 else 4438 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual) 4439 << BaseType << Context.getTypeDeclType(ClassDecl) 4440 << BaseTInfo->getTypeLoc().getLocalSourceRange(); 4441 } 4442 } 4443 4444 if (Dependent) { 4445 DiscardCleanupsInEvaluationContext(); 4446 4447 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 4448 /*IsVirtual=*/false, 4449 InitRange.getBegin(), Init, 4450 InitRange.getEnd(), EllipsisLoc); 4451 } 4452 4453 // C++ [base.class.init]p2: 4454 // If a mem-initializer-id is ambiguous because it designates both 4455 // a direct non-virtual base class and an inherited virtual base 4456 // class, the mem-initializer is ill-formed. 4457 if (DirectBaseSpec && VirtualBaseSpec) 4458 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual) 4459 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 4460 4461 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec; 4462 if (!BaseSpec) 4463 BaseSpec = VirtualBaseSpec; 4464 4465 // Initialize the base. 4466 bool InitList = true; 4467 MultiExprArg Args = Init; 4468 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 4469 InitList = false; 4470 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 4471 } 4472 4473 InitializedEntity BaseEntity = 4474 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec); 4475 InitializationKind Kind = 4476 InitList ? InitializationKind::CreateDirectList(BaseLoc) 4477 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(), 4478 InitRange.getEnd()); 4479 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args); 4480 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr); 4481 if (BaseInit.isInvalid()) 4482 return true; 4483 4484 // C++11 [class.base.init]p7: 4485 // The initialization of each base and member constitutes a 4486 // full-expression. 4487 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin(), 4488 /*DiscardedValue*/ false); 4489 if (BaseInit.isInvalid()) 4490 return true; 4491 4492 // If we are in a dependent context, template instantiation will 4493 // perform this type-checking again. Just save the arguments that we 4494 // received in a ParenListExpr. 4495 // FIXME: This isn't quite ideal, since our ASTs don't capture all 4496 // of the information that we have about the base 4497 // initializer. However, deconstructing the ASTs is a dicey process, 4498 // and this approach is far more likely to get the corner cases right. 4499 if (CurContext->isDependentContext()) 4500 BaseInit = Init; 4501 4502 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 4503 BaseSpec->isVirtual(), 4504 InitRange.getBegin(), 4505 BaseInit.getAs<Expr>(), 4506 InitRange.getEnd(), EllipsisLoc); 4507 } 4508 4509 // Create a static_cast\<T&&>(expr). 4510 static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) { 4511 if (T.isNull()) T = E->getType(); 4512 QualType TargetType = SemaRef.BuildReferenceType( 4513 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName()); 4514 SourceLocation ExprLoc = E->getBeginLoc(); 4515 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo( 4516 TargetType, ExprLoc); 4517 4518 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E, 4519 SourceRange(ExprLoc, ExprLoc), 4520 E->getSourceRange()).get(); 4521 } 4522 4523 /// ImplicitInitializerKind - How an implicit base or member initializer should 4524 /// initialize its base or member. 4525 enum ImplicitInitializerKind { 4526 IIK_Default, 4527 IIK_Copy, 4528 IIK_Move, 4529 IIK_Inherit 4530 }; 4531 4532 static bool 4533 BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 4534 ImplicitInitializerKind ImplicitInitKind, 4535 CXXBaseSpecifier *BaseSpec, 4536 bool IsInheritedVirtualBase, 4537 CXXCtorInitializer *&CXXBaseInit) { 4538 InitializedEntity InitEntity 4539 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec, 4540 IsInheritedVirtualBase); 4541 4542 ExprResult BaseInit; 4543 4544 switch (ImplicitInitKind) { 4545 case IIK_Inherit: 4546 case IIK_Default: { 4547 InitializationKind InitKind 4548 = InitializationKind::CreateDefault(Constructor->getLocation()); 4549 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 4550 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 4551 break; 4552 } 4553 4554 case IIK_Move: 4555 case IIK_Copy: { 4556 bool Moving = ImplicitInitKind == IIK_Move; 4557 ParmVarDecl *Param = Constructor->getParamDecl(0); 4558 QualType ParamType = Param->getType().getNonReferenceType(); 4559 4560 Expr *CopyCtorArg = 4561 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 4562 SourceLocation(), Param, false, 4563 Constructor->getLocation(), ParamType, 4564 VK_LValue, nullptr); 4565 4566 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg)); 4567 4568 // Cast to the base class to avoid ambiguities. 4569 QualType ArgTy = 4570 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(), 4571 ParamType.getQualifiers()); 4572 4573 if (Moving) { 4574 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg); 4575 } 4576 4577 CXXCastPath BasePath; 4578 BasePath.push_back(BaseSpec); 4579 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy, 4580 CK_UncheckedDerivedToBase, 4581 Moving ? VK_XValue : VK_LValue, 4582 &BasePath).get(); 4583 4584 InitializationKind InitKind 4585 = InitializationKind::CreateDirect(Constructor->getLocation(), 4586 SourceLocation(), SourceLocation()); 4587 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg); 4588 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg); 4589 break; 4590 } 4591 } 4592 4593 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit); 4594 if (BaseInit.isInvalid()) 4595 return true; 4596 4597 CXXBaseInit = 4598 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 4599 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(), 4600 SourceLocation()), 4601 BaseSpec->isVirtual(), 4602 SourceLocation(), 4603 BaseInit.getAs<Expr>(), 4604 SourceLocation(), 4605 SourceLocation()); 4606 4607 return false; 4608 } 4609 4610 static bool RefersToRValueRef(Expr *MemRef) { 4611 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl(); 4612 return Referenced->getType()->isRValueReferenceType(); 4613 } 4614 4615 static bool 4616 BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 4617 ImplicitInitializerKind ImplicitInitKind, 4618 FieldDecl *Field, IndirectFieldDecl *Indirect, 4619 CXXCtorInitializer *&CXXMemberInit) { 4620 if (Field->isInvalidDecl()) 4621 return true; 4622 4623 SourceLocation Loc = Constructor->getLocation(); 4624 4625 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) { 4626 bool Moving = ImplicitInitKind == IIK_Move; 4627 ParmVarDecl *Param = Constructor->getParamDecl(0); 4628 QualType ParamType = Param->getType().getNonReferenceType(); 4629 4630 // Suppress copying zero-width bitfields. 4631 if (Field->isZeroLengthBitField(SemaRef.Context)) 4632 return false; 4633 4634 Expr *MemberExprBase = 4635 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 4636 SourceLocation(), Param, false, 4637 Loc, ParamType, VK_LValue, nullptr); 4638 4639 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase)); 4640 4641 if (Moving) { 4642 MemberExprBase = CastForMoving(SemaRef, MemberExprBase); 4643 } 4644 4645 // Build a reference to this field within the parameter. 4646 CXXScopeSpec SS; 4647 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc, 4648 Sema::LookupMemberName); 4649 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect) 4650 : cast<ValueDecl>(Field), AS_public); 4651 MemberLookup.resolveKind(); 4652 ExprResult CtorArg 4653 = SemaRef.BuildMemberReferenceExpr(MemberExprBase, 4654 ParamType, Loc, 4655 /*IsArrow=*/false, 4656 SS, 4657 /*TemplateKWLoc=*/SourceLocation(), 4658 /*FirstQualifierInScope=*/nullptr, 4659 MemberLookup, 4660 /*TemplateArgs=*/nullptr, 4661 /*S*/nullptr); 4662 if (CtorArg.isInvalid()) 4663 return true; 4664 4665 // C++11 [class.copy]p15: 4666 // - if a member m has rvalue reference type T&&, it is direct-initialized 4667 // with static_cast<T&&>(x.m); 4668 if (RefersToRValueRef(CtorArg.get())) { 4669 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 4670 } 4671 4672 InitializedEntity Entity = 4673 Indirect ? InitializedEntity::InitializeMember(Indirect, nullptr, 4674 /*Implicit*/ true) 4675 : InitializedEntity::InitializeMember(Field, nullptr, 4676 /*Implicit*/ true); 4677 4678 // Direct-initialize to use the copy constructor. 4679 InitializationKind InitKind = 4680 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation()); 4681 4682 Expr *CtorArgE = CtorArg.getAs<Expr>(); 4683 InitializationSequence InitSeq(SemaRef, Entity, InitKind, CtorArgE); 4684 ExprResult MemberInit = 4685 InitSeq.Perform(SemaRef, Entity, InitKind, MultiExprArg(&CtorArgE, 1)); 4686 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 4687 if (MemberInit.isInvalid()) 4688 return true; 4689 4690 if (Indirect) 4691 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer( 4692 SemaRef.Context, Indirect, Loc, Loc, MemberInit.getAs<Expr>(), Loc); 4693 else 4694 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer( 4695 SemaRef.Context, Field, Loc, Loc, MemberInit.getAs<Expr>(), Loc); 4696 return false; 4697 } 4698 4699 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) && 4700 "Unhandled implicit init kind!"); 4701 4702 QualType FieldBaseElementType = 4703 SemaRef.Context.getBaseElementType(Field->getType()); 4704 4705 if (FieldBaseElementType->isRecordType()) { 4706 InitializedEntity InitEntity = 4707 Indirect ? InitializedEntity::InitializeMember(Indirect, nullptr, 4708 /*Implicit*/ true) 4709 : InitializedEntity::InitializeMember(Field, nullptr, 4710 /*Implicit*/ true); 4711 InitializationKind InitKind = 4712 InitializationKind::CreateDefault(Loc); 4713 4714 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 4715 ExprResult MemberInit = 4716 InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 4717 4718 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 4719 if (MemberInit.isInvalid()) 4720 return true; 4721 4722 if (Indirect) 4723 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 4724 Indirect, Loc, 4725 Loc, 4726 MemberInit.get(), 4727 Loc); 4728 else 4729 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 4730 Field, Loc, Loc, 4731 MemberInit.get(), 4732 Loc); 4733 return false; 4734 } 4735 4736 if (!Field->getParent()->isUnion()) { 4737 if (FieldBaseElementType->isReferenceType()) { 4738 SemaRef.Diag(Constructor->getLocation(), 4739 diag::err_uninitialized_member_in_ctor) 4740 << (int)Constructor->isImplicit() 4741 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 4742 << 0 << Field->getDeclName(); 4743 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 4744 return true; 4745 } 4746 4747 if (FieldBaseElementType.isConstQualified()) { 4748 SemaRef.Diag(Constructor->getLocation(), 4749 diag::err_uninitialized_member_in_ctor) 4750 << (int)Constructor->isImplicit() 4751 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 4752 << 1 << Field->getDeclName(); 4753 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 4754 return true; 4755 } 4756 } 4757 4758 if (FieldBaseElementType.hasNonTrivialObjCLifetime()) { 4759 // ARC and Weak: 4760 // Default-initialize Objective-C pointers to NULL. 4761 CXXMemberInit 4762 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field, 4763 Loc, Loc, 4764 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()), 4765 Loc); 4766 return false; 4767 } 4768 4769 // Nothing to initialize. 4770 CXXMemberInit = nullptr; 4771 return false; 4772 } 4773 4774 namespace { 4775 struct BaseAndFieldInfo { 4776 Sema &S; 4777 CXXConstructorDecl *Ctor; 4778 bool AnyErrorsInInits; 4779 ImplicitInitializerKind IIK; 4780 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields; 4781 SmallVector<CXXCtorInitializer*, 8> AllToInit; 4782 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember; 4783 4784 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits) 4785 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) { 4786 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted(); 4787 if (Ctor->getInheritedConstructor()) 4788 IIK = IIK_Inherit; 4789 else if (Generated && Ctor->isCopyConstructor()) 4790 IIK = IIK_Copy; 4791 else if (Generated && Ctor->isMoveConstructor()) 4792 IIK = IIK_Move; 4793 else 4794 IIK = IIK_Default; 4795 } 4796 4797 bool isImplicitCopyOrMove() const { 4798 switch (IIK) { 4799 case IIK_Copy: 4800 case IIK_Move: 4801 return true; 4802 4803 case IIK_Default: 4804 case IIK_Inherit: 4805 return false; 4806 } 4807 4808 llvm_unreachable("Invalid ImplicitInitializerKind!"); 4809 } 4810 4811 bool addFieldInitializer(CXXCtorInitializer *Init) { 4812 AllToInit.push_back(Init); 4813 4814 // Check whether this initializer makes the field "used". 4815 if (Init->getInit()->HasSideEffects(S.Context)) 4816 S.UnusedPrivateFields.remove(Init->getAnyMember()); 4817 4818 return false; 4819 } 4820 4821 bool isInactiveUnionMember(FieldDecl *Field) { 4822 RecordDecl *Record = Field->getParent(); 4823 if (!Record->isUnion()) 4824 return false; 4825 4826 if (FieldDecl *Active = 4827 ActiveUnionMember.lookup(Record->getCanonicalDecl())) 4828 return Active != Field->getCanonicalDecl(); 4829 4830 // In an implicit copy or move constructor, ignore any in-class initializer. 4831 if (isImplicitCopyOrMove()) 4832 return true; 4833 4834 // If there's no explicit initialization, the field is active only if it 4835 // has an in-class initializer... 4836 if (Field->hasInClassInitializer()) 4837 return false; 4838 // ... or it's an anonymous struct or union whose class has an in-class 4839 // initializer. 4840 if (!Field->isAnonymousStructOrUnion()) 4841 return true; 4842 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl(); 4843 return !FieldRD->hasInClassInitializer(); 4844 } 4845 4846 /// Determine whether the given field is, or is within, a union member 4847 /// that is inactive (because there was an initializer given for a different 4848 /// member of the union, or because the union was not initialized at all). 4849 bool isWithinInactiveUnionMember(FieldDecl *Field, 4850 IndirectFieldDecl *Indirect) { 4851 if (!Indirect) 4852 return isInactiveUnionMember(Field); 4853 4854 for (auto *C : Indirect->chain()) { 4855 FieldDecl *Field = dyn_cast<FieldDecl>(C); 4856 if (Field && isInactiveUnionMember(Field)) 4857 return true; 4858 } 4859 return false; 4860 } 4861 }; 4862 } 4863 4864 /// Determine whether the given type is an incomplete or zero-lenfgth 4865 /// array type. 4866 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) { 4867 if (T->isIncompleteArrayType()) 4868 return true; 4869 4870 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) { 4871 if (!ArrayT->getSize()) 4872 return true; 4873 4874 T = ArrayT->getElementType(); 4875 } 4876 4877 return false; 4878 } 4879 4880 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info, 4881 FieldDecl *Field, 4882 IndirectFieldDecl *Indirect = nullptr) { 4883 if (Field->isInvalidDecl()) 4884 return false; 4885 4886 // Overwhelmingly common case: we have a direct initializer for this field. 4887 if (CXXCtorInitializer *Init = 4888 Info.AllBaseFields.lookup(Field->getCanonicalDecl())) 4889 return Info.addFieldInitializer(Init); 4890 4891 // C++11 [class.base.init]p8: 4892 // if the entity is a non-static data member that has a 4893 // brace-or-equal-initializer and either 4894 // -- the constructor's class is a union and no other variant member of that 4895 // union is designated by a mem-initializer-id or 4896 // -- the constructor's class is not a union, and, if the entity is a member 4897 // of an anonymous union, no other member of that union is designated by 4898 // a mem-initializer-id, 4899 // the entity is initialized as specified in [dcl.init]. 4900 // 4901 // We also apply the same rules to handle anonymous structs within anonymous 4902 // unions. 4903 if (Info.isWithinInactiveUnionMember(Field, Indirect)) 4904 return false; 4905 4906 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) { 4907 ExprResult DIE = 4908 SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field); 4909 if (DIE.isInvalid()) 4910 return true; 4911 4912 auto Entity = InitializedEntity::InitializeMember(Field, nullptr, true); 4913 SemaRef.checkInitializerLifetime(Entity, DIE.get()); 4914 4915 CXXCtorInitializer *Init; 4916 if (Indirect) 4917 Init = new (SemaRef.Context) 4918 CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(), 4919 SourceLocation(), DIE.get(), SourceLocation()); 4920 else 4921 Init = new (SemaRef.Context) 4922 CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(), 4923 SourceLocation(), DIE.get(), SourceLocation()); 4924 return Info.addFieldInitializer(Init); 4925 } 4926 4927 // Don't initialize incomplete or zero-length arrays. 4928 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType())) 4929 return false; 4930 4931 // Don't try to build an implicit initializer if there were semantic 4932 // errors in any of the initializers (and therefore we might be 4933 // missing some that the user actually wrote). 4934 if (Info.AnyErrorsInInits) 4935 return false; 4936 4937 CXXCtorInitializer *Init = nullptr; 4938 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, 4939 Indirect, Init)) 4940 return true; 4941 4942 if (!Init) 4943 return false; 4944 4945 return Info.addFieldInitializer(Init); 4946 } 4947 4948 bool 4949 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor, 4950 CXXCtorInitializer *Initializer) { 4951 assert(Initializer->isDelegatingInitializer()); 4952 Constructor->setNumCtorInitializers(1); 4953 CXXCtorInitializer **initializer = 4954 new (Context) CXXCtorInitializer*[1]; 4955 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*)); 4956 Constructor->setCtorInitializers(initializer); 4957 4958 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) { 4959 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); 4960 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); 4961 } 4962 4963 DelegatingCtorDecls.push_back(Constructor); 4964 4965 DiagnoseUninitializedFields(*this, Constructor); 4966 4967 return false; 4968 } 4969 4970 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors, 4971 ArrayRef<CXXCtorInitializer *> Initializers) { 4972 if (Constructor->isDependentContext()) { 4973 // Just store the initializers as written, they will be checked during 4974 // instantiation. 4975 if (!Initializers.empty()) { 4976 Constructor->setNumCtorInitializers(Initializers.size()); 4977 CXXCtorInitializer **baseOrMemberInitializers = 4978 new (Context) CXXCtorInitializer*[Initializers.size()]; 4979 memcpy(baseOrMemberInitializers, Initializers.data(), 4980 Initializers.size() * sizeof(CXXCtorInitializer*)); 4981 Constructor->setCtorInitializers(baseOrMemberInitializers); 4982 } 4983 4984 // Let template instantiation know whether we had errors. 4985 if (AnyErrors) 4986 Constructor->setInvalidDecl(); 4987 4988 return false; 4989 } 4990 4991 BaseAndFieldInfo Info(*this, Constructor, AnyErrors); 4992 4993 // We need to build the initializer AST according to order of construction 4994 // and not what user specified in the Initializers list. 4995 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition(); 4996 if (!ClassDecl) 4997 return true; 4998 4999 bool HadError = false; 5000 5001 for (unsigned i = 0; i < Initializers.size(); i++) { 5002 CXXCtorInitializer *Member = Initializers[i]; 5003 5004 if (Member->isBaseInitializer()) 5005 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member; 5006 else { 5007 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member; 5008 5009 if (IndirectFieldDecl *F = Member->getIndirectMember()) { 5010 for (auto *C : F->chain()) { 5011 FieldDecl *FD = dyn_cast<FieldDecl>(C); 5012 if (FD && FD->getParent()->isUnion()) 5013 Info.ActiveUnionMember.insert(std::make_pair( 5014 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 5015 } 5016 } else if (FieldDecl *FD = Member->getMember()) { 5017 if (FD->getParent()->isUnion()) 5018 Info.ActiveUnionMember.insert(std::make_pair( 5019 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 5020 } 5021 } 5022 } 5023 5024 // Keep track of the direct virtual bases. 5025 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases; 5026 for (auto &I : ClassDecl->bases()) { 5027 if (I.isVirtual()) 5028 DirectVBases.insert(&I); 5029 } 5030 5031 // Push virtual bases before others. 5032 for (auto &VBase : ClassDecl->vbases()) { 5033 if (CXXCtorInitializer *Value 5034 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) { 5035 // [class.base.init]p7, per DR257: 5036 // A mem-initializer where the mem-initializer-id names a virtual base 5037 // class is ignored during execution of a constructor of any class that 5038 // is not the most derived class. 5039 if (ClassDecl->isAbstract()) { 5040 // FIXME: Provide a fixit to remove the base specifier. This requires 5041 // tracking the location of the associated comma for a base specifier. 5042 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) 5043 << VBase.getType() << ClassDecl; 5044 DiagnoseAbstractType(ClassDecl); 5045 } 5046 5047 Info.AllToInit.push_back(Value); 5048 } else if (!AnyErrors && !ClassDecl->isAbstract()) { 5049 // [class.base.init]p8, per DR257: 5050 // If a given [...] base class is not named by a mem-initializer-id 5051 // [...] and the entity is not a virtual base class of an abstract 5052 // class, then [...] the entity is default-initialized. 5053 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase); 5054 CXXCtorInitializer *CXXBaseInit; 5055 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 5056 &VBase, IsInheritedVirtualBase, 5057 CXXBaseInit)) { 5058 HadError = true; 5059 continue; 5060 } 5061 5062 Info.AllToInit.push_back(CXXBaseInit); 5063 } 5064 } 5065 5066 // Non-virtual bases. 5067 for (auto &Base : ClassDecl->bases()) { 5068 // Virtuals are in the virtual base list and already constructed. 5069 if (Base.isVirtual()) 5070 continue; 5071 5072 if (CXXCtorInitializer *Value 5073 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) { 5074 Info.AllToInit.push_back(Value); 5075 } else if (!AnyErrors) { 5076 CXXCtorInitializer *CXXBaseInit; 5077 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 5078 &Base, /*IsInheritedVirtualBase=*/false, 5079 CXXBaseInit)) { 5080 HadError = true; 5081 continue; 5082 } 5083 5084 Info.AllToInit.push_back(CXXBaseInit); 5085 } 5086 } 5087 5088 // Fields. 5089 for (auto *Mem : ClassDecl->decls()) { 5090 if (auto *F = dyn_cast<FieldDecl>(Mem)) { 5091 // C++ [class.bit]p2: 5092 // A declaration for a bit-field that omits the identifier declares an 5093 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 5094 // initialized. 5095 if (F->isUnnamedBitfield()) 5096 continue; 5097 5098 // If we're not generating the implicit copy/move constructor, then we'll 5099 // handle anonymous struct/union fields based on their individual 5100 // indirect fields. 5101 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove()) 5102 continue; 5103 5104 if (CollectFieldInitializer(*this, Info, F)) 5105 HadError = true; 5106 continue; 5107 } 5108 5109 // Beyond this point, we only consider default initialization. 5110 if (Info.isImplicitCopyOrMove()) 5111 continue; 5112 5113 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) { 5114 if (F->getType()->isIncompleteArrayType()) { 5115 assert(ClassDecl->hasFlexibleArrayMember() && 5116 "Incomplete array type is not valid"); 5117 continue; 5118 } 5119 5120 // Initialize each field of an anonymous struct individually. 5121 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F)) 5122 HadError = true; 5123 5124 continue; 5125 } 5126 } 5127 5128 unsigned NumInitializers = Info.AllToInit.size(); 5129 if (NumInitializers > 0) { 5130 Constructor->setNumCtorInitializers(NumInitializers); 5131 CXXCtorInitializer **baseOrMemberInitializers = 5132 new (Context) CXXCtorInitializer*[NumInitializers]; 5133 memcpy(baseOrMemberInitializers, Info.AllToInit.data(), 5134 NumInitializers * sizeof(CXXCtorInitializer*)); 5135 Constructor->setCtorInitializers(baseOrMemberInitializers); 5136 5137 // Constructors implicitly reference the base and member 5138 // destructors. 5139 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(), 5140 Constructor->getParent()); 5141 } 5142 5143 return HadError; 5144 } 5145 5146 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) { 5147 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) { 5148 const RecordDecl *RD = RT->getDecl(); 5149 if (RD->isAnonymousStructOrUnion()) { 5150 for (auto *Field : RD->fields()) 5151 PopulateKeysForFields(Field, IdealInits); 5152 return; 5153 } 5154 } 5155 IdealInits.push_back(Field->getCanonicalDecl()); 5156 } 5157 5158 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) { 5159 return Context.getCanonicalType(BaseType).getTypePtr(); 5160 } 5161 5162 static const void *GetKeyForMember(ASTContext &Context, 5163 CXXCtorInitializer *Member) { 5164 if (!Member->isAnyMemberInitializer()) 5165 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0)); 5166 5167 return Member->getAnyMember()->getCanonicalDecl(); 5168 } 5169 5170 static void DiagnoseBaseOrMemInitializerOrder( 5171 Sema &SemaRef, const CXXConstructorDecl *Constructor, 5172 ArrayRef<CXXCtorInitializer *> Inits) { 5173 if (Constructor->getDeclContext()->isDependentContext()) 5174 return; 5175 5176 // Don't check initializers order unless the warning is enabled at the 5177 // location of at least one initializer. 5178 bool ShouldCheckOrder = false; 5179 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 5180 CXXCtorInitializer *Init = Inits[InitIndex]; 5181 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order, 5182 Init->getSourceLocation())) { 5183 ShouldCheckOrder = true; 5184 break; 5185 } 5186 } 5187 if (!ShouldCheckOrder) 5188 return; 5189 5190 // Build the list of bases and members in the order that they'll 5191 // actually be initialized. The explicit initializers should be in 5192 // this same order but may be missing things. 5193 SmallVector<const void*, 32> IdealInitKeys; 5194 5195 const CXXRecordDecl *ClassDecl = Constructor->getParent(); 5196 5197 // 1. Virtual bases. 5198 for (const auto &VBase : ClassDecl->vbases()) 5199 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType())); 5200 5201 // 2. Non-virtual bases. 5202 for (const auto &Base : ClassDecl->bases()) { 5203 if (Base.isVirtual()) 5204 continue; 5205 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType())); 5206 } 5207 5208 // 3. Direct fields. 5209 for (auto *Field : ClassDecl->fields()) { 5210 if (Field->isUnnamedBitfield()) 5211 continue; 5212 5213 PopulateKeysForFields(Field, IdealInitKeys); 5214 } 5215 5216 unsigned NumIdealInits = IdealInitKeys.size(); 5217 unsigned IdealIndex = 0; 5218 5219 CXXCtorInitializer *PrevInit = nullptr; 5220 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 5221 CXXCtorInitializer *Init = Inits[InitIndex]; 5222 const void *InitKey = GetKeyForMember(SemaRef.Context, Init); 5223 5224 // Scan forward to try to find this initializer in the idealized 5225 // initializers list. 5226 for (; IdealIndex != NumIdealInits; ++IdealIndex) 5227 if (InitKey == IdealInitKeys[IdealIndex]) 5228 break; 5229 5230 // If we didn't find this initializer, it must be because we 5231 // scanned past it on a previous iteration. That can only 5232 // happen if we're out of order; emit a warning. 5233 if (IdealIndex == NumIdealInits && PrevInit) { 5234 Sema::SemaDiagnosticBuilder D = 5235 SemaRef.Diag(PrevInit->getSourceLocation(), 5236 diag::warn_initializer_out_of_order); 5237 5238 if (PrevInit->isAnyMemberInitializer()) 5239 D << 0 << PrevInit->getAnyMember()->getDeclName(); 5240 else 5241 D << 1 << PrevInit->getTypeSourceInfo()->getType(); 5242 5243 if (Init->isAnyMemberInitializer()) 5244 D << 0 << Init->getAnyMember()->getDeclName(); 5245 else 5246 D << 1 << Init->getTypeSourceInfo()->getType(); 5247 5248 // Move back to the initializer's location in the ideal list. 5249 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex) 5250 if (InitKey == IdealInitKeys[IdealIndex]) 5251 break; 5252 5253 assert(IdealIndex < NumIdealInits && 5254 "initializer not found in initializer list"); 5255 } 5256 5257 PrevInit = Init; 5258 } 5259 } 5260 5261 namespace { 5262 bool CheckRedundantInit(Sema &S, 5263 CXXCtorInitializer *Init, 5264 CXXCtorInitializer *&PrevInit) { 5265 if (!PrevInit) { 5266 PrevInit = Init; 5267 return false; 5268 } 5269 5270 if (FieldDecl *Field = Init->getAnyMember()) 5271 S.Diag(Init->getSourceLocation(), 5272 diag::err_multiple_mem_initialization) 5273 << Field->getDeclName() 5274 << Init->getSourceRange(); 5275 else { 5276 const Type *BaseClass = Init->getBaseClass(); 5277 assert(BaseClass && "neither field nor base"); 5278 S.Diag(Init->getSourceLocation(), 5279 diag::err_multiple_base_initialization) 5280 << QualType(BaseClass, 0) 5281 << Init->getSourceRange(); 5282 } 5283 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) 5284 << 0 << PrevInit->getSourceRange(); 5285 5286 return true; 5287 } 5288 5289 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry; 5290 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap; 5291 5292 bool CheckRedundantUnionInit(Sema &S, 5293 CXXCtorInitializer *Init, 5294 RedundantUnionMap &Unions) { 5295 FieldDecl *Field = Init->getAnyMember(); 5296 RecordDecl *Parent = Field->getParent(); 5297 NamedDecl *Child = Field; 5298 5299 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) { 5300 if (Parent->isUnion()) { 5301 UnionEntry &En = Unions[Parent]; 5302 if (En.first && En.first != Child) { 5303 S.Diag(Init->getSourceLocation(), 5304 diag::err_multiple_mem_union_initialization) 5305 << Field->getDeclName() 5306 << Init->getSourceRange(); 5307 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer) 5308 << 0 << En.second->getSourceRange(); 5309 return true; 5310 } 5311 if (!En.first) { 5312 En.first = Child; 5313 En.second = Init; 5314 } 5315 if (!Parent->isAnonymousStructOrUnion()) 5316 return false; 5317 } 5318 5319 Child = Parent; 5320 Parent = cast<RecordDecl>(Parent->getDeclContext()); 5321 } 5322 5323 return false; 5324 } 5325 } 5326 5327 /// ActOnMemInitializers - Handle the member initializers for a constructor. 5328 void Sema::ActOnMemInitializers(Decl *ConstructorDecl, 5329 SourceLocation ColonLoc, 5330 ArrayRef<CXXCtorInitializer*> MemInits, 5331 bool AnyErrors) { 5332 if (!ConstructorDecl) 5333 return; 5334 5335 AdjustDeclIfTemplate(ConstructorDecl); 5336 5337 CXXConstructorDecl *Constructor 5338 = dyn_cast<CXXConstructorDecl>(ConstructorDecl); 5339 5340 if (!Constructor) { 5341 Diag(ColonLoc, diag::err_only_constructors_take_base_inits); 5342 return; 5343 } 5344 5345 // Mapping for the duplicate initializers check. 5346 // For member initializers, this is keyed with a FieldDecl*. 5347 // For base initializers, this is keyed with a Type*. 5348 llvm::DenseMap<const void *, CXXCtorInitializer *> Members; 5349 5350 // Mapping for the inconsistent anonymous-union initializers check. 5351 RedundantUnionMap MemberUnions; 5352 5353 bool HadError = false; 5354 for (unsigned i = 0; i < MemInits.size(); i++) { 5355 CXXCtorInitializer *Init = MemInits[i]; 5356 5357 // Set the source order index. 5358 Init->setSourceOrder(i); 5359 5360 if (Init->isAnyMemberInitializer()) { 5361 const void *Key = GetKeyForMember(Context, Init); 5362 if (CheckRedundantInit(*this, Init, Members[Key]) || 5363 CheckRedundantUnionInit(*this, Init, MemberUnions)) 5364 HadError = true; 5365 } else if (Init->isBaseInitializer()) { 5366 const void *Key = GetKeyForMember(Context, Init); 5367 if (CheckRedundantInit(*this, Init, Members[Key])) 5368 HadError = true; 5369 } else { 5370 assert(Init->isDelegatingInitializer()); 5371 // This must be the only initializer 5372 if (MemInits.size() != 1) { 5373 Diag(Init->getSourceLocation(), 5374 diag::err_delegating_initializer_alone) 5375 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange(); 5376 // We will treat this as being the only initializer. 5377 } 5378 SetDelegatingInitializer(Constructor, MemInits[i]); 5379 // Return immediately as the initializer is set. 5380 return; 5381 } 5382 } 5383 5384 if (HadError) 5385 return; 5386 5387 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits); 5388 5389 SetCtorInitializers(Constructor, AnyErrors, MemInits); 5390 5391 DiagnoseUninitializedFields(*this, Constructor); 5392 } 5393 5394 void 5395 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location, 5396 CXXRecordDecl *ClassDecl) { 5397 // Ignore dependent contexts. Also ignore unions, since their members never 5398 // have destructors implicitly called. 5399 if (ClassDecl->isDependentContext() || ClassDecl->isUnion()) 5400 return; 5401 5402 // FIXME: all the access-control diagnostics are positioned on the 5403 // field/base declaration. That's probably good; that said, the 5404 // user might reasonably want to know why the destructor is being 5405 // emitted, and we currently don't say. 5406 5407 // Non-static data members. 5408 for (auto *Field : ClassDecl->fields()) { 5409 if (Field->isInvalidDecl()) 5410 continue; 5411 5412 // Don't destroy incomplete or zero-length arrays. 5413 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType())) 5414 continue; 5415 5416 QualType FieldType = Context.getBaseElementType(Field->getType()); 5417 5418 const RecordType* RT = FieldType->getAs<RecordType>(); 5419 if (!RT) 5420 continue; 5421 5422 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 5423 if (FieldClassDecl->isInvalidDecl()) 5424 continue; 5425 if (FieldClassDecl->hasIrrelevantDestructor()) 5426 continue; 5427 // The destructor for an implicit anonymous union member is never invoked. 5428 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion()) 5429 continue; 5430 5431 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl); 5432 assert(Dtor && "No dtor found for FieldClassDecl!"); 5433 CheckDestructorAccess(Field->getLocation(), Dtor, 5434 PDiag(diag::err_access_dtor_field) 5435 << Field->getDeclName() 5436 << FieldType); 5437 5438 MarkFunctionReferenced(Location, Dtor); 5439 DiagnoseUseOfDecl(Dtor, Location); 5440 } 5441 5442 // We only potentially invoke the destructors of potentially constructed 5443 // subobjects. 5444 bool VisitVirtualBases = !ClassDecl->isAbstract(); 5445 5446 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases; 5447 5448 // Bases. 5449 for (const auto &Base : ClassDecl->bases()) { 5450 // Bases are always records in a well-formed non-dependent class. 5451 const RecordType *RT = Base.getType()->getAs<RecordType>(); 5452 5453 // Remember direct virtual bases. 5454 if (Base.isVirtual()) { 5455 if (!VisitVirtualBases) 5456 continue; 5457 DirectVirtualBases.insert(RT); 5458 } 5459 5460 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 5461 // If our base class is invalid, we probably can't get its dtor anyway. 5462 if (BaseClassDecl->isInvalidDecl()) 5463 continue; 5464 if (BaseClassDecl->hasIrrelevantDestructor()) 5465 continue; 5466 5467 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 5468 assert(Dtor && "No dtor found for BaseClassDecl!"); 5469 5470 // FIXME: caret should be on the start of the class name 5471 CheckDestructorAccess(Base.getBeginLoc(), Dtor, 5472 PDiag(diag::err_access_dtor_base) 5473 << Base.getType() << Base.getSourceRange(), 5474 Context.getTypeDeclType(ClassDecl)); 5475 5476 MarkFunctionReferenced(Location, Dtor); 5477 DiagnoseUseOfDecl(Dtor, Location); 5478 } 5479 5480 if (!VisitVirtualBases) 5481 return; 5482 5483 // Virtual bases. 5484 for (const auto &VBase : ClassDecl->vbases()) { 5485 // Bases are always records in a well-formed non-dependent class. 5486 const RecordType *RT = VBase.getType()->castAs<RecordType>(); 5487 5488 // Ignore direct virtual bases. 5489 if (DirectVirtualBases.count(RT)) 5490 continue; 5491 5492 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 5493 // If our base class is invalid, we probably can't get its dtor anyway. 5494 if (BaseClassDecl->isInvalidDecl()) 5495 continue; 5496 if (BaseClassDecl->hasIrrelevantDestructor()) 5497 continue; 5498 5499 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 5500 assert(Dtor && "No dtor found for BaseClassDecl!"); 5501 if (CheckDestructorAccess( 5502 ClassDecl->getLocation(), Dtor, 5503 PDiag(diag::err_access_dtor_vbase) 5504 << Context.getTypeDeclType(ClassDecl) << VBase.getType(), 5505 Context.getTypeDeclType(ClassDecl)) == 5506 AR_accessible) { 5507 CheckDerivedToBaseConversion( 5508 Context.getTypeDeclType(ClassDecl), VBase.getType(), 5509 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(), 5510 SourceRange(), DeclarationName(), nullptr); 5511 } 5512 5513 MarkFunctionReferenced(Location, Dtor); 5514 DiagnoseUseOfDecl(Dtor, Location); 5515 } 5516 } 5517 5518 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) { 5519 if (!CDtorDecl) 5520 return; 5521 5522 if (CXXConstructorDecl *Constructor 5523 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) { 5524 SetCtorInitializers(Constructor, /*AnyErrors=*/false); 5525 DiagnoseUninitializedFields(*this, Constructor); 5526 } 5527 } 5528 5529 bool Sema::isAbstractType(SourceLocation Loc, QualType T) { 5530 if (!getLangOpts().CPlusPlus) 5531 return false; 5532 5533 const auto *RD = Context.getBaseElementType(T)->getAsCXXRecordDecl(); 5534 if (!RD) 5535 return false; 5536 5537 // FIXME: Per [temp.inst]p1, we are supposed to trigger instantiation of a 5538 // class template specialization here, but doing so breaks a lot of code. 5539 5540 // We can't answer whether something is abstract until it has a 5541 // definition. If it's currently being defined, we'll walk back 5542 // over all the declarations when we have a full definition. 5543 const CXXRecordDecl *Def = RD->getDefinition(); 5544 if (!Def || Def->isBeingDefined()) 5545 return false; 5546 5547 return RD->isAbstract(); 5548 } 5549 5550 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 5551 TypeDiagnoser &Diagnoser) { 5552 if (!isAbstractType(Loc, T)) 5553 return false; 5554 5555 T = Context.getBaseElementType(T); 5556 Diagnoser.diagnose(*this, Loc, T); 5557 DiagnoseAbstractType(T->getAsCXXRecordDecl()); 5558 return true; 5559 } 5560 5561 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) { 5562 // Check if we've already emitted the list of pure virtual functions 5563 // for this class. 5564 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD)) 5565 return; 5566 5567 // If the diagnostic is suppressed, don't emit the notes. We're only 5568 // going to emit them once, so try to attach them to a diagnostic we're 5569 // actually going to show. 5570 if (Diags.isLastDiagnosticIgnored()) 5571 return; 5572 5573 CXXFinalOverriderMap FinalOverriders; 5574 RD->getFinalOverriders(FinalOverriders); 5575 5576 // Keep a set of seen pure methods so we won't diagnose the same method 5577 // more than once. 5578 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods; 5579 5580 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 5581 MEnd = FinalOverriders.end(); 5582 M != MEnd; 5583 ++M) { 5584 for (OverridingMethods::iterator SO = M->second.begin(), 5585 SOEnd = M->second.end(); 5586 SO != SOEnd; ++SO) { 5587 // C++ [class.abstract]p4: 5588 // A class is abstract if it contains or inherits at least one 5589 // pure virtual function for which the final overrider is pure 5590 // virtual. 5591 5592 // 5593 if (SO->second.size() != 1) 5594 continue; 5595 5596 if (!SO->second.front().Method->isPure()) 5597 continue; 5598 5599 if (!SeenPureMethods.insert(SO->second.front().Method).second) 5600 continue; 5601 5602 Diag(SO->second.front().Method->getLocation(), 5603 diag::note_pure_virtual_function) 5604 << SO->second.front().Method->getDeclName() << RD->getDeclName(); 5605 } 5606 } 5607 5608 if (!PureVirtualClassDiagSet) 5609 PureVirtualClassDiagSet.reset(new RecordDeclSetTy); 5610 PureVirtualClassDiagSet->insert(RD); 5611 } 5612 5613 namespace { 5614 struct AbstractUsageInfo { 5615 Sema &S; 5616 CXXRecordDecl *Record; 5617 CanQualType AbstractType; 5618 bool Invalid; 5619 5620 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record) 5621 : S(S), Record(Record), 5622 AbstractType(S.Context.getCanonicalType( 5623 S.Context.getTypeDeclType(Record))), 5624 Invalid(false) {} 5625 5626 void DiagnoseAbstractType() { 5627 if (Invalid) return; 5628 S.DiagnoseAbstractType(Record); 5629 Invalid = true; 5630 } 5631 5632 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 5633 }; 5634 5635 struct CheckAbstractUsage { 5636 AbstractUsageInfo &Info; 5637 const NamedDecl *Ctx; 5638 5639 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx) 5640 : Info(Info), Ctx(Ctx) {} 5641 5642 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 5643 switch (TL.getTypeLocClass()) { 5644 #define ABSTRACT_TYPELOC(CLASS, PARENT) 5645 #define TYPELOC(CLASS, PARENT) \ 5646 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break; 5647 #include "clang/AST/TypeLocNodes.def" 5648 } 5649 } 5650 5651 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) { 5652 Visit(TL.getReturnLoc(), Sema::AbstractReturnType); 5653 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) { 5654 if (!TL.getParam(I)) 5655 continue; 5656 5657 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo(); 5658 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); 5659 } 5660 } 5661 5662 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) { 5663 Visit(TL.getElementLoc(), Sema::AbstractArrayType); 5664 } 5665 5666 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) { 5667 // Visit the type parameters from a permissive context. 5668 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { 5669 TemplateArgumentLoc TAL = TL.getArgLoc(I); 5670 if (TAL.getArgument().getKind() == TemplateArgument::Type) 5671 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) 5672 Visit(TSI->getTypeLoc(), Sema::AbstractNone); 5673 // TODO: other template argument types? 5674 } 5675 } 5676 5677 // Visit pointee types from a permissive context. 5678 #define CheckPolymorphic(Type) \ 5679 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \ 5680 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \ 5681 } 5682 CheckPolymorphic(PointerTypeLoc) 5683 CheckPolymorphic(ReferenceTypeLoc) 5684 CheckPolymorphic(MemberPointerTypeLoc) 5685 CheckPolymorphic(BlockPointerTypeLoc) 5686 CheckPolymorphic(AtomicTypeLoc) 5687 5688 /// Handle all the types we haven't given a more specific 5689 /// implementation for above. 5690 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 5691 // Every other kind of type that we haven't called out already 5692 // that has an inner type is either (1) sugar or (2) contains that 5693 // inner type in some way as a subobject. 5694 if (TypeLoc Next = TL.getNextTypeLoc()) 5695 return Visit(Next, Sel); 5696 5697 // If there's no inner type and we're in a permissive context, 5698 // don't diagnose. 5699 if (Sel == Sema::AbstractNone) return; 5700 5701 // Check whether the type matches the abstract type. 5702 QualType T = TL.getType(); 5703 if (T->isArrayType()) { 5704 Sel = Sema::AbstractArrayType; 5705 T = Info.S.Context.getBaseElementType(T); 5706 } 5707 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType(); 5708 if (CT != Info.AbstractType) return; 5709 5710 // It matched; do some magic. 5711 if (Sel == Sema::AbstractArrayType) { 5712 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type) 5713 << T << TL.getSourceRange(); 5714 } else { 5715 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl) 5716 << Sel << T << TL.getSourceRange(); 5717 } 5718 Info.DiagnoseAbstractType(); 5719 } 5720 }; 5721 5722 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, 5723 Sema::AbstractDiagSelID Sel) { 5724 CheckAbstractUsage(*this, D).Visit(TL, Sel); 5725 } 5726 5727 } 5728 5729 /// Check for invalid uses of an abstract type in a method declaration. 5730 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 5731 CXXMethodDecl *MD) { 5732 // No need to do the check on definitions, which require that 5733 // the return/param types be complete. 5734 if (MD->doesThisDeclarationHaveABody()) 5735 return; 5736 5737 // For safety's sake, just ignore it if we don't have type source 5738 // information. This should never happen for non-implicit methods, 5739 // but... 5740 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) 5741 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); 5742 } 5743 5744 /// Check for invalid uses of an abstract type within a class definition. 5745 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 5746 CXXRecordDecl *RD) { 5747 for (auto *D : RD->decls()) { 5748 if (D->isImplicit()) continue; 5749 5750 // Methods and method templates. 5751 if (isa<CXXMethodDecl>(D)) { 5752 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D)); 5753 } else if (isa<FunctionTemplateDecl>(D)) { 5754 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl(); 5755 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD)); 5756 5757 // Fields and static variables. 5758 } else if (isa<FieldDecl>(D)) { 5759 FieldDecl *FD = cast<FieldDecl>(D); 5760 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) 5761 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); 5762 } else if (isa<VarDecl>(D)) { 5763 VarDecl *VD = cast<VarDecl>(D); 5764 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) 5765 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); 5766 5767 // Nested classes and class templates. 5768 } else if (isa<CXXRecordDecl>(D)) { 5769 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D)); 5770 } else if (isa<ClassTemplateDecl>(D)) { 5771 CheckAbstractClassUsage(Info, 5772 cast<ClassTemplateDecl>(D)->getTemplatedDecl()); 5773 } 5774 } 5775 } 5776 5777 static void ReferenceDllExportedMembers(Sema &S, CXXRecordDecl *Class) { 5778 Attr *ClassAttr = getDLLAttr(Class); 5779 if (!ClassAttr) 5780 return; 5781 5782 assert(ClassAttr->getKind() == attr::DLLExport); 5783 5784 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 5785 5786 if (TSK == TSK_ExplicitInstantiationDeclaration) 5787 // Don't go any further if this is just an explicit instantiation 5788 // declaration. 5789 return; 5790 5791 if (S.Context.getTargetInfo().getTriple().isWindowsGNUEnvironment()) 5792 S.MarkVTableUsed(Class->getLocation(), Class, true); 5793 5794 for (Decl *Member : Class->decls()) { 5795 // Defined static variables that are members of an exported base 5796 // class must be marked export too. 5797 auto *VD = dyn_cast<VarDecl>(Member); 5798 if (VD && Member->getAttr<DLLExportAttr>() && 5799 VD->getStorageClass() == SC_Static && 5800 TSK == TSK_ImplicitInstantiation) 5801 S.MarkVariableReferenced(VD->getLocation(), VD); 5802 5803 auto *MD = dyn_cast<CXXMethodDecl>(Member); 5804 if (!MD) 5805 continue; 5806 5807 if (Member->getAttr<DLLExportAttr>()) { 5808 if (MD->isUserProvided()) { 5809 // Instantiate non-default class member functions ... 5810 5811 // .. except for certain kinds of template specializations. 5812 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited()) 5813 continue; 5814 5815 S.MarkFunctionReferenced(Class->getLocation(), MD); 5816 5817 // The function will be passed to the consumer when its definition is 5818 // encountered. 5819 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() || 5820 MD->isCopyAssignmentOperator() || 5821 MD->isMoveAssignmentOperator()) { 5822 // Synthesize and instantiate non-trivial implicit methods, explicitly 5823 // defaulted methods, and the copy and move assignment operators. The 5824 // latter are exported even if they are trivial, because the address of 5825 // an operator can be taken and should compare equal across libraries. 5826 DiagnosticErrorTrap Trap(S.Diags); 5827 S.MarkFunctionReferenced(Class->getLocation(), MD); 5828 if (Trap.hasErrorOccurred()) { 5829 S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class) 5830 << Class << !S.getLangOpts().CPlusPlus11; 5831 break; 5832 } 5833 5834 // There is no later point when we will see the definition of this 5835 // function, so pass it to the consumer now. 5836 S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD)); 5837 } 5838 } 5839 } 5840 } 5841 5842 static void checkForMultipleExportedDefaultConstructors(Sema &S, 5843 CXXRecordDecl *Class) { 5844 // Only the MS ABI has default constructor closures, so we don't need to do 5845 // this semantic checking anywhere else. 5846 if (!S.Context.getTargetInfo().getCXXABI().isMicrosoft()) 5847 return; 5848 5849 CXXConstructorDecl *LastExportedDefaultCtor = nullptr; 5850 for (Decl *Member : Class->decls()) { 5851 // Look for exported default constructors. 5852 auto *CD = dyn_cast<CXXConstructorDecl>(Member); 5853 if (!CD || !CD->isDefaultConstructor()) 5854 continue; 5855 auto *Attr = CD->getAttr<DLLExportAttr>(); 5856 if (!Attr) 5857 continue; 5858 5859 // If the class is non-dependent, mark the default arguments as ODR-used so 5860 // that we can properly codegen the constructor closure. 5861 if (!Class->isDependentContext()) { 5862 for (ParmVarDecl *PD : CD->parameters()) { 5863 (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), CD, PD); 5864 S.DiscardCleanupsInEvaluationContext(); 5865 } 5866 } 5867 5868 if (LastExportedDefaultCtor) { 5869 S.Diag(LastExportedDefaultCtor->getLocation(), 5870 diag::err_attribute_dll_ambiguous_default_ctor) 5871 << Class; 5872 S.Diag(CD->getLocation(), diag::note_entity_declared_at) 5873 << CD->getDeclName(); 5874 return; 5875 } 5876 LastExportedDefaultCtor = CD; 5877 } 5878 } 5879 5880 void Sema::checkClassLevelCodeSegAttribute(CXXRecordDecl *Class) { 5881 // Mark any compiler-generated routines with the implicit code_seg attribute. 5882 for (auto *Method : Class->methods()) { 5883 if (Method->isUserProvided()) 5884 continue; 5885 if (Attr *A = getImplicitCodeSegOrSectionAttrForFunction(Method, /*IsDefinition=*/true)) 5886 Method->addAttr(A); 5887 } 5888 } 5889 5890 /// Check class-level dllimport/dllexport attribute. 5891 void Sema::checkClassLevelDLLAttribute(CXXRecordDecl *Class) { 5892 Attr *ClassAttr = getDLLAttr(Class); 5893 5894 // MSVC inherits DLL attributes to partial class template specializations. 5895 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) { 5896 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) { 5897 if (Attr *TemplateAttr = 5898 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) { 5899 auto *A = cast<InheritableAttr>(TemplateAttr->clone(getASTContext())); 5900 A->setInherited(true); 5901 ClassAttr = A; 5902 } 5903 } 5904 } 5905 5906 if (!ClassAttr) 5907 return; 5908 5909 if (!Class->isExternallyVisible()) { 5910 Diag(Class->getLocation(), diag::err_attribute_dll_not_extern) 5911 << Class << ClassAttr; 5912 return; 5913 } 5914 5915 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 5916 !ClassAttr->isInherited()) { 5917 // Diagnose dll attributes on members of class with dll attribute. 5918 for (Decl *Member : Class->decls()) { 5919 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member)) 5920 continue; 5921 InheritableAttr *MemberAttr = getDLLAttr(Member); 5922 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl()) 5923 continue; 5924 5925 Diag(MemberAttr->getLocation(), 5926 diag::err_attribute_dll_member_of_dll_class) 5927 << MemberAttr << ClassAttr; 5928 Diag(ClassAttr->getLocation(), diag::note_previous_attribute); 5929 Member->setInvalidDecl(); 5930 } 5931 } 5932 5933 if (Class->getDescribedClassTemplate()) 5934 // Don't inherit dll attribute until the template is instantiated. 5935 return; 5936 5937 // The class is either imported or exported. 5938 const bool ClassExported = ClassAttr->getKind() == attr::DLLExport; 5939 5940 // Check if this was a dllimport attribute propagated from a derived class to 5941 // a base class template specialization. We don't apply these attributes to 5942 // static data members. 5943 const bool PropagatedImport = 5944 !ClassExported && 5945 cast<DLLImportAttr>(ClassAttr)->wasPropagatedToBaseTemplate(); 5946 5947 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 5948 5949 // Ignore explicit dllexport on explicit class template instantiation 5950 // declarations, except in MinGW mode. 5951 if (ClassExported && !ClassAttr->isInherited() && 5952 TSK == TSK_ExplicitInstantiationDeclaration && 5953 !Context.getTargetInfo().getTriple().isWindowsGNUEnvironment()) { 5954 Class->dropAttr<DLLExportAttr>(); 5955 return; 5956 } 5957 5958 // Force declaration of implicit members so they can inherit the attribute. 5959 ForceDeclarationOfImplicitMembers(Class); 5960 5961 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't 5962 // seem to be true in practice? 5963 5964 for (Decl *Member : Class->decls()) { 5965 VarDecl *VD = dyn_cast<VarDecl>(Member); 5966 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member); 5967 5968 // Only methods and static fields inherit the attributes. 5969 if (!VD && !MD) 5970 continue; 5971 5972 if (MD) { 5973 // Don't process deleted methods. 5974 if (MD->isDeleted()) 5975 continue; 5976 5977 if (MD->isInlined()) { 5978 // MinGW does not import or export inline methods. But do it for 5979 // template instantiations. 5980 if (!Context.getTargetInfo().getCXXABI().isMicrosoft() && 5981 !Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment() && 5982 TSK != TSK_ExplicitInstantiationDeclaration && 5983 TSK != TSK_ExplicitInstantiationDefinition) 5984 continue; 5985 5986 // MSVC versions before 2015 don't export the move assignment operators 5987 // and move constructor, so don't attempt to import/export them if 5988 // we have a definition. 5989 auto *Ctor = dyn_cast<CXXConstructorDecl>(MD); 5990 if ((MD->isMoveAssignmentOperator() || 5991 (Ctor && Ctor->isMoveConstructor())) && 5992 !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015)) 5993 continue; 5994 5995 // MSVC2015 doesn't export trivial defaulted x-tor but copy assign 5996 // operator is exported anyway. 5997 if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) && 5998 (Ctor || isa<CXXDestructorDecl>(MD)) && MD->isTrivial()) 5999 continue; 6000 } 6001 } 6002 6003 // Don't apply dllimport attributes to static data members of class template 6004 // instantiations when the attribute is propagated from a derived class. 6005 if (VD && PropagatedImport) 6006 continue; 6007 6008 if (!cast<NamedDecl>(Member)->isExternallyVisible()) 6009 continue; 6010 6011 if (!getDLLAttr(Member)) { 6012 InheritableAttr *NewAttr = nullptr; 6013 6014 // Do not export/import inline function when -fno-dllexport-inlines is 6015 // passed. But add attribute for later local static var check. 6016 if (!getLangOpts().DllExportInlines && MD && MD->isInlined() && 6017 TSK != TSK_ExplicitInstantiationDeclaration && 6018 TSK != TSK_ExplicitInstantiationDefinition) { 6019 if (ClassExported) { 6020 NewAttr = ::new (getASTContext()) 6021 DLLExportStaticLocalAttr(getASTContext(), *ClassAttr); 6022 } else { 6023 NewAttr = ::new (getASTContext()) 6024 DLLImportStaticLocalAttr(getASTContext(), *ClassAttr); 6025 } 6026 } else { 6027 NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 6028 } 6029 6030 NewAttr->setInherited(true); 6031 Member->addAttr(NewAttr); 6032 6033 if (MD) { 6034 // Propagate DLLAttr to friend re-declarations of MD that have already 6035 // been constructed. 6036 for (FunctionDecl *FD = MD->getMostRecentDecl(); FD; 6037 FD = FD->getPreviousDecl()) { 6038 if (FD->getFriendObjectKind() == Decl::FOK_None) 6039 continue; 6040 assert(!getDLLAttr(FD) && 6041 "friend re-decl should not already have a DLLAttr"); 6042 NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 6043 NewAttr->setInherited(true); 6044 FD->addAttr(NewAttr); 6045 } 6046 } 6047 } 6048 } 6049 6050 if (ClassExported) 6051 DelayedDllExportClasses.push_back(Class); 6052 } 6053 6054 /// Perform propagation of DLL attributes from a derived class to a 6055 /// templated base class for MS compatibility. 6056 void Sema::propagateDLLAttrToBaseClassTemplate( 6057 CXXRecordDecl *Class, Attr *ClassAttr, 6058 ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) { 6059 if (getDLLAttr( 6060 BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) { 6061 // If the base class template has a DLL attribute, don't try to change it. 6062 return; 6063 } 6064 6065 auto TSK = BaseTemplateSpec->getSpecializationKind(); 6066 if (!getDLLAttr(BaseTemplateSpec) && 6067 (TSK == TSK_Undeclared || TSK == TSK_ExplicitInstantiationDeclaration || 6068 TSK == TSK_ImplicitInstantiation)) { 6069 // The template hasn't been instantiated yet (or it has, but only as an 6070 // explicit instantiation declaration or implicit instantiation, which means 6071 // we haven't codegenned any members yet), so propagate the attribute. 6072 auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 6073 NewAttr->setInherited(true); 6074 BaseTemplateSpec->addAttr(NewAttr); 6075 6076 // If this was an import, mark that we propagated it from a derived class to 6077 // a base class template specialization. 6078 if (auto *ImportAttr = dyn_cast<DLLImportAttr>(NewAttr)) 6079 ImportAttr->setPropagatedToBaseTemplate(); 6080 6081 // If the template is already instantiated, checkDLLAttributeRedeclaration() 6082 // needs to be run again to work see the new attribute. Otherwise this will 6083 // get run whenever the template is instantiated. 6084 if (TSK != TSK_Undeclared) 6085 checkClassLevelDLLAttribute(BaseTemplateSpec); 6086 6087 return; 6088 } 6089 6090 if (getDLLAttr(BaseTemplateSpec)) { 6091 // The template has already been specialized or instantiated with an 6092 // attribute, explicitly or through propagation. We should not try to change 6093 // it. 6094 return; 6095 } 6096 6097 // The template was previously instantiated or explicitly specialized without 6098 // a dll attribute, It's too late for us to add an attribute, so warn that 6099 // this is unsupported. 6100 Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class) 6101 << BaseTemplateSpec->isExplicitSpecialization(); 6102 Diag(ClassAttr->getLocation(), diag::note_attribute); 6103 if (BaseTemplateSpec->isExplicitSpecialization()) { 6104 Diag(BaseTemplateSpec->getLocation(), 6105 diag::note_template_class_explicit_specialization_was_here) 6106 << BaseTemplateSpec; 6107 } else { 6108 Diag(BaseTemplateSpec->getPointOfInstantiation(), 6109 diag::note_template_class_instantiation_was_here) 6110 << BaseTemplateSpec; 6111 } 6112 } 6113 6114 /// Determine the kind of defaulting that would be done for a given function. 6115 /// 6116 /// If the function is both a default constructor and a copy / move constructor 6117 /// (due to having a default argument for the first parameter), this picks 6118 /// CXXDefaultConstructor. 6119 /// 6120 /// FIXME: Check that case is properly handled by all callers. 6121 Sema::DefaultedFunctionKind 6122 Sema::getDefaultedFunctionKind(const FunctionDecl *FD) { 6123 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 6124 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(FD)) { 6125 if (Ctor->isDefaultConstructor()) 6126 return Sema::CXXDefaultConstructor; 6127 6128 if (Ctor->isCopyConstructor()) 6129 return Sema::CXXCopyConstructor; 6130 6131 if (Ctor->isMoveConstructor()) 6132 return Sema::CXXMoveConstructor; 6133 } 6134 6135 if (MD->isCopyAssignmentOperator()) 6136 return Sema::CXXCopyAssignment; 6137 6138 if (MD->isMoveAssignmentOperator()) 6139 return Sema::CXXMoveAssignment; 6140 6141 if (isa<CXXDestructorDecl>(FD)) 6142 return Sema::CXXDestructor; 6143 } 6144 6145 switch (FD->getDeclName().getCXXOverloadedOperator()) { 6146 case OO_EqualEqual: 6147 return DefaultedComparisonKind::Equal; 6148 6149 case OO_ExclaimEqual: 6150 return DefaultedComparisonKind::NotEqual; 6151 6152 case OO_Spaceship: 6153 // No point allowing this if <=> doesn't exist in the current language mode. 6154 if (!getLangOpts().CPlusPlus2a) 6155 break; 6156 return DefaultedComparisonKind::ThreeWay; 6157 6158 case OO_Less: 6159 case OO_LessEqual: 6160 case OO_Greater: 6161 case OO_GreaterEqual: 6162 // No point allowing this if <=> doesn't exist in the current language mode. 6163 if (!getLangOpts().CPlusPlus2a) 6164 break; 6165 return DefaultedComparisonKind::Relational; 6166 6167 default: 6168 break; 6169 } 6170 6171 // Not defaultable. 6172 return DefaultedFunctionKind(); 6173 } 6174 6175 static void DefineDefaultedFunction(Sema &S, FunctionDecl *FD, 6176 SourceLocation DefaultLoc) { 6177 Sema::DefaultedFunctionKind DFK = S.getDefaultedFunctionKind(FD); 6178 if (DFK.isComparison()) 6179 return S.DefineDefaultedComparison(DefaultLoc, FD, DFK.asComparison()); 6180 6181 switch (DFK.asSpecialMember()) { 6182 case Sema::CXXDefaultConstructor: 6183 S.DefineImplicitDefaultConstructor(DefaultLoc, 6184 cast<CXXConstructorDecl>(FD)); 6185 break; 6186 case Sema::CXXCopyConstructor: 6187 S.DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(FD)); 6188 break; 6189 case Sema::CXXCopyAssignment: 6190 S.DefineImplicitCopyAssignment(DefaultLoc, cast<CXXMethodDecl>(FD)); 6191 break; 6192 case Sema::CXXDestructor: 6193 S.DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(FD)); 6194 break; 6195 case Sema::CXXMoveConstructor: 6196 S.DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(FD)); 6197 break; 6198 case Sema::CXXMoveAssignment: 6199 S.DefineImplicitMoveAssignment(DefaultLoc, cast<CXXMethodDecl>(FD)); 6200 break; 6201 case Sema::CXXInvalid: 6202 llvm_unreachable("Invalid special member."); 6203 } 6204 } 6205 6206 /// Determine whether a type is permitted to be passed or returned in 6207 /// registers, per C++ [class.temporary]p3. 6208 static bool canPassInRegisters(Sema &S, CXXRecordDecl *D, 6209 TargetInfo::CallingConvKind CCK) { 6210 if (D->isDependentType() || D->isInvalidDecl()) 6211 return false; 6212 6213 // Clang <= 4 used the pre-C++11 rule, which ignores move operations. 6214 // The PS4 platform ABI follows the behavior of Clang 3.2. 6215 if (CCK == TargetInfo::CCK_ClangABI4OrPS4) 6216 return !D->hasNonTrivialDestructorForCall() && 6217 !D->hasNonTrivialCopyConstructorForCall(); 6218 6219 if (CCK == TargetInfo::CCK_MicrosoftWin64) { 6220 bool CopyCtorIsTrivial = false, CopyCtorIsTrivialForCall = false; 6221 bool DtorIsTrivialForCall = false; 6222 6223 // If a class has at least one non-deleted, trivial copy constructor, it 6224 // is passed according to the C ABI. Otherwise, it is passed indirectly. 6225 // 6226 // Note: This permits classes with non-trivial copy or move ctors to be 6227 // passed in registers, so long as they *also* have a trivial copy ctor, 6228 // which is non-conforming. 6229 if (D->needsImplicitCopyConstructor()) { 6230 if (!D->defaultedCopyConstructorIsDeleted()) { 6231 if (D->hasTrivialCopyConstructor()) 6232 CopyCtorIsTrivial = true; 6233 if (D->hasTrivialCopyConstructorForCall()) 6234 CopyCtorIsTrivialForCall = true; 6235 } 6236 } else { 6237 for (const CXXConstructorDecl *CD : D->ctors()) { 6238 if (CD->isCopyConstructor() && !CD->isDeleted()) { 6239 if (CD->isTrivial()) 6240 CopyCtorIsTrivial = true; 6241 if (CD->isTrivialForCall()) 6242 CopyCtorIsTrivialForCall = true; 6243 } 6244 } 6245 } 6246 6247 if (D->needsImplicitDestructor()) { 6248 if (!D->defaultedDestructorIsDeleted() && 6249 D->hasTrivialDestructorForCall()) 6250 DtorIsTrivialForCall = true; 6251 } else if (const auto *DD = D->getDestructor()) { 6252 if (!DD->isDeleted() && DD->isTrivialForCall()) 6253 DtorIsTrivialForCall = true; 6254 } 6255 6256 // If the copy ctor and dtor are both trivial-for-calls, pass direct. 6257 if (CopyCtorIsTrivialForCall && DtorIsTrivialForCall) 6258 return true; 6259 6260 // If a class has a destructor, we'd really like to pass it indirectly 6261 // because it allows us to elide copies. Unfortunately, MSVC makes that 6262 // impossible for small types, which it will pass in a single register or 6263 // stack slot. Most objects with dtors are large-ish, so handle that early. 6264 // We can't call out all large objects as being indirect because there are 6265 // multiple x64 calling conventions and the C++ ABI code shouldn't dictate 6266 // how we pass large POD types. 6267 6268 // Note: This permits small classes with nontrivial destructors to be 6269 // passed in registers, which is non-conforming. 6270 bool isAArch64 = S.Context.getTargetInfo().getTriple().isAArch64(); 6271 uint64_t TypeSize = isAArch64 ? 128 : 64; 6272 6273 if (CopyCtorIsTrivial && 6274 S.getASTContext().getTypeSize(D->getTypeForDecl()) <= TypeSize) 6275 return true; 6276 return false; 6277 } 6278 6279 // Per C++ [class.temporary]p3, the relevant condition is: 6280 // each copy constructor, move constructor, and destructor of X is 6281 // either trivial or deleted, and X has at least one non-deleted copy 6282 // or move constructor 6283 bool HasNonDeletedCopyOrMove = false; 6284 6285 if (D->needsImplicitCopyConstructor() && 6286 !D->defaultedCopyConstructorIsDeleted()) { 6287 if (!D->hasTrivialCopyConstructorForCall()) 6288 return false; 6289 HasNonDeletedCopyOrMove = true; 6290 } 6291 6292 if (S.getLangOpts().CPlusPlus11 && D->needsImplicitMoveConstructor() && 6293 !D->defaultedMoveConstructorIsDeleted()) { 6294 if (!D->hasTrivialMoveConstructorForCall()) 6295 return false; 6296 HasNonDeletedCopyOrMove = true; 6297 } 6298 6299 if (D->needsImplicitDestructor() && !D->defaultedDestructorIsDeleted() && 6300 !D->hasTrivialDestructorForCall()) 6301 return false; 6302 6303 for (const CXXMethodDecl *MD : D->methods()) { 6304 if (MD->isDeleted()) 6305 continue; 6306 6307 auto *CD = dyn_cast<CXXConstructorDecl>(MD); 6308 if (CD && CD->isCopyOrMoveConstructor()) 6309 HasNonDeletedCopyOrMove = true; 6310 else if (!isa<CXXDestructorDecl>(MD)) 6311 continue; 6312 6313 if (!MD->isTrivialForCall()) 6314 return false; 6315 } 6316 6317 return HasNonDeletedCopyOrMove; 6318 } 6319 6320 /// Report an error regarding overriding, along with any relevant 6321 /// overridden methods. 6322 /// 6323 /// \param DiagID the primary error to report. 6324 /// \param MD the overriding method. 6325 /// \param OEK which overrides to include as notes. 6326 static bool 6327 ReportOverrides(Sema &S, unsigned DiagID, const CXXMethodDecl *MD, 6328 llvm::function_ref<bool(const CXXMethodDecl *)> Report) { 6329 bool IssuedDiagnostic = false; 6330 for (const CXXMethodDecl *O : MD->overridden_methods()) { 6331 if (Report(O)) { 6332 if (!IssuedDiagnostic) { 6333 S.Diag(MD->getLocation(), DiagID) << MD->getDeclName(); 6334 IssuedDiagnostic = true; 6335 } 6336 S.Diag(O->getLocation(), diag::note_overridden_virtual_function); 6337 } 6338 } 6339 return IssuedDiagnostic; 6340 } 6341 6342 /// Perform semantic checks on a class definition that has been 6343 /// completing, introducing implicitly-declared members, checking for 6344 /// abstract types, etc. 6345 /// 6346 /// \param S The scope in which the class was parsed. Null if we didn't just 6347 /// parse a class definition. 6348 /// \param Record The completed class. 6349 void Sema::CheckCompletedCXXClass(Scope *S, CXXRecordDecl *Record) { 6350 if (!Record) 6351 return; 6352 6353 if (Record->isAbstract() && !Record->isInvalidDecl()) { 6354 AbstractUsageInfo Info(*this, Record); 6355 CheckAbstractClassUsage(Info, Record); 6356 } 6357 6358 // If this is not an aggregate type and has no user-declared constructor, 6359 // complain about any non-static data members of reference or const scalar 6360 // type, since they will never get initializers. 6361 if (!Record->isInvalidDecl() && !Record->isDependentType() && 6362 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() && 6363 !Record->isLambda()) { 6364 bool Complained = false; 6365 for (const auto *F : Record->fields()) { 6366 if (F->hasInClassInitializer() || F->isUnnamedBitfield()) 6367 continue; 6368 6369 if (F->getType()->isReferenceType() || 6370 (F->getType().isConstQualified() && F->getType()->isScalarType())) { 6371 if (!Complained) { 6372 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst) 6373 << Record->getTagKind() << Record; 6374 Complained = true; 6375 } 6376 6377 Diag(F->getLocation(), diag::note_refconst_member_not_initialized) 6378 << F->getType()->isReferenceType() 6379 << F->getDeclName(); 6380 } 6381 } 6382 } 6383 6384 if (Record->getIdentifier()) { 6385 // C++ [class.mem]p13: 6386 // If T is the name of a class, then each of the following shall have a 6387 // name different from T: 6388 // - every member of every anonymous union that is a member of class T. 6389 // 6390 // C++ [class.mem]p14: 6391 // In addition, if class T has a user-declared constructor (12.1), every 6392 // non-static data member of class T shall have a name different from T. 6393 DeclContext::lookup_result R = Record->lookup(Record->getDeclName()); 6394 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 6395 ++I) { 6396 NamedDecl *D = (*I)->getUnderlyingDecl(); 6397 if (((isa<FieldDecl>(D) || isa<UnresolvedUsingValueDecl>(D)) && 6398 Record->hasUserDeclaredConstructor()) || 6399 isa<IndirectFieldDecl>(D)) { 6400 Diag((*I)->getLocation(), diag::err_member_name_of_class) 6401 << D->getDeclName(); 6402 break; 6403 } 6404 } 6405 } 6406 6407 // Warn if the class has virtual methods but non-virtual public destructor. 6408 if (Record->isPolymorphic() && !Record->isDependentType()) { 6409 CXXDestructorDecl *dtor = Record->getDestructor(); 6410 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) && 6411 !Record->hasAttr<FinalAttr>()) 6412 Diag(dtor ? dtor->getLocation() : Record->getLocation(), 6413 diag::warn_non_virtual_dtor) << Context.getRecordType(Record); 6414 } 6415 6416 if (Record->isAbstract()) { 6417 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) { 6418 Diag(Record->getLocation(), diag::warn_abstract_final_class) 6419 << FA->isSpelledAsSealed(); 6420 DiagnoseAbstractType(Record); 6421 } 6422 } 6423 6424 // Warn if the class has a final destructor but is not itself marked final. 6425 if (!Record->hasAttr<FinalAttr>()) { 6426 if (const CXXDestructorDecl *dtor = Record->getDestructor()) { 6427 if (const FinalAttr *FA = dtor->getAttr<FinalAttr>()) { 6428 Diag(FA->getLocation(), diag::warn_final_dtor_non_final_class) 6429 << FA->isSpelledAsSealed() 6430 << FixItHint::CreateInsertion( 6431 getLocForEndOfToken(Record->getLocation()), 6432 (FA->isSpelledAsSealed() ? " sealed" : " final")); 6433 Diag(Record->getLocation(), 6434 diag::note_final_dtor_non_final_class_silence) 6435 << Context.getRecordType(Record) << FA->isSpelledAsSealed(); 6436 } 6437 } 6438 } 6439 6440 // See if trivial_abi has to be dropped. 6441 if (Record->hasAttr<TrivialABIAttr>()) 6442 checkIllFormedTrivialABIStruct(*Record); 6443 6444 // Set HasTrivialSpecialMemberForCall if the record has attribute 6445 // "trivial_abi". 6446 bool HasTrivialABI = Record->hasAttr<TrivialABIAttr>(); 6447 6448 if (HasTrivialABI) 6449 Record->setHasTrivialSpecialMemberForCall(); 6450 6451 // Explicitly-defaulted secondary comparison functions (!=, <, <=, >, >=). 6452 // We check these last because they can depend on the properties of the 6453 // primary comparison functions (==, <=>). 6454 llvm::SmallVector<FunctionDecl*, 5> DefaultedSecondaryComparisons; 6455 6456 // Perform checks that can't be done until we know all the properties of a 6457 // member function (whether it's defaulted, deleted, virtual, overriding, 6458 // ...). 6459 auto CheckCompletedMemberFunction = [&](CXXMethodDecl *MD) { 6460 // A static function cannot override anything. 6461 if (MD->getStorageClass() == SC_Static) { 6462 if (ReportOverrides(*this, diag::err_static_overrides_virtual, MD, 6463 [](const CXXMethodDecl *) { return true; })) 6464 return; 6465 } 6466 6467 // A deleted function cannot override a non-deleted function and vice 6468 // versa. 6469 if (ReportOverrides(*this, 6470 MD->isDeleted() ? diag::err_deleted_override 6471 : diag::err_non_deleted_override, 6472 MD, [&](const CXXMethodDecl *V) { 6473 return MD->isDeleted() != V->isDeleted(); 6474 })) { 6475 if (MD->isDefaulted() && MD->isDeleted()) 6476 // Explain why this defaulted function was deleted. 6477 DiagnoseDeletedDefaultedFunction(MD); 6478 return; 6479 } 6480 6481 // A consteval function cannot override a non-consteval function and vice 6482 // versa. 6483 if (ReportOverrides(*this, 6484 MD->isConsteval() ? diag::err_consteval_override 6485 : diag::err_non_consteval_override, 6486 MD, [&](const CXXMethodDecl *V) { 6487 return MD->isConsteval() != V->isConsteval(); 6488 })) { 6489 if (MD->isDefaulted() && MD->isDeleted()) 6490 // Explain why this defaulted function was deleted. 6491 DiagnoseDeletedDefaultedFunction(MD); 6492 return; 6493 } 6494 }; 6495 6496 auto CheckForDefaultedFunction = [&](FunctionDecl *FD) -> bool { 6497 if (!FD || FD->isInvalidDecl() || !FD->isExplicitlyDefaulted()) 6498 return false; 6499 6500 DefaultedFunctionKind DFK = getDefaultedFunctionKind(FD); 6501 if (DFK.asComparison() == DefaultedComparisonKind::NotEqual || 6502 DFK.asComparison() == DefaultedComparisonKind::Relational) { 6503 DefaultedSecondaryComparisons.push_back(FD); 6504 return true; 6505 } 6506 6507 CheckExplicitlyDefaultedFunction(S, FD); 6508 return false; 6509 }; 6510 6511 auto CompleteMemberFunction = [&](CXXMethodDecl *M) { 6512 // Check whether the explicitly-defaulted members are valid. 6513 bool Incomplete = CheckForDefaultedFunction(M); 6514 6515 // Skip the rest of the checks for a member of a dependent class. 6516 if (Record->isDependentType()) 6517 return; 6518 6519 // For an explicitly defaulted or deleted special member, we defer 6520 // determining triviality until the class is complete. That time is now! 6521 CXXSpecialMember CSM = getSpecialMember(M); 6522 if (!M->isImplicit() && !M->isUserProvided()) { 6523 if (CSM != CXXInvalid) { 6524 M->setTrivial(SpecialMemberIsTrivial(M, CSM)); 6525 // Inform the class that we've finished declaring this member. 6526 Record->finishedDefaultedOrDeletedMember(M); 6527 M->setTrivialForCall( 6528 HasTrivialABI || 6529 SpecialMemberIsTrivial(M, CSM, TAH_ConsiderTrivialABI)); 6530 Record->setTrivialForCallFlags(M); 6531 } 6532 } 6533 6534 // Set triviality for the purpose of calls if this is a user-provided 6535 // copy/move constructor or destructor. 6536 if ((CSM == CXXCopyConstructor || CSM == CXXMoveConstructor || 6537 CSM == CXXDestructor) && M->isUserProvided()) { 6538 M->setTrivialForCall(HasTrivialABI); 6539 Record->setTrivialForCallFlags(M); 6540 } 6541 6542 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted() && 6543 M->hasAttr<DLLExportAttr>()) { 6544 if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) && 6545 M->isTrivial() && 6546 (CSM == CXXDefaultConstructor || CSM == CXXCopyConstructor || 6547 CSM == CXXDestructor)) 6548 M->dropAttr<DLLExportAttr>(); 6549 6550 if (M->hasAttr<DLLExportAttr>()) { 6551 // Define after any fields with in-class initializers have been parsed. 6552 DelayedDllExportMemberFunctions.push_back(M); 6553 } 6554 } 6555 6556 // Define defaulted constexpr virtual functions that override a base class 6557 // function right away. 6558 // FIXME: We can defer doing this until the vtable is marked as used. 6559 if (M->isDefaulted() && M->isConstexpr() && M->size_overridden_methods()) 6560 DefineDefaultedFunction(*this, M, M->getLocation()); 6561 6562 if (!Incomplete) 6563 CheckCompletedMemberFunction(M); 6564 }; 6565 6566 // Check the destructor before any other member function. We need to 6567 // determine whether it's trivial in order to determine whether the claas 6568 // type is a literal type, which is a prerequisite for determining whether 6569 // other special member functions are valid and whether they're implicitly 6570 // 'constexpr'. 6571 if (CXXDestructorDecl *Dtor = Record->getDestructor()) 6572 CompleteMemberFunction(Dtor); 6573 6574 bool HasMethodWithOverrideControl = false, 6575 HasOverridingMethodWithoutOverrideControl = false; 6576 for (auto *D : Record->decls()) { 6577 if (auto *M = dyn_cast<CXXMethodDecl>(D)) { 6578 // FIXME: We could do this check for dependent types with non-dependent 6579 // bases. 6580 if (!Record->isDependentType()) { 6581 // See if a method overloads virtual methods in a base 6582 // class without overriding any. 6583 if (!M->isStatic()) 6584 DiagnoseHiddenVirtualMethods(M); 6585 if (M->hasAttr<OverrideAttr>()) 6586 HasMethodWithOverrideControl = true; 6587 else if (M->size_overridden_methods() > 0) 6588 HasOverridingMethodWithoutOverrideControl = true; 6589 } 6590 6591 if (!isa<CXXDestructorDecl>(M)) 6592 CompleteMemberFunction(M); 6593 } else if (auto *F = dyn_cast<FriendDecl>(D)) { 6594 CheckForDefaultedFunction( 6595 dyn_cast_or_null<FunctionDecl>(F->getFriendDecl())); 6596 } 6597 } 6598 6599 if (HasMethodWithOverrideControl && 6600 HasOverridingMethodWithoutOverrideControl) { 6601 // At least one method has the 'override' control declared. 6602 // Diagnose all other overridden methods which do not have 'override' 6603 // specified on them. 6604 for (auto *M : Record->methods()) 6605 DiagnoseAbsenceOfOverrideControl(M); 6606 } 6607 6608 // Check the defaulted secondary comparisons after any other member functions. 6609 for (FunctionDecl *FD : DefaultedSecondaryComparisons) { 6610 CheckExplicitlyDefaultedFunction(S, FD); 6611 6612 // If this is a member function, we deferred checking it until now. 6613 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) 6614 CheckCompletedMemberFunction(MD); 6615 } 6616 6617 // ms_struct is a request to use the same ABI rules as MSVC. Check 6618 // whether this class uses any C++ features that are implemented 6619 // completely differently in MSVC, and if so, emit a diagnostic. 6620 // That diagnostic defaults to an error, but we allow projects to 6621 // map it down to a warning (or ignore it). It's a fairly common 6622 // practice among users of the ms_struct pragma to mass-annotate 6623 // headers, sweeping up a bunch of types that the project doesn't 6624 // really rely on MSVC-compatible layout for. We must therefore 6625 // support "ms_struct except for C++ stuff" as a secondary ABI. 6626 if (Record->isMsStruct(Context) && 6627 (Record->isPolymorphic() || Record->getNumBases())) { 6628 Diag(Record->getLocation(), diag::warn_cxx_ms_struct); 6629 } 6630 6631 checkClassLevelDLLAttribute(Record); 6632 checkClassLevelCodeSegAttribute(Record); 6633 6634 bool ClangABICompat4 = 6635 Context.getLangOpts().getClangABICompat() <= LangOptions::ClangABI::Ver4; 6636 TargetInfo::CallingConvKind CCK = 6637 Context.getTargetInfo().getCallingConvKind(ClangABICompat4); 6638 bool CanPass = canPassInRegisters(*this, Record, CCK); 6639 6640 // Do not change ArgPassingRestrictions if it has already been set to 6641 // APK_CanNeverPassInRegs. 6642 if (Record->getArgPassingRestrictions() != RecordDecl::APK_CanNeverPassInRegs) 6643 Record->setArgPassingRestrictions(CanPass 6644 ? RecordDecl::APK_CanPassInRegs 6645 : RecordDecl::APK_CannotPassInRegs); 6646 6647 // If canPassInRegisters returns true despite the record having a non-trivial 6648 // destructor, the record is destructed in the callee. This happens only when 6649 // the record or one of its subobjects has a field annotated with trivial_abi 6650 // or a field qualified with ObjC __strong/__weak. 6651 if (Context.getTargetInfo().getCXXABI().areArgsDestroyedLeftToRightInCallee()) 6652 Record->setParamDestroyedInCallee(true); 6653 else if (Record->hasNonTrivialDestructor()) 6654 Record->setParamDestroyedInCallee(CanPass); 6655 6656 if (getLangOpts().ForceEmitVTables) { 6657 // If we want to emit all the vtables, we need to mark it as used. This 6658 // is especially required for cases like vtable assumption loads. 6659 MarkVTableUsed(Record->getInnerLocStart(), Record); 6660 } 6661 } 6662 6663 /// Look up the special member function that would be called by a special 6664 /// member function for a subobject of class type. 6665 /// 6666 /// \param Class The class type of the subobject. 6667 /// \param CSM The kind of special member function. 6668 /// \param FieldQuals If the subobject is a field, its cv-qualifiers. 6669 /// \param ConstRHS True if this is a copy operation with a const object 6670 /// on its RHS, that is, if the argument to the outer special member 6671 /// function is 'const' and this is not a field marked 'mutable'. 6672 static Sema::SpecialMemberOverloadResult lookupCallFromSpecialMember( 6673 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM, 6674 unsigned FieldQuals, bool ConstRHS) { 6675 unsigned LHSQuals = 0; 6676 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment) 6677 LHSQuals = FieldQuals; 6678 6679 unsigned RHSQuals = FieldQuals; 6680 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor) 6681 RHSQuals = 0; 6682 else if (ConstRHS) 6683 RHSQuals |= Qualifiers::Const; 6684 6685 return S.LookupSpecialMember(Class, CSM, 6686 RHSQuals & Qualifiers::Const, 6687 RHSQuals & Qualifiers::Volatile, 6688 false, 6689 LHSQuals & Qualifiers::Const, 6690 LHSQuals & Qualifiers::Volatile); 6691 } 6692 6693 class Sema::InheritedConstructorInfo { 6694 Sema &S; 6695 SourceLocation UseLoc; 6696 6697 /// A mapping from the base classes through which the constructor was 6698 /// inherited to the using shadow declaration in that base class (or a null 6699 /// pointer if the constructor was declared in that base class). 6700 llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *> 6701 InheritedFromBases; 6702 6703 public: 6704 InheritedConstructorInfo(Sema &S, SourceLocation UseLoc, 6705 ConstructorUsingShadowDecl *Shadow) 6706 : S(S), UseLoc(UseLoc) { 6707 bool DiagnosedMultipleConstructedBases = false; 6708 CXXRecordDecl *ConstructedBase = nullptr; 6709 UsingDecl *ConstructedBaseUsing = nullptr; 6710 6711 // Find the set of such base class subobjects and check that there's a 6712 // unique constructed subobject. 6713 for (auto *D : Shadow->redecls()) { 6714 auto *DShadow = cast<ConstructorUsingShadowDecl>(D); 6715 auto *DNominatedBase = DShadow->getNominatedBaseClass(); 6716 auto *DConstructedBase = DShadow->getConstructedBaseClass(); 6717 6718 InheritedFromBases.insert( 6719 std::make_pair(DNominatedBase->getCanonicalDecl(), 6720 DShadow->getNominatedBaseClassShadowDecl())); 6721 if (DShadow->constructsVirtualBase()) 6722 InheritedFromBases.insert( 6723 std::make_pair(DConstructedBase->getCanonicalDecl(), 6724 DShadow->getConstructedBaseClassShadowDecl())); 6725 else 6726 assert(DNominatedBase == DConstructedBase); 6727 6728 // [class.inhctor.init]p2: 6729 // If the constructor was inherited from multiple base class subobjects 6730 // of type B, the program is ill-formed. 6731 if (!ConstructedBase) { 6732 ConstructedBase = DConstructedBase; 6733 ConstructedBaseUsing = D->getUsingDecl(); 6734 } else if (ConstructedBase != DConstructedBase && 6735 !Shadow->isInvalidDecl()) { 6736 if (!DiagnosedMultipleConstructedBases) { 6737 S.Diag(UseLoc, diag::err_ambiguous_inherited_constructor) 6738 << Shadow->getTargetDecl(); 6739 S.Diag(ConstructedBaseUsing->getLocation(), 6740 diag::note_ambiguous_inherited_constructor_using) 6741 << ConstructedBase; 6742 DiagnosedMultipleConstructedBases = true; 6743 } 6744 S.Diag(D->getUsingDecl()->getLocation(), 6745 diag::note_ambiguous_inherited_constructor_using) 6746 << DConstructedBase; 6747 } 6748 } 6749 6750 if (DiagnosedMultipleConstructedBases) 6751 Shadow->setInvalidDecl(); 6752 } 6753 6754 /// Find the constructor to use for inherited construction of a base class, 6755 /// and whether that base class constructor inherits the constructor from a 6756 /// virtual base class (in which case it won't actually invoke it). 6757 std::pair<CXXConstructorDecl *, bool> 6758 findConstructorForBase(CXXRecordDecl *Base, CXXConstructorDecl *Ctor) const { 6759 auto It = InheritedFromBases.find(Base->getCanonicalDecl()); 6760 if (It == InheritedFromBases.end()) 6761 return std::make_pair(nullptr, false); 6762 6763 // This is an intermediary class. 6764 if (It->second) 6765 return std::make_pair( 6766 S.findInheritingConstructor(UseLoc, Ctor, It->second), 6767 It->second->constructsVirtualBase()); 6768 6769 // This is the base class from which the constructor was inherited. 6770 return std::make_pair(Ctor, false); 6771 } 6772 }; 6773 6774 /// Is the special member function which would be selected to perform the 6775 /// specified operation on the specified class type a constexpr constructor? 6776 static bool 6777 specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 6778 Sema::CXXSpecialMember CSM, unsigned Quals, 6779 bool ConstRHS, 6780 CXXConstructorDecl *InheritedCtor = nullptr, 6781 Sema::InheritedConstructorInfo *Inherited = nullptr) { 6782 // If we're inheriting a constructor, see if we need to call it for this base 6783 // class. 6784 if (InheritedCtor) { 6785 assert(CSM == Sema::CXXDefaultConstructor); 6786 auto BaseCtor = 6787 Inherited->findConstructorForBase(ClassDecl, InheritedCtor).first; 6788 if (BaseCtor) 6789 return BaseCtor->isConstexpr(); 6790 } 6791 6792 if (CSM == Sema::CXXDefaultConstructor) 6793 return ClassDecl->hasConstexprDefaultConstructor(); 6794 if (CSM == Sema::CXXDestructor) 6795 return ClassDecl->hasConstexprDestructor(); 6796 6797 Sema::SpecialMemberOverloadResult SMOR = 6798 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS); 6799 if (!SMOR.getMethod()) 6800 // A constructor we wouldn't select can't be "involved in initializing" 6801 // anything. 6802 return true; 6803 return SMOR.getMethod()->isConstexpr(); 6804 } 6805 6806 /// Determine whether the specified special member function would be constexpr 6807 /// if it were implicitly defined. 6808 static bool defaultedSpecialMemberIsConstexpr( 6809 Sema &S, CXXRecordDecl *ClassDecl, Sema::CXXSpecialMember CSM, 6810 bool ConstArg, CXXConstructorDecl *InheritedCtor = nullptr, 6811 Sema::InheritedConstructorInfo *Inherited = nullptr) { 6812 if (!S.getLangOpts().CPlusPlus11) 6813 return false; 6814 6815 // C++11 [dcl.constexpr]p4: 6816 // In the definition of a constexpr constructor [...] 6817 bool Ctor = true; 6818 switch (CSM) { 6819 case Sema::CXXDefaultConstructor: 6820 if (Inherited) 6821 break; 6822 // Since default constructor lookup is essentially trivial (and cannot 6823 // involve, for instance, template instantiation), we compute whether a 6824 // defaulted default constructor is constexpr directly within CXXRecordDecl. 6825 // 6826 // This is important for performance; we need to know whether the default 6827 // constructor is constexpr to determine whether the type is a literal type. 6828 return ClassDecl->defaultedDefaultConstructorIsConstexpr(); 6829 6830 case Sema::CXXCopyConstructor: 6831 case Sema::CXXMoveConstructor: 6832 // For copy or move constructors, we need to perform overload resolution. 6833 break; 6834 6835 case Sema::CXXCopyAssignment: 6836 case Sema::CXXMoveAssignment: 6837 if (!S.getLangOpts().CPlusPlus14) 6838 return false; 6839 // In C++1y, we need to perform overload resolution. 6840 Ctor = false; 6841 break; 6842 6843 case Sema::CXXDestructor: 6844 return ClassDecl->defaultedDestructorIsConstexpr(); 6845 6846 case Sema::CXXInvalid: 6847 return false; 6848 } 6849 6850 // -- if the class is a non-empty union, or for each non-empty anonymous 6851 // union member of a non-union class, exactly one non-static data member 6852 // shall be initialized; [DR1359] 6853 // 6854 // If we squint, this is guaranteed, since exactly one non-static data member 6855 // will be initialized (if the constructor isn't deleted), we just don't know 6856 // which one. 6857 if (Ctor && ClassDecl->isUnion()) 6858 return CSM == Sema::CXXDefaultConstructor 6859 ? ClassDecl->hasInClassInitializer() || 6860 !ClassDecl->hasVariantMembers() 6861 : true; 6862 6863 // -- the class shall not have any virtual base classes; 6864 if (Ctor && ClassDecl->getNumVBases()) 6865 return false; 6866 6867 // C++1y [class.copy]p26: 6868 // -- [the class] is a literal type, and 6869 if (!Ctor && !ClassDecl->isLiteral()) 6870 return false; 6871 6872 // -- every constructor involved in initializing [...] base class 6873 // sub-objects shall be a constexpr constructor; 6874 // -- the assignment operator selected to copy/move each direct base 6875 // class is a constexpr function, and 6876 for (const auto &B : ClassDecl->bases()) { 6877 const RecordType *BaseType = B.getType()->getAs<RecordType>(); 6878 if (!BaseType) continue; 6879 6880 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 6881 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg, 6882 InheritedCtor, Inherited)) 6883 return false; 6884 } 6885 6886 // -- every constructor involved in initializing non-static data members 6887 // [...] shall be a constexpr constructor; 6888 // -- every non-static data member and base class sub-object shall be 6889 // initialized 6890 // -- for each non-static data member of X that is of class type (or array 6891 // thereof), the assignment operator selected to copy/move that member is 6892 // a constexpr function 6893 for (const auto *F : ClassDecl->fields()) { 6894 if (F->isInvalidDecl()) 6895 continue; 6896 if (CSM == Sema::CXXDefaultConstructor && F->hasInClassInitializer()) 6897 continue; 6898 QualType BaseType = S.Context.getBaseElementType(F->getType()); 6899 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 6900 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 6901 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, 6902 BaseType.getCVRQualifiers(), 6903 ConstArg && !F->isMutable())) 6904 return false; 6905 } else if (CSM == Sema::CXXDefaultConstructor) { 6906 return false; 6907 } 6908 } 6909 6910 // All OK, it's constexpr! 6911 return true; 6912 } 6913 6914 namespace { 6915 /// RAII object to register a defaulted function as having its exception 6916 /// specification computed. 6917 struct ComputingExceptionSpec { 6918 Sema &S; 6919 6920 ComputingExceptionSpec(Sema &S, FunctionDecl *FD, SourceLocation Loc) 6921 : S(S) { 6922 Sema::CodeSynthesisContext Ctx; 6923 Ctx.Kind = Sema::CodeSynthesisContext::ExceptionSpecEvaluation; 6924 Ctx.PointOfInstantiation = Loc; 6925 Ctx.Entity = FD; 6926 S.pushCodeSynthesisContext(Ctx); 6927 } 6928 ~ComputingExceptionSpec() { 6929 S.popCodeSynthesisContext(); 6930 } 6931 }; 6932 } 6933 6934 static Sema::ImplicitExceptionSpecification 6935 ComputeDefaultedSpecialMemberExceptionSpec( 6936 Sema &S, SourceLocation Loc, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM, 6937 Sema::InheritedConstructorInfo *ICI); 6938 6939 static Sema::ImplicitExceptionSpecification 6940 ComputeDefaultedComparisonExceptionSpec(Sema &S, SourceLocation Loc, 6941 FunctionDecl *FD, 6942 Sema::DefaultedComparisonKind DCK); 6943 6944 static Sema::ImplicitExceptionSpecification 6945 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, FunctionDecl *FD) { 6946 auto DFK = S.getDefaultedFunctionKind(FD); 6947 if (DFK.isSpecialMember()) 6948 return ComputeDefaultedSpecialMemberExceptionSpec( 6949 S, Loc, cast<CXXMethodDecl>(FD), DFK.asSpecialMember(), nullptr); 6950 if (DFK.isComparison()) 6951 return ComputeDefaultedComparisonExceptionSpec(S, Loc, FD, 6952 DFK.asComparison()); 6953 6954 auto *CD = cast<CXXConstructorDecl>(FD); 6955 assert(CD->getInheritedConstructor() && 6956 "only defaulted functions and inherited constructors have implicit " 6957 "exception specs"); 6958 Sema::InheritedConstructorInfo ICI( 6959 S, Loc, CD->getInheritedConstructor().getShadowDecl()); 6960 return ComputeDefaultedSpecialMemberExceptionSpec( 6961 S, Loc, CD, Sema::CXXDefaultConstructor, &ICI); 6962 } 6963 6964 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S, 6965 CXXMethodDecl *MD) { 6966 FunctionProtoType::ExtProtoInfo EPI; 6967 6968 // Build an exception specification pointing back at this member. 6969 EPI.ExceptionSpec.Type = EST_Unevaluated; 6970 EPI.ExceptionSpec.SourceDecl = MD; 6971 6972 // Set the calling convention to the default for C++ instance methods. 6973 EPI.ExtInfo = EPI.ExtInfo.withCallingConv( 6974 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false, 6975 /*IsCXXMethod=*/true)); 6976 return EPI; 6977 } 6978 6979 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, FunctionDecl *FD) { 6980 const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>(); 6981 if (FPT->getExceptionSpecType() != EST_Unevaluated) 6982 return; 6983 6984 // Evaluate the exception specification. 6985 auto IES = computeImplicitExceptionSpec(*this, Loc, FD); 6986 auto ESI = IES.getExceptionSpec(); 6987 6988 // Update the type of the special member to use it. 6989 UpdateExceptionSpec(FD, ESI); 6990 } 6991 6992 void Sema::CheckExplicitlyDefaultedFunction(Scope *S, FunctionDecl *FD) { 6993 assert(FD->isExplicitlyDefaulted() && "not explicitly-defaulted"); 6994 6995 DefaultedFunctionKind DefKind = getDefaultedFunctionKind(FD); 6996 if (!DefKind) { 6997 assert(FD->getDeclContext()->isDependentContext()); 6998 return; 6999 } 7000 7001 if (DefKind.isSpecialMember() 7002 ? CheckExplicitlyDefaultedSpecialMember(cast<CXXMethodDecl>(FD), 7003 DefKind.asSpecialMember()) 7004 : CheckExplicitlyDefaultedComparison(S, FD, DefKind.asComparison())) 7005 FD->setInvalidDecl(); 7006 } 7007 7008 bool Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD, 7009 CXXSpecialMember CSM) { 7010 CXXRecordDecl *RD = MD->getParent(); 7011 7012 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid && 7013 "not an explicitly-defaulted special member"); 7014 7015 // Defer all checking for special members of a dependent type. 7016 if (RD->isDependentType()) 7017 return false; 7018 7019 // Whether this was the first-declared instance of the constructor. 7020 // This affects whether we implicitly add an exception spec and constexpr. 7021 bool First = MD == MD->getCanonicalDecl(); 7022 7023 bool HadError = false; 7024 7025 // C++11 [dcl.fct.def.default]p1: 7026 // A function that is explicitly defaulted shall 7027 // -- be a special member function [...] (checked elsewhere), 7028 // -- have the same type (except for ref-qualifiers, and except that a 7029 // copy operation can take a non-const reference) as an implicit 7030 // declaration, and 7031 // -- not have default arguments. 7032 // C++2a changes the second bullet to instead delete the function if it's 7033 // defaulted on its first declaration, unless it's "an assignment operator, 7034 // and its return type differs or its parameter type is not a reference". 7035 bool DeleteOnTypeMismatch = getLangOpts().CPlusPlus2a && First; 7036 bool ShouldDeleteForTypeMismatch = false; 7037 unsigned ExpectedParams = 1; 7038 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor) 7039 ExpectedParams = 0; 7040 if (MD->getNumParams() != ExpectedParams) { 7041 // This checks for default arguments: a copy or move constructor with a 7042 // default argument is classified as a default constructor, and assignment 7043 // operations and destructors can't have default arguments. 7044 Diag(MD->getLocation(), diag::err_defaulted_special_member_params) 7045 << CSM << MD->getSourceRange(); 7046 HadError = true; 7047 } else if (MD->isVariadic()) { 7048 if (DeleteOnTypeMismatch) 7049 ShouldDeleteForTypeMismatch = true; 7050 else { 7051 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic) 7052 << CSM << MD->getSourceRange(); 7053 HadError = true; 7054 } 7055 } 7056 7057 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>(); 7058 7059 bool CanHaveConstParam = false; 7060 if (CSM == CXXCopyConstructor) 7061 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam(); 7062 else if (CSM == CXXCopyAssignment) 7063 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam(); 7064 7065 QualType ReturnType = Context.VoidTy; 7066 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) { 7067 // Check for return type matching. 7068 ReturnType = Type->getReturnType(); 7069 7070 QualType DeclType = Context.getTypeDeclType(RD); 7071 DeclType = Context.getAddrSpaceQualType(DeclType, MD->getMethodQualifiers().getAddressSpace()); 7072 QualType ExpectedReturnType = Context.getLValueReferenceType(DeclType); 7073 7074 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) { 7075 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type) 7076 << (CSM == CXXMoveAssignment) << ExpectedReturnType; 7077 HadError = true; 7078 } 7079 7080 // A defaulted special member cannot have cv-qualifiers. 7081 if (Type->getMethodQuals().hasConst() || Type->getMethodQuals().hasVolatile()) { 7082 if (DeleteOnTypeMismatch) 7083 ShouldDeleteForTypeMismatch = true; 7084 else { 7085 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals) 7086 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14; 7087 HadError = true; 7088 } 7089 } 7090 } 7091 7092 // Check for parameter type matching. 7093 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType(); 7094 bool HasConstParam = false; 7095 if (ExpectedParams && ArgType->isReferenceType()) { 7096 // Argument must be reference to possibly-const T. 7097 QualType ReferentType = ArgType->getPointeeType(); 7098 HasConstParam = ReferentType.isConstQualified(); 7099 7100 if (ReferentType.isVolatileQualified()) { 7101 if (DeleteOnTypeMismatch) 7102 ShouldDeleteForTypeMismatch = true; 7103 else { 7104 Diag(MD->getLocation(), 7105 diag::err_defaulted_special_member_volatile_param) << CSM; 7106 HadError = true; 7107 } 7108 } 7109 7110 if (HasConstParam && !CanHaveConstParam) { 7111 if (DeleteOnTypeMismatch) 7112 ShouldDeleteForTypeMismatch = true; 7113 else if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) { 7114 Diag(MD->getLocation(), 7115 diag::err_defaulted_special_member_copy_const_param) 7116 << (CSM == CXXCopyAssignment); 7117 // FIXME: Explain why this special member can't be const. 7118 HadError = true; 7119 } else { 7120 Diag(MD->getLocation(), 7121 diag::err_defaulted_special_member_move_const_param) 7122 << (CSM == CXXMoveAssignment); 7123 HadError = true; 7124 } 7125 } 7126 } else if (ExpectedParams) { 7127 // A copy assignment operator can take its argument by value, but a 7128 // defaulted one cannot. 7129 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument"); 7130 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref); 7131 HadError = true; 7132 } 7133 7134 // C++11 [dcl.fct.def.default]p2: 7135 // An explicitly-defaulted function may be declared constexpr only if it 7136 // would have been implicitly declared as constexpr, 7137 // Do not apply this rule to members of class templates, since core issue 1358 7138 // makes such functions always instantiate to constexpr functions. For 7139 // functions which cannot be constexpr (for non-constructors in C++11 and for 7140 // destructors in C++14 and C++17), this is checked elsewhere. 7141 // 7142 // FIXME: This should not apply if the member is deleted. 7143 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM, 7144 HasConstParam); 7145 if ((getLangOpts().CPlusPlus2a || 7146 (getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD) 7147 : isa<CXXConstructorDecl>(MD))) && 7148 MD->isConstexpr() && !Constexpr && 7149 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) { 7150 Diag(MD->getBeginLoc(), MD->isConsteval() 7151 ? diag::err_incorrect_defaulted_consteval 7152 : diag::err_incorrect_defaulted_constexpr) 7153 << CSM; 7154 // FIXME: Explain why the special member can't be constexpr. 7155 HadError = true; 7156 } 7157 7158 if (First) { 7159 // C++2a [dcl.fct.def.default]p3: 7160 // If a function is explicitly defaulted on its first declaration, it is 7161 // implicitly considered to be constexpr if the implicit declaration 7162 // would be. 7163 MD->setConstexprKind( 7164 Constexpr ? (MD->isConsteval() ? CSK_consteval : CSK_constexpr) 7165 : CSK_unspecified); 7166 7167 if (!Type->hasExceptionSpec()) { 7168 // C++2a [except.spec]p3: 7169 // If a declaration of a function does not have a noexcept-specifier 7170 // [and] is defaulted on its first declaration, [...] the exception 7171 // specification is as specified below 7172 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo(); 7173 EPI.ExceptionSpec.Type = EST_Unevaluated; 7174 EPI.ExceptionSpec.SourceDecl = MD; 7175 MD->setType(Context.getFunctionType(ReturnType, 7176 llvm::makeArrayRef(&ArgType, 7177 ExpectedParams), 7178 EPI)); 7179 } 7180 } 7181 7182 if (ShouldDeleteForTypeMismatch || ShouldDeleteSpecialMember(MD, CSM)) { 7183 if (First) { 7184 SetDeclDeleted(MD, MD->getLocation()); 7185 if (!inTemplateInstantiation() && !HadError) { 7186 Diag(MD->getLocation(), diag::warn_defaulted_method_deleted) << CSM; 7187 if (ShouldDeleteForTypeMismatch) { 7188 Diag(MD->getLocation(), diag::note_deleted_type_mismatch) << CSM; 7189 } else { 7190 ShouldDeleteSpecialMember(MD, CSM, nullptr, /*Diagnose*/true); 7191 } 7192 } 7193 if (ShouldDeleteForTypeMismatch && !HadError) { 7194 Diag(MD->getLocation(), 7195 diag::warn_cxx17_compat_defaulted_method_type_mismatch) << CSM; 7196 } 7197 } else { 7198 // C++11 [dcl.fct.def.default]p4: 7199 // [For a] user-provided explicitly-defaulted function [...] if such a 7200 // function is implicitly defined as deleted, the program is ill-formed. 7201 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM; 7202 assert(!ShouldDeleteForTypeMismatch && "deleted non-first decl"); 7203 ShouldDeleteSpecialMember(MD, CSM, nullptr, /*Diagnose*/true); 7204 HadError = true; 7205 } 7206 } 7207 7208 return HadError; 7209 } 7210 7211 namespace { 7212 /// Helper class for building and checking a defaulted comparison. 7213 /// 7214 /// Defaulted functions are built in two phases: 7215 /// 7216 /// * First, the set of operations that the function will perform are 7217 /// identified, and some of them are checked. If any of the checked 7218 /// operations is invalid in certain ways, the comparison function is 7219 /// defined as deleted and no body is built. 7220 /// * Then, if the function is not defined as deleted, the body is built. 7221 /// 7222 /// This is accomplished by performing two visitation steps over the eventual 7223 /// body of the function. 7224 template<typename Derived, typename ResultList, typename Result, 7225 typename Subobject> 7226 class DefaultedComparisonVisitor { 7227 public: 7228 using DefaultedComparisonKind = Sema::DefaultedComparisonKind; 7229 7230 DefaultedComparisonVisitor(Sema &S, CXXRecordDecl *RD, FunctionDecl *FD, 7231 DefaultedComparisonKind DCK) 7232 : S(S), RD(RD), FD(FD), DCK(DCK) { 7233 if (auto *Info = FD->getDefaultedFunctionInfo()) { 7234 // FIXME: Change CreateOverloadedBinOp to take an ArrayRef instead of an 7235 // UnresolvedSet to avoid this copy. 7236 Fns.assign(Info->getUnqualifiedLookups().begin(), 7237 Info->getUnqualifiedLookups().end()); 7238 } 7239 } 7240 7241 ResultList visit() { 7242 // The type of an lvalue naming a parameter of this function. 7243 QualType ParamLvalType = 7244 FD->getParamDecl(0)->getType().getNonReferenceType(); 7245 7246 ResultList Results; 7247 7248 switch (DCK) { 7249 case DefaultedComparisonKind::None: 7250 llvm_unreachable("not a defaulted comparison"); 7251 7252 case DefaultedComparisonKind::Equal: 7253 case DefaultedComparisonKind::ThreeWay: 7254 getDerived().visitSubobjects(Results, RD, ParamLvalType.getQualifiers()); 7255 return Results; 7256 7257 case DefaultedComparisonKind::NotEqual: 7258 case DefaultedComparisonKind::Relational: 7259 Results.add(getDerived().visitExpandedSubobject( 7260 ParamLvalType, getDerived().getCompleteObject())); 7261 return Results; 7262 } 7263 llvm_unreachable(""); 7264 } 7265 7266 protected: 7267 Derived &getDerived() { return static_cast<Derived&>(*this); } 7268 7269 /// Visit the expanded list of subobjects of the given type, as specified in 7270 /// C++2a [class.compare.default]. 7271 /// 7272 /// \return \c true if the ResultList object said we're done, \c false if not. 7273 bool visitSubobjects(ResultList &Results, CXXRecordDecl *Record, 7274 Qualifiers Quals) { 7275 // C++2a [class.compare.default]p4: 7276 // The direct base class subobjects of C 7277 for (CXXBaseSpecifier &Base : Record->bases()) 7278 if (Results.add(getDerived().visitSubobject( 7279 S.Context.getQualifiedType(Base.getType(), Quals), 7280 getDerived().getBase(&Base)))) 7281 return true; 7282 7283 // followed by the non-static data members of C 7284 for (FieldDecl *Field : Record->fields()) { 7285 // Recursively expand anonymous structs. 7286 if (Field->isAnonymousStructOrUnion()) { 7287 if (visitSubobjects(Results, Field->getType()->getAsCXXRecordDecl(), 7288 Quals)) 7289 return true; 7290 continue; 7291 } 7292 7293 // Figure out the type of an lvalue denoting this field. 7294 Qualifiers FieldQuals = Quals; 7295 if (Field->isMutable()) 7296 FieldQuals.removeConst(); 7297 QualType FieldType = 7298 S.Context.getQualifiedType(Field->getType(), FieldQuals); 7299 7300 if (Results.add(getDerived().visitSubobject( 7301 FieldType, getDerived().getField(Field)))) 7302 return true; 7303 } 7304 7305 // form a list of subobjects. 7306 return false; 7307 } 7308 7309 Result visitSubobject(QualType Type, Subobject Subobj) { 7310 // In that list, any subobject of array type is recursively expanded 7311 const ArrayType *AT = S.Context.getAsArrayType(Type); 7312 if (auto *CAT = dyn_cast_or_null<ConstantArrayType>(AT)) 7313 return getDerived().visitSubobjectArray(CAT->getElementType(), 7314 CAT->getSize(), Subobj); 7315 return getDerived().visitExpandedSubobject(Type, Subobj); 7316 } 7317 7318 Result visitSubobjectArray(QualType Type, const llvm::APInt &Size, 7319 Subobject Subobj) { 7320 return getDerived().visitSubobject(Type, Subobj); 7321 } 7322 7323 protected: 7324 Sema &S; 7325 CXXRecordDecl *RD; 7326 FunctionDecl *FD; 7327 DefaultedComparisonKind DCK; 7328 UnresolvedSet<16> Fns; 7329 }; 7330 7331 /// Information about a defaulted comparison, as determined by 7332 /// DefaultedComparisonAnalyzer. 7333 struct DefaultedComparisonInfo { 7334 bool Deleted = false; 7335 bool Constexpr = true; 7336 ComparisonCategoryType Category = ComparisonCategoryType::StrongOrdering; 7337 7338 static DefaultedComparisonInfo deleted() { 7339 DefaultedComparisonInfo Deleted; 7340 Deleted.Deleted = true; 7341 return Deleted; 7342 } 7343 7344 bool add(const DefaultedComparisonInfo &R) { 7345 Deleted |= R.Deleted; 7346 Constexpr &= R.Constexpr; 7347 Category = commonComparisonType(Category, R.Category); 7348 return Deleted; 7349 } 7350 }; 7351 7352 /// An element in the expanded list of subobjects of a defaulted comparison, as 7353 /// specified in C++2a [class.compare.default]p4. 7354 struct DefaultedComparisonSubobject { 7355 enum { CompleteObject, Member, Base } Kind; 7356 NamedDecl *Decl; 7357 SourceLocation Loc; 7358 }; 7359 7360 /// A visitor over the notional body of a defaulted comparison that determines 7361 /// whether that body would be deleted or constexpr. 7362 class DefaultedComparisonAnalyzer 7363 : public DefaultedComparisonVisitor<DefaultedComparisonAnalyzer, 7364 DefaultedComparisonInfo, 7365 DefaultedComparisonInfo, 7366 DefaultedComparisonSubobject> { 7367 public: 7368 enum DiagnosticKind { NoDiagnostics, ExplainDeleted, ExplainConstexpr }; 7369 7370 private: 7371 DiagnosticKind Diagnose; 7372 7373 public: 7374 using Base = DefaultedComparisonVisitor; 7375 using Result = DefaultedComparisonInfo; 7376 using Subobject = DefaultedComparisonSubobject; 7377 7378 friend Base; 7379 7380 DefaultedComparisonAnalyzer(Sema &S, CXXRecordDecl *RD, FunctionDecl *FD, 7381 DefaultedComparisonKind DCK, 7382 DiagnosticKind Diagnose = NoDiagnostics) 7383 : Base(S, RD, FD, DCK), Diagnose(Diagnose) {} 7384 7385 Result visit() { 7386 if ((DCK == DefaultedComparisonKind::Equal || 7387 DCK == DefaultedComparisonKind::ThreeWay) && 7388 RD->hasVariantMembers()) { 7389 // C++2a [class.compare.default]p2 [P2002R0]: 7390 // A defaulted comparison operator function for class C is defined as 7391 // deleted if [...] C has variant members. 7392 if (Diagnose == ExplainDeleted) { 7393 S.Diag(FD->getLocation(), diag::note_defaulted_comparison_union) 7394 << FD << RD->isUnion() << RD; 7395 } 7396 return Result::deleted(); 7397 } 7398 7399 return Base::visit(); 7400 } 7401 7402 private: 7403 Subobject getCompleteObject() { 7404 return Subobject{Subobject::CompleteObject, nullptr, FD->getLocation()}; 7405 } 7406 7407 Subobject getBase(CXXBaseSpecifier *Base) { 7408 return Subobject{Subobject::Base, Base->getType()->getAsCXXRecordDecl(), 7409 Base->getBaseTypeLoc()}; 7410 } 7411 7412 Subobject getField(FieldDecl *Field) { 7413 return Subobject{Subobject::Member, Field, Field->getLocation()}; 7414 } 7415 7416 Result visitExpandedSubobject(QualType Type, Subobject Subobj) { 7417 // C++2a [class.compare.default]p2 [P2002R0]: 7418 // A defaulted <=> or == operator function for class C is defined as 7419 // deleted if any non-static data member of C is of reference type 7420 if (Type->isReferenceType()) { 7421 if (Diagnose == ExplainDeleted) { 7422 S.Diag(Subobj.Loc, diag::note_defaulted_comparison_reference_member) 7423 << FD << RD; 7424 } 7425 return Result::deleted(); 7426 } 7427 7428 // [...] Let xi be an lvalue denoting the ith element [...] 7429 OpaqueValueExpr Xi(FD->getLocation(), Type, VK_LValue); 7430 Expr *Args[] = {&Xi, &Xi}; 7431 7432 // All operators start by trying to apply that same operator recursively. 7433 OverloadedOperatorKind OO = FD->getOverloadedOperator(); 7434 assert(OO != OO_None && "not an overloaded operator!"); 7435 return visitBinaryOperator(OO, Args, Subobj); 7436 } 7437 7438 Result 7439 visitBinaryOperator(OverloadedOperatorKind OO, ArrayRef<Expr *> Args, 7440 Subobject Subobj, 7441 OverloadCandidateSet *SpaceshipCandidates = nullptr) { 7442 // Note that there is no need to consider rewritten candidates here if 7443 // we've already found there is no viable 'operator<=>' candidate (and are 7444 // considering synthesizing a '<=>' from '==' and '<'). 7445 OverloadCandidateSet CandidateSet( 7446 FD->getLocation(), OverloadCandidateSet::CSK_Operator, 7447 OverloadCandidateSet::OperatorRewriteInfo( 7448 OO, /*AllowRewrittenCandidates=*/!SpaceshipCandidates)); 7449 7450 /// C++2a [class.compare.default]p1 [P2002R0]: 7451 /// [...] the defaulted function itself is never a candidate for overload 7452 /// resolution [...] 7453 CandidateSet.exclude(FD); 7454 7455 if (Args[0]->getType()->isOverloadableType()) 7456 S.LookupOverloadedBinOp(CandidateSet, OO, Fns, Args); 7457 else { 7458 // FIXME: We determine whether this is a valid expression by checking to 7459 // see if there's a viable builtin operator candidate for it. That isn't 7460 // really what the rules ask us to do, but should give the right results. 7461 S.AddBuiltinOperatorCandidates(OO, FD->getLocation(), Args, CandidateSet); 7462 } 7463 7464 Result R; 7465 7466 OverloadCandidateSet::iterator Best; 7467 switch (CandidateSet.BestViableFunction(S, FD->getLocation(), Best)) { 7468 case OR_Success: { 7469 // C++2a [class.compare.secondary]p2 [P2002R0]: 7470 // The operator function [...] is defined as deleted if [...] the 7471 // candidate selected by overload resolution is not a rewritten 7472 // candidate. 7473 if ((DCK == DefaultedComparisonKind::NotEqual || 7474 DCK == DefaultedComparisonKind::Relational) && 7475 !Best->RewriteKind) { 7476 if (Diagnose == ExplainDeleted) { 7477 S.Diag(Best->Function->getLocation(), 7478 diag::note_defaulted_comparison_not_rewritten_callee) 7479 << FD; 7480 } 7481 return Result::deleted(); 7482 } 7483 7484 // Throughout C++2a [class.compare]: if overload resolution does not 7485 // result in a usable function, the candidate function is defined as 7486 // deleted. This requires that we selected an accessible function. 7487 // 7488 // Note that this only considers the access of the function when named 7489 // within the type of the subobject, and not the access path for any 7490 // derived-to-base conversion. 7491 CXXRecordDecl *ArgClass = Args[0]->getType()->getAsCXXRecordDecl(); 7492 if (ArgClass && Best->FoundDecl.getDecl() && 7493 Best->FoundDecl.getDecl()->isCXXClassMember()) { 7494 QualType ObjectType = Subobj.Kind == Subobject::Member 7495 ? Args[0]->getType() 7496 : S.Context.getRecordType(RD); 7497 if (!S.isMemberAccessibleForDeletion( 7498 ArgClass, Best->FoundDecl, ObjectType, Subobj.Loc, 7499 Diagnose == ExplainDeleted 7500 ? S.PDiag(diag::note_defaulted_comparison_inaccessible) 7501 << FD << Subobj.Kind << Subobj.Decl 7502 : S.PDiag())) 7503 return Result::deleted(); 7504 } 7505 7506 // C++2a [class.compare.default]p3 [P2002R0]: 7507 // A defaulted comparison function is constexpr-compatible if [...] 7508 // no overlod resolution performed [...] results in a non-constexpr 7509 // function. 7510 if (FunctionDecl *BestFD = Best->Function) { 7511 assert(!BestFD->isDeleted() && "wrong overload resolution result"); 7512 // If it's not constexpr, explain why not. 7513 if (Diagnose == ExplainConstexpr && !BestFD->isConstexpr()) { 7514 if (Subobj.Kind != Subobject::CompleteObject) 7515 S.Diag(Subobj.Loc, diag::note_defaulted_comparison_not_constexpr) 7516 << Subobj.Kind << Subobj.Decl; 7517 S.Diag(BestFD->getLocation(), 7518 diag::note_defaulted_comparison_not_constexpr_here); 7519 // Bail out after explaining; we don't want any more notes. 7520 return Result::deleted(); 7521 } 7522 R.Constexpr &= BestFD->isConstexpr(); 7523 } 7524 7525 if (OO == OO_Spaceship && FD->getReturnType()->isUndeducedAutoType()) { 7526 if (auto *BestFD = Best->Function) { 7527 // If any callee has an undeduced return type, deduce it now. 7528 // FIXME: It's not clear how a failure here should be handled. For 7529 // now, we produce an eager diagnostic, because that is forward 7530 // compatible with most (all?) other reasonable options. 7531 if (BestFD->getReturnType()->isUndeducedType() && 7532 S.DeduceReturnType(BestFD, FD->getLocation(), 7533 /*Diagnose=*/false)) { 7534 // Don't produce a duplicate error when asked to explain why the 7535 // comparison is deleted: we diagnosed that when initially checking 7536 // the defaulted operator. 7537 if (Diagnose == NoDiagnostics) { 7538 S.Diag( 7539 FD->getLocation(), 7540 diag::err_defaulted_comparison_cannot_deduce_undeduced_auto) 7541 << Subobj.Kind << Subobj.Decl; 7542 S.Diag( 7543 Subobj.Loc, 7544 diag::note_defaulted_comparison_cannot_deduce_undeduced_auto) 7545 << Subobj.Kind << Subobj.Decl; 7546 S.Diag(BestFD->getLocation(), 7547 diag::note_defaulted_comparison_cannot_deduce_callee) 7548 << Subobj.Kind << Subobj.Decl; 7549 } 7550 return Result::deleted(); 7551 } 7552 if (auto *Info = S.Context.CompCategories.lookupInfoForType( 7553 BestFD->getCallResultType())) { 7554 R.Category = Info->Kind; 7555 } else { 7556 if (Diagnose == ExplainDeleted) { 7557 S.Diag(Subobj.Loc, diag::note_defaulted_comparison_cannot_deduce) 7558 << Subobj.Kind << Subobj.Decl 7559 << BestFD->getCallResultType().withoutLocalFastQualifiers(); 7560 S.Diag(BestFD->getLocation(), 7561 diag::note_defaulted_comparison_cannot_deduce_callee) 7562 << Subobj.Kind << Subobj.Decl; 7563 } 7564 return Result::deleted(); 7565 } 7566 } else { 7567 Optional<ComparisonCategoryType> Cat = 7568 getComparisonCategoryForBuiltinCmp(Args[0]->getType()); 7569 assert(Cat && "no category for builtin comparison?"); 7570 R.Category = *Cat; 7571 } 7572 } 7573 7574 // Note that we might be rewriting to a different operator. That call is 7575 // not considered until we come to actually build the comparison function. 7576 break; 7577 } 7578 7579 case OR_Ambiguous: 7580 if (Diagnose == ExplainDeleted) { 7581 unsigned Kind = 0; 7582 if (FD->getOverloadedOperator() == OO_Spaceship && OO != OO_Spaceship) 7583 Kind = OO == OO_EqualEqual ? 1 : 2; 7584 CandidateSet.NoteCandidates( 7585 PartialDiagnosticAt( 7586 Subobj.Loc, S.PDiag(diag::note_defaulted_comparison_ambiguous) 7587 << FD << Kind << Subobj.Kind << Subobj.Decl), 7588 S, OCD_AmbiguousCandidates, Args); 7589 } 7590 R = Result::deleted(); 7591 break; 7592 7593 case OR_Deleted: 7594 if (Diagnose == ExplainDeleted) { 7595 if ((DCK == DefaultedComparisonKind::NotEqual || 7596 DCK == DefaultedComparisonKind::Relational) && 7597 !Best->RewriteKind) { 7598 S.Diag(Best->Function->getLocation(), 7599 diag::note_defaulted_comparison_not_rewritten_callee) 7600 << FD; 7601 } else { 7602 S.Diag(Subobj.Loc, 7603 diag::note_defaulted_comparison_calls_deleted) 7604 << FD << Subobj.Kind << Subobj.Decl; 7605 S.NoteDeletedFunction(Best->Function); 7606 } 7607 } 7608 R = Result::deleted(); 7609 break; 7610 7611 case OR_No_Viable_Function: 7612 // If there's no usable candidate, we're done unless we can rewrite a 7613 // '<=>' in terms of '==' and '<'. 7614 if (OO == OO_Spaceship && 7615 S.Context.CompCategories.lookupInfoForType(FD->getReturnType())) { 7616 // For any kind of comparison category return type, we need a usable 7617 // '==' and a usable '<'. 7618 if (!R.add(visitBinaryOperator(OO_EqualEqual, Args, Subobj, 7619 &CandidateSet))) 7620 R.add(visitBinaryOperator(OO_Less, Args, Subobj, &CandidateSet)); 7621 break; 7622 } 7623 7624 if (Diagnose == ExplainDeleted) { 7625 S.Diag(Subobj.Loc, diag::note_defaulted_comparison_no_viable_function) 7626 << FD << Subobj.Kind << Subobj.Decl; 7627 7628 // For a three-way comparison, list both the candidates for the 7629 // original operator and the candidates for the synthesized operator. 7630 if (SpaceshipCandidates) { 7631 SpaceshipCandidates->NoteCandidates( 7632 S, Args, 7633 SpaceshipCandidates->CompleteCandidates(S, OCD_AllCandidates, 7634 Args, FD->getLocation())); 7635 S.Diag(Subobj.Loc, 7636 diag::note_defaulted_comparison_no_viable_function_synthesized) 7637 << (OO == OO_EqualEqual ? 0 : 1); 7638 } 7639 7640 CandidateSet.NoteCandidates( 7641 S, Args, 7642 CandidateSet.CompleteCandidates(S, OCD_AllCandidates, Args, 7643 FD->getLocation())); 7644 } 7645 R = Result::deleted(); 7646 break; 7647 } 7648 7649 return R; 7650 } 7651 }; 7652 7653 /// A list of statements. 7654 struct StmtListResult { 7655 bool IsInvalid = false; 7656 llvm::SmallVector<Stmt*, 16> Stmts; 7657 7658 bool add(const StmtResult &S) { 7659 IsInvalid |= S.isInvalid(); 7660 if (IsInvalid) 7661 return true; 7662 Stmts.push_back(S.get()); 7663 return false; 7664 } 7665 }; 7666 7667 /// A visitor over the notional body of a defaulted comparison that synthesizes 7668 /// the actual body. 7669 class DefaultedComparisonSynthesizer 7670 : public DefaultedComparisonVisitor<DefaultedComparisonSynthesizer, 7671 StmtListResult, StmtResult, 7672 std::pair<ExprResult, ExprResult>> { 7673 SourceLocation Loc; 7674 unsigned ArrayDepth = 0; 7675 7676 public: 7677 using Base = DefaultedComparisonVisitor; 7678 using ExprPair = std::pair<ExprResult, ExprResult>; 7679 7680 friend Base; 7681 7682 DefaultedComparisonSynthesizer(Sema &S, CXXRecordDecl *RD, FunctionDecl *FD, 7683 DefaultedComparisonKind DCK, 7684 SourceLocation BodyLoc) 7685 : Base(S, RD, FD, DCK), Loc(BodyLoc) {} 7686 7687 /// Build a suitable function body for this defaulted comparison operator. 7688 StmtResult build() { 7689 Sema::CompoundScopeRAII CompoundScope(S); 7690 7691 StmtListResult Stmts = visit(); 7692 if (Stmts.IsInvalid) 7693 return StmtError(); 7694 7695 ExprResult RetVal; 7696 switch (DCK) { 7697 case DefaultedComparisonKind::None: 7698 llvm_unreachable("not a defaulted comparison"); 7699 7700 case DefaultedComparisonKind::Equal: { 7701 // C++2a [class.eq]p3: 7702 // [...] compar[e] the corresponding elements [...] until the first 7703 // index i where xi == yi yields [...] false. If no such index exists, 7704 // V is true. Otherwise, V is false. 7705 // 7706 // Join the comparisons with '&&'s and return the result. Use a right 7707 // fold (traversing the conditions right-to-left), because that 7708 // short-circuits more naturally. 7709 auto OldStmts = std::move(Stmts.Stmts); 7710 Stmts.Stmts.clear(); 7711 ExprResult CmpSoFar; 7712 // Finish a particular comparison chain. 7713 auto FinishCmp = [&] { 7714 if (Expr *Prior = CmpSoFar.get()) { 7715 // Convert the last expression to 'return ...;' 7716 if (RetVal.isUnset() && Stmts.Stmts.empty()) 7717 RetVal = CmpSoFar; 7718 // Convert any prior comparison to 'if (!(...)) return false;' 7719 else if (Stmts.add(buildIfNotCondReturnFalse(Prior))) 7720 return true; 7721 CmpSoFar = ExprResult(); 7722 } 7723 return false; 7724 }; 7725 for (Stmt *EAsStmt : llvm::reverse(OldStmts)) { 7726 Expr *E = dyn_cast<Expr>(EAsStmt); 7727 if (!E) { 7728 // Found an array comparison. 7729 if (FinishCmp() || Stmts.add(EAsStmt)) 7730 return StmtError(); 7731 continue; 7732 } 7733 7734 if (CmpSoFar.isUnset()) { 7735 CmpSoFar = E; 7736 continue; 7737 } 7738 CmpSoFar = S.CreateBuiltinBinOp(Loc, BO_LAnd, E, CmpSoFar.get()); 7739 if (CmpSoFar.isInvalid()) 7740 return StmtError(); 7741 } 7742 if (FinishCmp()) 7743 return StmtError(); 7744 std::reverse(Stmts.Stmts.begin(), Stmts.Stmts.end()); 7745 // If no such index exists, V is true. 7746 if (RetVal.isUnset()) 7747 RetVal = S.ActOnCXXBoolLiteral(Loc, tok::kw_true); 7748 break; 7749 } 7750 7751 case DefaultedComparisonKind::ThreeWay: { 7752 // Per C++2a [class.spaceship]p3, as a fallback add: 7753 // return static_cast<R>(std::strong_ordering::equal); 7754 QualType StrongOrdering = S.CheckComparisonCategoryType( 7755 ComparisonCategoryType::StrongOrdering, Loc, 7756 Sema::ComparisonCategoryUsage::DefaultedOperator); 7757 if (StrongOrdering.isNull()) 7758 return StmtError(); 7759 VarDecl *EqualVD = S.Context.CompCategories.getInfoForType(StrongOrdering) 7760 .getValueInfo(ComparisonCategoryResult::Equal) 7761 ->VD; 7762 RetVal = getDecl(EqualVD); 7763 if (RetVal.isInvalid()) 7764 return StmtError(); 7765 RetVal = buildStaticCastToR(RetVal.get()); 7766 break; 7767 } 7768 7769 case DefaultedComparisonKind::NotEqual: 7770 case DefaultedComparisonKind::Relational: 7771 RetVal = cast<Expr>(Stmts.Stmts.pop_back_val()); 7772 break; 7773 } 7774 7775 // Build the final return statement. 7776 if (RetVal.isInvalid()) 7777 return StmtError(); 7778 StmtResult ReturnStmt = S.BuildReturnStmt(Loc, RetVal.get()); 7779 if (ReturnStmt.isInvalid()) 7780 return StmtError(); 7781 Stmts.Stmts.push_back(ReturnStmt.get()); 7782 7783 return S.ActOnCompoundStmt(Loc, Loc, Stmts.Stmts, /*IsStmtExpr=*/false); 7784 } 7785 7786 private: 7787 ExprResult getDecl(ValueDecl *VD) { 7788 return S.BuildDeclarationNameExpr( 7789 CXXScopeSpec(), DeclarationNameInfo(VD->getDeclName(), Loc), VD); 7790 } 7791 7792 ExprResult getParam(unsigned I) { 7793 ParmVarDecl *PD = FD->getParamDecl(I); 7794 return getDecl(PD); 7795 } 7796 7797 ExprPair getCompleteObject() { 7798 unsigned Param = 0; 7799 ExprResult LHS; 7800 if (isa<CXXMethodDecl>(FD)) { 7801 // LHS is '*this'. 7802 LHS = S.ActOnCXXThis(Loc); 7803 if (!LHS.isInvalid()) 7804 LHS = S.CreateBuiltinUnaryOp(Loc, UO_Deref, LHS.get()); 7805 } else { 7806 LHS = getParam(Param++); 7807 } 7808 ExprResult RHS = getParam(Param++); 7809 assert(Param == FD->getNumParams()); 7810 return {LHS, RHS}; 7811 } 7812 7813 ExprPair getBase(CXXBaseSpecifier *Base) { 7814 ExprPair Obj = getCompleteObject(); 7815 if (Obj.first.isInvalid() || Obj.second.isInvalid()) 7816 return {ExprError(), ExprError()}; 7817 CXXCastPath Path = {Base}; 7818 return {S.ImpCastExprToType(Obj.first.get(), Base->getType(), 7819 CK_DerivedToBase, VK_LValue, &Path), 7820 S.ImpCastExprToType(Obj.second.get(), Base->getType(), 7821 CK_DerivedToBase, VK_LValue, &Path)}; 7822 } 7823 7824 ExprPair getField(FieldDecl *Field) { 7825 ExprPair Obj = getCompleteObject(); 7826 if (Obj.first.isInvalid() || Obj.second.isInvalid()) 7827 return {ExprError(), ExprError()}; 7828 7829 DeclAccessPair Found = DeclAccessPair::make(Field, Field->getAccess()); 7830 DeclarationNameInfo NameInfo(Field->getDeclName(), Loc); 7831 return {S.BuildFieldReferenceExpr(Obj.first.get(), /*IsArrow=*/false, Loc, 7832 CXXScopeSpec(), Field, Found, NameInfo), 7833 S.BuildFieldReferenceExpr(Obj.second.get(), /*IsArrow=*/false, Loc, 7834 CXXScopeSpec(), Field, Found, NameInfo)}; 7835 } 7836 7837 // FIXME: When expanding a subobject, register a note in the code synthesis 7838 // stack to say which subobject we're comparing. 7839 7840 StmtResult buildIfNotCondReturnFalse(ExprResult Cond) { 7841 if (Cond.isInvalid()) 7842 return StmtError(); 7843 7844 ExprResult NotCond = S.CreateBuiltinUnaryOp(Loc, UO_LNot, Cond.get()); 7845 if (NotCond.isInvalid()) 7846 return StmtError(); 7847 7848 ExprResult False = S.ActOnCXXBoolLiteral(Loc, tok::kw_false); 7849 assert(!False.isInvalid() && "should never fail"); 7850 StmtResult ReturnFalse = S.BuildReturnStmt(Loc, False.get()); 7851 if (ReturnFalse.isInvalid()) 7852 return StmtError(); 7853 7854 return S.ActOnIfStmt(Loc, false, nullptr, 7855 S.ActOnCondition(nullptr, Loc, NotCond.get(), 7856 Sema::ConditionKind::Boolean), 7857 ReturnFalse.get(), SourceLocation(), nullptr); 7858 } 7859 7860 StmtResult visitSubobjectArray(QualType Type, llvm::APInt Size, 7861 ExprPair Subobj) { 7862 QualType SizeType = S.Context.getSizeType(); 7863 Size = Size.zextOrTrunc(S.Context.getTypeSize(SizeType)); 7864 7865 // Build 'size_t i$n = 0'. 7866 IdentifierInfo *IterationVarName = nullptr; 7867 { 7868 SmallString<8> Str; 7869 llvm::raw_svector_ostream OS(Str); 7870 OS << "i" << ArrayDepth; 7871 IterationVarName = &S.Context.Idents.get(OS.str()); 7872 } 7873 VarDecl *IterationVar = VarDecl::Create( 7874 S.Context, S.CurContext, Loc, Loc, IterationVarName, SizeType, 7875 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), SC_None); 7876 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0); 7877 IterationVar->setInit( 7878 IntegerLiteral::Create(S.Context, Zero, SizeType, Loc)); 7879 Stmt *Init = new (S.Context) DeclStmt(DeclGroupRef(IterationVar), Loc, Loc); 7880 7881 auto IterRef = [&] { 7882 ExprResult Ref = S.BuildDeclarationNameExpr( 7883 CXXScopeSpec(), DeclarationNameInfo(IterationVarName, Loc), 7884 IterationVar); 7885 assert(!Ref.isInvalid() && "can't reference our own variable?"); 7886 return Ref.get(); 7887 }; 7888 7889 // Build 'i$n != Size'. 7890 ExprResult Cond = S.CreateBuiltinBinOp( 7891 Loc, BO_NE, IterRef(), 7892 IntegerLiteral::Create(S.Context, Size, SizeType, Loc)); 7893 assert(!Cond.isInvalid() && "should never fail"); 7894 7895 // Build '++i$n'. 7896 ExprResult Inc = S.CreateBuiltinUnaryOp(Loc, UO_PreInc, IterRef()); 7897 assert(!Inc.isInvalid() && "should never fail"); 7898 7899 // Build 'a[i$n]' and 'b[i$n]'. 7900 auto Index = [&](ExprResult E) { 7901 if (E.isInvalid()) 7902 return ExprError(); 7903 return S.CreateBuiltinArraySubscriptExpr(E.get(), Loc, IterRef(), Loc); 7904 }; 7905 Subobj.first = Index(Subobj.first); 7906 Subobj.second = Index(Subobj.second); 7907 7908 // Compare the array elements. 7909 ++ArrayDepth; 7910 StmtResult Substmt = visitSubobject(Type, Subobj); 7911 --ArrayDepth; 7912 7913 if (Substmt.isInvalid()) 7914 return StmtError(); 7915 7916 // For the inner level of an 'operator==', build 'if (!cmp) return false;'. 7917 // For outer levels or for an 'operator<=>' we already have a suitable 7918 // statement that returns as necessary. 7919 if (Expr *ElemCmp = dyn_cast<Expr>(Substmt.get())) { 7920 assert(DCK == DefaultedComparisonKind::Equal && 7921 "should have non-expression statement"); 7922 Substmt = buildIfNotCondReturnFalse(ElemCmp); 7923 if (Substmt.isInvalid()) 7924 return StmtError(); 7925 } 7926 7927 // Build 'for (...) ...' 7928 return S.ActOnForStmt(Loc, Loc, Init, 7929 S.ActOnCondition(nullptr, Loc, Cond.get(), 7930 Sema::ConditionKind::Boolean), 7931 S.MakeFullDiscardedValueExpr(Inc.get()), Loc, 7932 Substmt.get()); 7933 } 7934 7935 StmtResult visitExpandedSubobject(QualType Type, ExprPair Obj) { 7936 if (Obj.first.isInvalid() || Obj.second.isInvalid()) 7937 return StmtError(); 7938 7939 OverloadedOperatorKind OO = FD->getOverloadedOperator(); 7940 BinaryOperatorKind Opc = BinaryOperator::getOverloadedOpcode(OO); 7941 ExprResult Op; 7942 if (Type->isOverloadableType()) 7943 Op = S.CreateOverloadedBinOp(Loc, Opc, Fns, Obj.first.get(), 7944 Obj.second.get(), /*PerformADL=*/true, 7945 /*AllowRewrittenCandidates=*/true, FD); 7946 else 7947 Op = S.CreateBuiltinBinOp(Loc, Opc, Obj.first.get(), Obj.second.get()); 7948 if (Op.isInvalid()) 7949 return StmtError(); 7950 7951 switch (DCK) { 7952 case DefaultedComparisonKind::None: 7953 llvm_unreachable("not a defaulted comparison"); 7954 7955 case DefaultedComparisonKind::Equal: 7956 // Per C++2a [class.eq]p2, each comparison is individually contextually 7957 // converted to bool. 7958 Op = S.PerformContextuallyConvertToBool(Op.get()); 7959 if (Op.isInvalid()) 7960 return StmtError(); 7961 return Op.get(); 7962 7963 case DefaultedComparisonKind::ThreeWay: { 7964 // Per C++2a [class.spaceship]p3, form: 7965 // if (R cmp = static_cast<R>(op); cmp != 0) 7966 // return cmp; 7967 QualType R = FD->getReturnType(); 7968 Op = buildStaticCastToR(Op.get()); 7969 if (Op.isInvalid()) 7970 return StmtError(); 7971 7972 // R cmp = ...; 7973 IdentifierInfo *Name = &S.Context.Idents.get("cmp"); 7974 VarDecl *VD = 7975 VarDecl::Create(S.Context, S.CurContext, Loc, Loc, Name, R, 7976 S.Context.getTrivialTypeSourceInfo(R, Loc), SC_None); 7977 S.AddInitializerToDecl(VD, Op.get(), /*DirectInit=*/false); 7978 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(VD), Loc, Loc); 7979 7980 // cmp != 0 7981 ExprResult VDRef = getDecl(VD); 7982 if (VDRef.isInvalid()) 7983 return StmtError(); 7984 llvm::APInt ZeroVal(S.Context.getIntWidth(S.Context.IntTy), 0); 7985 Expr *Zero = 7986 IntegerLiteral::Create(S.Context, ZeroVal, S.Context.IntTy, Loc); 7987 ExprResult Comp; 7988 if (VDRef.get()->getType()->isOverloadableType()) 7989 Comp = S.CreateOverloadedBinOp(Loc, BO_NE, Fns, VDRef.get(), Zero, true, 7990 true, FD); 7991 else 7992 Comp = S.CreateBuiltinBinOp(Loc, BO_NE, VDRef.get(), Zero); 7993 if (Comp.isInvalid()) 7994 return StmtError(); 7995 Sema::ConditionResult Cond = S.ActOnCondition( 7996 nullptr, Loc, Comp.get(), Sema::ConditionKind::Boolean); 7997 if (Cond.isInvalid()) 7998 return StmtError(); 7999 8000 // return cmp; 8001 VDRef = getDecl(VD); 8002 if (VDRef.isInvalid()) 8003 return StmtError(); 8004 StmtResult ReturnStmt = S.BuildReturnStmt(Loc, VDRef.get()); 8005 if (ReturnStmt.isInvalid()) 8006 return StmtError(); 8007 8008 // if (...) 8009 return S.ActOnIfStmt(Loc, /*IsConstexpr=*/false, InitStmt, Cond, 8010 ReturnStmt.get(), /*ElseLoc=*/SourceLocation(), 8011 /*Else=*/nullptr); 8012 } 8013 8014 case DefaultedComparisonKind::NotEqual: 8015 case DefaultedComparisonKind::Relational: 8016 // C++2a [class.compare.secondary]p2: 8017 // Otherwise, the operator function yields x @ y. 8018 return Op.get(); 8019 } 8020 llvm_unreachable(""); 8021 } 8022 8023 /// Build "static_cast<R>(E)". 8024 ExprResult buildStaticCastToR(Expr *E) { 8025 QualType R = FD->getReturnType(); 8026 assert(!R->isUndeducedType() && "type should have been deduced already"); 8027 8028 // Don't bother forming a no-op cast in the common case. 8029 if (E->isRValue() && S.Context.hasSameType(E->getType(), R)) 8030 return E; 8031 return S.BuildCXXNamedCast(Loc, tok::kw_static_cast, 8032 S.Context.getTrivialTypeSourceInfo(R, Loc), E, 8033 SourceRange(Loc, Loc), SourceRange(Loc, Loc)); 8034 } 8035 }; 8036 } 8037 8038 /// Perform the unqualified lookups that might be needed to form a defaulted 8039 /// comparison function for the given operator. 8040 static void lookupOperatorsForDefaultedComparison(Sema &Self, Scope *S, 8041 UnresolvedSetImpl &Operators, 8042 OverloadedOperatorKind Op) { 8043 auto Lookup = [&](OverloadedOperatorKind OO) { 8044 Self.LookupOverloadedOperatorName(OO, S, QualType(), QualType(), Operators); 8045 }; 8046 8047 // Every defaulted operator looks up itself. 8048 Lookup(Op); 8049 // ... and the rewritten form of itself, if any. 8050 if (OverloadedOperatorKind ExtraOp = getRewrittenOverloadedOperator(Op)) 8051 Lookup(ExtraOp); 8052 8053 // For 'operator<=>', we also form a 'cmp != 0' expression, and might 8054 // synthesize a three-way comparison from '<' and '=='. In a dependent 8055 // context, we also need to look up '==' in case we implicitly declare a 8056 // defaulted 'operator=='. 8057 if (Op == OO_Spaceship) { 8058 Lookup(OO_ExclaimEqual); 8059 Lookup(OO_Less); 8060 Lookup(OO_EqualEqual); 8061 } 8062 } 8063 8064 bool Sema::CheckExplicitlyDefaultedComparison(Scope *S, FunctionDecl *FD, 8065 DefaultedComparisonKind DCK) { 8066 assert(DCK != DefaultedComparisonKind::None && "not a defaulted comparison"); 8067 8068 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(FD->getLexicalDeclContext()); 8069 assert(RD && "defaulted comparison is not defaulted in a class"); 8070 8071 // Perform any unqualified lookups we're going to need to default this 8072 // function. 8073 if (S) { 8074 UnresolvedSet<32> Operators; 8075 lookupOperatorsForDefaultedComparison(*this, S, Operators, 8076 FD->getOverloadedOperator()); 8077 FD->setDefaultedFunctionInfo(FunctionDecl::DefaultedFunctionInfo::Create( 8078 Context, Operators.pairs())); 8079 } 8080 8081 // C++2a [class.compare.default]p1: 8082 // A defaulted comparison operator function for some class C shall be a 8083 // non-template function declared in the member-specification of C that is 8084 // -- a non-static const member of C having one parameter of type 8085 // const C&, or 8086 // -- a friend of C having two parameters of type const C& or two 8087 // parameters of type C. 8088 QualType ExpectedParmType1 = Context.getRecordType(RD); 8089 QualType ExpectedParmType2 = 8090 Context.getLValueReferenceType(ExpectedParmType1.withConst()); 8091 if (isa<CXXMethodDecl>(FD)) 8092 ExpectedParmType1 = ExpectedParmType2; 8093 for (const ParmVarDecl *Param : FD->parameters()) { 8094 if (!Param->getType()->isDependentType() && 8095 !Context.hasSameType(Param->getType(), ExpectedParmType1) && 8096 !Context.hasSameType(Param->getType(), ExpectedParmType2)) { 8097 // Don't diagnose an implicit 'operator=='; we will have diagnosed the 8098 // corresponding defaulted 'operator<=>' already. 8099 if (!FD->isImplicit()) { 8100 Diag(FD->getLocation(), diag::err_defaulted_comparison_param) 8101 << (int)DCK << Param->getType() << ExpectedParmType1 8102 << !isa<CXXMethodDecl>(FD) 8103 << ExpectedParmType2 << Param->getSourceRange(); 8104 } 8105 return true; 8106 } 8107 } 8108 if (FD->getNumParams() == 2 && 8109 !Context.hasSameType(FD->getParamDecl(0)->getType(), 8110 FD->getParamDecl(1)->getType())) { 8111 if (!FD->isImplicit()) { 8112 Diag(FD->getLocation(), diag::err_defaulted_comparison_param_mismatch) 8113 << (int)DCK 8114 << FD->getParamDecl(0)->getType() 8115 << FD->getParamDecl(0)->getSourceRange() 8116 << FD->getParamDecl(1)->getType() 8117 << FD->getParamDecl(1)->getSourceRange(); 8118 } 8119 return true; 8120 } 8121 8122 // ... non-static const member ... 8123 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 8124 assert(!MD->isStatic() && "comparison function cannot be a static member"); 8125 if (!MD->isConst()) { 8126 SourceLocation InsertLoc; 8127 if (FunctionTypeLoc Loc = MD->getFunctionTypeLoc()) 8128 InsertLoc = getLocForEndOfToken(Loc.getRParenLoc()); 8129 // Don't diagnose an implicit 'operator=='; we will have diagnosed the 8130 // corresponding defaulted 'operator<=>' already. 8131 if (!MD->isImplicit()) { 8132 Diag(MD->getLocation(), diag::err_defaulted_comparison_non_const) 8133 << (int)DCK << FixItHint::CreateInsertion(InsertLoc, " const"); 8134 } 8135 8136 // Add the 'const' to the type to recover. 8137 const auto *FPT = MD->getType()->castAs<FunctionProtoType>(); 8138 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 8139 EPI.TypeQuals.addConst(); 8140 MD->setType(Context.getFunctionType(FPT->getReturnType(), 8141 FPT->getParamTypes(), EPI)); 8142 } 8143 } else { 8144 // A non-member function declared in a class must be a friend. 8145 assert(FD->getFriendObjectKind() && "expected a friend declaration"); 8146 } 8147 8148 // C++2a [class.eq]p1, [class.rel]p1: 8149 // A [defaulted comparison other than <=>] shall have a declared return 8150 // type bool. 8151 if (DCK != DefaultedComparisonKind::ThreeWay && 8152 !FD->getDeclaredReturnType()->isDependentType() && 8153 !Context.hasSameType(FD->getDeclaredReturnType(), Context.BoolTy)) { 8154 Diag(FD->getLocation(), diag::err_defaulted_comparison_return_type_not_bool) 8155 << (int)DCK << FD->getDeclaredReturnType() << Context.BoolTy 8156 << FD->getReturnTypeSourceRange(); 8157 return true; 8158 } 8159 // C++2a [class.spaceship]p2 [P2002R0]: 8160 // Let R be the declared return type [...]. If R is auto, [...]. Otherwise, 8161 // R shall not contain a placeholder type. 8162 if (DCK == DefaultedComparisonKind::ThreeWay && 8163 FD->getDeclaredReturnType()->getContainedDeducedType() && 8164 !Context.hasSameType(FD->getDeclaredReturnType(), 8165 Context.getAutoDeductType())) { 8166 Diag(FD->getLocation(), 8167 diag::err_defaulted_comparison_deduced_return_type_not_auto) 8168 << (int)DCK << FD->getDeclaredReturnType() << Context.AutoDeductTy 8169 << FD->getReturnTypeSourceRange(); 8170 return true; 8171 } 8172 8173 // For a defaulted function in a dependent class, defer all remaining checks 8174 // until instantiation. 8175 if (RD->isDependentType()) 8176 return false; 8177 8178 // Determine whether the function should be defined as deleted. 8179 DefaultedComparisonInfo Info = 8180 DefaultedComparisonAnalyzer(*this, RD, FD, DCK).visit(); 8181 8182 bool First = FD == FD->getCanonicalDecl(); 8183 8184 // If we want to delete the function, then do so; there's nothing else to 8185 // check in that case. 8186 if (Info.Deleted) { 8187 if (!First) { 8188 // C++11 [dcl.fct.def.default]p4: 8189 // [For a] user-provided explicitly-defaulted function [...] if such a 8190 // function is implicitly defined as deleted, the program is ill-formed. 8191 // 8192 // This is really just a consequence of the general rule that you can 8193 // only delete a function on its first declaration. 8194 Diag(FD->getLocation(), diag::err_non_first_default_compare_deletes) 8195 << FD->isImplicit() << (int)DCK; 8196 DefaultedComparisonAnalyzer(*this, RD, FD, DCK, 8197 DefaultedComparisonAnalyzer::ExplainDeleted) 8198 .visit(); 8199 return true; 8200 } 8201 8202 SetDeclDeleted(FD, FD->getLocation()); 8203 if (!inTemplateInstantiation() && !FD->isImplicit()) { 8204 Diag(FD->getLocation(), diag::warn_defaulted_comparison_deleted) 8205 << (int)DCK; 8206 DefaultedComparisonAnalyzer(*this, RD, FD, DCK, 8207 DefaultedComparisonAnalyzer::ExplainDeleted) 8208 .visit(); 8209 } 8210 return false; 8211 } 8212 8213 // C++2a [class.spaceship]p2: 8214 // The return type is deduced as the common comparison type of R0, R1, ... 8215 if (DCK == DefaultedComparisonKind::ThreeWay && 8216 FD->getDeclaredReturnType()->isUndeducedAutoType()) { 8217 SourceLocation RetLoc = FD->getReturnTypeSourceRange().getBegin(); 8218 if (RetLoc.isInvalid()) 8219 RetLoc = FD->getBeginLoc(); 8220 // FIXME: Should we really care whether we have the complete type and the 8221 // 'enumerator' constants here? A forward declaration seems sufficient. 8222 QualType Cat = CheckComparisonCategoryType( 8223 Info.Category, RetLoc, ComparisonCategoryUsage::DefaultedOperator); 8224 if (Cat.isNull()) 8225 return true; 8226 Context.adjustDeducedFunctionResultType( 8227 FD, SubstAutoType(FD->getDeclaredReturnType(), Cat)); 8228 } 8229 8230 // C++2a [dcl.fct.def.default]p3 [P2002R0]: 8231 // An explicitly-defaulted function that is not defined as deleted may be 8232 // declared constexpr or consteval only if it is constexpr-compatible. 8233 // C++2a [class.compare.default]p3 [P2002R0]: 8234 // A defaulted comparison function is constexpr-compatible if it satisfies 8235 // the requirements for a constexpr function [...] 8236 // The only relevant requirements are that the parameter and return types are 8237 // literal types. The remaining conditions are checked by the analyzer. 8238 if (FD->isConstexpr()) { 8239 if (CheckConstexprReturnType(*this, FD, CheckConstexprKind::Diagnose) && 8240 CheckConstexprParameterTypes(*this, FD, CheckConstexprKind::Diagnose) && 8241 !Info.Constexpr) { 8242 Diag(FD->getBeginLoc(), 8243 diag::err_incorrect_defaulted_comparison_constexpr) 8244 << FD->isImplicit() << (int)DCK << FD->isConsteval(); 8245 DefaultedComparisonAnalyzer(*this, RD, FD, DCK, 8246 DefaultedComparisonAnalyzer::ExplainConstexpr) 8247 .visit(); 8248 } 8249 } 8250 8251 // C++2a [dcl.fct.def.default]p3 [P2002R0]: 8252 // If a constexpr-compatible function is explicitly defaulted on its first 8253 // declaration, it is implicitly considered to be constexpr. 8254 // FIXME: Only applying this to the first declaration seems problematic, as 8255 // simple reorderings can affect the meaning of the program. 8256 if (First && !FD->isConstexpr() && Info.Constexpr) 8257 FD->setConstexprKind(CSK_constexpr); 8258 8259 // C++2a [except.spec]p3: 8260 // If a declaration of a function does not have a noexcept-specifier 8261 // [and] is defaulted on its first declaration, [...] the exception 8262 // specification is as specified below 8263 if (FD->getExceptionSpecType() == EST_None) { 8264 auto *FPT = FD->getType()->castAs<FunctionProtoType>(); 8265 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 8266 EPI.ExceptionSpec.Type = EST_Unevaluated; 8267 EPI.ExceptionSpec.SourceDecl = FD; 8268 FD->setType(Context.getFunctionType(FPT->getReturnType(), 8269 FPT->getParamTypes(), EPI)); 8270 } 8271 8272 return false; 8273 } 8274 8275 void Sema::DeclareImplicitEqualityComparison(CXXRecordDecl *RD, 8276 FunctionDecl *Spaceship) { 8277 Sema::CodeSynthesisContext Ctx; 8278 Ctx.Kind = Sema::CodeSynthesisContext::DeclaringImplicitEqualityComparison; 8279 Ctx.PointOfInstantiation = Spaceship->getEndLoc(); 8280 Ctx.Entity = Spaceship; 8281 pushCodeSynthesisContext(Ctx); 8282 8283 if (FunctionDecl *EqualEqual = SubstSpaceshipAsEqualEqual(RD, Spaceship)) 8284 EqualEqual->setImplicit(); 8285 8286 popCodeSynthesisContext(); 8287 } 8288 8289 void Sema::DefineDefaultedComparison(SourceLocation UseLoc, FunctionDecl *FD, 8290 DefaultedComparisonKind DCK) { 8291 assert(FD->isDefaulted() && !FD->isDeleted() && 8292 !FD->doesThisDeclarationHaveABody()); 8293 if (FD->willHaveBody() || FD->isInvalidDecl()) 8294 return; 8295 8296 SynthesizedFunctionScope Scope(*this, FD); 8297 8298 // Add a context note for diagnostics produced after this point. 8299 Scope.addContextNote(UseLoc); 8300 8301 { 8302 // Build and set up the function body. 8303 CXXRecordDecl *RD = cast<CXXRecordDecl>(FD->getLexicalParent()); 8304 SourceLocation BodyLoc = 8305 FD->getEndLoc().isValid() ? FD->getEndLoc() : FD->getLocation(); 8306 StmtResult Body = 8307 DefaultedComparisonSynthesizer(*this, RD, FD, DCK, BodyLoc).build(); 8308 if (Body.isInvalid()) { 8309 FD->setInvalidDecl(); 8310 return; 8311 } 8312 FD->setBody(Body.get()); 8313 FD->markUsed(Context); 8314 } 8315 8316 // The exception specification is needed because we are defining the 8317 // function. Note that this will reuse the body we just built. 8318 ResolveExceptionSpec(UseLoc, FD->getType()->castAs<FunctionProtoType>()); 8319 8320 if (ASTMutationListener *L = getASTMutationListener()) 8321 L->CompletedImplicitDefinition(FD); 8322 } 8323 8324 static Sema::ImplicitExceptionSpecification 8325 ComputeDefaultedComparisonExceptionSpec(Sema &S, SourceLocation Loc, 8326 FunctionDecl *FD, 8327 Sema::DefaultedComparisonKind DCK) { 8328 ComputingExceptionSpec CES(S, FD, Loc); 8329 Sema::ImplicitExceptionSpecification ExceptSpec(S); 8330 8331 if (FD->isInvalidDecl()) 8332 return ExceptSpec; 8333 8334 // The common case is that we just defined the comparison function. In that 8335 // case, just look at whether the body can throw. 8336 if (FD->hasBody()) { 8337 ExceptSpec.CalledStmt(FD->getBody()); 8338 } else { 8339 // Otherwise, build a body so we can check it. This should ideally only 8340 // happen when we're not actually marking the function referenced. (This is 8341 // only really important for efficiency: we don't want to build and throw 8342 // away bodies for comparison functions more than we strictly need to.) 8343 8344 // Pretend to synthesize the function body in an unevaluated context. 8345 // Note that we can't actually just go ahead and define the function here: 8346 // we are not permitted to mark its callees as referenced. 8347 Sema::SynthesizedFunctionScope Scope(S, FD); 8348 EnterExpressionEvaluationContext Context( 8349 S, Sema::ExpressionEvaluationContext::Unevaluated); 8350 8351 CXXRecordDecl *RD = cast<CXXRecordDecl>(FD->getLexicalParent()); 8352 SourceLocation BodyLoc = 8353 FD->getEndLoc().isValid() ? FD->getEndLoc() : FD->getLocation(); 8354 StmtResult Body = 8355 DefaultedComparisonSynthesizer(S, RD, FD, DCK, BodyLoc).build(); 8356 if (!Body.isInvalid()) 8357 ExceptSpec.CalledStmt(Body.get()); 8358 8359 // FIXME: Can we hold onto this body and just transform it to potentially 8360 // evaluated when we're asked to define the function rather than rebuilding 8361 // it? Either that, or we should only build the bits of the body that we 8362 // need (the expressions, not the statements). 8363 } 8364 8365 return ExceptSpec; 8366 } 8367 8368 void Sema::CheckDelayedMemberExceptionSpecs() { 8369 decltype(DelayedOverridingExceptionSpecChecks) Overriding; 8370 decltype(DelayedEquivalentExceptionSpecChecks) Equivalent; 8371 8372 std::swap(Overriding, DelayedOverridingExceptionSpecChecks); 8373 std::swap(Equivalent, DelayedEquivalentExceptionSpecChecks); 8374 8375 // Perform any deferred checking of exception specifications for virtual 8376 // destructors. 8377 for (auto &Check : Overriding) 8378 CheckOverridingFunctionExceptionSpec(Check.first, Check.second); 8379 8380 // Perform any deferred checking of exception specifications for befriended 8381 // special members. 8382 for (auto &Check : Equivalent) 8383 CheckEquivalentExceptionSpec(Check.second, Check.first); 8384 } 8385 8386 namespace { 8387 /// CRTP base class for visiting operations performed by a special member 8388 /// function (or inherited constructor). 8389 template<typename Derived> 8390 struct SpecialMemberVisitor { 8391 Sema &S; 8392 CXXMethodDecl *MD; 8393 Sema::CXXSpecialMember CSM; 8394 Sema::InheritedConstructorInfo *ICI; 8395 8396 // Properties of the special member, computed for convenience. 8397 bool IsConstructor = false, IsAssignment = false, ConstArg = false; 8398 8399 SpecialMemberVisitor(Sema &S, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM, 8400 Sema::InheritedConstructorInfo *ICI) 8401 : S(S), MD(MD), CSM(CSM), ICI(ICI) { 8402 switch (CSM) { 8403 case Sema::CXXDefaultConstructor: 8404 case Sema::CXXCopyConstructor: 8405 case Sema::CXXMoveConstructor: 8406 IsConstructor = true; 8407 break; 8408 case Sema::CXXCopyAssignment: 8409 case Sema::CXXMoveAssignment: 8410 IsAssignment = true; 8411 break; 8412 case Sema::CXXDestructor: 8413 break; 8414 case Sema::CXXInvalid: 8415 llvm_unreachable("invalid special member kind"); 8416 } 8417 8418 if (MD->getNumParams()) { 8419 if (const ReferenceType *RT = 8420 MD->getParamDecl(0)->getType()->getAs<ReferenceType>()) 8421 ConstArg = RT->getPointeeType().isConstQualified(); 8422 } 8423 } 8424 8425 Derived &getDerived() { return static_cast<Derived&>(*this); } 8426 8427 /// Is this a "move" special member? 8428 bool isMove() const { 8429 return CSM == Sema::CXXMoveConstructor || CSM == Sema::CXXMoveAssignment; 8430 } 8431 8432 /// Look up the corresponding special member in the given class. 8433 Sema::SpecialMemberOverloadResult lookupIn(CXXRecordDecl *Class, 8434 unsigned Quals, bool IsMutable) { 8435 return lookupCallFromSpecialMember(S, Class, CSM, Quals, 8436 ConstArg && !IsMutable); 8437 } 8438 8439 /// Look up the constructor for the specified base class to see if it's 8440 /// overridden due to this being an inherited constructor. 8441 Sema::SpecialMemberOverloadResult lookupInheritedCtor(CXXRecordDecl *Class) { 8442 if (!ICI) 8443 return {}; 8444 assert(CSM == Sema::CXXDefaultConstructor); 8445 auto *BaseCtor = 8446 cast<CXXConstructorDecl>(MD)->getInheritedConstructor().getConstructor(); 8447 if (auto *MD = ICI->findConstructorForBase(Class, BaseCtor).first) 8448 return MD; 8449 return {}; 8450 } 8451 8452 /// A base or member subobject. 8453 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject; 8454 8455 /// Get the location to use for a subobject in diagnostics. 8456 static SourceLocation getSubobjectLoc(Subobject Subobj) { 8457 // FIXME: For an indirect virtual base, the direct base leading to 8458 // the indirect virtual base would be a more useful choice. 8459 if (auto *B = Subobj.dyn_cast<CXXBaseSpecifier*>()) 8460 return B->getBaseTypeLoc(); 8461 else 8462 return Subobj.get<FieldDecl*>()->getLocation(); 8463 } 8464 8465 enum BasesToVisit { 8466 /// Visit all non-virtual (direct) bases. 8467 VisitNonVirtualBases, 8468 /// Visit all direct bases, virtual or not. 8469 VisitDirectBases, 8470 /// Visit all non-virtual bases, and all virtual bases if the class 8471 /// is not abstract. 8472 VisitPotentiallyConstructedBases, 8473 /// Visit all direct or virtual bases. 8474 VisitAllBases 8475 }; 8476 8477 // Visit the bases and members of the class. 8478 bool visit(BasesToVisit Bases) { 8479 CXXRecordDecl *RD = MD->getParent(); 8480 8481 if (Bases == VisitPotentiallyConstructedBases) 8482 Bases = RD->isAbstract() ? VisitNonVirtualBases : VisitAllBases; 8483 8484 for (auto &B : RD->bases()) 8485 if ((Bases == VisitDirectBases || !B.isVirtual()) && 8486 getDerived().visitBase(&B)) 8487 return true; 8488 8489 if (Bases == VisitAllBases) 8490 for (auto &B : RD->vbases()) 8491 if (getDerived().visitBase(&B)) 8492 return true; 8493 8494 for (auto *F : RD->fields()) 8495 if (!F->isInvalidDecl() && !F->isUnnamedBitfield() && 8496 getDerived().visitField(F)) 8497 return true; 8498 8499 return false; 8500 } 8501 }; 8502 } 8503 8504 namespace { 8505 struct SpecialMemberDeletionInfo 8506 : SpecialMemberVisitor<SpecialMemberDeletionInfo> { 8507 bool Diagnose; 8508 8509 SourceLocation Loc; 8510 8511 bool AllFieldsAreConst; 8512 8513 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD, 8514 Sema::CXXSpecialMember CSM, 8515 Sema::InheritedConstructorInfo *ICI, bool Diagnose) 8516 : SpecialMemberVisitor(S, MD, CSM, ICI), Diagnose(Diagnose), 8517 Loc(MD->getLocation()), AllFieldsAreConst(true) {} 8518 8519 bool inUnion() const { return MD->getParent()->isUnion(); } 8520 8521 Sema::CXXSpecialMember getEffectiveCSM() { 8522 return ICI ? Sema::CXXInvalid : CSM; 8523 } 8524 8525 bool shouldDeleteForVariantObjCPtrMember(FieldDecl *FD, QualType FieldType); 8526 8527 bool visitBase(CXXBaseSpecifier *Base) { return shouldDeleteForBase(Base); } 8528 bool visitField(FieldDecl *Field) { return shouldDeleteForField(Field); } 8529 8530 bool shouldDeleteForBase(CXXBaseSpecifier *Base); 8531 bool shouldDeleteForField(FieldDecl *FD); 8532 bool shouldDeleteForAllConstMembers(); 8533 8534 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj, 8535 unsigned Quals); 8536 bool shouldDeleteForSubobjectCall(Subobject Subobj, 8537 Sema::SpecialMemberOverloadResult SMOR, 8538 bool IsDtorCallInCtor); 8539 8540 bool isAccessible(Subobject Subobj, CXXMethodDecl *D); 8541 }; 8542 } 8543 8544 /// Is the given special member inaccessible when used on the given 8545 /// sub-object. 8546 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj, 8547 CXXMethodDecl *target) { 8548 /// If we're operating on a base class, the object type is the 8549 /// type of this special member. 8550 QualType objectTy; 8551 AccessSpecifier access = target->getAccess(); 8552 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) { 8553 objectTy = S.Context.getTypeDeclType(MD->getParent()); 8554 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access); 8555 8556 // If we're operating on a field, the object type is the type of the field. 8557 } else { 8558 objectTy = S.Context.getTypeDeclType(target->getParent()); 8559 } 8560 8561 return S.isMemberAccessibleForDeletion( 8562 target->getParent(), DeclAccessPair::make(target, access), objectTy); 8563 } 8564 8565 /// Check whether we should delete a special member due to the implicit 8566 /// definition containing a call to a special member of a subobject. 8567 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall( 8568 Subobject Subobj, Sema::SpecialMemberOverloadResult SMOR, 8569 bool IsDtorCallInCtor) { 8570 CXXMethodDecl *Decl = SMOR.getMethod(); 8571 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 8572 8573 int DiagKind = -1; 8574 8575 if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted) 8576 DiagKind = !Decl ? 0 : 1; 8577 else if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 8578 DiagKind = 2; 8579 else if (!isAccessible(Subobj, Decl)) 8580 DiagKind = 3; 8581 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() && 8582 !Decl->isTrivial()) { 8583 // A member of a union must have a trivial corresponding special member. 8584 // As a weird special case, a destructor call from a union's constructor 8585 // must be accessible and non-deleted, but need not be trivial. Such a 8586 // destructor is never actually called, but is semantically checked as 8587 // if it were. 8588 DiagKind = 4; 8589 } 8590 8591 if (DiagKind == -1) 8592 return false; 8593 8594 if (Diagnose) { 8595 if (Field) { 8596 S.Diag(Field->getLocation(), 8597 diag::note_deleted_special_member_class_subobject) 8598 << getEffectiveCSM() << MD->getParent() << /*IsField*/true 8599 << Field << DiagKind << IsDtorCallInCtor << /*IsObjCPtr*/false; 8600 } else { 8601 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>(); 8602 S.Diag(Base->getBeginLoc(), 8603 diag::note_deleted_special_member_class_subobject) 8604 << getEffectiveCSM() << MD->getParent() << /*IsField*/ false 8605 << Base->getType() << DiagKind << IsDtorCallInCtor 8606 << /*IsObjCPtr*/false; 8607 } 8608 8609 if (DiagKind == 1) 8610 S.NoteDeletedFunction(Decl); 8611 // FIXME: Explain inaccessibility if DiagKind == 3. 8612 } 8613 8614 return true; 8615 } 8616 8617 /// Check whether we should delete a special member function due to having a 8618 /// direct or virtual base class or non-static data member of class type M. 8619 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject( 8620 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) { 8621 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 8622 bool IsMutable = Field && Field->isMutable(); 8623 8624 // C++11 [class.ctor]p5: 8625 // -- any direct or virtual base class, or non-static data member with no 8626 // brace-or-equal-initializer, has class type M (or array thereof) and 8627 // either M has no default constructor or overload resolution as applied 8628 // to M's default constructor results in an ambiguity or in a function 8629 // that is deleted or inaccessible 8630 // C++11 [class.copy]p11, C++11 [class.copy]p23: 8631 // -- a direct or virtual base class B that cannot be copied/moved because 8632 // overload resolution, as applied to B's corresponding special member, 8633 // results in an ambiguity or a function that is deleted or inaccessible 8634 // from the defaulted special member 8635 // C++11 [class.dtor]p5: 8636 // -- any direct or virtual base class [...] has a type with a destructor 8637 // that is deleted or inaccessible 8638 if (!(CSM == Sema::CXXDefaultConstructor && 8639 Field && Field->hasInClassInitializer()) && 8640 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable), 8641 false)) 8642 return true; 8643 8644 // C++11 [class.ctor]p5, C++11 [class.copy]p11: 8645 // -- any direct or virtual base class or non-static data member has a 8646 // type with a destructor that is deleted or inaccessible 8647 if (IsConstructor) { 8648 Sema::SpecialMemberOverloadResult SMOR = 8649 S.LookupSpecialMember(Class, Sema::CXXDestructor, 8650 false, false, false, false, false); 8651 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true)) 8652 return true; 8653 } 8654 8655 return false; 8656 } 8657 8658 bool SpecialMemberDeletionInfo::shouldDeleteForVariantObjCPtrMember( 8659 FieldDecl *FD, QualType FieldType) { 8660 // The defaulted special functions are defined as deleted if this is a variant 8661 // member with a non-trivial ownership type, e.g., ObjC __strong or __weak 8662 // type under ARC. 8663 if (!FieldType.hasNonTrivialObjCLifetime()) 8664 return false; 8665 8666 // Don't make the defaulted default constructor defined as deleted if the 8667 // member has an in-class initializer. 8668 if (CSM == Sema::CXXDefaultConstructor && FD->hasInClassInitializer()) 8669 return false; 8670 8671 if (Diagnose) { 8672 auto *ParentClass = cast<CXXRecordDecl>(FD->getParent()); 8673 S.Diag(FD->getLocation(), 8674 diag::note_deleted_special_member_class_subobject) 8675 << getEffectiveCSM() << ParentClass << /*IsField*/true 8676 << FD << 4 << /*IsDtorCallInCtor*/false << /*IsObjCPtr*/true; 8677 } 8678 8679 return true; 8680 } 8681 8682 /// Check whether we should delete a special member function due to the class 8683 /// having a particular direct or virtual base class. 8684 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) { 8685 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl(); 8686 // If program is correct, BaseClass cannot be null, but if it is, the error 8687 // must be reported elsewhere. 8688 if (!BaseClass) 8689 return false; 8690 // If we have an inheriting constructor, check whether we're calling an 8691 // inherited constructor instead of a default constructor. 8692 Sema::SpecialMemberOverloadResult SMOR = lookupInheritedCtor(BaseClass); 8693 if (auto *BaseCtor = SMOR.getMethod()) { 8694 // Note that we do not check access along this path; other than that, 8695 // this is the same as shouldDeleteForSubobjectCall(Base, BaseCtor, false); 8696 // FIXME: Check that the base has a usable destructor! Sink this into 8697 // shouldDeleteForClassSubobject. 8698 if (BaseCtor->isDeleted() && Diagnose) { 8699 S.Diag(Base->getBeginLoc(), 8700 diag::note_deleted_special_member_class_subobject) 8701 << getEffectiveCSM() << MD->getParent() << /*IsField*/ false 8702 << Base->getType() << /*Deleted*/ 1 << /*IsDtorCallInCtor*/ false 8703 << /*IsObjCPtr*/false; 8704 S.NoteDeletedFunction(BaseCtor); 8705 } 8706 return BaseCtor->isDeleted(); 8707 } 8708 return shouldDeleteForClassSubobject(BaseClass, Base, 0); 8709 } 8710 8711 /// Check whether we should delete a special member function due to the class 8712 /// having a particular non-static data member. 8713 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) { 8714 QualType FieldType = S.Context.getBaseElementType(FD->getType()); 8715 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl(); 8716 8717 if (inUnion() && shouldDeleteForVariantObjCPtrMember(FD, FieldType)) 8718 return true; 8719 8720 if (CSM == Sema::CXXDefaultConstructor) { 8721 // For a default constructor, all references must be initialized in-class 8722 // and, if a union, it must have a non-const member. 8723 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) { 8724 if (Diagnose) 8725 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 8726 << !!ICI << MD->getParent() << FD << FieldType << /*Reference*/0; 8727 return true; 8728 } 8729 // C++11 [class.ctor]p5: any non-variant non-static data member of 8730 // const-qualified type (or array thereof) with no 8731 // brace-or-equal-initializer does not have a user-provided default 8732 // constructor. 8733 if (!inUnion() && FieldType.isConstQualified() && 8734 !FD->hasInClassInitializer() && 8735 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) { 8736 if (Diagnose) 8737 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 8738 << !!ICI << MD->getParent() << FD << FD->getType() << /*Const*/1; 8739 return true; 8740 } 8741 8742 if (inUnion() && !FieldType.isConstQualified()) 8743 AllFieldsAreConst = false; 8744 } else if (CSM == Sema::CXXCopyConstructor) { 8745 // For a copy constructor, data members must not be of rvalue reference 8746 // type. 8747 if (FieldType->isRValueReferenceType()) { 8748 if (Diagnose) 8749 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference) 8750 << MD->getParent() << FD << FieldType; 8751 return true; 8752 } 8753 } else if (IsAssignment) { 8754 // For an assignment operator, data members must not be of reference type. 8755 if (FieldType->isReferenceType()) { 8756 if (Diagnose) 8757 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 8758 << isMove() << MD->getParent() << FD << FieldType << /*Reference*/0; 8759 return true; 8760 } 8761 if (!FieldRecord && FieldType.isConstQualified()) { 8762 // C++11 [class.copy]p23: 8763 // -- a non-static data member of const non-class type (or array thereof) 8764 if (Diagnose) 8765 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 8766 << isMove() << MD->getParent() << FD << FD->getType() << /*Const*/1; 8767 return true; 8768 } 8769 } 8770 8771 if (FieldRecord) { 8772 // Some additional restrictions exist on the variant members. 8773 if (!inUnion() && FieldRecord->isUnion() && 8774 FieldRecord->isAnonymousStructOrUnion()) { 8775 bool AllVariantFieldsAreConst = true; 8776 8777 // FIXME: Handle anonymous unions declared within anonymous unions. 8778 for (auto *UI : FieldRecord->fields()) { 8779 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType()); 8780 8781 if (shouldDeleteForVariantObjCPtrMember(&*UI, UnionFieldType)) 8782 return true; 8783 8784 if (!UnionFieldType.isConstQualified()) 8785 AllVariantFieldsAreConst = false; 8786 8787 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl(); 8788 if (UnionFieldRecord && 8789 shouldDeleteForClassSubobject(UnionFieldRecord, UI, 8790 UnionFieldType.getCVRQualifiers())) 8791 return true; 8792 } 8793 8794 // At least one member in each anonymous union must be non-const 8795 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst && 8796 !FieldRecord->field_empty()) { 8797 if (Diagnose) 8798 S.Diag(FieldRecord->getLocation(), 8799 diag::note_deleted_default_ctor_all_const) 8800 << !!ICI << MD->getParent() << /*anonymous union*/1; 8801 return true; 8802 } 8803 8804 // Don't check the implicit member of the anonymous union type. 8805 // This is technically non-conformant, but sanity demands it. 8806 return false; 8807 } 8808 8809 if (shouldDeleteForClassSubobject(FieldRecord, FD, 8810 FieldType.getCVRQualifiers())) 8811 return true; 8812 } 8813 8814 return false; 8815 } 8816 8817 /// C++11 [class.ctor] p5: 8818 /// A defaulted default constructor for a class X is defined as deleted if 8819 /// X is a union and all of its variant members are of const-qualified type. 8820 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() { 8821 // This is a silly definition, because it gives an empty union a deleted 8822 // default constructor. Don't do that. 8823 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst) { 8824 bool AnyFields = false; 8825 for (auto *F : MD->getParent()->fields()) 8826 if ((AnyFields = !F->isUnnamedBitfield())) 8827 break; 8828 if (!AnyFields) 8829 return false; 8830 if (Diagnose) 8831 S.Diag(MD->getParent()->getLocation(), 8832 diag::note_deleted_default_ctor_all_const) 8833 << !!ICI << MD->getParent() << /*not anonymous union*/0; 8834 return true; 8835 } 8836 return false; 8837 } 8838 8839 /// Determine whether a defaulted special member function should be defined as 8840 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11, 8841 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5. 8842 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM, 8843 InheritedConstructorInfo *ICI, 8844 bool Diagnose) { 8845 if (MD->isInvalidDecl()) 8846 return false; 8847 CXXRecordDecl *RD = MD->getParent(); 8848 assert(!RD->isDependentType() && "do deletion after instantiation"); 8849 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl()) 8850 return false; 8851 8852 // C++11 [expr.lambda.prim]p19: 8853 // The closure type associated with a lambda-expression has a 8854 // deleted (8.4.3) default constructor and a deleted copy 8855 // assignment operator. 8856 // C++2a adds back these operators if the lambda has no lambda-capture. 8857 if (RD->isLambda() && !RD->lambdaIsDefaultConstructibleAndAssignable() && 8858 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) { 8859 if (Diagnose) 8860 Diag(RD->getLocation(), diag::note_lambda_decl); 8861 return true; 8862 } 8863 8864 // For an anonymous struct or union, the copy and assignment special members 8865 // will never be used, so skip the check. For an anonymous union declared at 8866 // namespace scope, the constructor and destructor are used. 8867 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor && 8868 RD->isAnonymousStructOrUnion()) 8869 return false; 8870 8871 // C++11 [class.copy]p7, p18: 8872 // If the class definition declares a move constructor or move assignment 8873 // operator, an implicitly declared copy constructor or copy assignment 8874 // operator is defined as deleted. 8875 if (MD->isImplicit() && 8876 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) { 8877 CXXMethodDecl *UserDeclaredMove = nullptr; 8878 8879 // In Microsoft mode up to MSVC 2013, a user-declared move only causes the 8880 // deletion of the corresponding copy operation, not both copy operations. 8881 // MSVC 2015 has adopted the standards conforming behavior. 8882 bool DeletesOnlyMatchingCopy = 8883 getLangOpts().MSVCCompat && 8884 !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015); 8885 8886 if (RD->hasUserDeclaredMoveConstructor() && 8887 (!DeletesOnlyMatchingCopy || CSM == CXXCopyConstructor)) { 8888 if (!Diagnose) return true; 8889 8890 // Find any user-declared move constructor. 8891 for (auto *I : RD->ctors()) { 8892 if (I->isMoveConstructor()) { 8893 UserDeclaredMove = I; 8894 break; 8895 } 8896 } 8897 assert(UserDeclaredMove); 8898 } else if (RD->hasUserDeclaredMoveAssignment() && 8899 (!DeletesOnlyMatchingCopy || CSM == CXXCopyAssignment)) { 8900 if (!Diagnose) return true; 8901 8902 // Find any user-declared move assignment operator. 8903 for (auto *I : RD->methods()) { 8904 if (I->isMoveAssignmentOperator()) { 8905 UserDeclaredMove = I; 8906 break; 8907 } 8908 } 8909 assert(UserDeclaredMove); 8910 } 8911 8912 if (UserDeclaredMove) { 8913 Diag(UserDeclaredMove->getLocation(), 8914 diag::note_deleted_copy_user_declared_move) 8915 << (CSM == CXXCopyAssignment) << RD 8916 << UserDeclaredMove->isMoveAssignmentOperator(); 8917 return true; 8918 } 8919 } 8920 8921 // Do access control from the special member function 8922 ContextRAII MethodContext(*this, MD); 8923 8924 // C++11 [class.dtor]p5: 8925 // -- for a virtual destructor, lookup of the non-array deallocation function 8926 // results in an ambiguity or in a function that is deleted or inaccessible 8927 if (CSM == CXXDestructor && MD->isVirtual()) { 8928 FunctionDecl *OperatorDelete = nullptr; 8929 DeclarationName Name = 8930 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 8931 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name, 8932 OperatorDelete, /*Diagnose*/false)) { 8933 if (Diagnose) 8934 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete); 8935 return true; 8936 } 8937 } 8938 8939 SpecialMemberDeletionInfo SMI(*this, MD, CSM, ICI, Diagnose); 8940 8941 // Per DR1611, do not consider virtual bases of constructors of abstract 8942 // classes, since we are not going to construct them. 8943 // Per DR1658, do not consider virtual bases of destructors of abstract 8944 // classes either. 8945 // Per DR2180, for assignment operators we only assign (and thus only 8946 // consider) direct bases. 8947 if (SMI.visit(SMI.IsAssignment ? SMI.VisitDirectBases 8948 : SMI.VisitPotentiallyConstructedBases)) 8949 return true; 8950 8951 if (SMI.shouldDeleteForAllConstMembers()) 8952 return true; 8953 8954 if (getLangOpts().CUDA) { 8955 // We should delete the special member in CUDA mode if target inference 8956 // failed. 8957 // For inherited constructors (non-null ICI), CSM may be passed so that MD 8958 // is treated as certain special member, which may not reflect what special 8959 // member MD really is. However inferCUDATargetForImplicitSpecialMember 8960 // expects CSM to match MD, therefore recalculate CSM. 8961 assert(ICI || CSM == getSpecialMember(MD)); 8962 auto RealCSM = CSM; 8963 if (ICI) 8964 RealCSM = getSpecialMember(MD); 8965 8966 return inferCUDATargetForImplicitSpecialMember(RD, RealCSM, MD, 8967 SMI.ConstArg, Diagnose); 8968 } 8969 8970 return false; 8971 } 8972 8973 void Sema::DiagnoseDeletedDefaultedFunction(FunctionDecl *FD) { 8974 DefaultedFunctionKind DFK = getDefaultedFunctionKind(FD); 8975 assert(DFK && "not a defaultable function"); 8976 assert(FD->isDefaulted() && FD->isDeleted() && "not defaulted and deleted"); 8977 8978 if (DFK.isSpecialMember()) { 8979 ShouldDeleteSpecialMember(cast<CXXMethodDecl>(FD), DFK.asSpecialMember(), 8980 nullptr, /*Diagnose=*/true); 8981 } else { 8982 DefaultedComparisonAnalyzer( 8983 *this, cast<CXXRecordDecl>(FD->getLexicalDeclContext()), FD, 8984 DFK.asComparison(), DefaultedComparisonAnalyzer::ExplainDeleted) 8985 .visit(); 8986 } 8987 } 8988 8989 /// Perform lookup for a special member of the specified kind, and determine 8990 /// whether it is trivial. If the triviality can be determined without the 8991 /// lookup, skip it. This is intended for use when determining whether a 8992 /// special member of a containing object is trivial, and thus does not ever 8993 /// perform overload resolution for default constructors. 8994 /// 8995 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the 8996 /// member that was most likely to be intended to be trivial, if any. 8997 /// 8998 /// If \p ForCall is true, look at CXXRecord::HasTrivialSpecialMembersForCall to 8999 /// determine whether the special member is trivial. 9000 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD, 9001 Sema::CXXSpecialMember CSM, unsigned Quals, 9002 bool ConstRHS, 9003 Sema::TrivialABIHandling TAH, 9004 CXXMethodDecl **Selected) { 9005 if (Selected) 9006 *Selected = nullptr; 9007 9008 switch (CSM) { 9009 case Sema::CXXInvalid: 9010 llvm_unreachable("not a special member"); 9011 9012 case Sema::CXXDefaultConstructor: 9013 // C++11 [class.ctor]p5: 9014 // A default constructor is trivial if: 9015 // - all the [direct subobjects] have trivial default constructors 9016 // 9017 // Note, no overload resolution is performed in this case. 9018 if (RD->hasTrivialDefaultConstructor()) 9019 return true; 9020 9021 if (Selected) { 9022 // If there's a default constructor which could have been trivial, dig it 9023 // out. Otherwise, if there's any user-provided default constructor, point 9024 // to that as an example of why there's not a trivial one. 9025 CXXConstructorDecl *DefCtor = nullptr; 9026 if (RD->needsImplicitDefaultConstructor()) 9027 S.DeclareImplicitDefaultConstructor(RD); 9028 for (auto *CI : RD->ctors()) { 9029 if (!CI->isDefaultConstructor()) 9030 continue; 9031 DefCtor = CI; 9032 if (!DefCtor->isUserProvided()) 9033 break; 9034 } 9035 9036 *Selected = DefCtor; 9037 } 9038 9039 return false; 9040 9041 case Sema::CXXDestructor: 9042 // C++11 [class.dtor]p5: 9043 // A destructor is trivial if: 9044 // - all the direct [subobjects] have trivial destructors 9045 if (RD->hasTrivialDestructor() || 9046 (TAH == Sema::TAH_ConsiderTrivialABI && 9047 RD->hasTrivialDestructorForCall())) 9048 return true; 9049 9050 if (Selected) { 9051 if (RD->needsImplicitDestructor()) 9052 S.DeclareImplicitDestructor(RD); 9053 *Selected = RD->getDestructor(); 9054 } 9055 9056 return false; 9057 9058 case Sema::CXXCopyConstructor: 9059 // C++11 [class.copy]p12: 9060 // A copy constructor is trivial if: 9061 // - the constructor selected to copy each direct [subobject] is trivial 9062 if (RD->hasTrivialCopyConstructor() || 9063 (TAH == Sema::TAH_ConsiderTrivialABI && 9064 RD->hasTrivialCopyConstructorForCall())) { 9065 if (Quals == Qualifiers::Const) 9066 // We must either select the trivial copy constructor or reach an 9067 // ambiguity; no need to actually perform overload resolution. 9068 return true; 9069 } else if (!Selected) { 9070 return false; 9071 } 9072 // In C++98, we are not supposed to perform overload resolution here, but we 9073 // treat that as a language defect, as suggested on cxx-abi-dev, to treat 9074 // cases like B as having a non-trivial copy constructor: 9075 // struct A { template<typename T> A(T&); }; 9076 // struct B { mutable A a; }; 9077 goto NeedOverloadResolution; 9078 9079 case Sema::CXXCopyAssignment: 9080 // C++11 [class.copy]p25: 9081 // A copy assignment operator is trivial if: 9082 // - the assignment operator selected to copy each direct [subobject] is 9083 // trivial 9084 if (RD->hasTrivialCopyAssignment()) { 9085 if (Quals == Qualifiers::Const) 9086 return true; 9087 } else if (!Selected) { 9088 return false; 9089 } 9090 // In C++98, we are not supposed to perform overload resolution here, but we 9091 // treat that as a language defect. 9092 goto NeedOverloadResolution; 9093 9094 case Sema::CXXMoveConstructor: 9095 case Sema::CXXMoveAssignment: 9096 NeedOverloadResolution: 9097 Sema::SpecialMemberOverloadResult SMOR = 9098 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS); 9099 9100 // The standard doesn't describe how to behave if the lookup is ambiguous. 9101 // We treat it as not making the member non-trivial, just like the standard 9102 // mandates for the default constructor. This should rarely matter, because 9103 // the member will also be deleted. 9104 if (SMOR.getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 9105 return true; 9106 9107 if (!SMOR.getMethod()) { 9108 assert(SMOR.getKind() == 9109 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted); 9110 return false; 9111 } 9112 9113 // We deliberately don't check if we found a deleted special member. We're 9114 // not supposed to! 9115 if (Selected) 9116 *Selected = SMOR.getMethod(); 9117 9118 if (TAH == Sema::TAH_ConsiderTrivialABI && 9119 (CSM == Sema::CXXCopyConstructor || CSM == Sema::CXXMoveConstructor)) 9120 return SMOR.getMethod()->isTrivialForCall(); 9121 return SMOR.getMethod()->isTrivial(); 9122 } 9123 9124 llvm_unreachable("unknown special method kind"); 9125 } 9126 9127 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) { 9128 for (auto *CI : RD->ctors()) 9129 if (!CI->isImplicit()) 9130 return CI; 9131 9132 // Look for constructor templates. 9133 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter; 9134 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) { 9135 if (CXXConstructorDecl *CD = 9136 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl())) 9137 return CD; 9138 } 9139 9140 return nullptr; 9141 } 9142 9143 /// The kind of subobject we are checking for triviality. The values of this 9144 /// enumeration are used in diagnostics. 9145 enum TrivialSubobjectKind { 9146 /// The subobject is a base class. 9147 TSK_BaseClass, 9148 /// The subobject is a non-static data member. 9149 TSK_Field, 9150 /// The object is actually the complete object. 9151 TSK_CompleteObject 9152 }; 9153 9154 /// Check whether the special member selected for a given type would be trivial. 9155 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc, 9156 QualType SubType, bool ConstRHS, 9157 Sema::CXXSpecialMember CSM, 9158 TrivialSubobjectKind Kind, 9159 Sema::TrivialABIHandling TAH, bool Diagnose) { 9160 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); 9161 if (!SubRD) 9162 return true; 9163 9164 CXXMethodDecl *Selected; 9165 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), 9166 ConstRHS, TAH, Diagnose ? &Selected : nullptr)) 9167 return true; 9168 9169 if (Diagnose) { 9170 if (ConstRHS) 9171 SubType.addConst(); 9172 9173 if (!Selected && CSM == Sema::CXXDefaultConstructor) { 9174 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor) 9175 << Kind << SubType.getUnqualifiedType(); 9176 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD)) 9177 S.Diag(CD->getLocation(), diag::note_user_declared_ctor); 9178 } else if (!Selected) 9179 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy) 9180 << Kind << SubType.getUnqualifiedType() << CSM << SubType; 9181 else if (Selected->isUserProvided()) { 9182 if (Kind == TSK_CompleteObject) 9183 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided) 9184 << Kind << SubType.getUnqualifiedType() << CSM; 9185 else { 9186 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided) 9187 << Kind << SubType.getUnqualifiedType() << CSM; 9188 S.Diag(Selected->getLocation(), diag::note_declared_at); 9189 } 9190 } else { 9191 if (Kind != TSK_CompleteObject) 9192 S.Diag(SubobjLoc, diag::note_nontrivial_subobject) 9193 << Kind << SubType.getUnqualifiedType() << CSM; 9194 9195 // Explain why the defaulted or deleted special member isn't trivial. 9196 S.SpecialMemberIsTrivial(Selected, CSM, Sema::TAH_IgnoreTrivialABI, 9197 Diagnose); 9198 } 9199 } 9200 9201 return false; 9202 } 9203 9204 /// Check whether the members of a class type allow a special member to be 9205 /// trivial. 9206 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD, 9207 Sema::CXXSpecialMember CSM, 9208 bool ConstArg, 9209 Sema::TrivialABIHandling TAH, 9210 bool Diagnose) { 9211 for (const auto *FI : RD->fields()) { 9212 if (FI->isInvalidDecl() || FI->isUnnamedBitfield()) 9213 continue; 9214 9215 QualType FieldType = S.Context.getBaseElementType(FI->getType()); 9216 9217 // Pretend anonymous struct or union members are members of this class. 9218 if (FI->isAnonymousStructOrUnion()) { 9219 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(), 9220 CSM, ConstArg, TAH, Diagnose)) 9221 return false; 9222 continue; 9223 } 9224 9225 // C++11 [class.ctor]p5: 9226 // A default constructor is trivial if [...] 9227 // -- no non-static data member of its class has a 9228 // brace-or-equal-initializer 9229 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) { 9230 if (Diagnose) 9231 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI; 9232 return false; 9233 } 9234 9235 // Objective C ARC 4.3.5: 9236 // [...] nontrivally ownership-qualified types are [...] not trivially 9237 // default constructible, copy constructible, move constructible, copy 9238 // assignable, move assignable, or destructible [...] 9239 if (FieldType.hasNonTrivialObjCLifetime()) { 9240 if (Diagnose) 9241 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership) 9242 << RD << FieldType.getObjCLifetime(); 9243 return false; 9244 } 9245 9246 bool ConstRHS = ConstArg && !FI->isMutable(); 9247 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS, 9248 CSM, TSK_Field, TAH, Diagnose)) 9249 return false; 9250 } 9251 9252 return true; 9253 } 9254 9255 /// Diagnose why the specified class does not have a trivial special member of 9256 /// the given kind. 9257 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) { 9258 QualType Ty = Context.getRecordType(RD); 9259 9260 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment); 9261 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM, 9262 TSK_CompleteObject, TAH_IgnoreTrivialABI, 9263 /*Diagnose*/true); 9264 } 9265 9266 /// Determine whether a defaulted or deleted special member function is trivial, 9267 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12, 9268 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5. 9269 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM, 9270 TrivialABIHandling TAH, bool Diagnose) { 9271 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough"); 9272 9273 CXXRecordDecl *RD = MD->getParent(); 9274 9275 bool ConstArg = false; 9276 9277 // C++11 [class.copy]p12, p25: [DR1593] 9278 // A [special member] is trivial if [...] its parameter-type-list is 9279 // equivalent to the parameter-type-list of an implicit declaration [...] 9280 switch (CSM) { 9281 case CXXDefaultConstructor: 9282 case CXXDestructor: 9283 // Trivial default constructors and destructors cannot have parameters. 9284 break; 9285 9286 case CXXCopyConstructor: 9287 case CXXCopyAssignment: { 9288 // Trivial copy operations always have const, non-volatile parameter types. 9289 ConstArg = true; 9290 const ParmVarDecl *Param0 = MD->getParamDecl(0); 9291 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>(); 9292 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) { 9293 if (Diagnose) 9294 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 9295 << Param0->getSourceRange() << Param0->getType() 9296 << Context.getLValueReferenceType( 9297 Context.getRecordType(RD).withConst()); 9298 return false; 9299 } 9300 break; 9301 } 9302 9303 case CXXMoveConstructor: 9304 case CXXMoveAssignment: { 9305 // Trivial move operations always have non-cv-qualified parameters. 9306 const ParmVarDecl *Param0 = MD->getParamDecl(0); 9307 const RValueReferenceType *RT = 9308 Param0->getType()->getAs<RValueReferenceType>(); 9309 if (!RT || RT->getPointeeType().getCVRQualifiers()) { 9310 if (Diagnose) 9311 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 9312 << Param0->getSourceRange() << Param0->getType() 9313 << Context.getRValueReferenceType(Context.getRecordType(RD)); 9314 return false; 9315 } 9316 break; 9317 } 9318 9319 case CXXInvalid: 9320 llvm_unreachable("not a special member"); 9321 } 9322 9323 if (MD->getMinRequiredArguments() < MD->getNumParams()) { 9324 if (Diagnose) 9325 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(), 9326 diag::note_nontrivial_default_arg) 9327 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange(); 9328 return false; 9329 } 9330 if (MD->isVariadic()) { 9331 if (Diagnose) 9332 Diag(MD->getLocation(), diag::note_nontrivial_variadic); 9333 return false; 9334 } 9335 9336 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 9337 // A copy/move [constructor or assignment operator] is trivial if 9338 // -- the [member] selected to copy/move each direct base class subobject 9339 // is trivial 9340 // 9341 // C++11 [class.copy]p12, C++11 [class.copy]p25: 9342 // A [default constructor or destructor] is trivial if 9343 // -- all the direct base classes have trivial [default constructors or 9344 // destructors] 9345 for (const auto &BI : RD->bases()) 9346 if (!checkTrivialSubobjectCall(*this, BI.getBeginLoc(), BI.getType(), 9347 ConstArg, CSM, TSK_BaseClass, TAH, Diagnose)) 9348 return false; 9349 9350 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 9351 // A copy/move [constructor or assignment operator] for a class X is 9352 // trivial if 9353 // -- for each non-static data member of X that is of class type (or array 9354 // thereof), the constructor selected to copy/move that member is 9355 // trivial 9356 // 9357 // C++11 [class.copy]p12, C++11 [class.copy]p25: 9358 // A [default constructor or destructor] is trivial if 9359 // -- for all of the non-static data members of its class that are of class 9360 // type (or array thereof), each such class has a trivial [default 9361 // constructor or destructor] 9362 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, TAH, Diagnose)) 9363 return false; 9364 9365 // C++11 [class.dtor]p5: 9366 // A destructor is trivial if [...] 9367 // -- the destructor is not virtual 9368 if (CSM == CXXDestructor && MD->isVirtual()) { 9369 if (Diagnose) 9370 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD; 9371 return false; 9372 } 9373 9374 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 9375 // A [special member] for class X is trivial if [...] 9376 // -- class X has no virtual functions and no virtual base classes 9377 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) { 9378 if (!Diagnose) 9379 return false; 9380 9381 if (RD->getNumVBases()) { 9382 // Check for virtual bases. We already know that the corresponding 9383 // member in all bases is trivial, so vbases must all be direct. 9384 CXXBaseSpecifier &BS = *RD->vbases_begin(); 9385 assert(BS.isVirtual()); 9386 Diag(BS.getBeginLoc(), diag::note_nontrivial_has_virtual) << RD << 1; 9387 return false; 9388 } 9389 9390 // Must have a virtual method. 9391 for (const auto *MI : RD->methods()) { 9392 if (MI->isVirtual()) { 9393 SourceLocation MLoc = MI->getBeginLoc(); 9394 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0; 9395 return false; 9396 } 9397 } 9398 9399 llvm_unreachable("dynamic class with no vbases and no virtual functions"); 9400 } 9401 9402 // Looks like it's trivial! 9403 return true; 9404 } 9405 9406 namespace { 9407 struct FindHiddenVirtualMethod { 9408 Sema *S; 9409 CXXMethodDecl *Method; 9410 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods; 9411 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 9412 9413 private: 9414 /// Check whether any most overridden method from MD in Methods 9415 static bool CheckMostOverridenMethods( 9416 const CXXMethodDecl *MD, 9417 const llvm::SmallPtrSetImpl<const CXXMethodDecl *> &Methods) { 9418 if (MD->size_overridden_methods() == 0) 9419 return Methods.count(MD->getCanonicalDecl()); 9420 for (const CXXMethodDecl *O : MD->overridden_methods()) 9421 if (CheckMostOverridenMethods(O, Methods)) 9422 return true; 9423 return false; 9424 } 9425 9426 public: 9427 /// Member lookup function that determines whether a given C++ 9428 /// method overloads virtual methods in a base class without overriding any, 9429 /// to be used with CXXRecordDecl::lookupInBases(). 9430 bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 9431 RecordDecl *BaseRecord = 9432 Specifier->getType()->castAs<RecordType>()->getDecl(); 9433 9434 DeclarationName Name = Method->getDeclName(); 9435 assert(Name.getNameKind() == DeclarationName::Identifier); 9436 9437 bool foundSameNameMethod = false; 9438 SmallVector<CXXMethodDecl *, 8> overloadedMethods; 9439 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); 9440 Path.Decls = Path.Decls.slice(1)) { 9441 NamedDecl *D = Path.Decls.front(); 9442 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 9443 MD = MD->getCanonicalDecl(); 9444 foundSameNameMethod = true; 9445 // Interested only in hidden virtual methods. 9446 if (!MD->isVirtual()) 9447 continue; 9448 // If the method we are checking overrides a method from its base 9449 // don't warn about the other overloaded methods. Clang deviates from 9450 // GCC by only diagnosing overloads of inherited virtual functions that 9451 // do not override any other virtual functions in the base. GCC's 9452 // -Woverloaded-virtual diagnoses any derived function hiding a virtual 9453 // function from a base class. These cases may be better served by a 9454 // warning (not specific to virtual functions) on call sites when the 9455 // call would select a different function from the base class, were it 9456 // visible. 9457 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example. 9458 if (!S->IsOverload(Method, MD, false)) 9459 return true; 9460 // Collect the overload only if its hidden. 9461 if (!CheckMostOverridenMethods(MD, OverridenAndUsingBaseMethods)) 9462 overloadedMethods.push_back(MD); 9463 } 9464 } 9465 9466 if (foundSameNameMethod) 9467 OverloadedMethods.append(overloadedMethods.begin(), 9468 overloadedMethods.end()); 9469 return foundSameNameMethod; 9470 } 9471 }; 9472 } // end anonymous namespace 9473 9474 /// Add the most overriden methods from MD to Methods 9475 static void AddMostOverridenMethods(const CXXMethodDecl *MD, 9476 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 9477 if (MD->size_overridden_methods() == 0) 9478 Methods.insert(MD->getCanonicalDecl()); 9479 else 9480 for (const CXXMethodDecl *O : MD->overridden_methods()) 9481 AddMostOverridenMethods(O, Methods); 9482 } 9483 9484 /// Check if a method overloads virtual methods in a base class without 9485 /// overriding any. 9486 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD, 9487 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 9488 if (!MD->getDeclName().isIdentifier()) 9489 return; 9490 9491 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases. 9492 /*bool RecordPaths=*/false, 9493 /*bool DetectVirtual=*/false); 9494 FindHiddenVirtualMethod FHVM; 9495 FHVM.Method = MD; 9496 FHVM.S = this; 9497 9498 // Keep the base methods that were overridden or introduced in the subclass 9499 // by 'using' in a set. A base method not in this set is hidden. 9500 CXXRecordDecl *DC = MD->getParent(); 9501 DeclContext::lookup_result R = DC->lookup(MD->getDeclName()); 9502 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) { 9503 NamedDecl *ND = *I; 9504 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I)) 9505 ND = shad->getTargetDecl(); 9506 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND)) 9507 AddMostOverridenMethods(MD, FHVM.OverridenAndUsingBaseMethods); 9508 } 9509 9510 if (DC->lookupInBases(FHVM, Paths)) 9511 OverloadedMethods = FHVM.OverloadedMethods; 9512 } 9513 9514 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD, 9515 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 9516 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) { 9517 CXXMethodDecl *overloadedMD = OverloadedMethods[i]; 9518 PartialDiagnostic PD = PDiag( 9519 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD; 9520 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType()); 9521 Diag(overloadedMD->getLocation(), PD); 9522 } 9523 } 9524 9525 /// Diagnose methods which overload virtual methods in a base class 9526 /// without overriding any. 9527 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) { 9528 if (MD->isInvalidDecl()) 9529 return; 9530 9531 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation())) 9532 return; 9533 9534 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 9535 FindHiddenVirtualMethods(MD, OverloadedMethods); 9536 if (!OverloadedMethods.empty()) { 9537 Diag(MD->getLocation(), diag::warn_overloaded_virtual) 9538 << MD << (OverloadedMethods.size() > 1); 9539 9540 NoteHiddenVirtualMethods(MD, OverloadedMethods); 9541 } 9542 } 9543 9544 void Sema::checkIllFormedTrivialABIStruct(CXXRecordDecl &RD) { 9545 auto PrintDiagAndRemoveAttr = [&]() { 9546 // No diagnostics if this is a template instantiation. 9547 if (!isTemplateInstantiation(RD.getTemplateSpecializationKind())) 9548 Diag(RD.getAttr<TrivialABIAttr>()->getLocation(), 9549 diag::ext_cannot_use_trivial_abi) << &RD; 9550 RD.dropAttr<TrivialABIAttr>(); 9551 }; 9552 9553 // Ill-formed if the struct has virtual functions. 9554 if (RD.isPolymorphic()) { 9555 PrintDiagAndRemoveAttr(); 9556 return; 9557 } 9558 9559 for (const auto &B : RD.bases()) { 9560 // Ill-formed if the base class is non-trivial for the purpose of calls or a 9561 // virtual base. 9562 if ((!B.getType()->isDependentType() && 9563 !B.getType()->getAsCXXRecordDecl()->canPassInRegisters()) || 9564 B.isVirtual()) { 9565 PrintDiagAndRemoveAttr(); 9566 return; 9567 } 9568 } 9569 9570 for (const auto *FD : RD.fields()) { 9571 // Ill-formed if the field is an ObjectiveC pointer or of a type that is 9572 // non-trivial for the purpose of calls. 9573 QualType FT = FD->getType(); 9574 if (FT.getObjCLifetime() == Qualifiers::OCL_Weak) { 9575 PrintDiagAndRemoveAttr(); 9576 return; 9577 } 9578 9579 if (const auto *RT = FT->getBaseElementTypeUnsafe()->getAs<RecordType>()) 9580 if (!RT->isDependentType() && 9581 !cast<CXXRecordDecl>(RT->getDecl())->canPassInRegisters()) { 9582 PrintDiagAndRemoveAttr(); 9583 return; 9584 } 9585 } 9586 } 9587 9588 void Sema::ActOnFinishCXXMemberSpecification( 9589 Scope *S, SourceLocation RLoc, Decl *TagDecl, SourceLocation LBrac, 9590 SourceLocation RBrac, const ParsedAttributesView &AttrList) { 9591 if (!TagDecl) 9592 return; 9593 9594 AdjustDeclIfTemplate(TagDecl); 9595 9596 for (const ParsedAttr &AL : AttrList) { 9597 if (AL.getKind() != ParsedAttr::AT_Visibility) 9598 continue; 9599 AL.setInvalid(); 9600 Diag(AL.getLoc(), diag::warn_attribute_after_definition_ignored) << AL; 9601 } 9602 9603 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef( 9604 // strict aliasing violation! 9605 reinterpret_cast<Decl**>(FieldCollector->getCurFields()), 9606 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList); 9607 9608 CheckCompletedCXXClass(S, cast<CXXRecordDecl>(TagDecl)); 9609 } 9610 9611 /// Find the equality comparison functions that should be implicitly declared 9612 /// in a given class definition, per C++2a [class.compare.default]p3. 9613 static void findImplicitlyDeclaredEqualityComparisons( 9614 ASTContext &Ctx, CXXRecordDecl *RD, 9615 llvm::SmallVectorImpl<FunctionDecl *> &Spaceships) { 9616 DeclarationName EqEq = Ctx.DeclarationNames.getCXXOperatorName(OO_EqualEqual); 9617 if (!RD->lookup(EqEq).empty()) 9618 // Member operator== explicitly declared: no implicit operator==s. 9619 return; 9620 9621 // Traverse friends looking for an '==' or a '<=>'. 9622 for (FriendDecl *Friend : RD->friends()) { 9623 FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Friend->getFriendDecl()); 9624 if (!FD) continue; 9625 9626 if (FD->getOverloadedOperator() == OO_EqualEqual) { 9627 // Friend operator== explicitly declared: no implicit operator==s. 9628 Spaceships.clear(); 9629 return; 9630 } 9631 9632 if (FD->getOverloadedOperator() == OO_Spaceship && 9633 FD->isExplicitlyDefaulted()) 9634 Spaceships.push_back(FD); 9635 } 9636 9637 // Look for members named 'operator<=>'. 9638 DeclarationName Cmp = Ctx.DeclarationNames.getCXXOperatorName(OO_Spaceship); 9639 for (NamedDecl *ND : RD->lookup(Cmp)) { 9640 // Note that we could find a non-function here (either a function template 9641 // or a using-declaration). Neither case results in an implicit 9642 // 'operator=='. 9643 if (auto *FD = dyn_cast<FunctionDecl>(ND)) 9644 if (FD->isExplicitlyDefaulted()) 9645 Spaceships.push_back(FD); 9646 } 9647 } 9648 9649 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared 9650 /// special functions, such as the default constructor, copy 9651 /// constructor, or destructor, to the given C++ class (C++ 9652 /// [special]p1). This routine can only be executed just before the 9653 /// definition of the class is complete. 9654 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) { 9655 if (ClassDecl->needsImplicitDefaultConstructor()) { 9656 ++getASTContext().NumImplicitDefaultConstructors; 9657 9658 if (ClassDecl->hasInheritedConstructor()) 9659 DeclareImplicitDefaultConstructor(ClassDecl); 9660 } 9661 9662 if (ClassDecl->needsImplicitCopyConstructor()) { 9663 ++getASTContext().NumImplicitCopyConstructors; 9664 9665 // If the properties or semantics of the copy constructor couldn't be 9666 // determined while the class was being declared, force a declaration 9667 // of it now. 9668 if (ClassDecl->needsOverloadResolutionForCopyConstructor() || 9669 ClassDecl->hasInheritedConstructor()) 9670 DeclareImplicitCopyConstructor(ClassDecl); 9671 // For the MS ABI we need to know whether the copy ctor is deleted. A 9672 // prerequisite for deleting the implicit copy ctor is that the class has a 9673 // move ctor or move assignment that is either user-declared or whose 9674 // semantics are inherited from a subobject. FIXME: We should provide a more 9675 // direct way for CodeGen to ask whether the constructor was deleted. 9676 else if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 9677 (ClassDecl->hasUserDeclaredMoveConstructor() || 9678 ClassDecl->needsOverloadResolutionForMoveConstructor() || 9679 ClassDecl->hasUserDeclaredMoveAssignment() || 9680 ClassDecl->needsOverloadResolutionForMoveAssignment())) 9681 DeclareImplicitCopyConstructor(ClassDecl); 9682 } 9683 9684 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) { 9685 ++getASTContext().NumImplicitMoveConstructors; 9686 9687 if (ClassDecl->needsOverloadResolutionForMoveConstructor() || 9688 ClassDecl->hasInheritedConstructor()) 9689 DeclareImplicitMoveConstructor(ClassDecl); 9690 } 9691 9692 if (ClassDecl->needsImplicitCopyAssignment()) { 9693 ++getASTContext().NumImplicitCopyAssignmentOperators; 9694 9695 // If we have a dynamic class, then the copy assignment operator may be 9696 // virtual, so we have to declare it immediately. This ensures that, e.g., 9697 // it shows up in the right place in the vtable and that we diagnose 9698 // problems with the implicit exception specification. 9699 if (ClassDecl->isDynamicClass() || 9700 ClassDecl->needsOverloadResolutionForCopyAssignment() || 9701 ClassDecl->hasInheritedAssignment()) 9702 DeclareImplicitCopyAssignment(ClassDecl); 9703 } 9704 9705 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) { 9706 ++getASTContext().NumImplicitMoveAssignmentOperators; 9707 9708 // Likewise for the move assignment operator. 9709 if (ClassDecl->isDynamicClass() || 9710 ClassDecl->needsOverloadResolutionForMoveAssignment() || 9711 ClassDecl->hasInheritedAssignment()) 9712 DeclareImplicitMoveAssignment(ClassDecl); 9713 } 9714 9715 if (ClassDecl->needsImplicitDestructor()) { 9716 ++getASTContext().NumImplicitDestructors; 9717 9718 // If we have a dynamic class, then the destructor may be virtual, so we 9719 // have to declare the destructor immediately. This ensures that, e.g., it 9720 // shows up in the right place in the vtable and that we diagnose problems 9721 // with the implicit exception specification. 9722 if (ClassDecl->isDynamicClass() || 9723 ClassDecl->needsOverloadResolutionForDestructor()) 9724 DeclareImplicitDestructor(ClassDecl); 9725 } 9726 9727 // C++2a [class.compare.default]p3: 9728 // If the member-specification does not explicitly declare any member or 9729 // friend named operator==, an == operator function is declared implicitly 9730 // for each defaulted three-way comparison operator function defined in the 9731 // member-specification 9732 // FIXME: Consider doing this lazily. 9733 if (getLangOpts().CPlusPlus2a) { 9734 llvm::SmallVector<FunctionDecl*, 4> DefaultedSpaceships; 9735 findImplicitlyDeclaredEqualityComparisons(Context, ClassDecl, 9736 DefaultedSpaceships); 9737 for (auto *FD : DefaultedSpaceships) 9738 DeclareImplicitEqualityComparison(ClassDecl, FD); 9739 } 9740 } 9741 9742 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) { 9743 if (!D) 9744 return 0; 9745 9746 // The order of template parameters is not important here. All names 9747 // get added to the same scope. 9748 SmallVector<TemplateParameterList *, 4> ParameterLists; 9749 9750 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 9751 D = TD->getTemplatedDecl(); 9752 9753 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) 9754 ParameterLists.push_back(PSD->getTemplateParameters()); 9755 9756 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) { 9757 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i) 9758 ParameterLists.push_back(DD->getTemplateParameterList(i)); 9759 9760 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 9761 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) 9762 ParameterLists.push_back(FTD->getTemplateParameters()); 9763 } 9764 } 9765 9766 if (TagDecl *TD = dyn_cast<TagDecl>(D)) { 9767 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i) 9768 ParameterLists.push_back(TD->getTemplateParameterList(i)); 9769 9770 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) { 9771 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate()) 9772 ParameterLists.push_back(CTD->getTemplateParameters()); 9773 } 9774 } 9775 9776 unsigned Count = 0; 9777 for (TemplateParameterList *Params : ParameterLists) { 9778 if (Params->size() > 0) 9779 // Ignore explicit specializations; they don't contribute to the template 9780 // depth. 9781 ++Count; 9782 for (NamedDecl *Param : *Params) { 9783 if (Param->getDeclName()) { 9784 S->AddDecl(Param); 9785 IdResolver.AddDecl(Param); 9786 } 9787 } 9788 } 9789 9790 return Count; 9791 } 9792 9793 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 9794 if (!RecordD) return; 9795 AdjustDeclIfTemplate(RecordD); 9796 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD); 9797 PushDeclContext(S, Record); 9798 } 9799 9800 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 9801 if (!RecordD) return; 9802 PopDeclContext(); 9803 } 9804 9805 /// This is used to implement the constant expression evaluation part of the 9806 /// attribute enable_if extension. There is nothing in standard C++ which would 9807 /// require reentering parameters. 9808 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) { 9809 if (!Param) 9810 return; 9811 9812 S->AddDecl(Param); 9813 if (Param->getDeclName()) 9814 IdResolver.AddDecl(Param); 9815 } 9816 9817 /// ActOnStartDelayedCXXMethodDeclaration - We have completed 9818 /// parsing a top-level (non-nested) C++ class, and we are now 9819 /// parsing those parts of the given Method declaration that could 9820 /// not be parsed earlier (C++ [class.mem]p2), such as default 9821 /// arguments. This action should enter the scope of the given 9822 /// Method declaration as if we had just parsed the qualified method 9823 /// name. However, it should not bring the parameters into scope; 9824 /// that will be performed by ActOnDelayedCXXMethodParameter. 9825 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 9826 } 9827 9828 /// ActOnDelayedCXXMethodParameter - We've already started a delayed 9829 /// C++ method declaration. We're (re-)introducing the given 9830 /// function parameter into scope for use in parsing later parts of 9831 /// the method declaration. For example, we could see an 9832 /// ActOnParamDefaultArgument event for this parameter. 9833 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { 9834 if (!ParamD) 9835 return; 9836 9837 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); 9838 9839 // If this parameter has an unparsed default argument, clear it out 9840 // to make way for the parsed default argument. 9841 if (Param->hasUnparsedDefaultArg()) 9842 Param->setDefaultArg(nullptr); 9843 9844 S->AddDecl(Param); 9845 if (Param->getDeclName()) 9846 IdResolver.AddDecl(Param); 9847 } 9848 9849 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished 9850 /// processing the delayed method declaration for Method. The method 9851 /// declaration is now considered finished. There may be a separate 9852 /// ActOnStartOfFunctionDef action later (not necessarily 9853 /// immediately!) for this method, if it was also defined inside the 9854 /// class body. 9855 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 9856 if (!MethodD) 9857 return; 9858 9859 AdjustDeclIfTemplate(MethodD); 9860 9861 FunctionDecl *Method = cast<FunctionDecl>(MethodD); 9862 9863 // Now that we have our default arguments, check the constructor 9864 // again. It could produce additional diagnostics or affect whether 9865 // the class has implicitly-declared destructors, among other 9866 // things. 9867 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) 9868 CheckConstructor(Constructor); 9869 9870 // Check the default arguments, which we may have added. 9871 if (!Method->isInvalidDecl()) 9872 CheckCXXDefaultArguments(Method); 9873 } 9874 9875 // Emit the given diagnostic for each non-address-space qualifier. 9876 // Common part of CheckConstructorDeclarator and CheckDestructorDeclarator. 9877 static void checkMethodTypeQualifiers(Sema &S, Declarator &D, unsigned DiagID) { 9878 const DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 9879 if (FTI.hasMethodTypeQualifiers() && !D.isInvalidType()) { 9880 bool DiagOccured = false; 9881 FTI.MethodQualifiers->forEachQualifier( 9882 [DiagID, &S, &DiagOccured](DeclSpec::TQ, StringRef QualName, 9883 SourceLocation SL) { 9884 // This diagnostic should be emitted on any qualifier except an addr 9885 // space qualifier. However, forEachQualifier currently doesn't visit 9886 // addr space qualifiers, so there's no way to write this condition 9887 // right now; we just diagnose on everything. 9888 S.Diag(SL, DiagID) << QualName << SourceRange(SL); 9889 DiagOccured = true; 9890 }); 9891 if (DiagOccured) 9892 D.setInvalidType(); 9893 } 9894 } 9895 9896 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check 9897 /// the well-formedness of the constructor declarator @p D with type @p 9898 /// R. If there are any errors in the declarator, this routine will 9899 /// emit diagnostics and set the invalid bit to true. In any case, the type 9900 /// will be updated to reflect a well-formed type for the constructor and 9901 /// returned. 9902 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R, 9903 StorageClass &SC) { 9904 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 9905 9906 // C++ [class.ctor]p3: 9907 // A constructor shall not be virtual (10.3) or static (9.4). A 9908 // constructor can be invoked for a const, volatile or const 9909 // volatile object. A constructor shall not be declared const, 9910 // volatile, or const volatile (9.3.2). 9911 if (isVirtual) { 9912 if (!D.isInvalidType()) 9913 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 9914 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc()) 9915 << SourceRange(D.getIdentifierLoc()); 9916 D.setInvalidType(); 9917 } 9918 if (SC == SC_Static) { 9919 if (!D.isInvalidType()) 9920 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 9921 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 9922 << SourceRange(D.getIdentifierLoc()); 9923 D.setInvalidType(); 9924 SC = SC_None; 9925 } 9926 9927 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 9928 diagnoseIgnoredQualifiers( 9929 diag::err_constructor_return_type, TypeQuals, SourceLocation(), 9930 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(), 9931 D.getDeclSpec().getRestrictSpecLoc(), 9932 D.getDeclSpec().getAtomicSpecLoc()); 9933 D.setInvalidType(); 9934 } 9935 9936 checkMethodTypeQualifiers(*this, D, diag::err_invalid_qualified_constructor); 9937 9938 // C++0x [class.ctor]p4: 9939 // A constructor shall not be declared with a ref-qualifier. 9940 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 9941 if (FTI.hasRefQualifier()) { 9942 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor) 9943 << FTI.RefQualifierIsLValueRef 9944 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 9945 D.setInvalidType(); 9946 } 9947 9948 // Rebuild the function type "R" without any type qualifiers (in 9949 // case any of the errors above fired) and with "void" as the 9950 // return type, since constructors don't have return types. 9951 const FunctionProtoType *Proto = R->castAs<FunctionProtoType>(); 9952 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType()) 9953 return R; 9954 9955 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 9956 EPI.TypeQuals = Qualifiers(); 9957 EPI.RefQualifier = RQ_None; 9958 9959 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI); 9960 } 9961 9962 /// CheckConstructor - Checks a fully-formed constructor for 9963 /// well-formedness, issuing any diagnostics required. Returns true if 9964 /// the constructor declarator is invalid. 9965 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) { 9966 CXXRecordDecl *ClassDecl 9967 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext()); 9968 if (!ClassDecl) 9969 return Constructor->setInvalidDecl(); 9970 9971 // C++ [class.copy]p3: 9972 // A declaration of a constructor for a class X is ill-formed if 9973 // its first parameter is of type (optionally cv-qualified) X and 9974 // either there are no other parameters or else all other 9975 // parameters have default arguments. 9976 if (!Constructor->isInvalidDecl() && 9977 ((Constructor->getNumParams() == 1) || 9978 (Constructor->getNumParams() > 1 && 9979 Constructor->getParamDecl(1)->hasDefaultArg())) && 9980 Constructor->getTemplateSpecializationKind() 9981 != TSK_ImplicitInstantiation) { 9982 QualType ParamType = Constructor->getParamDecl(0)->getType(); 9983 QualType ClassTy = Context.getTagDeclType(ClassDecl); 9984 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { 9985 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation(); 9986 const char *ConstRef 9987 = Constructor->getParamDecl(0)->getIdentifier() ? "const &" 9988 : " const &"; 9989 Diag(ParamLoc, diag::err_constructor_byvalue_arg) 9990 << FixItHint::CreateInsertion(ParamLoc, ConstRef); 9991 9992 // FIXME: Rather that making the constructor invalid, we should endeavor 9993 // to fix the type. 9994 Constructor->setInvalidDecl(); 9995 } 9996 } 9997 } 9998 9999 /// CheckDestructor - Checks a fully-formed destructor definition for 10000 /// well-formedness, issuing any diagnostics required. Returns true 10001 /// on error. 10002 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { 10003 CXXRecordDecl *RD = Destructor->getParent(); 10004 10005 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) { 10006 SourceLocation Loc; 10007 10008 if (!Destructor->isImplicit()) 10009 Loc = Destructor->getLocation(); 10010 else 10011 Loc = RD->getLocation(); 10012 10013 // If we have a virtual destructor, look up the deallocation function 10014 if (FunctionDecl *OperatorDelete = 10015 FindDeallocationFunctionForDestructor(Loc, RD)) { 10016 Expr *ThisArg = nullptr; 10017 10018 // If the notional 'delete this' expression requires a non-trivial 10019 // conversion from 'this' to the type of a destroying operator delete's 10020 // first parameter, perform that conversion now. 10021 if (OperatorDelete->isDestroyingOperatorDelete()) { 10022 QualType ParamType = OperatorDelete->getParamDecl(0)->getType(); 10023 if (!declaresSameEntity(ParamType->getAsCXXRecordDecl(), RD)) { 10024 // C++ [class.dtor]p13: 10025 // ... as if for the expression 'delete this' appearing in a 10026 // non-virtual destructor of the destructor's class. 10027 ContextRAII SwitchContext(*this, Destructor); 10028 ExprResult This = 10029 ActOnCXXThis(OperatorDelete->getParamDecl(0)->getLocation()); 10030 assert(!This.isInvalid() && "couldn't form 'this' expr in dtor?"); 10031 This = PerformImplicitConversion(This.get(), ParamType, AA_Passing); 10032 if (This.isInvalid()) { 10033 // FIXME: Register this as a context note so that it comes out 10034 // in the right order. 10035 Diag(Loc, diag::note_implicit_delete_this_in_destructor_here); 10036 return true; 10037 } 10038 ThisArg = This.get(); 10039 } 10040 } 10041 10042 DiagnoseUseOfDecl(OperatorDelete, Loc); 10043 MarkFunctionReferenced(Loc, OperatorDelete); 10044 Destructor->setOperatorDelete(OperatorDelete, ThisArg); 10045 } 10046 } 10047 10048 return false; 10049 } 10050 10051 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check 10052 /// the well-formednes of the destructor declarator @p D with type @p 10053 /// R. If there are any errors in the declarator, this routine will 10054 /// emit diagnostics and set the declarator to invalid. Even if this happens, 10055 /// will be updated to reflect a well-formed type for the destructor and 10056 /// returned. 10057 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R, 10058 StorageClass& SC) { 10059 // C++ [class.dtor]p1: 10060 // [...] A typedef-name that names a class is a class-name 10061 // (7.1.3); however, a typedef-name that names a class shall not 10062 // be used as the identifier in the declarator for a destructor 10063 // declaration. 10064 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName); 10065 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>()) 10066 Diag(D.getIdentifierLoc(), diag::ext_destructor_typedef_name) 10067 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl()); 10068 else if (const TemplateSpecializationType *TST = 10069 DeclaratorType->getAs<TemplateSpecializationType>()) 10070 if (TST->isTypeAlias()) 10071 Diag(D.getIdentifierLoc(), diag::ext_destructor_typedef_name) 10072 << DeclaratorType << 1; 10073 10074 // C++ [class.dtor]p2: 10075 // A destructor is used to destroy objects of its class type. A 10076 // destructor takes no parameters, and no return type can be 10077 // specified for it (not even void). The address of a destructor 10078 // shall not be taken. A destructor shall not be static. A 10079 // destructor can be invoked for a const, volatile or const 10080 // volatile object. A destructor shall not be declared const, 10081 // volatile or const volatile (9.3.2). 10082 if (SC == SC_Static) { 10083 if (!D.isInvalidType()) 10084 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be) 10085 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 10086 << SourceRange(D.getIdentifierLoc()) 10087 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 10088 10089 SC = SC_None; 10090 } 10091 if (!D.isInvalidType()) { 10092 // Destructors don't have return types, but the parser will 10093 // happily parse something like: 10094 // 10095 // class X { 10096 // float ~X(); 10097 // }; 10098 // 10099 // The return type will be eliminated later. 10100 if (D.getDeclSpec().hasTypeSpecifier()) 10101 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type) 10102 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 10103 << SourceRange(D.getIdentifierLoc()); 10104 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 10105 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals, 10106 SourceLocation(), 10107 D.getDeclSpec().getConstSpecLoc(), 10108 D.getDeclSpec().getVolatileSpecLoc(), 10109 D.getDeclSpec().getRestrictSpecLoc(), 10110 D.getDeclSpec().getAtomicSpecLoc()); 10111 D.setInvalidType(); 10112 } 10113 } 10114 10115 checkMethodTypeQualifiers(*this, D, diag::err_invalid_qualified_destructor); 10116 10117 // C++0x [class.dtor]p2: 10118 // A destructor shall not be declared with a ref-qualifier. 10119 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 10120 if (FTI.hasRefQualifier()) { 10121 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor) 10122 << FTI.RefQualifierIsLValueRef 10123 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 10124 D.setInvalidType(); 10125 } 10126 10127 // Make sure we don't have any parameters. 10128 if (FTIHasNonVoidParameters(FTI)) { 10129 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params); 10130 10131 // Delete the parameters. 10132 FTI.freeParams(); 10133 D.setInvalidType(); 10134 } 10135 10136 // Make sure the destructor isn't variadic. 10137 if (FTI.isVariadic) { 10138 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic); 10139 D.setInvalidType(); 10140 } 10141 10142 // Rebuild the function type "R" without any type qualifiers or 10143 // parameters (in case any of the errors above fired) and with 10144 // "void" as the return type, since destructors don't have return 10145 // types. 10146 if (!D.isInvalidType()) 10147 return R; 10148 10149 const FunctionProtoType *Proto = R->castAs<FunctionProtoType>(); 10150 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 10151 EPI.Variadic = false; 10152 EPI.TypeQuals = Qualifiers(); 10153 EPI.RefQualifier = RQ_None; 10154 return Context.getFunctionType(Context.VoidTy, None, EPI); 10155 } 10156 10157 static void extendLeft(SourceRange &R, SourceRange Before) { 10158 if (Before.isInvalid()) 10159 return; 10160 R.setBegin(Before.getBegin()); 10161 if (R.getEnd().isInvalid()) 10162 R.setEnd(Before.getEnd()); 10163 } 10164 10165 static void extendRight(SourceRange &R, SourceRange After) { 10166 if (After.isInvalid()) 10167 return; 10168 if (R.getBegin().isInvalid()) 10169 R.setBegin(After.getBegin()); 10170 R.setEnd(After.getEnd()); 10171 } 10172 10173 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the 10174 /// well-formednes of the conversion function declarator @p D with 10175 /// type @p R. If there are any errors in the declarator, this routine 10176 /// will emit diagnostics and return true. Otherwise, it will return 10177 /// false. Either way, the type @p R will be updated to reflect a 10178 /// well-formed type for the conversion operator. 10179 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R, 10180 StorageClass& SC) { 10181 // C++ [class.conv.fct]p1: 10182 // Neither parameter types nor return type can be specified. The 10183 // type of a conversion function (8.3.5) is "function taking no 10184 // parameter returning conversion-type-id." 10185 if (SC == SC_Static) { 10186 if (!D.isInvalidType()) 10187 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member) 10188 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 10189 << D.getName().getSourceRange(); 10190 D.setInvalidType(); 10191 SC = SC_None; 10192 } 10193 10194 TypeSourceInfo *ConvTSI = nullptr; 10195 QualType ConvType = 10196 GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI); 10197 10198 const DeclSpec &DS = D.getDeclSpec(); 10199 if (DS.hasTypeSpecifier() && !D.isInvalidType()) { 10200 // Conversion functions don't have return types, but the parser will 10201 // happily parse something like: 10202 // 10203 // class X { 10204 // float operator bool(); 10205 // }; 10206 // 10207 // The return type will be changed later anyway. 10208 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type) 10209 << SourceRange(DS.getTypeSpecTypeLoc()) 10210 << SourceRange(D.getIdentifierLoc()); 10211 D.setInvalidType(); 10212 } else if (DS.getTypeQualifiers() && !D.isInvalidType()) { 10213 // It's also plausible that the user writes type qualifiers in the wrong 10214 // place, such as: 10215 // struct S { const operator int(); }; 10216 // FIXME: we could provide a fixit to move the qualifiers onto the 10217 // conversion type. 10218 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_complex_decl) 10219 << SourceRange(D.getIdentifierLoc()) << 0; 10220 D.setInvalidType(); 10221 } 10222 10223 const auto *Proto = R->castAs<FunctionProtoType>(); 10224 10225 // Make sure we don't have any parameters. 10226 if (Proto->getNumParams() > 0) { 10227 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params); 10228 10229 // Delete the parameters. 10230 D.getFunctionTypeInfo().freeParams(); 10231 D.setInvalidType(); 10232 } else if (Proto->isVariadic()) { 10233 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic); 10234 D.setInvalidType(); 10235 } 10236 10237 // Diagnose "&operator bool()" and other such nonsense. This 10238 // is actually a gcc extension which we don't support. 10239 if (Proto->getReturnType() != ConvType) { 10240 bool NeedsTypedef = false; 10241 SourceRange Before, After; 10242 10243 // Walk the chunks and extract information on them for our diagnostic. 10244 bool PastFunctionChunk = false; 10245 for (auto &Chunk : D.type_objects()) { 10246 switch (Chunk.Kind) { 10247 case DeclaratorChunk::Function: 10248 if (!PastFunctionChunk) { 10249 if (Chunk.Fun.HasTrailingReturnType) { 10250 TypeSourceInfo *TRT = nullptr; 10251 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT); 10252 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange()); 10253 } 10254 PastFunctionChunk = true; 10255 break; 10256 } 10257 LLVM_FALLTHROUGH; 10258 case DeclaratorChunk::Array: 10259 NeedsTypedef = true; 10260 extendRight(After, Chunk.getSourceRange()); 10261 break; 10262 10263 case DeclaratorChunk::Pointer: 10264 case DeclaratorChunk::BlockPointer: 10265 case DeclaratorChunk::Reference: 10266 case DeclaratorChunk::MemberPointer: 10267 case DeclaratorChunk::Pipe: 10268 extendLeft(Before, Chunk.getSourceRange()); 10269 break; 10270 10271 case DeclaratorChunk::Paren: 10272 extendLeft(Before, Chunk.Loc); 10273 extendRight(After, Chunk.EndLoc); 10274 break; 10275 } 10276 } 10277 10278 SourceLocation Loc = Before.isValid() ? Before.getBegin() : 10279 After.isValid() ? After.getBegin() : 10280 D.getIdentifierLoc(); 10281 auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl); 10282 DB << Before << After; 10283 10284 if (!NeedsTypedef) { 10285 DB << /*don't need a typedef*/0; 10286 10287 // If we can provide a correct fix-it hint, do so. 10288 if (After.isInvalid() && ConvTSI) { 10289 SourceLocation InsertLoc = 10290 getLocForEndOfToken(ConvTSI->getTypeLoc().getEndLoc()); 10291 DB << FixItHint::CreateInsertion(InsertLoc, " ") 10292 << FixItHint::CreateInsertionFromRange( 10293 InsertLoc, CharSourceRange::getTokenRange(Before)) 10294 << FixItHint::CreateRemoval(Before); 10295 } 10296 } else if (!Proto->getReturnType()->isDependentType()) { 10297 DB << /*typedef*/1 << Proto->getReturnType(); 10298 } else if (getLangOpts().CPlusPlus11) { 10299 DB << /*alias template*/2 << Proto->getReturnType(); 10300 } else { 10301 DB << /*might not be fixable*/3; 10302 } 10303 10304 // Recover by incorporating the other type chunks into the result type. 10305 // Note, this does *not* change the name of the function. This is compatible 10306 // with the GCC extension: 10307 // struct S { &operator int(); } s; 10308 // int &r = s.operator int(); // ok in GCC 10309 // S::operator int&() {} // error in GCC, function name is 'operator int'. 10310 ConvType = Proto->getReturnType(); 10311 } 10312 10313 // C++ [class.conv.fct]p4: 10314 // The conversion-type-id shall not represent a function type nor 10315 // an array type. 10316 if (ConvType->isArrayType()) { 10317 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array); 10318 ConvType = Context.getPointerType(ConvType); 10319 D.setInvalidType(); 10320 } else if (ConvType->isFunctionType()) { 10321 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function); 10322 ConvType = Context.getPointerType(ConvType); 10323 D.setInvalidType(); 10324 } 10325 10326 // Rebuild the function type "R" without any parameters (in case any 10327 // of the errors above fired) and with the conversion type as the 10328 // return type. 10329 if (D.isInvalidType()) 10330 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo()); 10331 10332 // C++0x explicit conversion operators. 10333 if (DS.hasExplicitSpecifier() && !getLangOpts().CPlusPlus2a) 10334 Diag(DS.getExplicitSpecLoc(), 10335 getLangOpts().CPlusPlus11 10336 ? diag::warn_cxx98_compat_explicit_conversion_functions 10337 : diag::ext_explicit_conversion_functions) 10338 << SourceRange(DS.getExplicitSpecRange()); 10339 } 10340 10341 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete 10342 /// the declaration of the given C++ conversion function. This routine 10343 /// is responsible for recording the conversion function in the C++ 10344 /// class, if possible. 10345 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) { 10346 assert(Conversion && "Expected to receive a conversion function declaration"); 10347 10348 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext()); 10349 10350 // Make sure we aren't redeclaring the conversion function. 10351 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType()); 10352 10353 // C++ [class.conv.fct]p1: 10354 // [...] A conversion function is never used to convert a 10355 // (possibly cv-qualified) object to the (possibly cv-qualified) 10356 // same object type (or a reference to it), to a (possibly 10357 // cv-qualified) base class of that type (or a reference to it), 10358 // or to (possibly cv-qualified) void. 10359 // FIXME: Suppress this warning if the conversion function ends up being a 10360 // virtual function that overrides a virtual function in a base class. 10361 QualType ClassType 10362 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 10363 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>()) 10364 ConvType = ConvTypeRef->getPointeeType(); 10365 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared && 10366 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) 10367 /* Suppress diagnostics for instantiations. */; 10368 else if (ConvType->isRecordType()) { 10369 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); 10370 if (ConvType == ClassType) 10371 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used) 10372 << ClassType; 10373 else if (IsDerivedFrom(Conversion->getLocation(), ClassType, ConvType)) 10374 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used) 10375 << ClassType << ConvType; 10376 } else if (ConvType->isVoidType()) { 10377 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used) 10378 << ClassType << ConvType; 10379 } 10380 10381 if (FunctionTemplateDecl *ConversionTemplate 10382 = Conversion->getDescribedFunctionTemplate()) 10383 return ConversionTemplate; 10384 10385 return Conversion; 10386 } 10387 10388 namespace { 10389 /// Utility class to accumulate and print a diagnostic listing the invalid 10390 /// specifier(s) on a declaration. 10391 struct BadSpecifierDiagnoser { 10392 BadSpecifierDiagnoser(Sema &S, SourceLocation Loc, unsigned DiagID) 10393 : S(S), Diagnostic(S.Diag(Loc, DiagID)) {} 10394 ~BadSpecifierDiagnoser() { 10395 Diagnostic << Specifiers; 10396 } 10397 10398 template<typename T> void check(SourceLocation SpecLoc, T Spec) { 10399 return check(SpecLoc, DeclSpec::getSpecifierName(Spec)); 10400 } 10401 void check(SourceLocation SpecLoc, DeclSpec::TST Spec) { 10402 return check(SpecLoc, 10403 DeclSpec::getSpecifierName(Spec, S.getPrintingPolicy())); 10404 } 10405 void check(SourceLocation SpecLoc, const char *Spec) { 10406 if (SpecLoc.isInvalid()) return; 10407 Diagnostic << SourceRange(SpecLoc, SpecLoc); 10408 if (!Specifiers.empty()) Specifiers += " "; 10409 Specifiers += Spec; 10410 } 10411 10412 Sema &S; 10413 Sema::SemaDiagnosticBuilder Diagnostic; 10414 std::string Specifiers; 10415 }; 10416 } 10417 10418 /// Check the validity of a declarator that we parsed for a deduction-guide. 10419 /// These aren't actually declarators in the grammar, so we need to check that 10420 /// the user didn't specify any pieces that are not part of the deduction-guide 10421 /// grammar. 10422 void Sema::CheckDeductionGuideDeclarator(Declarator &D, QualType &R, 10423 StorageClass &SC) { 10424 TemplateName GuidedTemplate = D.getName().TemplateName.get().get(); 10425 TemplateDecl *GuidedTemplateDecl = GuidedTemplate.getAsTemplateDecl(); 10426 assert(GuidedTemplateDecl && "missing template decl for deduction guide"); 10427 10428 // C++ [temp.deduct.guide]p3: 10429 // A deduction-gide shall be declared in the same scope as the 10430 // corresponding class template. 10431 if (!CurContext->getRedeclContext()->Equals( 10432 GuidedTemplateDecl->getDeclContext()->getRedeclContext())) { 10433 Diag(D.getIdentifierLoc(), diag::err_deduction_guide_wrong_scope) 10434 << GuidedTemplateDecl; 10435 Diag(GuidedTemplateDecl->getLocation(), diag::note_template_decl_here); 10436 } 10437 10438 auto &DS = D.getMutableDeclSpec(); 10439 // We leave 'friend' and 'virtual' to be rejected in the normal way. 10440 if (DS.hasTypeSpecifier() || DS.getTypeQualifiers() || 10441 DS.getStorageClassSpecLoc().isValid() || DS.isInlineSpecified() || 10442 DS.isNoreturnSpecified() || DS.hasConstexprSpecifier()) { 10443 BadSpecifierDiagnoser Diagnoser( 10444 *this, D.getIdentifierLoc(), 10445 diag::err_deduction_guide_invalid_specifier); 10446 10447 Diagnoser.check(DS.getStorageClassSpecLoc(), DS.getStorageClassSpec()); 10448 DS.ClearStorageClassSpecs(); 10449 SC = SC_None; 10450 10451 // 'explicit' is permitted. 10452 Diagnoser.check(DS.getInlineSpecLoc(), "inline"); 10453 Diagnoser.check(DS.getNoreturnSpecLoc(), "_Noreturn"); 10454 Diagnoser.check(DS.getConstexprSpecLoc(), "constexpr"); 10455 DS.ClearConstexprSpec(); 10456 10457 Diagnoser.check(DS.getConstSpecLoc(), "const"); 10458 Diagnoser.check(DS.getRestrictSpecLoc(), "__restrict"); 10459 Diagnoser.check(DS.getVolatileSpecLoc(), "volatile"); 10460 Diagnoser.check(DS.getAtomicSpecLoc(), "_Atomic"); 10461 Diagnoser.check(DS.getUnalignedSpecLoc(), "__unaligned"); 10462 DS.ClearTypeQualifiers(); 10463 10464 Diagnoser.check(DS.getTypeSpecComplexLoc(), DS.getTypeSpecComplex()); 10465 Diagnoser.check(DS.getTypeSpecSignLoc(), DS.getTypeSpecSign()); 10466 Diagnoser.check(DS.getTypeSpecWidthLoc(), DS.getTypeSpecWidth()); 10467 Diagnoser.check(DS.getTypeSpecTypeLoc(), DS.getTypeSpecType()); 10468 DS.ClearTypeSpecType(); 10469 } 10470 10471 if (D.isInvalidType()) 10472 return; 10473 10474 // Check the declarator is simple enough. 10475 bool FoundFunction = false; 10476 for (const DeclaratorChunk &Chunk : llvm::reverse(D.type_objects())) { 10477 if (Chunk.Kind == DeclaratorChunk::Paren) 10478 continue; 10479 if (Chunk.Kind != DeclaratorChunk::Function || FoundFunction) { 10480 Diag(D.getDeclSpec().getBeginLoc(), 10481 diag::err_deduction_guide_with_complex_decl) 10482 << D.getSourceRange(); 10483 break; 10484 } 10485 if (!Chunk.Fun.hasTrailingReturnType()) { 10486 Diag(D.getName().getBeginLoc(), 10487 diag::err_deduction_guide_no_trailing_return_type); 10488 break; 10489 } 10490 10491 // Check that the return type is written as a specialization of 10492 // the template specified as the deduction-guide's name. 10493 ParsedType TrailingReturnType = Chunk.Fun.getTrailingReturnType(); 10494 TypeSourceInfo *TSI = nullptr; 10495 QualType RetTy = GetTypeFromParser(TrailingReturnType, &TSI); 10496 assert(TSI && "deduction guide has valid type but invalid return type?"); 10497 bool AcceptableReturnType = false; 10498 bool MightInstantiateToSpecialization = false; 10499 if (auto RetTST = 10500 TSI->getTypeLoc().getAs<TemplateSpecializationTypeLoc>()) { 10501 TemplateName SpecifiedName = RetTST.getTypePtr()->getTemplateName(); 10502 bool TemplateMatches = 10503 Context.hasSameTemplateName(SpecifiedName, GuidedTemplate); 10504 if (SpecifiedName.getKind() == TemplateName::Template && TemplateMatches) 10505 AcceptableReturnType = true; 10506 else { 10507 // This could still instantiate to the right type, unless we know it 10508 // names the wrong class template. 10509 auto *TD = SpecifiedName.getAsTemplateDecl(); 10510 MightInstantiateToSpecialization = !(TD && isa<ClassTemplateDecl>(TD) && 10511 !TemplateMatches); 10512 } 10513 } else if (!RetTy.hasQualifiers() && RetTy->isDependentType()) { 10514 MightInstantiateToSpecialization = true; 10515 } 10516 10517 if (!AcceptableReturnType) { 10518 Diag(TSI->getTypeLoc().getBeginLoc(), 10519 diag::err_deduction_guide_bad_trailing_return_type) 10520 << GuidedTemplate << TSI->getType() 10521 << MightInstantiateToSpecialization 10522 << TSI->getTypeLoc().getSourceRange(); 10523 } 10524 10525 // Keep going to check that we don't have any inner declarator pieces (we 10526 // could still have a function returning a pointer to a function). 10527 FoundFunction = true; 10528 } 10529 10530 if (D.isFunctionDefinition()) 10531 Diag(D.getIdentifierLoc(), diag::err_deduction_guide_defines_function); 10532 } 10533 10534 //===----------------------------------------------------------------------===// 10535 // Namespace Handling 10536 //===----------------------------------------------------------------------===// 10537 10538 /// Diagnose a mismatch in 'inline' qualifiers when a namespace is 10539 /// reopened. 10540 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, 10541 SourceLocation Loc, 10542 IdentifierInfo *II, bool *IsInline, 10543 NamespaceDecl *PrevNS) { 10544 assert(*IsInline != PrevNS->isInline()); 10545 10546 // HACK: Work around a bug in libstdc++4.6's <atomic>, where 10547 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as 10548 // inline namespaces, with the intention of bringing names into namespace std. 10549 // 10550 // We support this just well enough to get that case working; this is not 10551 // sufficient to support reopening namespaces as inline in general. 10552 if (*IsInline && II && II->getName().startswith("__atomic") && 10553 S.getSourceManager().isInSystemHeader(Loc)) { 10554 // Mark all prior declarations of the namespace as inline. 10555 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS; 10556 NS = NS->getPreviousDecl()) 10557 NS->setInline(*IsInline); 10558 // Patch up the lookup table for the containing namespace. This isn't really 10559 // correct, but it's good enough for this particular case. 10560 for (auto *I : PrevNS->decls()) 10561 if (auto *ND = dyn_cast<NamedDecl>(I)) 10562 PrevNS->getParent()->makeDeclVisibleInContext(ND); 10563 return; 10564 } 10565 10566 if (PrevNS->isInline()) 10567 // The user probably just forgot the 'inline', so suggest that it 10568 // be added back. 10569 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline) 10570 << FixItHint::CreateInsertion(KeywordLoc, "inline "); 10571 else 10572 S.Diag(Loc, diag::err_inline_namespace_mismatch); 10573 10574 S.Diag(PrevNS->getLocation(), diag::note_previous_definition); 10575 *IsInline = PrevNS->isInline(); 10576 } 10577 10578 /// ActOnStartNamespaceDef - This is called at the start of a namespace 10579 /// definition. 10580 Decl *Sema::ActOnStartNamespaceDef( 10581 Scope *NamespcScope, SourceLocation InlineLoc, SourceLocation NamespaceLoc, 10582 SourceLocation IdentLoc, IdentifierInfo *II, SourceLocation LBrace, 10583 const ParsedAttributesView &AttrList, UsingDirectiveDecl *&UD) { 10584 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc; 10585 // For anonymous namespace, take the location of the left brace. 10586 SourceLocation Loc = II ? IdentLoc : LBrace; 10587 bool IsInline = InlineLoc.isValid(); 10588 bool IsInvalid = false; 10589 bool IsStd = false; 10590 bool AddToKnown = false; 10591 Scope *DeclRegionScope = NamespcScope->getParent(); 10592 10593 NamespaceDecl *PrevNS = nullptr; 10594 if (II) { 10595 // C++ [namespace.def]p2: 10596 // The identifier in an original-namespace-definition shall not 10597 // have been previously defined in the declarative region in 10598 // which the original-namespace-definition appears. The 10599 // identifier in an original-namespace-definition is the name of 10600 // the namespace. Subsequently in that declarative region, it is 10601 // treated as an original-namespace-name. 10602 // 10603 // Since namespace names are unique in their scope, and we don't 10604 // look through using directives, just look for any ordinary names 10605 // as if by qualified name lookup. 10606 LookupResult R(*this, II, IdentLoc, LookupOrdinaryName, 10607 ForExternalRedeclaration); 10608 LookupQualifiedName(R, CurContext->getRedeclContext()); 10609 NamedDecl *PrevDecl = 10610 R.isSingleResult() ? R.getRepresentativeDecl() : nullptr; 10611 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl); 10612 10613 if (PrevNS) { 10614 // This is an extended namespace definition. 10615 if (IsInline != PrevNS->isInline()) 10616 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II, 10617 &IsInline, PrevNS); 10618 } else if (PrevDecl) { 10619 // This is an invalid name redefinition. 10620 Diag(Loc, diag::err_redefinition_different_kind) 10621 << II; 10622 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 10623 IsInvalid = true; 10624 // Continue on to push Namespc as current DeclContext and return it. 10625 } else if (II->isStr("std") && 10626 CurContext->getRedeclContext()->isTranslationUnit()) { 10627 // This is the first "real" definition of the namespace "std", so update 10628 // our cache of the "std" namespace to point at this definition. 10629 PrevNS = getStdNamespace(); 10630 IsStd = true; 10631 AddToKnown = !IsInline; 10632 } else { 10633 // We've seen this namespace for the first time. 10634 AddToKnown = !IsInline; 10635 } 10636 } else { 10637 // Anonymous namespaces. 10638 10639 // Determine whether the parent already has an anonymous namespace. 10640 DeclContext *Parent = CurContext->getRedeclContext(); 10641 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 10642 PrevNS = TU->getAnonymousNamespace(); 10643 } else { 10644 NamespaceDecl *ND = cast<NamespaceDecl>(Parent); 10645 PrevNS = ND->getAnonymousNamespace(); 10646 } 10647 10648 if (PrevNS && IsInline != PrevNS->isInline()) 10649 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II, 10650 &IsInline, PrevNS); 10651 } 10652 10653 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline, 10654 StartLoc, Loc, II, PrevNS); 10655 if (IsInvalid) 10656 Namespc->setInvalidDecl(); 10657 10658 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList); 10659 AddPragmaAttributes(DeclRegionScope, Namespc); 10660 10661 // FIXME: Should we be merging attributes? 10662 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>()) 10663 PushNamespaceVisibilityAttr(Attr, Loc); 10664 10665 if (IsStd) 10666 StdNamespace = Namespc; 10667 if (AddToKnown) 10668 KnownNamespaces[Namespc] = false; 10669 10670 if (II) { 10671 PushOnScopeChains(Namespc, DeclRegionScope); 10672 } else { 10673 // Link the anonymous namespace into its parent. 10674 DeclContext *Parent = CurContext->getRedeclContext(); 10675 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 10676 TU->setAnonymousNamespace(Namespc); 10677 } else { 10678 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc); 10679 } 10680 10681 CurContext->addDecl(Namespc); 10682 10683 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition 10684 // behaves as if it were replaced by 10685 // namespace unique { /* empty body */ } 10686 // using namespace unique; 10687 // namespace unique { namespace-body } 10688 // where all occurrences of 'unique' in a translation unit are 10689 // replaced by the same identifier and this identifier differs 10690 // from all other identifiers in the entire program. 10691 10692 // We just create the namespace with an empty name and then add an 10693 // implicit using declaration, just like the standard suggests. 10694 // 10695 // CodeGen enforces the "universally unique" aspect by giving all 10696 // declarations semantically contained within an anonymous 10697 // namespace internal linkage. 10698 10699 if (!PrevNS) { 10700 UD = UsingDirectiveDecl::Create(Context, Parent, 10701 /* 'using' */ LBrace, 10702 /* 'namespace' */ SourceLocation(), 10703 /* qualifier */ NestedNameSpecifierLoc(), 10704 /* identifier */ SourceLocation(), 10705 Namespc, 10706 /* Ancestor */ Parent); 10707 UD->setImplicit(); 10708 Parent->addDecl(UD); 10709 } 10710 } 10711 10712 ActOnDocumentableDecl(Namespc); 10713 10714 // Although we could have an invalid decl (i.e. the namespace name is a 10715 // redefinition), push it as current DeclContext and try to continue parsing. 10716 // FIXME: We should be able to push Namespc here, so that the each DeclContext 10717 // for the namespace has the declarations that showed up in that particular 10718 // namespace definition. 10719 PushDeclContext(NamespcScope, Namespc); 10720 return Namespc; 10721 } 10722 10723 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl 10724 /// is a namespace alias, returns the namespace it points to. 10725 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) { 10726 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D)) 10727 return AD->getNamespace(); 10728 return dyn_cast_or_null<NamespaceDecl>(D); 10729 } 10730 10731 /// ActOnFinishNamespaceDef - This callback is called after a namespace is 10732 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. 10733 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) { 10734 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl); 10735 assert(Namespc && "Invalid parameter, expected NamespaceDecl"); 10736 Namespc->setRBraceLoc(RBrace); 10737 PopDeclContext(); 10738 if (Namespc->hasAttr<VisibilityAttr>()) 10739 PopPragmaVisibility(true, RBrace); 10740 // If this namespace contains an export-declaration, export it now. 10741 if (DeferredExportedNamespaces.erase(Namespc)) 10742 Dcl->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported); 10743 } 10744 10745 CXXRecordDecl *Sema::getStdBadAlloc() const { 10746 return cast_or_null<CXXRecordDecl>( 10747 StdBadAlloc.get(Context.getExternalSource())); 10748 } 10749 10750 EnumDecl *Sema::getStdAlignValT() const { 10751 return cast_or_null<EnumDecl>(StdAlignValT.get(Context.getExternalSource())); 10752 } 10753 10754 NamespaceDecl *Sema::getStdNamespace() const { 10755 return cast_or_null<NamespaceDecl>( 10756 StdNamespace.get(Context.getExternalSource())); 10757 } 10758 10759 NamespaceDecl *Sema::lookupStdExperimentalNamespace() { 10760 if (!StdExperimentalNamespaceCache) { 10761 if (auto Std = getStdNamespace()) { 10762 LookupResult Result(*this, &PP.getIdentifierTable().get("experimental"), 10763 SourceLocation(), LookupNamespaceName); 10764 if (!LookupQualifiedName(Result, Std) || 10765 !(StdExperimentalNamespaceCache = 10766 Result.getAsSingle<NamespaceDecl>())) 10767 Result.suppressDiagnostics(); 10768 } 10769 } 10770 return StdExperimentalNamespaceCache; 10771 } 10772 10773 namespace { 10774 10775 enum UnsupportedSTLSelect { 10776 USS_InvalidMember, 10777 USS_MissingMember, 10778 USS_NonTrivial, 10779 USS_Other 10780 }; 10781 10782 struct InvalidSTLDiagnoser { 10783 Sema &S; 10784 SourceLocation Loc; 10785 QualType TyForDiags; 10786 10787 QualType operator()(UnsupportedSTLSelect Sel = USS_Other, StringRef Name = "", 10788 const VarDecl *VD = nullptr) { 10789 { 10790 auto D = S.Diag(Loc, diag::err_std_compare_type_not_supported) 10791 << TyForDiags << ((int)Sel); 10792 if (Sel == USS_InvalidMember || Sel == USS_MissingMember) { 10793 assert(!Name.empty()); 10794 D << Name; 10795 } 10796 } 10797 if (Sel == USS_InvalidMember) { 10798 S.Diag(VD->getLocation(), diag::note_var_declared_here) 10799 << VD << VD->getSourceRange(); 10800 } 10801 return QualType(); 10802 } 10803 }; 10804 } // namespace 10805 10806 QualType Sema::CheckComparisonCategoryType(ComparisonCategoryType Kind, 10807 SourceLocation Loc, 10808 ComparisonCategoryUsage Usage) { 10809 assert(getLangOpts().CPlusPlus && 10810 "Looking for comparison category type outside of C++."); 10811 10812 // Use an elaborated type for diagnostics which has a name containing the 10813 // prepended 'std' namespace but not any inline namespace names. 10814 auto TyForDiags = [&](ComparisonCategoryInfo *Info) { 10815 auto *NNS = 10816 NestedNameSpecifier::Create(Context, nullptr, getStdNamespace()); 10817 return Context.getElaboratedType(ETK_None, NNS, Info->getType()); 10818 }; 10819 10820 // Check if we've already successfully checked the comparison category type 10821 // before. If so, skip checking it again. 10822 ComparisonCategoryInfo *Info = Context.CompCategories.lookupInfo(Kind); 10823 if (Info && FullyCheckedComparisonCategories[static_cast<unsigned>(Kind)]) { 10824 // The only thing we need to check is that the type has a reachable 10825 // definition in the current context. 10826 if (RequireCompleteType(Loc, TyForDiags(Info), diag::err_incomplete_type)) 10827 return QualType(); 10828 10829 return Info->getType(); 10830 } 10831 10832 // If lookup failed 10833 if (!Info) { 10834 std::string NameForDiags = "std::"; 10835 NameForDiags += ComparisonCategories::getCategoryString(Kind); 10836 Diag(Loc, diag::err_implied_comparison_category_type_not_found) 10837 << NameForDiags << (int)Usage; 10838 return QualType(); 10839 } 10840 10841 assert(Info->Kind == Kind); 10842 assert(Info->Record); 10843 10844 // Update the Record decl in case we encountered a forward declaration on our 10845 // first pass. FIXME: This is a bit of a hack. 10846 if (Info->Record->hasDefinition()) 10847 Info->Record = Info->Record->getDefinition(); 10848 10849 if (RequireCompleteType(Loc, TyForDiags(Info), diag::err_incomplete_type)) 10850 return QualType(); 10851 10852 InvalidSTLDiagnoser UnsupportedSTLError{*this, Loc, TyForDiags(Info)}; 10853 10854 if (!Info->Record->isTriviallyCopyable()) 10855 return UnsupportedSTLError(USS_NonTrivial); 10856 10857 for (const CXXBaseSpecifier &BaseSpec : Info->Record->bases()) { 10858 CXXRecordDecl *Base = BaseSpec.getType()->getAsCXXRecordDecl(); 10859 // Tolerate empty base classes. 10860 if (Base->isEmpty()) 10861 continue; 10862 // Reject STL implementations which have at least one non-empty base. 10863 return UnsupportedSTLError(); 10864 } 10865 10866 // Check that the STL has implemented the types using a single integer field. 10867 // This expectation allows better codegen for builtin operators. We require: 10868 // (1) The class has exactly one field. 10869 // (2) The field is an integral or enumeration type. 10870 auto FIt = Info->Record->field_begin(), FEnd = Info->Record->field_end(); 10871 if (std::distance(FIt, FEnd) != 1 || 10872 !FIt->getType()->isIntegralOrEnumerationType()) { 10873 return UnsupportedSTLError(); 10874 } 10875 10876 // Build each of the require values and store them in Info. 10877 for (ComparisonCategoryResult CCR : 10878 ComparisonCategories::getPossibleResultsForType(Kind)) { 10879 StringRef MemName = ComparisonCategories::getResultString(CCR); 10880 ComparisonCategoryInfo::ValueInfo *ValInfo = Info->lookupValueInfo(CCR); 10881 10882 if (!ValInfo) 10883 return UnsupportedSTLError(USS_MissingMember, MemName); 10884 10885 VarDecl *VD = ValInfo->VD; 10886 assert(VD && "should not be null!"); 10887 10888 // Attempt to diagnose reasons why the STL definition of this type 10889 // might be foobar, including it failing to be a constant expression. 10890 // TODO Handle more ways the lookup or result can be invalid. 10891 if (!VD->isStaticDataMember() || !VD->isConstexpr() || !VD->hasInit() || 10892 !VD->checkInitIsICE()) 10893 return UnsupportedSTLError(USS_InvalidMember, MemName, VD); 10894 10895 // Attempt to evaluate the var decl as a constant expression and extract 10896 // the value of its first field as a ICE. If this fails, the STL 10897 // implementation is not supported. 10898 if (!ValInfo->hasValidIntValue()) 10899 return UnsupportedSTLError(); 10900 10901 MarkVariableReferenced(Loc, VD); 10902 } 10903 10904 // We've successfully built the required types and expressions. Update 10905 // the cache and return the newly cached value. 10906 FullyCheckedComparisonCategories[static_cast<unsigned>(Kind)] = true; 10907 return Info->getType(); 10908 } 10909 10910 /// Retrieve the special "std" namespace, which may require us to 10911 /// implicitly define the namespace. 10912 NamespaceDecl *Sema::getOrCreateStdNamespace() { 10913 if (!StdNamespace) { 10914 // The "std" namespace has not yet been defined, so build one implicitly. 10915 StdNamespace = NamespaceDecl::Create(Context, 10916 Context.getTranslationUnitDecl(), 10917 /*Inline=*/false, 10918 SourceLocation(), SourceLocation(), 10919 &PP.getIdentifierTable().get("std"), 10920 /*PrevDecl=*/nullptr); 10921 getStdNamespace()->setImplicit(true); 10922 } 10923 10924 return getStdNamespace(); 10925 } 10926 10927 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) { 10928 assert(getLangOpts().CPlusPlus && 10929 "Looking for std::initializer_list outside of C++."); 10930 10931 // We're looking for implicit instantiations of 10932 // template <typename E> class std::initializer_list. 10933 10934 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it. 10935 return false; 10936 10937 ClassTemplateDecl *Template = nullptr; 10938 const TemplateArgument *Arguments = nullptr; 10939 10940 if (const RecordType *RT = Ty->getAs<RecordType>()) { 10941 10942 ClassTemplateSpecializationDecl *Specialization = 10943 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()); 10944 if (!Specialization) 10945 return false; 10946 10947 Template = Specialization->getSpecializedTemplate(); 10948 Arguments = Specialization->getTemplateArgs().data(); 10949 } else if (const TemplateSpecializationType *TST = 10950 Ty->getAs<TemplateSpecializationType>()) { 10951 Template = dyn_cast_or_null<ClassTemplateDecl>( 10952 TST->getTemplateName().getAsTemplateDecl()); 10953 Arguments = TST->getArgs(); 10954 } 10955 if (!Template) 10956 return false; 10957 10958 if (!StdInitializerList) { 10959 // Haven't recognized std::initializer_list yet, maybe this is it. 10960 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl(); 10961 if (TemplateClass->getIdentifier() != 10962 &PP.getIdentifierTable().get("initializer_list") || 10963 !getStdNamespace()->InEnclosingNamespaceSetOf( 10964 TemplateClass->getDeclContext())) 10965 return false; 10966 // This is a template called std::initializer_list, but is it the right 10967 // template? 10968 TemplateParameterList *Params = Template->getTemplateParameters(); 10969 if (Params->getMinRequiredArguments() != 1) 10970 return false; 10971 if (!isa<TemplateTypeParmDecl>(Params->getParam(0))) 10972 return false; 10973 10974 // It's the right template. 10975 StdInitializerList = Template; 10976 } 10977 10978 if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl()) 10979 return false; 10980 10981 // This is an instance of std::initializer_list. Find the argument type. 10982 if (Element) 10983 *Element = Arguments[0].getAsType(); 10984 return true; 10985 } 10986 10987 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){ 10988 NamespaceDecl *Std = S.getStdNamespace(); 10989 if (!Std) { 10990 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 10991 return nullptr; 10992 } 10993 10994 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), 10995 Loc, Sema::LookupOrdinaryName); 10996 if (!S.LookupQualifiedName(Result, Std)) { 10997 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 10998 return nullptr; 10999 } 11000 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>(); 11001 if (!Template) { 11002 Result.suppressDiagnostics(); 11003 // We found something weird. Complain about the first thing we found. 11004 NamedDecl *Found = *Result.begin(); 11005 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list); 11006 return nullptr; 11007 } 11008 11009 // We found some template called std::initializer_list. Now verify that it's 11010 // correct. 11011 TemplateParameterList *Params = Template->getTemplateParameters(); 11012 if (Params->getMinRequiredArguments() != 1 || 11013 !isa<TemplateTypeParmDecl>(Params->getParam(0))) { 11014 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list); 11015 return nullptr; 11016 } 11017 11018 return Template; 11019 } 11020 11021 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) { 11022 if (!StdInitializerList) { 11023 StdInitializerList = LookupStdInitializerList(*this, Loc); 11024 if (!StdInitializerList) 11025 return QualType(); 11026 } 11027 11028 TemplateArgumentListInfo Args(Loc, Loc); 11029 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element), 11030 Context.getTrivialTypeSourceInfo(Element, 11031 Loc))); 11032 return Context.getCanonicalType( 11033 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args)); 11034 } 11035 11036 bool Sema::isInitListConstructor(const FunctionDecl *Ctor) { 11037 // C++ [dcl.init.list]p2: 11038 // A constructor is an initializer-list constructor if its first parameter 11039 // is of type std::initializer_list<E> or reference to possibly cv-qualified 11040 // std::initializer_list<E> for some type E, and either there are no other 11041 // parameters or else all other parameters have default arguments. 11042 if (Ctor->getNumParams() < 1 || 11043 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg())) 11044 return false; 11045 11046 QualType ArgType = Ctor->getParamDecl(0)->getType(); 11047 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>()) 11048 ArgType = RT->getPointeeType().getUnqualifiedType(); 11049 11050 return isStdInitializerList(ArgType, nullptr); 11051 } 11052 11053 /// Determine whether a using statement is in a context where it will be 11054 /// apply in all contexts. 11055 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) { 11056 switch (CurContext->getDeclKind()) { 11057 case Decl::TranslationUnit: 11058 return true; 11059 case Decl::LinkageSpec: 11060 return IsUsingDirectiveInToplevelContext(CurContext->getParent()); 11061 default: 11062 return false; 11063 } 11064 } 11065 11066 namespace { 11067 11068 // Callback to only accept typo corrections that are namespaces. 11069 class NamespaceValidatorCCC final : public CorrectionCandidateCallback { 11070 public: 11071 bool ValidateCandidate(const TypoCorrection &candidate) override { 11072 if (NamedDecl *ND = candidate.getCorrectionDecl()) 11073 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); 11074 return false; 11075 } 11076 11077 std::unique_ptr<CorrectionCandidateCallback> clone() override { 11078 return std::make_unique<NamespaceValidatorCCC>(*this); 11079 } 11080 }; 11081 11082 } 11083 11084 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, 11085 CXXScopeSpec &SS, 11086 SourceLocation IdentLoc, 11087 IdentifierInfo *Ident) { 11088 R.clear(); 11089 NamespaceValidatorCCC CCC{}; 11090 if (TypoCorrection Corrected = 11091 S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS, CCC, 11092 Sema::CTK_ErrorRecovery)) { 11093 if (DeclContext *DC = S.computeDeclContext(SS, false)) { 11094 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); 11095 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 11096 Ident->getName().equals(CorrectedStr); 11097 S.diagnoseTypo(Corrected, 11098 S.PDiag(diag::err_using_directive_member_suggest) 11099 << Ident << DC << DroppedSpecifier << SS.getRange(), 11100 S.PDiag(diag::note_namespace_defined_here)); 11101 } else { 11102 S.diagnoseTypo(Corrected, 11103 S.PDiag(diag::err_using_directive_suggest) << Ident, 11104 S.PDiag(diag::note_namespace_defined_here)); 11105 } 11106 R.addDecl(Corrected.getFoundDecl()); 11107 return true; 11108 } 11109 return false; 11110 } 11111 11112 Decl *Sema::ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, 11113 SourceLocation NamespcLoc, CXXScopeSpec &SS, 11114 SourceLocation IdentLoc, 11115 IdentifierInfo *NamespcName, 11116 const ParsedAttributesView &AttrList) { 11117 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 11118 assert(NamespcName && "Invalid NamespcName."); 11119 assert(IdentLoc.isValid() && "Invalid NamespceName location."); 11120 11121 // This can only happen along a recovery path. 11122 while (S->isTemplateParamScope()) 11123 S = S->getParent(); 11124 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 11125 11126 UsingDirectiveDecl *UDir = nullptr; 11127 NestedNameSpecifier *Qualifier = nullptr; 11128 if (SS.isSet()) 11129 Qualifier = SS.getScopeRep(); 11130 11131 // Lookup namespace name. 11132 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); 11133 LookupParsedName(R, S, &SS); 11134 if (R.isAmbiguous()) 11135 return nullptr; 11136 11137 if (R.empty()) { 11138 R.clear(); 11139 // Allow "using namespace std;" or "using namespace ::std;" even if 11140 // "std" hasn't been defined yet, for GCC compatibility. 11141 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) && 11142 NamespcName->isStr("std")) { 11143 Diag(IdentLoc, diag::ext_using_undefined_std); 11144 R.addDecl(getOrCreateStdNamespace()); 11145 R.resolveKind(); 11146 } 11147 // Otherwise, attempt typo correction. 11148 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName); 11149 } 11150 11151 if (!R.empty()) { 11152 NamedDecl *Named = R.getRepresentativeDecl(); 11153 NamespaceDecl *NS = R.getAsSingle<NamespaceDecl>(); 11154 assert(NS && "expected namespace decl"); 11155 11156 // The use of a nested name specifier may trigger deprecation warnings. 11157 DiagnoseUseOfDecl(Named, IdentLoc); 11158 11159 // C++ [namespace.udir]p1: 11160 // A using-directive specifies that the names in the nominated 11161 // namespace can be used in the scope in which the 11162 // using-directive appears after the using-directive. During 11163 // unqualified name lookup (3.4.1), the names appear as if they 11164 // were declared in the nearest enclosing namespace which 11165 // contains both the using-directive and the nominated 11166 // namespace. [Note: in this context, "contains" means "contains 11167 // directly or indirectly". ] 11168 11169 // Find enclosing context containing both using-directive and 11170 // nominated namespace. 11171 DeclContext *CommonAncestor = NS; 11172 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) 11173 CommonAncestor = CommonAncestor->getParent(); 11174 11175 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, 11176 SS.getWithLocInContext(Context), 11177 IdentLoc, Named, CommonAncestor); 11178 11179 if (IsUsingDirectiveInToplevelContext(CurContext) && 11180 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) { 11181 Diag(IdentLoc, diag::warn_using_directive_in_header); 11182 } 11183 11184 PushUsingDirective(S, UDir); 11185 } else { 11186 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 11187 } 11188 11189 if (UDir) 11190 ProcessDeclAttributeList(S, UDir, AttrList); 11191 11192 return UDir; 11193 } 11194 11195 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { 11196 // If the scope has an associated entity and the using directive is at 11197 // namespace or translation unit scope, add the UsingDirectiveDecl into 11198 // its lookup structure so qualified name lookup can find it. 11199 DeclContext *Ctx = S->getEntity(); 11200 if (Ctx && !Ctx->isFunctionOrMethod()) 11201 Ctx->addDecl(UDir); 11202 else 11203 // Otherwise, it is at block scope. The using-directives will affect lookup 11204 // only to the end of the scope. 11205 S->PushUsingDirective(UDir); 11206 } 11207 11208 Decl *Sema::ActOnUsingDeclaration(Scope *S, AccessSpecifier AS, 11209 SourceLocation UsingLoc, 11210 SourceLocation TypenameLoc, CXXScopeSpec &SS, 11211 UnqualifiedId &Name, 11212 SourceLocation EllipsisLoc, 11213 const ParsedAttributesView &AttrList) { 11214 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 11215 11216 if (SS.isEmpty()) { 11217 Diag(Name.getBeginLoc(), diag::err_using_requires_qualname); 11218 return nullptr; 11219 } 11220 11221 switch (Name.getKind()) { 11222 case UnqualifiedIdKind::IK_ImplicitSelfParam: 11223 case UnqualifiedIdKind::IK_Identifier: 11224 case UnqualifiedIdKind::IK_OperatorFunctionId: 11225 case UnqualifiedIdKind::IK_LiteralOperatorId: 11226 case UnqualifiedIdKind::IK_ConversionFunctionId: 11227 break; 11228 11229 case UnqualifiedIdKind::IK_ConstructorName: 11230 case UnqualifiedIdKind::IK_ConstructorTemplateId: 11231 // C++11 inheriting constructors. 11232 Diag(Name.getBeginLoc(), 11233 getLangOpts().CPlusPlus11 11234 ? diag::warn_cxx98_compat_using_decl_constructor 11235 : diag::err_using_decl_constructor) 11236 << SS.getRange(); 11237 11238 if (getLangOpts().CPlusPlus11) break; 11239 11240 return nullptr; 11241 11242 case UnqualifiedIdKind::IK_DestructorName: 11243 Diag(Name.getBeginLoc(), diag::err_using_decl_destructor) << SS.getRange(); 11244 return nullptr; 11245 11246 case UnqualifiedIdKind::IK_TemplateId: 11247 Diag(Name.getBeginLoc(), diag::err_using_decl_template_id) 11248 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc); 11249 return nullptr; 11250 11251 case UnqualifiedIdKind::IK_DeductionGuideName: 11252 llvm_unreachable("cannot parse qualified deduction guide name"); 11253 } 11254 11255 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); 11256 DeclarationName TargetName = TargetNameInfo.getName(); 11257 if (!TargetName) 11258 return nullptr; 11259 11260 // Warn about access declarations. 11261 if (UsingLoc.isInvalid()) { 11262 Diag(Name.getBeginLoc(), getLangOpts().CPlusPlus11 11263 ? diag::err_access_decl 11264 : diag::warn_access_decl_deprecated) 11265 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using "); 11266 } 11267 11268 if (EllipsisLoc.isInvalid()) { 11269 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) || 11270 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration)) 11271 return nullptr; 11272 } else { 11273 if (!SS.getScopeRep()->containsUnexpandedParameterPack() && 11274 !TargetNameInfo.containsUnexpandedParameterPack()) { 11275 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 11276 << SourceRange(SS.getBeginLoc(), TargetNameInfo.getEndLoc()); 11277 EllipsisLoc = SourceLocation(); 11278 } 11279 } 11280 11281 NamedDecl *UD = 11282 BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc, 11283 SS, TargetNameInfo, EllipsisLoc, AttrList, 11284 /*IsInstantiation*/false); 11285 if (UD) 11286 PushOnScopeChains(UD, S, /*AddToContext*/ false); 11287 11288 return UD; 11289 } 11290 11291 /// Determine whether a using declaration considers the given 11292 /// declarations as "equivalent", e.g., if they are redeclarations of 11293 /// the same entity or are both typedefs of the same type. 11294 static bool 11295 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) { 11296 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) 11297 return true; 11298 11299 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1)) 11300 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) 11301 return Context.hasSameType(TD1->getUnderlyingType(), 11302 TD2->getUnderlyingType()); 11303 11304 return false; 11305 } 11306 11307 11308 /// Determines whether to create a using shadow decl for a particular 11309 /// decl, given the set of decls existing prior to this using lookup. 11310 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, 11311 const LookupResult &Previous, 11312 UsingShadowDecl *&PrevShadow) { 11313 // Diagnose finding a decl which is not from a base class of the 11314 // current class. We do this now because there are cases where this 11315 // function will silently decide not to build a shadow decl, which 11316 // will pre-empt further diagnostics. 11317 // 11318 // We don't need to do this in C++11 because we do the check once on 11319 // the qualifier. 11320 // 11321 // FIXME: diagnose the following if we care enough: 11322 // struct A { int foo; }; 11323 // struct B : A { using A::foo; }; 11324 // template <class T> struct C : A {}; 11325 // template <class T> struct D : C<T> { using B::foo; } // <--- 11326 // This is invalid (during instantiation) in C++03 because B::foo 11327 // resolves to the using decl in B, which is not a base class of D<T>. 11328 // We can't diagnose it immediately because C<T> is an unknown 11329 // specialization. The UsingShadowDecl in D<T> then points directly 11330 // to A::foo, which will look well-formed when we instantiate. 11331 // The right solution is to not collapse the shadow-decl chain. 11332 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) { 11333 DeclContext *OrigDC = Orig->getDeclContext(); 11334 11335 // Handle enums and anonymous structs. 11336 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent(); 11337 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC); 11338 while (OrigRec->isAnonymousStructOrUnion()) 11339 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext()); 11340 11341 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) { 11342 if (OrigDC == CurContext) { 11343 Diag(Using->getLocation(), 11344 diag::err_using_decl_nested_name_specifier_is_current_class) 11345 << Using->getQualifierLoc().getSourceRange(); 11346 Diag(Orig->getLocation(), diag::note_using_decl_target); 11347 Using->setInvalidDecl(); 11348 return true; 11349 } 11350 11351 Diag(Using->getQualifierLoc().getBeginLoc(), 11352 diag::err_using_decl_nested_name_specifier_is_not_base_class) 11353 << Using->getQualifier() 11354 << cast<CXXRecordDecl>(CurContext) 11355 << Using->getQualifierLoc().getSourceRange(); 11356 Diag(Orig->getLocation(), diag::note_using_decl_target); 11357 Using->setInvalidDecl(); 11358 return true; 11359 } 11360 } 11361 11362 if (Previous.empty()) return false; 11363 11364 NamedDecl *Target = Orig; 11365 if (isa<UsingShadowDecl>(Target)) 11366 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 11367 11368 // If the target happens to be one of the previous declarations, we 11369 // don't have a conflict. 11370 // 11371 // FIXME: but we might be increasing its access, in which case we 11372 // should redeclare it. 11373 NamedDecl *NonTag = nullptr, *Tag = nullptr; 11374 bool FoundEquivalentDecl = false; 11375 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 11376 I != E; ++I) { 11377 NamedDecl *D = (*I)->getUnderlyingDecl(); 11378 // We can have UsingDecls in our Previous results because we use the same 11379 // LookupResult for checking whether the UsingDecl itself is a valid 11380 // redeclaration. 11381 if (isa<UsingDecl>(D) || isa<UsingPackDecl>(D)) 11382 continue; 11383 11384 if (auto *RD = dyn_cast<CXXRecordDecl>(D)) { 11385 // C++ [class.mem]p19: 11386 // If T is the name of a class, then [every named member other than 11387 // a non-static data member] shall have a name different from T 11388 if (RD->isInjectedClassName() && !isa<FieldDecl>(Target) && 11389 !isa<IndirectFieldDecl>(Target) && 11390 !isa<UnresolvedUsingValueDecl>(Target) && 11391 DiagnoseClassNameShadow( 11392 CurContext, 11393 DeclarationNameInfo(Using->getDeclName(), Using->getLocation()))) 11394 return true; 11395 } 11396 11397 if (IsEquivalentForUsingDecl(Context, D, Target)) { 11398 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I)) 11399 PrevShadow = Shadow; 11400 FoundEquivalentDecl = true; 11401 } else if (isEquivalentInternalLinkageDeclaration(D, Target)) { 11402 // We don't conflict with an existing using shadow decl of an equivalent 11403 // declaration, but we're not a redeclaration of it. 11404 FoundEquivalentDecl = true; 11405 } 11406 11407 if (isVisible(D)) 11408 (isa<TagDecl>(D) ? Tag : NonTag) = D; 11409 } 11410 11411 if (FoundEquivalentDecl) 11412 return false; 11413 11414 if (FunctionDecl *FD = Target->getAsFunction()) { 11415 NamedDecl *OldDecl = nullptr; 11416 switch (CheckOverload(nullptr, FD, Previous, OldDecl, 11417 /*IsForUsingDecl*/ true)) { 11418 case Ovl_Overload: 11419 return false; 11420 11421 case Ovl_NonFunction: 11422 Diag(Using->getLocation(), diag::err_using_decl_conflict); 11423 break; 11424 11425 // We found a decl with the exact signature. 11426 case Ovl_Match: 11427 // If we're in a record, we want to hide the target, so we 11428 // return true (without a diagnostic) to tell the caller not to 11429 // build a shadow decl. 11430 if (CurContext->isRecord()) 11431 return true; 11432 11433 // If we're not in a record, this is an error. 11434 Diag(Using->getLocation(), diag::err_using_decl_conflict); 11435 break; 11436 } 11437 11438 Diag(Target->getLocation(), diag::note_using_decl_target); 11439 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict); 11440 Using->setInvalidDecl(); 11441 return true; 11442 } 11443 11444 // Target is not a function. 11445 11446 if (isa<TagDecl>(Target)) { 11447 // No conflict between a tag and a non-tag. 11448 if (!Tag) return false; 11449 11450 Diag(Using->getLocation(), diag::err_using_decl_conflict); 11451 Diag(Target->getLocation(), diag::note_using_decl_target); 11452 Diag(Tag->getLocation(), diag::note_using_decl_conflict); 11453 Using->setInvalidDecl(); 11454 return true; 11455 } 11456 11457 // No conflict between a tag and a non-tag. 11458 if (!NonTag) return false; 11459 11460 Diag(Using->getLocation(), diag::err_using_decl_conflict); 11461 Diag(Target->getLocation(), diag::note_using_decl_target); 11462 Diag(NonTag->getLocation(), diag::note_using_decl_conflict); 11463 Using->setInvalidDecl(); 11464 return true; 11465 } 11466 11467 /// Determine whether a direct base class is a virtual base class. 11468 static bool isVirtualDirectBase(CXXRecordDecl *Derived, CXXRecordDecl *Base) { 11469 if (!Derived->getNumVBases()) 11470 return false; 11471 for (auto &B : Derived->bases()) 11472 if (B.getType()->getAsCXXRecordDecl() == Base) 11473 return B.isVirtual(); 11474 llvm_unreachable("not a direct base class"); 11475 } 11476 11477 /// Builds a shadow declaration corresponding to a 'using' declaration. 11478 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S, 11479 UsingDecl *UD, 11480 NamedDecl *Orig, 11481 UsingShadowDecl *PrevDecl) { 11482 // If we resolved to another shadow declaration, just coalesce them. 11483 NamedDecl *Target = Orig; 11484 if (isa<UsingShadowDecl>(Target)) { 11485 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 11486 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration"); 11487 } 11488 11489 NamedDecl *NonTemplateTarget = Target; 11490 if (auto *TargetTD = dyn_cast<TemplateDecl>(Target)) 11491 NonTemplateTarget = TargetTD->getTemplatedDecl(); 11492 11493 UsingShadowDecl *Shadow; 11494 if (NonTemplateTarget && isa<CXXConstructorDecl>(NonTemplateTarget)) { 11495 bool IsVirtualBase = 11496 isVirtualDirectBase(cast<CXXRecordDecl>(CurContext), 11497 UD->getQualifier()->getAsRecordDecl()); 11498 Shadow = ConstructorUsingShadowDecl::Create( 11499 Context, CurContext, UD->getLocation(), UD, Orig, IsVirtualBase); 11500 } else { 11501 Shadow = UsingShadowDecl::Create(Context, CurContext, UD->getLocation(), UD, 11502 Target); 11503 } 11504 UD->addShadowDecl(Shadow); 11505 11506 Shadow->setAccess(UD->getAccess()); 11507 if (Orig->isInvalidDecl() || UD->isInvalidDecl()) 11508 Shadow->setInvalidDecl(); 11509 11510 Shadow->setPreviousDecl(PrevDecl); 11511 11512 if (S) 11513 PushOnScopeChains(Shadow, S); 11514 else 11515 CurContext->addDecl(Shadow); 11516 11517 11518 return Shadow; 11519 } 11520 11521 /// Hides a using shadow declaration. This is required by the current 11522 /// using-decl implementation when a resolvable using declaration in a 11523 /// class is followed by a declaration which would hide or override 11524 /// one or more of the using decl's targets; for example: 11525 /// 11526 /// struct Base { void foo(int); }; 11527 /// struct Derived : Base { 11528 /// using Base::foo; 11529 /// void foo(int); 11530 /// }; 11531 /// 11532 /// The governing language is C++03 [namespace.udecl]p12: 11533 /// 11534 /// When a using-declaration brings names from a base class into a 11535 /// derived class scope, member functions in the derived class 11536 /// override and/or hide member functions with the same name and 11537 /// parameter types in a base class (rather than conflicting). 11538 /// 11539 /// There are two ways to implement this: 11540 /// (1) optimistically create shadow decls when they're not hidden 11541 /// by existing declarations, or 11542 /// (2) don't create any shadow decls (or at least don't make them 11543 /// visible) until we've fully parsed/instantiated the class. 11544 /// The problem with (1) is that we might have to retroactively remove 11545 /// a shadow decl, which requires several O(n) operations because the 11546 /// decl structures are (very reasonably) not designed for removal. 11547 /// (2) avoids this but is very fiddly and phase-dependent. 11548 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { 11549 if (Shadow->getDeclName().getNameKind() == 11550 DeclarationName::CXXConversionFunctionName) 11551 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); 11552 11553 // Remove it from the DeclContext... 11554 Shadow->getDeclContext()->removeDecl(Shadow); 11555 11556 // ...and the scope, if applicable... 11557 if (S) { 11558 S->RemoveDecl(Shadow); 11559 IdResolver.RemoveDecl(Shadow); 11560 } 11561 11562 // ...and the using decl. 11563 Shadow->getUsingDecl()->removeShadowDecl(Shadow); 11564 11565 // TODO: complain somehow if Shadow was used. It shouldn't 11566 // be possible for this to happen, because...? 11567 } 11568 11569 /// Find the base specifier for a base class with the given type. 11570 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived, 11571 QualType DesiredBase, 11572 bool &AnyDependentBases) { 11573 // Check whether the named type is a direct base class. 11574 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified() 11575 .getUnqualifiedType(); 11576 for (auto &Base : Derived->bases()) { 11577 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified(); 11578 if (CanonicalDesiredBase == BaseType) 11579 return &Base; 11580 if (BaseType->isDependentType()) 11581 AnyDependentBases = true; 11582 } 11583 return nullptr; 11584 } 11585 11586 namespace { 11587 class UsingValidatorCCC final : public CorrectionCandidateCallback { 11588 public: 11589 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation, 11590 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf) 11591 : HasTypenameKeyword(HasTypenameKeyword), 11592 IsInstantiation(IsInstantiation), OldNNS(NNS), 11593 RequireMemberOf(RequireMemberOf) {} 11594 11595 bool ValidateCandidate(const TypoCorrection &Candidate) override { 11596 NamedDecl *ND = Candidate.getCorrectionDecl(); 11597 11598 // Keywords are not valid here. 11599 if (!ND || isa<NamespaceDecl>(ND)) 11600 return false; 11601 11602 // Completely unqualified names are invalid for a 'using' declaration. 11603 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier()) 11604 return false; 11605 11606 // FIXME: Don't correct to a name that CheckUsingDeclRedeclaration would 11607 // reject. 11608 11609 if (RequireMemberOf) { 11610 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 11611 if (FoundRecord && FoundRecord->isInjectedClassName()) { 11612 // No-one ever wants a using-declaration to name an injected-class-name 11613 // of a base class, unless they're declaring an inheriting constructor. 11614 ASTContext &Ctx = ND->getASTContext(); 11615 if (!Ctx.getLangOpts().CPlusPlus11) 11616 return false; 11617 QualType FoundType = Ctx.getRecordType(FoundRecord); 11618 11619 // Check that the injected-class-name is named as a member of its own 11620 // type; we don't want to suggest 'using Derived::Base;', since that 11621 // means something else. 11622 NestedNameSpecifier *Specifier = 11623 Candidate.WillReplaceSpecifier() 11624 ? Candidate.getCorrectionSpecifier() 11625 : OldNNS; 11626 if (!Specifier->getAsType() || 11627 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType)) 11628 return false; 11629 11630 // Check that this inheriting constructor declaration actually names a 11631 // direct base class of the current class. 11632 bool AnyDependentBases = false; 11633 if (!findDirectBaseWithType(RequireMemberOf, 11634 Ctx.getRecordType(FoundRecord), 11635 AnyDependentBases) && 11636 !AnyDependentBases) 11637 return false; 11638 } else { 11639 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext()); 11640 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD)) 11641 return false; 11642 11643 // FIXME: Check that the base class member is accessible? 11644 } 11645 } else { 11646 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 11647 if (FoundRecord && FoundRecord->isInjectedClassName()) 11648 return false; 11649 } 11650 11651 if (isa<TypeDecl>(ND)) 11652 return HasTypenameKeyword || !IsInstantiation; 11653 11654 return !HasTypenameKeyword; 11655 } 11656 11657 std::unique_ptr<CorrectionCandidateCallback> clone() override { 11658 return std::make_unique<UsingValidatorCCC>(*this); 11659 } 11660 11661 private: 11662 bool HasTypenameKeyword; 11663 bool IsInstantiation; 11664 NestedNameSpecifier *OldNNS; 11665 CXXRecordDecl *RequireMemberOf; 11666 }; 11667 } // end anonymous namespace 11668 11669 /// Builds a using declaration. 11670 /// 11671 /// \param IsInstantiation - Whether this call arises from an 11672 /// instantiation of an unresolved using declaration. We treat 11673 /// the lookup differently for these declarations. 11674 NamedDecl *Sema::BuildUsingDeclaration( 11675 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, 11676 bool HasTypenameKeyword, SourceLocation TypenameLoc, CXXScopeSpec &SS, 11677 DeclarationNameInfo NameInfo, SourceLocation EllipsisLoc, 11678 const ParsedAttributesView &AttrList, bool IsInstantiation) { 11679 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 11680 SourceLocation IdentLoc = NameInfo.getLoc(); 11681 assert(IdentLoc.isValid() && "Invalid TargetName location."); 11682 11683 // FIXME: We ignore attributes for now. 11684 11685 // For an inheriting constructor declaration, the name of the using 11686 // declaration is the name of a constructor in this class, not in the 11687 // base class. 11688 DeclarationNameInfo UsingName = NameInfo; 11689 if (UsingName.getName().getNameKind() == DeclarationName::CXXConstructorName) 11690 if (auto *RD = dyn_cast<CXXRecordDecl>(CurContext)) 11691 UsingName.setName(Context.DeclarationNames.getCXXConstructorName( 11692 Context.getCanonicalType(Context.getRecordType(RD)))); 11693 11694 // Do the redeclaration lookup in the current scope. 11695 LookupResult Previous(*this, UsingName, LookupUsingDeclName, 11696 ForVisibleRedeclaration); 11697 Previous.setHideTags(false); 11698 if (S) { 11699 LookupName(Previous, S); 11700 11701 // It is really dumb that we have to do this. 11702 LookupResult::Filter F = Previous.makeFilter(); 11703 while (F.hasNext()) { 11704 NamedDecl *D = F.next(); 11705 if (!isDeclInScope(D, CurContext, S)) 11706 F.erase(); 11707 // If we found a local extern declaration that's not ordinarily visible, 11708 // and this declaration is being added to a non-block scope, ignore it. 11709 // We're only checking for scope conflicts here, not also for violations 11710 // of the linkage rules. 11711 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() && 11712 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary)) 11713 F.erase(); 11714 } 11715 F.done(); 11716 } else { 11717 assert(IsInstantiation && "no scope in non-instantiation"); 11718 if (CurContext->isRecord()) 11719 LookupQualifiedName(Previous, CurContext); 11720 else { 11721 // No redeclaration check is needed here; in non-member contexts we 11722 // diagnosed all possible conflicts with other using-declarations when 11723 // building the template: 11724 // 11725 // For a dependent non-type using declaration, the only valid case is 11726 // if we instantiate to a single enumerator. We check for conflicts 11727 // between shadow declarations we introduce, and we check in the template 11728 // definition for conflicts between a non-type using declaration and any 11729 // other declaration, which together covers all cases. 11730 // 11731 // A dependent typename using declaration will never successfully 11732 // instantiate, since it will always name a class member, so we reject 11733 // that in the template definition. 11734 } 11735 } 11736 11737 // Check for invalid redeclarations. 11738 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, 11739 SS, IdentLoc, Previous)) 11740 return nullptr; 11741 11742 // Check for bad qualifiers. 11743 if (CheckUsingDeclQualifier(UsingLoc, HasTypenameKeyword, SS, NameInfo, 11744 IdentLoc)) 11745 return nullptr; 11746 11747 DeclContext *LookupContext = computeDeclContext(SS); 11748 NamedDecl *D; 11749 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 11750 if (!LookupContext || EllipsisLoc.isValid()) { 11751 if (HasTypenameKeyword) { 11752 // FIXME: not all declaration name kinds are legal here 11753 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, 11754 UsingLoc, TypenameLoc, 11755 QualifierLoc, 11756 IdentLoc, NameInfo.getName(), 11757 EllipsisLoc); 11758 } else { 11759 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, 11760 QualifierLoc, NameInfo, EllipsisLoc); 11761 } 11762 D->setAccess(AS); 11763 CurContext->addDecl(D); 11764 return D; 11765 } 11766 11767 auto Build = [&](bool Invalid) { 11768 UsingDecl *UD = 11769 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, 11770 UsingName, HasTypenameKeyword); 11771 UD->setAccess(AS); 11772 CurContext->addDecl(UD); 11773 UD->setInvalidDecl(Invalid); 11774 return UD; 11775 }; 11776 auto BuildInvalid = [&]{ return Build(true); }; 11777 auto BuildValid = [&]{ return Build(false); }; 11778 11779 if (RequireCompleteDeclContext(SS, LookupContext)) 11780 return BuildInvalid(); 11781 11782 // Look up the target name. 11783 LookupResult R(*this, NameInfo, LookupOrdinaryName); 11784 11785 // Unlike most lookups, we don't always want to hide tag 11786 // declarations: tag names are visible through the using declaration 11787 // even if hidden by ordinary names, *except* in a dependent context 11788 // where it's important for the sanity of two-phase lookup. 11789 if (!IsInstantiation) 11790 R.setHideTags(false); 11791 11792 // For the purposes of this lookup, we have a base object type 11793 // equal to that of the current context. 11794 if (CurContext->isRecord()) { 11795 R.setBaseObjectType( 11796 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext))); 11797 } 11798 11799 LookupQualifiedName(R, LookupContext); 11800 11801 // Try to correct typos if possible. If constructor name lookup finds no 11802 // results, that means the named class has no explicit constructors, and we 11803 // suppressed declaring implicit ones (probably because it's dependent or 11804 // invalid). 11805 if (R.empty() && 11806 NameInfo.getName().getNameKind() != DeclarationName::CXXConstructorName) { 11807 // HACK: Work around a bug in libstdc++'s detection of ::gets. Sometimes 11808 // it will believe that glibc provides a ::gets in cases where it does not, 11809 // and will try to pull it into namespace std with a using-declaration. 11810 // Just ignore the using-declaration in that case. 11811 auto *II = NameInfo.getName().getAsIdentifierInfo(); 11812 if (getLangOpts().CPlusPlus14 && II && II->isStr("gets") && 11813 CurContext->isStdNamespace() && 11814 isa<TranslationUnitDecl>(LookupContext) && 11815 getSourceManager().isInSystemHeader(UsingLoc)) 11816 return nullptr; 11817 UsingValidatorCCC CCC(HasTypenameKeyword, IsInstantiation, SS.getScopeRep(), 11818 dyn_cast<CXXRecordDecl>(CurContext)); 11819 if (TypoCorrection Corrected = 11820 CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, &SS, CCC, 11821 CTK_ErrorRecovery)) { 11822 // We reject candidates where DroppedSpecifier == true, hence the 11823 // literal '0' below. 11824 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 11825 << NameInfo.getName() << LookupContext << 0 11826 << SS.getRange()); 11827 11828 // If we picked a correction with no attached Decl we can't do anything 11829 // useful with it, bail out. 11830 NamedDecl *ND = Corrected.getCorrectionDecl(); 11831 if (!ND) 11832 return BuildInvalid(); 11833 11834 // If we corrected to an inheriting constructor, handle it as one. 11835 auto *RD = dyn_cast<CXXRecordDecl>(ND); 11836 if (RD && RD->isInjectedClassName()) { 11837 // The parent of the injected class name is the class itself. 11838 RD = cast<CXXRecordDecl>(RD->getParent()); 11839 11840 // Fix up the information we'll use to build the using declaration. 11841 if (Corrected.WillReplaceSpecifier()) { 11842 NestedNameSpecifierLocBuilder Builder; 11843 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 11844 QualifierLoc.getSourceRange()); 11845 QualifierLoc = Builder.getWithLocInContext(Context); 11846 } 11847 11848 // In this case, the name we introduce is the name of a derived class 11849 // constructor. 11850 auto *CurClass = cast<CXXRecordDecl>(CurContext); 11851 UsingName.setName(Context.DeclarationNames.getCXXConstructorName( 11852 Context.getCanonicalType(Context.getRecordType(CurClass)))); 11853 UsingName.setNamedTypeInfo(nullptr); 11854 for (auto *Ctor : LookupConstructors(RD)) 11855 R.addDecl(Ctor); 11856 R.resolveKind(); 11857 } else { 11858 // FIXME: Pick up all the declarations if we found an overloaded 11859 // function. 11860 UsingName.setName(ND->getDeclName()); 11861 R.addDecl(ND); 11862 } 11863 } else { 11864 Diag(IdentLoc, diag::err_no_member) 11865 << NameInfo.getName() << LookupContext << SS.getRange(); 11866 return BuildInvalid(); 11867 } 11868 } 11869 11870 if (R.isAmbiguous()) 11871 return BuildInvalid(); 11872 11873 if (HasTypenameKeyword) { 11874 // If we asked for a typename and got a non-type decl, error out. 11875 if (!R.getAsSingle<TypeDecl>()) { 11876 Diag(IdentLoc, diag::err_using_typename_non_type); 11877 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 11878 Diag((*I)->getUnderlyingDecl()->getLocation(), 11879 diag::note_using_decl_target); 11880 return BuildInvalid(); 11881 } 11882 } else { 11883 // If we asked for a non-typename and we got a type, error out, 11884 // but only if this is an instantiation of an unresolved using 11885 // decl. Otherwise just silently find the type name. 11886 if (IsInstantiation && R.getAsSingle<TypeDecl>()) { 11887 Diag(IdentLoc, diag::err_using_dependent_value_is_type); 11888 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target); 11889 return BuildInvalid(); 11890 } 11891 } 11892 11893 // C++14 [namespace.udecl]p6: 11894 // A using-declaration shall not name a namespace. 11895 if (R.getAsSingle<NamespaceDecl>()) { 11896 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace) 11897 << SS.getRange(); 11898 return BuildInvalid(); 11899 } 11900 11901 // C++14 [namespace.udecl]p7: 11902 // A using-declaration shall not name a scoped enumerator. 11903 if (auto *ED = R.getAsSingle<EnumConstantDecl>()) { 11904 if (cast<EnumDecl>(ED->getDeclContext())->isScoped()) { 11905 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_scoped_enum) 11906 << SS.getRange(); 11907 return BuildInvalid(); 11908 } 11909 } 11910 11911 UsingDecl *UD = BuildValid(); 11912 11913 // Some additional rules apply to inheriting constructors. 11914 if (UsingName.getName().getNameKind() == 11915 DeclarationName::CXXConstructorName) { 11916 // Suppress access diagnostics; the access check is instead performed at the 11917 // point of use for an inheriting constructor. 11918 R.suppressDiagnostics(); 11919 if (CheckInheritingConstructorUsingDecl(UD)) 11920 return UD; 11921 } 11922 11923 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 11924 UsingShadowDecl *PrevDecl = nullptr; 11925 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl)) 11926 BuildUsingShadowDecl(S, UD, *I, PrevDecl); 11927 } 11928 11929 return UD; 11930 } 11931 11932 NamedDecl *Sema::BuildUsingPackDecl(NamedDecl *InstantiatedFrom, 11933 ArrayRef<NamedDecl *> Expansions) { 11934 assert(isa<UnresolvedUsingValueDecl>(InstantiatedFrom) || 11935 isa<UnresolvedUsingTypenameDecl>(InstantiatedFrom) || 11936 isa<UsingPackDecl>(InstantiatedFrom)); 11937 11938 auto *UPD = 11939 UsingPackDecl::Create(Context, CurContext, InstantiatedFrom, Expansions); 11940 UPD->setAccess(InstantiatedFrom->getAccess()); 11941 CurContext->addDecl(UPD); 11942 return UPD; 11943 } 11944 11945 /// Additional checks for a using declaration referring to a constructor name. 11946 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) { 11947 assert(!UD->hasTypename() && "expecting a constructor name"); 11948 11949 const Type *SourceType = UD->getQualifier()->getAsType(); 11950 assert(SourceType && 11951 "Using decl naming constructor doesn't have type in scope spec."); 11952 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext); 11953 11954 // Check whether the named type is a direct base class. 11955 bool AnyDependentBases = false; 11956 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), 11957 AnyDependentBases); 11958 if (!Base && !AnyDependentBases) { 11959 Diag(UD->getUsingLoc(), 11960 diag::err_using_decl_constructor_not_in_direct_base) 11961 << UD->getNameInfo().getSourceRange() 11962 << QualType(SourceType, 0) << TargetClass; 11963 UD->setInvalidDecl(); 11964 return true; 11965 } 11966 11967 if (Base) 11968 Base->setInheritConstructors(); 11969 11970 return false; 11971 } 11972 11973 /// Checks that the given using declaration is not an invalid 11974 /// redeclaration. Note that this is checking only for the using decl 11975 /// itself, not for any ill-formedness among the UsingShadowDecls. 11976 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc, 11977 bool HasTypenameKeyword, 11978 const CXXScopeSpec &SS, 11979 SourceLocation NameLoc, 11980 const LookupResult &Prev) { 11981 NestedNameSpecifier *Qual = SS.getScopeRep(); 11982 11983 // C++03 [namespace.udecl]p8: 11984 // C++0x [namespace.udecl]p10: 11985 // A using-declaration is a declaration and can therefore be used 11986 // repeatedly where (and only where) multiple declarations are 11987 // allowed. 11988 // 11989 // That's in non-member contexts. 11990 if (!CurContext->getRedeclContext()->isRecord()) { 11991 // A dependent qualifier outside a class can only ever resolve to an 11992 // enumeration type. Therefore it conflicts with any other non-type 11993 // declaration in the same scope. 11994 // FIXME: How should we check for dependent type-type conflicts at block 11995 // scope? 11996 if (Qual->isDependent() && !HasTypenameKeyword) { 11997 for (auto *D : Prev) { 11998 if (!isa<TypeDecl>(D) && !isa<UsingDecl>(D) && !isa<UsingPackDecl>(D)) { 11999 bool OldCouldBeEnumerator = 12000 isa<UnresolvedUsingValueDecl>(D) || isa<EnumConstantDecl>(D); 12001 Diag(NameLoc, 12002 OldCouldBeEnumerator ? diag::err_redefinition 12003 : diag::err_redefinition_different_kind) 12004 << Prev.getLookupName(); 12005 Diag(D->getLocation(), diag::note_previous_definition); 12006 return true; 12007 } 12008 } 12009 } 12010 return false; 12011 } 12012 12013 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) { 12014 NamedDecl *D = *I; 12015 12016 bool DTypename; 12017 NestedNameSpecifier *DQual; 12018 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { 12019 DTypename = UD->hasTypename(); 12020 DQual = UD->getQualifier(); 12021 } else if (UnresolvedUsingValueDecl *UD 12022 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 12023 DTypename = false; 12024 DQual = UD->getQualifier(); 12025 } else if (UnresolvedUsingTypenameDecl *UD 12026 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 12027 DTypename = true; 12028 DQual = UD->getQualifier(); 12029 } else continue; 12030 12031 // using decls differ if one says 'typename' and the other doesn't. 12032 // FIXME: non-dependent using decls? 12033 if (HasTypenameKeyword != DTypename) continue; 12034 12035 // using decls differ if they name different scopes (but note that 12036 // template instantiation can cause this check to trigger when it 12037 // didn't before instantiation). 12038 if (Context.getCanonicalNestedNameSpecifier(Qual) != 12039 Context.getCanonicalNestedNameSpecifier(DQual)) 12040 continue; 12041 12042 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange(); 12043 Diag(D->getLocation(), diag::note_using_decl) << 1; 12044 return true; 12045 } 12046 12047 return false; 12048 } 12049 12050 12051 /// Checks that the given nested-name qualifier used in a using decl 12052 /// in the current context is appropriately related to the current 12053 /// scope. If an error is found, diagnoses it and returns true. 12054 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc, 12055 bool HasTypename, 12056 const CXXScopeSpec &SS, 12057 const DeclarationNameInfo &NameInfo, 12058 SourceLocation NameLoc) { 12059 DeclContext *NamedContext = computeDeclContext(SS); 12060 12061 if (!CurContext->isRecord()) { 12062 // C++03 [namespace.udecl]p3: 12063 // C++0x [namespace.udecl]p8: 12064 // A using-declaration for a class member shall be a member-declaration. 12065 12066 // If we weren't able to compute a valid scope, it might validly be a 12067 // dependent class scope or a dependent enumeration unscoped scope. If 12068 // we have a 'typename' keyword, the scope must resolve to a class type. 12069 if ((HasTypename && !NamedContext) || 12070 (NamedContext && NamedContext->getRedeclContext()->isRecord())) { 12071 auto *RD = NamedContext 12072 ? cast<CXXRecordDecl>(NamedContext->getRedeclContext()) 12073 : nullptr; 12074 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD)) 12075 RD = nullptr; 12076 12077 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member) 12078 << SS.getRange(); 12079 12080 // If we have a complete, non-dependent source type, try to suggest a 12081 // way to get the same effect. 12082 if (!RD) 12083 return true; 12084 12085 // Find what this using-declaration was referring to. 12086 LookupResult R(*this, NameInfo, LookupOrdinaryName); 12087 R.setHideTags(false); 12088 R.suppressDiagnostics(); 12089 LookupQualifiedName(R, RD); 12090 12091 if (R.getAsSingle<TypeDecl>()) { 12092 if (getLangOpts().CPlusPlus11) { 12093 // Convert 'using X::Y;' to 'using Y = X::Y;'. 12094 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround) 12095 << 0 // alias declaration 12096 << FixItHint::CreateInsertion(SS.getBeginLoc(), 12097 NameInfo.getName().getAsString() + 12098 " = "); 12099 } else { 12100 // Convert 'using X::Y;' to 'typedef X::Y Y;'. 12101 SourceLocation InsertLoc = getLocForEndOfToken(NameInfo.getEndLoc()); 12102 Diag(InsertLoc, diag::note_using_decl_class_member_workaround) 12103 << 1 // typedef declaration 12104 << FixItHint::CreateReplacement(UsingLoc, "typedef") 12105 << FixItHint::CreateInsertion( 12106 InsertLoc, " " + NameInfo.getName().getAsString()); 12107 } 12108 } else if (R.getAsSingle<VarDecl>()) { 12109 // Don't provide a fixit outside C++11 mode; we don't want to suggest 12110 // repeating the type of the static data member here. 12111 FixItHint FixIt; 12112 if (getLangOpts().CPlusPlus11) { 12113 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 12114 FixIt = FixItHint::CreateReplacement( 12115 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = "); 12116 } 12117 12118 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 12119 << 2 // reference declaration 12120 << FixIt; 12121 } else if (R.getAsSingle<EnumConstantDecl>()) { 12122 // Don't provide a fixit outside C++11 mode; we don't want to suggest 12123 // repeating the type of the enumeration here, and we can't do so if 12124 // the type is anonymous. 12125 FixItHint FixIt; 12126 if (getLangOpts().CPlusPlus11) { 12127 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 12128 FixIt = FixItHint::CreateReplacement( 12129 UsingLoc, 12130 "constexpr auto " + NameInfo.getName().getAsString() + " = "); 12131 } 12132 12133 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 12134 << (getLangOpts().CPlusPlus11 ? 4 : 3) // const[expr] variable 12135 << FixIt; 12136 } 12137 return true; 12138 } 12139 12140 // Otherwise, this might be valid. 12141 return false; 12142 } 12143 12144 // The current scope is a record. 12145 12146 // If the named context is dependent, we can't decide much. 12147 if (!NamedContext) { 12148 // FIXME: in C++0x, we can diagnose if we can prove that the 12149 // nested-name-specifier does not refer to a base class, which is 12150 // still possible in some cases. 12151 12152 // Otherwise we have to conservatively report that things might be 12153 // okay. 12154 return false; 12155 } 12156 12157 if (!NamedContext->isRecord()) { 12158 // Ideally this would point at the last name in the specifier, 12159 // but we don't have that level of source info. 12160 Diag(SS.getRange().getBegin(), 12161 diag::err_using_decl_nested_name_specifier_is_not_class) 12162 << SS.getScopeRep() << SS.getRange(); 12163 return true; 12164 } 12165 12166 if (!NamedContext->isDependentContext() && 12167 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext)) 12168 return true; 12169 12170 if (getLangOpts().CPlusPlus11) { 12171 // C++11 [namespace.udecl]p3: 12172 // In a using-declaration used as a member-declaration, the 12173 // nested-name-specifier shall name a base class of the class 12174 // being defined. 12175 12176 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom( 12177 cast<CXXRecordDecl>(NamedContext))) { 12178 if (CurContext == NamedContext) { 12179 Diag(NameLoc, 12180 diag::err_using_decl_nested_name_specifier_is_current_class) 12181 << SS.getRange(); 12182 return true; 12183 } 12184 12185 if (!cast<CXXRecordDecl>(NamedContext)->isInvalidDecl()) { 12186 Diag(SS.getRange().getBegin(), 12187 diag::err_using_decl_nested_name_specifier_is_not_base_class) 12188 << SS.getScopeRep() 12189 << cast<CXXRecordDecl>(CurContext) 12190 << SS.getRange(); 12191 } 12192 return true; 12193 } 12194 12195 return false; 12196 } 12197 12198 // C++03 [namespace.udecl]p4: 12199 // A using-declaration used as a member-declaration shall refer 12200 // to a member of a base class of the class being defined [etc.]. 12201 12202 // Salient point: SS doesn't have to name a base class as long as 12203 // lookup only finds members from base classes. Therefore we can 12204 // diagnose here only if we can prove that that can't happen, 12205 // i.e. if the class hierarchies provably don't intersect. 12206 12207 // TODO: it would be nice if "definitely valid" results were cached 12208 // in the UsingDecl and UsingShadowDecl so that these checks didn't 12209 // need to be repeated. 12210 12211 llvm::SmallPtrSet<const CXXRecordDecl *, 4> Bases; 12212 auto Collect = [&Bases](const CXXRecordDecl *Base) { 12213 Bases.insert(Base); 12214 return true; 12215 }; 12216 12217 // Collect all bases. Return false if we find a dependent base. 12218 if (!cast<CXXRecordDecl>(CurContext)->forallBases(Collect)) 12219 return false; 12220 12221 // Returns true if the base is dependent or is one of the accumulated base 12222 // classes. 12223 auto IsNotBase = [&Bases](const CXXRecordDecl *Base) { 12224 return !Bases.count(Base); 12225 }; 12226 12227 // Return false if the class has a dependent base or if it or one 12228 // of its bases is present in the base set of the current context. 12229 if (Bases.count(cast<CXXRecordDecl>(NamedContext)) || 12230 !cast<CXXRecordDecl>(NamedContext)->forallBases(IsNotBase)) 12231 return false; 12232 12233 Diag(SS.getRange().getBegin(), 12234 diag::err_using_decl_nested_name_specifier_is_not_base_class) 12235 << SS.getScopeRep() 12236 << cast<CXXRecordDecl>(CurContext) 12237 << SS.getRange(); 12238 12239 return true; 12240 } 12241 12242 Decl *Sema::ActOnAliasDeclaration(Scope *S, AccessSpecifier AS, 12243 MultiTemplateParamsArg TemplateParamLists, 12244 SourceLocation UsingLoc, UnqualifiedId &Name, 12245 const ParsedAttributesView &AttrList, 12246 TypeResult Type, Decl *DeclFromDeclSpec) { 12247 // Skip up to the relevant declaration scope. 12248 while (S->isTemplateParamScope()) 12249 S = S->getParent(); 12250 assert((S->getFlags() & Scope::DeclScope) && 12251 "got alias-declaration outside of declaration scope"); 12252 12253 if (Type.isInvalid()) 12254 return nullptr; 12255 12256 bool Invalid = false; 12257 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name); 12258 TypeSourceInfo *TInfo = nullptr; 12259 GetTypeFromParser(Type.get(), &TInfo); 12260 12261 if (DiagnoseClassNameShadow(CurContext, NameInfo)) 12262 return nullptr; 12263 12264 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo, 12265 UPPC_DeclarationType)) { 12266 Invalid = true; 12267 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 12268 TInfo->getTypeLoc().getBeginLoc()); 12269 } 12270 12271 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 12272 TemplateParamLists.size() 12273 ? forRedeclarationInCurContext() 12274 : ForVisibleRedeclaration); 12275 LookupName(Previous, S); 12276 12277 // Warn about shadowing the name of a template parameter. 12278 if (Previous.isSingleResult() && 12279 Previous.getFoundDecl()->isTemplateParameter()) { 12280 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl()); 12281 Previous.clear(); 12282 } 12283 12284 assert(Name.Kind == UnqualifiedIdKind::IK_Identifier && 12285 "name in alias declaration must be an identifier"); 12286 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc, 12287 Name.StartLocation, 12288 Name.Identifier, TInfo); 12289 12290 NewTD->setAccess(AS); 12291 12292 if (Invalid) 12293 NewTD->setInvalidDecl(); 12294 12295 ProcessDeclAttributeList(S, NewTD, AttrList); 12296 AddPragmaAttributes(S, NewTD); 12297 12298 CheckTypedefForVariablyModifiedType(S, NewTD); 12299 Invalid |= NewTD->isInvalidDecl(); 12300 12301 bool Redeclaration = false; 12302 12303 NamedDecl *NewND; 12304 if (TemplateParamLists.size()) { 12305 TypeAliasTemplateDecl *OldDecl = nullptr; 12306 TemplateParameterList *OldTemplateParams = nullptr; 12307 12308 if (TemplateParamLists.size() != 1) { 12309 Diag(UsingLoc, diag::err_alias_template_extra_headers) 12310 << SourceRange(TemplateParamLists[1]->getTemplateLoc(), 12311 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc()); 12312 } 12313 TemplateParameterList *TemplateParams = TemplateParamLists[0]; 12314 12315 // Check that we can declare a template here. 12316 if (CheckTemplateDeclScope(S, TemplateParams)) 12317 return nullptr; 12318 12319 // Only consider previous declarations in the same scope. 12320 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false, 12321 /*ExplicitInstantiationOrSpecialization*/false); 12322 if (!Previous.empty()) { 12323 Redeclaration = true; 12324 12325 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>(); 12326 if (!OldDecl && !Invalid) { 12327 Diag(UsingLoc, diag::err_redefinition_different_kind) 12328 << Name.Identifier; 12329 12330 NamedDecl *OldD = Previous.getRepresentativeDecl(); 12331 if (OldD->getLocation().isValid()) 12332 Diag(OldD->getLocation(), diag::note_previous_definition); 12333 12334 Invalid = true; 12335 } 12336 12337 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) { 12338 if (TemplateParameterListsAreEqual(TemplateParams, 12339 OldDecl->getTemplateParameters(), 12340 /*Complain=*/true, 12341 TPL_TemplateMatch)) 12342 OldTemplateParams = 12343 OldDecl->getMostRecentDecl()->getTemplateParameters(); 12344 else 12345 Invalid = true; 12346 12347 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl(); 12348 if (!Invalid && 12349 !Context.hasSameType(OldTD->getUnderlyingType(), 12350 NewTD->getUnderlyingType())) { 12351 // FIXME: The C++0x standard does not clearly say this is ill-formed, 12352 // but we can't reasonably accept it. 12353 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef) 12354 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType(); 12355 if (OldTD->getLocation().isValid()) 12356 Diag(OldTD->getLocation(), diag::note_previous_definition); 12357 Invalid = true; 12358 } 12359 } 12360 } 12361 12362 // Merge any previous default template arguments into our parameters, 12363 // and check the parameter list. 12364 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams, 12365 TPC_TypeAliasTemplate)) 12366 return nullptr; 12367 12368 TypeAliasTemplateDecl *NewDecl = 12369 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc, 12370 Name.Identifier, TemplateParams, 12371 NewTD); 12372 NewTD->setDescribedAliasTemplate(NewDecl); 12373 12374 NewDecl->setAccess(AS); 12375 12376 if (Invalid) 12377 NewDecl->setInvalidDecl(); 12378 else if (OldDecl) { 12379 NewDecl->setPreviousDecl(OldDecl); 12380 CheckRedeclarationModuleOwnership(NewDecl, OldDecl); 12381 } 12382 12383 NewND = NewDecl; 12384 } else { 12385 if (auto *TD = dyn_cast_or_null<TagDecl>(DeclFromDeclSpec)) { 12386 setTagNameForLinkagePurposes(TD, NewTD); 12387 handleTagNumbering(TD, S); 12388 } 12389 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration); 12390 NewND = NewTD; 12391 } 12392 12393 PushOnScopeChains(NewND, S); 12394 ActOnDocumentableDecl(NewND); 12395 return NewND; 12396 } 12397 12398 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, 12399 SourceLocation AliasLoc, 12400 IdentifierInfo *Alias, CXXScopeSpec &SS, 12401 SourceLocation IdentLoc, 12402 IdentifierInfo *Ident) { 12403 12404 // Lookup the namespace name. 12405 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName); 12406 LookupParsedName(R, S, &SS); 12407 12408 if (R.isAmbiguous()) 12409 return nullptr; 12410 12411 if (R.empty()) { 12412 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) { 12413 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 12414 return nullptr; 12415 } 12416 } 12417 assert(!R.isAmbiguous() && !R.empty()); 12418 NamedDecl *ND = R.getRepresentativeDecl(); 12419 12420 // Check if we have a previous declaration with the same name. 12421 LookupResult PrevR(*this, Alias, AliasLoc, LookupOrdinaryName, 12422 ForVisibleRedeclaration); 12423 LookupName(PrevR, S); 12424 12425 // Check we're not shadowing a template parameter. 12426 if (PrevR.isSingleResult() && PrevR.getFoundDecl()->isTemplateParameter()) { 12427 DiagnoseTemplateParameterShadow(AliasLoc, PrevR.getFoundDecl()); 12428 PrevR.clear(); 12429 } 12430 12431 // Filter out any other lookup result from an enclosing scope. 12432 FilterLookupForScope(PrevR, CurContext, S, /*ConsiderLinkage*/false, 12433 /*AllowInlineNamespace*/false); 12434 12435 // Find the previous declaration and check that we can redeclare it. 12436 NamespaceAliasDecl *Prev = nullptr; 12437 if (PrevR.isSingleResult()) { 12438 NamedDecl *PrevDecl = PrevR.getRepresentativeDecl(); 12439 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) { 12440 // We already have an alias with the same name that points to the same 12441 // namespace; check that it matches. 12442 if (AD->getNamespace()->Equals(getNamespaceDecl(ND))) { 12443 Prev = AD; 12444 } else if (isVisible(PrevDecl)) { 12445 Diag(AliasLoc, diag::err_redefinition_different_namespace_alias) 12446 << Alias; 12447 Diag(AD->getLocation(), diag::note_previous_namespace_alias) 12448 << AD->getNamespace(); 12449 return nullptr; 12450 } 12451 } else if (isVisible(PrevDecl)) { 12452 unsigned DiagID = isa<NamespaceDecl>(PrevDecl->getUnderlyingDecl()) 12453 ? diag::err_redefinition 12454 : diag::err_redefinition_different_kind; 12455 Diag(AliasLoc, DiagID) << Alias; 12456 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 12457 return nullptr; 12458 } 12459 } 12460 12461 // The use of a nested name specifier may trigger deprecation warnings. 12462 DiagnoseUseOfDecl(ND, IdentLoc); 12463 12464 NamespaceAliasDecl *AliasDecl = 12465 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc, 12466 Alias, SS.getWithLocInContext(Context), 12467 IdentLoc, ND); 12468 if (Prev) 12469 AliasDecl->setPreviousDecl(Prev); 12470 12471 PushOnScopeChains(AliasDecl, S); 12472 return AliasDecl; 12473 } 12474 12475 namespace { 12476 struct SpecialMemberExceptionSpecInfo 12477 : SpecialMemberVisitor<SpecialMemberExceptionSpecInfo> { 12478 SourceLocation Loc; 12479 Sema::ImplicitExceptionSpecification ExceptSpec; 12480 12481 SpecialMemberExceptionSpecInfo(Sema &S, CXXMethodDecl *MD, 12482 Sema::CXXSpecialMember CSM, 12483 Sema::InheritedConstructorInfo *ICI, 12484 SourceLocation Loc) 12485 : SpecialMemberVisitor(S, MD, CSM, ICI), Loc(Loc), ExceptSpec(S) {} 12486 12487 bool visitBase(CXXBaseSpecifier *Base); 12488 bool visitField(FieldDecl *FD); 12489 12490 void visitClassSubobject(CXXRecordDecl *Class, Subobject Subobj, 12491 unsigned Quals); 12492 12493 void visitSubobjectCall(Subobject Subobj, 12494 Sema::SpecialMemberOverloadResult SMOR); 12495 }; 12496 } 12497 12498 bool SpecialMemberExceptionSpecInfo::visitBase(CXXBaseSpecifier *Base) { 12499 auto *RT = Base->getType()->getAs<RecordType>(); 12500 if (!RT) 12501 return false; 12502 12503 auto *BaseClass = cast<CXXRecordDecl>(RT->getDecl()); 12504 Sema::SpecialMemberOverloadResult SMOR = lookupInheritedCtor(BaseClass); 12505 if (auto *BaseCtor = SMOR.getMethod()) { 12506 visitSubobjectCall(Base, BaseCtor); 12507 return false; 12508 } 12509 12510 visitClassSubobject(BaseClass, Base, 0); 12511 return false; 12512 } 12513 12514 bool SpecialMemberExceptionSpecInfo::visitField(FieldDecl *FD) { 12515 if (CSM == Sema::CXXDefaultConstructor && FD->hasInClassInitializer()) { 12516 Expr *E = FD->getInClassInitializer(); 12517 if (!E) 12518 // FIXME: It's a little wasteful to build and throw away a 12519 // CXXDefaultInitExpr here. 12520 // FIXME: We should have a single context note pointing at Loc, and 12521 // this location should be MD->getLocation() instead, since that's 12522 // the location where we actually use the default init expression. 12523 E = S.BuildCXXDefaultInitExpr(Loc, FD).get(); 12524 if (E) 12525 ExceptSpec.CalledExpr(E); 12526 } else if (auto *RT = S.Context.getBaseElementType(FD->getType()) 12527 ->getAs<RecordType>()) { 12528 visitClassSubobject(cast<CXXRecordDecl>(RT->getDecl()), FD, 12529 FD->getType().getCVRQualifiers()); 12530 } 12531 return false; 12532 } 12533 12534 void SpecialMemberExceptionSpecInfo::visitClassSubobject(CXXRecordDecl *Class, 12535 Subobject Subobj, 12536 unsigned Quals) { 12537 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 12538 bool IsMutable = Field && Field->isMutable(); 12539 visitSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable)); 12540 } 12541 12542 void SpecialMemberExceptionSpecInfo::visitSubobjectCall( 12543 Subobject Subobj, Sema::SpecialMemberOverloadResult SMOR) { 12544 // Note, if lookup fails, it doesn't matter what exception specification we 12545 // choose because the special member will be deleted. 12546 if (CXXMethodDecl *MD = SMOR.getMethod()) 12547 ExceptSpec.CalledDecl(getSubobjectLoc(Subobj), MD); 12548 } 12549 12550 bool Sema::tryResolveExplicitSpecifier(ExplicitSpecifier &ExplicitSpec) { 12551 llvm::APSInt Result; 12552 ExprResult Converted = CheckConvertedConstantExpression( 12553 ExplicitSpec.getExpr(), Context.BoolTy, Result, CCEK_ExplicitBool); 12554 ExplicitSpec.setExpr(Converted.get()); 12555 if (Converted.isUsable() && !Converted.get()->isValueDependent()) { 12556 ExplicitSpec.setKind(Result.getBoolValue() 12557 ? ExplicitSpecKind::ResolvedTrue 12558 : ExplicitSpecKind::ResolvedFalse); 12559 return true; 12560 } 12561 ExplicitSpec.setKind(ExplicitSpecKind::Unresolved); 12562 return false; 12563 } 12564 12565 ExplicitSpecifier Sema::ActOnExplicitBoolSpecifier(Expr *ExplicitExpr) { 12566 ExplicitSpecifier ES(ExplicitExpr, ExplicitSpecKind::Unresolved); 12567 if (!ExplicitExpr->isTypeDependent()) 12568 tryResolveExplicitSpecifier(ES); 12569 return ES; 12570 } 12571 12572 static Sema::ImplicitExceptionSpecification 12573 ComputeDefaultedSpecialMemberExceptionSpec( 12574 Sema &S, SourceLocation Loc, CXXMethodDecl *MD, Sema::CXXSpecialMember CSM, 12575 Sema::InheritedConstructorInfo *ICI) { 12576 ComputingExceptionSpec CES(S, MD, Loc); 12577 12578 CXXRecordDecl *ClassDecl = MD->getParent(); 12579 12580 // C++ [except.spec]p14: 12581 // An implicitly declared special member function (Clause 12) shall have an 12582 // exception-specification. [...] 12583 SpecialMemberExceptionSpecInfo Info(S, MD, CSM, ICI, MD->getLocation()); 12584 if (ClassDecl->isInvalidDecl()) 12585 return Info.ExceptSpec; 12586 12587 // FIXME: If this diagnostic fires, we're probably missing a check for 12588 // attempting to resolve an exception specification before it's known 12589 // at a higher level. 12590 if (S.RequireCompleteType(MD->getLocation(), 12591 S.Context.getRecordType(ClassDecl), 12592 diag::err_exception_spec_incomplete_type)) 12593 return Info.ExceptSpec; 12594 12595 // C++1z [except.spec]p7: 12596 // [Look for exceptions thrown by] a constructor selected [...] to 12597 // initialize a potentially constructed subobject, 12598 // C++1z [except.spec]p8: 12599 // The exception specification for an implicitly-declared destructor, or a 12600 // destructor without a noexcept-specifier, is potentially-throwing if and 12601 // only if any of the destructors for any of its potentially constructed 12602 // subojects is potentially throwing. 12603 // FIXME: We respect the first rule but ignore the "potentially constructed" 12604 // in the second rule to resolve a core issue (no number yet) that would have 12605 // us reject: 12606 // struct A { virtual void f() = 0; virtual ~A() noexcept(false) = 0; }; 12607 // struct B : A {}; 12608 // struct C : B { void f(); }; 12609 // ... due to giving B::~B() a non-throwing exception specification. 12610 Info.visit(Info.IsConstructor ? Info.VisitPotentiallyConstructedBases 12611 : Info.VisitAllBases); 12612 12613 return Info.ExceptSpec; 12614 } 12615 12616 namespace { 12617 /// RAII object to register a special member as being currently declared. 12618 struct DeclaringSpecialMember { 12619 Sema &S; 12620 Sema::SpecialMemberDecl D; 12621 Sema::ContextRAII SavedContext; 12622 bool WasAlreadyBeingDeclared; 12623 12624 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM) 12625 : S(S), D(RD, CSM), SavedContext(S, RD) { 12626 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second; 12627 if (WasAlreadyBeingDeclared) 12628 // This almost never happens, but if it does, ensure that our cache 12629 // doesn't contain a stale result. 12630 S.SpecialMemberCache.clear(); 12631 else { 12632 // Register a note to be produced if we encounter an error while 12633 // declaring the special member. 12634 Sema::CodeSynthesisContext Ctx; 12635 Ctx.Kind = Sema::CodeSynthesisContext::DeclaringSpecialMember; 12636 // FIXME: We don't have a location to use here. Using the class's 12637 // location maintains the fiction that we declare all special members 12638 // with the class, but (1) it's not clear that lying about that helps our 12639 // users understand what's going on, and (2) there may be outer contexts 12640 // on the stack (some of which are relevant) and printing them exposes 12641 // our lies. 12642 Ctx.PointOfInstantiation = RD->getLocation(); 12643 Ctx.Entity = RD; 12644 Ctx.SpecialMember = CSM; 12645 S.pushCodeSynthesisContext(Ctx); 12646 } 12647 } 12648 ~DeclaringSpecialMember() { 12649 if (!WasAlreadyBeingDeclared) { 12650 S.SpecialMembersBeingDeclared.erase(D); 12651 S.popCodeSynthesisContext(); 12652 } 12653 } 12654 12655 /// Are we already trying to declare this special member? 12656 bool isAlreadyBeingDeclared() const { 12657 return WasAlreadyBeingDeclared; 12658 } 12659 }; 12660 } 12661 12662 void Sema::CheckImplicitSpecialMemberDeclaration(Scope *S, FunctionDecl *FD) { 12663 // Look up any existing declarations, but don't trigger declaration of all 12664 // implicit special members with this name. 12665 DeclarationName Name = FD->getDeclName(); 12666 LookupResult R(*this, Name, SourceLocation(), LookupOrdinaryName, 12667 ForExternalRedeclaration); 12668 for (auto *D : FD->getParent()->lookup(Name)) 12669 if (auto *Acceptable = R.getAcceptableDecl(D)) 12670 R.addDecl(Acceptable); 12671 R.resolveKind(); 12672 R.suppressDiagnostics(); 12673 12674 CheckFunctionDeclaration(S, FD, R, /*IsMemberSpecialization*/false); 12675 } 12676 12677 void Sema::setupImplicitSpecialMemberType(CXXMethodDecl *SpecialMem, 12678 QualType ResultTy, 12679 ArrayRef<QualType> Args) { 12680 // Build an exception specification pointing back at this constructor. 12681 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, SpecialMem); 12682 12683 LangAS AS = getDefaultCXXMethodAddrSpace(); 12684 if (AS != LangAS::Default) { 12685 EPI.TypeQuals.addAddressSpace(AS); 12686 } 12687 12688 auto QT = Context.getFunctionType(ResultTy, Args, EPI); 12689 SpecialMem->setType(QT); 12690 } 12691 12692 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor( 12693 CXXRecordDecl *ClassDecl) { 12694 // C++ [class.ctor]p5: 12695 // A default constructor for a class X is a constructor of class X 12696 // that can be called without an argument. If there is no 12697 // user-declared constructor for class X, a default constructor is 12698 // implicitly declared. An implicitly-declared default constructor 12699 // is an inline public member of its class. 12700 assert(ClassDecl->needsImplicitDefaultConstructor() && 12701 "Should not build implicit default constructor!"); 12702 12703 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor); 12704 if (DSM.isAlreadyBeingDeclared()) 12705 return nullptr; 12706 12707 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 12708 CXXDefaultConstructor, 12709 false); 12710 12711 // Create the actual constructor declaration. 12712 CanQualType ClassType 12713 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 12714 SourceLocation ClassLoc = ClassDecl->getLocation(); 12715 DeclarationName Name 12716 = Context.DeclarationNames.getCXXConstructorName(ClassType); 12717 DeclarationNameInfo NameInfo(Name, ClassLoc); 12718 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( 12719 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/ QualType(), 12720 /*TInfo=*/nullptr, ExplicitSpecifier(), 12721 /*isInline=*/true, /*isImplicitlyDeclared=*/true, 12722 Constexpr ? CSK_constexpr : CSK_unspecified); 12723 DefaultCon->setAccess(AS_public); 12724 DefaultCon->setDefaulted(); 12725 12726 if (getLangOpts().CUDA) { 12727 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor, 12728 DefaultCon, 12729 /* ConstRHS */ false, 12730 /* Diagnose */ false); 12731 } 12732 12733 setupImplicitSpecialMemberType(DefaultCon, Context.VoidTy, None); 12734 12735 // We don't need to use SpecialMemberIsTrivial here; triviality for default 12736 // constructors is easy to compute. 12737 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); 12738 12739 // Note that we have declared this constructor. 12740 ++getASTContext().NumImplicitDefaultConstructorsDeclared; 12741 12742 Scope *S = getScopeForContext(ClassDecl); 12743 CheckImplicitSpecialMemberDeclaration(S, DefaultCon); 12744 12745 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) 12746 SetDeclDeleted(DefaultCon, ClassLoc); 12747 12748 if (S) 12749 PushOnScopeChains(DefaultCon, S, false); 12750 ClassDecl->addDecl(DefaultCon); 12751 12752 return DefaultCon; 12753 } 12754 12755 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, 12756 CXXConstructorDecl *Constructor) { 12757 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() && 12758 !Constructor->doesThisDeclarationHaveABody() && 12759 !Constructor->isDeleted()) && 12760 "DefineImplicitDefaultConstructor - call it for implicit default ctor"); 12761 if (Constructor->willHaveBody() || Constructor->isInvalidDecl()) 12762 return; 12763 12764 CXXRecordDecl *ClassDecl = Constructor->getParent(); 12765 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor"); 12766 12767 SynthesizedFunctionScope Scope(*this, Constructor); 12768 12769 // The exception specification is needed because we are defining the 12770 // function. 12771 ResolveExceptionSpec(CurrentLocation, 12772 Constructor->getType()->castAs<FunctionProtoType>()); 12773 MarkVTableUsed(CurrentLocation, ClassDecl); 12774 12775 // Add a context note for diagnostics produced after this point. 12776 Scope.addContextNote(CurrentLocation); 12777 12778 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false)) { 12779 Constructor->setInvalidDecl(); 12780 return; 12781 } 12782 12783 SourceLocation Loc = Constructor->getEndLoc().isValid() 12784 ? Constructor->getEndLoc() 12785 : Constructor->getLocation(); 12786 Constructor->setBody(new (Context) CompoundStmt(Loc)); 12787 Constructor->markUsed(Context); 12788 12789 if (ASTMutationListener *L = getASTMutationListener()) { 12790 L->CompletedImplicitDefinition(Constructor); 12791 } 12792 12793 DiagnoseUninitializedFields(*this, Constructor); 12794 } 12795 12796 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) { 12797 // Perform any delayed checks on exception specifications. 12798 CheckDelayedMemberExceptionSpecs(); 12799 } 12800 12801 /// Find or create the fake constructor we synthesize to model constructing an 12802 /// object of a derived class via a constructor of a base class. 12803 CXXConstructorDecl * 12804 Sema::findInheritingConstructor(SourceLocation Loc, 12805 CXXConstructorDecl *BaseCtor, 12806 ConstructorUsingShadowDecl *Shadow) { 12807 CXXRecordDecl *Derived = Shadow->getParent(); 12808 SourceLocation UsingLoc = Shadow->getLocation(); 12809 12810 // FIXME: Add a new kind of DeclarationName for an inherited constructor. 12811 // For now we use the name of the base class constructor as a member of the 12812 // derived class to indicate a (fake) inherited constructor name. 12813 DeclarationName Name = BaseCtor->getDeclName(); 12814 12815 // Check to see if we already have a fake constructor for this inherited 12816 // constructor call. 12817 for (NamedDecl *Ctor : Derived->lookup(Name)) 12818 if (declaresSameEntity(cast<CXXConstructorDecl>(Ctor) 12819 ->getInheritedConstructor() 12820 .getConstructor(), 12821 BaseCtor)) 12822 return cast<CXXConstructorDecl>(Ctor); 12823 12824 DeclarationNameInfo NameInfo(Name, UsingLoc); 12825 TypeSourceInfo *TInfo = 12826 Context.getTrivialTypeSourceInfo(BaseCtor->getType(), UsingLoc); 12827 FunctionProtoTypeLoc ProtoLoc = 12828 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>(); 12829 12830 // Check the inherited constructor is valid and find the list of base classes 12831 // from which it was inherited. 12832 InheritedConstructorInfo ICI(*this, Loc, Shadow); 12833 12834 bool Constexpr = 12835 BaseCtor->isConstexpr() && 12836 defaultedSpecialMemberIsConstexpr(*this, Derived, CXXDefaultConstructor, 12837 false, BaseCtor, &ICI); 12838 12839 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create( 12840 Context, Derived, UsingLoc, NameInfo, TInfo->getType(), TInfo, 12841 BaseCtor->getExplicitSpecifier(), /*isInline=*/true, 12842 /*isImplicitlyDeclared=*/true, 12843 Constexpr ? BaseCtor->getConstexprKind() : CSK_unspecified, 12844 InheritedConstructor(Shadow, BaseCtor), 12845 BaseCtor->getTrailingRequiresClause()); 12846 if (Shadow->isInvalidDecl()) 12847 DerivedCtor->setInvalidDecl(); 12848 12849 // Build an unevaluated exception specification for this fake constructor. 12850 const FunctionProtoType *FPT = TInfo->getType()->castAs<FunctionProtoType>(); 12851 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 12852 EPI.ExceptionSpec.Type = EST_Unevaluated; 12853 EPI.ExceptionSpec.SourceDecl = DerivedCtor; 12854 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(), 12855 FPT->getParamTypes(), EPI)); 12856 12857 // Build the parameter declarations. 12858 SmallVector<ParmVarDecl *, 16> ParamDecls; 12859 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) { 12860 TypeSourceInfo *TInfo = 12861 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc); 12862 ParmVarDecl *PD = ParmVarDecl::Create( 12863 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, 12864 FPT->getParamType(I), TInfo, SC_None, /*DefArg=*/nullptr); 12865 PD->setScopeInfo(0, I); 12866 PD->setImplicit(); 12867 // Ensure attributes are propagated onto parameters (this matters for 12868 // format, pass_object_size, ...). 12869 mergeDeclAttributes(PD, BaseCtor->getParamDecl(I)); 12870 ParamDecls.push_back(PD); 12871 ProtoLoc.setParam(I, PD); 12872 } 12873 12874 // Set up the new constructor. 12875 assert(!BaseCtor->isDeleted() && "should not use deleted constructor"); 12876 DerivedCtor->setAccess(BaseCtor->getAccess()); 12877 DerivedCtor->setParams(ParamDecls); 12878 Derived->addDecl(DerivedCtor); 12879 12880 if (ShouldDeleteSpecialMember(DerivedCtor, CXXDefaultConstructor, &ICI)) 12881 SetDeclDeleted(DerivedCtor, UsingLoc); 12882 12883 return DerivedCtor; 12884 } 12885 12886 void Sema::NoteDeletedInheritingConstructor(CXXConstructorDecl *Ctor) { 12887 InheritedConstructorInfo ICI(*this, Ctor->getLocation(), 12888 Ctor->getInheritedConstructor().getShadowDecl()); 12889 ShouldDeleteSpecialMember(Ctor, CXXDefaultConstructor, &ICI, 12890 /*Diagnose*/true); 12891 } 12892 12893 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation, 12894 CXXConstructorDecl *Constructor) { 12895 CXXRecordDecl *ClassDecl = Constructor->getParent(); 12896 assert(Constructor->getInheritedConstructor() && 12897 !Constructor->doesThisDeclarationHaveABody() && 12898 !Constructor->isDeleted()); 12899 if (Constructor->willHaveBody() || Constructor->isInvalidDecl()) 12900 return; 12901 12902 // Initializations are performed "as if by a defaulted default constructor", 12903 // so enter the appropriate scope. 12904 SynthesizedFunctionScope Scope(*this, Constructor); 12905 12906 // The exception specification is needed because we are defining the 12907 // function. 12908 ResolveExceptionSpec(CurrentLocation, 12909 Constructor->getType()->castAs<FunctionProtoType>()); 12910 MarkVTableUsed(CurrentLocation, ClassDecl); 12911 12912 // Add a context note for diagnostics produced after this point. 12913 Scope.addContextNote(CurrentLocation); 12914 12915 ConstructorUsingShadowDecl *Shadow = 12916 Constructor->getInheritedConstructor().getShadowDecl(); 12917 CXXConstructorDecl *InheritedCtor = 12918 Constructor->getInheritedConstructor().getConstructor(); 12919 12920 // [class.inhctor.init]p1: 12921 // initialization proceeds as if a defaulted default constructor is used to 12922 // initialize the D object and each base class subobject from which the 12923 // constructor was inherited 12924 12925 InheritedConstructorInfo ICI(*this, CurrentLocation, Shadow); 12926 CXXRecordDecl *RD = Shadow->getParent(); 12927 SourceLocation InitLoc = Shadow->getLocation(); 12928 12929 // Build explicit initializers for all base classes from which the 12930 // constructor was inherited. 12931 SmallVector<CXXCtorInitializer*, 8> Inits; 12932 for (bool VBase : {false, true}) { 12933 for (CXXBaseSpecifier &B : VBase ? RD->vbases() : RD->bases()) { 12934 if (B.isVirtual() != VBase) 12935 continue; 12936 12937 auto *BaseRD = B.getType()->getAsCXXRecordDecl(); 12938 if (!BaseRD) 12939 continue; 12940 12941 auto BaseCtor = ICI.findConstructorForBase(BaseRD, InheritedCtor); 12942 if (!BaseCtor.first) 12943 continue; 12944 12945 MarkFunctionReferenced(CurrentLocation, BaseCtor.first); 12946 ExprResult Init = new (Context) CXXInheritedCtorInitExpr( 12947 InitLoc, B.getType(), BaseCtor.first, VBase, BaseCtor.second); 12948 12949 auto *TInfo = Context.getTrivialTypeSourceInfo(B.getType(), InitLoc); 12950 Inits.push_back(new (Context) CXXCtorInitializer( 12951 Context, TInfo, VBase, InitLoc, Init.get(), InitLoc, 12952 SourceLocation())); 12953 } 12954 } 12955 12956 // We now proceed as if for a defaulted default constructor, with the relevant 12957 // initializers replaced. 12958 12959 if (SetCtorInitializers(Constructor, /*AnyErrors*/false, Inits)) { 12960 Constructor->setInvalidDecl(); 12961 return; 12962 } 12963 12964 Constructor->setBody(new (Context) CompoundStmt(InitLoc)); 12965 Constructor->markUsed(Context); 12966 12967 if (ASTMutationListener *L = getASTMutationListener()) { 12968 L->CompletedImplicitDefinition(Constructor); 12969 } 12970 12971 DiagnoseUninitializedFields(*this, Constructor); 12972 } 12973 12974 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) { 12975 // C++ [class.dtor]p2: 12976 // If a class has no user-declared destructor, a destructor is 12977 // declared implicitly. An implicitly-declared destructor is an 12978 // inline public member of its class. 12979 assert(ClassDecl->needsImplicitDestructor()); 12980 12981 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor); 12982 if (DSM.isAlreadyBeingDeclared()) 12983 return nullptr; 12984 12985 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 12986 CXXDestructor, 12987 false); 12988 12989 // Create the actual destructor declaration. 12990 CanQualType ClassType 12991 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 12992 SourceLocation ClassLoc = ClassDecl->getLocation(); 12993 DeclarationName Name 12994 = Context.DeclarationNames.getCXXDestructorName(ClassType); 12995 DeclarationNameInfo NameInfo(Name, ClassLoc); 12996 CXXDestructorDecl *Destructor = 12997 CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, 12998 QualType(), nullptr, /*isInline=*/true, 12999 /*isImplicitlyDeclared=*/true, 13000 Constexpr ? CSK_constexpr : CSK_unspecified); 13001 Destructor->setAccess(AS_public); 13002 Destructor->setDefaulted(); 13003 13004 if (getLangOpts().CUDA) { 13005 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor, 13006 Destructor, 13007 /* ConstRHS */ false, 13008 /* Diagnose */ false); 13009 } 13010 13011 setupImplicitSpecialMemberType(Destructor, Context.VoidTy, None); 13012 13013 // We don't need to use SpecialMemberIsTrivial here; triviality for 13014 // destructors is easy to compute. 13015 Destructor->setTrivial(ClassDecl->hasTrivialDestructor()); 13016 Destructor->setTrivialForCall(ClassDecl->hasAttr<TrivialABIAttr>() || 13017 ClassDecl->hasTrivialDestructorForCall()); 13018 13019 // Note that we have declared this destructor. 13020 ++getASTContext().NumImplicitDestructorsDeclared; 13021 13022 Scope *S = getScopeForContext(ClassDecl); 13023 CheckImplicitSpecialMemberDeclaration(S, Destructor); 13024 13025 // We can't check whether an implicit destructor is deleted before we complete 13026 // the definition of the class, because its validity depends on the alignment 13027 // of the class. We'll check this from ActOnFields once the class is complete. 13028 if (ClassDecl->isCompleteDefinition() && 13029 ShouldDeleteSpecialMember(Destructor, CXXDestructor)) 13030 SetDeclDeleted(Destructor, ClassLoc); 13031 13032 // Introduce this destructor into its scope. 13033 if (S) 13034 PushOnScopeChains(Destructor, S, false); 13035 ClassDecl->addDecl(Destructor); 13036 13037 return Destructor; 13038 } 13039 13040 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation, 13041 CXXDestructorDecl *Destructor) { 13042 assert((Destructor->isDefaulted() && 13043 !Destructor->doesThisDeclarationHaveABody() && 13044 !Destructor->isDeleted()) && 13045 "DefineImplicitDestructor - call it for implicit default dtor"); 13046 if (Destructor->willHaveBody() || Destructor->isInvalidDecl()) 13047 return; 13048 13049 CXXRecordDecl *ClassDecl = Destructor->getParent(); 13050 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor"); 13051 13052 SynthesizedFunctionScope Scope(*this, Destructor); 13053 13054 // The exception specification is needed because we are defining the 13055 // function. 13056 ResolveExceptionSpec(CurrentLocation, 13057 Destructor->getType()->castAs<FunctionProtoType>()); 13058 MarkVTableUsed(CurrentLocation, ClassDecl); 13059 13060 // Add a context note for diagnostics produced after this point. 13061 Scope.addContextNote(CurrentLocation); 13062 13063 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 13064 Destructor->getParent()); 13065 13066 if (CheckDestructor(Destructor)) { 13067 Destructor->setInvalidDecl(); 13068 return; 13069 } 13070 13071 SourceLocation Loc = Destructor->getEndLoc().isValid() 13072 ? Destructor->getEndLoc() 13073 : Destructor->getLocation(); 13074 Destructor->setBody(new (Context) CompoundStmt(Loc)); 13075 Destructor->markUsed(Context); 13076 13077 if (ASTMutationListener *L = getASTMutationListener()) { 13078 L->CompletedImplicitDefinition(Destructor); 13079 } 13080 } 13081 13082 /// Perform any semantic analysis which needs to be delayed until all 13083 /// pending class member declarations have been parsed. 13084 void Sema::ActOnFinishCXXMemberDecls() { 13085 // If the context is an invalid C++ class, just suppress these checks. 13086 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) { 13087 if (Record->isInvalidDecl()) { 13088 DelayedOverridingExceptionSpecChecks.clear(); 13089 DelayedEquivalentExceptionSpecChecks.clear(); 13090 return; 13091 } 13092 checkForMultipleExportedDefaultConstructors(*this, Record); 13093 } 13094 } 13095 13096 void Sema::ActOnFinishCXXNonNestedClass() { 13097 referenceDLLExportedClassMethods(); 13098 13099 if (!DelayedDllExportMemberFunctions.empty()) { 13100 SmallVector<CXXMethodDecl*, 4> WorkList; 13101 std::swap(DelayedDllExportMemberFunctions, WorkList); 13102 for (CXXMethodDecl *M : WorkList) { 13103 DefineDefaultedFunction(*this, M, M->getLocation()); 13104 13105 // Pass the method to the consumer to get emitted. This is not necessary 13106 // for explicit instantiation definitions, as they will get emitted 13107 // anyway. 13108 if (M->getParent()->getTemplateSpecializationKind() != 13109 TSK_ExplicitInstantiationDefinition) 13110 ActOnFinishInlineFunctionDef(M); 13111 } 13112 } 13113 } 13114 13115 void Sema::referenceDLLExportedClassMethods() { 13116 if (!DelayedDllExportClasses.empty()) { 13117 // Calling ReferenceDllExportedMembers might cause the current function to 13118 // be called again, so use a local copy of DelayedDllExportClasses. 13119 SmallVector<CXXRecordDecl *, 4> WorkList; 13120 std::swap(DelayedDllExportClasses, WorkList); 13121 for (CXXRecordDecl *Class : WorkList) 13122 ReferenceDllExportedMembers(*this, Class); 13123 } 13124 } 13125 13126 void Sema::AdjustDestructorExceptionSpec(CXXDestructorDecl *Destructor) { 13127 assert(getLangOpts().CPlusPlus11 && 13128 "adjusting dtor exception specs was introduced in c++11"); 13129 13130 if (Destructor->isDependentContext()) 13131 return; 13132 13133 // C++11 [class.dtor]p3: 13134 // A declaration of a destructor that does not have an exception- 13135 // specification is implicitly considered to have the same exception- 13136 // specification as an implicit declaration. 13137 const auto *DtorType = Destructor->getType()->castAs<FunctionProtoType>(); 13138 if (DtorType->hasExceptionSpec()) 13139 return; 13140 13141 // Replace the destructor's type, building off the existing one. Fortunately, 13142 // the only thing of interest in the destructor type is its extended info. 13143 // The return and arguments are fixed. 13144 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo(); 13145 EPI.ExceptionSpec.Type = EST_Unevaluated; 13146 EPI.ExceptionSpec.SourceDecl = Destructor; 13147 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 13148 13149 // FIXME: If the destructor has a body that could throw, and the newly created 13150 // spec doesn't allow exceptions, we should emit a warning, because this 13151 // change in behavior can break conforming C++03 programs at runtime. 13152 // However, we don't have a body or an exception specification yet, so it 13153 // needs to be done somewhere else. 13154 } 13155 13156 namespace { 13157 /// An abstract base class for all helper classes used in building the 13158 // copy/move operators. These classes serve as factory functions and help us 13159 // avoid using the same Expr* in the AST twice. 13160 class ExprBuilder { 13161 ExprBuilder(const ExprBuilder&) = delete; 13162 ExprBuilder &operator=(const ExprBuilder&) = delete; 13163 13164 protected: 13165 static Expr *assertNotNull(Expr *E) { 13166 assert(E && "Expression construction must not fail."); 13167 return E; 13168 } 13169 13170 public: 13171 ExprBuilder() {} 13172 virtual ~ExprBuilder() {} 13173 13174 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0; 13175 }; 13176 13177 class RefBuilder: public ExprBuilder { 13178 VarDecl *Var; 13179 QualType VarType; 13180 13181 public: 13182 Expr *build(Sema &S, SourceLocation Loc) const override { 13183 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc)); 13184 } 13185 13186 RefBuilder(VarDecl *Var, QualType VarType) 13187 : Var(Var), VarType(VarType) {} 13188 }; 13189 13190 class ThisBuilder: public ExprBuilder { 13191 public: 13192 Expr *build(Sema &S, SourceLocation Loc) const override { 13193 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>()); 13194 } 13195 }; 13196 13197 class CastBuilder: public ExprBuilder { 13198 const ExprBuilder &Builder; 13199 QualType Type; 13200 ExprValueKind Kind; 13201 const CXXCastPath &Path; 13202 13203 public: 13204 Expr *build(Sema &S, SourceLocation Loc) const override { 13205 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type, 13206 CK_UncheckedDerivedToBase, Kind, 13207 &Path).get()); 13208 } 13209 13210 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind, 13211 const CXXCastPath &Path) 13212 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {} 13213 }; 13214 13215 class DerefBuilder: public ExprBuilder { 13216 const ExprBuilder &Builder; 13217 13218 public: 13219 Expr *build(Sema &S, SourceLocation Loc) const override { 13220 return assertNotNull( 13221 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get()); 13222 } 13223 13224 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 13225 }; 13226 13227 class MemberBuilder: public ExprBuilder { 13228 const ExprBuilder &Builder; 13229 QualType Type; 13230 CXXScopeSpec SS; 13231 bool IsArrow; 13232 LookupResult &MemberLookup; 13233 13234 public: 13235 Expr *build(Sema &S, SourceLocation Loc) const override { 13236 return assertNotNull(S.BuildMemberReferenceExpr( 13237 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(), 13238 nullptr, MemberLookup, nullptr, nullptr).get()); 13239 } 13240 13241 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow, 13242 LookupResult &MemberLookup) 13243 : Builder(Builder), Type(Type), IsArrow(IsArrow), 13244 MemberLookup(MemberLookup) {} 13245 }; 13246 13247 class MoveCastBuilder: public ExprBuilder { 13248 const ExprBuilder &Builder; 13249 13250 public: 13251 Expr *build(Sema &S, SourceLocation Loc) const override { 13252 return assertNotNull(CastForMoving(S, Builder.build(S, Loc))); 13253 } 13254 13255 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 13256 }; 13257 13258 class LvalueConvBuilder: public ExprBuilder { 13259 const ExprBuilder &Builder; 13260 13261 public: 13262 Expr *build(Sema &S, SourceLocation Loc) const override { 13263 return assertNotNull( 13264 S.DefaultLvalueConversion(Builder.build(S, Loc)).get()); 13265 } 13266 13267 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 13268 }; 13269 13270 class SubscriptBuilder: public ExprBuilder { 13271 const ExprBuilder &Base; 13272 const ExprBuilder &Index; 13273 13274 public: 13275 Expr *build(Sema &S, SourceLocation Loc) const override { 13276 return assertNotNull(S.CreateBuiltinArraySubscriptExpr( 13277 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get()); 13278 } 13279 13280 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index) 13281 : Base(Base), Index(Index) {} 13282 }; 13283 13284 } // end anonymous namespace 13285 13286 /// When generating a defaulted copy or move assignment operator, if a field 13287 /// should be copied with __builtin_memcpy rather than via explicit assignments, 13288 /// do so. This optimization only applies for arrays of scalars, and for arrays 13289 /// of class type where the selected copy/move-assignment operator is trivial. 13290 static StmtResult 13291 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T, 13292 const ExprBuilder &ToB, const ExprBuilder &FromB) { 13293 // Compute the size of the memory buffer to be copied. 13294 QualType SizeType = S.Context.getSizeType(); 13295 llvm::APInt Size(S.Context.getTypeSize(SizeType), 13296 S.Context.getTypeSizeInChars(T).getQuantity()); 13297 13298 // Take the address of the field references for "from" and "to". We 13299 // directly construct UnaryOperators here because semantic analysis 13300 // does not permit us to take the address of an xvalue. 13301 Expr *From = FromB.build(S, Loc); 13302 From = new (S.Context) UnaryOperator(From, UO_AddrOf, 13303 S.Context.getPointerType(From->getType()), 13304 VK_RValue, OK_Ordinary, Loc, false); 13305 Expr *To = ToB.build(S, Loc); 13306 To = new (S.Context) UnaryOperator(To, UO_AddrOf, 13307 S.Context.getPointerType(To->getType()), 13308 VK_RValue, OK_Ordinary, Loc, false); 13309 13310 const Type *E = T->getBaseElementTypeUnsafe(); 13311 bool NeedsCollectableMemCpy = 13312 E->isRecordType() && 13313 E->castAs<RecordType>()->getDecl()->hasObjectMember(); 13314 13315 // Create a reference to the __builtin_objc_memmove_collectable function 13316 StringRef MemCpyName = NeedsCollectableMemCpy ? 13317 "__builtin_objc_memmove_collectable" : 13318 "__builtin_memcpy"; 13319 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc, 13320 Sema::LookupOrdinaryName); 13321 S.LookupName(R, S.TUScope, true); 13322 13323 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>(); 13324 if (!MemCpy) 13325 // Something went horribly wrong earlier, and we will have complained 13326 // about it. 13327 return StmtError(); 13328 13329 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy, 13330 VK_RValue, Loc, nullptr); 13331 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail"); 13332 13333 Expr *CallArgs[] = { 13334 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc) 13335 }; 13336 ExprResult Call = S.BuildCallExpr(/*Scope=*/nullptr, MemCpyRef.get(), 13337 Loc, CallArgs, Loc); 13338 13339 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!"); 13340 return Call.getAs<Stmt>(); 13341 } 13342 13343 /// Builds a statement that copies/moves the given entity from \p From to 13344 /// \c To. 13345 /// 13346 /// This routine is used to copy/move the members of a class with an 13347 /// implicitly-declared copy/move assignment operator. When the entities being 13348 /// copied are arrays, this routine builds for loops to copy them. 13349 /// 13350 /// \param S The Sema object used for type-checking. 13351 /// 13352 /// \param Loc The location where the implicit copy/move is being generated. 13353 /// 13354 /// \param T The type of the expressions being copied/moved. Both expressions 13355 /// must have this type. 13356 /// 13357 /// \param To The expression we are copying/moving to. 13358 /// 13359 /// \param From The expression we are copying/moving from. 13360 /// 13361 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject. 13362 /// Otherwise, it's a non-static member subobject. 13363 /// 13364 /// \param Copying Whether we're copying or moving. 13365 /// 13366 /// \param Depth Internal parameter recording the depth of the recursion. 13367 /// 13368 /// \returns A statement or a loop that copies the expressions, or StmtResult(0) 13369 /// if a memcpy should be used instead. 13370 static StmtResult 13371 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T, 13372 const ExprBuilder &To, const ExprBuilder &From, 13373 bool CopyingBaseSubobject, bool Copying, 13374 unsigned Depth = 0) { 13375 // C++11 [class.copy]p28: 13376 // Each subobject is assigned in the manner appropriate to its type: 13377 // 13378 // - if the subobject is of class type, as if by a call to operator= with 13379 // the subobject as the object expression and the corresponding 13380 // subobject of x as a single function argument (as if by explicit 13381 // qualification; that is, ignoring any possible virtual overriding 13382 // functions in more derived classes); 13383 // 13384 // C++03 [class.copy]p13: 13385 // - if the subobject is of class type, the copy assignment operator for 13386 // the class is used (as if by explicit qualification; that is, 13387 // ignoring any possible virtual overriding functions in more derived 13388 // classes); 13389 if (const RecordType *RecordTy = T->getAs<RecordType>()) { 13390 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 13391 13392 // Look for operator=. 13393 DeclarationName Name 13394 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal); 13395 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName); 13396 S.LookupQualifiedName(OpLookup, ClassDecl, false); 13397 13398 // Prior to C++11, filter out any result that isn't a copy/move-assignment 13399 // operator. 13400 if (!S.getLangOpts().CPlusPlus11) { 13401 LookupResult::Filter F = OpLookup.makeFilter(); 13402 while (F.hasNext()) { 13403 NamedDecl *D = F.next(); 13404 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 13405 if (Method->isCopyAssignmentOperator() || 13406 (!Copying && Method->isMoveAssignmentOperator())) 13407 continue; 13408 13409 F.erase(); 13410 } 13411 F.done(); 13412 } 13413 13414 // Suppress the protected check (C++ [class.protected]) for each of the 13415 // assignment operators we found. This strange dance is required when 13416 // we're assigning via a base classes's copy-assignment operator. To 13417 // ensure that we're getting the right base class subobject (without 13418 // ambiguities), we need to cast "this" to that subobject type; to 13419 // ensure that we don't go through the virtual call mechanism, we need 13420 // to qualify the operator= name with the base class (see below). However, 13421 // this means that if the base class has a protected copy assignment 13422 // operator, the protected member access check will fail. So, we 13423 // rewrite "protected" access to "public" access in this case, since we 13424 // know by construction that we're calling from a derived class. 13425 if (CopyingBaseSubobject) { 13426 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end(); 13427 L != LEnd; ++L) { 13428 if (L.getAccess() == AS_protected) 13429 L.setAccess(AS_public); 13430 } 13431 } 13432 13433 // Create the nested-name-specifier that will be used to qualify the 13434 // reference to operator=; this is required to suppress the virtual 13435 // call mechanism. 13436 CXXScopeSpec SS; 13437 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr()); 13438 SS.MakeTrivial(S.Context, 13439 NestedNameSpecifier::Create(S.Context, nullptr, false, 13440 CanonicalT), 13441 Loc); 13442 13443 // Create the reference to operator=. 13444 ExprResult OpEqualRef 13445 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*IsArrow=*/false, 13446 SS, /*TemplateKWLoc=*/SourceLocation(), 13447 /*FirstQualifierInScope=*/nullptr, 13448 OpLookup, 13449 /*TemplateArgs=*/nullptr, /*S*/nullptr, 13450 /*SuppressQualifierCheck=*/true); 13451 if (OpEqualRef.isInvalid()) 13452 return StmtError(); 13453 13454 // Build the call to the assignment operator. 13455 13456 Expr *FromInst = From.build(S, Loc); 13457 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr, 13458 OpEqualRef.getAs<Expr>(), 13459 Loc, FromInst, Loc); 13460 if (Call.isInvalid()) 13461 return StmtError(); 13462 13463 // If we built a call to a trivial 'operator=' while copying an array, 13464 // bail out. We'll replace the whole shebang with a memcpy. 13465 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get()); 13466 if (CE && CE->getMethodDecl()->isTrivial() && Depth) 13467 return StmtResult((Stmt*)nullptr); 13468 13469 // Convert to an expression-statement, and clean up any produced 13470 // temporaries. 13471 return S.ActOnExprStmt(Call); 13472 } 13473 13474 // - if the subobject is of scalar type, the built-in assignment 13475 // operator is used. 13476 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T); 13477 if (!ArrayTy) { 13478 ExprResult Assignment = S.CreateBuiltinBinOp( 13479 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc)); 13480 if (Assignment.isInvalid()) 13481 return StmtError(); 13482 return S.ActOnExprStmt(Assignment); 13483 } 13484 13485 // - if the subobject is an array, each element is assigned, in the 13486 // manner appropriate to the element type; 13487 13488 // Construct a loop over the array bounds, e.g., 13489 // 13490 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0) 13491 // 13492 // that will copy each of the array elements. 13493 QualType SizeType = S.Context.getSizeType(); 13494 13495 // Create the iteration variable. 13496 IdentifierInfo *IterationVarName = nullptr; 13497 { 13498 SmallString<8> Str; 13499 llvm::raw_svector_ostream OS(Str); 13500 OS << "__i" << Depth; 13501 IterationVarName = &S.Context.Idents.get(OS.str()); 13502 } 13503 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, 13504 IterationVarName, SizeType, 13505 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), 13506 SC_None); 13507 13508 // Initialize the iteration variable to zero. 13509 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0); 13510 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc)); 13511 13512 // Creates a reference to the iteration variable. 13513 RefBuilder IterationVarRef(IterationVar, SizeType); 13514 LvalueConvBuilder IterationVarRefRVal(IterationVarRef); 13515 13516 // Create the DeclStmt that holds the iteration variable. 13517 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc); 13518 13519 // Subscript the "from" and "to" expressions with the iteration variable. 13520 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal); 13521 MoveCastBuilder FromIndexMove(FromIndexCopy); 13522 const ExprBuilder *FromIndex; 13523 if (Copying) 13524 FromIndex = &FromIndexCopy; 13525 else 13526 FromIndex = &FromIndexMove; 13527 13528 SubscriptBuilder ToIndex(To, IterationVarRefRVal); 13529 13530 // Build the copy/move for an individual element of the array. 13531 StmtResult Copy = 13532 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(), 13533 ToIndex, *FromIndex, CopyingBaseSubobject, 13534 Copying, Depth + 1); 13535 // Bail out if copying fails or if we determined that we should use memcpy. 13536 if (Copy.isInvalid() || !Copy.get()) 13537 return Copy; 13538 13539 // Create the comparison against the array bound. 13540 llvm::APInt Upper 13541 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType)); 13542 Expr *Comparison 13543 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc), 13544 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc), 13545 BO_NE, S.Context.BoolTy, 13546 VK_RValue, OK_Ordinary, Loc, FPOptions()); 13547 13548 // Create the pre-increment of the iteration variable. We can determine 13549 // whether the increment will overflow based on the value of the array 13550 // bound. 13551 Expr *Increment = new (S.Context) 13552 UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc, SizeType, 13553 VK_LValue, OK_Ordinary, Loc, Upper.isMaxValue()); 13554 13555 // Construct the loop that copies all elements of this array. 13556 return S.ActOnForStmt( 13557 Loc, Loc, InitStmt, 13558 S.ActOnCondition(nullptr, Loc, Comparison, Sema::ConditionKind::Boolean), 13559 S.MakeFullDiscardedValueExpr(Increment), Loc, Copy.get()); 13560 } 13561 13562 static StmtResult 13563 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T, 13564 const ExprBuilder &To, const ExprBuilder &From, 13565 bool CopyingBaseSubobject, bool Copying) { 13566 // Maybe we should use a memcpy? 13567 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() && 13568 T.isTriviallyCopyableType(S.Context)) 13569 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 13570 13571 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From, 13572 CopyingBaseSubobject, 13573 Copying, 0)); 13574 13575 // If we ended up picking a trivial assignment operator for an array of a 13576 // non-trivially-copyable class type, just emit a memcpy. 13577 if (!Result.isInvalid() && !Result.get()) 13578 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 13579 13580 return Result; 13581 } 13582 13583 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) { 13584 // Note: The following rules are largely analoguous to the copy 13585 // constructor rules. Note that virtual bases are not taken into account 13586 // for determining the argument type of the operator. Note also that 13587 // operators taking an object instead of a reference are allowed. 13588 assert(ClassDecl->needsImplicitCopyAssignment()); 13589 13590 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment); 13591 if (DSM.isAlreadyBeingDeclared()) 13592 return nullptr; 13593 13594 QualType ArgType = Context.getTypeDeclType(ClassDecl); 13595 LangAS AS = getDefaultCXXMethodAddrSpace(); 13596 if (AS != LangAS::Default) 13597 ArgType = Context.getAddrSpaceQualType(ArgType, AS); 13598 QualType RetType = Context.getLValueReferenceType(ArgType); 13599 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam(); 13600 if (Const) 13601 ArgType = ArgType.withConst(); 13602 13603 ArgType = Context.getLValueReferenceType(ArgType); 13604 13605 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 13606 CXXCopyAssignment, 13607 Const); 13608 13609 // An implicitly-declared copy assignment operator is an inline public 13610 // member of its class. 13611 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 13612 SourceLocation ClassLoc = ClassDecl->getLocation(); 13613 DeclarationNameInfo NameInfo(Name, ClassLoc); 13614 CXXMethodDecl *CopyAssignment = CXXMethodDecl::Create( 13615 Context, ClassDecl, ClassLoc, NameInfo, QualType(), 13616 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 13617 /*isInline=*/true, Constexpr ? CSK_constexpr : CSK_unspecified, 13618 SourceLocation()); 13619 CopyAssignment->setAccess(AS_public); 13620 CopyAssignment->setDefaulted(); 13621 CopyAssignment->setImplicit(); 13622 13623 if (getLangOpts().CUDA) { 13624 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment, 13625 CopyAssignment, 13626 /* ConstRHS */ Const, 13627 /* Diagnose */ false); 13628 } 13629 13630 setupImplicitSpecialMemberType(CopyAssignment, RetType, ArgType); 13631 13632 // Add the parameter to the operator. 13633 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment, 13634 ClassLoc, ClassLoc, 13635 /*Id=*/nullptr, ArgType, 13636 /*TInfo=*/nullptr, SC_None, 13637 nullptr); 13638 CopyAssignment->setParams(FromParam); 13639 13640 CopyAssignment->setTrivial( 13641 ClassDecl->needsOverloadResolutionForCopyAssignment() 13642 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment) 13643 : ClassDecl->hasTrivialCopyAssignment()); 13644 13645 // Note that we have added this copy-assignment operator. 13646 ++getASTContext().NumImplicitCopyAssignmentOperatorsDeclared; 13647 13648 Scope *S = getScopeForContext(ClassDecl); 13649 CheckImplicitSpecialMemberDeclaration(S, CopyAssignment); 13650 13651 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment)) 13652 SetDeclDeleted(CopyAssignment, ClassLoc); 13653 13654 if (S) 13655 PushOnScopeChains(CopyAssignment, S, false); 13656 ClassDecl->addDecl(CopyAssignment); 13657 13658 return CopyAssignment; 13659 } 13660 13661 /// Diagnose an implicit copy operation for a class which is odr-used, but 13662 /// which is deprecated because the class has a user-declared copy constructor, 13663 /// copy assignment operator, or destructor. 13664 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp) { 13665 assert(CopyOp->isImplicit()); 13666 13667 CXXRecordDecl *RD = CopyOp->getParent(); 13668 CXXMethodDecl *UserDeclaredOperation = nullptr; 13669 13670 // In Microsoft mode, assignment operations don't affect constructors and 13671 // vice versa. 13672 if (RD->hasUserDeclaredDestructor()) { 13673 UserDeclaredOperation = RD->getDestructor(); 13674 } else if (!isa<CXXConstructorDecl>(CopyOp) && 13675 RD->hasUserDeclaredCopyConstructor() && 13676 !S.getLangOpts().MSVCCompat) { 13677 // Find any user-declared copy constructor. 13678 for (auto *I : RD->ctors()) { 13679 if (I->isCopyConstructor()) { 13680 UserDeclaredOperation = I; 13681 break; 13682 } 13683 } 13684 assert(UserDeclaredOperation); 13685 } else if (isa<CXXConstructorDecl>(CopyOp) && 13686 RD->hasUserDeclaredCopyAssignment() && 13687 !S.getLangOpts().MSVCCompat) { 13688 // Find any user-declared move assignment operator. 13689 for (auto *I : RD->methods()) { 13690 if (I->isCopyAssignmentOperator()) { 13691 UserDeclaredOperation = I; 13692 break; 13693 } 13694 } 13695 assert(UserDeclaredOperation); 13696 } 13697 13698 if (UserDeclaredOperation && UserDeclaredOperation->isUserProvided()) { 13699 S.Diag(UserDeclaredOperation->getLocation(), 13700 isa<CXXDestructorDecl>(UserDeclaredOperation) 13701 ? diag::warn_deprecated_copy_dtor_operation 13702 : diag::warn_deprecated_copy_operation) 13703 << RD << /*copy assignment*/ !isa<CXXConstructorDecl>(CopyOp); 13704 } 13705 } 13706 13707 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation, 13708 CXXMethodDecl *CopyAssignOperator) { 13709 assert((CopyAssignOperator->isDefaulted() && 13710 CopyAssignOperator->isOverloadedOperator() && 13711 CopyAssignOperator->getOverloadedOperator() == OO_Equal && 13712 !CopyAssignOperator->doesThisDeclarationHaveABody() && 13713 !CopyAssignOperator->isDeleted()) && 13714 "DefineImplicitCopyAssignment called for wrong function"); 13715 if (CopyAssignOperator->willHaveBody() || CopyAssignOperator->isInvalidDecl()) 13716 return; 13717 13718 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent(); 13719 if (ClassDecl->isInvalidDecl()) { 13720 CopyAssignOperator->setInvalidDecl(); 13721 return; 13722 } 13723 13724 SynthesizedFunctionScope Scope(*this, CopyAssignOperator); 13725 13726 // The exception specification is needed because we are defining the 13727 // function. 13728 ResolveExceptionSpec(CurrentLocation, 13729 CopyAssignOperator->getType()->castAs<FunctionProtoType>()); 13730 13731 // Add a context note for diagnostics produced after this point. 13732 Scope.addContextNote(CurrentLocation); 13733 13734 // C++11 [class.copy]p18: 13735 // The [definition of an implicitly declared copy assignment operator] is 13736 // deprecated if the class has a user-declared copy constructor or a 13737 // user-declared destructor. 13738 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit()) 13739 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator); 13740 13741 // C++0x [class.copy]p30: 13742 // The implicitly-defined or explicitly-defaulted copy assignment operator 13743 // for a non-union class X performs memberwise copy assignment of its 13744 // subobjects. The direct base classes of X are assigned first, in the 13745 // order of their declaration in the base-specifier-list, and then the 13746 // immediate non-static data members of X are assigned, in the order in 13747 // which they were declared in the class definition. 13748 13749 // The statements that form the synthesized function body. 13750 SmallVector<Stmt*, 8> Statements; 13751 13752 // The parameter for the "other" object, which we are copying from. 13753 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0); 13754 Qualifiers OtherQuals = Other->getType().getQualifiers(); 13755 QualType OtherRefType = Other->getType(); 13756 if (const LValueReferenceType *OtherRef 13757 = OtherRefType->getAs<LValueReferenceType>()) { 13758 OtherRefType = OtherRef->getPointeeType(); 13759 OtherQuals = OtherRefType.getQualifiers(); 13760 } 13761 13762 // Our location for everything implicitly-generated. 13763 SourceLocation Loc = CopyAssignOperator->getEndLoc().isValid() 13764 ? CopyAssignOperator->getEndLoc() 13765 : CopyAssignOperator->getLocation(); 13766 13767 // Builds a DeclRefExpr for the "other" object. 13768 RefBuilder OtherRef(Other, OtherRefType); 13769 13770 // Builds the "this" pointer. 13771 ThisBuilder This; 13772 13773 // Assign base classes. 13774 bool Invalid = false; 13775 for (auto &Base : ClassDecl->bases()) { 13776 // Form the assignment: 13777 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other)); 13778 QualType BaseType = Base.getType().getUnqualifiedType(); 13779 if (!BaseType->isRecordType()) { 13780 Invalid = true; 13781 continue; 13782 } 13783 13784 CXXCastPath BasePath; 13785 BasePath.push_back(&Base); 13786 13787 // Construct the "from" expression, which is an implicit cast to the 13788 // appropriately-qualified base type. 13789 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals), 13790 VK_LValue, BasePath); 13791 13792 // Dereference "this". 13793 DerefBuilder DerefThis(This); 13794 CastBuilder To(DerefThis, 13795 Context.getQualifiedType( 13796 BaseType, CopyAssignOperator->getMethodQualifiers()), 13797 VK_LValue, BasePath); 13798 13799 // Build the copy. 13800 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType, 13801 To, From, 13802 /*CopyingBaseSubobject=*/true, 13803 /*Copying=*/true); 13804 if (Copy.isInvalid()) { 13805 CopyAssignOperator->setInvalidDecl(); 13806 return; 13807 } 13808 13809 // Success! Record the copy. 13810 Statements.push_back(Copy.getAs<Expr>()); 13811 } 13812 13813 // Assign non-static members. 13814 for (auto *Field : ClassDecl->fields()) { 13815 // FIXME: We should form some kind of AST representation for the implied 13816 // memcpy in a union copy operation. 13817 if (Field->isUnnamedBitfield() || Field->getParent()->isUnion()) 13818 continue; 13819 13820 if (Field->isInvalidDecl()) { 13821 Invalid = true; 13822 continue; 13823 } 13824 13825 // Check for members of reference type; we can't copy those. 13826 if (Field->getType()->isReferenceType()) { 13827 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 13828 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 13829 Diag(Field->getLocation(), diag::note_declared_at); 13830 Invalid = true; 13831 continue; 13832 } 13833 13834 // Check for members of const-qualified, non-class type. 13835 QualType BaseType = Context.getBaseElementType(Field->getType()); 13836 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 13837 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 13838 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 13839 Diag(Field->getLocation(), diag::note_declared_at); 13840 Invalid = true; 13841 continue; 13842 } 13843 13844 // Suppress assigning zero-width bitfields. 13845 if (Field->isZeroLengthBitField(Context)) 13846 continue; 13847 13848 QualType FieldType = Field->getType().getNonReferenceType(); 13849 if (FieldType->isIncompleteArrayType()) { 13850 assert(ClassDecl->hasFlexibleArrayMember() && 13851 "Incomplete array type is not valid"); 13852 continue; 13853 } 13854 13855 // Build references to the field in the object we're copying from and to. 13856 CXXScopeSpec SS; // Intentionally empty 13857 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 13858 LookupMemberName); 13859 MemberLookup.addDecl(Field); 13860 MemberLookup.resolveKind(); 13861 13862 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup); 13863 13864 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup); 13865 13866 // Build the copy of this field. 13867 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType, 13868 To, From, 13869 /*CopyingBaseSubobject=*/false, 13870 /*Copying=*/true); 13871 if (Copy.isInvalid()) { 13872 CopyAssignOperator->setInvalidDecl(); 13873 return; 13874 } 13875 13876 // Success! Record the copy. 13877 Statements.push_back(Copy.getAs<Stmt>()); 13878 } 13879 13880 if (!Invalid) { 13881 // Add a "return *this;" 13882 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 13883 13884 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 13885 if (Return.isInvalid()) 13886 Invalid = true; 13887 else 13888 Statements.push_back(Return.getAs<Stmt>()); 13889 } 13890 13891 if (Invalid) { 13892 CopyAssignOperator->setInvalidDecl(); 13893 return; 13894 } 13895 13896 StmtResult Body; 13897 { 13898 CompoundScopeRAII CompoundScope(*this); 13899 Body = ActOnCompoundStmt(Loc, Loc, Statements, 13900 /*isStmtExpr=*/false); 13901 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 13902 } 13903 CopyAssignOperator->setBody(Body.getAs<Stmt>()); 13904 CopyAssignOperator->markUsed(Context); 13905 13906 if (ASTMutationListener *L = getASTMutationListener()) { 13907 L->CompletedImplicitDefinition(CopyAssignOperator); 13908 } 13909 } 13910 13911 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) { 13912 assert(ClassDecl->needsImplicitMoveAssignment()); 13913 13914 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment); 13915 if (DSM.isAlreadyBeingDeclared()) 13916 return nullptr; 13917 13918 // Note: The following rules are largely analoguous to the move 13919 // constructor rules. 13920 13921 QualType ArgType = Context.getTypeDeclType(ClassDecl); 13922 LangAS AS = getDefaultCXXMethodAddrSpace(); 13923 if (AS != LangAS::Default) 13924 ArgType = Context.getAddrSpaceQualType(ArgType, AS); 13925 QualType RetType = Context.getLValueReferenceType(ArgType); 13926 ArgType = Context.getRValueReferenceType(ArgType); 13927 13928 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 13929 CXXMoveAssignment, 13930 false); 13931 13932 // An implicitly-declared move assignment operator is an inline public 13933 // member of its class. 13934 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 13935 SourceLocation ClassLoc = ClassDecl->getLocation(); 13936 DeclarationNameInfo NameInfo(Name, ClassLoc); 13937 CXXMethodDecl *MoveAssignment = CXXMethodDecl::Create( 13938 Context, ClassDecl, ClassLoc, NameInfo, QualType(), 13939 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 13940 /*isInline=*/true, Constexpr ? CSK_constexpr : CSK_unspecified, 13941 SourceLocation()); 13942 MoveAssignment->setAccess(AS_public); 13943 MoveAssignment->setDefaulted(); 13944 MoveAssignment->setImplicit(); 13945 13946 if (getLangOpts().CUDA) { 13947 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment, 13948 MoveAssignment, 13949 /* ConstRHS */ false, 13950 /* Diagnose */ false); 13951 } 13952 13953 // Build an exception specification pointing back at this member. 13954 FunctionProtoType::ExtProtoInfo EPI = 13955 getImplicitMethodEPI(*this, MoveAssignment); 13956 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 13957 13958 // Add the parameter to the operator. 13959 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment, 13960 ClassLoc, ClassLoc, 13961 /*Id=*/nullptr, ArgType, 13962 /*TInfo=*/nullptr, SC_None, 13963 nullptr); 13964 MoveAssignment->setParams(FromParam); 13965 13966 MoveAssignment->setTrivial( 13967 ClassDecl->needsOverloadResolutionForMoveAssignment() 13968 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment) 13969 : ClassDecl->hasTrivialMoveAssignment()); 13970 13971 // Note that we have added this copy-assignment operator. 13972 ++getASTContext().NumImplicitMoveAssignmentOperatorsDeclared; 13973 13974 Scope *S = getScopeForContext(ClassDecl); 13975 CheckImplicitSpecialMemberDeclaration(S, MoveAssignment); 13976 13977 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) { 13978 ClassDecl->setImplicitMoveAssignmentIsDeleted(); 13979 SetDeclDeleted(MoveAssignment, ClassLoc); 13980 } 13981 13982 if (S) 13983 PushOnScopeChains(MoveAssignment, S, false); 13984 ClassDecl->addDecl(MoveAssignment); 13985 13986 return MoveAssignment; 13987 } 13988 13989 /// Check if we're implicitly defining a move assignment operator for a class 13990 /// with virtual bases. Such a move assignment might move-assign the virtual 13991 /// base multiple times. 13992 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class, 13993 SourceLocation CurrentLocation) { 13994 assert(!Class->isDependentContext() && "should not define dependent move"); 13995 13996 // Only a virtual base could get implicitly move-assigned multiple times. 13997 // Only a non-trivial move assignment can observe this. We only want to 13998 // diagnose if we implicitly define an assignment operator that assigns 13999 // two base classes, both of which move-assign the same virtual base. 14000 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() || 14001 Class->getNumBases() < 2) 14002 return; 14003 14004 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist; 14005 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap; 14006 VBaseMap VBases; 14007 14008 for (auto &BI : Class->bases()) { 14009 Worklist.push_back(&BI); 14010 while (!Worklist.empty()) { 14011 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val(); 14012 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 14013 14014 // If the base has no non-trivial move assignment operators, 14015 // we don't care about moves from it. 14016 if (!Base->hasNonTrivialMoveAssignment()) 14017 continue; 14018 14019 // If there's nothing virtual here, skip it. 14020 if (!BaseSpec->isVirtual() && !Base->getNumVBases()) 14021 continue; 14022 14023 // If we're not actually going to call a move assignment for this base, 14024 // or the selected move assignment is trivial, skip it. 14025 Sema::SpecialMemberOverloadResult SMOR = 14026 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment, 14027 /*ConstArg*/false, /*VolatileArg*/false, 14028 /*RValueThis*/true, /*ConstThis*/false, 14029 /*VolatileThis*/false); 14030 if (!SMOR.getMethod() || SMOR.getMethod()->isTrivial() || 14031 !SMOR.getMethod()->isMoveAssignmentOperator()) 14032 continue; 14033 14034 if (BaseSpec->isVirtual()) { 14035 // We're going to move-assign this virtual base, and its move 14036 // assignment operator is not trivial. If this can happen for 14037 // multiple distinct direct bases of Class, diagnose it. (If it 14038 // only happens in one base, we'll diagnose it when synthesizing 14039 // that base class's move assignment operator.) 14040 CXXBaseSpecifier *&Existing = 14041 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI)) 14042 .first->second; 14043 if (Existing && Existing != &BI) { 14044 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times) 14045 << Class << Base; 14046 S.Diag(Existing->getBeginLoc(), diag::note_vbase_moved_here) 14047 << (Base->getCanonicalDecl() == 14048 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 14049 << Base << Existing->getType() << Existing->getSourceRange(); 14050 S.Diag(BI.getBeginLoc(), diag::note_vbase_moved_here) 14051 << (Base->getCanonicalDecl() == 14052 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 14053 << Base << BI.getType() << BaseSpec->getSourceRange(); 14054 14055 // Only diagnose each vbase once. 14056 Existing = nullptr; 14057 } 14058 } else { 14059 // Only walk over bases that have defaulted move assignment operators. 14060 // We assume that any user-provided move assignment operator handles 14061 // the multiple-moves-of-vbase case itself somehow. 14062 if (!SMOR.getMethod()->isDefaulted()) 14063 continue; 14064 14065 // We're going to move the base classes of Base. Add them to the list. 14066 for (auto &BI : Base->bases()) 14067 Worklist.push_back(&BI); 14068 } 14069 } 14070 } 14071 } 14072 14073 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation, 14074 CXXMethodDecl *MoveAssignOperator) { 14075 assert((MoveAssignOperator->isDefaulted() && 14076 MoveAssignOperator->isOverloadedOperator() && 14077 MoveAssignOperator->getOverloadedOperator() == OO_Equal && 14078 !MoveAssignOperator->doesThisDeclarationHaveABody() && 14079 !MoveAssignOperator->isDeleted()) && 14080 "DefineImplicitMoveAssignment called for wrong function"); 14081 if (MoveAssignOperator->willHaveBody() || MoveAssignOperator->isInvalidDecl()) 14082 return; 14083 14084 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent(); 14085 if (ClassDecl->isInvalidDecl()) { 14086 MoveAssignOperator->setInvalidDecl(); 14087 return; 14088 } 14089 14090 // C++0x [class.copy]p28: 14091 // The implicitly-defined or move assignment operator for a non-union class 14092 // X performs memberwise move assignment of its subobjects. The direct base 14093 // classes of X are assigned first, in the order of their declaration in the 14094 // base-specifier-list, and then the immediate non-static data members of X 14095 // are assigned, in the order in which they were declared in the class 14096 // definition. 14097 14098 // Issue a warning if our implicit move assignment operator will move 14099 // from a virtual base more than once. 14100 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation); 14101 14102 SynthesizedFunctionScope Scope(*this, MoveAssignOperator); 14103 14104 // The exception specification is needed because we are defining the 14105 // function. 14106 ResolveExceptionSpec(CurrentLocation, 14107 MoveAssignOperator->getType()->castAs<FunctionProtoType>()); 14108 14109 // Add a context note for diagnostics produced after this point. 14110 Scope.addContextNote(CurrentLocation); 14111 14112 // The statements that form the synthesized function body. 14113 SmallVector<Stmt*, 8> Statements; 14114 14115 // The parameter for the "other" object, which we are move from. 14116 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0); 14117 QualType OtherRefType = 14118 Other->getType()->castAs<RValueReferenceType>()->getPointeeType(); 14119 14120 // Our location for everything implicitly-generated. 14121 SourceLocation Loc = MoveAssignOperator->getEndLoc().isValid() 14122 ? MoveAssignOperator->getEndLoc() 14123 : MoveAssignOperator->getLocation(); 14124 14125 // Builds a reference to the "other" object. 14126 RefBuilder OtherRef(Other, OtherRefType); 14127 // Cast to rvalue. 14128 MoveCastBuilder MoveOther(OtherRef); 14129 14130 // Builds the "this" pointer. 14131 ThisBuilder This; 14132 14133 // Assign base classes. 14134 bool Invalid = false; 14135 for (auto &Base : ClassDecl->bases()) { 14136 // C++11 [class.copy]p28: 14137 // It is unspecified whether subobjects representing virtual base classes 14138 // are assigned more than once by the implicitly-defined copy assignment 14139 // operator. 14140 // FIXME: Do not assign to a vbase that will be assigned by some other base 14141 // class. For a move-assignment, this can result in the vbase being moved 14142 // multiple times. 14143 14144 // Form the assignment: 14145 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other)); 14146 QualType BaseType = Base.getType().getUnqualifiedType(); 14147 if (!BaseType->isRecordType()) { 14148 Invalid = true; 14149 continue; 14150 } 14151 14152 CXXCastPath BasePath; 14153 BasePath.push_back(&Base); 14154 14155 // Construct the "from" expression, which is an implicit cast to the 14156 // appropriately-qualified base type. 14157 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath); 14158 14159 // Dereference "this". 14160 DerefBuilder DerefThis(This); 14161 14162 // Implicitly cast "this" to the appropriately-qualified base type. 14163 CastBuilder To(DerefThis, 14164 Context.getQualifiedType( 14165 BaseType, MoveAssignOperator->getMethodQualifiers()), 14166 VK_LValue, BasePath); 14167 14168 // Build the move. 14169 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType, 14170 To, From, 14171 /*CopyingBaseSubobject=*/true, 14172 /*Copying=*/false); 14173 if (Move.isInvalid()) { 14174 MoveAssignOperator->setInvalidDecl(); 14175 return; 14176 } 14177 14178 // Success! Record the move. 14179 Statements.push_back(Move.getAs<Expr>()); 14180 } 14181 14182 // Assign non-static members. 14183 for (auto *Field : ClassDecl->fields()) { 14184 // FIXME: We should form some kind of AST representation for the implied 14185 // memcpy in a union copy operation. 14186 if (Field->isUnnamedBitfield() || Field->getParent()->isUnion()) 14187 continue; 14188 14189 if (Field->isInvalidDecl()) { 14190 Invalid = true; 14191 continue; 14192 } 14193 14194 // Check for members of reference type; we can't move those. 14195 if (Field->getType()->isReferenceType()) { 14196 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 14197 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 14198 Diag(Field->getLocation(), diag::note_declared_at); 14199 Invalid = true; 14200 continue; 14201 } 14202 14203 // Check for members of const-qualified, non-class type. 14204 QualType BaseType = Context.getBaseElementType(Field->getType()); 14205 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 14206 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 14207 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 14208 Diag(Field->getLocation(), diag::note_declared_at); 14209 Invalid = true; 14210 continue; 14211 } 14212 14213 // Suppress assigning zero-width bitfields. 14214 if (Field->isZeroLengthBitField(Context)) 14215 continue; 14216 14217 QualType FieldType = Field->getType().getNonReferenceType(); 14218 if (FieldType->isIncompleteArrayType()) { 14219 assert(ClassDecl->hasFlexibleArrayMember() && 14220 "Incomplete array type is not valid"); 14221 continue; 14222 } 14223 14224 // Build references to the field in the object we're copying from and to. 14225 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 14226 LookupMemberName); 14227 MemberLookup.addDecl(Field); 14228 MemberLookup.resolveKind(); 14229 MemberBuilder From(MoveOther, OtherRefType, 14230 /*IsArrow=*/false, MemberLookup); 14231 MemberBuilder To(This, getCurrentThisType(), 14232 /*IsArrow=*/true, MemberLookup); 14233 14234 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue 14235 "Member reference with rvalue base must be rvalue except for reference " 14236 "members, which aren't allowed for move assignment."); 14237 14238 // Build the move of this field. 14239 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType, 14240 To, From, 14241 /*CopyingBaseSubobject=*/false, 14242 /*Copying=*/false); 14243 if (Move.isInvalid()) { 14244 MoveAssignOperator->setInvalidDecl(); 14245 return; 14246 } 14247 14248 // Success! Record the copy. 14249 Statements.push_back(Move.getAs<Stmt>()); 14250 } 14251 14252 if (!Invalid) { 14253 // Add a "return *this;" 14254 ExprResult ThisObj = 14255 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 14256 14257 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 14258 if (Return.isInvalid()) 14259 Invalid = true; 14260 else 14261 Statements.push_back(Return.getAs<Stmt>()); 14262 } 14263 14264 if (Invalid) { 14265 MoveAssignOperator->setInvalidDecl(); 14266 return; 14267 } 14268 14269 StmtResult Body; 14270 { 14271 CompoundScopeRAII CompoundScope(*this); 14272 Body = ActOnCompoundStmt(Loc, Loc, Statements, 14273 /*isStmtExpr=*/false); 14274 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 14275 } 14276 MoveAssignOperator->setBody(Body.getAs<Stmt>()); 14277 MoveAssignOperator->markUsed(Context); 14278 14279 if (ASTMutationListener *L = getASTMutationListener()) { 14280 L->CompletedImplicitDefinition(MoveAssignOperator); 14281 } 14282 } 14283 14284 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor( 14285 CXXRecordDecl *ClassDecl) { 14286 // C++ [class.copy]p4: 14287 // If the class definition does not explicitly declare a copy 14288 // constructor, one is declared implicitly. 14289 assert(ClassDecl->needsImplicitCopyConstructor()); 14290 14291 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor); 14292 if (DSM.isAlreadyBeingDeclared()) 14293 return nullptr; 14294 14295 QualType ClassType = Context.getTypeDeclType(ClassDecl); 14296 QualType ArgType = ClassType; 14297 bool Const = ClassDecl->implicitCopyConstructorHasConstParam(); 14298 if (Const) 14299 ArgType = ArgType.withConst(); 14300 14301 LangAS AS = getDefaultCXXMethodAddrSpace(); 14302 if (AS != LangAS::Default) 14303 ArgType = Context.getAddrSpaceQualType(ArgType, AS); 14304 14305 ArgType = Context.getLValueReferenceType(ArgType); 14306 14307 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 14308 CXXCopyConstructor, 14309 Const); 14310 14311 DeclarationName Name 14312 = Context.DeclarationNames.getCXXConstructorName( 14313 Context.getCanonicalType(ClassType)); 14314 SourceLocation ClassLoc = ClassDecl->getLocation(); 14315 DeclarationNameInfo NameInfo(Name, ClassLoc); 14316 14317 // An implicitly-declared copy constructor is an inline public 14318 // member of its class. 14319 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create( 14320 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 14321 ExplicitSpecifier(), 14322 /*isInline=*/true, 14323 /*isImplicitlyDeclared=*/true, 14324 Constexpr ? CSK_constexpr : CSK_unspecified); 14325 CopyConstructor->setAccess(AS_public); 14326 CopyConstructor->setDefaulted(); 14327 14328 if (getLangOpts().CUDA) { 14329 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor, 14330 CopyConstructor, 14331 /* ConstRHS */ Const, 14332 /* Diagnose */ false); 14333 } 14334 14335 setupImplicitSpecialMemberType(CopyConstructor, Context.VoidTy, ArgType); 14336 14337 // Add the parameter to the constructor. 14338 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor, 14339 ClassLoc, ClassLoc, 14340 /*IdentifierInfo=*/nullptr, 14341 ArgType, /*TInfo=*/nullptr, 14342 SC_None, nullptr); 14343 CopyConstructor->setParams(FromParam); 14344 14345 CopyConstructor->setTrivial( 14346 ClassDecl->needsOverloadResolutionForCopyConstructor() 14347 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor) 14348 : ClassDecl->hasTrivialCopyConstructor()); 14349 14350 CopyConstructor->setTrivialForCall( 14351 ClassDecl->hasAttr<TrivialABIAttr>() || 14352 (ClassDecl->needsOverloadResolutionForCopyConstructor() 14353 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor, 14354 TAH_ConsiderTrivialABI) 14355 : ClassDecl->hasTrivialCopyConstructorForCall())); 14356 14357 // Note that we have declared this constructor. 14358 ++getASTContext().NumImplicitCopyConstructorsDeclared; 14359 14360 Scope *S = getScopeForContext(ClassDecl); 14361 CheckImplicitSpecialMemberDeclaration(S, CopyConstructor); 14362 14363 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor)) { 14364 ClassDecl->setImplicitCopyConstructorIsDeleted(); 14365 SetDeclDeleted(CopyConstructor, ClassLoc); 14366 } 14367 14368 if (S) 14369 PushOnScopeChains(CopyConstructor, S, false); 14370 ClassDecl->addDecl(CopyConstructor); 14371 14372 return CopyConstructor; 14373 } 14374 14375 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation, 14376 CXXConstructorDecl *CopyConstructor) { 14377 assert((CopyConstructor->isDefaulted() && 14378 CopyConstructor->isCopyConstructor() && 14379 !CopyConstructor->doesThisDeclarationHaveABody() && 14380 !CopyConstructor->isDeleted()) && 14381 "DefineImplicitCopyConstructor - call it for implicit copy ctor"); 14382 if (CopyConstructor->willHaveBody() || CopyConstructor->isInvalidDecl()) 14383 return; 14384 14385 CXXRecordDecl *ClassDecl = CopyConstructor->getParent(); 14386 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor"); 14387 14388 SynthesizedFunctionScope Scope(*this, CopyConstructor); 14389 14390 // The exception specification is needed because we are defining the 14391 // function. 14392 ResolveExceptionSpec(CurrentLocation, 14393 CopyConstructor->getType()->castAs<FunctionProtoType>()); 14394 MarkVTableUsed(CurrentLocation, ClassDecl); 14395 14396 // Add a context note for diagnostics produced after this point. 14397 Scope.addContextNote(CurrentLocation); 14398 14399 // C++11 [class.copy]p7: 14400 // The [definition of an implicitly declared copy constructor] is 14401 // deprecated if the class has a user-declared copy assignment operator 14402 // or a user-declared destructor. 14403 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit()) 14404 diagnoseDeprecatedCopyOperation(*this, CopyConstructor); 14405 14406 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false)) { 14407 CopyConstructor->setInvalidDecl(); 14408 } else { 14409 SourceLocation Loc = CopyConstructor->getEndLoc().isValid() 14410 ? CopyConstructor->getEndLoc() 14411 : CopyConstructor->getLocation(); 14412 Sema::CompoundScopeRAII CompoundScope(*this); 14413 CopyConstructor->setBody( 14414 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>()); 14415 CopyConstructor->markUsed(Context); 14416 } 14417 14418 if (ASTMutationListener *L = getASTMutationListener()) { 14419 L->CompletedImplicitDefinition(CopyConstructor); 14420 } 14421 } 14422 14423 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor( 14424 CXXRecordDecl *ClassDecl) { 14425 assert(ClassDecl->needsImplicitMoveConstructor()); 14426 14427 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor); 14428 if (DSM.isAlreadyBeingDeclared()) 14429 return nullptr; 14430 14431 QualType ClassType = Context.getTypeDeclType(ClassDecl); 14432 14433 QualType ArgType = ClassType; 14434 LangAS AS = getDefaultCXXMethodAddrSpace(); 14435 if (AS != LangAS::Default) 14436 ArgType = Context.getAddrSpaceQualType(ClassType, AS); 14437 ArgType = Context.getRValueReferenceType(ArgType); 14438 14439 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 14440 CXXMoveConstructor, 14441 false); 14442 14443 DeclarationName Name 14444 = Context.DeclarationNames.getCXXConstructorName( 14445 Context.getCanonicalType(ClassType)); 14446 SourceLocation ClassLoc = ClassDecl->getLocation(); 14447 DeclarationNameInfo NameInfo(Name, ClassLoc); 14448 14449 // C++11 [class.copy]p11: 14450 // An implicitly-declared copy/move constructor is an inline public 14451 // member of its class. 14452 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create( 14453 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 14454 ExplicitSpecifier(), 14455 /*isInline=*/true, 14456 /*isImplicitlyDeclared=*/true, 14457 Constexpr ? CSK_constexpr : CSK_unspecified); 14458 MoveConstructor->setAccess(AS_public); 14459 MoveConstructor->setDefaulted(); 14460 14461 if (getLangOpts().CUDA) { 14462 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor, 14463 MoveConstructor, 14464 /* ConstRHS */ false, 14465 /* Diagnose */ false); 14466 } 14467 14468 setupImplicitSpecialMemberType(MoveConstructor, Context.VoidTy, ArgType); 14469 14470 // Add the parameter to the constructor. 14471 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor, 14472 ClassLoc, ClassLoc, 14473 /*IdentifierInfo=*/nullptr, 14474 ArgType, /*TInfo=*/nullptr, 14475 SC_None, nullptr); 14476 MoveConstructor->setParams(FromParam); 14477 14478 MoveConstructor->setTrivial( 14479 ClassDecl->needsOverloadResolutionForMoveConstructor() 14480 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor) 14481 : ClassDecl->hasTrivialMoveConstructor()); 14482 14483 MoveConstructor->setTrivialForCall( 14484 ClassDecl->hasAttr<TrivialABIAttr>() || 14485 (ClassDecl->needsOverloadResolutionForMoveConstructor() 14486 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor, 14487 TAH_ConsiderTrivialABI) 14488 : ClassDecl->hasTrivialMoveConstructorForCall())); 14489 14490 // Note that we have declared this constructor. 14491 ++getASTContext().NumImplicitMoveConstructorsDeclared; 14492 14493 Scope *S = getScopeForContext(ClassDecl); 14494 CheckImplicitSpecialMemberDeclaration(S, MoveConstructor); 14495 14496 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) { 14497 ClassDecl->setImplicitMoveConstructorIsDeleted(); 14498 SetDeclDeleted(MoveConstructor, ClassLoc); 14499 } 14500 14501 if (S) 14502 PushOnScopeChains(MoveConstructor, S, false); 14503 ClassDecl->addDecl(MoveConstructor); 14504 14505 return MoveConstructor; 14506 } 14507 14508 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation, 14509 CXXConstructorDecl *MoveConstructor) { 14510 assert((MoveConstructor->isDefaulted() && 14511 MoveConstructor->isMoveConstructor() && 14512 !MoveConstructor->doesThisDeclarationHaveABody() && 14513 !MoveConstructor->isDeleted()) && 14514 "DefineImplicitMoveConstructor - call it for implicit move ctor"); 14515 if (MoveConstructor->willHaveBody() || MoveConstructor->isInvalidDecl()) 14516 return; 14517 14518 CXXRecordDecl *ClassDecl = MoveConstructor->getParent(); 14519 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor"); 14520 14521 SynthesizedFunctionScope Scope(*this, MoveConstructor); 14522 14523 // The exception specification is needed because we are defining the 14524 // function. 14525 ResolveExceptionSpec(CurrentLocation, 14526 MoveConstructor->getType()->castAs<FunctionProtoType>()); 14527 MarkVTableUsed(CurrentLocation, ClassDecl); 14528 14529 // Add a context note for diagnostics produced after this point. 14530 Scope.addContextNote(CurrentLocation); 14531 14532 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false)) { 14533 MoveConstructor->setInvalidDecl(); 14534 } else { 14535 SourceLocation Loc = MoveConstructor->getEndLoc().isValid() 14536 ? MoveConstructor->getEndLoc() 14537 : MoveConstructor->getLocation(); 14538 Sema::CompoundScopeRAII CompoundScope(*this); 14539 MoveConstructor->setBody(ActOnCompoundStmt( 14540 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>()); 14541 MoveConstructor->markUsed(Context); 14542 } 14543 14544 if (ASTMutationListener *L = getASTMutationListener()) { 14545 L->CompletedImplicitDefinition(MoveConstructor); 14546 } 14547 } 14548 14549 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) { 14550 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD); 14551 } 14552 14553 void Sema::DefineImplicitLambdaToFunctionPointerConversion( 14554 SourceLocation CurrentLocation, 14555 CXXConversionDecl *Conv) { 14556 SynthesizedFunctionScope Scope(*this, Conv); 14557 assert(!Conv->getReturnType()->isUndeducedType()); 14558 14559 CXXRecordDecl *Lambda = Conv->getParent(); 14560 FunctionDecl *CallOp = Lambda->getLambdaCallOperator(); 14561 FunctionDecl *Invoker = Lambda->getLambdaStaticInvoker(); 14562 14563 if (auto *TemplateArgs = Conv->getTemplateSpecializationArgs()) { 14564 CallOp = InstantiateFunctionDeclaration( 14565 CallOp->getDescribedFunctionTemplate(), TemplateArgs, CurrentLocation); 14566 if (!CallOp) 14567 return; 14568 14569 Invoker = InstantiateFunctionDeclaration( 14570 Invoker->getDescribedFunctionTemplate(), TemplateArgs, CurrentLocation); 14571 if (!Invoker) 14572 return; 14573 } 14574 14575 if (CallOp->isInvalidDecl()) 14576 return; 14577 14578 // Mark the call operator referenced (and add to pending instantiations 14579 // if necessary). 14580 // For both the conversion and static-invoker template specializations 14581 // we construct their body's in this function, so no need to add them 14582 // to the PendingInstantiations. 14583 MarkFunctionReferenced(CurrentLocation, CallOp); 14584 14585 // Fill in the __invoke function with a dummy implementation. IR generation 14586 // will fill in the actual details. Update its type in case it contained 14587 // an 'auto'. 14588 Invoker->markUsed(Context); 14589 Invoker->setReferenced(); 14590 Invoker->setType(Conv->getReturnType()->getPointeeType()); 14591 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation())); 14592 14593 // Construct the body of the conversion function { return __invoke; }. 14594 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(), 14595 VK_LValue, Conv->getLocation()); 14596 assert(FunctionRef && "Can't refer to __invoke function?"); 14597 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get(); 14598 Conv->setBody(CompoundStmt::Create(Context, Return, Conv->getLocation(), 14599 Conv->getLocation())); 14600 Conv->markUsed(Context); 14601 Conv->setReferenced(); 14602 14603 if (ASTMutationListener *L = getASTMutationListener()) { 14604 L->CompletedImplicitDefinition(Conv); 14605 L->CompletedImplicitDefinition(Invoker); 14606 } 14607 } 14608 14609 14610 14611 void Sema::DefineImplicitLambdaToBlockPointerConversion( 14612 SourceLocation CurrentLocation, 14613 CXXConversionDecl *Conv) 14614 { 14615 assert(!Conv->getParent()->isGenericLambda()); 14616 14617 SynthesizedFunctionScope Scope(*this, Conv); 14618 14619 // Copy-initialize the lambda object as needed to capture it. 14620 Expr *This = ActOnCXXThis(CurrentLocation).get(); 14621 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get(); 14622 14623 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation, 14624 Conv->getLocation(), 14625 Conv, DerefThis); 14626 14627 // If we're not under ARC, make sure we still get the _Block_copy/autorelease 14628 // behavior. Note that only the general conversion function does this 14629 // (since it's unusable otherwise); in the case where we inline the 14630 // block literal, it has block literal lifetime semantics. 14631 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount) 14632 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(), 14633 CK_CopyAndAutoreleaseBlockObject, 14634 BuildBlock.get(), nullptr, VK_RValue); 14635 14636 if (BuildBlock.isInvalid()) { 14637 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 14638 Conv->setInvalidDecl(); 14639 return; 14640 } 14641 14642 // Create the return statement that returns the block from the conversion 14643 // function. 14644 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get()); 14645 if (Return.isInvalid()) { 14646 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 14647 Conv->setInvalidDecl(); 14648 return; 14649 } 14650 14651 // Set the body of the conversion function. 14652 Stmt *ReturnS = Return.get(); 14653 Conv->setBody(CompoundStmt::Create(Context, ReturnS, Conv->getLocation(), 14654 Conv->getLocation())); 14655 Conv->markUsed(Context); 14656 14657 // We're done; notify the mutation listener, if any. 14658 if (ASTMutationListener *L = getASTMutationListener()) { 14659 L->CompletedImplicitDefinition(Conv); 14660 } 14661 } 14662 14663 /// Determine whether the given list arguments contains exactly one 14664 /// "real" (non-default) argument. 14665 static bool hasOneRealArgument(MultiExprArg Args) { 14666 switch (Args.size()) { 14667 case 0: 14668 return false; 14669 14670 default: 14671 if (!Args[1]->isDefaultArgument()) 14672 return false; 14673 14674 LLVM_FALLTHROUGH; 14675 case 1: 14676 return !Args[0]->isDefaultArgument(); 14677 } 14678 14679 return false; 14680 } 14681 14682 ExprResult 14683 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 14684 NamedDecl *FoundDecl, 14685 CXXConstructorDecl *Constructor, 14686 MultiExprArg ExprArgs, 14687 bool HadMultipleCandidates, 14688 bool IsListInitialization, 14689 bool IsStdInitListInitialization, 14690 bool RequiresZeroInit, 14691 unsigned ConstructKind, 14692 SourceRange ParenRange) { 14693 bool Elidable = false; 14694 14695 // C++0x [class.copy]p34: 14696 // When certain criteria are met, an implementation is allowed to 14697 // omit the copy/move construction of a class object, even if the 14698 // copy/move constructor and/or destructor for the object have 14699 // side effects. [...] 14700 // - when a temporary class object that has not been bound to a 14701 // reference (12.2) would be copied/moved to a class object 14702 // with the same cv-unqualified type, the copy/move operation 14703 // can be omitted by constructing the temporary object 14704 // directly into the target of the omitted copy/move 14705 if (ConstructKind == CXXConstructExpr::CK_Complete && Constructor && 14706 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) { 14707 Expr *SubExpr = ExprArgs[0]; 14708 Elidable = SubExpr->isTemporaryObject( 14709 Context, cast<CXXRecordDecl>(FoundDecl->getDeclContext())); 14710 } 14711 14712 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, 14713 FoundDecl, Constructor, 14714 Elidable, ExprArgs, HadMultipleCandidates, 14715 IsListInitialization, 14716 IsStdInitListInitialization, RequiresZeroInit, 14717 ConstructKind, ParenRange); 14718 } 14719 14720 ExprResult 14721 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 14722 NamedDecl *FoundDecl, 14723 CXXConstructorDecl *Constructor, 14724 bool Elidable, 14725 MultiExprArg ExprArgs, 14726 bool HadMultipleCandidates, 14727 bool IsListInitialization, 14728 bool IsStdInitListInitialization, 14729 bool RequiresZeroInit, 14730 unsigned ConstructKind, 14731 SourceRange ParenRange) { 14732 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { 14733 Constructor = findInheritingConstructor(ConstructLoc, Constructor, Shadow); 14734 if (DiagnoseUseOfDecl(Constructor, ConstructLoc)) 14735 return ExprError(); 14736 } 14737 14738 return BuildCXXConstructExpr( 14739 ConstructLoc, DeclInitType, Constructor, Elidable, ExprArgs, 14740 HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization, 14741 RequiresZeroInit, ConstructKind, ParenRange); 14742 } 14743 14744 /// BuildCXXConstructExpr - Creates a complete call to a constructor, 14745 /// including handling of its default argument expressions. 14746 ExprResult 14747 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 14748 CXXConstructorDecl *Constructor, 14749 bool Elidable, 14750 MultiExprArg ExprArgs, 14751 bool HadMultipleCandidates, 14752 bool IsListInitialization, 14753 bool IsStdInitListInitialization, 14754 bool RequiresZeroInit, 14755 unsigned ConstructKind, 14756 SourceRange ParenRange) { 14757 assert(declaresSameEntity( 14758 Constructor->getParent(), 14759 DeclInitType->getBaseElementTypeUnsafe()->getAsCXXRecordDecl()) && 14760 "given constructor for wrong type"); 14761 MarkFunctionReferenced(ConstructLoc, Constructor); 14762 if (getLangOpts().CUDA && !CheckCUDACall(ConstructLoc, Constructor)) 14763 return ExprError(); 14764 14765 return CXXConstructExpr::Create( 14766 Context, DeclInitType, ConstructLoc, Constructor, Elidable, 14767 ExprArgs, HadMultipleCandidates, IsListInitialization, 14768 IsStdInitListInitialization, RequiresZeroInit, 14769 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind), 14770 ParenRange); 14771 } 14772 14773 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) { 14774 assert(Field->hasInClassInitializer()); 14775 14776 // If we already have the in-class initializer nothing needs to be done. 14777 if (Field->getInClassInitializer()) 14778 return CXXDefaultInitExpr::Create(Context, Loc, Field, CurContext); 14779 14780 // If we might have already tried and failed to instantiate, don't try again. 14781 if (Field->isInvalidDecl()) 14782 return ExprError(); 14783 14784 // Maybe we haven't instantiated the in-class initializer. Go check the 14785 // pattern FieldDecl to see if it has one. 14786 CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent()); 14787 14788 if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) { 14789 CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern(); 14790 DeclContext::lookup_result Lookup = 14791 ClassPattern->lookup(Field->getDeclName()); 14792 14793 // Lookup can return at most two results: the pattern for the field, or the 14794 // injected class name of the parent record. No other member can have the 14795 // same name as the field. 14796 // In modules mode, lookup can return multiple results (coming from 14797 // different modules). 14798 assert((getLangOpts().Modules || (!Lookup.empty() && Lookup.size() <= 2)) && 14799 "more than two lookup results for field name"); 14800 FieldDecl *Pattern = dyn_cast<FieldDecl>(Lookup[0]); 14801 if (!Pattern) { 14802 assert(isa<CXXRecordDecl>(Lookup[0]) && 14803 "cannot have other non-field member with same name"); 14804 for (auto L : Lookup) 14805 if (isa<FieldDecl>(L)) { 14806 Pattern = cast<FieldDecl>(L); 14807 break; 14808 } 14809 assert(Pattern && "We must have set the Pattern!"); 14810 } 14811 14812 if (!Pattern->hasInClassInitializer() || 14813 InstantiateInClassInitializer(Loc, Field, Pattern, 14814 getTemplateInstantiationArgs(Field))) { 14815 // Don't diagnose this again. 14816 Field->setInvalidDecl(); 14817 return ExprError(); 14818 } 14819 return CXXDefaultInitExpr::Create(Context, Loc, Field, CurContext); 14820 } 14821 14822 // DR1351: 14823 // If the brace-or-equal-initializer of a non-static data member 14824 // invokes a defaulted default constructor of its class or of an 14825 // enclosing class in a potentially evaluated subexpression, the 14826 // program is ill-formed. 14827 // 14828 // This resolution is unworkable: the exception specification of the 14829 // default constructor can be needed in an unevaluated context, in 14830 // particular, in the operand of a noexcept-expression, and we can be 14831 // unable to compute an exception specification for an enclosed class. 14832 // 14833 // Any attempt to resolve the exception specification of a defaulted default 14834 // constructor before the initializer is lexically complete will ultimately 14835 // come here at which point we can diagnose it. 14836 RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext(); 14837 Diag(Loc, diag::err_in_class_initializer_not_yet_parsed) 14838 << OutermostClass << Field; 14839 Diag(Field->getEndLoc(), diag::note_in_class_initializer_not_yet_parsed); 14840 // Recover by marking the field invalid, unless we're in a SFINAE context. 14841 if (!isSFINAEContext()) 14842 Field->setInvalidDecl(); 14843 return ExprError(); 14844 } 14845 14846 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) { 14847 if (VD->isInvalidDecl()) return; 14848 14849 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl()); 14850 if (ClassDecl->isInvalidDecl()) return; 14851 if (ClassDecl->hasIrrelevantDestructor()) return; 14852 if (ClassDecl->isDependentContext()) return; 14853 14854 if (VD->isNoDestroy(getASTContext())) 14855 return; 14856 14857 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl); 14858 14859 // If this is an array, we'll require the destructor during initialization, so 14860 // we can skip over this. We still want to emit exit-time destructor warnings 14861 // though. 14862 if (!VD->getType()->isArrayType()) { 14863 MarkFunctionReferenced(VD->getLocation(), Destructor); 14864 CheckDestructorAccess(VD->getLocation(), Destructor, 14865 PDiag(diag::err_access_dtor_var) 14866 << VD->getDeclName() << VD->getType()); 14867 DiagnoseUseOfDecl(Destructor, VD->getLocation()); 14868 } 14869 14870 if (Destructor->isTrivial()) return; 14871 14872 // If the destructor is constexpr, check whether the variable has constant 14873 // destruction now. 14874 if (Destructor->isConstexpr()) { 14875 bool HasConstantInit = false; 14876 if (VD->getInit() && !VD->getInit()->isValueDependent()) 14877 HasConstantInit = VD->evaluateValue(); 14878 SmallVector<PartialDiagnosticAt, 8> Notes; 14879 if (!VD->evaluateDestruction(Notes) && VD->isConstexpr() && 14880 HasConstantInit) { 14881 Diag(VD->getLocation(), 14882 diag::err_constexpr_var_requires_const_destruction) << VD; 14883 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 14884 Diag(Notes[I].first, Notes[I].second); 14885 } 14886 } 14887 14888 if (!VD->hasGlobalStorage()) return; 14889 14890 // Emit warning for non-trivial dtor in global scope (a real global, 14891 // class-static, function-static). 14892 Diag(VD->getLocation(), diag::warn_exit_time_destructor); 14893 14894 // TODO: this should be re-enabled for static locals by !CXAAtExit 14895 if (!VD->isStaticLocal()) 14896 Diag(VD->getLocation(), diag::warn_global_destructor); 14897 } 14898 14899 /// Given a constructor and the set of arguments provided for the 14900 /// constructor, convert the arguments and add any required default arguments 14901 /// to form a proper call to this constructor. 14902 /// 14903 /// \returns true if an error occurred, false otherwise. 14904 bool 14905 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor, 14906 MultiExprArg ArgsPtr, 14907 SourceLocation Loc, 14908 SmallVectorImpl<Expr*> &ConvertedArgs, 14909 bool AllowExplicit, 14910 bool IsListInitialization) { 14911 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall. 14912 unsigned NumArgs = ArgsPtr.size(); 14913 Expr **Args = ArgsPtr.data(); 14914 14915 const auto *Proto = Constructor->getType()->castAs<FunctionProtoType>(); 14916 unsigned NumParams = Proto->getNumParams(); 14917 14918 // If too few arguments are available, we'll fill in the rest with defaults. 14919 if (NumArgs < NumParams) 14920 ConvertedArgs.reserve(NumParams); 14921 else 14922 ConvertedArgs.reserve(NumArgs); 14923 14924 VariadicCallType CallType = 14925 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; 14926 SmallVector<Expr *, 8> AllArgs; 14927 bool Invalid = GatherArgumentsForCall(Loc, Constructor, 14928 Proto, 0, 14929 llvm::makeArrayRef(Args, NumArgs), 14930 AllArgs, 14931 CallType, AllowExplicit, 14932 IsListInitialization); 14933 ConvertedArgs.append(AllArgs.begin(), AllArgs.end()); 14934 14935 DiagnoseSentinelCalls(Constructor, Loc, AllArgs); 14936 14937 CheckConstructorCall(Constructor, 14938 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()), 14939 Proto, Loc); 14940 14941 return Invalid; 14942 } 14943 14944 static inline bool 14945 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef, 14946 const FunctionDecl *FnDecl) { 14947 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext(); 14948 if (isa<NamespaceDecl>(DC)) { 14949 return SemaRef.Diag(FnDecl->getLocation(), 14950 diag::err_operator_new_delete_declared_in_namespace) 14951 << FnDecl->getDeclName(); 14952 } 14953 14954 if (isa<TranslationUnitDecl>(DC) && 14955 FnDecl->getStorageClass() == SC_Static) { 14956 return SemaRef.Diag(FnDecl->getLocation(), 14957 diag::err_operator_new_delete_declared_static) 14958 << FnDecl->getDeclName(); 14959 } 14960 14961 return false; 14962 } 14963 14964 static QualType 14965 RemoveAddressSpaceFromPtr(Sema &SemaRef, const PointerType *PtrTy) { 14966 QualType QTy = PtrTy->getPointeeType(); 14967 QTy = SemaRef.Context.removeAddrSpaceQualType(QTy); 14968 return SemaRef.Context.getPointerType(QTy); 14969 } 14970 14971 static inline bool 14972 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl, 14973 CanQualType ExpectedResultType, 14974 CanQualType ExpectedFirstParamType, 14975 unsigned DependentParamTypeDiag, 14976 unsigned InvalidParamTypeDiag) { 14977 QualType ResultType = 14978 FnDecl->getType()->castAs<FunctionType>()->getReturnType(); 14979 14980 // Check that the result type is not dependent. 14981 if (ResultType->isDependentType()) 14982 return SemaRef.Diag(FnDecl->getLocation(), 14983 diag::err_operator_new_delete_dependent_result_type) 14984 << FnDecl->getDeclName() << ExpectedResultType; 14985 14986 // The operator is valid on any address space for OpenCL. 14987 if (SemaRef.getLangOpts().OpenCLCPlusPlus) { 14988 if (auto *PtrTy = ResultType->getAs<PointerType>()) { 14989 ResultType = RemoveAddressSpaceFromPtr(SemaRef, PtrTy); 14990 } 14991 } 14992 14993 // Check that the result type is what we expect. 14994 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType) 14995 return SemaRef.Diag(FnDecl->getLocation(), 14996 diag::err_operator_new_delete_invalid_result_type) 14997 << FnDecl->getDeclName() << ExpectedResultType; 14998 14999 // A function template must have at least 2 parameters. 15000 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2) 15001 return SemaRef.Diag(FnDecl->getLocation(), 15002 diag::err_operator_new_delete_template_too_few_parameters) 15003 << FnDecl->getDeclName(); 15004 15005 // The function decl must have at least 1 parameter. 15006 if (FnDecl->getNumParams() == 0) 15007 return SemaRef.Diag(FnDecl->getLocation(), 15008 diag::err_operator_new_delete_too_few_parameters) 15009 << FnDecl->getDeclName(); 15010 15011 // Check the first parameter type is not dependent. 15012 QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); 15013 if (FirstParamType->isDependentType()) 15014 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag) 15015 << FnDecl->getDeclName() << ExpectedFirstParamType; 15016 15017 // Check that the first parameter type is what we expect. 15018 if (SemaRef.getLangOpts().OpenCLCPlusPlus) { 15019 // The operator is valid on any address space for OpenCL. 15020 if (auto *PtrTy = 15021 FnDecl->getParamDecl(0)->getType()->getAs<PointerType>()) { 15022 FirstParamType = RemoveAddressSpaceFromPtr(SemaRef, PtrTy); 15023 } 15024 } 15025 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() != 15026 ExpectedFirstParamType) 15027 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag) 15028 << FnDecl->getDeclName() << ExpectedFirstParamType; 15029 15030 return false; 15031 } 15032 15033 static bool 15034 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { 15035 // C++ [basic.stc.dynamic.allocation]p1: 15036 // A program is ill-formed if an allocation function is declared in a 15037 // namespace scope other than global scope or declared static in global 15038 // scope. 15039 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 15040 return true; 15041 15042 CanQualType SizeTy = 15043 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType()); 15044 15045 // C++ [basic.stc.dynamic.allocation]p1: 15046 // The return type shall be void*. The first parameter shall have type 15047 // std::size_t. 15048 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy, 15049 SizeTy, 15050 diag::err_operator_new_dependent_param_type, 15051 diag::err_operator_new_param_type)) 15052 return true; 15053 15054 // C++ [basic.stc.dynamic.allocation]p1: 15055 // The first parameter shall not have an associated default argument. 15056 if (FnDecl->getParamDecl(0)->hasDefaultArg()) 15057 return SemaRef.Diag(FnDecl->getLocation(), 15058 diag::err_operator_new_default_arg) 15059 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange(); 15060 15061 return false; 15062 } 15063 15064 static bool 15065 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) { 15066 // C++ [basic.stc.dynamic.deallocation]p1: 15067 // A program is ill-formed if deallocation functions are declared in a 15068 // namespace scope other than global scope or declared static in global 15069 // scope. 15070 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 15071 return true; 15072 15073 auto *MD = dyn_cast<CXXMethodDecl>(FnDecl); 15074 15075 // C++ P0722: 15076 // Within a class C, the first parameter of a destroying operator delete 15077 // shall be of type C *. The first parameter of any other deallocation 15078 // function shall be of type void *. 15079 CanQualType ExpectedFirstParamType = 15080 MD && MD->isDestroyingOperatorDelete() 15081 ? SemaRef.Context.getCanonicalType(SemaRef.Context.getPointerType( 15082 SemaRef.Context.getRecordType(MD->getParent()))) 15083 : SemaRef.Context.VoidPtrTy; 15084 15085 // C++ [basic.stc.dynamic.deallocation]p2: 15086 // Each deallocation function shall return void 15087 if (CheckOperatorNewDeleteTypes( 15088 SemaRef, FnDecl, SemaRef.Context.VoidTy, ExpectedFirstParamType, 15089 diag::err_operator_delete_dependent_param_type, 15090 diag::err_operator_delete_param_type)) 15091 return true; 15092 15093 // C++ P0722: 15094 // A destroying operator delete shall be a usual deallocation function. 15095 if (MD && !MD->getParent()->isDependentContext() && 15096 MD->isDestroyingOperatorDelete() && 15097 !SemaRef.isUsualDeallocationFunction(MD)) { 15098 SemaRef.Diag(MD->getLocation(), 15099 diag::err_destroying_operator_delete_not_usual); 15100 return true; 15101 } 15102 15103 return false; 15104 } 15105 15106 /// CheckOverloadedOperatorDeclaration - Check whether the declaration 15107 /// of this overloaded operator is well-formed. If so, returns false; 15108 /// otherwise, emits appropriate diagnostics and returns true. 15109 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) { 15110 assert(FnDecl && FnDecl->isOverloadedOperator() && 15111 "Expected an overloaded operator declaration"); 15112 15113 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator(); 15114 15115 // C++ [over.oper]p5: 15116 // The allocation and deallocation functions, operator new, 15117 // operator new[], operator delete and operator delete[], are 15118 // described completely in 3.7.3. The attributes and restrictions 15119 // found in the rest of this subclause do not apply to them unless 15120 // explicitly stated in 3.7.3. 15121 if (Op == OO_Delete || Op == OO_Array_Delete) 15122 return CheckOperatorDeleteDeclaration(*this, FnDecl); 15123 15124 if (Op == OO_New || Op == OO_Array_New) 15125 return CheckOperatorNewDeclaration(*this, FnDecl); 15126 15127 // C++ [over.oper]p6: 15128 // An operator function shall either be a non-static member 15129 // function or be a non-member function and have at least one 15130 // parameter whose type is a class, a reference to a class, an 15131 // enumeration, or a reference to an enumeration. 15132 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { 15133 if (MethodDecl->isStatic()) 15134 return Diag(FnDecl->getLocation(), 15135 diag::err_operator_overload_static) << FnDecl->getDeclName(); 15136 } else { 15137 bool ClassOrEnumParam = false; 15138 for (auto Param : FnDecl->parameters()) { 15139 QualType ParamType = Param->getType().getNonReferenceType(); 15140 if (ParamType->isDependentType() || ParamType->isRecordType() || 15141 ParamType->isEnumeralType()) { 15142 ClassOrEnumParam = true; 15143 break; 15144 } 15145 } 15146 15147 if (!ClassOrEnumParam) 15148 return Diag(FnDecl->getLocation(), 15149 diag::err_operator_overload_needs_class_or_enum) 15150 << FnDecl->getDeclName(); 15151 } 15152 15153 // C++ [over.oper]p8: 15154 // An operator function cannot have default arguments (8.3.6), 15155 // except where explicitly stated below. 15156 // 15157 // Only the function-call operator allows default arguments 15158 // (C++ [over.call]p1). 15159 if (Op != OO_Call) { 15160 for (auto Param : FnDecl->parameters()) { 15161 if (Param->hasDefaultArg()) 15162 return Diag(Param->getLocation(), 15163 diag::err_operator_overload_default_arg) 15164 << FnDecl->getDeclName() << Param->getDefaultArgRange(); 15165 } 15166 } 15167 15168 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = { 15169 { false, false, false } 15170 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ 15171 , { Unary, Binary, MemberOnly } 15172 #include "clang/Basic/OperatorKinds.def" 15173 }; 15174 15175 bool CanBeUnaryOperator = OperatorUses[Op][0]; 15176 bool CanBeBinaryOperator = OperatorUses[Op][1]; 15177 bool MustBeMemberOperator = OperatorUses[Op][2]; 15178 15179 // C++ [over.oper]p8: 15180 // [...] Operator functions cannot have more or fewer parameters 15181 // than the number required for the corresponding operator, as 15182 // described in the rest of this subclause. 15183 unsigned NumParams = FnDecl->getNumParams() 15184 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0); 15185 if (Op != OO_Call && 15186 ((NumParams == 1 && !CanBeUnaryOperator) || 15187 (NumParams == 2 && !CanBeBinaryOperator) || 15188 (NumParams < 1) || (NumParams > 2))) { 15189 // We have the wrong number of parameters. 15190 unsigned ErrorKind; 15191 if (CanBeUnaryOperator && CanBeBinaryOperator) { 15192 ErrorKind = 2; // 2 -> unary or binary. 15193 } else if (CanBeUnaryOperator) { 15194 ErrorKind = 0; // 0 -> unary 15195 } else { 15196 assert(CanBeBinaryOperator && 15197 "All non-call overloaded operators are unary or binary!"); 15198 ErrorKind = 1; // 1 -> binary 15199 } 15200 15201 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be) 15202 << FnDecl->getDeclName() << NumParams << ErrorKind; 15203 } 15204 15205 // Overloaded operators other than operator() cannot be variadic. 15206 if (Op != OO_Call && 15207 FnDecl->getType()->castAs<FunctionProtoType>()->isVariadic()) { 15208 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic) 15209 << FnDecl->getDeclName(); 15210 } 15211 15212 // Some operators must be non-static member functions. 15213 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) { 15214 return Diag(FnDecl->getLocation(), 15215 diag::err_operator_overload_must_be_member) 15216 << FnDecl->getDeclName(); 15217 } 15218 15219 // C++ [over.inc]p1: 15220 // The user-defined function called operator++ implements the 15221 // prefix and postfix ++ operator. If this function is a member 15222 // function with no parameters, or a non-member function with one 15223 // parameter of class or enumeration type, it defines the prefix 15224 // increment operator ++ for objects of that type. If the function 15225 // is a member function with one parameter (which shall be of type 15226 // int) or a non-member function with two parameters (the second 15227 // of which shall be of type int), it defines the postfix 15228 // increment operator ++ for objects of that type. 15229 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) { 15230 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1); 15231 QualType ParamType = LastParam->getType(); 15232 15233 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) && 15234 !ParamType->isDependentType()) 15235 return Diag(LastParam->getLocation(), 15236 diag::err_operator_overload_post_incdec_must_be_int) 15237 << LastParam->getType() << (Op == OO_MinusMinus); 15238 } 15239 15240 return false; 15241 } 15242 15243 static bool 15244 checkLiteralOperatorTemplateParameterList(Sema &SemaRef, 15245 FunctionTemplateDecl *TpDecl) { 15246 TemplateParameterList *TemplateParams = TpDecl->getTemplateParameters(); 15247 15248 // Must have one or two template parameters. 15249 if (TemplateParams->size() == 1) { 15250 NonTypeTemplateParmDecl *PmDecl = 15251 dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(0)); 15252 15253 // The template parameter must be a char parameter pack. 15254 if (PmDecl && PmDecl->isTemplateParameterPack() && 15255 SemaRef.Context.hasSameType(PmDecl->getType(), SemaRef.Context.CharTy)) 15256 return false; 15257 15258 } else if (TemplateParams->size() == 2) { 15259 TemplateTypeParmDecl *PmType = 15260 dyn_cast<TemplateTypeParmDecl>(TemplateParams->getParam(0)); 15261 NonTypeTemplateParmDecl *PmArgs = 15262 dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(1)); 15263 15264 // The second template parameter must be a parameter pack with the 15265 // first template parameter as its type. 15266 if (PmType && PmArgs && !PmType->isTemplateParameterPack() && 15267 PmArgs->isTemplateParameterPack()) { 15268 const TemplateTypeParmType *TArgs = 15269 PmArgs->getType()->getAs<TemplateTypeParmType>(); 15270 if (TArgs && TArgs->getDepth() == PmType->getDepth() && 15271 TArgs->getIndex() == PmType->getIndex()) { 15272 if (!SemaRef.inTemplateInstantiation()) 15273 SemaRef.Diag(TpDecl->getLocation(), 15274 diag::ext_string_literal_operator_template); 15275 return false; 15276 } 15277 } 15278 } 15279 15280 SemaRef.Diag(TpDecl->getTemplateParameters()->getSourceRange().getBegin(), 15281 diag::err_literal_operator_template) 15282 << TpDecl->getTemplateParameters()->getSourceRange(); 15283 return true; 15284 } 15285 15286 /// CheckLiteralOperatorDeclaration - Check whether the declaration 15287 /// of this literal operator function is well-formed. If so, returns 15288 /// false; otherwise, emits appropriate diagnostics and returns true. 15289 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) { 15290 if (isa<CXXMethodDecl>(FnDecl)) { 15291 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace) 15292 << FnDecl->getDeclName(); 15293 return true; 15294 } 15295 15296 if (FnDecl->isExternC()) { 15297 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c); 15298 if (const LinkageSpecDecl *LSD = 15299 FnDecl->getDeclContext()->getExternCContext()) 15300 Diag(LSD->getExternLoc(), diag::note_extern_c_begins_here); 15301 return true; 15302 } 15303 15304 // This might be the definition of a literal operator template. 15305 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate(); 15306 15307 // This might be a specialization of a literal operator template. 15308 if (!TpDecl) 15309 TpDecl = FnDecl->getPrimaryTemplate(); 15310 15311 // template <char...> type operator "" name() and 15312 // template <class T, T...> type operator "" name() are the only valid 15313 // template signatures, and the only valid signatures with no parameters. 15314 if (TpDecl) { 15315 if (FnDecl->param_size() != 0) { 15316 Diag(FnDecl->getLocation(), 15317 diag::err_literal_operator_template_with_params); 15318 return true; 15319 } 15320 15321 if (checkLiteralOperatorTemplateParameterList(*this, TpDecl)) 15322 return true; 15323 15324 } else if (FnDecl->param_size() == 1) { 15325 const ParmVarDecl *Param = FnDecl->getParamDecl(0); 15326 15327 QualType ParamType = Param->getType().getUnqualifiedType(); 15328 15329 // Only unsigned long long int, long double, any character type, and const 15330 // char * are allowed as the only parameters. 15331 if (ParamType->isSpecificBuiltinType(BuiltinType::ULongLong) || 15332 ParamType->isSpecificBuiltinType(BuiltinType::LongDouble) || 15333 Context.hasSameType(ParamType, Context.CharTy) || 15334 Context.hasSameType(ParamType, Context.WideCharTy) || 15335 Context.hasSameType(ParamType, Context.Char8Ty) || 15336 Context.hasSameType(ParamType, Context.Char16Ty) || 15337 Context.hasSameType(ParamType, Context.Char32Ty)) { 15338 } else if (const PointerType *Ptr = ParamType->getAs<PointerType>()) { 15339 QualType InnerType = Ptr->getPointeeType(); 15340 15341 // Pointer parameter must be a const char *. 15342 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), 15343 Context.CharTy) && 15344 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { 15345 Diag(Param->getSourceRange().getBegin(), 15346 diag::err_literal_operator_param) 15347 << ParamType << "'const char *'" << Param->getSourceRange(); 15348 return true; 15349 } 15350 15351 } else if (ParamType->isRealFloatingType()) { 15352 Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param) 15353 << ParamType << Context.LongDoubleTy << Param->getSourceRange(); 15354 return true; 15355 15356 } else if (ParamType->isIntegerType()) { 15357 Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param) 15358 << ParamType << Context.UnsignedLongLongTy << Param->getSourceRange(); 15359 return true; 15360 15361 } else { 15362 Diag(Param->getSourceRange().getBegin(), 15363 diag::err_literal_operator_invalid_param) 15364 << ParamType << Param->getSourceRange(); 15365 return true; 15366 } 15367 15368 } else if (FnDecl->param_size() == 2) { 15369 FunctionDecl::param_iterator Param = FnDecl->param_begin(); 15370 15371 // First, verify that the first parameter is correct. 15372 15373 QualType FirstParamType = (*Param)->getType().getUnqualifiedType(); 15374 15375 // Two parameter function must have a pointer to const as a 15376 // first parameter; let's strip those qualifiers. 15377 const PointerType *PT = FirstParamType->getAs<PointerType>(); 15378 15379 if (!PT) { 15380 Diag((*Param)->getSourceRange().getBegin(), 15381 diag::err_literal_operator_param) 15382 << FirstParamType << "'const char *'" << (*Param)->getSourceRange(); 15383 return true; 15384 } 15385 15386 QualType PointeeType = PT->getPointeeType(); 15387 // First parameter must be const 15388 if (!PointeeType.isConstQualified() || PointeeType.isVolatileQualified()) { 15389 Diag((*Param)->getSourceRange().getBegin(), 15390 diag::err_literal_operator_param) 15391 << FirstParamType << "'const char *'" << (*Param)->getSourceRange(); 15392 return true; 15393 } 15394 15395 QualType InnerType = PointeeType.getUnqualifiedType(); 15396 // Only const char *, const wchar_t*, const char8_t*, const char16_t*, and 15397 // const char32_t* are allowed as the first parameter to a two-parameter 15398 // function 15399 if (!(Context.hasSameType(InnerType, Context.CharTy) || 15400 Context.hasSameType(InnerType, Context.WideCharTy) || 15401 Context.hasSameType(InnerType, Context.Char8Ty) || 15402 Context.hasSameType(InnerType, Context.Char16Ty) || 15403 Context.hasSameType(InnerType, Context.Char32Ty))) { 15404 Diag((*Param)->getSourceRange().getBegin(), 15405 diag::err_literal_operator_param) 15406 << FirstParamType << "'const char *'" << (*Param)->getSourceRange(); 15407 return true; 15408 } 15409 15410 // Move on to the second and final parameter. 15411 ++Param; 15412 15413 // The second parameter must be a std::size_t. 15414 QualType SecondParamType = (*Param)->getType().getUnqualifiedType(); 15415 if (!Context.hasSameType(SecondParamType, Context.getSizeType())) { 15416 Diag((*Param)->getSourceRange().getBegin(), 15417 diag::err_literal_operator_param) 15418 << SecondParamType << Context.getSizeType() 15419 << (*Param)->getSourceRange(); 15420 return true; 15421 } 15422 } else { 15423 Diag(FnDecl->getLocation(), diag::err_literal_operator_bad_param_count); 15424 return true; 15425 } 15426 15427 // Parameters are good. 15428 15429 // A parameter-declaration-clause containing a default argument is not 15430 // equivalent to any of the permitted forms. 15431 for (auto Param : FnDecl->parameters()) { 15432 if (Param->hasDefaultArg()) { 15433 Diag(Param->getDefaultArgRange().getBegin(), 15434 diag::err_literal_operator_default_argument) 15435 << Param->getDefaultArgRange(); 15436 break; 15437 } 15438 } 15439 15440 StringRef LiteralName 15441 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName(); 15442 if (LiteralName[0] != '_' && 15443 !getSourceManager().isInSystemHeader(FnDecl->getLocation())) { 15444 // C++11 [usrlit.suffix]p1: 15445 // Literal suffix identifiers that do not start with an underscore 15446 // are reserved for future standardization. 15447 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved) 15448 << StringLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName); 15449 } 15450 15451 return false; 15452 } 15453 15454 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++ 15455 /// linkage specification, including the language and (if present) 15456 /// the '{'. ExternLoc is the location of the 'extern', Lang is the 15457 /// language string literal. LBraceLoc, if valid, provides the location of 15458 /// the '{' brace. Otherwise, this linkage specification does not 15459 /// have any braces. 15460 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, 15461 Expr *LangStr, 15462 SourceLocation LBraceLoc) { 15463 StringLiteral *Lit = cast<StringLiteral>(LangStr); 15464 if (!Lit->isAscii()) { 15465 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii) 15466 << LangStr->getSourceRange(); 15467 return nullptr; 15468 } 15469 15470 StringRef Lang = Lit->getString(); 15471 LinkageSpecDecl::LanguageIDs Language; 15472 if (Lang == "C") 15473 Language = LinkageSpecDecl::lang_c; 15474 else if (Lang == "C++") 15475 Language = LinkageSpecDecl::lang_cxx; 15476 else { 15477 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown) 15478 << LangStr->getSourceRange(); 15479 return nullptr; 15480 } 15481 15482 // FIXME: Add all the various semantics of linkage specifications 15483 15484 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc, 15485 LangStr->getExprLoc(), Language, 15486 LBraceLoc.isValid()); 15487 CurContext->addDecl(D); 15488 PushDeclContext(S, D); 15489 return D; 15490 } 15491 15492 /// ActOnFinishLinkageSpecification - Complete the definition of 15493 /// the C++ linkage specification LinkageSpec. If RBraceLoc is 15494 /// valid, it's the position of the closing '}' brace in a linkage 15495 /// specification that uses braces. 15496 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S, 15497 Decl *LinkageSpec, 15498 SourceLocation RBraceLoc) { 15499 if (RBraceLoc.isValid()) { 15500 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec); 15501 LSDecl->setRBraceLoc(RBraceLoc); 15502 } 15503 PopDeclContext(); 15504 return LinkageSpec; 15505 } 15506 15507 Decl *Sema::ActOnEmptyDeclaration(Scope *S, 15508 const ParsedAttributesView &AttrList, 15509 SourceLocation SemiLoc) { 15510 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); 15511 // Attribute declarations appertain to empty declaration so we handle 15512 // them here. 15513 ProcessDeclAttributeList(S, ED, AttrList); 15514 15515 CurContext->addDecl(ED); 15516 return ED; 15517 } 15518 15519 /// Perform semantic analysis for the variable declaration that 15520 /// occurs within a C++ catch clause, returning the newly-created 15521 /// variable. 15522 VarDecl *Sema::BuildExceptionDeclaration(Scope *S, 15523 TypeSourceInfo *TInfo, 15524 SourceLocation StartLoc, 15525 SourceLocation Loc, 15526 IdentifierInfo *Name) { 15527 bool Invalid = false; 15528 QualType ExDeclType = TInfo->getType(); 15529 15530 // Arrays and functions decay. 15531 if (ExDeclType->isArrayType()) 15532 ExDeclType = Context.getArrayDecayedType(ExDeclType); 15533 else if (ExDeclType->isFunctionType()) 15534 ExDeclType = Context.getPointerType(ExDeclType); 15535 15536 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type. 15537 // The exception-declaration shall not denote a pointer or reference to an 15538 // incomplete type, other than [cv] void*. 15539 // N2844 forbids rvalue references. 15540 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) { 15541 Diag(Loc, diag::err_catch_rvalue_ref); 15542 Invalid = true; 15543 } 15544 15545 if (ExDeclType->isVariablyModifiedType()) { 15546 Diag(Loc, diag::err_catch_variably_modified) << ExDeclType; 15547 Invalid = true; 15548 } 15549 15550 QualType BaseType = ExDeclType; 15551 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference 15552 unsigned DK = diag::err_catch_incomplete; 15553 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { 15554 BaseType = Ptr->getPointeeType(); 15555 Mode = 1; 15556 DK = diag::err_catch_incomplete_ptr; 15557 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) { 15558 // For the purpose of error recovery, we treat rvalue refs like lvalue refs. 15559 BaseType = Ref->getPointeeType(); 15560 Mode = 2; 15561 DK = diag::err_catch_incomplete_ref; 15562 } 15563 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) && 15564 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK)) 15565 Invalid = true; 15566 15567 if (!Invalid && !ExDeclType->isDependentType() && 15568 RequireNonAbstractType(Loc, ExDeclType, 15569 diag::err_abstract_type_in_decl, 15570 AbstractVariableType)) 15571 Invalid = true; 15572 15573 // Only the non-fragile NeXT runtime currently supports C++ catches 15574 // of ObjC types, and no runtime supports catching ObjC types by value. 15575 if (!Invalid && getLangOpts().ObjC) { 15576 QualType T = ExDeclType; 15577 if (const ReferenceType *RT = T->getAs<ReferenceType>()) 15578 T = RT->getPointeeType(); 15579 15580 if (T->isObjCObjectType()) { 15581 Diag(Loc, diag::err_objc_object_catch); 15582 Invalid = true; 15583 } else if (T->isObjCObjectPointerType()) { 15584 // FIXME: should this be a test for macosx-fragile specifically? 15585 if (getLangOpts().ObjCRuntime.isFragile()) 15586 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile); 15587 } 15588 } 15589 15590 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, 15591 ExDeclType, TInfo, SC_None); 15592 ExDecl->setExceptionVariable(true); 15593 15594 // In ARC, infer 'retaining' for variables of retainable type. 15595 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) 15596 Invalid = true; 15597 15598 if (!Invalid && !ExDeclType->isDependentType()) { 15599 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) { 15600 // Insulate this from anything else we might currently be parsing. 15601 EnterExpressionEvaluationContext scope( 15602 *this, ExpressionEvaluationContext::PotentiallyEvaluated); 15603 15604 // C++ [except.handle]p16: 15605 // The object declared in an exception-declaration or, if the 15606 // exception-declaration does not specify a name, a temporary (12.2) is 15607 // copy-initialized (8.5) from the exception object. [...] 15608 // The object is destroyed when the handler exits, after the destruction 15609 // of any automatic objects initialized within the handler. 15610 // 15611 // We just pretend to initialize the object with itself, then make sure 15612 // it can be destroyed later. 15613 QualType initType = Context.getExceptionObjectType(ExDeclType); 15614 15615 InitializedEntity entity = 15616 InitializedEntity::InitializeVariable(ExDecl); 15617 InitializationKind initKind = 15618 InitializationKind::CreateCopy(Loc, SourceLocation()); 15619 15620 Expr *opaqueValue = 15621 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary); 15622 InitializationSequence sequence(*this, entity, initKind, opaqueValue); 15623 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue); 15624 if (result.isInvalid()) 15625 Invalid = true; 15626 else { 15627 // If the constructor used was non-trivial, set this as the 15628 // "initializer". 15629 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>(); 15630 if (!construct->getConstructor()->isTrivial()) { 15631 Expr *init = MaybeCreateExprWithCleanups(construct); 15632 ExDecl->setInit(init); 15633 } 15634 15635 // And make sure it's destructable. 15636 FinalizeVarWithDestructor(ExDecl, recordType); 15637 } 15638 } 15639 } 15640 15641 if (Invalid) 15642 ExDecl->setInvalidDecl(); 15643 15644 return ExDecl; 15645 } 15646 15647 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch 15648 /// handler. 15649 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) { 15650 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 15651 bool Invalid = D.isInvalidType(); 15652 15653 // Check for unexpanded parameter packs. 15654 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 15655 UPPC_ExceptionType)) { 15656 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 15657 D.getIdentifierLoc()); 15658 Invalid = true; 15659 } 15660 15661 IdentifierInfo *II = D.getIdentifier(); 15662 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(), 15663 LookupOrdinaryName, 15664 ForVisibleRedeclaration)) { 15665 // The scope should be freshly made just for us. There is just no way 15666 // it contains any previous declaration, except for function parameters in 15667 // a function-try-block's catch statement. 15668 assert(!S->isDeclScope(PrevDecl)); 15669 if (isDeclInScope(PrevDecl, CurContext, S)) { 15670 Diag(D.getIdentifierLoc(), diag::err_redefinition) 15671 << D.getIdentifier(); 15672 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 15673 Invalid = true; 15674 } else if (PrevDecl->isTemplateParameter()) 15675 // Maybe we will complain about the shadowed template parameter. 15676 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 15677 } 15678 15679 if (D.getCXXScopeSpec().isSet() && !Invalid) { 15680 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator) 15681 << D.getCXXScopeSpec().getRange(); 15682 Invalid = true; 15683 } 15684 15685 VarDecl *ExDecl = BuildExceptionDeclaration( 15686 S, TInfo, D.getBeginLoc(), D.getIdentifierLoc(), D.getIdentifier()); 15687 if (Invalid) 15688 ExDecl->setInvalidDecl(); 15689 15690 // Add the exception declaration into this scope. 15691 if (II) 15692 PushOnScopeChains(ExDecl, S); 15693 else 15694 CurContext->addDecl(ExDecl); 15695 15696 ProcessDeclAttributes(S, ExDecl, D); 15697 return ExDecl; 15698 } 15699 15700 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, 15701 Expr *AssertExpr, 15702 Expr *AssertMessageExpr, 15703 SourceLocation RParenLoc) { 15704 StringLiteral *AssertMessage = 15705 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr; 15706 15707 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression)) 15708 return nullptr; 15709 15710 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr, 15711 AssertMessage, RParenLoc, false); 15712 } 15713 15714 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, 15715 Expr *AssertExpr, 15716 StringLiteral *AssertMessage, 15717 SourceLocation RParenLoc, 15718 bool Failed) { 15719 assert(AssertExpr != nullptr && "Expected non-null condition"); 15720 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() && 15721 !Failed) { 15722 // In a static_assert-declaration, the constant-expression shall be a 15723 // constant expression that can be contextually converted to bool. 15724 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); 15725 if (Converted.isInvalid()) 15726 Failed = true; 15727 15728 ExprResult FullAssertExpr = 15729 ActOnFinishFullExpr(Converted.get(), StaticAssertLoc, 15730 /*DiscardedValue*/ false, 15731 /*IsConstexpr*/ true); 15732 if (FullAssertExpr.isInvalid()) 15733 Failed = true; 15734 else 15735 AssertExpr = FullAssertExpr.get(); 15736 15737 llvm::APSInt Cond; 15738 if (!Failed && VerifyIntegerConstantExpression(AssertExpr, &Cond, 15739 diag::err_static_assert_expression_is_not_constant, 15740 /*AllowFold=*/false).isInvalid()) 15741 Failed = true; 15742 15743 if (!Failed && !Cond) { 15744 SmallString<256> MsgBuffer; 15745 llvm::raw_svector_ostream Msg(MsgBuffer); 15746 if (AssertMessage) 15747 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy()); 15748 15749 Expr *InnerCond = nullptr; 15750 std::string InnerCondDescription; 15751 std::tie(InnerCond, InnerCondDescription) = 15752 findFailedBooleanCondition(Converted.get()); 15753 if (InnerCond && isa<ConceptSpecializationExpr>(InnerCond)) { 15754 // Drill down into concept specialization expressions to see why they 15755 // weren't satisfied. 15756 Diag(StaticAssertLoc, diag::err_static_assert_failed) 15757 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); 15758 ConstraintSatisfaction Satisfaction; 15759 if (!CheckConstraintSatisfaction(InnerCond, Satisfaction)) 15760 DiagnoseUnsatisfiedConstraint(Satisfaction); 15761 } else if (InnerCond && !isa<CXXBoolLiteralExpr>(InnerCond) 15762 && !isa<IntegerLiteral>(InnerCond)) { 15763 Diag(StaticAssertLoc, diag::err_static_assert_requirement_failed) 15764 << InnerCondDescription << !AssertMessage 15765 << Msg.str() << InnerCond->getSourceRange(); 15766 } else { 15767 Diag(StaticAssertLoc, diag::err_static_assert_failed) 15768 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); 15769 } 15770 Failed = true; 15771 } 15772 } else { 15773 ExprResult FullAssertExpr = ActOnFinishFullExpr(AssertExpr, StaticAssertLoc, 15774 /*DiscardedValue*/false, 15775 /*IsConstexpr*/true); 15776 if (FullAssertExpr.isInvalid()) 15777 Failed = true; 15778 else 15779 AssertExpr = FullAssertExpr.get(); 15780 } 15781 15782 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc, 15783 AssertExpr, AssertMessage, RParenLoc, 15784 Failed); 15785 15786 CurContext->addDecl(Decl); 15787 return Decl; 15788 } 15789 15790 /// Perform semantic analysis of the given friend type declaration. 15791 /// 15792 /// \returns A friend declaration that. 15793 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart, 15794 SourceLocation FriendLoc, 15795 TypeSourceInfo *TSInfo) { 15796 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration"); 15797 15798 QualType T = TSInfo->getType(); 15799 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange(); 15800 15801 // C++03 [class.friend]p2: 15802 // An elaborated-type-specifier shall be used in a friend declaration 15803 // for a class.* 15804 // 15805 // * The class-key of the elaborated-type-specifier is required. 15806 if (!CodeSynthesisContexts.empty()) { 15807 // Do not complain about the form of friend template types during any kind 15808 // of code synthesis. For template instantiation, we will have complained 15809 // when the template was defined. 15810 } else { 15811 if (!T->isElaboratedTypeSpecifier()) { 15812 // If we evaluated the type to a record type, suggest putting 15813 // a tag in front. 15814 if (const RecordType *RT = T->getAs<RecordType>()) { 15815 RecordDecl *RD = RT->getDecl(); 15816 15817 SmallString<16> InsertionText(" "); 15818 InsertionText += RD->getKindName(); 15819 15820 Diag(TypeRange.getBegin(), 15821 getLangOpts().CPlusPlus11 ? 15822 diag::warn_cxx98_compat_unelaborated_friend_type : 15823 diag::ext_unelaborated_friend_type) 15824 << (unsigned) RD->getTagKind() 15825 << T 15826 << FixItHint::CreateInsertion(getLocForEndOfToken(FriendLoc), 15827 InsertionText); 15828 } else { 15829 Diag(FriendLoc, 15830 getLangOpts().CPlusPlus11 ? 15831 diag::warn_cxx98_compat_nonclass_type_friend : 15832 diag::ext_nonclass_type_friend) 15833 << T 15834 << TypeRange; 15835 } 15836 } else if (T->getAs<EnumType>()) { 15837 Diag(FriendLoc, 15838 getLangOpts().CPlusPlus11 ? 15839 diag::warn_cxx98_compat_enum_friend : 15840 diag::ext_enum_friend) 15841 << T 15842 << TypeRange; 15843 } 15844 15845 // C++11 [class.friend]p3: 15846 // A friend declaration that does not declare a function shall have one 15847 // of the following forms: 15848 // friend elaborated-type-specifier ; 15849 // friend simple-type-specifier ; 15850 // friend typename-specifier ; 15851 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc) 15852 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T; 15853 } 15854 15855 // If the type specifier in a friend declaration designates a (possibly 15856 // cv-qualified) class type, that class is declared as a friend; otherwise, 15857 // the friend declaration is ignored. 15858 return FriendDecl::Create(Context, CurContext, 15859 TSInfo->getTypeLoc().getBeginLoc(), TSInfo, 15860 FriendLoc); 15861 } 15862 15863 /// Handle a friend tag declaration where the scope specifier was 15864 /// templated. 15865 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc, 15866 unsigned TagSpec, SourceLocation TagLoc, 15867 CXXScopeSpec &SS, IdentifierInfo *Name, 15868 SourceLocation NameLoc, 15869 const ParsedAttributesView &Attr, 15870 MultiTemplateParamsArg TempParamLists) { 15871 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 15872 15873 bool IsMemberSpecialization = false; 15874 bool Invalid = false; 15875 15876 if (TemplateParameterList *TemplateParams = 15877 MatchTemplateParametersToScopeSpecifier( 15878 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true, 15879 IsMemberSpecialization, Invalid)) { 15880 if (TemplateParams->size() > 0) { 15881 // This is a declaration of a class template. 15882 if (Invalid) 15883 return nullptr; 15884 15885 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name, 15886 NameLoc, Attr, TemplateParams, AS_public, 15887 /*ModulePrivateLoc=*/SourceLocation(), 15888 FriendLoc, TempParamLists.size() - 1, 15889 TempParamLists.data()).get(); 15890 } else { 15891 // The "template<>" header is extraneous. 15892 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 15893 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 15894 IsMemberSpecialization = true; 15895 } 15896 } 15897 15898 if (Invalid) return nullptr; 15899 15900 bool isAllExplicitSpecializations = true; 15901 for (unsigned I = TempParamLists.size(); I-- > 0; ) { 15902 if (TempParamLists[I]->size()) { 15903 isAllExplicitSpecializations = false; 15904 break; 15905 } 15906 } 15907 15908 // FIXME: don't ignore attributes. 15909 15910 // If it's explicit specializations all the way down, just forget 15911 // about the template header and build an appropriate non-templated 15912 // friend. TODO: for source fidelity, remember the headers. 15913 if (isAllExplicitSpecializations) { 15914 if (SS.isEmpty()) { 15915 bool Owned = false; 15916 bool IsDependent = false; 15917 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc, 15918 Attr, AS_public, 15919 /*ModulePrivateLoc=*/SourceLocation(), 15920 MultiTemplateParamsArg(), Owned, IsDependent, 15921 /*ScopedEnumKWLoc=*/SourceLocation(), 15922 /*ScopedEnumUsesClassTag=*/false, 15923 /*UnderlyingType=*/TypeResult(), 15924 /*IsTypeSpecifier=*/false, 15925 /*IsTemplateParamOrArg=*/false); 15926 } 15927 15928 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 15929 ElaboratedTypeKeyword Keyword 15930 = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 15931 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc, 15932 *Name, NameLoc); 15933 if (T.isNull()) 15934 return nullptr; 15935 15936 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 15937 if (isa<DependentNameType>(T)) { 15938 DependentNameTypeLoc TL = 15939 TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 15940 TL.setElaboratedKeywordLoc(TagLoc); 15941 TL.setQualifierLoc(QualifierLoc); 15942 TL.setNameLoc(NameLoc); 15943 } else { 15944 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); 15945 TL.setElaboratedKeywordLoc(TagLoc); 15946 TL.setQualifierLoc(QualifierLoc); 15947 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc); 15948 } 15949 15950 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 15951 TSI, FriendLoc, TempParamLists); 15952 Friend->setAccess(AS_public); 15953 CurContext->addDecl(Friend); 15954 return Friend; 15955 } 15956 15957 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); 15958 15959 15960 15961 // Handle the case of a templated-scope friend class. e.g. 15962 // template <class T> class A<T>::B; 15963 // FIXME: we don't support these right now. 15964 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported) 15965 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext); 15966 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 15967 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name); 15968 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 15969 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 15970 TL.setElaboratedKeywordLoc(TagLoc); 15971 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 15972 TL.setNameLoc(NameLoc); 15973 15974 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 15975 TSI, FriendLoc, TempParamLists); 15976 Friend->setAccess(AS_public); 15977 Friend->setUnsupportedFriend(true); 15978 CurContext->addDecl(Friend); 15979 return Friend; 15980 } 15981 15982 /// Handle a friend type declaration. This works in tandem with 15983 /// ActOnTag. 15984 /// 15985 /// Notes on friend class templates: 15986 /// 15987 /// We generally treat friend class declarations as if they were 15988 /// declaring a class. So, for example, the elaborated type specifier 15989 /// in a friend declaration is required to obey the restrictions of a 15990 /// class-head (i.e. no typedefs in the scope chain), template 15991 /// parameters are required to match up with simple template-ids, &c. 15992 /// However, unlike when declaring a template specialization, it's 15993 /// okay to refer to a template specialization without an empty 15994 /// template parameter declaration, e.g. 15995 /// friend class A<T>::B<unsigned>; 15996 /// We permit this as a special case; if there are any template 15997 /// parameters present at all, require proper matching, i.e. 15998 /// template <> template \<class T> friend class A<int>::B; 15999 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, 16000 MultiTemplateParamsArg TempParams) { 16001 SourceLocation Loc = DS.getBeginLoc(); 16002 16003 assert(DS.isFriendSpecified()); 16004 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 16005 16006 // C++ [class.friend]p3: 16007 // A friend declaration that does not declare a function shall have one of 16008 // the following forms: 16009 // friend elaborated-type-specifier ; 16010 // friend simple-type-specifier ; 16011 // friend typename-specifier ; 16012 // 16013 // Any declaration with a type qualifier does not have that form. (It's 16014 // legal to specify a qualified type as a friend, you just can't write the 16015 // keywords.) 16016 if (DS.getTypeQualifiers()) { 16017 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 16018 Diag(DS.getConstSpecLoc(), diag::err_friend_decl_spec) << "const"; 16019 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 16020 Diag(DS.getVolatileSpecLoc(), diag::err_friend_decl_spec) << "volatile"; 16021 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) 16022 Diag(DS.getRestrictSpecLoc(), diag::err_friend_decl_spec) << "restrict"; 16023 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 16024 Diag(DS.getAtomicSpecLoc(), diag::err_friend_decl_spec) << "_Atomic"; 16025 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 16026 Diag(DS.getUnalignedSpecLoc(), diag::err_friend_decl_spec) << "__unaligned"; 16027 } 16028 16029 // Try to convert the decl specifier to a type. This works for 16030 // friend templates because ActOnTag never produces a ClassTemplateDecl 16031 // for a TUK_Friend. 16032 Declarator TheDeclarator(DS, DeclaratorContext::MemberContext); 16033 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S); 16034 QualType T = TSI->getType(); 16035 if (TheDeclarator.isInvalidType()) 16036 return nullptr; 16037 16038 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration)) 16039 return nullptr; 16040 16041 // This is definitely an error in C++98. It's probably meant to 16042 // be forbidden in C++0x, too, but the specification is just 16043 // poorly written. 16044 // 16045 // The problem is with declarations like the following: 16046 // template <T> friend A<T>::foo; 16047 // where deciding whether a class C is a friend or not now hinges 16048 // on whether there exists an instantiation of A that causes 16049 // 'foo' to equal C. There are restrictions on class-heads 16050 // (which we declare (by fiat) elaborated friend declarations to 16051 // be) that makes this tractable. 16052 // 16053 // FIXME: handle "template <> friend class A<T>;", which 16054 // is possibly well-formed? Who even knows? 16055 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) { 16056 Diag(Loc, diag::err_tagless_friend_type_template) 16057 << DS.getSourceRange(); 16058 return nullptr; 16059 } 16060 16061 // C++98 [class.friend]p1: A friend of a class is a function 16062 // or class that is not a member of the class . . . 16063 // This is fixed in DR77, which just barely didn't make the C++03 16064 // deadline. It's also a very silly restriction that seriously 16065 // affects inner classes and which nobody else seems to implement; 16066 // thus we never diagnose it, not even in -pedantic. 16067 // 16068 // But note that we could warn about it: it's always useless to 16069 // friend one of your own members (it's not, however, worthless to 16070 // friend a member of an arbitrary specialization of your template). 16071 16072 Decl *D; 16073 if (!TempParams.empty()) 16074 D = FriendTemplateDecl::Create(Context, CurContext, Loc, 16075 TempParams, 16076 TSI, 16077 DS.getFriendSpecLoc()); 16078 else 16079 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI); 16080 16081 if (!D) 16082 return nullptr; 16083 16084 D->setAccess(AS_public); 16085 CurContext->addDecl(D); 16086 16087 return D; 16088 } 16089 16090 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, 16091 MultiTemplateParamsArg TemplateParams) { 16092 const DeclSpec &DS = D.getDeclSpec(); 16093 16094 assert(DS.isFriendSpecified()); 16095 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 16096 16097 SourceLocation Loc = D.getIdentifierLoc(); 16098 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 16099 16100 // C++ [class.friend]p1 16101 // A friend of a class is a function or class.... 16102 // Note that this sees through typedefs, which is intended. 16103 // It *doesn't* see through dependent types, which is correct 16104 // according to [temp.arg.type]p3: 16105 // If a declaration acquires a function type through a 16106 // type dependent on a template-parameter and this causes 16107 // a declaration that does not use the syntactic form of a 16108 // function declarator to have a function type, the program 16109 // is ill-formed. 16110 if (!TInfo->getType()->isFunctionType()) { 16111 Diag(Loc, diag::err_unexpected_friend); 16112 16113 // It might be worthwhile to try to recover by creating an 16114 // appropriate declaration. 16115 return nullptr; 16116 } 16117 16118 // C++ [namespace.memdef]p3 16119 // - If a friend declaration in a non-local class first declares a 16120 // class or function, the friend class or function is a member 16121 // of the innermost enclosing namespace. 16122 // - The name of the friend is not found by simple name lookup 16123 // until a matching declaration is provided in that namespace 16124 // scope (either before or after the class declaration granting 16125 // friendship). 16126 // - If a friend function is called, its name may be found by the 16127 // name lookup that considers functions from namespaces and 16128 // classes associated with the types of the function arguments. 16129 // - When looking for a prior declaration of a class or a function 16130 // declared as a friend, scopes outside the innermost enclosing 16131 // namespace scope are not considered. 16132 16133 CXXScopeSpec &SS = D.getCXXScopeSpec(); 16134 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 16135 assert(NameInfo.getName()); 16136 16137 // Check for unexpanded parameter packs. 16138 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) || 16139 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) || 16140 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration)) 16141 return nullptr; 16142 16143 // The context we found the declaration in, or in which we should 16144 // create the declaration. 16145 DeclContext *DC; 16146 Scope *DCScope = S; 16147 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 16148 ForExternalRedeclaration); 16149 16150 // There are five cases here. 16151 // - There's no scope specifier and we're in a local class. Only look 16152 // for functions declared in the immediately-enclosing block scope. 16153 // We recover from invalid scope qualifiers as if they just weren't there. 16154 FunctionDecl *FunctionContainingLocalClass = nullptr; 16155 if ((SS.isInvalid() || !SS.isSet()) && 16156 (FunctionContainingLocalClass = 16157 cast<CXXRecordDecl>(CurContext)->isLocalClass())) { 16158 // C++11 [class.friend]p11: 16159 // If a friend declaration appears in a local class and the name 16160 // specified is an unqualified name, a prior declaration is 16161 // looked up without considering scopes that are outside the 16162 // innermost enclosing non-class scope. For a friend function 16163 // declaration, if there is no prior declaration, the program is 16164 // ill-formed. 16165 16166 // Find the innermost enclosing non-class scope. This is the block 16167 // scope containing the local class definition (or for a nested class, 16168 // the outer local class). 16169 DCScope = S->getFnParent(); 16170 16171 // Look up the function name in the scope. 16172 Previous.clear(LookupLocalFriendName); 16173 LookupName(Previous, S, /*AllowBuiltinCreation*/false); 16174 16175 if (!Previous.empty()) { 16176 // All possible previous declarations must have the same context: 16177 // either they were declared at block scope or they are members of 16178 // one of the enclosing local classes. 16179 DC = Previous.getRepresentativeDecl()->getDeclContext(); 16180 } else { 16181 // This is ill-formed, but provide the context that we would have 16182 // declared the function in, if we were permitted to, for error recovery. 16183 DC = FunctionContainingLocalClass; 16184 } 16185 adjustContextForLocalExternDecl(DC); 16186 16187 // C++ [class.friend]p6: 16188 // A function can be defined in a friend declaration of a class if and 16189 // only if the class is a non-local class (9.8), the function name is 16190 // unqualified, and the function has namespace scope. 16191 if (D.isFunctionDefinition()) { 16192 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class); 16193 } 16194 16195 // - There's no scope specifier, in which case we just go to the 16196 // appropriate scope and look for a function or function template 16197 // there as appropriate. 16198 } else if (SS.isInvalid() || !SS.isSet()) { 16199 // C++11 [namespace.memdef]p3: 16200 // If the name in a friend declaration is neither qualified nor 16201 // a template-id and the declaration is a function or an 16202 // elaborated-type-specifier, the lookup to determine whether 16203 // the entity has been previously declared shall not consider 16204 // any scopes outside the innermost enclosing namespace. 16205 bool isTemplateId = 16206 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId; 16207 16208 // Find the appropriate context according to the above. 16209 DC = CurContext; 16210 16211 // Skip class contexts. If someone can cite chapter and verse 16212 // for this behavior, that would be nice --- it's what GCC and 16213 // EDG do, and it seems like a reasonable intent, but the spec 16214 // really only says that checks for unqualified existing 16215 // declarations should stop at the nearest enclosing namespace, 16216 // not that they should only consider the nearest enclosing 16217 // namespace. 16218 while (DC->isRecord()) 16219 DC = DC->getParent(); 16220 16221 DeclContext *LookupDC = DC; 16222 while (LookupDC->isTransparentContext()) 16223 LookupDC = LookupDC->getParent(); 16224 16225 while (true) { 16226 LookupQualifiedName(Previous, LookupDC); 16227 16228 if (!Previous.empty()) { 16229 DC = LookupDC; 16230 break; 16231 } 16232 16233 if (isTemplateId) { 16234 if (isa<TranslationUnitDecl>(LookupDC)) break; 16235 } else { 16236 if (LookupDC->isFileContext()) break; 16237 } 16238 LookupDC = LookupDC->getParent(); 16239 } 16240 16241 DCScope = getScopeForDeclContext(S, DC); 16242 16243 // - There's a non-dependent scope specifier, in which case we 16244 // compute it and do a previous lookup there for a function 16245 // or function template. 16246 } else if (!SS.getScopeRep()->isDependent()) { 16247 DC = computeDeclContext(SS); 16248 if (!DC) return nullptr; 16249 16250 if (RequireCompleteDeclContext(SS, DC)) return nullptr; 16251 16252 LookupQualifiedName(Previous, DC); 16253 16254 // C++ [class.friend]p1: A friend of a class is a function or 16255 // class that is not a member of the class . . . 16256 if (DC->Equals(CurContext)) 16257 Diag(DS.getFriendSpecLoc(), 16258 getLangOpts().CPlusPlus11 ? 16259 diag::warn_cxx98_compat_friend_is_member : 16260 diag::err_friend_is_member); 16261 16262 if (D.isFunctionDefinition()) { 16263 // C++ [class.friend]p6: 16264 // A function can be defined in a friend declaration of a class if and 16265 // only if the class is a non-local class (9.8), the function name is 16266 // unqualified, and the function has namespace scope. 16267 // 16268 // FIXME: We should only do this if the scope specifier names the 16269 // innermost enclosing namespace; otherwise the fixit changes the 16270 // meaning of the code. 16271 SemaDiagnosticBuilder DB 16272 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def); 16273 16274 DB << SS.getScopeRep(); 16275 if (DC->isFileContext()) 16276 DB << FixItHint::CreateRemoval(SS.getRange()); 16277 SS.clear(); 16278 } 16279 16280 // - There's a scope specifier that does not match any template 16281 // parameter lists, in which case we use some arbitrary context, 16282 // create a method or method template, and wait for instantiation. 16283 // - There's a scope specifier that does match some template 16284 // parameter lists, which we don't handle right now. 16285 } else { 16286 if (D.isFunctionDefinition()) { 16287 // C++ [class.friend]p6: 16288 // A function can be defined in a friend declaration of a class if and 16289 // only if the class is a non-local class (9.8), the function name is 16290 // unqualified, and the function has namespace scope. 16291 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def) 16292 << SS.getScopeRep(); 16293 } 16294 16295 DC = CurContext; 16296 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?"); 16297 } 16298 16299 if (!DC->isRecord()) { 16300 int DiagArg = -1; 16301 switch (D.getName().getKind()) { 16302 case UnqualifiedIdKind::IK_ConstructorTemplateId: 16303 case UnqualifiedIdKind::IK_ConstructorName: 16304 DiagArg = 0; 16305 break; 16306 case UnqualifiedIdKind::IK_DestructorName: 16307 DiagArg = 1; 16308 break; 16309 case UnqualifiedIdKind::IK_ConversionFunctionId: 16310 DiagArg = 2; 16311 break; 16312 case UnqualifiedIdKind::IK_DeductionGuideName: 16313 DiagArg = 3; 16314 break; 16315 case UnqualifiedIdKind::IK_Identifier: 16316 case UnqualifiedIdKind::IK_ImplicitSelfParam: 16317 case UnqualifiedIdKind::IK_LiteralOperatorId: 16318 case UnqualifiedIdKind::IK_OperatorFunctionId: 16319 case UnqualifiedIdKind::IK_TemplateId: 16320 break; 16321 } 16322 // This implies that it has to be an operator or function. 16323 if (DiagArg >= 0) { 16324 Diag(Loc, diag::err_introducing_special_friend) << DiagArg; 16325 return nullptr; 16326 } 16327 } 16328 16329 // FIXME: This is an egregious hack to cope with cases where the scope stack 16330 // does not contain the declaration context, i.e., in an out-of-line 16331 // definition of a class. 16332 Scope FakeDCScope(S, Scope::DeclScope, Diags); 16333 if (!DCScope) { 16334 FakeDCScope.setEntity(DC); 16335 DCScope = &FakeDCScope; 16336 } 16337 16338 bool AddToScope = true; 16339 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous, 16340 TemplateParams, AddToScope); 16341 if (!ND) return nullptr; 16342 16343 assert(ND->getLexicalDeclContext() == CurContext); 16344 16345 // If we performed typo correction, we might have added a scope specifier 16346 // and changed the decl context. 16347 DC = ND->getDeclContext(); 16348 16349 // Add the function declaration to the appropriate lookup tables, 16350 // adjusting the redeclarations list as necessary. We don't 16351 // want to do this yet if the friending class is dependent. 16352 // 16353 // Also update the scope-based lookup if the target context's 16354 // lookup context is in lexical scope. 16355 if (!CurContext->isDependentContext()) { 16356 DC = DC->getRedeclContext(); 16357 DC->makeDeclVisibleInContext(ND); 16358 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 16359 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false); 16360 } 16361 16362 FriendDecl *FrD = FriendDecl::Create(Context, CurContext, 16363 D.getIdentifierLoc(), ND, 16364 DS.getFriendSpecLoc()); 16365 FrD->setAccess(AS_public); 16366 CurContext->addDecl(FrD); 16367 16368 if (ND->isInvalidDecl()) { 16369 FrD->setInvalidDecl(); 16370 } else { 16371 if (DC->isRecord()) CheckFriendAccess(ND); 16372 16373 FunctionDecl *FD; 16374 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 16375 FD = FTD->getTemplatedDecl(); 16376 else 16377 FD = cast<FunctionDecl>(ND); 16378 16379 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a 16380 // default argument expression, that declaration shall be a definition 16381 // and shall be the only declaration of the function or function 16382 // template in the translation unit. 16383 if (functionDeclHasDefaultArgument(FD)) { 16384 // We can't look at FD->getPreviousDecl() because it may not have been set 16385 // if we're in a dependent context. If the function is known to be a 16386 // redeclaration, we will have narrowed Previous down to the right decl. 16387 if (D.isRedeclaration()) { 16388 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 16389 Diag(Previous.getRepresentativeDecl()->getLocation(), 16390 diag::note_previous_declaration); 16391 } else if (!D.isFunctionDefinition()) 16392 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def); 16393 } 16394 16395 // Mark templated-scope function declarations as unsupported. 16396 if (FD->getNumTemplateParameterLists() && SS.isValid()) { 16397 Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported) 16398 << SS.getScopeRep() << SS.getRange() 16399 << cast<CXXRecordDecl>(CurContext); 16400 FrD->setUnsupportedFriend(true); 16401 } 16402 } 16403 16404 return ND; 16405 } 16406 16407 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) { 16408 AdjustDeclIfTemplate(Dcl); 16409 16410 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl); 16411 if (!Fn) { 16412 Diag(DelLoc, diag::err_deleted_non_function); 16413 return; 16414 } 16415 16416 // Deleted function does not have a body. 16417 Fn->setWillHaveBody(false); 16418 16419 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) { 16420 // Don't consider the implicit declaration we generate for explicit 16421 // specializations. FIXME: Do not generate these implicit declarations. 16422 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization || 16423 Prev->getPreviousDecl()) && 16424 !Prev->isDefined()) { 16425 Diag(DelLoc, diag::err_deleted_decl_not_first); 16426 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(), 16427 Prev->isImplicit() ? diag::note_previous_implicit_declaration 16428 : diag::note_previous_declaration); 16429 // We can't recover from this; the declaration might have already 16430 // been used. 16431 Fn->setInvalidDecl(); 16432 return; 16433 } 16434 16435 // To maintain the invariant that functions are only deleted on their first 16436 // declaration, mark the implicitly-instantiated declaration of the 16437 // explicitly-specialized function as deleted instead of marking the 16438 // instantiated redeclaration. 16439 Fn = Fn->getCanonicalDecl(); 16440 } 16441 16442 // dllimport/dllexport cannot be deleted. 16443 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) { 16444 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr; 16445 Fn->setInvalidDecl(); 16446 } 16447 16448 // C++11 [basic.start.main]p3: 16449 // A program that defines main as deleted [...] is ill-formed. 16450 if (Fn->isMain()) 16451 Diag(DelLoc, diag::err_deleted_main); 16452 16453 // C++11 [dcl.fct.def.delete]p4: 16454 // A deleted function is implicitly inline. 16455 Fn->setImplicitlyInline(); 16456 Fn->setDeletedAsWritten(); 16457 } 16458 16459 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { 16460 if (!Dcl || Dcl->isInvalidDecl()) 16461 return; 16462 16463 auto *FD = dyn_cast<FunctionDecl>(Dcl); 16464 if (!FD) { 16465 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(Dcl)) { 16466 if (getDefaultedFunctionKind(FTD->getTemplatedDecl()).isComparison()) { 16467 Diag(DefaultLoc, diag::err_defaulted_comparison_template); 16468 return; 16469 } 16470 } 16471 16472 Diag(DefaultLoc, diag::err_default_special_members) 16473 << getLangOpts().CPlusPlus2a; 16474 return; 16475 } 16476 16477 // Reject if this can't possibly be a defaultable function. 16478 DefaultedFunctionKind DefKind = getDefaultedFunctionKind(FD); 16479 if (!DefKind && 16480 // A dependent function that doesn't locally look defaultable can 16481 // still instantiate to a defaultable function if it's a constructor 16482 // or assignment operator. 16483 (!FD->isDependentContext() || 16484 (!isa<CXXConstructorDecl>(FD) && 16485 FD->getDeclName().getCXXOverloadedOperator() != OO_Equal))) { 16486 Diag(DefaultLoc, diag::err_default_special_members) 16487 << getLangOpts().CPlusPlus2a; 16488 return; 16489 } 16490 16491 if (DefKind.isComparison() && 16492 !isa<CXXRecordDecl>(FD->getLexicalDeclContext())) { 16493 Diag(FD->getLocation(), diag::err_defaulted_comparison_out_of_class) 16494 << (int)DefKind.asComparison(); 16495 return; 16496 } 16497 16498 // Issue compatibility warning. We already warned if the operator is 16499 // 'operator<=>' when parsing the '<=>' token. 16500 if (DefKind.isComparison() && 16501 DefKind.asComparison() != DefaultedComparisonKind::ThreeWay) { 16502 Diag(DefaultLoc, getLangOpts().CPlusPlus2a 16503 ? diag::warn_cxx17_compat_defaulted_comparison 16504 : diag::ext_defaulted_comparison); 16505 } 16506 16507 FD->setDefaulted(); 16508 FD->setExplicitlyDefaulted(); 16509 16510 // Defer checking functions that are defaulted in a dependent context. 16511 if (FD->isDependentContext()) 16512 return; 16513 16514 // Unset that we will have a body for this function. We might not, 16515 // if it turns out to be trivial, and we don't need this marking now 16516 // that we've marked it as defaulted. 16517 FD->setWillHaveBody(false); 16518 16519 // If this definition appears within the record, do the checking when 16520 // the record is complete. This is always the case for a defaulted 16521 // comparison. 16522 if (DefKind.isComparison()) 16523 return; 16524 auto *MD = cast<CXXMethodDecl>(FD); 16525 16526 const FunctionDecl *Primary = FD; 16527 if (const FunctionDecl *Pattern = FD->getTemplateInstantiationPattern()) 16528 // Ask the template instantiation pattern that actually had the 16529 // '= default' on it. 16530 Primary = Pattern; 16531 16532 // If the method was defaulted on its first declaration, we will have 16533 // already performed the checking in CheckCompletedCXXClass. Such a 16534 // declaration doesn't trigger an implicit definition. 16535 if (Primary->getCanonicalDecl()->isDefaulted()) 16536 return; 16537 16538 // FIXME: Once we support defining comparisons out of class, check for a 16539 // defaulted comparison here. 16540 if (CheckExplicitlyDefaultedSpecialMember(MD, DefKind.asSpecialMember())) 16541 MD->setInvalidDecl(); 16542 else 16543 DefineDefaultedFunction(*this, MD, DefaultLoc); 16544 } 16545 16546 static void SearchForReturnInStmt(Sema &Self, Stmt *S) { 16547 for (Stmt *SubStmt : S->children()) { 16548 if (!SubStmt) 16549 continue; 16550 if (isa<ReturnStmt>(SubStmt)) 16551 Self.Diag(SubStmt->getBeginLoc(), 16552 diag::err_return_in_constructor_handler); 16553 if (!isa<Expr>(SubStmt)) 16554 SearchForReturnInStmt(Self, SubStmt); 16555 } 16556 } 16557 16558 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) { 16559 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { 16560 CXXCatchStmt *Handler = TryBlock->getHandler(I); 16561 SearchForReturnInStmt(*this, Handler); 16562 } 16563 } 16564 16565 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New, 16566 const CXXMethodDecl *Old) { 16567 const auto *NewFT = New->getType()->castAs<FunctionProtoType>(); 16568 const auto *OldFT = Old->getType()->castAs<FunctionProtoType>(); 16569 16570 if (OldFT->hasExtParameterInfos()) { 16571 for (unsigned I = 0, E = OldFT->getNumParams(); I != E; ++I) 16572 // A parameter of the overriding method should be annotated with noescape 16573 // if the corresponding parameter of the overridden method is annotated. 16574 if (OldFT->getExtParameterInfo(I).isNoEscape() && 16575 !NewFT->getExtParameterInfo(I).isNoEscape()) { 16576 Diag(New->getParamDecl(I)->getLocation(), 16577 diag::warn_overriding_method_missing_noescape); 16578 Diag(Old->getParamDecl(I)->getLocation(), 16579 diag::note_overridden_marked_noescape); 16580 } 16581 } 16582 16583 // Virtual overrides must have the same code_seg. 16584 const auto *OldCSA = Old->getAttr<CodeSegAttr>(); 16585 const auto *NewCSA = New->getAttr<CodeSegAttr>(); 16586 if ((NewCSA || OldCSA) && 16587 (!OldCSA || !NewCSA || NewCSA->getName() != OldCSA->getName())) { 16588 Diag(New->getLocation(), diag::err_mismatched_code_seg_override); 16589 Diag(Old->getLocation(), diag::note_previous_declaration); 16590 return true; 16591 } 16592 16593 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv(); 16594 16595 // If the calling conventions match, everything is fine 16596 if (NewCC == OldCC) 16597 return false; 16598 16599 // If the calling conventions mismatch because the new function is static, 16600 // suppress the calling convention mismatch error; the error about static 16601 // function override (err_static_overrides_virtual from 16602 // Sema::CheckFunctionDeclaration) is more clear. 16603 if (New->getStorageClass() == SC_Static) 16604 return false; 16605 16606 Diag(New->getLocation(), 16607 diag::err_conflicting_overriding_cc_attributes) 16608 << New->getDeclName() << New->getType() << Old->getType(); 16609 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 16610 return true; 16611 } 16612 16613 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, 16614 const CXXMethodDecl *Old) { 16615 QualType NewTy = New->getType()->castAs<FunctionType>()->getReturnType(); 16616 QualType OldTy = Old->getType()->castAs<FunctionType>()->getReturnType(); 16617 16618 if (Context.hasSameType(NewTy, OldTy) || 16619 NewTy->isDependentType() || OldTy->isDependentType()) 16620 return false; 16621 16622 // Check if the return types are covariant 16623 QualType NewClassTy, OldClassTy; 16624 16625 /// Both types must be pointers or references to classes. 16626 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) { 16627 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) { 16628 NewClassTy = NewPT->getPointeeType(); 16629 OldClassTy = OldPT->getPointeeType(); 16630 } 16631 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) { 16632 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) { 16633 if (NewRT->getTypeClass() == OldRT->getTypeClass()) { 16634 NewClassTy = NewRT->getPointeeType(); 16635 OldClassTy = OldRT->getPointeeType(); 16636 } 16637 } 16638 } 16639 16640 // The return types aren't either both pointers or references to a class type. 16641 if (NewClassTy.isNull()) { 16642 Diag(New->getLocation(), 16643 diag::err_different_return_type_for_overriding_virtual_function) 16644 << New->getDeclName() << NewTy << OldTy 16645 << New->getReturnTypeSourceRange(); 16646 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 16647 << Old->getReturnTypeSourceRange(); 16648 16649 return true; 16650 } 16651 16652 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) { 16653 // C++14 [class.virtual]p8: 16654 // If the class type in the covariant return type of D::f differs from 16655 // that of B::f, the class type in the return type of D::f shall be 16656 // complete at the point of declaration of D::f or shall be the class 16657 // type D. 16658 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) { 16659 if (!RT->isBeingDefined() && 16660 RequireCompleteType(New->getLocation(), NewClassTy, 16661 diag::err_covariant_return_incomplete, 16662 New->getDeclName())) 16663 return true; 16664 } 16665 16666 // Check if the new class derives from the old class. 16667 if (!IsDerivedFrom(New->getLocation(), NewClassTy, OldClassTy)) { 16668 Diag(New->getLocation(), diag::err_covariant_return_not_derived) 16669 << New->getDeclName() << NewTy << OldTy 16670 << New->getReturnTypeSourceRange(); 16671 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 16672 << Old->getReturnTypeSourceRange(); 16673 return true; 16674 } 16675 16676 // Check if we the conversion from derived to base is valid. 16677 if (CheckDerivedToBaseConversion( 16678 NewClassTy, OldClassTy, 16679 diag::err_covariant_return_inaccessible_base, 16680 diag::err_covariant_return_ambiguous_derived_to_base_conv, 16681 New->getLocation(), New->getReturnTypeSourceRange(), 16682 New->getDeclName(), nullptr)) { 16683 // FIXME: this note won't trigger for delayed access control 16684 // diagnostics, and it's impossible to get an undelayed error 16685 // here from access control during the original parse because 16686 // the ParsingDeclSpec/ParsingDeclarator are still in scope. 16687 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 16688 << Old->getReturnTypeSourceRange(); 16689 return true; 16690 } 16691 } 16692 16693 // The qualifiers of the return types must be the same. 16694 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) { 16695 Diag(New->getLocation(), 16696 diag::err_covariant_return_type_different_qualifications) 16697 << New->getDeclName() << NewTy << OldTy 16698 << New->getReturnTypeSourceRange(); 16699 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 16700 << Old->getReturnTypeSourceRange(); 16701 return true; 16702 } 16703 16704 16705 // The new class type must have the same or less qualifiers as the old type. 16706 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) { 16707 Diag(New->getLocation(), 16708 diag::err_covariant_return_type_class_type_more_qualified) 16709 << New->getDeclName() << NewTy << OldTy 16710 << New->getReturnTypeSourceRange(); 16711 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 16712 << Old->getReturnTypeSourceRange(); 16713 return true; 16714 } 16715 16716 return false; 16717 } 16718 16719 /// Mark the given method pure. 16720 /// 16721 /// \param Method the method to be marked pure. 16722 /// 16723 /// \param InitRange the source range that covers the "0" initializer. 16724 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { 16725 SourceLocation EndLoc = InitRange.getEnd(); 16726 if (EndLoc.isValid()) 16727 Method->setRangeEnd(EndLoc); 16728 16729 if (Method->isVirtual() || Method->getParent()->isDependentContext()) { 16730 Method->setPure(); 16731 return false; 16732 } 16733 16734 if (!Method->isInvalidDecl()) 16735 Diag(Method->getLocation(), diag::err_non_virtual_pure) 16736 << Method->getDeclName() << InitRange; 16737 return true; 16738 } 16739 16740 void Sema::ActOnPureSpecifier(Decl *D, SourceLocation ZeroLoc) { 16741 if (D->getFriendObjectKind()) 16742 Diag(D->getLocation(), diag::err_pure_friend); 16743 else if (auto *M = dyn_cast<CXXMethodDecl>(D)) 16744 CheckPureMethod(M, ZeroLoc); 16745 else 16746 Diag(D->getLocation(), diag::err_illegal_initializer); 16747 } 16748 16749 /// Determine whether the given declaration is a global variable or 16750 /// static data member. 16751 static bool isNonlocalVariable(const Decl *D) { 16752 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D)) 16753 return Var->hasGlobalStorage(); 16754 16755 return false; 16756 } 16757 16758 /// Invoked when we are about to parse an initializer for the declaration 16759 /// 'Dcl'. 16760 /// 16761 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a 16762 /// static data member of class X, names should be looked up in the scope of 16763 /// class X. If the declaration had a scope specifier, a scope will have 16764 /// been created and passed in for this purpose. Otherwise, S will be null. 16765 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) { 16766 // If there is no declaration, there was an error parsing it. 16767 if (!D || D->isInvalidDecl()) 16768 return; 16769 16770 // We will always have a nested name specifier here, but this declaration 16771 // might not be out of line if the specifier names the current namespace: 16772 // extern int n; 16773 // int ::n = 0; 16774 if (S && D->isOutOfLine()) 16775 EnterDeclaratorContext(S, D->getDeclContext()); 16776 16777 // If we are parsing the initializer for a static data member, push a 16778 // new expression evaluation context that is associated with this static 16779 // data member. 16780 if (isNonlocalVariable(D)) 16781 PushExpressionEvaluationContext( 16782 ExpressionEvaluationContext::PotentiallyEvaluated, D); 16783 } 16784 16785 /// Invoked after we are finished parsing an initializer for the declaration D. 16786 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) { 16787 // If there is no declaration, there was an error parsing it. 16788 if (!D || D->isInvalidDecl()) 16789 return; 16790 16791 if (isNonlocalVariable(D)) 16792 PopExpressionEvaluationContext(); 16793 16794 if (S && D->isOutOfLine()) 16795 ExitDeclaratorContext(S); 16796 } 16797 16798 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a 16799 /// C++ if/switch/while/for statement. 16800 /// e.g: "if (int x = f()) {...}" 16801 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) { 16802 // C++ 6.4p2: 16803 // The declarator shall not specify a function or an array. 16804 // The type-specifier-seq shall not contain typedef and shall not declare a 16805 // new class or enumeration. 16806 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 16807 "Parser allowed 'typedef' as storage class of condition decl."); 16808 16809 Decl *Dcl = ActOnDeclarator(S, D); 16810 if (!Dcl) 16811 return true; 16812 16813 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function. 16814 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type) 16815 << D.getSourceRange(); 16816 return true; 16817 } 16818 16819 return Dcl; 16820 } 16821 16822 void Sema::LoadExternalVTableUses() { 16823 if (!ExternalSource) 16824 return; 16825 16826 SmallVector<ExternalVTableUse, 4> VTables; 16827 ExternalSource->ReadUsedVTables(VTables); 16828 SmallVector<VTableUse, 4> NewUses; 16829 for (unsigned I = 0, N = VTables.size(); I != N; ++I) { 16830 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos 16831 = VTablesUsed.find(VTables[I].Record); 16832 // Even if a definition wasn't required before, it may be required now. 16833 if (Pos != VTablesUsed.end()) { 16834 if (!Pos->second && VTables[I].DefinitionRequired) 16835 Pos->second = true; 16836 continue; 16837 } 16838 16839 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired; 16840 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location)); 16841 } 16842 16843 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end()); 16844 } 16845 16846 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, 16847 bool DefinitionRequired) { 16848 // Ignore any vtable uses in unevaluated operands or for classes that do 16849 // not have a vtable. 16850 if (!Class->isDynamicClass() || Class->isDependentContext() || 16851 CurContext->isDependentContext() || isUnevaluatedContext()) 16852 return; 16853 // Do not mark as used if compiling for the device outside of the target 16854 // region. 16855 if (TUKind != TU_Prefix && LangOpts.OpenMP && LangOpts.OpenMPIsDevice && 16856 !isInOpenMPDeclareTargetContext() && 16857 !isInOpenMPTargetExecutionDirective()) { 16858 if (!DefinitionRequired) 16859 MarkVirtualMembersReferenced(Loc, Class); 16860 return; 16861 } 16862 16863 // Try to insert this class into the map. 16864 LoadExternalVTableUses(); 16865 Class = Class->getCanonicalDecl(); 16866 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool> 16867 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired)); 16868 if (!Pos.second) { 16869 // If we already had an entry, check to see if we are promoting this vtable 16870 // to require a definition. If so, we need to reappend to the VTableUses 16871 // list, since we may have already processed the first entry. 16872 if (DefinitionRequired && !Pos.first->second) { 16873 Pos.first->second = true; 16874 } else { 16875 // Otherwise, we can early exit. 16876 return; 16877 } 16878 } else { 16879 // The Microsoft ABI requires that we perform the destructor body 16880 // checks (i.e. operator delete() lookup) when the vtable is marked used, as 16881 // the deleting destructor is emitted with the vtable, not with the 16882 // destructor definition as in the Itanium ABI. 16883 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 16884 CXXDestructorDecl *DD = Class->getDestructor(); 16885 if (DD && DD->isVirtual() && !DD->isDeleted()) { 16886 if (Class->hasUserDeclaredDestructor() && !DD->isDefined()) { 16887 // If this is an out-of-line declaration, marking it referenced will 16888 // not do anything. Manually call CheckDestructor to look up operator 16889 // delete(). 16890 ContextRAII SavedContext(*this, DD); 16891 CheckDestructor(DD); 16892 } else { 16893 MarkFunctionReferenced(Loc, Class->getDestructor()); 16894 } 16895 } 16896 } 16897 } 16898 16899 // Local classes need to have their virtual members marked 16900 // immediately. For all other classes, we mark their virtual members 16901 // at the end of the translation unit. 16902 if (Class->isLocalClass()) 16903 MarkVirtualMembersReferenced(Loc, Class); 16904 else 16905 VTableUses.push_back(std::make_pair(Class, Loc)); 16906 } 16907 16908 bool Sema::DefineUsedVTables() { 16909 LoadExternalVTableUses(); 16910 if (VTableUses.empty()) 16911 return false; 16912 16913 // Note: The VTableUses vector could grow as a result of marking 16914 // the members of a class as "used", so we check the size each 16915 // time through the loop and prefer indices (which are stable) to 16916 // iterators (which are not). 16917 bool DefinedAnything = false; 16918 for (unsigned I = 0; I != VTableUses.size(); ++I) { 16919 CXXRecordDecl *Class = VTableUses[I].first->getDefinition(); 16920 if (!Class) 16921 continue; 16922 TemplateSpecializationKind ClassTSK = 16923 Class->getTemplateSpecializationKind(); 16924 16925 SourceLocation Loc = VTableUses[I].second; 16926 16927 bool DefineVTable = true; 16928 16929 // If this class has a key function, but that key function is 16930 // defined in another translation unit, we don't need to emit the 16931 // vtable even though we're using it. 16932 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class); 16933 if (KeyFunction && !KeyFunction->hasBody()) { 16934 // The key function is in another translation unit. 16935 DefineVTable = false; 16936 TemplateSpecializationKind TSK = 16937 KeyFunction->getTemplateSpecializationKind(); 16938 assert(TSK != TSK_ExplicitInstantiationDefinition && 16939 TSK != TSK_ImplicitInstantiation && 16940 "Instantiations don't have key functions"); 16941 (void)TSK; 16942 } else if (!KeyFunction) { 16943 // If we have a class with no key function that is the subject 16944 // of an explicit instantiation declaration, suppress the 16945 // vtable; it will live with the explicit instantiation 16946 // definition. 16947 bool IsExplicitInstantiationDeclaration = 16948 ClassTSK == TSK_ExplicitInstantiationDeclaration; 16949 for (auto R : Class->redecls()) { 16950 TemplateSpecializationKind TSK 16951 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind(); 16952 if (TSK == TSK_ExplicitInstantiationDeclaration) 16953 IsExplicitInstantiationDeclaration = true; 16954 else if (TSK == TSK_ExplicitInstantiationDefinition) { 16955 IsExplicitInstantiationDeclaration = false; 16956 break; 16957 } 16958 } 16959 16960 if (IsExplicitInstantiationDeclaration) 16961 DefineVTable = false; 16962 } 16963 16964 // The exception specifications for all virtual members may be needed even 16965 // if we are not providing an authoritative form of the vtable in this TU. 16966 // We may choose to emit it available_externally anyway. 16967 if (!DefineVTable) { 16968 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class); 16969 continue; 16970 } 16971 16972 // Mark all of the virtual members of this class as referenced, so 16973 // that we can build a vtable. Then, tell the AST consumer that a 16974 // vtable for this class is required. 16975 DefinedAnything = true; 16976 MarkVirtualMembersReferenced(Loc, Class); 16977 CXXRecordDecl *Canonical = Class->getCanonicalDecl(); 16978 if (VTablesUsed[Canonical]) 16979 Consumer.HandleVTable(Class); 16980 16981 // Warn if we're emitting a weak vtable. The vtable will be weak if there is 16982 // no key function or the key function is inlined. Don't warn in C++ ABIs 16983 // that lack key functions, since the user won't be able to make one. 16984 if (Context.getTargetInfo().getCXXABI().hasKeyFunctions() && 16985 Class->isExternallyVisible() && ClassTSK != TSK_ImplicitInstantiation) { 16986 const FunctionDecl *KeyFunctionDef = nullptr; 16987 if (!KeyFunction || (KeyFunction->hasBody(KeyFunctionDef) && 16988 KeyFunctionDef->isInlined())) { 16989 Diag(Class->getLocation(), 16990 ClassTSK == TSK_ExplicitInstantiationDefinition 16991 ? diag::warn_weak_template_vtable 16992 : diag::warn_weak_vtable) 16993 << Class; 16994 } 16995 } 16996 } 16997 VTableUses.clear(); 16998 16999 return DefinedAnything; 17000 } 17001 17002 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc, 17003 const CXXRecordDecl *RD) { 17004 for (const auto *I : RD->methods()) 17005 if (I->isVirtual() && !I->isPure()) 17006 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>()); 17007 } 17008 17009 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc, 17010 const CXXRecordDecl *RD, 17011 bool ConstexprOnly) { 17012 // Mark all functions which will appear in RD's vtable as used. 17013 CXXFinalOverriderMap FinalOverriders; 17014 RD->getFinalOverriders(FinalOverriders); 17015 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(), 17016 E = FinalOverriders.end(); 17017 I != E; ++I) { 17018 for (OverridingMethods::const_iterator OI = I->second.begin(), 17019 OE = I->second.end(); 17020 OI != OE; ++OI) { 17021 assert(OI->second.size() > 0 && "no final overrider"); 17022 CXXMethodDecl *Overrider = OI->second.front().Method; 17023 17024 // C++ [basic.def.odr]p2: 17025 // [...] A virtual member function is used if it is not pure. [...] 17026 if (!Overrider->isPure() && (!ConstexprOnly || Overrider->isConstexpr())) 17027 MarkFunctionReferenced(Loc, Overrider); 17028 } 17029 } 17030 17031 // Only classes that have virtual bases need a VTT. 17032 if (RD->getNumVBases() == 0) 17033 return; 17034 17035 for (const auto &I : RD->bases()) { 17036 const auto *Base = 17037 cast<CXXRecordDecl>(I.getType()->castAs<RecordType>()->getDecl()); 17038 if (Base->getNumVBases() == 0) 17039 continue; 17040 MarkVirtualMembersReferenced(Loc, Base); 17041 } 17042 } 17043 17044 /// SetIvarInitializers - This routine builds initialization ASTs for the 17045 /// Objective-C implementation whose ivars need be initialized. 17046 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) { 17047 if (!getLangOpts().CPlusPlus) 17048 return; 17049 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) { 17050 SmallVector<ObjCIvarDecl*, 8> ivars; 17051 CollectIvarsToConstructOrDestruct(OID, ivars); 17052 if (ivars.empty()) 17053 return; 17054 SmallVector<CXXCtorInitializer*, 32> AllToInit; 17055 for (unsigned i = 0; i < ivars.size(); i++) { 17056 FieldDecl *Field = ivars[i]; 17057 if (Field->isInvalidDecl()) 17058 continue; 17059 17060 CXXCtorInitializer *Member; 17061 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field); 17062 InitializationKind InitKind = 17063 InitializationKind::CreateDefault(ObjCImplementation->getLocation()); 17064 17065 InitializationSequence InitSeq(*this, InitEntity, InitKind, None); 17066 ExprResult MemberInit = 17067 InitSeq.Perform(*this, InitEntity, InitKind, None); 17068 MemberInit = MaybeCreateExprWithCleanups(MemberInit); 17069 // Note, MemberInit could actually come back empty if no initialization 17070 // is required (e.g., because it would call a trivial default constructor) 17071 if (!MemberInit.get() || MemberInit.isInvalid()) 17072 continue; 17073 17074 Member = 17075 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(), 17076 SourceLocation(), 17077 MemberInit.getAs<Expr>(), 17078 SourceLocation()); 17079 AllToInit.push_back(Member); 17080 17081 // Be sure that the destructor is accessible and is marked as referenced. 17082 if (const RecordType *RecordTy = 17083 Context.getBaseElementType(Field->getType()) 17084 ->getAs<RecordType>()) { 17085 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); 17086 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { 17087 MarkFunctionReferenced(Field->getLocation(), Destructor); 17088 CheckDestructorAccess(Field->getLocation(), Destructor, 17089 PDiag(diag::err_access_dtor_ivar) 17090 << Context.getBaseElementType(Field->getType())); 17091 } 17092 } 17093 } 17094 ObjCImplementation->setIvarInitializers(Context, 17095 AllToInit.data(), AllToInit.size()); 17096 } 17097 } 17098 17099 static 17100 void DelegatingCycleHelper(CXXConstructorDecl* Ctor, 17101 llvm::SmallPtrSet<CXXConstructorDecl*, 4> &Valid, 17102 llvm::SmallPtrSet<CXXConstructorDecl*, 4> &Invalid, 17103 llvm::SmallPtrSet<CXXConstructorDecl*, 4> &Current, 17104 Sema &S) { 17105 if (Ctor->isInvalidDecl()) 17106 return; 17107 17108 CXXConstructorDecl *Target = Ctor->getTargetConstructor(); 17109 17110 // Target may not be determinable yet, for instance if this is a dependent 17111 // call in an uninstantiated template. 17112 if (Target) { 17113 const FunctionDecl *FNTarget = nullptr; 17114 (void)Target->hasBody(FNTarget); 17115 Target = const_cast<CXXConstructorDecl*>( 17116 cast_or_null<CXXConstructorDecl>(FNTarget)); 17117 } 17118 17119 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), 17120 // Avoid dereferencing a null pointer here. 17121 *TCanonical = Target? Target->getCanonicalDecl() : nullptr; 17122 17123 if (!Current.insert(Canonical).second) 17124 return; 17125 17126 // We know that beyond here, we aren't chaining into a cycle. 17127 if (!Target || !Target->isDelegatingConstructor() || 17128 Target->isInvalidDecl() || Valid.count(TCanonical)) { 17129 Valid.insert(Current.begin(), Current.end()); 17130 Current.clear(); 17131 // We've hit a cycle. 17132 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || 17133 Current.count(TCanonical)) { 17134 // If we haven't diagnosed this cycle yet, do so now. 17135 if (!Invalid.count(TCanonical)) { 17136 S.Diag((*Ctor->init_begin())->getSourceLocation(), 17137 diag::warn_delegating_ctor_cycle) 17138 << Ctor; 17139 17140 // Don't add a note for a function delegating directly to itself. 17141 if (TCanonical != Canonical) 17142 S.Diag(Target->getLocation(), diag::note_it_delegates_to); 17143 17144 CXXConstructorDecl *C = Target; 17145 while (C->getCanonicalDecl() != Canonical) { 17146 const FunctionDecl *FNTarget = nullptr; 17147 (void)C->getTargetConstructor()->hasBody(FNTarget); 17148 assert(FNTarget && "Ctor cycle through bodiless function"); 17149 17150 C = const_cast<CXXConstructorDecl*>( 17151 cast<CXXConstructorDecl>(FNTarget)); 17152 S.Diag(C->getLocation(), diag::note_which_delegates_to); 17153 } 17154 } 17155 17156 Invalid.insert(Current.begin(), Current.end()); 17157 Current.clear(); 17158 } else { 17159 DelegatingCycleHelper(Target, Valid, Invalid, Current, S); 17160 } 17161 } 17162 17163 17164 void Sema::CheckDelegatingCtorCycles() { 17165 llvm::SmallPtrSet<CXXConstructorDecl*, 4> Valid, Invalid, Current; 17166 17167 for (DelegatingCtorDeclsType::iterator 17168 I = DelegatingCtorDecls.begin(ExternalSource), 17169 E = DelegatingCtorDecls.end(); 17170 I != E; ++I) 17171 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this); 17172 17173 for (auto CI = Invalid.begin(), CE = Invalid.end(); CI != CE; ++CI) 17174 (*CI)->setInvalidDecl(); 17175 } 17176 17177 namespace { 17178 /// AST visitor that finds references to the 'this' expression. 17179 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> { 17180 Sema &S; 17181 17182 public: 17183 explicit FindCXXThisExpr(Sema &S) : S(S) { } 17184 17185 bool VisitCXXThisExpr(CXXThisExpr *E) { 17186 S.Diag(E->getLocation(), diag::err_this_static_member_func) 17187 << E->isImplicit(); 17188 return false; 17189 } 17190 }; 17191 } 17192 17193 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) { 17194 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 17195 if (!TSInfo) 17196 return false; 17197 17198 TypeLoc TL = TSInfo->getTypeLoc(); 17199 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 17200 if (!ProtoTL) 17201 return false; 17202 17203 // C++11 [expr.prim.general]p3: 17204 // [The expression this] shall not appear before the optional 17205 // cv-qualifier-seq and it shall not appear within the declaration of a 17206 // static member function (although its type and value category are defined 17207 // within a static member function as they are within a non-static member 17208 // function). [ Note: this is because declaration matching does not occur 17209 // until the complete declarator is known. - end note ] 17210 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 17211 FindCXXThisExpr Finder(*this); 17212 17213 // If the return type came after the cv-qualifier-seq, check it now. 17214 if (Proto->hasTrailingReturn() && 17215 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc())) 17216 return true; 17217 17218 // Check the exception specification. 17219 if (checkThisInStaticMemberFunctionExceptionSpec(Method)) 17220 return true; 17221 17222 // Check the trailing requires clause 17223 if (Expr *E = Method->getTrailingRequiresClause()) 17224 if (!Finder.TraverseStmt(E)) 17225 return true; 17226 17227 return checkThisInStaticMemberFunctionAttributes(Method); 17228 } 17229 17230 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) { 17231 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 17232 if (!TSInfo) 17233 return false; 17234 17235 TypeLoc TL = TSInfo->getTypeLoc(); 17236 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 17237 if (!ProtoTL) 17238 return false; 17239 17240 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 17241 FindCXXThisExpr Finder(*this); 17242 17243 switch (Proto->getExceptionSpecType()) { 17244 case EST_Unparsed: 17245 case EST_Uninstantiated: 17246 case EST_Unevaluated: 17247 case EST_BasicNoexcept: 17248 case EST_NoThrow: 17249 case EST_DynamicNone: 17250 case EST_MSAny: 17251 case EST_None: 17252 break; 17253 17254 case EST_DependentNoexcept: 17255 case EST_NoexceptFalse: 17256 case EST_NoexceptTrue: 17257 if (!Finder.TraverseStmt(Proto->getNoexceptExpr())) 17258 return true; 17259 LLVM_FALLTHROUGH; 17260 17261 case EST_Dynamic: 17262 for (const auto &E : Proto->exceptions()) { 17263 if (!Finder.TraverseType(E)) 17264 return true; 17265 } 17266 break; 17267 } 17268 17269 return false; 17270 } 17271 17272 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) { 17273 FindCXXThisExpr Finder(*this); 17274 17275 // Check attributes. 17276 for (const auto *A : Method->attrs()) { 17277 // FIXME: This should be emitted by tblgen. 17278 Expr *Arg = nullptr; 17279 ArrayRef<Expr *> Args; 17280 if (const auto *G = dyn_cast<GuardedByAttr>(A)) 17281 Arg = G->getArg(); 17282 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A)) 17283 Arg = G->getArg(); 17284 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A)) 17285 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size()); 17286 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A)) 17287 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size()); 17288 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) { 17289 Arg = ETLF->getSuccessValue(); 17290 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size()); 17291 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) { 17292 Arg = STLF->getSuccessValue(); 17293 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size()); 17294 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A)) 17295 Arg = LR->getArg(); 17296 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A)) 17297 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size()); 17298 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A)) 17299 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 17300 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A)) 17301 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 17302 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A)) 17303 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 17304 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A)) 17305 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 17306 17307 if (Arg && !Finder.TraverseStmt(Arg)) 17308 return true; 17309 17310 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 17311 if (!Finder.TraverseStmt(Args[I])) 17312 return true; 17313 } 17314 } 17315 17316 return false; 17317 } 17318 17319 void Sema::checkExceptionSpecification( 17320 bool IsTopLevel, ExceptionSpecificationType EST, 17321 ArrayRef<ParsedType> DynamicExceptions, 17322 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, 17323 SmallVectorImpl<QualType> &Exceptions, 17324 FunctionProtoType::ExceptionSpecInfo &ESI) { 17325 Exceptions.clear(); 17326 ESI.Type = EST; 17327 if (EST == EST_Dynamic) { 17328 Exceptions.reserve(DynamicExceptions.size()); 17329 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) { 17330 // FIXME: Preserve type source info. 17331 QualType ET = GetTypeFromParser(DynamicExceptions[ei]); 17332 17333 if (IsTopLevel) { 17334 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 17335 collectUnexpandedParameterPacks(ET, Unexpanded); 17336 if (!Unexpanded.empty()) { 17337 DiagnoseUnexpandedParameterPacks( 17338 DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType, 17339 Unexpanded); 17340 continue; 17341 } 17342 } 17343 17344 // Check that the type is valid for an exception spec, and 17345 // drop it if not. 17346 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei])) 17347 Exceptions.push_back(ET); 17348 } 17349 ESI.Exceptions = Exceptions; 17350 return; 17351 } 17352 17353 if (isComputedNoexcept(EST)) { 17354 assert((NoexceptExpr->isTypeDependent() || 17355 NoexceptExpr->getType()->getCanonicalTypeUnqualified() == 17356 Context.BoolTy) && 17357 "Parser should have made sure that the expression is boolean"); 17358 if (IsTopLevel && DiagnoseUnexpandedParameterPack(NoexceptExpr)) { 17359 ESI.Type = EST_BasicNoexcept; 17360 return; 17361 } 17362 17363 ESI.NoexceptExpr = NoexceptExpr; 17364 return; 17365 } 17366 } 17367 17368 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD, 17369 ExceptionSpecificationType EST, 17370 SourceRange SpecificationRange, 17371 ArrayRef<ParsedType> DynamicExceptions, 17372 ArrayRef<SourceRange> DynamicExceptionRanges, 17373 Expr *NoexceptExpr) { 17374 if (!MethodD) 17375 return; 17376 17377 // Dig out the method we're referring to. 17378 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD)) 17379 MethodD = FunTmpl->getTemplatedDecl(); 17380 17381 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD); 17382 if (!Method) 17383 return; 17384 17385 // Check the exception specification. 17386 llvm::SmallVector<QualType, 4> Exceptions; 17387 FunctionProtoType::ExceptionSpecInfo ESI; 17388 checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions, 17389 DynamicExceptionRanges, NoexceptExpr, Exceptions, 17390 ESI); 17391 17392 // Update the exception specification on the function type. 17393 Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true); 17394 17395 if (Method->isStatic()) 17396 checkThisInStaticMemberFunctionExceptionSpec(Method); 17397 17398 if (Method->isVirtual()) { 17399 // Check overrides, which we previously had to delay. 17400 for (const CXXMethodDecl *O : Method->overridden_methods()) 17401 CheckOverridingFunctionExceptionSpec(Method, O); 17402 } 17403 } 17404 17405 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class. 17406 /// 17407 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, 17408 SourceLocation DeclStart, Declarator &D, 17409 Expr *BitWidth, 17410 InClassInitStyle InitStyle, 17411 AccessSpecifier AS, 17412 const ParsedAttr &MSPropertyAttr) { 17413 IdentifierInfo *II = D.getIdentifier(); 17414 if (!II) { 17415 Diag(DeclStart, diag::err_anonymous_property); 17416 return nullptr; 17417 } 17418 SourceLocation Loc = D.getIdentifierLoc(); 17419 17420 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 17421 QualType T = TInfo->getType(); 17422 if (getLangOpts().CPlusPlus) { 17423 CheckExtraCXXDefaultArguments(D); 17424 17425 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 17426 UPPC_DataMemberType)) { 17427 D.setInvalidType(); 17428 T = Context.IntTy; 17429 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 17430 } 17431 } 17432 17433 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 17434 17435 if (D.getDeclSpec().isInlineSpecified()) 17436 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 17437 << getLangOpts().CPlusPlus17; 17438 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 17439 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 17440 diag::err_invalid_thread) 17441 << DeclSpec::getSpecifierName(TSCS); 17442 17443 // Check to see if this name was declared as a member previously 17444 NamedDecl *PrevDecl = nullptr; 17445 LookupResult Previous(*this, II, Loc, LookupMemberName, 17446 ForVisibleRedeclaration); 17447 LookupName(Previous, S); 17448 switch (Previous.getResultKind()) { 17449 case LookupResult::Found: 17450 case LookupResult::FoundUnresolvedValue: 17451 PrevDecl = Previous.getAsSingle<NamedDecl>(); 17452 break; 17453 17454 case LookupResult::FoundOverloaded: 17455 PrevDecl = Previous.getRepresentativeDecl(); 17456 break; 17457 17458 case LookupResult::NotFound: 17459 case LookupResult::NotFoundInCurrentInstantiation: 17460 case LookupResult::Ambiguous: 17461 break; 17462 } 17463 17464 if (PrevDecl && PrevDecl->isTemplateParameter()) { 17465 // Maybe we will complain about the shadowed template parameter. 17466 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 17467 // Just pretend that we didn't see the previous declaration. 17468 PrevDecl = nullptr; 17469 } 17470 17471 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 17472 PrevDecl = nullptr; 17473 17474 SourceLocation TSSL = D.getBeginLoc(); 17475 MSPropertyDecl *NewPD = 17476 MSPropertyDecl::Create(Context, Record, Loc, II, T, TInfo, TSSL, 17477 MSPropertyAttr.getPropertyDataGetter(), 17478 MSPropertyAttr.getPropertyDataSetter()); 17479 ProcessDeclAttributes(TUScope, NewPD, D); 17480 NewPD->setAccess(AS); 17481 17482 if (NewPD->isInvalidDecl()) 17483 Record->setInvalidDecl(); 17484 17485 if (D.getDeclSpec().isModulePrivateSpecified()) 17486 NewPD->setModulePrivate(); 17487 17488 if (NewPD->isInvalidDecl() && PrevDecl) { 17489 // Don't introduce NewFD into scope; there's already something 17490 // with the same name in the same scope. 17491 } else if (II) { 17492 PushOnScopeChains(NewPD, S); 17493 } else 17494 Record->addDecl(NewPD); 17495 17496 return NewPD; 17497 } 17498 17499 void Sema::ActOnStartFunctionDeclarationDeclarator( 17500 Declarator &Declarator, unsigned TemplateParameterDepth) { 17501 auto &Info = InventedParameterInfos.emplace_back(); 17502 TemplateParameterList *ExplicitParams = nullptr; 17503 ArrayRef<TemplateParameterList *> ExplicitLists = 17504 Declarator.getTemplateParameterLists(); 17505 if (!ExplicitLists.empty()) { 17506 bool IsMemberSpecialization, IsInvalid; 17507 ExplicitParams = MatchTemplateParametersToScopeSpecifier( 17508 Declarator.getBeginLoc(), Declarator.getIdentifierLoc(), 17509 Declarator.getCXXScopeSpec(), /*TemplateId=*/nullptr, 17510 ExplicitLists, /*IsFriend=*/false, IsMemberSpecialization, IsInvalid, 17511 /*SuppressDiagnostic=*/true); 17512 } 17513 if (ExplicitParams) { 17514 Info.AutoTemplateParameterDepth = ExplicitParams->getDepth(); 17515 for (NamedDecl *Param : *ExplicitParams) 17516 Info.TemplateParams.push_back(Param); 17517 Info.NumExplicitTemplateParams = ExplicitParams->size(); 17518 } else { 17519 Info.AutoTemplateParameterDepth = TemplateParameterDepth; 17520 Info.NumExplicitTemplateParams = 0; 17521 } 17522 } 17523 17524 void Sema::ActOnFinishFunctionDeclarationDeclarator(Declarator &Declarator) { 17525 auto &FSI = InventedParameterInfos.back(); 17526 if (FSI.TemplateParams.size() > FSI.NumExplicitTemplateParams) { 17527 if (FSI.NumExplicitTemplateParams != 0) { 17528 TemplateParameterList *ExplicitParams = 17529 Declarator.getTemplateParameterLists().back(); 17530 Declarator.setInventedTemplateParameterList( 17531 TemplateParameterList::Create( 17532 Context, ExplicitParams->getTemplateLoc(), 17533 ExplicitParams->getLAngleLoc(), FSI.TemplateParams, 17534 ExplicitParams->getRAngleLoc(), 17535 ExplicitParams->getRequiresClause())); 17536 } else { 17537 Declarator.setInventedTemplateParameterList( 17538 TemplateParameterList::Create( 17539 Context, SourceLocation(), SourceLocation(), FSI.TemplateParams, 17540 SourceLocation(), /*RequiresClause=*/nullptr)); 17541 } 17542 } 17543 InventedParameterInfos.pop_back(); 17544 } 17545