1 //===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements semantic analysis for C++ declarations. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/Sema/SemaInternal.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/ASTLambda.h" 18 #include "clang/AST/ASTMutationListener.h" 19 #include "clang/AST/CXXInheritance.h" 20 #include "clang/AST/CharUnits.h" 21 #include "clang/AST/EvaluatedExprVisitor.h" 22 #include "clang/AST/ExprCXX.h" 23 #include "clang/AST/RecordLayout.h" 24 #include "clang/AST/RecursiveASTVisitor.h" 25 #include "clang/AST/StmtVisitor.h" 26 #include "clang/AST/TypeLoc.h" 27 #include "clang/AST/TypeOrdering.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/Template.h" 40 #include "llvm/ADT/STLExtras.h" 41 #include "llvm/ADT/SmallString.h" 42 #include <map> 43 #include <set> 44 45 using namespace clang; 46 47 //===----------------------------------------------------------------------===// 48 // CheckDefaultArgumentVisitor 49 //===----------------------------------------------------------------------===// 50 51 namespace { 52 /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses 53 /// the default argument of a parameter to determine whether it 54 /// contains any ill-formed subexpressions. For example, this will 55 /// diagnose the use of local variables or parameters within the 56 /// default argument expression. 57 class CheckDefaultArgumentVisitor 58 : public StmtVisitor<CheckDefaultArgumentVisitor, bool> { 59 Expr *DefaultArg; 60 Sema *S; 61 62 public: 63 CheckDefaultArgumentVisitor(Expr *defarg, Sema *s) 64 : DefaultArg(defarg), S(s) {} 65 66 bool VisitExpr(Expr *Node); 67 bool VisitDeclRefExpr(DeclRefExpr *DRE); 68 bool VisitCXXThisExpr(CXXThisExpr *ThisE); 69 bool VisitLambdaExpr(LambdaExpr *Lambda); 70 bool VisitPseudoObjectExpr(PseudoObjectExpr *POE); 71 }; 72 73 /// VisitExpr - Visit all of the children of this expression. 74 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) { 75 bool IsInvalid = false; 76 for (Stmt *SubStmt : Node->children()) 77 IsInvalid |= Visit(SubStmt); 78 return IsInvalid; 79 } 80 81 /// VisitDeclRefExpr - Visit a reference to a declaration, to 82 /// determine whether this declaration can be used in the default 83 /// argument expression. 84 bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) { 85 NamedDecl *Decl = DRE->getDecl(); 86 if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) { 87 // C++ [dcl.fct.default]p9 88 // Default arguments are evaluated each time the function is 89 // called. The order of evaluation of function arguments is 90 // unspecified. Consequently, parameters of a function shall not 91 // be used in default argument expressions, even if they are not 92 // evaluated. Parameters of a function declared before a default 93 // argument expression are in scope and can hide namespace and 94 // class member names. 95 return S->Diag(DRE->getLocStart(), 96 diag::err_param_default_argument_references_param) 97 << Param->getDeclName() << DefaultArg->getSourceRange(); 98 } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) { 99 // C++ [dcl.fct.default]p7 100 // Local variables shall not be used in default argument 101 // expressions. 102 if (VDecl->isLocalVarDecl()) 103 return S->Diag(DRE->getLocStart(), 104 diag::err_param_default_argument_references_local) 105 << VDecl->getDeclName() << DefaultArg->getSourceRange(); 106 } 107 108 return false; 109 } 110 111 /// VisitCXXThisExpr - Visit a C++ "this" expression. 112 bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) { 113 // C++ [dcl.fct.default]p8: 114 // The keyword this shall not be used in a default argument of a 115 // member function. 116 return S->Diag(ThisE->getLocStart(), 117 diag::err_param_default_argument_references_this) 118 << ThisE->getSourceRange(); 119 } 120 121 bool CheckDefaultArgumentVisitor::VisitPseudoObjectExpr(PseudoObjectExpr *POE) { 122 bool Invalid = false; 123 for (PseudoObjectExpr::semantics_iterator 124 i = POE->semantics_begin(), e = POE->semantics_end(); i != e; ++i) { 125 Expr *E = *i; 126 127 // Look through bindings. 128 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 129 E = OVE->getSourceExpr(); 130 assert(E && "pseudo-object binding without source expression?"); 131 } 132 133 Invalid |= Visit(E); 134 } 135 return Invalid; 136 } 137 138 bool CheckDefaultArgumentVisitor::VisitLambdaExpr(LambdaExpr *Lambda) { 139 // C++11 [expr.lambda.prim]p13: 140 // A lambda-expression appearing in a default argument shall not 141 // implicitly or explicitly capture any entity. 142 if (Lambda->capture_begin() == Lambda->capture_end()) 143 return false; 144 145 return S->Diag(Lambda->getLocStart(), 146 diag::err_lambda_capture_default_arg); 147 } 148 } 149 150 void 151 Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc, 152 const CXXMethodDecl *Method) { 153 // If we have an MSAny spec already, don't bother. 154 if (!Method || ComputedEST == EST_MSAny) 155 return; 156 157 const FunctionProtoType *Proto 158 = Method->getType()->getAs<FunctionProtoType>(); 159 Proto = Self->ResolveExceptionSpec(CallLoc, Proto); 160 if (!Proto) 161 return; 162 163 ExceptionSpecificationType EST = Proto->getExceptionSpecType(); 164 165 // If we have a throw-all spec at this point, ignore the function. 166 if (ComputedEST == EST_None) 167 return; 168 169 switch(EST) { 170 // If this function can throw any exceptions, make a note of that. 171 case EST_MSAny: 172 case EST_None: 173 ClearExceptions(); 174 ComputedEST = EST; 175 return; 176 // FIXME: If the call to this decl is using any of its default arguments, we 177 // need to search them for potentially-throwing calls. 178 // If this function has a basic noexcept, it doesn't affect the outcome. 179 case EST_BasicNoexcept: 180 return; 181 // If we're still at noexcept(true) and there's a nothrow() callee, 182 // change to that specification. 183 case EST_DynamicNone: 184 if (ComputedEST == EST_BasicNoexcept) 185 ComputedEST = EST_DynamicNone; 186 return; 187 // Check out noexcept specs. 188 case EST_ComputedNoexcept: 189 { 190 FunctionProtoType::NoexceptResult NR = 191 Proto->getNoexceptSpec(Self->Context); 192 assert(NR != FunctionProtoType::NR_NoNoexcept && 193 "Must have noexcept result for EST_ComputedNoexcept."); 194 assert(NR != FunctionProtoType::NR_Dependent && 195 "Should not generate implicit declarations for dependent cases, " 196 "and don't know how to handle them anyway."); 197 // noexcept(false) -> no spec on the new function 198 if (NR == FunctionProtoType::NR_Throw) { 199 ClearExceptions(); 200 ComputedEST = EST_None; 201 } 202 // noexcept(true) won't change anything either. 203 return; 204 } 205 default: 206 break; 207 } 208 assert(EST == EST_Dynamic && "EST case not considered earlier."); 209 assert(ComputedEST != EST_None && 210 "Shouldn't collect exceptions when throw-all is guaranteed."); 211 ComputedEST = EST_Dynamic; 212 // Record the exceptions in this function's exception specification. 213 for (const auto &E : Proto->exceptions()) 214 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)).second) 215 Exceptions.push_back(E); 216 } 217 218 void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) { 219 if (!E || ComputedEST == EST_MSAny) 220 return; 221 222 // FIXME: 223 // 224 // C++0x [except.spec]p14: 225 // [An] implicit exception-specification specifies the type-id T if and 226 // only if T is allowed by the exception-specification of a function directly 227 // invoked by f's implicit definition; f shall allow all exceptions if any 228 // function it directly invokes allows all exceptions, and f shall allow no 229 // exceptions if every function it directly invokes allows no exceptions. 230 // 231 // Note in particular that if an implicit exception-specification is generated 232 // for a function containing a throw-expression, that specification can still 233 // be noexcept(true). 234 // 235 // Note also that 'directly invoked' is not defined in the standard, and there 236 // is no indication that we should only consider potentially-evaluated calls. 237 // 238 // Ultimately we should implement the intent of the standard: the exception 239 // specification should be the set of exceptions which can be thrown by the 240 // implicit definition. For now, we assume that any non-nothrow expression can 241 // throw any exception. 242 243 if (Self->canThrow(E)) 244 ComputedEST = EST_None; 245 } 246 247 bool 248 Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, 249 SourceLocation EqualLoc) { 250 if (RequireCompleteType(Param->getLocation(), Param->getType(), 251 diag::err_typecheck_decl_incomplete_type)) { 252 Param->setInvalidDecl(); 253 return true; 254 } 255 256 // C++ [dcl.fct.default]p5 257 // A default argument expression is implicitly converted (clause 258 // 4) to the parameter type. The default argument expression has 259 // the same semantic constraints as the initializer expression in 260 // a declaration of a variable of the parameter type, using the 261 // copy-initialization semantics (8.5). 262 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, 263 Param); 264 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(), 265 EqualLoc); 266 InitializationSequence InitSeq(*this, Entity, Kind, Arg); 267 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg); 268 if (Result.isInvalid()) 269 return true; 270 Arg = Result.getAs<Expr>(); 271 272 CheckCompletedExpr(Arg, EqualLoc); 273 Arg = MaybeCreateExprWithCleanups(Arg); 274 275 // Okay: add the default argument to the parameter 276 Param->setDefaultArg(Arg); 277 278 // We have already instantiated this parameter; provide each of the 279 // instantiations with the uninstantiated default argument. 280 UnparsedDefaultArgInstantiationsMap::iterator InstPos 281 = UnparsedDefaultArgInstantiations.find(Param); 282 if (InstPos != UnparsedDefaultArgInstantiations.end()) { 283 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I) 284 InstPos->second[I]->setUninstantiatedDefaultArg(Arg); 285 286 // We're done tracking this parameter's instantiations. 287 UnparsedDefaultArgInstantiations.erase(InstPos); 288 } 289 290 return false; 291 } 292 293 /// ActOnParamDefaultArgument - Check whether the default argument 294 /// provided for a function parameter is well-formed. If so, attach it 295 /// to the parameter declaration. 296 void 297 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc, 298 Expr *DefaultArg) { 299 if (!param || !DefaultArg) 300 return; 301 302 ParmVarDecl *Param = cast<ParmVarDecl>(param); 303 UnparsedDefaultArgLocs.erase(Param); 304 305 // Default arguments are only permitted in C++ 306 if (!getLangOpts().CPlusPlus) { 307 Diag(EqualLoc, diag::err_param_default_argument) 308 << DefaultArg->getSourceRange(); 309 Param->setInvalidDecl(); 310 return; 311 } 312 313 // Check for unexpanded parameter packs. 314 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) { 315 Param->setInvalidDecl(); 316 return; 317 } 318 319 // C++11 [dcl.fct.default]p3 320 // A default argument expression [...] shall not be specified for a 321 // parameter pack. 322 if (Param->isParameterPack()) { 323 Diag(EqualLoc, diag::err_param_default_argument_on_parameter_pack) 324 << DefaultArg->getSourceRange(); 325 return; 326 } 327 328 // Check that the default argument is well-formed 329 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this); 330 if (DefaultArgChecker.Visit(DefaultArg)) { 331 Param->setInvalidDecl(); 332 return; 333 } 334 335 SetParamDefaultArgument(Param, DefaultArg, EqualLoc); 336 } 337 338 /// ActOnParamUnparsedDefaultArgument - We've seen a default 339 /// argument for a function parameter, but we can't parse it yet 340 /// because we're inside a class definition. Note that this default 341 /// argument will be parsed later. 342 void Sema::ActOnParamUnparsedDefaultArgument(Decl *param, 343 SourceLocation EqualLoc, 344 SourceLocation ArgLoc) { 345 if (!param) 346 return; 347 348 ParmVarDecl *Param = cast<ParmVarDecl>(param); 349 Param->setUnparsedDefaultArg(); 350 UnparsedDefaultArgLocs[Param] = ArgLoc; 351 } 352 353 /// ActOnParamDefaultArgumentError - Parsing or semantic analysis of 354 /// the default argument for the parameter param failed. 355 void Sema::ActOnParamDefaultArgumentError(Decl *param, 356 SourceLocation EqualLoc) { 357 if (!param) 358 return; 359 360 ParmVarDecl *Param = cast<ParmVarDecl>(param); 361 Param->setInvalidDecl(); 362 UnparsedDefaultArgLocs.erase(Param); 363 Param->setDefaultArg(new(Context) 364 OpaqueValueExpr(EqualLoc, 365 Param->getType().getNonReferenceType(), 366 VK_RValue)); 367 } 368 369 /// CheckExtraCXXDefaultArguments - Check for any extra default 370 /// arguments in the declarator, which is not a function declaration 371 /// or definition and therefore is not permitted to have default 372 /// arguments. This routine should be invoked for every declarator 373 /// that is not a function declaration or definition. 374 void Sema::CheckExtraCXXDefaultArguments(Declarator &D) { 375 // C++ [dcl.fct.default]p3 376 // A default argument expression shall be specified only in the 377 // parameter-declaration-clause of a function declaration or in a 378 // template-parameter (14.1). It shall not be specified for a 379 // parameter pack. If it is specified in a 380 // parameter-declaration-clause, it shall not occur within a 381 // declarator or abstract-declarator of a parameter-declaration. 382 bool MightBeFunction = D.isFunctionDeclarationContext(); 383 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) { 384 DeclaratorChunk &chunk = D.getTypeObject(i); 385 if (chunk.Kind == DeclaratorChunk::Function) { 386 if (MightBeFunction) { 387 // This is a function declaration. It can have default arguments, but 388 // keep looking in case its return type is a function type with default 389 // arguments. 390 MightBeFunction = false; 391 continue; 392 } 393 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e; 394 ++argIdx) { 395 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param); 396 if (Param->hasUnparsedDefaultArg()) { 397 CachedTokens *Toks = chunk.Fun.Params[argIdx].DefaultArgTokens; 398 SourceRange SR; 399 if (Toks->size() > 1) 400 SR = SourceRange((*Toks)[1].getLocation(), 401 Toks->back().getLocation()); 402 else 403 SR = UnparsedDefaultArgLocs[Param]; 404 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) 405 << SR; 406 delete Toks; 407 chunk.Fun.Params[argIdx].DefaultArgTokens = nullptr; 408 } else if (Param->getDefaultArg()) { 409 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) 410 << Param->getDefaultArg()->getSourceRange(); 411 Param->setDefaultArg(nullptr); 412 } 413 } 414 } else if (chunk.Kind != DeclaratorChunk::Paren) { 415 MightBeFunction = false; 416 } 417 } 418 } 419 420 static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) { 421 for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) { 422 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1); 423 if (!PVD->hasDefaultArg()) 424 return false; 425 if (!PVD->hasInheritedDefaultArg()) 426 return true; 427 } 428 return false; 429 } 430 431 /// MergeCXXFunctionDecl - Merge two declarations of the same C++ 432 /// function, once we already know that they have the same 433 /// type. Subroutine of MergeFunctionDecl. Returns true if there was an 434 /// error, false otherwise. 435 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old, 436 Scope *S) { 437 bool Invalid = false; 438 439 // The declaration context corresponding to the scope is the semantic 440 // parent, unless this is a local function declaration, in which case 441 // it is that surrounding function. 442 DeclContext *ScopeDC = New->isLocalExternDecl() 443 ? New->getLexicalDeclContext() 444 : New->getDeclContext(); 445 446 // Find the previous declaration for the purpose of default arguments. 447 FunctionDecl *PrevForDefaultArgs = Old; 448 for (/**/; PrevForDefaultArgs; 449 // Don't bother looking back past the latest decl if this is a local 450 // extern declaration; nothing else could work. 451 PrevForDefaultArgs = New->isLocalExternDecl() 452 ? nullptr 453 : PrevForDefaultArgs->getPreviousDecl()) { 454 // Ignore hidden declarations. 455 if (!LookupResult::isVisible(*this, PrevForDefaultArgs)) 456 continue; 457 458 if (S && !isDeclInScope(PrevForDefaultArgs, ScopeDC, S) && 459 !New->isCXXClassMember()) { 460 // Ignore default arguments of old decl if they are not in 461 // the same scope and this is not an out-of-line definition of 462 // a member function. 463 continue; 464 } 465 466 if (PrevForDefaultArgs->isLocalExternDecl() != New->isLocalExternDecl()) { 467 // If only one of these is a local function declaration, then they are 468 // declared in different scopes, even though isDeclInScope may think 469 // they're in the same scope. (If both are local, the scope check is 470 // sufficent, and if neither is local, then they are in the same scope.) 471 continue; 472 } 473 474 // We found our guy. 475 break; 476 } 477 478 // C++ [dcl.fct.default]p4: 479 // For non-template functions, default arguments can be added in 480 // later declarations of a function in the same 481 // scope. Declarations in different scopes have completely 482 // distinct sets of default arguments. That is, declarations in 483 // inner scopes do not acquire default arguments from 484 // declarations in outer scopes, and vice versa. In a given 485 // function declaration, all parameters subsequent to a 486 // parameter with a default argument shall have default 487 // arguments supplied in this or previous declarations. A 488 // default argument shall not be redefined by a later 489 // declaration (not even to the same value). 490 // 491 // C++ [dcl.fct.default]p6: 492 // Except for member functions of class templates, the default arguments 493 // in a member function definition that appears outside of the class 494 // definition are added to the set of default arguments provided by the 495 // member function declaration in the class definition. 496 for (unsigned p = 0, NumParams = PrevForDefaultArgs 497 ? PrevForDefaultArgs->getNumParams() 498 : 0; 499 p < NumParams; ++p) { 500 ParmVarDecl *OldParam = PrevForDefaultArgs->getParamDecl(p); 501 ParmVarDecl *NewParam = New->getParamDecl(p); 502 503 bool OldParamHasDfl = OldParam ? OldParam->hasDefaultArg() : false; 504 bool NewParamHasDfl = NewParam->hasDefaultArg(); 505 506 if (OldParamHasDfl && NewParamHasDfl) { 507 unsigned DiagDefaultParamID = 508 diag::err_param_default_argument_redefinition; 509 510 // MSVC accepts that default parameters be redefined for member functions 511 // of template class. The new default parameter's value is ignored. 512 Invalid = true; 513 if (getLangOpts().MicrosoftExt) { 514 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(New); 515 if (MD && MD->getParent()->getDescribedClassTemplate()) { 516 // Merge the old default argument into the new parameter. 517 NewParam->setHasInheritedDefaultArg(); 518 if (OldParam->hasUninstantiatedDefaultArg()) 519 NewParam->setUninstantiatedDefaultArg( 520 OldParam->getUninstantiatedDefaultArg()); 521 else 522 NewParam->setDefaultArg(OldParam->getInit()); 523 DiagDefaultParamID = diag::ext_param_default_argument_redefinition; 524 Invalid = false; 525 } 526 } 527 528 // FIXME: If we knew where the '=' was, we could easily provide a fix-it 529 // hint here. Alternatively, we could walk the type-source information 530 // for NewParam to find the last source location in the type... but it 531 // isn't worth the effort right now. This is the kind of test case that 532 // is hard to get right: 533 // int f(int); 534 // void g(int (*fp)(int) = f); 535 // void g(int (*fp)(int) = &f); 536 Diag(NewParam->getLocation(), DiagDefaultParamID) 537 << NewParam->getDefaultArgRange(); 538 539 // Look for the function declaration where the default argument was 540 // actually written, which may be a declaration prior to Old. 541 for (auto Older = PrevForDefaultArgs; 542 OldParam->hasInheritedDefaultArg(); /**/) { 543 Older = Older->getPreviousDecl(); 544 OldParam = Older->getParamDecl(p); 545 } 546 547 Diag(OldParam->getLocation(), diag::note_previous_definition) 548 << OldParam->getDefaultArgRange(); 549 } else if (OldParamHasDfl) { 550 // Merge the old default argument into the new parameter. 551 // It's important to use getInit() here; getDefaultArg() 552 // strips off any top-level ExprWithCleanups. 553 NewParam->setHasInheritedDefaultArg(); 554 if (OldParam->hasUnparsedDefaultArg()) 555 NewParam->setUnparsedDefaultArg(); 556 else if (OldParam->hasUninstantiatedDefaultArg()) 557 NewParam->setUninstantiatedDefaultArg( 558 OldParam->getUninstantiatedDefaultArg()); 559 else 560 NewParam->setDefaultArg(OldParam->getInit()); 561 } else if (NewParamHasDfl) { 562 if (New->getDescribedFunctionTemplate()) { 563 // Paragraph 4, quoted above, only applies to non-template functions. 564 Diag(NewParam->getLocation(), 565 diag::err_param_default_argument_template_redecl) 566 << NewParam->getDefaultArgRange(); 567 Diag(PrevForDefaultArgs->getLocation(), 568 diag::note_template_prev_declaration) 569 << false; 570 } else if (New->getTemplateSpecializationKind() 571 != TSK_ImplicitInstantiation && 572 New->getTemplateSpecializationKind() != TSK_Undeclared) { 573 // C++ [temp.expr.spec]p21: 574 // Default function arguments shall not be specified in a declaration 575 // or a definition for one of the following explicit specializations: 576 // - the explicit specialization of a function template; 577 // - the explicit specialization of a member function template; 578 // - the explicit specialization of a member function of a class 579 // template where the class template specialization to which the 580 // member function specialization belongs is implicitly 581 // instantiated. 582 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg) 583 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization) 584 << New->getDeclName() 585 << NewParam->getDefaultArgRange(); 586 } else if (New->getDeclContext()->isDependentContext()) { 587 // C++ [dcl.fct.default]p6 (DR217): 588 // Default arguments for a member function of a class template shall 589 // be specified on the initial declaration of the member function 590 // within the class template. 591 // 592 // Reading the tea leaves a bit in DR217 and its reference to DR205 593 // leads me to the conclusion that one cannot add default function 594 // arguments for an out-of-line definition of a member function of a 595 // dependent type. 596 int WhichKind = 2; 597 if (CXXRecordDecl *Record 598 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) { 599 if (Record->getDescribedClassTemplate()) 600 WhichKind = 0; 601 else if (isa<ClassTemplatePartialSpecializationDecl>(Record)) 602 WhichKind = 1; 603 else 604 WhichKind = 2; 605 } 606 607 Diag(NewParam->getLocation(), 608 diag::err_param_default_argument_member_template_redecl) 609 << WhichKind 610 << NewParam->getDefaultArgRange(); 611 } 612 } 613 } 614 615 // DR1344: If a default argument is added outside a class definition and that 616 // default argument makes the function a special member function, the program 617 // is ill-formed. This can only happen for constructors. 618 if (isa<CXXConstructorDecl>(New) && 619 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) { 620 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)), 621 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old)); 622 if (NewSM != OldSM) { 623 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments()); 624 assert(NewParam->hasDefaultArg()); 625 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special) 626 << NewParam->getDefaultArgRange() << NewSM; 627 Diag(Old->getLocation(), diag::note_previous_declaration); 628 } 629 } 630 631 const FunctionDecl *Def; 632 // C++11 [dcl.constexpr]p1: If any declaration of a function or function 633 // template has a constexpr specifier then all its declarations shall 634 // contain the constexpr specifier. 635 if (New->isConstexpr() != Old->isConstexpr()) { 636 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch) 637 << New << New->isConstexpr(); 638 Diag(Old->getLocation(), diag::note_previous_declaration); 639 Invalid = true; 640 } else if (!Old->getMostRecentDecl()->isInlined() && New->isInlined() && 641 Old->isDefined(Def)) { 642 // C++11 [dcl.fcn.spec]p4: 643 // If the definition of a function appears in a translation unit before its 644 // first declaration as inline, the program is ill-formed. 645 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New; 646 Diag(Def->getLocation(), diag::note_previous_definition); 647 Invalid = true; 648 } 649 650 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default 651 // argument expression, that declaration shall be a definition and shall be 652 // the only declaration of the function or function template in the 653 // translation unit. 654 if (Old->getFriendObjectKind() == Decl::FOK_Undeclared && 655 functionDeclHasDefaultArgument(Old)) { 656 Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 657 Diag(Old->getLocation(), diag::note_previous_declaration); 658 Invalid = true; 659 } 660 661 if (CheckEquivalentExceptionSpec(Old, New)) 662 Invalid = true; 663 664 return Invalid; 665 } 666 667 /// \brief Merge the exception specifications of two variable declarations. 668 /// 669 /// This is called when there's a redeclaration of a VarDecl. The function 670 /// checks if the redeclaration might have an exception specification and 671 /// validates compatibility and merges the specs if necessary. 672 void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) { 673 // Shortcut if exceptions are disabled. 674 if (!getLangOpts().CXXExceptions) 675 return; 676 677 assert(Context.hasSameType(New->getType(), Old->getType()) && 678 "Should only be called if types are otherwise the same."); 679 680 QualType NewType = New->getType(); 681 QualType OldType = Old->getType(); 682 683 // We're only interested in pointers and references to functions, as well 684 // as pointers to member functions. 685 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) { 686 NewType = R->getPointeeType(); 687 OldType = OldType->getAs<ReferenceType>()->getPointeeType(); 688 } else if (const PointerType *P = NewType->getAs<PointerType>()) { 689 NewType = P->getPointeeType(); 690 OldType = OldType->getAs<PointerType>()->getPointeeType(); 691 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) { 692 NewType = M->getPointeeType(); 693 OldType = OldType->getAs<MemberPointerType>()->getPointeeType(); 694 } 695 696 if (!NewType->isFunctionProtoType()) 697 return; 698 699 // There's lots of special cases for functions. For function pointers, system 700 // libraries are hopefully not as broken so that we don't need these 701 // workarounds. 702 if (CheckEquivalentExceptionSpec( 703 OldType->getAs<FunctionProtoType>(), Old->getLocation(), 704 NewType->getAs<FunctionProtoType>(), New->getLocation())) { 705 New->setInvalidDecl(); 706 } 707 } 708 709 /// CheckCXXDefaultArguments - Verify that the default arguments for a 710 /// function declaration are well-formed according to C++ 711 /// [dcl.fct.default]. 712 void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) { 713 unsigned NumParams = FD->getNumParams(); 714 unsigned p; 715 716 // Find first parameter with a default argument 717 for (p = 0; p < NumParams; ++p) { 718 ParmVarDecl *Param = FD->getParamDecl(p); 719 if (Param->hasDefaultArg()) 720 break; 721 } 722 723 // C++11 [dcl.fct.default]p4: 724 // In a given function declaration, each parameter subsequent to a parameter 725 // with a default argument shall have a default argument supplied in this or 726 // a previous declaration or shall be a function parameter pack. A default 727 // argument shall not be redefined by a later declaration (not even to the 728 // same value). 729 unsigned LastMissingDefaultArg = 0; 730 for (; p < NumParams; ++p) { 731 ParmVarDecl *Param = FD->getParamDecl(p); 732 if (!Param->hasDefaultArg() && !Param->isParameterPack()) { 733 if (Param->isInvalidDecl()) 734 /* We already complained about this parameter. */; 735 else if (Param->getIdentifier()) 736 Diag(Param->getLocation(), 737 diag::err_param_default_argument_missing_name) 738 << Param->getIdentifier(); 739 else 740 Diag(Param->getLocation(), 741 diag::err_param_default_argument_missing); 742 743 LastMissingDefaultArg = p; 744 } 745 } 746 747 if (LastMissingDefaultArg > 0) { 748 // Some default arguments were missing. Clear out all of the 749 // default arguments up to (and including) the last missing 750 // default argument, so that we leave the function parameters 751 // in a semantically valid state. 752 for (p = 0; p <= LastMissingDefaultArg; ++p) { 753 ParmVarDecl *Param = FD->getParamDecl(p); 754 if (Param->hasDefaultArg()) { 755 Param->setDefaultArg(nullptr); 756 } 757 } 758 } 759 } 760 761 // CheckConstexprParameterTypes - Check whether a function's parameter types 762 // are all literal types. If so, return true. If not, produce a suitable 763 // diagnostic and return false. 764 static bool CheckConstexprParameterTypes(Sema &SemaRef, 765 const FunctionDecl *FD) { 766 unsigned ArgIndex = 0; 767 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>(); 768 for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(), 769 e = FT->param_type_end(); 770 i != e; ++i, ++ArgIndex) { 771 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex); 772 SourceLocation ParamLoc = PD->getLocation(); 773 if (!(*i)->isDependentType() && 774 SemaRef.RequireLiteralType(ParamLoc, *i, 775 diag::err_constexpr_non_literal_param, 776 ArgIndex+1, PD->getSourceRange(), 777 isa<CXXConstructorDecl>(FD))) 778 return false; 779 } 780 return true; 781 } 782 783 /// \brief Get diagnostic %select index for tag kind for 784 /// record diagnostic message. 785 /// WARNING: Indexes apply to particular diagnostics only! 786 /// 787 /// \returns diagnostic %select index. 788 static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) { 789 switch (Tag) { 790 case TTK_Struct: return 0; 791 case TTK_Interface: return 1; 792 case TTK_Class: return 2; 793 default: llvm_unreachable("Invalid tag kind for record diagnostic!"); 794 } 795 } 796 797 // CheckConstexprFunctionDecl - Check whether a function declaration satisfies 798 // the requirements of a constexpr function definition or a constexpr 799 // constructor definition. If so, return true. If not, produce appropriate 800 // diagnostics and return false. 801 // 802 // This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360. 803 bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) { 804 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 805 if (MD && MD->isInstance()) { 806 // C++11 [dcl.constexpr]p4: 807 // The definition of a constexpr constructor shall satisfy the following 808 // constraints: 809 // - the class shall not have any virtual base classes; 810 const CXXRecordDecl *RD = MD->getParent(); 811 if (RD->getNumVBases()) { 812 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base) 813 << isa<CXXConstructorDecl>(NewFD) 814 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases(); 815 for (const auto &I : RD->vbases()) 816 Diag(I.getLocStart(), 817 diag::note_constexpr_virtual_base_here) << I.getSourceRange(); 818 return false; 819 } 820 } 821 822 if (!isa<CXXConstructorDecl>(NewFD)) { 823 // C++11 [dcl.constexpr]p3: 824 // The definition of a constexpr function shall satisfy the following 825 // constraints: 826 // - it shall not be virtual; 827 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD); 828 if (Method && Method->isVirtual()) { 829 Method = Method->getCanonicalDecl(); 830 Diag(Method->getLocation(), diag::err_constexpr_virtual); 831 832 // If it's not obvious why this function is virtual, find an overridden 833 // function which uses the 'virtual' keyword. 834 const CXXMethodDecl *WrittenVirtual = Method; 835 while (!WrittenVirtual->isVirtualAsWritten()) 836 WrittenVirtual = *WrittenVirtual->begin_overridden_methods(); 837 if (WrittenVirtual != Method) 838 Diag(WrittenVirtual->getLocation(), 839 diag::note_overridden_virtual_function); 840 return false; 841 } 842 843 // - its return type shall be a literal type; 844 QualType RT = NewFD->getReturnType(); 845 if (!RT->isDependentType() && 846 RequireLiteralType(NewFD->getLocation(), RT, 847 diag::err_constexpr_non_literal_return)) 848 return false; 849 } 850 851 // - each of its parameter types shall be a literal type; 852 if (!CheckConstexprParameterTypes(*this, NewFD)) 853 return false; 854 855 return true; 856 } 857 858 /// Check the given declaration statement is legal within a constexpr function 859 /// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3. 860 /// 861 /// \return true if the body is OK (maybe only as an extension), false if we 862 /// have diagnosed a problem. 863 static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl, 864 DeclStmt *DS, SourceLocation &Cxx1yLoc) { 865 // C++11 [dcl.constexpr]p3 and p4: 866 // The definition of a constexpr function(p3) or constructor(p4) [...] shall 867 // contain only 868 for (const auto *DclIt : DS->decls()) { 869 switch (DclIt->getKind()) { 870 case Decl::StaticAssert: 871 case Decl::Using: 872 case Decl::UsingShadow: 873 case Decl::UsingDirective: 874 case Decl::UnresolvedUsingTypename: 875 case Decl::UnresolvedUsingValue: 876 // - static_assert-declarations 877 // - using-declarations, 878 // - using-directives, 879 continue; 880 881 case Decl::Typedef: 882 case Decl::TypeAlias: { 883 // - typedef declarations and alias-declarations that do not define 884 // classes or enumerations, 885 const auto *TN = cast<TypedefNameDecl>(DclIt); 886 if (TN->getUnderlyingType()->isVariablyModifiedType()) { 887 // Don't allow variably-modified types in constexpr functions. 888 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc(); 889 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla) 890 << TL.getSourceRange() << TL.getType() 891 << isa<CXXConstructorDecl>(Dcl); 892 return false; 893 } 894 continue; 895 } 896 897 case Decl::Enum: 898 case Decl::CXXRecord: 899 // C++1y allows types to be defined, not just declared. 900 if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition()) 901 SemaRef.Diag(DS->getLocStart(), 902 SemaRef.getLangOpts().CPlusPlus14 903 ? diag::warn_cxx11_compat_constexpr_type_definition 904 : diag::ext_constexpr_type_definition) 905 << isa<CXXConstructorDecl>(Dcl); 906 continue; 907 908 case Decl::EnumConstant: 909 case Decl::IndirectField: 910 case Decl::ParmVar: 911 // These can only appear with other declarations which are banned in 912 // C++11 and permitted in C++1y, so ignore them. 913 continue; 914 915 case Decl::Var: { 916 // C++1y [dcl.constexpr]p3 allows anything except: 917 // a definition of a variable of non-literal type or of static or 918 // thread storage duration or for which no initialization is performed. 919 const auto *VD = cast<VarDecl>(DclIt); 920 if (VD->isThisDeclarationADefinition()) { 921 if (VD->isStaticLocal()) { 922 SemaRef.Diag(VD->getLocation(), 923 diag::err_constexpr_local_var_static) 924 << isa<CXXConstructorDecl>(Dcl) 925 << (VD->getTLSKind() == VarDecl::TLS_Dynamic); 926 return false; 927 } 928 if (!VD->getType()->isDependentType() && 929 SemaRef.RequireLiteralType( 930 VD->getLocation(), VD->getType(), 931 diag::err_constexpr_local_var_non_literal_type, 932 isa<CXXConstructorDecl>(Dcl))) 933 return false; 934 if (!VD->getType()->isDependentType() && 935 !VD->hasInit() && !VD->isCXXForRangeDecl()) { 936 SemaRef.Diag(VD->getLocation(), 937 diag::err_constexpr_local_var_no_init) 938 << isa<CXXConstructorDecl>(Dcl); 939 return false; 940 } 941 } 942 SemaRef.Diag(VD->getLocation(), 943 SemaRef.getLangOpts().CPlusPlus14 944 ? diag::warn_cxx11_compat_constexpr_local_var 945 : diag::ext_constexpr_local_var) 946 << isa<CXXConstructorDecl>(Dcl); 947 continue; 948 } 949 950 case Decl::NamespaceAlias: 951 case Decl::Function: 952 // These are disallowed in C++11 and permitted in C++1y. Allow them 953 // everywhere as an extension. 954 if (!Cxx1yLoc.isValid()) 955 Cxx1yLoc = DS->getLocStart(); 956 continue; 957 958 default: 959 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt) 960 << isa<CXXConstructorDecl>(Dcl); 961 return false; 962 } 963 } 964 965 return true; 966 } 967 968 /// Check that the given field is initialized within a constexpr constructor. 969 /// 970 /// \param Dcl The constexpr constructor being checked. 971 /// \param Field The field being checked. This may be a member of an anonymous 972 /// struct or union nested within the class being checked. 973 /// \param Inits All declarations, including anonymous struct/union members and 974 /// indirect members, for which any initialization was provided. 975 /// \param Diagnosed Set to true if an error is produced. 976 static void CheckConstexprCtorInitializer(Sema &SemaRef, 977 const FunctionDecl *Dcl, 978 FieldDecl *Field, 979 llvm::SmallSet<Decl*, 16> &Inits, 980 bool &Diagnosed) { 981 if (Field->isInvalidDecl()) 982 return; 983 984 if (Field->isUnnamedBitfield()) 985 return; 986 987 // Anonymous unions with no variant members and empty anonymous structs do not 988 // need to be explicitly initialized. FIXME: Anonymous structs that contain no 989 // indirect fields don't need initializing. 990 if (Field->isAnonymousStructOrUnion() && 991 (Field->getType()->isUnionType() 992 ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers() 993 : Field->getType()->getAsCXXRecordDecl()->isEmpty())) 994 return; 995 996 if (!Inits.count(Field)) { 997 if (!Diagnosed) { 998 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init); 999 Diagnosed = true; 1000 } 1001 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init); 1002 } else if (Field->isAnonymousStructOrUnion()) { 1003 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl(); 1004 for (auto *I : RD->fields()) 1005 // If an anonymous union contains an anonymous struct of which any member 1006 // is initialized, all members must be initialized. 1007 if (!RD->isUnion() || Inits.count(I)) 1008 CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed); 1009 } 1010 } 1011 1012 /// Check the provided statement is allowed in a constexpr function 1013 /// definition. 1014 static bool 1015 CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S, 1016 SmallVectorImpl<SourceLocation> &ReturnStmts, 1017 SourceLocation &Cxx1yLoc) { 1018 // - its function-body shall be [...] a compound-statement that contains only 1019 switch (S->getStmtClass()) { 1020 case Stmt::NullStmtClass: 1021 // - null statements, 1022 return true; 1023 1024 case Stmt::DeclStmtClass: 1025 // - static_assert-declarations 1026 // - using-declarations, 1027 // - using-directives, 1028 // - typedef declarations and alias-declarations that do not define 1029 // classes or enumerations, 1030 if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc)) 1031 return false; 1032 return true; 1033 1034 case Stmt::ReturnStmtClass: 1035 // - and exactly one return statement; 1036 if (isa<CXXConstructorDecl>(Dcl)) { 1037 // C++1y allows return statements in constexpr constructors. 1038 if (!Cxx1yLoc.isValid()) 1039 Cxx1yLoc = S->getLocStart(); 1040 return true; 1041 } 1042 1043 ReturnStmts.push_back(S->getLocStart()); 1044 return true; 1045 1046 case Stmt::CompoundStmtClass: { 1047 // C++1y allows compound-statements. 1048 if (!Cxx1yLoc.isValid()) 1049 Cxx1yLoc = S->getLocStart(); 1050 1051 CompoundStmt *CompStmt = cast<CompoundStmt>(S); 1052 for (auto *BodyIt : CompStmt->body()) { 1053 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts, 1054 Cxx1yLoc)) 1055 return false; 1056 } 1057 return true; 1058 } 1059 1060 case Stmt::AttributedStmtClass: 1061 if (!Cxx1yLoc.isValid()) 1062 Cxx1yLoc = S->getLocStart(); 1063 return true; 1064 1065 case Stmt::IfStmtClass: { 1066 // C++1y allows if-statements. 1067 if (!Cxx1yLoc.isValid()) 1068 Cxx1yLoc = S->getLocStart(); 1069 1070 IfStmt *If = cast<IfStmt>(S); 1071 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts, 1072 Cxx1yLoc)) 1073 return false; 1074 if (If->getElse() && 1075 !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts, 1076 Cxx1yLoc)) 1077 return false; 1078 return true; 1079 } 1080 1081 case Stmt::WhileStmtClass: 1082 case Stmt::DoStmtClass: 1083 case Stmt::ForStmtClass: 1084 case Stmt::CXXForRangeStmtClass: 1085 case Stmt::ContinueStmtClass: 1086 // C++1y allows all of these. We don't allow them as extensions in C++11, 1087 // because they don't make sense without variable mutation. 1088 if (!SemaRef.getLangOpts().CPlusPlus14) 1089 break; 1090 if (!Cxx1yLoc.isValid()) 1091 Cxx1yLoc = S->getLocStart(); 1092 for (Stmt *SubStmt : S->children()) 1093 if (SubStmt && 1094 !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts, 1095 Cxx1yLoc)) 1096 return false; 1097 return true; 1098 1099 case Stmt::SwitchStmtClass: 1100 case Stmt::CaseStmtClass: 1101 case Stmt::DefaultStmtClass: 1102 case Stmt::BreakStmtClass: 1103 // C++1y allows switch-statements, and since they don't need variable 1104 // mutation, we can reasonably allow them in C++11 as an extension. 1105 if (!Cxx1yLoc.isValid()) 1106 Cxx1yLoc = S->getLocStart(); 1107 for (Stmt *SubStmt : S->children()) 1108 if (SubStmt && 1109 !CheckConstexprFunctionStmt(SemaRef, Dcl, SubStmt, ReturnStmts, 1110 Cxx1yLoc)) 1111 return false; 1112 return true; 1113 1114 default: 1115 if (!isa<Expr>(S)) 1116 break; 1117 1118 // C++1y allows expression-statements. 1119 if (!Cxx1yLoc.isValid()) 1120 Cxx1yLoc = S->getLocStart(); 1121 return true; 1122 } 1123 1124 SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt) 1125 << isa<CXXConstructorDecl>(Dcl); 1126 return false; 1127 } 1128 1129 /// Check the body for the given constexpr function declaration only contains 1130 /// the permitted types of statement. C++11 [dcl.constexpr]p3,p4. 1131 /// 1132 /// \return true if the body is OK, false if we have diagnosed a problem. 1133 bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) { 1134 if (isa<CXXTryStmt>(Body)) { 1135 // C++11 [dcl.constexpr]p3: 1136 // The definition of a constexpr function shall satisfy the following 1137 // constraints: [...] 1138 // - its function-body shall be = delete, = default, or a 1139 // compound-statement 1140 // 1141 // C++11 [dcl.constexpr]p4: 1142 // In the definition of a constexpr constructor, [...] 1143 // - its function-body shall not be a function-try-block; 1144 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block) 1145 << isa<CXXConstructorDecl>(Dcl); 1146 return false; 1147 } 1148 1149 SmallVector<SourceLocation, 4> ReturnStmts; 1150 1151 // - its function-body shall be [...] a compound-statement that contains only 1152 // [... list of cases ...] 1153 CompoundStmt *CompBody = cast<CompoundStmt>(Body); 1154 SourceLocation Cxx1yLoc; 1155 for (auto *BodyIt : CompBody->body()) { 1156 if (!CheckConstexprFunctionStmt(*this, Dcl, BodyIt, ReturnStmts, Cxx1yLoc)) 1157 return false; 1158 } 1159 1160 if (Cxx1yLoc.isValid()) 1161 Diag(Cxx1yLoc, 1162 getLangOpts().CPlusPlus14 1163 ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt 1164 : diag::ext_constexpr_body_invalid_stmt) 1165 << isa<CXXConstructorDecl>(Dcl); 1166 1167 if (const CXXConstructorDecl *Constructor 1168 = dyn_cast<CXXConstructorDecl>(Dcl)) { 1169 const CXXRecordDecl *RD = Constructor->getParent(); 1170 // DR1359: 1171 // - every non-variant non-static data member and base class sub-object 1172 // shall be initialized; 1173 // DR1460: 1174 // - if the class is a union having variant members, exactly one of them 1175 // shall be initialized; 1176 if (RD->isUnion()) { 1177 if (Constructor->getNumCtorInitializers() == 0 && 1178 RD->hasVariantMembers()) { 1179 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init); 1180 return false; 1181 } 1182 } else if (!Constructor->isDependentContext() && 1183 !Constructor->isDelegatingConstructor()) { 1184 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases"); 1185 1186 // Skip detailed checking if we have enough initializers, and we would 1187 // allow at most one initializer per member. 1188 bool AnyAnonStructUnionMembers = false; 1189 unsigned Fields = 0; 1190 for (CXXRecordDecl::field_iterator I = RD->field_begin(), 1191 E = RD->field_end(); I != E; ++I, ++Fields) { 1192 if (I->isAnonymousStructOrUnion()) { 1193 AnyAnonStructUnionMembers = true; 1194 break; 1195 } 1196 } 1197 // DR1460: 1198 // - if the class is a union-like class, but is not a union, for each of 1199 // its anonymous union members having variant members, exactly one of 1200 // them shall be initialized; 1201 if (AnyAnonStructUnionMembers || 1202 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) { 1203 // Check initialization of non-static data members. Base classes are 1204 // always initialized so do not need to be checked. Dependent bases 1205 // might not have initializers in the member initializer list. 1206 llvm::SmallSet<Decl*, 16> Inits; 1207 for (const auto *I: Constructor->inits()) { 1208 if (FieldDecl *FD = I->getMember()) 1209 Inits.insert(FD); 1210 else if (IndirectFieldDecl *ID = I->getIndirectMember()) 1211 Inits.insert(ID->chain_begin(), ID->chain_end()); 1212 } 1213 1214 bool Diagnosed = false; 1215 for (auto *I : RD->fields()) 1216 CheckConstexprCtorInitializer(*this, Dcl, I, Inits, Diagnosed); 1217 if (Diagnosed) 1218 return false; 1219 } 1220 } 1221 } else { 1222 if (ReturnStmts.empty()) { 1223 // C++1y doesn't require constexpr functions to contain a 'return' 1224 // statement. We still do, unless the return type might be void, because 1225 // otherwise if there's no return statement, the function cannot 1226 // be used in a core constant expression. 1227 bool OK = getLangOpts().CPlusPlus14 && 1228 (Dcl->getReturnType()->isVoidType() || 1229 Dcl->getReturnType()->isDependentType()); 1230 Diag(Dcl->getLocation(), 1231 OK ? diag::warn_cxx11_compat_constexpr_body_no_return 1232 : diag::err_constexpr_body_no_return); 1233 if (!OK) 1234 return false; 1235 } else if (ReturnStmts.size() > 1) { 1236 Diag(ReturnStmts.back(), 1237 getLangOpts().CPlusPlus14 1238 ? diag::warn_cxx11_compat_constexpr_body_multiple_return 1239 : diag::ext_constexpr_body_multiple_return); 1240 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I) 1241 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return); 1242 } 1243 } 1244 1245 // C++11 [dcl.constexpr]p5: 1246 // if no function argument values exist such that the function invocation 1247 // substitution would produce a constant expression, the program is 1248 // ill-formed; no diagnostic required. 1249 // C++11 [dcl.constexpr]p3: 1250 // - every constructor call and implicit conversion used in initializing the 1251 // return value shall be one of those allowed in a constant expression. 1252 // C++11 [dcl.constexpr]p4: 1253 // - every constructor involved in initializing non-static data members and 1254 // base class sub-objects shall be a constexpr constructor. 1255 SmallVector<PartialDiagnosticAt, 8> Diags; 1256 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) { 1257 Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr) 1258 << isa<CXXConstructorDecl>(Dcl); 1259 for (size_t I = 0, N = Diags.size(); I != N; ++I) 1260 Diag(Diags[I].first, Diags[I].second); 1261 // Don't return false here: we allow this for compatibility in 1262 // system headers. 1263 } 1264 1265 return true; 1266 } 1267 1268 /// isCurrentClassName - Determine whether the identifier II is the 1269 /// name of the class type currently being defined. In the case of 1270 /// nested classes, this will only return true if II is the name of 1271 /// the innermost class. 1272 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *, 1273 const CXXScopeSpec *SS) { 1274 assert(getLangOpts().CPlusPlus && "No class names in C!"); 1275 1276 CXXRecordDecl *CurDecl; 1277 if (SS && SS->isSet() && !SS->isInvalid()) { 1278 DeclContext *DC = computeDeclContext(*SS, true); 1279 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC); 1280 } else 1281 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext); 1282 1283 if (CurDecl && CurDecl->getIdentifier()) 1284 return &II == CurDecl->getIdentifier(); 1285 return false; 1286 } 1287 1288 /// \brief Determine whether the identifier II is a typo for the name of 1289 /// the class type currently being defined. If so, update it to the identifier 1290 /// that should have been used. 1291 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) { 1292 assert(getLangOpts().CPlusPlus && "No class names in C!"); 1293 1294 if (!getLangOpts().SpellChecking) 1295 return false; 1296 1297 CXXRecordDecl *CurDecl; 1298 if (SS && SS->isSet() && !SS->isInvalid()) { 1299 DeclContext *DC = computeDeclContext(*SS, true); 1300 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC); 1301 } else 1302 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext); 1303 1304 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() && 1305 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName()) 1306 < II->getLength()) { 1307 II = CurDecl->getIdentifier(); 1308 return true; 1309 } 1310 1311 return false; 1312 } 1313 1314 /// \brief Determine whether the given class is a base class of the given 1315 /// class, including looking at dependent bases. 1316 static bool findCircularInheritance(const CXXRecordDecl *Class, 1317 const CXXRecordDecl *Current) { 1318 SmallVector<const CXXRecordDecl*, 8> Queue; 1319 1320 Class = Class->getCanonicalDecl(); 1321 while (true) { 1322 for (const auto &I : Current->bases()) { 1323 CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl(); 1324 if (!Base) 1325 continue; 1326 1327 Base = Base->getDefinition(); 1328 if (!Base) 1329 continue; 1330 1331 if (Base->getCanonicalDecl() == Class) 1332 return true; 1333 1334 Queue.push_back(Base); 1335 } 1336 1337 if (Queue.empty()) 1338 return false; 1339 1340 Current = Queue.pop_back_val(); 1341 } 1342 1343 return false; 1344 } 1345 1346 /// \brief Check the validity of a C++ base class specifier. 1347 /// 1348 /// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics 1349 /// and returns NULL otherwise. 1350 CXXBaseSpecifier * 1351 Sema::CheckBaseSpecifier(CXXRecordDecl *Class, 1352 SourceRange SpecifierRange, 1353 bool Virtual, AccessSpecifier Access, 1354 TypeSourceInfo *TInfo, 1355 SourceLocation EllipsisLoc) { 1356 QualType BaseType = TInfo->getType(); 1357 1358 // C++ [class.union]p1: 1359 // A union shall not have base classes. 1360 if (Class->isUnion()) { 1361 Diag(Class->getLocation(), diag::err_base_clause_on_union) 1362 << SpecifierRange; 1363 return nullptr; 1364 } 1365 1366 if (EllipsisLoc.isValid() && 1367 !TInfo->getType()->containsUnexpandedParameterPack()) { 1368 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 1369 << TInfo->getTypeLoc().getSourceRange(); 1370 EllipsisLoc = SourceLocation(); 1371 } 1372 1373 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc(); 1374 1375 if (BaseType->isDependentType()) { 1376 // Make sure that we don't have circular inheritance among our dependent 1377 // bases. For non-dependent bases, the check for completeness below handles 1378 // this. 1379 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) { 1380 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() || 1381 ((BaseDecl = BaseDecl->getDefinition()) && 1382 findCircularInheritance(Class, BaseDecl))) { 1383 Diag(BaseLoc, diag::err_circular_inheritance) 1384 << BaseType << Context.getTypeDeclType(Class); 1385 1386 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl()) 1387 Diag(BaseDecl->getLocation(), diag::note_previous_decl) 1388 << BaseType; 1389 1390 return nullptr; 1391 } 1392 } 1393 1394 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, 1395 Class->getTagKind() == TTK_Class, 1396 Access, TInfo, EllipsisLoc); 1397 } 1398 1399 // Base specifiers must be record types. 1400 if (!BaseType->isRecordType()) { 1401 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange; 1402 return nullptr; 1403 } 1404 1405 // C++ [class.union]p1: 1406 // A union shall not be used as a base class. 1407 if (BaseType->isUnionType()) { 1408 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange; 1409 return nullptr; 1410 } 1411 1412 // For the MS ABI, propagate DLL attributes to base class templates. 1413 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 1414 if (Attr *ClassAttr = getDLLAttr(Class)) { 1415 if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>( 1416 BaseType->getAsCXXRecordDecl())) { 1417 propagateDLLAttrToBaseClassTemplate(Class, ClassAttr, BaseTemplate, 1418 BaseLoc); 1419 } 1420 } 1421 } 1422 1423 // C++ [class.derived]p2: 1424 // The class-name in a base-specifier shall not be an incompletely 1425 // defined class. 1426 if (RequireCompleteType(BaseLoc, BaseType, 1427 diag::err_incomplete_base_class, SpecifierRange)) { 1428 Class->setInvalidDecl(); 1429 return nullptr; 1430 } 1431 1432 // If the base class is polymorphic or isn't empty, the new one is/isn't, too. 1433 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl(); 1434 assert(BaseDecl && "Record type has no declaration"); 1435 BaseDecl = BaseDecl->getDefinition(); 1436 assert(BaseDecl && "Base type is not incomplete, but has no definition"); 1437 CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl); 1438 assert(CXXBaseDecl && "Base type is not a C++ type"); 1439 1440 // A class which contains a flexible array member is not suitable for use as a 1441 // base class: 1442 // - If the layout determines that a base comes before another base, 1443 // the flexible array member would index into the subsequent base. 1444 // - If the layout determines that base comes before the derived class, 1445 // the flexible array member would index into the derived class. 1446 if (CXXBaseDecl->hasFlexibleArrayMember()) { 1447 Diag(BaseLoc, diag::err_base_class_has_flexible_array_member) 1448 << CXXBaseDecl->getDeclName(); 1449 return nullptr; 1450 } 1451 1452 // C++ [class]p3: 1453 // If a class is marked final and it appears as a base-type-specifier in 1454 // base-clause, the program is ill-formed. 1455 if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) { 1456 Diag(BaseLoc, diag::err_class_marked_final_used_as_base) 1457 << CXXBaseDecl->getDeclName() 1458 << FA->isSpelledAsSealed(); 1459 Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at) 1460 << CXXBaseDecl->getDeclName() << FA->getRange(); 1461 return nullptr; 1462 } 1463 1464 if (BaseDecl->isInvalidDecl()) 1465 Class->setInvalidDecl(); 1466 1467 // Create the base specifier. 1468 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, 1469 Class->getTagKind() == TTK_Class, 1470 Access, TInfo, EllipsisLoc); 1471 } 1472 1473 /// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is 1474 /// one entry in the base class list of a class specifier, for 1475 /// example: 1476 /// class foo : public bar, virtual private baz { 1477 /// 'public bar' and 'virtual private baz' are each base-specifiers. 1478 BaseResult 1479 Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange, 1480 ParsedAttributes &Attributes, 1481 bool Virtual, AccessSpecifier Access, 1482 ParsedType basetype, SourceLocation BaseLoc, 1483 SourceLocation EllipsisLoc) { 1484 if (!classdecl) 1485 return true; 1486 1487 AdjustDeclIfTemplate(classdecl); 1488 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl); 1489 if (!Class) 1490 return true; 1491 1492 // We haven't yet attached the base specifiers. 1493 Class->setIsParsingBaseSpecifiers(); 1494 1495 // We do not support any C++11 attributes on base-specifiers yet. 1496 // Diagnose any attributes we see. 1497 if (!Attributes.empty()) { 1498 for (AttributeList *Attr = Attributes.getList(); Attr; 1499 Attr = Attr->getNext()) { 1500 if (Attr->isInvalid() || 1501 Attr->getKind() == AttributeList::IgnoredAttribute) 1502 continue; 1503 Diag(Attr->getLoc(), 1504 Attr->getKind() == AttributeList::UnknownAttribute 1505 ? diag::warn_unknown_attribute_ignored 1506 : diag::err_base_specifier_attribute) 1507 << Attr->getName(); 1508 } 1509 } 1510 1511 TypeSourceInfo *TInfo = nullptr; 1512 GetTypeFromParser(basetype, &TInfo); 1513 1514 if (EllipsisLoc.isInvalid() && 1515 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo, 1516 UPPC_BaseType)) 1517 return true; 1518 1519 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange, 1520 Virtual, Access, TInfo, 1521 EllipsisLoc)) 1522 return BaseSpec; 1523 else 1524 Class->setInvalidDecl(); 1525 1526 return true; 1527 } 1528 1529 /// Use small set to collect indirect bases. As this is only used 1530 /// locally, there's no need to abstract the small size parameter. 1531 typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet; 1532 1533 /// \brief Recursively add the bases of Type. Don't add Type itself. 1534 static void 1535 NoteIndirectBases(ASTContext &Context, IndirectBaseSet &Set, 1536 const QualType &Type) 1537 { 1538 // Even though the incoming type is a base, it might not be 1539 // a class -- it could be a template parm, for instance. 1540 if (auto Rec = Type->getAs<RecordType>()) { 1541 auto Decl = Rec->getAsCXXRecordDecl(); 1542 1543 // Iterate over its bases. 1544 for (const auto &BaseSpec : Decl->bases()) { 1545 QualType Base = Context.getCanonicalType(BaseSpec.getType()) 1546 .getUnqualifiedType(); 1547 if (Set.insert(Base).second) 1548 // If we've not already seen it, recurse. 1549 NoteIndirectBases(Context, Set, Base); 1550 } 1551 } 1552 } 1553 1554 /// \brief Performs the actual work of attaching the given base class 1555 /// specifiers to a C++ class. 1556 bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, 1557 MutableArrayRef<CXXBaseSpecifier *> Bases) { 1558 if (Bases.empty()) 1559 return false; 1560 1561 // Used to keep track of which base types we have already seen, so 1562 // that we can properly diagnose redundant direct base types. Note 1563 // that the key is always the unqualified canonical type of the base 1564 // class. 1565 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes; 1566 1567 // Used to track indirect bases so we can see if a direct base is 1568 // ambiguous. 1569 IndirectBaseSet IndirectBaseTypes; 1570 1571 // Copy non-redundant base specifiers into permanent storage. 1572 unsigned NumGoodBases = 0; 1573 bool Invalid = false; 1574 for (unsigned idx = 0; idx < Bases.size(); ++idx) { 1575 QualType NewBaseType 1576 = Context.getCanonicalType(Bases[idx]->getType()); 1577 NewBaseType = NewBaseType.getLocalUnqualifiedType(); 1578 1579 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType]; 1580 if (KnownBase) { 1581 // C++ [class.mi]p3: 1582 // A class shall not be specified as a direct base class of a 1583 // derived class more than once. 1584 Diag(Bases[idx]->getLocStart(), 1585 diag::err_duplicate_base_class) 1586 << KnownBase->getType() 1587 << Bases[idx]->getSourceRange(); 1588 1589 // Delete the duplicate base class specifier; we're going to 1590 // overwrite its pointer later. 1591 Context.Deallocate(Bases[idx]); 1592 1593 Invalid = true; 1594 } else { 1595 // Okay, add this new base class. 1596 KnownBase = Bases[idx]; 1597 Bases[NumGoodBases++] = Bases[idx]; 1598 1599 // Note this base's direct & indirect bases, if there could be ambiguity. 1600 if (Bases.size() > 1) 1601 NoteIndirectBases(Context, IndirectBaseTypes, NewBaseType); 1602 1603 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) { 1604 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()); 1605 if (Class->isInterface() && 1606 (!RD->isInterface() || 1607 KnownBase->getAccessSpecifier() != AS_public)) { 1608 // The Microsoft extension __interface does not permit bases that 1609 // are not themselves public interfaces. 1610 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface) 1611 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName() 1612 << RD->getSourceRange(); 1613 Invalid = true; 1614 } 1615 if (RD->hasAttr<WeakAttr>()) 1616 Class->addAttr(WeakAttr::CreateImplicit(Context)); 1617 } 1618 } 1619 } 1620 1621 // Attach the remaining base class specifiers to the derived class. 1622 Class->setBases(Bases.data(), NumGoodBases); 1623 1624 for (unsigned idx = 0; idx < NumGoodBases; ++idx) { 1625 // Check whether this direct base is inaccessible due to ambiguity. 1626 QualType BaseType = Bases[idx]->getType(); 1627 CanQualType CanonicalBase = Context.getCanonicalType(BaseType) 1628 .getUnqualifiedType(); 1629 1630 if (IndirectBaseTypes.count(CanonicalBase)) { 1631 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1632 /*DetectVirtual=*/true); 1633 bool found 1634 = Class->isDerivedFrom(CanonicalBase->getAsCXXRecordDecl(), Paths); 1635 assert(found); 1636 (void)found; 1637 1638 if (Paths.isAmbiguous(CanonicalBase)) 1639 Diag(Bases[idx]->getLocStart (), diag::warn_inaccessible_base_class) 1640 << BaseType << getAmbiguousPathsDisplayString(Paths) 1641 << Bases[idx]->getSourceRange(); 1642 else 1643 assert(Bases[idx]->isVirtual()); 1644 } 1645 1646 // Delete the base class specifier, since its data has been copied 1647 // into the CXXRecordDecl. 1648 Context.Deallocate(Bases[idx]); 1649 } 1650 1651 return Invalid; 1652 } 1653 1654 /// ActOnBaseSpecifiers - Attach the given base specifiers to the 1655 /// class, after checking whether there are any duplicate base 1656 /// classes. 1657 void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, 1658 MutableArrayRef<CXXBaseSpecifier *> Bases) { 1659 if (!ClassDecl || Bases.empty()) 1660 return; 1661 1662 AdjustDeclIfTemplate(ClassDecl); 1663 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases); 1664 } 1665 1666 /// \brief Determine whether the type \p Derived is a C++ class that is 1667 /// derived from the type \p Base. 1668 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base) { 1669 if (!getLangOpts().CPlusPlus) 1670 return false; 1671 1672 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl(); 1673 if (!DerivedRD) 1674 return false; 1675 1676 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl(); 1677 if (!BaseRD) 1678 return false; 1679 1680 // If either the base or the derived type is invalid, don't try to 1681 // check whether one is derived from the other. 1682 if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl()) 1683 return false; 1684 1685 // FIXME: In a modules build, do we need the entire path to be visible for us 1686 // to be able to use the inheritance relationship? 1687 if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined()) 1688 return false; 1689 1690 return DerivedRD->isDerivedFrom(BaseRD); 1691 } 1692 1693 /// \brief Determine whether the type \p Derived is a C++ class that is 1694 /// derived from the type \p Base. 1695 bool Sema::IsDerivedFrom(SourceLocation Loc, QualType Derived, QualType Base, 1696 CXXBasePaths &Paths) { 1697 if (!getLangOpts().CPlusPlus) 1698 return false; 1699 1700 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl(); 1701 if (!DerivedRD) 1702 return false; 1703 1704 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl(); 1705 if (!BaseRD) 1706 return false; 1707 1708 if (!isCompleteType(Loc, Derived) && !DerivedRD->isBeingDefined()) 1709 return false; 1710 1711 return DerivedRD->isDerivedFrom(BaseRD, Paths); 1712 } 1713 1714 void Sema::BuildBasePathArray(const CXXBasePaths &Paths, 1715 CXXCastPath &BasePathArray) { 1716 assert(BasePathArray.empty() && "Base path array must be empty!"); 1717 assert(Paths.isRecordingPaths() && "Must record paths!"); 1718 1719 const CXXBasePath &Path = Paths.front(); 1720 1721 // We first go backward and check if we have a virtual base. 1722 // FIXME: It would be better if CXXBasePath had the base specifier for 1723 // the nearest virtual base. 1724 unsigned Start = 0; 1725 for (unsigned I = Path.size(); I != 0; --I) { 1726 if (Path[I - 1].Base->isVirtual()) { 1727 Start = I - 1; 1728 break; 1729 } 1730 } 1731 1732 // Now add all bases. 1733 for (unsigned I = Start, E = Path.size(); I != E; ++I) 1734 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base)); 1735 } 1736 1737 /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base 1738 /// conversion (where Derived and Base are class types) is 1739 /// well-formed, meaning that the conversion is unambiguous (and 1740 /// that all of the base classes are accessible). Returns true 1741 /// and emits a diagnostic if the code is ill-formed, returns false 1742 /// otherwise. Loc is the location where this routine should point to 1743 /// if there is an error, and Range is the source range to highlight 1744 /// if there is an error. 1745 /// 1746 /// If either InaccessibleBaseID or AmbigiousBaseConvID are 0, then the 1747 /// diagnostic for the respective type of error will be suppressed, but the 1748 /// check for ill-formed code will still be performed. 1749 bool 1750 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 1751 unsigned InaccessibleBaseID, 1752 unsigned AmbigiousBaseConvID, 1753 SourceLocation Loc, SourceRange Range, 1754 DeclarationName Name, 1755 CXXCastPath *BasePath, 1756 bool IgnoreAccess) { 1757 // First, determine whether the path from Derived to Base is 1758 // ambiguous. This is slightly more expensive than checking whether 1759 // the Derived to Base conversion exists, because here we need to 1760 // explore multiple paths to determine if there is an ambiguity. 1761 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1762 /*DetectVirtual=*/false); 1763 bool DerivationOkay = IsDerivedFrom(Loc, Derived, Base, Paths); 1764 assert(DerivationOkay && 1765 "Can only be used with a derived-to-base conversion"); 1766 (void)DerivationOkay; 1767 1768 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) { 1769 if (!IgnoreAccess) { 1770 // Check that the base class can be accessed. 1771 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(), 1772 InaccessibleBaseID)) { 1773 case AR_inaccessible: 1774 return true; 1775 case AR_accessible: 1776 case AR_dependent: 1777 case AR_delayed: 1778 break; 1779 } 1780 } 1781 1782 // Build a base path if necessary. 1783 if (BasePath) 1784 BuildBasePathArray(Paths, *BasePath); 1785 return false; 1786 } 1787 1788 if (AmbigiousBaseConvID) { 1789 // We know that the derived-to-base conversion is ambiguous, and 1790 // we're going to produce a diagnostic. Perform the derived-to-base 1791 // search just one more time to compute all of the possible paths so 1792 // that we can print them out. This is more expensive than any of 1793 // the previous derived-to-base checks we've done, but at this point 1794 // performance isn't as much of an issue. 1795 Paths.clear(); 1796 Paths.setRecordingPaths(true); 1797 bool StillOkay = IsDerivedFrom(Loc, Derived, Base, Paths); 1798 assert(StillOkay && "Can only be used with a derived-to-base conversion"); 1799 (void)StillOkay; 1800 1801 // Build up a textual representation of the ambiguous paths, e.g., 1802 // D -> B -> A, that will be used to illustrate the ambiguous 1803 // conversions in the diagnostic. We only print one of the paths 1804 // to each base class subobject. 1805 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths); 1806 1807 Diag(Loc, AmbigiousBaseConvID) 1808 << Derived << Base << PathDisplayStr << Range << Name; 1809 } 1810 return true; 1811 } 1812 1813 bool 1814 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 1815 SourceLocation Loc, SourceRange Range, 1816 CXXCastPath *BasePath, 1817 bool IgnoreAccess) { 1818 return CheckDerivedToBaseConversion( 1819 Derived, Base, diag::err_upcast_to_inaccessible_base, 1820 diag::err_ambiguous_derived_to_base_conv, Loc, Range, DeclarationName(), 1821 BasePath, IgnoreAccess); 1822 } 1823 1824 1825 /// @brief Builds a string representing ambiguous paths from a 1826 /// specific derived class to different subobjects of the same base 1827 /// class. 1828 /// 1829 /// This function builds a string that can be used in error messages 1830 /// to show the different paths that one can take through the 1831 /// inheritance hierarchy to go from the derived class to different 1832 /// subobjects of a base class. The result looks something like this: 1833 /// @code 1834 /// struct D -> struct B -> struct A 1835 /// struct D -> struct C -> struct A 1836 /// @endcode 1837 std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) { 1838 std::string PathDisplayStr; 1839 std::set<unsigned> DisplayedPaths; 1840 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 1841 Path != Paths.end(); ++Path) { 1842 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) { 1843 // We haven't displayed a path to this particular base 1844 // class subobject yet. 1845 PathDisplayStr += "\n "; 1846 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString(); 1847 for (CXXBasePath::const_iterator Element = Path->begin(); 1848 Element != Path->end(); ++Element) 1849 PathDisplayStr += " -> " + Element->Base->getType().getAsString(); 1850 } 1851 } 1852 1853 return PathDisplayStr; 1854 } 1855 1856 //===----------------------------------------------------------------------===// 1857 // C++ class member Handling 1858 //===----------------------------------------------------------------------===// 1859 1860 /// ActOnAccessSpecifier - Parsed an access specifier followed by a colon. 1861 bool Sema::ActOnAccessSpecifier(AccessSpecifier Access, 1862 SourceLocation ASLoc, 1863 SourceLocation ColonLoc, 1864 AttributeList *Attrs) { 1865 assert(Access != AS_none && "Invalid kind for syntactic access specifier!"); 1866 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext, 1867 ASLoc, ColonLoc); 1868 CurContext->addHiddenDecl(ASDecl); 1869 return ProcessAccessDeclAttributeList(ASDecl, Attrs); 1870 } 1871 1872 /// CheckOverrideControl - Check C++11 override control semantics. 1873 void Sema::CheckOverrideControl(NamedDecl *D) { 1874 if (D->isInvalidDecl()) 1875 return; 1876 1877 // We only care about "override" and "final" declarations. 1878 if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>()) 1879 return; 1880 1881 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 1882 1883 // We can't check dependent instance methods. 1884 if (MD && MD->isInstance() && 1885 (MD->getParent()->hasAnyDependentBases() || 1886 MD->getType()->isDependentType())) 1887 return; 1888 1889 if (MD && !MD->isVirtual()) { 1890 // If we have a non-virtual method, check if if hides a virtual method. 1891 // (In that case, it's most likely the method has the wrong type.) 1892 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 1893 FindHiddenVirtualMethods(MD, OverloadedMethods); 1894 1895 if (!OverloadedMethods.empty()) { 1896 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 1897 Diag(OA->getLocation(), 1898 diag::override_keyword_hides_virtual_member_function) 1899 << "override" << (OverloadedMethods.size() > 1); 1900 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 1901 Diag(FA->getLocation(), 1902 diag::override_keyword_hides_virtual_member_function) 1903 << (FA->isSpelledAsSealed() ? "sealed" : "final") 1904 << (OverloadedMethods.size() > 1); 1905 } 1906 NoteHiddenVirtualMethods(MD, OverloadedMethods); 1907 MD->setInvalidDecl(); 1908 return; 1909 } 1910 // Fall through into the general case diagnostic. 1911 // FIXME: We might want to attempt typo correction here. 1912 } 1913 1914 if (!MD || !MD->isVirtual()) { 1915 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 1916 Diag(OA->getLocation(), 1917 diag::override_keyword_only_allowed_on_virtual_member_functions) 1918 << "override" << FixItHint::CreateRemoval(OA->getLocation()); 1919 D->dropAttr<OverrideAttr>(); 1920 } 1921 if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 1922 Diag(FA->getLocation(), 1923 diag::override_keyword_only_allowed_on_virtual_member_functions) 1924 << (FA->isSpelledAsSealed() ? "sealed" : "final") 1925 << FixItHint::CreateRemoval(FA->getLocation()); 1926 D->dropAttr<FinalAttr>(); 1927 } 1928 return; 1929 } 1930 1931 // C++11 [class.virtual]p5: 1932 // If a function is marked with the virt-specifier override and 1933 // does not override a member function of a base class, the program is 1934 // ill-formed. 1935 bool HasOverriddenMethods = 1936 MD->begin_overridden_methods() != MD->end_overridden_methods(); 1937 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) 1938 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding) 1939 << MD->getDeclName(); 1940 } 1941 1942 void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) { 1943 if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>()) 1944 return; 1945 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 1946 if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>() || 1947 isa<CXXDestructorDecl>(MD)) 1948 return; 1949 1950 SourceLocation Loc = MD->getLocation(); 1951 SourceLocation SpellingLoc = Loc; 1952 if (getSourceManager().isMacroArgExpansion(Loc)) 1953 SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).first; 1954 SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc); 1955 if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc)) 1956 return; 1957 1958 if (MD->size_overridden_methods() > 0) { 1959 Diag(MD->getLocation(), diag::warn_function_marked_not_override_overriding) 1960 << MD->getDeclName(); 1961 const CXXMethodDecl *OMD = *MD->begin_overridden_methods(); 1962 Diag(OMD->getLocation(), diag::note_overridden_virtual_function); 1963 } 1964 } 1965 1966 /// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member 1967 /// function overrides a virtual member function marked 'final', according to 1968 /// C++11 [class.virtual]p4. 1969 bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New, 1970 const CXXMethodDecl *Old) { 1971 FinalAttr *FA = Old->getAttr<FinalAttr>(); 1972 if (!FA) 1973 return false; 1974 1975 Diag(New->getLocation(), diag::err_final_function_overridden) 1976 << New->getDeclName() 1977 << FA->isSpelledAsSealed(); 1978 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 1979 return true; 1980 } 1981 1982 static bool InitializationHasSideEffects(const FieldDecl &FD) { 1983 const Type *T = FD.getType()->getBaseElementTypeUnsafe(); 1984 // FIXME: Destruction of ObjC lifetime types has side-effects. 1985 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 1986 return !RD->isCompleteDefinition() || 1987 !RD->hasTrivialDefaultConstructor() || 1988 !RD->hasTrivialDestructor(); 1989 return false; 1990 } 1991 1992 static AttributeList *getMSPropertyAttr(AttributeList *list) { 1993 for (AttributeList *it = list; it != nullptr; it = it->getNext()) 1994 if (it->isDeclspecPropertyAttribute()) 1995 return it; 1996 return nullptr; 1997 } 1998 1999 /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member 2000 /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the 2001 /// bitfield width if there is one, 'InitExpr' specifies the initializer if 2002 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is 2003 /// present (but parsing it has been deferred). 2004 NamedDecl * 2005 Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, 2006 MultiTemplateParamsArg TemplateParameterLists, 2007 Expr *BW, const VirtSpecifiers &VS, 2008 InClassInitStyle InitStyle) { 2009 const DeclSpec &DS = D.getDeclSpec(); 2010 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 2011 DeclarationName Name = NameInfo.getName(); 2012 SourceLocation Loc = NameInfo.getLoc(); 2013 2014 // For anonymous bitfields, the location should point to the type. 2015 if (Loc.isInvalid()) 2016 Loc = D.getLocStart(); 2017 2018 Expr *BitWidth = static_cast<Expr*>(BW); 2019 2020 assert(isa<CXXRecordDecl>(CurContext)); 2021 assert(!DS.isFriendSpecified()); 2022 2023 bool isFunc = D.isDeclarationOfFunction(); 2024 2025 if (cast<CXXRecordDecl>(CurContext)->isInterface()) { 2026 // The Microsoft extension __interface only permits public member functions 2027 // and prohibits constructors, destructors, operators, non-public member 2028 // functions, static methods and data members. 2029 unsigned InvalidDecl; 2030 bool ShowDeclName = true; 2031 if (!isFunc) 2032 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1; 2033 else if (AS != AS_public) 2034 InvalidDecl = 2; 2035 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static) 2036 InvalidDecl = 3; 2037 else switch (Name.getNameKind()) { 2038 case DeclarationName::CXXConstructorName: 2039 InvalidDecl = 4; 2040 ShowDeclName = false; 2041 break; 2042 2043 case DeclarationName::CXXDestructorName: 2044 InvalidDecl = 5; 2045 ShowDeclName = false; 2046 break; 2047 2048 case DeclarationName::CXXOperatorName: 2049 case DeclarationName::CXXConversionFunctionName: 2050 InvalidDecl = 6; 2051 break; 2052 2053 default: 2054 InvalidDecl = 0; 2055 break; 2056 } 2057 2058 if (InvalidDecl) { 2059 if (ShowDeclName) 2060 Diag(Loc, diag::err_invalid_member_in_interface) 2061 << (InvalidDecl-1) << Name; 2062 else 2063 Diag(Loc, diag::err_invalid_member_in_interface) 2064 << (InvalidDecl-1) << ""; 2065 return nullptr; 2066 } 2067 } 2068 2069 // C++ 9.2p6: A member shall not be declared to have automatic storage 2070 // duration (auto, register) or with the extern storage-class-specifier. 2071 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class 2072 // data members and cannot be applied to names declared const or static, 2073 // and cannot be applied to reference members. 2074 switch (DS.getStorageClassSpec()) { 2075 case DeclSpec::SCS_unspecified: 2076 case DeclSpec::SCS_typedef: 2077 case DeclSpec::SCS_static: 2078 break; 2079 case DeclSpec::SCS_mutable: 2080 if (isFunc) { 2081 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function); 2082 2083 // FIXME: It would be nicer if the keyword was ignored only for this 2084 // declarator. Otherwise we could get follow-up errors. 2085 D.getMutableDeclSpec().ClearStorageClassSpecs(); 2086 } 2087 break; 2088 default: 2089 Diag(DS.getStorageClassSpecLoc(), 2090 diag::err_storageclass_invalid_for_member); 2091 D.getMutableDeclSpec().ClearStorageClassSpecs(); 2092 break; 2093 } 2094 2095 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified || 2096 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) && 2097 !isFunc); 2098 2099 if (DS.isConstexprSpecified() && isInstField) { 2100 SemaDiagnosticBuilder B = 2101 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member); 2102 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc(); 2103 if (InitStyle == ICIS_NoInit) { 2104 B << 0 << 0; 2105 if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const) 2106 B << FixItHint::CreateRemoval(ConstexprLoc); 2107 else { 2108 B << FixItHint::CreateReplacement(ConstexprLoc, "const"); 2109 D.getMutableDeclSpec().ClearConstexprSpec(); 2110 const char *PrevSpec; 2111 unsigned DiagID; 2112 bool Failed = D.getMutableDeclSpec().SetTypeQual( 2113 DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts()); 2114 (void)Failed; 2115 assert(!Failed && "Making a constexpr member const shouldn't fail"); 2116 } 2117 } else { 2118 B << 1; 2119 const char *PrevSpec; 2120 unsigned DiagID; 2121 if (D.getMutableDeclSpec().SetStorageClassSpec( 2122 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID, 2123 Context.getPrintingPolicy())) { 2124 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable && 2125 "This is the only DeclSpec that should fail to be applied"); 2126 B << 1; 2127 } else { 2128 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static "); 2129 isInstField = false; 2130 } 2131 } 2132 } 2133 2134 NamedDecl *Member; 2135 if (isInstField) { 2136 CXXScopeSpec &SS = D.getCXXScopeSpec(); 2137 2138 // Data members must have identifiers for names. 2139 if (!Name.isIdentifier()) { 2140 Diag(Loc, diag::err_bad_variable_name) 2141 << Name; 2142 return nullptr; 2143 } 2144 2145 IdentifierInfo *II = Name.getAsIdentifierInfo(); 2146 2147 // Member field could not be with "template" keyword. 2148 // So TemplateParameterLists should be empty in this case. 2149 if (TemplateParameterLists.size()) { 2150 TemplateParameterList* TemplateParams = TemplateParameterLists[0]; 2151 if (TemplateParams->size()) { 2152 // There is no such thing as a member field template. 2153 Diag(D.getIdentifierLoc(), diag::err_template_member) 2154 << II 2155 << SourceRange(TemplateParams->getTemplateLoc(), 2156 TemplateParams->getRAngleLoc()); 2157 } else { 2158 // There is an extraneous 'template<>' for this member. 2159 Diag(TemplateParams->getTemplateLoc(), 2160 diag::err_template_member_noparams) 2161 << II 2162 << SourceRange(TemplateParams->getTemplateLoc(), 2163 TemplateParams->getRAngleLoc()); 2164 } 2165 return nullptr; 2166 } 2167 2168 if (SS.isSet() && !SS.isInvalid()) { 2169 // The user provided a superfluous scope specifier inside a class 2170 // definition: 2171 // 2172 // class X { 2173 // int X::member; 2174 // }; 2175 if (DeclContext *DC = computeDeclContext(SS, false)) 2176 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc()); 2177 else 2178 Diag(D.getIdentifierLoc(), diag::err_member_qualification) 2179 << Name << SS.getRange(); 2180 2181 SS.clear(); 2182 } 2183 2184 AttributeList *MSPropertyAttr = 2185 getMSPropertyAttr(D.getDeclSpec().getAttributes().getList()); 2186 if (MSPropertyAttr) { 2187 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D, 2188 BitWidth, InitStyle, AS, MSPropertyAttr); 2189 if (!Member) 2190 return nullptr; 2191 isInstField = false; 2192 } else { 2193 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, 2194 BitWidth, InitStyle, AS); 2195 assert(Member && "HandleField never returns null"); 2196 } 2197 } else { 2198 Member = HandleDeclarator(S, D, TemplateParameterLists); 2199 if (!Member) 2200 return nullptr; 2201 2202 // Non-instance-fields can't have a bitfield. 2203 if (BitWidth) { 2204 if (Member->isInvalidDecl()) { 2205 // don't emit another diagnostic. 2206 } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) { 2207 // C++ 9.6p3: A bit-field shall not be a static member. 2208 // "static member 'A' cannot be a bit-field" 2209 Diag(Loc, diag::err_static_not_bitfield) 2210 << Name << BitWidth->getSourceRange(); 2211 } else if (isa<TypedefDecl>(Member)) { 2212 // "typedef member 'x' cannot be a bit-field" 2213 Diag(Loc, diag::err_typedef_not_bitfield) 2214 << Name << BitWidth->getSourceRange(); 2215 } else { 2216 // A function typedef ("typedef int f(); f a;"). 2217 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 2218 Diag(Loc, diag::err_not_integral_type_bitfield) 2219 << Name << cast<ValueDecl>(Member)->getType() 2220 << BitWidth->getSourceRange(); 2221 } 2222 2223 BitWidth = nullptr; 2224 Member->setInvalidDecl(); 2225 } 2226 2227 Member->setAccess(AS); 2228 2229 // If we have declared a member function template or static data member 2230 // template, set the access of the templated declaration as well. 2231 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member)) 2232 FunTmpl->getTemplatedDecl()->setAccess(AS); 2233 else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member)) 2234 VarTmpl->getTemplatedDecl()->setAccess(AS); 2235 } 2236 2237 if (VS.isOverrideSpecified()) 2238 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0)); 2239 if (VS.isFinalSpecified()) 2240 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context, 2241 VS.isFinalSpelledSealed())); 2242 2243 if (VS.getLastLocation().isValid()) { 2244 // Update the end location of a method that has a virt-specifiers. 2245 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member)) 2246 MD->setRangeEnd(VS.getLastLocation()); 2247 } 2248 2249 CheckOverrideControl(Member); 2250 2251 assert((Name || isInstField) && "No identifier for non-field ?"); 2252 2253 if (isInstField) { 2254 FieldDecl *FD = cast<FieldDecl>(Member); 2255 FieldCollector->Add(FD); 2256 2257 if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) { 2258 // Remember all explicit private FieldDecls that have a name, no side 2259 // effects and are not part of a dependent type declaration. 2260 if (!FD->isImplicit() && FD->getDeclName() && 2261 FD->getAccess() == AS_private && 2262 !FD->hasAttr<UnusedAttr>() && 2263 !FD->getParent()->isDependentContext() && 2264 !InitializationHasSideEffects(*FD)) 2265 UnusedPrivateFields.insert(FD); 2266 } 2267 } 2268 2269 return Member; 2270 } 2271 2272 namespace { 2273 class UninitializedFieldVisitor 2274 : public EvaluatedExprVisitor<UninitializedFieldVisitor> { 2275 Sema &S; 2276 // List of Decls to generate a warning on. Also remove Decls that become 2277 // initialized. 2278 llvm::SmallPtrSetImpl<ValueDecl*> &Decls; 2279 // List of base classes of the record. Classes are removed after their 2280 // initializers. 2281 llvm::SmallPtrSetImpl<QualType> &BaseClasses; 2282 // Vector of decls to be removed from the Decl set prior to visiting the 2283 // nodes. These Decls may have been initialized in the prior initializer. 2284 llvm::SmallVector<ValueDecl*, 4> DeclsToRemove; 2285 // If non-null, add a note to the warning pointing back to the constructor. 2286 const CXXConstructorDecl *Constructor; 2287 // Variables to hold state when processing an initializer list. When 2288 // InitList is true, special case initialization of FieldDecls matching 2289 // InitListFieldDecl. 2290 bool InitList; 2291 FieldDecl *InitListFieldDecl; 2292 llvm::SmallVector<unsigned, 4> InitFieldIndex; 2293 2294 public: 2295 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited; 2296 UninitializedFieldVisitor(Sema &S, 2297 llvm::SmallPtrSetImpl<ValueDecl*> &Decls, 2298 llvm::SmallPtrSetImpl<QualType> &BaseClasses) 2299 : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses), 2300 Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {} 2301 2302 // Returns true if the use of ME is not an uninitialized use. 2303 bool IsInitListMemberExprInitialized(MemberExpr *ME, 2304 bool CheckReferenceOnly) { 2305 llvm::SmallVector<FieldDecl*, 4> Fields; 2306 bool ReferenceField = false; 2307 while (ME) { 2308 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 2309 if (!FD) 2310 return false; 2311 Fields.push_back(FD); 2312 if (FD->getType()->isReferenceType()) 2313 ReferenceField = true; 2314 ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts()); 2315 } 2316 2317 // Binding a reference to an unintialized field is not an 2318 // uninitialized use. 2319 if (CheckReferenceOnly && !ReferenceField) 2320 return true; 2321 2322 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 2323 // Discard the first field since it is the field decl that is being 2324 // initialized. 2325 for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) { 2326 UsedFieldIndex.push_back((*I)->getFieldIndex()); 2327 } 2328 2329 for (auto UsedIter = UsedFieldIndex.begin(), 2330 UsedEnd = UsedFieldIndex.end(), 2331 OrigIter = InitFieldIndex.begin(), 2332 OrigEnd = InitFieldIndex.end(); 2333 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 2334 if (*UsedIter < *OrigIter) 2335 return true; 2336 if (*UsedIter > *OrigIter) 2337 break; 2338 } 2339 2340 return false; 2341 } 2342 2343 void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly, 2344 bool AddressOf) { 2345 if (isa<EnumConstantDecl>(ME->getMemberDecl())) 2346 return; 2347 2348 // FieldME is the inner-most MemberExpr that is not an anonymous struct 2349 // or union. 2350 MemberExpr *FieldME = ME; 2351 2352 bool AllPODFields = FieldME->getType().isPODType(S.Context); 2353 2354 Expr *Base = ME; 2355 while (MemberExpr *SubME = 2356 dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) { 2357 2358 if (isa<VarDecl>(SubME->getMemberDecl())) 2359 return; 2360 2361 if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl())) 2362 if (!FD->isAnonymousStructOrUnion()) 2363 FieldME = SubME; 2364 2365 if (!FieldME->getType().isPODType(S.Context)) 2366 AllPODFields = false; 2367 2368 Base = SubME->getBase(); 2369 } 2370 2371 if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts())) 2372 return; 2373 2374 if (AddressOf && AllPODFields) 2375 return; 2376 2377 ValueDecl* FoundVD = FieldME->getMemberDecl(); 2378 2379 if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) { 2380 while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) { 2381 BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr()); 2382 } 2383 2384 if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) { 2385 QualType T = BaseCast->getType(); 2386 if (T->isPointerType() && 2387 BaseClasses.count(T->getPointeeType())) { 2388 S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit) 2389 << T->getPointeeType() << FoundVD; 2390 } 2391 } 2392 } 2393 2394 if (!Decls.count(FoundVD)) 2395 return; 2396 2397 const bool IsReference = FoundVD->getType()->isReferenceType(); 2398 2399 if (InitList && !AddressOf && FoundVD == InitListFieldDecl) { 2400 // Special checking for initializer lists. 2401 if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) { 2402 return; 2403 } 2404 } else { 2405 // Prevent double warnings on use of unbounded references. 2406 if (CheckReferenceOnly && !IsReference) 2407 return; 2408 } 2409 2410 unsigned diag = IsReference 2411 ? diag::warn_reference_field_is_uninit 2412 : diag::warn_field_is_uninit; 2413 S.Diag(FieldME->getExprLoc(), diag) << FoundVD; 2414 if (Constructor) 2415 S.Diag(Constructor->getLocation(), 2416 diag::note_uninit_in_this_constructor) 2417 << (Constructor->isDefaultConstructor() && Constructor->isImplicit()); 2418 2419 } 2420 2421 void HandleValue(Expr *E, bool AddressOf) { 2422 E = E->IgnoreParens(); 2423 2424 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 2425 HandleMemberExpr(ME, false /*CheckReferenceOnly*/, 2426 AddressOf /*AddressOf*/); 2427 return; 2428 } 2429 2430 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 2431 Visit(CO->getCond()); 2432 HandleValue(CO->getTrueExpr(), AddressOf); 2433 HandleValue(CO->getFalseExpr(), AddressOf); 2434 return; 2435 } 2436 2437 if (BinaryConditionalOperator *BCO = 2438 dyn_cast<BinaryConditionalOperator>(E)) { 2439 Visit(BCO->getCond()); 2440 HandleValue(BCO->getFalseExpr(), AddressOf); 2441 return; 2442 } 2443 2444 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 2445 HandleValue(OVE->getSourceExpr(), AddressOf); 2446 return; 2447 } 2448 2449 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 2450 switch (BO->getOpcode()) { 2451 default: 2452 break; 2453 case(BO_PtrMemD): 2454 case(BO_PtrMemI): 2455 HandleValue(BO->getLHS(), AddressOf); 2456 Visit(BO->getRHS()); 2457 return; 2458 case(BO_Comma): 2459 Visit(BO->getLHS()); 2460 HandleValue(BO->getRHS(), AddressOf); 2461 return; 2462 } 2463 } 2464 2465 Visit(E); 2466 } 2467 2468 void CheckInitListExpr(InitListExpr *ILE) { 2469 InitFieldIndex.push_back(0); 2470 for (auto Child : ILE->children()) { 2471 if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) { 2472 CheckInitListExpr(SubList); 2473 } else { 2474 Visit(Child); 2475 } 2476 ++InitFieldIndex.back(); 2477 } 2478 InitFieldIndex.pop_back(); 2479 } 2480 2481 void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor, 2482 FieldDecl *Field, const Type *BaseClass) { 2483 // Remove Decls that may have been initialized in the previous 2484 // initializer. 2485 for (ValueDecl* VD : DeclsToRemove) 2486 Decls.erase(VD); 2487 DeclsToRemove.clear(); 2488 2489 Constructor = FieldConstructor; 2490 InitListExpr *ILE = dyn_cast<InitListExpr>(E); 2491 2492 if (ILE && Field) { 2493 InitList = true; 2494 InitListFieldDecl = Field; 2495 InitFieldIndex.clear(); 2496 CheckInitListExpr(ILE); 2497 } else { 2498 InitList = false; 2499 Visit(E); 2500 } 2501 2502 if (Field) 2503 Decls.erase(Field); 2504 if (BaseClass) 2505 BaseClasses.erase(BaseClass->getCanonicalTypeInternal()); 2506 } 2507 2508 void VisitMemberExpr(MemberExpr *ME) { 2509 // All uses of unbounded reference fields will warn. 2510 HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/); 2511 } 2512 2513 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 2514 if (E->getCastKind() == CK_LValueToRValue) { 2515 HandleValue(E->getSubExpr(), false /*AddressOf*/); 2516 return; 2517 } 2518 2519 Inherited::VisitImplicitCastExpr(E); 2520 } 2521 2522 void VisitCXXConstructExpr(CXXConstructExpr *E) { 2523 if (E->getConstructor()->isCopyConstructor()) { 2524 Expr *ArgExpr = E->getArg(0); 2525 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 2526 if (ILE->getNumInits() == 1) 2527 ArgExpr = ILE->getInit(0); 2528 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 2529 if (ICE->getCastKind() == CK_NoOp) 2530 ArgExpr = ICE->getSubExpr(); 2531 HandleValue(ArgExpr, false /*AddressOf*/); 2532 return; 2533 } 2534 Inherited::VisitCXXConstructExpr(E); 2535 } 2536 2537 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) { 2538 Expr *Callee = E->getCallee(); 2539 if (isa<MemberExpr>(Callee)) { 2540 HandleValue(Callee, false /*AddressOf*/); 2541 for (auto Arg : E->arguments()) 2542 Visit(Arg); 2543 return; 2544 } 2545 2546 Inherited::VisitCXXMemberCallExpr(E); 2547 } 2548 2549 void VisitCallExpr(CallExpr *E) { 2550 // Treat std::move as a use. 2551 if (E->getNumArgs() == 1) { 2552 if (FunctionDecl *FD = E->getDirectCallee()) { 2553 if (FD->isInStdNamespace() && FD->getIdentifier() && 2554 FD->getIdentifier()->isStr("move")) { 2555 HandleValue(E->getArg(0), false /*AddressOf*/); 2556 return; 2557 } 2558 } 2559 } 2560 2561 Inherited::VisitCallExpr(E); 2562 } 2563 2564 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 2565 Expr *Callee = E->getCallee(); 2566 2567 if (isa<UnresolvedLookupExpr>(Callee)) 2568 return Inherited::VisitCXXOperatorCallExpr(E); 2569 2570 Visit(Callee); 2571 for (auto Arg : E->arguments()) 2572 HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/); 2573 } 2574 2575 void VisitBinaryOperator(BinaryOperator *E) { 2576 // If a field assignment is detected, remove the field from the 2577 // uninitiailized field set. 2578 if (E->getOpcode() == BO_Assign) 2579 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS())) 2580 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) 2581 if (!FD->getType()->isReferenceType()) 2582 DeclsToRemove.push_back(FD); 2583 2584 if (E->isCompoundAssignmentOp()) { 2585 HandleValue(E->getLHS(), false /*AddressOf*/); 2586 Visit(E->getRHS()); 2587 return; 2588 } 2589 2590 Inherited::VisitBinaryOperator(E); 2591 } 2592 2593 void VisitUnaryOperator(UnaryOperator *E) { 2594 if (E->isIncrementDecrementOp()) { 2595 HandleValue(E->getSubExpr(), false /*AddressOf*/); 2596 return; 2597 } 2598 if (E->getOpcode() == UO_AddrOf) { 2599 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) { 2600 HandleValue(ME->getBase(), true /*AddressOf*/); 2601 return; 2602 } 2603 } 2604 2605 Inherited::VisitUnaryOperator(E); 2606 } 2607 }; 2608 2609 // Diagnose value-uses of fields to initialize themselves, e.g. 2610 // foo(foo) 2611 // where foo is not also a parameter to the constructor. 2612 // Also diagnose across field uninitialized use such as 2613 // x(y), y(x) 2614 // TODO: implement -Wuninitialized and fold this into that framework. 2615 static void DiagnoseUninitializedFields( 2616 Sema &SemaRef, const CXXConstructorDecl *Constructor) { 2617 2618 if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit, 2619 Constructor->getLocation())) { 2620 return; 2621 } 2622 2623 if (Constructor->isInvalidDecl()) 2624 return; 2625 2626 const CXXRecordDecl *RD = Constructor->getParent(); 2627 2628 if (RD->getDescribedClassTemplate()) 2629 return; 2630 2631 // Holds fields that are uninitialized. 2632 llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields; 2633 2634 // At the beginning, all fields are uninitialized. 2635 for (auto *I : RD->decls()) { 2636 if (auto *FD = dyn_cast<FieldDecl>(I)) { 2637 UninitializedFields.insert(FD); 2638 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { 2639 UninitializedFields.insert(IFD->getAnonField()); 2640 } 2641 } 2642 2643 llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses; 2644 for (auto I : RD->bases()) 2645 UninitializedBaseClasses.insert(I.getType().getCanonicalType()); 2646 2647 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 2648 return; 2649 2650 UninitializedFieldVisitor UninitializedChecker(SemaRef, 2651 UninitializedFields, 2652 UninitializedBaseClasses); 2653 2654 for (const auto *FieldInit : Constructor->inits()) { 2655 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 2656 break; 2657 2658 Expr *InitExpr = FieldInit->getInit(); 2659 if (!InitExpr) 2660 continue; 2661 2662 if (CXXDefaultInitExpr *Default = 2663 dyn_cast<CXXDefaultInitExpr>(InitExpr)) { 2664 InitExpr = Default->getExpr(); 2665 if (!InitExpr) 2666 continue; 2667 // In class initializers will point to the constructor. 2668 UninitializedChecker.CheckInitializer(InitExpr, Constructor, 2669 FieldInit->getAnyMember(), 2670 FieldInit->getBaseClass()); 2671 } else { 2672 UninitializedChecker.CheckInitializer(InitExpr, nullptr, 2673 FieldInit->getAnyMember(), 2674 FieldInit->getBaseClass()); 2675 } 2676 } 2677 } 2678 } // namespace 2679 2680 /// \brief Enter a new C++ default initializer scope. After calling this, the 2681 /// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if 2682 /// parsing or instantiating the initializer failed. 2683 void Sema::ActOnStartCXXInClassMemberInitializer() { 2684 // Create a synthetic function scope to represent the call to the constructor 2685 // that notionally surrounds a use of this initializer. 2686 PushFunctionScope(); 2687 } 2688 2689 /// \brief This is invoked after parsing an in-class initializer for a 2690 /// non-static C++ class member, and after instantiating an in-class initializer 2691 /// in a class template. Such actions are deferred until the class is complete. 2692 void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D, 2693 SourceLocation InitLoc, 2694 Expr *InitExpr) { 2695 // Pop the notional constructor scope we created earlier. 2696 PopFunctionScopeInfo(nullptr, D); 2697 2698 FieldDecl *FD = dyn_cast<FieldDecl>(D); 2699 assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) && 2700 "must set init style when field is created"); 2701 2702 if (!InitExpr) { 2703 D->setInvalidDecl(); 2704 if (FD) 2705 FD->removeInClassInitializer(); 2706 return; 2707 } 2708 2709 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) { 2710 FD->setInvalidDecl(); 2711 FD->removeInClassInitializer(); 2712 return; 2713 } 2714 2715 ExprResult Init = InitExpr; 2716 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) { 2717 InitializedEntity Entity = InitializedEntity::InitializeMember(FD); 2718 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit 2719 ? InitializationKind::CreateDirectList(InitExpr->getLocStart()) 2720 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc); 2721 InitializationSequence Seq(*this, Entity, Kind, InitExpr); 2722 Init = Seq.Perform(*this, Entity, Kind, InitExpr); 2723 if (Init.isInvalid()) { 2724 FD->setInvalidDecl(); 2725 return; 2726 } 2727 } 2728 2729 // C++11 [class.base.init]p7: 2730 // The initialization of each base and member constitutes a 2731 // full-expression. 2732 Init = ActOnFinishFullExpr(Init.get(), InitLoc); 2733 if (Init.isInvalid()) { 2734 FD->setInvalidDecl(); 2735 return; 2736 } 2737 2738 InitExpr = Init.get(); 2739 2740 FD->setInClassInitializer(InitExpr); 2741 } 2742 2743 /// \brief Find the direct and/or virtual base specifiers that 2744 /// correspond to the given base type, for use in base initialization 2745 /// within a constructor. 2746 static bool FindBaseInitializer(Sema &SemaRef, 2747 CXXRecordDecl *ClassDecl, 2748 QualType BaseType, 2749 const CXXBaseSpecifier *&DirectBaseSpec, 2750 const CXXBaseSpecifier *&VirtualBaseSpec) { 2751 // First, check for a direct base class. 2752 DirectBaseSpec = nullptr; 2753 for (const auto &Base : ClassDecl->bases()) { 2754 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) { 2755 // We found a direct base of this type. That's what we're 2756 // initializing. 2757 DirectBaseSpec = &Base; 2758 break; 2759 } 2760 } 2761 2762 // Check for a virtual base class. 2763 // FIXME: We might be able to short-circuit this if we know in advance that 2764 // there are no virtual bases. 2765 VirtualBaseSpec = nullptr; 2766 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) { 2767 // We haven't found a base yet; search the class hierarchy for a 2768 // virtual base class. 2769 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 2770 /*DetectVirtual=*/false); 2771 if (SemaRef.IsDerivedFrom(ClassDecl->getLocation(), 2772 SemaRef.Context.getTypeDeclType(ClassDecl), 2773 BaseType, Paths)) { 2774 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 2775 Path != Paths.end(); ++Path) { 2776 if (Path->back().Base->isVirtual()) { 2777 VirtualBaseSpec = Path->back().Base; 2778 break; 2779 } 2780 } 2781 } 2782 } 2783 2784 return DirectBaseSpec || VirtualBaseSpec; 2785 } 2786 2787 /// \brief Handle a C++ member initializer using braced-init-list syntax. 2788 MemInitResult 2789 Sema::ActOnMemInitializer(Decl *ConstructorD, 2790 Scope *S, 2791 CXXScopeSpec &SS, 2792 IdentifierInfo *MemberOrBase, 2793 ParsedType TemplateTypeTy, 2794 const DeclSpec &DS, 2795 SourceLocation IdLoc, 2796 Expr *InitList, 2797 SourceLocation EllipsisLoc) { 2798 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 2799 DS, IdLoc, InitList, 2800 EllipsisLoc); 2801 } 2802 2803 /// \brief Handle a C++ member initializer using parentheses syntax. 2804 MemInitResult 2805 Sema::ActOnMemInitializer(Decl *ConstructorD, 2806 Scope *S, 2807 CXXScopeSpec &SS, 2808 IdentifierInfo *MemberOrBase, 2809 ParsedType TemplateTypeTy, 2810 const DeclSpec &DS, 2811 SourceLocation IdLoc, 2812 SourceLocation LParenLoc, 2813 ArrayRef<Expr *> Args, 2814 SourceLocation RParenLoc, 2815 SourceLocation EllipsisLoc) { 2816 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, 2817 Args, RParenLoc); 2818 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 2819 DS, IdLoc, List, EllipsisLoc); 2820 } 2821 2822 namespace { 2823 2824 // Callback to only accept typo corrections that can be a valid C++ member 2825 // intializer: either a non-static field member or a base class. 2826 class MemInitializerValidatorCCC : public CorrectionCandidateCallback { 2827 public: 2828 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl) 2829 : ClassDecl(ClassDecl) {} 2830 2831 bool ValidateCandidate(const TypoCorrection &candidate) override { 2832 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 2833 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND)) 2834 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl); 2835 return isa<TypeDecl>(ND); 2836 } 2837 return false; 2838 } 2839 2840 private: 2841 CXXRecordDecl *ClassDecl; 2842 }; 2843 2844 } 2845 2846 /// \brief Handle a C++ member initializer. 2847 MemInitResult 2848 Sema::BuildMemInitializer(Decl *ConstructorD, 2849 Scope *S, 2850 CXXScopeSpec &SS, 2851 IdentifierInfo *MemberOrBase, 2852 ParsedType TemplateTypeTy, 2853 const DeclSpec &DS, 2854 SourceLocation IdLoc, 2855 Expr *Init, 2856 SourceLocation EllipsisLoc) { 2857 ExprResult Res = CorrectDelayedTyposInExpr(Init); 2858 if (!Res.isUsable()) 2859 return true; 2860 Init = Res.get(); 2861 2862 if (!ConstructorD) 2863 return true; 2864 2865 AdjustDeclIfTemplate(ConstructorD); 2866 2867 CXXConstructorDecl *Constructor 2868 = dyn_cast<CXXConstructorDecl>(ConstructorD); 2869 if (!Constructor) { 2870 // The user wrote a constructor initializer on a function that is 2871 // not a C++ constructor. Ignore the error for now, because we may 2872 // have more member initializers coming; we'll diagnose it just 2873 // once in ActOnMemInitializers. 2874 return true; 2875 } 2876 2877 CXXRecordDecl *ClassDecl = Constructor->getParent(); 2878 2879 // C++ [class.base.init]p2: 2880 // Names in a mem-initializer-id are looked up in the scope of the 2881 // constructor's class and, if not found in that scope, are looked 2882 // up in the scope containing the constructor's definition. 2883 // [Note: if the constructor's class contains a member with the 2884 // same name as a direct or virtual base class of the class, a 2885 // mem-initializer-id naming the member or base class and composed 2886 // of a single identifier refers to the class member. A 2887 // mem-initializer-id for the hidden base class may be specified 2888 // using a qualified name. ] 2889 if (!SS.getScopeRep() && !TemplateTypeTy) { 2890 // Look for a member, first. 2891 DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase); 2892 if (!Result.empty()) { 2893 ValueDecl *Member; 2894 if ((Member = dyn_cast<FieldDecl>(Result.front())) || 2895 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) { 2896 if (EllipsisLoc.isValid()) 2897 Diag(EllipsisLoc, diag::err_pack_expansion_member_init) 2898 << MemberOrBase 2899 << SourceRange(IdLoc, Init->getSourceRange().getEnd()); 2900 2901 return BuildMemberInitializer(Member, Init, IdLoc); 2902 } 2903 } 2904 } 2905 // It didn't name a member, so see if it names a class. 2906 QualType BaseType; 2907 TypeSourceInfo *TInfo = nullptr; 2908 2909 if (TemplateTypeTy) { 2910 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo); 2911 } else if (DS.getTypeSpecType() == TST_decltype) { 2912 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); 2913 } else { 2914 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName); 2915 LookupParsedName(R, S, &SS); 2916 2917 TypeDecl *TyD = R.getAsSingle<TypeDecl>(); 2918 if (!TyD) { 2919 if (R.isAmbiguous()) return true; 2920 2921 // We don't want access-control diagnostics here. 2922 R.suppressDiagnostics(); 2923 2924 if (SS.isSet() && isDependentScopeSpecifier(SS)) { 2925 bool NotUnknownSpecialization = false; 2926 DeclContext *DC = computeDeclContext(SS, false); 2927 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC)) 2928 NotUnknownSpecialization = !Record->hasAnyDependentBases(); 2929 2930 if (!NotUnknownSpecialization) { 2931 // When the scope specifier can refer to a member of an unknown 2932 // specialization, we take it as a type name. 2933 BaseType = CheckTypenameType(ETK_None, SourceLocation(), 2934 SS.getWithLocInContext(Context), 2935 *MemberOrBase, IdLoc); 2936 if (BaseType.isNull()) 2937 return true; 2938 2939 R.clear(); 2940 R.setLookupName(MemberOrBase); 2941 } 2942 } 2943 2944 // If no results were found, try to correct typos. 2945 TypoCorrection Corr; 2946 if (R.empty() && BaseType.isNull() && 2947 (Corr = CorrectTypo( 2948 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 2949 llvm::make_unique<MemInitializerValidatorCCC>(ClassDecl), 2950 CTK_ErrorRecovery, ClassDecl))) { 2951 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) { 2952 // We have found a non-static data member with a similar 2953 // name to what was typed; complain and initialize that 2954 // member. 2955 diagnoseTypo(Corr, 2956 PDiag(diag::err_mem_init_not_member_or_class_suggest) 2957 << MemberOrBase << true); 2958 return BuildMemberInitializer(Member, Init, IdLoc); 2959 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) { 2960 const CXXBaseSpecifier *DirectBaseSpec; 2961 const CXXBaseSpecifier *VirtualBaseSpec; 2962 if (FindBaseInitializer(*this, ClassDecl, 2963 Context.getTypeDeclType(Type), 2964 DirectBaseSpec, VirtualBaseSpec)) { 2965 // We have found a direct or virtual base class with a 2966 // similar name to what was typed; complain and initialize 2967 // that base class. 2968 diagnoseTypo(Corr, 2969 PDiag(diag::err_mem_init_not_member_or_class_suggest) 2970 << MemberOrBase << false, 2971 PDiag() /*Suppress note, we provide our own.*/); 2972 2973 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec 2974 : VirtualBaseSpec; 2975 Diag(BaseSpec->getLocStart(), 2976 diag::note_base_class_specified_here) 2977 << BaseSpec->getType() 2978 << BaseSpec->getSourceRange(); 2979 2980 TyD = Type; 2981 } 2982 } 2983 } 2984 2985 if (!TyD && BaseType.isNull()) { 2986 Diag(IdLoc, diag::err_mem_init_not_member_or_class) 2987 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd()); 2988 return true; 2989 } 2990 } 2991 2992 if (BaseType.isNull()) { 2993 BaseType = Context.getTypeDeclType(TyD); 2994 MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false); 2995 if (SS.isSet()) { 2996 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(), 2997 BaseType); 2998 TInfo = Context.CreateTypeSourceInfo(BaseType); 2999 ElaboratedTypeLoc TL = TInfo->getTypeLoc().castAs<ElaboratedTypeLoc>(); 3000 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc); 3001 TL.setElaboratedKeywordLoc(SourceLocation()); 3002 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 3003 } 3004 } 3005 } 3006 3007 if (!TInfo) 3008 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc); 3009 3010 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc); 3011 } 3012 3013 /// Checks a member initializer expression for cases where reference (or 3014 /// pointer) members are bound to by-value parameters (or their addresses). 3015 static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member, 3016 Expr *Init, 3017 SourceLocation IdLoc) { 3018 QualType MemberTy = Member->getType(); 3019 3020 // We only handle pointers and references currently. 3021 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers? 3022 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType()) 3023 return; 3024 3025 const bool IsPointer = MemberTy->isPointerType(); 3026 if (IsPointer) { 3027 if (const UnaryOperator *Op 3028 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) { 3029 // The only case we're worried about with pointers requires taking the 3030 // address. 3031 if (Op->getOpcode() != UO_AddrOf) 3032 return; 3033 3034 Init = Op->getSubExpr(); 3035 } else { 3036 // We only handle address-of expression initializers for pointers. 3037 return; 3038 } 3039 } 3040 3041 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) { 3042 // We only warn when referring to a non-reference parameter declaration. 3043 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl()); 3044 if (!Parameter || Parameter->getType()->isReferenceType()) 3045 return; 3046 3047 S.Diag(Init->getExprLoc(), 3048 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr 3049 : diag::warn_bind_ref_member_to_parameter) 3050 << Member << Parameter << Init->getSourceRange(); 3051 } else { 3052 // Other initializers are fine. 3053 return; 3054 } 3055 3056 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here) 3057 << (unsigned)IsPointer; 3058 } 3059 3060 MemInitResult 3061 Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init, 3062 SourceLocation IdLoc) { 3063 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member); 3064 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member); 3065 assert((DirectMember || IndirectMember) && 3066 "Member must be a FieldDecl or IndirectFieldDecl"); 3067 3068 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 3069 return true; 3070 3071 if (Member->isInvalidDecl()) 3072 return true; 3073 3074 MultiExprArg Args; 3075 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3076 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3077 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) { 3078 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); 3079 } else { 3080 // Template instantiation doesn't reconstruct ParenListExprs for us. 3081 Args = Init; 3082 } 3083 3084 SourceRange InitRange = Init->getSourceRange(); 3085 3086 if (Member->getType()->isDependentType() || Init->isTypeDependent()) { 3087 // Can't check initialization for a member of dependent type or when 3088 // any of the arguments are type-dependent expressions. 3089 DiscardCleanupsInEvaluationContext(); 3090 } else { 3091 bool InitList = false; 3092 if (isa<InitListExpr>(Init)) { 3093 InitList = true; 3094 Args = Init; 3095 } 3096 3097 // Initialize the member. 3098 InitializedEntity MemberEntity = 3099 DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr) 3100 : InitializedEntity::InitializeMember(IndirectMember, 3101 nullptr); 3102 InitializationKind Kind = 3103 InitList ? InitializationKind::CreateDirectList(IdLoc) 3104 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(), 3105 InitRange.getEnd()); 3106 3107 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args); 3108 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args, 3109 nullptr); 3110 if (MemberInit.isInvalid()) 3111 return true; 3112 3113 CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc); 3114 3115 // C++11 [class.base.init]p7: 3116 // The initialization of each base and member constitutes a 3117 // full-expression. 3118 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin()); 3119 if (MemberInit.isInvalid()) 3120 return true; 3121 3122 Init = MemberInit.get(); 3123 } 3124 3125 if (DirectMember) { 3126 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc, 3127 InitRange.getBegin(), Init, 3128 InitRange.getEnd()); 3129 } else { 3130 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc, 3131 InitRange.getBegin(), Init, 3132 InitRange.getEnd()); 3133 } 3134 } 3135 3136 MemInitResult 3137 Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init, 3138 CXXRecordDecl *ClassDecl) { 3139 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin(); 3140 if (!LangOpts.CPlusPlus11) 3141 return Diag(NameLoc, diag::err_delegating_ctor) 3142 << TInfo->getTypeLoc().getLocalSourceRange(); 3143 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor); 3144 3145 bool InitList = true; 3146 MultiExprArg Args = Init; 3147 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3148 InitList = false; 3149 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3150 } 3151 3152 SourceRange InitRange = Init->getSourceRange(); 3153 // Initialize the object. 3154 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation( 3155 QualType(ClassDecl->getTypeForDecl(), 0)); 3156 InitializationKind Kind = 3157 InitList ? InitializationKind::CreateDirectList(NameLoc) 3158 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(), 3159 InitRange.getEnd()); 3160 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args); 3161 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind, 3162 Args, nullptr); 3163 if (DelegationInit.isInvalid()) 3164 return true; 3165 3166 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() && 3167 "Delegating constructor with no target?"); 3168 3169 // C++11 [class.base.init]p7: 3170 // The initialization of each base and member constitutes a 3171 // full-expression. 3172 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(), 3173 InitRange.getBegin()); 3174 if (DelegationInit.isInvalid()) 3175 return true; 3176 3177 // If we are in a dependent context, template instantiation will 3178 // perform this type-checking again. Just save the arguments that we 3179 // received in a ParenListExpr. 3180 // FIXME: This isn't quite ideal, since our ASTs don't capture all 3181 // of the information that we have about the base 3182 // initializer. However, deconstructing the ASTs is a dicey process, 3183 // and this approach is far more likely to get the corner cases right. 3184 if (CurContext->isDependentContext()) 3185 DelegationInit = Init; 3186 3187 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(), 3188 DelegationInit.getAs<Expr>(), 3189 InitRange.getEnd()); 3190 } 3191 3192 MemInitResult 3193 Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, 3194 Expr *Init, CXXRecordDecl *ClassDecl, 3195 SourceLocation EllipsisLoc) { 3196 SourceLocation BaseLoc 3197 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin(); 3198 3199 if (!BaseType->isDependentType() && !BaseType->isRecordType()) 3200 return Diag(BaseLoc, diag::err_base_init_does_not_name_class) 3201 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3202 3203 // C++ [class.base.init]p2: 3204 // [...] Unless the mem-initializer-id names a nonstatic data 3205 // member of the constructor's class or a direct or virtual base 3206 // of that class, the mem-initializer is ill-formed. A 3207 // mem-initializer-list can initialize a base class using any 3208 // name that denotes that base class type. 3209 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent(); 3210 3211 SourceRange InitRange = Init->getSourceRange(); 3212 if (EllipsisLoc.isValid()) { 3213 // This is a pack expansion. 3214 if (!BaseType->containsUnexpandedParameterPack()) { 3215 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 3216 << SourceRange(BaseLoc, InitRange.getEnd()); 3217 3218 EllipsisLoc = SourceLocation(); 3219 } 3220 } else { 3221 // Check for any unexpanded parameter packs. 3222 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer)) 3223 return true; 3224 3225 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 3226 return true; 3227 } 3228 3229 // Check for direct and virtual base classes. 3230 const CXXBaseSpecifier *DirectBaseSpec = nullptr; 3231 const CXXBaseSpecifier *VirtualBaseSpec = nullptr; 3232 if (!Dependent) { 3233 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0), 3234 BaseType)) 3235 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl); 3236 3237 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec, 3238 VirtualBaseSpec); 3239 3240 // C++ [base.class.init]p2: 3241 // Unless the mem-initializer-id names a nonstatic data member of the 3242 // constructor's class or a direct or virtual base of that class, the 3243 // mem-initializer is ill-formed. 3244 if (!DirectBaseSpec && !VirtualBaseSpec) { 3245 // If the class has any dependent bases, then it's possible that 3246 // one of those types will resolve to the same type as 3247 // BaseType. Therefore, just treat this as a dependent base 3248 // class initialization. FIXME: Should we try to check the 3249 // initialization anyway? It seems odd. 3250 if (ClassDecl->hasAnyDependentBases()) 3251 Dependent = true; 3252 else 3253 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual) 3254 << BaseType << Context.getTypeDeclType(ClassDecl) 3255 << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3256 } 3257 } 3258 3259 if (Dependent) { 3260 DiscardCleanupsInEvaluationContext(); 3261 3262 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 3263 /*IsVirtual=*/false, 3264 InitRange.getBegin(), Init, 3265 InitRange.getEnd(), EllipsisLoc); 3266 } 3267 3268 // C++ [base.class.init]p2: 3269 // If a mem-initializer-id is ambiguous because it designates both 3270 // a direct non-virtual base class and an inherited virtual base 3271 // class, the mem-initializer is ill-formed. 3272 if (DirectBaseSpec && VirtualBaseSpec) 3273 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual) 3274 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3275 3276 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec; 3277 if (!BaseSpec) 3278 BaseSpec = VirtualBaseSpec; 3279 3280 // Initialize the base. 3281 bool InitList = true; 3282 MultiExprArg Args = Init; 3283 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3284 InitList = false; 3285 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3286 } 3287 3288 InitializedEntity BaseEntity = 3289 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec); 3290 InitializationKind Kind = 3291 InitList ? InitializationKind::CreateDirectList(BaseLoc) 3292 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(), 3293 InitRange.getEnd()); 3294 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args); 3295 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr); 3296 if (BaseInit.isInvalid()) 3297 return true; 3298 3299 // C++11 [class.base.init]p7: 3300 // The initialization of each base and member constitutes a 3301 // full-expression. 3302 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin()); 3303 if (BaseInit.isInvalid()) 3304 return true; 3305 3306 // If we are in a dependent context, template instantiation will 3307 // perform this type-checking again. Just save the arguments that we 3308 // received in a ParenListExpr. 3309 // FIXME: This isn't quite ideal, since our ASTs don't capture all 3310 // of the information that we have about the base 3311 // initializer. However, deconstructing the ASTs is a dicey process, 3312 // and this approach is far more likely to get the corner cases right. 3313 if (CurContext->isDependentContext()) 3314 BaseInit = Init; 3315 3316 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 3317 BaseSpec->isVirtual(), 3318 InitRange.getBegin(), 3319 BaseInit.getAs<Expr>(), 3320 InitRange.getEnd(), EllipsisLoc); 3321 } 3322 3323 // Create a static_cast\<T&&>(expr). 3324 static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) { 3325 if (T.isNull()) T = E->getType(); 3326 QualType TargetType = SemaRef.BuildReferenceType( 3327 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName()); 3328 SourceLocation ExprLoc = E->getLocStart(); 3329 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo( 3330 TargetType, ExprLoc); 3331 3332 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E, 3333 SourceRange(ExprLoc, ExprLoc), 3334 E->getSourceRange()).get(); 3335 } 3336 3337 /// ImplicitInitializerKind - How an implicit base or member initializer should 3338 /// initialize its base or member. 3339 enum ImplicitInitializerKind { 3340 IIK_Default, 3341 IIK_Copy, 3342 IIK_Move, 3343 IIK_Inherit 3344 }; 3345 3346 static bool 3347 BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 3348 ImplicitInitializerKind ImplicitInitKind, 3349 CXXBaseSpecifier *BaseSpec, 3350 bool IsInheritedVirtualBase, 3351 CXXCtorInitializer *&CXXBaseInit) { 3352 InitializedEntity InitEntity 3353 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec, 3354 IsInheritedVirtualBase); 3355 3356 ExprResult BaseInit; 3357 3358 switch (ImplicitInitKind) { 3359 case IIK_Inherit: { 3360 const CXXRecordDecl *Inherited = 3361 Constructor->getInheritedConstructor()->getParent(); 3362 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 3363 if (Base && Inherited->getCanonicalDecl() == Base->getCanonicalDecl()) { 3364 // C++11 [class.inhctor]p8: 3365 // Each expression in the expression-list is of the form 3366 // static_cast<T&&>(p), where p is the name of the corresponding 3367 // constructor parameter and T is the declared type of p. 3368 SmallVector<Expr*, 16> Args; 3369 for (unsigned I = 0, E = Constructor->getNumParams(); I != E; ++I) { 3370 ParmVarDecl *PD = Constructor->getParamDecl(I); 3371 ExprResult ArgExpr = 3372 SemaRef.BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(), 3373 VK_LValue, SourceLocation()); 3374 if (ArgExpr.isInvalid()) 3375 return true; 3376 Args.push_back(CastForMoving(SemaRef, ArgExpr.get(), PD->getType())); 3377 } 3378 3379 InitializationKind InitKind = InitializationKind::CreateDirect( 3380 Constructor->getLocation(), SourceLocation(), SourceLocation()); 3381 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, Args); 3382 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, Args); 3383 break; 3384 } 3385 } 3386 // Fall through. 3387 case IIK_Default: { 3388 InitializationKind InitKind 3389 = InitializationKind::CreateDefault(Constructor->getLocation()); 3390 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3391 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3392 break; 3393 } 3394 3395 case IIK_Move: 3396 case IIK_Copy: { 3397 bool Moving = ImplicitInitKind == IIK_Move; 3398 ParmVarDecl *Param = Constructor->getParamDecl(0); 3399 QualType ParamType = Param->getType().getNonReferenceType(); 3400 3401 Expr *CopyCtorArg = 3402 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 3403 SourceLocation(), Param, false, 3404 Constructor->getLocation(), ParamType, 3405 VK_LValue, nullptr); 3406 3407 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg)); 3408 3409 // Cast to the base class to avoid ambiguities. 3410 QualType ArgTy = 3411 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(), 3412 ParamType.getQualifiers()); 3413 3414 if (Moving) { 3415 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg); 3416 } 3417 3418 CXXCastPath BasePath; 3419 BasePath.push_back(BaseSpec); 3420 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy, 3421 CK_UncheckedDerivedToBase, 3422 Moving ? VK_XValue : VK_LValue, 3423 &BasePath).get(); 3424 3425 InitializationKind InitKind 3426 = InitializationKind::CreateDirect(Constructor->getLocation(), 3427 SourceLocation(), SourceLocation()); 3428 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg); 3429 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg); 3430 break; 3431 } 3432 } 3433 3434 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit); 3435 if (BaseInit.isInvalid()) 3436 return true; 3437 3438 CXXBaseInit = 3439 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3440 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(), 3441 SourceLocation()), 3442 BaseSpec->isVirtual(), 3443 SourceLocation(), 3444 BaseInit.getAs<Expr>(), 3445 SourceLocation(), 3446 SourceLocation()); 3447 3448 return false; 3449 } 3450 3451 static bool RefersToRValueRef(Expr *MemRef) { 3452 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl(); 3453 return Referenced->getType()->isRValueReferenceType(); 3454 } 3455 3456 static bool 3457 BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 3458 ImplicitInitializerKind ImplicitInitKind, 3459 FieldDecl *Field, IndirectFieldDecl *Indirect, 3460 CXXCtorInitializer *&CXXMemberInit) { 3461 if (Field->isInvalidDecl()) 3462 return true; 3463 3464 SourceLocation Loc = Constructor->getLocation(); 3465 3466 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) { 3467 bool Moving = ImplicitInitKind == IIK_Move; 3468 ParmVarDecl *Param = Constructor->getParamDecl(0); 3469 QualType ParamType = Param->getType().getNonReferenceType(); 3470 3471 // Suppress copying zero-width bitfields. 3472 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0) 3473 return false; 3474 3475 Expr *MemberExprBase = 3476 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 3477 SourceLocation(), Param, false, 3478 Loc, ParamType, VK_LValue, nullptr); 3479 3480 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase)); 3481 3482 if (Moving) { 3483 MemberExprBase = CastForMoving(SemaRef, MemberExprBase); 3484 } 3485 3486 // Build a reference to this field within the parameter. 3487 CXXScopeSpec SS; 3488 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc, 3489 Sema::LookupMemberName); 3490 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect) 3491 : cast<ValueDecl>(Field), AS_public); 3492 MemberLookup.resolveKind(); 3493 ExprResult CtorArg 3494 = SemaRef.BuildMemberReferenceExpr(MemberExprBase, 3495 ParamType, Loc, 3496 /*IsArrow=*/false, 3497 SS, 3498 /*TemplateKWLoc=*/SourceLocation(), 3499 /*FirstQualifierInScope=*/nullptr, 3500 MemberLookup, 3501 /*TemplateArgs=*/nullptr, 3502 /*S*/nullptr); 3503 if (CtorArg.isInvalid()) 3504 return true; 3505 3506 // C++11 [class.copy]p15: 3507 // - if a member m has rvalue reference type T&&, it is direct-initialized 3508 // with static_cast<T&&>(x.m); 3509 if (RefersToRValueRef(CtorArg.get())) { 3510 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 3511 } 3512 3513 // When the field we are copying is an array, create index variables for 3514 // each dimension of the array. We use these index variables to subscript 3515 // the source array, and other clients (e.g., CodeGen) will perform the 3516 // necessary iteration with these index variables. 3517 SmallVector<VarDecl *, 4> IndexVariables; 3518 QualType BaseType = Field->getType(); 3519 QualType SizeType = SemaRef.Context.getSizeType(); 3520 bool InitializingArray = false; 3521 while (const ConstantArrayType *Array 3522 = SemaRef.Context.getAsConstantArrayType(BaseType)) { 3523 InitializingArray = true; 3524 // Create the iteration variable for this array index. 3525 IdentifierInfo *IterationVarName = nullptr; 3526 { 3527 SmallString<8> Str; 3528 llvm::raw_svector_ostream OS(Str); 3529 OS << "__i" << IndexVariables.size(); 3530 IterationVarName = &SemaRef.Context.Idents.get(OS.str()); 3531 } 3532 VarDecl *IterationVar 3533 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc, 3534 IterationVarName, SizeType, 3535 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc), 3536 SC_None); 3537 IndexVariables.push_back(IterationVar); 3538 3539 // Create a reference to the iteration variable. 3540 ExprResult IterationVarRef 3541 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc); 3542 assert(!IterationVarRef.isInvalid() && 3543 "Reference to invented variable cannot fail!"); 3544 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.get()); 3545 assert(!IterationVarRef.isInvalid() && 3546 "Conversion of invented variable cannot fail!"); 3547 3548 // Subscript the array with this iteration variable. 3549 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.get(), Loc, 3550 IterationVarRef.get(), 3551 Loc); 3552 if (CtorArg.isInvalid()) 3553 return true; 3554 3555 BaseType = Array->getElementType(); 3556 } 3557 3558 // The array subscript expression is an lvalue, which is wrong for moving. 3559 if (Moving && InitializingArray) 3560 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 3561 3562 // Construct the entity that we will be initializing. For an array, this 3563 // will be first element in the array, which may require several levels 3564 // of array-subscript entities. 3565 SmallVector<InitializedEntity, 4> Entities; 3566 Entities.reserve(1 + IndexVariables.size()); 3567 if (Indirect) 3568 Entities.push_back(InitializedEntity::InitializeMember(Indirect)); 3569 else 3570 Entities.push_back(InitializedEntity::InitializeMember(Field)); 3571 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I) 3572 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context, 3573 0, 3574 Entities.back())); 3575 3576 // Direct-initialize to use the copy constructor. 3577 InitializationKind InitKind = 3578 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation()); 3579 3580 Expr *CtorArgE = CtorArg.getAs<Expr>(); 3581 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind, 3582 CtorArgE); 3583 3584 ExprResult MemberInit 3585 = InitSeq.Perform(SemaRef, Entities.back(), InitKind, 3586 MultiExprArg(&CtorArgE, 1)); 3587 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3588 if (MemberInit.isInvalid()) 3589 return true; 3590 3591 if (Indirect) { 3592 assert(IndexVariables.size() == 0 && 3593 "Indirect field improperly initialized"); 3594 CXXMemberInit 3595 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect, 3596 Loc, Loc, 3597 MemberInit.getAs<Expr>(), 3598 Loc); 3599 } else 3600 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, 3601 Loc, MemberInit.getAs<Expr>(), 3602 Loc, 3603 IndexVariables.data(), 3604 IndexVariables.size()); 3605 return false; 3606 } 3607 3608 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) && 3609 "Unhandled implicit init kind!"); 3610 3611 QualType FieldBaseElementType = 3612 SemaRef.Context.getBaseElementType(Field->getType()); 3613 3614 if (FieldBaseElementType->isRecordType()) { 3615 InitializedEntity InitEntity 3616 = Indirect? InitializedEntity::InitializeMember(Indirect) 3617 : InitializedEntity::InitializeMember(Field); 3618 InitializationKind InitKind = 3619 InitializationKind::CreateDefault(Loc); 3620 3621 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3622 ExprResult MemberInit = 3623 InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3624 3625 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3626 if (MemberInit.isInvalid()) 3627 return true; 3628 3629 if (Indirect) 3630 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3631 Indirect, Loc, 3632 Loc, 3633 MemberInit.get(), 3634 Loc); 3635 else 3636 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3637 Field, Loc, Loc, 3638 MemberInit.get(), 3639 Loc); 3640 return false; 3641 } 3642 3643 if (!Field->getParent()->isUnion()) { 3644 if (FieldBaseElementType->isReferenceType()) { 3645 SemaRef.Diag(Constructor->getLocation(), 3646 diag::err_uninitialized_member_in_ctor) 3647 << (int)Constructor->isImplicit() 3648 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3649 << 0 << Field->getDeclName(); 3650 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3651 return true; 3652 } 3653 3654 if (FieldBaseElementType.isConstQualified()) { 3655 SemaRef.Diag(Constructor->getLocation(), 3656 diag::err_uninitialized_member_in_ctor) 3657 << (int)Constructor->isImplicit() 3658 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3659 << 1 << Field->getDeclName(); 3660 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3661 return true; 3662 } 3663 } 3664 3665 if (SemaRef.getLangOpts().ObjCAutoRefCount && 3666 FieldBaseElementType->isObjCRetainableType() && 3667 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None && 3668 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) { 3669 // ARC: 3670 // Default-initialize Objective-C pointers to NULL. 3671 CXXMemberInit 3672 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field, 3673 Loc, Loc, 3674 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()), 3675 Loc); 3676 return false; 3677 } 3678 3679 // Nothing to initialize. 3680 CXXMemberInit = nullptr; 3681 return false; 3682 } 3683 3684 namespace { 3685 struct BaseAndFieldInfo { 3686 Sema &S; 3687 CXXConstructorDecl *Ctor; 3688 bool AnyErrorsInInits; 3689 ImplicitInitializerKind IIK; 3690 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields; 3691 SmallVector<CXXCtorInitializer*, 8> AllToInit; 3692 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember; 3693 3694 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits) 3695 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) { 3696 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted(); 3697 if (Generated && Ctor->isCopyConstructor()) 3698 IIK = IIK_Copy; 3699 else if (Generated && Ctor->isMoveConstructor()) 3700 IIK = IIK_Move; 3701 else if (Ctor->getInheritedConstructor()) 3702 IIK = IIK_Inherit; 3703 else 3704 IIK = IIK_Default; 3705 } 3706 3707 bool isImplicitCopyOrMove() const { 3708 switch (IIK) { 3709 case IIK_Copy: 3710 case IIK_Move: 3711 return true; 3712 3713 case IIK_Default: 3714 case IIK_Inherit: 3715 return false; 3716 } 3717 3718 llvm_unreachable("Invalid ImplicitInitializerKind!"); 3719 } 3720 3721 bool addFieldInitializer(CXXCtorInitializer *Init) { 3722 AllToInit.push_back(Init); 3723 3724 // Check whether this initializer makes the field "used". 3725 if (Init->getInit()->HasSideEffects(S.Context)) 3726 S.UnusedPrivateFields.remove(Init->getAnyMember()); 3727 3728 return false; 3729 } 3730 3731 bool isInactiveUnionMember(FieldDecl *Field) { 3732 RecordDecl *Record = Field->getParent(); 3733 if (!Record->isUnion()) 3734 return false; 3735 3736 if (FieldDecl *Active = 3737 ActiveUnionMember.lookup(Record->getCanonicalDecl())) 3738 return Active != Field->getCanonicalDecl(); 3739 3740 // In an implicit copy or move constructor, ignore any in-class initializer. 3741 if (isImplicitCopyOrMove()) 3742 return true; 3743 3744 // If there's no explicit initialization, the field is active only if it 3745 // has an in-class initializer... 3746 if (Field->hasInClassInitializer()) 3747 return false; 3748 // ... or it's an anonymous struct or union whose class has an in-class 3749 // initializer. 3750 if (!Field->isAnonymousStructOrUnion()) 3751 return true; 3752 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl(); 3753 return !FieldRD->hasInClassInitializer(); 3754 } 3755 3756 /// \brief Determine whether the given field is, or is within, a union member 3757 /// that is inactive (because there was an initializer given for a different 3758 /// member of the union, or because the union was not initialized at all). 3759 bool isWithinInactiveUnionMember(FieldDecl *Field, 3760 IndirectFieldDecl *Indirect) { 3761 if (!Indirect) 3762 return isInactiveUnionMember(Field); 3763 3764 for (auto *C : Indirect->chain()) { 3765 FieldDecl *Field = dyn_cast<FieldDecl>(C); 3766 if (Field && isInactiveUnionMember(Field)) 3767 return true; 3768 } 3769 return false; 3770 } 3771 }; 3772 } 3773 3774 /// \brief Determine whether the given type is an incomplete or zero-lenfgth 3775 /// array type. 3776 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) { 3777 if (T->isIncompleteArrayType()) 3778 return true; 3779 3780 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) { 3781 if (!ArrayT->getSize()) 3782 return true; 3783 3784 T = ArrayT->getElementType(); 3785 } 3786 3787 return false; 3788 } 3789 3790 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info, 3791 FieldDecl *Field, 3792 IndirectFieldDecl *Indirect = nullptr) { 3793 if (Field->isInvalidDecl()) 3794 return false; 3795 3796 // Overwhelmingly common case: we have a direct initializer for this field. 3797 if (CXXCtorInitializer *Init = 3798 Info.AllBaseFields.lookup(Field->getCanonicalDecl())) 3799 return Info.addFieldInitializer(Init); 3800 3801 // C++11 [class.base.init]p8: 3802 // if the entity is a non-static data member that has a 3803 // brace-or-equal-initializer and either 3804 // -- the constructor's class is a union and no other variant member of that 3805 // union is designated by a mem-initializer-id or 3806 // -- the constructor's class is not a union, and, if the entity is a member 3807 // of an anonymous union, no other member of that union is designated by 3808 // a mem-initializer-id, 3809 // the entity is initialized as specified in [dcl.init]. 3810 // 3811 // We also apply the same rules to handle anonymous structs within anonymous 3812 // unions. 3813 if (Info.isWithinInactiveUnionMember(Field, Indirect)) 3814 return false; 3815 3816 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) { 3817 ExprResult DIE = 3818 SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field); 3819 if (DIE.isInvalid()) 3820 return true; 3821 CXXCtorInitializer *Init; 3822 if (Indirect) 3823 Init = new (SemaRef.Context) 3824 CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(), 3825 SourceLocation(), DIE.get(), SourceLocation()); 3826 else 3827 Init = new (SemaRef.Context) 3828 CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(), 3829 SourceLocation(), DIE.get(), SourceLocation()); 3830 return Info.addFieldInitializer(Init); 3831 } 3832 3833 // Don't initialize incomplete or zero-length arrays. 3834 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType())) 3835 return false; 3836 3837 // Don't try to build an implicit initializer if there were semantic 3838 // errors in any of the initializers (and therefore we might be 3839 // missing some that the user actually wrote). 3840 if (Info.AnyErrorsInInits) 3841 return false; 3842 3843 CXXCtorInitializer *Init = nullptr; 3844 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, 3845 Indirect, Init)) 3846 return true; 3847 3848 if (!Init) 3849 return false; 3850 3851 return Info.addFieldInitializer(Init); 3852 } 3853 3854 bool 3855 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor, 3856 CXXCtorInitializer *Initializer) { 3857 assert(Initializer->isDelegatingInitializer()); 3858 Constructor->setNumCtorInitializers(1); 3859 CXXCtorInitializer **initializer = 3860 new (Context) CXXCtorInitializer*[1]; 3861 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*)); 3862 Constructor->setCtorInitializers(initializer); 3863 3864 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) { 3865 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); 3866 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); 3867 } 3868 3869 DelegatingCtorDecls.push_back(Constructor); 3870 3871 DiagnoseUninitializedFields(*this, Constructor); 3872 3873 return false; 3874 } 3875 3876 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors, 3877 ArrayRef<CXXCtorInitializer *> Initializers) { 3878 if (Constructor->isDependentContext()) { 3879 // Just store the initializers as written, they will be checked during 3880 // instantiation. 3881 if (!Initializers.empty()) { 3882 Constructor->setNumCtorInitializers(Initializers.size()); 3883 CXXCtorInitializer **baseOrMemberInitializers = 3884 new (Context) CXXCtorInitializer*[Initializers.size()]; 3885 memcpy(baseOrMemberInitializers, Initializers.data(), 3886 Initializers.size() * sizeof(CXXCtorInitializer*)); 3887 Constructor->setCtorInitializers(baseOrMemberInitializers); 3888 } 3889 3890 // Let template instantiation know whether we had errors. 3891 if (AnyErrors) 3892 Constructor->setInvalidDecl(); 3893 3894 return false; 3895 } 3896 3897 BaseAndFieldInfo Info(*this, Constructor, AnyErrors); 3898 3899 // We need to build the initializer AST according to order of construction 3900 // and not what user specified in the Initializers list. 3901 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition(); 3902 if (!ClassDecl) 3903 return true; 3904 3905 bool HadError = false; 3906 3907 for (unsigned i = 0; i < Initializers.size(); i++) { 3908 CXXCtorInitializer *Member = Initializers[i]; 3909 3910 if (Member->isBaseInitializer()) 3911 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member; 3912 else { 3913 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member; 3914 3915 if (IndirectFieldDecl *F = Member->getIndirectMember()) { 3916 for (auto *C : F->chain()) { 3917 FieldDecl *FD = dyn_cast<FieldDecl>(C); 3918 if (FD && FD->getParent()->isUnion()) 3919 Info.ActiveUnionMember.insert(std::make_pair( 3920 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3921 } 3922 } else if (FieldDecl *FD = Member->getMember()) { 3923 if (FD->getParent()->isUnion()) 3924 Info.ActiveUnionMember.insert(std::make_pair( 3925 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3926 } 3927 } 3928 } 3929 3930 // Keep track of the direct virtual bases. 3931 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases; 3932 for (auto &I : ClassDecl->bases()) { 3933 if (I.isVirtual()) 3934 DirectVBases.insert(&I); 3935 } 3936 3937 // Push virtual bases before others. 3938 for (auto &VBase : ClassDecl->vbases()) { 3939 if (CXXCtorInitializer *Value 3940 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) { 3941 // [class.base.init]p7, per DR257: 3942 // A mem-initializer where the mem-initializer-id names a virtual base 3943 // class is ignored during execution of a constructor of any class that 3944 // is not the most derived class. 3945 if (ClassDecl->isAbstract()) { 3946 // FIXME: Provide a fixit to remove the base specifier. This requires 3947 // tracking the location of the associated comma for a base specifier. 3948 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) 3949 << VBase.getType() << ClassDecl; 3950 DiagnoseAbstractType(ClassDecl); 3951 } 3952 3953 Info.AllToInit.push_back(Value); 3954 } else if (!AnyErrors && !ClassDecl->isAbstract()) { 3955 // [class.base.init]p8, per DR257: 3956 // If a given [...] base class is not named by a mem-initializer-id 3957 // [...] and the entity is not a virtual base class of an abstract 3958 // class, then [...] the entity is default-initialized. 3959 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase); 3960 CXXCtorInitializer *CXXBaseInit; 3961 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3962 &VBase, IsInheritedVirtualBase, 3963 CXXBaseInit)) { 3964 HadError = true; 3965 continue; 3966 } 3967 3968 Info.AllToInit.push_back(CXXBaseInit); 3969 } 3970 } 3971 3972 // Non-virtual bases. 3973 for (auto &Base : ClassDecl->bases()) { 3974 // Virtuals are in the virtual base list and already constructed. 3975 if (Base.isVirtual()) 3976 continue; 3977 3978 if (CXXCtorInitializer *Value 3979 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) { 3980 Info.AllToInit.push_back(Value); 3981 } else if (!AnyErrors) { 3982 CXXCtorInitializer *CXXBaseInit; 3983 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3984 &Base, /*IsInheritedVirtualBase=*/false, 3985 CXXBaseInit)) { 3986 HadError = true; 3987 continue; 3988 } 3989 3990 Info.AllToInit.push_back(CXXBaseInit); 3991 } 3992 } 3993 3994 // Fields. 3995 for (auto *Mem : ClassDecl->decls()) { 3996 if (auto *F = dyn_cast<FieldDecl>(Mem)) { 3997 // C++ [class.bit]p2: 3998 // A declaration for a bit-field that omits the identifier declares an 3999 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 4000 // initialized. 4001 if (F->isUnnamedBitfield()) 4002 continue; 4003 4004 // If we're not generating the implicit copy/move constructor, then we'll 4005 // handle anonymous struct/union fields based on their individual 4006 // indirect fields. 4007 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove()) 4008 continue; 4009 4010 if (CollectFieldInitializer(*this, Info, F)) 4011 HadError = true; 4012 continue; 4013 } 4014 4015 // Beyond this point, we only consider default initialization. 4016 if (Info.isImplicitCopyOrMove()) 4017 continue; 4018 4019 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) { 4020 if (F->getType()->isIncompleteArrayType()) { 4021 assert(ClassDecl->hasFlexibleArrayMember() && 4022 "Incomplete array type is not valid"); 4023 continue; 4024 } 4025 4026 // Initialize each field of an anonymous struct individually. 4027 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F)) 4028 HadError = true; 4029 4030 continue; 4031 } 4032 } 4033 4034 unsigned NumInitializers = Info.AllToInit.size(); 4035 if (NumInitializers > 0) { 4036 Constructor->setNumCtorInitializers(NumInitializers); 4037 CXXCtorInitializer **baseOrMemberInitializers = 4038 new (Context) CXXCtorInitializer*[NumInitializers]; 4039 memcpy(baseOrMemberInitializers, Info.AllToInit.data(), 4040 NumInitializers * sizeof(CXXCtorInitializer*)); 4041 Constructor->setCtorInitializers(baseOrMemberInitializers); 4042 4043 // Constructors implicitly reference the base and member 4044 // destructors. 4045 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(), 4046 Constructor->getParent()); 4047 } 4048 4049 return HadError; 4050 } 4051 4052 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) { 4053 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) { 4054 const RecordDecl *RD = RT->getDecl(); 4055 if (RD->isAnonymousStructOrUnion()) { 4056 for (auto *Field : RD->fields()) 4057 PopulateKeysForFields(Field, IdealInits); 4058 return; 4059 } 4060 } 4061 IdealInits.push_back(Field->getCanonicalDecl()); 4062 } 4063 4064 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) { 4065 return Context.getCanonicalType(BaseType).getTypePtr(); 4066 } 4067 4068 static const void *GetKeyForMember(ASTContext &Context, 4069 CXXCtorInitializer *Member) { 4070 if (!Member->isAnyMemberInitializer()) 4071 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0)); 4072 4073 return Member->getAnyMember()->getCanonicalDecl(); 4074 } 4075 4076 static void DiagnoseBaseOrMemInitializerOrder( 4077 Sema &SemaRef, const CXXConstructorDecl *Constructor, 4078 ArrayRef<CXXCtorInitializer *> Inits) { 4079 if (Constructor->getDeclContext()->isDependentContext()) 4080 return; 4081 4082 // Don't check initializers order unless the warning is enabled at the 4083 // location of at least one initializer. 4084 bool ShouldCheckOrder = false; 4085 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4086 CXXCtorInitializer *Init = Inits[InitIndex]; 4087 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order, 4088 Init->getSourceLocation())) { 4089 ShouldCheckOrder = true; 4090 break; 4091 } 4092 } 4093 if (!ShouldCheckOrder) 4094 return; 4095 4096 // Build the list of bases and members in the order that they'll 4097 // actually be initialized. The explicit initializers should be in 4098 // this same order but may be missing things. 4099 SmallVector<const void*, 32> IdealInitKeys; 4100 4101 const CXXRecordDecl *ClassDecl = Constructor->getParent(); 4102 4103 // 1. Virtual bases. 4104 for (const auto &VBase : ClassDecl->vbases()) 4105 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType())); 4106 4107 // 2. Non-virtual bases. 4108 for (const auto &Base : ClassDecl->bases()) { 4109 if (Base.isVirtual()) 4110 continue; 4111 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType())); 4112 } 4113 4114 // 3. Direct fields. 4115 for (auto *Field : ClassDecl->fields()) { 4116 if (Field->isUnnamedBitfield()) 4117 continue; 4118 4119 PopulateKeysForFields(Field, IdealInitKeys); 4120 } 4121 4122 unsigned NumIdealInits = IdealInitKeys.size(); 4123 unsigned IdealIndex = 0; 4124 4125 CXXCtorInitializer *PrevInit = nullptr; 4126 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4127 CXXCtorInitializer *Init = Inits[InitIndex]; 4128 const void *InitKey = GetKeyForMember(SemaRef.Context, Init); 4129 4130 // Scan forward to try to find this initializer in the idealized 4131 // initializers list. 4132 for (; IdealIndex != NumIdealInits; ++IdealIndex) 4133 if (InitKey == IdealInitKeys[IdealIndex]) 4134 break; 4135 4136 // If we didn't find this initializer, it must be because we 4137 // scanned past it on a previous iteration. That can only 4138 // happen if we're out of order; emit a warning. 4139 if (IdealIndex == NumIdealInits && PrevInit) { 4140 Sema::SemaDiagnosticBuilder D = 4141 SemaRef.Diag(PrevInit->getSourceLocation(), 4142 diag::warn_initializer_out_of_order); 4143 4144 if (PrevInit->isAnyMemberInitializer()) 4145 D << 0 << PrevInit->getAnyMember()->getDeclName(); 4146 else 4147 D << 1 << PrevInit->getTypeSourceInfo()->getType(); 4148 4149 if (Init->isAnyMemberInitializer()) 4150 D << 0 << Init->getAnyMember()->getDeclName(); 4151 else 4152 D << 1 << Init->getTypeSourceInfo()->getType(); 4153 4154 // Move back to the initializer's location in the ideal list. 4155 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex) 4156 if (InitKey == IdealInitKeys[IdealIndex]) 4157 break; 4158 4159 assert(IdealIndex < NumIdealInits && 4160 "initializer not found in initializer list"); 4161 } 4162 4163 PrevInit = Init; 4164 } 4165 } 4166 4167 namespace { 4168 bool CheckRedundantInit(Sema &S, 4169 CXXCtorInitializer *Init, 4170 CXXCtorInitializer *&PrevInit) { 4171 if (!PrevInit) { 4172 PrevInit = Init; 4173 return false; 4174 } 4175 4176 if (FieldDecl *Field = Init->getAnyMember()) 4177 S.Diag(Init->getSourceLocation(), 4178 diag::err_multiple_mem_initialization) 4179 << Field->getDeclName() 4180 << Init->getSourceRange(); 4181 else { 4182 const Type *BaseClass = Init->getBaseClass(); 4183 assert(BaseClass && "neither field nor base"); 4184 S.Diag(Init->getSourceLocation(), 4185 diag::err_multiple_base_initialization) 4186 << QualType(BaseClass, 0) 4187 << Init->getSourceRange(); 4188 } 4189 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) 4190 << 0 << PrevInit->getSourceRange(); 4191 4192 return true; 4193 } 4194 4195 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry; 4196 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap; 4197 4198 bool CheckRedundantUnionInit(Sema &S, 4199 CXXCtorInitializer *Init, 4200 RedundantUnionMap &Unions) { 4201 FieldDecl *Field = Init->getAnyMember(); 4202 RecordDecl *Parent = Field->getParent(); 4203 NamedDecl *Child = Field; 4204 4205 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) { 4206 if (Parent->isUnion()) { 4207 UnionEntry &En = Unions[Parent]; 4208 if (En.first && En.first != Child) { 4209 S.Diag(Init->getSourceLocation(), 4210 diag::err_multiple_mem_union_initialization) 4211 << Field->getDeclName() 4212 << Init->getSourceRange(); 4213 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer) 4214 << 0 << En.second->getSourceRange(); 4215 return true; 4216 } 4217 if (!En.first) { 4218 En.first = Child; 4219 En.second = Init; 4220 } 4221 if (!Parent->isAnonymousStructOrUnion()) 4222 return false; 4223 } 4224 4225 Child = Parent; 4226 Parent = cast<RecordDecl>(Parent->getDeclContext()); 4227 } 4228 4229 return false; 4230 } 4231 } 4232 4233 /// ActOnMemInitializers - Handle the member initializers for a constructor. 4234 void Sema::ActOnMemInitializers(Decl *ConstructorDecl, 4235 SourceLocation ColonLoc, 4236 ArrayRef<CXXCtorInitializer*> MemInits, 4237 bool AnyErrors) { 4238 if (!ConstructorDecl) 4239 return; 4240 4241 AdjustDeclIfTemplate(ConstructorDecl); 4242 4243 CXXConstructorDecl *Constructor 4244 = dyn_cast<CXXConstructorDecl>(ConstructorDecl); 4245 4246 if (!Constructor) { 4247 Diag(ColonLoc, diag::err_only_constructors_take_base_inits); 4248 return; 4249 } 4250 4251 // Mapping for the duplicate initializers check. 4252 // For member initializers, this is keyed with a FieldDecl*. 4253 // For base initializers, this is keyed with a Type*. 4254 llvm::DenseMap<const void *, CXXCtorInitializer *> Members; 4255 4256 // Mapping for the inconsistent anonymous-union initializers check. 4257 RedundantUnionMap MemberUnions; 4258 4259 bool HadError = false; 4260 for (unsigned i = 0; i < MemInits.size(); i++) { 4261 CXXCtorInitializer *Init = MemInits[i]; 4262 4263 // Set the source order index. 4264 Init->setSourceOrder(i); 4265 4266 if (Init->isAnyMemberInitializer()) { 4267 const void *Key = GetKeyForMember(Context, Init); 4268 if (CheckRedundantInit(*this, Init, Members[Key]) || 4269 CheckRedundantUnionInit(*this, Init, MemberUnions)) 4270 HadError = true; 4271 } else if (Init->isBaseInitializer()) { 4272 const void *Key = GetKeyForMember(Context, Init); 4273 if (CheckRedundantInit(*this, Init, Members[Key])) 4274 HadError = true; 4275 } else { 4276 assert(Init->isDelegatingInitializer()); 4277 // This must be the only initializer 4278 if (MemInits.size() != 1) { 4279 Diag(Init->getSourceLocation(), 4280 diag::err_delegating_initializer_alone) 4281 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange(); 4282 // We will treat this as being the only initializer. 4283 } 4284 SetDelegatingInitializer(Constructor, MemInits[i]); 4285 // Return immediately as the initializer is set. 4286 return; 4287 } 4288 } 4289 4290 if (HadError) 4291 return; 4292 4293 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits); 4294 4295 SetCtorInitializers(Constructor, AnyErrors, MemInits); 4296 4297 DiagnoseUninitializedFields(*this, Constructor); 4298 } 4299 4300 void 4301 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location, 4302 CXXRecordDecl *ClassDecl) { 4303 // Ignore dependent contexts. Also ignore unions, since their members never 4304 // have destructors implicitly called. 4305 if (ClassDecl->isDependentContext() || ClassDecl->isUnion()) 4306 return; 4307 4308 // FIXME: all the access-control diagnostics are positioned on the 4309 // field/base declaration. That's probably good; that said, the 4310 // user might reasonably want to know why the destructor is being 4311 // emitted, and we currently don't say. 4312 4313 // Non-static data members. 4314 for (auto *Field : ClassDecl->fields()) { 4315 if (Field->isInvalidDecl()) 4316 continue; 4317 4318 // Don't destroy incomplete or zero-length arrays. 4319 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType())) 4320 continue; 4321 4322 QualType FieldType = Context.getBaseElementType(Field->getType()); 4323 4324 const RecordType* RT = FieldType->getAs<RecordType>(); 4325 if (!RT) 4326 continue; 4327 4328 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4329 if (FieldClassDecl->isInvalidDecl()) 4330 continue; 4331 if (FieldClassDecl->hasIrrelevantDestructor()) 4332 continue; 4333 // The destructor for an implicit anonymous union member is never invoked. 4334 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion()) 4335 continue; 4336 4337 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl); 4338 assert(Dtor && "No dtor found for FieldClassDecl!"); 4339 CheckDestructorAccess(Field->getLocation(), Dtor, 4340 PDiag(diag::err_access_dtor_field) 4341 << Field->getDeclName() 4342 << FieldType); 4343 4344 MarkFunctionReferenced(Location, Dtor); 4345 DiagnoseUseOfDecl(Dtor, Location); 4346 } 4347 4348 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases; 4349 4350 // Bases. 4351 for (const auto &Base : ClassDecl->bases()) { 4352 // Bases are always records in a well-formed non-dependent class. 4353 const RecordType *RT = Base.getType()->getAs<RecordType>(); 4354 4355 // Remember direct virtual bases. 4356 if (Base.isVirtual()) 4357 DirectVirtualBases.insert(RT); 4358 4359 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4360 // If our base class is invalid, we probably can't get its dtor anyway. 4361 if (BaseClassDecl->isInvalidDecl()) 4362 continue; 4363 if (BaseClassDecl->hasIrrelevantDestructor()) 4364 continue; 4365 4366 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4367 assert(Dtor && "No dtor found for BaseClassDecl!"); 4368 4369 // FIXME: caret should be on the start of the class name 4370 CheckDestructorAccess(Base.getLocStart(), Dtor, 4371 PDiag(diag::err_access_dtor_base) 4372 << Base.getType() 4373 << Base.getSourceRange(), 4374 Context.getTypeDeclType(ClassDecl)); 4375 4376 MarkFunctionReferenced(Location, Dtor); 4377 DiagnoseUseOfDecl(Dtor, Location); 4378 } 4379 4380 // Virtual bases. 4381 for (const auto &VBase : ClassDecl->vbases()) { 4382 // Bases are always records in a well-formed non-dependent class. 4383 const RecordType *RT = VBase.getType()->castAs<RecordType>(); 4384 4385 // Ignore direct virtual bases. 4386 if (DirectVirtualBases.count(RT)) 4387 continue; 4388 4389 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4390 // If our base class is invalid, we probably can't get its dtor anyway. 4391 if (BaseClassDecl->isInvalidDecl()) 4392 continue; 4393 if (BaseClassDecl->hasIrrelevantDestructor()) 4394 continue; 4395 4396 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4397 assert(Dtor && "No dtor found for BaseClassDecl!"); 4398 if (CheckDestructorAccess( 4399 ClassDecl->getLocation(), Dtor, 4400 PDiag(diag::err_access_dtor_vbase) 4401 << Context.getTypeDeclType(ClassDecl) << VBase.getType(), 4402 Context.getTypeDeclType(ClassDecl)) == 4403 AR_accessible) { 4404 CheckDerivedToBaseConversion( 4405 Context.getTypeDeclType(ClassDecl), VBase.getType(), 4406 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(), 4407 SourceRange(), DeclarationName(), nullptr); 4408 } 4409 4410 MarkFunctionReferenced(Location, Dtor); 4411 DiagnoseUseOfDecl(Dtor, Location); 4412 } 4413 } 4414 4415 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) { 4416 if (!CDtorDecl) 4417 return; 4418 4419 if (CXXConstructorDecl *Constructor 4420 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) { 4421 SetCtorInitializers(Constructor, /*AnyErrors=*/false); 4422 DiagnoseUninitializedFields(*this, Constructor); 4423 } 4424 } 4425 4426 bool Sema::isAbstractType(SourceLocation Loc, QualType T) { 4427 if (!getLangOpts().CPlusPlus) 4428 return false; 4429 4430 const auto *RD = Context.getBaseElementType(T)->getAsCXXRecordDecl(); 4431 if (!RD) 4432 return false; 4433 4434 // FIXME: Per [temp.inst]p1, we are supposed to trigger instantiation of a 4435 // class template specialization here, but doing so breaks a lot of code. 4436 4437 // We can't answer whether something is abstract until it has a 4438 // definition. If it's currently being defined, we'll walk back 4439 // over all the declarations when we have a full definition. 4440 const CXXRecordDecl *Def = RD->getDefinition(); 4441 if (!Def || Def->isBeingDefined()) 4442 return false; 4443 4444 return RD->isAbstract(); 4445 } 4446 4447 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 4448 TypeDiagnoser &Diagnoser) { 4449 if (!isAbstractType(Loc, T)) 4450 return false; 4451 4452 T = Context.getBaseElementType(T); 4453 Diagnoser.diagnose(*this, Loc, T); 4454 DiagnoseAbstractType(T->getAsCXXRecordDecl()); 4455 return true; 4456 } 4457 4458 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) { 4459 // Check if we've already emitted the list of pure virtual functions 4460 // for this class. 4461 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD)) 4462 return; 4463 4464 // If the diagnostic is suppressed, don't emit the notes. We're only 4465 // going to emit them once, so try to attach them to a diagnostic we're 4466 // actually going to show. 4467 if (Diags.isLastDiagnosticIgnored()) 4468 return; 4469 4470 CXXFinalOverriderMap FinalOverriders; 4471 RD->getFinalOverriders(FinalOverriders); 4472 4473 // Keep a set of seen pure methods so we won't diagnose the same method 4474 // more than once. 4475 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods; 4476 4477 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 4478 MEnd = FinalOverriders.end(); 4479 M != MEnd; 4480 ++M) { 4481 for (OverridingMethods::iterator SO = M->second.begin(), 4482 SOEnd = M->second.end(); 4483 SO != SOEnd; ++SO) { 4484 // C++ [class.abstract]p4: 4485 // A class is abstract if it contains or inherits at least one 4486 // pure virtual function for which the final overrider is pure 4487 // virtual. 4488 4489 // 4490 if (SO->second.size() != 1) 4491 continue; 4492 4493 if (!SO->second.front().Method->isPure()) 4494 continue; 4495 4496 if (!SeenPureMethods.insert(SO->second.front().Method).second) 4497 continue; 4498 4499 Diag(SO->second.front().Method->getLocation(), 4500 diag::note_pure_virtual_function) 4501 << SO->second.front().Method->getDeclName() << RD->getDeclName(); 4502 } 4503 } 4504 4505 if (!PureVirtualClassDiagSet) 4506 PureVirtualClassDiagSet.reset(new RecordDeclSetTy); 4507 PureVirtualClassDiagSet->insert(RD); 4508 } 4509 4510 namespace { 4511 struct AbstractUsageInfo { 4512 Sema &S; 4513 CXXRecordDecl *Record; 4514 CanQualType AbstractType; 4515 bool Invalid; 4516 4517 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record) 4518 : S(S), Record(Record), 4519 AbstractType(S.Context.getCanonicalType( 4520 S.Context.getTypeDeclType(Record))), 4521 Invalid(false) {} 4522 4523 void DiagnoseAbstractType() { 4524 if (Invalid) return; 4525 S.DiagnoseAbstractType(Record); 4526 Invalid = true; 4527 } 4528 4529 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 4530 }; 4531 4532 struct CheckAbstractUsage { 4533 AbstractUsageInfo &Info; 4534 const NamedDecl *Ctx; 4535 4536 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx) 4537 : Info(Info), Ctx(Ctx) {} 4538 4539 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4540 switch (TL.getTypeLocClass()) { 4541 #define ABSTRACT_TYPELOC(CLASS, PARENT) 4542 #define TYPELOC(CLASS, PARENT) \ 4543 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break; 4544 #include "clang/AST/TypeLocNodes.def" 4545 } 4546 } 4547 4548 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4549 Visit(TL.getReturnLoc(), Sema::AbstractReturnType); 4550 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) { 4551 if (!TL.getParam(I)) 4552 continue; 4553 4554 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo(); 4555 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); 4556 } 4557 } 4558 4559 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4560 Visit(TL.getElementLoc(), Sema::AbstractArrayType); 4561 } 4562 4563 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4564 // Visit the type parameters from a permissive context. 4565 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { 4566 TemplateArgumentLoc TAL = TL.getArgLoc(I); 4567 if (TAL.getArgument().getKind() == TemplateArgument::Type) 4568 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) 4569 Visit(TSI->getTypeLoc(), Sema::AbstractNone); 4570 // TODO: other template argument types? 4571 } 4572 } 4573 4574 // Visit pointee types from a permissive context. 4575 #define CheckPolymorphic(Type) \ 4576 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \ 4577 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \ 4578 } 4579 CheckPolymorphic(PointerTypeLoc) 4580 CheckPolymorphic(ReferenceTypeLoc) 4581 CheckPolymorphic(MemberPointerTypeLoc) 4582 CheckPolymorphic(BlockPointerTypeLoc) 4583 CheckPolymorphic(AtomicTypeLoc) 4584 4585 /// Handle all the types we haven't given a more specific 4586 /// implementation for above. 4587 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4588 // Every other kind of type that we haven't called out already 4589 // that has an inner type is either (1) sugar or (2) contains that 4590 // inner type in some way as a subobject. 4591 if (TypeLoc Next = TL.getNextTypeLoc()) 4592 return Visit(Next, Sel); 4593 4594 // If there's no inner type and we're in a permissive context, 4595 // don't diagnose. 4596 if (Sel == Sema::AbstractNone) return; 4597 4598 // Check whether the type matches the abstract type. 4599 QualType T = TL.getType(); 4600 if (T->isArrayType()) { 4601 Sel = Sema::AbstractArrayType; 4602 T = Info.S.Context.getBaseElementType(T); 4603 } 4604 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType(); 4605 if (CT != Info.AbstractType) return; 4606 4607 // It matched; do some magic. 4608 if (Sel == Sema::AbstractArrayType) { 4609 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type) 4610 << T << TL.getSourceRange(); 4611 } else { 4612 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl) 4613 << Sel << T << TL.getSourceRange(); 4614 } 4615 Info.DiagnoseAbstractType(); 4616 } 4617 }; 4618 4619 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, 4620 Sema::AbstractDiagSelID Sel) { 4621 CheckAbstractUsage(*this, D).Visit(TL, Sel); 4622 } 4623 4624 } 4625 4626 /// Check for invalid uses of an abstract type in a method declaration. 4627 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4628 CXXMethodDecl *MD) { 4629 // No need to do the check on definitions, which require that 4630 // the return/param types be complete. 4631 if (MD->doesThisDeclarationHaveABody()) 4632 return; 4633 4634 // For safety's sake, just ignore it if we don't have type source 4635 // information. This should never happen for non-implicit methods, 4636 // but... 4637 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) 4638 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); 4639 } 4640 4641 /// Check for invalid uses of an abstract type within a class definition. 4642 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4643 CXXRecordDecl *RD) { 4644 for (auto *D : RD->decls()) { 4645 if (D->isImplicit()) continue; 4646 4647 // Methods and method templates. 4648 if (isa<CXXMethodDecl>(D)) { 4649 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D)); 4650 } else if (isa<FunctionTemplateDecl>(D)) { 4651 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl(); 4652 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD)); 4653 4654 // Fields and static variables. 4655 } else if (isa<FieldDecl>(D)) { 4656 FieldDecl *FD = cast<FieldDecl>(D); 4657 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) 4658 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); 4659 } else if (isa<VarDecl>(D)) { 4660 VarDecl *VD = cast<VarDecl>(D); 4661 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) 4662 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); 4663 4664 // Nested classes and class templates. 4665 } else if (isa<CXXRecordDecl>(D)) { 4666 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D)); 4667 } else if (isa<ClassTemplateDecl>(D)) { 4668 CheckAbstractClassUsage(Info, 4669 cast<ClassTemplateDecl>(D)->getTemplatedDecl()); 4670 } 4671 } 4672 } 4673 4674 static void ReferenceDllExportedMethods(Sema &S, CXXRecordDecl *Class) { 4675 Attr *ClassAttr = getDLLAttr(Class); 4676 if (!ClassAttr) 4677 return; 4678 4679 assert(ClassAttr->getKind() == attr::DLLExport); 4680 4681 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 4682 4683 if (TSK == TSK_ExplicitInstantiationDeclaration) 4684 // Don't go any further if this is just an explicit instantiation 4685 // declaration. 4686 return; 4687 4688 for (Decl *Member : Class->decls()) { 4689 auto *MD = dyn_cast<CXXMethodDecl>(Member); 4690 if (!MD) 4691 continue; 4692 4693 if (Member->getAttr<DLLExportAttr>()) { 4694 if (MD->isUserProvided()) { 4695 // Instantiate non-default class member functions ... 4696 4697 // .. except for certain kinds of template specializations. 4698 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited()) 4699 continue; 4700 4701 S.MarkFunctionReferenced(Class->getLocation(), MD); 4702 4703 // The function will be passed to the consumer when its definition is 4704 // encountered. 4705 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() || 4706 MD->isCopyAssignmentOperator() || 4707 MD->isMoveAssignmentOperator()) { 4708 // Synthesize and instantiate non-trivial implicit methods, explicitly 4709 // defaulted methods, and the copy and move assignment operators. The 4710 // latter are exported even if they are trivial, because the address of 4711 // an operator can be taken and should compare equal accross libraries. 4712 DiagnosticErrorTrap Trap(S.Diags); 4713 S.MarkFunctionReferenced(Class->getLocation(), MD); 4714 if (Trap.hasErrorOccurred()) { 4715 S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class) 4716 << Class->getName() << !S.getLangOpts().CPlusPlus11; 4717 break; 4718 } 4719 4720 // There is no later point when we will see the definition of this 4721 // function, so pass it to the consumer now. 4722 S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD)); 4723 } 4724 } 4725 } 4726 } 4727 4728 /// \brief Check class-level dllimport/dllexport attribute. 4729 void Sema::checkClassLevelDLLAttribute(CXXRecordDecl *Class) { 4730 Attr *ClassAttr = getDLLAttr(Class); 4731 4732 // MSVC inherits DLL attributes to partial class template specializations. 4733 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) { 4734 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) { 4735 if (Attr *TemplateAttr = 4736 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) { 4737 auto *A = cast<InheritableAttr>(TemplateAttr->clone(getASTContext())); 4738 A->setInherited(true); 4739 ClassAttr = A; 4740 } 4741 } 4742 } 4743 4744 if (!ClassAttr) 4745 return; 4746 4747 if (!Class->isExternallyVisible()) { 4748 Diag(Class->getLocation(), diag::err_attribute_dll_not_extern) 4749 << Class << ClassAttr; 4750 return; 4751 } 4752 4753 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 4754 !ClassAttr->isInherited()) { 4755 // Diagnose dll attributes on members of class with dll attribute. 4756 for (Decl *Member : Class->decls()) { 4757 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member)) 4758 continue; 4759 InheritableAttr *MemberAttr = getDLLAttr(Member); 4760 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl()) 4761 continue; 4762 4763 Diag(MemberAttr->getLocation(), 4764 diag::err_attribute_dll_member_of_dll_class) 4765 << MemberAttr << ClassAttr; 4766 Diag(ClassAttr->getLocation(), diag::note_previous_attribute); 4767 Member->setInvalidDecl(); 4768 } 4769 } 4770 4771 if (Class->getDescribedClassTemplate()) 4772 // Don't inherit dll attribute until the template is instantiated. 4773 return; 4774 4775 // The class is either imported or exported. 4776 const bool ClassExported = ClassAttr->getKind() == attr::DLLExport; 4777 4778 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 4779 4780 // Ignore explicit dllexport on explicit class template instantiation declarations. 4781 if (ClassExported && !ClassAttr->isInherited() && 4782 TSK == TSK_ExplicitInstantiationDeclaration) { 4783 Class->dropAttr<DLLExportAttr>(); 4784 return; 4785 } 4786 4787 // Force declaration of implicit members so they can inherit the attribute. 4788 ForceDeclarationOfImplicitMembers(Class); 4789 4790 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't 4791 // seem to be true in practice? 4792 4793 for (Decl *Member : Class->decls()) { 4794 VarDecl *VD = dyn_cast<VarDecl>(Member); 4795 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member); 4796 4797 // Only methods and static fields inherit the attributes. 4798 if (!VD && !MD) 4799 continue; 4800 4801 if (MD) { 4802 // Don't process deleted methods. 4803 if (MD->isDeleted()) 4804 continue; 4805 4806 if (MD->isInlined()) { 4807 // MinGW does not import or export inline methods. 4808 if (!Context.getTargetInfo().getCXXABI().isMicrosoft()) 4809 continue; 4810 4811 // MSVC versions before 2015 don't export the move assignment operators 4812 // and move constructor, so don't attempt to import/export them if 4813 // we have a definition. 4814 auto *CXXC = dyn_cast<CXXConstructorDecl>(MD); 4815 if ((MD->isMoveAssignmentOperator() || 4816 (CXXC && CXXC->isMoveConstructor())) && 4817 !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015)) 4818 continue; 4819 } 4820 } 4821 4822 if (!cast<NamedDecl>(Member)->isExternallyVisible()) 4823 continue; 4824 4825 if (!getDLLAttr(Member)) { 4826 auto *NewAttr = 4827 cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 4828 NewAttr->setInherited(true); 4829 Member->addAttr(NewAttr); 4830 } 4831 } 4832 4833 if (ClassExported) 4834 DelayedDllExportClasses.push_back(Class); 4835 } 4836 4837 /// \brief Perform propagation of DLL attributes from a derived class to a 4838 /// templated base class for MS compatibility. 4839 void Sema::propagateDLLAttrToBaseClassTemplate( 4840 CXXRecordDecl *Class, Attr *ClassAttr, 4841 ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) { 4842 if (getDLLAttr( 4843 BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) { 4844 // If the base class template has a DLL attribute, don't try to change it. 4845 return; 4846 } 4847 4848 auto TSK = BaseTemplateSpec->getSpecializationKind(); 4849 if (!getDLLAttr(BaseTemplateSpec) && 4850 (TSK == TSK_Undeclared || TSK == TSK_ExplicitInstantiationDeclaration || 4851 TSK == TSK_ImplicitInstantiation)) { 4852 // The template hasn't been instantiated yet (or it has, but only as an 4853 // explicit instantiation declaration or implicit instantiation, which means 4854 // we haven't codegenned any members yet), so propagate the attribute. 4855 auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 4856 NewAttr->setInherited(true); 4857 BaseTemplateSpec->addAttr(NewAttr); 4858 4859 // If the template is already instantiated, checkDLLAttributeRedeclaration() 4860 // needs to be run again to work see the new attribute. Otherwise this will 4861 // get run whenever the template is instantiated. 4862 if (TSK != TSK_Undeclared) 4863 checkClassLevelDLLAttribute(BaseTemplateSpec); 4864 4865 return; 4866 } 4867 4868 if (getDLLAttr(BaseTemplateSpec)) { 4869 // The template has already been specialized or instantiated with an 4870 // attribute, explicitly or through propagation. We should not try to change 4871 // it. 4872 return; 4873 } 4874 4875 // The template was previously instantiated or explicitly specialized without 4876 // a dll attribute, It's too late for us to add an attribute, so warn that 4877 // this is unsupported. 4878 Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class) 4879 << BaseTemplateSpec->isExplicitSpecialization(); 4880 Diag(ClassAttr->getLocation(), diag::note_attribute); 4881 if (BaseTemplateSpec->isExplicitSpecialization()) { 4882 Diag(BaseTemplateSpec->getLocation(), 4883 diag::note_template_class_explicit_specialization_was_here) 4884 << BaseTemplateSpec; 4885 } else { 4886 Diag(BaseTemplateSpec->getPointOfInstantiation(), 4887 diag::note_template_class_instantiation_was_here) 4888 << BaseTemplateSpec; 4889 } 4890 } 4891 4892 /// \brief Perform semantic checks on a class definition that has been 4893 /// completing, introducing implicitly-declared members, checking for 4894 /// abstract types, etc. 4895 void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) { 4896 if (!Record) 4897 return; 4898 4899 if (Record->isAbstract() && !Record->isInvalidDecl()) { 4900 AbstractUsageInfo Info(*this, Record); 4901 CheckAbstractClassUsage(Info, Record); 4902 } 4903 4904 // If this is not an aggregate type and has no user-declared constructor, 4905 // complain about any non-static data members of reference or const scalar 4906 // type, since they will never get initializers. 4907 if (!Record->isInvalidDecl() && !Record->isDependentType() && 4908 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() && 4909 !Record->isLambda()) { 4910 bool Complained = false; 4911 for (const auto *F : Record->fields()) { 4912 if (F->hasInClassInitializer() || F->isUnnamedBitfield()) 4913 continue; 4914 4915 if (F->getType()->isReferenceType() || 4916 (F->getType().isConstQualified() && F->getType()->isScalarType())) { 4917 if (!Complained) { 4918 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst) 4919 << Record->getTagKind() << Record; 4920 Complained = true; 4921 } 4922 4923 Diag(F->getLocation(), diag::note_refconst_member_not_initialized) 4924 << F->getType()->isReferenceType() 4925 << F->getDeclName(); 4926 } 4927 } 4928 } 4929 4930 if (Record->getIdentifier()) { 4931 // C++ [class.mem]p13: 4932 // If T is the name of a class, then each of the following shall have a 4933 // name different from T: 4934 // - every member of every anonymous union that is a member of class T. 4935 // 4936 // C++ [class.mem]p14: 4937 // In addition, if class T has a user-declared constructor (12.1), every 4938 // non-static data member of class T shall have a name different from T. 4939 DeclContext::lookup_result R = Record->lookup(Record->getDeclName()); 4940 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 4941 ++I) { 4942 NamedDecl *D = *I; 4943 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) || 4944 isa<IndirectFieldDecl>(D)) { 4945 Diag(D->getLocation(), diag::err_member_name_of_class) 4946 << D->getDeclName(); 4947 break; 4948 } 4949 } 4950 } 4951 4952 // Warn if the class has virtual methods but non-virtual public destructor. 4953 if (Record->isPolymorphic() && !Record->isDependentType()) { 4954 CXXDestructorDecl *dtor = Record->getDestructor(); 4955 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) && 4956 !Record->hasAttr<FinalAttr>()) 4957 Diag(dtor ? dtor->getLocation() : Record->getLocation(), 4958 diag::warn_non_virtual_dtor) << Context.getRecordType(Record); 4959 } 4960 4961 if (Record->isAbstract()) { 4962 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) { 4963 Diag(Record->getLocation(), diag::warn_abstract_final_class) 4964 << FA->isSpelledAsSealed(); 4965 DiagnoseAbstractType(Record); 4966 } 4967 } 4968 4969 bool HasMethodWithOverrideControl = false, 4970 HasOverridingMethodWithoutOverrideControl = false; 4971 if (!Record->isDependentType()) { 4972 for (auto *M : Record->methods()) { 4973 // See if a method overloads virtual methods in a base 4974 // class without overriding any. 4975 if (!M->isStatic()) 4976 DiagnoseHiddenVirtualMethods(M); 4977 if (M->hasAttr<OverrideAttr>()) 4978 HasMethodWithOverrideControl = true; 4979 else if (M->size_overridden_methods() > 0) 4980 HasOverridingMethodWithoutOverrideControl = true; 4981 // Check whether the explicitly-defaulted special members are valid. 4982 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted()) 4983 CheckExplicitlyDefaultedSpecialMember(M); 4984 4985 // For an explicitly defaulted or deleted special member, we defer 4986 // determining triviality until the class is complete. That time is now! 4987 if (!M->isImplicit() && !M->isUserProvided()) { 4988 CXXSpecialMember CSM = getSpecialMember(M); 4989 if (CSM != CXXInvalid) { 4990 M->setTrivial(SpecialMemberIsTrivial(M, CSM)); 4991 4992 // Inform the class that we've finished declaring this member. 4993 Record->finishedDefaultedOrDeletedMember(M); 4994 } 4995 } 4996 } 4997 } 4998 4999 if (HasMethodWithOverrideControl && 5000 HasOverridingMethodWithoutOverrideControl) { 5001 // At least one method has the 'override' control declared. 5002 // Diagnose all other overridden methods which do not have 'override' specified on them. 5003 for (auto *M : Record->methods()) 5004 DiagnoseAbsenceOfOverrideControl(M); 5005 } 5006 5007 // ms_struct is a request to use the same ABI rules as MSVC. Check 5008 // whether this class uses any C++ features that are implemented 5009 // completely differently in MSVC, and if so, emit a diagnostic. 5010 // That diagnostic defaults to an error, but we allow projects to 5011 // map it down to a warning (or ignore it). It's a fairly common 5012 // practice among users of the ms_struct pragma to mass-annotate 5013 // headers, sweeping up a bunch of types that the project doesn't 5014 // really rely on MSVC-compatible layout for. We must therefore 5015 // support "ms_struct except for C++ stuff" as a secondary ABI. 5016 if (Record->isMsStruct(Context) && 5017 (Record->isPolymorphic() || Record->getNumBases())) { 5018 Diag(Record->getLocation(), diag::warn_cxx_ms_struct); 5019 } 5020 5021 // Declare inheriting constructors. We do this eagerly here because: 5022 // - The standard requires an eager diagnostic for conflicting inheriting 5023 // constructors from different classes. 5024 // - The lazy declaration of the other implicit constructors is so as to not 5025 // waste space and performance on classes that are not meant to be 5026 // instantiated (e.g. meta-functions). This doesn't apply to classes that 5027 // have inheriting constructors. 5028 DeclareInheritingConstructors(Record); 5029 5030 checkClassLevelDLLAttribute(Record); 5031 } 5032 5033 /// Look up the special member function that would be called by a special 5034 /// member function for a subobject of class type. 5035 /// 5036 /// \param Class The class type of the subobject. 5037 /// \param CSM The kind of special member function. 5038 /// \param FieldQuals If the subobject is a field, its cv-qualifiers. 5039 /// \param ConstRHS True if this is a copy operation with a const object 5040 /// on its RHS, that is, if the argument to the outer special member 5041 /// function is 'const' and this is not a field marked 'mutable'. 5042 static Sema::SpecialMemberOverloadResult *lookupCallFromSpecialMember( 5043 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM, 5044 unsigned FieldQuals, bool ConstRHS) { 5045 unsigned LHSQuals = 0; 5046 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment) 5047 LHSQuals = FieldQuals; 5048 5049 unsigned RHSQuals = FieldQuals; 5050 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor) 5051 RHSQuals = 0; 5052 else if (ConstRHS) 5053 RHSQuals |= Qualifiers::Const; 5054 5055 return S.LookupSpecialMember(Class, CSM, 5056 RHSQuals & Qualifiers::Const, 5057 RHSQuals & Qualifiers::Volatile, 5058 false, 5059 LHSQuals & Qualifiers::Const, 5060 LHSQuals & Qualifiers::Volatile); 5061 } 5062 5063 /// Is the special member function which would be selected to perform the 5064 /// specified operation on the specified class type a constexpr constructor? 5065 static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5066 Sema::CXXSpecialMember CSM, 5067 unsigned Quals, bool ConstRHS) { 5068 Sema::SpecialMemberOverloadResult *SMOR = 5069 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS); 5070 if (!SMOR || !SMOR->getMethod()) 5071 // A constructor we wouldn't select can't be "involved in initializing" 5072 // anything. 5073 return true; 5074 return SMOR->getMethod()->isConstexpr(); 5075 } 5076 5077 /// Determine whether the specified special member function would be constexpr 5078 /// if it were implicitly defined. 5079 static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5080 Sema::CXXSpecialMember CSM, 5081 bool ConstArg) { 5082 if (!S.getLangOpts().CPlusPlus11) 5083 return false; 5084 5085 // C++11 [dcl.constexpr]p4: 5086 // In the definition of a constexpr constructor [...] 5087 bool Ctor = true; 5088 switch (CSM) { 5089 case Sema::CXXDefaultConstructor: 5090 // Since default constructor lookup is essentially trivial (and cannot 5091 // involve, for instance, template instantiation), we compute whether a 5092 // defaulted default constructor is constexpr directly within CXXRecordDecl. 5093 // 5094 // This is important for performance; we need to know whether the default 5095 // constructor is constexpr to determine whether the type is a literal type. 5096 return ClassDecl->defaultedDefaultConstructorIsConstexpr(); 5097 5098 case Sema::CXXCopyConstructor: 5099 case Sema::CXXMoveConstructor: 5100 // For copy or move constructors, we need to perform overload resolution. 5101 break; 5102 5103 case Sema::CXXCopyAssignment: 5104 case Sema::CXXMoveAssignment: 5105 if (!S.getLangOpts().CPlusPlus14) 5106 return false; 5107 // In C++1y, we need to perform overload resolution. 5108 Ctor = false; 5109 break; 5110 5111 case Sema::CXXDestructor: 5112 case Sema::CXXInvalid: 5113 return false; 5114 } 5115 5116 // -- if the class is a non-empty union, or for each non-empty anonymous 5117 // union member of a non-union class, exactly one non-static data member 5118 // shall be initialized; [DR1359] 5119 // 5120 // If we squint, this is guaranteed, since exactly one non-static data member 5121 // will be initialized (if the constructor isn't deleted), we just don't know 5122 // which one. 5123 if (Ctor && ClassDecl->isUnion()) 5124 return true; 5125 5126 // -- the class shall not have any virtual base classes; 5127 if (Ctor && ClassDecl->getNumVBases()) 5128 return false; 5129 5130 // C++1y [class.copy]p26: 5131 // -- [the class] is a literal type, and 5132 if (!Ctor && !ClassDecl->isLiteral()) 5133 return false; 5134 5135 // -- every constructor involved in initializing [...] base class 5136 // sub-objects shall be a constexpr constructor; 5137 // -- the assignment operator selected to copy/move each direct base 5138 // class is a constexpr function, and 5139 for (const auto &B : ClassDecl->bases()) { 5140 const RecordType *BaseType = B.getType()->getAs<RecordType>(); 5141 if (!BaseType) continue; 5142 5143 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 5144 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg)) 5145 return false; 5146 } 5147 5148 // -- every constructor involved in initializing non-static data members 5149 // [...] shall be a constexpr constructor; 5150 // -- every non-static data member and base class sub-object shall be 5151 // initialized 5152 // -- for each non-static data member of X that is of class type (or array 5153 // thereof), the assignment operator selected to copy/move that member is 5154 // a constexpr function 5155 for (const auto *F : ClassDecl->fields()) { 5156 if (F->isInvalidDecl()) 5157 continue; 5158 QualType BaseType = S.Context.getBaseElementType(F->getType()); 5159 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 5160 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 5161 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, 5162 BaseType.getCVRQualifiers(), 5163 ConstArg && !F->isMutable())) 5164 return false; 5165 } 5166 } 5167 5168 // All OK, it's constexpr! 5169 return true; 5170 } 5171 5172 static Sema::ImplicitExceptionSpecification 5173 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) { 5174 switch (S.getSpecialMember(MD)) { 5175 case Sema::CXXDefaultConstructor: 5176 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD); 5177 case Sema::CXXCopyConstructor: 5178 return S.ComputeDefaultedCopyCtorExceptionSpec(MD); 5179 case Sema::CXXCopyAssignment: 5180 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD); 5181 case Sema::CXXMoveConstructor: 5182 return S.ComputeDefaultedMoveCtorExceptionSpec(MD); 5183 case Sema::CXXMoveAssignment: 5184 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD); 5185 case Sema::CXXDestructor: 5186 return S.ComputeDefaultedDtorExceptionSpec(MD); 5187 case Sema::CXXInvalid: 5188 break; 5189 } 5190 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() && 5191 "only special members have implicit exception specs"); 5192 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD)); 5193 } 5194 5195 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S, 5196 CXXMethodDecl *MD) { 5197 FunctionProtoType::ExtProtoInfo EPI; 5198 5199 // Build an exception specification pointing back at this member. 5200 EPI.ExceptionSpec.Type = EST_Unevaluated; 5201 EPI.ExceptionSpec.SourceDecl = MD; 5202 5203 // Set the calling convention to the default for C++ instance methods. 5204 EPI.ExtInfo = EPI.ExtInfo.withCallingConv( 5205 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5206 /*IsCXXMethod=*/true)); 5207 return EPI; 5208 } 5209 5210 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) { 5211 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); 5212 if (FPT->getExceptionSpecType() != EST_Unevaluated) 5213 return; 5214 5215 // Evaluate the exception specification. 5216 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec(); 5217 5218 // Update the type of the special member to use it. 5219 UpdateExceptionSpec(MD, ESI); 5220 5221 // A user-provided destructor can be defined outside the class. When that 5222 // happens, be sure to update the exception specification on both 5223 // declarations. 5224 const FunctionProtoType *CanonicalFPT = 5225 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>(); 5226 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) 5227 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI); 5228 } 5229 5230 void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) { 5231 CXXRecordDecl *RD = MD->getParent(); 5232 CXXSpecialMember CSM = getSpecialMember(MD); 5233 5234 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid && 5235 "not an explicitly-defaulted special member"); 5236 5237 // Whether this was the first-declared instance of the constructor. 5238 // This affects whether we implicitly add an exception spec and constexpr. 5239 bool First = MD == MD->getCanonicalDecl(); 5240 5241 bool HadError = false; 5242 5243 // C++11 [dcl.fct.def.default]p1: 5244 // A function that is explicitly defaulted shall 5245 // -- be a special member function (checked elsewhere), 5246 // -- have the same type (except for ref-qualifiers, and except that a 5247 // copy operation can take a non-const reference) as an implicit 5248 // declaration, and 5249 // -- not have default arguments. 5250 unsigned ExpectedParams = 1; 5251 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor) 5252 ExpectedParams = 0; 5253 if (MD->getNumParams() != ExpectedParams) { 5254 // This also checks for default arguments: a copy or move constructor with a 5255 // default argument is classified as a default constructor, and assignment 5256 // operations and destructors can't have default arguments. 5257 Diag(MD->getLocation(), diag::err_defaulted_special_member_params) 5258 << CSM << MD->getSourceRange(); 5259 HadError = true; 5260 } else if (MD->isVariadic()) { 5261 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic) 5262 << CSM << MD->getSourceRange(); 5263 HadError = true; 5264 } 5265 5266 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>(); 5267 5268 bool CanHaveConstParam = false; 5269 if (CSM == CXXCopyConstructor) 5270 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam(); 5271 else if (CSM == CXXCopyAssignment) 5272 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam(); 5273 5274 QualType ReturnType = Context.VoidTy; 5275 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) { 5276 // Check for return type matching. 5277 ReturnType = Type->getReturnType(); 5278 QualType ExpectedReturnType = 5279 Context.getLValueReferenceType(Context.getTypeDeclType(RD)); 5280 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) { 5281 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type) 5282 << (CSM == CXXMoveAssignment) << ExpectedReturnType; 5283 HadError = true; 5284 } 5285 5286 // A defaulted special member cannot have cv-qualifiers. 5287 if (Type->getTypeQuals()) { 5288 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals) 5289 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14; 5290 HadError = true; 5291 } 5292 } 5293 5294 // Check for parameter type matching. 5295 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType(); 5296 bool HasConstParam = false; 5297 if (ExpectedParams && ArgType->isReferenceType()) { 5298 // Argument must be reference to possibly-const T. 5299 QualType ReferentType = ArgType->getPointeeType(); 5300 HasConstParam = ReferentType.isConstQualified(); 5301 5302 if (ReferentType.isVolatileQualified()) { 5303 Diag(MD->getLocation(), 5304 diag::err_defaulted_special_member_volatile_param) << CSM; 5305 HadError = true; 5306 } 5307 5308 if (HasConstParam && !CanHaveConstParam) { 5309 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) { 5310 Diag(MD->getLocation(), 5311 diag::err_defaulted_special_member_copy_const_param) 5312 << (CSM == CXXCopyAssignment); 5313 // FIXME: Explain why this special member can't be const. 5314 } else { 5315 Diag(MD->getLocation(), 5316 diag::err_defaulted_special_member_move_const_param) 5317 << (CSM == CXXMoveAssignment); 5318 } 5319 HadError = true; 5320 } 5321 } else if (ExpectedParams) { 5322 // A copy assignment operator can take its argument by value, but a 5323 // defaulted one cannot. 5324 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument"); 5325 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref); 5326 HadError = true; 5327 } 5328 5329 // C++11 [dcl.fct.def.default]p2: 5330 // An explicitly-defaulted function may be declared constexpr only if it 5331 // would have been implicitly declared as constexpr, 5332 // Do not apply this rule to members of class templates, since core issue 1358 5333 // makes such functions always instantiate to constexpr functions. For 5334 // functions which cannot be constexpr (for non-constructors in C++11 and for 5335 // destructors in C++1y), this is checked elsewhere. 5336 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM, 5337 HasConstParam); 5338 if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD) 5339 : isa<CXXConstructorDecl>(MD)) && 5340 MD->isConstexpr() && !Constexpr && 5341 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) { 5342 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM; 5343 // FIXME: Explain why the special member can't be constexpr. 5344 HadError = true; 5345 } 5346 5347 // and may have an explicit exception-specification only if it is compatible 5348 // with the exception-specification on the implicit declaration. 5349 if (Type->hasExceptionSpec()) { 5350 // Delay the check if this is the first declaration of the special member, 5351 // since we may not have parsed some necessary in-class initializers yet. 5352 if (First) { 5353 // If the exception specification needs to be instantiated, do so now, 5354 // before we clobber it with an EST_Unevaluated specification below. 5355 if (Type->getExceptionSpecType() == EST_Uninstantiated) { 5356 InstantiateExceptionSpec(MD->getLocStart(), MD); 5357 Type = MD->getType()->getAs<FunctionProtoType>(); 5358 } 5359 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type)); 5360 } else 5361 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type); 5362 } 5363 5364 // If a function is explicitly defaulted on its first declaration, 5365 if (First) { 5366 // -- it is implicitly considered to be constexpr if the implicit 5367 // definition would be, 5368 MD->setConstexpr(Constexpr); 5369 5370 // -- it is implicitly considered to have the same exception-specification 5371 // as if it had been implicitly declared, 5372 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo(); 5373 EPI.ExceptionSpec.Type = EST_Unevaluated; 5374 EPI.ExceptionSpec.SourceDecl = MD; 5375 MD->setType(Context.getFunctionType(ReturnType, 5376 llvm::makeArrayRef(&ArgType, 5377 ExpectedParams), 5378 EPI)); 5379 } 5380 5381 if (ShouldDeleteSpecialMember(MD, CSM)) { 5382 if (First) { 5383 SetDeclDeleted(MD, MD->getLocation()); 5384 } else { 5385 // C++11 [dcl.fct.def.default]p4: 5386 // [For a] user-provided explicitly-defaulted function [...] if such a 5387 // function is implicitly defined as deleted, the program is ill-formed. 5388 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM; 5389 ShouldDeleteSpecialMember(MD, CSM, /*Diagnose*/true); 5390 HadError = true; 5391 } 5392 } 5393 5394 if (HadError) 5395 MD->setInvalidDecl(); 5396 } 5397 5398 /// Check whether the exception specification provided for an 5399 /// explicitly-defaulted special member matches the exception specification 5400 /// that would have been generated for an implicit special member, per 5401 /// C++11 [dcl.fct.def.default]p2. 5402 void Sema::CheckExplicitlyDefaultedMemberExceptionSpec( 5403 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) { 5404 // If the exception specification was explicitly specified but hadn't been 5405 // parsed when the method was defaulted, grab it now. 5406 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed) 5407 SpecifiedType = 5408 MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>(); 5409 5410 // Compute the implicit exception specification. 5411 CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5412 /*IsCXXMethod=*/true); 5413 FunctionProtoType::ExtProtoInfo EPI(CC); 5414 EPI.ExceptionSpec = computeImplicitExceptionSpec(*this, MD->getLocation(), MD) 5415 .getExceptionSpec(); 5416 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>( 5417 Context.getFunctionType(Context.VoidTy, None, EPI)); 5418 5419 // Ensure that it matches. 5420 CheckEquivalentExceptionSpec( 5421 PDiag(diag::err_incorrect_defaulted_exception_spec) 5422 << getSpecialMember(MD), PDiag(), 5423 ImplicitType, SourceLocation(), 5424 SpecifiedType, MD->getLocation()); 5425 } 5426 5427 void Sema::CheckDelayedMemberExceptionSpecs() { 5428 decltype(DelayedExceptionSpecChecks) Checks; 5429 decltype(DelayedDefaultedMemberExceptionSpecs) Specs; 5430 5431 std::swap(Checks, DelayedExceptionSpecChecks); 5432 std::swap(Specs, DelayedDefaultedMemberExceptionSpecs); 5433 5434 // Perform any deferred checking of exception specifications for virtual 5435 // destructors. 5436 for (auto &Check : Checks) 5437 CheckOverridingFunctionExceptionSpec(Check.first, Check.second); 5438 5439 // Check that any explicitly-defaulted methods have exception specifications 5440 // compatible with their implicit exception specifications. 5441 for (auto &Spec : Specs) 5442 CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second); 5443 } 5444 5445 namespace { 5446 struct SpecialMemberDeletionInfo { 5447 Sema &S; 5448 CXXMethodDecl *MD; 5449 Sema::CXXSpecialMember CSM; 5450 bool Diagnose; 5451 5452 // Properties of the special member, computed for convenience. 5453 bool IsConstructor, IsAssignment, IsMove, ConstArg; 5454 SourceLocation Loc; 5455 5456 bool AllFieldsAreConst; 5457 5458 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD, 5459 Sema::CXXSpecialMember CSM, bool Diagnose) 5460 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose), 5461 IsConstructor(false), IsAssignment(false), IsMove(false), 5462 ConstArg(false), Loc(MD->getLocation()), 5463 AllFieldsAreConst(true) { 5464 switch (CSM) { 5465 case Sema::CXXDefaultConstructor: 5466 case Sema::CXXCopyConstructor: 5467 IsConstructor = true; 5468 break; 5469 case Sema::CXXMoveConstructor: 5470 IsConstructor = true; 5471 IsMove = true; 5472 break; 5473 case Sema::CXXCopyAssignment: 5474 IsAssignment = true; 5475 break; 5476 case Sema::CXXMoveAssignment: 5477 IsAssignment = true; 5478 IsMove = true; 5479 break; 5480 case Sema::CXXDestructor: 5481 break; 5482 case Sema::CXXInvalid: 5483 llvm_unreachable("invalid special member kind"); 5484 } 5485 5486 if (MD->getNumParams()) { 5487 if (const ReferenceType *RT = 5488 MD->getParamDecl(0)->getType()->getAs<ReferenceType>()) 5489 ConstArg = RT->getPointeeType().isConstQualified(); 5490 } 5491 } 5492 5493 bool inUnion() const { return MD->getParent()->isUnion(); } 5494 5495 /// Look up the corresponding special member in the given class. 5496 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class, 5497 unsigned Quals, bool IsMutable) { 5498 return lookupCallFromSpecialMember(S, Class, CSM, Quals, 5499 ConstArg && !IsMutable); 5500 } 5501 5502 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject; 5503 5504 bool shouldDeleteForBase(CXXBaseSpecifier *Base); 5505 bool shouldDeleteForField(FieldDecl *FD); 5506 bool shouldDeleteForAllConstMembers(); 5507 5508 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj, 5509 unsigned Quals); 5510 bool shouldDeleteForSubobjectCall(Subobject Subobj, 5511 Sema::SpecialMemberOverloadResult *SMOR, 5512 bool IsDtorCallInCtor); 5513 5514 bool isAccessible(Subobject Subobj, CXXMethodDecl *D); 5515 }; 5516 } 5517 5518 /// Is the given special member inaccessible when used on the given 5519 /// sub-object. 5520 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj, 5521 CXXMethodDecl *target) { 5522 /// If we're operating on a base class, the object type is the 5523 /// type of this special member. 5524 QualType objectTy; 5525 AccessSpecifier access = target->getAccess(); 5526 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) { 5527 objectTy = S.Context.getTypeDeclType(MD->getParent()); 5528 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access); 5529 5530 // If we're operating on a field, the object type is the type of the field. 5531 } else { 5532 objectTy = S.Context.getTypeDeclType(target->getParent()); 5533 } 5534 5535 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy); 5536 } 5537 5538 /// Check whether we should delete a special member due to the implicit 5539 /// definition containing a call to a special member of a subobject. 5540 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall( 5541 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR, 5542 bool IsDtorCallInCtor) { 5543 CXXMethodDecl *Decl = SMOR->getMethod(); 5544 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5545 5546 int DiagKind = -1; 5547 5548 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted) 5549 DiagKind = !Decl ? 0 : 1; 5550 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5551 DiagKind = 2; 5552 else if (!isAccessible(Subobj, Decl)) 5553 DiagKind = 3; 5554 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() && 5555 !Decl->isTrivial()) { 5556 // A member of a union must have a trivial corresponding special member. 5557 // As a weird special case, a destructor call from a union's constructor 5558 // must be accessible and non-deleted, but need not be trivial. Such a 5559 // destructor is never actually called, but is semantically checked as 5560 // if it were. 5561 DiagKind = 4; 5562 } 5563 5564 if (DiagKind == -1) 5565 return false; 5566 5567 if (Diagnose) { 5568 if (Field) { 5569 S.Diag(Field->getLocation(), 5570 diag::note_deleted_special_member_class_subobject) 5571 << CSM << MD->getParent() << /*IsField*/true 5572 << Field << DiagKind << IsDtorCallInCtor; 5573 } else { 5574 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>(); 5575 S.Diag(Base->getLocStart(), 5576 diag::note_deleted_special_member_class_subobject) 5577 << CSM << MD->getParent() << /*IsField*/false 5578 << Base->getType() << DiagKind << IsDtorCallInCtor; 5579 } 5580 5581 if (DiagKind == 1) 5582 S.NoteDeletedFunction(Decl); 5583 // FIXME: Explain inaccessibility if DiagKind == 3. 5584 } 5585 5586 return true; 5587 } 5588 5589 /// Check whether we should delete a special member function due to having a 5590 /// direct or virtual base class or non-static data member of class type M. 5591 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject( 5592 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) { 5593 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5594 bool IsMutable = Field && Field->isMutable(); 5595 5596 // C++11 [class.ctor]p5: 5597 // -- any direct or virtual base class, or non-static data member with no 5598 // brace-or-equal-initializer, has class type M (or array thereof) and 5599 // either M has no default constructor or overload resolution as applied 5600 // to M's default constructor results in an ambiguity or in a function 5601 // that is deleted or inaccessible 5602 // C++11 [class.copy]p11, C++11 [class.copy]p23: 5603 // -- a direct or virtual base class B that cannot be copied/moved because 5604 // overload resolution, as applied to B's corresponding special member, 5605 // results in an ambiguity or a function that is deleted or inaccessible 5606 // from the defaulted special member 5607 // C++11 [class.dtor]p5: 5608 // -- any direct or virtual base class [...] has a type with a destructor 5609 // that is deleted or inaccessible 5610 if (!(CSM == Sema::CXXDefaultConstructor && 5611 Field && Field->hasInClassInitializer()) && 5612 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable), 5613 false)) 5614 return true; 5615 5616 // C++11 [class.ctor]p5, C++11 [class.copy]p11: 5617 // -- any direct or virtual base class or non-static data member has a 5618 // type with a destructor that is deleted or inaccessible 5619 if (IsConstructor) { 5620 Sema::SpecialMemberOverloadResult *SMOR = 5621 S.LookupSpecialMember(Class, Sema::CXXDestructor, 5622 false, false, false, false, false); 5623 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true)) 5624 return true; 5625 } 5626 5627 return false; 5628 } 5629 5630 /// Check whether we should delete a special member function due to the class 5631 /// having a particular direct or virtual base class. 5632 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) { 5633 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl(); 5634 // If program is correct, BaseClass cannot be null, but if it is, the error 5635 // must be reported elsewhere. 5636 return BaseClass && shouldDeleteForClassSubobject(BaseClass, Base, 0); 5637 } 5638 5639 /// Check whether we should delete a special member function due to the class 5640 /// having a particular non-static data member. 5641 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) { 5642 QualType FieldType = S.Context.getBaseElementType(FD->getType()); 5643 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl(); 5644 5645 if (CSM == Sema::CXXDefaultConstructor) { 5646 // For a default constructor, all references must be initialized in-class 5647 // and, if a union, it must have a non-const member. 5648 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) { 5649 if (Diagnose) 5650 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5651 << MD->getParent() << FD << FieldType << /*Reference*/0; 5652 return true; 5653 } 5654 // C++11 [class.ctor]p5: any non-variant non-static data member of 5655 // const-qualified type (or array thereof) with no 5656 // brace-or-equal-initializer does not have a user-provided default 5657 // constructor. 5658 if (!inUnion() && FieldType.isConstQualified() && 5659 !FD->hasInClassInitializer() && 5660 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) { 5661 if (Diagnose) 5662 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5663 << MD->getParent() << FD << FD->getType() << /*Const*/1; 5664 return true; 5665 } 5666 5667 if (inUnion() && !FieldType.isConstQualified()) 5668 AllFieldsAreConst = false; 5669 } else if (CSM == Sema::CXXCopyConstructor) { 5670 // For a copy constructor, data members must not be of rvalue reference 5671 // type. 5672 if (FieldType->isRValueReferenceType()) { 5673 if (Diagnose) 5674 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference) 5675 << MD->getParent() << FD << FieldType; 5676 return true; 5677 } 5678 } else if (IsAssignment) { 5679 // For an assignment operator, data members must not be of reference type. 5680 if (FieldType->isReferenceType()) { 5681 if (Diagnose) 5682 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5683 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0; 5684 return true; 5685 } 5686 if (!FieldRecord && FieldType.isConstQualified()) { 5687 // C++11 [class.copy]p23: 5688 // -- a non-static data member of const non-class type (or array thereof) 5689 if (Diagnose) 5690 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5691 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1; 5692 return true; 5693 } 5694 } 5695 5696 if (FieldRecord) { 5697 // Some additional restrictions exist on the variant members. 5698 if (!inUnion() && FieldRecord->isUnion() && 5699 FieldRecord->isAnonymousStructOrUnion()) { 5700 bool AllVariantFieldsAreConst = true; 5701 5702 // FIXME: Handle anonymous unions declared within anonymous unions. 5703 for (auto *UI : FieldRecord->fields()) { 5704 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType()); 5705 5706 if (!UnionFieldType.isConstQualified()) 5707 AllVariantFieldsAreConst = false; 5708 5709 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl(); 5710 if (UnionFieldRecord && 5711 shouldDeleteForClassSubobject(UnionFieldRecord, UI, 5712 UnionFieldType.getCVRQualifiers())) 5713 return true; 5714 } 5715 5716 // At least one member in each anonymous union must be non-const 5717 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst && 5718 !FieldRecord->field_empty()) { 5719 if (Diagnose) 5720 S.Diag(FieldRecord->getLocation(), 5721 diag::note_deleted_default_ctor_all_const) 5722 << MD->getParent() << /*anonymous union*/1; 5723 return true; 5724 } 5725 5726 // Don't check the implicit member of the anonymous union type. 5727 // This is technically non-conformant, but sanity demands it. 5728 return false; 5729 } 5730 5731 if (shouldDeleteForClassSubobject(FieldRecord, FD, 5732 FieldType.getCVRQualifiers())) 5733 return true; 5734 } 5735 5736 return false; 5737 } 5738 5739 /// C++11 [class.ctor] p5: 5740 /// A defaulted default constructor for a class X is defined as deleted if 5741 /// X is a union and all of its variant members are of const-qualified type. 5742 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() { 5743 // This is a silly definition, because it gives an empty union a deleted 5744 // default constructor. Don't do that. 5745 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst && 5746 !MD->getParent()->field_empty()) { 5747 if (Diagnose) 5748 S.Diag(MD->getParent()->getLocation(), 5749 diag::note_deleted_default_ctor_all_const) 5750 << MD->getParent() << /*not anonymous union*/0; 5751 return true; 5752 } 5753 return false; 5754 } 5755 5756 /// Determine whether a defaulted special member function should be defined as 5757 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11, 5758 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5. 5759 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM, 5760 bool Diagnose) { 5761 if (MD->isInvalidDecl()) 5762 return false; 5763 CXXRecordDecl *RD = MD->getParent(); 5764 assert(!RD->isDependentType() && "do deletion after instantiation"); 5765 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl()) 5766 return false; 5767 5768 // C++11 [expr.lambda.prim]p19: 5769 // The closure type associated with a lambda-expression has a 5770 // deleted (8.4.3) default constructor and a deleted copy 5771 // assignment operator. 5772 if (RD->isLambda() && 5773 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) { 5774 if (Diagnose) 5775 Diag(RD->getLocation(), diag::note_lambda_decl); 5776 return true; 5777 } 5778 5779 // For an anonymous struct or union, the copy and assignment special members 5780 // will never be used, so skip the check. For an anonymous union declared at 5781 // namespace scope, the constructor and destructor are used. 5782 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor && 5783 RD->isAnonymousStructOrUnion()) 5784 return false; 5785 5786 // C++11 [class.copy]p7, p18: 5787 // If the class definition declares a move constructor or move assignment 5788 // operator, an implicitly declared copy constructor or copy assignment 5789 // operator is defined as deleted. 5790 if (MD->isImplicit() && 5791 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) { 5792 CXXMethodDecl *UserDeclaredMove = nullptr; 5793 5794 // In Microsoft mode, a user-declared move only causes the deletion of the 5795 // corresponding copy operation, not both copy operations. 5796 if (RD->hasUserDeclaredMoveConstructor() && 5797 (!getLangOpts().MSVCCompat || CSM == CXXCopyConstructor)) { 5798 if (!Diagnose) return true; 5799 5800 // Find any user-declared move constructor. 5801 for (auto *I : RD->ctors()) { 5802 if (I->isMoveConstructor()) { 5803 UserDeclaredMove = I; 5804 break; 5805 } 5806 } 5807 assert(UserDeclaredMove); 5808 } else if (RD->hasUserDeclaredMoveAssignment() && 5809 (!getLangOpts().MSVCCompat || CSM == CXXCopyAssignment)) { 5810 if (!Diagnose) return true; 5811 5812 // Find any user-declared move assignment operator. 5813 for (auto *I : RD->methods()) { 5814 if (I->isMoveAssignmentOperator()) { 5815 UserDeclaredMove = I; 5816 break; 5817 } 5818 } 5819 assert(UserDeclaredMove); 5820 } 5821 5822 if (UserDeclaredMove) { 5823 Diag(UserDeclaredMove->getLocation(), 5824 diag::note_deleted_copy_user_declared_move) 5825 << (CSM == CXXCopyAssignment) << RD 5826 << UserDeclaredMove->isMoveAssignmentOperator(); 5827 return true; 5828 } 5829 } 5830 5831 // Do access control from the special member function 5832 ContextRAII MethodContext(*this, MD); 5833 5834 // C++11 [class.dtor]p5: 5835 // -- for a virtual destructor, lookup of the non-array deallocation function 5836 // results in an ambiguity or in a function that is deleted or inaccessible 5837 if (CSM == CXXDestructor && MD->isVirtual()) { 5838 FunctionDecl *OperatorDelete = nullptr; 5839 DeclarationName Name = 5840 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 5841 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name, 5842 OperatorDelete, false)) { 5843 if (Diagnose) 5844 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete); 5845 return true; 5846 } 5847 } 5848 5849 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose); 5850 5851 for (auto &BI : RD->bases()) 5852 if (!BI.isVirtual() && 5853 SMI.shouldDeleteForBase(&BI)) 5854 return true; 5855 5856 // Per DR1611, do not consider virtual bases of constructors of abstract 5857 // classes, since we are not going to construct them. 5858 if (!RD->isAbstract() || !SMI.IsConstructor) { 5859 for (auto &BI : RD->vbases()) 5860 if (SMI.shouldDeleteForBase(&BI)) 5861 return true; 5862 } 5863 5864 for (auto *FI : RD->fields()) 5865 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() && 5866 SMI.shouldDeleteForField(FI)) 5867 return true; 5868 5869 if (SMI.shouldDeleteForAllConstMembers()) 5870 return true; 5871 5872 if (getLangOpts().CUDA) { 5873 // We should delete the special member in CUDA mode if target inference 5874 // failed. 5875 return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg, 5876 Diagnose); 5877 } 5878 5879 return false; 5880 } 5881 5882 /// Perform lookup for a special member of the specified kind, and determine 5883 /// whether it is trivial. If the triviality can be determined without the 5884 /// lookup, skip it. This is intended for use when determining whether a 5885 /// special member of a containing object is trivial, and thus does not ever 5886 /// perform overload resolution for default constructors. 5887 /// 5888 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the 5889 /// member that was most likely to be intended to be trivial, if any. 5890 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD, 5891 Sema::CXXSpecialMember CSM, unsigned Quals, 5892 bool ConstRHS, CXXMethodDecl **Selected) { 5893 if (Selected) 5894 *Selected = nullptr; 5895 5896 switch (CSM) { 5897 case Sema::CXXInvalid: 5898 llvm_unreachable("not a special member"); 5899 5900 case Sema::CXXDefaultConstructor: 5901 // C++11 [class.ctor]p5: 5902 // A default constructor is trivial if: 5903 // - all the [direct subobjects] have trivial default constructors 5904 // 5905 // Note, no overload resolution is performed in this case. 5906 if (RD->hasTrivialDefaultConstructor()) 5907 return true; 5908 5909 if (Selected) { 5910 // If there's a default constructor which could have been trivial, dig it 5911 // out. Otherwise, if there's any user-provided default constructor, point 5912 // to that as an example of why there's not a trivial one. 5913 CXXConstructorDecl *DefCtor = nullptr; 5914 if (RD->needsImplicitDefaultConstructor()) 5915 S.DeclareImplicitDefaultConstructor(RD); 5916 for (auto *CI : RD->ctors()) { 5917 if (!CI->isDefaultConstructor()) 5918 continue; 5919 DefCtor = CI; 5920 if (!DefCtor->isUserProvided()) 5921 break; 5922 } 5923 5924 *Selected = DefCtor; 5925 } 5926 5927 return false; 5928 5929 case Sema::CXXDestructor: 5930 // C++11 [class.dtor]p5: 5931 // A destructor is trivial if: 5932 // - all the direct [subobjects] have trivial destructors 5933 if (RD->hasTrivialDestructor()) 5934 return true; 5935 5936 if (Selected) { 5937 if (RD->needsImplicitDestructor()) 5938 S.DeclareImplicitDestructor(RD); 5939 *Selected = RD->getDestructor(); 5940 } 5941 5942 return false; 5943 5944 case Sema::CXXCopyConstructor: 5945 // C++11 [class.copy]p12: 5946 // A copy constructor is trivial if: 5947 // - the constructor selected to copy each direct [subobject] is trivial 5948 if (RD->hasTrivialCopyConstructor()) { 5949 if (Quals == Qualifiers::Const) 5950 // We must either select the trivial copy constructor or reach an 5951 // ambiguity; no need to actually perform overload resolution. 5952 return true; 5953 } else if (!Selected) { 5954 return false; 5955 } 5956 // In C++98, we are not supposed to perform overload resolution here, but we 5957 // treat that as a language defect, as suggested on cxx-abi-dev, to treat 5958 // cases like B as having a non-trivial copy constructor: 5959 // struct A { template<typename T> A(T&); }; 5960 // struct B { mutable A a; }; 5961 goto NeedOverloadResolution; 5962 5963 case Sema::CXXCopyAssignment: 5964 // C++11 [class.copy]p25: 5965 // A copy assignment operator is trivial if: 5966 // - the assignment operator selected to copy each direct [subobject] is 5967 // trivial 5968 if (RD->hasTrivialCopyAssignment()) { 5969 if (Quals == Qualifiers::Const) 5970 return true; 5971 } else if (!Selected) { 5972 return false; 5973 } 5974 // In C++98, we are not supposed to perform overload resolution here, but we 5975 // treat that as a language defect. 5976 goto NeedOverloadResolution; 5977 5978 case Sema::CXXMoveConstructor: 5979 case Sema::CXXMoveAssignment: 5980 NeedOverloadResolution: 5981 Sema::SpecialMemberOverloadResult *SMOR = 5982 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS); 5983 5984 // The standard doesn't describe how to behave if the lookup is ambiguous. 5985 // We treat it as not making the member non-trivial, just like the standard 5986 // mandates for the default constructor. This should rarely matter, because 5987 // the member will also be deleted. 5988 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5989 return true; 5990 5991 if (!SMOR->getMethod()) { 5992 assert(SMOR->getKind() == 5993 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted); 5994 return false; 5995 } 5996 5997 // We deliberately don't check if we found a deleted special member. We're 5998 // not supposed to! 5999 if (Selected) 6000 *Selected = SMOR->getMethod(); 6001 return SMOR->getMethod()->isTrivial(); 6002 } 6003 6004 llvm_unreachable("unknown special method kind"); 6005 } 6006 6007 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) { 6008 for (auto *CI : RD->ctors()) 6009 if (!CI->isImplicit()) 6010 return CI; 6011 6012 // Look for constructor templates. 6013 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter; 6014 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) { 6015 if (CXXConstructorDecl *CD = 6016 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl())) 6017 return CD; 6018 } 6019 6020 return nullptr; 6021 } 6022 6023 /// The kind of subobject we are checking for triviality. The values of this 6024 /// enumeration are used in diagnostics. 6025 enum TrivialSubobjectKind { 6026 /// The subobject is a base class. 6027 TSK_BaseClass, 6028 /// The subobject is a non-static data member. 6029 TSK_Field, 6030 /// The object is actually the complete object. 6031 TSK_CompleteObject 6032 }; 6033 6034 /// Check whether the special member selected for a given type would be trivial. 6035 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc, 6036 QualType SubType, bool ConstRHS, 6037 Sema::CXXSpecialMember CSM, 6038 TrivialSubobjectKind Kind, 6039 bool Diagnose) { 6040 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); 6041 if (!SubRD) 6042 return true; 6043 6044 CXXMethodDecl *Selected; 6045 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), 6046 ConstRHS, Diagnose ? &Selected : nullptr)) 6047 return true; 6048 6049 if (Diagnose) { 6050 if (ConstRHS) 6051 SubType.addConst(); 6052 6053 if (!Selected && CSM == Sema::CXXDefaultConstructor) { 6054 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor) 6055 << Kind << SubType.getUnqualifiedType(); 6056 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD)) 6057 S.Diag(CD->getLocation(), diag::note_user_declared_ctor); 6058 } else if (!Selected) 6059 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy) 6060 << Kind << SubType.getUnqualifiedType() << CSM << SubType; 6061 else if (Selected->isUserProvided()) { 6062 if (Kind == TSK_CompleteObject) 6063 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided) 6064 << Kind << SubType.getUnqualifiedType() << CSM; 6065 else { 6066 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided) 6067 << Kind << SubType.getUnqualifiedType() << CSM; 6068 S.Diag(Selected->getLocation(), diag::note_declared_at); 6069 } 6070 } else { 6071 if (Kind != TSK_CompleteObject) 6072 S.Diag(SubobjLoc, diag::note_nontrivial_subobject) 6073 << Kind << SubType.getUnqualifiedType() << CSM; 6074 6075 // Explain why the defaulted or deleted special member isn't trivial. 6076 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose); 6077 } 6078 } 6079 6080 return false; 6081 } 6082 6083 /// Check whether the members of a class type allow a special member to be 6084 /// trivial. 6085 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD, 6086 Sema::CXXSpecialMember CSM, 6087 bool ConstArg, bool Diagnose) { 6088 for (const auto *FI : RD->fields()) { 6089 if (FI->isInvalidDecl() || FI->isUnnamedBitfield()) 6090 continue; 6091 6092 QualType FieldType = S.Context.getBaseElementType(FI->getType()); 6093 6094 // Pretend anonymous struct or union members are members of this class. 6095 if (FI->isAnonymousStructOrUnion()) { 6096 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(), 6097 CSM, ConstArg, Diagnose)) 6098 return false; 6099 continue; 6100 } 6101 6102 // C++11 [class.ctor]p5: 6103 // A default constructor is trivial if [...] 6104 // -- no non-static data member of its class has a 6105 // brace-or-equal-initializer 6106 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) { 6107 if (Diagnose) 6108 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI; 6109 return false; 6110 } 6111 6112 // Objective C ARC 4.3.5: 6113 // [...] nontrivally ownership-qualified types are [...] not trivially 6114 // default constructible, copy constructible, move constructible, copy 6115 // assignable, move assignable, or destructible [...] 6116 if (S.getLangOpts().ObjCAutoRefCount && 6117 FieldType.hasNonTrivialObjCLifetime()) { 6118 if (Diagnose) 6119 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership) 6120 << RD << FieldType.getObjCLifetime(); 6121 return false; 6122 } 6123 6124 bool ConstRHS = ConstArg && !FI->isMutable(); 6125 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS, 6126 CSM, TSK_Field, Diagnose)) 6127 return false; 6128 } 6129 6130 return true; 6131 } 6132 6133 /// Diagnose why the specified class does not have a trivial special member of 6134 /// the given kind. 6135 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) { 6136 QualType Ty = Context.getRecordType(RD); 6137 6138 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment); 6139 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM, 6140 TSK_CompleteObject, /*Diagnose*/true); 6141 } 6142 6143 /// Determine whether a defaulted or deleted special member function is trivial, 6144 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12, 6145 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5. 6146 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM, 6147 bool Diagnose) { 6148 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough"); 6149 6150 CXXRecordDecl *RD = MD->getParent(); 6151 6152 bool ConstArg = false; 6153 6154 // C++11 [class.copy]p12, p25: [DR1593] 6155 // A [special member] is trivial if [...] its parameter-type-list is 6156 // equivalent to the parameter-type-list of an implicit declaration [...] 6157 switch (CSM) { 6158 case CXXDefaultConstructor: 6159 case CXXDestructor: 6160 // Trivial default constructors and destructors cannot have parameters. 6161 break; 6162 6163 case CXXCopyConstructor: 6164 case CXXCopyAssignment: { 6165 // Trivial copy operations always have const, non-volatile parameter types. 6166 ConstArg = true; 6167 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6168 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>(); 6169 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) { 6170 if (Diagnose) 6171 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6172 << Param0->getSourceRange() << Param0->getType() 6173 << Context.getLValueReferenceType( 6174 Context.getRecordType(RD).withConst()); 6175 return false; 6176 } 6177 break; 6178 } 6179 6180 case CXXMoveConstructor: 6181 case CXXMoveAssignment: { 6182 // Trivial move operations always have non-cv-qualified parameters. 6183 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6184 const RValueReferenceType *RT = 6185 Param0->getType()->getAs<RValueReferenceType>(); 6186 if (!RT || RT->getPointeeType().getCVRQualifiers()) { 6187 if (Diagnose) 6188 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6189 << Param0->getSourceRange() << Param0->getType() 6190 << Context.getRValueReferenceType(Context.getRecordType(RD)); 6191 return false; 6192 } 6193 break; 6194 } 6195 6196 case CXXInvalid: 6197 llvm_unreachable("not a special member"); 6198 } 6199 6200 if (MD->getMinRequiredArguments() < MD->getNumParams()) { 6201 if (Diagnose) 6202 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(), 6203 diag::note_nontrivial_default_arg) 6204 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange(); 6205 return false; 6206 } 6207 if (MD->isVariadic()) { 6208 if (Diagnose) 6209 Diag(MD->getLocation(), diag::note_nontrivial_variadic); 6210 return false; 6211 } 6212 6213 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6214 // A copy/move [constructor or assignment operator] is trivial if 6215 // -- the [member] selected to copy/move each direct base class subobject 6216 // is trivial 6217 // 6218 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6219 // A [default constructor or destructor] is trivial if 6220 // -- all the direct base classes have trivial [default constructors or 6221 // destructors] 6222 for (const auto &BI : RD->bases()) 6223 if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(), 6224 ConstArg, CSM, TSK_BaseClass, Diagnose)) 6225 return false; 6226 6227 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6228 // A copy/move [constructor or assignment operator] for a class X is 6229 // trivial if 6230 // -- for each non-static data member of X that is of class type (or array 6231 // thereof), the constructor selected to copy/move that member is 6232 // trivial 6233 // 6234 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6235 // A [default constructor or destructor] is trivial if 6236 // -- for all of the non-static data members of its class that are of class 6237 // type (or array thereof), each such class has a trivial [default 6238 // constructor or destructor] 6239 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose)) 6240 return false; 6241 6242 // C++11 [class.dtor]p5: 6243 // A destructor is trivial if [...] 6244 // -- the destructor is not virtual 6245 if (CSM == CXXDestructor && MD->isVirtual()) { 6246 if (Diagnose) 6247 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD; 6248 return false; 6249 } 6250 6251 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 6252 // A [special member] for class X is trivial if [...] 6253 // -- class X has no virtual functions and no virtual base classes 6254 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) { 6255 if (!Diagnose) 6256 return false; 6257 6258 if (RD->getNumVBases()) { 6259 // Check for virtual bases. We already know that the corresponding 6260 // member in all bases is trivial, so vbases must all be direct. 6261 CXXBaseSpecifier &BS = *RD->vbases_begin(); 6262 assert(BS.isVirtual()); 6263 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1; 6264 return false; 6265 } 6266 6267 // Must have a virtual method. 6268 for (const auto *MI : RD->methods()) { 6269 if (MI->isVirtual()) { 6270 SourceLocation MLoc = MI->getLocStart(); 6271 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0; 6272 return false; 6273 } 6274 } 6275 6276 llvm_unreachable("dynamic class with no vbases and no virtual functions"); 6277 } 6278 6279 // Looks like it's trivial! 6280 return true; 6281 } 6282 6283 namespace { 6284 struct FindHiddenVirtualMethod { 6285 Sema *S; 6286 CXXMethodDecl *Method; 6287 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods; 6288 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6289 6290 private: 6291 /// Check whether any most overriden method from MD in Methods 6292 static bool CheckMostOverridenMethods( 6293 const CXXMethodDecl *MD, 6294 const llvm::SmallPtrSetImpl<const CXXMethodDecl *> &Methods) { 6295 if (MD->size_overridden_methods() == 0) 6296 return Methods.count(MD->getCanonicalDecl()); 6297 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6298 E = MD->end_overridden_methods(); 6299 I != E; ++I) 6300 if (CheckMostOverridenMethods(*I, Methods)) 6301 return true; 6302 return false; 6303 } 6304 6305 public: 6306 /// Member lookup function that determines whether a given C++ 6307 /// method overloads virtual methods in a base class without overriding any, 6308 /// to be used with CXXRecordDecl::lookupInBases(). 6309 bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 6310 RecordDecl *BaseRecord = 6311 Specifier->getType()->getAs<RecordType>()->getDecl(); 6312 6313 DeclarationName Name = Method->getDeclName(); 6314 assert(Name.getNameKind() == DeclarationName::Identifier); 6315 6316 bool foundSameNameMethod = false; 6317 SmallVector<CXXMethodDecl *, 8> overloadedMethods; 6318 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); 6319 Path.Decls = Path.Decls.slice(1)) { 6320 NamedDecl *D = Path.Decls.front(); 6321 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 6322 MD = MD->getCanonicalDecl(); 6323 foundSameNameMethod = true; 6324 // Interested only in hidden virtual methods. 6325 if (!MD->isVirtual()) 6326 continue; 6327 // If the method we are checking overrides a method from its base 6328 // don't warn about the other overloaded methods. Clang deviates from 6329 // GCC by only diagnosing overloads of inherited virtual functions that 6330 // do not override any other virtual functions in the base. GCC's 6331 // -Woverloaded-virtual diagnoses any derived function hiding a virtual 6332 // function from a base class. These cases may be better served by a 6333 // warning (not specific to virtual functions) on call sites when the 6334 // call would select a different function from the base class, were it 6335 // visible. 6336 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example. 6337 if (!S->IsOverload(Method, MD, false)) 6338 return true; 6339 // Collect the overload only if its hidden. 6340 if (!CheckMostOverridenMethods(MD, OverridenAndUsingBaseMethods)) 6341 overloadedMethods.push_back(MD); 6342 } 6343 } 6344 6345 if (foundSameNameMethod) 6346 OverloadedMethods.append(overloadedMethods.begin(), 6347 overloadedMethods.end()); 6348 return foundSameNameMethod; 6349 } 6350 }; 6351 } // end anonymous namespace 6352 6353 /// \brief Add the most overriden methods from MD to Methods 6354 static void AddMostOverridenMethods(const CXXMethodDecl *MD, 6355 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 6356 if (MD->size_overridden_methods() == 0) 6357 Methods.insert(MD->getCanonicalDecl()); 6358 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6359 E = MD->end_overridden_methods(); 6360 I != E; ++I) 6361 AddMostOverridenMethods(*I, Methods); 6362 } 6363 6364 /// \brief Check if a method overloads virtual methods in a base class without 6365 /// overriding any. 6366 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD, 6367 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6368 if (!MD->getDeclName().isIdentifier()) 6369 return; 6370 6371 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases. 6372 /*bool RecordPaths=*/false, 6373 /*bool DetectVirtual=*/false); 6374 FindHiddenVirtualMethod FHVM; 6375 FHVM.Method = MD; 6376 FHVM.S = this; 6377 6378 // Keep the base methods that were overriden or introduced in the subclass 6379 // by 'using' in a set. A base method not in this set is hidden. 6380 CXXRecordDecl *DC = MD->getParent(); 6381 DeclContext::lookup_result R = DC->lookup(MD->getDeclName()); 6382 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) { 6383 NamedDecl *ND = *I; 6384 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I)) 6385 ND = shad->getTargetDecl(); 6386 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND)) 6387 AddMostOverridenMethods(MD, FHVM.OverridenAndUsingBaseMethods); 6388 } 6389 6390 if (DC->lookupInBases(FHVM, Paths)) 6391 OverloadedMethods = FHVM.OverloadedMethods; 6392 } 6393 6394 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD, 6395 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6396 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) { 6397 CXXMethodDecl *overloadedMD = OverloadedMethods[i]; 6398 PartialDiagnostic PD = PDiag( 6399 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD; 6400 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType()); 6401 Diag(overloadedMD->getLocation(), PD); 6402 } 6403 } 6404 6405 /// \brief Diagnose methods which overload virtual methods in a base class 6406 /// without overriding any. 6407 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) { 6408 if (MD->isInvalidDecl()) 6409 return; 6410 6411 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation())) 6412 return; 6413 6414 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6415 FindHiddenVirtualMethods(MD, OverloadedMethods); 6416 if (!OverloadedMethods.empty()) { 6417 Diag(MD->getLocation(), diag::warn_overloaded_virtual) 6418 << MD << (OverloadedMethods.size() > 1); 6419 6420 NoteHiddenVirtualMethods(MD, OverloadedMethods); 6421 } 6422 } 6423 6424 void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, 6425 Decl *TagDecl, 6426 SourceLocation LBrac, 6427 SourceLocation RBrac, 6428 AttributeList *AttrList) { 6429 if (!TagDecl) 6430 return; 6431 6432 AdjustDeclIfTemplate(TagDecl); 6433 6434 for (const AttributeList* l = AttrList; l; l = l->getNext()) { 6435 if (l->getKind() != AttributeList::AT_Visibility) 6436 continue; 6437 l->setInvalid(); 6438 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) << 6439 l->getName(); 6440 } 6441 6442 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef( 6443 // strict aliasing violation! 6444 reinterpret_cast<Decl**>(FieldCollector->getCurFields()), 6445 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList); 6446 6447 CheckCompletedCXXClass( 6448 dyn_cast_or_null<CXXRecordDecl>(TagDecl)); 6449 } 6450 6451 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared 6452 /// special functions, such as the default constructor, copy 6453 /// constructor, or destructor, to the given C++ class (C++ 6454 /// [special]p1). This routine can only be executed just before the 6455 /// definition of the class is complete. 6456 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) { 6457 if (!ClassDecl->hasUserDeclaredConstructor()) 6458 ++ASTContext::NumImplicitDefaultConstructors; 6459 6460 // If this class inherited any constructors, declare the default constructor 6461 // now in case it displaces one from a base class. 6462 if (ClassDecl->needsImplicitDefaultConstructor() && 6463 ClassDecl->hasInheritedConstructor()) 6464 DeclareImplicitDefaultConstructor(ClassDecl); 6465 6466 if (ClassDecl->needsImplicitCopyConstructor()) { 6467 ++ASTContext::NumImplicitCopyConstructors; 6468 6469 // If the properties or semantics of the copy constructor couldn't be 6470 // determined while the class was being declared, force a declaration 6471 // of it now. 6472 if (ClassDecl->needsOverloadResolutionForCopyConstructor() || 6473 ClassDecl->hasInheritedConstructor()) 6474 DeclareImplicitCopyConstructor(ClassDecl); 6475 } 6476 6477 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) { 6478 ++ASTContext::NumImplicitMoveConstructors; 6479 6480 if (ClassDecl->needsOverloadResolutionForMoveConstructor() || 6481 ClassDecl->hasInheritedConstructor()) 6482 DeclareImplicitMoveConstructor(ClassDecl); 6483 } 6484 6485 if (ClassDecl->needsImplicitCopyAssignment()) { 6486 ++ASTContext::NumImplicitCopyAssignmentOperators; 6487 6488 // If we have a dynamic class, then the copy assignment operator may be 6489 // virtual, so we have to declare it immediately. This ensures that, e.g., 6490 // it shows up in the right place in the vtable and that we diagnose 6491 // problems with the implicit exception specification. 6492 if (ClassDecl->isDynamicClass() || 6493 ClassDecl->needsOverloadResolutionForCopyAssignment() || 6494 ClassDecl->hasInheritedAssignment()) 6495 DeclareImplicitCopyAssignment(ClassDecl); 6496 } 6497 6498 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) { 6499 ++ASTContext::NumImplicitMoveAssignmentOperators; 6500 6501 // Likewise for the move assignment operator. 6502 if (ClassDecl->isDynamicClass() || 6503 ClassDecl->needsOverloadResolutionForMoveAssignment() || 6504 ClassDecl->hasInheritedAssignment()) 6505 DeclareImplicitMoveAssignment(ClassDecl); 6506 } 6507 6508 if (ClassDecl->needsImplicitDestructor()) { 6509 ++ASTContext::NumImplicitDestructors; 6510 6511 // If we have a dynamic class, then the destructor may be virtual, so we 6512 // have to declare the destructor immediately. This ensures that, e.g., it 6513 // shows up in the right place in the vtable and that we diagnose problems 6514 // with the implicit exception specification. 6515 if (ClassDecl->isDynamicClass() || 6516 ClassDecl->needsOverloadResolutionForDestructor()) 6517 DeclareImplicitDestructor(ClassDecl); 6518 } 6519 } 6520 6521 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) { 6522 if (!D) 6523 return 0; 6524 6525 // The order of template parameters is not important here. All names 6526 // get added to the same scope. 6527 SmallVector<TemplateParameterList *, 4> ParameterLists; 6528 6529 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 6530 D = TD->getTemplatedDecl(); 6531 6532 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) 6533 ParameterLists.push_back(PSD->getTemplateParameters()); 6534 6535 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) { 6536 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i) 6537 ParameterLists.push_back(DD->getTemplateParameterList(i)); 6538 6539 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 6540 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) 6541 ParameterLists.push_back(FTD->getTemplateParameters()); 6542 } 6543 } 6544 6545 if (TagDecl *TD = dyn_cast<TagDecl>(D)) { 6546 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i) 6547 ParameterLists.push_back(TD->getTemplateParameterList(i)); 6548 6549 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) { 6550 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate()) 6551 ParameterLists.push_back(CTD->getTemplateParameters()); 6552 } 6553 } 6554 6555 unsigned Count = 0; 6556 for (TemplateParameterList *Params : ParameterLists) { 6557 if (Params->size() > 0) 6558 // Ignore explicit specializations; they don't contribute to the template 6559 // depth. 6560 ++Count; 6561 for (NamedDecl *Param : *Params) { 6562 if (Param->getDeclName()) { 6563 S->AddDecl(Param); 6564 IdResolver.AddDecl(Param); 6565 } 6566 } 6567 } 6568 6569 return Count; 6570 } 6571 6572 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6573 if (!RecordD) return; 6574 AdjustDeclIfTemplate(RecordD); 6575 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD); 6576 PushDeclContext(S, Record); 6577 } 6578 6579 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6580 if (!RecordD) return; 6581 PopDeclContext(); 6582 } 6583 6584 /// This is used to implement the constant expression evaluation part of the 6585 /// attribute enable_if extension. There is nothing in standard C++ which would 6586 /// require reentering parameters. 6587 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) { 6588 if (!Param) 6589 return; 6590 6591 S->AddDecl(Param); 6592 if (Param->getDeclName()) 6593 IdResolver.AddDecl(Param); 6594 } 6595 6596 /// ActOnStartDelayedCXXMethodDeclaration - We have completed 6597 /// parsing a top-level (non-nested) C++ class, and we are now 6598 /// parsing those parts of the given Method declaration that could 6599 /// not be parsed earlier (C++ [class.mem]p2), such as default 6600 /// arguments. This action should enter the scope of the given 6601 /// Method declaration as if we had just parsed the qualified method 6602 /// name. However, it should not bring the parameters into scope; 6603 /// that will be performed by ActOnDelayedCXXMethodParameter. 6604 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6605 } 6606 6607 /// ActOnDelayedCXXMethodParameter - We've already started a delayed 6608 /// C++ method declaration. We're (re-)introducing the given 6609 /// function parameter into scope for use in parsing later parts of 6610 /// the method declaration. For example, we could see an 6611 /// ActOnParamDefaultArgument event for this parameter. 6612 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { 6613 if (!ParamD) 6614 return; 6615 6616 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); 6617 6618 // If this parameter has an unparsed default argument, clear it out 6619 // to make way for the parsed default argument. 6620 if (Param->hasUnparsedDefaultArg()) 6621 Param->setDefaultArg(nullptr); 6622 6623 S->AddDecl(Param); 6624 if (Param->getDeclName()) 6625 IdResolver.AddDecl(Param); 6626 } 6627 6628 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished 6629 /// processing the delayed method declaration for Method. The method 6630 /// declaration is now considered finished. There may be a separate 6631 /// ActOnStartOfFunctionDef action later (not necessarily 6632 /// immediately!) for this method, if it was also defined inside the 6633 /// class body. 6634 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6635 if (!MethodD) 6636 return; 6637 6638 AdjustDeclIfTemplate(MethodD); 6639 6640 FunctionDecl *Method = cast<FunctionDecl>(MethodD); 6641 6642 // Now that we have our default arguments, check the constructor 6643 // again. It could produce additional diagnostics or affect whether 6644 // the class has implicitly-declared destructors, among other 6645 // things. 6646 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) 6647 CheckConstructor(Constructor); 6648 6649 // Check the default arguments, which we may have added. 6650 if (!Method->isInvalidDecl()) 6651 CheckCXXDefaultArguments(Method); 6652 } 6653 6654 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check 6655 /// the well-formedness of the constructor declarator @p D with type @p 6656 /// R. If there are any errors in the declarator, this routine will 6657 /// emit diagnostics and set the invalid bit to true. In any case, the type 6658 /// will be updated to reflect a well-formed type for the constructor and 6659 /// returned. 6660 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R, 6661 StorageClass &SC) { 6662 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 6663 6664 // C++ [class.ctor]p3: 6665 // A constructor shall not be virtual (10.3) or static (9.4). A 6666 // constructor can be invoked for a const, volatile or const 6667 // volatile object. A constructor shall not be declared const, 6668 // volatile, or const volatile (9.3.2). 6669 if (isVirtual) { 6670 if (!D.isInvalidType()) 6671 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6672 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc()) 6673 << SourceRange(D.getIdentifierLoc()); 6674 D.setInvalidType(); 6675 } 6676 if (SC == SC_Static) { 6677 if (!D.isInvalidType()) 6678 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6679 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6680 << SourceRange(D.getIdentifierLoc()); 6681 D.setInvalidType(); 6682 SC = SC_None; 6683 } 6684 6685 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6686 diagnoseIgnoredQualifiers( 6687 diag::err_constructor_return_type, TypeQuals, SourceLocation(), 6688 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(), 6689 D.getDeclSpec().getRestrictSpecLoc(), 6690 D.getDeclSpec().getAtomicSpecLoc()); 6691 D.setInvalidType(); 6692 } 6693 6694 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6695 if (FTI.TypeQuals != 0) { 6696 if (FTI.TypeQuals & Qualifiers::Const) 6697 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6698 << "const" << SourceRange(D.getIdentifierLoc()); 6699 if (FTI.TypeQuals & Qualifiers::Volatile) 6700 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6701 << "volatile" << SourceRange(D.getIdentifierLoc()); 6702 if (FTI.TypeQuals & Qualifiers::Restrict) 6703 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6704 << "restrict" << SourceRange(D.getIdentifierLoc()); 6705 D.setInvalidType(); 6706 } 6707 6708 // C++0x [class.ctor]p4: 6709 // A constructor shall not be declared with a ref-qualifier. 6710 if (FTI.hasRefQualifier()) { 6711 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor) 6712 << FTI.RefQualifierIsLValueRef 6713 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6714 D.setInvalidType(); 6715 } 6716 6717 // Rebuild the function type "R" without any type qualifiers (in 6718 // case any of the errors above fired) and with "void" as the 6719 // return type, since constructors don't have return types. 6720 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6721 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType()) 6722 return R; 6723 6724 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6725 EPI.TypeQuals = 0; 6726 EPI.RefQualifier = RQ_None; 6727 6728 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI); 6729 } 6730 6731 /// CheckConstructor - Checks a fully-formed constructor for 6732 /// well-formedness, issuing any diagnostics required. Returns true if 6733 /// the constructor declarator is invalid. 6734 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) { 6735 CXXRecordDecl *ClassDecl 6736 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext()); 6737 if (!ClassDecl) 6738 return Constructor->setInvalidDecl(); 6739 6740 // C++ [class.copy]p3: 6741 // A declaration of a constructor for a class X is ill-formed if 6742 // its first parameter is of type (optionally cv-qualified) X and 6743 // either there are no other parameters or else all other 6744 // parameters have default arguments. 6745 if (!Constructor->isInvalidDecl() && 6746 ((Constructor->getNumParams() == 1) || 6747 (Constructor->getNumParams() > 1 && 6748 Constructor->getParamDecl(1)->hasDefaultArg())) && 6749 Constructor->getTemplateSpecializationKind() 6750 != TSK_ImplicitInstantiation) { 6751 QualType ParamType = Constructor->getParamDecl(0)->getType(); 6752 QualType ClassTy = Context.getTagDeclType(ClassDecl); 6753 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { 6754 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation(); 6755 const char *ConstRef 6756 = Constructor->getParamDecl(0)->getIdentifier() ? "const &" 6757 : " const &"; 6758 Diag(ParamLoc, diag::err_constructor_byvalue_arg) 6759 << FixItHint::CreateInsertion(ParamLoc, ConstRef); 6760 6761 // FIXME: Rather that making the constructor invalid, we should endeavor 6762 // to fix the type. 6763 Constructor->setInvalidDecl(); 6764 } 6765 } 6766 } 6767 6768 /// CheckDestructor - Checks a fully-formed destructor definition for 6769 /// well-formedness, issuing any diagnostics required. Returns true 6770 /// on error. 6771 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { 6772 CXXRecordDecl *RD = Destructor->getParent(); 6773 6774 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) { 6775 SourceLocation Loc; 6776 6777 if (!Destructor->isImplicit()) 6778 Loc = Destructor->getLocation(); 6779 else 6780 Loc = RD->getLocation(); 6781 6782 // If we have a virtual destructor, look up the deallocation function 6783 FunctionDecl *OperatorDelete = nullptr; 6784 DeclarationName Name = 6785 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 6786 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete)) 6787 return true; 6788 // If there's no class-specific operator delete, look up the global 6789 // non-array delete. 6790 if (!OperatorDelete) 6791 OperatorDelete = FindUsualDeallocationFunction(Loc, true, Name); 6792 6793 MarkFunctionReferenced(Loc, OperatorDelete); 6794 6795 Destructor->setOperatorDelete(OperatorDelete); 6796 } 6797 6798 return false; 6799 } 6800 6801 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check 6802 /// the well-formednes of the destructor declarator @p D with type @p 6803 /// R. If there are any errors in the declarator, this routine will 6804 /// emit diagnostics and set the declarator to invalid. Even if this happens, 6805 /// will be updated to reflect a well-formed type for the destructor and 6806 /// returned. 6807 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R, 6808 StorageClass& SC) { 6809 // C++ [class.dtor]p1: 6810 // [...] A typedef-name that names a class is a class-name 6811 // (7.1.3); however, a typedef-name that names a class shall not 6812 // be used as the identifier in the declarator for a destructor 6813 // declaration. 6814 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName); 6815 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>()) 6816 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6817 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl()); 6818 else if (const TemplateSpecializationType *TST = 6819 DeclaratorType->getAs<TemplateSpecializationType>()) 6820 if (TST->isTypeAlias()) 6821 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6822 << DeclaratorType << 1; 6823 6824 // C++ [class.dtor]p2: 6825 // A destructor is used to destroy objects of its class type. A 6826 // destructor takes no parameters, and no return type can be 6827 // specified for it (not even void). The address of a destructor 6828 // shall not be taken. A destructor shall not be static. A 6829 // destructor can be invoked for a const, volatile or const 6830 // volatile object. A destructor shall not be declared const, 6831 // volatile or const volatile (9.3.2). 6832 if (SC == SC_Static) { 6833 if (!D.isInvalidType()) 6834 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be) 6835 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6836 << SourceRange(D.getIdentifierLoc()) 6837 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6838 6839 SC = SC_None; 6840 } 6841 if (!D.isInvalidType()) { 6842 // Destructors don't have return types, but the parser will 6843 // happily parse something like: 6844 // 6845 // class X { 6846 // float ~X(); 6847 // }; 6848 // 6849 // The return type will be eliminated later. 6850 if (D.getDeclSpec().hasTypeSpecifier()) 6851 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type) 6852 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6853 << SourceRange(D.getIdentifierLoc()); 6854 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6855 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals, 6856 SourceLocation(), 6857 D.getDeclSpec().getConstSpecLoc(), 6858 D.getDeclSpec().getVolatileSpecLoc(), 6859 D.getDeclSpec().getRestrictSpecLoc(), 6860 D.getDeclSpec().getAtomicSpecLoc()); 6861 D.setInvalidType(); 6862 } 6863 } 6864 6865 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6866 if (FTI.TypeQuals != 0 && !D.isInvalidType()) { 6867 if (FTI.TypeQuals & Qualifiers::Const) 6868 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6869 << "const" << SourceRange(D.getIdentifierLoc()); 6870 if (FTI.TypeQuals & Qualifiers::Volatile) 6871 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6872 << "volatile" << SourceRange(D.getIdentifierLoc()); 6873 if (FTI.TypeQuals & Qualifiers::Restrict) 6874 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6875 << "restrict" << SourceRange(D.getIdentifierLoc()); 6876 D.setInvalidType(); 6877 } 6878 6879 // C++0x [class.dtor]p2: 6880 // A destructor shall not be declared with a ref-qualifier. 6881 if (FTI.hasRefQualifier()) { 6882 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor) 6883 << FTI.RefQualifierIsLValueRef 6884 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6885 D.setInvalidType(); 6886 } 6887 6888 // Make sure we don't have any parameters. 6889 if (FTIHasNonVoidParameters(FTI)) { 6890 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params); 6891 6892 // Delete the parameters. 6893 FTI.freeParams(); 6894 D.setInvalidType(); 6895 } 6896 6897 // Make sure the destructor isn't variadic. 6898 if (FTI.isVariadic) { 6899 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic); 6900 D.setInvalidType(); 6901 } 6902 6903 // Rebuild the function type "R" without any type qualifiers or 6904 // parameters (in case any of the errors above fired) and with 6905 // "void" as the return type, since destructors don't have return 6906 // types. 6907 if (!D.isInvalidType()) 6908 return R; 6909 6910 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6911 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6912 EPI.Variadic = false; 6913 EPI.TypeQuals = 0; 6914 EPI.RefQualifier = RQ_None; 6915 return Context.getFunctionType(Context.VoidTy, None, EPI); 6916 } 6917 6918 static void extendLeft(SourceRange &R, SourceRange Before) { 6919 if (Before.isInvalid()) 6920 return; 6921 R.setBegin(Before.getBegin()); 6922 if (R.getEnd().isInvalid()) 6923 R.setEnd(Before.getEnd()); 6924 } 6925 6926 static void extendRight(SourceRange &R, SourceRange After) { 6927 if (After.isInvalid()) 6928 return; 6929 if (R.getBegin().isInvalid()) 6930 R.setBegin(After.getBegin()); 6931 R.setEnd(After.getEnd()); 6932 } 6933 6934 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the 6935 /// well-formednes of the conversion function declarator @p D with 6936 /// type @p R. If there are any errors in the declarator, this routine 6937 /// will emit diagnostics and return true. Otherwise, it will return 6938 /// false. Either way, the type @p R will be updated to reflect a 6939 /// well-formed type for the conversion operator. 6940 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R, 6941 StorageClass& SC) { 6942 // C++ [class.conv.fct]p1: 6943 // Neither parameter types nor return type can be specified. The 6944 // type of a conversion function (8.3.5) is "function taking no 6945 // parameter returning conversion-type-id." 6946 if (SC == SC_Static) { 6947 if (!D.isInvalidType()) 6948 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member) 6949 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6950 << D.getName().getSourceRange(); 6951 D.setInvalidType(); 6952 SC = SC_None; 6953 } 6954 6955 TypeSourceInfo *ConvTSI = nullptr; 6956 QualType ConvType = 6957 GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI); 6958 6959 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) { 6960 // Conversion functions don't have return types, but the parser will 6961 // happily parse something like: 6962 // 6963 // class X { 6964 // float operator bool(); 6965 // }; 6966 // 6967 // The return type will be changed later anyway. 6968 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type) 6969 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6970 << SourceRange(D.getIdentifierLoc()); 6971 D.setInvalidType(); 6972 } 6973 6974 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6975 6976 // Make sure we don't have any parameters. 6977 if (Proto->getNumParams() > 0) { 6978 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params); 6979 6980 // Delete the parameters. 6981 D.getFunctionTypeInfo().freeParams(); 6982 D.setInvalidType(); 6983 } else if (Proto->isVariadic()) { 6984 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic); 6985 D.setInvalidType(); 6986 } 6987 6988 // Diagnose "&operator bool()" and other such nonsense. This 6989 // is actually a gcc extension which we don't support. 6990 if (Proto->getReturnType() != ConvType) { 6991 bool NeedsTypedef = false; 6992 SourceRange Before, After; 6993 6994 // Walk the chunks and extract information on them for our diagnostic. 6995 bool PastFunctionChunk = false; 6996 for (auto &Chunk : D.type_objects()) { 6997 switch (Chunk.Kind) { 6998 case DeclaratorChunk::Function: 6999 if (!PastFunctionChunk) { 7000 if (Chunk.Fun.HasTrailingReturnType) { 7001 TypeSourceInfo *TRT = nullptr; 7002 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT); 7003 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange()); 7004 } 7005 PastFunctionChunk = true; 7006 break; 7007 } 7008 // Fall through. 7009 case DeclaratorChunk::Array: 7010 NeedsTypedef = true; 7011 extendRight(After, Chunk.getSourceRange()); 7012 break; 7013 7014 case DeclaratorChunk::Pointer: 7015 case DeclaratorChunk::BlockPointer: 7016 case DeclaratorChunk::Reference: 7017 case DeclaratorChunk::MemberPointer: 7018 case DeclaratorChunk::Pipe: 7019 extendLeft(Before, Chunk.getSourceRange()); 7020 break; 7021 7022 case DeclaratorChunk::Paren: 7023 extendLeft(Before, Chunk.Loc); 7024 extendRight(After, Chunk.EndLoc); 7025 break; 7026 } 7027 } 7028 7029 SourceLocation Loc = Before.isValid() ? Before.getBegin() : 7030 After.isValid() ? After.getBegin() : 7031 D.getIdentifierLoc(); 7032 auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl); 7033 DB << Before << After; 7034 7035 if (!NeedsTypedef) { 7036 DB << /*don't need a typedef*/0; 7037 7038 // If we can provide a correct fix-it hint, do so. 7039 if (After.isInvalid() && ConvTSI) { 7040 SourceLocation InsertLoc = 7041 getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd()); 7042 DB << FixItHint::CreateInsertion(InsertLoc, " ") 7043 << FixItHint::CreateInsertionFromRange( 7044 InsertLoc, CharSourceRange::getTokenRange(Before)) 7045 << FixItHint::CreateRemoval(Before); 7046 } 7047 } else if (!Proto->getReturnType()->isDependentType()) { 7048 DB << /*typedef*/1 << Proto->getReturnType(); 7049 } else if (getLangOpts().CPlusPlus11) { 7050 DB << /*alias template*/2 << Proto->getReturnType(); 7051 } else { 7052 DB << /*might not be fixable*/3; 7053 } 7054 7055 // Recover by incorporating the other type chunks into the result type. 7056 // Note, this does *not* change the name of the function. This is compatible 7057 // with the GCC extension: 7058 // struct S { &operator int(); } s; 7059 // int &r = s.operator int(); // ok in GCC 7060 // S::operator int&() {} // error in GCC, function name is 'operator int'. 7061 ConvType = Proto->getReturnType(); 7062 } 7063 7064 // C++ [class.conv.fct]p4: 7065 // The conversion-type-id shall not represent a function type nor 7066 // an array type. 7067 if (ConvType->isArrayType()) { 7068 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array); 7069 ConvType = Context.getPointerType(ConvType); 7070 D.setInvalidType(); 7071 } else if (ConvType->isFunctionType()) { 7072 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function); 7073 ConvType = Context.getPointerType(ConvType); 7074 D.setInvalidType(); 7075 } 7076 7077 // Rebuild the function type "R" without any parameters (in case any 7078 // of the errors above fired) and with the conversion type as the 7079 // return type. 7080 if (D.isInvalidType()) 7081 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo()); 7082 7083 // C++0x explicit conversion operators. 7084 if (D.getDeclSpec().isExplicitSpecified()) 7085 Diag(D.getDeclSpec().getExplicitSpecLoc(), 7086 getLangOpts().CPlusPlus11 ? 7087 diag::warn_cxx98_compat_explicit_conversion_functions : 7088 diag::ext_explicit_conversion_functions) 7089 << SourceRange(D.getDeclSpec().getExplicitSpecLoc()); 7090 } 7091 7092 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete 7093 /// the declaration of the given C++ conversion function. This routine 7094 /// is responsible for recording the conversion function in the C++ 7095 /// class, if possible. 7096 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) { 7097 assert(Conversion && "Expected to receive a conversion function declaration"); 7098 7099 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext()); 7100 7101 // Make sure we aren't redeclaring the conversion function. 7102 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType()); 7103 7104 // C++ [class.conv.fct]p1: 7105 // [...] A conversion function is never used to convert a 7106 // (possibly cv-qualified) object to the (possibly cv-qualified) 7107 // same object type (or a reference to it), to a (possibly 7108 // cv-qualified) base class of that type (or a reference to it), 7109 // or to (possibly cv-qualified) void. 7110 // FIXME: Suppress this warning if the conversion function ends up being a 7111 // virtual function that overrides a virtual function in a base class. 7112 QualType ClassType 7113 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 7114 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>()) 7115 ConvType = ConvTypeRef->getPointeeType(); 7116 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared && 7117 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) 7118 /* Suppress diagnostics for instantiations. */; 7119 else if (ConvType->isRecordType()) { 7120 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); 7121 if (ConvType == ClassType) 7122 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used) 7123 << ClassType; 7124 else if (IsDerivedFrom(Conversion->getLocation(), ClassType, ConvType)) 7125 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used) 7126 << ClassType << ConvType; 7127 } else if (ConvType->isVoidType()) { 7128 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used) 7129 << ClassType << ConvType; 7130 } 7131 7132 if (FunctionTemplateDecl *ConversionTemplate 7133 = Conversion->getDescribedFunctionTemplate()) 7134 return ConversionTemplate; 7135 7136 return Conversion; 7137 } 7138 7139 //===----------------------------------------------------------------------===// 7140 // Namespace Handling 7141 //===----------------------------------------------------------------------===// 7142 7143 /// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is 7144 /// reopened. 7145 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, 7146 SourceLocation Loc, 7147 IdentifierInfo *II, bool *IsInline, 7148 NamespaceDecl *PrevNS) { 7149 assert(*IsInline != PrevNS->isInline()); 7150 7151 // HACK: Work around a bug in libstdc++4.6's <atomic>, where 7152 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as 7153 // inline namespaces, with the intention of bringing names into namespace std. 7154 // 7155 // We support this just well enough to get that case working; this is not 7156 // sufficient to support reopening namespaces as inline in general. 7157 if (*IsInline && II && II->getName().startswith("__atomic") && 7158 S.getSourceManager().isInSystemHeader(Loc)) { 7159 // Mark all prior declarations of the namespace as inline. 7160 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS; 7161 NS = NS->getPreviousDecl()) 7162 NS->setInline(*IsInline); 7163 // Patch up the lookup table for the containing namespace. This isn't really 7164 // correct, but it's good enough for this particular case. 7165 for (auto *I : PrevNS->decls()) 7166 if (auto *ND = dyn_cast<NamedDecl>(I)) 7167 PrevNS->getParent()->makeDeclVisibleInContext(ND); 7168 return; 7169 } 7170 7171 if (PrevNS->isInline()) 7172 // The user probably just forgot the 'inline', so suggest that it 7173 // be added back. 7174 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline) 7175 << FixItHint::CreateInsertion(KeywordLoc, "inline "); 7176 else 7177 S.Diag(Loc, diag::err_inline_namespace_mismatch) << *IsInline; 7178 7179 S.Diag(PrevNS->getLocation(), diag::note_previous_definition); 7180 *IsInline = PrevNS->isInline(); 7181 } 7182 7183 /// ActOnStartNamespaceDef - This is called at the start of a namespace 7184 /// definition. 7185 Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope, 7186 SourceLocation InlineLoc, 7187 SourceLocation NamespaceLoc, 7188 SourceLocation IdentLoc, 7189 IdentifierInfo *II, 7190 SourceLocation LBrace, 7191 AttributeList *AttrList, 7192 UsingDirectiveDecl *&UD) { 7193 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc; 7194 // For anonymous namespace, take the location of the left brace. 7195 SourceLocation Loc = II ? IdentLoc : LBrace; 7196 bool IsInline = InlineLoc.isValid(); 7197 bool IsInvalid = false; 7198 bool IsStd = false; 7199 bool AddToKnown = false; 7200 Scope *DeclRegionScope = NamespcScope->getParent(); 7201 7202 NamespaceDecl *PrevNS = nullptr; 7203 if (II) { 7204 // C++ [namespace.def]p2: 7205 // The identifier in an original-namespace-definition shall not 7206 // have been previously defined in the declarative region in 7207 // which the original-namespace-definition appears. The 7208 // identifier in an original-namespace-definition is the name of 7209 // the namespace. Subsequently in that declarative region, it is 7210 // treated as an original-namespace-name. 7211 // 7212 // Since namespace names are unique in their scope, and we don't 7213 // look through using directives, just look for any ordinary names 7214 // as if by qualified name lookup. 7215 LookupResult R(*this, II, IdentLoc, LookupOrdinaryName, ForRedeclaration); 7216 LookupQualifiedName(R, CurContext->getRedeclContext()); 7217 NamedDecl *PrevDecl = 7218 R.isSingleResult() ? R.getRepresentativeDecl() : nullptr; 7219 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl); 7220 7221 if (PrevNS) { 7222 // This is an extended namespace definition. 7223 if (IsInline != PrevNS->isInline()) 7224 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II, 7225 &IsInline, PrevNS); 7226 } else if (PrevDecl) { 7227 // This is an invalid name redefinition. 7228 Diag(Loc, diag::err_redefinition_different_kind) 7229 << II; 7230 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 7231 IsInvalid = true; 7232 // Continue on to push Namespc as current DeclContext and return it. 7233 } else if (II->isStr("std") && 7234 CurContext->getRedeclContext()->isTranslationUnit()) { 7235 // This is the first "real" definition of the namespace "std", so update 7236 // our cache of the "std" namespace to point at this definition. 7237 PrevNS = getStdNamespace(); 7238 IsStd = true; 7239 AddToKnown = !IsInline; 7240 } else { 7241 // We've seen this namespace for the first time. 7242 AddToKnown = !IsInline; 7243 } 7244 } else { 7245 // Anonymous namespaces. 7246 7247 // Determine whether the parent already has an anonymous namespace. 7248 DeclContext *Parent = CurContext->getRedeclContext(); 7249 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7250 PrevNS = TU->getAnonymousNamespace(); 7251 } else { 7252 NamespaceDecl *ND = cast<NamespaceDecl>(Parent); 7253 PrevNS = ND->getAnonymousNamespace(); 7254 } 7255 7256 if (PrevNS && IsInline != PrevNS->isInline()) 7257 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II, 7258 &IsInline, PrevNS); 7259 } 7260 7261 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline, 7262 StartLoc, Loc, II, PrevNS); 7263 if (IsInvalid) 7264 Namespc->setInvalidDecl(); 7265 7266 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList); 7267 7268 // FIXME: Should we be merging attributes? 7269 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>()) 7270 PushNamespaceVisibilityAttr(Attr, Loc); 7271 7272 if (IsStd) 7273 StdNamespace = Namespc; 7274 if (AddToKnown) 7275 KnownNamespaces[Namespc] = false; 7276 7277 if (II) { 7278 PushOnScopeChains(Namespc, DeclRegionScope); 7279 } else { 7280 // Link the anonymous namespace into its parent. 7281 DeclContext *Parent = CurContext->getRedeclContext(); 7282 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7283 TU->setAnonymousNamespace(Namespc); 7284 } else { 7285 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc); 7286 } 7287 7288 CurContext->addDecl(Namespc); 7289 7290 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition 7291 // behaves as if it were replaced by 7292 // namespace unique { /* empty body */ } 7293 // using namespace unique; 7294 // namespace unique { namespace-body } 7295 // where all occurrences of 'unique' in a translation unit are 7296 // replaced by the same identifier and this identifier differs 7297 // from all other identifiers in the entire program. 7298 7299 // We just create the namespace with an empty name and then add an 7300 // implicit using declaration, just like the standard suggests. 7301 // 7302 // CodeGen enforces the "universally unique" aspect by giving all 7303 // declarations semantically contained within an anonymous 7304 // namespace internal linkage. 7305 7306 if (!PrevNS) { 7307 UD = UsingDirectiveDecl::Create(Context, Parent, 7308 /* 'using' */ LBrace, 7309 /* 'namespace' */ SourceLocation(), 7310 /* qualifier */ NestedNameSpecifierLoc(), 7311 /* identifier */ SourceLocation(), 7312 Namespc, 7313 /* Ancestor */ Parent); 7314 UD->setImplicit(); 7315 Parent->addDecl(UD); 7316 } 7317 } 7318 7319 ActOnDocumentableDecl(Namespc); 7320 7321 // Although we could have an invalid decl (i.e. the namespace name is a 7322 // redefinition), push it as current DeclContext and try to continue parsing. 7323 // FIXME: We should be able to push Namespc here, so that the each DeclContext 7324 // for the namespace has the declarations that showed up in that particular 7325 // namespace definition. 7326 PushDeclContext(NamespcScope, Namespc); 7327 return Namespc; 7328 } 7329 7330 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl 7331 /// is a namespace alias, returns the namespace it points to. 7332 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) { 7333 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D)) 7334 return AD->getNamespace(); 7335 return dyn_cast_or_null<NamespaceDecl>(D); 7336 } 7337 7338 /// ActOnFinishNamespaceDef - This callback is called after a namespace is 7339 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. 7340 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) { 7341 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl); 7342 assert(Namespc && "Invalid parameter, expected NamespaceDecl"); 7343 Namespc->setRBraceLoc(RBrace); 7344 PopDeclContext(); 7345 if (Namespc->hasAttr<VisibilityAttr>()) 7346 PopPragmaVisibility(true, RBrace); 7347 } 7348 7349 CXXRecordDecl *Sema::getStdBadAlloc() const { 7350 return cast_or_null<CXXRecordDecl>( 7351 StdBadAlloc.get(Context.getExternalSource())); 7352 } 7353 7354 NamespaceDecl *Sema::getStdNamespace() const { 7355 return cast_or_null<NamespaceDecl>( 7356 StdNamespace.get(Context.getExternalSource())); 7357 } 7358 7359 /// \brief Retrieve the special "std" namespace, which may require us to 7360 /// implicitly define the namespace. 7361 NamespaceDecl *Sema::getOrCreateStdNamespace() { 7362 if (!StdNamespace) { 7363 // The "std" namespace has not yet been defined, so build one implicitly. 7364 StdNamespace = NamespaceDecl::Create(Context, 7365 Context.getTranslationUnitDecl(), 7366 /*Inline=*/false, 7367 SourceLocation(), SourceLocation(), 7368 &PP.getIdentifierTable().get("std"), 7369 /*PrevDecl=*/nullptr); 7370 getStdNamespace()->setImplicit(true); 7371 } 7372 7373 return getStdNamespace(); 7374 } 7375 7376 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) { 7377 assert(getLangOpts().CPlusPlus && 7378 "Looking for std::initializer_list outside of C++."); 7379 7380 // We're looking for implicit instantiations of 7381 // template <typename E> class std::initializer_list. 7382 7383 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it. 7384 return false; 7385 7386 ClassTemplateDecl *Template = nullptr; 7387 const TemplateArgument *Arguments = nullptr; 7388 7389 if (const RecordType *RT = Ty->getAs<RecordType>()) { 7390 7391 ClassTemplateSpecializationDecl *Specialization = 7392 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()); 7393 if (!Specialization) 7394 return false; 7395 7396 Template = Specialization->getSpecializedTemplate(); 7397 Arguments = Specialization->getTemplateArgs().data(); 7398 } else if (const TemplateSpecializationType *TST = 7399 Ty->getAs<TemplateSpecializationType>()) { 7400 Template = dyn_cast_or_null<ClassTemplateDecl>( 7401 TST->getTemplateName().getAsTemplateDecl()); 7402 Arguments = TST->getArgs(); 7403 } 7404 if (!Template) 7405 return false; 7406 7407 if (!StdInitializerList) { 7408 // Haven't recognized std::initializer_list yet, maybe this is it. 7409 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl(); 7410 if (TemplateClass->getIdentifier() != 7411 &PP.getIdentifierTable().get("initializer_list") || 7412 !getStdNamespace()->InEnclosingNamespaceSetOf( 7413 TemplateClass->getDeclContext())) 7414 return false; 7415 // This is a template called std::initializer_list, but is it the right 7416 // template? 7417 TemplateParameterList *Params = Template->getTemplateParameters(); 7418 if (Params->getMinRequiredArguments() != 1) 7419 return false; 7420 if (!isa<TemplateTypeParmDecl>(Params->getParam(0))) 7421 return false; 7422 7423 // It's the right template. 7424 StdInitializerList = Template; 7425 } 7426 7427 if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl()) 7428 return false; 7429 7430 // This is an instance of std::initializer_list. Find the argument type. 7431 if (Element) 7432 *Element = Arguments[0].getAsType(); 7433 return true; 7434 } 7435 7436 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){ 7437 NamespaceDecl *Std = S.getStdNamespace(); 7438 if (!Std) { 7439 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7440 return nullptr; 7441 } 7442 7443 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), 7444 Loc, Sema::LookupOrdinaryName); 7445 if (!S.LookupQualifiedName(Result, Std)) { 7446 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7447 return nullptr; 7448 } 7449 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>(); 7450 if (!Template) { 7451 Result.suppressDiagnostics(); 7452 // We found something weird. Complain about the first thing we found. 7453 NamedDecl *Found = *Result.begin(); 7454 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list); 7455 return nullptr; 7456 } 7457 7458 // We found some template called std::initializer_list. Now verify that it's 7459 // correct. 7460 TemplateParameterList *Params = Template->getTemplateParameters(); 7461 if (Params->getMinRequiredArguments() != 1 || 7462 !isa<TemplateTypeParmDecl>(Params->getParam(0))) { 7463 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list); 7464 return nullptr; 7465 } 7466 7467 return Template; 7468 } 7469 7470 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) { 7471 if (!StdInitializerList) { 7472 StdInitializerList = LookupStdInitializerList(*this, Loc); 7473 if (!StdInitializerList) 7474 return QualType(); 7475 } 7476 7477 TemplateArgumentListInfo Args(Loc, Loc); 7478 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element), 7479 Context.getTrivialTypeSourceInfo(Element, 7480 Loc))); 7481 return Context.getCanonicalType( 7482 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args)); 7483 } 7484 7485 bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) { 7486 // C++ [dcl.init.list]p2: 7487 // A constructor is an initializer-list constructor if its first parameter 7488 // is of type std::initializer_list<E> or reference to possibly cv-qualified 7489 // std::initializer_list<E> for some type E, and either there are no other 7490 // parameters or else all other parameters have default arguments. 7491 if (Ctor->getNumParams() < 1 || 7492 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg())) 7493 return false; 7494 7495 QualType ArgType = Ctor->getParamDecl(0)->getType(); 7496 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>()) 7497 ArgType = RT->getPointeeType().getUnqualifiedType(); 7498 7499 return isStdInitializerList(ArgType, nullptr); 7500 } 7501 7502 /// \brief Determine whether a using statement is in a context where it will be 7503 /// apply in all contexts. 7504 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) { 7505 switch (CurContext->getDeclKind()) { 7506 case Decl::TranslationUnit: 7507 return true; 7508 case Decl::LinkageSpec: 7509 return IsUsingDirectiveInToplevelContext(CurContext->getParent()); 7510 default: 7511 return false; 7512 } 7513 } 7514 7515 namespace { 7516 7517 // Callback to only accept typo corrections that are namespaces. 7518 class NamespaceValidatorCCC : public CorrectionCandidateCallback { 7519 public: 7520 bool ValidateCandidate(const TypoCorrection &candidate) override { 7521 if (NamedDecl *ND = candidate.getCorrectionDecl()) 7522 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); 7523 return false; 7524 } 7525 }; 7526 7527 } 7528 7529 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, 7530 CXXScopeSpec &SS, 7531 SourceLocation IdentLoc, 7532 IdentifierInfo *Ident) { 7533 R.clear(); 7534 if (TypoCorrection Corrected = 7535 S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS, 7536 llvm::make_unique<NamespaceValidatorCCC>(), 7537 Sema::CTK_ErrorRecovery)) { 7538 if (DeclContext *DC = S.computeDeclContext(SS, false)) { 7539 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); 7540 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 7541 Ident->getName().equals(CorrectedStr); 7542 S.diagnoseTypo(Corrected, 7543 S.PDiag(diag::err_using_directive_member_suggest) 7544 << Ident << DC << DroppedSpecifier << SS.getRange(), 7545 S.PDiag(diag::note_namespace_defined_here)); 7546 } else { 7547 S.diagnoseTypo(Corrected, 7548 S.PDiag(diag::err_using_directive_suggest) << Ident, 7549 S.PDiag(diag::note_namespace_defined_here)); 7550 } 7551 R.addDecl(Corrected.getFoundDecl()); 7552 return true; 7553 } 7554 return false; 7555 } 7556 7557 Decl *Sema::ActOnUsingDirective(Scope *S, 7558 SourceLocation UsingLoc, 7559 SourceLocation NamespcLoc, 7560 CXXScopeSpec &SS, 7561 SourceLocation IdentLoc, 7562 IdentifierInfo *NamespcName, 7563 AttributeList *AttrList) { 7564 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 7565 assert(NamespcName && "Invalid NamespcName."); 7566 assert(IdentLoc.isValid() && "Invalid NamespceName location."); 7567 7568 // This can only happen along a recovery path. 7569 while (S->isTemplateParamScope()) 7570 S = S->getParent(); 7571 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7572 7573 UsingDirectiveDecl *UDir = nullptr; 7574 NestedNameSpecifier *Qualifier = nullptr; 7575 if (SS.isSet()) 7576 Qualifier = SS.getScopeRep(); 7577 7578 // Lookup namespace name. 7579 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); 7580 LookupParsedName(R, S, &SS); 7581 if (R.isAmbiguous()) 7582 return nullptr; 7583 7584 if (R.empty()) { 7585 R.clear(); 7586 // Allow "using namespace std;" or "using namespace ::std;" even if 7587 // "std" hasn't been defined yet, for GCC compatibility. 7588 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) && 7589 NamespcName->isStr("std")) { 7590 Diag(IdentLoc, diag::ext_using_undefined_std); 7591 R.addDecl(getOrCreateStdNamespace()); 7592 R.resolveKind(); 7593 } 7594 // Otherwise, attempt typo correction. 7595 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName); 7596 } 7597 7598 if (!R.empty()) { 7599 NamedDecl *Named = R.getRepresentativeDecl(); 7600 NamespaceDecl *NS = R.getAsSingle<NamespaceDecl>(); 7601 assert(NS && "expected namespace decl"); 7602 7603 // The use of a nested name specifier may trigger deprecation warnings. 7604 DiagnoseUseOfDecl(Named, IdentLoc); 7605 7606 // C++ [namespace.udir]p1: 7607 // A using-directive specifies that the names in the nominated 7608 // namespace can be used in the scope in which the 7609 // using-directive appears after the using-directive. During 7610 // unqualified name lookup (3.4.1), the names appear as if they 7611 // were declared in the nearest enclosing namespace which 7612 // contains both the using-directive and the nominated 7613 // namespace. [Note: in this context, "contains" means "contains 7614 // directly or indirectly". ] 7615 7616 // Find enclosing context containing both using-directive and 7617 // nominated namespace. 7618 DeclContext *CommonAncestor = cast<DeclContext>(NS); 7619 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) 7620 CommonAncestor = CommonAncestor->getParent(); 7621 7622 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, 7623 SS.getWithLocInContext(Context), 7624 IdentLoc, Named, CommonAncestor); 7625 7626 if (IsUsingDirectiveInToplevelContext(CurContext) && 7627 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) { 7628 Diag(IdentLoc, diag::warn_using_directive_in_header); 7629 } 7630 7631 PushUsingDirective(S, UDir); 7632 } else { 7633 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 7634 } 7635 7636 if (UDir) 7637 ProcessDeclAttributeList(S, UDir, AttrList); 7638 7639 return UDir; 7640 } 7641 7642 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { 7643 // If the scope has an associated entity and the using directive is at 7644 // namespace or translation unit scope, add the UsingDirectiveDecl into 7645 // its lookup structure so qualified name lookup can find it. 7646 DeclContext *Ctx = S->getEntity(); 7647 if (Ctx && !Ctx->isFunctionOrMethod()) 7648 Ctx->addDecl(UDir); 7649 else 7650 // Otherwise, it is at block scope. The using-directives will affect lookup 7651 // only to the end of the scope. 7652 S->PushUsingDirective(UDir); 7653 } 7654 7655 7656 Decl *Sema::ActOnUsingDeclaration(Scope *S, 7657 AccessSpecifier AS, 7658 bool HasUsingKeyword, 7659 SourceLocation UsingLoc, 7660 CXXScopeSpec &SS, 7661 UnqualifiedId &Name, 7662 AttributeList *AttrList, 7663 bool HasTypenameKeyword, 7664 SourceLocation TypenameLoc) { 7665 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7666 7667 switch (Name.getKind()) { 7668 case UnqualifiedId::IK_ImplicitSelfParam: 7669 case UnqualifiedId::IK_Identifier: 7670 case UnqualifiedId::IK_OperatorFunctionId: 7671 case UnqualifiedId::IK_LiteralOperatorId: 7672 case UnqualifiedId::IK_ConversionFunctionId: 7673 break; 7674 7675 case UnqualifiedId::IK_ConstructorName: 7676 case UnqualifiedId::IK_ConstructorTemplateId: 7677 // C++11 inheriting constructors. 7678 Diag(Name.getLocStart(), 7679 getLangOpts().CPlusPlus11 ? 7680 diag::warn_cxx98_compat_using_decl_constructor : 7681 diag::err_using_decl_constructor) 7682 << SS.getRange(); 7683 7684 if (getLangOpts().CPlusPlus11) break; 7685 7686 return nullptr; 7687 7688 case UnqualifiedId::IK_DestructorName: 7689 Diag(Name.getLocStart(), diag::err_using_decl_destructor) 7690 << SS.getRange(); 7691 return nullptr; 7692 7693 case UnqualifiedId::IK_TemplateId: 7694 Diag(Name.getLocStart(), diag::err_using_decl_template_id) 7695 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc); 7696 return nullptr; 7697 } 7698 7699 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); 7700 DeclarationName TargetName = TargetNameInfo.getName(); 7701 if (!TargetName) 7702 return nullptr; 7703 7704 // Warn about access declarations. 7705 if (!HasUsingKeyword) { 7706 Diag(Name.getLocStart(), 7707 getLangOpts().CPlusPlus11 ? diag::err_access_decl 7708 : diag::warn_access_decl_deprecated) 7709 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using "); 7710 } 7711 7712 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) || 7713 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration)) 7714 return nullptr; 7715 7716 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, 7717 TargetNameInfo, AttrList, 7718 /* IsInstantiation */ false, 7719 HasTypenameKeyword, TypenameLoc); 7720 if (UD) 7721 PushOnScopeChains(UD, S, /*AddToContext*/ false); 7722 7723 return UD; 7724 } 7725 7726 /// \brief Determine whether a using declaration considers the given 7727 /// declarations as "equivalent", e.g., if they are redeclarations of 7728 /// the same entity or are both typedefs of the same type. 7729 static bool 7730 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) { 7731 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) 7732 return true; 7733 7734 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1)) 7735 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) 7736 return Context.hasSameType(TD1->getUnderlyingType(), 7737 TD2->getUnderlyingType()); 7738 7739 return false; 7740 } 7741 7742 7743 /// Determines whether to create a using shadow decl for a particular 7744 /// decl, given the set of decls existing prior to this using lookup. 7745 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, 7746 const LookupResult &Previous, 7747 UsingShadowDecl *&PrevShadow) { 7748 // Diagnose finding a decl which is not from a base class of the 7749 // current class. We do this now because there are cases where this 7750 // function will silently decide not to build a shadow decl, which 7751 // will pre-empt further diagnostics. 7752 // 7753 // We don't need to do this in C++11 because we do the check once on 7754 // the qualifier. 7755 // 7756 // FIXME: diagnose the following if we care enough: 7757 // struct A { int foo; }; 7758 // struct B : A { using A::foo; }; 7759 // template <class T> struct C : A {}; 7760 // template <class T> struct D : C<T> { using B::foo; } // <--- 7761 // This is invalid (during instantiation) in C++03 because B::foo 7762 // resolves to the using decl in B, which is not a base class of D<T>. 7763 // We can't diagnose it immediately because C<T> is an unknown 7764 // specialization. The UsingShadowDecl in D<T> then points directly 7765 // to A::foo, which will look well-formed when we instantiate. 7766 // The right solution is to not collapse the shadow-decl chain. 7767 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) { 7768 DeclContext *OrigDC = Orig->getDeclContext(); 7769 7770 // Handle enums and anonymous structs. 7771 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent(); 7772 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC); 7773 while (OrigRec->isAnonymousStructOrUnion()) 7774 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext()); 7775 7776 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) { 7777 if (OrigDC == CurContext) { 7778 Diag(Using->getLocation(), 7779 diag::err_using_decl_nested_name_specifier_is_current_class) 7780 << Using->getQualifierLoc().getSourceRange(); 7781 Diag(Orig->getLocation(), diag::note_using_decl_target); 7782 return true; 7783 } 7784 7785 Diag(Using->getQualifierLoc().getBeginLoc(), 7786 diag::err_using_decl_nested_name_specifier_is_not_base_class) 7787 << Using->getQualifier() 7788 << cast<CXXRecordDecl>(CurContext) 7789 << Using->getQualifierLoc().getSourceRange(); 7790 Diag(Orig->getLocation(), diag::note_using_decl_target); 7791 return true; 7792 } 7793 } 7794 7795 if (Previous.empty()) return false; 7796 7797 NamedDecl *Target = Orig; 7798 if (isa<UsingShadowDecl>(Target)) 7799 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7800 7801 // If the target happens to be one of the previous declarations, we 7802 // don't have a conflict. 7803 // 7804 // FIXME: but we might be increasing its access, in which case we 7805 // should redeclare it. 7806 NamedDecl *NonTag = nullptr, *Tag = nullptr; 7807 bool FoundEquivalentDecl = false; 7808 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7809 I != E; ++I) { 7810 NamedDecl *D = (*I)->getUnderlyingDecl(); 7811 // We can have UsingDecls in our Previous results because we use the same 7812 // LookupResult for checking whether the UsingDecl itself is a valid 7813 // redeclaration. 7814 if (isa<UsingDecl>(D)) 7815 continue; 7816 7817 if (IsEquivalentForUsingDecl(Context, D, Target)) { 7818 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I)) 7819 PrevShadow = Shadow; 7820 FoundEquivalentDecl = true; 7821 } else if (isEquivalentInternalLinkageDeclaration(D, Target)) { 7822 // We don't conflict with an existing using shadow decl of an equivalent 7823 // declaration, but we're not a redeclaration of it. 7824 FoundEquivalentDecl = true; 7825 } 7826 7827 if (isVisible(D)) 7828 (isa<TagDecl>(D) ? Tag : NonTag) = D; 7829 } 7830 7831 if (FoundEquivalentDecl) 7832 return false; 7833 7834 if (FunctionDecl *FD = Target->getAsFunction()) { 7835 NamedDecl *OldDecl = nullptr; 7836 switch (CheckOverload(nullptr, FD, Previous, OldDecl, 7837 /*IsForUsingDecl*/ true)) { 7838 case Ovl_Overload: 7839 return false; 7840 7841 case Ovl_NonFunction: 7842 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7843 break; 7844 7845 // We found a decl with the exact signature. 7846 case Ovl_Match: 7847 // If we're in a record, we want to hide the target, so we 7848 // return true (without a diagnostic) to tell the caller not to 7849 // build a shadow decl. 7850 if (CurContext->isRecord()) 7851 return true; 7852 7853 // If we're not in a record, this is an error. 7854 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7855 break; 7856 } 7857 7858 Diag(Target->getLocation(), diag::note_using_decl_target); 7859 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict); 7860 return true; 7861 } 7862 7863 // Target is not a function. 7864 7865 if (isa<TagDecl>(Target)) { 7866 // No conflict between a tag and a non-tag. 7867 if (!Tag) return false; 7868 7869 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7870 Diag(Target->getLocation(), diag::note_using_decl_target); 7871 Diag(Tag->getLocation(), diag::note_using_decl_conflict); 7872 return true; 7873 } 7874 7875 // No conflict between a tag and a non-tag. 7876 if (!NonTag) return false; 7877 7878 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7879 Diag(Target->getLocation(), diag::note_using_decl_target); 7880 Diag(NonTag->getLocation(), diag::note_using_decl_conflict); 7881 return true; 7882 } 7883 7884 /// Builds a shadow declaration corresponding to a 'using' declaration. 7885 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S, 7886 UsingDecl *UD, 7887 NamedDecl *Orig, 7888 UsingShadowDecl *PrevDecl) { 7889 7890 // If we resolved to another shadow declaration, just coalesce them. 7891 NamedDecl *Target = Orig; 7892 if (isa<UsingShadowDecl>(Target)) { 7893 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7894 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration"); 7895 } 7896 7897 UsingShadowDecl *Shadow 7898 = UsingShadowDecl::Create(Context, CurContext, 7899 UD->getLocation(), UD, Target); 7900 UD->addShadowDecl(Shadow); 7901 7902 Shadow->setAccess(UD->getAccess()); 7903 if (Orig->isInvalidDecl() || UD->isInvalidDecl()) 7904 Shadow->setInvalidDecl(); 7905 7906 Shadow->setPreviousDecl(PrevDecl); 7907 7908 if (S) 7909 PushOnScopeChains(Shadow, S); 7910 else 7911 CurContext->addDecl(Shadow); 7912 7913 7914 return Shadow; 7915 } 7916 7917 /// Hides a using shadow declaration. This is required by the current 7918 /// using-decl implementation when a resolvable using declaration in a 7919 /// class is followed by a declaration which would hide or override 7920 /// one or more of the using decl's targets; for example: 7921 /// 7922 /// struct Base { void foo(int); }; 7923 /// struct Derived : Base { 7924 /// using Base::foo; 7925 /// void foo(int); 7926 /// }; 7927 /// 7928 /// The governing language is C++03 [namespace.udecl]p12: 7929 /// 7930 /// When a using-declaration brings names from a base class into a 7931 /// derived class scope, member functions in the derived class 7932 /// override and/or hide member functions with the same name and 7933 /// parameter types in a base class (rather than conflicting). 7934 /// 7935 /// There are two ways to implement this: 7936 /// (1) optimistically create shadow decls when they're not hidden 7937 /// by existing declarations, or 7938 /// (2) don't create any shadow decls (or at least don't make them 7939 /// visible) until we've fully parsed/instantiated the class. 7940 /// The problem with (1) is that we might have to retroactively remove 7941 /// a shadow decl, which requires several O(n) operations because the 7942 /// decl structures are (very reasonably) not designed for removal. 7943 /// (2) avoids this but is very fiddly and phase-dependent. 7944 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { 7945 if (Shadow->getDeclName().getNameKind() == 7946 DeclarationName::CXXConversionFunctionName) 7947 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); 7948 7949 // Remove it from the DeclContext... 7950 Shadow->getDeclContext()->removeDecl(Shadow); 7951 7952 // ...and the scope, if applicable... 7953 if (S) { 7954 S->RemoveDecl(Shadow); 7955 IdResolver.RemoveDecl(Shadow); 7956 } 7957 7958 // ...and the using decl. 7959 Shadow->getUsingDecl()->removeShadowDecl(Shadow); 7960 7961 // TODO: complain somehow if Shadow was used. It shouldn't 7962 // be possible for this to happen, because...? 7963 } 7964 7965 /// Find the base specifier for a base class with the given type. 7966 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived, 7967 QualType DesiredBase, 7968 bool &AnyDependentBases) { 7969 // Check whether the named type is a direct base class. 7970 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified(); 7971 for (auto &Base : Derived->bases()) { 7972 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified(); 7973 if (CanonicalDesiredBase == BaseType) 7974 return &Base; 7975 if (BaseType->isDependentType()) 7976 AnyDependentBases = true; 7977 } 7978 return nullptr; 7979 } 7980 7981 namespace { 7982 class UsingValidatorCCC : public CorrectionCandidateCallback { 7983 public: 7984 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation, 7985 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf) 7986 : HasTypenameKeyword(HasTypenameKeyword), 7987 IsInstantiation(IsInstantiation), OldNNS(NNS), 7988 RequireMemberOf(RequireMemberOf) {} 7989 7990 bool ValidateCandidate(const TypoCorrection &Candidate) override { 7991 NamedDecl *ND = Candidate.getCorrectionDecl(); 7992 7993 // Keywords are not valid here. 7994 if (!ND || isa<NamespaceDecl>(ND)) 7995 return false; 7996 7997 // Completely unqualified names are invalid for a 'using' declaration. 7998 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier()) 7999 return false; 8000 8001 // FIXME: Don't correct to a name that CheckUsingDeclRedeclaration would 8002 // reject. 8003 8004 if (RequireMemberOf) { 8005 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 8006 if (FoundRecord && FoundRecord->isInjectedClassName()) { 8007 // No-one ever wants a using-declaration to name an injected-class-name 8008 // of a base class, unless they're declaring an inheriting constructor. 8009 ASTContext &Ctx = ND->getASTContext(); 8010 if (!Ctx.getLangOpts().CPlusPlus11) 8011 return false; 8012 QualType FoundType = Ctx.getRecordType(FoundRecord); 8013 8014 // Check that the injected-class-name is named as a member of its own 8015 // type; we don't want to suggest 'using Derived::Base;', since that 8016 // means something else. 8017 NestedNameSpecifier *Specifier = 8018 Candidate.WillReplaceSpecifier() 8019 ? Candidate.getCorrectionSpecifier() 8020 : OldNNS; 8021 if (!Specifier->getAsType() || 8022 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType)) 8023 return false; 8024 8025 // Check that this inheriting constructor declaration actually names a 8026 // direct base class of the current class. 8027 bool AnyDependentBases = false; 8028 if (!findDirectBaseWithType(RequireMemberOf, 8029 Ctx.getRecordType(FoundRecord), 8030 AnyDependentBases) && 8031 !AnyDependentBases) 8032 return false; 8033 } else { 8034 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext()); 8035 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD)) 8036 return false; 8037 8038 // FIXME: Check that the base class member is accessible? 8039 } 8040 } else { 8041 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 8042 if (FoundRecord && FoundRecord->isInjectedClassName()) 8043 return false; 8044 } 8045 8046 if (isa<TypeDecl>(ND)) 8047 return HasTypenameKeyword || !IsInstantiation; 8048 8049 return !HasTypenameKeyword; 8050 } 8051 8052 private: 8053 bool HasTypenameKeyword; 8054 bool IsInstantiation; 8055 NestedNameSpecifier *OldNNS; 8056 CXXRecordDecl *RequireMemberOf; 8057 }; 8058 } // end anonymous namespace 8059 8060 /// Builds a using declaration. 8061 /// 8062 /// \param IsInstantiation - Whether this call arises from an 8063 /// instantiation of an unresolved using declaration. We treat 8064 /// the lookup differently for these declarations. 8065 NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS, 8066 SourceLocation UsingLoc, 8067 CXXScopeSpec &SS, 8068 DeclarationNameInfo NameInfo, 8069 AttributeList *AttrList, 8070 bool IsInstantiation, 8071 bool HasTypenameKeyword, 8072 SourceLocation TypenameLoc) { 8073 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 8074 SourceLocation IdentLoc = NameInfo.getLoc(); 8075 assert(IdentLoc.isValid() && "Invalid TargetName location."); 8076 8077 // FIXME: We ignore attributes for now. 8078 8079 if (SS.isEmpty()) { 8080 Diag(IdentLoc, diag::err_using_requires_qualname); 8081 return nullptr; 8082 } 8083 8084 // Do the redeclaration lookup in the current scope. 8085 LookupResult Previous(*this, NameInfo, LookupUsingDeclName, 8086 ForRedeclaration); 8087 Previous.setHideTags(false); 8088 if (S) { 8089 LookupName(Previous, S); 8090 8091 // It is really dumb that we have to do this. 8092 LookupResult::Filter F = Previous.makeFilter(); 8093 while (F.hasNext()) { 8094 NamedDecl *D = F.next(); 8095 if (!isDeclInScope(D, CurContext, S)) 8096 F.erase(); 8097 // If we found a local extern declaration that's not ordinarily visible, 8098 // and this declaration is being added to a non-block scope, ignore it. 8099 // We're only checking for scope conflicts here, not also for violations 8100 // of the linkage rules. 8101 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() && 8102 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary)) 8103 F.erase(); 8104 } 8105 F.done(); 8106 } else { 8107 assert(IsInstantiation && "no scope in non-instantiation"); 8108 assert(CurContext->isRecord() && "scope not record in instantiation"); 8109 LookupQualifiedName(Previous, CurContext); 8110 } 8111 8112 // Check for invalid redeclarations. 8113 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, 8114 SS, IdentLoc, Previous)) 8115 return nullptr; 8116 8117 // Check for bad qualifiers. 8118 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) 8119 return nullptr; 8120 8121 DeclContext *LookupContext = computeDeclContext(SS); 8122 NamedDecl *D; 8123 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 8124 if (!LookupContext) { 8125 if (HasTypenameKeyword) { 8126 // FIXME: not all declaration name kinds are legal here 8127 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, 8128 UsingLoc, TypenameLoc, 8129 QualifierLoc, 8130 IdentLoc, NameInfo.getName()); 8131 } else { 8132 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, 8133 QualifierLoc, NameInfo); 8134 } 8135 D->setAccess(AS); 8136 CurContext->addDecl(D); 8137 return D; 8138 } 8139 8140 auto Build = [&](bool Invalid) { 8141 UsingDecl *UD = 8142 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo, 8143 HasTypenameKeyword); 8144 UD->setAccess(AS); 8145 CurContext->addDecl(UD); 8146 UD->setInvalidDecl(Invalid); 8147 return UD; 8148 }; 8149 auto BuildInvalid = [&]{ return Build(true); }; 8150 auto BuildValid = [&]{ return Build(false); }; 8151 8152 if (RequireCompleteDeclContext(SS, LookupContext)) 8153 return BuildInvalid(); 8154 8155 // Look up the target name. 8156 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8157 8158 // Unlike most lookups, we don't always want to hide tag 8159 // declarations: tag names are visible through the using declaration 8160 // even if hidden by ordinary names, *except* in a dependent context 8161 // where it's important for the sanity of two-phase lookup. 8162 if (!IsInstantiation) 8163 R.setHideTags(false); 8164 8165 // For the purposes of this lookup, we have a base object type 8166 // equal to that of the current context. 8167 if (CurContext->isRecord()) { 8168 R.setBaseObjectType( 8169 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext))); 8170 } 8171 8172 LookupQualifiedName(R, LookupContext); 8173 8174 // Try to correct typos if possible. If constructor name lookup finds no 8175 // results, that means the named class has no explicit constructors, and we 8176 // suppressed declaring implicit ones (probably because it's dependent or 8177 // invalid). 8178 if (R.empty() && 8179 NameInfo.getName().getNameKind() != DeclarationName::CXXConstructorName) { 8180 if (TypoCorrection Corrected = CorrectTypo( 8181 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 8182 llvm::make_unique<UsingValidatorCCC>( 8183 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(), 8184 dyn_cast<CXXRecordDecl>(CurContext)), 8185 CTK_ErrorRecovery)) { 8186 // We reject any correction for which ND would be NULL. 8187 NamedDecl *ND = Corrected.getCorrectionDecl(); 8188 8189 // We reject candidates where DroppedSpecifier == true, hence the 8190 // literal '0' below. 8191 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 8192 << NameInfo.getName() << LookupContext << 0 8193 << SS.getRange()); 8194 8195 // If we corrected to an inheriting constructor, handle it as one. 8196 auto *RD = dyn_cast<CXXRecordDecl>(ND); 8197 if (RD && RD->isInjectedClassName()) { 8198 // Fix up the information we'll use to build the using declaration. 8199 if (Corrected.WillReplaceSpecifier()) { 8200 NestedNameSpecifierLocBuilder Builder; 8201 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 8202 QualifierLoc.getSourceRange()); 8203 QualifierLoc = Builder.getWithLocInContext(Context); 8204 } 8205 8206 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 8207 Context.getCanonicalType(Context.getRecordType(RD)))); 8208 NameInfo.setNamedTypeInfo(nullptr); 8209 for (auto *Ctor : LookupConstructors(RD)) 8210 R.addDecl(Ctor); 8211 } else { 8212 // FIXME: Pick up all the declarations if we found an overloaded function. 8213 NameInfo.setName(ND->getDeclName()); 8214 R.addDecl(ND); 8215 } 8216 } else { 8217 Diag(IdentLoc, diag::err_no_member) 8218 << NameInfo.getName() << LookupContext << SS.getRange(); 8219 return BuildInvalid(); 8220 } 8221 } 8222 8223 if (R.isAmbiguous()) 8224 return BuildInvalid(); 8225 8226 if (HasTypenameKeyword) { 8227 // If we asked for a typename and got a non-type decl, error out. 8228 if (!R.getAsSingle<TypeDecl>()) { 8229 Diag(IdentLoc, diag::err_using_typename_non_type); 8230 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 8231 Diag((*I)->getUnderlyingDecl()->getLocation(), 8232 diag::note_using_decl_target); 8233 return BuildInvalid(); 8234 } 8235 } else { 8236 // If we asked for a non-typename and we got a type, error out, 8237 // but only if this is an instantiation of an unresolved using 8238 // decl. Otherwise just silently find the type name. 8239 if (IsInstantiation && R.getAsSingle<TypeDecl>()) { 8240 Diag(IdentLoc, diag::err_using_dependent_value_is_type); 8241 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target); 8242 return BuildInvalid(); 8243 } 8244 } 8245 8246 // C++14 [namespace.udecl]p6: 8247 // A using-declaration shall not name a namespace. 8248 if (R.getAsSingle<NamespaceDecl>()) { 8249 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace) 8250 << SS.getRange(); 8251 return BuildInvalid(); 8252 } 8253 8254 // C++14 [namespace.udecl]p7: 8255 // A using-declaration shall not name a scoped enumerator. 8256 if (auto *ED = R.getAsSingle<EnumConstantDecl>()) { 8257 if (cast<EnumDecl>(ED->getDeclContext())->isScoped()) { 8258 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_scoped_enum) 8259 << SS.getRange(); 8260 return BuildInvalid(); 8261 } 8262 } 8263 8264 UsingDecl *UD = BuildValid(); 8265 8266 // The normal rules do not apply to inheriting constructor declarations. 8267 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) { 8268 // Suppress access diagnostics; the access check is instead performed at the 8269 // point of use for an inheriting constructor. 8270 R.suppressDiagnostics(); 8271 CheckInheritingConstructorUsingDecl(UD); 8272 return UD; 8273 } 8274 8275 // Otherwise, look up the target name. 8276 8277 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 8278 UsingShadowDecl *PrevDecl = nullptr; 8279 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl)) 8280 BuildUsingShadowDecl(S, UD, *I, PrevDecl); 8281 } 8282 8283 return UD; 8284 } 8285 8286 /// Additional checks for a using declaration referring to a constructor name. 8287 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) { 8288 assert(!UD->hasTypename() && "expecting a constructor name"); 8289 8290 const Type *SourceType = UD->getQualifier()->getAsType(); 8291 assert(SourceType && 8292 "Using decl naming constructor doesn't have type in scope spec."); 8293 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext); 8294 8295 // Check whether the named type is a direct base class. 8296 bool AnyDependentBases = false; 8297 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), 8298 AnyDependentBases); 8299 if (!Base && !AnyDependentBases) { 8300 Diag(UD->getUsingLoc(), 8301 diag::err_using_decl_constructor_not_in_direct_base) 8302 << UD->getNameInfo().getSourceRange() 8303 << QualType(SourceType, 0) << TargetClass; 8304 UD->setInvalidDecl(); 8305 return true; 8306 } 8307 8308 if (Base) 8309 Base->setInheritConstructors(); 8310 8311 return false; 8312 } 8313 8314 /// Checks that the given using declaration is not an invalid 8315 /// redeclaration. Note that this is checking only for the using decl 8316 /// itself, not for any ill-formedness among the UsingShadowDecls. 8317 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc, 8318 bool HasTypenameKeyword, 8319 const CXXScopeSpec &SS, 8320 SourceLocation NameLoc, 8321 const LookupResult &Prev) { 8322 // C++03 [namespace.udecl]p8: 8323 // C++0x [namespace.udecl]p10: 8324 // A using-declaration is a declaration and can therefore be used 8325 // repeatedly where (and only where) multiple declarations are 8326 // allowed. 8327 // 8328 // That's in non-member contexts. 8329 if (!CurContext->getRedeclContext()->isRecord()) 8330 return false; 8331 8332 NestedNameSpecifier *Qual = SS.getScopeRep(); 8333 8334 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) { 8335 NamedDecl *D = *I; 8336 8337 bool DTypename; 8338 NestedNameSpecifier *DQual; 8339 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { 8340 DTypename = UD->hasTypename(); 8341 DQual = UD->getQualifier(); 8342 } else if (UnresolvedUsingValueDecl *UD 8343 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 8344 DTypename = false; 8345 DQual = UD->getQualifier(); 8346 } else if (UnresolvedUsingTypenameDecl *UD 8347 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 8348 DTypename = true; 8349 DQual = UD->getQualifier(); 8350 } else continue; 8351 8352 // using decls differ if one says 'typename' and the other doesn't. 8353 // FIXME: non-dependent using decls? 8354 if (HasTypenameKeyword != DTypename) continue; 8355 8356 // using decls differ if they name different scopes (but note that 8357 // template instantiation can cause this check to trigger when it 8358 // didn't before instantiation). 8359 if (Context.getCanonicalNestedNameSpecifier(Qual) != 8360 Context.getCanonicalNestedNameSpecifier(DQual)) 8361 continue; 8362 8363 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange(); 8364 Diag(D->getLocation(), diag::note_using_decl) << 1; 8365 return true; 8366 } 8367 8368 return false; 8369 } 8370 8371 8372 /// Checks that the given nested-name qualifier used in a using decl 8373 /// in the current context is appropriately related to the current 8374 /// scope. If an error is found, diagnoses it and returns true. 8375 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc, 8376 const CXXScopeSpec &SS, 8377 const DeclarationNameInfo &NameInfo, 8378 SourceLocation NameLoc) { 8379 DeclContext *NamedContext = computeDeclContext(SS); 8380 8381 if (!CurContext->isRecord()) { 8382 // C++03 [namespace.udecl]p3: 8383 // C++0x [namespace.udecl]p8: 8384 // A using-declaration for a class member shall be a member-declaration. 8385 8386 // If we weren't able to compute a valid scope, it must be a 8387 // dependent class scope. 8388 if (!NamedContext || NamedContext->getRedeclContext()->isRecord()) { 8389 auto *RD = NamedContext 8390 ? cast<CXXRecordDecl>(NamedContext->getRedeclContext()) 8391 : nullptr; 8392 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD)) 8393 RD = nullptr; 8394 8395 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member) 8396 << SS.getRange(); 8397 8398 // If we have a complete, non-dependent source type, try to suggest a 8399 // way to get the same effect. 8400 if (!RD) 8401 return true; 8402 8403 // Find what this using-declaration was referring to. 8404 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8405 R.setHideTags(false); 8406 R.suppressDiagnostics(); 8407 LookupQualifiedName(R, RD); 8408 8409 if (R.getAsSingle<TypeDecl>()) { 8410 if (getLangOpts().CPlusPlus11) { 8411 // Convert 'using X::Y;' to 'using Y = X::Y;'. 8412 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround) 8413 << 0 // alias declaration 8414 << FixItHint::CreateInsertion(SS.getBeginLoc(), 8415 NameInfo.getName().getAsString() + 8416 " = "); 8417 } else { 8418 // Convert 'using X::Y;' to 'typedef X::Y Y;'. 8419 SourceLocation InsertLoc = 8420 getLocForEndOfToken(NameInfo.getLocEnd()); 8421 Diag(InsertLoc, diag::note_using_decl_class_member_workaround) 8422 << 1 // typedef declaration 8423 << FixItHint::CreateReplacement(UsingLoc, "typedef") 8424 << FixItHint::CreateInsertion( 8425 InsertLoc, " " + NameInfo.getName().getAsString()); 8426 } 8427 } else if (R.getAsSingle<VarDecl>()) { 8428 // Don't provide a fixit outside C++11 mode; we don't want to suggest 8429 // repeating the type of the static data member here. 8430 FixItHint FixIt; 8431 if (getLangOpts().CPlusPlus11) { 8432 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 8433 FixIt = FixItHint::CreateReplacement( 8434 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = "); 8435 } 8436 8437 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 8438 << 2 // reference declaration 8439 << FixIt; 8440 } else if (R.getAsSingle<EnumConstantDecl>()) { 8441 // Don't provide a fixit outside C++11 mode; we don't want to suggest 8442 // repeating the type of the enumeration here, and we can't do so if 8443 // the type is anonymous. 8444 FixItHint FixIt; 8445 if (getLangOpts().CPlusPlus11) { 8446 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 8447 FixIt = FixItHint::CreateReplacement( 8448 UsingLoc, "constexpr auto " + NameInfo.getName().getAsString() + " = "); 8449 } 8450 8451 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 8452 << (getLangOpts().CPlusPlus11 ? 4 : 3) // const[expr] variable 8453 << FixIt; 8454 } 8455 return true; 8456 } 8457 8458 // Otherwise, everything is known to be fine. 8459 return false; 8460 } 8461 8462 // The current scope is a record. 8463 8464 // If the named context is dependent, we can't decide much. 8465 if (!NamedContext) { 8466 // FIXME: in C++0x, we can diagnose if we can prove that the 8467 // nested-name-specifier does not refer to a base class, which is 8468 // still possible in some cases. 8469 8470 // Otherwise we have to conservatively report that things might be 8471 // okay. 8472 return false; 8473 } 8474 8475 if (!NamedContext->isRecord()) { 8476 // Ideally this would point at the last name in the specifier, 8477 // but we don't have that level of source info. 8478 Diag(SS.getRange().getBegin(), 8479 diag::err_using_decl_nested_name_specifier_is_not_class) 8480 << SS.getScopeRep() << SS.getRange(); 8481 return true; 8482 } 8483 8484 if (!NamedContext->isDependentContext() && 8485 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext)) 8486 return true; 8487 8488 if (getLangOpts().CPlusPlus11) { 8489 // C++11 [namespace.udecl]p3: 8490 // In a using-declaration used as a member-declaration, the 8491 // nested-name-specifier shall name a base class of the class 8492 // being defined. 8493 8494 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom( 8495 cast<CXXRecordDecl>(NamedContext))) { 8496 if (CurContext == NamedContext) { 8497 Diag(NameLoc, 8498 diag::err_using_decl_nested_name_specifier_is_current_class) 8499 << SS.getRange(); 8500 return true; 8501 } 8502 8503 Diag(SS.getRange().getBegin(), 8504 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8505 << SS.getScopeRep() 8506 << cast<CXXRecordDecl>(CurContext) 8507 << SS.getRange(); 8508 return true; 8509 } 8510 8511 return false; 8512 } 8513 8514 // C++03 [namespace.udecl]p4: 8515 // A using-declaration used as a member-declaration shall refer 8516 // to a member of a base class of the class being defined [etc.]. 8517 8518 // Salient point: SS doesn't have to name a base class as long as 8519 // lookup only finds members from base classes. Therefore we can 8520 // diagnose here only if we can prove that that can't happen, 8521 // i.e. if the class hierarchies provably don't intersect. 8522 8523 // TODO: it would be nice if "definitely valid" results were cached 8524 // in the UsingDecl and UsingShadowDecl so that these checks didn't 8525 // need to be repeated. 8526 8527 llvm::SmallPtrSet<const CXXRecordDecl *, 4> Bases; 8528 auto Collect = [&Bases](const CXXRecordDecl *Base) { 8529 Bases.insert(Base); 8530 return true; 8531 }; 8532 8533 // Collect all bases. Return false if we find a dependent base. 8534 if (!cast<CXXRecordDecl>(CurContext)->forallBases(Collect)) 8535 return false; 8536 8537 // Returns true if the base is dependent or is one of the accumulated base 8538 // classes. 8539 auto IsNotBase = [&Bases](const CXXRecordDecl *Base) { 8540 return !Bases.count(Base); 8541 }; 8542 8543 // Return false if the class has a dependent base or if it or one 8544 // of its bases is present in the base set of the current context. 8545 if (Bases.count(cast<CXXRecordDecl>(NamedContext)) || 8546 !cast<CXXRecordDecl>(NamedContext)->forallBases(IsNotBase)) 8547 return false; 8548 8549 Diag(SS.getRange().getBegin(), 8550 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8551 << SS.getScopeRep() 8552 << cast<CXXRecordDecl>(CurContext) 8553 << SS.getRange(); 8554 8555 return true; 8556 } 8557 8558 Decl *Sema::ActOnAliasDeclaration(Scope *S, 8559 AccessSpecifier AS, 8560 MultiTemplateParamsArg TemplateParamLists, 8561 SourceLocation UsingLoc, 8562 UnqualifiedId &Name, 8563 AttributeList *AttrList, 8564 TypeResult Type, 8565 Decl *DeclFromDeclSpec) { 8566 // Skip up to the relevant declaration scope. 8567 while (S->isTemplateParamScope()) 8568 S = S->getParent(); 8569 assert((S->getFlags() & Scope::DeclScope) && 8570 "got alias-declaration outside of declaration scope"); 8571 8572 if (Type.isInvalid()) 8573 return nullptr; 8574 8575 bool Invalid = false; 8576 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name); 8577 TypeSourceInfo *TInfo = nullptr; 8578 GetTypeFromParser(Type.get(), &TInfo); 8579 8580 if (DiagnoseClassNameShadow(CurContext, NameInfo)) 8581 return nullptr; 8582 8583 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo, 8584 UPPC_DeclarationType)) { 8585 Invalid = true; 8586 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 8587 TInfo->getTypeLoc().getBeginLoc()); 8588 } 8589 8590 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration); 8591 LookupName(Previous, S); 8592 8593 // Warn about shadowing the name of a template parameter. 8594 if (Previous.isSingleResult() && 8595 Previous.getFoundDecl()->isTemplateParameter()) { 8596 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl()); 8597 Previous.clear(); 8598 } 8599 8600 assert(Name.Kind == UnqualifiedId::IK_Identifier && 8601 "name in alias declaration must be an identifier"); 8602 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc, 8603 Name.StartLocation, 8604 Name.Identifier, TInfo); 8605 8606 NewTD->setAccess(AS); 8607 8608 if (Invalid) 8609 NewTD->setInvalidDecl(); 8610 8611 ProcessDeclAttributeList(S, NewTD, AttrList); 8612 8613 CheckTypedefForVariablyModifiedType(S, NewTD); 8614 Invalid |= NewTD->isInvalidDecl(); 8615 8616 bool Redeclaration = false; 8617 8618 NamedDecl *NewND; 8619 if (TemplateParamLists.size()) { 8620 TypeAliasTemplateDecl *OldDecl = nullptr; 8621 TemplateParameterList *OldTemplateParams = nullptr; 8622 8623 if (TemplateParamLists.size() != 1) { 8624 Diag(UsingLoc, diag::err_alias_template_extra_headers) 8625 << SourceRange(TemplateParamLists[1]->getTemplateLoc(), 8626 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc()); 8627 } 8628 TemplateParameterList *TemplateParams = TemplateParamLists[0]; 8629 8630 // Check that we can declare a template here. 8631 if (CheckTemplateDeclScope(S, TemplateParams)) 8632 return nullptr; 8633 8634 // Only consider previous declarations in the same scope. 8635 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false, 8636 /*ExplicitInstantiationOrSpecialization*/false); 8637 if (!Previous.empty()) { 8638 Redeclaration = true; 8639 8640 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>(); 8641 if (!OldDecl && !Invalid) { 8642 Diag(UsingLoc, diag::err_redefinition_different_kind) 8643 << Name.Identifier; 8644 8645 NamedDecl *OldD = Previous.getRepresentativeDecl(); 8646 if (OldD->getLocation().isValid()) 8647 Diag(OldD->getLocation(), diag::note_previous_definition); 8648 8649 Invalid = true; 8650 } 8651 8652 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) { 8653 if (TemplateParameterListsAreEqual(TemplateParams, 8654 OldDecl->getTemplateParameters(), 8655 /*Complain=*/true, 8656 TPL_TemplateMatch)) 8657 OldTemplateParams = OldDecl->getTemplateParameters(); 8658 else 8659 Invalid = true; 8660 8661 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl(); 8662 if (!Invalid && 8663 !Context.hasSameType(OldTD->getUnderlyingType(), 8664 NewTD->getUnderlyingType())) { 8665 // FIXME: The C++0x standard does not clearly say this is ill-formed, 8666 // but we can't reasonably accept it. 8667 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef) 8668 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType(); 8669 if (OldTD->getLocation().isValid()) 8670 Diag(OldTD->getLocation(), diag::note_previous_definition); 8671 Invalid = true; 8672 } 8673 } 8674 } 8675 8676 // Merge any previous default template arguments into our parameters, 8677 // and check the parameter list. 8678 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams, 8679 TPC_TypeAliasTemplate)) 8680 return nullptr; 8681 8682 TypeAliasTemplateDecl *NewDecl = 8683 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc, 8684 Name.Identifier, TemplateParams, 8685 NewTD); 8686 NewTD->setDescribedAliasTemplate(NewDecl); 8687 8688 NewDecl->setAccess(AS); 8689 8690 if (Invalid) 8691 NewDecl->setInvalidDecl(); 8692 else if (OldDecl) 8693 NewDecl->setPreviousDecl(OldDecl); 8694 8695 NewND = NewDecl; 8696 } else { 8697 if (auto *TD = dyn_cast_or_null<TagDecl>(DeclFromDeclSpec)) { 8698 setTagNameForLinkagePurposes(TD, NewTD); 8699 handleTagNumbering(TD, S); 8700 } 8701 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration); 8702 NewND = NewTD; 8703 } 8704 8705 if (!Redeclaration) 8706 PushOnScopeChains(NewND, S); 8707 8708 ActOnDocumentableDecl(NewND); 8709 return NewND; 8710 } 8711 8712 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, 8713 SourceLocation AliasLoc, 8714 IdentifierInfo *Alias, CXXScopeSpec &SS, 8715 SourceLocation IdentLoc, 8716 IdentifierInfo *Ident) { 8717 8718 // Lookup the namespace name. 8719 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName); 8720 LookupParsedName(R, S, &SS); 8721 8722 if (R.isAmbiguous()) 8723 return nullptr; 8724 8725 if (R.empty()) { 8726 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) { 8727 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 8728 return nullptr; 8729 } 8730 } 8731 assert(!R.isAmbiguous() && !R.empty()); 8732 NamedDecl *ND = R.getRepresentativeDecl(); 8733 8734 // Check if we have a previous declaration with the same name. 8735 LookupResult PrevR(*this, Alias, AliasLoc, LookupOrdinaryName, 8736 ForRedeclaration); 8737 LookupName(PrevR, S); 8738 8739 // Check we're not shadowing a template parameter. 8740 if (PrevR.isSingleResult() && PrevR.getFoundDecl()->isTemplateParameter()) { 8741 DiagnoseTemplateParameterShadow(AliasLoc, PrevR.getFoundDecl()); 8742 PrevR.clear(); 8743 } 8744 8745 // Filter out any other lookup result from an enclosing scope. 8746 FilterLookupForScope(PrevR, CurContext, S, /*ConsiderLinkage*/false, 8747 /*AllowInlineNamespace*/false); 8748 8749 // Find the previous declaration and check that we can redeclare it. 8750 NamespaceAliasDecl *Prev = nullptr; 8751 if (PrevR.isSingleResult()) { 8752 NamedDecl *PrevDecl = PrevR.getRepresentativeDecl(); 8753 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) { 8754 // We already have an alias with the same name that points to the same 8755 // namespace; check that it matches. 8756 if (AD->getNamespace()->Equals(getNamespaceDecl(ND))) { 8757 Prev = AD; 8758 } else if (isVisible(PrevDecl)) { 8759 Diag(AliasLoc, diag::err_redefinition_different_namespace_alias) 8760 << Alias; 8761 Diag(AD->getLocation(), diag::note_previous_namespace_alias) 8762 << AD->getNamespace(); 8763 return nullptr; 8764 } 8765 } else if (isVisible(PrevDecl)) { 8766 unsigned DiagID = isa<NamespaceDecl>(PrevDecl->getUnderlyingDecl()) 8767 ? diag::err_redefinition 8768 : diag::err_redefinition_different_kind; 8769 Diag(AliasLoc, DiagID) << Alias; 8770 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 8771 return nullptr; 8772 } 8773 } 8774 8775 // The use of a nested name specifier may trigger deprecation warnings. 8776 DiagnoseUseOfDecl(ND, IdentLoc); 8777 8778 NamespaceAliasDecl *AliasDecl = 8779 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc, 8780 Alias, SS.getWithLocInContext(Context), 8781 IdentLoc, ND); 8782 if (Prev) 8783 AliasDecl->setPreviousDecl(Prev); 8784 8785 PushOnScopeChains(AliasDecl, S); 8786 return AliasDecl; 8787 } 8788 8789 Sema::ImplicitExceptionSpecification 8790 Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc, 8791 CXXMethodDecl *MD) { 8792 CXXRecordDecl *ClassDecl = MD->getParent(); 8793 8794 // C++ [except.spec]p14: 8795 // An implicitly declared special member function (Clause 12) shall have an 8796 // exception-specification. [...] 8797 ImplicitExceptionSpecification ExceptSpec(*this); 8798 if (ClassDecl->isInvalidDecl()) 8799 return ExceptSpec; 8800 8801 // Direct base-class constructors. 8802 for (const auto &B : ClassDecl->bases()) { 8803 if (B.isVirtual()) // Handled below. 8804 continue; 8805 8806 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8807 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8808 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8809 // If this is a deleted function, add it anyway. This might be conformant 8810 // with the standard. This might not. I'm not sure. It might not matter. 8811 if (Constructor) 8812 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8813 } 8814 } 8815 8816 // Virtual base-class constructors. 8817 for (const auto &B : ClassDecl->vbases()) { 8818 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8819 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8820 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8821 // If this is a deleted function, add it anyway. This might be conformant 8822 // with the standard. This might not. I'm not sure. It might not matter. 8823 if (Constructor) 8824 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8825 } 8826 } 8827 8828 // Field constructors. 8829 for (const auto *F : ClassDecl->fields()) { 8830 if (F->hasInClassInitializer()) { 8831 if (Expr *E = F->getInClassInitializer()) 8832 ExceptSpec.CalledExpr(E); 8833 } else if (const RecordType *RecordTy 8834 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8835 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8836 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8837 // If this is a deleted function, add it anyway. This might be conformant 8838 // with the standard. This might not. I'm not sure. It might not matter. 8839 // In particular, the problem is that this function never gets called. It 8840 // might just be ill-formed because this function attempts to refer to 8841 // a deleted function here. 8842 if (Constructor) 8843 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8844 } 8845 } 8846 8847 return ExceptSpec; 8848 } 8849 8850 Sema::ImplicitExceptionSpecification 8851 Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) { 8852 CXXRecordDecl *ClassDecl = CD->getParent(); 8853 8854 // C++ [except.spec]p14: 8855 // An inheriting constructor [...] shall have an exception-specification. [...] 8856 ImplicitExceptionSpecification ExceptSpec(*this); 8857 if (ClassDecl->isInvalidDecl()) 8858 return ExceptSpec; 8859 8860 // Inherited constructor. 8861 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor(); 8862 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent(); 8863 // FIXME: Copying or moving the parameters could add extra exceptions to the 8864 // set, as could the default arguments for the inherited constructor. This 8865 // will be addressed when we implement the resolution of core issue 1351. 8866 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD); 8867 8868 // Direct base-class constructors. 8869 for (const auto &B : ClassDecl->bases()) { 8870 if (B.isVirtual()) // Handled below. 8871 continue; 8872 8873 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8874 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8875 if (BaseClassDecl == InheritedDecl) 8876 continue; 8877 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8878 if (Constructor) 8879 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8880 } 8881 } 8882 8883 // Virtual base-class constructors. 8884 for (const auto &B : ClassDecl->vbases()) { 8885 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8886 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8887 if (BaseClassDecl == InheritedDecl) 8888 continue; 8889 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8890 if (Constructor) 8891 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8892 } 8893 } 8894 8895 // Field constructors. 8896 for (const auto *F : ClassDecl->fields()) { 8897 if (F->hasInClassInitializer()) { 8898 if (Expr *E = F->getInClassInitializer()) 8899 ExceptSpec.CalledExpr(E); 8900 } else if (const RecordType *RecordTy 8901 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8902 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8903 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8904 if (Constructor) 8905 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8906 } 8907 } 8908 8909 return ExceptSpec; 8910 } 8911 8912 namespace { 8913 /// RAII object to register a special member as being currently declared. 8914 struct DeclaringSpecialMember { 8915 Sema &S; 8916 Sema::SpecialMemberDecl D; 8917 Sema::ContextRAII SavedContext; 8918 bool WasAlreadyBeingDeclared; 8919 8920 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM) 8921 : S(S), D(RD, CSM), SavedContext(S, RD) { 8922 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second; 8923 if (WasAlreadyBeingDeclared) 8924 // This almost never happens, but if it does, ensure that our cache 8925 // doesn't contain a stale result. 8926 S.SpecialMemberCache.clear(); 8927 8928 // FIXME: Register a note to be produced if we encounter an error while 8929 // declaring the special member. 8930 } 8931 ~DeclaringSpecialMember() { 8932 if (!WasAlreadyBeingDeclared) 8933 S.SpecialMembersBeingDeclared.erase(D); 8934 } 8935 8936 /// \brief Are we already trying to declare this special member? 8937 bool isAlreadyBeingDeclared() const { 8938 return WasAlreadyBeingDeclared; 8939 } 8940 }; 8941 } 8942 8943 void Sema::CheckImplicitSpecialMemberDeclaration(Scope *S, FunctionDecl *FD) { 8944 // Look up any existing declarations, but don't trigger declaration of all 8945 // implicit special members with this name. 8946 DeclarationName Name = FD->getDeclName(); 8947 LookupResult R(*this, Name, SourceLocation(), LookupOrdinaryName, 8948 ForRedeclaration); 8949 for (auto *D : FD->getParent()->lookup(Name)) 8950 if (auto *Acceptable = R.getAcceptableDecl(D)) 8951 R.addDecl(Acceptable); 8952 R.resolveKind(); 8953 R.suppressDiagnostics(); 8954 8955 CheckFunctionDeclaration(S, FD, R, /*IsExplicitSpecialization*/false); 8956 } 8957 8958 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor( 8959 CXXRecordDecl *ClassDecl) { 8960 // C++ [class.ctor]p5: 8961 // A default constructor for a class X is a constructor of class X 8962 // that can be called without an argument. If there is no 8963 // user-declared constructor for class X, a default constructor is 8964 // implicitly declared. An implicitly-declared default constructor 8965 // is an inline public member of its class. 8966 assert(ClassDecl->needsImplicitDefaultConstructor() && 8967 "Should not build implicit default constructor!"); 8968 8969 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor); 8970 if (DSM.isAlreadyBeingDeclared()) 8971 return nullptr; 8972 8973 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 8974 CXXDefaultConstructor, 8975 false); 8976 8977 // Create the actual constructor declaration. 8978 CanQualType ClassType 8979 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 8980 SourceLocation ClassLoc = ClassDecl->getLocation(); 8981 DeclarationName Name 8982 = Context.DeclarationNames.getCXXConstructorName(ClassType); 8983 DeclarationNameInfo NameInfo(Name, ClassLoc); 8984 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( 8985 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), 8986 /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true, 8987 /*isImplicitlyDeclared=*/true, Constexpr); 8988 DefaultCon->setAccess(AS_public); 8989 DefaultCon->setDefaulted(); 8990 8991 if (getLangOpts().CUDA) { 8992 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor, 8993 DefaultCon, 8994 /* ConstRHS */ false, 8995 /* Diagnose */ false); 8996 } 8997 8998 // Build an exception specification pointing back at this constructor. 8999 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon); 9000 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9001 9002 // We don't need to use SpecialMemberIsTrivial here; triviality for default 9003 // constructors is easy to compute. 9004 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); 9005 9006 // Note that we have declared this constructor. 9007 ++ASTContext::NumImplicitDefaultConstructorsDeclared; 9008 9009 Scope *S = getScopeForContext(ClassDecl); 9010 CheckImplicitSpecialMemberDeclaration(S, DefaultCon); 9011 9012 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) 9013 SetDeclDeleted(DefaultCon, ClassLoc); 9014 9015 if (S) 9016 PushOnScopeChains(DefaultCon, S, false); 9017 ClassDecl->addDecl(DefaultCon); 9018 9019 return DefaultCon; 9020 } 9021 9022 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, 9023 CXXConstructorDecl *Constructor) { 9024 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() && 9025 !Constructor->doesThisDeclarationHaveABody() && 9026 !Constructor->isDeleted()) && 9027 "DefineImplicitDefaultConstructor - call it for implicit default ctor"); 9028 9029 CXXRecordDecl *ClassDecl = Constructor->getParent(); 9030 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor"); 9031 9032 SynthesizedFunctionScope Scope(*this, Constructor); 9033 DiagnosticErrorTrap Trap(Diags); 9034 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 9035 Trap.hasErrorOccurred()) { 9036 Diag(CurrentLocation, diag::note_member_synthesized_at) 9037 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl); 9038 Constructor->setInvalidDecl(); 9039 return; 9040 } 9041 9042 // The exception specification is needed because we are defining the 9043 // function. 9044 ResolveExceptionSpec(CurrentLocation, 9045 Constructor->getType()->castAs<FunctionProtoType>()); 9046 9047 SourceLocation Loc = Constructor->getLocEnd().isValid() 9048 ? Constructor->getLocEnd() 9049 : Constructor->getLocation(); 9050 Constructor->setBody(new (Context) CompoundStmt(Loc)); 9051 9052 Constructor->markUsed(Context); 9053 MarkVTableUsed(CurrentLocation, ClassDecl); 9054 9055 if (ASTMutationListener *L = getASTMutationListener()) { 9056 L->CompletedImplicitDefinition(Constructor); 9057 } 9058 9059 DiagnoseUninitializedFields(*this, Constructor); 9060 } 9061 9062 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) { 9063 // Perform any delayed checks on exception specifications. 9064 CheckDelayedMemberExceptionSpecs(); 9065 } 9066 9067 namespace { 9068 /// Information on inheriting constructors to declare. 9069 class InheritingConstructorInfo { 9070 public: 9071 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived) 9072 : SemaRef(SemaRef), Derived(Derived) { 9073 // Mark the constructors that we already have in the derived class. 9074 // 9075 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...] 9076 // unless there is a user-declared constructor with the same signature in 9077 // the class where the using-declaration appears. 9078 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived); 9079 } 9080 9081 void inheritAll(CXXRecordDecl *RD) { 9082 visitAll(RD, &InheritingConstructorInfo::inherit); 9083 } 9084 9085 private: 9086 /// Information about an inheriting constructor. 9087 struct InheritingConstructor { 9088 InheritingConstructor() 9089 : DeclaredInDerived(false), BaseCtor(nullptr), DerivedCtor(nullptr) {} 9090 9091 /// If \c true, a constructor with this signature is already declared 9092 /// in the derived class. 9093 bool DeclaredInDerived; 9094 9095 /// The constructor which is inherited. 9096 const CXXConstructorDecl *BaseCtor; 9097 9098 /// The derived constructor we declared. 9099 CXXConstructorDecl *DerivedCtor; 9100 }; 9101 9102 /// Inheriting constructors with a given canonical type. There can be at 9103 /// most one such non-template constructor, and any number of templated 9104 /// constructors. 9105 struct InheritingConstructorsForType { 9106 InheritingConstructor NonTemplate; 9107 SmallVector<std::pair<TemplateParameterList *, InheritingConstructor>, 4> 9108 Templates; 9109 9110 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) { 9111 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) { 9112 TemplateParameterList *ParamList = FTD->getTemplateParameters(); 9113 for (unsigned I = 0, N = Templates.size(); I != N; ++I) 9114 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first, 9115 false, S.TPL_TemplateMatch)) 9116 return Templates[I].second; 9117 Templates.push_back(std::make_pair(ParamList, InheritingConstructor())); 9118 return Templates.back().second; 9119 } 9120 9121 return NonTemplate; 9122 } 9123 }; 9124 9125 /// Get or create the inheriting constructor record for a constructor. 9126 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor, 9127 QualType CtorType) { 9128 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()] 9129 .getEntry(SemaRef, Ctor); 9130 } 9131 9132 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*); 9133 9134 /// Process all constructors for a class. 9135 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) { 9136 for (const auto *Ctor : RD->ctors()) 9137 (this->*Callback)(Ctor); 9138 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> 9139 I(RD->decls_begin()), E(RD->decls_end()); 9140 I != E; ++I) { 9141 const FunctionDecl *FD = (*I)->getTemplatedDecl(); 9142 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) 9143 (this->*Callback)(CD); 9144 } 9145 } 9146 9147 /// Note that a constructor (or constructor template) was declared in Derived. 9148 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) { 9149 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true; 9150 } 9151 9152 /// Inherit a single constructor. 9153 void inherit(const CXXConstructorDecl *Ctor) { 9154 const FunctionProtoType *CtorType = 9155 Ctor->getType()->castAs<FunctionProtoType>(); 9156 ArrayRef<QualType> ArgTypes = CtorType->getParamTypes(); 9157 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo(); 9158 9159 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent()); 9160 9161 // Core issue (no number yet): the ellipsis is always discarded. 9162 if (EPI.Variadic) { 9163 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis); 9164 SemaRef.Diag(Ctor->getLocation(), 9165 diag::note_using_decl_constructor_ellipsis); 9166 EPI.Variadic = false; 9167 } 9168 9169 // Declare a constructor for each number of parameters. 9170 // 9171 // C++11 [class.inhctor]p1: 9172 // The candidate set of inherited constructors from the class X named in 9173 // the using-declaration consists of [... modulo defects ...] for each 9174 // constructor or constructor template of X, the set of constructors or 9175 // constructor templates that results from omitting any ellipsis parameter 9176 // specification and successively omitting parameters with a default 9177 // argument from the end of the parameter-type-list 9178 unsigned MinParams = minParamsToInherit(Ctor); 9179 unsigned Params = Ctor->getNumParams(); 9180 if (Params >= MinParams) { 9181 do 9182 declareCtor(UsingLoc, Ctor, 9183 SemaRef.Context.getFunctionType( 9184 Ctor->getReturnType(), ArgTypes.slice(0, Params), EPI)); 9185 while (Params > MinParams && 9186 Ctor->getParamDecl(--Params)->hasDefaultArg()); 9187 } 9188 } 9189 9190 /// Find the using-declaration which specified that we should inherit the 9191 /// constructors of \p Base. 9192 SourceLocation getUsingLoc(const CXXRecordDecl *Base) { 9193 // No fancy lookup required; just look for the base constructor name 9194 // directly within the derived class. 9195 ASTContext &Context = SemaRef.Context; 9196 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9197 Context.getCanonicalType(Context.getRecordType(Base))); 9198 DeclContext::lookup_result Decls = Derived->lookup(Name); 9199 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation(); 9200 } 9201 9202 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) { 9203 // C++11 [class.inhctor]p3: 9204 // [F]or each constructor template in the candidate set of inherited 9205 // constructors, a constructor template is implicitly declared 9206 if (Ctor->getDescribedFunctionTemplate()) 9207 return 0; 9208 9209 // For each non-template constructor in the candidate set of inherited 9210 // constructors other than a constructor having no parameters or a 9211 // copy/move constructor having a single parameter, a constructor is 9212 // implicitly declared [...] 9213 if (Ctor->getNumParams() == 0) 9214 return 1; 9215 if (Ctor->isCopyOrMoveConstructor()) 9216 return 2; 9217 9218 // Per discussion on core reflector, never inherit a constructor which 9219 // would become a default, copy, or move constructor of Derived either. 9220 const ParmVarDecl *PD = Ctor->getParamDecl(0); 9221 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>(); 9222 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1; 9223 } 9224 9225 /// Declare a single inheriting constructor, inheriting the specified 9226 /// constructor, with the given type. 9227 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor, 9228 QualType DerivedType) { 9229 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType); 9230 9231 // C++11 [class.inhctor]p3: 9232 // ... a constructor is implicitly declared with the same constructor 9233 // characteristics unless there is a user-declared constructor with 9234 // the same signature in the class where the using-declaration appears 9235 if (Entry.DeclaredInDerived) 9236 return; 9237 9238 // C++11 [class.inhctor]p7: 9239 // If two using-declarations declare inheriting constructors with the 9240 // same signature, the program is ill-formed 9241 if (Entry.DerivedCtor) { 9242 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) { 9243 // Only diagnose this once per constructor. 9244 if (Entry.DerivedCtor->isInvalidDecl()) 9245 return; 9246 Entry.DerivedCtor->setInvalidDecl(); 9247 9248 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict); 9249 SemaRef.Diag(BaseCtor->getLocation(), 9250 diag::note_using_decl_constructor_conflict_current_ctor); 9251 SemaRef.Diag(Entry.BaseCtor->getLocation(), 9252 diag::note_using_decl_constructor_conflict_previous_ctor); 9253 SemaRef.Diag(Entry.DerivedCtor->getLocation(), 9254 diag::note_using_decl_constructor_conflict_previous_using); 9255 } else { 9256 // Core issue (no number): if the same inheriting constructor is 9257 // produced by multiple base class constructors from the same base 9258 // class, the inheriting constructor is defined as deleted. 9259 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc); 9260 } 9261 9262 return; 9263 } 9264 9265 ASTContext &Context = SemaRef.Context; 9266 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9267 Context.getCanonicalType(Context.getRecordType(Derived))); 9268 DeclarationNameInfo NameInfo(Name, UsingLoc); 9269 9270 TemplateParameterList *TemplateParams = nullptr; 9271 if (const FunctionTemplateDecl *FTD = 9272 BaseCtor->getDescribedFunctionTemplate()) { 9273 TemplateParams = FTD->getTemplateParameters(); 9274 // We're reusing template parameters from a different DeclContext. This 9275 // is questionable at best, but works out because the template depth in 9276 // both places is guaranteed to be 0. 9277 // FIXME: Rebuild the template parameters in the new context, and 9278 // transform the function type to refer to them. 9279 } 9280 9281 // Build type source info pointing at the using-declaration. This is 9282 // required by template instantiation. 9283 TypeSourceInfo *TInfo = 9284 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc); 9285 FunctionProtoTypeLoc ProtoLoc = 9286 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>(); 9287 9288 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create( 9289 Context, Derived, UsingLoc, NameInfo, DerivedType, 9290 TInfo, BaseCtor->isExplicit(), /*Inline=*/true, 9291 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr()); 9292 9293 // Build an unevaluated exception specification for this constructor. 9294 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>(); 9295 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 9296 EPI.ExceptionSpec.Type = EST_Unevaluated; 9297 EPI.ExceptionSpec.SourceDecl = DerivedCtor; 9298 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(), 9299 FPT->getParamTypes(), EPI)); 9300 9301 // Build the parameter declarations. 9302 SmallVector<ParmVarDecl *, 16> ParamDecls; 9303 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) { 9304 TypeSourceInfo *TInfo = 9305 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc); 9306 ParmVarDecl *PD = ParmVarDecl::Create( 9307 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, 9308 FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr); 9309 PD->setScopeInfo(0, I); 9310 PD->setImplicit(); 9311 ParamDecls.push_back(PD); 9312 ProtoLoc.setParam(I, PD); 9313 } 9314 9315 // Set up the new constructor. 9316 DerivedCtor->setAccess(BaseCtor->getAccess()); 9317 DerivedCtor->setParams(ParamDecls); 9318 DerivedCtor->setInheritedConstructor(BaseCtor); 9319 if (BaseCtor->isDeleted()) 9320 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc); 9321 9322 // If this is a constructor template, build the template declaration. 9323 if (TemplateParams) { 9324 FunctionTemplateDecl *DerivedTemplate = 9325 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name, 9326 TemplateParams, DerivedCtor); 9327 DerivedTemplate->setAccess(BaseCtor->getAccess()); 9328 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate); 9329 Derived->addDecl(DerivedTemplate); 9330 } else { 9331 Derived->addDecl(DerivedCtor); 9332 } 9333 9334 Entry.BaseCtor = BaseCtor; 9335 Entry.DerivedCtor = DerivedCtor; 9336 } 9337 9338 Sema &SemaRef; 9339 CXXRecordDecl *Derived; 9340 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType; 9341 MapType Map; 9342 }; 9343 } 9344 9345 void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) { 9346 // Defer declaring the inheriting constructors until the class is 9347 // instantiated. 9348 if (ClassDecl->isDependentContext()) 9349 return; 9350 9351 // Find base classes from which we might inherit constructors. 9352 SmallVector<CXXRecordDecl*, 4> InheritedBases; 9353 for (const auto &BaseIt : ClassDecl->bases()) 9354 if (BaseIt.getInheritConstructors()) 9355 InheritedBases.push_back(BaseIt.getType()->getAsCXXRecordDecl()); 9356 9357 // Go no further if we're not inheriting any constructors. 9358 if (InheritedBases.empty()) 9359 return; 9360 9361 // Declare the inherited constructors. 9362 InheritingConstructorInfo ICI(*this, ClassDecl); 9363 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I) 9364 ICI.inheritAll(InheritedBases[I]); 9365 } 9366 9367 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation, 9368 CXXConstructorDecl *Constructor) { 9369 CXXRecordDecl *ClassDecl = Constructor->getParent(); 9370 assert(Constructor->getInheritedConstructor() && 9371 !Constructor->doesThisDeclarationHaveABody() && 9372 !Constructor->isDeleted()); 9373 9374 SynthesizedFunctionScope Scope(*this, Constructor); 9375 DiagnosticErrorTrap Trap(Diags); 9376 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 9377 Trap.hasErrorOccurred()) { 9378 Diag(CurrentLocation, diag::note_inhctor_synthesized_at) 9379 << Context.getTagDeclType(ClassDecl); 9380 Constructor->setInvalidDecl(); 9381 return; 9382 } 9383 9384 SourceLocation Loc = Constructor->getLocation(); 9385 Constructor->setBody(new (Context) CompoundStmt(Loc)); 9386 9387 Constructor->markUsed(Context); 9388 MarkVTableUsed(CurrentLocation, ClassDecl); 9389 9390 if (ASTMutationListener *L = getASTMutationListener()) { 9391 L->CompletedImplicitDefinition(Constructor); 9392 } 9393 } 9394 9395 9396 Sema::ImplicitExceptionSpecification 9397 Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) { 9398 CXXRecordDecl *ClassDecl = MD->getParent(); 9399 9400 // C++ [except.spec]p14: 9401 // An implicitly declared special member function (Clause 12) shall have 9402 // an exception-specification. 9403 ImplicitExceptionSpecification ExceptSpec(*this); 9404 if (ClassDecl->isInvalidDecl()) 9405 return ExceptSpec; 9406 9407 // Direct base-class destructors. 9408 for (const auto &B : ClassDecl->bases()) { 9409 if (B.isVirtual()) // Handled below. 9410 continue; 9411 9412 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9413 ExceptSpec.CalledDecl(B.getLocStart(), 9414 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9415 } 9416 9417 // Virtual base-class destructors. 9418 for (const auto &B : ClassDecl->vbases()) { 9419 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9420 ExceptSpec.CalledDecl(B.getLocStart(), 9421 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9422 } 9423 9424 // Field destructors. 9425 for (const auto *F : ClassDecl->fields()) { 9426 if (const RecordType *RecordTy 9427 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) 9428 ExceptSpec.CalledDecl(F->getLocation(), 9429 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl()))); 9430 } 9431 9432 return ExceptSpec; 9433 } 9434 9435 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) { 9436 // C++ [class.dtor]p2: 9437 // If a class has no user-declared destructor, a destructor is 9438 // declared implicitly. An implicitly-declared destructor is an 9439 // inline public member of its class. 9440 assert(ClassDecl->needsImplicitDestructor()); 9441 9442 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor); 9443 if (DSM.isAlreadyBeingDeclared()) 9444 return nullptr; 9445 9446 // Create the actual destructor declaration. 9447 CanQualType ClassType 9448 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 9449 SourceLocation ClassLoc = ClassDecl->getLocation(); 9450 DeclarationName Name 9451 = Context.DeclarationNames.getCXXDestructorName(ClassType); 9452 DeclarationNameInfo NameInfo(Name, ClassLoc); 9453 CXXDestructorDecl *Destructor 9454 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, 9455 QualType(), nullptr, /*isInline=*/true, 9456 /*isImplicitlyDeclared=*/true); 9457 Destructor->setAccess(AS_public); 9458 Destructor->setDefaulted(); 9459 9460 if (getLangOpts().CUDA) { 9461 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor, 9462 Destructor, 9463 /* ConstRHS */ false, 9464 /* Diagnose */ false); 9465 } 9466 9467 // Build an exception specification pointing back at this destructor. 9468 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor); 9469 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9470 9471 // We don't need to use SpecialMemberIsTrivial here; triviality for 9472 // destructors is easy to compute. 9473 Destructor->setTrivial(ClassDecl->hasTrivialDestructor()); 9474 9475 // Note that we have declared this destructor. 9476 ++ASTContext::NumImplicitDestructorsDeclared; 9477 9478 Scope *S = getScopeForContext(ClassDecl); 9479 CheckImplicitSpecialMemberDeclaration(S, Destructor); 9480 9481 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor)) 9482 SetDeclDeleted(Destructor, ClassLoc); 9483 9484 // Introduce this destructor into its scope. 9485 if (S) 9486 PushOnScopeChains(Destructor, S, false); 9487 ClassDecl->addDecl(Destructor); 9488 9489 return Destructor; 9490 } 9491 9492 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation, 9493 CXXDestructorDecl *Destructor) { 9494 assert((Destructor->isDefaulted() && 9495 !Destructor->doesThisDeclarationHaveABody() && 9496 !Destructor->isDeleted()) && 9497 "DefineImplicitDestructor - call it for implicit default dtor"); 9498 CXXRecordDecl *ClassDecl = Destructor->getParent(); 9499 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor"); 9500 9501 if (Destructor->isInvalidDecl()) 9502 return; 9503 9504 SynthesizedFunctionScope Scope(*this, Destructor); 9505 9506 DiagnosticErrorTrap Trap(Diags); 9507 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 9508 Destructor->getParent()); 9509 9510 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) { 9511 Diag(CurrentLocation, diag::note_member_synthesized_at) 9512 << CXXDestructor << Context.getTagDeclType(ClassDecl); 9513 9514 Destructor->setInvalidDecl(); 9515 return; 9516 } 9517 9518 // The exception specification is needed because we are defining the 9519 // function. 9520 ResolveExceptionSpec(CurrentLocation, 9521 Destructor->getType()->castAs<FunctionProtoType>()); 9522 9523 SourceLocation Loc = Destructor->getLocEnd().isValid() 9524 ? Destructor->getLocEnd() 9525 : Destructor->getLocation(); 9526 Destructor->setBody(new (Context) CompoundStmt(Loc)); 9527 Destructor->markUsed(Context); 9528 MarkVTableUsed(CurrentLocation, ClassDecl); 9529 9530 if (ASTMutationListener *L = getASTMutationListener()) { 9531 L->CompletedImplicitDefinition(Destructor); 9532 } 9533 } 9534 9535 /// \brief Perform any semantic analysis which needs to be delayed until all 9536 /// pending class member declarations have been parsed. 9537 void Sema::ActOnFinishCXXMemberDecls() { 9538 // If the context is an invalid C++ class, just suppress these checks. 9539 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) { 9540 if (Record->isInvalidDecl()) { 9541 DelayedDefaultedMemberExceptionSpecs.clear(); 9542 DelayedExceptionSpecChecks.clear(); 9543 return; 9544 } 9545 } 9546 } 9547 9548 static void getDefaultArgExprsForConstructors(Sema &S, CXXRecordDecl *Class) { 9549 // Don't do anything for template patterns. 9550 if (Class->getDescribedClassTemplate()) 9551 return; 9552 9553 CallingConv ExpectedCallingConv = S.Context.getDefaultCallingConvention( 9554 /*IsVariadic=*/false, /*IsCXXMethod=*/true); 9555 9556 CXXConstructorDecl *LastExportedDefaultCtor = nullptr; 9557 for (Decl *Member : Class->decls()) { 9558 auto *CD = dyn_cast<CXXConstructorDecl>(Member); 9559 if (!CD) { 9560 // Recurse on nested classes. 9561 if (auto *NestedRD = dyn_cast<CXXRecordDecl>(Member)) 9562 getDefaultArgExprsForConstructors(S, NestedRD); 9563 continue; 9564 } else if (!CD->isDefaultConstructor() || !CD->hasAttr<DLLExportAttr>()) { 9565 continue; 9566 } 9567 9568 CallingConv ActualCallingConv = 9569 CD->getType()->getAs<FunctionProtoType>()->getCallConv(); 9570 9571 // Skip default constructors with typical calling conventions and no default 9572 // arguments. 9573 unsigned NumParams = CD->getNumParams(); 9574 if (ExpectedCallingConv == ActualCallingConv && NumParams == 0) 9575 continue; 9576 9577 if (LastExportedDefaultCtor) { 9578 S.Diag(LastExportedDefaultCtor->getLocation(), 9579 diag::err_attribute_dll_ambiguous_default_ctor) << Class; 9580 S.Diag(CD->getLocation(), diag::note_entity_declared_at) 9581 << CD->getDeclName(); 9582 return; 9583 } 9584 LastExportedDefaultCtor = CD; 9585 9586 for (unsigned I = 0; I != NumParams; ++I) { 9587 // Skip any default arguments that we've already instantiated. 9588 if (S.Context.getDefaultArgExprForConstructor(CD, I)) 9589 continue; 9590 9591 Expr *DefaultArg = S.BuildCXXDefaultArgExpr(Class->getLocation(), CD, 9592 CD->getParamDecl(I)).get(); 9593 S.DiscardCleanupsInEvaluationContext(); 9594 S.Context.addDefaultArgExprForConstructor(CD, I, DefaultArg); 9595 } 9596 } 9597 } 9598 9599 void Sema::ActOnFinishCXXNonNestedClass(Decl *D) { 9600 auto *RD = dyn_cast<CXXRecordDecl>(D); 9601 9602 // Default constructors that are annotated with __declspec(dllexport) which 9603 // have default arguments or don't use the standard calling convention are 9604 // wrapped with a thunk called the default constructor closure. 9605 if (RD && Context.getTargetInfo().getCXXABI().isMicrosoft()) 9606 getDefaultArgExprsForConstructors(*this, RD); 9607 9608 referenceDLLExportedClassMethods(); 9609 } 9610 9611 void Sema::referenceDLLExportedClassMethods() { 9612 if (!DelayedDllExportClasses.empty()) { 9613 // Calling ReferenceDllExportedMethods might cause the current function to 9614 // be called again, so use a local copy of DelayedDllExportClasses. 9615 SmallVector<CXXRecordDecl *, 4> WorkList; 9616 std::swap(DelayedDllExportClasses, WorkList); 9617 for (CXXRecordDecl *Class : WorkList) 9618 ReferenceDllExportedMethods(*this, Class); 9619 } 9620 } 9621 9622 void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl, 9623 CXXDestructorDecl *Destructor) { 9624 assert(getLangOpts().CPlusPlus11 && 9625 "adjusting dtor exception specs was introduced in c++11"); 9626 9627 // C++11 [class.dtor]p3: 9628 // A declaration of a destructor that does not have an exception- 9629 // specification is implicitly considered to have the same exception- 9630 // specification as an implicit declaration. 9631 const FunctionProtoType *DtorType = Destructor->getType()-> 9632 getAs<FunctionProtoType>(); 9633 if (DtorType->hasExceptionSpec()) 9634 return; 9635 9636 // Replace the destructor's type, building off the existing one. Fortunately, 9637 // the only thing of interest in the destructor type is its extended info. 9638 // The return and arguments are fixed. 9639 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo(); 9640 EPI.ExceptionSpec.Type = EST_Unevaluated; 9641 EPI.ExceptionSpec.SourceDecl = Destructor; 9642 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9643 9644 // FIXME: If the destructor has a body that could throw, and the newly created 9645 // spec doesn't allow exceptions, we should emit a warning, because this 9646 // change in behavior can break conforming C++03 programs at runtime. 9647 // However, we don't have a body or an exception specification yet, so it 9648 // needs to be done somewhere else. 9649 } 9650 9651 namespace { 9652 /// \brief An abstract base class for all helper classes used in building the 9653 // copy/move operators. These classes serve as factory functions and help us 9654 // avoid using the same Expr* in the AST twice. 9655 class ExprBuilder { 9656 ExprBuilder(const ExprBuilder&) = delete; 9657 ExprBuilder &operator=(const ExprBuilder&) = delete; 9658 9659 protected: 9660 static Expr *assertNotNull(Expr *E) { 9661 assert(E && "Expression construction must not fail."); 9662 return E; 9663 } 9664 9665 public: 9666 ExprBuilder() {} 9667 virtual ~ExprBuilder() {} 9668 9669 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0; 9670 }; 9671 9672 class RefBuilder: public ExprBuilder { 9673 VarDecl *Var; 9674 QualType VarType; 9675 9676 public: 9677 Expr *build(Sema &S, SourceLocation Loc) const override { 9678 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get()); 9679 } 9680 9681 RefBuilder(VarDecl *Var, QualType VarType) 9682 : Var(Var), VarType(VarType) {} 9683 }; 9684 9685 class ThisBuilder: public ExprBuilder { 9686 public: 9687 Expr *build(Sema &S, SourceLocation Loc) const override { 9688 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>()); 9689 } 9690 }; 9691 9692 class CastBuilder: public ExprBuilder { 9693 const ExprBuilder &Builder; 9694 QualType Type; 9695 ExprValueKind Kind; 9696 const CXXCastPath &Path; 9697 9698 public: 9699 Expr *build(Sema &S, SourceLocation Loc) const override { 9700 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type, 9701 CK_UncheckedDerivedToBase, Kind, 9702 &Path).get()); 9703 } 9704 9705 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind, 9706 const CXXCastPath &Path) 9707 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {} 9708 }; 9709 9710 class DerefBuilder: public ExprBuilder { 9711 const ExprBuilder &Builder; 9712 9713 public: 9714 Expr *build(Sema &S, SourceLocation Loc) const override { 9715 return assertNotNull( 9716 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get()); 9717 } 9718 9719 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9720 }; 9721 9722 class MemberBuilder: public ExprBuilder { 9723 const ExprBuilder &Builder; 9724 QualType Type; 9725 CXXScopeSpec SS; 9726 bool IsArrow; 9727 LookupResult &MemberLookup; 9728 9729 public: 9730 Expr *build(Sema &S, SourceLocation Loc) const override { 9731 return assertNotNull(S.BuildMemberReferenceExpr( 9732 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(), 9733 nullptr, MemberLookup, nullptr, nullptr).get()); 9734 } 9735 9736 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow, 9737 LookupResult &MemberLookup) 9738 : Builder(Builder), Type(Type), IsArrow(IsArrow), 9739 MemberLookup(MemberLookup) {} 9740 }; 9741 9742 class MoveCastBuilder: public ExprBuilder { 9743 const ExprBuilder &Builder; 9744 9745 public: 9746 Expr *build(Sema &S, SourceLocation Loc) const override { 9747 return assertNotNull(CastForMoving(S, Builder.build(S, Loc))); 9748 } 9749 9750 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9751 }; 9752 9753 class LvalueConvBuilder: public ExprBuilder { 9754 const ExprBuilder &Builder; 9755 9756 public: 9757 Expr *build(Sema &S, SourceLocation Loc) const override { 9758 return assertNotNull( 9759 S.DefaultLvalueConversion(Builder.build(S, Loc)).get()); 9760 } 9761 9762 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9763 }; 9764 9765 class SubscriptBuilder: public ExprBuilder { 9766 const ExprBuilder &Base; 9767 const ExprBuilder &Index; 9768 9769 public: 9770 Expr *build(Sema &S, SourceLocation Loc) const override { 9771 return assertNotNull(S.CreateBuiltinArraySubscriptExpr( 9772 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get()); 9773 } 9774 9775 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index) 9776 : Base(Base), Index(Index) {} 9777 }; 9778 9779 } // end anonymous namespace 9780 9781 /// When generating a defaulted copy or move assignment operator, if a field 9782 /// should be copied with __builtin_memcpy rather than via explicit assignments, 9783 /// do so. This optimization only applies for arrays of scalars, and for arrays 9784 /// of class type where the selected copy/move-assignment operator is trivial. 9785 static StmtResult 9786 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T, 9787 const ExprBuilder &ToB, const ExprBuilder &FromB) { 9788 // Compute the size of the memory buffer to be copied. 9789 QualType SizeType = S.Context.getSizeType(); 9790 llvm::APInt Size(S.Context.getTypeSize(SizeType), 9791 S.Context.getTypeSizeInChars(T).getQuantity()); 9792 9793 // Take the address of the field references for "from" and "to". We 9794 // directly construct UnaryOperators here because semantic analysis 9795 // does not permit us to take the address of an xvalue. 9796 Expr *From = FromB.build(S, Loc); 9797 From = new (S.Context) UnaryOperator(From, UO_AddrOf, 9798 S.Context.getPointerType(From->getType()), 9799 VK_RValue, OK_Ordinary, Loc); 9800 Expr *To = ToB.build(S, Loc); 9801 To = new (S.Context) UnaryOperator(To, UO_AddrOf, 9802 S.Context.getPointerType(To->getType()), 9803 VK_RValue, OK_Ordinary, Loc); 9804 9805 const Type *E = T->getBaseElementTypeUnsafe(); 9806 bool NeedsCollectableMemCpy = 9807 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember(); 9808 9809 // Create a reference to the __builtin_objc_memmove_collectable function 9810 StringRef MemCpyName = NeedsCollectableMemCpy ? 9811 "__builtin_objc_memmove_collectable" : 9812 "__builtin_memcpy"; 9813 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc, 9814 Sema::LookupOrdinaryName); 9815 S.LookupName(R, S.TUScope, true); 9816 9817 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>(); 9818 if (!MemCpy) 9819 // Something went horribly wrong earlier, and we will have complained 9820 // about it. 9821 return StmtError(); 9822 9823 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy, 9824 VK_RValue, Loc, nullptr); 9825 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail"); 9826 9827 Expr *CallArgs[] = { 9828 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc) 9829 }; 9830 ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(), 9831 Loc, CallArgs, Loc); 9832 9833 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!"); 9834 return Call.getAs<Stmt>(); 9835 } 9836 9837 /// \brief Builds a statement that copies/moves the given entity from \p From to 9838 /// \c To. 9839 /// 9840 /// This routine is used to copy/move the members of a class with an 9841 /// implicitly-declared copy/move assignment operator. When the entities being 9842 /// copied are arrays, this routine builds for loops to copy them. 9843 /// 9844 /// \param S The Sema object used for type-checking. 9845 /// 9846 /// \param Loc The location where the implicit copy/move is being generated. 9847 /// 9848 /// \param T The type of the expressions being copied/moved. Both expressions 9849 /// must have this type. 9850 /// 9851 /// \param To The expression we are copying/moving to. 9852 /// 9853 /// \param From The expression we are copying/moving from. 9854 /// 9855 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject. 9856 /// Otherwise, it's a non-static member subobject. 9857 /// 9858 /// \param Copying Whether we're copying or moving. 9859 /// 9860 /// \param Depth Internal parameter recording the depth of the recursion. 9861 /// 9862 /// \returns A statement or a loop that copies the expressions, or StmtResult(0) 9863 /// if a memcpy should be used instead. 9864 static StmtResult 9865 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T, 9866 const ExprBuilder &To, const ExprBuilder &From, 9867 bool CopyingBaseSubobject, bool Copying, 9868 unsigned Depth = 0) { 9869 // C++11 [class.copy]p28: 9870 // Each subobject is assigned in the manner appropriate to its type: 9871 // 9872 // - if the subobject is of class type, as if by a call to operator= with 9873 // the subobject as the object expression and the corresponding 9874 // subobject of x as a single function argument (as if by explicit 9875 // qualification; that is, ignoring any possible virtual overriding 9876 // functions in more derived classes); 9877 // 9878 // C++03 [class.copy]p13: 9879 // - if the subobject is of class type, the copy assignment operator for 9880 // the class is used (as if by explicit qualification; that is, 9881 // ignoring any possible virtual overriding functions in more derived 9882 // classes); 9883 if (const RecordType *RecordTy = T->getAs<RecordType>()) { 9884 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 9885 9886 // Look for operator=. 9887 DeclarationName Name 9888 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal); 9889 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName); 9890 S.LookupQualifiedName(OpLookup, ClassDecl, false); 9891 9892 // Prior to C++11, filter out any result that isn't a copy/move-assignment 9893 // operator. 9894 if (!S.getLangOpts().CPlusPlus11) { 9895 LookupResult::Filter F = OpLookup.makeFilter(); 9896 while (F.hasNext()) { 9897 NamedDecl *D = F.next(); 9898 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 9899 if (Method->isCopyAssignmentOperator() || 9900 (!Copying && Method->isMoveAssignmentOperator())) 9901 continue; 9902 9903 F.erase(); 9904 } 9905 F.done(); 9906 } 9907 9908 // Suppress the protected check (C++ [class.protected]) for each of the 9909 // assignment operators we found. This strange dance is required when 9910 // we're assigning via a base classes's copy-assignment operator. To 9911 // ensure that we're getting the right base class subobject (without 9912 // ambiguities), we need to cast "this" to that subobject type; to 9913 // ensure that we don't go through the virtual call mechanism, we need 9914 // to qualify the operator= name with the base class (see below). However, 9915 // this means that if the base class has a protected copy assignment 9916 // operator, the protected member access check will fail. So, we 9917 // rewrite "protected" access to "public" access in this case, since we 9918 // know by construction that we're calling from a derived class. 9919 if (CopyingBaseSubobject) { 9920 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end(); 9921 L != LEnd; ++L) { 9922 if (L.getAccess() == AS_protected) 9923 L.setAccess(AS_public); 9924 } 9925 } 9926 9927 // Create the nested-name-specifier that will be used to qualify the 9928 // reference to operator=; this is required to suppress the virtual 9929 // call mechanism. 9930 CXXScopeSpec SS; 9931 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr()); 9932 SS.MakeTrivial(S.Context, 9933 NestedNameSpecifier::Create(S.Context, nullptr, false, 9934 CanonicalT), 9935 Loc); 9936 9937 // Create the reference to operator=. 9938 ExprResult OpEqualRef 9939 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false, 9940 SS, /*TemplateKWLoc=*/SourceLocation(), 9941 /*FirstQualifierInScope=*/nullptr, 9942 OpLookup, 9943 /*TemplateArgs=*/nullptr, /*S*/nullptr, 9944 /*SuppressQualifierCheck=*/true); 9945 if (OpEqualRef.isInvalid()) 9946 return StmtError(); 9947 9948 // Build the call to the assignment operator. 9949 9950 Expr *FromInst = From.build(S, Loc); 9951 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr, 9952 OpEqualRef.getAs<Expr>(), 9953 Loc, FromInst, Loc); 9954 if (Call.isInvalid()) 9955 return StmtError(); 9956 9957 // If we built a call to a trivial 'operator=' while copying an array, 9958 // bail out. We'll replace the whole shebang with a memcpy. 9959 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get()); 9960 if (CE && CE->getMethodDecl()->isTrivial() && Depth) 9961 return StmtResult((Stmt*)nullptr); 9962 9963 // Convert to an expression-statement, and clean up any produced 9964 // temporaries. 9965 return S.ActOnExprStmt(Call); 9966 } 9967 9968 // - if the subobject is of scalar type, the built-in assignment 9969 // operator is used. 9970 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T); 9971 if (!ArrayTy) { 9972 ExprResult Assignment = S.CreateBuiltinBinOp( 9973 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc)); 9974 if (Assignment.isInvalid()) 9975 return StmtError(); 9976 return S.ActOnExprStmt(Assignment); 9977 } 9978 9979 // - if the subobject is an array, each element is assigned, in the 9980 // manner appropriate to the element type; 9981 9982 // Construct a loop over the array bounds, e.g., 9983 // 9984 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0) 9985 // 9986 // that will copy each of the array elements. 9987 QualType SizeType = S.Context.getSizeType(); 9988 9989 // Create the iteration variable. 9990 IdentifierInfo *IterationVarName = nullptr; 9991 { 9992 SmallString<8> Str; 9993 llvm::raw_svector_ostream OS(Str); 9994 OS << "__i" << Depth; 9995 IterationVarName = &S.Context.Idents.get(OS.str()); 9996 } 9997 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, 9998 IterationVarName, SizeType, 9999 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), 10000 SC_None); 10001 10002 // Initialize the iteration variable to zero. 10003 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0); 10004 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc)); 10005 10006 // Creates a reference to the iteration variable. 10007 RefBuilder IterationVarRef(IterationVar, SizeType); 10008 LvalueConvBuilder IterationVarRefRVal(IterationVarRef); 10009 10010 // Create the DeclStmt that holds the iteration variable. 10011 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc); 10012 10013 // Subscript the "from" and "to" expressions with the iteration variable. 10014 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal); 10015 MoveCastBuilder FromIndexMove(FromIndexCopy); 10016 const ExprBuilder *FromIndex; 10017 if (Copying) 10018 FromIndex = &FromIndexCopy; 10019 else 10020 FromIndex = &FromIndexMove; 10021 10022 SubscriptBuilder ToIndex(To, IterationVarRefRVal); 10023 10024 // Build the copy/move for an individual element of the array. 10025 StmtResult Copy = 10026 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(), 10027 ToIndex, *FromIndex, CopyingBaseSubobject, 10028 Copying, Depth + 1); 10029 // Bail out if copying fails or if we determined that we should use memcpy. 10030 if (Copy.isInvalid() || !Copy.get()) 10031 return Copy; 10032 10033 // Create the comparison against the array bound. 10034 llvm::APInt Upper 10035 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType)); 10036 Expr *Comparison 10037 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc), 10038 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc), 10039 BO_NE, S.Context.BoolTy, 10040 VK_RValue, OK_Ordinary, Loc, false); 10041 10042 // Create the pre-increment of the iteration variable. 10043 Expr *Increment 10044 = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc, 10045 SizeType, VK_LValue, OK_Ordinary, Loc); 10046 10047 // Construct the loop that copies all elements of this array. 10048 return S.ActOnForStmt(Loc, Loc, InitStmt, 10049 S.MakeFullExpr(Comparison), 10050 nullptr, S.MakeFullDiscardedValueExpr(Increment), 10051 Loc, Copy.get()); 10052 } 10053 10054 static StmtResult 10055 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T, 10056 const ExprBuilder &To, const ExprBuilder &From, 10057 bool CopyingBaseSubobject, bool Copying) { 10058 // Maybe we should use a memcpy? 10059 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() && 10060 T.isTriviallyCopyableType(S.Context)) 10061 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 10062 10063 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From, 10064 CopyingBaseSubobject, 10065 Copying, 0)); 10066 10067 // If we ended up picking a trivial assignment operator for an array of a 10068 // non-trivially-copyable class type, just emit a memcpy. 10069 if (!Result.isInvalid() && !Result.get()) 10070 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 10071 10072 return Result; 10073 } 10074 10075 Sema::ImplicitExceptionSpecification 10076 Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) { 10077 CXXRecordDecl *ClassDecl = MD->getParent(); 10078 10079 ImplicitExceptionSpecification ExceptSpec(*this); 10080 if (ClassDecl->isInvalidDecl()) 10081 return ExceptSpec; 10082 10083 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 10084 assert(T->getNumParams() == 1 && "not a copy assignment op"); 10085 unsigned ArgQuals = 10086 T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 10087 10088 // C++ [except.spec]p14: 10089 // An implicitly declared special member function (Clause 12) shall have an 10090 // exception-specification. [...] 10091 10092 // It is unspecified whether or not an implicit copy assignment operator 10093 // attempts to deduplicate calls to assignment operators of virtual bases are 10094 // made. As such, this exception specification is effectively unspecified. 10095 // Based on a similar decision made for constness in C++0x, we're erring on 10096 // the side of assuming such calls to be made regardless of whether they 10097 // actually happen. 10098 for (const auto &Base : ClassDecl->bases()) { 10099 if (Base.isVirtual()) 10100 continue; 10101 10102 CXXRecordDecl *BaseClassDecl 10103 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10104 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 10105 ArgQuals, false, 0)) 10106 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 10107 } 10108 10109 for (const auto &Base : ClassDecl->vbases()) { 10110 CXXRecordDecl *BaseClassDecl 10111 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10112 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 10113 ArgQuals, false, 0)) 10114 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 10115 } 10116 10117 for (const auto *Field : ClassDecl->fields()) { 10118 QualType FieldType = Context.getBaseElementType(Field->getType()); 10119 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10120 if (CXXMethodDecl *CopyAssign = 10121 LookupCopyingAssignment(FieldClassDecl, 10122 ArgQuals | FieldType.getCVRQualifiers(), 10123 false, 0)) 10124 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign); 10125 } 10126 } 10127 10128 return ExceptSpec; 10129 } 10130 10131 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) { 10132 // Note: The following rules are largely analoguous to the copy 10133 // constructor rules. Note that virtual bases are not taken into account 10134 // for determining the argument type of the operator. Note also that 10135 // operators taking an object instead of a reference are allowed. 10136 assert(ClassDecl->needsImplicitCopyAssignment()); 10137 10138 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment); 10139 if (DSM.isAlreadyBeingDeclared()) 10140 return nullptr; 10141 10142 QualType ArgType = Context.getTypeDeclType(ClassDecl); 10143 QualType RetType = Context.getLValueReferenceType(ArgType); 10144 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam(); 10145 if (Const) 10146 ArgType = ArgType.withConst(); 10147 ArgType = Context.getLValueReferenceType(ArgType); 10148 10149 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10150 CXXCopyAssignment, 10151 Const); 10152 10153 // An implicitly-declared copy assignment operator is an inline public 10154 // member of its class. 10155 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 10156 SourceLocation ClassLoc = ClassDecl->getLocation(); 10157 DeclarationNameInfo NameInfo(Name, ClassLoc); 10158 CXXMethodDecl *CopyAssignment = 10159 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 10160 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 10161 /*isInline=*/true, Constexpr, SourceLocation()); 10162 CopyAssignment->setAccess(AS_public); 10163 CopyAssignment->setDefaulted(); 10164 CopyAssignment->setImplicit(); 10165 10166 if (getLangOpts().CUDA) { 10167 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment, 10168 CopyAssignment, 10169 /* ConstRHS */ Const, 10170 /* Diagnose */ false); 10171 } 10172 10173 // Build an exception specification pointing back at this member. 10174 FunctionProtoType::ExtProtoInfo EPI = 10175 getImplicitMethodEPI(*this, CopyAssignment); 10176 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 10177 10178 // Add the parameter to the operator. 10179 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment, 10180 ClassLoc, ClassLoc, 10181 /*Id=*/nullptr, ArgType, 10182 /*TInfo=*/nullptr, SC_None, 10183 nullptr); 10184 CopyAssignment->setParams(FromParam); 10185 10186 CopyAssignment->setTrivial( 10187 ClassDecl->needsOverloadResolutionForCopyAssignment() 10188 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment) 10189 : ClassDecl->hasTrivialCopyAssignment()); 10190 10191 // Note that we have added this copy-assignment operator. 10192 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared; 10193 10194 Scope *S = getScopeForContext(ClassDecl); 10195 CheckImplicitSpecialMemberDeclaration(S, CopyAssignment); 10196 10197 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment)) 10198 SetDeclDeleted(CopyAssignment, ClassLoc); 10199 10200 if (S) 10201 PushOnScopeChains(CopyAssignment, S, false); 10202 ClassDecl->addDecl(CopyAssignment); 10203 10204 return CopyAssignment; 10205 } 10206 10207 /// Diagnose an implicit copy operation for a class which is odr-used, but 10208 /// which is deprecated because the class has a user-declared copy constructor, 10209 /// copy assignment operator, or destructor. 10210 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp, 10211 SourceLocation UseLoc) { 10212 assert(CopyOp->isImplicit()); 10213 10214 CXXRecordDecl *RD = CopyOp->getParent(); 10215 CXXMethodDecl *UserDeclaredOperation = nullptr; 10216 10217 // In Microsoft mode, assignment operations don't affect constructors and 10218 // vice versa. 10219 if (RD->hasUserDeclaredDestructor()) { 10220 UserDeclaredOperation = RD->getDestructor(); 10221 } else if (!isa<CXXConstructorDecl>(CopyOp) && 10222 RD->hasUserDeclaredCopyConstructor() && 10223 !S.getLangOpts().MSVCCompat) { 10224 // Find any user-declared copy constructor. 10225 for (auto *I : RD->ctors()) { 10226 if (I->isCopyConstructor()) { 10227 UserDeclaredOperation = I; 10228 break; 10229 } 10230 } 10231 assert(UserDeclaredOperation); 10232 } else if (isa<CXXConstructorDecl>(CopyOp) && 10233 RD->hasUserDeclaredCopyAssignment() && 10234 !S.getLangOpts().MSVCCompat) { 10235 // Find any user-declared move assignment operator. 10236 for (auto *I : RD->methods()) { 10237 if (I->isCopyAssignmentOperator()) { 10238 UserDeclaredOperation = I; 10239 break; 10240 } 10241 } 10242 assert(UserDeclaredOperation); 10243 } 10244 10245 if (UserDeclaredOperation) { 10246 S.Diag(UserDeclaredOperation->getLocation(), 10247 diag::warn_deprecated_copy_operation) 10248 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp) 10249 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation); 10250 S.Diag(UseLoc, diag::note_member_synthesized_at) 10251 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor 10252 : Sema::CXXCopyAssignment) 10253 << RD; 10254 } 10255 } 10256 10257 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation, 10258 CXXMethodDecl *CopyAssignOperator) { 10259 assert((CopyAssignOperator->isDefaulted() && 10260 CopyAssignOperator->isOverloadedOperator() && 10261 CopyAssignOperator->getOverloadedOperator() == OO_Equal && 10262 !CopyAssignOperator->doesThisDeclarationHaveABody() && 10263 !CopyAssignOperator->isDeleted()) && 10264 "DefineImplicitCopyAssignment called for wrong function"); 10265 10266 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent(); 10267 10268 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) { 10269 CopyAssignOperator->setInvalidDecl(); 10270 return; 10271 } 10272 10273 // C++11 [class.copy]p18: 10274 // The [definition of an implicitly declared copy assignment operator] is 10275 // deprecated if the class has a user-declared copy constructor or a 10276 // user-declared destructor. 10277 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit()) 10278 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation); 10279 10280 CopyAssignOperator->markUsed(Context); 10281 10282 SynthesizedFunctionScope Scope(*this, CopyAssignOperator); 10283 DiagnosticErrorTrap Trap(Diags); 10284 10285 // C++0x [class.copy]p30: 10286 // The implicitly-defined or explicitly-defaulted copy assignment operator 10287 // for a non-union class X performs memberwise copy assignment of its 10288 // subobjects. The direct base classes of X are assigned first, in the 10289 // order of their declaration in the base-specifier-list, and then the 10290 // immediate non-static data members of X are assigned, in the order in 10291 // which they were declared in the class definition. 10292 10293 // The statements that form the synthesized function body. 10294 SmallVector<Stmt*, 8> Statements; 10295 10296 // The parameter for the "other" object, which we are copying from. 10297 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0); 10298 Qualifiers OtherQuals = Other->getType().getQualifiers(); 10299 QualType OtherRefType = Other->getType(); 10300 if (const LValueReferenceType *OtherRef 10301 = OtherRefType->getAs<LValueReferenceType>()) { 10302 OtherRefType = OtherRef->getPointeeType(); 10303 OtherQuals = OtherRefType.getQualifiers(); 10304 } 10305 10306 // Our location for everything implicitly-generated. 10307 SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid() 10308 ? CopyAssignOperator->getLocEnd() 10309 : CopyAssignOperator->getLocation(); 10310 10311 // Builds a DeclRefExpr for the "other" object. 10312 RefBuilder OtherRef(Other, OtherRefType); 10313 10314 // Builds the "this" pointer. 10315 ThisBuilder This; 10316 10317 // Assign base classes. 10318 bool Invalid = false; 10319 for (auto &Base : ClassDecl->bases()) { 10320 // Form the assignment: 10321 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other)); 10322 QualType BaseType = Base.getType().getUnqualifiedType(); 10323 if (!BaseType->isRecordType()) { 10324 Invalid = true; 10325 continue; 10326 } 10327 10328 CXXCastPath BasePath; 10329 BasePath.push_back(&Base); 10330 10331 // Construct the "from" expression, which is an implicit cast to the 10332 // appropriately-qualified base type. 10333 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals), 10334 VK_LValue, BasePath); 10335 10336 // Dereference "this". 10337 DerefBuilder DerefThis(This); 10338 CastBuilder To(DerefThis, 10339 Context.getCVRQualifiedType( 10340 BaseType, CopyAssignOperator->getTypeQualifiers()), 10341 VK_LValue, BasePath); 10342 10343 // Build the copy. 10344 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType, 10345 To, From, 10346 /*CopyingBaseSubobject=*/true, 10347 /*Copying=*/true); 10348 if (Copy.isInvalid()) { 10349 Diag(CurrentLocation, diag::note_member_synthesized_at) 10350 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10351 CopyAssignOperator->setInvalidDecl(); 10352 return; 10353 } 10354 10355 // Success! Record the copy. 10356 Statements.push_back(Copy.getAs<Expr>()); 10357 } 10358 10359 // Assign non-static members. 10360 for (auto *Field : ClassDecl->fields()) { 10361 // FIXME: We should form some kind of AST representation for the implied 10362 // memcpy in a union copy operation. 10363 if (Field->isUnnamedBitfield() || Field->getParent()->isUnion()) 10364 continue; 10365 10366 if (Field->isInvalidDecl()) { 10367 Invalid = true; 10368 continue; 10369 } 10370 10371 // Check for members of reference type; we can't copy those. 10372 if (Field->getType()->isReferenceType()) { 10373 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10374 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10375 Diag(Field->getLocation(), diag::note_declared_at); 10376 Diag(CurrentLocation, diag::note_member_synthesized_at) 10377 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10378 Invalid = true; 10379 continue; 10380 } 10381 10382 // Check for members of const-qualified, non-class type. 10383 QualType BaseType = Context.getBaseElementType(Field->getType()); 10384 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10385 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10386 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10387 Diag(Field->getLocation(), diag::note_declared_at); 10388 Diag(CurrentLocation, diag::note_member_synthesized_at) 10389 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10390 Invalid = true; 10391 continue; 10392 } 10393 10394 // Suppress assigning zero-width bitfields. 10395 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10396 continue; 10397 10398 QualType FieldType = Field->getType().getNonReferenceType(); 10399 if (FieldType->isIncompleteArrayType()) { 10400 assert(ClassDecl->hasFlexibleArrayMember() && 10401 "Incomplete array type is not valid"); 10402 continue; 10403 } 10404 10405 // Build references to the field in the object we're copying from and to. 10406 CXXScopeSpec SS; // Intentionally empty 10407 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10408 LookupMemberName); 10409 MemberLookup.addDecl(Field); 10410 MemberLookup.resolveKind(); 10411 10412 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup); 10413 10414 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup); 10415 10416 // Build the copy of this field. 10417 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType, 10418 To, From, 10419 /*CopyingBaseSubobject=*/false, 10420 /*Copying=*/true); 10421 if (Copy.isInvalid()) { 10422 Diag(CurrentLocation, diag::note_member_synthesized_at) 10423 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10424 CopyAssignOperator->setInvalidDecl(); 10425 return; 10426 } 10427 10428 // Success! Record the copy. 10429 Statements.push_back(Copy.getAs<Stmt>()); 10430 } 10431 10432 if (!Invalid) { 10433 // Add a "return *this;" 10434 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10435 10436 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10437 if (Return.isInvalid()) 10438 Invalid = true; 10439 else { 10440 Statements.push_back(Return.getAs<Stmt>()); 10441 10442 if (Trap.hasErrorOccurred()) { 10443 Diag(CurrentLocation, diag::note_member_synthesized_at) 10444 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10445 Invalid = true; 10446 } 10447 } 10448 } 10449 10450 // The exception specification is needed because we are defining the 10451 // function. 10452 ResolveExceptionSpec(CurrentLocation, 10453 CopyAssignOperator->getType()->castAs<FunctionProtoType>()); 10454 10455 if (Invalid) { 10456 CopyAssignOperator->setInvalidDecl(); 10457 return; 10458 } 10459 10460 StmtResult Body; 10461 { 10462 CompoundScopeRAII CompoundScope(*this); 10463 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10464 /*isStmtExpr=*/false); 10465 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10466 } 10467 CopyAssignOperator->setBody(Body.getAs<Stmt>()); 10468 10469 if (ASTMutationListener *L = getASTMutationListener()) { 10470 L->CompletedImplicitDefinition(CopyAssignOperator); 10471 } 10472 } 10473 10474 Sema::ImplicitExceptionSpecification 10475 Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) { 10476 CXXRecordDecl *ClassDecl = MD->getParent(); 10477 10478 ImplicitExceptionSpecification ExceptSpec(*this); 10479 if (ClassDecl->isInvalidDecl()) 10480 return ExceptSpec; 10481 10482 // C++0x [except.spec]p14: 10483 // An implicitly declared special member function (Clause 12) shall have an 10484 // exception-specification. [...] 10485 10486 // It is unspecified whether or not an implicit move assignment operator 10487 // attempts to deduplicate calls to assignment operators of virtual bases are 10488 // made. As such, this exception specification is effectively unspecified. 10489 // Based on a similar decision made for constness in C++0x, we're erring on 10490 // the side of assuming such calls to be made regardless of whether they 10491 // actually happen. 10492 // Note that a move constructor is not implicitly declared when there are 10493 // virtual bases, but it can still be user-declared and explicitly defaulted. 10494 for (const auto &Base : ClassDecl->bases()) { 10495 if (Base.isVirtual()) 10496 continue; 10497 10498 CXXRecordDecl *BaseClassDecl 10499 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10500 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10501 0, false, 0)) 10502 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10503 } 10504 10505 for (const auto &Base : ClassDecl->vbases()) { 10506 CXXRecordDecl *BaseClassDecl 10507 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10508 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10509 0, false, 0)) 10510 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10511 } 10512 10513 for (const auto *Field : ClassDecl->fields()) { 10514 QualType FieldType = Context.getBaseElementType(Field->getType()); 10515 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10516 if (CXXMethodDecl *MoveAssign = 10517 LookupMovingAssignment(FieldClassDecl, 10518 FieldType.getCVRQualifiers(), 10519 false, 0)) 10520 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign); 10521 } 10522 } 10523 10524 return ExceptSpec; 10525 } 10526 10527 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) { 10528 assert(ClassDecl->needsImplicitMoveAssignment()); 10529 10530 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment); 10531 if (DSM.isAlreadyBeingDeclared()) 10532 return nullptr; 10533 10534 // Note: The following rules are largely analoguous to the move 10535 // constructor rules. 10536 10537 QualType ArgType = Context.getTypeDeclType(ClassDecl); 10538 QualType RetType = Context.getLValueReferenceType(ArgType); 10539 ArgType = Context.getRValueReferenceType(ArgType); 10540 10541 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10542 CXXMoveAssignment, 10543 false); 10544 10545 // An implicitly-declared move assignment operator is an inline public 10546 // member of its class. 10547 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 10548 SourceLocation ClassLoc = ClassDecl->getLocation(); 10549 DeclarationNameInfo NameInfo(Name, ClassLoc); 10550 CXXMethodDecl *MoveAssignment = 10551 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 10552 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 10553 /*isInline=*/true, Constexpr, SourceLocation()); 10554 MoveAssignment->setAccess(AS_public); 10555 MoveAssignment->setDefaulted(); 10556 MoveAssignment->setImplicit(); 10557 10558 if (getLangOpts().CUDA) { 10559 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment, 10560 MoveAssignment, 10561 /* ConstRHS */ false, 10562 /* Diagnose */ false); 10563 } 10564 10565 // Build an exception specification pointing back at this member. 10566 FunctionProtoType::ExtProtoInfo EPI = 10567 getImplicitMethodEPI(*this, MoveAssignment); 10568 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 10569 10570 // Add the parameter to the operator. 10571 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment, 10572 ClassLoc, ClassLoc, 10573 /*Id=*/nullptr, ArgType, 10574 /*TInfo=*/nullptr, SC_None, 10575 nullptr); 10576 MoveAssignment->setParams(FromParam); 10577 10578 MoveAssignment->setTrivial( 10579 ClassDecl->needsOverloadResolutionForMoveAssignment() 10580 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment) 10581 : ClassDecl->hasTrivialMoveAssignment()); 10582 10583 // Note that we have added this copy-assignment operator. 10584 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared; 10585 10586 Scope *S = getScopeForContext(ClassDecl); 10587 CheckImplicitSpecialMemberDeclaration(S, MoveAssignment); 10588 10589 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) { 10590 ClassDecl->setImplicitMoveAssignmentIsDeleted(); 10591 SetDeclDeleted(MoveAssignment, ClassLoc); 10592 } 10593 10594 if (S) 10595 PushOnScopeChains(MoveAssignment, S, false); 10596 ClassDecl->addDecl(MoveAssignment); 10597 10598 return MoveAssignment; 10599 } 10600 10601 /// Check if we're implicitly defining a move assignment operator for a class 10602 /// with virtual bases. Such a move assignment might move-assign the virtual 10603 /// base multiple times. 10604 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class, 10605 SourceLocation CurrentLocation) { 10606 assert(!Class->isDependentContext() && "should not define dependent move"); 10607 10608 // Only a virtual base could get implicitly move-assigned multiple times. 10609 // Only a non-trivial move assignment can observe this. We only want to 10610 // diagnose if we implicitly define an assignment operator that assigns 10611 // two base classes, both of which move-assign the same virtual base. 10612 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() || 10613 Class->getNumBases() < 2) 10614 return; 10615 10616 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist; 10617 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap; 10618 VBaseMap VBases; 10619 10620 for (auto &BI : Class->bases()) { 10621 Worklist.push_back(&BI); 10622 while (!Worklist.empty()) { 10623 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val(); 10624 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 10625 10626 // If the base has no non-trivial move assignment operators, 10627 // we don't care about moves from it. 10628 if (!Base->hasNonTrivialMoveAssignment()) 10629 continue; 10630 10631 // If there's nothing virtual here, skip it. 10632 if (!BaseSpec->isVirtual() && !Base->getNumVBases()) 10633 continue; 10634 10635 // If we're not actually going to call a move assignment for this base, 10636 // or the selected move assignment is trivial, skip it. 10637 Sema::SpecialMemberOverloadResult *SMOR = 10638 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment, 10639 /*ConstArg*/false, /*VolatileArg*/false, 10640 /*RValueThis*/true, /*ConstThis*/false, 10641 /*VolatileThis*/false); 10642 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() || 10643 !SMOR->getMethod()->isMoveAssignmentOperator()) 10644 continue; 10645 10646 if (BaseSpec->isVirtual()) { 10647 // We're going to move-assign this virtual base, and its move 10648 // assignment operator is not trivial. If this can happen for 10649 // multiple distinct direct bases of Class, diagnose it. (If it 10650 // only happens in one base, we'll diagnose it when synthesizing 10651 // that base class's move assignment operator.) 10652 CXXBaseSpecifier *&Existing = 10653 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI)) 10654 .first->second; 10655 if (Existing && Existing != &BI) { 10656 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times) 10657 << Class << Base; 10658 S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here) 10659 << (Base->getCanonicalDecl() == 10660 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10661 << Base << Existing->getType() << Existing->getSourceRange(); 10662 S.Diag(BI.getLocStart(), diag::note_vbase_moved_here) 10663 << (Base->getCanonicalDecl() == 10664 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10665 << Base << BI.getType() << BaseSpec->getSourceRange(); 10666 10667 // Only diagnose each vbase once. 10668 Existing = nullptr; 10669 } 10670 } else { 10671 // Only walk over bases that have defaulted move assignment operators. 10672 // We assume that any user-provided move assignment operator handles 10673 // the multiple-moves-of-vbase case itself somehow. 10674 if (!SMOR->getMethod()->isDefaulted()) 10675 continue; 10676 10677 // We're going to move the base classes of Base. Add them to the list. 10678 for (auto &BI : Base->bases()) 10679 Worklist.push_back(&BI); 10680 } 10681 } 10682 } 10683 } 10684 10685 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation, 10686 CXXMethodDecl *MoveAssignOperator) { 10687 assert((MoveAssignOperator->isDefaulted() && 10688 MoveAssignOperator->isOverloadedOperator() && 10689 MoveAssignOperator->getOverloadedOperator() == OO_Equal && 10690 !MoveAssignOperator->doesThisDeclarationHaveABody() && 10691 !MoveAssignOperator->isDeleted()) && 10692 "DefineImplicitMoveAssignment called for wrong function"); 10693 10694 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent(); 10695 10696 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) { 10697 MoveAssignOperator->setInvalidDecl(); 10698 return; 10699 } 10700 10701 MoveAssignOperator->markUsed(Context); 10702 10703 SynthesizedFunctionScope Scope(*this, MoveAssignOperator); 10704 DiagnosticErrorTrap Trap(Diags); 10705 10706 // C++0x [class.copy]p28: 10707 // The implicitly-defined or move assignment operator for a non-union class 10708 // X performs memberwise move assignment of its subobjects. The direct base 10709 // classes of X are assigned first, in the order of their declaration in the 10710 // base-specifier-list, and then the immediate non-static data members of X 10711 // are assigned, in the order in which they were declared in the class 10712 // definition. 10713 10714 // Issue a warning if our implicit move assignment operator will move 10715 // from a virtual base more than once. 10716 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation); 10717 10718 // The statements that form the synthesized function body. 10719 SmallVector<Stmt*, 8> Statements; 10720 10721 // The parameter for the "other" object, which we are move from. 10722 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0); 10723 QualType OtherRefType = Other->getType()-> 10724 getAs<RValueReferenceType>()->getPointeeType(); 10725 assert(!OtherRefType.getQualifiers() && 10726 "Bad argument type of defaulted move assignment"); 10727 10728 // Our location for everything implicitly-generated. 10729 SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid() 10730 ? MoveAssignOperator->getLocEnd() 10731 : MoveAssignOperator->getLocation(); 10732 10733 // Builds a reference to the "other" object. 10734 RefBuilder OtherRef(Other, OtherRefType); 10735 // Cast to rvalue. 10736 MoveCastBuilder MoveOther(OtherRef); 10737 10738 // Builds the "this" pointer. 10739 ThisBuilder This; 10740 10741 // Assign base classes. 10742 bool Invalid = false; 10743 for (auto &Base : ClassDecl->bases()) { 10744 // C++11 [class.copy]p28: 10745 // It is unspecified whether subobjects representing virtual base classes 10746 // are assigned more than once by the implicitly-defined copy assignment 10747 // operator. 10748 // FIXME: Do not assign to a vbase that will be assigned by some other base 10749 // class. For a move-assignment, this can result in the vbase being moved 10750 // multiple times. 10751 10752 // Form the assignment: 10753 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other)); 10754 QualType BaseType = Base.getType().getUnqualifiedType(); 10755 if (!BaseType->isRecordType()) { 10756 Invalid = true; 10757 continue; 10758 } 10759 10760 CXXCastPath BasePath; 10761 BasePath.push_back(&Base); 10762 10763 // Construct the "from" expression, which is an implicit cast to the 10764 // appropriately-qualified base type. 10765 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath); 10766 10767 // Dereference "this". 10768 DerefBuilder DerefThis(This); 10769 10770 // Implicitly cast "this" to the appropriately-qualified base type. 10771 CastBuilder To(DerefThis, 10772 Context.getCVRQualifiedType( 10773 BaseType, MoveAssignOperator->getTypeQualifiers()), 10774 VK_LValue, BasePath); 10775 10776 // Build the move. 10777 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType, 10778 To, From, 10779 /*CopyingBaseSubobject=*/true, 10780 /*Copying=*/false); 10781 if (Move.isInvalid()) { 10782 Diag(CurrentLocation, diag::note_member_synthesized_at) 10783 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10784 MoveAssignOperator->setInvalidDecl(); 10785 return; 10786 } 10787 10788 // Success! Record the move. 10789 Statements.push_back(Move.getAs<Expr>()); 10790 } 10791 10792 // Assign non-static members. 10793 for (auto *Field : ClassDecl->fields()) { 10794 // FIXME: We should form some kind of AST representation for the implied 10795 // memcpy in a union copy operation. 10796 if (Field->isUnnamedBitfield() || Field->getParent()->isUnion()) 10797 continue; 10798 10799 if (Field->isInvalidDecl()) { 10800 Invalid = true; 10801 continue; 10802 } 10803 10804 // Check for members of reference type; we can't move those. 10805 if (Field->getType()->isReferenceType()) { 10806 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10807 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10808 Diag(Field->getLocation(), diag::note_declared_at); 10809 Diag(CurrentLocation, diag::note_member_synthesized_at) 10810 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10811 Invalid = true; 10812 continue; 10813 } 10814 10815 // Check for members of const-qualified, non-class type. 10816 QualType BaseType = Context.getBaseElementType(Field->getType()); 10817 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10818 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10819 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10820 Diag(Field->getLocation(), diag::note_declared_at); 10821 Diag(CurrentLocation, diag::note_member_synthesized_at) 10822 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10823 Invalid = true; 10824 continue; 10825 } 10826 10827 // Suppress assigning zero-width bitfields. 10828 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10829 continue; 10830 10831 QualType FieldType = Field->getType().getNonReferenceType(); 10832 if (FieldType->isIncompleteArrayType()) { 10833 assert(ClassDecl->hasFlexibleArrayMember() && 10834 "Incomplete array type is not valid"); 10835 continue; 10836 } 10837 10838 // Build references to the field in the object we're copying from and to. 10839 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10840 LookupMemberName); 10841 MemberLookup.addDecl(Field); 10842 MemberLookup.resolveKind(); 10843 MemberBuilder From(MoveOther, OtherRefType, 10844 /*IsArrow=*/false, MemberLookup); 10845 MemberBuilder To(This, getCurrentThisType(), 10846 /*IsArrow=*/true, MemberLookup); 10847 10848 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue 10849 "Member reference with rvalue base must be rvalue except for reference " 10850 "members, which aren't allowed for move assignment."); 10851 10852 // Build the move of this field. 10853 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType, 10854 To, From, 10855 /*CopyingBaseSubobject=*/false, 10856 /*Copying=*/false); 10857 if (Move.isInvalid()) { 10858 Diag(CurrentLocation, diag::note_member_synthesized_at) 10859 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10860 MoveAssignOperator->setInvalidDecl(); 10861 return; 10862 } 10863 10864 // Success! Record the copy. 10865 Statements.push_back(Move.getAs<Stmt>()); 10866 } 10867 10868 if (!Invalid) { 10869 // Add a "return *this;" 10870 ExprResult ThisObj = 10871 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10872 10873 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10874 if (Return.isInvalid()) 10875 Invalid = true; 10876 else { 10877 Statements.push_back(Return.getAs<Stmt>()); 10878 10879 if (Trap.hasErrorOccurred()) { 10880 Diag(CurrentLocation, diag::note_member_synthesized_at) 10881 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10882 Invalid = true; 10883 } 10884 } 10885 } 10886 10887 // The exception specification is needed because we are defining the 10888 // function. 10889 ResolveExceptionSpec(CurrentLocation, 10890 MoveAssignOperator->getType()->castAs<FunctionProtoType>()); 10891 10892 if (Invalid) { 10893 MoveAssignOperator->setInvalidDecl(); 10894 return; 10895 } 10896 10897 StmtResult Body; 10898 { 10899 CompoundScopeRAII CompoundScope(*this); 10900 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10901 /*isStmtExpr=*/false); 10902 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10903 } 10904 MoveAssignOperator->setBody(Body.getAs<Stmt>()); 10905 10906 if (ASTMutationListener *L = getASTMutationListener()) { 10907 L->CompletedImplicitDefinition(MoveAssignOperator); 10908 } 10909 } 10910 10911 Sema::ImplicitExceptionSpecification 10912 Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) { 10913 CXXRecordDecl *ClassDecl = MD->getParent(); 10914 10915 ImplicitExceptionSpecification ExceptSpec(*this); 10916 if (ClassDecl->isInvalidDecl()) 10917 return ExceptSpec; 10918 10919 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 10920 assert(T->getNumParams() >= 1 && "not a copy ctor"); 10921 unsigned Quals = T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 10922 10923 // C++ [except.spec]p14: 10924 // An implicitly declared special member function (Clause 12) shall have an 10925 // exception-specification. [...] 10926 for (const auto &Base : ClassDecl->bases()) { 10927 // Virtual bases are handled below. 10928 if (Base.isVirtual()) 10929 continue; 10930 10931 CXXRecordDecl *BaseClassDecl 10932 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10933 if (CXXConstructorDecl *CopyConstructor = 10934 LookupCopyingConstructor(BaseClassDecl, Quals)) 10935 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10936 } 10937 for (const auto &Base : ClassDecl->vbases()) { 10938 CXXRecordDecl *BaseClassDecl 10939 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10940 if (CXXConstructorDecl *CopyConstructor = 10941 LookupCopyingConstructor(BaseClassDecl, Quals)) 10942 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10943 } 10944 for (const auto *Field : ClassDecl->fields()) { 10945 QualType FieldType = Context.getBaseElementType(Field->getType()); 10946 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10947 if (CXXConstructorDecl *CopyConstructor = 10948 LookupCopyingConstructor(FieldClassDecl, 10949 Quals | FieldType.getCVRQualifiers())) 10950 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor); 10951 } 10952 } 10953 10954 return ExceptSpec; 10955 } 10956 10957 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor( 10958 CXXRecordDecl *ClassDecl) { 10959 // C++ [class.copy]p4: 10960 // If the class definition does not explicitly declare a copy 10961 // constructor, one is declared implicitly. 10962 assert(ClassDecl->needsImplicitCopyConstructor()); 10963 10964 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor); 10965 if (DSM.isAlreadyBeingDeclared()) 10966 return nullptr; 10967 10968 QualType ClassType = Context.getTypeDeclType(ClassDecl); 10969 QualType ArgType = ClassType; 10970 bool Const = ClassDecl->implicitCopyConstructorHasConstParam(); 10971 if (Const) 10972 ArgType = ArgType.withConst(); 10973 ArgType = Context.getLValueReferenceType(ArgType); 10974 10975 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10976 CXXCopyConstructor, 10977 Const); 10978 10979 DeclarationName Name 10980 = Context.DeclarationNames.getCXXConstructorName( 10981 Context.getCanonicalType(ClassType)); 10982 SourceLocation ClassLoc = ClassDecl->getLocation(); 10983 DeclarationNameInfo NameInfo(Name, ClassLoc); 10984 10985 // An implicitly-declared copy constructor is an inline public 10986 // member of its class. 10987 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create( 10988 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 10989 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 10990 Constexpr); 10991 CopyConstructor->setAccess(AS_public); 10992 CopyConstructor->setDefaulted(); 10993 10994 if (getLangOpts().CUDA) { 10995 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor, 10996 CopyConstructor, 10997 /* ConstRHS */ Const, 10998 /* Diagnose */ false); 10999 } 11000 11001 // Build an exception specification pointing back at this member. 11002 FunctionProtoType::ExtProtoInfo EPI = 11003 getImplicitMethodEPI(*this, CopyConstructor); 11004 CopyConstructor->setType( 11005 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 11006 11007 // Add the parameter to the constructor. 11008 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor, 11009 ClassLoc, ClassLoc, 11010 /*IdentifierInfo=*/nullptr, 11011 ArgType, /*TInfo=*/nullptr, 11012 SC_None, nullptr); 11013 CopyConstructor->setParams(FromParam); 11014 11015 CopyConstructor->setTrivial( 11016 ClassDecl->needsOverloadResolutionForCopyConstructor() 11017 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor) 11018 : ClassDecl->hasTrivialCopyConstructor()); 11019 11020 // Note that we have declared this constructor. 11021 ++ASTContext::NumImplicitCopyConstructorsDeclared; 11022 11023 Scope *S = getScopeForContext(ClassDecl); 11024 CheckImplicitSpecialMemberDeclaration(S, CopyConstructor); 11025 11026 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor)) 11027 SetDeclDeleted(CopyConstructor, ClassLoc); 11028 11029 if (S) 11030 PushOnScopeChains(CopyConstructor, S, false); 11031 ClassDecl->addDecl(CopyConstructor); 11032 11033 return CopyConstructor; 11034 } 11035 11036 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation, 11037 CXXConstructorDecl *CopyConstructor) { 11038 assert((CopyConstructor->isDefaulted() && 11039 CopyConstructor->isCopyConstructor() && 11040 !CopyConstructor->doesThisDeclarationHaveABody() && 11041 !CopyConstructor->isDeleted()) && 11042 "DefineImplicitCopyConstructor - call it for implicit copy ctor"); 11043 11044 CXXRecordDecl *ClassDecl = CopyConstructor->getParent(); 11045 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor"); 11046 11047 // C++11 [class.copy]p7: 11048 // The [definition of an implicitly declared copy constructor] is 11049 // deprecated if the class has a user-declared copy assignment operator 11050 // or a user-declared destructor. 11051 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit()) 11052 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation); 11053 11054 SynthesizedFunctionScope Scope(*this, CopyConstructor); 11055 DiagnosticErrorTrap Trap(Diags); 11056 11057 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) || 11058 Trap.hasErrorOccurred()) { 11059 Diag(CurrentLocation, diag::note_member_synthesized_at) 11060 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl); 11061 CopyConstructor->setInvalidDecl(); 11062 } else { 11063 SourceLocation Loc = CopyConstructor->getLocEnd().isValid() 11064 ? CopyConstructor->getLocEnd() 11065 : CopyConstructor->getLocation(); 11066 Sema::CompoundScopeRAII CompoundScope(*this); 11067 CopyConstructor->setBody( 11068 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>()); 11069 } 11070 11071 // The exception specification is needed because we are defining the 11072 // function. 11073 ResolveExceptionSpec(CurrentLocation, 11074 CopyConstructor->getType()->castAs<FunctionProtoType>()); 11075 11076 CopyConstructor->markUsed(Context); 11077 MarkVTableUsed(CurrentLocation, ClassDecl); 11078 11079 if (ASTMutationListener *L = getASTMutationListener()) { 11080 L->CompletedImplicitDefinition(CopyConstructor); 11081 } 11082 } 11083 11084 Sema::ImplicitExceptionSpecification 11085 Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) { 11086 CXXRecordDecl *ClassDecl = MD->getParent(); 11087 11088 // C++ [except.spec]p14: 11089 // An implicitly declared special member function (Clause 12) shall have an 11090 // exception-specification. [...] 11091 ImplicitExceptionSpecification ExceptSpec(*this); 11092 if (ClassDecl->isInvalidDecl()) 11093 return ExceptSpec; 11094 11095 // Direct base-class constructors. 11096 for (const auto &B : ClassDecl->bases()) { 11097 if (B.isVirtual()) // Handled below. 11098 continue; 11099 11100 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 11101 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 11102 CXXConstructorDecl *Constructor = 11103 LookupMovingConstructor(BaseClassDecl, 0); 11104 // If this is a deleted function, add it anyway. This might be conformant 11105 // with the standard. This might not. I'm not sure. It might not matter. 11106 if (Constructor) 11107 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 11108 } 11109 } 11110 11111 // Virtual base-class constructors. 11112 for (const auto &B : ClassDecl->vbases()) { 11113 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 11114 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 11115 CXXConstructorDecl *Constructor = 11116 LookupMovingConstructor(BaseClassDecl, 0); 11117 // If this is a deleted function, add it anyway. This might be conformant 11118 // with the standard. This might not. I'm not sure. It might not matter. 11119 if (Constructor) 11120 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 11121 } 11122 } 11123 11124 // Field constructors. 11125 for (const auto *F : ClassDecl->fields()) { 11126 QualType FieldType = Context.getBaseElementType(F->getType()); 11127 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) { 11128 CXXConstructorDecl *Constructor = 11129 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers()); 11130 // If this is a deleted function, add it anyway. This might be conformant 11131 // with the standard. This might not. I'm not sure. It might not matter. 11132 // In particular, the problem is that this function never gets called. It 11133 // might just be ill-formed because this function attempts to refer to 11134 // a deleted function here. 11135 if (Constructor) 11136 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 11137 } 11138 } 11139 11140 return ExceptSpec; 11141 } 11142 11143 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor( 11144 CXXRecordDecl *ClassDecl) { 11145 assert(ClassDecl->needsImplicitMoveConstructor()); 11146 11147 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor); 11148 if (DSM.isAlreadyBeingDeclared()) 11149 return nullptr; 11150 11151 QualType ClassType = Context.getTypeDeclType(ClassDecl); 11152 QualType ArgType = Context.getRValueReferenceType(ClassType); 11153 11154 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 11155 CXXMoveConstructor, 11156 false); 11157 11158 DeclarationName Name 11159 = Context.DeclarationNames.getCXXConstructorName( 11160 Context.getCanonicalType(ClassType)); 11161 SourceLocation ClassLoc = ClassDecl->getLocation(); 11162 DeclarationNameInfo NameInfo(Name, ClassLoc); 11163 11164 // C++11 [class.copy]p11: 11165 // An implicitly-declared copy/move constructor is an inline public 11166 // member of its class. 11167 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create( 11168 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 11169 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 11170 Constexpr); 11171 MoveConstructor->setAccess(AS_public); 11172 MoveConstructor->setDefaulted(); 11173 11174 if (getLangOpts().CUDA) { 11175 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor, 11176 MoveConstructor, 11177 /* ConstRHS */ false, 11178 /* Diagnose */ false); 11179 } 11180 11181 // Build an exception specification pointing back at this member. 11182 FunctionProtoType::ExtProtoInfo EPI = 11183 getImplicitMethodEPI(*this, MoveConstructor); 11184 MoveConstructor->setType( 11185 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 11186 11187 // Add the parameter to the constructor. 11188 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor, 11189 ClassLoc, ClassLoc, 11190 /*IdentifierInfo=*/nullptr, 11191 ArgType, /*TInfo=*/nullptr, 11192 SC_None, nullptr); 11193 MoveConstructor->setParams(FromParam); 11194 11195 MoveConstructor->setTrivial( 11196 ClassDecl->needsOverloadResolutionForMoveConstructor() 11197 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor) 11198 : ClassDecl->hasTrivialMoveConstructor()); 11199 11200 // Note that we have declared this constructor. 11201 ++ASTContext::NumImplicitMoveConstructorsDeclared; 11202 11203 Scope *S = getScopeForContext(ClassDecl); 11204 CheckImplicitSpecialMemberDeclaration(S, MoveConstructor); 11205 11206 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) { 11207 ClassDecl->setImplicitMoveConstructorIsDeleted(); 11208 SetDeclDeleted(MoveConstructor, ClassLoc); 11209 } 11210 11211 if (S) 11212 PushOnScopeChains(MoveConstructor, S, false); 11213 ClassDecl->addDecl(MoveConstructor); 11214 11215 return MoveConstructor; 11216 } 11217 11218 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation, 11219 CXXConstructorDecl *MoveConstructor) { 11220 assert((MoveConstructor->isDefaulted() && 11221 MoveConstructor->isMoveConstructor() && 11222 !MoveConstructor->doesThisDeclarationHaveABody() && 11223 !MoveConstructor->isDeleted()) && 11224 "DefineImplicitMoveConstructor - call it for implicit move ctor"); 11225 11226 CXXRecordDecl *ClassDecl = MoveConstructor->getParent(); 11227 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor"); 11228 11229 SynthesizedFunctionScope Scope(*this, MoveConstructor); 11230 DiagnosticErrorTrap Trap(Diags); 11231 11232 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) || 11233 Trap.hasErrorOccurred()) { 11234 Diag(CurrentLocation, diag::note_member_synthesized_at) 11235 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl); 11236 MoveConstructor->setInvalidDecl(); 11237 } else { 11238 SourceLocation Loc = MoveConstructor->getLocEnd().isValid() 11239 ? MoveConstructor->getLocEnd() 11240 : MoveConstructor->getLocation(); 11241 Sema::CompoundScopeRAII CompoundScope(*this); 11242 MoveConstructor->setBody(ActOnCompoundStmt( 11243 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>()); 11244 } 11245 11246 // The exception specification is needed because we are defining the 11247 // function. 11248 ResolveExceptionSpec(CurrentLocation, 11249 MoveConstructor->getType()->castAs<FunctionProtoType>()); 11250 11251 MoveConstructor->markUsed(Context); 11252 MarkVTableUsed(CurrentLocation, ClassDecl); 11253 11254 if (ASTMutationListener *L = getASTMutationListener()) { 11255 L->CompletedImplicitDefinition(MoveConstructor); 11256 } 11257 } 11258 11259 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) { 11260 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD); 11261 } 11262 11263 void Sema::DefineImplicitLambdaToFunctionPointerConversion( 11264 SourceLocation CurrentLocation, 11265 CXXConversionDecl *Conv) { 11266 CXXRecordDecl *Lambda = Conv->getParent(); 11267 CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator(); 11268 // If we are defining a specialization of a conversion to function-ptr 11269 // cache the deduced template arguments for this specialization 11270 // so that we can use them to retrieve the corresponding call-operator 11271 // and static-invoker. 11272 const TemplateArgumentList *DeducedTemplateArgs = nullptr; 11273 11274 // Retrieve the corresponding call-operator specialization. 11275 if (Lambda->isGenericLambda()) { 11276 assert(Conv->isFunctionTemplateSpecialization()); 11277 FunctionTemplateDecl *CallOpTemplate = 11278 CallOp->getDescribedFunctionTemplate(); 11279 DeducedTemplateArgs = Conv->getTemplateSpecializationArgs(); 11280 void *InsertPos = nullptr; 11281 FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization( 11282 DeducedTemplateArgs->asArray(), 11283 InsertPos); 11284 assert(CallOpSpec && 11285 "Conversion operator must have a corresponding call operator"); 11286 CallOp = cast<CXXMethodDecl>(CallOpSpec); 11287 } 11288 // Mark the call operator referenced (and add to pending instantiations 11289 // if necessary). 11290 // For both the conversion and static-invoker template specializations 11291 // we construct their body's in this function, so no need to add them 11292 // to the PendingInstantiations. 11293 MarkFunctionReferenced(CurrentLocation, CallOp); 11294 11295 SynthesizedFunctionScope Scope(*this, Conv); 11296 DiagnosticErrorTrap Trap(Diags); 11297 11298 // Retrieve the static invoker... 11299 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker(); 11300 // ... and get the corresponding specialization for a generic lambda. 11301 if (Lambda->isGenericLambda()) { 11302 assert(DeducedTemplateArgs && 11303 "Must have deduced template arguments from Conversion Operator"); 11304 FunctionTemplateDecl *InvokeTemplate = 11305 Invoker->getDescribedFunctionTemplate(); 11306 void *InsertPos = nullptr; 11307 FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization( 11308 DeducedTemplateArgs->asArray(), 11309 InsertPos); 11310 assert(InvokeSpec && 11311 "Must have a corresponding static invoker specialization"); 11312 Invoker = cast<CXXMethodDecl>(InvokeSpec); 11313 } 11314 // Construct the body of the conversion function { return __invoke; }. 11315 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(), 11316 VK_LValue, Conv->getLocation()).get(); 11317 assert(FunctionRef && "Can't refer to __invoke function?"); 11318 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get(); 11319 Conv->setBody(new (Context) CompoundStmt(Context, Return, 11320 Conv->getLocation(), 11321 Conv->getLocation())); 11322 11323 Conv->markUsed(Context); 11324 Conv->setReferenced(); 11325 11326 // Fill in the __invoke function with a dummy implementation. IR generation 11327 // will fill in the actual details. 11328 Invoker->markUsed(Context); 11329 Invoker->setReferenced(); 11330 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation())); 11331 11332 if (ASTMutationListener *L = getASTMutationListener()) { 11333 L->CompletedImplicitDefinition(Conv); 11334 L->CompletedImplicitDefinition(Invoker); 11335 } 11336 } 11337 11338 11339 11340 void Sema::DefineImplicitLambdaToBlockPointerConversion( 11341 SourceLocation CurrentLocation, 11342 CXXConversionDecl *Conv) 11343 { 11344 assert(!Conv->getParent()->isGenericLambda()); 11345 11346 Conv->markUsed(Context); 11347 11348 SynthesizedFunctionScope Scope(*this, Conv); 11349 DiagnosticErrorTrap Trap(Diags); 11350 11351 // Copy-initialize the lambda object as needed to capture it. 11352 Expr *This = ActOnCXXThis(CurrentLocation).get(); 11353 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get(); 11354 11355 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation, 11356 Conv->getLocation(), 11357 Conv, DerefThis); 11358 11359 // If we're not under ARC, make sure we still get the _Block_copy/autorelease 11360 // behavior. Note that only the general conversion function does this 11361 // (since it's unusable otherwise); in the case where we inline the 11362 // block literal, it has block literal lifetime semantics. 11363 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount) 11364 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(), 11365 CK_CopyAndAutoreleaseBlockObject, 11366 BuildBlock.get(), nullptr, VK_RValue); 11367 11368 if (BuildBlock.isInvalid()) { 11369 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11370 Conv->setInvalidDecl(); 11371 return; 11372 } 11373 11374 // Create the return statement that returns the block from the conversion 11375 // function. 11376 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get()); 11377 if (Return.isInvalid()) { 11378 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11379 Conv->setInvalidDecl(); 11380 return; 11381 } 11382 11383 // Set the body of the conversion function. 11384 Stmt *ReturnS = Return.get(); 11385 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS, 11386 Conv->getLocation(), 11387 Conv->getLocation())); 11388 11389 // We're done; notify the mutation listener, if any. 11390 if (ASTMutationListener *L = getASTMutationListener()) { 11391 L->CompletedImplicitDefinition(Conv); 11392 } 11393 } 11394 11395 /// \brief Determine whether the given list arguments contains exactly one 11396 /// "real" (non-default) argument. 11397 static bool hasOneRealArgument(MultiExprArg Args) { 11398 switch (Args.size()) { 11399 case 0: 11400 return false; 11401 11402 default: 11403 if (!Args[1]->isDefaultArgument()) 11404 return false; 11405 11406 // fall through 11407 case 1: 11408 return !Args[0]->isDefaultArgument(); 11409 } 11410 11411 return false; 11412 } 11413 11414 ExprResult 11415 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11416 NamedDecl *FoundDecl, 11417 CXXConstructorDecl *Constructor, 11418 MultiExprArg ExprArgs, 11419 bool HadMultipleCandidates, 11420 bool IsListInitialization, 11421 bool IsStdInitListInitialization, 11422 bool RequiresZeroInit, 11423 unsigned ConstructKind, 11424 SourceRange ParenRange) { 11425 bool Elidable = false; 11426 11427 // C++0x [class.copy]p34: 11428 // When certain criteria are met, an implementation is allowed to 11429 // omit the copy/move construction of a class object, even if the 11430 // copy/move constructor and/or destructor for the object have 11431 // side effects. [...] 11432 // - when a temporary class object that has not been bound to a 11433 // reference (12.2) would be copied/moved to a class object 11434 // with the same cv-unqualified type, the copy/move operation 11435 // can be omitted by constructing the temporary object 11436 // directly into the target of the omitted copy/move 11437 if (ConstructKind == CXXConstructExpr::CK_Complete && 11438 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) { 11439 Expr *SubExpr = ExprArgs[0]; 11440 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent()); 11441 } 11442 11443 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, 11444 FoundDecl, Constructor, 11445 Elidable, ExprArgs, HadMultipleCandidates, 11446 IsListInitialization, 11447 IsStdInitListInitialization, RequiresZeroInit, 11448 ConstructKind, ParenRange); 11449 } 11450 11451 /// BuildCXXConstructExpr - Creates a complete call to a constructor, 11452 /// including handling of its default argument expressions. 11453 ExprResult 11454 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11455 NamedDecl *FoundDecl, 11456 CXXConstructorDecl *Constructor, 11457 bool Elidable, 11458 MultiExprArg ExprArgs, 11459 bool HadMultipleCandidates, 11460 bool IsListInitialization, 11461 bool IsStdInitListInitialization, 11462 bool RequiresZeroInit, 11463 unsigned ConstructKind, 11464 SourceRange ParenRange) { 11465 MarkFunctionReferenced(ConstructLoc, Constructor); 11466 return CXXConstructExpr::Create( 11467 Context, DeclInitType, ConstructLoc, FoundDecl, Constructor, Elidable, 11468 ExprArgs, HadMultipleCandidates, IsListInitialization, 11469 IsStdInitListInitialization, RequiresZeroInit, 11470 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind), 11471 ParenRange); 11472 } 11473 11474 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) { 11475 assert(Field->hasInClassInitializer()); 11476 11477 // If we already have the in-class initializer nothing needs to be done. 11478 if (Field->getInClassInitializer()) 11479 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11480 11481 // Maybe we haven't instantiated the in-class initializer. Go check the 11482 // pattern FieldDecl to see if it has one. 11483 CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent()); 11484 11485 if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) { 11486 CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern(); 11487 DeclContext::lookup_result Lookup = 11488 ClassPattern->lookup(Field->getDeclName()); 11489 11490 // Lookup can return at most two results: the pattern for the field, or the 11491 // injected class name of the parent record. No other member can have the 11492 // same name as the field. 11493 assert(!Lookup.empty() && Lookup.size() <= 2 && 11494 "more than two lookup results for field name"); 11495 FieldDecl *Pattern = dyn_cast<FieldDecl>(Lookup[0]); 11496 if (!Pattern) { 11497 assert(isa<CXXRecordDecl>(Lookup[0]) && 11498 "cannot have other non-field member with same name"); 11499 Pattern = cast<FieldDecl>(Lookup[1]); 11500 } 11501 11502 if (InstantiateInClassInitializer(Loc, Field, Pattern, 11503 getTemplateInstantiationArgs(Field))) 11504 return ExprError(); 11505 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11506 } 11507 11508 // DR1351: 11509 // If the brace-or-equal-initializer of a non-static data member 11510 // invokes a defaulted default constructor of its class or of an 11511 // enclosing class in a potentially evaluated subexpression, the 11512 // program is ill-formed. 11513 // 11514 // This resolution is unworkable: the exception specification of the 11515 // default constructor can be needed in an unevaluated context, in 11516 // particular, in the operand of a noexcept-expression, and we can be 11517 // unable to compute an exception specification for an enclosed class. 11518 // 11519 // Any attempt to resolve the exception specification of a defaulted default 11520 // constructor before the initializer is lexically complete will ultimately 11521 // come here at which point we can diagnose it. 11522 RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext(); 11523 if (OutermostClass == ParentRD) { 11524 Diag(Field->getLocEnd(), diag::err_in_class_initializer_not_yet_parsed) 11525 << ParentRD << Field; 11526 } else { 11527 Diag(Field->getLocEnd(), 11528 diag::err_in_class_initializer_not_yet_parsed_outer_class) 11529 << ParentRD << OutermostClass << Field; 11530 } 11531 11532 return ExprError(); 11533 } 11534 11535 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) { 11536 if (VD->isInvalidDecl()) return; 11537 11538 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl()); 11539 if (ClassDecl->isInvalidDecl()) return; 11540 if (ClassDecl->hasIrrelevantDestructor()) return; 11541 if (ClassDecl->isDependentContext()) return; 11542 11543 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl); 11544 MarkFunctionReferenced(VD->getLocation(), Destructor); 11545 CheckDestructorAccess(VD->getLocation(), Destructor, 11546 PDiag(diag::err_access_dtor_var) 11547 << VD->getDeclName() 11548 << VD->getType()); 11549 DiagnoseUseOfDecl(Destructor, VD->getLocation()); 11550 11551 if (Destructor->isTrivial()) return; 11552 if (!VD->hasGlobalStorage()) return; 11553 11554 // Emit warning for non-trivial dtor in global scope (a real global, 11555 // class-static, function-static). 11556 Diag(VD->getLocation(), diag::warn_exit_time_destructor); 11557 11558 // TODO: this should be re-enabled for static locals by !CXAAtExit 11559 if (!VD->isStaticLocal()) 11560 Diag(VD->getLocation(), diag::warn_global_destructor); 11561 } 11562 11563 /// \brief Given a constructor and the set of arguments provided for the 11564 /// constructor, convert the arguments and add any required default arguments 11565 /// to form a proper call to this constructor. 11566 /// 11567 /// \returns true if an error occurred, false otherwise. 11568 bool 11569 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor, 11570 MultiExprArg ArgsPtr, 11571 SourceLocation Loc, 11572 SmallVectorImpl<Expr*> &ConvertedArgs, 11573 bool AllowExplicit, 11574 bool IsListInitialization) { 11575 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall. 11576 unsigned NumArgs = ArgsPtr.size(); 11577 Expr **Args = ArgsPtr.data(); 11578 11579 const FunctionProtoType *Proto 11580 = Constructor->getType()->getAs<FunctionProtoType>(); 11581 assert(Proto && "Constructor without a prototype?"); 11582 unsigned NumParams = Proto->getNumParams(); 11583 11584 // If too few arguments are available, we'll fill in the rest with defaults. 11585 if (NumArgs < NumParams) 11586 ConvertedArgs.reserve(NumParams); 11587 else 11588 ConvertedArgs.reserve(NumArgs); 11589 11590 VariadicCallType CallType = 11591 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; 11592 SmallVector<Expr *, 8> AllArgs; 11593 bool Invalid = GatherArgumentsForCall(Loc, Constructor, 11594 Proto, 0, 11595 llvm::makeArrayRef(Args, NumArgs), 11596 AllArgs, 11597 CallType, AllowExplicit, 11598 IsListInitialization); 11599 ConvertedArgs.append(AllArgs.begin(), AllArgs.end()); 11600 11601 DiagnoseSentinelCalls(Constructor, Loc, AllArgs); 11602 11603 CheckConstructorCall(Constructor, 11604 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()), 11605 Proto, Loc); 11606 11607 return Invalid; 11608 } 11609 11610 static inline bool 11611 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef, 11612 const FunctionDecl *FnDecl) { 11613 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext(); 11614 if (isa<NamespaceDecl>(DC)) { 11615 return SemaRef.Diag(FnDecl->getLocation(), 11616 diag::err_operator_new_delete_declared_in_namespace) 11617 << FnDecl->getDeclName(); 11618 } 11619 11620 if (isa<TranslationUnitDecl>(DC) && 11621 FnDecl->getStorageClass() == SC_Static) { 11622 return SemaRef.Diag(FnDecl->getLocation(), 11623 diag::err_operator_new_delete_declared_static) 11624 << FnDecl->getDeclName(); 11625 } 11626 11627 return false; 11628 } 11629 11630 static inline bool 11631 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl, 11632 CanQualType ExpectedResultType, 11633 CanQualType ExpectedFirstParamType, 11634 unsigned DependentParamTypeDiag, 11635 unsigned InvalidParamTypeDiag) { 11636 QualType ResultType = 11637 FnDecl->getType()->getAs<FunctionType>()->getReturnType(); 11638 11639 // Check that the result type is not dependent. 11640 if (ResultType->isDependentType()) 11641 return SemaRef.Diag(FnDecl->getLocation(), 11642 diag::err_operator_new_delete_dependent_result_type) 11643 << FnDecl->getDeclName() << ExpectedResultType; 11644 11645 // Check that the result type is what we expect. 11646 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType) 11647 return SemaRef.Diag(FnDecl->getLocation(), 11648 diag::err_operator_new_delete_invalid_result_type) 11649 << FnDecl->getDeclName() << ExpectedResultType; 11650 11651 // A function template must have at least 2 parameters. 11652 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2) 11653 return SemaRef.Diag(FnDecl->getLocation(), 11654 diag::err_operator_new_delete_template_too_few_parameters) 11655 << FnDecl->getDeclName(); 11656 11657 // The function decl must have at least 1 parameter. 11658 if (FnDecl->getNumParams() == 0) 11659 return SemaRef.Diag(FnDecl->getLocation(), 11660 diag::err_operator_new_delete_too_few_parameters) 11661 << FnDecl->getDeclName(); 11662 11663 // Check the first parameter type is not dependent. 11664 QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); 11665 if (FirstParamType->isDependentType()) 11666 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag) 11667 << FnDecl->getDeclName() << ExpectedFirstParamType; 11668 11669 // Check that the first parameter type is what we expect. 11670 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() != 11671 ExpectedFirstParamType) 11672 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag) 11673 << FnDecl->getDeclName() << ExpectedFirstParamType; 11674 11675 return false; 11676 } 11677 11678 static bool 11679 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { 11680 // C++ [basic.stc.dynamic.allocation]p1: 11681 // A program is ill-formed if an allocation function is declared in a 11682 // namespace scope other than global scope or declared static in global 11683 // scope. 11684 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11685 return true; 11686 11687 CanQualType SizeTy = 11688 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType()); 11689 11690 // C++ [basic.stc.dynamic.allocation]p1: 11691 // The return type shall be void*. The first parameter shall have type 11692 // std::size_t. 11693 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy, 11694 SizeTy, 11695 diag::err_operator_new_dependent_param_type, 11696 diag::err_operator_new_param_type)) 11697 return true; 11698 11699 // C++ [basic.stc.dynamic.allocation]p1: 11700 // The first parameter shall not have an associated default argument. 11701 if (FnDecl->getParamDecl(0)->hasDefaultArg()) 11702 return SemaRef.Diag(FnDecl->getLocation(), 11703 diag::err_operator_new_default_arg) 11704 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange(); 11705 11706 return false; 11707 } 11708 11709 static bool 11710 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) { 11711 // C++ [basic.stc.dynamic.deallocation]p1: 11712 // A program is ill-formed if deallocation functions are declared in a 11713 // namespace scope other than global scope or declared static in global 11714 // scope. 11715 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11716 return true; 11717 11718 // C++ [basic.stc.dynamic.deallocation]p2: 11719 // Each deallocation function shall return void and its first parameter 11720 // shall be void*. 11721 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy, 11722 SemaRef.Context.VoidPtrTy, 11723 diag::err_operator_delete_dependent_param_type, 11724 diag::err_operator_delete_param_type)) 11725 return true; 11726 11727 return false; 11728 } 11729 11730 /// CheckOverloadedOperatorDeclaration - Check whether the declaration 11731 /// of this overloaded operator is well-formed. If so, returns false; 11732 /// otherwise, emits appropriate diagnostics and returns true. 11733 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) { 11734 assert(FnDecl && FnDecl->isOverloadedOperator() && 11735 "Expected an overloaded operator declaration"); 11736 11737 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator(); 11738 11739 // C++ [over.oper]p5: 11740 // The allocation and deallocation functions, operator new, 11741 // operator new[], operator delete and operator delete[], are 11742 // described completely in 3.7.3. The attributes and restrictions 11743 // found in the rest of this subclause do not apply to them unless 11744 // explicitly stated in 3.7.3. 11745 if (Op == OO_Delete || Op == OO_Array_Delete) 11746 return CheckOperatorDeleteDeclaration(*this, FnDecl); 11747 11748 if (Op == OO_New || Op == OO_Array_New) 11749 return CheckOperatorNewDeclaration(*this, FnDecl); 11750 11751 // C++ [over.oper]p6: 11752 // An operator function shall either be a non-static member 11753 // function or be a non-member function and have at least one 11754 // parameter whose type is a class, a reference to a class, an 11755 // enumeration, or a reference to an enumeration. 11756 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { 11757 if (MethodDecl->isStatic()) 11758 return Diag(FnDecl->getLocation(), 11759 diag::err_operator_overload_static) << FnDecl->getDeclName(); 11760 } else { 11761 bool ClassOrEnumParam = false; 11762 for (auto Param : FnDecl->params()) { 11763 QualType ParamType = Param->getType().getNonReferenceType(); 11764 if (ParamType->isDependentType() || ParamType->isRecordType() || 11765 ParamType->isEnumeralType()) { 11766 ClassOrEnumParam = true; 11767 break; 11768 } 11769 } 11770 11771 if (!ClassOrEnumParam) 11772 return Diag(FnDecl->getLocation(), 11773 diag::err_operator_overload_needs_class_or_enum) 11774 << FnDecl->getDeclName(); 11775 } 11776 11777 // C++ [over.oper]p8: 11778 // An operator function cannot have default arguments (8.3.6), 11779 // except where explicitly stated below. 11780 // 11781 // Only the function-call operator allows default arguments 11782 // (C++ [over.call]p1). 11783 if (Op != OO_Call) { 11784 for (auto Param : FnDecl->params()) { 11785 if (Param->hasDefaultArg()) 11786 return Diag(Param->getLocation(), 11787 diag::err_operator_overload_default_arg) 11788 << FnDecl->getDeclName() << Param->getDefaultArgRange(); 11789 } 11790 } 11791 11792 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = { 11793 { false, false, false } 11794 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ 11795 , { Unary, Binary, MemberOnly } 11796 #include "clang/Basic/OperatorKinds.def" 11797 }; 11798 11799 bool CanBeUnaryOperator = OperatorUses[Op][0]; 11800 bool CanBeBinaryOperator = OperatorUses[Op][1]; 11801 bool MustBeMemberOperator = OperatorUses[Op][2]; 11802 11803 // C++ [over.oper]p8: 11804 // [...] Operator functions cannot have more or fewer parameters 11805 // than the number required for the corresponding operator, as 11806 // described in the rest of this subclause. 11807 unsigned NumParams = FnDecl->getNumParams() 11808 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0); 11809 if (Op != OO_Call && 11810 ((NumParams == 1 && !CanBeUnaryOperator) || 11811 (NumParams == 2 && !CanBeBinaryOperator) || 11812 (NumParams < 1) || (NumParams > 2))) { 11813 // We have the wrong number of parameters. 11814 unsigned ErrorKind; 11815 if (CanBeUnaryOperator && CanBeBinaryOperator) { 11816 ErrorKind = 2; // 2 -> unary or binary. 11817 } else if (CanBeUnaryOperator) { 11818 ErrorKind = 0; // 0 -> unary 11819 } else { 11820 assert(CanBeBinaryOperator && 11821 "All non-call overloaded operators are unary or binary!"); 11822 ErrorKind = 1; // 1 -> binary 11823 } 11824 11825 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be) 11826 << FnDecl->getDeclName() << NumParams << ErrorKind; 11827 } 11828 11829 // Overloaded operators other than operator() cannot be variadic. 11830 if (Op != OO_Call && 11831 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) { 11832 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic) 11833 << FnDecl->getDeclName(); 11834 } 11835 11836 // Some operators must be non-static member functions. 11837 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) { 11838 return Diag(FnDecl->getLocation(), 11839 diag::err_operator_overload_must_be_member) 11840 << FnDecl->getDeclName(); 11841 } 11842 11843 // C++ [over.inc]p1: 11844 // The user-defined function called operator++ implements the 11845 // prefix and postfix ++ operator. If this function is a member 11846 // function with no parameters, or a non-member function with one 11847 // parameter of class or enumeration type, it defines the prefix 11848 // increment operator ++ for objects of that type. If the function 11849 // is a member function with one parameter (which shall be of type 11850 // int) or a non-member function with two parameters (the second 11851 // of which shall be of type int), it defines the postfix 11852 // increment operator ++ for objects of that type. 11853 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) { 11854 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1); 11855 QualType ParamType = LastParam->getType(); 11856 11857 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) && 11858 !ParamType->isDependentType()) 11859 return Diag(LastParam->getLocation(), 11860 diag::err_operator_overload_post_incdec_must_be_int) 11861 << LastParam->getType() << (Op == OO_MinusMinus); 11862 } 11863 11864 return false; 11865 } 11866 11867 static bool 11868 checkLiteralOperatorTemplateParameterList(Sema &SemaRef, 11869 FunctionTemplateDecl *TpDecl) { 11870 TemplateParameterList *TemplateParams = TpDecl->getTemplateParameters(); 11871 11872 // Must have one or two template parameters. 11873 if (TemplateParams->size() == 1) { 11874 NonTypeTemplateParmDecl *PmDecl = 11875 dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(0)); 11876 11877 // The template parameter must be a char parameter pack. 11878 if (PmDecl && PmDecl->isTemplateParameterPack() && 11879 SemaRef.Context.hasSameType(PmDecl->getType(), SemaRef.Context.CharTy)) 11880 return false; 11881 11882 } else if (TemplateParams->size() == 2) { 11883 TemplateTypeParmDecl *PmType = 11884 dyn_cast<TemplateTypeParmDecl>(TemplateParams->getParam(0)); 11885 NonTypeTemplateParmDecl *PmArgs = 11886 dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(1)); 11887 11888 // The second template parameter must be a parameter pack with the 11889 // first template parameter as its type. 11890 if (PmType && PmArgs && !PmType->isTemplateParameterPack() && 11891 PmArgs->isTemplateParameterPack()) { 11892 const TemplateTypeParmType *TArgs = 11893 PmArgs->getType()->getAs<TemplateTypeParmType>(); 11894 if (TArgs && TArgs->getDepth() == PmType->getDepth() && 11895 TArgs->getIndex() == PmType->getIndex()) { 11896 if (SemaRef.ActiveTemplateInstantiations.empty()) 11897 SemaRef.Diag(TpDecl->getLocation(), 11898 diag::ext_string_literal_operator_template); 11899 return false; 11900 } 11901 } 11902 } 11903 11904 SemaRef.Diag(TpDecl->getTemplateParameters()->getSourceRange().getBegin(), 11905 diag::err_literal_operator_template) 11906 << TpDecl->getTemplateParameters()->getSourceRange(); 11907 return true; 11908 } 11909 11910 /// CheckLiteralOperatorDeclaration - Check whether the declaration 11911 /// of this literal operator function is well-formed. If so, returns 11912 /// false; otherwise, emits appropriate diagnostics and returns true. 11913 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) { 11914 if (isa<CXXMethodDecl>(FnDecl)) { 11915 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace) 11916 << FnDecl->getDeclName(); 11917 return true; 11918 } 11919 11920 if (FnDecl->isExternC()) { 11921 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c); 11922 return true; 11923 } 11924 11925 // This might be the definition of a literal operator template. 11926 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate(); 11927 11928 // This might be a specialization of a literal operator template. 11929 if (!TpDecl) 11930 TpDecl = FnDecl->getPrimaryTemplate(); 11931 11932 // template <char...> type operator "" name() and 11933 // template <class T, T...> type operator "" name() are the only valid 11934 // template signatures, and the only valid signatures with no parameters. 11935 if (TpDecl) { 11936 if (FnDecl->param_size() != 0) { 11937 Diag(FnDecl->getLocation(), 11938 diag::err_literal_operator_template_with_params); 11939 return true; 11940 } 11941 11942 if (checkLiteralOperatorTemplateParameterList(*this, TpDecl)) 11943 return true; 11944 11945 } else if (FnDecl->param_size() == 1) { 11946 const ParmVarDecl *Param = FnDecl->getParamDecl(0); 11947 11948 QualType ParamType = Param->getType().getUnqualifiedType(); 11949 11950 // Only unsigned long long int, long double, any character type, and const 11951 // char * are allowed as the only parameters. 11952 if (ParamType->isSpecificBuiltinType(BuiltinType::ULongLong) || 11953 ParamType->isSpecificBuiltinType(BuiltinType::LongDouble) || 11954 Context.hasSameType(ParamType, Context.CharTy) || 11955 Context.hasSameType(ParamType, Context.WideCharTy) || 11956 Context.hasSameType(ParamType, Context.Char16Ty) || 11957 Context.hasSameType(ParamType, Context.Char32Ty)) { 11958 } else if (const PointerType *Ptr = ParamType->getAs<PointerType>()) { 11959 QualType InnerType = Ptr->getPointeeType(); 11960 11961 // Pointer parameter must be a const char *. 11962 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), 11963 Context.CharTy) && 11964 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { 11965 Diag(Param->getSourceRange().getBegin(), 11966 diag::err_literal_operator_param) 11967 << ParamType << "'const char *'" << Param->getSourceRange(); 11968 return true; 11969 } 11970 11971 } else if (ParamType->isRealFloatingType()) { 11972 Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param) 11973 << ParamType << Context.LongDoubleTy << Param->getSourceRange(); 11974 return true; 11975 11976 } else if (ParamType->isIntegerType()) { 11977 Diag(Param->getSourceRange().getBegin(), diag::err_literal_operator_param) 11978 << ParamType << Context.UnsignedLongLongTy << Param->getSourceRange(); 11979 return true; 11980 11981 } else { 11982 Diag(Param->getSourceRange().getBegin(), 11983 diag::err_literal_operator_invalid_param) 11984 << ParamType << Param->getSourceRange(); 11985 return true; 11986 } 11987 11988 } else if (FnDecl->param_size() == 2) { 11989 FunctionDecl::param_iterator Param = FnDecl->param_begin(); 11990 11991 // First, verify that the first parameter is correct. 11992 11993 QualType FirstParamType = (*Param)->getType().getUnqualifiedType(); 11994 11995 // Two parameter function must have a pointer to const as a 11996 // first parameter; let's strip those qualifiers. 11997 const PointerType *PT = FirstParamType->getAs<PointerType>(); 11998 11999 if (!PT) { 12000 Diag((*Param)->getSourceRange().getBegin(), 12001 diag::err_literal_operator_param) 12002 << FirstParamType << "'const char *'" << (*Param)->getSourceRange(); 12003 return true; 12004 } 12005 12006 QualType PointeeType = PT->getPointeeType(); 12007 // First parameter must be const 12008 if (!PointeeType.isConstQualified() || PointeeType.isVolatileQualified()) { 12009 Diag((*Param)->getSourceRange().getBegin(), 12010 diag::err_literal_operator_param) 12011 << FirstParamType << "'const char *'" << (*Param)->getSourceRange(); 12012 return true; 12013 } 12014 12015 QualType InnerType = PointeeType.getUnqualifiedType(); 12016 // Only const char *, const wchar_t*, const char16_t*, and const char32_t* 12017 // are allowed as the first parameter to a two-parameter function 12018 if (!(Context.hasSameType(InnerType, Context.CharTy) || 12019 Context.hasSameType(InnerType, Context.WideCharTy) || 12020 Context.hasSameType(InnerType, Context.Char16Ty) || 12021 Context.hasSameType(InnerType, Context.Char32Ty))) { 12022 Diag((*Param)->getSourceRange().getBegin(), 12023 diag::err_literal_operator_param) 12024 << FirstParamType << "'const char *'" << (*Param)->getSourceRange(); 12025 return true; 12026 } 12027 12028 // Move on to the second and final parameter. 12029 ++Param; 12030 12031 // The second parameter must be a std::size_t. 12032 QualType SecondParamType = (*Param)->getType().getUnqualifiedType(); 12033 if (!Context.hasSameType(SecondParamType, Context.getSizeType())) { 12034 Diag((*Param)->getSourceRange().getBegin(), 12035 diag::err_literal_operator_param) 12036 << SecondParamType << Context.getSizeType() 12037 << (*Param)->getSourceRange(); 12038 return true; 12039 } 12040 } else { 12041 Diag(FnDecl->getLocation(), diag::err_literal_operator_bad_param_count); 12042 return true; 12043 } 12044 12045 // Parameters are good. 12046 12047 // A parameter-declaration-clause containing a default argument is not 12048 // equivalent to any of the permitted forms. 12049 for (auto Param : FnDecl->params()) { 12050 if (Param->hasDefaultArg()) { 12051 Diag(Param->getDefaultArgRange().getBegin(), 12052 diag::err_literal_operator_default_argument) 12053 << Param->getDefaultArgRange(); 12054 break; 12055 } 12056 } 12057 12058 StringRef LiteralName 12059 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName(); 12060 if (LiteralName[0] != '_') { 12061 // C++11 [usrlit.suffix]p1: 12062 // Literal suffix identifiers that do not start with an underscore 12063 // are reserved for future standardization. 12064 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved) 12065 << NumericLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName); 12066 } 12067 12068 return false; 12069 } 12070 12071 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++ 12072 /// linkage specification, including the language and (if present) 12073 /// the '{'. ExternLoc is the location of the 'extern', Lang is the 12074 /// language string literal. LBraceLoc, if valid, provides the location of 12075 /// the '{' brace. Otherwise, this linkage specification does not 12076 /// have any braces. 12077 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, 12078 Expr *LangStr, 12079 SourceLocation LBraceLoc) { 12080 StringLiteral *Lit = cast<StringLiteral>(LangStr); 12081 if (!Lit->isAscii()) { 12082 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii) 12083 << LangStr->getSourceRange(); 12084 return nullptr; 12085 } 12086 12087 StringRef Lang = Lit->getString(); 12088 LinkageSpecDecl::LanguageIDs Language; 12089 if (Lang == "C") 12090 Language = LinkageSpecDecl::lang_c; 12091 else if (Lang == "C++") 12092 Language = LinkageSpecDecl::lang_cxx; 12093 else { 12094 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown) 12095 << LangStr->getSourceRange(); 12096 return nullptr; 12097 } 12098 12099 // FIXME: Add all the various semantics of linkage specifications 12100 12101 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc, 12102 LangStr->getExprLoc(), Language, 12103 LBraceLoc.isValid()); 12104 CurContext->addDecl(D); 12105 PushDeclContext(S, D); 12106 return D; 12107 } 12108 12109 /// ActOnFinishLinkageSpecification - Complete the definition of 12110 /// the C++ linkage specification LinkageSpec. If RBraceLoc is 12111 /// valid, it's the position of the closing '}' brace in a linkage 12112 /// specification that uses braces. 12113 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S, 12114 Decl *LinkageSpec, 12115 SourceLocation RBraceLoc) { 12116 if (RBraceLoc.isValid()) { 12117 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec); 12118 LSDecl->setRBraceLoc(RBraceLoc); 12119 } 12120 PopDeclContext(); 12121 return LinkageSpec; 12122 } 12123 12124 Decl *Sema::ActOnEmptyDeclaration(Scope *S, 12125 AttributeList *AttrList, 12126 SourceLocation SemiLoc) { 12127 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); 12128 // Attribute declarations appertain to empty declaration so we handle 12129 // them here. 12130 if (AttrList) 12131 ProcessDeclAttributeList(S, ED, AttrList); 12132 12133 CurContext->addDecl(ED); 12134 return ED; 12135 } 12136 12137 /// \brief Perform semantic analysis for the variable declaration that 12138 /// occurs within a C++ catch clause, returning the newly-created 12139 /// variable. 12140 VarDecl *Sema::BuildExceptionDeclaration(Scope *S, 12141 TypeSourceInfo *TInfo, 12142 SourceLocation StartLoc, 12143 SourceLocation Loc, 12144 IdentifierInfo *Name) { 12145 bool Invalid = false; 12146 QualType ExDeclType = TInfo->getType(); 12147 12148 // Arrays and functions decay. 12149 if (ExDeclType->isArrayType()) 12150 ExDeclType = Context.getArrayDecayedType(ExDeclType); 12151 else if (ExDeclType->isFunctionType()) 12152 ExDeclType = Context.getPointerType(ExDeclType); 12153 12154 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type. 12155 // The exception-declaration shall not denote a pointer or reference to an 12156 // incomplete type, other than [cv] void*. 12157 // N2844 forbids rvalue references. 12158 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) { 12159 Diag(Loc, diag::err_catch_rvalue_ref); 12160 Invalid = true; 12161 } 12162 12163 QualType BaseType = ExDeclType; 12164 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference 12165 unsigned DK = diag::err_catch_incomplete; 12166 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { 12167 BaseType = Ptr->getPointeeType(); 12168 Mode = 1; 12169 DK = diag::err_catch_incomplete_ptr; 12170 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) { 12171 // For the purpose of error recovery, we treat rvalue refs like lvalue refs. 12172 BaseType = Ref->getPointeeType(); 12173 Mode = 2; 12174 DK = diag::err_catch_incomplete_ref; 12175 } 12176 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) && 12177 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK)) 12178 Invalid = true; 12179 12180 if (!Invalid && !ExDeclType->isDependentType() && 12181 RequireNonAbstractType(Loc, ExDeclType, 12182 diag::err_abstract_type_in_decl, 12183 AbstractVariableType)) 12184 Invalid = true; 12185 12186 // Only the non-fragile NeXT runtime currently supports C++ catches 12187 // of ObjC types, and no runtime supports catching ObjC types by value. 12188 if (!Invalid && getLangOpts().ObjC1) { 12189 QualType T = ExDeclType; 12190 if (const ReferenceType *RT = T->getAs<ReferenceType>()) 12191 T = RT->getPointeeType(); 12192 12193 if (T->isObjCObjectType()) { 12194 Diag(Loc, diag::err_objc_object_catch); 12195 Invalid = true; 12196 } else if (T->isObjCObjectPointerType()) { 12197 // FIXME: should this be a test for macosx-fragile specifically? 12198 if (getLangOpts().ObjCRuntime.isFragile()) 12199 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile); 12200 } 12201 } 12202 12203 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, 12204 ExDeclType, TInfo, SC_None); 12205 ExDecl->setExceptionVariable(true); 12206 12207 // In ARC, infer 'retaining' for variables of retainable type. 12208 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) 12209 Invalid = true; 12210 12211 if (!Invalid && !ExDeclType->isDependentType()) { 12212 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) { 12213 // Insulate this from anything else we might currently be parsing. 12214 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated); 12215 12216 // C++ [except.handle]p16: 12217 // The object declared in an exception-declaration or, if the 12218 // exception-declaration does not specify a name, a temporary (12.2) is 12219 // copy-initialized (8.5) from the exception object. [...] 12220 // The object is destroyed when the handler exits, after the destruction 12221 // of any automatic objects initialized within the handler. 12222 // 12223 // We just pretend to initialize the object with itself, then make sure 12224 // it can be destroyed later. 12225 QualType initType = Context.getExceptionObjectType(ExDeclType); 12226 12227 InitializedEntity entity = 12228 InitializedEntity::InitializeVariable(ExDecl); 12229 InitializationKind initKind = 12230 InitializationKind::CreateCopy(Loc, SourceLocation()); 12231 12232 Expr *opaqueValue = 12233 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary); 12234 InitializationSequence sequence(*this, entity, initKind, opaqueValue); 12235 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue); 12236 if (result.isInvalid()) 12237 Invalid = true; 12238 else { 12239 // If the constructor used was non-trivial, set this as the 12240 // "initializer". 12241 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>(); 12242 if (!construct->getConstructor()->isTrivial()) { 12243 Expr *init = MaybeCreateExprWithCleanups(construct); 12244 ExDecl->setInit(init); 12245 } 12246 12247 // And make sure it's destructable. 12248 FinalizeVarWithDestructor(ExDecl, recordType); 12249 } 12250 } 12251 } 12252 12253 if (Invalid) 12254 ExDecl->setInvalidDecl(); 12255 12256 return ExDecl; 12257 } 12258 12259 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch 12260 /// handler. 12261 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) { 12262 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 12263 bool Invalid = D.isInvalidType(); 12264 12265 // Check for unexpanded parameter packs. 12266 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 12267 UPPC_ExceptionType)) { 12268 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 12269 D.getIdentifierLoc()); 12270 Invalid = true; 12271 } 12272 12273 IdentifierInfo *II = D.getIdentifier(); 12274 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(), 12275 LookupOrdinaryName, 12276 ForRedeclaration)) { 12277 // The scope should be freshly made just for us. There is just no way 12278 // it contains any previous declaration, except for function parameters in 12279 // a function-try-block's catch statement. 12280 assert(!S->isDeclScope(PrevDecl)); 12281 if (isDeclInScope(PrevDecl, CurContext, S)) { 12282 Diag(D.getIdentifierLoc(), diag::err_redefinition) 12283 << D.getIdentifier(); 12284 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 12285 Invalid = true; 12286 } else if (PrevDecl->isTemplateParameter()) 12287 // Maybe we will complain about the shadowed template parameter. 12288 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 12289 } 12290 12291 if (D.getCXXScopeSpec().isSet() && !Invalid) { 12292 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator) 12293 << D.getCXXScopeSpec().getRange(); 12294 Invalid = true; 12295 } 12296 12297 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, 12298 D.getLocStart(), 12299 D.getIdentifierLoc(), 12300 D.getIdentifier()); 12301 if (Invalid) 12302 ExDecl->setInvalidDecl(); 12303 12304 // Add the exception declaration into this scope. 12305 if (II) 12306 PushOnScopeChains(ExDecl, S); 12307 else 12308 CurContext->addDecl(ExDecl); 12309 12310 ProcessDeclAttributes(S, ExDecl, D); 12311 return ExDecl; 12312 } 12313 12314 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12315 Expr *AssertExpr, 12316 Expr *AssertMessageExpr, 12317 SourceLocation RParenLoc) { 12318 StringLiteral *AssertMessage = 12319 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr; 12320 12321 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression)) 12322 return nullptr; 12323 12324 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr, 12325 AssertMessage, RParenLoc, false); 12326 } 12327 12328 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12329 Expr *AssertExpr, 12330 StringLiteral *AssertMessage, 12331 SourceLocation RParenLoc, 12332 bool Failed) { 12333 assert(AssertExpr != nullptr && "Expected non-null condition"); 12334 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() && 12335 !Failed) { 12336 // In a static_assert-declaration, the constant-expression shall be a 12337 // constant expression that can be contextually converted to bool. 12338 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); 12339 if (Converted.isInvalid()) 12340 Failed = true; 12341 12342 llvm::APSInt Cond; 12343 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond, 12344 diag::err_static_assert_expression_is_not_constant, 12345 /*AllowFold=*/false).isInvalid()) 12346 Failed = true; 12347 12348 if (!Failed && !Cond) { 12349 SmallString<256> MsgBuffer; 12350 llvm::raw_svector_ostream Msg(MsgBuffer); 12351 if (AssertMessage) 12352 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy()); 12353 Diag(StaticAssertLoc, diag::err_static_assert_failed) 12354 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); 12355 Failed = true; 12356 } 12357 } 12358 12359 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc, 12360 AssertExpr, AssertMessage, RParenLoc, 12361 Failed); 12362 12363 CurContext->addDecl(Decl); 12364 return Decl; 12365 } 12366 12367 /// \brief Perform semantic analysis of the given friend type declaration. 12368 /// 12369 /// \returns A friend declaration that. 12370 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart, 12371 SourceLocation FriendLoc, 12372 TypeSourceInfo *TSInfo) { 12373 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration"); 12374 12375 QualType T = TSInfo->getType(); 12376 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange(); 12377 12378 // C++03 [class.friend]p2: 12379 // An elaborated-type-specifier shall be used in a friend declaration 12380 // for a class.* 12381 // 12382 // * The class-key of the elaborated-type-specifier is required. 12383 if (!ActiveTemplateInstantiations.empty()) { 12384 // Do not complain about the form of friend template types during 12385 // template instantiation; we will already have complained when the 12386 // template was declared. 12387 } else { 12388 if (!T->isElaboratedTypeSpecifier()) { 12389 // If we evaluated the type to a record type, suggest putting 12390 // a tag in front. 12391 if (const RecordType *RT = T->getAs<RecordType>()) { 12392 RecordDecl *RD = RT->getDecl(); 12393 12394 SmallString<16> InsertionText(" "); 12395 InsertionText += RD->getKindName(); 12396 12397 Diag(TypeRange.getBegin(), 12398 getLangOpts().CPlusPlus11 ? 12399 diag::warn_cxx98_compat_unelaborated_friend_type : 12400 diag::ext_unelaborated_friend_type) 12401 << (unsigned) RD->getTagKind() 12402 << T 12403 << FixItHint::CreateInsertion(getLocForEndOfToken(FriendLoc), 12404 InsertionText); 12405 } else { 12406 Diag(FriendLoc, 12407 getLangOpts().CPlusPlus11 ? 12408 diag::warn_cxx98_compat_nonclass_type_friend : 12409 diag::ext_nonclass_type_friend) 12410 << T 12411 << TypeRange; 12412 } 12413 } else if (T->getAs<EnumType>()) { 12414 Diag(FriendLoc, 12415 getLangOpts().CPlusPlus11 ? 12416 diag::warn_cxx98_compat_enum_friend : 12417 diag::ext_enum_friend) 12418 << T 12419 << TypeRange; 12420 } 12421 12422 // C++11 [class.friend]p3: 12423 // A friend declaration that does not declare a function shall have one 12424 // of the following forms: 12425 // friend elaborated-type-specifier ; 12426 // friend simple-type-specifier ; 12427 // friend typename-specifier ; 12428 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc) 12429 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T; 12430 } 12431 12432 // If the type specifier in a friend declaration designates a (possibly 12433 // cv-qualified) class type, that class is declared as a friend; otherwise, 12434 // the friend declaration is ignored. 12435 return FriendDecl::Create(Context, CurContext, 12436 TSInfo->getTypeLoc().getLocStart(), TSInfo, 12437 FriendLoc); 12438 } 12439 12440 /// Handle a friend tag declaration where the scope specifier was 12441 /// templated. 12442 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc, 12443 unsigned TagSpec, SourceLocation TagLoc, 12444 CXXScopeSpec &SS, 12445 IdentifierInfo *Name, 12446 SourceLocation NameLoc, 12447 AttributeList *Attr, 12448 MultiTemplateParamsArg TempParamLists) { 12449 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 12450 12451 bool isExplicitSpecialization = false; 12452 bool Invalid = false; 12453 12454 if (TemplateParameterList *TemplateParams = 12455 MatchTemplateParametersToScopeSpecifier( 12456 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true, 12457 isExplicitSpecialization, Invalid)) { 12458 if (TemplateParams->size() > 0) { 12459 // This is a declaration of a class template. 12460 if (Invalid) 12461 return nullptr; 12462 12463 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name, 12464 NameLoc, Attr, TemplateParams, AS_public, 12465 /*ModulePrivateLoc=*/SourceLocation(), 12466 FriendLoc, TempParamLists.size() - 1, 12467 TempParamLists.data()).get(); 12468 } else { 12469 // The "template<>" header is extraneous. 12470 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 12471 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 12472 isExplicitSpecialization = true; 12473 } 12474 } 12475 12476 if (Invalid) return nullptr; 12477 12478 bool isAllExplicitSpecializations = true; 12479 for (unsigned I = TempParamLists.size(); I-- > 0; ) { 12480 if (TempParamLists[I]->size()) { 12481 isAllExplicitSpecializations = false; 12482 break; 12483 } 12484 } 12485 12486 // FIXME: don't ignore attributes. 12487 12488 // If it's explicit specializations all the way down, just forget 12489 // about the template header and build an appropriate non-templated 12490 // friend. TODO: for source fidelity, remember the headers. 12491 if (isAllExplicitSpecializations) { 12492 if (SS.isEmpty()) { 12493 bool Owned = false; 12494 bool IsDependent = false; 12495 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc, 12496 Attr, AS_public, 12497 /*ModulePrivateLoc=*/SourceLocation(), 12498 MultiTemplateParamsArg(), Owned, IsDependent, 12499 /*ScopedEnumKWLoc=*/SourceLocation(), 12500 /*ScopedEnumUsesClassTag=*/false, 12501 /*UnderlyingType=*/TypeResult(), 12502 /*IsTypeSpecifier=*/false); 12503 } 12504 12505 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 12506 ElaboratedTypeKeyword Keyword 12507 = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12508 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc, 12509 *Name, NameLoc); 12510 if (T.isNull()) 12511 return nullptr; 12512 12513 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12514 if (isa<DependentNameType>(T)) { 12515 DependentNameTypeLoc TL = 12516 TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12517 TL.setElaboratedKeywordLoc(TagLoc); 12518 TL.setQualifierLoc(QualifierLoc); 12519 TL.setNameLoc(NameLoc); 12520 } else { 12521 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); 12522 TL.setElaboratedKeywordLoc(TagLoc); 12523 TL.setQualifierLoc(QualifierLoc); 12524 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc); 12525 } 12526 12527 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12528 TSI, FriendLoc, TempParamLists); 12529 Friend->setAccess(AS_public); 12530 CurContext->addDecl(Friend); 12531 return Friend; 12532 } 12533 12534 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); 12535 12536 12537 12538 // Handle the case of a templated-scope friend class. e.g. 12539 // template <class T> class A<T>::B; 12540 // FIXME: we don't support these right now. 12541 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported) 12542 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext); 12543 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12544 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name); 12545 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12546 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12547 TL.setElaboratedKeywordLoc(TagLoc); 12548 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 12549 TL.setNameLoc(NameLoc); 12550 12551 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12552 TSI, FriendLoc, TempParamLists); 12553 Friend->setAccess(AS_public); 12554 Friend->setUnsupportedFriend(true); 12555 CurContext->addDecl(Friend); 12556 return Friend; 12557 } 12558 12559 12560 /// Handle a friend type declaration. This works in tandem with 12561 /// ActOnTag. 12562 /// 12563 /// Notes on friend class templates: 12564 /// 12565 /// We generally treat friend class declarations as if they were 12566 /// declaring a class. So, for example, the elaborated type specifier 12567 /// in a friend declaration is required to obey the restrictions of a 12568 /// class-head (i.e. no typedefs in the scope chain), template 12569 /// parameters are required to match up with simple template-ids, &c. 12570 /// However, unlike when declaring a template specialization, it's 12571 /// okay to refer to a template specialization without an empty 12572 /// template parameter declaration, e.g. 12573 /// friend class A<T>::B<unsigned>; 12574 /// We permit this as a special case; if there are any template 12575 /// parameters present at all, require proper matching, i.e. 12576 /// template <> template \<class T> friend class A<int>::B; 12577 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, 12578 MultiTemplateParamsArg TempParams) { 12579 SourceLocation Loc = DS.getLocStart(); 12580 12581 assert(DS.isFriendSpecified()); 12582 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12583 12584 // Try to convert the decl specifier to a type. This works for 12585 // friend templates because ActOnTag never produces a ClassTemplateDecl 12586 // for a TUK_Friend. 12587 Declarator TheDeclarator(DS, Declarator::MemberContext); 12588 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S); 12589 QualType T = TSI->getType(); 12590 if (TheDeclarator.isInvalidType()) 12591 return nullptr; 12592 12593 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration)) 12594 return nullptr; 12595 12596 // This is definitely an error in C++98. It's probably meant to 12597 // be forbidden in C++0x, too, but the specification is just 12598 // poorly written. 12599 // 12600 // The problem is with declarations like the following: 12601 // template <T> friend A<T>::foo; 12602 // where deciding whether a class C is a friend or not now hinges 12603 // on whether there exists an instantiation of A that causes 12604 // 'foo' to equal C. There are restrictions on class-heads 12605 // (which we declare (by fiat) elaborated friend declarations to 12606 // be) that makes this tractable. 12607 // 12608 // FIXME: handle "template <> friend class A<T>;", which 12609 // is possibly well-formed? Who even knows? 12610 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) { 12611 Diag(Loc, diag::err_tagless_friend_type_template) 12612 << DS.getSourceRange(); 12613 return nullptr; 12614 } 12615 12616 // C++98 [class.friend]p1: A friend of a class is a function 12617 // or class that is not a member of the class . . . 12618 // This is fixed in DR77, which just barely didn't make the C++03 12619 // deadline. It's also a very silly restriction that seriously 12620 // affects inner classes and which nobody else seems to implement; 12621 // thus we never diagnose it, not even in -pedantic. 12622 // 12623 // But note that we could warn about it: it's always useless to 12624 // friend one of your own members (it's not, however, worthless to 12625 // friend a member of an arbitrary specialization of your template). 12626 12627 Decl *D; 12628 if (unsigned NumTempParamLists = TempParams.size()) 12629 D = FriendTemplateDecl::Create(Context, CurContext, Loc, 12630 NumTempParamLists, 12631 TempParams.data(), 12632 TSI, 12633 DS.getFriendSpecLoc()); 12634 else 12635 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI); 12636 12637 if (!D) 12638 return nullptr; 12639 12640 D->setAccess(AS_public); 12641 CurContext->addDecl(D); 12642 12643 return D; 12644 } 12645 12646 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, 12647 MultiTemplateParamsArg TemplateParams) { 12648 const DeclSpec &DS = D.getDeclSpec(); 12649 12650 assert(DS.isFriendSpecified()); 12651 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12652 12653 SourceLocation Loc = D.getIdentifierLoc(); 12654 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 12655 12656 // C++ [class.friend]p1 12657 // A friend of a class is a function or class.... 12658 // Note that this sees through typedefs, which is intended. 12659 // It *doesn't* see through dependent types, which is correct 12660 // according to [temp.arg.type]p3: 12661 // If a declaration acquires a function type through a 12662 // type dependent on a template-parameter and this causes 12663 // a declaration that does not use the syntactic form of a 12664 // function declarator to have a function type, the program 12665 // is ill-formed. 12666 if (!TInfo->getType()->isFunctionType()) { 12667 Diag(Loc, diag::err_unexpected_friend); 12668 12669 // It might be worthwhile to try to recover by creating an 12670 // appropriate declaration. 12671 return nullptr; 12672 } 12673 12674 // C++ [namespace.memdef]p3 12675 // - If a friend declaration in a non-local class first declares a 12676 // class or function, the friend class or function is a member 12677 // of the innermost enclosing namespace. 12678 // - The name of the friend is not found by simple name lookup 12679 // until a matching declaration is provided in that namespace 12680 // scope (either before or after the class declaration granting 12681 // friendship). 12682 // - If a friend function is called, its name may be found by the 12683 // name lookup that considers functions from namespaces and 12684 // classes associated with the types of the function arguments. 12685 // - When looking for a prior declaration of a class or a function 12686 // declared as a friend, scopes outside the innermost enclosing 12687 // namespace scope are not considered. 12688 12689 CXXScopeSpec &SS = D.getCXXScopeSpec(); 12690 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 12691 DeclarationName Name = NameInfo.getName(); 12692 assert(Name); 12693 12694 // Check for unexpanded parameter packs. 12695 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) || 12696 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) || 12697 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration)) 12698 return nullptr; 12699 12700 // The context we found the declaration in, or in which we should 12701 // create the declaration. 12702 DeclContext *DC; 12703 Scope *DCScope = S; 12704 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 12705 ForRedeclaration); 12706 12707 // There are five cases here. 12708 // - There's no scope specifier and we're in a local class. Only look 12709 // for functions declared in the immediately-enclosing block scope. 12710 // We recover from invalid scope qualifiers as if they just weren't there. 12711 FunctionDecl *FunctionContainingLocalClass = nullptr; 12712 if ((SS.isInvalid() || !SS.isSet()) && 12713 (FunctionContainingLocalClass = 12714 cast<CXXRecordDecl>(CurContext)->isLocalClass())) { 12715 // C++11 [class.friend]p11: 12716 // If a friend declaration appears in a local class and the name 12717 // specified is an unqualified name, a prior declaration is 12718 // looked up without considering scopes that are outside the 12719 // innermost enclosing non-class scope. For a friend function 12720 // declaration, if there is no prior declaration, the program is 12721 // ill-formed. 12722 12723 // Find the innermost enclosing non-class scope. This is the block 12724 // scope containing the local class definition (or for a nested class, 12725 // the outer local class). 12726 DCScope = S->getFnParent(); 12727 12728 // Look up the function name in the scope. 12729 Previous.clear(LookupLocalFriendName); 12730 LookupName(Previous, S, /*AllowBuiltinCreation*/false); 12731 12732 if (!Previous.empty()) { 12733 // All possible previous declarations must have the same context: 12734 // either they were declared at block scope or they are members of 12735 // one of the enclosing local classes. 12736 DC = Previous.getRepresentativeDecl()->getDeclContext(); 12737 } else { 12738 // This is ill-formed, but provide the context that we would have 12739 // declared the function in, if we were permitted to, for error recovery. 12740 DC = FunctionContainingLocalClass; 12741 } 12742 adjustContextForLocalExternDecl(DC); 12743 12744 // C++ [class.friend]p6: 12745 // A function can be defined in a friend declaration of a class if and 12746 // only if the class is a non-local class (9.8), the function name is 12747 // unqualified, and the function has namespace scope. 12748 if (D.isFunctionDefinition()) { 12749 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class); 12750 } 12751 12752 // - There's no scope specifier, in which case we just go to the 12753 // appropriate scope and look for a function or function template 12754 // there as appropriate. 12755 } else if (SS.isInvalid() || !SS.isSet()) { 12756 // C++11 [namespace.memdef]p3: 12757 // If the name in a friend declaration is neither qualified nor 12758 // a template-id and the declaration is a function or an 12759 // elaborated-type-specifier, the lookup to determine whether 12760 // the entity has been previously declared shall not consider 12761 // any scopes outside the innermost enclosing namespace. 12762 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId; 12763 12764 // Find the appropriate context according to the above. 12765 DC = CurContext; 12766 12767 // Skip class contexts. If someone can cite chapter and verse 12768 // for this behavior, that would be nice --- it's what GCC and 12769 // EDG do, and it seems like a reasonable intent, but the spec 12770 // really only says that checks for unqualified existing 12771 // declarations should stop at the nearest enclosing namespace, 12772 // not that they should only consider the nearest enclosing 12773 // namespace. 12774 while (DC->isRecord()) 12775 DC = DC->getParent(); 12776 12777 DeclContext *LookupDC = DC; 12778 while (LookupDC->isTransparentContext()) 12779 LookupDC = LookupDC->getParent(); 12780 12781 while (true) { 12782 LookupQualifiedName(Previous, LookupDC); 12783 12784 if (!Previous.empty()) { 12785 DC = LookupDC; 12786 break; 12787 } 12788 12789 if (isTemplateId) { 12790 if (isa<TranslationUnitDecl>(LookupDC)) break; 12791 } else { 12792 if (LookupDC->isFileContext()) break; 12793 } 12794 LookupDC = LookupDC->getParent(); 12795 } 12796 12797 DCScope = getScopeForDeclContext(S, DC); 12798 12799 // - There's a non-dependent scope specifier, in which case we 12800 // compute it and do a previous lookup there for a function 12801 // or function template. 12802 } else if (!SS.getScopeRep()->isDependent()) { 12803 DC = computeDeclContext(SS); 12804 if (!DC) return nullptr; 12805 12806 if (RequireCompleteDeclContext(SS, DC)) return nullptr; 12807 12808 LookupQualifiedName(Previous, DC); 12809 12810 // Ignore things found implicitly in the wrong scope. 12811 // TODO: better diagnostics for this case. Suggesting the right 12812 // qualified scope would be nice... 12813 LookupResult::Filter F = Previous.makeFilter(); 12814 while (F.hasNext()) { 12815 NamedDecl *D = F.next(); 12816 if (!DC->InEnclosingNamespaceSetOf( 12817 D->getDeclContext()->getRedeclContext())) 12818 F.erase(); 12819 } 12820 F.done(); 12821 12822 if (Previous.empty()) { 12823 D.setInvalidType(); 12824 Diag(Loc, diag::err_qualified_friend_not_found) 12825 << Name << TInfo->getType(); 12826 return nullptr; 12827 } 12828 12829 // C++ [class.friend]p1: A friend of a class is a function or 12830 // class that is not a member of the class . . . 12831 if (DC->Equals(CurContext)) 12832 Diag(DS.getFriendSpecLoc(), 12833 getLangOpts().CPlusPlus11 ? 12834 diag::warn_cxx98_compat_friend_is_member : 12835 diag::err_friend_is_member); 12836 12837 if (D.isFunctionDefinition()) { 12838 // C++ [class.friend]p6: 12839 // A function can be defined in a friend declaration of a class if and 12840 // only if the class is a non-local class (9.8), the function name is 12841 // unqualified, and the function has namespace scope. 12842 SemaDiagnosticBuilder DB 12843 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def); 12844 12845 DB << SS.getScopeRep(); 12846 if (DC->isFileContext()) 12847 DB << FixItHint::CreateRemoval(SS.getRange()); 12848 SS.clear(); 12849 } 12850 12851 // - There's a scope specifier that does not match any template 12852 // parameter lists, in which case we use some arbitrary context, 12853 // create a method or method template, and wait for instantiation. 12854 // - There's a scope specifier that does match some template 12855 // parameter lists, which we don't handle right now. 12856 } else { 12857 if (D.isFunctionDefinition()) { 12858 // C++ [class.friend]p6: 12859 // A function can be defined in a friend declaration of a class if and 12860 // only if the class is a non-local class (9.8), the function name is 12861 // unqualified, and the function has namespace scope. 12862 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def) 12863 << SS.getScopeRep(); 12864 } 12865 12866 DC = CurContext; 12867 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?"); 12868 } 12869 12870 if (!DC->isRecord()) { 12871 int DiagArg = -1; 12872 switch (D.getName().getKind()) { 12873 case UnqualifiedId::IK_ConstructorTemplateId: 12874 case UnqualifiedId::IK_ConstructorName: 12875 DiagArg = 0; 12876 break; 12877 case UnqualifiedId::IK_DestructorName: 12878 DiagArg = 1; 12879 break; 12880 case UnqualifiedId::IK_ConversionFunctionId: 12881 DiagArg = 2; 12882 break; 12883 case UnqualifiedId::IK_Identifier: 12884 case UnqualifiedId::IK_ImplicitSelfParam: 12885 case UnqualifiedId::IK_LiteralOperatorId: 12886 case UnqualifiedId::IK_OperatorFunctionId: 12887 case UnqualifiedId::IK_TemplateId: 12888 break; 12889 } 12890 // This implies that it has to be an operator or function. 12891 if (DiagArg >= 0) { 12892 Diag(Loc, diag::err_introducing_special_friend) << DiagArg; 12893 return nullptr; 12894 } 12895 } 12896 12897 // FIXME: This is an egregious hack to cope with cases where the scope stack 12898 // does not contain the declaration context, i.e., in an out-of-line 12899 // definition of a class. 12900 Scope FakeDCScope(S, Scope::DeclScope, Diags); 12901 if (!DCScope) { 12902 FakeDCScope.setEntity(DC); 12903 DCScope = &FakeDCScope; 12904 } 12905 12906 bool AddToScope = true; 12907 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous, 12908 TemplateParams, AddToScope); 12909 if (!ND) return nullptr; 12910 12911 assert(ND->getLexicalDeclContext() == CurContext); 12912 12913 // If we performed typo correction, we might have added a scope specifier 12914 // and changed the decl context. 12915 DC = ND->getDeclContext(); 12916 12917 // Add the function declaration to the appropriate lookup tables, 12918 // adjusting the redeclarations list as necessary. We don't 12919 // want to do this yet if the friending class is dependent. 12920 // 12921 // Also update the scope-based lookup if the target context's 12922 // lookup context is in lexical scope. 12923 if (!CurContext->isDependentContext()) { 12924 DC = DC->getRedeclContext(); 12925 DC->makeDeclVisibleInContext(ND); 12926 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 12927 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false); 12928 } 12929 12930 FriendDecl *FrD = FriendDecl::Create(Context, CurContext, 12931 D.getIdentifierLoc(), ND, 12932 DS.getFriendSpecLoc()); 12933 FrD->setAccess(AS_public); 12934 CurContext->addDecl(FrD); 12935 12936 if (ND->isInvalidDecl()) { 12937 FrD->setInvalidDecl(); 12938 } else { 12939 if (DC->isRecord()) CheckFriendAccess(ND); 12940 12941 FunctionDecl *FD; 12942 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 12943 FD = FTD->getTemplatedDecl(); 12944 else 12945 FD = cast<FunctionDecl>(ND); 12946 12947 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a 12948 // default argument expression, that declaration shall be a definition 12949 // and shall be the only declaration of the function or function 12950 // template in the translation unit. 12951 if (functionDeclHasDefaultArgument(FD)) { 12952 if (FunctionDecl *OldFD = FD->getPreviousDecl()) { 12953 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 12954 Diag(OldFD->getLocation(), diag::note_previous_declaration); 12955 } else if (!D.isFunctionDefinition()) 12956 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def); 12957 } 12958 12959 // Mark templated-scope function declarations as unsupported. 12960 if (FD->getNumTemplateParameterLists() && SS.isValid()) { 12961 Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported) 12962 << SS.getScopeRep() << SS.getRange() 12963 << cast<CXXRecordDecl>(CurContext); 12964 FrD->setUnsupportedFriend(true); 12965 } 12966 } 12967 12968 return ND; 12969 } 12970 12971 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) { 12972 AdjustDeclIfTemplate(Dcl); 12973 12974 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl); 12975 if (!Fn) { 12976 Diag(DelLoc, diag::err_deleted_non_function); 12977 return; 12978 } 12979 12980 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) { 12981 // Don't consider the implicit declaration we generate for explicit 12982 // specializations. FIXME: Do not generate these implicit declarations. 12983 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization || 12984 Prev->getPreviousDecl()) && 12985 !Prev->isDefined()) { 12986 Diag(DelLoc, diag::err_deleted_decl_not_first); 12987 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(), 12988 Prev->isImplicit() ? diag::note_previous_implicit_declaration 12989 : diag::note_previous_declaration); 12990 } 12991 // If the declaration wasn't the first, we delete the function anyway for 12992 // recovery. 12993 Fn = Fn->getCanonicalDecl(); 12994 } 12995 12996 // dllimport/dllexport cannot be deleted. 12997 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) { 12998 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr; 12999 Fn->setInvalidDecl(); 13000 } 13001 13002 if (Fn->isDeleted()) 13003 return; 13004 13005 // See if we're deleting a function which is already known to override a 13006 // non-deleted virtual function. 13007 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) { 13008 bool IssuedDiagnostic = false; 13009 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 13010 E = MD->end_overridden_methods(); 13011 I != E; ++I) { 13012 if (!(*MD->begin_overridden_methods())->isDeleted()) { 13013 if (!IssuedDiagnostic) { 13014 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName(); 13015 IssuedDiagnostic = true; 13016 } 13017 Diag((*I)->getLocation(), diag::note_overridden_virtual_function); 13018 } 13019 } 13020 } 13021 13022 // C++11 [basic.start.main]p3: 13023 // A program that defines main as deleted [...] is ill-formed. 13024 if (Fn->isMain()) 13025 Diag(DelLoc, diag::err_deleted_main); 13026 13027 Fn->setDeletedAsWritten(); 13028 } 13029 13030 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { 13031 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl); 13032 13033 if (MD) { 13034 if (MD->getParent()->isDependentType()) { 13035 MD->setDefaulted(); 13036 MD->setExplicitlyDefaulted(); 13037 return; 13038 } 13039 13040 CXXSpecialMember Member = getSpecialMember(MD); 13041 if (Member == CXXInvalid) { 13042 if (!MD->isInvalidDecl()) 13043 Diag(DefaultLoc, diag::err_default_special_members); 13044 return; 13045 } 13046 13047 MD->setDefaulted(); 13048 MD->setExplicitlyDefaulted(); 13049 13050 // If this definition appears within the record, do the checking when 13051 // the record is complete. 13052 const FunctionDecl *Primary = MD; 13053 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern()) 13054 // Find the uninstantiated declaration that actually had the '= default' 13055 // on it. 13056 Pattern->isDefined(Primary); 13057 13058 // If the method was defaulted on its first declaration, we will have 13059 // already performed the checking in CheckCompletedCXXClass. Such a 13060 // declaration doesn't trigger an implicit definition. 13061 if (Primary == Primary->getCanonicalDecl()) 13062 return; 13063 13064 CheckExplicitlyDefaultedSpecialMember(MD); 13065 13066 if (MD->isInvalidDecl()) 13067 return; 13068 13069 switch (Member) { 13070 case CXXDefaultConstructor: 13071 DefineImplicitDefaultConstructor(DefaultLoc, 13072 cast<CXXConstructorDecl>(MD)); 13073 break; 13074 case CXXCopyConstructor: 13075 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 13076 break; 13077 case CXXCopyAssignment: 13078 DefineImplicitCopyAssignment(DefaultLoc, MD); 13079 break; 13080 case CXXDestructor: 13081 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); 13082 break; 13083 case CXXMoveConstructor: 13084 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 13085 break; 13086 case CXXMoveAssignment: 13087 DefineImplicitMoveAssignment(DefaultLoc, MD); 13088 break; 13089 case CXXInvalid: 13090 llvm_unreachable("Invalid special member."); 13091 } 13092 } else { 13093 Diag(DefaultLoc, diag::err_default_special_members); 13094 } 13095 } 13096 13097 static void SearchForReturnInStmt(Sema &Self, Stmt *S) { 13098 for (Stmt *SubStmt : S->children()) { 13099 if (!SubStmt) 13100 continue; 13101 if (isa<ReturnStmt>(SubStmt)) 13102 Self.Diag(SubStmt->getLocStart(), 13103 diag::err_return_in_constructor_handler); 13104 if (!isa<Expr>(SubStmt)) 13105 SearchForReturnInStmt(Self, SubStmt); 13106 } 13107 } 13108 13109 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) { 13110 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { 13111 CXXCatchStmt *Handler = TryBlock->getHandler(I); 13112 SearchForReturnInStmt(*this, Handler); 13113 } 13114 } 13115 13116 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New, 13117 const CXXMethodDecl *Old) { 13118 const FunctionType *NewFT = New->getType()->getAs<FunctionType>(); 13119 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>(); 13120 13121 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv(); 13122 13123 // If the calling conventions match, everything is fine 13124 if (NewCC == OldCC) 13125 return false; 13126 13127 // If the calling conventions mismatch because the new function is static, 13128 // suppress the calling convention mismatch error; the error about static 13129 // function override (err_static_overrides_virtual from 13130 // Sema::CheckFunctionDeclaration) is more clear. 13131 if (New->getStorageClass() == SC_Static) 13132 return false; 13133 13134 Diag(New->getLocation(), 13135 diag::err_conflicting_overriding_cc_attributes) 13136 << New->getDeclName() << New->getType() << Old->getType(); 13137 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 13138 return true; 13139 } 13140 13141 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, 13142 const CXXMethodDecl *Old) { 13143 QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType(); 13144 QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType(); 13145 13146 if (Context.hasSameType(NewTy, OldTy) || 13147 NewTy->isDependentType() || OldTy->isDependentType()) 13148 return false; 13149 13150 // Check if the return types are covariant 13151 QualType NewClassTy, OldClassTy; 13152 13153 /// Both types must be pointers or references to classes. 13154 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) { 13155 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) { 13156 NewClassTy = NewPT->getPointeeType(); 13157 OldClassTy = OldPT->getPointeeType(); 13158 } 13159 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) { 13160 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) { 13161 if (NewRT->getTypeClass() == OldRT->getTypeClass()) { 13162 NewClassTy = NewRT->getPointeeType(); 13163 OldClassTy = OldRT->getPointeeType(); 13164 } 13165 } 13166 } 13167 13168 // The return types aren't either both pointers or references to a class type. 13169 if (NewClassTy.isNull()) { 13170 Diag(New->getLocation(), 13171 diag::err_different_return_type_for_overriding_virtual_function) 13172 << New->getDeclName() << NewTy << OldTy 13173 << New->getReturnTypeSourceRange(); 13174 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13175 << Old->getReturnTypeSourceRange(); 13176 13177 return true; 13178 } 13179 13180 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) { 13181 // C++14 [class.virtual]p8: 13182 // If the class type in the covariant return type of D::f differs from 13183 // that of B::f, the class type in the return type of D::f shall be 13184 // complete at the point of declaration of D::f or shall be the class 13185 // type D. 13186 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) { 13187 if (!RT->isBeingDefined() && 13188 RequireCompleteType(New->getLocation(), NewClassTy, 13189 diag::err_covariant_return_incomplete, 13190 New->getDeclName())) 13191 return true; 13192 } 13193 13194 // Check if the new class derives from the old class. 13195 if (!IsDerivedFrom(New->getLocation(), NewClassTy, OldClassTy)) { 13196 Diag(New->getLocation(), diag::err_covariant_return_not_derived) 13197 << New->getDeclName() << NewTy << OldTy 13198 << New->getReturnTypeSourceRange(); 13199 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13200 << Old->getReturnTypeSourceRange(); 13201 return true; 13202 } 13203 13204 // Check if we the conversion from derived to base is valid. 13205 if (CheckDerivedToBaseConversion( 13206 NewClassTy, OldClassTy, 13207 diag::err_covariant_return_inaccessible_base, 13208 diag::err_covariant_return_ambiguous_derived_to_base_conv, 13209 New->getLocation(), New->getReturnTypeSourceRange(), 13210 New->getDeclName(), nullptr)) { 13211 // FIXME: this note won't trigger for delayed access control 13212 // diagnostics, and it's impossible to get an undelayed error 13213 // here from access control during the original parse because 13214 // the ParsingDeclSpec/ParsingDeclarator are still in scope. 13215 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13216 << Old->getReturnTypeSourceRange(); 13217 return true; 13218 } 13219 } 13220 13221 // The qualifiers of the return types must be the same. 13222 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) { 13223 Diag(New->getLocation(), 13224 diag::err_covariant_return_type_different_qualifications) 13225 << New->getDeclName() << NewTy << OldTy 13226 << New->getReturnTypeSourceRange(); 13227 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13228 << Old->getReturnTypeSourceRange(); 13229 return true; 13230 } 13231 13232 13233 // The new class type must have the same or less qualifiers as the old type. 13234 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) { 13235 Diag(New->getLocation(), 13236 diag::err_covariant_return_type_class_type_more_qualified) 13237 << New->getDeclName() << NewTy << OldTy 13238 << New->getReturnTypeSourceRange(); 13239 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13240 << Old->getReturnTypeSourceRange(); 13241 return true; 13242 } 13243 13244 return false; 13245 } 13246 13247 /// \brief Mark the given method pure. 13248 /// 13249 /// \param Method the method to be marked pure. 13250 /// 13251 /// \param InitRange the source range that covers the "0" initializer. 13252 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { 13253 SourceLocation EndLoc = InitRange.getEnd(); 13254 if (EndLoc.isValid()) 13255 Method->setRangeEnd(EndLoc); 13256 13257 if (Method->isVirtual() || Method->getParent()->isDependentContext()) { 13258 Method->setPure(); 13259 return false; 13260 } 13261 13262 if (!Method->isInvalidDecl()) 13263 Diag(Method->getLocation(), diag::err_non_virtual_pure) 13264 << Method->getDeclName() << InitRange; 13265 return true; 13266 } 13267 13268 void Sema::ActOnPureSpecifier(Decl *D, SourceLocation ZeroLoc) { 13269 if (D->getFriendObjectKind()) 13270 Diag(D->getLocation(), diag::err_pure_friend); 13271 else if (auto *M = dyn_cast<CXXMethodDecl>(D)) 13272 CheckPureMethod(M, ZeroLoc); 13273 else 13274 Diag(D->getLocation(), diag::err_illegal_initializer); 13275 } 13276 13277 /// \brief Determine whether the given declaration is a static data member. 13278 static bool isStaticDataMember(const Decl *D) { 13279 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D)) 13280 return Var->isStaticDataMember(); 13281 13282 return false; 13283 } 13284 13285 /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse 13286 /// an initializer for the out-of-line declaration 'Dcl'. The scope 13287 /// is a fresh scope pushed for just this purpose. 13288 /// 13289 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a 13290 /// static data member of class X, names should be looked up in the scope of 13291 /// class X. 13292 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) { 13293 // If there is no declaration, there was an error parsing it. 13294 if (!D || D->isInvalidDecl()) 13295 return; 13296 13297 // We will always have a nested name specifier here, but this declaration 13298 // might not be out of line if the specifier names the current namespace: 13299 // extern int n; 13300 // int ::n = 0; 13301 if (D->isOutOfLine()) 13302 EnterDeclaratorContext(S, D->getDeclContext()); 13303 13304 // If we are parsing the initializer for a static data member, push a 13305 // new expression evaluation context that is associated with this static 13306 // data member. 13307 if (isStaticDataMember(D)) 13308 PushExpressionEvaluationContext(PotentiallyEvaluated, D); 13309 } 13310 13311 /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an 13312 /// initializer for the out-of-line declaration 'D'. 13313 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) { 13314 // If there is no declaration, there was an error parsing it. 13315 if (!D || D->isInvalidDecl()) 13316 return; 13317 13318 if (isStaticDataMember(D)) 13319 PopExpressionEvaluationContext(); 13320 13321 if (D->isOutOfLine()) 13322 ExitDeclaratorContext(S); 13323 } 13324 13325 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a 13326 /// C++ if/switch/while/for statement. 13327 /// e.g: "if (int x = f()) {...}" 13328 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) { 13329 // C++ 6.4p2: 13330 // The declarator shall not specify a function or an array. 13331 // The type-specifier-seq shall not contain typedef and shall not declare a 13332 // new class or enumeration. 13333 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 13334 "Parser allowed 'typedef' as storage class of condition decl."); 13335 13336 Decl *Dcl = ActOnDeclarator(S, D); 13337 if (!Dcl) 13338 return true; 13339 13340 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function. 13341 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type) 13342 << D.getSourceRange(); 13343 return true; 13344 } 13345 13346 return Dcl; 13347 } 13348 13349 void Sema::LoadExternalVTableUses() { 13350 if (!ExternalSource) 13351 return; 13352 13353 SmallVector<ExternalVTableUse, 4> VTables; 13354 ExternalSource->ReadUsedVTables(VTables); 13355 SmallVector<VTableUse, 4> NewUses; 13356 for (unsigned I = 0, N = VTables.size(); I != N; ++I) { 13357 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos 13358 = VTablesUsed.find(VTables[I].Record); 13359 // Even if a definition wasn't required before, it may be required now. 13360 if (Pos != VTablesUsed.end()) { 13361 if (!Pos->second && VTables[I].DefinitionRequired) 13362 Pos->second = true; 13363 continue; 13364 } 13365 13366 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired; 13367 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location)); 13368 } 13369 13370 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end()); 13371 } 13372 13373 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, 13374 bool DefinitionRequired) { 13375 // Ignore any vtable uses in unevaluated operands or for classes that do 13376 // not have a vtable. 13377 if (!Class->isDynamicClass() || Class->isDependentContext() || 13378 CurContext->isDependentContext() || isUnevaluatedContext()) 13379 return; 13380 13381 // Try to insert this class into the map. 13382 LoadExternalVTableUses(); 13383 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13384 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool> 13385 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired)); 13386 if (!Pos.second) { 13387 // If we already had an entry, check to see if we are promoting this vtable 13388 // to require a definition. If so, we need to reappend to the VTableUses 13389 // list, since we may have already processed the first entry. 13390 if (DefinitionRequired && !Pos.first->second) { 13391 Pos.first->second = true; 13392 } else { 13393 // Otherwise, we can early exit. 13394 return; 13395 } 13396 } else { 13397 // The Microsoft ABI requires that we perform the destructor body 13398 // checks (i.e. operator delete() lookup) when the vtable is marked used, as 13399 // the deleting destructor is emitted with the vtable, not with the 13400 // destructor definition as in the Itanium ABI. 13401 // If it has a definition, we do the check at that point instead. 13402 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 13403 if (Class->hasUserDeclaredDestructor() && 13404 !Class->getDestructor()->isDefined() && 13405 !Class->getDestructor()->isDeleted()) { 13406 CXXDestructorDecl *DD = Class->getDestructor(); 13407 ContextRAII SavedContext(*this, DD); 13408 CheckDestructor(DD); 13409 } else if (Class->hasAttr<DLLImportAttr>()) { 13410 // We always synthesize vtables on the import side. To make sure 13411 // CheckDestructor gets called, mark the destructor referenced. 13412 assert(Class->getDestructor() && 13413 "The destructor has always been declared on a dllimport class"); 13414 MarkFunctionReferenced(Loc, Class->getDestructor()); 13415 } 13416 } 13417 } 13418 13419 // Local classes need to have their virtual members marked 13420 // immediately. For all other classes, we mark their virtual members 13421 // at the end of the translation unit. 13422 if (Class->isLocalClass()) 13423 MarkVirtualMembersReferenced(Loc, Class); 13424 else 13425 VTableUses.push_back(std::make_pair(Class, Loc)); 13426 } 13427 13428 bool Sema::DefineUsedVTables() { 13429 LoadExternalVTableUses(); 13430 if (VTableUses.empty()) 13431 return false; 13432 13433 // Note: The VTableUses vector could grow as a result of marking 13434 // the members of a class as "used", so we check the size each 13435 // time through the loop and prefer indices (which are stable) to 13436 // iterators (which are not). 13437 bool DefinedAnything = false; 13438 for (unsigned I = 0; I != VTableUses.size(); ++I) { 13439 CXXRecordDecl *Class = VTableUses[I].first->getDefinition(); 13440 if (!Class) 13441 continue; 13442 13443 SourceLocation Loc = VTableUses[I].second; 13444 13445 bool DefineVTable = true; 13446 13447 // If this class has a key function, but that key function is 13448 // defined in another translation unit, we don't need to emit the 13449 // vtable even though we're using it. 13450 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class); 13451 if (KeyFunction && !KeyFunction->hasBody()) { 13452 // The key function is in another translation unit. 13453 DefineVTable = false; 13454 TemplateSpecializationKind TSK = 13455 KeyFunction->getTemplateSpecializationKind(); 13456 assert(TSK != TSK_ExplicitInstantiationDefinition && 13457 TSK != TSK_ImplicitInstantiation && 13458 "Instantiations don't have key functions"); 13459 (void)TSK; 13460 } else if (!KeyFunction) { 13461 // If we have a class with no key function that is the subject 13462 // of an explicit instantiation declaration, suppress the 13463 // vtable; it will live with the explicit instantiation 13464 // definition. 13465 bool IsExplicitInstantiationDeclaration 13466 = Class->getTemplateSpecializationKind() 13467 == TSK_ExplicitInstantiationDeclaration; 13468 for (auto R : Class->redecls()) { 13469 TemplateSpecializationKind TSK 13470 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind(); 13471 if (TSK == TSK_ExplicitInstantiationDeclaration) 13472 IsExplicitInstantiationDeclaration = true; 13473 else if (TSK == TSK_ExplicitInstantiationDefinition) { 13474 IsExplicitInstantiationDeclaration = false; 13475 break; 13476 } 13477 } 13478 13479 if (IsExplicitInstantiationDeclaration) 13480 DefineVTable = false; 13481 } 13482 13483 // The exception specifications for all virtual members may be needed even 13484 // if we are not providing an authoritative form of the vtable in this TU. 13485 // We may choose to emit it available_externally anyway. 13486 if (!DefineVTable) { 13487 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class); 13488 continue; 13489 } 13490 13491 // Mark all of the virtual members of this class as referenced, so 13492 // that we can build a vtable. Then, tell the AST consumer that a 13493 // vtable for this class is required. 13494 DefinedAnything = true; 13495 MarkVirtualMembersReferenced(Loc, Class); 13496 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13497 if (VTablesUsed[Canonical]) 13498 Consumer.HandleVTable(Class); 13499 13500 // Optionally warn if we're emitting a weak vtable. 13501 if (Class->isExternallyVisible() && 13502 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) { 13503 const FunctionDecl *KeyFunctionDef = nullptr; 13504 if (!KeyFunction || 13505 (KeyFunction->hasBody(KeyFunctionDef) && 13506 KeyFunctionDef->isInlined())) 13507 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() == 13508 TSK_ExplicitInstantiationDefinition 13509 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable) 13510 << Class; 13511 } 13512 } 13513 VTableUses.clear(); 13514 13515 return DefinedAnything; 13516 } 13517 13518 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc, 13519 const CXXRecordDecl *RD) { 13520 for (const auto *I : RD->methods()) 13521 if (I->isVirtual() && !I->isPure()) 13522 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>()); 13523 } 13524 13525 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc, 13526 const CXXRecordDecl *RD) { 13527 // Mark all functions which will appear in RD's vtable as used. 13528 CXXFinalOverriderMap FinalOverriders; 13529 RD->getFinalOverriders(FinalOverriders); 13530 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(), 13531 E = FinalOverriders.end(); 13532 I != E; ++I) { 13533 for (OverridingMethods::const_iterator OI = I->second.begin(), 13534 OE = I->second.end(); 13535 OI != OE; ++OI) { 13536 assert(OI->second.size() > 0 && "no final overrider"); 13537 CXXMethodDecl *Overrider = OI->second.front().Method; 13538 13539 // C++ [basic.def.odr]p2: 13540 // [...] A virtual member function is used if it is not pure. [...] 13541 if (!Overrider->isPure()) 13542 MarkFunctionReferenced(Loc, Overrider); 13543 } 13544 } 13545 13546 // Only classes that have virtual bases need a VTT. 13547 if (RD->getNumVBases() == 0) 13548 return; 13549 13550 for (const auto &I : RD->bases()) { 13551 const CXXRecordDecl *Base = 13552 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl()); 13553 if (Base->getNumVBases() == 0) 13554 continue; 13555 MarkVirtualMembersReferenced(Loc, Base); 13556 } 13557 } 13558 13559 /// SetIvarInitializers - This routine builds initialization ASTs for the 13560 /// Objective-C implementation whose ivars need be initialized. 13561 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) { 13562 if (!getLangOpts().CPlusPlus) 13563 return; 13564 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) { 13565 SmallVector<ObjCIvarDecl*, 8> ivars; 13566 CollectIvarsToConstructOrDestruct(OID, ivars); 13567 if (ivars.empty()) 13568 return; 13569 SmallVector<CXXCtorInitializer*, 32> AllToInit; 13570 for (unsigned i = 0; i < ivars.size(); i++) { 13571 FieldDecl *Field = ivars[i]; 13572 if (Field->isInvalidDecl()) 13573 continue; 13574 13575 CXXCtorInitializer *Member; 13576 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field); 13577 InitializationKind InitKind = 13578 InitializationKind::CreateDefault(ObjCImplementation->getLocation()); 13579 13580 InitializationSequence InitSeq(*this, InitEntity, InitKind, None); 13581 ExprResult MemberInit = 13582 InitSeq.Perform(*this, InitEntity, InitKind, None); 13583 MemberInit = MaybeCreateExprWithCleanups(MemberInit); 13584 // Note, MemberInit could actually come back empty if no initialization 13585 // is required (e.g., because it would call a trivial default constructor) 13586 if (!MemberInit.get() || MemberInit.isInvalid()) 13587 continue; 13588 13589 Member = 13590 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(), 13591 SourceLocation(), 13592 MemberInit.getAs<Expr>(), 13593 SourceLocation()); 13594 AllToInit.push_back(Member); 13595 13596 // Be sure that the destructor is accessible and is marked as referenced. 13597 if (const RecordType *RecordTy = 13598 Context.getBaseElementType(Field->getType()) 13599 ->getAs<RecordType>()) { 13600 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); 13601 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { 13602 MarkFunctionReferenced(Field->getLocation(), Destructor); 13603 CheckDestructorAccess(Field->getLocation(), Destructor, 13604 PDiag(diag::err_access_dtor_ivar) 13605 << Context.getBaseElementType(Field->getType())); 13606 } 13607 } 13608 } 13609 ObjCImplementation->setIvarInitializers(Context, 13610 AllToInit.data(), AllToInit.size()); 13611 } 13612 } 13613 13614 static 13615 void DelegatingCycleHelper(CXXConstructorDecl* Ctor, 13616 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid, 13617 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid, 13618 llvm::SmallSet<CXXConstructorDecl*, 4> &Current, 13619 Sema &S) { 13620 if (Ctor->isInvalidDecl()) 13621 return; 13622 13623 CXXConstructorDecl *Target = Ctor->getTargetConstructor(); 13624 13625 // Target may not be determinable yet, for instance if this is a dependent 13626 // call in an uninstantiated template. 13627 if (Target) { 13628 const FunctionDecl *FNTarget = nullptr; 13629 (void)Target->hasBody(FNTarget); 13630 Target = const_cast<CXXConstructorDecl*>( 13631 cast_or_null<CXXConstructorDecl>(FNTarget)); 13632 } 13633 13634 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), 13635 // Avoid dereferencing a null pointer here. 13636 *TCanonical = Target? Target->getCanonicalDecl() : nullptr; 13637 13638 if (!Current.insert(Canonical).second) 13639 return; 13640 13641 // We know that beyond here, we aren't chaining into a cycle. 13642 if (!Target || !Target->isDelegatingConstructor() || 13643 Target->isInvalidDecl() || Valid.count(TCanonical)) { 13644 Valid.insert(Current.begin(), Current.end()); 13645 Current.clear(); 13646 // We've hit a cycle. 13647 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || 13648 Current.count(TCanonical)) { 13649 // If we haven't diagnosed this cycle yet, do so now. 13650 if (!Invalid.count(TCanonical)) { 13651 S.Diag((*Ctor->init_begin())->getSourceLocation(), 13652 diag::warn_delegating_ctor_cycle) 13653 << Ctor; 13654 13655 // Don't add a note for a function delegating directly to itself. 13656 if (TCanonical != Canonical) 13657 S.Diag(Target->getLocation(), diag::note_it_delegates_to); 13658 13659 CXXConstructorDecl *C = Target; 13660 while (C->getCanonicalDecl() != Canonical) { 13661 const FunctionDecl *FNTarget = nullptr; 13662 (void)C->getTargetConstructor()->hasBody(FNTarget); 13663 assert(FNTarget && "Ctor cycle through bodiless function"); 13664 13665 C = const_cast<CXXConstructorDecl*>( 13666 cast<CXXConstructorDecl>(FNTarget)); 13667 S.Diag(C->getLocation(), diag::note_which_delegates_to); 13668 } 13669 } 13670 13671 Invalid.insert(Current.begin(), Current.end()); 13672 Current.clear(); 13673 } else { 13674 DelegatingCycleHelper(Target, Valid, Invalid, Current, S); 13675 } 13676 } 13677 13678 13679 void Sema::CheckDelegatingCtorCycles() { 13680 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current; 13681 13682 for (DelegatingCtorDeclsType::iterator 13683 I = DelegatingCtorDecls.begin(ExternalSource), 13684 E = DelegatingCtorDecls.end(); 13685 I != E; ++I) 13686 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this); 13687 13688 for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(), 13689 CE = Invalid.end(); 13690 CI != CE; ++CI) 13691 (*CI)->setInvalidDecl(); 13692 } 13693 13694 namespace { 13695 /// \brief AST visitor that finds references to the 'this' expression. 13696 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> { 13697 Sema &S; 13698 13699 public: 13700 explicit FindCXXThisExpr(Sema &S) : S(S) { } 13701 13702 bool VisitCXXThisExpr(CXXThisExpr *E) { 13703 S.Diag(E->getLocation(), diag::err_this_static_member_func) 13704 << E->isImplicit(); 13705 return false; 13706 } 13707 }; 13708 } 13709 13710 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) { 13711 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13712 if (!TSInfo) 13713 return false; 13714 13715 TypeLoc TL = TSInfo->getTypeLoc(); 13716 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13717 if (!ProtoTL) 13718 return false; 13719 13720 // C++11 [expr.prim.general]p3: 13721 // [The expression this] shall not appear before the optional 13722 // cv-qualifier-seq and it shall not appear within the declaration of a 13723 // static member function (although its type and value category are defined 13724 // within a static member function as they are within a non-static member 13725 // function). [ Note: this is because declaration matching does not occur 13726 // until the complete declarator is known. - end note ] 13727 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13728 FindCXXThisExpr Finder(*this); 13729 13730 // If the return type came after the cv-qualifier-seq, check it now. 13731 if (Proto->hasTrailingReturn() && 13732 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc())) 13733 return true; 13734 13735 // Check the exception specification. 13736 if (checkThisInStaticMemberFunctionExceptionSpec(Method)) 13737 return true; 13738 13739 return checkThisInStaticMemberFunctionAttributes(Method); 13740 } 13741 13742 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) { 13743 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13744 if (!TSInfo) 13745 return false; 13746 13747 TypeLoc TL = TSInfo->getTypeLoc(); 13748 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13749 if (!ProtoTL) 13750 return false; 13751 13752 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13753 FindCXXThisExpr Finder(*this); 13754 13755 switch (Proto->getExceptionSpecType()) { 13756 case EST_Unparsed: 13757 case EST_Uninstantiated: 13758 case EST_Unevaluated: 13759 case EST_BasicNoexcept: 13760 case EST_DynamicNone: 13761 case EST_MSAny: 13762 case EST_None: 13763 break; 13764 13765 case EST_ComputedNoexcept: 13766 if (!Finder.TraverseStmt(Proto->getNoexceptExpr())) 13767 return true; 13768 13769 case EST_Dynamic: 13770 for (const auto &E : Proto->exceptions()) { 13771 if (!Finder.TraverseType(E)) 13772 return true; 13773 } 13774 break; 13775 } 13776 13777 return false; 13778 } 13779 13780 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) { 13781 FindCXXThisExpr Finder(*this); 13782 13783 // Check attributes. 13784 for (const auto *A : Method->attrs()) { 13785 // FIXME: This should be emitted by tblgen. 13786 Expr *Arg = nullptr; 13787 ArrayRef<Expr *> Args; 13788 if (const auto *G = dyn_cast<GuardedByAttr>(A)) 13789 Arg = G->getArg(); 13790 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A)) 13791 Arg = G->getArg(); 13792 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A)) 13793 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size()); 13794 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A)) 13795 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size()); 13796 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) { 13797 Arg = ETLF->getSuccessValue(); 13798 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size()); 13799 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) { 13800 Arg = STLF->getSuccessValue(); 13801 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size()); 13802 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A)) 13803 Arg = LR->getArg(); 13804 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A)) 13805 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size()); 13806 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A)) 13807 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13808 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A)) 13809 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13810 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A)) 13811 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13812 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A)) 13813 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13814 13815 if (Arg && !Finder.TraverseStmt(Arg)) 13816 return true; 13817 13818 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 13819 if (!Finder.TraverseStmt(Args[I])) 13820 return true; 13821 } 13822 } 13823 13824 return false; 13825 } 13826 13827 void Sema::checkExceptionSpecification( 13828 bool IsTopLevel, ExceptionSpecificationType EST, 13829 ArrayRef<ParsedType> DynamicExceptions, 13830 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, 13831 SmallVectorImpl<QualType> &Exceptions, 13832 FunctionProtoType::ExceptionSpecInfo &ESI) { 13833 Exceptions.clear(); 13834 ESI.Type = EST; 13835 if (EST == EST_Dynamic) { 13836 Exceptions.reserve(DynamicExceptions.size()); 13837 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) { 13838 // FIXME: Preserve type source info. 13839 QualType ET = GetTypeFromParser(DynamicExceptions[ei]); 13840 13841 if (IsTopLevel) { 13842 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 13843 collectUnexpandedParameterPacks(ET, Unexpanded); 13844 if (!Unexpanded.empty()) { 13845 DiagnoseUnexpandedParameterPacks( 13846 DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType, 13847 Unexpanded); 13848 continue; 13849 } 13850 } 13851 13852 // Check that the type is valid for an exception spec, and 13853 // drop it if not. 13854 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei])) 13855 Exceptions.push_back(ET); 13856 } 13857 ESI.Exceptions = Exceptions; 13858 return; 13859 } 13860 13861 if (EST == EST_ComputedNoexcept) { 13862 // If an error occurred, there's no expression here. 13863 if (NoexceptExpr) { 13864 assert((NoexceptExpr->isTypeDependent() || 13865 NoexceptExpr->getType()->getCanonicalTypeUnqualified() == 13866 Context.BoolTy) && 13867 "Parser should have made sure that the expression is boolean"); 13868 if (IsTopLevel && NoexceptExpr && 13869 DiagnoseUnexpandedParameterPack(NoexceptExpr)) { 13870 ESI.Type = EST_BasicNoexcept; 13871 return; 13872 } 13873 13874 if (!NoexceptExpr->isValueDependent()) 13875 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr, 13876 diag::err_noexcept_needs_constant_expression, 13877 /*AllowFold*/ false).get(); 13878 ESI.NoexceptExpr = NoexceptExpr; 13879 } 13880 return; 13881 } 13882 } 13883 13884 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD, 13885 ExceptionSpecificationType EST, 13886 SourceRange SpecificationRange, 13887 ArrayRef<ParsedType> DynamicExceptions, 13888 ArrayRef<SourceRange> DynamicExceptionRanges, 13889 Expr *NoexceptExpr) { 13890 if (!MethodD) 13891 return; 13892 13893 // Dig out the method we're referring to. 13894 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD)) 13895 MethodD = FunTmpl->getTemplatedDecl(); 13896 13897 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD); 13898 if (!Method) 13899 return; 13900 13901 // Check the exception specification. 13902 llvm::SmallVector<QualType, 4> Exceptions; 13903 FunctionProtoType::ExceptionSpecInfo ESI; 13904 checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions, 13905 DynamicExceptionRanges, NoexceptExpr, Exceptions, 13906 ESI); 13907 13908 // Update the exception specification on the function type. 13909 Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true); 13910 13911 if (Method->isStatic()) 13912 checkThisInStaticMemberFunctionExceptionSpec(Method); 13913 13914 if (Method->isVirtual()) { 13915 // Check overrides, which we previously had to delay. 13916 for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(), 13917 OEnd = Method->end_overridden_methods(); 13918 O != OEnd; ++O) 13919 CheckOverridingFunctionExceptionSpec(Method, *O); 13920 } 13921 } 13922 13923 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class. 13924 /// 13925 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, 13926 SourceLocation DeclStart, 13927 Declarator &D, Expr *BitWidth, 13928 InClassInitStyle InitStyle, 13929 AccessSpecifier AS, 13930 AttributeList *MSPropertyAttr) { 13931 IdentifierInfo *II = D.getIdentifier(); 13932 if (!II) { 13933 Diag(DeclStart, diag::err_anonymous_property); 13934 return nullptr; 13935 } 13936 SourceLocation Loc = D.getIdentifierLoc(); 13937 13938 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 13939 QualType T = TInfo->getType(); 13940 if (getLangOpts().CPlusPlus) { 13941 CheckExtraCXXDefaultArguments(D); 13942 13943 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 13944 UPPC_DataMemberType)) { 13945 D.setInvalidType(); 13946 T = Context.IntTy; 13947 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 13948 } 13949 } 13950 13951 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 13952 13953 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 13954 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 13955 diag::err_invalid_thread) 13956 << DeclSpec::getSpecifierName(TSCS); 13957 13958 // Check to see if this name was declared as a member previously 13959 NamedDecl *PrevDecl = nullptr; 13960 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration); 13961 LookupName(Previous, S); 13962 switch (Previous.getResultKind()) { 13963 case LookupResult::Found: 13964 case LookupResult::FoundUnresolvedValue: 13965 PrevDecl = Previous.getAsSingle<NamedDecl>(); 13966 break; 13967 13968 case LookupResult::FoundOverloaded: 13969 PrevDecl = Previous.getRepresentativeDecl(); 13970 break; 13971 13972 case LookupResult::NotFound: 13973 case LookupResult::NotFoundInCurrentInstantiation: 13974 case LookupResult::Ambiguous: 13975 break; 13976 } 13977 13978 if (PrevDecl && PrevDecl->isTemplateParameter()) { 13979 // Maybe we will complain about the shadowed template parameter. 13980 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 13981 // Just pretend that we didn't see the previous declaration. 13982 PrevDecl = nullptr; 13983 } 13984 13985 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 13986 PrevDecl = nullptr; 13987 13988 SourceLocation TSSL = D.getLocStart(); 13989 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData(); 13990 MSPropertyDecl *NewPD = MSPropertyDecl::Create( 13991 Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId); 13992 ProcessDeclAttributes(TUScope, NewPD, D); 13993 NewPD->setAccess(AS); 13994 13995 if (NewPD->isInvalidDecl()) 13996 Record->setInvalidDecl(); 13997 13998 if (D.getDeclSpec().isModulePrivateSpecified()) 13999 NewPD->setModulePrivate(); 14000 14001 if (NewPD->isInvalidDecl() && PrevDecl) { 14002 // Don't introduce NewFD into scope; there's already something 14003 // with the same name in the same scope. 14004 } else if (II) { 14005 PushOnScopeChains(NewPD, S); 14006 } else 14007 Record->addDecl(NewPD); 14008 14009 return NewPD; 14010 } 14011