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 bool 1746 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 1747 unsigned InaccessibleBaseID, 1748 unsigned AmbigiousBaseConvID, 1749 SourceLocation Loc, SourceRange Range, 1750 DeclarationName Name, 1751 CXXCastPath *BasePath) { 1752 // First, determine whether the path from Derived to Base is 1753 // ambiguous. This is slightly more expensive than checking whether 1754 // the Derived to Base conversion exists, because here we need to 1755 // explore multiple paths to determine if there is an ambiguity. 1756 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1757 /*DetectVirtual=*/false); 1758 bool DerivationOkay = IsDerivedFrom(Loc, Derived, Base, Paths); 1759 assert(DerivationOkay && 1760 "Can only be used with a derived-to-base conversion"); 1761 (void)DerivationOkay; 1762 1763 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) { 1764 if (InaccessibleBaseID) { 1765 // Check that the base class can be accessed. 1766 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(), 1767 InaccessibleBaseID)) { 1768 case AR_inaccessible: 1769 return true; 1770 case AR_accessible: 1771 case AR_dependent: 1772 case AR_delayed: 1773 break; 1774 } 1775 } 1776 1777 // Build a base path if necessary. 1778 if (BasePath) 1779 BuildBasePathArray(Paths, *BasePath); 1780 return false; 1781 } 1782 1783 if (AmbigiousBaseConvID) { 1784 // We know that the derived-to-base conversion is ambiguous, and 1785 // we're going to produce a diagnostic. Perform the derived-to-base 1786 // search just one more time to compute all of the possible paths so 1787 // that we can print them out. This is more expensive than any of 1788 // the previous derived-to-base checks we've done, but at this point 1789 // performance isn't as much of an issue. 1790 Paths.clear(); 1791 Paths.setRecordingPaths(true); 1792 bool StillOkay = IsDerivedFrom(Loc, Derived, Base, Paths); 1793 assert(StillOkay && "Can only be used with a derived-to-base conversion"); 1794 (void)StillOkay; 1795 1796 // Build up a textual representation of the ambiguous paths, e.g., 1797 // D -> B -> A, that will be used to illustrate the ambiguous 1798 // conversions in the diagnostic. We only print one of the paths 1799 // to each base class subobject. 1800 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths); 1801 1802 Diag(Loc, AmbigiousBaseConvID) 1803 << Derived << Base << PathDisplayStr << Range << Name; 1804 } 1805 return true; 1806 } 1807 1808 bool 1809 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 1810 SourceLocation Loc, SourceRange Range, 1811 CXXCastPath *BasePath, 1812 bool IgnoreAccess) { 1813 return CheckDerivedToBaseConversion(Derived, Base, 1814 IgnoreAccess ? 0 1815 : diag::err_upcast_to_inaccessible_base, 1816 diag::err_ambiguous_derived_to_base_conv, 1817 Loc, Range, DeclarationName(), 1818 BasePath); 1819 } 1820 1821 1822 /// @brief Builds a string representing ambiguous paths from a 1823 /// specific derived class to different subobjects of the same base 1824 /// class. 1825 /// 1826 /// This function builds a string that can be used in error messages 1827 /// to show the different paths that one can take through the 1828 /// inheritance hierarchy to go from the derived class to different 1829 /// subobjects of a base class. The result looks something like this: 1830 /// @code 1831 /// struct D -> struct B -> struct A 1832 /// struct D -> struct C -> struct A 1833 /// @endcode 1834 std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) { 1835 std::string PathDisplayStr; 1836 std::set<unsigned> DisplayedPaths; 1837 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 1838 Path != Paths.end(); ++Path) { 1839 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) { 1840 // We haven't displayed a path to this particular base 1841 // class subobject yet. 1842 PathDisplayStr += "\n "; 1843 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString(); 1844 for (CXXBasePath::const_iterator Element = Path->begin(); 1845 Element != Path->end(); ++Element) 1846 PathDisplayStr += " -> " + Element->Base->getType().getAsString(); 1847 } 1848 } 1849 1850 return PathDisplayStr; 1851 } 1852 1853 //===----------------------------------------------------------------------===// 1854 // C++ class member Handling 1855 //===----------------------------------------------------------------------===// 1856 1857 /// ActOnAccessSpecifier - Parsed an access specifier followed by a colon. 1858 bool Sema::ActOnAccessSpecifier(AccessSpecifier Access, 1859 SourceLocation ASLoc, 1860 SourceLocation ColonLoc, 1861 AttributeList *Attrs) { 1862 assert(Access != AS_none && "Invalid kind for syntactic access specifier!"); 1863 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext, 1864 ASLoc, ColonLoc); 1865 CurContext->addHiddenDecl(ASDecl); 1866 return ProcessAccessDeclAttributeList(ASDecl, Attrs); 1867 } 1868 1869 /// CheckOverrideControl - Check C++11 override control semantics. 1870 void Sema::CheckOverrideControl(NamedDecl *D) { 1871 if (D->isInvalidDecl()) 1872 return; 1873 1874 // We only care about "override" and "final" declarations. 1875 if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>()) 1876 return; 1877 1878 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 1879 1880 // We can't check dependent instance methods. 1881 if (MD && MD->isInstance() && 1882 (MD->getParent()->hasAnyDependentBases() || 1883 MD->getType()->isDependentType())) 1884 return; 1885 1886 if (MD && !MD->isVirtual()) { 1887 // If we have a non-virtual method, check if if hides a virtual method. 1888 // (In that case, it's most likely the method has the wrong type.) 1889 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 1890 FindHiddenVirtualMethods(MD, OverloadedMethods); 1891 1892 if (!OverloadedMethods.empty()) { 1893 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 1894 Diag(OA->getLocation(), 1895 diag::override_keyword_hides_virtual_member_function) 1896 << "override" << (OverloadedMethods.size() > 1); 1897 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 1898 Diag(FA->getLocation(), 1899 diag::override_keyword_hides_virtual_member_function) 1900 << (FA->isSpelledAsSealed() ? "sealed" : "final") 1901 << (OverloadedMethods.size() > 1); 1902 } 1903 NoteHiddenVirtualMethods(MD, OverloadedMethods); 1904 MD->setInvalidDecl(); 1905 return; 1906 } 1907 // Fall through into the general case diagnostic. 1908 // FIXME: We might want to attempt typo correction here. 1909 } 1910 1911 if (!MD || !MD->isVirtual()) { 1912 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 1913 Diag(OA->getLocation(), 1914 diag::override_keyword_only_allowed_on_virtual_member_functions) 1915 << "override" << FixItHint::CreateRemoval(OA->getLocation()); 1916 D->dropAttr<OverrideAttr>(); 1917 } 1918 if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 1919 Diag(FA->getLocation(), 1920 diag::override_keyword_only_allowed_on_virtual_member_functions) 1921 << (FA->isSpelledAsSealed() ? "sealed" : "final") 1922 << FixItHint::CreateRemoval(FA->getLocation()); 1923 D->dropAttr<FinalAttr>(); 1924 } 1925 return; 1926 } 1927 1928 // C++11 [class.virtual]p5: 1929 // If a function is marked with the virt-specifier override and 1930 // does not override a member function of a base class, the program is 1931 // ill-formed. 1932 bool HasOverriddenMethods = 1933 MD->begin_overridden_methods() != MD->end_overridden_methods(); 1934 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) 1935 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding) 1936 << MD->getDeclName(); 1937 } 1938 1939 void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) { 1940 if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>()) 1941 return; 1942 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 1943 if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>() || 1944 isa<CXXDestructorDecl>(MD)) 1945 return; 1946 1947 SourceLocation Loc = MD->getLocation(); 1948 SourceLocation SpellingLoc = Loc; 1949 if (getSourceManager().isMacroArgExpansion(Loc)) 1950 SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).first; 1951 SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc); 1952 if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc)) 1953 return; 1954 1955 if (MD->size_overridden_methods() > 0) { 1956 Diag(MD->getLocation(), diag::warn_function_marked_not_override_overriding) 1957 << MD->getDeclName(); 1958 const CXXMethodDecl *OMD = *MD->begin_overridden_methods(); 1959 Diag(OMD->getLocation(), diag::note_overridden_virtual_function); 1960 } 1961 } 1962 1963 /// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member 1964 /// function overrides a virtual member function marked 'final', according to 1965 /// C++11 [class.virtual]p4. 1966 bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New, 1967 const CXXMethodDecl *Old) { 1968 FinalAttr *FA = Old->getAttr<FinalAttr>(); 1969 if (!FA) 1970 return false; 1971 1972 Diag(New->getLocation(), diag::err_final_function_overridden) 1973 << New->getDeclName() 1974 << FA->isSpelledAsSealed(); 1975 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 1976 return true; 1977 } 1978 1979 static bool InitializationHasSideEffects(const FieldDecl &FD) { 1980 const Type *T = FD.getType()->getBaseElementTypeUnsafe(); 1981 // FIXME: Destruction of ObjC lifetime types has side-effects. 1982 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 1983 return !RD->isCompleteDefinition() || 1984 !RD->hasTrivialDefaultConstructor() || 1985 !RD->hasTrivialDestructor(); 1986 return false; 1987 } 1988 1989 static AttributeList *getMSPropertyAttr(AttributeList *list) { 1990 for (AttributeList *it = list; it != nullptr; it = it->getNext()) 1991 if (it->isDeclspecPropertyAttribute()) 1992 return it; 1993 return nullptr; 1994 } 1995 1996 /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member 1997 /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the 1998 /// bitfield width if there is one, 'InitExpr' specifies the initializer if 1999 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is 2000 /// present (but parsing it has been deferred). 2001 NamedDecl * 2002 Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, 2003 MultiTemplateParamsArg TemplateParameterLists, 2004 Expr *BW, const VirtSpecifiers &VS, 2005 InClassInitStyle InitStyle) { 2006 const DeclSpec &DS = D.getDeclSpec(); 2007 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 2008 DeclarationName Name = NameInfo.getName(); 2009 SourceLocation Loc = NameInfo.getLoc(); 2010 2011 // For anonymous bitfields, the location should point to the type. 2012 if (Loc.isInvalid()) 2013 Loc = D.getLocStart(); 2014 2015 Expr *BitWidth = static_cast<Expr*>(BW); 2016 2017 assert(isa<CXXRecordDecl>(CurContext)); 2018 assert(!DS.isFriendSpecified()); 2019 2020 bool isFunc = D.isDeclarationOfFunction(); 2021 2022 if (cast<CXXRecordDecl>(CurContext)->isInterface()) { 2023 // The Microsoft extension __interface only permits public member functions 2024 // and prohibits constructors, destructors, operators, non-public member 2025 // functions, static methods and data members. 2026 unsigned InvalidDecl; 2027 bool ShowDeclName = true; 2028 if (!isFunc) 2029 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1; 2030 else if (AS != AS_public) 2031 InvalidDecl = 2; 2032 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static) 2033 InvalidDecl = 3; 2034 else switch (Name.getNameKind()) { 2035 case DeclarationName::CXXConstructorName: 2036 InvalidDecl = 4; 2037 ShowDeclName = false; 2038 break; 2039 2040 case DeclarationName::CXXDestructorName: 2041 InvalidDecl = 5; 2042 ShowDeclName = false; 2043 break; 2044 2045 case DeclarationName::CXXOperatorName: 2046 case DeclarationName::CXXConversionFunctionName: 2047 InvalidDecl = 6; 2048 break; 2049 2050 default: 2051 InvalidDecl = 0; 2052 break; 2053 } 2054 2055 if (InvalidDecl) { 2056 if (ShowDeclName) 2057 Diag(Loc, diag::err_invalid_member_in_interface) 2058 << (InvalidDecl-1) << Name; 2059 else 2060 Diag(Loc, diag::err_invalid_member_in_interface) 2061 << (InvalidDecl-1) << ""; 2062 return nullptr; 2063 } 2064 } 2065 2066 // C++ 9.2p6: A member shall not be declared to have automatic storage 2067 // duration (auto, register) or with the extern storage-class-specifier. 2068 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class 2069 // data members and cannot be applied to names declared const or static, 2070 // and cannot be applied to reference members. 2071 switch (DS.getStorageClassSpec()) { 2072 case DeclSpec::SCS_unspecified: 2073 case DeclSpec::SCS_typedef: 2074 case DeclSpec::SCS_static: 2075 break; 2076 case DeclSpec::SCS_mutable: 2077 if (isFunc) { 2078 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function); 2079 2080 // FIXME: It would be nicer if the keyword was ignored only for this 2081 // declarator. Otherwise we could get follow-up errors. 2082 D.getMutableDeclSpec().ClearStorageClassSpecs(); 2083 } 2084 break; 2085 default: 2086 Diag(DS.getStorageClassSpecLoc(), 2087 diag::err_storageclass_invalid_for_member); 2088 D.getMutableDeclSpec().ClearStorageClassSpecs(); 2089 break; 2090 } 2091 2092 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified || 2093 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) && 2094 !isFunc); 2095 2096 if (DS.isConstexprSpecified() && isInstField) { 2097 SemaDiagnosticBuilder B = 2098 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member); 2099 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc(); 2100 if (InitStyle == ICIS_NoInit) { 2101 B << 0 << 0; 2102 if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const) 2103 B << FixItHint::CreateRemoval(ConstexprLoc); 2104 else { 2105 B << FixItHint::CreateReplacement(ConstexprLoc, "const"); 2106 D.getMutableDeclSpec().ClearConstexprSpec(); 2107 const char *PrevSpec; 2108 unsigned DiagID; 2109 bool Failed = D.getMutableDeclSpec().SetTypeQual( 2110 DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts()); 2111 (void)Failed; 2112 assert(!Failed && "Making a constexpr member const shouldn't fail"); 2113 } 2114 } else { 2115 B << 1; 2116 const char *PrevSpec; 2117 unsigned DiagID; 2118 if (D.getMutableDeclSpec().SetStorageClassSpec( 2119 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID, 2120 Context.getPrintingPolicy())) { 2121 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable && 2122 "This is the only DeclSpec that should fail to be applied"); 2123 B << 1; 2124 } else { 2125 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static "); 2126 isInstField = false; 2127 } 2128 } 2129 } 2130 2131 NamedDecl *Member; 2132 if (isInstField) { 2133 CXXScopeSpec &SS = D.getCXXScopeSpec(); 2134 2135 // Data members must have identifiers for names. 2136 if (!Name.isIdentifier()) { 2137 Diag(Loc, diag::err_bad_variable_name) 2138 << Name; 2139 return nullptr; 2140 } 2141 2142 IdentifierInfo *II = Name.getAsIdentifierInfo(); 2143 2144 // Member field could not be with "template" keyword. 2145 // So TemplateParameterLists should be empty in this case. 2146 if (TemplateParameterLists.size()) { 2147 TemplateParameterList* TemplateParams = TemplateParameterLists[0]; 2148 if (TemplateParams->size()) { 2149 // There is no such thing as a member field template. 2150 Diag(D.getIdentifierLoc(), diag::err_template_member) 2151 << II 2152 << SourceRange(TemplateParams->getTemplateLoc(), 2153 TemplateParams->getRAngleLoc()); 2154 } else { 2155 // There is an extraneous 'template<>' for this member. 2156 Diag(TemplateParams->getTemplateLoc(), 2157 diag::err_template_member_noparams) 2158 << II 2159 << SourceRange(TemplateParams->getTemplateLoc(), 2160 TemplateParams->getRAngleLoc()); 2161 } 2162 return nullptr; 2163 } 2164 2165 if (SS.isSet() && !SS.isInvalid()) { 2166 // The user provided a superfluous scope specifier inside a class 2167 // definition: 2168 // 2169 // class X { 2170 // int X::member; 2171 // }; 2172 if (DeclContext *DC = computeDeclContext(SS, false)) 2173 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc()); 2174 else 2175 Diag(D.getIdentifierLoc(), diag::err_member_qualification) 2176 << Name << SS.getRange(); 2177 2178 SS.clear(); 2179 } 2180 2181 AttributeList *MSPropertyAttr = 2182 getMSPropertyAttr(D.getDeclSpec().getAttributes().getList()); 2183 if (MSPropertyAttr) { 2184 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D, 2185 BitWidth, InitStyle, AS, MSPropertyAttr); 2186 if (!Member) 2187 return nullptr; 2188 isInstField = false; 2189 } else { 2190 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, 2191 BitWidth, InitStyle, AS); 2192 assert(Member && "HandleField never returns null"); 2193 } 2194 } else { 2195 Member = HandleDeclarator(S, D, TemplateParameterLists); 2196 if (!Member) 2197 return nullptr; 2198 2199 // Non-instance-fields can't have a bitfield. 2200 if (BitWidth) { 2201 if (Member->isInvalidDecl()) { 2202 // don't emit another diagnostic. 2203 } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) { 2204 // C++ 9.6p3: A bit-field shall not be a static member. 2205 // "static member 'A' cannot be a bit-field" 2206 Diag(Loc, diag::err_static_not_bitfield) 2207 << Name << BitWidth->getSourceRange(); 2208 } else if (isa<TypedefDecl>(Member)) { 2209 // "typedef member 'x' cannot be a bit-field" 2210 Diag(Loc, diag::err_typedef_not_bitfield) 2211 << Name << BitWidth->getSourceRange(); 2212 } else { 2213 // A function typedef ("typedef int f(); f a;"). 2214 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 2215 Diag(Loc, diag::err_not_integral_type_bitfield) 2216 << Name << cast<ValueDecl>(Member)->getType() 2217 << BitWidth->getSourceRange(); 2218 } 2219 2220 BitWidth = nullptr; 2221 Member->setInvalidDecl(); 2222 } 2223 2224 Member->setAccess(AS); 2225 2226 // If we have declared a member function template or static data member 2227 // template, set the access of the templated declaration as well. 2228 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member)) 2229 FunTmpl->getTemplatedDecl()->setAccess(AS); 2230 else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member)) 2231 VarTmpl->getTemplatedDecl()->setAccess(AS); 2232 } 2233 2234 if (VS.isOverrideSpecified()) 2235 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0)); 2236 if (VS.isFinalSpecified()) 2237 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context, 2238 VS.isFinalSpelledSealed())); 2239 2240 if (VS.getLastLocation().isValid()) { 2241 // Update the end location of a method that has a virt-specifiers. 2242 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member)) 2243 MD->setRangeEnd(VS.getLastLocation()); 2244 } 2245 2246 CheckOverrideControl(Member); 2247 2248 assert((Name || isInstField) && "No identifier for non-field ?"); 2249 2250 if (isInstField) { 2251 FieldDecl *FD = cast<FieldDecl>(Member); 2252 FieldCollector->Add(FD); 2253 2254 if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) { 2255 // Remember all explicit private FieldDecls that have a name, no side 2256 // effects and are not part of a dependent type declaration. 2257 if (!FD->isImplicit() && FD->getDeclName() && 2258 FD->getAccess() == AS_private && 2259 !FD->hasAttr<UnusedAttr>() && 2260 !FD->getParent()->isDependentContext() && 2261 !InitializationHasSideEffects(*FD)) 2262 UnusedPrivateFields.insert(FD); 2263 } 2264 } 2265 2266 return Member; 2267 } 2268 2269 namespace { 2270 class UninitializedFieldVisitor 2271 : public EvaluatedExprVisitor<UninitializedFieldVisitor> { 2272 Sema &S; 2273 // List of Decls to generate a warning on. Also remove Decls that become 2274 // initialized. 2275 llvm::SmallPtrSetImpl<ValueDecl*> &Decls; 2276 // List of base classes of the record. Classes are removed after their 2277 // initializers. 2278 llvm::SmallPtrSetImpl<QualType> &BaseClasses; 2279 // Vector of decls to be removed from the Decl set prior to visiting the 2280 // nodes. These Decls may have been initialized in the prior initializer. 2281 llvm::SmallVector<ValueDecl*, 4> DeclsToRemove; 2282 // If non-null, add a note to the warning pointing back to the constructor. 2283 const CXXConstructorDecl *Constructor; 2284 // Variables to hold state when processing an initializer list. When 2285 // InitList is true, special case initialization of FieldDecls matching 2286 // InitListFieldDecl. 2287 bool InitList; 2288 FieldDecl *InitListFieldDecl; 2289 llvm::SmallVector<unsigned, 4> InitFieldIndex; 2290 2291 public: 2292 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited; 2293 UninitializedFieldVisitor(Sema &S, 2294 llvm::SmallPtrSetImpl<ValueDecl*> &Decls, 2295 llvm::SmallPtrSetImpl<QualType> &BaseClasses) 2296 : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses), 2297 Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {} 2298 2299 // Returns true if the use of ME is not an uninitialized use. 2300 bool IsInitListMemberExprInitialized(MemberExpr *ME, 2301 bool CheckReferenceOnly) { 2302 llvm::SmallVector<FieldDecl*, 4> Fields; 2303 bool ReferenceField = false; 2304 while (ME) { 2305 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 2306 if (!FD) 2307 return false; 2308 Fields.push_back(FD); 2309 if (FD->getType()->isReferenceType()) 2310 ReferenceField = true; 2311 ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts()); 2312 } 2313 2314 // Binding a reference to an unintialized field is not an 2315 // uninitialized use. 2316 if (CheckReferenceOnly && !ReferenceField) 2317 return true; 2318 2319 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 2320 // Discard the first field since it is the field decl that is being 2321 // initialized. 2322 for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) { 2323 UsedFieldIndex.push_back((*I)->getFieldIndex()); 2324 } 2325 2326 for (auto UsedIter = UsedFieldIndex.begin(), 2327 UsedEnd = UsedFieldIndex.end(), 2328 OrigIter = InitFieldIndex.begin(), 2329 OrigEnd = InitFieldIndex.end(); 2330 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 2331 if (*UsedIter < *OrigIter) 2332 return true; 2333 if (*UsedIter > *OrigIter) 2334 break; 2335 } 2336 2337 return false; 2338 } 2339 2340 void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly, 2341 bool AddressOf) { 2342 if (isa<EnumConstantDecl>(ME->getMemberDecl())) 2343 return; 2344 2345 // FieldME is the inner-most MemberExpr that is not an anonymous struct 2346 // or union. 2347 MemberExpr *FieldME = ME; 2348 2349 bool AllPODFields = FieldME->getType().isPODType(S.Context); 2350 2351 Expr *Base = ME; 2352 while (MemberExpr *SubME = 2353 dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) { 2354 2355 if (isa<VarDecl>(SubME->getMemberDecl())) 2356 return; 2357 2358 if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl())) 2359 if (!FD->isAnonymousStructOrUnion()) 2360 FieldME = SubME; 2361 2362 if (!FieldME->getType().isPODType(S.Context)) 2363 AllPODFields = false; 2364 2365 Base = SubME->getBase(); 2366 } 2367 2368 if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts())) 2369 return; 2370 2371 if (AddressOf && AllPODFields) 2372 return; 2373 2374 ValueDecl* FoundVD = FieldME->getMemberDecl(); 2375 2376 if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) { 2377 while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) { 2378 BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr()); 2379 } 2380 2381 if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) { 2382 QualType T = BaseCast->getType(); 2383 if (T->isPointerType() && 2384 BaseClasses.count(T->getPointeeType())) { 2385 S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit) 2386 << T->getPointeeType() << FoundVD; 2387 } 2388 } 2389 } 2390 2391 if (!Decls.count(FoundVD)) 2392 return; 2393 2394 const bool IsReference = FoundVD->getType()->isReferenceType(); 2395 2396 if (InitList && !AddressOf && FoundVD == InitListFieldDecl) { 2397 // Special checking for initializer lists. 2398 if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) { 2399 return; 2400 } 2401 } else { 2402 // Prevent double warnings on use of unbounded references. 2403 if (CheckReferenceOnly && !IsReference) 2404 return; 2405 } 2406 2407 unsigned diag = IsReference 2408 ? diag::warn_reference_field_is_uninit 2409 : diag::warn_field_is_uninit; 2410 S.Diag(FieldME->getExprLoc(), diag) << FoundVD; 2411 if (Constructor) 2412 S.Diag(Constructor->getLocation(), 2413 diag::note_uninit_in_this_constructor) 2414 << (Constructor->isDefaultConstructor() && Constructor->isImplicit()); 2415 2416 } 2417 2418 void HandleValue(Expr *E, bool AddressOf) { 2419 E = E->IgnoreParens(); 2420 2421 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 2422 HandleMemberExpr(ME, false /*CheckReferenceOnly*/, 2423 AddressOf /*AddressOf*/); 2424 return; 2425 } 2426 2427 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 2428 Visit(CO->getCond()); 2429 HandleValue(CO->getTrueExpr(), AddressOf); 2430 HandleValue(CO->getFalseExpr(), AddressOf); 2431 return; 2432 } 2433 2434 if (BinaryConditionalOperator *BCO = 2435 dyn_cast<BinaryConditionalOperator>(E)) { 2436 Visit(BCO->getCond()); 2437 HandleValue(BCO->getFalseExpr(), AddressOf); 2438 return; 2439 } 2440 2441 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 2442 HandleValue(OVE->getSourceExpr(), AddressOf); 2443 return; 2444 } 2445 2446 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 2447 switch (BO->getOpcode()) { 2448 default: 2449 break; 2450 case(BO_PtrMemD): 2451 case(BO_PtrMemI): 2452 HandleValue(BO->getLHS(), AddressOf); 2453 Visit(BO->getRHS()); 2454 return; 2455 case(BO_Comma): 2456 Visit(BO->getLHS()); 2457 HandleValue(BO->getRHS(), AddressOf); 2458 return; 2459 } 2460 } 2461 2462 Visit(E); 2463 } 2464 2465 void CheckInitListExpr(InitListExpr *ILE) { 2466 InitFieldIndex.push_back(0); 2467 for (auto Child : ILE->children()) { 2468 if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) { 2469 CheckInitListExpr(SubList); 2470 } else { 2471 Visit(Child); 2472 } 2473 ++InitFieldIndex.back(); 2474 } 2475 InitFieldIndex.pop_back(); 2476 } 2477 2478 void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor, 2479 FieldDecl *Field, const Type *BaseClass) { 2480 // Remove Decls that may have been initialized in the previous 2481 // initializer. 2482 for (ValueDecl* VD : DeclsToRemove) 2483 Decls.erase(VD); 2484 DeclsToRemove.clear(); 2485 2486 Constructor = FieldConstructor; 2487 InitListExpr *ILE = dyn_cast<InitListExpr>(E); 2488 2489 if (ILE && Field) { 2490 InitList = true; 2491 InitListFieldDecl = Field; 2492 InitFieldIndex.clear(); 2493 CheckInitListExpr(ILE); 2494 } else { 2495 InitList = false; 2496 Visit(E); 2497 } 2498 2499 if (Field) 2500 Decls.erase(Field); 2501 if (BaseClass) 2502 BaseClasses.erase(BaseClass->getCanonicalTypeInternal()); 2503 } 2504 2505 void VisitMemberExpr(MemberExpr *ME) { 2506 // All uses of unbounded reference fields will warn. 2507 HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/); 2508 } 2509 2510 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 2511 if (E->getCastKind() == CK_LValueToRValue) { 2512 HandleValue(E->getSubExpr(), false /*AddressOf*/); 2513 return; 2514 } 2515 2516 Inherited::VisitImplicitCastExpr(E); 2517 } 2518 2519 void VisitCXXConstructExpr(CXXConstructExpr *E) { 2520 if (E->getConstructor()->isCopyConstructor()) { 2521 Expr *ArgExpr = E->getArg(0); 2522 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 2523 if (ILE->getNumInits() == 1) 2524 ArgExpr = ILE->getInit(0); 2525 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 2526 if (ICE->getCastKind() == CK_NoOp) 2527 ArgExpr = ICE->getSubExpr(); 2528 HandleValue(ArgExpr, false /*AddressOf*/); 2529 return; 2530 } 2531 Inherited::VisitCXXConstructExpr(E); 2532 } 2533 2534 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) { 2535 Expr *Callee = E->getCallee(); 2536 if (isa<MemberExpr>(Callee)) { 2537 HandleValue(Callee, false /*AddressOf*/); 2538 for (auto Arg : E->arguments()) 2539 Visit(Arg); 2540 return; 2541 } 2542 2543 Inherited::VisitCXXMemberCallExpr(E); 2544 } 2545 2546 void VisitCallExpr(CallExpr *E) { 2547 // Treat std::move as a use. 2548 if (E->getNumArgs() == 1) { 2549 if (FunctionDecl *FD = E->getDirectCallee()) { 2550 if (FD->isInStdNamespace() && FD->getIdentifier() && 2551 FD->getIdentifier()->isStr("move")) { 2552 HandleValue(E->getArg(0), false /*AddressOf*/); 2553 return; 2554 } 2555 } 2556 } 2557 2558 Inherited::VisitCallExpr(E); 2559 } 2560 2561 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 2562 Expr *Callee = E->getCallee(); 2563 2564 if (isa<UnresolvedLookupExpr>(Callee)) 2565 return Inherited::VisitCXXOperatorCallExpr(E); 2566 2567 Visit(Callee); 2568 for (auto Arg : E->arguments()) 2569 HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/); 2570 } 2571 2572 void VisitBinaryOperator(BinaryOperator *E) { 2573 // If a field assignment is detected, remove the field from the 2574 // uninitiailized field set. 2575 if (E->getOpcode() == BO_Assign) 2576 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS())) 2577 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) 2578 if (!FD->getType()->isReferenceType()) 2579 DeclsToRemove.push_back(FD); 2580 2581 if (E->isCompoundAssignmentOp()) { 2582 HandleValue(E->getLHS(), false /*AddressOf*/); 2583 Visit(E->getRHS()); 2584 return; 2585 } 2586 2587 Inherited::VisitBinaryOperator(E); 2588 } 2589 2590 void VisitUnaryOperator(UnaryOperator *E) { 2591 if (E->isIncrementDecrementOp()) { 2592 HandleValue(E->getSubExpr(), false /*AddressOf*/); 2593 return; 2594 } 2595 if (E->getOpcode() == UO_AddrOf) { 2596 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) { 2597 HandleValue(ME->getBase(), true /*AddressOf*/); 2598 return; 2599 } 2600 } 2601 2602 Inherited::VisitUnaryOperator(E); 2603 } 2604 }; 2605 2606 // Diagnose value-uses of fields to initialize themselves, e.g. 2607 // foo(foo) 2608 // where foo is not also a parameter to the constructor. 2609 // Also diagnose across field uninitialized use such as 2610 // x(y), y(x) 2611 // TODO: implement -Wuninitialized and fold this into that framework. 2612 static void DiagnoseUninitializedFields( 2613 Sema &SemaRef, const CXXConstructorDecl *Constructor) { 2614 2615 if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit, 2616 Constructor->getLocation())) { 2617 return; 2618 } 2619 2620 if (Constructor->isInvalidDecl()) 2621 return; 2622 2623 const CXXRecordDecl *RD = Constructor->getParent(); 2624 2625 if (RD->getDescribedClassTemplate()) 2626 return; 2627 2628 // Holds fields that are uninitialized. 2629 llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields; 2630 2631 // At the beginning, all fields are uninitialized. 2632 for (auto *I : RD->decls()) { 2633 if (auto *FD = dyn_cast<FieldDecl>(I)) { 2634 UninitializedFields.insert(FD); 2635 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { 2636 UninitializedFields.insert(IFD->getAnonField()); 2637 } 2638 } 2639 2640 llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses; 2641 for (auto I : RD->bases()) 2642 UninitializedBaseClasses.insert(I.getType().getCanonicalType()); 2643 2644 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 2645 return; 2646 2647 UninitializedFieldVisitor UninitializedChecker(SemaRef, 2648 UninitializedFields, 2649 UninitializedBaseClasses); 2650 2651 for (const auto *FieldInit : Constructor->inits()) { 2652 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 2653 break; 2654 2655 Expr *InitExpr = FieldInit->getInit(); 2656 if (!InitExpr) 2657 continue; 2658 2659 if (CXXDefaultInitExpr *Default = 2660 dyn_cast<CXXDefaultInitExpr>(InitExpr)) { 2661 InitExpr = Default->getExpr(); 2662 if (!InitExpr) 2663 continue; 2664 // In class initializers will point to the constructor. 2665 UninitializedChecker.CheckInitializer(InitExpr, Constructor, 2666 FieldInit->getAnyMember(), 2667 FieldInit->getBaseClass()); 2668 } else { 2669 UninitializedChecker.CheckInitializer(InitExpr, nullptr, 2670 FieldInit->getAnyMember(), 2671 FieldInit->getBaseClass()); 2672 } 2673 } 2674 } 2675 } // namespace 2676 2677 /// \brief Enter a new C++ default initializer scope. After calling this, the 2678 /// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if 2679 /// parsing or instantiating the initializer failed. 2680 void Sema::ActOnStartCXXInClassMemberInitializer() { 2681 // Create a synthetic function scope to represent the call to the constructor 2682 // that notionally surrounds a use of this initializer. 2683 PushFunctionScope(); 2684 } 2685 2686 /// \brief This is invoked after parsing an in-class initializer for a 2687 /// non-static C++ class member, and after instantiating an in-class initializer 2688 /// in a class template. Such actions are deferred until the class is complete. 2689 void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D, 2690 SourceLocation InitLoc, 2691 Expr *InitExpr) { 2692 // Pop the notional constructor scope we created earlier. 2693 PopFunctionScopeInfo(nullptr, D); 2694 2695 FieldDecl *FD = dyn_cast<FieldDecl>(D); 2696 assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) && 2697 "must set init style when field is created"); 2698 2699 if (!InitExpr) { 2700 D->setInvalidDecl(); 2701 if (FD) 2702 FD->removeInClassInitializer(); 2703 return; 2704 } 2705 2706 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) { 2707 FD->setInvalidDecl(); 2708 FD->removeInClassInitializer(); 2709 return; 2710 } 2711 2712 ExprResult Init = InitExpr; 2713 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) { 2714 InitializedEntity Entity = InitializedEntity::InitializeMember(FD); 2715 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit 2716 ? InitializationKind::CreateDirectList(InitExpr->getLocStart()) 2717 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc); 2718 InitializationSequence Seq(*this, Entity, Kind, InitExpr); 2719 Init = Seq.Perform(*this, Entity, Kind, InitExpr); 2720 if (Init.isInvalid()) { 2721 FD->setInvalidDecl(); 2722 return; 2723 } 2724 } 2725 2726 // C++11 [class.base.init]p7: 2727 // The initialization of each base and member constitutes a 2728 // full-expression. 2729 Init = ActOnFinishFullExpr(Init.get(), InitLoc); 2730 if (Init.isInvalid()) { 2731 FD->setInvalidDecl(); 2732 return; 2733 } 2734 2735 InitExpr = Init.get(); 2736 2737 FD->setInClassInitializer(InitExpr); 2738 } 2739 2740 /// \brief Find the direct and/or virtual base specifiers that 2741 /// correspond to the given base type, for use in base initialization 2742 /// within a constructor. 2743 static bool FindBaseInitializer(Sema &SemaRef, 2744 CXXRecordDecl *ClassDecl, 2745 QualType BaseType, 2746 const CXXBaseSpecifier *&DirectBaseSpec, 2747 const CXXBaseSpecifier *&VirtualBaseSpec) { 2748 // First, check for a direct base class. 2749 DirectBaseSpec = nullptr; 2750 for (const auto &Base : ClassDecl->bases()) { 2751 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) { 2752 // We found a direct base of this type. That's what we're 2753 // initializing. 2754 DirectBaseSpec = &Base; 2755 break; 2756 } 2757 } 2758 2759 // Check for a virtual base class. 2760 // FIXME: We might be able to short-circuit this if we know in advance that 2761 // there are no virtual bases. 2762 VirtualBaseSpec = nullptr; 2763 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) { 2764 // We haven't found a base yet; search the class hierarchy for a 2765 // virtual base class. 2766 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 2767 /*DetectVirtual=*/false); 2768 if (SemaRef.IsDerivedFrom(ClassDecl->getLocation(), 2769 SemaRef.Context.getTypeDeclType(ClassDecl), 2770 BaseType, Paths)) { 2771 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 2772 Path != Paths.end(); ++Path) { 2773 if (Path->back().Base->isVirtual()) { 2774 VirtualBaseSpec = Path->back().Base; 2775 break; 2776 } 2777 } 2778 } 2779 } 2780 2781 return DirectBaseSpec || VirtualBaseSpec; 2782 } 2783 2784 /// \brief Handle a C++ member initializer using braced-init-list syntax. 2785 MemInitResult 2786 Sema::ActOnMemInitializer(Decl *ConstructorD, 2787 Scope *S, 2788 CXXScopeSpec &SS, 2789 IdentifierInfo *MemberOrBase, 2790 ParsedType TemplateTypeTy, 2791 const DeclSpec &DS, 2792 SourceLocation IdLoc, 2793 Expr *InitList, 2794 SourceLocation EllipsisLoc) { 2795 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 2796 DS, IdLoc, InitList, 2797 EllipsisLoc); 2798 } 2799 2800 /// \brief Handle a C++ member initializer using parentheses syntax. 2801 MemInitResult 2802 Sema::ActOnMemInitializer(Decl *ConstructorD, 2803 Scope *S, 2804 CXXScopeSpec &SS, 2805 IdentifierInfo *MemberOrBase, 2806 ParsedType TemplateTypeTy, 2807 const DeclSpec &DS, 2808 SourceLocation IdLoc, 2809 SourceLocation LParenLoc, 2810 ArrayRef<Expr *> Args, 2811 SourceLocation RParenLoc, 2812 SourceLocation EllipsisLoc) { 2813 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, 2814 Args, RParenLoc); 2815 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 2816 DS, IdLoc, List, EllipsisLoc); 2817 } 2818 2819 namespace { 2820 2821 // Callback to only accept typo corrections that can be a valid C++ member 2822 // intializer: either a non-static field member or a base class. 2823 class MemInitializerValidatorCCC : public CorrectionCandidateCallback { 2824 public: 2825 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl) 2826 : ClassDecl(ClassDecl) {} 2827 2828 bool ValidateCandidate(const TypoCorrection &candidate) override { 2829 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 2830 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND)) 2831 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl); 2832 return isa<TypeDecl>(ND); 2833 } 2834 return false; 2835 } 2836 2837 private: 2838 CXXRecordDecl *ClassDecl; 2839 }; 2840 2841 } 2842 2843 /// \brief Handle a C++ member initializer. 2844 MemInitResult 2845 Sema::BuildMemInitializer(Decl *ConstructorD, 2846 Scope *S, 2847 CXXScopeSpec &SS, 2848 IdentifierInfo *MemberOrBase, 2849 ParsedType TemplateTypeTy, 2850 const DeclSpec &DS, 2851 SourceLocation IdLoc, 2852 Expr *Init, 2853 SourceLocation EllipsisLoc) { 2854 ExprResult Res = CorrectDelayedTyposInExpr(Init); 2855 if (!Res.isUsable()) 2856 return true; 2857 Init = Res.get(); 2858 2859 if (!ConstructorD) 2860 return true; 2861 2862 AdjustDeclIfTemplate(ConstructorD); 2863 2864 CXXConstructorDecl *Constructor 2865 = dyn_cast<CXXConstructorDecl>(ConstructorD); 2866 if (!Constructor) { 2867 // The user wrote a constructor initializer on a function that is 2868 // not a C++ constructor. Ignore the error for now, because we may 2869 // have more member initializers coming; we'll diagnose it just 2870 // once in ActOnMemInitializers. 2871 return true; 2872 } 2873 2874 CXXRecordDecl *ClassDecl = Constructor->getParent(); 2875 2876 // C++ [class.base.init]p2: 2877 // Names in a mem-initializer-id are looked up in the scope of the 2878 // constructor's class and, if not found in that scope, are looked 2879 // up in the scope containing the constructor's definition. 2880 // [Note: if the constructor's class contains a member with the 2881 // same name as a direct or virtual base class of the class, a 2882 // mem-initializer-id naming the member or base class and composed 2883 // of a single identifier refers to the class member. A 2884 // mem-initializer-id for the hidden base class may be specified 2885 // using a qualified name. ] 2886 if (!SS.getScopeRep() && !TemplateTypeTy) { 2887 // Look for a member, first. 2888 DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase); 2889 if (!Result.empty()) { 2890 ValueDecl *Member; 2891 if ((Member = dyn_cast<FieldDecl>(Result.front())) || 2892 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) { 2893 if (EllipsisLoc.isValid()) 2894 Diag(EllipsisLoc, diag::err_pack_expansion_member_init) 2895 << MemberOrBase 2896 << SourceRange(IdLoc, Init->getSourceRange().getEnd()); 2897 2898 return BuildMemberInitializer(Member, Init, IdLoc); 2899 } 2900 } 2901 } 2902 // It didn't name a member, so see if it names a class. 2903 QualType BaseType; 2904 TypeSourceInfo *TInfo = nullptr; 2905 2906 if (TemplateTypeTy) { 2907 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo); 2908 } else if (DS.getTypeSpecType() == TST_decltype) { 2909 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); 2910 } else { 2911 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName); 2912 LookupParsedName(R, S, &SS); 2913 2914 TypeDecl *TyD = R.getAsSingle<TypeDecl>(); 2915 if (!TyD) { 2916 if (R.isAmbiguous()) return true; 2917 2918 // We don't want access-control diagnostics here. 2919 R.suppressDiagnostics(); 2920 2921 if (SS.isSet() && isDependentScopeSpecifier(SS)) { 2922 bool NotUnknownSpecialization = false; 2923 DeclContext *DC = computeDeclContext(SS, false); 2924 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC)) 2925 NotUnknownSpecialization = !Record->hasAnyDependentBases(); 2926 2927 if (!NotUnknownSpecialization) { 2928 // When the scope specifier can refer to a member of an unknown 2929 // specialization, we take it as a type name. 2930 BaseType = CheckTypenameType(ETK_None, SourceLocation(), 2931 SS.getWithLocInContext(Context), 2932 *MemberOrBase, IdLoc); 2933 if (BaseType.isNull()) 2934 return true; 2935 2936 R.clear(); 2937 R.setLookupName(MemberOrBase); 2938 } 2939 } 2940 2941 // If no results were found, try to correct typos. 2942 TypoCorrection Corr; 2943 if (R.empty() && BaseType.isNull() && 2944 (Corr = CorrectTypo( 2945 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 2946 llvm::make_unique<MemInitializerValidatorCCC>(ClassDecl), 2947 CTK_ErrorRecovery, ClassDecl))) { 2948 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) { 2949 // We have found a non-static data member with a similar 2950 // name to what was typed; complain and initialize that 2951 // member. 2952 diagnoseTypo(Corr, 2953 PDiag(diag::err_mem_init_not_member_or_class_suggest) 2954 << MemberOrBase << true); 2955 return BuildMemberInitializer(Member, Init, IdLoc); 2956 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) { 2957 const CXXBaseSpecifier *DirectBaseSpec; 2958 const CXXBaseSpecifier *VirtualBaseSpec; 2959 if (FindBaseInitializer(*this, ClassDecl, 2960 Context.getTypeDeclType(Type), 2961 DirectBaseSpec, VirtualBaseSpec)) { 2962 // We have found a direct or virtual base class with a 2963 // similar name to what was typed; complain and initialize 2964 // that base class. 2965 diagnoseTypo(Corr, 2966 PDiag(diag::err_mem_init_not_member_or_class_suggest) 2967 << MemberOrBase << false, 2968 PDiag() /*Suppress note, we provide our own.*/); 2969 2970 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec 2971 : VirtualBaseSpec; 2972 Diag(BaseSpec->getLocStart(), 2973 diag::note_base_class_specified_here) 2974 << BaseSpec->getType() 2975 << BaseSpec->getSourceRange(); 2976 2977 TyD = Type; 2978 } 2979 } 2980 } 2981 2982 if (!TyD && BaseType.isNull()) { 2983 Diag(IdLoc, diag::err_mem_init_not_member_or_class) 2984 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd()); 2985 return true; 2986 } 2987 } 2988 2989 if (BaseType.isNull()) { 2990 BaseType = Context.getTypeDeclType(TyD); 2991 MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false); 2992 if (SS.isSet()) { 2993 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(), 2994 BaseType); 2995 TInfo = Context.CreateTypeSourceInfo(BaseType); 2996 ElaboratedTypeLoc TL = TInfo->getTypeLoc().castAs<ElaboratedTypeLoc>(); 2997 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc); 2998 TL.setElaboratedKeywordLoc(SourceLocation()); 2999 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 3000 } 3001 } 3002 } 3003 3004 if (!TInfo) 3005 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc); 3006 3007 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc); 3008 } 3009 3010 /// Checks a member initializer expression for cases where reference (or 3011 /// pointer) members are bound to by-value parameters (or their addresses). 3012 static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member, 3013 Expr *Init, 3014 SourceLocation IdLoc) { 3015 QualType MemberTy = Member->getType(); 3016 3017 // We only handle pointers and references currently. 3018 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers? 3019 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType()) 3020 return; 3021 3022 const bool IsPointer = MemberTy->isPointerType(); 3023 if (IsPointer) { 3024 if (const UnaryOperator *Op 3025 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) { 3026 // The only case we're worried about with pointers requires taking the 3027 // address. 3028 if (Op->getOpcode() != UO_AddrOf) 3029 return; 3030 3031 Init = Op->getSubExpr(); 3032 } else { 3033 // We only handle address-of expression initializers for pointers. 3034 return; 3035 } 3036 } 3037 3038 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) { 3039 // We only warn when referring to a non-reference parameter declaration. 3040 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl()); 3041 if (!Parameter || Parameter->getType()->isReferenceType()) 3042 return; 3043 3044 S.Diag(Init->getExprLoc(), 3045 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr 3046 : diag::warn_bind_ref_member_to_parameter) 3047 << Member << Parameter << Init->getSourceRange(); 3048 } else { 3049 // Other initializers are fine. 3050 return; 3051 } 3052 3053 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here) 3054 << (unsigned)IsPointer; 3055 } 3056 3057 MemInitResult 3058 Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init, 3059 SourceLocation IdLoc) { 3060 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member); 3061 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member); 3062 assert((DirectMember || IndirectMember) && 3063 "Member must be a FieldDecl or IndirectFieldDecl"); 3064 3065 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 3066 return true; 3067 3068 if (Member->isInvalidDecl()) 3069 return true; 3070 3071 MultiExprArg Args; 3072 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3073 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3074 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) { 3075 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); 3076 } else { 3077 // Template instantiation doesn't reconstruct ParenListExprs for us. 3078 Args = Init; 3079 } 3080 3081 SourceRange InitRange = Init->getSourceRange(); 3082 3083 if (Member->getType()->isDependentType() || Init->isTypeDependent()) { 3084 // Can't check initialization for a member of dependent type or when 3085 // any of the arguments are type-dependent expressions. 3086 DiscardCleanupsInEvaluationContext(); 3087 } else { 3088 bool InitList = false; 3089 if (isa<InitListExpr>(Init)) { 3090 InitList = true; 3091 Args = Init; 3092 } 3093 3094 // Initialize the member. 3095 InitializedEntity MemberEntity = 3096 DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr) 3097 : InitializedEntity::InitializeMember(IndirectMember, 3098 nullptr); 3099 InitializationKind Kind = 3100 InitList ? InitializationKind::CreateDirectList(IdLoc) 3101 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(), 3102 InitRange.getEnd()); 3103 3104 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args); 3105 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args, 3106 nullptr); 3107 if (MemberInit.isInvalid()) 3108 return true; 3109 3110 CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc); 3111 3112 // C++11 [class.base.init]p7: 3113 // The initialization of each base and member constitutes a 3114 // full-expression. 3115 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin()); 3116 if (MemberInit.isInvalid()) 3117 return true; 3118 3119 Init = MemberInit.get(); 3120 } 3121 3122 if (DirectMember) { 3123 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc, 3124 InitRange.getBegin(), Init, 3125 InitRange.getEnd()); 3126 } else { 3127 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc, 3128 InitRange.getBegin(), Init, 3129 InitRange.getEnd()); 3130 } 3131 } 3132 3133 MemInitResult 3134 Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init, 3135 CXXRecordDecl *ClassDecl) { 3136 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin(); 3137 if (!LangOpts.CPlusPlus11) 3138 return Diag(NameLoc, diag::err_delegating_ctor) 3139 << TInfo->getTypeLoc().getLocalSourceRange(); 3140 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor); 3141 3142 bool InitList = true; 3143 MultiExprArg Args = Init; 3144 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3145 InitList = false; 3146 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3147 } 3148 3149 SourceRange InitRange = Init->getSourceRange(); 3150 // Initialize the object. 3151 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation( 3152 QualType(ClassDecl->getTypeForDecl(), 0)); 3153 InitializationKind Kind = 3154 InitList ? InitializationKind::CreateDirectList(NameLoc) 3155 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(), 3156 InitRange.getEnd()); 3157 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args); 3158 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind, 3159 Args, nullptr); 3160 if (DelegationInit.isInvalid()) 3161 return true; 3162 3163 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() && 3164 "Delegating constructor with no target?"); 3165 3166 // C++11 [class.base.init]p7: 3167 // The initialization of each base and member constitutes a 3168 // full-expression. 3169 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(), 3170 InitRange.getBegin()); 3171 if (DelegationInit.isInvalid()) 3172 return true; 3173 3174 // If we are in a dependent context, template instantiation will 3175 // perform this type-checking again. Just save the arguments that we 3176 // received in a ParenListExpr. 3177 // FIXME: This isn't quite ideal, since our ASTs don't capture all 3178 // of the information that we have about the base 3179 // initializer. However, deconstructing the ASTs is a dicey process, 3180 // and this approach is far more likely to get the corner cases right. 3181 if (CurContext->isDependentContext()) 3182 DelegationInit = Init; 3183 3184 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(), 3185 DelegationInit.getAs<Expr>(), 3186 InitRange.getEnd()); 3187 } 3188 3189 MemInitResult 3190 Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, 3191 Expr *Init, CXXRecordDecl *ClassDecl, 3192 SourceLocation EllipsisLoc) { 3193 SourceLocation BaseLoc 3194 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin(); 3195 3196 if (!BaseType->isDependentType() && !BaseType->isRecordType()) 3197 return Diag(BaseLoc, diag::err_base_init_does_not_name_class) 3198 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3199 3200 // C++ [class.base.init]p2: 3201 // [...] Unless the mem-initializer-id names a nonstatic data 3202 // member of the constructor's class or a direct or virtual base 3203 // of that class, the mem-initializer is ill-formed. A 3204 // mem-initializer-list can initialize a base class using any 3205 // name that denotes that base class type. 3206 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent(); 3207 3208 SourceRange InitRange = Init->getSourceRange(); 3209 if (EllipsisLoc.isValid()) { 3210 // This is a pack expansion. 3211 if (!BaseType->containsUnexpandedParameterPack()) { 3212 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 3213 << SourceRange(BaseLoc, InitRange.getEnd()); 3214 3215 EllipsisLoc = SourceLocation(); 3216 } 3217 } else { 3218 // Check for any unexpanded parameter packs. 3219 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer)) 3220 return true; 3221 3222 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 3223 return true; 3224 } 3225 3226 // Check for direct and virtual base classes. 3227 const CXXBaseSpecifier *DirectBaseSpec = nullptr; 3228 const CXXBaseSpecifier *VirtualBaseSpec = nullptr; 3229 if (!Dependent) { 3230 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0), 3231 BaseType)) 3232 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl); 3233 3234 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec, 3235 VirtualBaseSpec); 3236 3237 // C++ [base.class.init]p2: 3238 // Unless the mem-initializer-id names a nonstatic data member of the 3239 // constructor's class or a direct or virtual base of that class, the 3240 // mem-initializer is ill-formed. 3241 if (!DirectBaseSpec && !VirtualBaseSpec) { 3242 // If the class has any dependent bases, then it's possible that 3243 // one of those types will resolve to the same type as 3244 // BaseType. Therefore, just treat this as a dependent base 3245 // class initialization. FIXME: Should we try to check the 3246 // initialization anyway? It seems odd. 3247 if (ClassDecl->hasAnyDependentBases()) 3248 Dependent = true; 3249 else 3250 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual) 3251 << BaseType << Context.getTypeDeclType(ClassDecl) 3252 << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3253 } 3254 } 3255 3256 if (Dependent) { 3257 DiscardCleanupsInEvaluationContext(); 3258 3259 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 3260 /*IsVirtual=*/false, 3261 InitRange.getBegin(), Init, 3262 InitRange.getEnd(), EllipsisLoc); 3263 } 3264 3265 // C++ [base.class.init]p2: 3266 // If a mem-initializer-id is ambiguous because it designates both 3267 // a direct non-virtual base class and an inherited virtual base 3268 // class, the mem-initializer is ill-formed. 3269 if (DirectBaseSpec && VirtualBaseSpec) 3270 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual) 3271 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3272 3273 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec; 3274 if (!BaseSpec) 3275 BaseSpec = VirtualBaseSpec; 3276 3277 // Initialize the base. 3278 bool InitList = true; 3279 MultiExprArg Args = Init; 3280 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3281 InitList = false; 3282 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3283 } 3284 3285 InitializedEntity BaseEntity = 3286 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec); 3287 InitializationKind Kind = 3288 InitList ? InitializationKind::CreateDirectList(BaseLoc) 3289 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(), 3290 InitRange.getEnd()); 3291 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args); 3292 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr); 3293 if (BaseInit.isInvalid()) 3294 return true; 3295 3296 // C++11 [class.base.init]p7: 3297 // The initialization of each base and member constitutes a 3298 // full-expression. 3299 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin()); 3300 if (BaseInit.isInvalid()) 3301 return true; 3302 3303 // If we are in a dependent context, template instantiation will 3304 // perform this type-checking again. Just save the arguments that we 3305 // received in a ParenListExpr. 3306 // FIXME: This isn't quite ideal, since our ASTs don't capture all 3307 // of the information that we have about the base 3308 // initializer. However, deconstructing the ASTs is a dicey process, 3309 // and this approach is far more likely to get the corner cases right. 3310 if (CurContext->isDependentContext()) 3311 BaseInit = Init; 3312 3313 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 3314 BaseSpec->isVirtual(), 3315 InitRange.getBegin(), 3316 BaseInit.getAs<Expr>(), 3317 InitRange.getEnd(), EllipsisLoc); 3318 } 3319 3320 // Create a static_cast\<T&&>(expr). 3321 static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) { 3322 if (T.isNull()) T = E->getType(); 3323 QualType TargetType = SemaRef.BuildReferenceType( 3324 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName()); 3325 SourceLocation ExprLoc = E->getLocStart(); 3326 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo( 3327 TargetType, ExprLoc); 3328 3329 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E, 3330 SourceRange(ExprLoc, ExprLoc), 3331 E->getSourceRange()).get(); 3332 } 3333 3334 /// ImplicitInitializerKind - How an implicit base or member initializer should 3335 /// initialize its base or member. 3336 enum ImplicitInitializerKind { 3337 IIK_Default, 3338 IIK_Copy, 3339 IIK_Move, 3340 IIK_Inherit 3341 }; 3342 3343 static bool 3344 BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 3345 ImplicitInitializerKind ImplicitInitKind, 3346 CXXBaseSpecifier *BaseSpec, 3347 bool IsInheritedVirtualBase, 3348 CXXCtorInitializer *&CXXBaseInit) { 3349 InitializedEntity InitEntity 3350 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec, 3351 IsInheritedVirtualBase); 3352 3353 ExprResult BaseInit; 3354 3355 switch (ImplicitInitKind) { 3356 case IIK_Inherit: { 3357 const CXXRecordDecl *Inherited = 3358 Constructor->getInheritedConstructor()->getParent(); 3359 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 3360 if (Base && Inherited->getCanonicalDecl() == Base->getCanonicalDecl()) { 3361 // C++11 [class.inhctor]p8: 3362 // Each expression in the expression-list is of the form 3363 // static_cast<T&&>(p), where p is the name of the corresponding 3364 // constructor parameter and T is the declared type of p. 3365 SmallVector<Expr*, 16> Args; 3366 for (unsigned I = 0, E = Constructor->getNumParams(); I != E; ++I) { 3367 ParmVarDecl *PD = Constructor->getParamDecl(I); 3368 ExprResult ArgExpr = 3369 SemaRef.BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(), 3370 VK_LValue, SourceLocation()); 3371 if (ArgExpr.isInvalid()) 3372 return true; 3373 Args.push_back(CastForMoving(SemaRef, ArgExpr.get(), PD->getType())); 3374 } 3375 3376 InitializationKind InitKind = InitializationKind::CreateDirect( 3377 Constructor->getLocation(), SourceLocation(), SourceLocation()); 3378 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, Args); 3379 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, Args); 3380 break; 3381 } 3382 } 3383 // Fall through. 3384 case IIK_Default: { 3385 InitializationKind InitKind 3386 = InitializationKind::CreateDefault(Constructor->getLocation()); 3387 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3388 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3389 break; 3390 } 3391 3392 case IIK_Move: 3393 case IIK_Copy: { 3394 bool Moving = ImplicitInitKind == IIK_Move; 3395 ParmVarDecl *Param = Constructor->getParamDecl(0); 3396 QualType ParamType = Param->getType().getNonReferenceType(); 3397 3398 Expr *CopyCtorArg = 3399 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 3400 SourceLocation(), Param, false, 3401 Constructor->getLocation(), ParamType, 3402 VK_LValue, nullptr); 3403 3404 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg)); 3405 3406 // Cast to the base class to avoid ambiguities. 3407 QualType ArgTy = 3408 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(), 3409 ParamType.getQualifiers()); 3410 3411 if (Moving) { 3412 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg); 3413 } 3414 3415 CXXCastPath BasePath; 3416 BasePath.push_back(BaseSpec); 3417 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy, 3418 CK_UncheckedDerivedToBase, 3419 Moving ? VK_XValue : VK_LValue, 3420 &BasePath).get(); 3421 3422 InitializationKind InitKind 3423 = InitializationKind::CreateDirect(Constructor->getLocation(), 3424 SourceLocation(), SourceLocation()); 3425 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg); 3426 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg); 3427 break; 3428 } 3429 } 3430 3431 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit); 3432 if (BaseInit.isInvalid()) 3433 return true; 3434 3435 CXXBaseInit = 3436 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3437 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(), 3438 SourceLocation()), 3439 BaseSpec->isVirtual(), 3440 SourceLocation(), 3441 BaseInit.getAs<Expr>(), 3442 SourceLocation(), 3443 SourceLocation()); 3444 3445 return false; 3446 } 3447 3448 static bool RefersToRValueRef(Expr *MemRef) { 3449 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl(); 3450 return Referenced->getType()->isRValueReferenceType(); 3451 } 3452 3453 static bool 3454 BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 3455 ImplicitInitializerKind ImplicitInitKind, 3456 FieldDecl *Field, IndirectFieldDecl *Indirect, 3457 CXXCtorInitializer *&CXXMemberInit) { 3458 if (Field->isInvalidDecl()) 3459 return true; 3460 3461 SourceLocation Loc = Constructor->getLocation(); 3462 3463 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) { 3464 bool Moving = ImplicitInitKind == IIK_Move; 3465 ParmVarDecl *Param = Constructor->getParamDecl(0); 3466 QualType ParamType = Param->getType().getNonReferenceType(); 3467 3468 // Suppress copying zero-width bitfields. 3469 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0) 3470 return false; 3471 3472 Expr *MemberExprBase = 3473 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 3474 SourceLocation(), Param, false, 3475 Loc, ParamType, VK_LValue, nullptr); 3476 3477 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase)); 3478 3479 if (Moving) { 3480 MemberExprBase = CastForMoving(SemaRef, MemberExprBase); 3481 } 3482 3483 // Build a reference to this field within the parameter. 3484 CXXScopeSpec SS; 3485 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc, 3486 Sema::LookupMemberName); 3487 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect) 3488 : cast<ValueDecl>(Field), AS_public); 3489 MemberLookup.resolveKind(); 3490 ExprResult CtorArg 3491 = SemaRef.BuildMemberReferenceExpr(MemberExprBase, 3492 ParamType, Loc, 3493 /*IsArrow=*/false, 3494 SS, 3495 /*TemplateKWLoc=*/SourceLocation(), 3496 /*FirstQualifierInScope=*/nullptr, 3497 MemberLookup, 3498 /*TemplateArgs=*/nullptr, 3499 /*S*/nullptr); 3500 if (CtorArg.isInvalid()) 3501 return true; 3502 3503 // C++11 [class.copy]p15: 3504 // - if a member m has rvalue reference type T&&, it is direct-initialized 3505 // with static_cast<T&&>(x.m); 3506 if (RefersToRValueRef(CtorArg.get())) { 3507 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 3508 } 3509 3510 // When the field we are copying is an array, create index variables for 3511 // each dimension of the array. We use these index variables to subscript 3512 // the source array, and other clients (e.g., CodeGen) will perform the 3513 // necessary iteration with these index variables. 3514 SmallVector<VarDecl *, 4> IndexVariables; 3515 QualType BaseType = Field->getType(); 3516 QualType SizeType = SemaRef.Context.getSizeType(); 3517 bool InitializingArray = false; 3518 while (const ConstantArrayType *Array 3519 = SemaRef.Context.getAsConstantArrayType(BaseType)) { 3520 InitializingArray = true; 3521 // Create the iteration variable for this array index. 3522 IdentifierInfo *IterationVarName = nullptr; 3523 { 3524 SmallString<8> Str; 3525 llvm::raw_svector_ostream OS(Str); 3526 OS << "__i" << IndexVariables.size(); 3527 IterationVarName = &SemaRef.Context.Idents.get(OS.str()); 3528 } 3529 VarDecl *IterationVar 3530 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc, 3531 IterationVarName, SizeType, 3532 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc), 3533 SC_None); 3534 IndexVariables.push_back(IterationVar); 3535 3536 // Create a reference to the iteration variable. 3537 ExprResult IterationVarRef 3538 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc); 3539 assert(!IterationVarRef.isInvalid() && 3540 "Reference to invented variable cannot fail!"); 3541 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.get()); 3542 assert(!IterationVarRef.isInvalid() && 3543 "Conversion of invented variable cannot fail!"); 3544 3545 // Subscript the array with this iteration variable. 3546 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.get(), Loc, 3547 IterationVarRef.get(), 3548 Loc); 3549 if (CtorArg.isInvalid()) 3550 return true; 3551 3552 BaseType = Array->getElementType(); 3553 } 3554 3555 // The array subscript expression is an lvalue, which is wrong for moving. 3556 if (Moving && InitializingArray) 3557 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 3558 3559 // Construct the entity that we will be initializing. For an array, this 3560 // will be first element in the array, which may require several levels 3561 // of array-subscript entities. 3562 SmallVector<InitializedEntity, 4> Entities; 3563 Entities.reserve(1 + IndexVariables.size()); 3564 if (Indirect) 3565 Entities.push_back(InitializedEntity::InitializeMember(Indirect)); 3566 else 3567 Entities.push_back(InitializedEntity::InitializeMember(Field)); 3568 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I) 3569 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context, 3570 0, 3571 Entities.back())); 3572 3573 // Direct-initialize to use the copy constructor. 3574 InitializationKind InitKind = 3575 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation()); 3576 3577 Expr *CtorArgE = CtorArg.getAs<Expr>(); 3578 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind, 3579 CtorArgE); 3580 3581 ExprResult MemberInit 3582 = InitSeq.Perform(SemaRef, Entities.back(), InitKind, 3583 MultiExprArg(&CtorArgE, 1)); 3584 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3585 if (MemberInit.isInvalid()) 3586 return true; 3587 3588 if (Indirect) { 3589 assert(IndexVariables.size() == 0 && 3590 "Indirect field improperly initialized"); 3591 CXXMemberInit 3592 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect, 3593 Loc, Loc, 3594 MemberInit.getAs<Expr>(), 3595 Loc); 3596 } else 3597 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, 3598 Loc, MemberInit.getAs<Expr>(), 3599 Loc, 3600 IndexVariables.data(), 3601 IndexVariables.size()); 3602 return false; 3603 } 3604 3605 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) && 3606 "Unhandled implicit init kind!"); 3607 3608 QualType FieldBaseElementType = 3609 SemaRef.Context.getBaseElementType(Field->getType()); 3610 3611 if (FieldBaseElementType->isRecordType()) { 3612 InitializedEntity InitEntity 3613 = Indirect? InitializedEntity::InitializeMember(Indirect) 3614 : InitializedEntity::InitializeMember(Field); 3615 InitializationKind InitKind = 3616 InitializationKind::CreateDefault(Loc); 3617 3618 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3619 ExprResult MemberInit = 3620 InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3621 3622 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3623 if (MemberInit.isInvalid()) 3624 return true; 3625 3626 if (Indirect) 3627 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3628 Indirect, Loc, 3629 Loc, 3630 MemberInit.get(), 3631 Loc); 3632 else 3633 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3634 Field, Loc, Loc, 3635 MemberInit.get(), 3636 Loc); 3637 return false; 3638 } 3639 3640 if (!Field->getParent()->isUnion()) { 3641 if (FieldBaseElementType->isReferenceType()) { 3642 SemaRef.Diag(Constructor->getLocation(), 3643 diag::err_uninitialized_member_in_ctor) 3644 << (int)Constructor->isImplicit() 3645 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3646 << 0 << Field->getDeclName(); 3647 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3648 return true; 3649 } 3650 3651 if (FieldBaseElementType.isConstQualified()) { 3652 SemaRef.Diag(Constructor->getLocation(), 3653 diag::err_uninitialized_member_in_ctor) 3654 << (int)Constructor->isImplicit() 3655 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3656 << 1 << Field->getDeclName(); 3657 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3658 return true; 3659 } 3660 } 3661 3662 if (SemaRef.getLangOpts().ObjCAutoRefCount && 3663 FieldBaseElementType->isObjCRetainableType() && 3664 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None && 3665 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) { 3666 // ARC: 3667 // Default-initialize Objective-C pointers to NULL. 3668 CXXMemberInit 3669 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field, 3670 Loc, Loc, 3671 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()), 3672 Loc); 3673 return false; 3674 } 3675 3676 // Nothing to initialize. 3677 CXXMemberInit = nullptr; 3678 return false; 3679 } 3680 3681 namespace { 3682 struct BaseAndFieldInfo { 3683 Sema &S; 3684 CXXConstructorDecl *Ctor; 3685 bool AnyErrorsInInits; 3686 ImplicitInitializerKind IIK; 3687 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields; 3688 SmallVector<CXXCtorInitializer*, 8> AllToInit; 3689 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember; 3690 3691 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits) 3692 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) { 3693 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted(); 3694 if (Generated && Ctor->isCopyConstructor()) 3695 IIK = IIK_Copy; 3696 else if (Generated && Ctor->isMoveConstructor()) 3697 IIK = IIK_Move; 3698 else if (Ctor->getInheritedConstructor()) 3699 IIK = IIK_Inherit; 3700 else 3701 IIK = IIK_Default; 3702 } 3703 3704 bool isImplicitCopyOrMove() const { 3705 switch (IIK) { 3706 case IIK_Copy: 3707 case IIK_Move: 3708 return true; 3709 3710 case IIK_Default: 3711 case IIK_Inherit: 3712 return false; 3713 } 3714 3715 llvm_unreachable("Invalid ImplicitInitializerKind!"); 3716 } 3717 3718 bool addFieldInitializer(CXXCtorInitializer *Init) { 3719 AllToInit.push_back(Init); 3720 3721 // Check whether this initializer makes the field "used". 3722 if (Init->getInit()->HasSideEffects(S.Context)) 3723 S.UnusedPrivateFields.remove(Init->getAnyMember()); 3724 3725 return false; 3726 } 3727 3728 bool isInactiveUnionMember(FieldDecl *Field) { 3729 RecordDecl *Record = Field->getParent(); 3730 if (!Record->isUnion()) 3731 return false; 3732 3733 if (FieldDecl *Active = 3734 ActiveUnionMember.lookup(Record->getCanonicalDecl())) 3735 return Active != Field->getCanonicalDecl(); 3736 3737 // In an implicit copy or move constructor, ignore any in-class initializer. 3738 if (isImplicitCopyOrMove()) 3739 return true; 3740 3741 // If there's no explicit initialization, the field is active only if it 3742 // has an in-class initializer... 3743 if (Field->hasInClassInitializer()) 3744 return false; 3745 // ... or it's an anonymous struct or union whose class has an in-class 3746 // initializer. 3747 if (!Field->isAnonymousStructOrUnion()) 3748 return true; 3749 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl(); 3750 return !FieldRD->hasInClassInitializer(); 3751 } 3752 3753 /// \brief Determine whether the given field is, or is within, a union member 3754 /// that is inactive (because there was an initializer given for a different 3755 /// member of the union, or because the union was not initialized at all). 3756 bool isWithinInactiveUnionMember(FieldDecl *Field, 3757 IndirectFieldDecl *Indirect) { 3758 if (!Indirect) 3759 return isInactiveUnionMember(Field); 3760 3761 for (auto *C : Indirect->chain()) { 3762 FieldDecl *Field = dyn_cast<FieldDecl>(C); 3763 if (Field && isInactiveUnionMember(Field)) 3764 return true; 3765 } 3766 return false; 3767 } 3768 }; 3769 } 3770 3771 /// \brief Determine whether the given type is an incomplete or zero-lenfgth 3772 /// array type. 3773 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) { 3774 if (T->isIncompleteArrayType()) 3775 return true; 3776 3777 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) { 3778 if (!ArrayT->getSize()) 3779 return true; 3780 3781 T = ArrayT->getElementType(); 3782 } 3783 3784 return false; 3785 } 3786 3787 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info, 3788 FieldDecl *Field, 3789 IndirectFieldDecl *Indirect = nullptr) { 3790 if (Field->isInvalidDecl()) 3791 return false; 3792 3793 // Overwhelmingly common case: we have a direct initializer for this field. 3794 if (CXXCtorInitializer *Init = 3795 Info.AllBaseFields.lookup(Field->getCanonicalDecl())) 3796 return Info.addFieldInitializer(Init); 3797 3798 // C++11 [class.base.init]p8: 3799 // if the entity is a non-static data member that has a 3800 // brace-or-equal-initializer and either 3801 // -- the constructor's class is a union and no other variant member of that 3802 // union is designated by a mem-initializer-id or 3803 // -- the constructor's class is not a union, and, if the entity is a member 3804 // of an anonymous union, no other member of that union is designated by 3805 // a mem-initializer-id, 3806 // the entity is initialized as specified in [dcl.init]. 3807 // 3808 // We also apply the same rules to handle anonymous structs within anonymous 3809 // unions. 3810 if (Info.isWithinInactiveUnionMember(Field, Indirect)) 3811 return false; 3812 3813 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) { 3814 ExprResult DIE = 3815 SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field); 3816 if (DIE.isInvalid()) 3817 return true; 3818 CXXCtorInitializer *Init; 3819 if (Indirect) 3820 Init = new (SemaRef.Context) 3821 CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(), 3822 SourceLocation(), DIE.get(), SourceLocation()); 3823 else 3824 Init = new (SemaRef.Context) 3825 CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(), 3826 SourceLocation(), DIE.get(), SourceLocation()); 3827 return Info.addFieldInitializer(Init); 3828 } 3829 3830 // Don't initialize incomplete or zero-length arrays. 3831 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType())) 3832 return false; 3833 3834 // Don't try to build an implicit initializer if there were semantic 3835 // errors in any of the initializers (and therefore we might be 3836 // missing some that the user actually wrote). 3837 if (Info.AnyErrorsInInits) 3838 return false; 3839 3840 CXXCtorInitializer *Init = nullptr; 3841 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, 3842 Indirect, Init)) 3843 return true; 3844 3845 if (!Init) 3846 return false; 3847 3848 return Info.addFieldInitializer(Init); 3849 } 3850 3851 bool 3852 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor, 3853 CXXCtorInitializer *Initializer) { 3854 assert(Initializer->isDelegatingInitializer()); 3855 Constructor->setNumCtorInitializers(1); 3856 CXXCtorInitializer **initializer = 3857 new (Context) CXXCtorInitializer*[1]; 3858 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*)); 3859 Constructor->setCtorInitializers(initializer); 3860 3861 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) { 3862 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); 3863 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); 3864 } 3865 3866 DelegatingCtorDecls.push_back(Constructor); 3867 3868 DiagnoseUninitializedFields(*this, Constructor); 3869 3870 return false; 3871 } 3872 3873 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors, 3874 ArrayRef<CXXCtorInitializer *> Initializers) { 3875 if (Constructor->isDependentContext()) { 3876 // Just store the initializers as written, they will be checked during 3877 // instantiation. 3878 if (!Initializers.empty()) { 3879 Constructor->setNumCtorInitializers(Initializers.size()); 3880 CXXCtorInitializer **baseOrMemberInitializers = 3881 new (Context) CXXCtorInitializer*[Initializers.size()]; 3882 memcpy(baseOrMemberInitializers, Initializers.data(), 3883 Initializers.size() * sizeof(CXXCtorInitializer*)); 3884 Constructor->setCtorInitializers(baseOrMemberInitializers); 3885 } 3886 3887 // Let template instantiation know whether we had errors. 3888 if (AnyErrors) 3889 Constructor->setInvalidDecl(); 3890 3891 return false; 3892 } 3893 3894 BaseAndFieldInfo Info(*this, Constructor, AnyErrors); 3895 3896 // We need to build the initializer AST according to order of construction 3897 // and not what user specified in the Initializers list. 3898 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition(); 3899 if (!ClassDecl) 3900 return true; 3901 3902 bool HadError = false; 3903 3904 for (unsigned i = 0; i < Initializers.size(); i++) { 3905 CXXCtorInitializer *Member = Initializers[i]; 3906 3907 if (Member->isBaseInitializer()) 3908 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member; 3909 else { 3910 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member; 3911 3912 if (IndirectFieldDecl *F = Member->getIndirectMember()) { 3913 for (auto *C : F->chain()) { 3914 FieldDecl *FD = dyn_cast<FieldDecl>(C); 3915 if (FD && FD->getParent()->isUnion()) 3916 Info.ActiveUnionMember.insert(std::make_pair( 3917 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3918 } 3919 } else if (FieldDecl *FD = Member->getMember()) { 3920 if (FD->getParent()->isUnion()) 3921 Info.ActiveUnionMember.insert(std::make_pair( 3922 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3923 } 3924 } 3925 } 3926 3927 // Keep track of the direct virtual bases. 3928 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases; 3929 for (auto &I : ClassDecl->bases()) { 3930 if (I.isVirtual()) 3931 DirectVBases.insert(&I); 3932 } 3933 3934 // Push virtual bases before others. 3935 for (auto &VBase : ClassDecl->vbases()) { 3936 if (CXXCtorInitializer *Value 3937 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) { 3938 // [class.base.init]p7, per DR257: 3939 // A mem-initializer where the mem-initializer-id names a virtual base 3940 // class is ignored during execution of a constructor of any class that 3941 // is not the most derived class. 3942 if (ClassDecl->isAbstract()) { 3943 // FIXME: Provide a fixit to remove the base specifier. This requires 3944 // tracking the location of the associated comma for a base specifier. 3945 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) 3946 << VBase.getType() << ClassDecl; 3947 DiagnoseAbstractType(ClassDecl); 3948 } 3949 3950 Info.AllToInit.push_back(Value); 3951 } else if (!AnyErrors && !ClassDecl->isAbstract()) { 3952 // [class.base.init]p8, per DR257: 3953 // If a given [...] base class is not named by a mem-initializer-id 3954 // [...] and the entity is not a virtual base class of an abstract 3955 // class, then [...] the entity is default-initialized. 3956 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase); 3957 CXXCtorInitializer *CXXBaseInit; 3958 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3959 &VBase, IsInheritedVirtualBase, 3960 CXXBaseInit)) { 3961 HadError = true; 3962 continue; 3963 } 3964 3965 Info.AllToInit.push_back(CXXBaseInit); 3966 } 3967 } 3968 3969 // Non-virtual bases. 3970 for (auto &Base : ClassDecl->bases()) { 3971 // Virtuals are in the virtual base list and already constructed. 3972 if (Base.isVirtual()) 3973 continue; 3974 3975 if (CXXCtorInitializer *Value 3976 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) { 3977 Info.AllToInit.push_back(Value); 3978 } else if (!AnyErrors) { 3979 CXXCtorInitializer *CXXBaseInit; 3980 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3981 &Base, /*IsInheritedVirtualBase=*/false, 3982 CXXBaseInit)) { 3983 HadError = true; 3984 continue; 3985 } 3986 3987 Info.AllToInit.push_back(CXXBaseInit); 3988 } 3989 } 3990 3991 // Fields. 3992 for (auto *Mem : ClassDecl->decls()) { 3993 if (auto *F = dyn_cast<FieldDecl>(Mem)) { 3994 // C++ [class.bit]p2: 3995 // A declaration for a bit-field that omits the identifier declares an 3996 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 3997 // initialized. 3998 if (F->isUnnamedBitfield()) 3999 continue; 4000 4001 // If we're not generating the implicit copy/move constructor, then we'll 4002 // handle anonymous struct/union fields based on their individual 4003 // indirect fields. 4004 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove()) 4005 continue; 4006 4007 if (CollectFieldInitializer(*this, Info, F)) 4008 HadError = true; 4009 continue; 4010 } 4011 4012 // Beyond this point, we only consider default initialization. 4013 if (Info.isImplicitCopyOrMove()) 4014 continue; 4015 4016 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) { 4017 if (F->getType()->isIncompleteArrayType()) { 4018 assert(ClassDecl->hasFlexibleArrayMember() && 4019 "Incomplete array type is not valid"); 4020 continue; 4021 } 4022 4023 // Initialize each field of an anonymous struct individually. 4024 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F)) 4025 HadError = true; 4026 4027 continue; 4028 } 4029 } 4030 4031 unsigned NumInitializers = Info.AllToInit.size(); 4032 if (NumInitializers > 0) { 4033 Constructor->setNumCtorInitializers(NumInitializers); 4034 CXXCtorInitializer **baseOrMemberInitializers = 4035 new (Context) CXXCtorInitializer*[NumInitializers]; 4036 memcpy(baseOrMemberInitializers, Info.AllToInit.data(), 4037 NumInitializers * sizeof(CXXCtorInitializer*)); 4038 Constructor->setCtorInitializers(baseOrMemberInitializers); 4039 4040 // Constructors implicitly reference the base and member 4041 // destructors. 4042 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(), 4043 Constructor->getParent()); 4044 } 4045 4046 return HadError; 4047 } 4048 4049 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) { 4050 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) { 4051 const RecordDecl *RD = RT->getDecl(); 4052 if (RD->isAnonymousStructOrUnion()) { 4053 for (auto *Field : RD->fields()) 4054 PopulateKeysForFields(Field, IdealInits); 4055 return; 4056 } 4057 } 4058 IdealInits.push_back(Field->getCanonicalDecl()); 4059 } 4060 4061 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) { 4062 return Context.getCanonicalType(BaseType).getTypePtr(); 4063 } 4064 4065 static const void *GetKeyForMember(ASTContext &Context, 4066 CXXCtorInitializer *Member) { 4067 if (!Member->isAnyMemberInitializer()) 4068 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0)); 4069 4070 return Member->getAnyMember()->getCanonicalDecl(); 4071 } 4072 4073 static void DiagnoseBaseOrMemInitializerOrder( 4074 Sema &SemaRef, const CXXConstructorDecl *Constructor, 4075 ArrayRef<CXXCtorInitializer *> Inits) { 4076 if (Constructor->getDeclContext()->isDependentContext()) 4077 return; 4078 4079 // Don't check initializers order unless the warning is enabled at the 4080 // location of at least one initializer. 4081 bool ShouldCheckOrder = false; 4082 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4083 CXXCtorInitializer *Init = Inits[InitIndex]; 4084 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order, 4085 Init->getSourceLocation())) { 4086 ShouldCheckOrder = true; 4087 break; 4088 } 4089 } 4090 if (!ShouldCheckOrder) 4091 return; 4092 4093 // Build the list of bases and members in the order that they'll 4094 // actually be initialized. The explicit initializers should be in 4095 // this same order but may be missing things. 4096 SmallVector<const void*, 32> IdealInitKeys; 4097 4098 const CXXRecordDecl *ClassDecl = Constructor->getParent(); 4099 4100 // 1. Virtual bases. 4101 for (const auto &VBase : ClassDecl->vbases()) 4102 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType())); 4103 4104 // 2. Non-virtual bases. 4105 for (const auto &Base : ClassDecl->bases()) { 4106 if (Base.isVirtual()) 4107 continue; 4108 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType())); 4109 } 4110 4111 // 3. Direct fields. 4112 for (auto *Field : ClassDecl->fields()) { 4113 if (Field->isUnnamedBitfield()) 4114 continue; 4115 4116 PopulateKeysForFields(Field, IdealInitKeys); 4117 } 4118 4119 unsigned NumIdealInits = IdealInitKeys.size(); 4120 unsigned IdealIndex = 0; 4121 4122 CXXCtorInitializer *PrevInit = nullptr; 4123 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4124 CXXCtorInitializer *Init = Inits[InitIndex]; 4125 const void *InitKey = GetKeyForMember(SemaRef.Context, Init); 4126 4127 // Scan forward to try to find this initializer in the idealized 4128 // initializers list. 4129 for (; IdealIndex != NumIdealInits; ++IdealIndex) 4130 if (InitKey == IdealInitKeys[IdealIndex]) 4131 break; 4132 4133 // If we didn't find this initializer, it must be because we 4134 // scanned past it on a previous iteration. That can only 4135 // happen if we're out of order; emit a warning. 4136 if (IdealIndex == NumIdealInits && PrevInit) { 4137 Sema::SemaDiagnosticBuilder D = 4138 SemaRef.Diag(PrevInit->getSourceLocation(), 4139 diag::warn_initializer_out_of_order); 4140 4141 if (PrevInit->isAnyMemberInitializer()) 4142 D << 0 << PrevInit->getAnyMember()->getDeclName(); 4143 else 4144 D << 1 << PrevInit->getTypeSourceInfo()->getType(); 4145 4146 if (Init->isAnyMemberInitializer()) 4147 D << 0 << Init->getAnyMember()->getDeclName(); 4148 else 4149 D << 1 << Init->getTypeSourceInfo()->getType(); 4150 4151 // Move back to the initializer's location in the ideal list. 4152 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex) 4153 if (InitKey == IdealInitKeys[IdealIndex]) 4154 break; 4155 4156 assert(IdealIndex < NumIdealInits && 4157 "initializer not found in initializer list"); 4158 } 4159 4160 PrevInit = Init; 4161 } 4162 } 4163 4164 namespace { 4165 bool CheckRedundantInit(Sema &S, 4166 CXXCtorInitializer *Init, 4167 CXXCtorInitializer *&PrevInit) { 4168 if (!PrevInit) { 4169 PrevInit = Init; 4170 return false; 4171 } 4172 4173 if (FieldDecl *Field = Init->getAnyMember()) 4174 S.Diag(Init->getSourceLocation(), 4175 diag::err_multiple_mem_initialization) 4176 << Field->getDeclName() 4177 << Init->getSourceRange(); 4178 else { 4179 const Type *BaseClass = Init->getBaseClass(); 4180 assert(BaseClass && "neither field nor base"); 4181 S.Diag(Init->getSourceLocation(), 4182 diag::err_multiple_base_initialization) 4183 << QualType(BaseClass, 0) 4184 << Init->getSourceRange(); 4185 } 4186 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) 4187 << 0 << PrevInit->getSourceRange(); 4188 4189 return true; 4190 } 4191 4192 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry; 4193 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap; 4194 4195 bool CheckRedundantUnionInit(Sema &S, 4196 CXXCtorInitializer *Init, 4197 RedundantUnionMap &Unions) { 4198 FieldDecl *Field = Init->getAnyMember(); 4199 RecordDecl *Parent = Field->getParent(); 4200 NamedDecl *Child = Field; 4201 4202 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) { 4203 if (Parent->isUnion()) { 4204 UnionEntry &En = Unions[Parent]; 4205 if (En.first && En.first != Child) { 4206 S.Diag(Init->getSourceLocation(), 4207 diag::err_multiple_mem_union_initialization) 4208 << Field->getDeclName() 4209 << Init->getSourceRange(); 4210 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer) 4211 << 0 << En.second->getSourceRange(); 4212 return true; 4213 } 4214 if (!En.first) { 4215 En.first = Child; 4216 En.second = Init; 4217 } 4218 if (!Parent->isAnonymousStructOrUnion()) 4219 return false; 4220 } 4221 4222 Child = Parent; 4223 Parent = cast<RecordDecl>(Parent->getDeclContext()); 4224 } 4225 4226 return false; 4227 } 4228 } 4229 4230 /// ActOnMemInitializers - Handle the member initializers for a constructor. 4231 void Sema::ActOnMemInitializers(Decl *ConstructorDecl, 4232 SourceLocation ColonLoc, 4233 ArrayRef<CXXCtorInitializer*> MemInits, 4234 bool AnyErrors) { 4235 if (!ConstructorDecl) 4236 return; 4237 4238 AdjustDeclIfTemplate(ConstructorDecl); 4239 4240 CXXConstructorDecl *Constructor 4241 = dyn_cast<CXXConstructorDecl>(ConstructorDecl); 4242 4243 if (!Constructor) { 4244 Diag(ColonLoc, diag::err_only_constructors_take_base_inits); 4245 return; 4246 } 4247 4248 // Mapping for the duplicate initializers check. 4249 // For member initializers, this is keyed with a FieldDecl*. 4250 // For base initializers, this is keyed with a Type*. 4251 llvm::DenseMap<const void *, CXXCtorInitializer *> Members; 4252 4253 // Mapping for the inconsistent anonymous-union initializers check. 4254 RedundantUnionMap MemberUnions; 4255 4256 bool HadError = false; 4257 for (unsigned i = 0; i < MemInits.size(); i++) { 4258 CXXCtorInitializer *Init = MemInits[i]; 4259 4260 // Set the source order index. 4261 Init->setSourceOrder(i); 4262 4263 if (Init->isAnyMemberInitializer()) { 4264 const void *Key = GetKeyForMember(Context, Init); 4265 if (CheckRedundantInit(*this, Init, Members[Key]) || 4266 CheckRedundantUnionInit(*this, Init, MemberUnions)) 4267 HadError = true; 4268 } else if (Init->isBaseInitializer()) { 4269 const void *Key = GetKeyForMember(Context, Init); 4270 if (CheckRedundantInit(*this, Init, Members[Key])) 4271 HadError = true; 4272 } else { 4273 assert(Init->isDelegatingInitializer()); 4274 // This must be the only initializer 4275 if (MemInits.size() != 1) { 4276 Diag(Init->getSourceLocation(), 4277 diag::err_delegating_initializer_alone) 4278 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange(); 4279 // We will treat this as being the only initializer. 4280 } 4281 SetDelegatingInitializer(Constructor, MemInits[i]); 4282 // Return immediately as the initializer is set. 4283 return; 4284 } 4285 } 4286 4287 if (HadError) 4288 return; 4289 4290 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits); 4291 4292 SetCtorInitializers(Constructor, AnyErrors, MemInits); 4293 4294 DiagnoseUninitializedFields(*this, Constructor); 4295 } 4296 4297 void 4298 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location, 4299 CXXRecordDecl *ClassDecl) { 4300 // Ignore dependent contexts. Also ignore unions, since their members never 4301 // have destructors implicitly called. 4302 if (ClassDecl->isDependentContext() || ClassDecl->isUnion()) 4303 return; 4304 4305 // FIXME: all the access-control diagnostics are positioned on the 4306 // field/base declaration. That's probably good; that said, the 4307 // user might reasonably want to know why the destructor is being 4308 // emitted, and we currently don't say. 4309 4310 // Non-static data members. 4311 for (auto *Field : ClassDecl->fields()) { 4312 if (Field->isInvalidDecl()) 4313 continue; 4314 4315 // Don't destroy incomplete or zero-length arrays. 4316 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType())) 4317 continue; 4318 4319 QualType FieldType = Context.getBaseElementType(Field->getType()); 4320 4321 const RecordType* RT = FieldType->getAs<RecordType>(); 4322 if (!RT) 4323 continue; 4324 4325 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4326 if (FieldClassDecl->isInvalidDecl()) 4327 continue; 4328 if (FieldClassDecl->hasIrrelevantDestructor()) 4329 continue; 4330 // The destructor for an implicit anonymous union member is never invoked. 4331 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion()) 4332 continue; 4333 4334 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl); 4335 assert(Dtor && "No dtor found for FieldClassDecl!"); 4336 CheckDestructorAccess(Field->getLocation(), Dtor, 4337 PDiag(diag::err_access_dtor_field) 4338 << Field->getDeclName() 4339 << FieldType); 4340 4341 MarkFunctionReferenced(Location, Dtor); 4342 DiagnoseUseOfDecl(Dtor, Location); 4343 } 4344 4345 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases; 4346 4347 // Bases. 4348 for (const auto &Base : ClassDecl->bases()) { 4349 // Bases are always records in a well-formed non-dependent class. 4350 const RecordType *RT = Base.getType()->getAs<RecordType>(); 4351 4352 // Remember direct virtual bases. 4353 if (Base.isVirtual()) 4354 DirectVirtualBases.insert(RT); 4355 4356 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4357 // If our base class is invalid, we probably can't get its dtor anyway. 4358 if (BaseClassDecl->isInvalidDecl()) 4359 continue; 4360 if (BaseClassDecl->hasIrrelevantDestructor()) 4361 continue; 4362 4363 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4364 assert(Dtor && "No dtor found for BaseClassDecl!"); 4365 4366 // FIXME: caret should be on the start of the class name 4367 CheckDestructorAccess(Base.getLocStart(), Dtor, 4368 PDiag(diag::err_access_dtor_base) 4369 << Base.getType() 4370 << Base.getSourceRange(), 4371 Context.getTypeDeclType(ClassDecl)); 4372 4373 MarkFunctionReferenced(Location, Dtor); 4374 DiagnoseUseOfDecl(Dtor, Location); 4375 } 4376 4377 // Virtual bases. 4378 for (const auto &VBase : ClassDecl->vbases()) { 4379 // Bases are always records in a well-formed non-dependent class. 4380 const RecordType *RT = VBase.getType()->castAs<RecordType>(); 4381 4382 // Ignore direct virtual bases. 4383 if (DirectVirtualBases.count(RT)) 4384 continue; 4385 4386 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4387 // If our base class is invalid, we probably can't get its dtor anyway. 4388 if (BaseClassDecl->isInvalidDecl()) 4389 continue; 4390 if (BaseClassDecl->hasIrrelevantDestructor()) 4391 continue; 4392 4393 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4394 assert(Dtor && "No dtor found for BaseClassDecl!"); 4395 if (CheckDestructorAccess( 4396 ClassDecl->getLocation(), Dtor, 4397 PDiag(diag::err_access_dtor_vbase) 4398 << Context.getTypeDeclType(ClassDecl) << VBase.getType(), 4399 Context.getTypeDeclType(ClassDecl)) == 4400 AR_accessible) { 4401 CheckDerivedToBaseConversion( 4402 Context.getTypeDeclType(ClassDecl), VBase.getType(), 4403 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(), 4404 SourceRange(), DeclarationName(), nullptr); 4405 } 4406 4407 MarkFunctionReferenced(Location, Dtor); 4408 DiagnoseUseOfDecl(Dtor, Location); 4409 } 4410 } 4411 4412 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) { 4413 if (!CDtorDecl) 4414 return; 4415 4416 if (CXXConstructorDecl *Constructor 4417 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) { 4418 SetCtorInitializers(Constructor, /*AnyErrors=*/false); 4419 DiagnoseUninitializedFields(*this, Constructor); 4420 } 4421 } 4422 4423 bool Sema::isAbstractType(SourceLocation Loc, QualType T) { 4424 if (!getLangOpts().CPlusPlus) 4425 return false; 4426 4427 const auto *RD = Context.getBaseElementType(T)->getAsCXXRecordDecl(); 4428 if (!RD) 4429 return false; 4430 4431 // FIXME: Per [temp.inst]p1, we are supposed to trigger instantiation of a 4432 // class template specialization here, but doing so breaks a lot of code. 4433 4434 // We can't answer whether something is abstract until it has a 4435 // definition. If it's currently being defined, we'll walk back 4436 // over all the declarations when we have a full definition. 4437 const CXXRecordDecl *Def = RD->getDefinition(); 4438 if (!Def || Def->isBeingDefined()) 4439 return false; 4440 4441 return RD->isAbstract(); 4442 } 4443 4444 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 4445 TypeDiagnoser &Diagnoser) { 4446 if (!isAbstractType(Loc, T)) 4447 return false; 4448 4449 T = Context.getBaseElementType(T); 4450 Diagnoser.diagnose(*this, Loc, T); 4451 DiagnoseAbstractType(T->getAsCXXRecordDecl()); 4452 return true; 4453 } 4454 4455 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) { 4456 // Check if we've already emitted the list of pure virtual functions 4457 // for this class. 4458 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD)) 4459 return; 4460 4461 // If the diagnostic is suppressed, don't emit the notes. We're only 4462 // going to emit them once, so try to attach them to a diagnostic we're 4463 // actually going to show. 4464 if (Diags.isLastDiagnosticIgnored()) 4465 return; 4466 4467 CXXFinalOverriderMap FinalOverriders; 4468 RD->getFinalOverriders(FinalOverriders); 4469 4470 // Keep a set of seen pure methods so we won't diagnose the same method 4471 // more than once. 4472 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods; 4473 4474 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 4475 MEnd = FinalOverriders.end(); 4476 M != MEnd; 4477 ++M) { 4478 for (OverridingMethods::iterator SO = M->second.begin(), 4479 SOEnd = M->second.end(); 4480 SO != SOEnd; ++SO) { 4481 // C++ [class.abstract]p4: 4482 // A class is abstract if it contains or inherits at least one 4483 // pure virtual function for which the final overrider is pure 4484 // virtual. 4485 4486 // 4487 if (SO->second.size() != 1) 4488 continue; 4489 4490 if (!SO->second.front().Method->isPure()) 4491 continue; 4492 4493 if (!SeenPureMethods.insert(SO->second.front().Method).second) 4494 continue; 4495 4496 Diag(SO->second.front().Method->getLocation(), 4497 diag::note_pure_virtual_function) 4498 << SO->second.front().Method->getDeclName() << RD->getDeclName(); 4499 } 4500 } 4501 4502 if (!PureVirtualClassDiagSet) 4503 PureVirtualClassDiagSet.reset(new RecordDeclSetTy); 4504 PureVirtualClassDiagSet->insert(RD); 4505 } 4506 4507 namespace { 4508 struct AbstractUsageInfo { 4509 Sema &S; 4510 CXXRecordDecl *Record; 4511 CanQualType AbstractType; 4512 bool Invalid; 4513 4514 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record) 4515 : S(S), Record(Record), 4516 AbstractType(S.Context.getCanonicalType( 4517 S.Context.getTypeDeclType(Record))), 4518 Invalid(false) {} 4519 4520 void DiagnoseAbstractType() { 4521 if (Invalid) return; 4522 S.DiagnoseAbstractType(Record); 4523 Invalid = true; 4524 } 4525 4526 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 4527 }; 4528 4529 struct CheckAbstractUsage { 4530 AbstractUsageInfo &Info; 4531 const NamedDecl *Ctx; 4532 4533 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx) 4534 : Info(Info), Ctx(Ctx) {} 4535 4536 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4537 switch (TL.getTypeLocClass()) { 4538 #define ABSTRACT_TYPELOC(CLASS, PARENT) 4539 #define TYPELOC(CLASS, PARENT) \ 4540 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break; 4541 #include "clang/AST/TypeLocNodes.def" 4542 } 4543 } 4544 4545 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4546 Visit(TL.getReturnLoc(), Sema::AbstractReturnType); 4547 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) { 4548 if (!TL.getParam(I)) 4549 continue; 4550 4551 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo(); 4552 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); 4553 } 4554 } 4555 4556 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4557 Visit(TL.getElementLoc(), Sema::AbstractArrayType); 4558 } 4559 4560 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4561 // Visit the type parameters from a permissive context. 4562 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { 4563 TemplateArgumentLoc TAL = TL.getArgLoc(I); 4564 if (TAL.getArgument().getKind() == TemplateArgument::Type) 4565 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) 4566 Visit(TSI->getTypeLoc(), Sema::AbstractNone); 4567 // TODO: other template argument types? 4568 } 4569 } 4570 4571 // Visit pointee types from a permissive context. 4572 #define CheckPolymorphic(Type) \ 4573 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \ 4574 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \ 4575 } 4576 CheckPolymorphic(PointerTypeLoc) 4577 CheckPolymorphic(ReferenceTypeLoc) 4578 CheckPolymorphic(MemberPointerTypeLoc) 4579 CheckPolymorphic(BlockPointerTypeLoc) 4580 CheckPolymorphic(AtomicTypeLoc) 4581 4582 /// Handle all the types we haven't given a more specific 4583 /// implementation for above. 4584 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4585 // Every other kind of type that we haven't called out already 4586 // that has an inner type is either (1) sugar or (2) contains that 4587 // inner type in some way as a subobject. 4588 if (TypeLoc Next = TL.getNextTypeLoc()) 4589 return Visit(Next, Sel); 4590 4591 // If there's no inner type and we're in a permissive context, 4592 // don't diagnose. 4593 if (Sel == Sema::AbstractNone) return; 4594 4595 // Check whether the type matches the abstract type. 4596 QualType T = TL.getType(); 4597 if (T->isArrayType()) { 4598 Sel = Sema::AbstractArrayType; 4599 T = Info.S.Context.getBaseElementType(T); 4600 } 4601 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType(); 4602 if (CT != Info.AbstractType) return; 4603 4604 // It matched; do some magic. 4605 if (Sel == Sema::AbstractArrayType) { 4606 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type) 4607 << T << TL.getSourceRange(); 4608 } else { 4609 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl) 4610 << Sel << T << TL.getSourceRange(); 4611 } 4612 Info.DiagnoseAbstractType(); 4613 } 4614 }; 4615 4616 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, 4617 Sema::AbstractDiagSelID Sel) { 4618 CheckAbstractUsage(*this, D).Visit(TL, Sel); 4619 } 4620 4621 } 4622 4623 /// Check for invalid uses of an abstract type in a method declaration. 4624 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4625 CXXMethodDecl *MD) { 4626 // No need to do the check on definitions, which require that 4627 // the return/param types be complete. 4628 if (MD->doesThisDeclarationHaveABody()) 4629 return; 4630 4631 // For safety's sake, just ignore it if we don't have type source 4632 // information. This should never happen for non-implicit methods, 4633 // but... 4634 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) 4635 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); 4636 } 4637 4638 /// Check for invalid uses of an abstract type within a class definition. 4639 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4640 CXXRecordDecl *RD) { 4641 for (auto *D : RD->decls()) { 4642 if (D->isImplicit()) continue; 4643 4644 // Methods and method templates. 4645 if (isa<CXXMethodDecl>(D)) { 4646 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D)); 4647 } else if (isa<FunctionTemplateDecl>(D)) { 4648 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl(); 4649 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD)); 4650 4651 // Fields and static variables. 4652 } else if (isa<FieldDecl>(D)) { 4653 FieldDecl *FD = cast<FieldDecl>(D); 4654 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) 4655 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); 4656 } else if (isa<VarDecl>(D)) { 4657 VarDecl *VD = cast<VarDecl>(D); 4658 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) 4659 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); 4660 4661 // Nested classes and class templates. 4662 } else if (isa<CXXRecordDecl>(D)) { 4663 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D)); 4664 } else if (isa<ClassTemplateDecl>(D)) { 4665 CheckAbstractClassUsage(Info, 4666 cast<ClassTemplateDecl>(D)->getTemplatedDecl()); 4667 } 4668 } 4669 } 4670 4671 static void ReferenceDllExportedMethods(Sema &S, CXXRecordDecl *Class) { 4672 Attr *ClassAttr = getDLLAttr(Class); 4673 if (!ClassAttr) 4674 return; 4675 4676 assert(ClassAttr->getKind() == attr::DLLExport); 4677 4678 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 4679 4680 if (TSK == TSK_ExplicitInstantiationDeclaration) 4681 // Don't go any further if this is just an explicit instantiation 4682 // declaration. 4683 return; 4684 4685 for (Decl *Member : Class->decls()) { 4686 auto *MD = dyn_cast<CXXMethodDecl>(Member); 4687 if (!MD) 4688 continue; 4689 4690 if (Member->getAttr<DLLExportAttr>()) { 4691 if (MD->isUserProvided()) { 4692 // Instantiate non-default class member functions ... 4693 4694 // .. except for certain kinds of template specializations. 4695 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited()) 4696 continue; 4697 4698 S.MarkFunctionReferenced(Class->getLocation(), MD); 4699 4700 // The function will be passed to the consumer when its definition is 4701 // encountered. 4702 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() || 4703 MD->isCopyAssignmentOperator() || 4704 MD->isMoveAssignmentOperator()) { 4705 // Synthesize and instantiate non-trivial implicit methods, explicitly 4706 // defaulted methods, and the copy and move assignment operators. The 4707 // latter are exported even if they are trivial, because the address of 4708 // an operator can be taken and should compare equal accross libraries. 4709 DiagnosticErrorTrap Trap(S.Diags); 4710 S.MarkFunctionReferenced(Class->getLocation(), MD); 4711 if (Trap.hasErrorOccurred()) { 4712 S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class) 4713 << Class->getName() << !S.getLangOpts().CPlusPlus11; 4714 break; 4715 } 4716 4717 // There is no later point when we will see the definition of this 4718 // function, so pass it to the consumer now. 4719 S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD)); 4720 } 4721 } 4722 } 4723 } 4724 4725 /// \brief Check class-level dllimport/dllexport attribute. 4726 void Sema::checkClassLevelDLLAttribute(CXXRecordDecl *Class) { 4727 Attr *ClassAttr = getDLLAttr(Class); 4728 4729 // MSVC inherits DLL attributes to partial class template specializations. 4730 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) { 4731 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) { 4732 if (Attr *TemplateAttr = 4733 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) { 4734 auto *A = cast<InheritableAttr>(TemplateAttr->clone(getASTContext())); 4735 A->setInherited(true); 4736 ClassAttr = A; 4737 } 4738 } 4739 } 4740 4741 if (!ClassAttr) 4742 return; 4743 4744 if (!Class->isExternallyVisible()) { 4745 Diag(Class->getLocation(), diag::err_attribute_dll_not_extern) 4746 << Class << ClassAttr; 4747 return; 4748 } 4749 4750 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 4751 !ClassAttr->isInherited()) { 4752 // Diagnose dll attributes on members of class with dll attribute. 4753 for (Decl *Member : Class->decls()) { 4754 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member)) 4755 continue; 4756 InheritableAttr *MemberAttr = getDLLAttr(Member); 4757 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl()) 4758 continue; 4759 4760 Diag(MemberAttr->getLocation(), 4761 diag::err_attribute_dll_member_of_dll_class) 4762 << MemberAttr << ClassAttr; 4763 Diag(ClassAttr->getLocation(), diag::note_previous_attribute); 4764 Member->setInvalidDecl(); 4765 } 4766 } 4767 4768 if (Class->getDescribedClassTemplate()) 4769 // Don't inherit dll attribute until the template is instantiated. 4770 return; 4771 4772 // The class is either imported or exported. 4773 const bool ClassExported = ClassAttr->getKind() == attr::DLLExport; 4774 const bool ClassImported = !ClassExported; 4775 4776 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 4777 4778 // Ignore explicit dllexport on explicit class template instantiation declarations. 4779 if (ClassExported && !ClassAttr->isInherited() && 4780 TSK == TSK_ExplicitInstantiationDeclaration) { 4781 Class->dropAttr<DLLExportAttr>(); 4782 return; 4783 } 4784 4785 // Force declaration of implicit members so they can inherit the attribute. 4786 ForceDeclarationOfImplicitMembers(Class); 4787 4788 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't 4789 // seem to be true in practice? 4790 4791 for (Decl *Member : Class->decls()) { 4792 VarDecl *VD = dyn_cast<VarDecl>(Member); 4793 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member); 4794 4795 // Only methods and static fields inherit the attributes. 4796 if (!VD && !MD) 4797 continue; 4798 4799 if (MD) { 4800 // Don't process deleted methods. 4801 if (MD->isDeleted()) 4802 continue; 4803 4804 if (MD->isInlined()) { 4805 // MinGW does not import or export inline methods. 4806 if (!Context.getTargetInfo().getCXXABI().isMicrosoft()) 4807 continue; 4808 4809 // MSVC versions before 2015 don't export the move assignment operators, 4810 // so don't attempt to import them if we have a definition. 4811 if (ClassImported && MD->isMoveAssignmentOperator() && 4812 !getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015)) 4813 continue; 4814 } 4815 } 4816 4817 if (!cast<NamedDecl>(Member)->isExternallyVisible()) 4818 continue; 4819 4820 if (!getDLLAttr(Member)) { 4821 auto *NewAttr = 4822 cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 4823 NewAttr->setInherited(true); 4824 Member->addAttr(NewAttr); 4825 } 4826 } 4827 4828 if (ClassExported) 4829 DelayedDllExportClasses.push_back(Class); 4830 } 4831 4832 /// \brief Perform propagation of DLL attributes from a derived class to a 4833 /// templated base class for MS compatibility. 4834 void Sema::propagateDLLAttrToBaseClassTemplate( 4835 CXXRecordDecl *Class, Attr *ClassAttr, 4836 ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) { 4837 if (getDLLAttr( 4838 BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) { 4839 // If the base class template has a DLL attribute, don't try to change it. 4840 return; 4841 } 4842 4843 auto TSK = BaseTemplateSpec->getSpecializationKind(); 4844 if (!getDLLAttr(BaseTemplateSpec) && 4845 (TSK == TSK_Undeclared || TSK == TSK_ExplicitInstantiationDeclaration || 4846 TSK == TSK_ImplicitInstantiation)) { 4847 // The template hasn't been instantiated yet (or it has, but only as an 4848 // explicit instantiation declaration or implicit instantiation, which means 4849 // we haven't codegenned any members yet), so propagate the attribute. 4850 auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(getASTContext())); 4851 NewAttr->setInherited(true); 4852 BaseTemplateSpec->addAttr(NewAttr); 4853 4854 // If the template is already instantiated, checkDLLAttributeRedeclaration() 4855 // needs to be run again to work see the new attribute. Otherwise this will 4856 // get run whenever the template is instantiated. 4857 if (TSK != TSK_Undeclared) 4858 checkClassLevelDLLAttribute(BaseTemplateSpec); 4859 4860 return; 4861 } 4862 4863 if (getDLLAttr(BaseTemplateSpec)) { 4864 // The template has already been specialized or instantiated with an 4865 // attribute, explicitly or through propagation. We should not try to change 4866 // it. 4867 return; 4868 } 4869 4870 // The template was previously instantiated or explicitly specialized without 4871 // a dll attribute, It's too late for us to add an attribute, so warn that 4872 // this is unsupported. 4873 Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class) 4874 << BaseTemplateSpec->isExplicitSpecialization(); 4875 Diag(ClassAttr->getLocation(), diag::note_attribute); 4876 if (BaseTemplateSpec->isExplicitSpecialization()) { 4877 Diag(BaseTemplateSpec->getLocation(), 4878 diag::note_template_class_explicit_specialization_was_here) 4879 << BaseTemplateSpec; 4880 } else { 4881 Diag(BaseTemplateSpec->getPointOfInstantiation(), 4882 diag::note_template_class_instantiation_was_here) 4883 << BaseTemplateSpec; 4884 } 4885 } 4886 4887 /// \brief Perform semantic checks on a class definition that has been 4888 /// completing, introducing implicitly-declared members, checking for 4889 /// abstract types, etc. 4890 void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) { 4891 if (!Record) 4892 return; 4893 4894 if (Record->isAbstract() && !Record->isInvalidDecl()) { 4895 AbstractUsageInfo Info(*this, Record); 4896 CheckAbstractClassUsage(Info, Record); 4897 } 4898 4899 // If this is not an aggregate type and has no user-declared constructor, 4900 // complain about any non-static data members of reference or const scalar 4901 // type, since they will never get initializers. 4902 if (!Record->isInvalidDecl() && !Record->isDependentType() && 4903 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() && 4904 !Record->isLambda()) { 4905 bool Complained = false; 4906 for (const auto *F : Record->fields()) { 4907 if (F->hasInClassInitializer() || F->isUnnamedBitfield()) 4908 continue; 4909 4910 if (F->getType()->isReferenceType() || 4911 (F->getType().isConstQualified() && F->getType()->isScalarType())) { 4912 if (!Complained) { 4913 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst) 4914 << Record->getTagKind() << Record; 4915 Complained = true; 4916 } 4917 4918 Diag(F->getLocation(), diag::note_refconst_member_not_initialized) 4919 << F->getType()->isReferenceType() 4920 << F->getDeclName(); 4921 } 4922 } 4923 } 4924 4925 if (Record->getIdentifier()) { 4926 // C++ [class.mem]p13: 4927 // If T is the name of a class, then each of the following shall have a 4928 // name different from T: 4929 // - every member of every anonymous union that is a member of class T. 4930 // 4931 // C++ [class.mem]p14: 4932 // In addition, if class T has a user-declared constructor (12.1), every 4933 // non-static data member of class T shall have a name different from T. 4934 DeclContext::lookup_result R = Record->lookup(Record->getDeclName()); 4935 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 4936 ++I) { 4937 NamedDecl *D = *I; 4938 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) || 4939 isa<IndirectFieldDecl>(D)) { 4940 Diag(D->getLocation(), diag::err_member_name_of_class) 4941 << D->getDeclName(); 4942 break; 4943 } 4944 } 4945 } 4946 4947 // Warn if the class has virtual methods but non-virtual public destructor. 4948 if (Record->isPolymorphic() && !Record->isDependentType()) { 4949 CXXDestructorDecl *dtor = Record->getDestructor(); 4950 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) && 4951 !Record->hasAttr<FinalAttr>()) 4952 Diag(dtor ? dtor->getLocation() : Record->getLocation(), 4953 diag::warn_non_virtual_dtor) << Context.getRecordType(Record); 4954 } 4955 4956 if (Record->isAbstract()) { 4957 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) { 4958 Diag(Record->getLocation(), diag::warn_abstract_final_class) 4959 << FA->isSpelledAsSealed(); 4960 DiagnoseAbstractType(Record); 4961 } 4962 } 4963 4964 bool HasMethodWithOverrideControl = false, 4965 HasOverridingMethodWithoutOverrideControl = false; 4966 if (!Record->isDependentType()) { 4967 for (auto *M : Record->methods()) { 4968 // See if a method overloads virtual methods in a base 4969 // class without overriding any. 4970 if (!M->isStatic()) 4971 DiagnoseHiddenVirtualMethods(M); 4972 if (M->hasAttr<OverrideAttr>()) 4973 HasMethodWithOverrideControl = true; 4974 else if (M->size_overridden_methods() > 0) 4975 HasOverridingMethodWithoutOverrideControl = true; 4976 // Check whether the explicitly-defaulted special members are valid. 4977 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted()) 4978 CheckExplicitlyDefaultedSpecialMember(M); 4979 4980 // For an explicitly defaulted or deleted special member, we defer 4981 // determining triviality until the class is complete. That time is now! 4982 if (!M->isImplicit() && !M->isUserProvided()) { 4983 CXXSpecialMember CSM = getSpecialMember(M); 4984 if (CSM != CXXInvalid) { 4985 M->setTrivial(SpecialMemberIsTrivial(M, CSM)); 4986 4987 // Inform the class that we've finished declaring this member. 4988 Record->finishedDefaultedOrDeletedMember(M); 4989 } 4990 } 4991 } 4992 } 4993 4994 if (HasMethodWithOverrideControl && 4995 HasOverridingMethodWithoutOverrideControl) { 4996 // At least one method has the 'override' control declared. 4997 // Diagnose all other overridden methods which do not have 'override' specified on them. 4998 for (auto *M : Record->methods()) 4999 DiagnoseAbsenceOfOverrideControl(M); 5000 } 5001 5002 // ms_struct is a request to use the same ABI rules as MSVC. Check 5003 // whether this class uses any C++ features that are implemented 5004 // completely differently in MSVC, and if so, emit a diagnostic. 5005 // That diagnostic defaults to an error, but we allow projects to 5006 // map it down to a warning (or ignore it). It's a fairly common 5007 // practice among users of the ms_struct pragma to mass-annotate 5008 // headers, sweeping up a bunch of types that the project doesn't 5009 // really rely on MSVC-compatible layout for. We must therefore 5010 // support "ms_struct except for C++ stuff" as a secondary ABI. 5011 if (Record->isMsStruct(Context) && 5012 (Record->isPolymorphic() || Record->getNumBases())) { 5013 Diag(Record->getLocation(), diag::warn_cxx_ms_struct); 5014 } 5015 5016 // Declare inheriting constructors. We do this eagerly here because: 5017 // - The standard requires an eager diagnostic for conflicting inheriting 5018 // constructors from different classes. 5019 // - The lazy declaration of the other implicit constructors is so as to not 5020 // waste space and performance on classes that are not meant to be 5021 // instantiated (e.g. meta-functions). This doesn't apply to classes that 5022 // have inheriting constructors. 5023 DeclareInheritingConstructors(Record); 5024 5025 checkClassLevelDLLAttribute(Record); 5026 } 5027 5028 /// Look up the special member function that would be called by a special 5029 /// member function for a subobject of class type. 5030 /// 5031 /// \param Class The class type of the subobject. 5032 /// \param CSM The kind of special member function. 5033 /// \param FieldQuals If the subobject is a field, its cv-qualifiers. 5034 /// \param ConstRHS True if this is a copy operation with a const object 5035 /// on its RHS, that is, if the argument to the outer special member 5036 /// function is 'const' and this is not a field marked 'mutable'. 5037 static Sema::SpecialMemberOverloadResult *lookupCallFromSpecialMember( 5038 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM, 5039 unsigned FieldQuals, bool ConstRHS) { 5040 unsigned LHSQuals = 0; 5041 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment) 5042 LHSQuals = FieldQuals; 5043 5044 unsigned RHSQuals = FieldQuals; 5045 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor) 5046 RHSQuals = 0; 5047 else if (ConstRHS) 5048 RHSQuals |= Qualifiers::Const; 5049 5050 return S.LookupSpecialMember(Class, CSM, 5051 RHSQuals & Qualifiers::Const, 5052 RHSQuals & Qualifiers::Volatile, 5053 false, 5054 LHSQuals & Qualifiers::Const, 5055 LHSQuals & Qualifiers::Volatile); 5056 } 5057 5058 /// Is the special member function which would be selected to perform the 5059 /// specified operation on the specified class type a constexpr constructor? 5060 static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5061 Sema::CXXSpecialMember CSM, 5062 unsigned Quals, bool ConstRHS) { 5063 Sema::SpecialMemberOverloadResult *SMOR = 5064 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS); 5065 if (!SMOR || !SMOR->getMethod()) 5066 // A constructor we wouldn't select can't be "involved in initializing" 5067 // anything. 5068 return true; 5069 return SMOR->getMethod()->isConstexpr(); 5070 } 5071 5072 /// Determine whether the specified special member function would be constexpr 5073 /// if it were implicitly defined. 5074 static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5075 Sema::CXXSpecialMember CSM, 5076 bool ConstArg) { 5077 if (!S.getLangOpts().CPlusPlus11) 5078 return false; 5079 5080 // C++11 [dcl.constexpr]p4: 5081 // In the definition of a constexpr constructor [...] 5082 bool Ctor = true; 5083 switch (CSM) { 5084 case Sema::CXXDefaultConstructor: 5085 // Since default constructor lookup is essentially trivial (and cannot 5086 // involve, for instance, template instantiation), we compute whether a 5087 // defaulted default constructor is constexpr directly within CXXRecordDecl. 5088 // 5089 // This is important for performance; we need to know whether the default 5090 // constructor is constexpr to determine whether the type is a literal type. 5091 return ClassDecl->defaultedDefaultConstructorIsConstexpr(); 5092 5093 case Sema::CXXCopyConstructor: 5094 case Sema::CXXMoveConstructor: 5095 // For copy or move constructors, we need to perform overload resolution. 5096 break; 5097 5098 case Sema::CXXCopyAssignment: 5099 case Sema::CXXMoveAssignment: 5100 if (!S.getLangOpts().CPlusPlus14) 5101 return false; 5102 // In C++1y, we need to perform overload resolution. 5103 Ctor = false; 5104 break; 5105 5106 case Sema::CXXDestructor: 5107 case Sema::CXXInvalid: 5108 return false; 5109 } 5110 5111 // -- if the class is a non-empty union, or for each non-empty anonymous 5112 // union member of a non-union class, exactly one non-static data member 5113 // shall be initialized; [DR1359] 5114 // 5115 // If we squint, this is guaranteed, since exactly one non-static data member 5116 // will be initialized (if the constructor isn't deleted), we just don't know 5117 // which one. 5118 if (Ctor && ClassDecl->isUnion()) 5119 return true; 5120 5121 // -- the class shall not have any virtual base classes; 5122 if (Ctor && ClassDecl->getNumVBases()) 5123 return false; 5124 5125 // C++1y [class.copy]p26: 5126 // -- [the class] is a literal type, and 5127 if (!Ctor && !ClassDecl->isLiteral()) 5128 return false; 5129 5130 // -- every constructor involved in initializing [...] base class 5131 // sub-objects shall be a constexpr constructor; 5132 // -- the assignment operator selected to copy/move each direct base 5133 // class is a constexpr function, and 5134 for (const auto &B : ClassDecl->bases()) { 5135 const RecordType *BaseType = B.getType()->getAs<RecordType>(); 5136 if (!BaseType) continue; 5137 5138 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 5139 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg)) 5140 return false; 5141 } 5142 5143 // -- every constructor involved in initializing non-static data members 5144 // [...] shall be a constexpr constructor; 5145 // -- every non-static data member and base class sub-object shall be 5146 // initialized 5147 // -- for each non-static data member of X that is of class type (or array 5148 // thereof), the assignment operator selected to copy/move that member is 5149 // a constexpr function 5150 for (const auto *F : ClassDecl->fields()) { 5151 if (F->isInvalidDecl()) 5152 continue; 5153 QualType BaseType = S.Context.getBaseElementType(F->getType()); 5154 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 5155 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 5156 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, 5157 BaseType.getCVRQualifiers(), 5158 ConstArg && !F->isMutable())) 5159 return false; 5160 } 5161 } 5162 5163 // All OK, it's constexpr! 5164 return true; 5165 } 5166 5167 static Sema::ImplicitExceptionSpecification 5168 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) { 5169 switch (S.getSpecialMember(MD)) { 5170 case Sema::CXXDefaultConstructor: 5171 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD); 5172 case Sema::CXXCopyConstructor: 5173 return S.ComputeDefaultedCopyCtorExceptionSpec(MD); 5174 case Sema::CXXCopyAssignment: 5175 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD); 5176 case Sema::CXXMoveConstructor: 5177 return S.ComputeDefaultedMoveCtorExceptionSpec(MD); 5178 case Sema::CXXMoveAssignment: 5179 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD); 5180 case Sema::CXXDestructor: 5181 return S.ComputeDefaultedDtorExceptionSpec(MD); 5182 case Sema::CXXInvalid: 5183 break; 5184 } 5185 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() && 5186 "only special members have implicit exception specs"); 5187 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD)); 5188 } 5189 5190 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S, 5191 CXXMethodDecl *MD) { 5192 FunctionProtoType::ExtProtoInfo EPI; 5193 5194 // Build an exception specification pointing back at this member. 5195 EPI.ExceptionSpec.Type = EST_Unevaluated; 5196 EPI.ExceptionSpec.SourceDecl = MD; 5197 5198 // Set the calling convention to the default for C++ instance methods. 5199 EPI.ExtInfo = EPI.ExtInfo.withCallingConv( 5200 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5201 /*IsCXXMethod=*/true)); 5202 return EPI; 5203 } 5204 5205 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) { 5206 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); 5207 if (FPT->getExceptionSpecType() != EST_Unevaluated) 5208 return; 5209 5210 // Evaluate the exception specification. 5211 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec(); 5212 5213 // Update the type of the special member to use it. 5214 UpdateExceptionSpec(MD, ESI); 5215 5216 // A user-provided destructor can be defined outside the class. When that 5217 // happens, be sure to update the exception specification on both 5218 // declarations. 5219 const FunctionProtoType *CanonicalFPT = 5220 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>(); 5221 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) 5222 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI); 5223 } 5224 5225 void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) { 5226 CXXRecordDecl *RD = MD->getParent(); 5227 CXXSpecialMember CSM = getSpecialMember(MD); 5228 5229 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid && 5230 "not an explicitly-defaulted special member"); 5231 5232 // Whether this was the first-declared instance of the constructor. 5233 // This affects whether we implicitly add an exception spec and constexpr. 5234 bool First = MD == MD->getCanonicalDecl(); 5235 5236 bool HadError = false; 5237 5238 // C++11 [dcl.fct.def.default]p1: 5239 // A function that is explicitly defaulted shall 5240 // -- be a special member function (checked elsewhere), 5241 // -- have the same type (except for ref-qualifiers, and except that a 5242 // copy operation can take a non-const reference) as an implicit 5243 // declaration, and 5244 // -- not have default arguments. 5245 unsigned ExpectedParams = 1; 5246 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor) 5247 ExpectedParams = 0; 5248 if (MD->getNumParams() != ExpectedParams) { 5249 // This also checks for default arguments: a copy or move constructor with a 5250 // default argument is classified as a default constructor, and assignment 5251 // operations and destructors can't have default arguments. 5252 Diag(MD->getLocation(), diag::err_defaulted_special_member_params) 5253 << CSM << MD->getSourceRange(); 5254 HadError = true; 5255 } else if (MD->isVariadic()) { 5256 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic) 5257 << CSM << MD->getSourceRange(); 5258 HadError = true; 5259 } 5260 5261 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>(); 5262 5263 bool CanHaveConstParam = false; 5264 if (CSM == CXXCopyConstructor) 5265 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam(); 5266 else if (CSM == CXXCopyAssignment) 5267 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam(); 5268 5269 QualType ReturnType = Context.VoidTy; 5270 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) { 5271 // Check for return type matching. 5272 ReturnType = Type->getReturnType(); 5273 QualType ExpectedReturnType = 5274 Context.getLValueReferenceType(Context.getTypeDeclType(RD)); 5275 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) { 5276 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type) 5277 << (CSM == CXXMoveAssignment) << ExpectedReturnType; 5278 HadError = true; 5279 } 5280 5281 // A defaulted special member cannot have cv-qualifiers. 5282 if (Type->getTypeQuals()) { 5283 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals) 5284 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14; 5285 HadError = true; 5286 } 5287 } 5288 5289 // Check for parameter type matching. 5290 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType(); 5291 bool HasConstParam = false; 5292 if (ExpectedParams && ArgType->isReferenceType()) { 5293 // Argument must be reference to possibly-const T. 5294 QualType ReferentType = ArgType->getPointeeType(); 5295 HasConstParam = ReferentType.isConstQualified(); 5296 5297 if (ReferentType.isVolatileQualified()) { 5298 Diag(MD->getLocation(), 5299 diag::err_defaulted_special_member_volatile_param) << CSM; 5300 HadError = true; 5301 } 5302 5303 if (HasConstParam && !CanHaveConstParam) { 5304 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) { 5305 Diag(MD->getLocation(), 5306 diag::err_defaulted_special_member_copy_const_param) 5307 << (CSM == CXXCopyAssignment); 5308 // FIXME: Explain why this special member can't be const. 5309 } else { 5310 Diag(MD->getLocation(), 5311 diag::err_defaulted_special_member_move_const_param) 5312 << (CSM == CXXMoveAssignment); 5313 } 5314 HadError = true; 5315 } 5316 } else if (ExpectedParams) { 5317 // A copy assignment operator can take its argument by value, but a 5318 // defaulted one cannot. 5319 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument"); 5320 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref); 5321 HadError = true; 5322 } 5323 5324 // C++11 [dcl.fct.def.default]p2: 5325 // An explicitly-defaulted function may be declared constexpr only if it 5326 // would have been implicitly declared as constexpr, 5327 // Do not apply this rule to members of class templates, since core issue 1358 5328 // makes such functions always instantiate to constexpr functions. For 5329 // functions which cannot be constexpr (for non-constructors in C++11 and for 5330 // destructors in C++1y), this is checked elsewhere. 5331 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM, 5332 HasConstParam); 5333 if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD) 5334 : isa<CXXConstructorDecl>(MD)) && 5335 MD->isConstexpr() && !Constexpr && 5336 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) { 5337 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM; 5338 // FIXME: Explain why the special member can't be constexpr. 5339 HadError = true; 5340 } 5341 5342 // and may have an explicit exception-specification only if it is compatible 5343 // with the exception-specification on the implicit declaration. 5344 if (Type->hasExceptionSpec()) { 5345 // Delay the check if this is the first declaration of the special member, 5346 // since we may not have parsed some necessary in-class initializers yet. 5347 if (First) { 5348 // If the exception specification needs to be instantiated, do so now, 5349 // before we clobber it with an EST_Unevaluated specification below. 5350 if (Type->getExceptionSpecType() == EST_Uninstantiated) { 5351 InstantiateExceptionSpec(MD->getLocStart(), MD); 5352 Type = MD->getType()->getAs<FunctionProtoType>(); 5353 } 5354 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type)); 5355 } else 5356 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type); 5357 } 5358 5359 // If a function is explicitly defaulted on its first declaration, 5360 if (First) { 5361 // -- it is implicitly considered to be constexpr if the implicit 5362 // definition would be, 5363 MD->setConstexpr(Constexpr); 5364 5365 // -- it is implicitly considered to have the same exception-specification 5366 // as if it had been implicitly declared, 5367 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo(); 5368 EPI.ExceptionSpec.Type = EST_Unevaluated; 5369 EPI.ExceptionSpec.SourceDecl = MD; 5370 MD->setType(Context.getFunctionType(ReturnType, 5371 llvm::makeArrayRef(&ArgType, 5372 ExpectedParams), 5373 EPI)); 5374 } 5375 5376 if (ShouldDeleteSpecialMember(MD, CSM)) { 5377 if (First) { 5378 SetDeclDeleted(MD, MD->getLocation()); 5379 } else { 5380 // C++11 [dcl.fct.def.default]p4: 5381 // [For a] user-provided explicitly-defaulted function [...] if such a 5382 // function is implicitly defined as deleted, the program is ill-formed. 5383 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM; 5384 ShouldDeleteSpecialMember(MD, CSM, /*Diagnose*/true); 5385 HadError = true; 5386 } 5387 } 5388 5389 if (HadError) 5390 MD->setInvalidDecl(); 5391 } 5392 5393 /// Check whether the exception specification provided for an 5394 /// explicitly-defaulted special member matches the exception specification 5395 /// that would have been generated for an implicit special member, per 5396 /// C++11 [dcl.fct.def.default]p2. 5397 void Sema::CheckExplicitlyDefaultedMemberExceptionSpec( 5398 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) { 5399 // If the exception specification was explicitly specified but hadn't been 5400 // parsed when the method was defaulted, grab it now. 5401 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed) 5402 SpecifiedType = 5403 MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>(); 5404 5405 // Compute the implicit exception specification. 5406 CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5407 /*IsCXXMethod=*/true); 5408 FunctionProtoType::ExtProtoInfo EPI(CC); 5409 EPI.ExceptionSpec = computeImplicitExceptionSpec(*this, MD->getLocation(), MD) 5410 .getExceptionSpec(); 5411 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>( 5412 Context.getFunctionType(Context.VoidTy, None, EPI)); 5413 5414 // Ensure that it matches. 5415 CheckEquivalentExceptionSpec( 5416 PDiag(diag::err_incorrect_defaulted_exception_spec) 5417 << getSpecialMember(MD), PDiag(), 5418 ImplicitType, SourceLocation(), 5419 SpecifiedType, MD->getLocation()); 5420 } 5421 5422 void Sema::CheckDelayedMemberExceptionSpecs() { 5423 decltype(DelayedExceptionSpecChecks) Checks; 5424 decltype(DelayedDefaultedMemberExceptionSpecs) Specs; 5425 5426 std::swap(Checks, DelayedExceptionSpecChecks); 5427 std::swap(Specs, DelayedDefaultedMemberExceptionSpecs); 5428 5429 // Perform any deferred checking of exception specifications for virtual 5430 // destructors. 5431 for (auto &Check : Checks) 5432 CheckOverridingFunctionExceptionSpec(Check.first, Check.second); 5433 5434 // Check that any explicitly-defaulted methods have exception specifications 5435 // compatible with their implicit exception specifications. 5436 for (auto &Spec : Specs) 5437 CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second); 5438 } 5439 5440 namespace { 5441 struct SpecialMemberDeletionInfo { 5442 Sema &S; 5443 CXXMethodDecl *MD; 5444 Sema::CXXSpecialMember CSM; 5445 bool Diagnose; 5446 5447 // Properties of the special member, computed for convenience. 5448 bool IsConstructor, IsAssignment, IsMove, ConstArg; 5449 SourceLocation Loc; 5450 5451 bool AllFieldsAreConst; 5452 5453 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD, 5454 Sema::CXXSpecialMember CSM, bool Diagnose) 5455 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose), 5456 IsConstructor(false), IsAssignment(false), IsMove(false), 5457 ConstArg(false), Loc(MD->getLocation()), 5458 AllFieldsAreConst(true) { 5459 switch (CSM) { 5460 case Sema::CXXDefaultConstructor: 5461 case Sema::CXXCopyConstructor: 5462 IsConstructor = true; 5463 break; 5464 case Sema::CXXMoveConstructor: 5465 IsConstructor = true; 5466 IsMove = true; 5467 break; 5468 case Sema::CXXCopyAssignment: 5469 IsAssignment = true; 5470 break; 5471 case Sema::CXXMoveAssignment: 5472 IsAssignment = true; 5473 IsMove = true; 5474 break; 5475 case Sema::CXXDestructor: 5476 break; 5477 case Sema::CXXInvalid: 5478 llvm_unreachable("invalid special member kind"); 5479 } 5480 5481 if (MD->getNumParams()) { 5482 if (const ReferenceType *RT = 5483 MD->getParamDecl(0)->getType()->getAs<ReferenceType>()) 5484 ConstArg = RT->getPointeeType().isConstQualified(); 5485 } 5486 } 5487 5488 bool inUnion() const { return MD->getParent()->isUnion(); } 5489 5490 /// Look up the corresponding special member in the given class. 5491 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class, 5492 unsigned Quals, bool IsMutable) { 5493 return lookupCallFromSpecialMember(S, Class, CSM, Quals, 5494 ConstArg && !IsMutable); 5495 } 5496 5497 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject; 5498 5499 bool shouldDeleteForBase(CXXBaseSpecifier *Base); 5500 bool shouldDeleteForField(FieldDecl *FD); 5501 bool shouldDeleteForAllConstMembers(); 5502 5503 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj, 5504 unsigned Quals); 5505 bool shouldDeleteForSubobjectCall(Subobject Subobj, 5506 Sema::SpecialMemberOverloadResult *SMOR, 5507 bool IsDtorCallInCtor); 5508 5509 bool isAccessible(Subobject Subobj, CXXMethodDecl *D); 5510 }; 5511 } 5512 5513 /// Is the given special member inaccessible when used on the given 5514 /// sub-object. 5515 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj, 5516 CXXMethodDecl *target) { 5517 /// If we're operating on a base class, the object type is the 5518 /// type of this special member. 5519 QualType objectTy; 5520 AccessSpecifier access = target->getAccess(); 5521 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) { 5522 objectTy = S.Context.getTypeDeclType(MD->getParent()); 5523 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access); 5524 5525 // If we're operating on a field, the object type is the type of the field. 5526 } else { 5527 objectTy = S.Context.getTypeDeclType(target->getParent()); 5528 } 5529 5530 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy); 5531 } 5532 5533 /// Check whether we should delete a special member due to the implicit 5534 /// definition containing a call to a special member of a subobject. 5535 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall( 5536 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR, 5537 bool IsDtorCallInCtor) { 5538 CXXMethodDecl *Decl = SMOR->getMethod(); 5539 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5540 5541 int DiagKind = -1; 5542 5543 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted) 5544 DiagKind = !Decl ? 0 : 1; 5545 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5546 DiagKind = 2; 5547 else if (!isAccessible(Subobj, Decl)) 5548 DiagKind = 3; 5549 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() && 5550 !Decl->isTrivial()) { 5551 // A member of a union must have a trivial corresponding special member. 5552 // As a weird special case, a destructor call from a union's constructor 5553 // must be accessible and non-deleted, but need not be trivial. Such a 5554 // destructor is never actually called, but is semantically checked as 5555 // if it were. 5556 DiagKind = 4; 5557 } 5558 5559 if (DiagKind == -1) 5560 return false; 5561 5562 if (Diagnose) { 5563 if (Field) { 5564 S.Diag(Field->getLocation(), 5565 diag::note_deleted_special_member_class_subobject) 5566 << CSM << MD->getParent() << /*IsField*/true 5567 << Field << DiagKind << IsDtorCallInCtor; 5568 } else { 5569 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>(); 5570 S.Diag(Base->getLocStart(), 5571 diag::note_deleted_special_member_class_subobject) 5572 << CSM << MD->getParent() << /*IsField*/false 5573 << Base->getType() << DiagKind << IsDtorCallInCtor; 5574 } 5575 5576 if (DiagKind == 1) 5577 S.NoteDeletedFunction(Decl); 5578 // FIXME: Explain inaccessibility if DiagKind == 3. 5579 } 5580 5581 return true; 5582 } 5583 5584 /// Check whether we should delete a special member function due to having a 5585 /// direct or virtual base class or non-static data member of class type M. 5586 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject( 5587 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) { 5588 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5589 bool IsMutable = Field && Field->isMutable(); 5590 5591 // C++11 [class.ctor]p5: 5592 // -- any direct or virtual base class, or non-static data member with no 5593 // brace-or-equal-initializer, has class type M (or array thereof) and 5594 // either M has no default constructor or overload resolution as applied 5595 // to M's default constructor results in an ambiguity or in a function 5596 // that is deleted or inaccessible 5597 // C++11 [class.copy]p11, C++11 [class.copy]p23: 5598 // -- a direct or virtual base class B that cannot be copied/moved because 5599 // overload resolution, as applied to B's corresponding special member, 5600 // results in an ambiguity or a function that is deleted or inaccessible 5601 // from the defaulted special member 5602 // C++11 [class.dtor]p5: 5603 // -- any direct or virtual base class [...] has a type with a destructor 5604 // that is deleted or inaccessible 5605 if (!(CSM == Sema::CXXDefaultConstructor && 5606 Field && Field->hasInClassInitializer()) && 5607 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable), 5608 false)) 5609 return true; 5610 5611 // C++11 [class.ctor]p5, C++11 [class.copy]p11: 5612 // -- any direct or virtual base class or non-static data member has a 5613 // type with a destructor that is deleted or inaccessible 5614 if (IsConstructor) { 5615 Sema::SpecialMemberOverloadResult *SMOR = 5616 S.LookupSpecialMember(Class, Sema::CXXDestructor, 5617 false, false, false, false, false); 5618 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true)) 5619 return true; 5620 } 5621 5622 return false; 5623 } 5624 5625 /// Check whether we should delete a special member function due to the class 5626 /// having a particular direct or virtual base class. 5627 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) { 5628 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl(); 5629 // If program is correct, BaseClass cannot be null, but if it is, the error 5630 // must be reported elsewhere. 5631 return BaseClass && shouldDeleteForClassSubobject(BaseClass, Base, 0); 5632 } 5633 5634 /// Check whether we should delete a special member function due to the class 5635 /// having a particular non-static data member. 5636 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) { 5637 QualType FieldType = S.Context.getBaseElementType(FD->getType()); 5638 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl(); 5639 5640 if (CSM == Sema::CXXDefaultConstructor) { 5641 // For a default constructor, all references must be initialized in-class 5642 // and, if a union, it must have a non-const member. 5643 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) { 5644 if (Diagnose) 5645 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5646 << MD->getParent() << FD << FieldType << /*Reference*/0; 5647 return true; 5648 } 5649 // C++11 [class.ctor]p5: any non-variant non-static data member of 5650 // const-qualified type (or array thereof) with no 5651 // brace-or-equal-initializer does not have a user-provided default 5652 // constructor. 5653 if (!inUnion() && FieldType.isConstQualified() && 5654 !FD->hasInClassInitializer() && 5655 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) { 5656 if (Diagnose) 5657 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5658 << MD->getParent() << FD << FD->getType() << /*Const*/1; 5659 return true; 5660 } 5661 5662 if (inUnion() && !FieldType.isConstQualified()) 5663 AllFieldsAreConst = false; 5664 } else if (CSM == Sema::CXXCopyConstructor) { 5665 // For a copy constructor, data members must not be of rvalue reference 5666 // type. 5667 if (FieldType->isRValueReferenceType()) { 5668 if (Diagnose) 5669 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference) 5670 << MD->getParent() << FD << FieldType; 5671 return true; 5672 } 5673 } else if (IsAssignment) { 5674 // For an assignment operator, data members must not be of reference type. 5675 if (FieldType->isReferenceType()) { 5676 if (Diagnose) 5677 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5678 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0; 5679 return true; 5680 } 5681 if (!FieldRecord && FieldType.isConstQualified()) { 5682 // C++11 [class.copy]p23: 5683 // -- a non-static data member of const non-class type (or array thereof) 5684 if (Diagnose) 5685 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5686 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1; 5687 return true; 5688 } 5689 } 5690 5691 if (FieldRecord) { 5692 // Some additional restrictions exist on the variant members. 5693 if (!inUnion() && FieldRecord->isUnion() && 5694 FieldRecord->isAnonymousStructOrUnion()) { 5695 bool AllVariantFieldsAreConst = true; 5696 5697 // FIXME: Handle anonymous unions declared within anonymous unions. 5698 for (auto *UI : FieldRecord->fields()) { 5699 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType()); 5700 5701 if (!UnionFieldType.isConstQualified()) 5702 AllVariantFieldsAreConst = false; 5703 5704 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl(); 5705 if (UnionFieldRecord && 5706 shouldDeleteForClassSubobject(UnionFieldRecord, UI, 5707 UnionFieldType.getCVRQualifiers())) 5708 return true; 5709 } 5710 5711 // At least one member in each anonymous union must be non-const 5712 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst && 5713 !FieldRecord->field_empty()) { 5714 if (Diagnose) 5715 S.Diag(FieldRecord->getLocation(), 5716 diag::note_deleted_default_ctor_all_const) 5717 << MD->getParent() << /*anonymous union*/1; 5718 return true; 5719 } 5720 5721 // Don't check the implicit member of the anonymous union type. 5722 // This is technically non-conformant, but sanity demands it. 5723 return false; 5724 } 5725 5726 if (shouldDeleteForClassSubobject(FieldRecord, FD, 5727 FieldType.getCVRQualifiers())) 5728 return true; 5729 } 5730 5731 return false; 5732 } 5733 5734 /// C++11 [class.ctor] p5: 5735 /// A defaulted default constructor for a class X is defined as deleted if 5736 /// X is a union and all of its variant members are of const-qualified type. 5737 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() { 5738 // This is a silly definition, because it gives an empty union a deleted 5739 // default constructor. Don't do that. 5740 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst && 5741 !MD->getParent()->field_empty()) { 5742 if (Diagnose) 5743 S.Diag(MD->getParent()->getLocation(), 5744 diag::note_deleted_default_ctor_all_const) 5745 << MD->getParent() << /*not anonymous union*/0; 5746 return true; 5747 } 5748 return false; 5749 } 5750 5751 /// Determine whether a defaulted special member function should be defined as 5752 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11, 5753 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5. 5754 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM, 5755 bool Diagnose) { 5756 if (MD->isInvalidDecl()) 5757 return false; 5758 CXXRecordDecl *RD = MD->getParent(); 5759 assert(!RD->isDependentType() && "do deletion after instantiation"); 5760 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl()) 5761 return false; 5762 5763 // C++11 [expr.lambda.prim]p19: 5764 // The closure type associated with a lambda-expression has a 5765 // deleted (8.4.3) default constructor and a deleted copy 5766 // assignment operator. 5767 if (RD->isLambda() && 5768 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) { 5769 if (Diagnose) 5770 Diag(RD->getLocation(), diag::note_lambda_decl); 5771 return true; 5772 } 5773 5774 // For an anonymous struct or union, the copy and assignment special members 5775 // will never be used, so skip the check. For an anonymous union declared at 5776 // namespace scope, the constructor and destructor are used. 5777 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor && 5778 RD->isAnonymousStructOrUnion()) 5779 return false; 5780 5781 // C++11 [class.copy]p7, p18: 5782 // If the class definition declares a move constructor or move assignment 5783 // operator, an implicitly declared copy constructor or copy assignment 5784 // operator is defined as deleted. 5785 if (MD->isImplicit() && 5786 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) { 5787 CXXMethodDecl *UserDeclaredMove = nullptr; 5788 5789 // In Microsoft mode, a user-declared move only causes the deletion of the 5790 // corresponding copy operation, not both copy operations. 5791 if (RD->hasUserDeclaredMoveConstructor() && 5792 (!getLangOpts().MSVCCompat || CSM == CXXCopyConstructor)) { 5793 if (!Diagnose) return true; 5794 5795 // Find any user-declared move constructor. 5796 for (auto *I : RD->ctors()) { 5797 if (I->isMoveConstructor()) { 5798 UserDeclaredMove = I; 5799 break; 5800 } 5801 } 5802 assert(UserDeclaredMove); 5803 } else if (RD->hasUserDeclaredMoveAssignment() && 5804 (!getLangOpts().MSVCCompat || CSM == CXXCopyAssignment)) { 5805 if (!Diagnose) return true; 5806 5807 // Find any user-declared move assignment operator. 5808 for (auto *I : RD->methods()) { 5809 if (I->isMoveAssignmentOperator()) { 5810 UserDeclaredMove = I; 5811 break; 5812 } 5813 } 5814 assert(UserDeclaredMove); 5815 } 5816 5817 if (UserDeclaredMove) { 5818 Diag(UserDeclaredMove->getLocation(), 5819 diag::note_deleted_copy_user_declared_move) 5820 << (CSM == CXXCopyAssignment) << RD 5821 << UserDeclaredMove->isMoveAssignmentOperator(); 5822 return true; 5823 } 5824 } 5825 5826 // Do access control from the special member function 5827 ContextRAII MethodContext(*this, MD); 5828 5829 // C++11 [class.dtor]p5: 5830 // -- for a virtual destructor, lookup of the non-array deallocation function 5831 // results in an ambiguity or in a function that is deleted or inaccessible 5832 if (CSM == CXXDestructor && MD->isVirtual()) { 5833 FunctionDecl *OperatorDelete = nullptr; 5834 DeclarationName Name = 5835 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 5836 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name, 5837 OperatorDelete, false)) { 5838 if (Diagnose) 5839 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete); 5840 return true; 5841 } 5842 } 5843 5844 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose); 5845 5846 for (auto &BI : RD->bases()) 5847 if (!BI.isVirtual() && 5848 SMI.shouldDeleteForBase(&BI)) 5849 return true; 5850 5851 // Per DR1611, do not consider virtual bases of constructors of abstract 5852 // classes, since we are not going to construct them. 5853 if (!RD->isAbstract() || !SMI.IsConstructor) { 5854 for (auto &BI : RD->vbases()) 5855 if (SMI.shouldDeleteForBase(&BI)) 5856 return true; 5857 } 5858 5859 for (auto *FI : RD->fields()) 5860 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() && 5861 SMI.shouldDeleteForField(FI)) 5862 return true; 5863 5864 if (SMI.shouldDeleteForAllConstMembers()) 5865 return true; 5866 5867 if (getLangOpts().CUDA) { 5868 // We should delete the special member in CUDA mode if target inference 5869 // failed. 5870 return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg, 5871 Diagnose); 5872 } 5873 5874 return false; 5875 } 5876 5877 /// Perform lookup for a special member of the specified kind, and determine 5878 /// whether it is trivial. If the triviality can be determined without the 5879 /// lookup, skip it. This is intended for use when determining whether a 5880 /// special member of a containing object is trivial, and thus does not ever 5881 /// perform overload resolution for default constructors. 5882 /// 5883 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the 5884 /// member that was most likely to be intended to be trivial, if any. 5885 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD, 5886 Sema::CXXSpecialMember CSM, unsigned Quals, 5887 bool ConstRHS, CXXMethodDecl **Selected) { 5888 if (Selected) 5889 *Selected = nullptr; 5890 5891 switch (CSM) { 5892 case Sema::CXXInvalid: 5893 llvm_unreachable("not a special member"); 5894 5895 case Sema::CXXDefaultConstructor: 5896 // C++11 [class.ctor]p5: 5897 // A default constructor is trivial if: 5898 // - all the [direct subobjects] have trivial default constructors 5899 // 5900 // Note, no overload resolution is performed in this case. 5901 if (RD->hasTrivialDefaultConstructor()) 5902 return true; 5903 5904 if (Selected) { 5905 // If there's a default constructor which could have been trivial, dig it 5906 // out. Otherwise, if there's any user-provided default constructor, point 5907 // to that as an example of why there's not a trivial one. 5908 CXXConstructorDecl *DefCtor = nullptr; 5909 if (RD->needsImplicitDefaultConstructor()) 5910 S.DeclareImplicitDefaultConstructor(RD); 5911 for (auto *CI : RD->ctors()) { 5912 if (!CI->isDefaultConstructor()) 5913 continue; 5914 DefCtor = CI; 5915 if (!DefCtor->isUserProvided()) 5916 break; 5917 } 5918 5919 *Selected = DefCtor; 5920 } 5921 5922 return false; 5923 5924 case Sema::CXXDestructor: 5925 // C++11 [class.dtor]p5: 5926 // A destructor is trivial if: 5927 // - all the direct [subobjects] have trivial destructors 5928 if (RD->hasTrivialDestructor()) 5929 return true; 5930 5931 if (Selected) { 5932 if (RD->needsImplicitDestructor()) 5933 S.DeclareImplicitDestructor(RD); 5934 *Selected = RD->getDestructor(); 5935 } 5936 5937 return false; 5938 5939 case Sema::CXXCopyConstructor: 5940 // C++11 [class.copy]p12: 5941 // A copy constructor is trivial if: 5942 // - the constructor selected to copy each direct [subobject] is trivial 5943 if (RD->hasTrivialCopyConstructor()) { 5944 if (Quals == Qualifiers::Const) 5945 // We must either select the trivial copy constructor or reach an 5946 // ambiguity; no need to actually perform overload resolution. 5947 return true; 5948 } else if (!Selected) { 5949 return false; 5950 } 5951 // In C++98, we are not supposed to perform overload resolution here, but we 5952 // treat that as a language defect, as suggested on cxx-abi-dev, to treat 5953 // cases like B as having a non-trivial copy constructor: 5954 // struct A { template<typename T> A(T&); }; 5955 // struct B { mutable A a; }; 5956 goto NeedOverloadResolution; 5957 5958 case Sema::CXXCopyAssignment: 5959 // C++11 [class.copy]p25: 5960 // A copy assignment operator is trivial if: 5961 // - the assignment operator selected to copy each direct [subobject] is 5962 // trivial 5963 if (RD->hasTrivialCopyAssignment()) { 5964 if (Quals == Qualifiers::Const) 5965 return true; 5966 } else if (!Selected) { 5967 return false; 5968 } 5969 // In C++98, we are not supposed to perform overload resolution here, but we 5970 // treat that as a language defect. 5971 goto NeedOverloadResolution; 5972 5973 case Sema::CXXMoveConstructor: 5974 case Sema::CXXMoveAssignment: 5975 NeedOverloadResolution: 5976 Sema::SpecialMemberOverloadResult *SMOR = 5977 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS); 5978 5979 // The standard doesn't describe how to behave if the lookup is ambiguous. 5980 // We treat it as not making the member non-trivial, just like the standard 5981 // mandates for the default constructor. This should rarely matter, because 5982 // the member will also be deleted. 5983 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5984 return true; 5985 5986 if (!SMOR->getMethod()) { 5987 assert(SMOR->getKind() == 5988 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted); 5989 return false; 5990 } 5991 5992 // We deliberately don't check if we found a deleted special member. We're 5993 // not supposed to! 5994 if (Selected) 5995 *Selected = SMOR->getMethod(); 5996 return SMOR->getMethod()->isTrivial(); 5997 } 5998 5999 llvm_unreachable("unknown special method kind"); 6000 } 6001 6002 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) { 6003 for (auto *CI : RD->ctors()) 6004 if (!CI->isImplicit()) 6005 return CI; 6006 6007 // Look for constructor templates. 6008 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter; 6009 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) { 6010 if (CXXConstructorDecl *CD = 6011 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl())) 6012 return CD; 6013 } 6014 6015 return nullptr; 6016 } 6017 6018 /// The kind of subobject we are checking for triviality. The values of this 6019 /// enumeration are used in diagnostics. 6020 enum TrivialSubobjectKind { 6021 /// The subobject is a base class. 6022 TSK_BaseClass, 6023 /// The subobject is a non-static data member. 6024 TSK_Field, 6025 /// The object is actually the complete object. 6026 TSK_CompleteObject 6027 }; 6028 6029 /// Check whether the special member selected for a given type would be trivial. 6030 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc, 6031 QualType SubType, bool ConstRHS, 6032 Sema::CXXSpecialMember CSM, 6033 TrivialSubobjectKind Kind, 6034 bool Diagnose) { 6035 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); 6036 if (!SubRD) 6037 return true; 6038 6039 CXXMethodDecl *Selected; 6040 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), 6041 ConstRHS, Diagnose ? &Selected : nullptr)) 6042 return true; 6043 6044 if (Diagnose) { 6045 if (ConstRHS) 6046 SubType.addConst(); 6047 6048 if (!Selected && CSM == Sema::CXXDefaultConstructor) { 6049 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor) 6050 << Kind << SubType.getUnqualifiedType(); 6051 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD)) 6052 S.Diag(CD->getLocation(), diag::note_user_declared_ctor); 6053 } else if (!Selected) 6054 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy) 6055 << Kind << SubType.getUnqualifiedType() << CSM << SubType; 6056 else if (Selected->isUserProvided()) { 6057 if (Kind == TSK_CompleteObject) 6058 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided) 6059 << Kind << SubType.getUnqualifiedType() << CSM; 6060 else { 6061 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided) 6062 << Kind << SubType.getUnqualifiedType() << CSM; 6063 S.Diag(Selected->getLocation(), diag::note_declared_at); 6064 } 6065 } else { 6066 if (Kind != TSK_CompleteObject) 6067 S.Diag(SubobjLoc, diag::note_nontrivial_subobject) 6068 << Kind << SubType.getUnqualifiedType() << CSM; 6069 6070 // Explain why the defaulted or deleted special member isn't trivial. 6071 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose); 6072 } 6073 } 6074 6075 return false; 6076 } 6077 6078 /// Check whether the members of a class type allow a special member to be 6079 /// trivial. 6080 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD, 6081 Sema::CXXSpecialMember CSM, 6082 bool ConstArg, bool Diagnose) { 6083 for (const auto *FI : RD->fields()) { 6084 if (FI->isInvalidDecl() || FI->isUnnamedBitfield()) 6085 continue; 6086 6087 QualType FieldType = S.Context.getBaseElementType(FI->getType()); 6088 6089 // Pretend anonymous struct or union members are members of this class. 6090 if (FI->isAnonymousStructOrUnion()) { 6091 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(), 6092 CSM, ConstArg, Diagnose)) 6093 return false; 6094 continue; 6095 } 6096 6097 // C++11 [class.ctor]p5: 6098 // A default constructor is trivial if [...] 6099 // -- no non-static data member of its class has a 6100 // brace-or-equal-initializer 6101 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) { 6102 if (Diagnose) 6103 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI; 6104 return false; 6105 } 6106 6107 // Objective C ARC 4.3.5: 6108 // [...] nontrivally ownership-qualified types are [...] not trivially 6109 // default constructible, copy constructible, move constructible, copy 6110 // assignable, move assignable, or destructible [...] 6111 if (S.getLangOpts().ObjCAutoRefCount && 6112 FieldType.hasNonTrivialObjCLifetime()) { 6113 if (Diagnose) 6114 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership) 6115 << RD << FieldType.getObjCLifetime(); 6116 return false; 6117 } 6118 6119 bool ConstRHS = ConstArg && !FI->isMutable(); 6120 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS, 6121 CSM, TSK_Field, Diagnose)) 6122 return false; 6123 } 6124 6125 return true; 6126 } 6127 6128 /// Diagnose why the specified class does not have a trivial special member of 6129 /// the given kind. 6130 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) { 6131 QualType Ty = Context.getRecordType(RD); 6132 6133 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment); 6134 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM, 6135 TSK_CompleteObject, /*Diagnose*/true); 6136 } 6137 6138 /// Determine whether a defaulted or deleted special member function is trivial, 6139 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12, 6140 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5. 6141 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM, 6142 bool Diagnose) { 6143 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough"); 6144 6145 CXXRecordDecl *RD = MD->getParent(); 6146 6147 bool ConstArg = false; 6148 6149 // C++11 [class.copy]p12, p25: [DR1593] 6150 // A [special member] is trivial if [...] its parameter-type-list is 6151 // equivalent to the parameter-type-list of an implicit declaration [...] 6152 switch (CSM) { 6153 case CXXDefaultConstructor: 6154 case CXXDestructor: 6155 // Trivial default constructors and destructors cannot have parameters. 6156 break; 6157 6158 case CXXCopyConstructor: 6159 case CXXCopyAssignment: { 6160 // Trivial copy operations always have const, non-volatile parameter types. 6161 ConstArg = true; 6162 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6163 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>(); 6164 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) { 6165 if (Diagnose) 6166 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6167 << Param0->getSourceRange() << Param0->getType() 6168 << Context.getLValueReferenceType( 6169 Context.getRecordType(RD).withConst()); 6170 return false; 6171 } 6172 break; 6173 } 6174 6175 case CXXMoveConstructor: 6176 case CXXMoveAssignment: { 6177 // Trivial move operations always have non-cv-qualified parameters. 6178 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6179 const RValueReferenceType *RT = 6180 Param0->getType()->getAs<RValueReferenceType>(); 6181 if (!RT || RT->getPointeeType().getCVRQualifiers()) { 6182 if (Diagnose) 6183 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6184 << Param0->getSourceRange() << Param0->getType() 6185 << Context.getRValueReferenceType(Context.getRecordType(RD)); 6186 return false; 6187 } 6188 break; 6189 } 6190 6191 case CXXInvalid: 6192 llvm_unreachable("not a special member"); 6193 } 6194 6195 if (MD->getMinRequiredArguments() < MD->getNumParams()) { 6196 if (Diagnose) 6197 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(), 6198 diag::note_nontrivial_default_arg) 6199 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange(); 6200 return false; 6201 } 6202 if (MD->isVariadic()) { 6203 if (Diagnose) 6204 Diag(MD->getLocation(), diag::note_nontrivial_variadic); 6205 return false; 6206 } 6207 6208 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6209 // A copy/move [constructor or assignment operator] is trivial if 6210 // -- the [member] selected to copy/move each direct base class subobject 6211 // is trivial 6212 // 6213 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6214 // A [default constructor or destructor] is trivial if 6215 // -- all the direct base classes have trivial [default constructors or 6216 // destructors] 6217 for (const auto &BI : RD->bases()) 6218 if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(), 6219 ConstArg, CSM, TSK_BaseClass, Diagnose)) 6220 return false; 6221 6222 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6223 // A copy/move [constructor or assignment operator] for a class X is 6224 // trivial if 6225 // -- for each non-static data member of X that is of class type (or array 6226 // thereof), the constructor selected to copy/move that member is 6227 // trivial 6228 // 6229 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6230 // A [default constructor or destructor] is trivial if 6231 // -- for all of the non-static data members of its class that are of class 6232 // type (or array thereof), each such class has a trivial [default 6233 // constructor or destructor] 6234 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose)) 6235 return false; 6236 6237 // C++11 [class.dtor]p5: 6238 // A destructor is trivial if [...] 6239 // -- the destructor is not virtual 6240 if (CSM == CXXDestructor && MD->isVirtual()) { 6241 if (Diagnose) 6242 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD; 6243 return false; 6244 } 6245 6246 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 6247 // A [special member] for class X is trivial if [...] 6248 // -- class X has no virtual functions and no virtual base classes 6249 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) { 6250 if (!Diagnose) 6251 return false; 6252 6253 if (RD->getNumVBases()) { 6254 // Check for virtual bases. We already know that the corresponding 6255 // member in all bases is trivial, so vbases must all be direct. 6256 CXXBaseSpecifier &BS = *RD->vbases_begin(); 6257 assert(BS.isVirtual()); 6258 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1; 6259 return false; 6260 } 6261 6262 // Must have a virtual method. 6263 for (const auto *MI : RD->methods()) { 6264 if (MI->isVirtual()) { 6265 SourceLocation MLoc = MI->getLocStart(); 6266 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0; 6267 return false; 6268 } 6269 } 6270 6271 llvm_unreachable("dynamic class with no vbases and no virtual functions"); 6272 } 6273 6274 // Looks like it's trivial! 6275 return true; 6276 } 6277 6278 namespace { 6279 struct FindHiddenVirtualMethod { 6280 Sema *S; 6281 CXXMethodDecl *Method; 6282 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods; 6283 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6284 6285 private: 6286 /// Check whether any most overriden method from MD in Methods 6287 static bool CheckMostOverridenMethods( 6288 const CXXMethodDecl *MD, 6289 const llvm::SmallPtrSetImpl<const CXXMethodDecl *> &Methods) { 6290 if (MD->size_overridden_methods() == 0) 6291 return Methods.count(MD->getCanonicalDecl()); 6292 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6293 E = MD->end_overridden_methods(); 6294 I != E; ++I) 6295 if (CheckMostOverridenMethods(*I, Methods)) 6296 return true; 6297 return false; 6298 } 6299 6300 public: 6301 /// Member lookup function that determines whether a given C++ 6302 /// method overloads virtual methods in a base class without overriding any, 6303 /// to be used with CXXRecordDecl::lookupInBases(). 6304 bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 6305 RecordDecl *BaseRecord = 6306 Specifier->getType()->getAs<RecordType>()->getDecl(); 6307 6308 DeclarationName Name = Method->getDeclName(); 6309 assert(Name.getNameKind() == DeclarationName::Identifier); 6310 6311 bool foundSameNameMethod = false; 6312 SmallVector<CXXMethodDecl *, 8> overloadedMethods; 6313 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); 6314 Path.Decls = Path.Decls.slice(1)) { 6315 NamedDecl *D = Path.Decls.front(); 6316 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 6317 MD = MD->getCanonicalDecl(); 6318 foundSameNameMethod = true; 6319 // Interested only in hidden virtual methods. 6320 if (!MD->isVirtual()) 6321 continue; 6322 // If the method we are checking overrides a method from its base 6323 // don't warn about the other overloaded methods. Clang deviates from 6324 // GCC by only diagnosing overloads of inherited virtual functions that 6325 // do not override any other virtual functions in the base. GCC's 6326 // -Woverloaded-virtual diagnoses any derived function hiding a virtual 6327 // function from a base class. These cases may be better served by a 6328 // warning (not specific to virtual functions) on call sites when the 6329 // call would select a different function from the base class, were it 6330 // visible. 6331 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example. 6332 if (!S->IsOverload(Method, MD, false)) 6333 return true; 6334 // Collect the overload only if its hidden. 6335 if (!CheckMostOverridenMethods(MD, OverridenAndUsingBaseMethods)) 6336 overloadedMethods.push_back(MD); 6337 } 6338 } 6339 6340 if (foundSameNameMethod) 6341 OverloadedMethods.append(overloadedMethods.begin(), 6342 overloadedMethods.end()); 6343 return foundSameNameMethod; 6344 } 6345 }; 6346 } // end anonymous namespace 6347 6348 /// \brief Add the most overriden methods from MD to Methods 6349 static void AddMostOverridenMethods(const CXXMethodDecl *MD, 6350 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 6351 if (MD->size_overridden_methods() == 0) 6352 Methods.insert(MD->getCanonicalDecl()); 6353 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6354 E = MD->end_overridden_methods(); 6355 I != E; ++I) 6356 AddMostOverridenMethods(*I, Methods); 6357 } 6358 6359 /// \brief Check if a method overloads virtual methods in a base class without 6360 /// overriding any. 6361 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD, 6362 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6363 if (!MD->getDeclName().isIdentifier()) 6364 return; 6365 6366 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases. 6367 /*bool RecordPaths=*/false, 6368 /*bool DetectVirtual=*/false); 6369 FindHiddenVirtualMethod FHVM; 6370 FHVM.Method = MD; 6371 FHVM.S = this; 6372 6373 // Keep the base methods that were overriden or introduced in the subclass 6374 // by 'using' in a set. A base method not in this set is hidden. 6375 CXXRecordDecl *DC = MD->getParent(); 6376 DeclContext::lookup_result R = DC->lookup(MD->getDeclName()); 6377 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) { 6378 NamedDecl *ND = *I; 6379 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I)) 6380 ND = shad->getTargetDecl(); 6381 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND)) 6382 AddMostOverridenMethods(MD, FHVM.OverridenAndUsingBaseMethods); 6383 } 6384 6385 if (DC->lookupInBases(FHVM, Paths)) 6386 OverloadedMethods = FHVM.OverloadedMethods; 6387 } 6388 6389 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD, 6390 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6391 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) { 6392 CXXMethodDecl *overloadedMD = OverloadedMethods[i]; 6393 PartialDiagnostic PD = PDiag( 6394 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD; 6395 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType()); 6396 Diag(overloadedMD->getLocation(), PD); 6397 } 6398 } 6399 6400 /// \brief Diagnose methods which overload virtual methods in a base class 6401 /// without overriding any. 6402 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) { 6403 if (MD->isInvalidDecl()) 6404 return; 6405 6406 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation())) 6407 return; 6408 6409 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6410 FindHiddenVirtualMethods(MD, OverloadedMethods); 6411 if (!OverloadedMethods.empty()) { 6412 Diag(MD->getLocation(), diag::warn_overloaded_virtual) 6413 << MD << (OverloadedMethods.size() > 1); 6414 6415 NoteHiddenVirtualMethods(MD, OverloadedMethods); 6416 } 6417 } 6418 6419 void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, 6420 Decl *TagDecl, 6421 SourceLocation LBrac, 6422 SourceLocation RBrac, 6423 AttributeList *AttrList) { 6424 if (!TagDecl) 6425 return; 6426 6427 AdjustDeclIfTemplate(TagDecl); 6428 6429 for (const AttributeList* l = AttrList; l; l = l->getNext()) { 6430 if (l->getKind() != AttributeList::AT_Visibility) 6431 continue; 6432 l->setInvalid(); 6433 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) << 6434 l->getName(); 6435 } 6436 6437 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef( 6438 // strict aliasing violation! 6439 reinterpret_cast<Decl**>(FieldCollector->getCurFields()), 6440 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList); 6441 6442 CheckCompletedCXXClass( 6443 dyn_cast_or_null<CXXRecordDecl>(TagDecl)); 6444 } 6445 6446 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared 6447 /// special functions, such as the default constructor, copy 6448 /// constructor, or destructor, to the given C++ class (C++ 6449 /// [special]p1). This routine can only be executed just before the 6450 /// definition of the class is complete. 6451 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) { 6452 if (!ClassDecl->hasUserDeclaredConstructor()) 6453 ++ASTContext::NumImplicitDefaultConstructors; 6454 6455 if (!ClassDecl->hasUserDeclaredCopyConstructor()) { 6456 ++ASTContext::NumImplicitCopyConstructors; 6457 6458 // If the properties or semantics of the copy constructor couldn't be 6459 // determined while the class was being declared, force a declaration 6460 // of it now. 6461 if (ClassDecl->needsOverloadResolutionForCopyConstructor()) 6462 DeclareImplicitCopyConstructor(ClassDecl); 6463 } 6464 6465 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) { 6466 ++ASTContext::NumImplicitMoveConstructors; 6467 6468 if (ClassDecl->needsOverloadResolutionForMoveConstructor()) 6469 DeclareImplicitMoveConstructor(ClassDecl); 6470 } 6471 6472 if (!ClassDecl->hasUserDeclaredCopyAssignment()) { 6473 ++ASTContext::NumImplicitCopyAssignmentOperators; 6474 6475 // If we have a dynamic class, then the copy assignment operator may be 6476 // virtual, so we have to declare it immediately. This ensures that, e.g., 6477 // it shows up in the right place in the vtable and that we diagnose 6478 // problems with the implicit exception specification. 6479 if (ClassDecl->isDynamicClass() || 6480 ClassDecl->needsOverloadResolutionForCopyAssignment()) 6481 DeclareImplicitCopyAssignment(ClassDecl); 6482 } 6483 6484 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) { 6485 ++ASTContext::NumImplicitMoveAssignmentOperators; 6486 6487 // Likewise for the move assignment operator. 6488 if (ClassDecl->isDynamicClass() || 6489 ClassDecl->needsOverloadResolutionForMoveAssignment()) 6490 DeclareImplicitMoveAssignment(ClassDecl); 6491 } 6492 6493 if (!ClassDecl->hasUserDeclaredDestructor()) { 6494 ++ASTContext::NumImplicitDestructors; 6495 6496 // If we have a dynamic class, then the destructor may be virtual, so we 6497 // have to declare the destructor immediately. This ensures that, e.g., it 6498 // shows up in the right place in the vtable and that we diagnose problems 6499 // with the implicit exception specification. 6500 if (ClassDecl->isDynamicClass() || 6501 ClassDecl->needsOverloadResolutionForDestructor()) 6502 DeclareImplicitDestructor(ClassDecl); 6503 } 6504 } 6505 6506 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) { 6507 if (!D) 6508 return 0; 6509 6510 // The order of template parameters is not important here. All names 6511 // get added to the same scope. 6512 SmallVector<TemplateParameterList *, 4> ParameterLists; 6513 6514 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 6515 D = TD->getTemplatedDecl(); 6516 6517 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) 6518 ParameterLists.push_back(PSD->getTemplateParameters()); 6519 6520 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) { 6521 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i) 6522 ParameterLists.push_back(DD->getTemplateParameterList(i)); 6523 6524 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 6525 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) 6526 ParameterLists.push_back(FTD->getTemplateParameters()); 6527 } 6528 } 6529 6530 if (TagDecl *TD = dyn_cast<TagDecl>(D)) { 6531 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i) 6532 ParameterLists.push_back(TD->getTemplateParameterList(i)); 6533 6534 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) { 6535 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate()) 6536 ParameterLists.push_back(CTD->getTemplateParameters()); 6537 } 6538 } 6539 6540 unsigned Count = 0; 6541 for (TemplateParameterList *Params : ParameterLists) { 6542 if (Params->size() > 0) 6543 // Ignore explicit specializations; they don't contribute to the template 6544 // depth. 6545 ++Count; 6546 for (NamedDecl *Param : *Params) { 6547 if (Param->getDeclName()) { 6548 S->AddDecl(Param); 6549 IdResolver.AddDecl(Param); 6550 } 6551 } 6552 } 6553 6554 return Count; 6555 } 6556 6557 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6558 if (!RecordD) return; 6559 AdjustDeclIfTemplate(RecordD); 6560 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD); 6561 PushDeclContext(S, Record); 6562 } 6563 6564 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6565 if (!RecordD) return; 6566 PopDeclContext(); 6567 } 6568 6569 /// This is used to implement the constant expression evaluation part of the 6570 /// attribute enable_if extension. There is nothing in standard C++ which would 6571 /// require reentering parameters. 6572 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) { 6573 if (!Param) 6574 return; 6575 6576 S->AddDecl(Param); 6577 if (Param->getDeclName()) 6578 IdResolver.AddDecl(Param); 6579 } 6580 6581 /// ActOnStartDelayedCXXMethodDeclaration - We have completed 6582 /// parsing a top-level (non-nested) C++ class, and we are now 6583 /// parsing those parts of the given Method declaration that could 6584 /// not be parsed earlier (C++ [class.mem]p2), such as default 6585 /// arguments. This action should enter the scope of the given 6586 /// Method declaration as if we had just parsed the qualified method 6587 /// name. However, it should not bring the parameters into scope; 6588 /// that will be performed by ActOnDelayedCXXMethodParameter. 6589 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6590 } 6591 6592 /// ActOnDelayedCXXMethodParameter - We've already started a delayed 6593 /// C++ method declaration. We're (re-)introducing the given 6594 /// function parameter into scope for use in parsing later parts of 6595 /// the method declaration. For example, we could see an 6596 /// ActOnParamDefaultArgument event for this parameter. 6597 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { 6598 if (!ParamD) 6599 return; 6600 6601 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); 6602 6603 // If this parameter has an unparsed default argument, clear it out 6604 // to make way for the parsed default argument. 6605 if (Param->hasUnparsedDefaultArg()) 6606 Param->setDefaultArg(nullptr); 6607 6608 S->AddDecl(Param); 6609 if (Param->getDeclName()) 6610 IdResolver.AddDecl(Param); 6611 } 6612 6613 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished 6614 /// processing the delayed method declaration for Method. The method 6615 /// declaration is now considered finished. There may be a separate 6616 /// ActOnStartOfFunctionDef action later (not necessarily 6617 /// immediately!) for this method, if it was also defined inside the 6618 /// class body. 6619 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6620 if (!MethodD) 6621 return; 6622 6623 AdjustDeclIfTemplate(MethodD); 6624 6625 FunctionDecl *Method = cast<FunctionDecl>(MethodD); 6626 6627 // Now that we have our default arguments, check the constructor 6628 // again. It could produce additional diagnostics or affect whether 6629 // the class has implicitly-declared destructors, among other 6630 // things. 6631 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) 6632 CheckConstructor(Constructor); 6633 6634 // Check the default arguments, which we may have added. 6635 if (!Method->isInvalidDecl()) 6636 CheckCXXDefaultArguments(Method); 6637 } 6638 6639 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check 6640 /// the well-formedness of the constructor declarator @p D with type @p 6641 /// R. If there are any errors in the declarator, this routine will 6642 /// emit diagnostics and set the invalid bit to true. In any case, the type 6643 /// will be updated to reflect a well-formed type for the constructor and 6644 /// returned. 6645 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R, 6646 StorageClass &SC) { 6647 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 6648 6649 // C++ [class.ctor]p3: 6650 // A constructor shall not be virtual (10.3) or static (9.4). A 6651 // constructor can be invoked for a const, volatile or const 6652 // volatile object. A constructor shall not be declared const, 6653 // volatile, or const volatile (9.3.2). 6654 if (isVirtual) { 6655 if (!D.isInvalidType()) 6656 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6657 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc()) 6658 << SourceRange(D.getIdentifierLoc()); 6659 D.setInvalidType(); 6660 } 6661 if (SC == SC_Static) { 6662 if (!D.isInvalidType()) 6663 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6664 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6665 << SourceRange(D.getIdentifierLoc()); 6666 D.setInvalidType(); 6667 SC = SC_None; 6668 } 6669 6670 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6671 diagnoseIgnoredQualifiers( 6672 diag::err_constructor_return_type, TypeQuals, SourceLocation(), 6673 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(), 6674 D.getDeclSpec().getRestrictSpecLoc(), 6675 D.getDeclSpec().getAtomicSpecLoc()); 6676 D.setInvalidType(); 6677 } 6678 6679 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6680 if (FTI.TypeQuals != 0) { 6681 if (FTI.TypeQuals & Qualifiers::Const) 6682 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6683 << "const" << SourceRange(D.getIdentifierLoc()); 6684 if (FTI.TypeQuals & Qualifiers::Volatile) 6685 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6686 << "volatile" << SourceRange(D.getIdentifierLoc()); 6687 if (FTI.TypeQuals & Qualifiers::Restrict) 6688 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6689 << "restrict" << SourceRange(D.getIdentifierLoc()); 6690 D.setInvalidType(); 6691 } 6692 6693 // C++0x [class.ctor]p4: 6694 // A constructor shall not be declared with a ref-qualifier. 6695 if (FTI.hasRefQualifier()) { 6696 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor) 6697 << FTI.RefQualifierIsLValueRef 6698 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6699 D.setInvalidType(); 6700 } 6701 6702 // Rebuild the function type "R" without any type qualifiers (in 6703 // case any of the errors above fired) and with "void" as the 6704 // return type, since constructors don't have return types. 6705 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6706 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType()) 6707 return R; 6708 6709 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6710 EPI.TypeQuals = 0; 6711 EPI.RefQualifier = RQ_None; 6712 6713 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI); 6714 } 6715 6716 /// CheckConstructor - Checks a fully-formed constructor for 6717 /// well-formedness, issuing any diagnostics required. Returns true if 6718 /// the constructor declarator is invalid. 6719 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) { 6720 CXXRecordDecl *ClassDecl 6721 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext()); 6722 if (!ClassDecl) 6723 return Constructor->setInvalidDecl(); 6724 6725 // C++ [class.copy]p3: 6726 // A declaration of a constructor for a class X is ill-formed if 6727 // its first parameter is of type (optionally cv-qualified) X and 6728 // either there are no other parameters or else all other 6729 // parameters have default arguments. 6730 if (!Constructor->isInvalidDecl() && 6731 ((Constructor->getNumParams() == 1) || 6732 (Constructor->getNumParams() > 1 && 6733 Constructor->getParamDecl(1)->hasDefaultArg())) && 6734 Constructor->getTemplateSpecializationKind() 6735 != TSK_ImplicitInstantiation) { 6736 QualType ParamType = Constructor->getParamDecl(0)->getType(); 6737 QualType ClassTy = Context.getTagDeclType(ClassDecl); 6738 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { 6739 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation(); 6740 const char *ConstRef 6741 = Constructor->getParamDecl(0)->getIdentifier() ? "const &" 6742 : " const &"; 6743 Diag(ParamLoc, diag::err_constructor_byvalue_arg) 6744 << FixItHint::CreateInsertion(ParamLoc, ConstRef); 6745 6746 // FIXME: Rather that making the constructor invalid, we should endeavor 6747 // to fix the type. 6748 Constructor->setInvalidDecl(); 6749 } 6750 } 6751 } 6752 6753 /// CheckDestructor - Checks a fully-formed destructor definition for 6754 /// well-formedness, issuing any diagnostics required. Returns true 6755 /// on error. 6756 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { 6757 CXXRecordDecl *RD = Destructor->getParent(); 6758 6759 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) { 6760 SourceLocation Loc; 6761 6762 if (!Destructor->isImplicit()) 6763 Loc = Destructor->getLocation(); 6764 else 6765 Loc = RD->getLocation(); 6766 6767 // If we have a virtual destructor, look up the deallocation function 6768 FunctionDecl *OperatorDelete = nullptr; 6769 DeclarationName Name = 6770 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 6771 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete)) 6772 return true; 6773 // If there's no class-specific operator delete, look up the global 6774 // non-array delete. 6775 if (!OperatorDelete) 6776 OperatorDelete = FindUsualDeallocationFunction(Loc, true, Name); 6777 6778 MarkFunctionReferenced(Loc, OperatorDelete); 6779 6780 Destructor->setOperatorDelete(OperatorDelete); 6781 } 6782 6783 return false; 6784 } 6785 6786 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check 6787 /// the well-formednes of the destructor declarator @p D with type @p 6788 /// R. If there are any errors in the declarator, this routine will 6789 /// emit diagnostics and set the declarator to invalid. Even if this happens, 6790 /// will be updated to reflect a well-formed type for the destructor and 6791 /// returned. 6792 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R, 6793 StorageClass& SC) { 6794 // C++ [class.dtor]p1: 6795 // [...] A typedef-name that names a class is a class-name 6796 // (7.1.3); however, a typedef-name that names a class shall not 6797 // be used as the identifier in the declarator for a destructor 6798 // declaration. 6799 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName); 6800 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>()) 6801 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6802 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl()); 6803 else if (const TemplateSpecializationType *TST = 6804 DeclaratorType->getAs<TemplateSpecializationType>()) 6805 if (TST->isTypeAlias()) 6806 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6807 << DeclaratorType << 1; 6808 6809 // C++ [class.dtor]p2: 6810 // A destructor is used to destroy objects of its class type. A 6811 // destructor takes no parameters, and no return type can be 6812 // specified for it (not even void). The address of a destructor 6813 // shall not be taken. A destructor shall not be static. A 6814 // destructor can be invoked for a const, volatile or const 6815 // volatile object. A destructor shall not be declared const, 6816 // volatile or const volatile (9.3.2). 6817 if (SC == SC_Static) { 6818 if (!D.isInvalidType()) 6819 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be) 6820 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6821 << SourceRange(D.getIdentifierLoc()) 6822 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6823 6824 SC = SC_None; 6825 } 6826 if (!D.isInvalidType()) { 6827 // Destructors don't have return types, but the parser will 6828 // happily parse something like: 6829 // 6830 // class X { 6831 // float ~X(); 6832 // }; 6833 // 6834 // The return type will be eliminated later. 6835 if (D.getDeclSpec().hasTypeSpecifier()) 6836 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type) 6837 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6838 << SourceRange(D.getIdentifierLoc()); 6839 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6840 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals, 6841 SourceLocation(), 6842 D.getDeclSpec().getConstSpecLoc(), 6843 D.getDeclSpec().getVolatileSpecLoc(), 6844 D.getDeclSpec().getRestrictSpecLoc(), 6845 D.getDeclSpec().getAtomicSpecLoc()); 6846 D.setInvalidType(); 6847 } 6848 } 6849 6850 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6851 if (FTI.TypeQuals != 0 && !D.isInvalidType()) { 6852 if (FTI.TypeQuals & Qualifiers::Const) 6853 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6854 << "const" << SourceRange(D.getIdentifierLoc()); 6855 if (FTI.TypeQuals & Qualifiers::Volatile) 6856 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6857 << "volatile" << SourceRange(D.getIdentifierLoc()); 6858 if (FTI.TypeQuals & Qualifiers::Restrict) 6859 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6860 << "restrict" << SourceRange(D.getIdentifierLoc()); 6861 D.setInvalidType(); 6862 } 6863 6864 // C++0x [class.dtor]p2: 6865 // A destructor shall not be declared with a ref-qualifier. 6866 if (FTI.hasRefQualifier()) { 6867 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor) 6868 << FTI.RefQualifierIsLValueRef 6869 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6870 D.setInvalidType(); 6871 } 6872 6873 // Make sure we don't have any parameters. 6874 if (FTIHasNonVoidParameters(FTI)) { 6875 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params); 6876 6877 // Delete the parameters. 6878 FTI.freeParams(); 6879 D.setInvalidType(); 6880 } 6881 6882 // Make sure the destructor isn't variadic. 6883 if (FTI.isVariadic) { 6884 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic); 6885 D.setInvalidType(); 6886 } 6887 6888 // Rebuild the function type "R" without any type qualifiers or 6889 // parameters (in case any of the errors above fired) and with 6890 // "void" as the return type, since destructors don't have return 6891 // types. 6892 if (!D.isInvalidType()) 6893 return R; 6894 6895 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6896 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6897 EPI.Variadic = false; 6898 EPI.TypeQuals = 0; 6899 EPI.RefQualifier = RQ_None; 6900 return Context.getFunctionType(Context.VoidTy, None, EPI); 6901 } 6902 6903 static void extendLeft(SourceRange &R, SourceRange Before) { 6904 if (Before.isInvalid()) 6905 return; 6906 R.setBegin(Before.getBegin()); 6907 if (R.getEnd().isInvalid()) 6908 R.setEnd(Before.getEnd()); 6909 } 6910 6911 static void extendRight(SourceRange &R, SourceRange After) { 6912 if (After.isInvalid()) 6913 return; 6914 if (R.getBegin().isInvalid()) 6915 R.setBegin(After.getBegin()); 6916 R.setEnd(After.getEnd()); 6917 } 6918 6919 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the 6920 /// well-formednes of the conversion function declarator @p D with 6921 /// type @p R. If there are any errors in the declarator, this routine 6922 /// will emit diagnostics and return true. Otherwise, it will return 6923 /// false. Either way, the type @p R will be updated to reflect a 6924 /// well-formed type for the conversion operator. 6925 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R, 6926 StorageClass& SC) { 6927 // C++ [class.conv.fct]p1: 6928 // Neither parameter types nor return type can be specified. The 6929 // type of a conversion function (8.3.5) is "function taking no 6930 // parameter returning conversion-type-id." 6931 if (SC == SC_Static) { 6932 if (!D.isInvalidType()) 6933 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member) 6934 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6935 << D.getName().getSourceRange(); 6936 D.setInvalidType(); 6937 SC = SC_None; 6938 } 6939 6940 TypeSourceInfo *ConvTSI = nullptr; 6941 QualType ConvType = 6942 GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI); 6943 6944 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) { 6945 // Conversion functions don't have return types, but the parser will 6946 // happily parse something like: 6947 // 6948 // class X { 6949 // float operator bool(); 6950 // }; 6951 // 6952 // The return type will be changed later anyway. 6953 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type) 6954 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6955 << SourceRange(D.getIdentifierLoc()); 6956 D.setInvalidType(); 6957 } 6958 6959 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6960 6961 // Make sure we don't have any parameters. 6962 if (Proto->getNumParams() > 0) { 6963 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params); 6964 6965 // Delete the parameters. 6966 D.getFunctionTypeInfo().freeParams(); 6967 D.setInvalidType(); 6968 } else if (Proto->isVariadic()) { 6969 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic); 6970 D.setInvalidType(); 6971 } 6972 6973 // Diagnose "&operator bool()" and other such nonsense. This 6974 // is actually a gcc extension which we don't support. 6975 if (Proto->getReturnType() != ConvType) { 6976 bool NeedsTypedef = false; 6977 SourceRange Before, After; 6978 6979 // Walk the chunks and extract information on them for our diagnostic. 6980 bool PastFunctionChunk = false; 6981 for (auto &Chunk : D.type_objects()) { 6982 switch (Chunk.Kind) { 6983 case DeclaratorChunk::Function: 6984 if (!PastFunctionChunk) { 6985 if (Chunk.Fun.HasTrailingReturnType) { 6986 TypeSourceInfo *TRT = nullptr; 6987 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT); 6988 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange()); 6989 } 6990 PastFunctionChunk = true; 6991 break; 6992 } 6993 // Fall through. 6994 case DeclaratorChunk::Array: 6995 NeedsTypedef = true; 6996 extendRight(After, Chunk.getSourceRange()); 6997 break; 6998 6999 case DeclaratorChunk::Pointer: 7000 case DeclaratorChunk::BlockPointer: 7001 case DeclaratorChunk::Reference: 7002 case DeclaratorChunk::MemberPointer: 7003 case DeclaratorChunk::Pipe: 7004 extendLeft(Before, Chunk.getSourceRange()); 7005 break; 7006 7007 case DeclaratorChunk::Paren: 7008 extendLeft(Before, Chunk.Loc); 7009 extendRight(After, Chunk.EndLoc); 7010 break; 7011 } 7012 } 7013 7014 SourceLocation Loc = Before.isValid() ? Before.getBegin() : 7015 After.isValid() ? After.getBegin() : 7016 D.getIdentifierLoc(); 7017 auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl); 7018 DB << Before << After; 7019 7020 if (!NeedsTypedef) { 7021 DB << /*don't need a typedef*/0; 7022 7023 // If we can provide a correct fix-it hint, do so. 7024 if (After.isInvalid() && ConvTSI) { 7025 SourceLocation InsertLoc = 7026 getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd()); 7027 DB << FixItHint::CreateInsertion(InsertLoc, " ") 7028 << FixItHint::CreateInsertionFromRange( 7029 InsertLoc, CharSourceRange::getTokenRange(Before)) 7030 << FixItHint::CreateRemoval(Before); 7031 } 7032 } else if (!Proto->getReturnType()->isDependentType()) { 7033 DB << /*typedef*/1 << Proto->getReturnType(); 7034 } else if (getLangOpts().CPlusPlus11) { 7035 DB << /*alias template*/2 << Proto->getReturnType(); 7036 } else { 7037 DB << /*might not be fixable*/3; 7038 } 7039 7040 // Recover by incorporating the other type chunks into the result type. 7041 // Note, this does *not* change the name of the function. This is compatible 7042 // with the GCC extension: 7043 // struct S { &operator int(); } s; 7044 // int &r = s.operator int(); // ok in GCC 7045 // S::operator int&() {} // error in GCC, function name is 'operator int'. 7046 ConvType = Proto->getReturnType(); 7047 } 7048 7049 // C++ [class.conv.fct]p4: 7050 // The conversion-type-id shall not represent a function type nor 7051 // an array type. 7052 if (ConvType->isArrayType()) { 7053 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array); 7054 ConvType = Context.getPointerType(ConvType); 7055 D.setInvalidType(); 7056 } else if (ConvType->isFunctionType()) { 7057 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function); 7058 ConvType = Context.getPointerType(ConvType); 7059 D.setInvalidType(); 7060 } 7061 7062 // Rebuild the function type "R" without any parameters (in case any 7063 // of the errors above fired) and with the conversion type as the 7064 // return type. 7065 if (D.isInvalidType()) 7066 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo()); 7067 7068 // C++0x explicit conversion operators. 7069 if (D.getDeclSpec().isExplicitSpecified()) 7070 Diag(D.getDeclSpec().getExplicitSpecLoc(), 7071 getLangOpts().CPlusPlus11 ? 7072 diag::warn_cxx98_compat_explicit_conversion_functions : 7073 diag::ext_explicit_conversion_functions) 7074 << SourceRange(D.getDeclSpec().getExplicitSpecLoc()); 7075 } 7076 7077 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete 7078 /// the declaration of the given C++ conversion function. This routine 7079 /// is responsible for recording the conversion function in the C++ 7080 /// class, if possible. 7081 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) { 7082 assert(Conversion && "Expected to receive a conversion function declaration"); 7083 7084 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext()); 7085 7086 // Make sure we aren't redeclaring the conversion function. 7087 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType()); 7088 7089 // C++ [class.conv.fct]p1: 7090 // [...] A conversion function is never used to convert a 7091 // (possibly cv-qualified) object to the (possibly cv-qualified) 7092 // same object type (or a reference to it), to a (possibly 7093 // cv-qualified) base class of that type (or a reference to it), 7094 // or to (possibly cv-qualified) void. 7095 // FIXME: Suppress this warning if the conversion function ends up being a 7096 // virtual function that overrides a virtual function in a base class. 7097 QualType ClassType 7098 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 7099 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>()) 7100 ConvType = ConvTypeRef->getPointeeType(); 7101 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared && 7102 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) 7103 /* Suppress diagnostics for instantiations. */; 7104 else if (ConvType->isRecordType()) { 7105 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); 7106 if (ConvType == ClassType) 7107 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used) 7108 << ClassType; 7109 else if (IsDerivedFrom(Conversion->getLocation(), ClassType, ConvType)) 7110 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used) 7111 << ClassType << ConvType; 7112 } else if (ConvType->isVoidType()) { 7113 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used) 7114 << ClassType << ConvType; 7115 } 7116 7117 if (FunctionTemplateDecl *ConversionTemplate 7118 = Conversion->getDescribedFunctionTemplate()) 7119 return ConversionTemplate; 7120 7121 return Conversion; 7122 } 7123 7124 //===----------------------------------------------------------------------===// 7125 // Namespace Handling 7126 //===----------------------------------------------------------------------===// 7127 7128 /// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is 7129 /// reopened. 7130 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, 7131 SourceLocation Loc, 7132 IdentifierInfo *II, bool *IsInline, 7133 NamespaceDecl *PrevNS) { 7134 assert(*IsInline != PrevNS->isInline()); 7135 7136 // HACK: Work around a bug in libstdc++4.6's <atomic>, where 7137 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as 7138 // inline namespaces, with the intention of bringing names into namespace std. 7139 // 7140 // We support this just well enough to get that case working; this is not 7141 // sufficient to support reopening namespaces as inline in general. 7142 if (*IsInline && II && II->getName().startswith("__atomic") && 7143 S.getSourceManager().isInSystemHeader(Loc)) { 7144 // Mark all prior declarations of the namespace as inline. 7145 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS; 7146 NS = NS->getPreviousDecl()) 7147 NS->setInline(*IsInline); 7148 // Patch up the lookup table for the containing namespace. This isn't really 7149 // correct, but it's good enough for this particular case. 7150 for (auto *I : PrevNS->decls()) 7151 if (auto *ND = dyn_cast<NamedDecl>(I)) 7152 PrevNS->getParent()->makeDeclVisibleInContext(ND); 7153 return; 7154 } 7155 7156 if (PrevNS->isInline()) 7157 // The user probably just forgot the 'inline', so suggest that it 7158 // be added back. 7159 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline) 7160 << FixItHint::CreateInsertion(KeywordLoc, "inline "); 7161 else 7162 S.Diag(Loc, diag::err_inline_namespace_mismatch) << *IsInline; 7163 7164 S.Diag(PrevNS->getLocation(), diag::note_previous_definition); 7165 *IsInline = PrevNS->isInline(); 7166 } 7167 7168 /// ActOnStartNamespaceDef - This is called at the start of a namespace 7169 /// definition. 7170 Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope, 7171 SourceLocation InlineLoc, 7172 SourceLocation NamespaceLoc, 7173 SourceLocation IdentLoc, 7174 IdentifierInfo *II, 7175 SourceLocation LBrace, 7176 AttributeList *AttrList, 7177 UsingDirectiveDecl *&UD) { 7178 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc; 7179 // For anonymous namespace, take the location of the left brace. 7180 SourceLocation Loc = II ? IdentLoc : LBrace; 7181 bool IsInline = InlineLoc.isValid(); 7182 bool IsInvalid = false; 7183 bool IsStd = false; 7184 bool AddToKnown = false; 7185 Scope *DeclRegionScope = NamespcScope->getParent(); 7186 7187 NamespaceDecl *PrevNS = nullptr; 7188 if (II) { 7189 // C++ [namespace.def]p2: 7190 // The identifier in an original-namespace-definition shall not 7191 // have been previously defined in the declarative region in 7192 // which the original-namespace-definition appears. The 7193 // identifier in an original-namespace-definition is the name of 7194 // the namespace. Subsequently in that declarative region, it is 7195 // treated as an original-namespace-name. 7196 // 7197 // Since namespace names are unique in their scope, and we don't 7198 // look through using directives, just look for any ordinary names 7199 // as if by qualified name lookup. 7200 LookupResult R(*this, II, IdentLoc, LookupOrdinaryName, ForRedeclaration); 7201 LookupQualifiedName(R, CurContext->getRedeclContext()); 7202 NamedDecl *PrevDecl = 7203 R.isSingleResult() ? R.getRepresentativeDecl() : nullptr; 7204 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl); 7205 7206 if (PrevNS) { 7207 // This is an extended namespace definition. 7208 if (IsInline != PrevNS->isInline()) 7209 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II, 7210 &IsInline, PrevNS); 7211 } else if (PrevDecl) { 7212 // This is an invalid name redefinition. 7213 Diag(Loc, diag::err_redefinition_different_kind) 7214 << II; 7215 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 7216 IsInvalid = true; 7217 // Continue on to push Namespc as current DeclContext and return it. 7218 } else if (II->isStr("std") && 7219 CurContext->getRedeclContext()->isTranslationUnit()) { 7220 // This is the first "real" definition of the namespace "std", so update 7221 // our cache of the "std" namespace to point at this definition. 7222 PrevNS = getStdNamespace(); 7223 IsStd = true; 7224 AddToKnown = !IsInline; 7225 } else { 7226 // We've seen this namespace for the first time. 7227 AddToKnown = !IsInline; 7228 } 7229 } else { 7230 // Anonymous namespaces. 7231 7232 // Determine whether the parent already has an anonymous namespace. 7233 DeclContext *Parent = CurContext->getRedeclContext(); 7234 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7235 PrevNS = TU->getAnonymousNamespace(); 7236 } else { 7237 NamespaceDecl *ND = cast<NamespaceDecl>(Parent); 7238 PrevNS = ND->getAnonymousNamespace(); 7239 } 7240 7241 if (PrevNS && IsInline != PrevNS->isInline()) 7242 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II, 7243 &IsInline, PrevNS); 7244 } 7245 7246 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline, 7247 StartLoc, Loc, II, PrevNS); 7248 if (IsInvalid) 7249 Namespc->setInvalidDecl(); 7250 7251 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList); 7252 7253 // FIXME: Should we be merging attributes? 7254 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>()) 7255 PushNamespaceVisibilityAttr(Attr, Loc); 7256 7257 if (IsStd) 7258 StdNamespace = Namespc; 7259 if (AddToKnown) 7260 KnownNamespaces[Namespc] = false; 7261 7262 if (II) { 7263 PushOnScopeChains(Namespc, DeclRegionScope); 7264 } else { 7265 // Link the anonymous namespace into its parent. 7266 DeclContext *Parent = CurContext->getRedeclContext(); 7267 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7268 TU->setAnonymousNamespace(Namespc); 7269 } else { 7270 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc); 7271 } 7272 7273 CurContext->addDecl(Namespc); 7274 7275 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition 7276 // behaves as if it were replaced by 7277 // namespace unique { /* empty body */ } 7278 // using namespace unique; 7279 // namespace unique { namespace-body } 7280 // where all occurrences of 'unique' in a translation unit are 7281 // replaced by the same identifier and this identifier differs 7282 // from all other identifiers in the entire program. 7283 7284 // We just create the namespace with an empty name and then add an 7285 // implicit using declaration, just like the standard suggests. 7286 // 7287 // CodeGen enforces the "universally unique" aspect by giving all 7288 // declarations semantically contained within an anonymous 7289 // namespace internal linkage. 7290 7291 if (!PrevNS) { 7292 UD = UsingDirectiveDecl::Create(Context, Parent, 7293 /* 'using' */ LBrace, 7294 /* 'namespace' */ SourceLocation(), 7295 /* qualifier */ NestedNameSpecifierLoc(), 7296 /* identifier */ SourceLocation(), 7297 Namespc, 7298 /* Ancestor */ Parent); 7299 UD->setImplicit(); 7300 Parent->addDecl(UD); 7301 } 7302 } 7303 7304 ActOnDocumentableDecl(Namespc); 7305 7306 // Although we could have an invalid decl (i.e. the namespace name is a 7307 // redefinition), push it as current DeclContext and try to continue parsing. 7308 // FIXME: We should be able to push Namespc here, so that the each DeclContext 7309 // for the namespace has the declarations that showed up in that particular 7310 // namespace definition. 7311 PushDeclContext(NamespcScope, Namespc); 7312 return Namespc; 7313 } 7314 7315 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl 7316 /// is a namespace alias, returns the namespace it points to. 7317 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) { 7318 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D)) 7319 return AD->getNamespace(); 7320 return dyn_cast_or_null<NamespaceDecl>(D); 7321 } 7322 7323 /// ActOnFinishNamespaceDef - This callback is called after a namespace is 7324 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. 7325 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) { 7326 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl); 7327 assert(Namespc && "Invalid parameter, expected NamespaceDecl"); 7328 Namespc->setRBraceLoc(RBrace); 7329 PopDeclContext(); 7330 if (Namespc->hasAttr<VisibilityAttr>()) 7331 PopPragmaVisibility(true, RBrace); 7332 } 7333 7334 CXXRecordDecl *Sema::getStdBadAlloc() const { 7335 return cast_or_null<CXXRecordDecl>( 7336 StdBadAlloc.get(Context.getExternalSource())); 7337 } 7338 7339 NamespaceDecl *Sema::getStdNamespace() const { 7340 return cast_or_null<NamespaceDecl>( 7341 StdNamespace.get(Context.getExternalSource())); 7342 } 7343 7344 /// \brief Retrieve the special "std" namespace, which may require us to 7345 /// implicitly define the namespace. 7346 NamespaceDecl *Sema::getOrCreateStdNamespace() { 7347 if (!StdNamespace) { 7348 // The "std" namespace has not yet been defined, so build one implicitly. 7349 StdNamespace = NamespaceDecl::Create(Context, 7350 Context.getTranslationUnitDecl(), 7351 /*Inline=*/false, 7352 SourceLocation(), SourceLocation(), 7353 &PP.getIdentifierTable().get("std"), 7354 /*PrevDecl=*/nullptr); 7355 getStdNamespace()->setImplicit(true); 7356 } 7357 7358 return getStdNamespace(); 7359 } 7360 7361 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) { 7362 assert(getLangOpts().CPlusPlus && 7363 "Looking for std::initializer_list outside of C++."); 7364 7365 // We're looking for implicit instantiations of 7366 // template <typename E> class std::initializer_list. 7367 7368 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it. 7369 return false; 7370 7371 ClassTemplateDecl *Template = nullptr; 7372 const TemplateArgument *Arguments = nullptr; 7373 7374 if (const RecordType *RT = Ty->getAs<RecordType>()) { 7375 7376 ClassTemplateSpecializationDecl *Specialization = 7377 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()); 7378 if (!Specialization) 7379 return false; 7380 7381 Template = Specialization->getSpecializedTemplate(); 7382 Arguments = Specialization->getTemplateArgs().data(); 7383 } else if (const TemplateSpecializationType *TST = 7384 Ty->getAs<TemplateSpecializationType>()) { 7385 Template = dyn_cast_or_null<ClassTemplateDecl>( 7386 TST->getTemplateName().getAsTemplateDecl()); 7387 Arguments = TST->getArgs(); 7388 } 7389 if (!Template) 7390 return false; 7391 7392 if (!StdInitializerList) { 7393 // Haven't recognized std::initializer_list yet, maybe this is it. 7394 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl(); 7395 if (TemplateClass->getIdentifier() != 7396 &PP.getIdentifierTable().get("initializer_list") || 7397 !getStdNamespace()->InEnclosingNamespaceSetOf( 7398 TemplateClass->getDeclContext())) 7399 return false; 7400 // This is a template called std::initializer_list, but is it the right 7401 // template? 7402 TemplateParameterList *Params = Template->getTemplateParameters(); 7403 if (Params->getMinRequiredArguments() != 1) 7404 return false; 7405 if (!isa<TemplateTypeParmDecl>(Params->getParam(0))) 7406 return false; 7407 7408 // It's the right template. 7409 StdInitializerList = Template; 7410 } 7411 7412 if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl()) 7413 return false; 7414 7415 // This is an instance of std::initializer_list. Find the argument type. 7416 if (Element) 7417 *Element = Arguments[0].getAsType(); 7418 return true; 7419 } 7420 7421 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){ 7422 NamespaceDecl *Std = S.getStdNamespace(); 7423 if (!Std) { 7424 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7425 return nullptr; 7426 } 7427 7428 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), 7429 Loc, Sema::LookupOrdinaryName); 7430 if (!S.LookupQualifiedName(Result, Std)) { 7431 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7432 return nullptr; 7433 } 7434 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>(); 7435 if (!Template) { 7436 Result.suppressDiagnostics(); 7437 // We found something weird. Complain about the first thing we found. 7438 NamedDecl *Found = *Result.begin(); 7439 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list); 7440 return nullptr; 7441 } 7442 7443 // We found some template called std::initializer_list. Now verify that it's 7444 // correct. 7445 TemplateParameterList *Params = Template->getTemplateParameters(); 7446 if (Params->getMinRequiredArguments() != 1 || 7447 !isa<TemplateTypeParmDecl>(Params->getParam(0))) { 7448 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list); 7449 return nullptr; 7450 } 7451 7452 return Template; 7453 } 7454 7455 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) { 7456 if (!StdInitializerList) { 7457 StdInitializerList = LookupStdInitializerList(*this, Loc); 7458 if (!StdInitializerList) 7459 return QualType(); 7460 } 7461 7462 TemplateArgumentListInfo Args(Loc, Loc); 7463 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element), 7464 Context.getTrivialTypeSourceInfo(Element, 7465 Loc))); 7466 return Context.getCanonicalType( 7467 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args)); 7468 } 7469 7470 bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) { 7471 // C++ [dcl.init.list]p2: 7472 // A constructor is an initializer-list constructor if its first parameter 7473 // is of type std::initializer_list<E> or reference to possibly cv-qualified 7474 // std::initializer_list<E> for some type E, and either there are no other 7475 // parameters or else all other parameters have default arguments. 7476 if (Ctor->getNumParams() < 1 || 7477 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg())) 7478 return false; 7479 7480 QualType ArgType = Ctor->getParamDecl(0)->getType(); 7481 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>()) 7482 ArgType = RT->getPointeeType().getUnqualifiedType(); 7483 7484 return isStdInitializerList(ArgType, nullptr); 7485 } 7486 7487 /// \brief Determine whether a using statement is in a context where it will be 7488 /// apply in all contexts. 7489 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) { 7490 switch (CurContext->getDeclKind()) { 7491 case Decl::TranslationUnit: 7492 return true; 7493 case Decl::LinkageSpec: 7494 return IsUsingDirectiveInToplevelContext(CurContext->getParent()); 7495 default: 7496 return false; 7497 } 7498 } 7499 7500 namespace { 7501 7502 // Callback to only accept typo corrections that are namespaces. 7503 class NamespaceValidatorCCC : public CorrectionCandidateCallback { 7504 public: 7505 bool ValidateCandidate(const TypoCorrection &candidate) override { 7506 if (NamedDecl *ND = candidate.getCorrectionDecl()) 7507 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); 7508 return false; 7509 } 7510 }; 7511 7512 } 7513 7514 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, 7515 CXXScopeSpec &SS, 7516 SourceLocation IdentLoc, 7517 IdentifierInfo *Ident) { 7518 R.clear(); 7519 if (TypoCorrection Corrected = 7520 S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS, 7521 llvm::make_unique<NamespaceValidatorCCC>(), 7522 Sema::CTK_ErrorRecovery)) { 7523 if (DeclContext *DC = S.computeDeclContext(SS, false)) { 7524 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); 7525 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 7526 Ident->getName().equals(CorrectedStr); 7527 S.diagnoseTypo(Corrected, 7528 S.PDiag(diag::err_using_directive_member_suggest) 7529 << Ident << DC << DroppedSpecifier << SS.getRange(), 7530 S.PDiag(diag::note_namespace_defined_here)); 7531 } else { 7532 S.diagnoseTypo(Corrected, 7533 S.PDiag(diag::err_using_directive_suggest) << Ident, 7534 S.PDiag(diag::note_namespace_defined_here)); 7535 } 7536 R.addDecl(Corrected.getFoundDecl()); 7537 return true; 7538 } 7539 return false; 7540 } 7541 7542 Decl *Sema::ActOnUsingDirective(Scope *S, 7543 SourceLocation UsingLoc, 7544 SourceLocation NamespcLoc, 7545 CXXScopeSpec &SS, 7546 SourceLocation IdentLoc, 7547 IdentifierInfo *NamespcName, 7548 AttributeList *AttrList) { 7549 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 7550 assert(NamespcName && "Invalid NamespcName."); 7551 assert(IdentLoc.isValid() && "Invalid NamespceName location."); 7552 7553 // This can only happen along a recovery path. 7554 while (S->isTemplateParamScope()) 7555 S = S->getParent(); 7556 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7557 7558 UsingDirectiveDecl *UDir = nullptr; 7559 NestedNameSpecifier *Qualifier = nullptr; 7560 if (SS.isSet()) 7561 Qualifier = SS.getScopeRep(); 7562 7563 // Lookup namespace name. 7564 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); 7565 LookupParsedName(R, S, &SS); 7566 if (R.isAmbiguous()) 7567 return nullptr; 7568 7569 if (R.empty()) { 7570 R.clear(); 7571 // Allow "using namespace std;" or "using namespace ::std;" even if 7572 // "std" hasn't been defined yet, for GCC compatibility. 7573 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) && 7574 NamespcName->isStr("std")) { 7575 Diag(IdentLoc, diag::ext_using_undefined_std); 7576 R.addDecl(getOrCreateStdNamespace()); 7577 R.resolveKind(); 7578 } 7579 // Otherwise, attempt typo correction. 7580 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName); 7581 } 7582 7583 if (!R.empty()) { 7584 NamedDecl *Named = R.getRepresentativeDecl(); 7585 NamespaceDecl *NS = R.getAsSingle<NamespaceDecl>(); 7586 assert(NS && "expected namespace decl"); 7587 7588 // The use of a nested name specifier may trigger deprecation warnings. 7589 DiagnoseUseOfDecl(Named, IdentLoc); 7590 7591 // C++ [namespace.udir]p1: 7592 // A using-directive specifies that the names in the nominated 7593 // namespace can be used in the scope in which the 7594 // using-directive appears after the using-directive. During 7595 // unqualified name lookup (3.4.1), the names appear as if they 7596 // were declared in the nearest enclosing namespace which 7597 // contains both the using-directive and the nominated 7598 // namespace. [Note: in this context, "contains" means "contains 7599 // directly or indirectly". ] 7600 7601 // Find enclosing context containing both using-directive and 7602 // nominated namespace. 7603 DeclContext *CommonAncestor = cast<DeclContext>(NS); 7604 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) 7605 CommonAncestor = CommonAncestor->getParent(); 7606 7607 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, 7608 SS.getWithLocInContext(Context), 7609 IdentLoc, Named, CommonAncestor); 7610 7611 if (IsUsingDirectiveInToplevelContext(CurContext) && 7612 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) { 7613 Diag(IdentLoc, diag::warn_using_directive_in_header); 7614 } 7615 7616 PushUsingDirective(S, UDir); 7617 } else { 7618 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 7619 } 7620 7621 if (UDir) 7622 ProcessDeclAttributeList(S, UDir, AttrList); 7623 7624 return UDir; 7625 } 7626 7627 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { 7628 // If the scope has an associated entity and the using directive is at 7629 // namespace or translation unit scope, add the UsingDirectiveDecl into 7630 // its lookup structure so qualified name lookup can find it. 7631 DeclContext *Ctx = S->getEntity(); 7632 if (Ctx && !Ctx->isFunctionOrMethod()) 7633 Ctx->addDecl(UDir); 7634 else 7635 // Otherwise, it is at block scope. The using-directives will affect lookup 7636 // only to the end of the scope. 7637 S->PushUsingDirective(UDir); 7638 } 7639 7640 7641 Decl *Sema::ActOnUsingDeclaration(Scope *S, 7642 AccessSpecifier AS, 7643 bool HasUsingKeyword, 7644 SourceLocation UsingLoc, 7645 CXXScopeSpec &SS, 7646 UnqualifiedId &Name, 7647 AttributeList *AttrList, 7648 bool HasTypenameKeyword, 7649 SourceLocation TypenameLoc) { 7650 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7651 7652 switch (Name.getKind()) { 7653 case UnqualifiedId::IK_ImplicitSelfParam: 7654 case UnqualifiedId::IK_Identifier: 7655 case UnqualifiedId::IK_OperatorFunctionId: 7656 case UnqualifiedId::IK_LiteralOperatorId: 7657 case UnqualifiedId::IK_ConversionFunctionId: 7658 break; 7659 7660 case UnqualifiedId::IK_ConstructorName: 7661 case UnqualifiedId::IK_ConstructorTemplateId: 7662 // C++11 inheriting constructors. 7663 Diag(Name.getLocStart(), 7664 getLangOpts().CPlusPlus11 ? 7665 diag::warn_cxx98_compat_using_decl_constructor : 7666 diag::err_using_decl_constructor) 7667 << SS.getRange(); 7668 7669 if (getLangOpts().CPlusPlus11) break; 7670 7671 return nullptr; 7672 7673 case UnqualifiedId::IK_DestructorName: 7674 Diag(Name.getLocStart(), diag::err_using_decl_destructor) 7675 << SS.getRange(); 7676 return nullptr; 7677 7678 case UnqualifiedId::IK_TemplateId: 7679 Diag(Name.getLocStart(), diag::err_using_decl_template_id) 7680 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc); 7681 return nullptr; 7682 } 7683 7684 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); 7685 DeclarationName TargetName = TargetNameInfo.getName(); 7686 if (!TargetName) 7687 return nullptr; 7688 7689 // Warn about access declarations. 7690 if (!HasUsingKeyword) { 7691 Diag(Name.getLocStart(), 7692 getLangOpts().CPlusPlus11 ? diag::err_access_decl 7693 : diag::warn_access_decl_deprecated) 7694 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using "); 7695 } 7696 7697 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) || 7698 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration)) 7699 return nullptr; 7700 7701 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, 7702 TargetNameInfo, AttrList, 7703 /* IsInstantiation */ false, 7704 HasTypenameKeyword, TypenameLoc); 7705 if (UD) 7706 PushOnScopeChains(UD, S, /*AddToContext*/ false); 7707 7708 return UD; 7709 } 7710 7711 /// \brief Determine whether a using declaration considers the given 7712 /// declarations as "equivalent", e.g., if they are redeclarations of 7713 /// the same entity or are both typedefs of the same type. 7714 static bool 7715 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) { 7716 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) 7717 return true; 7718 7719 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1)) 7720 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) 7721 return Context.hasSameType(TD1->getUnderlyingType(), 7722 TD2->getUnderlyingType()); 7723 7724 return false; 7725 } 7726 7727 7728 /// Determines whether to create a using shadow decl for a particular 7729 /// decl, given the set of decls existing prior to this using lookup. 7730 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, 7731 const LookupResult &Previous, 7732 UsingShadowDecl *&PrevShadow) { 7733 // Diagnose finding a decl which is not from a base class of the 7734 // current class. We do this now because there are cases where this 7735 // function will silently decide not to build a shadow decl, which 7736 // will pre-empt further diagnostics. 7737 // 7738 // We don't need to do this in C++0x because we do the check once on 7739 // the qualifier. 7740 // 7741 // FIXME: diagnose the following if we care enough: 7742 // struct A { int foo; }; 7743 // struct B : A { using A::foo; }; 7744 // template <class T> struct C : A {}; 7745 // template <class T> struct D : C<T> { using B::foo; } // <--- 7746 // This is invalid (during instantiation) in C++03 because B::foo 7747 // resolves to the using decl in B, which is not a base class of D<T>. 7748 // We can't diagnose it immediately because C<T> is an unknown 7749 // specialization. The UsingShadowDecl in D<T> then points directly 7750 // to A::foo, which will look well-formed when we instantiate. 7751 // The right solution is to not collapse the shadow-decl chain. 7752 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) { 7753 DeclContext *OrigDC = Orig->getDeclContext(); 7754 7755 // Handle enums and anonymous structs. 7756 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent(); 7757 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC); 7758 while (OrigRec->isAnonymousStructOrUnion()) 7759 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext()); 7760 7761 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) { 7762 if (OrigDC == CurContext) { 7763 Diag(Using->getLocation(), 7764 diag::err_using_decl_nested_name_specifier_is_current_class) 7765 << Using->getQualifierLoc().getSourceRange(); 7766 Diag(Orig->getLocation(), diag::note_using_decl_target); 7767 return true; 7768 } 7769 7770 Diag(Using->getQualifierLoc().getBeginLoc(), 7771 diag::err_using_decl_nested_name_specifier_is_not_base_class) 7772 << Using->getQualifier() 7773 << cast<CXXRecordDecl>(CurContext) 7774 << Using->getQualifierLoc().getSourceRange(); 7775 Diag(Orig->getLocation(), diag::note_using_decl_target); 7776 return true; 7777 } 7778 } 7779 7780 if (Previous.empty()) return false; 7781 7782 NamedDecl *Target = Orig; 7783 if (isa<UsingShadowDecl>(Target)) 7784 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7785 7786 // If the target happens to be one of the previous declarations, we 7787 // don't have a conflict. 7788 // 7789 // FIXME: but we might be increasing its access, in which case we 7790 // should redeclare it. 7791 NamedDecl *NonTag = nullptr, *Tag = nullptr; 7792 bool FoundEquivalentDecl = false; 7793 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7794 I != E; ++I) { 7795 NamedDecl *D = (*I)->getUnderlyingDecl(); 7796 if (IsEquivalentForUsingDecl(Context, D, Target)) { 7797 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I)) 7798 PrevShadow = Shadow; 7799 FoundEquivalentDecl = true; 7800 } else if (isEquivalentInternalLinkageDeclaration(D, Target)) { 7801 // We don't conflict with an existing using shadow decl of an equivalent 7802 // declaration, but we're not a redeclaration of it. 7803 FoundEquivalentDecl = true; 7804 } 7805 7806 if (isVisible(D)) 7807 (isa<TagDecl>(D) ? Tag : NonTag) = D; 7808 } 7809 7810 if (FoundEquivalentDecl) 7811 return false; 7812 7813 if (FunctionDecl *FD = Target->getAsFunction()) { 7814 NamedDecl *OldDecl = nullptr; 7815 switch (CheckOverload(nullptr, FD, Previous, OldDecl, 7816 /*IsForUsingDecl*/ true)) { 7817 case Ovl_Overload: 7818 return false; 7819 7820 case Ovl_NonFunction: 7821 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7822 break; 7823 7824 // We found a decl with the exact signature. 7825 case Ovl_Match: 7826 // If we're in a record, we want to hide the target, so we 7827 // return true (without a diagnostic) to tell the caller not to 7828 // build a shadow decl. 7829 if (CurContext->isRecord()) 7830 return true; 7831 7832 // If we're not in a record, this is an error. 7833 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7834 break; 7835 } 7836 7837 Diag(Target->getLocation(), diag::note_using_decl_target); 7838 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict); 7839 return true; 7840 } 7841 7842 // Target is not a function. 7843 7844 if (isa<TagDecl>(Target)) { 7845 // No conflict between a tag and a non-tag. 7846 if (!Tag) return false; 7847 7848 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7849 Diag(Target->getLocation(), diag::note_using_decl_target); 7850 Diag(Tag->getLocation(), diag::note_using_decl_conflict); 7851 return true; 7852 } 7853 7854 // No conflict between a tag and a non-tag. 7855 if (!NonTag) return false; 7856 7857 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7858 Diag(Target->getLocation(), diag::note_using_decl_target); 7859 Diag(NonTag->getLocation(), diag::note_using_decl_conflict); 7860 return true; 7861 } 7862 7863 /// Builds a shadow declaration corresponding to a 'using' declaration. 7864 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S, 7865 UsingDecl *UD, 7866 NamedDecl *Orig, 7867 UsingShadowDecl *PrevDecl) { 7868 7869 // If we resolved to another shadow declaration, just coalesce them. 7870 NamedDecl *Target = Orig; 7871 if (isa<UsingShadowDecl>(Target)) { 7872 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7873 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration"); 7874 } 7875 7876 UsingShadowDecl *Shadow 7877 = UsingShadowDecl::Create(Context, CurContext, 7878 UD->getLocation(), UD, Target); 7879 UD->addShadowDecl(Shadow); 7880 7881 Shadow->setAccess(UD->getAccess()); 7882 if (Orig->isInvalidDecl() || UD->isInvalidDecl()) 7883 Shadow->setInvalidDecl(); 7884 7885 Shadow->setPreviousDecl(PrevDecl); 7886 7887 if (S) 7888 PushOnScopeChains(Shadow, S); 7889 else 7890 CurContext->addDecl(Shadow); 7891 7892 7893 return Shadow; 7894 } 7895 7896 /// Hides a using shadow declaration. This is required by the current 7897 /// using-decl implementation when a resolvable using declaration in a 7898 /// class is followed by a declaration which would hide or override 7899 /// one or more of the using decl's targets; for example: 7900 /// 7901 /// struct Base { void foo(int); }; 7902 /// struct Derived : Base { 7903 /// using Base::foo; 7904 /// void foo(int); 7905 /// }; 7906 /// 7907 /// The governing language is C++03 [namespace.udecl]p12: 7908 /// 7909 /// When a using-declaration brings names from a base class into a 7910 /// derived class scope, member functions in the derived class 7911 /// override and/or hide member functions with the same name and 7912 /// parameter types in a base class (rather than conflicting). 7913 /// 7914 /// There are two ways to implement this: 7915 /// (1) optimistically create shadow decls when they're not hidden 7916 /// by existing declarations, or 7917 /// (2) don't create any shadow decls (or at least don't make them 7918 /// visible) until we've fully parsed/instantiated the class. 7919 /// The problem with (1) is that we might have to retroactively remove 7920 /// a shadow decl, which requires several O(n) operations because the 7921 /// decl structures are (very reasonably) not designed for removal. 7922 /// (2) avoids this but is very fiddly and phase-dependent. 7923 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { 7924 if (Shadow->getDeclName().getNameKind() == 7925 DeclarationName::CXXConversionFunctionName) 7926 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); 7927 7928 // Remove it from the DeclContext... 7929 Shadow->getDeclContext()->removeDecl(Shadow); 7930 7931 // ...and the scope, if applicable... 7932 if (S) { 7933 S->RemoveDecl(Shadow); 7934 IdResolver.RemoveDecl(Shadow); 7935 } 7936 7937 // ...and the using decl. 7938 Shadow->getUsingDecl()->removeShadowDecl(Shadow); 7939 7940 // TODO: complain somehow if Shadow was used. It shouldn't 7941 // be possible for this to happen, because...? 7942 } 7943 7944 /// Find the base specifier for a base class with the given type. 7945 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived, 7946 QualType DesiredBase, 7947 bool &AnyDependentBases) { 7948 // Check whether the named type is a direct base class. 7949 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified(); 7950 for (auto &Base : Derived->bases()) { 7951 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified(); 7952 if (CanonicalDesiredBase == BaseType) 7953 return &Base; 7954 if (BaseType->isDependentType()) 7955 AnyDependentBases = true; 7956 } 7957 return nullptr; 7958 } 7959 7960 namespace { 7961 class UsingValidatorCCC : public CorrectionCandidateCallback { 7962 public: 7963 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation, 7964 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf) 7965 : HasTypenameKeyword(HasTypenameKeyword), 7966 IsInstantiation(IsInstantiation), OldNNS(NNS), 7967 RequireMemberOf(RequireMemberOf) {} 7968 7969 bool ValidateCandidate(const TypoCorrection &Candidate) override { 7970 NamedDecl *ND = Candidate.getCorrectionDecl(); 7971 7972 // Keywords are not valid here. 7973 if (!ND || isa<NamespaceDecl>(ND)) 7974 return false; 7975 7976 // Completely unqualified names are invalid for a 'using' declaration. 7977 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier()) 7978 return false; 7979 7980 if (RequireMemberOf) { 7981 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 7982 if (FoundRecord && FoundRecord->isInjectedClassName()) { 7983 // No-one ever wants a using-declaration to name an injected-class-name 7984 // of a base class, unless they're declaring an inheriting constructor. 7985 ASTContext &Ctx = ND->getASTContext(); 7986 if (!Ctx.getLangOpts().CPlusPlus11) 7987 return false; 7988 QualType FoundType = Ctx.getRecordType(FoundRecord); 7989 7990 // Check that the injected-class-name is named as a member of its own 7991 // type; we don't want to suggest 'using Derived::Base;', since that 7992 // means something else. 7993 NestedNameSpecifier *Specifier = 7994 Candidate.WillReplaceSpecifier() 7995 ? Candidate.getCorrectionSpecifier() 7996 : OldNNS; 7997 if (!Specifier->getAsType() || 7998 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType)) 7999 return false; 8000 8001 // Check that this inheriting constructor declaration actually names a 8002 // direct base class of the current class. 8003 bool AnyDependentBases = false; 8004 if (!findDirectBaseWithType(RequireMemberOf, 8005 Ctx.getRecordType(FoundRecord), 8006 AnyDependentBases) && 8007 !AnyDependentBases) 8008 return false; 8009 } else { 8010 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext()); 8011 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD)) 8012 return false; 8013 8014 // FIXME: Check that the base class member is accessible? 8015 } 8016 } else { 8017 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 8018 if (FoundRecord && FoundRecord->isInjectedClassName()) 8019 return false; 8020 } 8021 8022 if (isa<TypeDecl>(ND)) 8023 return HasTypenameKeyword || !IsInstantiation; 8024 8025 return !HasTypenameKeyword; 8026 } 8027 8028 private: 8029 bool HasTypenameKeyword; 8030 bool IsInstantiation; 8031 NestedNameSpecifier *OldNNS; 8032 CXXRecordDecl *RequireMemberOf; 8033 }; 8034 } // end anonymous namespace 8035 8036 /// Builds a using declaration. 8037 /// 8038 /// \param IsInstantiation - Whether this call arises from an 8039 /// instantiation of an unresolved using declaration. We treat 8040 /// the lookup differently for these declarations. 8041 NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS, 8042 SourceLocation UsingLoc, 8043 CXXScopeSpec &SS, 8044 DeclarationNameInfo NameInfo, 8045 AttributeList *AttrList, 8046 bool IsInstantiation, 8047 bool HasTypenameKeyword, 8048 SourceLocation TypenameLoc) { 8049 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 8050 SourceLocation IdentLoc = NameInfo.getLoc(); 8051 assert(IdentLoc.isValid() && "Invalid TargetName location."); 8052 8053 // FIXME: We ignore attributes for now. 8054 8055 if (SS.isEmpty()) { 8056 Diag(IdentLoc, diag::err_using_requires_qualname); 8057 return nullptr; 8058 } 8059 8060 // Do the redeclaration lookup in the current scope. 8061 LookupResult Previous(*this, NameInfo, LookupUsingDeclName, 8062 ForRedeclaration); 8063 Previous.setHideTags(false); 8064 if (S) { 8065 LookupName(Previous, S); 8066 8067 // It is really dumb that we have to do this. 8068 LookupResult::Filter F = Previous.makeFilter(); 8069 while (F.hasNext()) { 8070 NamedDecl *D = F.next(); 8071 if (!isDeclInScope(D, CurContext, S)) 8072 F.erase(); 8073 // If we found a local extern declaration that's not ordinarily visible, 8074 // and this declaration is being added to a non-block scope, ignore it. 8075 // We're only checking for scope conflicts here, not also for violations 8076 // of the linkage rules. 8077 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() && 8078 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary)) 8079 F.erase(); 8080 } 8081 F.done(); 8082 } else { 8083 assert(IsInstantiation && "no scope in non-instantiation"); 8084 assert(CurContext->isRecord() && "scope not record in instantiation"); 8085 LookupQualifiedName(Previous, CurContext); 8086 } 8087 8088 // Check for invalid redeclarations. 8089 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, 8090 SS, IdentLoc, Previous)) 8091 return nullptr; 8092 8093 // Check for bad qualifiers. 8094 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) 8095 return nullptr; 8096 8097 DeclContext *LookupContext = computeDeclContext(SS); 8098 NamedDecl *D; 8099 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 8100 if (!LookupContext) { 8101 if (HasTypenameKeyword) { 8102 // FIXME: not all declaration name kinds are legal here 8103 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, 8104 UsingLoc, TypenameLoc, 8105 QualifierLoc, 8106 IdentLoc, NameInfo.getName()); 8107 } else { 8108 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, 8109 QualifierLoc, NameInfo); 8110 } 8111 D->setAccess(AS); 8112 CurContext->addDecl(D); 8113 return D; 8114 } 8115 8116 auto Build = [&](bool Invalid) { 8117 UsingDecl *UD = 8118 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo, 8119 HasTypenameKeyword); 8120 UD->setAccess(AS); 8121 CurContext->addDecl(UD); 8122 UD->setInvalidDecl(Invalid); 8123 return UD; 8124 }; 8125 auto BuildInvalid = [&]{ return Build(true); }; 8126 auto BuildValid = [&]{ return Build(false); }; 8127 8128 if (RequireCompleteDeclContext(SS, LookupContext)) 8129 return BuildInvalid(); 8130 8131 // Look up the target name. 8132 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8133 8134 // Unlike most lookups, we don't always want to hide tag 8135 // declarations: tag names are visible through the using declaration 8136 // even if hidden by ordinary names, *except* in a dependent context 8137 // where it's important for the sanity of two-phase lookup. 8138 if (!IsInstantiation) 8139 R.setHideTags(false); 8140 8141 // For the purposes of this lookup, we have a base object type 8142 // equal to that of the current context. 8143 if (CurContext->isRecord()) { 8144 R.setBaseObjectType( 8145 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext))); 8146 } 8147 8148 LookupQualifiedName(R, LookupContext); 8149 8150 // Try to correct typos if possible. If constructor name lookup finds no 8151 // results, that means the named class has no explicit constructors, and we 8152 // suppressed declaring implicit ones (probably because it's dependent or 8153 // invalid). 8154 if (R.empty() && 8155 NameInfo.getName().getNameKind() != DeclarationName::CXXConstructorName) { 8156 if (TypoCorrection Corrected = CorrectTypo( 8157 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 8158 llvm::make_unique<UsingValidatorCCC>( 8159 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(), 8160 dyn_cast<CXXRecordDecl>(CurContext)), 8161 CTK_ErrorRecovery)) { 8162 // We reject any correction for which ND would be NULL. 8163 NamedDecl *ND = Corrected.getCorrectionDecl(); 8164 8165 // We reject candidates where DroppedSpecifier == true, hence the 8166 // literal '0' below. 8167 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 8168 << NameInfo.getName() << LookupContext << 0 8169 << SS.getRange()); 8170 8171 // If we corrected to an inheriting constructor, handle it as one. 8172 auto *RD = dyn_cast<CXXRecordDecl>(ND); 8173 if (RD && RD->isInjectedClassName()) { 8174 // Fix up the information we'll use to build the using declaration. 8175 if (Corrected.WillReplaceSpecifier()) { 8176 NestedNameSpecifierLocBuilder Builder; 8177 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 8178 QualifierLoc.getSourceRange()); 8179 QualifierLoc = Builder.getWithLocInContext(Context); 8180 } 8181 8182 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 8183 Context.getCanonicalType(Context.getRecordType(RD)))); 8184 NameInfo.setNamedTypeInfo(nullptr); 8185 for (auto *Ctor : LookupConstructors(RD)) 8186 R.addDecl(Ctor); 8187 } else { 8188 // FIXME: Pick up all the declarations if we found an overloaded function. 8189 R.addDecl(ND); 8190 } 8191 } else { 8192 Diag(IdentLoc, diag::err_no_member) 8193 << NameInfo.getName() << LookupContext << SS.getRange(); 8194 return BuildInvalid(); 8195 } 8196 } 8197 8198 if (R.isAmbiguous()) 8199 return BuildInvalid(); 8200 8201 if (HasTypenameKeyword) { 8202 // If we asked for a typename and got a non-type decl, error out. 8203 if (!R.getAsSingle<TypeDecl>()) { 8204 Diag(IdentLoc, diag::err_using_typename_non_type); 8205 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 8206 Diag((*I)->getUnderlyingDecl()->getLocation(), 8207 diag::note_using_decl_target); 8208 return BuildInvalid(); 8209 } 8210 } else { 8211 // If we asked for a non-typename and we got a type, error out, 8212 // but only if this is an instantiation of an unresolved using 8213 // decl. Otherwise just silently find the type name. 8214 if (IsInstantiation && R.getAsSingle<TypeDecl>()) { 8215 Diag(IdentLoc, diag::err_using_dependent_value_is_type); 8216 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target); 8217 return BuildInvalid(); 8218 } 8219 } 8220 8221 // C++0x N2914 [namespace.udecl]p6: 8222 // A using-declaration shall not name a namespace. 8223 if (R.getAsSingle<NamespaceDecl>()) { 8224 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace) 8225 << SS.getRange(); 8226 return BuildInvalid(); 8227 } 8228 8229 UsingDecl *UD = BuildValid(); 8230 8231 // The normal rules do not apply to inheriting constructor declarations. 8232 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) { 8233 // Suppress access diagnostics; the access check is instead performed at the 8234 // point of use for an inheriting constructor. 8235 R.suppressDiagnostics(); 8236 CheckInheritingConstructorUsingDecl(UD); 8237 return UD; 8238 } 8239 8240 // Otherwise, look up the target name. 8241 8242 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 8243 UsingShadowDecl *PrevDecl = nullptr; 8244 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl)) 8245 BuildUsingShadowDecl(S, UD, *I, PrevDecl); 8246 } 8247 8248 return UD; 8249 } 8250 8251 /// Additional checks for a using declaration referring to a constructor name. 8252 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) { 8253 assert(!UD->hasTypename() && "expecting a constructor name"); 8254 8255 const Type *SourceType = UD->getQualifier()->getAsType(); 8256 assert(SourceType && 8257 "Using decl naming constructor doesn't have type in scope spec."); 8258 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext); 8259 8260 // Check whether the named type is a direct base class. 8261 bool AnyDependentBases = false; 8262 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), 8263 AnyDependentBases); 8264 if (!Base && !AnyDependentBases) { 8265 Diag(UD->getUsingLoc(), 8266 diag::err_using_decl_constructor_not_in_direct_base) 8267 << UD->getNameInfo().getSourceRange() 8268 << QualType(SourceType, 0) << TargetClass; 8269 UD->setInvalidDecl(); 8270 return true; 8271 } 8272 8273 if (Base) 8274 Base->setInheritConstructors(); 8275 8276 return false; 8277 } 8278 8279 /// Checks that the given using declaration is not an invalid 8280 /// redeclaration. Note that this is checking only for the using decl 8281 /// itself, not for any ill-formedness among the UsingShadowDecls. 8282 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc, 8283 bool HasTypenameKeyword, 8284 const CXXScopeSpec &SS, 8285 SourceLocation NameLoc, 8286 const LookupResult &Prev) { 8287 // C++03 [namespace.udecl]p8: 8288 // C++0x [namespace.udecl]p10: 8289 // A using-declaration is a declaration and can therefore be used 8290 // repeatedly where (and only where) multiple declarations are 8291 // allowed. 8292 // 8293 // That's in non-member contexts. 8294 if (!CurContext->getRedeclContext()->isRecord()) 8295 return false; 8296 8297 NestedNameSpecifier *Qual = SS.getScopeRep(); 8298 8299 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) { 8300 NamedDecl *D = *I; 8301 8302 bool DTypename; 8303 NestedNameSpecifier *DQual; 8304 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { 8305 DTypename = UD->hasTypename(); 8306 DQual = UD->getQualifier(); 8307 } else if (UnresolvedUsingValueDecl *UD 8308 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 8309 DTypename = false; 8310 DQual = UD->getQualifier(); 8311 } else if (UnresolvedUsingTypenameDecl *UD 8312 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 8313 DTypename = true; 8314 DQual = UD->getQualifier(); 8315 } else continue; 8316 8317 // using decls differ if one says 'typename' and the other doesn't. 8318 // FIXME: non-dependent using decls? 8319 if (HasTypenameKeyword != DTypename) continue; 8320 8321 // using decls differ if they name different scopes (but note that 8322 // template instantiation can cause this check to trigger when it 8323 // didn't before instantiation). 8324 if (Context.getCanonicalNestedNameSpecifier(Qual) != 8325 Context.getCanonicalNestedNameSpecifier(DQual)) 8326 continue; 8327 8328 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange(); 8329 Diag(D->getLocation(), diag::note_using_decl) << 1; 8330 return true; 8331 } 8332 8333 return false; 8334 } 8335 8336 8337 /// Checks that the given nested-name qualifier used in a using decl 8338 /// in the current context is appropriately related to the current 8339 /// scope. If an error is found, diagnoses it and returns true. 8340 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc, 8341 const CXXScopeSpec &SS, 8342 const DeclarationNameInfo &NameInfo, 8343 SourceLocation NameLoc) { 8344 DeclContext *NamedContext = computeDeclContext(SS); 8345 8346 if (!CurContext->isRecord()) { 8347 // C++03 [namespace.udecl]p3: 8348 // C++0x [namespace.udecl]p8: 8349 // A using-declaration for a class member shall be a member-declaration. 8350 8351 // If we weren't able to compute a valid scope, it must be a 8352 // dependent class scope. 8353 if (!NamedContext || NamedContext->isRecord()) { 8354 auto *RD = dyn_cast_or_null<CXXRecordDecl>(NamedContext); 8355 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD)) 8356 RD = nullptr; 8357 8358 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member) 8359 << SS.getRange(); 8360 8361 // If we have a complete, non-dependent source type, try to suggest a 8362 // way to get the same effect. 8363 if (!RD) 8364 return true; 8365 8366 // Find what this using-declaration was referring to. 8367 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8368 R.setHideTags(false); 8369 R.suppressDiagnostics(); 8370 LookupQualifiedName(R, RD); 8371 8372 if (R.getAsSingle<TypeDecl>()) { 8373 if (getLangOpts().CPlusPlus11) { 8374 // Convert 'using X::Y;' to 'using Y = X::Y;'. 8375 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround) 8376 << 0 // alias declaration 8377 << FixItHint::CreateInsertion(SS.getBeginLoc(), 8378 NameInfo.getName().getAsString() + 8379 " = "); 8380 } else { 8381 // Convert 'using X::Y;' to 'typedef X::Y Y;'. 8382 SourceLocation InsertLoc = 8383 getLocForEndOfToken(NameInfo.getLocEnd()); 8384 Diag(InsertLoc, diag::note_using_decl_class_member_workaround) 8385 << 1 // typedef declaration 8386 << FixItHint::CreateReplacement(UsingLoc, "typedef") 8387 << FixItHint::CreateInsertion( 8388 InsertLoc, " " + NameInfo.getName().getAsString()); 8389 } 8390 } else if (R.getAsSingle<VarDecl>()) { 8391 // Don't provide a fixit outside C++11 mode; we don't want to suggest 8392 // repeating the type of the static data member here. 8393 FixItHint FixIt; 8394 if (getLangOpts().CPlusPlus11) { 8395 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 8396 FixIt = FixItHint::CreateReplacement( 8397 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = "); 8398 } 8399 8400 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 8401 << 2 // reference declaration 8402 << FixIt; 8403 } 8404 return true; 8405 } 8406 8407 // Otherwise, everything is known to be fine. 8408 return false; 8409 } 8410 8411 // The current scope is a record. 8412 8413 // If the named context is dependent, we can't decide much. 8414 if (!NamedContext) { 8415 // FIXME: in C++0x, we can diagnose if we can prove that the 8416 // nested-name-specifier does not refer to a base class, which is 8417 // still possible in some cases. 8418 8419 // Otherwise we have to conservatively report that things might be 8420 // okay. 8421 return false; 8422 } 8423 8424 if (!NamedContext->isRecord()) { 8425 // Ideally this would point at the last name in the specifier, 8426 // but we don't have that level of source info. 8427 Diag(SS.getRange().getBegin(), 8428 diag::err_using_decl_nested_name_specifier_is_not_class) 8429 << SS.getScopeRep() << SS.getRange(); 8430 return true; 8431 } 8432 8433 if (!NamedContext->isDependentContext() && 8434 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext)) 8435 return true; 8436 8437 if (getLangOpts().CPlusPlus11) { 8438 // C++0x [namespace.udecl]p3: 8439 // In a using-declaration used as a member-declaration, the 8440 // nested-name-specifier shall name a base class of the class 8441 // being defined. 8442 8443 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom( 8444 cast<CXXRecordDecl>(NamedContext))) { 8445 if (CurContext == NamedContext) { 8446 Diag(NameLoc, 8447 diag::err_using_decl_nested_name_specifier_is_current_class) 8448 << SS.getRange(); 8449 return true; 8450 } 8451 8452 Diag(SS.getRange().getBegin(), 8453 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8454 << SS.getScopeRep() 8455 << cast<CXXRecordDecl>(CurContext) 8456 << SS.getRange(); 8457 return true; 8458 } 8459 8460 return false; 8461 } 8462 8463 // C++03 [namespace.udecl]p4: 8464 // A using-declaration used as a member-declaration shall refer 8465 // to a member of a base class of the class being defined [etc.]. 8466 8467 // Salient point: SS doesn't have to name a base class as long as 8468 // lookup only finds members from base classes. Therefore we can 8469 // diagnose here only if we can prove that that can't happen, 8470 // i.e. if the class hierarchies provably don't intersect. 8471 8472 // TODO: it would be nice if "definitely valid" results were cached 8473 // in the UsingDecl and UsingShadowDecl so that these checks didn't 8474 // need to be repeated. 8475 8476 llvm::SmallPtrSet<const CXXRecordDecl *, 4> Bases; 8477 auto Collect = [&Bases](const CXXRecordDecl *Base) { 8478 Bases.insert(Base); 8479 return true; 8480 }; 8481 8482 // Collect all bases. Return false if we find a dependent base. 8483 if (!cast<CXXRecordDecl>(CurContext)->forallBases(Collect)) 8484 return false; 8485 8486 // Returns true if the base is dependent or is one of the accumulated base 8487 // classes. 8488 auto IsNotBase = [&Bases](const CXXRecordDecl *Base) { 8489 return !Bases.count(Base); 8490 }; 8491 8492 // Return false if the class has a dependent base or if it or one 8493 // of its bases is present in the base set of the current context. 8494 if (Bases.count(cast<CXXRecordDecl>(NamedContext)) || 8495 !cast<CXXRecordDecl>(NamedContext)->forallBases(IsNotBase)) 8496 return false; 8497 8498 Diag(SS.getRange().getBegin(), 8499 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8500 << SS.getScopeRep() 8501 << cast<CXXRecordDecl>(CurContext) 8502 << SS.getRange(); 8503 8504 return true; 8505 } 8506 8507 Decl *Sema::ActOnAliasDeclaration(Scope *S, 8508 AccessSpecifier AS, 8509 MultiTemplateParamsArg TemplateParamLists, 8510 SourceLocation UsingLoc, 8511 UnqualifiedId &Name, 8512 AttributeList *AttrList, 8513 TypeResult Type, 8514 Decl *DeclFromDeclSpec) { 8515 // Skip up to the relevant declaration scope. 8516 while (S->isTemplateParamScope()) 8517 S = S->getParent(); 8518 assert((S->getFlags() & Scope::DeclScope) && 8519 "got alias-declaration outside of declaration scope"); 8520 8521 if (Type.isInvalid()) 8522 return nullptr; 8523 8524 bool Invalid = false; 8525 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name); 8526 TypeSourceInfo *TInfo = nullptr; 8527 GetTypeFromParser(Type.get(), &TInfo); 8528 8529 if (DiagnoseClassNameShadow(CurContext, NameInfo)) 8530 return nullptr; 8531 8532 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo, 8533 UPPC_DeclarationType)) { 8534 Invalid = true; 8535 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 8536 TInfo->getTypeLoc().getBeginLoc()); 8537 } 8538 8539 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration); 8540 LookupName(Previous, S); 8541 8542 // Warn about shadowing the name of a template parameter. 8543 if (Previous.isSingleResult() && 8544 Previous.getFoundDecl()->isTemplateParameter()) { 8545 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl()); 8546 Previous.clear(); 8547 } 8548 8549 assert(Name.Kind == UnqualifiedId::IK_Identifier && 8550 "name in alias declaration must be an identifier"); 8551 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc, 8552 Name.StartLocation, 8553 Name.Identifier, TInfo); 8554 8555 NewTD->setAccess(AS); 8556 8557 if (Invalid) 8558 NewTD->setInvalidDecl(); 8559 8560 ProcessDeclAttributeList(S, NewTD, AttrList); 8561 8562 CheckTypedefForVariablyModifiedType(S, NewTD); 8563 Invalid |= NewTD->isInvalidDecl(); 8564 8565 bool Redeclaration = false; 8566 8567 NamedDecl *NewND; 8568 if (TemplateParamLists.size()) { 8569 TypeAliasTemplateDecl *OldDecl = nullptr; 8570 TemplateParameterList *OldTemplateParams = nullptr; 8571 8572 if (TemplateParamLists.size() != 1) { 8573 Diag(UsingLoc, diag::err_alias_template_extra_headers) 8574 << SourceRange(TemplateParamLists[1]->getTemplateLoc(), 8575 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc()); 8576 } 8577 TemplateParameterList *TemplateParams = TemplateParamLists[0]; 8578 8579 // Only consider previous declarations in the same scope. 8580 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false, 8581 /*ExplicitInstantiationOrSpecialization*/false); 8582 if (!Previous.empty()) { 8583 Redeclaration = true; 8584 8585 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>(); 8586 if (!OldDecl && !Invalid) { 8587 Diag(UsingLoc, diag::err_redefinition_different_kind) 8588 << Name.Identifier; 8589 8590 NamedDecl *OldD = Previous.getRepresentativeDecl(); 8591 if (OldD->getLocation().isValid()) 8592 Diag(OldD->getLocation(), diag::note_previous_definition); 8593 8594 Invalid = true; 8595 } 8596 8597 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) { 8598 if (TemplateParameterListsAreEqual(TemplateParams, 8599 OldDecl->getTemplateParameters(), 8600 /*Complain=*/true, 8601 TPL_TemplateMatch)) 8602 OldTemplateParams = OldDecl->getTemplateParameters(); 8603 else 8604 Invalid = true; 8605 8606 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl(); 8607 if (!Invalid && 8608 !Context.hasSameType(OldTD->getUnderlyingType(), 8609 NewTD->getUnderlyingType())) { 8610 // FIXME: The C++0x standard does not clearly say this is ill-formed, 8611 // but we can't reasonably accept it. 8612 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef) 8613 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType(); 8614 if (OldTD->getLocation().isValid()) 8615 Diag(OldTD->getLocation(), diag::note_previous_definition); 8616 Invalid = true; 8617 } 8618 } 8619 } 8620 8621 // Merge any previous default template arguments into our parameters, 8622 // and check the parameter list. 8623 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams, 8624 TPC_TypeAliasTemplate)) 8625 return nullptr; 8626 8627 TypeAliasTemplateDecl *NewDecl = 8628 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc, 8629 Name.Identifier, TemplateParams, 8630 NewTD); 8631 NewTD->setDescribedAliasTemplate(NewDecl); 8632 8633 NewDecl->setAccess(AS); 8634 8635 if (Invalid) 8636 NewDecl->setInvalidDecl(); 8637 else if (OldDecl) 8638 NewDecl->setPreviousDecl(OldDecl); 8639 8640 NewND = NewDecl; 8641 } else { 8642 if (auto *TD = dyn_cast_or_null<TagDecl>(DeclFromDeclSpec)) { 8643 setTagNameForLinkagePurposes(TD, NewTD); 8644 handleTagNumbering(TD, S); 8645 } 8646 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration); 8647 NewND = NewTD; 8648 } 8649 8650 if (!Redeclaration) 8651 PushOnScopeChains(NewND, S); 8652 8653 ActOnDocumentableDecl(NewND); 8654 return NewND; 8655 } 8656 8657 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, 8658 SourceLocation AliasLoc, 8659 IdentifierInfo *Alias, CXXScopeSpec &SS, 8660 SourceLocation IdentLoc, 8661 IdentifierInfo *Ident) { 8662 8663 // Lookup the namespace name. 8664 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName); 8665 LookupParsedName(R, S, &SS); 8666 8667 if (R.isAmbiguous()) 8668 return nullptr; 8669 8670 if (R.empty()) { 8671 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) { 8672 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 8673 return nullptr; 8674 } 8675 } 8676 assert(!R.isAmbiguous() && !R.empty()); 8677 NamedDecl *ND = R.getRepresentativeDecl(); 8678 8679 // Check if we have a previous declaration with the same name. 8680 LookupResult PrevR(*this, Alias, AliasLoc, LookupOrdinaryName, 8681 ForRedeclaration); 8682 LookupName(PrevR, S); 8683 8684 // Check we're not shadowing a template parameter. 8685 if (PrevR.isSingleResult() && PrevR.getFoundDecl()->isTemplateParameter()) { 8686 DiagnoseTemplateParameterShadow(AliasLoc, PrevR.getFoundDecl()); 8687 PrevR.clear(); 8688 } 8689 8690 // Filter out any other lookup result from an enclosing scope. 8691 FilterLookupForScope(PrevR, CurContext, S, /*ConsiderLinkage*/false, 8692 /*AllowInlineNamespace*/false); 8693 8694 // Find the previous declaration and check that we can redeclare it. 8695 NamespaceAliasDecl *Prev = nullptr; 8696 if (PrevR.isSingleResult()) { 8697 NamedDecl *PrevDecl = PrevR.getRepresentativeDecl(); 8698 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) { 8699 // We already have an alias with the same name that points to the same 8700 // namespace; check that it matches. 8701 if (AD->getNamespace()->Equals(getNamespaceDecl(ND))) { 8702 Prev = AD; 8703 } else if (isVisible(PrevDecl)) { 8704 Diag(AliasLoc, diag::err_redefinition_different_namespace_alias) 8705 << Alias; 8706 Diag(AD->getLocation(), diag::note_previous_namespace_alias) 8707 << AD->getNamespace(); 8708 return nullptr; 8709 } 8710 } else if (isVisible(PrevDecl)) { 8711 unsigned DiagID = isa<NamespaceDecl>(PrevDecl->getUnderlyingDecl()) 8712 ? diag::err_redefinition 8713 : diag::err_redefinition_different_kind; 8714 Diag(AliasLoc, DiagID) << Alias; 8715 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 8716 return nullptr; 8717 } 8718 } 8719 8720 // The use of a nested name specifier may trigger deprecation warnings. 8721 DiagnoseUseOfDecl(ND, IdentLoc); 8722 8723 NamespaceAliasDecl *AliasDecl = 8724 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc, 8725 Alias, SS.getWithLocInContext(Context), 8726 IdentLoc, ND); 8727 if (Prev) 8728 AliasDecl->setPreviousDecl(Prev); 8729 8730 PushOnScopeChains(AliasDecl, S); 8731 return AliasDecl; 8732 } 8733 8734 Sema::ImplicitExceptionSpecification 8735 Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc, 8736 CXXMethodDecl *MD) { 8737 CXXRecordDecl *ClassDecl = MD->getParent(); 8738 8739 // C++ [except.spec]p14: 8740 // An implicitly declared special member function (Clause 12) shall have an 8741 // exception-specification. [...] 8742 ImplicitExceptionSpecification ExceptSpec(*this); 8743 if (ClassDecl->isInvalidDecl()) 8744 return ExceptSpec; 8745 8746 // Direct base-class constructors. 8747 for (const auto &B : ClassDecl->bases()) { 8748 if (B.isVirtual()) // Handled below. 8749 continue; 8750 8751 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8752 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8753 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8754 // If this is a deleted function, add it anyway. This might be conformant 8755 // with the standard. This might not. I'm not sure. It might not matter. 8756 if (Constructor) 8757 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8758 } 8759 } 8760 8761 // Virtual base-class constructors. 8762 for (const auto &B : ClassDecl->vbases()) { 8763 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8764 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8765 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8766 // If this is a deleted function, add it anyway. This might be conformant 8767 // with the standard. This might not. I'm not sure. It might not matter. 8768 if (Constructor) 8769 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8770 } 8771 } 8772 8773 // Field constructors. 8774 for (const auto *F : ClassDecl->fields()) { 8775 if (F->hasInClassInitializer()) { 8776 if (Expr *E = F->getInClassInitializer()) 8777 ExceptSpec.CalledExpr(E); 8778 } else if (const RecordType *RecordTy 8779 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8780 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8781 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8782 // If this is a deleted function, add it anyway. This might be conformant 8783 // with the standard. This might not. I'm not sure. It might not matter. 8784 // In particular, the problem is that this function never gets called. It 8785 // might just be ill-formed because this function attempts to refer to 8786 // a deleted function here. 8787 if (Constructor) 8788 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8789 } 8790 } 8791 8792 return ExceptSpec; 8793 } 8794 8795 Sema::ImplicitExceptionSpecification 8796 Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) { 8797 CXXRecordDecl *ClassDecl = CD->getParent(); 8798 8799 // C++ [except.spec]p14: 8800 // An inheriting constructor [...] shall have an exception-specification. [...] 8801 ImplicitExceptionSpecification ExceptSpec(*this); 8802 if (ClassDecl->isInvalidDecl()) 8803 return ExceptSpec; 8804 8805 // Inherited constructor. 8806 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor(); 8807 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent(); 8808 // FIXME: Copying or moving the parameters could add extra exceptions to the 8809 // set, as could the default arguments for the inherited constructor. This 8810 // will be addressed when we implement the resolution of core issue 1351. 8811 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD); 8812 8813 // Direct base-class constructors. 8814 for (const auto &B : ClassDecl->bases()) { 8815 if (B.isVirtual()) // Handled below. 8816 continue; 8817 8818 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8819 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8820 if (BaseClassDecl == InheritedDecl) 8821 continue; 8822 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8823 if (Constructor) 8824 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8825 } 8826 } 8827 8828 // Virtual base-class constructors. 8829 for (const auto &B : ClassDecl->vbases()) { 8830 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8831 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8832 if (BaseClassDecl == InheritedDecl) 8833 continue; 8834 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8835 if (Constructor) 8836 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8837 } 8838 } 8839 8840 // Field constructors. 8841 for (const auto *F : ClassDecl->fields()) { 8842 if (F->hasInClassInitializer()) { 8843 if (Expr *E = F->getInClassInitializer()) 8844 ExceptSpec.CalledExpr(E); 8845 } else if (const RecordType *RecordTy 8846 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8847 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8848 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8849 if (Constructor) 8850 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8851 } 8852 } 8853 8854 return ExceptSpec; 8855 } 8856 8857 namespace { 8858 /// RAII object to register a special member as being currently declared. 8859 struct DeclaringSpecialMember { 8860 Sema &S; 8861 Sema::SpecialMemberDecl D; 8862 bool WasAlreadyBeingDeclared; 8863 8864 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM) 8865 : S(S), D(RD, CSM) { 8866 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second; 8867 if (WasAlreadyBeingDeclared) 8868 // This almost never happens, but if it does, ensure that our cache 8869 // doesn't contain a stale result. 8870 S.SpecialMemberCache.clear(); 8871 8872 // FIXME: Register a note to be produced if we encounter an error while 8873 // declaring the special member. 8874 } 8875 ~DeclaringSpecialMember() { 8876 if (!WasAlreadyBeingDeclared) 8877 S.SpecialMembersBeingDeclared.erase(D); 8878 } 8879 8880 /// \brief Are we already trying to declare this special member? 8881 bool isAlreadyBeingDeclared() const { 8882 return WasAlreadyBeingDeclared; 8883 } 8884 }; 8885 } 8886 8887 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor( 8888 CXXRecordDecl *ClassDecl) { 8889 // C++ [class.ctor]p5: 8890 // A default constructor for a class X is a constructor of class X 8891 // that can be called without an argument. If there is no 8892 // user-declared constructor for class X, a default constructor is 8893 // implicitly declared. An implicitly-declared default constructor 8894 // is an inline public member of its class. 8895 assert(ClassDecl->needsImplicitDefaultConstructor() && 8896 "Should not build implicit default constructor!"); 8897 8898 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor); 8899 if (DSM.isAlreadyBeingDeclared()) 8900 return nullptr; 8901 8902 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 8903 CXXDefaultConstructor, 8904 false); 8905 8906 // Create the actual constructor declaration. 8907 CanQualType ClassType 8908 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 8909 SourceLocation ClassLoc = ClassDecl->getLocation(); 8910 DeclarationName Name 8911 = Context.DeclarationNames.getCXXConstructorName(ClassType); 8912 DeclarationNameInfo NameInfo(Name, ClassLoc); 8913 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( 8914 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), 8915 /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true, 8916 /*isImplicitlyDeclared=*/true, Constexpr); 8917 DefaultCon->setAccess(AS_public); 8918 DefaultCon->setDefaulted(); 8919 8920 if (getLangOpts().CUDA) { 8921 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor, 8922 DefaultCon, 8923 /* ConstRHS */ false, 8924 /* Diagnose */ false); 8925 } 8926 8927 // Build an exception specification pointing back at this constructor. 8928 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon); 8929 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 8930 8931 // We don't need to use SpecialMemberIsTrivial here; triviality for default 8932 // constructors is easy to compute. 8933 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); 8934 8935 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) 8936 SetDeclDeleted(DefaultCon, ClassLoc); 8937 8938 // Note that we have declared this constructor. 8939 ++ASTContext::NumImplicitDefaultConstructorsDeclared; 8940 8941 if (Scope *S = getScopeForContext(ClassDecl)) 8942 PushOnScopeChains(DefaultCon, S, false); 8943 ClassDecl->addDecl(DefaultCon); 8944 8945 return DefaultCon; 8946 } 8947 8948 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, 8949 CXXConstructorDecl *Constructor) { 8950 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() && 8951 !Constructor->doesThisDeclarationHaveABody() && 8952 !Constructor->isDeleted()) && 8953 "DefineImplicitDefaultConstructor - call it for implicit default ctor"); 8954 8955 CXXRecordDecl *ClassDecl = Constructor->getParent(); 8956 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor"); 8957 8958 SynthesizedFunctionScope Scope(*this, Constructor); 8959 DiagnosticErrorTrap Trap(Diags); 8960 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 8961 Trap.hasErrorOccurred()) { 8962 Diag(CurrentLocation, diag::note_member_synthesized_at) 8963 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl); 8964 Constructor->setInvalidDecl(); 8965 return; 8966 } 8967 8968 // The exception specification is needed because we are defining the 8969 // function. 8970 ResolveExceptionSpec(CurrentLocation, 8971 Constructor->getType()->castAs<FunctionProtoType>()); 8972 8973 SourceLocation Loc = Constructor->getLocEnd().isValid() 8974 ? Constructor->getLocEnd() 8975 : Constructor->getLocation(); 8976 Constructor->setBody(new (Context) CompoundStmt(Loc)); 8977 8978 Constructor->markUsed(Context); 8979 MarkVTableUsed(CurrentLocation, ClassDecl); 8980 8981 if (ASTMutationListener *L = getASTMutationListener()) { 8982 L->CompletedImplicitDefinition(Constructor); 8983 } 8984 8985 DiagnoseUninitializedFields(*this, Constructor); 8986 } 8987 8988 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) { 8989 // Perform any delayed checks on exception specifications. 8990 CheckDelayedMemberExceptionSpecs(); 8991 } 8992 8993 namespace { 8994 /// Information on inheriting constructors to declare. 8995 class InheritingConstructorInfo { 8996 public: 8997 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived) 8998 : SemaRef(SemaRef), Derived(Derived) { 8999 // Mark the constructors that we already have in the derived class. 9000 // 9001 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...] 9002 // unless there is a user-declared constructor with the same signature in 9003 // the class where the using-declaration appears. 9004 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived); 9005 } 9006 9007 void inheritAll(CXXRecordDecl *RD) { 9008 visitAll(RD, &InheritingConstructorInfo::inherit); 9009 } 9010 9011 private: 9012 /// Information about an inheriting constructor. 9013 struct InheritingConstructor { 9014 InheritingConstructor() 9015 : DeclaredInDerived(false), BaseCtor(nullptr), DerivedCtor(nullptr) {} 9016 9017 /// If \c true, a constructor with this signature is already declared 9018 /// in the derived class. 9019 bool DeclaredInDerived; 9020 9021 /// The constructor which is inherited. 9022 const CXXConstructorDecl *BaseCtor; 9023 9024 /// The derived constructor we declared. 9025 CXXConstructorDecl *DerivedCtor; 9026 }; 9027 9028 /// Inheriting constructors with a given canonical type. There can be at 9029 /// most one such non-template constructor, and any number of templated 9030 /// constructors. 9031 struct InheritingConstructorsForType { 9032 InheritingConstructor NonTemplate; 9033 SmallVector<std::pair<TemplateParameterList *, InheritingConstructor>, 4> 9034 Templates; 9035 9036 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) { 9037 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) { 9038 TemplateParameterList *ParamList = FTD->getTemplateParameters(); 9039 for (unsigned I = 0, N = Templates.size(); I != N; ++I) 9040 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first, 9041 false, S.TPL_TemplateMatch)) 9042 return Templates[I].second; 9043 Templates.push_back(std::make_pair(ParamList, InheritingConstructor())); 9044 return Templates.back().second; 9045 } 9046 9047 return NonTemplate; 9048 } 9049 }; 9050 9051 /// Get or create the inheriting constructor record for a constructor. 9052 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor, 9053 QualType CtorType) { 9054 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()] 9055 .getEntry(SemaRef, Ctor); 9056 } 9057 9058 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*); 9059 9060 /// Process all constructors for a class. 9061 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) { 9062 for (const auto *Ctor : RD->ctors()) 9063 (this->*Callback)(Ctor); 9064 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> 9065 I(RD->decls_begin()), E(RD->decls_end()); 9066 I != E; ++I) { 9067 const FunctionDecl *FD = (*I)->getTemplatedDecl(); 9068 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) 9069 (this->*Callback)(CD); 9070 } 9071 } 9072 9073 /// Note that a constructor (or constructor template) was declared in Derived. 9074 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) { 9075 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true; 9076 } 9077 9078 /// Inherit a single constructor. 9079 void inherit(const CXXConstructorDecl *Ctor) { 9080 const FunctionProtoType *CtorType = 9081 Ctor->getType()->castAs<FunctionProtoType>(); 9082 ArrayRef<QualType> ArgTypes = CtorType->getParamTypes(); 9083 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo(); 9084 9085 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent()); 9086 9087 // Core issue (no number yet): the ellipsis is always discarded. 9088 if (EPI.Variadic) { 9089 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis); 9090 SemaRef.Diag(Ctor->getLocation(), 9091 diag::note_using_decl_constructor_ellipsis); 9092 EPI.Variadic = false; 9093 } 9094 9095 // Declare a constructor for each number of parameters. 9096 // 9097 // C++11 [class.inhctor]p1: 9098 // The candidate set of inherited constructors from the class X named in 9099 // the using-declaration consists of [... modulo defects ...] for each 9100 // constructor or constructor template of X, the set of constructors or 9101 // constructor templates that results from omitting any ellipsis parameter 9102 // specification and successively omitting parameters with a default 9103 // argument from the end of the parameter-type-list 9104 unsigned MinParams = minParamsToInherit(Ctor); 9105 unsigned Params = Ctor->getNumParams(); 9106 if (Params >= MinParams) { 9107 do 9108 declareCtor(UsingLoc, Ctor, 9109 SemaRef.Context.getFunctionType( 9110 Ctor->getReturnType(), ArgTypes.slice(0, Params), EPI)); 9111 while (Params > MinParams && 9112 Ctor->getParamDecl(--Params)->hasDefaultArg()); 9113 } 9114 } 9115 9116 /// Find the using-declaration which specified that we should inherit the 9117 /// constructors of \p Base. 9118 SourceLocation getUsingLoc(const CXXRecordDecl *Base) { 9119 // No fancy lookup required; just look for the base constructor name 9120 // directly within the derived class. 9121 ASTContext &Context = SemaRef.Context; 9122 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9123 Context.getCanonicalType(Context.getRecordType(Base))); 9124 DeclContext::lookup_result Decls = Derived->lookup(Name); 9125 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation(); 9126 } 9127 9128 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) { 9129 // C++11 [class.inhctor]p3: 9130 // [F]or each constructor template in the candidate set of inherited 9131 // constructors, a constructor template is implicitly declared 9132 if (Ctor->getDescribedFunctionTemplate()) 9133 return 0; 9134 9135 // For each non-template constructor in the candidate set of inherited 9136 // constructors other than a constructor having no parameters or a 9137 // copy/move constructor having a single parameter, a constructor is 9138 // implicitly declared [...] 9139 if (Ctor->getNumParams() == 0) 9140 return 1; 9141 if (Ctor->isCopyOrMoveConstructor()) 9142 return 2; 9143 9144 // Per discussion on core reflector, never inherit a constructor which 9145 // would become a default, copy, or move constructor of Derived either. 9146 const ParmVarDecl *PD = Ctor->getParamDecl(0); 9147 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>(); 9148 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1; 9149 } 9150 9151 /// Declare a single inheriting constructor, inheriting the specified 9152 /// constructor, with the given type. 9153 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor, 9154 QualType DerivedType) { 9155 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType); 9156 9157 // C++11 [class.inhctor]p3: 9158 // ... a constructor is implicitly declared with the same constructor 9159 // characteristics unless there is a user-declared constructor with 9160 // the same signature in the class where the using-declaration appears 9161 if (Entry.DeclaredInDerived) 9162 return; 9163 9164 // C++11 [class.inhctor]p7: 9165 // If two using-declarations declare inheriting constructors with the 9166 // same signature, the program is ill-formed 9167 if (Entry.DerivedCtor) { 9168 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) { 9169 // Only diagnose this once per constructor. 9170 if (Entry.DerivedCtor->isInvalidDecl()) 9171 return; 9172 Entry.DerivedCtor->setInvalidDecl(); 9173 9174 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict); 9175 SemaRef.Diag(BaseCtor->getLocation(), 9176 diag::note_using_decl_constructor_conflict_current_ctor); 9177 SemaRef.Diag(Entry.BaseCtor->getLocation(), 9178 diag::note_using_decl_constructor_conflict_previous_ctor); 9179 SemaRef.Diag(Entry.DerivedCtor->getLocation(), 9180 diag::note_using_decl_constructor_conflict_previous_using); 9181 } else { 9182 // Core issue (no number): if the same inheriting constructor is 9183 // produced by multiple base class constructors from the same base 9184 // class, the inheriting constructor is defined as deleted. 9185 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc); 9186 } 9187 9188 return; 9189 } 9190 9191 ASTContext &Context = SemaRef.Context; 9192 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9193 Context.getCanonicalType(Context.getRecordType(Derived))); 9194 DeclarationNameInfo NameInfo(Name, UsingLoc); 9195 9196 TemplateParameterList *TemplateParams = nullptr; 9197 if (const FunctionTemplateDecl *FTD = 9198 BaseCtor->getDescribedFunctionTemplate()) { 9199 TemplateParams = FTD->getTemplateParameters(); 9200 // We're reusing template parameters from a different DeclContext. This 9201 // is questionable at best, but works out because the template depth in 9202 // both places is guaranteed to be 0. 9203 // FIXME: Rebuild the template parameters in the new context, and 9204 // transform the function type to refer to them. 9205 } 9206 9207 // Build type source info pointing at the using-declaration. This is 9208 // required by template instantiation. 9209 TypeSourceInfo *TInfo = 9210 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc); 9211 FunctionProtoTypeLoc ProtoLoc = 9212 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>(); 9213 9214 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create( 9215 Context, Derived, UsingLoc, NameInfo, DerivedType, 9216 TInfo, BaseCtor->isExplicit(), /*Inline=*/true, 9217 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr()); 9218 9219 // Build an unevaluated exception specification for this constructor. 9220 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>(); 9221 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 9222 EPI.ExceptionSpec.Type = EST_Unevaluated; 9223 EPI.ExceptionSpec.SourceDecl = DerivedCtor; 9224 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(), 9225 FPT->getParamTypes(), EPI)); 9226 9227 // Build the parameter declarations. 9228 SmallVector<ParmVarDecl *, 16> ParamDecls; 9229 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) { 9230 TypeSourceInfo *TInfo = 9231 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc); 9232 ParmVarDecl *PD = ParmVarDecl::Create( 9233 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, 9234 FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr); 9235 PD->setScopeInfo(0, I); 9236 PD->setImplicit(); 9237 ParamDecls.push_back(PD); 9238 ProtoLoc.setParam(I, PD); 9239 } 9240 9241 // Set up the new constructor. 9242 DerivedCtor->setAccess(BaseCtor->getAccess()); 9243 DerivedCtor->setParams(ParamDecls); 9244 DerivedCtor->setInheritedConstructor(BaseCtor); 9245 if (BaseCtor->isDeleted()) 9246 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc); 9247 9248 // If this is a constructor template, build the template declaration. 9249 if (TemplateParams) { 9250 FunctionTemplateDecl *DerivedTemplate = 9251 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name, 9252 TemplateParams, DerivedCtor); 9253 DerivedTemplate->setAccess(BaseCtor->getAccess()); 9254 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate); 9255 Derived->addDecl(DerivedTemplate); 9256 } else { 9257 Derived->addDecl(DerivedCtor); 9258 } 9259 9260 Entry.BaseCtor = BaseCtor; 9261 Entry.DerivedCtor = DerivedCtor; 9262 } 9263 9264 Sema &SemaRef; 9265 CXXRecordDecl *Derived; 9266 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType; 9267 MapType Map; 9268 }; 9269 } 9270 9271 void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) { 9272 // Defer declaring the inheriting constructors until the class is 9273 // instantiated. 9274 if (ClassDecl->isDependentContext()) 9275 return; 9276 9277 // Find base classes from which we might inherit constructors. 9278 SmallVector<CXXRecordDecl*, 4> InheritedBases; 9279 for (const auto &BaseIt : ClassDecl->bases()) 9280 if (BaseIt.getInheritConstructors()) 9281 InheritedBases.push_back(BaseIt.getType()->getAsCXXRecordDecl()); 9282 9283 // Go no further if we're not inheriting any constructors. 9284 if (InheritedBases.empty()) 9285 return; 9286 9287 // Declare the inherited constructors. 9288 InheritingConstructorInfo ICI(*this, ClassDecl); 9289 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I) 9290 ICI.inheritAll(InheritedBases[I]); 9291 } 9292 9293 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation, 9294 CXXConstructorDecl *Constructor) { 9295 CXXRecordDecl *ClassDecl = Constructor->getParent(); 9296 assert(Constructor->getInheritedConstructor() && 9297 !Constructor->doesThisDeclarationHaveABody() && 9298 !Constructor->isDeleted()); 9299 9300 SynthesizedFunctionScope Scope(*this, Constructor); 9301 DiagnosticErrorTrap Trap(Diags); 9302 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 9303 Trap.hasErrorOccurred()) { 9304 Diag(CurrentLocation, diag::note_inhctor_synthesized_at) 9305 << Context.getTagDeclType(ClassDecl); 9306 Constructor->setInvalidDecl(); 9307 return; 9308 } 9309 9310 SourceLocation Loc = Constructor->getLocation(); 9311 Constructor->setBody(new (Context) CompoundStmt(Loc)); 9312 9313 Constructor->markUsed(Context); 9314 MarkVTableUsed(CurrentLocation, ClassDecl); 9315 9316 if (ASTMutationListener *L = getASTMutationListener()) { 9317 L->CompletedImplicitDefinition(Constructor); 9318 } 9319 } 9320 9321 9322 Sema::ImplicitExceptionSpecification 9323 Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) { 9324 CXXRecordDecl *ClassDecl = MD->getParent(); 9325 9326 // C++ [except.spec]p14: 9327 // An implicitly declared special member function (Clause 12) shall have 9328 // an exception-specification. 9329 ImplicitExceptionSpecification ExceptSpec(*this); 9330 if (ClassDecl->isInvalidDecl()) 9331 return ExceptSpec; 9332 9333 // Direct base-class destructors. 9334 for (const auto &B : ClassDecl->bases()) { 9335 if (B.isVirtual()) // Handled below. 9336 continue; 9337 9338 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9339 ExceptSpec.CalledDecl(B.getLocStart(), 9340 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9341 } 9342 9343 // Virtual base-class destructors. 9344 for (const auto &B : ClassDecl->vbases()) { 9345 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9346 ExceptSpec.CalledDecl(B.getLocStart(), 9347 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9348 } 9349 9350 // Field destructors. 9351 for (const auto *F : ClassDecl->fields()) { 9352 if (const RecordType *RecordTy 9353 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) 9354 ExceptSpec.CalledDecl(F->getLocation(), 9355 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl()))); 9356 } 9357 9358 return ExceptSpec; 9359 } 9360 9361 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) { 9362 // C++ [class.dtor]p2: 9363 // If a class has no user-declared destructor, a destructor is 9364 // declared implicitly. An implicitly-declared destructor is an 9365 // inline public member of its class. 9366 assert(ClassDecl->needsImplicitDestructor()); 9367 9368 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor); 9369 if (DSM.isAlreadyBeingDeclared()) 9370 return nullptr; 9371 9372 // Create the actual destructor declaration. 9373 CanQualType ClassType 9374 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 9375 SourceLocation ClassLoc = ClassDecl->getLocation(); 9376 DeclarationName Name 9377 = Context.DeclarationNames.getCXXDestructorName(ClassType); 9378 DeclarationNameInfo NameInfo(Name, ClassLoc); 9379 CXXDestructorDecl *Destructor 9380 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, 9381 QualType(), nullptr, /*isInline=*/true, 9382 /*isImplicitlyDeclared=*/true); 9383 Destructor->setAccess(AS_public); 9384 Destructor->setDefaulted(); 9385 9386 if (getLangOpts().CUDA) { 9387 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor, 9388 Destructor, 9389 /* ConstRHS */ false, 9390 /* Diagnose */ false); 9391 } 9392 9393 // Build an exception specification pointing back at this destructor. 9394 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor); 9395 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9396 9397 AddOverriddenMethods(ClassDecl, Destructor); 9398 9399 // We don't need to use SpecialMemberIsTrivial here; triviality for 9400 // destructors is easy to compute. 9401 Destructor->setTrivial(ClassDecl->hasTrivialDestructor()); 9402 9403 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor)) 9404 SetDeclDeleted(Destructor, ClassLoc); 9405 9406 // Note that we have declared this destructor. 9407 ++ASTContext::NumImplicitDestructorsDeclared; 9408 9409 // Introduce this destructor into its scope. 9410 if (Scope *S = getScopeForContext(ClassDecl)) 9411 PushOnScopeChains(Destructor, S, false); 9412 ClassDecl->addDecl(Destructor); 9413 9414 return Destructor; 9415 } 9416 9417 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation, 9418 CXXDestructorDecl *Destructor) { 9419 assert((Destructor->isDefaulted() && 9420 !Destructor->doesThisDeclarationHaveABody() && 9421 !Destructor->isDeleted()) && 9422 "DefineImplicitDestructor - call it for implicit default dtor"); 9423 CXXRecordDecl *ClassDecl = Destructor->getParent(); 9424 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor"); 9425 9426 if (Destructor->isInvalidDecl()) 9427 return; 9428 9429 SynthesizedFunctionScope Scope(*this, Destructor); 9430 9431 DiagnosticErrorTrap Trap(Diags); 9432 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 9433 Destructor->getParent()); 9434 9435 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) { 9436 Diag(CurrentLocation, diag::note_member_synthesized_at) 9437 << CXXDestructor << Context.getTagDeclType(ClassDecl); 9438 9439 Destructor->setInvalidDecl(); 9440 return; 9441 } 9442 9443 // The exception specification is needed because we are defining the 9444 // function. 9445 ResolveExceptionSpec(CurrentLocation, 9446 Destructor->getType()->castAs<FunctionProtoType>()); 9447 9448 SourceLocation Loc = Destructor->getLocEnd().isValid() 9449 ? Destructor->getLocEnd() 9450 : Destructor->getLocation(); 9451 Destructor->setBody(new (Context) CompoundStmt(Loc)); 9452 Destructor->markUsed(Context); 9453 MarkVTableUsed(CurrentLocation, ClassDecl); 9454 9455 if (ASTMutationListener *L = getASTMutationListener()) { 9456 L->CompletedImplicitDefinition(Destructor); 9457 } 9458 } 9459 9460 /// \brief Perform any semantic analysis which needs to be delayed until all 9461 /// pending class member declarations have been parsed. 9462 void Sema::ActOnFinishCXXMemberDecls() { 9463 // If the context is an invalid C++ class, just suppress these checks. 9464 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) { 9465 if (Record->isInvalidDecl()) { 9466 DelayedDefaultedMemberExceptionSpecs.clear(); 9467 DelayedExceptionSpecChecks.clear(); 9468 return; 9469 } 9470 } 9471 } 9472 9473 static void getDefaultArgExprsForConstructors(Sema &S, CXXRecordDecl *Class) { 9474 // Don't do anything for template patterns. 9475 if (Class->getDescribedClassTemplate()) 9476 return; 9477 9478 CallingConv ExpectedCallingConv = S.Context.getDefaultCallingConvention( 9479 /*IsVariadic=*/false, /*IsCXXMethod=*/true); 9480 9481 CXXConstructorDecl *LastExportedDefaultCtor = nullptr; 9482 for (Decl *Member : Class->decls()) { 9483 auto *CD = dyn_cast<CXXConstructorDecl>(Member); 9484 if (!CD) { 9485 // Recurse on nested classes. 9486 if (auto *NestedRD = dyn_cast<CXXRecordDecl>(Member)) 9487 getDefaultArgExprsForConstructors(S, NestedRD); 9488 continue; 9489 } else if (!CD->isDefaultConstructor() || !CD->hasAttr<DLLExportAttr>()) { 9490 continue; 9491 } 9492 9493 CallingConv ActualCallingConv = 9494 CD->getType()->getAs<FunctionProtoType>()->getCallConv(); 9495 9496 // Skip default constructors with typical calling conventions and no default 9497 // arguments. 9498 unsigned NumParams = CD->getNumParams(); 9499 if (ExpectedCallingConv == ActualCallingConv && NumParams == 0) 9500 continue; 9501 9502 if (LastExportedDefaultCtor) { 9503 S.Diag(LastExportedDefaultCtor->getLocation(), 9504 diag::err_attribute_dll_ambiguous_default_ctor) << Class; 9505 S.Diag(CD->getLocation(), diag::note_entity_declared_at) 9506 << CD->getDeclName(); 9507 return; 9508 } 9509 LastExportedDefaultCtor = CD; 9510 9511 for (unsigned I = 0; I != NumParams; ++I) { 9512 // Skip any default arguments that we've already instantiated. 9513 if (S.Context.getDefaultArgExprForConstructor(CD, I)) 9514 continue; 9515 9516 Expr *DefaultArg = S.BuildCXXDefaultArgExpr(Class->getLocation(), CD, 9517 CD->getParamDecl(I)).get(); 9518 S.DiscardCleanupsInEvaluationContext(); 9519 S.Context.addDefaultArgExprForConstructor(CD, I, DefaultArg); 9520 } 9521 } 9522 } 9523 9524 void Sema::ActOnFinishCXXNonNestedClass(Decl *D) { 9525 auto *RD = dyn_cast<CXXRecordDecl>(D); 9526 9527 // Default constructors that are annotated with __declspec(dllexport) which 9528 // have default arguments or don't use the standard calling convention are 9529 // wrapped with a thunk called the default constructor closure. 9530 if (RD && Context.getTargetInfo().getCXXABI().isMicrosoft()) 9531 getDefaultArgExprsForConstructors(*this, RD); 9532 9533 if (!DelayedDllExportClasses.empty()) { 9534 // Calling ReferenceDllExportedMethods might cause the current function to 9535 // be called again, so use a local copy of DelayedDllExportClasses. 9536 SmallVector<CXXRecordDecl *, 4> WorkList; 9537 std::swap(DelayedDllExportClasses, WorkList); 9538 for (CXXRecordDecl *Class : WorkList) 9539 ReferenceDllExportedMethods(*this, Class); 9540 } 9541 } 9542 9543 void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl, 9544 CXXDestructorDecl *Destructor) { 9545 assert(getLangOpts().CPlusPlus11 && 9546 "adjusting dtor exception specs was introduced in c++11"); 9547 9548 // C++11 [class.dtor]p3: 9549 // A declaration of a destructor that does not have an exception- 9550 // specification is implicitly considered to have the same exception- 9551 // specification as an implicit declaration. 9552 const FunctionProtoType *DtorType = Destructor->getType()-> 9553 getAs<FunctionProtoType>(); 9554 if (DtorType->hasExceptionSpec()) 9555 return; 9556 9557 // Replace the destructor's type, building off the existing one. Fortunately, 9558 // the only thing of interest in the destructor type is its extended info. 9559 // The return and arguments are fixed. 9560 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo(); 9561 EPI.ExceptionSpec.Type = EST_Unevaluated; 9562 EPI.ExceptionSpec.SourceDecl = Destructor; 9563 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9564 9565 // FIXME: If the destructor has a body that could throw, and the newly created 9566 // spec doesn't allow exceptions, we should emit a warning, because this 9567 // change in behavior can break conforming C++03 programs at runtime. 9568 // However, we don't have a body or an exception specification yet, so it 9569 // needs to be done somewhere else. 9570 } 9571 9572 namespace { 9573 /// \brief An abstract base class for all helper classes used in building the 9574 // copy/move operators. These classes serve as factory functions and help us 9575 // avoid using the same Expr* in the AST twice. 9576 class ExprBuilder { 9577 ExprBuilder(const ExprBuilder&) = delete; 9578 ExprBuilder &operator=(const ExprBuilder&) = delete; 9579 9580 protected: 9581 static Expr *assertNotNull(Expr *E) { 9582 assert(E && "Expression construction must not fail."); 9583 return E; 9584 } 9585 9586 public: 9587 ExprBuilder() {} 9588 virtual ~ExprBuilder() {} 9589 9590 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0; 9591 }; 9592 9593 class RefBuilder: public ExprBuilder { 9594 VarDecl *Var; 9595 QualType VarType; 9596 9597 public: 9598 Expr *build(Sema &S, SourceLocation Loc) const override { 9599 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get()); 9600 } 9601 9602 RefBuilder(VarDecl *Var, QualType VarType) 9603 : Var(Var), VarType(VarType) {} 9604 }; 9605 9606 class ThisBuilder: public ExprBuilder { 9607 public: 9608 Expr *build(Sema &S, SourceLocation Loc) const override { 9609 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>()); 9610 } 9611 }; 9612 9613 class CastBuilder: public ExprBuilder { 9614 const ExprBuilder &Builder; 9615 QualType Type; 9616 ExprValueKind Kind; 9617 const CXXCastPath &Path; 9618 9619 public: 9620 Expr *build(Sema &S, SourceLocation Loc) const override { 9621 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type, 9622 CK_UncheckedDerivedToBase, Kind, 9623 &Path).get()); 9624 } 9625 9626 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind, 9627 const CXXCastPath &Path) 9628 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {} 9629 }; 9630 9631 class DerefBuilder: public ExprBuilder { 9632 const ExprBuilder &Builder; 9633 9634 public: 9635 Expr *build(Sema &S, SourceLocation Loc) const override { 9636 return assertNotNull( 9637 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get()); 9638 } 9639 9640 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9641 }; 9642 9643 class MemberBuilder: public ExprBuilder { 9644 const ExprBuilder &Builder; 9645 QualType Type; 9646 CXXScopeSpec SS; 9647 bool IsArrow; 9648 LookupResult &MemberLookup; 9649 9650 public: 9651 Expr *build(Sema &S, SourceLocation Loc) const override { 9652 return assertNotNull(S.BuildMemberReferenceExpr( 9653 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(), 9654 nullptr, MemberLookup, nullptr, nullptr).get()); 9655 } 9656 9657 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow, 9658 LookupResult &MemberLookup) 9659 : Builder(Builder), Type(Type), IsArrow(IsArrow), 9660 MemberLookup(MemberLookup) {} 9661 }; 9662 9663 class MoveCastBuilder: public ExprBuilder { 9664 const ExprBuilder &Builder; 9665 9666 public: 9667 Expr *build(Sema &S, SourceLocation Loc) const override { 9668 return assertNotNull(CastForMoving(S, Builder.build(S, Loc))); 9669 } 9670 9671 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9672 }; 9673 9674 class LvalueConvBuilder: public ExprBuilder { 9675 const ExprBuilder &Builder; 9676 9677 public: 9678 Expr *build(Sema &S, SourceLocation Loc) const override { 9679 return assertNotNull( 9680 S.DefaultLvalueConversion(Builder.build(S, Loc)).get()); 9681 } 9682 9683 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9684 }; 9685 9686 class SubscriptBuilder: public ExprBuilder { 9687 const ExprBuilder &Base; 9688 const ExprBuilder &Index; 9689 9690 public: 9691 Expr *build(Sema &S, SourceLocation Loc) const override { 9692 return assertNotNull(S.CreateBuiltinArraySubscriptExpr( 9693 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get()); 9694 } 9695 9696 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index) 9697 : Base(Base), Index(Index) {} 9698 }; 9699 9700 } // end anonymous namespace 9701 9702 /// When generating a defaulted copy or move assignment operator, if a field 9703 /// should be copied with __builtin_memcpy rather than via explicit assignments, 9704 /// do so. This optimization only applies for arrays of scalars, and for arrays 9705 /// of class type where the selected copy/move-assignment operator is trivial. 9706 static StmtResult 9707 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T, 9708 const ExprBuilder &ToB, const ExprBuilder &FromB) { 9709 // Compute the size of the memory buffer to be copied. 9710 QualType SizeType = S.Context.getSizeType(); 9711 llvm::APInt Size(S.Context.getTypeSize(SizeType), 9712 S.Context.getTypeSizeInChars(T).getQuantity()); 9713 9714 // Take the address of the field references for "from" and "to". We 9715 // directly construct UnaryOperators here because semantic analysis 9716 // does not permit us to take the address of an xvalue. 9717 Expr *From = FromB.build(S, Loc); 9718 From = new (S.Context) UnaryOperator(From, UO_AddrOf, 9719 S.Context.getPointerType(From->getType()), 9720 VK_RValue, OK_Ordinary, Loc); 9721 Expr *To = ToB.build(S, Loc); 9722 To = new (S.Context) UnaryOperator(To, UO_AddrOf, 9723 S.Context.getPointerType(To->getType()), 9724 VK_RValue, OK_Ordinary, Loc); 9725 9726 const Type *E = T->getBaseElementTypeUnsafe(); 9727 bool NeedsCollectableMemCpy = 9728 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember(); 9729 9730 // Create a reference to the __builtin_objc_memmove_collectable function 9731 StringRef MemCpyName = NeedsCollectableMemCpy ? 9732 "__builtin_objc_memmove_collectable" : 9733 "__builtin_memcpy"; 9734 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc, 9735 Sema::LookupOrdinaryName); 9736 S.LookupName(R, S.TUScope, true); 9737 9738 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>(); 9739 if (!MemCpy) 9740 // Something went horribly wrong earlier, and we will have complained 9741 // about it. 9742 return StmtError(); 9743 9744 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy, 9745 VK_RValue, Loc, nullptr); 9746 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail"); 9747 9748 Expr *CallArgs[] = { 9749 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc) 9750 }; 9751 ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(), 9752 Loc, CallArgs, Loc); 9753 9754 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!"); 9755 return Call.getAs<Stmt>(); 9756 } 9757 9758 /// \brief Builds a statement that copies/moves the given entity from \p From to 9759 /// \c To. 9760 /// 9761 /// This routine is used to copy/move the members of a class with an 9762 /// implicitly-declared copy/move assignment operator. When the entities being 9763 /// copied are arrays, this routine builds for loops to copy them. 9764 /// 9765 /// \param S The Sema object used for type-checking. 9766 /// 9767 /// \param Loc The location where the implicit copy/move is being generated. 9768 /// 9769 /// \param T The type of the expressions being copied/moved. Both expressions 9770 /// must have this type. 9771 /// 9772 /// \param To The expression we are copying/moving to. 9773 /// 9774 /// \param From The expression we are copying/moving from. 9775 /// 9776 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject. 9777 /// Otherwise, it's a non-static member subobject. 9778 /// 9779 /// \param Copying Whether we're copying or moving. 9780 /// 9781 /// \param Depth Internal parameter recording the depth of the recursion. 9782 /// 9783 /// \returns A statement or a loop that copies the expressions, or StmtResult(0) 9784 /// if a memcpy should be used instead. 9785 static StmtResult 9786 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T, 9787 const ExprBuilder &To, const ExprBuilder &From, 9788 bool CopyingBaseSubobject, bool Copying, 9789 unsigned Depth = 0) { 9790 // C++11 [class.copy]p28: 9791 // Each subobject is assigned in the manner appropriate to its type: 9792 // 9793 // - if the subobject is of class type, as if by a call to operator= with 9794 // the subobject as the object expression and the corresponding 9795 // subobject of x as a single function argument (as if by explicit 9796 // qualification; that is, ignoring any possible virtual overriding 9797 // functions in more derived classes); 9798 // 9799 // C++03 [class.copy]p13: 9800 // - if the subobject is of class type, the copy assignment operator for 9801 // the class is used (as if by explicit qualification; that is, 9802 // ignoring any possible virtual overriding functions in more derived 9803 // classes); 9804 if (const RecordType *RecordTy = T->getAs<RecordType>()) { 9805 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 9806 9807 // Look for operator=. 9808 DeclarationName Name 9809 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal); 9810 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName); 9811 S.LookupQualifiedName(OpLookup, ClassDecl, false); 9812 9813 // Prior to C++11, filter out any result that isn't a copy/move-assignment 9814 // operator. 9815 if (!S.getLangOpts().CPlusPlus11) { 9816 LookupResult::Filter F = OpLookup.makeFilter(); 9817 while (F.hasNext()) { 9818 NamedDecl *D = F.next(); 9819 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 9820 if (Method->isCopyAssignmentOperator() || 9821 (!Copying && Method->isMoveAssignmentOperator())) 9822 continue; 9823 9824 F.erase(); 9825 } 9826 F.done(); 9827 } 9828 9829 // Suppress the protected check (C++ [class.protected]) for each of the 9830 // assignment operators we found. This strange dance is required when 9831 // we're assigning via a base classes's copy-assignment operator. To 9832 // ensure that we're getting the right base class subobject (without 9833 // ambiguities), we need to cast "this" to that subobject type; to 9834 // ensure that we don't go through the virtual call mechanism, we need 9835 // to qualify the operator= name with the base class (see below). However, 9836 // this means that if the base class has a protected copy assignment 9837 // operator, the protected member access check will fail. So, we 9838 // rewrite "protected" access to "public" access in this case, since we 9839 // know by construction that we're calling from a derived class. 9840 if (CopyingBaseSubobject) { 9841 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end(); 9842 L != LEnd; ++L) { 9843 if (L.getAccess() == AS_protected) 9844 L.setAccess(AS_public); 9845 } 9846 } 9847 9848 // Create the nested-name-specifier that will be used to qualify the 9849 // reference to operator=; this is required to suppress the virtual 9850 // call mechanism. 9851 CXXScopeSpec SS; 9852 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr()); 9853 SS.MakeTrivial(S.Context, 9854 NestedNameSpecifier::Create(S.Context, nullptr, false, 9855 CanonicalT), 9856 Loc); 9857 9858 // Create the reference to operator=. 9859 ExprResult OpEqualRef 9860 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false, 9861 SS, /*TemplateKWLoc=*/SourceLocation(), 9862 /*FirstQualifierInScope=*/nullptr, 9863 OpLookup, 9864 /*TemplateArgs=*/nullptr, /*S*/nullptr, 9865 /*SuppressQualifierCheck=*/true); 9866 if (OpEqualRef.isInvalid()) 9867 return StmtError(); 9868 9869 // Build the call to the assignment operator. 9870 9871 Expr *FromInst = From.build(S, Loc); 9872 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr, 9873 OpEqualRef.getAs<Expr>(), 9874 Loc, FromInst, Loc); 9875 if (Call.isInvalid()) 9876 return StmtError(); 9877 9878 // If we built a call to a trivial 'operator=' while copying an array, 9879 // bail out. We'll replace the whole shebang with a memcpy. 9880 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get()); 9881 if (CE && CE->getMethodDecl()->isTrivial() && Depth) 9882 return StmtResult((Stmt*)nullptr); 9883 9884 // Convert to an expression-statement, and clean up any produced 9885 // temporaries. 9886 return S.ActOnExprStmt(Call); 9887 } 9888 9889 // - if the subobject is of scalar type, the built-in assignment 9890 // operator is used. 9891 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T); 9892 if (!ArrayTy) { 9893 ExprResult Assignment = S.CreateBuiltinBinOp( 9894 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc)); 9895 if (Assignment.isInvalid()) 9896 return StmtError(); 9897 return S.ActOnExprStmt(Assignment); 9898 } 9899 9900 // - if the subobject is an array, each element is assigned, in the 9901 // manner appropriate to the element type; 9902 9903 // Construct a loop over the array bounds, e.g., 9904 // 9905 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0) 9906 // 9907 // that will copy each of the array elements. 9908 QualType SizeType = S.Context.getSizeType(); 9909 9910 // Create the iteration variable. 9911 IdentifierInfo *IterationVarName = nullptr; 9912 { 9913 SmallString<8> Str; 9914 llvm::raw_svector_ostream OS(Str); 9915 OS << "__i" << Depth; 9916 IterationVarName = &S.Context.Idents.get(OS.str()); 9917 } 9918 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, 9919 IterationVarName, SizeType, 9920 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), 9921 SC_None); 9922 9923 // Initialize the iteration variable to zero. 9924 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0); 9925 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc)); 9926 9927 // Creates a reference to the iteration variable. 9928 RefBuilder IterationVarRef(IterationVar, SizeType); 9929 LvalueConvBuilder IterationVarRefRVal(IterationVarRef); 9930 9931 // Create the DeclStmt that holds the iteration variable. 9932 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc); 9933 9934 // Subscript the "from" and "to" expressions with the iteration variable. 9935 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal); 9936 MoveCastBuilder FromIndexMove(FromIndexCopy); 9937 const ExprBuilder *FromIndex; 9938 if (Copying) 9939 FromIndex = &FromIndexCopy; 9940 else 9941 FromIndex = &FromIndexMove; 9942 9943 SubscriptBuilder ToIndex(To, IterationVarRefRVal); 9944 9945 // Build the copy/move for an individual element of the array. 9946 StmtResult Copy = 9947 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(), 9948 ToIndex, *FromIndex, CopyingBaseSubobject, 9949 Copying, Depth + 1); 9950 // Bail out if copying fails or if we determined that we should use memcpy. 9951 if (Copy.isInvalid() || !Copy.get()) 9952 return Copy; 9953 9954 // Create the comparison against the array bound. 9955 llvm::APInt Upper 9956 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType)); 9957 Expr *Comparison 9958 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc), 9959 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc), 9960 BO_NE, S.Context.BoolTy, 9961 VK_RValue, OK_Ordinary, Loc, false); 9962 9963 // Create the pre-increment of the iteration variable. 9964 Expr *Increment 9965 = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc, 9966 SizeType, VK_LValue, OK_Ordinary, Loc); 9967 9968 // Construct the loop that copies all elements of this array. 9969 return S.ActOnForStmt(Loc, Loc, InitStmt, 9970 S.MakeFullExpr(Comparison), 9971 nullptr, S.MakeFullDiscardedValueExpr(Increment), 9972 Loc, Copy.get()); 9973 } 9974 9975 static StmtResult 9976 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T, 9977 const ExprBuilder &To, const ExprBuilder &From, 9978 bool CopyingBaseSubobject, bool Copying) { 9979 // Maybe we should use a memcpy? 9980 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() && 9981 T.isTriviallyCopyableType(S.Context)) 9982 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 9983 9984 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From, 9985 CopyingBaseSubobject, 9986 Copying, 0)); 9987 9988 // If we ended up picking a trivial assignment operator for an array of a 9989 // non-trivially-copyable class type, just emit a memcpy. 9990 if (!Result.isInvalid() && !Result.get()) 9991 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 9992 9993 return Result; 9994 } 9995 9996 Sema::ImplicitExceptionSpecification 9997 Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) { 9998 CXXRecordDecl *ClassDecl = MD->getParent(); 9999 10000 ImplicitExceptionSpecification ExceptSpec(*this); 10001 if (ClassDecl->isInvalidDecl()) 10002 return ExceptSpec; 10003 10004 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 10005 assert(T->getNumParams() == 1 && "not a copy assignment op"); 10006 unsigned ArgQuals = 10007 T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 10008 10009 // C++ [except.spec]p14: 10010 // An implicitly declared special member function (Clause 12) shall have an 10011 // exception-specification. [...] 10012 10013 // It is unspecified whether or not an implicit copy assignment operator 10014 // attempts to deduplicate calls to assignment operators of virtual bases are 10015 // made. As such, this exception specification is effectively unspecified. 10016 // Based on a similar decision made for constness in C++0x, we're erring on 10017 // the side of assuming such calls to be made regardless of whether they 10018 // actually happen. 10019 for (const auto &Base : ClassDecl->bases()) { 10020 if (Base.isVirtual()) 10021 continue; 10022 10023 CXXRecordDecl *BaseClassDecl 10024 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10025 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 10026 ArgQuals, false, 0)) 10027 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 10028 } 10029 10030 for (const auto &Base : ClassDecl->vbases()) { 10031 CXXRecordDecl *BaseClassDecl 10032 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10033 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 10034 ArgQuals, false, 0)) 10035 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 10036 } 10037 10038 for (const auto *Field : ClassDecl->fields()) { 10039 QualType FieldType = Context.getBaseElementType(Field->getType()); 10040 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10041 if (CXXMethodDecl *CopyAssign = 10042 LookupCopyingAssignment(FieldClassDecl, 10043 ArgQuals | FieldType.getCVRQualifiers(), 10044 false, 0)) 10045 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign); 10046 } 10047 } 10048 10049 return ExceptSpec; 10050 } 10051 10052 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) { 10053 // Note: The following rules are largely analoguous to the copy 10054 // constructor rules. Note that virtual bases are not taken into account 10055 // for determining the argument type of the operator. Note also that 10056 // operators taking an object instead of a reference are allowed. 10057 assert(ClassDecl->needsImplicitCopyAssignment()); 10058 10059 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment); 10060 if (DSM.isAlreadyBeingDeclared()) 10061 return nullptr; 10062 10063 QualType ArgType = Context.getTypeDeclType(ClassDecl); 10064 QualType RetType = Context.getLValueReferenceType(ArgType); 10065 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam(); 10066 if (Const) 10067 ArgType = ArgType.withConst(); 10068 ArgType = Context.getLValueReferenceType(ArgType); 10069 10070 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10071 CXXCopyAssignment, 10072 Const); 10073 10074 // An implicitly-declared copy assignment operator is an inline public 10075 // member of its class. 10076 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 10077 SourceLocation ClassLoc = ClassDecl->getLocation(); 10078 DeclarationNameInfo NameInfo(Name, ClassLoc); 10079 CXXMethodDecl *CopyAssignment = 10080 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 10081 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 10082 /*isInline=*/true, Constexpr, SourceLocation()); 10083 CopyAssignment->setAccess(AS_public); 10084 CopyAssignment->setDefaulted(); 10085 CopyAssignment->setImplicit(); 10086 10087 if (getLangOpts().CUDA) { 10088 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment, 10089 CopyAssignment, 10090 /* ConstRHS */ Const, 10091 /* Diagnose */ false); 10092 } 10093 10094 // Build an exception specification pointing back at this member. 10095 FunctionProtoType::ExtProtoInfo EPI = 10096 getImplicitMethodEPI(*this, CopyAssignment); 10097 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 10098 10099 // Add the parameter to the operator. 10100 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment, 10101 ClassLoc, ClassLoc, 10102 /*Id=*/nullptr, ArgType, 10103 /*TInfo=*/nullptr, SC_None, 10104 nullptr); 10105 CopyAssignment->setParams(FromParam); 10106 10107 AddOverriddenMethods(ClassDecl, CopyAssignment); 10108 10109 CopyAssignment->setTrivial( 10110 ClassDecl->needsOverloadResolutionForCopyAssignment() 10111 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment) 10112 : ClassDecl->hasTrivialCopyAssignment()); 10113 10114 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment)) 10115 SetDeclDeleted(CopyAssignment, ClassLoc); 10116 10117 // Note that we have added this copy-assignment operator. 10118 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared; 10119 10120 if (Scope *S = getScopeForContext(ClassDecl)) 10121 PushOnScopeChains(CopyAssignment, S, false); 10122 ClassDecl->addDecl(CopyAssignment); 10123 10124 return CopyAssignment; 10125 } 10126 10127 /// Diagnose an implicit copy operation for a class which is odr-used, but 10128 /// which is deprecated because the class has a user-declared copy constructor, 10129 /// copy assignment operator, or destructor. 10130 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp, 10131 SourceLocation UseLoc) { 10132 assert(CopyOp->isImplicit()); 10133 10134 CXXRecordDecl *RD = CopyOp->getParent(); 10135 CXXMethodDecl *UserDeclaredOperation = nullptr; 10136 10137 // In Microsoft mode, assignment operations don't affect constructors and 10138 // vice versa. 10139 if (RD->hasUserDeclaredDestructor()) { 10140 UserDeclaredOperation = RD->getDestructor(); 10141 } else if (!isa<CXXConstructorDecl>(CopyOp) && 10142 RD->hasUserDeclaredCopyConstructor() && 10143 !S.getLangOpts().MSVCCompat) { 10144 // Find any user-declared copy constructor. 10145 for (auto *I : RD->ctors()) { 10146 if (I->isCopyConstructor()) { 10147 UserDeclaredOperation = I; 10148 break; 10149 } 10150 } 10151 assert(UserDeclaredOperation); 10152 } else if (isa<CXXConstructorDecl>(CopyOp) && 10153 RD->hasUserDeclaredCopyAssignment() && 10154 !S.getLangOpts().MSVCCompat) { 10155 // Find any user-declared move assignment operator. 10156 for (auto *I : RD->methods()) { 10157 if (I->isCopyAssignmentOperator()) { 10158 UserDeclaredOperation = I; 10159 break; 10160 } 10161 } 10162 assert(UserDeclaredOperation); 10163 } 10164 10165 if (UserDeclaredOperation) { 10166 S.Diag(UserDeclaredOperation->getLocation(), 10167 diag::warn_deprecated_copy_operation) 10168 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp) 10169 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation); 10170 S.Diag(UseLoc, diag::note_member_synthesized_at) 10171 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor 10172 : Sema::CXXCopyAssignment) 10173 << RD; 10174 } 10175 } 10176 10177 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation, 10178 CXXMethodDecl *CopyAssignOperator) { 10179 assert((CopyAssignOperator->isDefaulted() && 10180 CopyAssignOperator->isOverloadedOperator() && 10181 CopyAssignOperator->getOverloadedOperator() == OO_Equal && 10182 !CopyAssignOperator->doesThisDeclarationHaveABody() && 10183 !CopyAssignOperator->isDeleted()) && 10184 "DefineImplicitCopyAssignment called for wrong function"); 10185 10186 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent(); 10187 10188 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) { 10189 CopyAssignOperator->setInvalidDecl(); 10190 return; 10191 } 10192 10193 // C++11 [class.copy]p18: 10194 // The [definition of an implicitly declared copy assignment operator] is 10195 // deprecated if the class has a user-declared copy constructor or a 10196 // user-declared destructor. 10197 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit()) 10198 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation); 10199 10200 CopyAssignOperator->markUsed(Context); 10201 10202 SynthesizedFunctionScope Scope(*this, CopyAssignOperator); 10203 DiagnosticErrorTrap Trap(Diags); 10204 10205 // C++0x [class.copy]p30: 10206 // The implicitly-defined or explicitly-defaulted copy assignment operator 10207 // for a non-union class X performs memberwise copy assignment of its 10208 // subobjects. The direct base classes of X are assigned first, in the 10209 // order of their declaration in the base-specifier-list, and then the 10210 // immediate non-static data members of X are assigned, in the order in 10211 // which they were declared in the class definition. 10212 10213 // The statements that form the synthesized function body. 10214 SmallVector<Stmt*, 8> Statements; 10215 10216 // The parameter for the "other" object, which we are copying from. 10217 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0); 10218 Qualifiers OtherQuals = Other->getType().getQualifiers(); 10219 QualType OtherRefType = Other->getType(); 10220 if (const LValueReferenceType *OtherRef 10221 = OtherRefType->getAs<LValueReferenceType>()) { 10222 OtherRefType = OtherRef->getPointeeType(); 10223 OtherQuals = OtherRefType.getQualifiers(); 10224 } 10225 10226 // Our location for everything implicitly-generated. 10227 SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid() 10228 ? CopyAssignOperator->getLocEnd() 10229 : CopyAssignOperator->getLocation(); 10230 10231 // Builds a DeclRefExpr for the "other" object. 10232 RefBuilder OtherRef(Other, OtherRefType); 10233 10234 // Builds the "this" pointer. 10235 ThisBuilder This; 10236 10237 // Assign base classes. 10238 bool Invalid = false; 10239 for (auto &Base : ClassDecl->bases()) { 10240 // Form the assignment: 10241 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other)); 10242 QualType BaseType = Base.getType().getUnqualifiedType(); 10243 if (!BaseType->isRecordType()) { 10244 Invalid = true; 10245 continue; 10246 } 10247 10248 CXXCastPath BasePath; 10249 BasePath.push_back(&Base); 10250 10251 // Construct the "from" expression, which is an implicit cast to the 10252 // appropriately-qualified base type. 10253 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals), 10254 VK_LValue, BasePath); 10255 10256 // Dereference "this". 10257 DerefBuilder DerefThis(This); 10258 CastBuilder To(DerefThis, 10259 Context.getCVRQualifiedType( 10260 BaseType, CopyAssignOperator->getTypeQualifiers()), 10261 VK_LValue, BasePath); 10262 10263 // Build the copy. 10264 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType, 10265 To, From, 10266 /*CopyingBaseSubobject=*/true, 10267 /*Copying=*/true); 10268 if (Copy.isInvalid()) { 10269 Diag(CurrentLocation, diag::note_member_synthesized_at) 10270 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10271 CopyAssignOperator->setInvalidDecl(); 10272 return; 10273 } 10274 10275 // Success! Record the copy. 10276 Statements.push_back(Copy.getAs<Expr>()); 10277 } 10278 10279 // Assign non-static members. 10280 for (auto *Field : ClassDecl->fields()) { 10281 // FIXME: We should form some kind of AST representation for the implied 10282 // memcpy in a union copy operation. 10283 if (Field->isUnnamedBitfield() || Field->getParent()->isUnion()) 10284 continue; 10285 10286 if (Field->isInvalidDecl()) { 10287 Invalid = true; 10288 continue; 10289 } 10290 10291 // Check for members of reference type; we can't copy those. 10292 if (Field->getType()->isReferenceType()) { 10293 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10294 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10295 Diag(Field->getLocation(), diag::note_declared_at); 10296 Diag(CurrentLocation, diag::note_member_synthesized_at) 10297 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10298 Invalid = true; 10299 continue; 10300 } 10301 10302 // Check for members of const-qualified, non-class type. 10303 QualType BaseType = Context.getBaseElementType(Field->getType()); 10304 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10305 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10306 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10307 Diag(Field->getLocation(), diag::note_declared_at); 10308 Diag(CurrentLocation, diag::note_member_synthesized_at) 10309 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10310 Invalid = true; 10311 continue; 10312 } 10313 10314 // Suppress assigning zero-width bitfields. 10315 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10316 continue; 10317 10318 QualType FieldType = Field->getType().getNonReferenceType(); 10319 if (FieldType->isIncompleteArrayType()) { 10320 assert(ClassDecl->hasFlexibleArrayMember() && 10321 "Incomplete array type is not valid"); 10322 continue; 10323 } 10324 10325 // Build references to the field in the object we're copying from and to. 10326 CXXScopeSpec SS; // Intentionally empty 10327 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10328 LookupMemberName); 10329 MemberLookup.addDecl(Field); 10330 MemberLookup.resolveKind(); 10331 10332 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup); 10333 10334 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup); 10335 10336 // Build the copy of this field. 10337 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType, 10338 To, From, 10339 /*CopyingBaseSubobject=*/false, 10340 /*Copying=*/true); 10341 if (Copy.isInvalid()) { 10342 Diag(CurrentLocation, diag::note_member_synthesized_at) 10343 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10344 CopyAssignOperator->setInvalidDecl(); 10345 return; 10346 } 10347 10348 // Success! Record the copy. 10349 Statements.push_back(Copy.getAs<Stmt>()); 10350 } 10351 10352 if (!Invalid) { 10353 // Add a "return *this;" 10354 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10355 10356 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10357 if (Return.isInvalid()) 10358 Invalid = true; 10359 else { 10360 Statements.push_back(Return.getAs<Stmt>()); 10361 10362 if (Trap.hasErrorOccurred()) { 10363 Diag(CurrentLocation, diag::note_member_synthesized_at) 10364 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10365 Invalid = true; 10366 } 10367 } 10368 } 10369 10370 // The exception specification is needed because we are defining the 10371 // function. 10372 ResolveExceptionSpec(CurrentLocation, 10373 CopyAssignOperator->getType()->castAs<FunctionProtoType>()); 10374 10375 if (Invalid) { 10376 CopyAssignOperator->setInvalidDecl(); 10377 return; 10378 } 10379 10380 StmtResult Body; 10381 { 10382 CompoundScopeRAII CompoundScope(*this); 10383 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10384 /*isStmtExpr=*/false); 10385 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10386 } 10387 CopyAssignOperator->setBody(Body.getAs<Stmt>()); 10388 10389 if (ASTMutationListener *L = getASTMutationListener()) { 10390 L->CompletedImplicitDefinition(CopyAssignOperator); 10391 } 10392 } 10393 10394 Sema::ImplicitExceptionSpecification 10395 Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) { 10396 CXXRecordDecl *ClassDecl = MD->getParent(); 10397 10398 ImplicitExceptionSpecification ExceptSpec(*this); 10399 if (ClassDecl->isInvalidDecl()) 10400 return ExceptSpec; 10401 10402 // C++0x [except.spec]p14: 10403 // An implicitly declared special member function (Clause 12) shall have an 10404 // exception-specification. [...] 10405 10406 // It is unspecified whether or not an implicit move assignment operator 10407 // attempts to deduplicate calls to assignment operators of virtual bases are 10408 // made. As such, this exception specification is effectively unspecified. 10409 // Based on a similar decision made for constness in C++0x, we're erring on 10410 // the side of assuming such calls to be made regardless of whether they 10411 // actually happen. 10412 // Note that a move constructor is not implicitly declared when there are 10413 // virtual bases, but it can still be user-declared and explicitly defaulted. 10414 for (const auto &Base : ClassDecl->bases()) { 10415 if (Base.isVirtual()) 10416 continue; 10417 10418 CXXRecordDecl *BaseClassDecl 10419 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10420 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10421 0, false, 0)) 10422 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10423 } 10424 10425 for (const auto &Base : ClassDecl->vbases()) { 10426 CXXRecordDecl *BaseClassDecl 10427 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10428 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10429 0, false, 0)) 10430 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10431 } 10432 10433 for (const auto *Field : ClassDecl->fields()) { 10434 QualType FieldType = Context.getBaseElementType(Field->getType()); 10435 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10436 if (CXXMethodDecl *MoveAssign = 10437 LookupMovingAssignment(FieldClassDecl, 10438 FieldType.getCVRQualifiers(), 10439 false, 0)) 10440 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign); 10441 } 10442 } 10443 10444 return ExceptSpec; 10445 } 10446 10447 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) { 10448 assert(ClassDecl->needsImplicitMoveAssignment()); 10449 10450 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment); 10451 if (DSM.isAlreadyBeingDeclared()) 10452 return nullptr; 10453 10454 // Note: The following rules are largely analoguous to the move 10455 // constructor rules. 10456 10457 QualType ArgType = Context.getTypeDeclType(ClassDecl); 10458 QualType RetType = Context.getLValueReferenceType(ArgType); 10459 ArgType = Context.getRValueReferenceType(ArgType); 10460 10461 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10462 CXXMoveAssignment, 10463 false); 10464 10465 // An implicitly-declared move assignment operator is an inline public 10466 // member of its class. 10467 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 10468 SourceLocation ClassLoc = ClassDecl->getLocation(); 10469 DeclarationNameInfo NameInfo(Name, ClassLoc); 10470 CXXMethodDecl *MoveAssignment = 10471 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 10472 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 10473 /*isInline=*/true, Constexpr, SourceLocation()); 10474 MoveAssignment->setAccess(AS_public); 10475 MoveAssignment->setDefaulted(); 10476 MoveAssignment->setImplicit(); 10477 10478 if (getLangOpts().CUDA) { 10479 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment, 10480 MoveAssignment, 10481 /* ConstRHS */ false, 10482 /* Diagnose */ false); 10483 } 10484 10485 // Build an exception specification pointing back at this member. 10486 FunctionProtoType::ExtProtoInfo EPI = 10487 getImplicitMethodEPI(*this, MoveAssignment); 10488 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 10489 10490 // Add the parameter to the operator. 10491 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment, 10492 ClassLoc, ClassLoc, 10493 /*Id=*/nullptr, ArgType, 10494 /*TInfo=*/nullptr, SC_None, 10495 nullptr); 10496 MoveAssignment->setParams(FromParam); 10497 10498 AddOverriddenMethods(ClassDecl, MoveAssignment); 10499 10500 MoveAssignment->setTrivial( 10501 ClassDecl->needsOverloadResolutionForMoveAssignment() 10502 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment) 10503 : ClassDecl->hasTrivialMoveAssignment()); 10504 10505 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) { 10506 ClassDecl->setImplicitMoveAssignmentIsDeleted(); 10507 SetDeclDeleted(MoveAssignment, ClassLoc); 10508 } 10509 10510 // Note that we have added this copy-assignment operator. 10511 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared; 10512 10513 if (Scope *S = getScopeForContext(ClassDecl)) 10514 PushOnScopeChains(MoveAssignment, S, false); 10515 ClassDecl->addDecl(MoveAssignment); 10516 10517 return MoveAssignment; 10518 } 10519 10520 /// Check if we're implicitly defining a move assignment operator for a class 10521 /// with virtual bases. Such a move assignment might move-assign the virtual 10522 /// base multiple times. 10523 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class, 10524 SourceLocation CurrentLocation) { 10525 assert(!Class->isDependentContext() && "should not define dependent move"); 10526 10527 // Only a virtual base could get implicitly move-assigned multiple times. 10528 // Only a non-trivial move assignment can observe this. We only want to 10529 // diagnose if we implicitly define an assignment operator that assigns 10530 // two base classes, both of which move-assign the same virtual base. 10531 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() || 10532 Class->getNumBases() < 2) 10533 return; 10534 10535 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist; 10536 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap; 10537 VBaseMap VBases; 10538 10539 for (auto &BI : Class->bases()) { 10540 Worklist.push_back(&BI); 10541 while (!Worklist.empty()) { 10542 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val(); 10543 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 10544 10545 // If the base has no non-trivial move assignment operators, 10546 // we don't care about moves from it. 10547 if (!Base->hasNonTrivialMoveAssignment()) 10548 continue; 10549 10550 // If there's nothing virtual here, skip it. 10551 if (!BaseSpec->isVirtual() && !Base->getNumVBases()) 10552 continue; 10553 10554 // If we're not actually going to call a move assignment for this base, 10555 // or the selected move assignment is trivial, skip it. 10556 Sema::SpecialMemberOverloadResult *SMOR = 10557 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment, 10558 /*ConstArg*/false, /*VolatileArg*/false, 10559 /*RValueThis*/true, /*ConstThis*/false, 10560 /*VolatileThis*/false); 10561 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() || 10562 !SMOR->getMethod()->isMoveAssignmentOperator()) 10563 continue; 10564 10565 if (BaseSpec->isVirtual()) { 10566 // We're going to move-assign this virtual base, and its move 10567 // assignment operator is not trivial. If this can happen for 10568 // multiple distinct direct bases of Class, diagnose it. (If it 10569 // only happens in one base, we'll diagnose it when synthesizing 10570 // that base class's move assignment operator.) 10571 CXXBaseSpecifier *&Existing = 10572 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI)) 10573 .first->second; 10574 if (Existing && Existing != &BI) { 10575 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times) 10576 << Class << Base; 10577 S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here) 10578 << (Base->getCanonicalDecl() == 10579 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10580 << Base << Existing->getType() << Existing->getSourceRange(); 10581 S.Diag(BI.getLocStart(), diag::note_vbase_moved_here) 10582 << (Base->getCanonicalDecl() == 10583 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10584 << Base << BI.getType() << BaseSpec->getSourceRange(); 10585 10586 // Only diagnose each vbase once. 10587 Existing = nullptr; 10588 } 10589 } else { 10590 // Only walk over bases that have defaulted move assignment operators. 10591 // We assume that any user-provided move assignment operator handles 10592 // the multiple-moves-of-vbase case itself somehow. 10593 if (!SMOR->getMethod()->isDefaulted()) 10594 continue; 10595 10596 // We're going to move the base classes of Base. Add them to the list. 10597 for (auto &BI : Base->bases()) 10598 Worklist.push_back(&BI); 10599 } 10600 } 10601 } 10602 } 10603 10604 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation, 10605 CXXMethodDecl *MoveAssignOperator) { 10606 assert((MoveAssignOperator->isDefaulted() && 10607 MoveAssignOperator->isOverloadedOperator() && 10608 MoveAssignOperator->getOverloadedOperator() == OO_Equal && 10609 !MoveAssignOperator->doesThisDeclarationHaveABody() && 10610 !MoveAssignOperator->isDeleted()) && 10611 "DefineImplicitMoveAssignment called for wrong function"); 10612 10613 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent(); 10614 10615 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) { 10616 MoveAssignOperator->setInvalidDecl(); 10617 return; 10618 } 10619 10620 MoveAssignOperator->markUsed(Context); 10621 10622 SynthesizedFunctionScope Scope(*this, MoveAssignOperator); 10623 DiagnosticErrorTrap Trap(Diags); 10624 10625 // C++0x [class.copy]p28: 10626 // The implicitly-defined or move assignment operator for a non-union class 10627 // X performs memberwise move assignment of its subobjects. The direct base 10628 // classes of X are assigned first, in the order of their declaration in the 10629 // base-specifier-list, and then the immediate non-static data members of X 10630 // are assigned, in the order in which they were declared in the class 10631 // definition. 10632 10633 // Issue a warning if our implicit move assignment operator will move 10634 // from a virtual base more than once. 10635 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation); 10636 10637 // The statements that form the synthesized function body. 10638 SmallVector<Stmt*, 8> Statements; 10639 10640 // The parameter for the "other" object, which we are move from. 10641 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0); 10642 QualType OtherRefType = Other->getType()-> 10643 getAs<RValueReferenceType>()->getPointeeType(); 10644 assert(!OtherRefType.getQualifiers() && 10645 "Bad argument type of defaulted move assignment"); 10646 10647 // Our location for everything implicitly-generated. 10648 SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid() 10649 ? MoveAssignOperator->getLocEnd() 10650 : MoveAssignOperator->getLocation(); 10651 10652 // Builds a reference to the "other" object. 10653 RefBuilder OtherRef(Other, OtherRefType); 10654 // Cast to rvalue. 10655 MoveCastBuilder MoveOther(OtherRef); 10656 10657 // Builds the "this" pointer. 10658 ThisBuilder This; 10659 10660 // Assign base classes. 10661 bool Invalid = false; 10662 for (auto &Base : ClassDecl->bases()) { 10663 // C++11 [class.copy]p28: 10664 // It is unspecified whether subobjects representing virtual base classes 10665 // are assigned more than once by the implicitly-defined copy assignment 10666 // operator. 10667 // FIXME: Do not assign to a vbase that will be assigned by some other base 10668 // class. For a move-assignment, this can result in the vbase being moved 10669 // multiple times. 10670 10671 // Form the assignment: 10672 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other)); 10673 QualType BaseType = Base.getType().getUnqualifiedType(); 10674 if (!BaseType->isRecordType()) { 10675 Invalid = true; 10676 continue; 10677 } 10678 10679 CXXCastPath BasePath; 10680 BasePath.push_back(&Base); 10681 10682 // Construct the "from" expression, which is an implicit cast to the 10683 // appropriately-qualified base type. 10684 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath); 10685 10686 // Dereference "this". 10687 DerefBuilder DerefThis(This); 10688 10689 // Implicitly cast "this" to the appropriately-qualified base type. 10690 CastBuilder To(DerefThis, 10691 Context.getCVRQualifiedType( 10692 BaseType, MoveAssignOperator->getTypeQualifiers()), 10693 VK_LValue, BasePath); 10694 10695 // Build the move. 10696 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType, 10697 To, From, 10698 /*CopyingBaseSubobject=*/true, 10699 /*Copying=*/false); 10700 if (Move.isInvalid()) { 10701 Diag(CurrentLocation, diag::note_member_synthesized_at) 10702 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10703 MoveAssignOperator->setInvalidDecl(); 10704 return; 10705 } 10706 10707 // Success! Record the move. 10708 Statements.push_back(Move.getAs<Expr>()); 10709 } 10710 10711 // Assign non-static members. 10712 for (auto *Field : ClassDecl->fields()) { 10713 // FIXME: We should form some kind of AST representation for the implied 10714 // memcpy in a union copy operation. 10715 if (Field->isUnnamedBitfield() || Field->getParent()->isUnion()) 10716 continue; 10717 10718 if (Field->isInvalidDecl()) { 10719 Invalid = true; 10720 continue; 10721 } 10722 10723 // Check for members of reference type; we can't move those. 10724 if (Field->getType()->isReferenceType()) { 10725 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10726 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10727 Diag(Field->getLocation(), diag::note_declared_at); 10728 Diag(CurrentLocation, diag::note_member_synthesized_at) 10729 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10730 Invalid = true; 10731 continue; 10732 } 10733 10734 // Check for members of const-qualified, non-class type. 10735 QualType BaseType = Context.getBaseElementType(Field->getType()); 10736 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10737 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10738 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10739 Diag(Field->getLocation(), diag::note_declared_at); 10740 Diag(CurrentLocation, diag::note_member_synthesized_at) 10741 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10742 Invalid = true; 10743 continue; 10744 } 10745 10746 // Suppress assigning zero-width bitfields. 10747 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10748 continue; 10749 10750 QualType FieldType = Field->getType().getNonReferenceType(); 10751 if (FieldType->isIncompleteArrayType()) { 10752 assert(ClassDecl->hasFlexibleArrayMember() && 10753 "Incomplete array type is not valid"); 10754 continue; 10755 } 10756 10757 // Build references to the field in the object we're copying from and to. 10758 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10759 LookupMemberName); 10760 MemberLookup.addDecl(Field); 10761 MemberLookup.resolveKind(); 10762 MemberBuilder From(MoveOther, OtherRefType, 10763 /*IsArrow=*/false, MemberLookup); 10764 MemberBuilder To(This, getCurrentThisType(), 10765 /*IsArrow=*/true, MemberLookup); 10766 10767 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue 10768 "Member reference with rvalue base must be rvalue except for reference " 10769 "members, which aren't allowed for move assignment."); 10770 10771 // Build the move of this field. 10772 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType, 10773 To, From, 10774 /*CopyingBaseSubobject=*/false, 10775 /*Copying=*/false); 10776 if (Move.isInvalid()) { 10777 Diag(CurrentLocation, diag::note_member_synthesized_at) 10778 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10779 MoveAssignOperator->setInvalidDecl(); 10780 return; 10781 } 10782 10783 // Success! Record the copy. 10784 Statements.push_back(Move.getAs<Stmt>()); 10785 } 10786 10787 if (!Invalid) { 10788 // Add a "return *this;" 10789 ExprResult ThisObj = 10790 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10791 10792 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10793 if (Return.isInvalid()) 10794 Invalid = true; 10795 else { 10796 Statements.push_back(Return.getAs<Stmt>()); 10797 10798 if (Trap.hasErrorOccurred()) { 10799 Diag(CurrentLocation, diag::note_member_synthesized_at) 10800 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10801 Invalid = true; 10802 } 10803 } 10804 } 10805 10806 // The exception specification is needed because we are defining the 10807 // function. 10808 ResolveExceptionSpec(CurrentLocation, 10809 MoveAssignOperator->getType()->castAs<FunctionProtoType>()); 10810 10811 if (Invalid) { 10812 MoveAssignOperator->setInvalidDecl(); 10813 return; 10814 } 10815 10816 StmtResult Body; 10817 { 10818 CompoundScopeRAII CompoundScope(*this); 10819 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10820 /*isStmtExpr=*/false); 10821 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10822 } 10823 MoveAssignOperator->setBody(Body.getAs<Stmt>()); 10824 10825 if (ASTMutationListener *L = getASTMutationListener()) { 10826 L->CompletedImplicitDefinition(MoveAssignOperator); 10827 } 10828 } 10829 10830 Sema::ImplicitExceptionSpecification 10831 Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) { 10832 CXXRecordDecl *ClassDecl = MD->getParent(); 10833 10834 ImplicitExceptionSpecification ExceptSpec(*this); 10835 if (ClassDecl->isInvalidDecl()) 10836 return ExceptSpec; 10837 10838 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 10839 assert(T->getNumParams() >= 1 && "not a copy ctor"); 10840 unsigned Quals = T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 10841 10842 // C++ [except.spec]p14: 10843 // An implicitly declared special member function (Clause 12) shall have an 10844 // exception-specification. [...] 10845 for (const auto &Base : ClassDecl->bases()) { 10846 // Virtual bases are handled below. 10847 if (Base.isVirtual()) 10848 continue; 10849 10850 CXXRecordDecl *BaseClassDecl 10851 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10852 if (CXXConstructorDecl *CopyConstructor = 10853 LookupCopyingConstructor(BaseClassDecl, Quals)) 10854 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10855 } 10856 for (const auto &Base : ClassDecl->vbases()) { 10857 CXXRecordDecl *BaseClassDecl 10858 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10859 if (CXXConstructorDecl *CopyConstructor = 10860 LookupCopyingConstructor(BaseClassDecl, Quals)) 10861 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10862 } 10863 for (const auto *Field : ClassDecl->fields()) { 10864 QualType FieldType = Context.getBaseElementType(Field->getType()); 10865 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10866 if (CXXConstructorDecl *CopyConstructor = 10867 LookupCopyingConstructor(FieldClassDecl, 10868 Quals | FieldType.getCVRQualifiers())) 10869 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor); 10870 } 10871 } 10872 10873 return ExceptSpec; 10874 } 10875 10876 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor( 10877 CXXRecordDecl *ClassDecl) { 10878 // C++ [class.copy]p4: 10879 // If the class definition does not explicitly declare a copy 10880 // constructor, one is declared implicitly. 10881 assert(ClassDecl->needsImplicitCopyConstructor()); 10882 10883 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor); 10884 if (DSM.isAlreadyBeingDeclared()) 10885 return nullptr; 10886 10887 QualType ClassType = Context.getTypeDeclType(ClassDecl); 10888 QualType ArgType = ClassType; 10889 bool Const = ClassDecl->implicitCopyConstructorHasConstParam(); 10890 if (Const) 10891 ArgType = ArgType.withConst(); 10892 ArgType = Context.getLValueReferenceType(ArgType); 10893 10894 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10895 CXXCopyConstructor, 10896 Const); 10897 10898 DeclarationName Name 10899 = Context.DeclarationNames.getCXXConstructorName( 10900 Context.getCanonicalType(ClassType)); 10901 SourceLocation ClassLoc = ClassDecl->getLocation(); 10902 DeclarationNameInfo NameInfo(Name, ClassLoc); 10903 10904 // An implicitly-declared copy constructor is an inline public 10905 // member of its class. 10906 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create( 10907 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 10908 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 10909 Constexpr); 10910 CopyConstructor->setAccess(AS_public); 10911 CopyConstructor->setDefaulted(); 10912 10913 if (getLangOpts().CUDA) { 10914 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor, 10915 CopyConstructor, 10916 /* ConstRHS */ Const, 10917 /* Diagnose */ false); 10918 } 10919 10920 // Build an exception specification pointing back at this member. 10921 FunctionProtoType::ExtProtoInfo EPI = 10922 getImplicitMethodEPI(*this, CopyConstructor); 10923 CopyConstructor->setType( 10924 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 10925 10926 // Add the parameter to the constructor. 10927 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor, 10928 ClassLoc, ClassLoc, 10929 /*IdentifierInfo=*/nullptr, 10930 ArgType, /*TInfo=*/nullptr, 10931 SC_None, nullptr); 10932 CopyConstructor->setParams(FromParam); 10933 10934 CopyConstructor->setTrivial( 10935 ClassDecl->needsOverloadResolutionForCopyConstructor() 10936 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor) 10937 : ClassDecl->hasTrivialCopyConstructor()); 10938 10939 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor)) 10940 SetDeclDeleted(CopyConstructor, ClassLoc); 10941 10942 // Note that we have declared this constructor. 10943 ++ASTContext::NumImplicitCopyConstructorsDeclared; 10944 10945 if (Scope *S = getScopeForContext(ClassDecl)) 10946 PushOnScopeChains(CopyConstructor, S, false); 10947 ClassDecl->addDecl(CopyConstructor); 10948 10949 return CopyConstructor; 10950 } 10951 10952 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation, 10953 CXXConstructorDecl *CopyConstructor) { 10954 assert((CopyConstructor->isDefaulted() && 10955 CopyConstructor->isCopyConstructor() && 10956 !CopyConstructor->doesThisDeclarationHaveABody() && 10957 !CopyConstructor->isDeleted()) && 10958 "DefineImplicitCopyConstructor - call it for implicit copy ctor"); 10959 10960 CXXRecordDecl *ClassDecl = CopyConstructor->getParent(); 10961 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor"); 10962 10963 // C++11 [class.copy]p7: 10964 // The [definition of an implicitly declared copy constructor] is 10965 // deprecated if the class has a user-declared copy assignment operator 10966 // or a user-declared destructor. 10967 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit()) 10968 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation); 10969 10970 SynthesizedFunctionScope Scope(*this, CopyConstructor); 10971 DiagnosticErrorTrap Trap(Diags); 10972 10973 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) || 10974 Trap.hasErrorOccurred()) { 10975 Diag(CurrentLocation, diag::note_member_synthesized_at) 10976 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl); 10977 CopyConstructor->setInvalidDecl(); 10978 } else { 10979 SourceLocation Loc = CopyConstructor->getLocEnd().isValid() 10980 ? CopyConstructor->getLocEnd() 10981 : CopyConstructor->getLocation(); 10982 Sema::CompoundScopeRAII CompoundScope(*this); 10983 CopyConstructor->setBody( 10984 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>()); 10985 } 10986 10987 // The exception specification is needed because we are defining the 10988 // function. 10989 ResolveExceptionSpec(CurrentLocation, 10990 CopyConstructor->getType()->castAs<FunctionProtoType>()); 10991 10992 CopyConstructor->markUsed(Context); 10993 MarkVTableUsed(CurrentLocation, ClassDecl); 10994 10995 if (ASTMutationListener *L = getASTMutationListener()) { 10996 L->CompletedImplicitDefinition(CopyConstructor); 10997 } 10998 } 10999 11000 Sema::ImplicitExceptionSpecification 11001 Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) { 11002 CXXRecordDecl *ClassDecl = MD->getParent(); 11003 11004 // C++ [except.spec]p14: 11005 // An implicitly declared special member function (Clause 12) shall have an 11006 // exception-specification. [...] 11007 ImplicitExceptionSpecification ExceptSpec(*this); 11008 if (ClassDecl->isInvalidDecl()) 11009 return ExceptSpec; 11010 11011 // Direct base-class constructors. 11012 for (const auto &B : ClassDecl->bases()) { 11013 if (B.isVirtual()) // Handled below. 11014 continue; 11015 11016 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 11017 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 11018 CXXConstructorDecl *Constructor = 11019 LookupMovingConstructor(BaseClassDecl, 0); 11020 // If this is a deleted function, add it anyway. This might be conformant 11021 // with the standard. This might not. I'm not sure. It might not matter. 11022 if (Constructor) 11023 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 11024 } 11025 } 11026 11027 // Virtual base-class constructors. 11028 for (const auto &B : ClassDecl->vbases()) { 11029 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 11030 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 11031 CXXConstructorDecl *Constructor = 11032 LookupMovingConstructor(BaseClassDecl, 0); 11033 // If this is a deleted function, add it anyway. This might be conformant 11034 // with the standard. This might not. I'm not sure. It might not matter. 11035 if (Constructor) 11036 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 11037 } 11038 } 11039 11040 // Field constructors. 11041 for (const auto *F : ClassDecl->fields()) { 11042 QualType FieldType = Context.getBaseElementType(F->getType()); 11043 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) { 11044 CXXConstructorDecl *Constructor = 11045 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers()); 11046 // If this is a deleted function, add it anyway. This might be conformant 11047 // with the standard. This might not. I'm not sure. It might not matter. 11048 // In particular, the problem is that this function never gets called. It 11049 // might just be ill-formed because this function attempts to refer to 11050 // a deleted function here. 11051 if (Constructor) 11052 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 11053 } 11054 } 11055 11056 return ExceptSpec; 11057 } 11058 11059 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor( 11060 CXXRecordDecl *ClassDecl) { 11061 assert(ClassDecl->needsImplicitMoveConstructor()); 11062 11063 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor); 11064 if (DSM.isAlreadyBeingDeclared()) 11065 return nullptr; 11066 11067 QualType ClassType = Context.getTypeDeclType(ClassDecl); 11068 QualType ArgType = Context.getRValueReferenceType(ClassType); 11069 11070 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 11071 CXXMoveConstructor, 11072 false); 11073 11074 DeclarationName Name 11075 = Context.DeclarationNames.getCXXConstructorName( 11076 Context.getCanonicalType(ClassType)); 11077 SourceLocation ClassLoc = ClassDecl->getLocation(); 11078 DeclarationNameInfo NameInfo(Name, ClassLoc); 11079 11080 // C++11 [class.copy]p11: 11081 // An implicitly-declared copy/move constructor is an inline public 11082 // member of its class. 11083 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create( 11084 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 11085 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 11086 Constexpr); 11087 MoveConstructor->setAccess(AS_public); 11088 MoveConstructor->setDefaulted(); 11089 11090 if (getLangOpts().CUDA) { 11091 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor, 11092 MoveConstructor, 11093 /* ConstRHS */ false, 11094 /* Diagnose */ false); 11095 } 11096 11097 // Build an exception specification pointing back at this member. 11098 FunctionProtoType::ExtProtoInfo EPI = 11099 getImplicitMethodEPI(*this, MoveConstructor); 11100 MoveConstructor->setType( 11101 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 11102 11103 // Add the parameter to the constructor. 11104 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor, 11105 ClassLoc, ClassLoc, 11106 /*IdentifierInfo=*/nullptr, 11107 ArgType, /*TInfo=*/nullptr, 11108 SC_None, nullptr); 11109 MoveConstructor->setParams(FromParam); 11110 11111 MoveConstructor->setTrivial( 11112 ClassDecl->needsOverloadResolutionForMoveConstructor() 11113 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor) 11114 : ClassDecl->hasTrivialMoveConstructor()); 11115 11116 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) { 11117 ClassDecl->setImplicitMoveConstructorIsDeleted(); 11118 SetDeclDeleted(MoveConstructor, ClassLoc); 11119 } 11120 11121 // Note that we have declared this constructor. 11122 ++ASTContext::NumImplicitMoveConstructorsDeclared; 11123 11124 if (Scope *S = getScopeForContext(ClassDecl)) 11125 PushOnScopeChains(MoveConstructor, S, false); 11126 ClassDecl->addDecl(MoveConstructor); 11127 11128 return MoveConstructor; 11129 } 11130 11131 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation, 11132 CXXConstructorDecl *MoveConstructor) { 11133 assert((MoveConstructor->isDefaulted() && 11134 MoveConstructor->isMoveConstructor() && 11135 !MoveConstructor->doesThisDeclarationHaveABody() && 11136 !MoveConstructor->isDeleted()) && 11137 "DefineImplicitMoveConstructor - call it for implicit move ctor"); 11138 11139 CXXRecordDecl *ClassDecl = MoveConstructor->getParent(); 11140 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor"); 11141 11142 SynthesizedFunctionScope Scope(*this, MoveConstructor); 11143 DiagnosticErrorTrap Trap(Diags); 11144 11145 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) || 11146 Trap.hasErrorOccurred()) { 11147 Diag(CurrentLocation, diag::note_member_synthesized_at) 11148 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl); 11149 MoveConstructor->setInvalidDecl(); 11150 } else { 11151 SourceLocation Loc = MoveConstructor->getLocEnd().isValid() 11152 ? MoveConstructor->getLocEnd() 11153 : MoveConstructor->getLocation(); 11154 Sema::CompoundScopeRAII CompoundScope(*this); 11155 MoveConstructor->setBody(ActOnCompoundStmt( 11156 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>()); 11157 } 11158 11159 // The exception specification is needed because we are defining the 11160 // function. 11161 ResolveExceptionSpec(CurrentLocation, 11162 MoveConstructor->getType()->castAs<FunctionProtoType>()); 11163 11164 MoveConstructor->markUsed(Context); 11165 MarkVTableUsed(CurrentLocation, ClassDecl); 11166 11167 if (ASTMutationListener *L = getASTMutationListener()) { 11168 L->CompletedImplicitDefinition(MoveConstructor); 11169 } 11170 } 11171 11172 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) { 11173 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD); 11174 } 11175 11176 void Sema::DefineImplicitLambdaToFunctionPointerConversion( 11177 SourceLocation CurrentLocation, 11178 CXXConversionDecl *Conv) { 11179 CXXRecordDecl *Lambda = Conv->getParent(); 11180 CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator(); 11181 // If we are defining a specialization of a conversion to function-ptr 11182 // cache the deduced template arguments for this specialization 11183 // so that we can use them to retrieve the corresponding call-operator 11184 // and static-invoker. 11185 const TemplateArgumentList *DeducedTemplateArgs = nullptr; 11186 11187 // Retrieve the corresponding call-operator specialization. 11188 if (Lambda->isGenericLambda()) { 11189 assert(Conv->isFunctionTemplateSpecialization()); 11190 FunctionTemplateDecl *CallOpTemplate = 11191 CallOp->getDescribedFunctionTemplate(); 11192 DeducedTemplateArgs = Conv->getTemplateSpecializationArgs(); 11193 void *InsertPos = nullptr; 11194 FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization( 11195 DeducedTemplateArgs->asArray(), 11196 InsertPos); 11197 assert(CallOpSpec && 11198 "Conversion operator must have a corresponding call operator"); 11199 CallOp = cast<CXXMethodDecl>(CallOpSpec); 11200 } 11201 // Mark the call operator referenced (and add to pending instantiations 11202 // if necessary). 11203 // For both the conversion and static-invoker template specializations 11204 // we construct their body's in this function, so no need to add them 11205 // to the PendingInstantiations. 11206 MarkFunctionReferenced(CurrentLocation, CallOp); 11207 11208 SynthesizedFunctionScope Scope(*this, Conv); 11209 DiagnosticErrorTrap Trap(Diags); 11210 11211 // Retrieve the static invoker... 11212 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker(); 11213 // ... and get the corresponding specialization for a generic lambda. 11214 if (Lambda->isGenericLambda()) { 11215 assert(DeducedTemplateArgs && 11216 "Must have deduced template arguments from Conversion Operator"); 11217 FunctionTemplateDecl *InvokeTemplate = 11218 Invoker->getDescribedFunctionTemplate(); 11219 void *InsertPos = nullptr; 11220 FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization( 11221 DeducedTemplateArgs->asArray(), 11222 InsertPos); 11223 assert(InvokeSpec && 11224 "Must have a corresponding static invoker specialization"); 11225 Invoker = cast<CXXMethodDecl>(InvokeSpec); 11226 } 11227 // Construct the body of the conversion function { return __invoke; }. 11228 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(), 11229 VK_LValue, Conv->getLocation()).get(); 11230 assert(FunctionRef && "Can't refer to __invoke function?"); 11231 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get(); 11232 Conv->setBody(new (Context) CompoundStmt(Context, Return, 11233 Conv->getLocation(), 11234 Conv->getLocation())); 11235 11236 Conv->markUsed(Context); 11237 Conv->setReferenced(); 11238 11239 // Fill in the __invoke function with a dummy implementation. IR generation 11240 // will fill in the actual details. 11241 Invoker->markUsed(Context); 11242 Invoker->setReferenced(); 11243 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation())); 11244 11245 if (ASTMutationListener *L = getASTMutationListener()) { 11246 L->CompletedImplicitDefinition(Conv); 11247 L->CompletedImplicitDefinition(Invoker); 11248 } 11249 } 11250 11251 11252 11253 void Sema::DefineImplicitLambdaToBlockPointerConversion( 11254 SourceLocation CurrentLocation, 11255 CXXConversionDecl *Conv) 11256 { 11257 assert(!Conv->getParent()->isGenericLambda()); 11258 11259 Conv->markUsed(Context); 11260 11261 SynthesizedFunctionScope Scope(*this, Conv); 11262 DiagnosticErrorTrap Trap(Diags); 11263 11264 // Copy-initialize the lambda object as needed to capture it. 11265 Expr *This = ActOnCXXThis(CurrentLocation).get(); 11266 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get(); 11267 11268 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation, 11269 Conv->getLocation(), 11270 Conv, DerefThis); 11271 11272 // If we're not under ARC, make sure we still get the _Block_copy/autorelease 11273 // behavior. Note that only the general conversion function does this 11274 // (since it's unusable otherwise); in the case where we inline the 11275 // block literal, it has block literal lifetime semantics. 11276 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount) 11277 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(), 11278 CK_CopyAndAutoreleaseBlockObject, 11279 BuildBlock.get(), nullptr, VK_RValue); 11280 11281 if (BuildBlock.isInvalid()) { 11282 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11283 Conv->setInvalidDecl(); 11284 return; 11285 } 11286 11287 // Create the return statement that returns the block from the conversion 11288 // function. 11289 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get()); 11290 if (Return.isInvalid()) { 11291 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11292 Conv->setInvalidDecl(); 11293 return; 11294 } 11295 11296 // Set the body of the conversion function. 11297 Stmt *ReturnS = Return.get(); 11298 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS, 11299 Conv->getLocation(), 11300 Conv->getLocation())); 11301 11302 // We're done; notify the mutation listener, if any. 11303 if (ASTMutationListener *L = getASTMutationListener()) { 11304 L->CompletedImplicitDefinition(Conv); 11305 } 11306 } 11307 11308 /// \brief Determine whether the given list arguments contains exactly one 11309 /// "real" (non-default) argument. 11310 static bool hasOneRealArgument(MultiExprArg Args) { 11311 switch (Args.size()) { 11312 case 0: 11313 return false; 11314 11315 default: 11316 if (!Args[1]->isDefaultArgument()) 11317 return false; 11318 11319 // fall through 11320 case 1: 11321 return !Args[0]->isDefaultArgument(); 11322 } 11323 11324 return false; 11325 } 11326 11327 ExprResult 11328 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11329 CXXConstructorDecl *Constructor, 11330 MultiExprArg ExprArgs, 11331 bool HadMultipleCandidates, 11332 bool IsListInitialization, 11333 bool IsStdInitListInitialization, 11334 bool RequiresZeroInit, 11335 unsigned ConstructKind, 11336 SourceRange ParenRange) { 11337 bool Elidable = false; 11338 11339 // C++0x [class.copy]p34: 11340 // When certain criteria are met, an implementation is allowed to 11341 // omit the copy/move construction of a class object, even if the 11342 // copy/move constructor and/or destructor for the object have 11343 // side effects. [...] 11344 // - when a temporary class object that has not been bound to a 11345 // reference (12.2) would be copied/moved to a class object 11346 // with the same cv-unqualified type, the copy/move operation 11347 // can be omitted by constructing the temporary object 11348 // directly into the target of the omitted copy/move 11349 if (ConstructKind == CXXConstructExpr::CK_Complete && 11350 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) { 11351 Expr *SubExpr = ExprArgs[0]; 11352 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent()); 11353 } 11354 11355 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor, 11356 Elidable, ExprArgs, HadMultipleCandidates, 11357 IsListInitialization, 11358 IsStdInitListInitialization, RequiresZeroInit, 11359 ConstructKind, ParenRange); 11360 } 11361 11362 /// BuildCXXConstructExpr - Creates a complete call to a constructor, 11363 /// including handling of its default argument expressions. 11364 ExprResult 11365 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11366 CXXConstructorDecl *Constructor, bool Elidable, 11367 MultiExprArg ExprArgs, 11368 bool HadMultipleCandidates, 11369 bool IsListInitialization, 11370 bool IsStdInitListInitialization, 11371 bool RequiresZeroInit, 11372 unsigned ConstructKind, 11373 SourceRange ParenRange) { 11374 MarkFunctionReferenced(ConstructLoc, Constructor); 11375 return CXXConstructExpr::Create( 11376 Context, DeclInitType, ConstructLoc, Constructor, Elidable, ExprArgs, 11377 HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization, 11378 RequiresZeroInit, 11379 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind), 11380 ParenRange); 11381 } 11382 11383 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) { 11384 assert(Field->hasInClassInitializer()); 11385 11386 // If we already have the in-class initializer nothing needs to be done. 11387 if (Field->getInClassInitializer()) 11388 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11389 11390 // Maybe we haven't instantiated the in-class initializer. Go check the 11391 // pattern FieldDecl to see if it has one. 11392 CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent()); 11393 11394 if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) { 11395 CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern(); 11396 DeclContext::lookup_result Lookup = 11397 ClassPattern->lookup(Field->getDeclName()); 11398 assert(Lookup.size() == 1); 11399 FieldDecl *Pattern = cast<FieldDecl>(Lookup[0]); 11400 if (InstantiateInClassInitializer(Loc, Field, Pattern, 11401 getTemplateInstantiationArgs(Field))) 11402 return ExprError(); 11403 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11404 } 11405 11406 // DR1351: 11407 // If the brace-or-equal-initializer of a non-static data member 11408 // invokes a defaulted default constructor of its class or of an 11409 // enclosing class in a potentially evaluated subexpression, the 11410 // program is ill-formed. 11411 // 11412 // This resolution is unworkable: the exception specification of the 11413 // default constructor can be needed in an unevaluated context, in 11414 // particular, in the operand of a noexcept-expression, and we can be 11415 // unable to compute an exception specification for an enclosed class. 11416 // 11417 // Any attempt to resolve the exception specification of a defaulted default 11418 // constructor before the initializer is lexically complete will ultimately 11419 // come here at which point we can diagnose it. 11420 RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext(); 11421 if (OutermostClass == ParentRD) { 11422 Diag(Field->getLocEnd(), diag::err_in_class_initializer_not_yet_parsed) 11423 << ParentRD << Field; 11424 } else { 11425 Diag(Field->getLocEnd(), 11426 diag::err_in_class_initializer_not_yet_parsed_outer_class) 11427 << ParentRD << OutermostClass << Field; 11428 } 11429 11430 return ExprError(); 11431 } 11432 11433 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) { 11434 if (VD->isInvalidDecl()) return; 11435 11436 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl()); 11437 if (ClassDecl->isInvalidDecl()) return; 11438 if (ClassDecl->hasIrrelevantDestructor()) return; 11439 if (ClassDecl->isDependentContext()) return; 11440 11441 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl); 11442 MarkFunctionReferenced(VD->getLocation(), Destructor); 11443 CheckDestructorAccess(VD->getLocation(), Destructor, 11444 PDiag(diag::err_access_dtor_var) 11445 << VD->getDeclName() 11446 << VD->getType()); 11447 DiagnoseUseOfDecl(Destructor, VD->getLocation()); 11448 11449 if (Destructor->isTrivial()) return; 11450 if (!VD->hasGlobalStorage()) return; 11451 11452 // Emit warning for non-trivial dtor in global scope (a real global, 11453 // class-static, function-static). 11454 Diag(VD->getLocation(), diag::warn_exit_time_destructor); 11455 11456 // TODO: this should be re-enabled for static locals by !CXAAtExit 11457 if (!VD->isStaticLocal()) 11458 Diag(VD->getLocation(), diag::warn_global_destructor); 11459 } 11460 11461 /// \brief Given a constructor and the set of arguments provided for the 11462 /// constructor, convert the arguments and add any required default arguments 11463 /// to form a proper call to this constructor. 11464 /// 11465 /// \returns true if an error occurred, false otherwise. 11466 bool 11467 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor, 11468 MultiExprArg ArgsPtr, 11469 SourceLocation Loc, 11470 SmallVectorImpl<Expr*> &ConvertedArgs, 11471 bool AllowExplicit, 11472 bool IsListInitialization) { 11473 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall. 11474 unsigned NumArgs = ArgsPtr.size(); 11475 Expr **Args = ArgsPtr.data(); 11476 11477 const FunctionProtoType *Proto 11478 = Constructor->getType()->getAs<FunctionProtoType>(); 11479 assert(Proto && "Constructor without a prototype?"); 11480 unsigned NumParams = Proto->getNumParams(); 11481 11482 // If too few arguments are available, we'll fill in the rest with defaults. 11483 if (NumArgs < NumParams) 11484 ConvertedArgs.reserve(NumParams); 11485 else 11486 ConvertedArgs.reserve(NumArgs); 11487 11488 VariadicCallType CallType = 11489 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; 11490 SmallVector<Expr *, 8> AllArgs; 11491 bool Invalid = GatherArgumentsForCall(Loc, Constructor, 11492 Proto, 0, 11493 llvm::makeArrayRef(Args, NumArgs), 11494 AllArgs, 11495 CallType, AllowExplicit, 11496 IsListInitialization); 11497 ConvertedArgs.append(AllArgs.begin(), AllArgs.end()); 11498 11499 DiagnoseSentinelCalls(Constructor, Loc, AllArgs); 11500 11501 CheckConstructorCall(Constructor, 11502 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()), 11503 Proto, Loc); 11504 11505 return Invalid; 11506 } 11507 11508 static inline bool 11509 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef, 11510 const FunctionDecl *FnDecl) { 11511 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext(); 11512 if (isa<NamespaceDecl>(DC)) { 11513 return SemaRef.Diag(FnDecl->getLocation(), 11514 diag::err_operator_new_delete_declared_in_namespace) 11515 << FnDecl->getDeclName(); 11516 } 11517 11518 if (isa<TranslationUnitDecl>(DC) && 11519 FnDecl->getStorageClass() == SC_Static) { 11520 return SemaRef.Diag(FnDecl->getLocation(), 11521 diag::err_operator_new_delete_declared_static) 11522 << FnDecl->getDeclName(); 11523 } 11524 11525 return false; 11526 } 11527 11528 static inline bool 11529 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl, 11530 CanQualType ExpectedResultType, 11531 CanQualType ExpectedFirstParamType, 11532 unsigned DependentParamTypeDiag, 11533 unsigned InvalidParamTypeDiag) { 11534 QualType ResultType = 11535 FnDecl->getType()->getAs<FunctionType>()->getReturnType(); 11536 11537 // Check that the result type is not dependent. 11538 if (ResultType->isDependentType()) 11539 return SemaRef.Diag(FnDecl->getLocation(), 11540 diag::err_operator_new_delete_dependent_result_type) 11541 << FnDecl->getDeclName() << ExpectedResultType; 11542 11543 // Check that the result type is what we expect. 11544 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType) 11545 return SemaRef.Diag(FnDecl->getLocation(), 11546 diag::err_operator_new_delete_invalid_result_type) 11547 << FnDecl->getDeclName() << ExpectedResultType; 11548 11549 // A function template must have at least 2 parameters. 11550 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2) 11551 return SemaRef.Diag(FnDecl->getLocation(), 11552 diag::err_operator_new_delete_template_too_few_parameters) 11553 << FnDecl->getDeclName(); 11554 11555 // The function decl must have at least 1 parameter. 11556 if (FnDecl->getNumParams() == 0) 11557 return SemaRef.Diag(FnDecl->getLocation(), 11558 diag::err_operator_new_delete_too_few_parameters) 11559 << FnDecl->getDeclName(); 11560 11561 // Check the first parameter type is not dependent. 11562 QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); 11563 if (FirstParamType->isDependentType()) 11564 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag) 11565 << FnDecl->getDeclName() << ExpectedFirstParamType; 11566 11567 // Check that the first parameter type is what we expect. 11568 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() != 11569 ExpectedFirstParamType) 11570 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag) 11571 << FnDecl->getDeclName() << ExpectedFirstParamType; 11572 11573 return false; 11574 } 11575 11576 static bool 11577 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { 11578 // C++ [basic.stc.dynamic.allocation]p1: 11579 // A program is ill-formed if an allocation function is declared in a 11580 // namespace scope other than global scope or declared static in global 11581 // scope. 11582 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11583 return true; 11584 11585 CanQualType SizeTy = 11586 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType()); 11587 11588 // C++ [basic.stc.dynamic.allocation]p1: 11589 // The return type shall be void*. The first parameter shall have type 11590 // std::size_t. 11591 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy, 11592 SizeTy, 11593 diag::err_operator_new_dependent_param_type, 11594 diag::err_operator_new_param_type)) 11595 return true; 11596 11597 // C++ [basic.stc.dynamic.allocation]p1: 11598 // The first parameter shall not have an associated default argument. 11599 if (FnDecl->getParamDecl(0)->hasDefaultArg()) 11600 return SemaRef.Diag(FnDecl->getLocation(), 11601 diag::err_operator_new_default_arg) 11602 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange(); 11603 11604 return false; 11605 } 11606 11607 static bool 11608 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) { 11609 // C++ [basic.stc.dynamic.deallocation]p1: 11610 // A program is ill-formed if deallocation functions are declared in a 11611 // namespace scope other than global scope or declared static in global 11612 // scope. 11613 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11614 return true; 11615 11616 // C++ [basic.stc.dynamic.deallocation]p2: 11617 // Each deallocation function shall return void and its first parameter 11618 // shall be void*. 11619 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy, 11620 SemaRef.Context.VoidPtrTy, 11621 diag::err_operator_delete_dependent_param_type, 11622 diag::err_operator_delete_param_type)) 11623 return true; 11624 11625 return false; 11626 } 11627 11628 /// CheckOverloadedOperatorDeclaration - Check whether the declaration 11629 /// of this overloaded operator is well-formed. If so, returns false; 11630 /// otherwise, emits appropriate diagnostics and returns true. 11631 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) { 11632 assert(FnDecl && FnDecl->isOverloadedOperator() && 11633 "Expected an overloaded operator declaration"); 11634 11635 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator(); 11636 11637 // C++ [over.oper]p5: 11638 // The allocation and deallocation functions, operator new, 11639 // operator new[], operator delete and operator delete[], are 11640 // described completely in 3.7.3. The attributes and restrictions 11641 // found in the rest of this subclause do not apply to them unless 11642 // explicitly stated in 3.7.3. 11643 if (Op == OO_Delete || Op == OO_Array_Delete) 11644 return CheckOperatorDeleteDeclaration(*this, FnDecl); 11645 11646 if (Op == OO_New || Op == OO_Array_New) 11647 return CheckOperatorNewDeclaration(*this, FnDecl); 11648 11649 // C++ [over.oper]p6: 11650 // An operator function shall either be a non-static member 11651 // function or be a non-member function and have at least one 11652 // parameter whose type is a class, a reference to a class, an 11653 // enumeration, or a reference to an enumeration. 11654 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { 11655 if (MethodDecl->isStatic()) 11656 return Diag(FnDecl->getLocation(), 11657 diag::err_operator_overload_static) << FnDecl->getDeclName(); 11658 } else { 11659 bool ClassOrEnumParam = false; 11660 for (auto Param : FnDecl->params()) { 11661 QualType ParamType = Param->getType().getNonReferenceType(); 11662 if (ParamType->isDependentType() || ParamType->isRecordType() || 11663 ParamType->isEnumeralType()) { 11664 ClassOrEnumParam = true; 11665 break; 11666 } 11667 } 11668 11669 if (!ClassOrEnumParam) 11670 return Diag(FnDecl->getLocation(), 11671 diag::err_operator_overload_needs_class_or_enum) 11672 << FnDecl->getDeclName(); 11673 } 11674 11675 // C++ [over.oper]p8: 11676 // An operator function cannot have default arguments (8.3.6), 11677 // except where explicitly stated below. 11678 // 11679 // Only the function-call operator allows default arguments 11680 // (C++ [over.call]p1). 11681 if (Op != OO_Call) { 11682 for (auto Param : FnDecl->params()) { 11683 if (Param->hasDefaultArg()) 11684 return Diag(Param->getLocation(), 11685 diag::err_operator_overload_default_arg) 11686 << FnDecl->getDeclName() << Param->getDefaultArgRange(); 11687 } 11688 } 11689 11690 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = { 11691 { false, false, false } 11692 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ 11693 , { Unary, Binary, MemberOnly } 11694 #include "clang/Basic/OperatorKinds.def" 11695 }; 11696 11697 bool CanBeUnaryOperator = OperatorUses[Op][0]; 11698 bool CanBeBinaryOperator = OperatorUses[Op][1]; 11699 bool MustBeMemberOperator = OperatorUses[Op][2]; 11700 11701 // C++ [over.oper]p8: 11702 // [...] Operator functions cannot have more or fewer parameters 11703 // than the number required for the corresponding operator, as 11704 // described in the rest of this subclause. 11705 unsigned NumParams = FnDecl->getNumParams() 11706 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0); 11707 if (Op != OO_Call && 11708 ((NumParams == 1 && !CanBeUnaryOperator) || 11709 (NumParams == 2 && !CanBeBinaryOperator) || 11710 (NumParams < 1) || (NumParams > 2))) { 11711 // We have the wrong number of parameters. 11712 unsigned ErrorKind; 11713 if (CanBeUnaryOperator && CanBeBinaryOperator) { 11714 ErrorKind = 2; // 2 -> unary or binary. 11715 } else if (CanBeUnaryOperator) { 11716 ErrorKind = 0; // 0 -> unary 11717 } else { 11718 assert(CanBeBinaryOperator && 11719 "All non-call overloaded operators are unary or binary!"); 11720 ErrorKind = 1; // 1 -> binary 11721 } 11722 11723 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be) 11724 << FnDecl->getDeclName() << NumParams << ErrorKind; 11725 } 11726 11727 // Overloaded operators other than operator() cannot be variadic. 11728 if (Op != OO_Call && 11729 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) { 11730 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic) 11731 << FnDecl->getDeclName(); 11732 } 11733 11734 // Some operators must be non-static member functions. 11735 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) { 11736 return Diag(FnDecl->getLocation(), 11737 diag::err_operator_overload_must_be_member) 11738 << FnDecl->getDeclName(); 11739 } 11740 11741 // C++ [over.inc]p1: 11742 // The user-defined function called operator++ implements the 11743 // prefix and postfix ++ operator. If this function is a member 11744 // function with no parameters, or a non-member function with one 11745 // parameter of class or enumeration type, it defines the prefix 11746 // increment operator ++ for objects of that type. If the function 11747 // is a member function with one parameter (which shall be of type 11748 // int) or a non-member function with two parameters (the second 11749 // of which shall be of type int), it defines the postfix 11750 // increment operator ++ for objects of that type. 11751 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) { 11752 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1); 11753 QualType ParamType = LastParam->getType(); 11754 11755 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) && 11756 !ParamType->isDependentType()) 11757 return Diag(LastParam->getLocation(), 11758 diag::err_operator_overload_post_incdec_must_be_int) 11759 << LastParam->getType() << (Op == OO_MinusMinus); 11760 } 11761 11762 return false; 11763 } 11764 11765 /// CheckLiteralOperatorDeclaration - Check whether the declaration 11766 /// of this literal operator function is well-formed. If so, returns 11767 /// false; otherwise, emits appropriate diagnostics and returns true. 11768 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) { 11769 if (isa<CXXMethodDecl>(FnDecl)) { 11770 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace) 11771 << FnDecl->getDeclName(); 11772 return true; 11773 } 11774 11775 if (FnDecl->isExternC()) { 11776 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c); 11777 return true; 11778 } 11779 11780 bool Valid = false; 11781 11782 // This might be the definition of a literal operator template. 11783 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate(); 11784 // This might be a specialization of a literal operator template. 11785 if (!TpDecl) 11786 TpDecl = FnDecl->getPrimaryTemplate(); 11787 11788 // template <char...> type operator "" name() and 11789 // template <class T, T...> type operator "" name() are the only valid 11790 // template signatures, and the only valid signatures with no parameters. 11791 if (TpDecl) { 11792 if (FnDecl->param_size() == 0) { 11793 // Must have one or two template parameters 11794 TemplateParameterList *Params = TpDecl->getTemplateParameters(); 11795 if (Params->size() == 1) { 11796 NonTypeTemplateParmDecl *PmDecl = 11797 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0)); 11798 11799 // The template parameter must be a char parameter pack. 11800 if (PmDecl && PmDecl->isTemplateParameterPack() && 11801 Context.hasSameType(PmDecl->getType(), Context.CharTy)) 11802 Valid = true; 11803 } else if (Params->size() == 2) { 11804 TemplateTypeParmDecl *PmType = 11805 dyn_cast<TemplateTypeParmDecl>(Params->getParam(0)); 11806 NonTypeTemplateParmDecl *PmArgs = 11807 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(1)); 11808 11809 // The second template parameter must be a parameter pack with the 11810 // first template parameter as its type. 11811 if (PmType && PmArgs && 11812 !PmType->isTemplateParameterPack() && 11813 PmArgs->isTemplateParameterPack()) { 11814 const TemplateTypeParmType *TArgs = 11815 PmArgs->getType()->getAs<TemplateTypeParmType>(); 11816 if (TArgs && TArgs->getDepth() == PmType->getDepth() && 11817 TArgs->getIndex() == PmType->getIndex()) { 11818 Valid = true; 11819 if (ActiveTemplateInstantiations.empty()) 11820 Diag(FnDecl->getLocation(), 11821 diag::ext_string_literal_operator_template); 11822 } 11823 } 11824 } 11825 } 11826 } else if (FnDecl->param_size()) { 11827 // Check the first parameter 11828 FunctionDecl::param_iterator Param = FnDecl->param_begin(); 11829 11830 QualType T = (*Param)->getType().getUnqualifiedType(); 11831 11832 // unsigned long long int, long double, and any character type are allowed 11833 // as the only parameters. 11834 if (Context.hasSameType(T, Context.UnsignedLongLongTy) || 11835 Context.hasSameType(T, Context.LongDoubleTy) || 11836 Context.hasSameType(T, Context.CharTy) || 11837 Context.hasSameType(T, Context.WideCharTy) || 11838 Context.hasSameType(T, Context.Char16Ty) || 11839 Context.hasSameType(T, Context.Char32Ty)) { 11840 if (++Param == FnDecl->param_end()) 11841 Valid = true; 11842 goto FinishedParams; 11843 } 11844 11845 // Otherwise it must be a pointer to const; let's strip those qualifiers. 11846 const PointerType *PT = T->getAs<PointerType>(); 11847 if (!PT) 11848 goto FinishedParams; 11849 T = PT->getPointeeType(); 11850 if (!T.isConstQualified() || T.isVolatileQualified()) 11851 goto FinishedParams; 11852 T = T.getUnqualifiedType(); 11853 11854 // Move on to the second parameter; 11855 ++Param; 11856 11857 // If there is no second parameter, the first must be a const char * 11858 if (Param == FnDecl->param_end()) { 11859 if (Context.hasSameType(T, Context.CharTy)) 11860 Valid = true; 11861 goto FinishedParams; 11862 } 11863 11864 // const char *, const wchar_t*, const char16_t*, and const char32_t* 11865 // are allowed as the first parameter to a two-parameter function 11866 if (!(Context.hasSameType(T, Context.CharTy) || 11867 Context.hasSameType(T, Context.WideCharTy) || 11868 Context.hasSameType(T, Context.Char16Ty) || 11869 Context.hasSameType(T, Context.Char32Ty))) 11870 goto FinishedParams; 11871 11872 // The second and final parameter must be an std::size_t 11873 T = (*Param)->getType().getUnqualifiedType(); 11874 if (Context.hasSameType(T, Context.getSizeType()) && 11875 ++Param == FnDecl->param_end()) 11876 Valid = true; 11877 } 11878 11879 // FIXME: This diagnostic is absolutely terrible. 11880 FinishedParams: 11881 if (!Valid) { 11882 Diag(FnDecl->getLocation(), diag::err_literal_operator_params) 11883 << FnDecl->getDeclName(); 11884 return true; 11885 } 11886 11887 // A parameter-declaration-clause containing a default argument is not 11888 // equivalent to any of the permitted forms. 11889 for (auto Param : FnDecl->params()) { 11890 if (Param->hasDefaultArg()) { 11891 Diag(Param->getDefaultArgRange().getBegin(), 11892 diag::err_literal_operator_default_argument) 11893 << Param->getDefaultArgRange(); 11894 break; 11895 } 11896 } 11897 11898 StringRef LiteralName 11899 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName(); 11900 if (LiteralName[0] != '_') { 11901 // C++11 [usrlit.suffix]p1: 11902 // Literal suffix identifiers that do not start with an underscore 11903 // are reserved for future standardization. 11904 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved) 11905 << NumericLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName); 11906 } 11907 11908 return false; 11909 } 11910 11911 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++ 11912 /// linkage specification, including the language and (if present) 11913 /// the '{'. ExternLoc is the location of the 'extern', Lang is the 11914 /// language string literal. LBraceLoc, if valid, provides the location of 11915 /// the '{' brace. Otherwise, this linkage specification does not 11916 /// have any braces. 11917 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, 11918 Expr *LangStr, 11919 SourceLocation LBraceLoc) { 11920 StringLiteral *Lit = cast<StringLiteral>(LangStr); 11921 if (!Lit->isAscii()) { 11922 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii) 11923 << LangStr->getSourceRange(); 11924 return nullptr; 11925 } 11926 11927 StringRef Lang = Lit->getString(); 11928 LinkageSpecDecl::LanguageIDs Language; 11929 if (Lang == "C") 11930 Language = LinkageSpecDecl::lang_c; 11931 else if (Lang == "C++") 11932 Language = LinkageSpecDecl::lang_cxx; 11933 else { 11934 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown) 11935 << LangStr->getSourceRange(); 11936 return nullptr; 11937 } 11938 11939 // FIXME: Add all the various semantics of linkage specifications 11940 11941 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc, 11942 LangStr->getExprLoc(), Language, 11943 LBraceLoc.isValid()); 11944 CurContext->addDecl(D); 11945 PushDeclContext(S, D); 11946 return D; 11947 } 11948 11949 /// ActOnFinishLinkageSpecification - Complete the definition of 11950 /// the C++ linkage specification LinkageSpec. If RBraceLoc is 11951 /// valid, it's the position of the closing '}' brace in a linkage 11952 /// specification that uses braces. 11953 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S, 11954 Decl *LinkageSpec, 11955 SourceLocation RBraceLoc) { 11956 if (RBraceLoc.isValid()) { 11957 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec); 11958 LSDecl->setRBraceLoc(RBraceLoc); 11959 } 11960 PopDeclContext(); 11961 return LinkageSpec; 11962 } 11963 11964 Decl *Sema::ActOnEmptyDeclaration(Scope *S, 11965 AttributeList *AttrList, 11966 SourceLocation SemiLoc) { 11967 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); 11968 // Attribute declarations appertain to empty declaration so we handle 11969 // them here. 11970 if (AttrList) 11971 ProcessDeclAttributeList(S, ED, AttrList); 11972 11973 CurContext->addDecl(ED); 11974 return ED; 11975 } 11976 11977 /// \brief Perform semantic analysis for the variable declaration that 11978 /// occurs within a C++ catch clause, returning the newly-created 11979 /// variable. 11980 VarDecl *Sema::BuildExceptionDeclaration(Scope *S, 11981 TypeSourceInfo *TInfo, 11982 SourceLocation StartLoc, 11983 SourceLocation Loc, 11984 IdentifierInfo *Name) { 11985 bool Invalid = false; 11986 QualType ExDeclType = TInfo->getType(); 11987 11988 // Arrays and functions decay. 11989 if (ExDeclType->isArrayType()) 11990 ExDeclType = Context.getArrayDecayedType(ExDeclType); 11991 else if (ExDeclType->isFunctionType()) 11992 ExDeclType = Context.getPointerType(ExDeclType); 11993 11994 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type. 11995 // The exception-declaration shall not denote a pointer or reference to an 11996 // incomplete type, other than [cv] void*. 11997 // N2844 forbids rvalue references. 11998 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) { 11999 Diag(Loc, diag::err_catch_rvalue_ref); 12000 Invalid = true; 12001 } 12002 12003 QualType BaseType = ExDeclType; 12004 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference 12005 unsigned DK = diag::err_catch_incomplete; 12006 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { 12007 BaseType = Ptr->getPointeeType(); 12008 Mode = 1; 12009 DK = diag::err_catch_incomplete_ptr; 12010 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) { 12011 // For the purpose of error recovery, we treat rvalue refs like lvalue refs. 12012 BaseType = Ref->getPointeeType(); 12013 Mode = 2; 12014 DK = diag::err_catch_incomplete_ref; 12015 } 12016 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) && 12017 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK)) 12018 Invalid = true; 12019 12020 if (!Invalid && !ExDeclType->isDependentType() && 12021 RequireNonAbstractType(Loc, ExDeclType, 12022 diag::err_abstract_type_in_decl, 12023 AbstractVariableType)) 12024 Invalid = true; 12025 12026 // Only the non-fragile NeXT runtime currently supports C++ catches 12027 // of ObjC types, and no runtime supports catching ObjC types by value. 12028 if (!Invalid && getLangOpts().ObjC1) { 12029 QualType T = ExDeclType; 12030 if (const ReferenceType *RT = T->getAs<ReferenceType>()) 12031 T = RT->getPointeeType(); 12032 12033 if (T->isObjCObjectType()) { 12034 Diag(Loc, diag::err_objc_object_catch); 12035 Invalid = true; 12036 } else if (T->isObjCObjectPointerType()) { 12037 // FIXME: should this be a test for macosx-fragile specifically? 12038 if (getLangOpts().ObjCRuntime.isFragile()) 12039 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile); 12040 } 12041 } 12042 12043 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, 12044 ExDeclType, TInfo, SC_None); 12045 ExDecl->setExceptionVariable(true); 12046 12047 // In ARC, infer 'retaining' for variables of retainable type. 12048 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) 12049 Invalid = true; 12050 12051 if (!Invalid && !ExDeclType->isDependentType()) { 12052 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) { 12053 // Insulate this from anything else we might currently be parsing. 12054 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated); 12055 12056 // C++ [except.handle]p16: 12057 // The object declared in an exception-declaration or, if the 12058 // exception-declaration does not specify a name, a temporary (12.2) is 12059 // copy-initialized (8.5) from the exception object. [...] 12060 // The object is destroyed when the handler exits, after the destruction 12061 // of any automatic objects initialized within the handler. 12062 // 12063 // We just pretend to initialize the object with itself, then make sure 12064 // it can be destroyed later. 12065 QualType initType = Context.getExceptionObjectType(ExDeclType); 12066 12067 InitializedEntity entity = 12068 InitializedEntity::InitializeVariable(ExDecl); 12069 InitializationKind initKind = 12070 InitializationKind::CreateCopy(Loc, SourceLocation()); 12071 12072 Expr *opaqueValue = 12073 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary); 12074 InitializationSequence sequence(*this, entity, initKind, opaqueValue); 12075 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue); 12076 if (result.isInvalid()) 12077 Invalid = true; 12078 else { 12079 // If the constructor used was non-trivial, set this as the 12080 // "initializer". 12081 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>(); 12082 if (!construct->getConstructor()->isTrivial()) { 12083 Expr *init = MaybeCreateExprWithCleanups(construct); 12084 ExDecl->setInit(init); 12085 } 12086 12087 // And make sure it's destructable. 12088 FinalizeVarWithDestructor(ExDecl, recordType); 12089 } 12090 } 12091 } 12092 12093 if (Invalid) 12094 ExDecl->setInvalidDecl(); 12095 12096 return ExDecl; 12097 } 12098 12099 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch 12100 /// handler. 12101 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) { 12102 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 12103 bool Invalid = D.isInvalidType(); 12104 12105 // Check for unexpanded parameter packs. 12106 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 12107 UPPC_ExceptionType)) { 12108 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 12109 D.getIdentifierLoc()); 12110 Invalid = true; 12111 } 12112 12113 IdentifierInfo *II = D.getIdentifier(); 12114 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(), 12115 LookupOrdinaryName, 12116 ForRedeclaration)) { 12117 // The scope should be freshly made just for us. There is just no way 12118 // it contains any previous declaration, except for function parameters in 12119 // a function-try-block's catch statement. 12120 assert(!S->isDeclScope(PrevDecl)); 12121 if (isDeclInScope(PrevDecl, CurContext, S)) { 12122 Diag(D.getIdentifierLoc(), diag::err_redefinition) 12123 << D.getIdentifier(); 12124 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 12125 Invalid = true; 12126 } else if (PrevDecl->isTemplateParameter()) 12127 // Maybe we will complain about the shadowed template parameter. 12128 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 12129 } 12130 12131 if (D.getCXXScopeSpec().isSet() && !Invalid) { 12132 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator) 12133 << D.getCXXScopeSpec().getRange(); 12134 Invalid = true; 12135 } 12136 12137 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, 12138 D.getLocStart(), 12139 D.getIdentifierLoc(), 12140 D.getIdentifier()); 12141 if (Invalid) 12142 ExDecl->setInvalidDecl(); 12143 12144 // Add the exception declaration into this scope. 12145 if (II) 12146 PushOnScopeChains(ExDecl, S); 12147 else 12148 CurContext->addDecl(ExDecl); 12149 12150 ProcessDeclAttributes(S, ExDecl, D); 12151 return ExDecl; 12152 } 12153 12154 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12155 Expr *AssertExpr, 12156 Expr *AssertMessageExpr, 12157 SourceLocation RParenLoc) { 12158 StringLiteral *AssertMessage = 12159 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr; 12160 12161 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression)) 12162 return nullptr; 12163 12164 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr, 12165 AssertMessage, RParenLoc, false); 12166 } 12167 12168 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12169 Expr *AssertExpr, 12170 StringLiteral *AssertMessage, 12171 SourceLocation RParenLoc, 12172 bool Failed) { 12173 assert(AssertExpr != nullptr && "Expected non-null condition"); 12174 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() && 12175 !Failed) { 12176 // In a static_assert-declaration, the constant-expression shall be a 12177 // constant expression that can be contextually converted to bool. 12178 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); 12179 if (Converted.isInvalid()) 12180 Failed = true; 12181 12182 llvm::APSInt Cond; 12183 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond, 12184 diag::err_static_assert_expression_is_not_constant, 12185 /*AllowFold=*/false).isInvalid()) 12186 Failed = true; 12187 12188 if (!Failed && !Cond) { 12189 SmallString<256> MsgBuffer; 12190 llvm::raw_svector_ostream Msg(MsgBuffer); 12191 if (AssertMessage) 12192 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy()); 12193 Diag(StaticAssertLoc, diag::err_static_assert_failed) 12194 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); 12195 Failed = true; 12196 } 12197 } 12198 12199 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc, 12200 AssertExpr, AssertMessage, RParenLoc, 12201 Failed); 12202 12203 CurContext->addDecl(Decl); 12204 return Decl; 12205 } 12206 12207 /// \brief Perform semantic analysis of the given friend type declaration. 12208 /// 12209 /// \returns A friend declaration that. 12210 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart, 12211 SourceLocation FriendLoc, 12212 TypeSourceInfo *TSInfo) { 12213 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration"); 12214 12215 QualType T = TSInfo->getType(); 12216 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange(); 12217 12218 // C++03 [class.friend]p2: 12219 // An elaborated-type-specifier shall be used in a friend declaration 12220 // for a class.* 12221 // 12222 // * The class-key of the elaborated-type-specifier is required. 12223 if (!ActiveTemplateInstantiations.empty()) { 12224 // Do not complain about the form of friend template types during 12225 // template instantiation; we will already have complained when the 12226 // template was declared. 12227 } else { 12228 if (!T->isElaboratedTypeSpecifier()) { 12229 // If we evaluated the type to a record type, suggest putting 12230 // a tag in front. 12231 if (const RecordType *RT = T->getAs<RecordType>()) { 12232 RecordDecl *RD = RT->getDecl(); 12233 12234 SmallString<16> InsertionText(" "); 12235 InsertionText += RD->getKindName(); 12236 12237 Diag(TypeRange.getBegin(), 12238 getLangOpts().CPlusPlus11 ? 12239 diag::warn_cxx98_compat_unelaborated_friend_type : 12240 diag::ext_unelaborated_friend_type) 12241 << (unsigned) RD->getTagKind() 12242 << T 12243 << FixItHint::CreateInsertion(getLocForEndOfToken(FriendLoc), 12244 InsertionText); 12245 } else { 12246 Diag(FriendLoc, 12247 getLangOpts().CPlusPlus11 ? 12248 diag::warn_cxx98_compat_nonclass_type_friend : 12249 diag::ext_nonclass_type_friend) 12250 << T 12251 << TypeRange; 12252 } 12253 } else if (T->getAs<EnumType>()) { 12254 Diag(FriendLoc, 12255 getLangOpts().CPlusPlus11 ? 12256 diag::warn_cxx98_compat_enum_friend : 12257 diag::ext_enum_friend) 12258 << T 12259 << TypeRange; 12260 } 12261 12262 // C++11 [class.friend]p3: 12263 // A friend declaration that does not declare a function shall have one 12264 // of the following forms: 12265 // friend elaborated-type-specifier ; 12266 // friend simple-type-specifier ; 12267 // friend typename-specifier ; 12268 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc) 12269 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T; 12270 } 12271 12272 // If the type specifier in a friend declaration designates a (possibly 12273 // cv-qualified) class type, that class is declared as a friend; otherwise, 12274 // the friend declaration is ignored. 12275 return FriendDecl::Create(Context, CurContext, 12276 TSInfo->getTypeLoc().getLocStart(), TSInfo, 12277 FriendLoc); 12278 } 12279 12280 /// Handle a friend tag declaration where the scope specifier was 12281 /// templated. 12282 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc, 12283 unsigned TagSpec, SourceLocation TagLoc, 12284 CXXScopeSpec &SS, 12285 IdentifierInfo *Name, 12286 SourceLocation NameLoc, 12287 AttributeList *Attr, 12288 MultiTemplateParamsArg TempParamLists) { 12289 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 12290 12291 bool isExplicitSpecialization = false; 12292 bool Invalid = false; 12293 12294 if (TemplateParameterList *TemplateParams = 12295 MatchTemplateParametersToScopeSpecifier( 12296 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true, 12297 isExplicitSpecialization, Invalid)) { 12298 if (TemplateParams->size() > 0) { 12299 // This is a declaration of a class template. 12300 if (Invalid) 12301 return nullptr; 12302 12303 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name, 12304 NameLoc, Attr, TemplateParams, AS_public, 12305 /*ModulePrivateLoc=*/SourceLocation(), 12306 FriendLoc, TempParamLists.size() - 1, 12307 TempParamLists.data()).get(); 12308 } else { 12309 // The "template<>" header is extraneous. 12310 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 12311 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 12312 isExplicitSpecialization = true; 12313 } 12314 } 12315 12316 if (Invalid) return nullptr; 12317 12318 bool isAllExplicitSpecializations = true; 12319 for (unsigned I = TempParamLists.size(); I-- > 0; ) { 12320 if (TempParamLists[I]->size()) { 12321 isAllExplicitSpecializations = false; 12322 break; 12323 } 12324 } 12325 12326 // FIXME: don't ignore attributes. 12327 12328 // If it's explicit specializations all the way down, just forget 12329 // about the template header and build an appropriate non-templated 12330 // friend. TODO: for source fidelity, remember the headers. 12331 if (isAllExplicitSpecializations) { 12332 if (SS.isEmpty()) { 12333 bool Owned = false; 12334 bool IsDependent = false; 12335 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc, 12336 Attr, AS_public, 12337 /*ModulePrivateLoc=*/SourceLocation(), 12338 MultiTemplateParamsArg(), Owned, IsDependent, 12339 /*ScopedEnumKWLoc=*/SourceLocation(), 12340 /*ScopedEnumUsesClassTag=*/false, 12341 /*UnderlyingType=*/TypeResult(), 12342 /*IsTypeSpecifier=*/false); 12343 } 12344 12345 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 12346 ElaboratedTypeKeyword Keyword 12347 = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12348 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc, 12349 *Name, NameLoc); 12350 if (T.isNull()) 12351 return nullptr; 12352 12353 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12354 if (isa<DependentNameType>(T)) { 12355 DependentNameTypeLoc TL = 12356 TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12357 TL.setElaboratedKeywordLoc(TagLoc); 12358 TL.setQualifierLoc(QualifierLoc); 12359 TL.setNameLoc(NameLoc); 12360 } else { 12361 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); 12362 TL.setElaboratedKeywordLoc(TagLoc); 12363 TL.setQualifierLoc(QualifierLoc); 12364 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc); 12365 } 12366 12367 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12368 TSI, FriendLoc, TempParamLists); 12369 Friend->setAccess(AS_public); 12370 CurContext->addDecl(Friend); 12371 return Friend; 12372 } 12373 12374 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); 12375 12376 12377 12378 // Handle the case of a templated-scope friend class. e.g. 12379 // template <class T> class A<T>::B; 12380 // FIXME: we don't support these right now. 12381 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported) 12382 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext); 12383 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12384 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name); 12385 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12386 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12387 TL.setElaboratedKeywordLoc(TagLoc); 12388 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 12389 TL.setNameLoc(NameLoc); 12390 12391 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12392 TSI, FriendLoc, TempParamLists); 12393 Friend->setAccess(AS_public); 12394 Friend->setUnsupportedFriend(true); 12395 CurContext->addDecl(Friend); 12396 return Friend; 12397 } 12398 12399 12400 /// Handle a friend type declaration. This works in tandem with 12401 /// ActOnTag. 12402 /// 12403 /// Notes on friend class templates: 12404 /// 12405 /// We generally treat friend class declarations as if they were 12406 /// declaring a class. So, for example, the elaborated type specifier 12407 /// in a friend declaration is required to obey the restrictions of a 12408 /// class-head (i.e. no typedefs in the scope chain), template 12409 /// parameters are required to match up with simple template-ids, &c. 12410 /// However, unlike when declaring a template specialization, it's 12411 /// okay to refer to a template specialization without an empty 12412 /// template parameter declaration, e.g. 12413 /// friend class A<T>::B<unsigned>; 12414 /// We permit this as a special case; if there are any template 12415 /// parameters present at all, require proper matching, i.e. 12416 /// template <> template \<class T> friend class A<int>::B; 12417 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, 12418 MultiTemplateParamsArg TempParams) { 12419 SourceLocation Loc = DS.getLocStart(); 12420 12421 assert(DS.isFriendSpecified()); 12422 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12423 12424 // Try to convert the decl specifier to a type. This works for 12425 // friend templates because ActOnTag never produces a ClassTemplateDecl 12426 // for a TUK_Friend. 12427 Declarator TheDeclarator(DS, Declarator::MemberContext); 12428 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S); 12429 QualType T = TSI->getType(); 12430 if (TheDeclarator.isInvalidType()) 12431 return nullptr; 12432 12433 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration)) 12434 return nullptr; 12435 12436 // This is definitely an error in C++98. It's probably meant to 12437 // be forbidden in C++0x, too, but the specification is just 12438 // poorly written. 12439 // 12440 // The problem is with declarations like the following: 12441 // template <T> friend A<T>::foo; 12442 // where deciding whether a class C is a friend or not now hinges 12443 // on whether there exists an instantiation of A that causes 12444 // 'foo' to equal C. There are restrictions on class-heads 12445 // (which we declare (by fiat) elaborated friend declarations to 12446 // be) that makes this tractable. 12447 // 12448 // FIXME: handle "template <> friend class A<T>;", which 12449 // is possibly well-formed? Who even knows? 12450 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) { 12451 Diag(Loc, diag::err_tagless_friend_type_template) 12452 << DS.getSourceRange(); 12453 return nullptr; 12454 } 12455 12456 // C++98 [class.friend]p1: A friend of a class is a function 12457 // or class that is not a member of the class . . . 12458 // This is fixed in DR77, which just barely didn't make the C++03 12459 // deadline. It's also a very silly restriction that seriously 12460 // affects inner classes and which nobody else seems to implement; 12461 // thus we never diagnose it, not even in -pedantic. 12462 // 12463 // But note that we could warn about it: it's always useless to 12464 // friend one of your own members (it's not, however, worthless to 12465 // friend a member of an arbitrary specialization of your template). 12466 12467 Decl *D; 12468 if (unsigned NumTempParamLists = TempParams.size()) 12469 D = FriendTemplateDecl::Create(Context, CurContext, Loc, 12470 NumTempParamLists, 12471 TempParams.data(), 12472 TSI, 12473 DS.getFriendSpecLoc()); 12474 else 12475 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI); 12476 12477 if (!D) 12478 return nullptr; 12479 12480 D->setAccess(AS_public); 12481 CurContext->addDecl(D); 12482 12483 return D; 12484 } 12485 12486 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, 12487 MultiTemplateParamsArg TemplateParams) { 12488 const DeclSpec &DS = D.getDeclSpec(); 12489 12490 assert(DS.isFriendSpecified()); 12491 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12492 12493 SourceLocation Loc = D.getIdentifierLoc(); 12494 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 12495 12496 // C++ [class.friend]p1 12497 // A friend of a class is a function or class.... 12498 // Note that this sees through typedefs, which is intended. 12499 // It *doesn't* see through dependent types, which is correct 12500 // according to [temp.arg.type]p3: 12501 // If a declaration acquires a function type through a 12502 // type dependent on a template-parameter and this causes 12503 // a declaration that does not use the syntactic form of a 12504 // function declarator to have a function type, the program 12505 // is ill-formed. 12506 if (!TInfo->getType()->isFunctionType()) { 12507 Diag(Loc, diag::err_unexpected_friend); 12508 12509 // It might be worthwhile to try to recover by creating an 12510 // appropriate declaration. 12511 return nullptr; 12512 } 12513 12514 // C++ [namespace.memdef]p3 12515 // - If a friend declaration in a non-local class first declares a 12516 // class or function, the friend class or function is a member 12517 // of the innermost enclosing namespace. 12518 // - The name of the friend is not found by simple name lookup 12519 // until a matching declaration is provided in that namespace 12520 // scope (either before or after the class declaration granting 12521 // friendship). 12522 // - If a friend function is called, its name may be found by the 12523 // name lookup that considers functions from namespaces and 12524 // classes associated with the types of the function arguments. 12525 // - When looking for a prior declaration of a class or a function 12526 // declared as a friend, scopes outside the innermost enclosing 12527 // namespace scope are not considered. 12528 12529 CXXScopeSpec &SS = D.getCXXScopeSpec(); 12530 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 12531 DeclarationName Name = NameInfo.getName(); 12532 assert(Name); 12533 12534 // Check for unexpanded parameter packs. 12535 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) || 12536 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) || 12537 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration)) 12538 return nullptr; 12539 12540 // The context we found the declaration in, or in which we should 12541 // create the declaration. 12542 DeclContext *DC; 12543 Scope *DCScope = S; 12544 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 12545 ForRedeclaration); 12546 12547 // There are five cases here. 12548 // - There's no scope specifier and we're in a local class. Only look 12549 // for functions declared in the immediately-enclosing block scope. 12550 // We recover from invalid scope qualifiers as if they just weren't there. 12551 FunctionDecl *FunctionContainingLocalClass = nullptr; 12552 if ((SS.isInvalid() || !SS.isSet()) && 12553 (FunctionContainingLocalClass = 12554 cast<CXXRecordDecl>(CurContext)->isLocalClass())) { 12555 // C++11 [class.friend]p11: 12556 // If a friend declaration appears in a local class and the name 12557 // specified is an unqualified name, a prior declaration is 12558 // looked up without considering scopes that are outside the 12559 // innermost enclosing non-class scope. For a friend function 12560 // declaration, if there is no prior declaration, the program is 12561 // ill-formed. 12562 12563 // Find the innermost enclosing non-class scope. This is the block 12564 // scope containing the local class definition (or for a nested class, 12565 // the outer local class). 12566 DCScope = S->getFnParent(); 12567 12568 // Look up the function name in the scope. 12569 Previous.clear(LookupLocalFriendName); 12570 LookupName(Previous, S, /*AllowBuiltinCreation*/false); 12571 12572 if (!Previous.empty()) { 12573 // All possible previous declarations must have the same context: 12574 // either they were declared at block scope or they are members of 12575 // one of the enclosing local classes. 12576 DC = Previous.getRepresentativeDecl()->getDeclContext(); 12577 } else { 12578 // This is ill-formed, but provide the context that we would have 12579 // declared the function in, if we were permitted to, for error recovery. 12580 DC = FunctionContainingLocalClass; 12581 } 12582 adjustContextForLocalExternDecl(DC); 12583 12584 // C++ [class.friend]p6: 12585 // A function can be defined in a friend declaration of a class if and 12586 // only if the class is a non-local class (9.8), the function name is 12587 // unqualified, and the function has namespace scope. 12588 if (D.isFunctionDefinition()) { 12589 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class); 12590 } 12591 12592 // - There's no scope specifier, in which case we just go to the 12593 // appropriate scope and look for a function or function template 12594 // there as appropriate. 12595 } else if (SS.isInvalid() || !SS.isSet()) { 12596 // C++11 [namespace.memdef]p3: 12597 // If the name in a friend declaration is neither qualified nor 12598 // a template-id and the declaration is a function or an 12599 // elaborated-type-specifier, the lookup to determine whether 12600 // the entity has been previously declared shall not consider 12601 // any scopes outside the innermost enclosing namespace. 12602 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId; 12603 12604 // Find the appropriate context according to the above. 12605 DC = CurContext; 12606 12607 // Skip class contexts. If someone can cite chapter and verse 12608 // for this behavior, that would be nice --- it's what GCC and 12609 // EDG do, and it seems like a reasonable intent, but the spec 12610 // really only says that checks for unqualified existing 12611 // declarations should stop at the nearest enclosing namespace, 12612 // not that they should only consider the nearest enclosing 12613 // namespace. 12614 while (DC->isRecord()) 12615 DC = DC->getParent(); 12616 12617 DeclContext *LookupDC = DC; 12618 while (LookupDC->isTransparentContext()) 12619 LookupDC = LookupDC->getParent(); 12620 12621 while (true) { 12622 LookupQualifiedName(Previous, LookupDC); 12623 12624 if (!Previous.empty()) { 12625 DC = LookupDC; 12626 break; 12627 } 12628 12629 if (isTemplateId) { 12630 if (isa<TranslationUnitDecl>(LookupDC)) break; 12631 } else { 12632 if (LookupDC->isFileContext()) break; 12633 } 12634 LookupDC = LookupDC->getParent(); 12635 } 12636 12637 DCScope = getScopeForDeclContext(S, DC); 12638 12639 // - There's a non-dependent scope specifier, in which case we 12640 // compute it and do a previous lookup there for a function 12641 // or function template. 12642 } else if (!SS.getScopeRep()->isDependent()) { 12643 DC = computeDeclContext(SS); 12644 if (!DC) return nullptr; 12645 12646 if (RequireCompleteDeclContext(SS, DC)) return nullptr; 12647 12648 LookupQualifiedName(Previous, DC); 12649 12650 // Ignore things found implicitly in the wrong scope. 12651 // TODO: better diagnostics for this case. Suggesting the right 12652 // qualified scope would be nice... 12653 LookupResult::Filter F = Previous.makeFilter(); 12654 while (F.hasNext()) { 12655 NamedDecl *D = F.next(); 12656 if (!DC->InEnclosingNamespaceSetOf( 12657 D->getDeclContext()->getRedeclContext())) 12658 F.erase(); 12659 } 12660 F.done(); 12661 12662 if (Previous.empty()) { 12663 D.setInvalidType(); 12664 Diag(Loc, diag::err_qualified_friend_not_found) 12665 << Name << TInfo->getType(); 12666 return nullptr; 12667 } 12668 12669 // C++ [class.friend]p1: A friend of a class is a function or 12670 // class that is not a member of the class . . . 12671 if (DC->Equals(CurContext)) 12672 Diag(DS.getFriendSpecLoc(), 12673 getLangOpts().CPlusPlus11 ? 12674 diag::warn_cxx98_compat_friend_is_member : 12675 diag::err_friend_is_member); 12676 12677 if (D.isFunctionDefinition()) { 12678 // C++ [class.friend]p6: 12679 // A function can be defined in a friend declaration of a class if and 12680 // only if the class is a non-local class (9.8), the function name is 12681 // unqualified, and the function has namespace scope. 12682 SemaDiagnosticBuilder DB 12683 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def); 12684 12685 DB << SS.getScopeRep(); 12686 if (DC->isFileContext()) 12687 DB << FixItHint::CreateRemoval(SS.getRange()); 12688 SS.clear(); 12689 } 12690 12691 // - There's a scope specifier that does not match any template 12692 // parameter lists, in which case we use some arbitrary context, 12693 // create a method or method template, and wait for instantiation. 12694 // - There's a scope specifier that does match some template 12695 // parameter lists, which we don't handle right now. 12696 } else { 12697 if (D.isFunctionDefinition()) { 12698 // C++ [class.friend]p6: 12699 // A function can be defined in a friend declaration of a class if and 12700 // only if the class is a non-local class (9.8), the function name is 12701 // unqualified, and the function has namespace scope. 12702 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def) 12703 << SS.getScopeRep(); 12704 } 12705 12706 DC = CurContext; 12707 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?"); 12708 } 12709 12710 if (!DC->isRecord()) { 12711 int DiagArg = -1; 12712 switch (D.getName().getKind()) { 12713 case UnqualifiedId::IK_ConstructorTemplateId: 12714 case UnqualifiedId::IK_ConstructorName: 12715 DiagArg = 0; 12716 break; 12717 case UnqualifiedId::IK_DestructorName: 12718 DiagArg = 1; 12719 break; 12720 case UnqualifiedId::IK_ConversionFunctionId: 12721 DiagArg = 2; 12722 break; 12723 case UnqualifiedId::IK_Identifier: 12724 case UnqualifiedId::IK_ImplicitSelfParam: 12725 case UnqualifiedId::IK_LiteralOperatorId: 12726 case UnqualifiedId::IK_OperatorFunctionId: 12727 case UnqualifiedId::IK_TemplateId: 12728 break; 12729 } 12730 // This implies that it has to be an operator or function. 12731 if (DiagArg >= 0) { 12732 Diag(Loc, diag::err_introducing_special_friend) << DiagArg; 12733 return nullptr; 12734 } 12735 } 12736 12737 // FIXME: This is an egregious hack to cope with cases where the scope stack 12738 // does not contain the declaration context, i.e., in an out-of-line 12739 // definition of a class. 12740 Scope FakeDCScope(S, Scope::DeclScope, Diags); 12741 if (!DCScope) { 12742 FakeDCScope.setEntity(DC); 12743 DCScope = &FakeDCScope; 12744 } 12745 12746 bool AddToScope = true; 12747 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous, 12748 TemplateParams, AddToScope); 12749 if (!ND) return nullptr; 12750 12751 assert(ND->getLexicalDeclContext() == CurContext); 12752 12753 // If we performed typo correction, we might have added a scope specifier 12754 // and changed the decl context. 12755 DC = ND->getDeclContext(); 12756 12757 // Add the function declaration to the appropriate lookup tables, 12758 // adjusting the redeclarations list as necessary. We don't 12759 // want to do this yet if the friending class is dependent. 12760 // 12761 // Also update the scope-based lookup if the target context's 12762 // lookup context is in lexical scope. 12763 if (!CurContext->isDependentContext()) { 12764 DC = DC->getRedeclContext(); 12765 DC->makeDeclVisibleInContext(ND); 12766 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 12767 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false); 12768 } 12769 12770 FriendDecl *FrD = FriendDecl::Create(Context, CurContext, 12771 D.getIdentifierLoc(), ND, 12772 DS.getFriendSpecLoc()); 12773 FrD->setAccess(AS_public); 12774 CurContext->addDecl(FrD); 12775 12776 if (ND->isInvalidDecl()) { 12777 FrD->setInvalidDecl(); 12778 } else { 12779 if (DC->isRecord()) CheckFriendAccess(ND); 12780 12781 FunctionDecl *FD; 12782 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 12783 FD = FTD->getTemplatedDecl(); 12784 else 12785 FD = cast<FunctionDecl>(ND); 12786 12787 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a 12788 // default argument expression, that declaration shall be a definition 12789 // and shall be the only declaration of the function or function 12790 // template in the translation unit. 12791 if (functionDeclHasDefaultArgument(FD)) { 12792 if (FunctionDecl *OldFD = FD->getPreviousDecl()) { 12793 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 12794 Diag(OldFD->getLocation(), diag::note_previous_declaration); 12795 } else if (!D.isFunctionDefinition()) 12796 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def); 12797 } 12798 12799 // Mark templated-scope function declarations as unsupported. 12800 if (FD->getNumTemplateParameterLists() && SS.isValid()) { 12801 Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported) 12802 << SS.getScopeRep() << SS.getRange() 12803 << cast<CXXRecordDecl>(CurContext); 12804 FrD->setUnsupportedFriend(true); 12805 } 12806 } 12807 12808 return ND; 12809 } 12810 12811 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) { 12812 AdjustDeclIfTemplate(Dcl); 12813 12814 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl); 12815 if (!Fn) { 12816 Diag(DelLoc, diag::err_deleted_non_function); 12817 return; 12818 } 12819 12820 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) { 12821 // Don't consider the implicit declaration we generate for explicit 12822 // specializations. FIXME: Do not generate these implicit declarations. 12823 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization || 12824 Prev->getPreviousDecl()) && 12825 !Prev->isDefined()) { 12826 Diag(DelLoc, diag::err_deleted_decl_not_first); 12827 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(), 12828 Prev->isImplicit() ? diag::note_previous_implicit_declaration 12829 : diag::note_previous_declaration); 12830 } 12831 // If the declaration wasn't the first, we delete the function anyway for 12832 // recovery. 12833 Fn = Fn->getCanonicalDecl(); 12834 } 12835 12836 // dllimport/dllexport cannot be deleted. 12837 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) { 12838 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr; 12839 Fn->setInvalidDecl(); 12840 } 12841 12842 if (Fn->isDeleted()) 12843 return; 12844 12845 // See if we're deleting a function which is already known to override a 12846 // non-deleted virtual function. 12847 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) { 12848 bool IssuedDiagnostic = false; 12849 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 12850 E = MD->end_overridden_methods(); 12851 I != E; ++I) { 12852 if (!(*MD->begin_overridden_methods())->isDeleted()) { 12853 if (!IssuedDiagnostic) { 12854 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName(); 12855 IssuedDiagnostic = true; 12856 } 12857 Diag((*I)->getLocation(), diag::note_overridden_virtual_function); 12858 } 12859 } 12860 } 12861 12862 // C++11 [basic.start.main]p3: 12863 // A program that defines main as deleted [...] is ill-formed. 12864 if (Fn->isMain()) 12865 Diag(DelLoc, diag::err_deleted_main); 12866 12867 Fn->setDeletedAsWritten(); 12868 } 12869 12870 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { 12871 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl); 12872 12873 if (MD) { 12874 if (MD->getParent()->isDependentType()) { 12875 MD->setDefaulted(); 12876 MD->setExplicitlyDefaulted(); 12877 return; 12878 } 12879 12880 CXXSpecialMember Member = getSpecialMember(MD); 12881 if (Member == CXXInvalid) { 12882 if (!MD->isInvalidDecl()) 12883 Diag(DefaultLoc, diag::err_default_special_members); 12884 return; 12885 } 12886 12887 MD->setDefaulted(); 12888 MD->setExplicitlyDefaulted(); 12889 12890 // If this definition appears within the record, do the checking when 12891 // the record is complete. 12892 const FunctionDecl *Primary = MD; 12893 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern()) 12894 // Find the uninstantiated declaration that actually had the '= default' 12895 // on it. 12896 Pattern->isDefined(Primary); 12897 12898 // If the method was defaulted on its first declaration, we will have 12899 // already performed the checking in CheckCompletedCXXClass. Such a 12900 // declaration doesn't trigger an implicit definition. 12901 if (Primary == Primary->getCanonicalDecl()) 12902 return; 12903 12904 CheckExplicitlyDefaultedSpecialMember(MD); 12905 12906 if (MD->isInvalidDecl()) 12907 return; 12908 12909 switch (Member) { 12910 case CXXDefaultConstructor: 12911 DefineImplicitDefaultConstructor(DefaultLoc, 12912 cast<CXXConstructorDecl>(MD)); 12913 break; 12914 case CXXCopyConstructor: 12915 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12916 break; 12917 case CXXCopyAssignment: 12918 DefineImplicitCopyAssignment(DefaultLoc, MD); 12919 break; 12920 case CXXDestructor: 12921 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); 12922 break; 12923 case CXXMoveConstructor: 12924 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12925 break; 12926 case CXXMoveAssignment: 12927 DefineImplicitMoveAssignment(DefaultLoc, MD); 12928 break; 12929 case CXXInvalid: 12930 llvm_unreachable("Invalid special member."); 12931 } 12932 } else { 12933 Diag(DefaultLoc, diag::err_default_special_members); 12934 } 12935 } 12936 12937 static void SearchForReturnInStmt(Sema &Self, Stmt *S) { 12938 for (Stmt *SubStmt : S->children()) { 12939 if (!SubStmt) 12940 continue; 12941 if (isa<ReturnStmt>(SubStmt)) 12942 Self.Diag(SubStmt->getLocStart(), 12943 diag::err_return_in_constructor_handler); 12944 if (!isa<Expr>(SubStmt)) 12945 SearchForReturnInStmt(Self, SubStmt); 12946 } 12947 } 12948 12949 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) { 12950 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { 12951 CXXCatchStmt *Handler = TryBlock->getHandler(I); 12952 SearchForReturnInStmt(*this, Handler); 12953 } 12954 } 12955 12956 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New, 12957 const CXXMethodDecl *Old) { 12958 const FunctionType *NewFT = New->getType()->getAs<FunctionType>(); 12959 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>(); 12960 12961 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv(); 12962 12963 // If the calling conventions match, everything is fine 12964 if (NewCC == OldCC) 12965 return false; 12966 12967 // If the calling conventions mismatch because the new function is static, 12968 // suppress the calling convention mismatch error; the error about static 12969 // function override (err_static_overrides_virtual from 12970 // Sema::CheckFunctionDeclaration) is more clear. 12971 if (New->getStorageClass() == SC_Static) 12972 return false; 12973 12974 Diag(New->getLocation(), 12975 diag::err_conflicting_overriding_cc_attributes) 12976 << New->getDeclName() << New->getType() << Old->getType(); 12977 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 12978 return true; 12979 } 12980 12981 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, 12982 const CXXMethodDecl *Old) { 12983 QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType(); 12984 QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType(); 12985 12986 if (Context.hasSameType(NewTy, OldTy) || 12987 NewTy->isDependentType() || OldTy->isDependentType()) 12988 return false; 12989 12990 // Check if the return types are covariant 12991 QualType NewClassTy, OldClassTy; 12992 12993 /// Both types must be pointers or references to classes. 12994 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) { 12995 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) { 12996 NewClassTy = NewPT->getPointeeType(); 12997 OldClassTy = OldPT->getPointeeType(); 12998 } 12999 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) { 13000 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) { 13001 if (NewRT->getTypeClass() == OldRT->getTypeClass()) { 13002 NewClassTy = NewRT->getPointeeType(); 13003 OldClassTy = OldRT->getPointeeType(); 13004 } 13005 } 13006 } 13007 13008 // The return types aren't either both pointers or references to a class type. 13009 if (NewClassTy.isNull()) { 13010 Diag(New->getLocation(), 13011 diag::err_different_return_type_for_overriding_virtual_function) 13012 << New->getDeclName() << NewTy << OldTy 13013 << New->getReturnTypeSourceRange(); 13014 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13015 << Old->getReturnTypeSourceRange(); 13016 13017 return true; 13018 } 13019 13020 // C++ [class.virtual]p6: 13021 // If the return type of D::f differs from the return type of B::f, the 13022 // class type in the return type of D::f shall be complete at the point of 13023 // declaration of D::f or shall be the class type D. 13024 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) { 13025 if (!RT->isBeingDefined() && 13026 RequireCompleteType(New->getLocation(), NewClassTy, 13027 diag::err_covariant_return_incomplete, 13028 New->getDeclName())) 13029 return true; 13030 } 13031 13032 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) { 13033 // Check if the new class derives from the old class. 13034 if (!IsDerivedFrom(New->getLocation(), NewClassTy, OldClassTy)) { 13035 Diag(New->getLocation(), diag::err_covariant_return_not_derived) 13036 << New->getDeclName() << NewTy << OldTy 13037 << New->getReturnTypeSourceRange(); 13038 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13039 << Old->getReturnTypeSourceRange(); 13040 return true; 13041 } 13042 13043 // Check if we the conversion from derived to base is valid. 13044 if (CheckDerivedToBaseConversion( 13045 NewClassTy, OldClassTy, 13046 diag::err_covariant_return_inaccessible_base, 13047 diag::err_covariant_return_ambiguous_derived_to_base_conv, 13048 New->getLocation(), New->getReturnTypeSourceRange(), 13049 New->getDeclName(), nullptr)) { 13050 // FIXME: this note won't trigger for delayed access control 13051 // diagnostics, and it's impossible to get an undelayed error 13052 // here from access control during the original parse because 13053 // the ParsingDeclSpec/ParsingDeclarator are still in scope. 13054 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13055 << Old->getReturnTypeSourceRange(); 13056 return true; 13057 } 13058 } 13059 13060 // The qualifiers of the return types must be the same. 13061 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) { 13062 Diag(New->getLocation(), 13063 diag::err_covariant_return_type_different_qualifications) 13064 << New->getDeclName() << NewTy << OldTy 13065 << New->getReturnTypeSourceRange(); 13066 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13067 << Old->getReturnTypeSourceRange(); 13068 return true; 13069 }; 13070 13071 13072 // The new class type must have the same or less qualifiers as the old type. 13073 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) { 13074 Diag(New->getLocation(), 13075 diag::err_covariant_return_type_class_type_more_qualified) 13076 << New->getDeclName() << NewTy << OldTy 13077 << New->getReturnTypeSourceRange(); 13078 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 13079 << Old->getReturnTypeSourceRange(); 13080 return true; 13081 }; 13082 13083 return false; 13084 } 13085 13086 /// \brief Mark the given method pure. 13087 /// 13088 /// \param Method the method to be marked pure. 13089 /// 13090 /// \param InitRange the source range that covers the "0" initializer. 13091 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { 13092 SourceLocation EndLoc = InitRange.getEnd(); 13093 if (EndLoc.isValid()) 13094 Method->setRangeEnd(EndLoc); 13095 13096 if (Method->isVirtual() || Method->getParent()->isDependentContext()) { 13097 Method->setPure(); 13098 return false; 13099 } 13100 13101 if (!Method->isInvalidDecl()) 13102 Diag(Method->getLocation(), diag::err_non_virtual_pure) 13103 << Method->getDeclName() << InitRange; 13104 return true; 13105 } 13106 13107 void Sema::ActOnPureSpecifier(Decl *D, SourceLocation ZeroLoc) { 13108 if (D->getFriendObjectKind()) 13109 Diag(D->getLocation(), diag::err_pure_friend); 13110 else if (auto *M = dyn_cast<CXXMethodDecl>(D)) 13111 CheckPureMethod(M, ZeroLoc); 13112 else 13113 Diag(D->getLocation(), diag::err_illegal_initializer); 13114 } 13115 13116 /// \brief Determine whether the given declaration is a static data member. 13117 static bool isStaticDataMember(const Decl *D) { 13118 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D)) 13119 return Var->isStaticDataMember(); 13120 13121 return false; 13122 } 13123 13124 /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse 13125 /// an initializer for the out-of-line declaration 'Dcl'. The scope 13126 /// is a fresh scope pushed for just this purpose. 13127 /// 13128 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a 13129 /// static data member of class X, names should be looked up in the scope of 13130 /// class X. 13131 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) { 13132 // If there is no declaration, there was an error parsing it. 13133 if (!D || D->isInvalidDecl()) 13134 return; 13135 13136 // We will always have a nested name specifier here, but this declaration 13137 // might not be out of line if the specifier names the current namespace: 13138 // extern int n; 13139 // int ::n = 0; 13140 if (D->isOutOfLine()) 13141 EnterDeclaratorContext(S, D->getDeclContext()); 13142 13143 // If we are parsing the initializer for a static data member, push a 13144 // new expression evaluation context that is associated with this static 13145 // data member. 13146 if (isStaticDataMember(D)) 13147 PushExpressionEvaluationContext(PotentiallyEvaluated, D); 13148 } 13149 13150 /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an 13151 /// initializer for the out-of-line declaration 'D'. 13152 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) { 13153 // If there is no declaration, there was an error parsing it. 13154 if (!D || D->isInvalidDecl()) 13155 return; 13156 13157 if (isStaticDataMember(D)) 13158 PopExpressionEvaluationContext(); 13159 13160 if (D->isOutOfLine()) 13161 ExitDeclaratorContext(S); 13162 } 13163 13164 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a 13165 /// C++ if/switch/while/for statement. 13166 /// e.g: "if (int x = f()) {...}" 13167 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) { 13168 // C++ 6.4p2: 13169 // The declarator shall not specify a function or an array. 13170 // The type-specifier-seq shall not contain typedef and shall not declare a 13171 // new class or enumeration. 13172 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 13173 "Parser allowed 'typedef' as storage class of condition decl."); 13174 13175 Decl *Dcl = ActOnDeclarator(S, D); 13176 if (!Dcl) 13177 return true; 13178 13179 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function. 13180 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type) 13181 << D.getSourceRange(); 13182 return true; 13183 } 13184 13185 return Dcl; 13186 } 13187 13188 void Sema::LoadExternalVTableUses() { 13189 if (!ExternalSource) 13190 return; 13191 13192 SmallVector<ExternalVTableUse, 4> VTables; 13193 ExternalSource->ReadUsedVTables(VTables); 13194 SmallVector<VTableUse, 4> NewUses; 13195 for (unsigned I = 0, N = VTables.size(); I != N; ++I) { 13196 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos 13197 = VTablesUsed.find(VTables[I].Record); 13198 // Even if a definition wasn't required before, it may be required now. 13199 if (Pos != VTablesUsed.end()) { 13200 if (!Pos->second && VTables[I].DefinitionRequired) 13201 Pos->second = true; 13202 continue; 13203 } 13204 13205 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired; 13206 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location)); 13207 } 13208 13209 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end()); 13210 } 13211 13212 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, 13213 bool DefinitionRequired) { 13214 // Ignore any vtable uses in unevaluated operands or for classes that do 13215 // not have a vtable. 13216 if (!Class->isDynamicClass() || Class->isDependentContext() || 13217 CurContext->isDependentContext() || isUnevaluatedContext()) 13218 return; 13219 13220 // Try to insert this class into the map. 13221 LoadExternalVTableUses(); 13222 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13223 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool> 13224 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired)); 13225 if (!Pos.second) { 13226 // If we already had an entry, check to see if we are promoting this vtable 13227 // to require a definition. If so, we need to reappend to the VTableUses 13228 // list, since we may have already processed the first entry. 13229 if (DefinitionRequired && !Pos.first->second) { 13230 Pos.first->second = true; 13231 } else { 13232 // Otherwise, we can early exit. 13233 return; 13234 } 13235 } else { 13236 // The Microsoft ABI requires that we perform the destructor body 13237 // checks (i.e. operator delete() lookup) when the vtable is marked used, as 13238 // the deleting destructor is emitted with the vtable, not with the 13239 // destructor definition as in the Itanium ABI. 13240 // If it has a definition, we do the check at that point instead. 13241 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 13242 Class->hasUserDeclaredDestructor() && 13243 !Class->getDestructor()->isDefined() && 13244 !Class->getDestructor()->isDeleted()) { 13245 CXXDestructorDecl *DD = Class->getDestructor(); 13246 ContextRAII SavedContext(*this, DD); 13247 CheckDestructor(DD); 13248 } 13249 } 13250 13251 // Local classes need to have their virtual members marked 13252 // immediately. For all other classes, we mark their virtual members 13253 // at the end of the translation unit. 13254 if (Class->isLocalClass()) 13255 MarkVirtualMembersReferenced(Loc, Class); 13256 else 13257 VTableUses.push_back(std::make_pair(Class, Loc)); 13258 } 13259 13260 bool Sema::DefineUsedVTables() { 13261 LoadExternalVTableUses(); 13262 if (VTableUses.empty()) 13263 return false; 13264 13265 // Note: The VTableUses vector could grow as a result of marking 13266 // the members of a class as "used", so we check the size each 13267 // time through the loop and prefer indices (which are stable) to 13268 // iterators (which are not). 13269 bool DefinedAnything = false; 13270 for (unsigned I = 0; I != VTableUses.size(); ++I) { 13271 CXXRecordDecl *Class = VTableUses[I].first->getDefinition(); 13272 if (!Class) 13273 continue; 13274 13275 SourceLocation Loc = VTableUses[I].second; 13276 13277 bool DefineVTable = true; 13278 13279 // If this class has a key function, but that key function is 13280 // defined in another translation unit, we don't need to emit the 13281 // vtable even though we're using it. 13282 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class); 13283 if (KeyFunction && !KeyFunction->hasBody()) { 13284 // The key function is in another translation unit. 13285 DefineVTable = false; 13286 TemplateSpecializationKind TSK = 13287 KeyFunction->getTemplateSpecializationKind(); 13288 assert(TSK != TSK_ExplicitInstantiationDefinition && 13289 TSK != TSK_ImplicitInstantiation && 13290 "Instantiations don't have key functions"); 13291 (void)TSK; 13292 } else if (!KeyFunction) { 13293 // If we have a class with no key function that is the subject 13294 // of an explicit instantiation declaration, suppress the 13295 // vtable; it will live with the explicit instantiation 13296 // definition. 13297 bool IsExplicitInstantiationDeclaration 13298 = Class->getTemplateSpecializationKind() 13299 == TSK_ExplicitInstantiationDeclaration; 13300 for (auto R : Class->redecls()) { 13301 TemplateSpecializationKind TSK 13302 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind(); 13303 if (TSK == TSK_ExplicitInstantiationDeclaration) 13304 IsExplicitInstantiationDeclaration = true; 13305 else if (TSK == TSK_ExplicitInstantiationDefinition) { 13306 IsExplicitInstantiationDeclaration = false; 13307 break; 13308 } 13309 } 13310 13311 if (IsExplicitInstantiationDeclaration) 13312 DefineVTable = false; 13313 } 13314 13315 // The exception specifications for all virtual members may be needed even 13316 // if we are not providing an authoritative form of the vtable in this TU. 13317 // We may choose to emit it available_externally anyway. 13318 if (!DefineVTable) { 13319 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class); 13320 continue; 13321 } 13322 13323 // Mark all of the virtual members of this class as referenced, so 13324 // that we can build a vtable. Then, tell the AST consumer that a 13325 // vtable for this class is required. 13326 DefinedAnything = true; 13327 MarkVirtualMembersReferenced(Loc, Class); 13328 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13329 if (VTablesUsed[Canonical]) 13330 Consumer.HandleVTable(Class); 13331 13332 // Optionally warn if we're emitting a weak vtable. 13333 if (Class->isExternallyVisible() && 13334 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) { 13335 const FunctionDecl *KeyFunctionDef = nullptr; 13336 if (!KeyFunction || 13337 (KeyFunction->hasBody(KeyFunctionDef) && 13338 KeyFunctionDef->isInlined())) 13339 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() == 13340 TSK_ExplicitInstantiationDefinition 13341 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable) 13342 << Class; 13343 } 13344 } 13345 VTableUses.clear(); 13346 13347 return DefinedAnything; 13348 } 13349 13350 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc, 13351 const CXXRecordDecl *RD) { 13352 for (const auto *I : RD->methods()) 13353 if (I->isVirtual() && !I->isPure()) 13354 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>()); 13355 } 13356 13357 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc, 13358 const CXXRecordDecl *RD) { 13359 // Mark all functions which will appear in RD's vtable as used. 13360 CXXFinalOverriderMap FinalOverriders; 13361 RD->getFinalOverriders(FinalOverriders); 13362 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(), 13363 E = FinalOverriders.end(); 13364 I != E; ++I) { 13365 for (OverridingMethods::const_iterator OI = I->second.begin(), 13366 OE = I->second.end(); 13367 OI != OE; ++OI) { 13368 assert(OI->second.size() > 0 && "no final overrider"); 13369 CXXMethodDecl *Overrider = OI->second.front().Method; 13370 13371 // C++ [basic.def.odr]p2: 13372 // [...] A virtual member function is used if it is not pure. [...] 13373 if (!Overrider->isPure()) 13374 MarkFunctionReferenced(Loc, Overrider); 13375 } 13376 } 13377 13378 // Only classes that have virtual bases need a VTT. 13379 if (RD->getNumVBases() == 0) 13380 return; 13381 13382 for (const auto &I : RD->bases()) { 13383 const CXXRecordDecl *Base = 13384 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl()); 13385 if (Base->getNumVBases() == 0) 13386 continue; 13387 MarkVirtualMembersReferenced(Loc, Base); 13388 } 13389 } 13390 13391 /// SetIvarInitializers - This routine builds initialization ASTs for the 13392 /// Objective-C implementation whose ivars need be initialized. 13393 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) { 13394 if (!getLangOpts().CPlusPlus) 13395 return; 13396 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) { 13397 SmallVector<ObjCIvarDecl*, 8> ivars; 13398 CollectIvarsToConstructOrDestruct(OID, ivars); 13399 if (ivars.empty()) 13400 return; 13401 SmallVector<CXXCtorInitializer*, 32> AllToInit; 13402 for (unsigned i = 0; i < ivars.size(); i++) { 13403 FieldDecl *Field = ivars[i]; 13404 if (Field->isInvalidDecl()) 13405 continue; 13406 13407 CXXCtorInitializer *Member; 13408 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field); 13409 InitializationKind InitKind = 13410 InitializationKind::CreateDefault(ObjCImplementation->getLocation()); 13411 13412 InitializationSequence InitSeq(*this, InitEntity, InitKind, None); 13413 ExprResult MemberInit = 13414 InitSeq.Perform(*this, InitEntity, InitKind, None); 13415 MemberInit = MaybeCreateExprWithCleanups(MemberInit); 13416 // Note, MemberInit could actually come back empty if no initialization 13417 // is required (e.g., because it would call a trivial default constructor) 13418 if (!MemberInit.get() || MemberInit.isInvalid()) 13419 continue; 13420 13421 Member = 13422 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(), 13423 SourceLocation(), 13424 MemberInit.getAs<Expr>(), 13425 SourceLocation()); 13426 AllToInit.push_back(Member); 13427 13428 // Be sure that the destructor is accessible and is marked as referenced. 13429 if (const RecordType *RecordTy = 13430 Context.getBaseElementType(Field->getType()) 13431 ->getAs<RecordType>()) { 13432 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); 13433 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { 13434 MarkFunctionReferenced(Field->getLocation(), Destructor); 13435 CheckDestructorAccess(Field->getLocation(), Destructor, 13436 PDiag(diag::err_access_dtor_ivar) 13437 << Context.getBaseElementType(Field->getType())); 13438 } 13439 } 13440 } 13441 ObjCImplementation->setIvarInitializers(Context, 13442 AllToInit.data(), AllToInit.size()); 13443 } 13444 } 13445 13446 static 13447 void DelegatingCycleHelper(CXXConstructorDecl* Ctor, 13448 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid, 13449 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid, 13450 llvm::SmallSet<CXXConstructorDecl*, 4> &Current, 13451 Sema &S) { 13452 if (Ctor->isInvalidDecl()) 13453 return; 13454 13455 CXXConstructorDecl *Target = Ctor->getTargetConstructor(); 13456 13457 // Target may not be determinable yet, for instance if this is a dependent 13458 // call in an uninstantiated template. 13459 if (Target) { 13460 const FunctionDecl *FNTarget = nullptr; 13461 (void)Target->hasBody(FNTarget); 13462 Target = const_cast<CXXConstructorDecl*>( 13463 cast_or_null<CXXConstructorDecl>(FNTarget)); 13464 } 13465 13466 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), 13467 // Avoid dereferencing a null pointer here. 13468 *TCanonical = Target? Target->getCanonicalDecl() : nullptr; 13469 13470 if (!Current.insert(Canonical).second) 13471 return; 13472 13473 // We know that beyond here, we aren't chaining into a cycle. 13474 if (!Target || !Target->isDelegatingConstructor() || 13475 Target->isInvalidDecl() || Valid.count(TCanonical)) { 13476 Valid.insert(Current.begin(), Current.end()); 13477 Current.clear(); 13478 // We've hit a cycle. 13479 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || 13480 Current.count(TCanonical)) { 13481 // If we haven't diagnosed this cycle yet, do so now. 13482 if (!Invalid.count(TCanonical)) { 13483 S.Diag((*Ctor->init_begin())->getSourceLocation(), 13484 diag::warn_delegating_ctor_cycle) 13485 << Ctor; 13486 13487 // Don't add a note for a function delegating directly to itself. 13488 if (TCanonical != Canonical) 13489 S.Diag(Target->getLocation(), diag::note_it_delegates_to); 13490 13491 CXXConstructorDecl *C = Target; 13492 while (C->getCanonicalDecl() != Canonical) { 13493 const FunctionDecl *FNTarget = nullptr; 13494 (void)C->getTargetConstructor()->hasBody(FNTarget); 13495 assert(FNTarget && "Ctor cycle through bodiless function"); 13496 13497 C = const_cast<CXXConstructorDecl*>( 13498 cast<CXXConstructorDecl>(FNTarget)); 13499 S.Diag(C->getLocation(), diag::note_which_delegates_to); 13500 } 13501 } 13502 13503 Invalid.insert(Current.begin(), Current.end()); 13504 Current.clear(); 13505 } else { 13506 DelegatingCycleHelper(Target, Valid, Invalid, Current, S); 13507 } 13508 } 13509 13510 13511 void Sema::CheckDelegatingCtorCycles() { 13512 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current; 13513 13514 for (DelegatingCtorDeclsType::iterator 13515 I = DelegatingCtorDecls.begin(ExternalSource), 13516 E = DelegatingCtorDecls.end(); 13517 I != E; ++I) 13518 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this); 13519 13520 for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(), 13521 CE = Invalid.end(); 13522 CI != CE; ++CI) 13523 (*CI)->setInvalidDecl(); 13524 } 13525 13526 namespace { 13527 /// \brief AST visitor that finds references to the 'this' expression. 13528 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> { 13529 Sema &S; 13530 13531 public: 13532 explicit FindCXXThisExpr(Sema &S) : S(S) { } 13533 13534 bool VisitCXXThisExpr(CXXThisExpr *E) { 13535 S.Diag(E->getLocation(), diag::err_this_static_member_func) 13536 << E->isImplicit(); 13537 return false; 13538 } 13539 }; 13540 } 13541 13542 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) { 13543 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13544 if (!TSInfo) 13545 return false; 13546 13547 TypeLoc TL = TSInfo->getTypeLoc(); 13548 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13549 if (!ProtoTL) 13550 return false; 13551 13552 // C++11 [expr.prim.general]p3: 13553 // [The expression this] shall not appear before the optional 13554 // cv-qualifier-seq and it shall not appear within the declaration of a 13555 // static member function (although its type and value category are defined 13556 // within a static member function as they are within a non-static member 13557 // function). [ Note: this is because declaration matching does not occur 13558 // until the complete declarator is known. - end note ] 13559 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13560 FindCXXThisExpr Finder(*this); 13561 13562 // If the return type came after the cv-qualifier-seq, check it now. 13563 if (Proto->hasTrailingReturn() && 13564 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc())) 13565 return true; 13566 13567 // Check the exception specification. 13568 if (checkThisInStaticMemberFunctionExceptionSpec(Method)) 13569 return true; 13570 13571 return checkThisInStaticMemberFunctionAttributes(Method); 13572 } 13573 13574 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) { 13575 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13576 if (!TSInfo) 13577 return false; 13578 13579 TypeLoc TL = TSInfo->getTypeLoc(); 13580 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13581 if (!ProtoTL) 13582 return false; 13583 13584 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13585 FindCXXThisExpr Finder(*this); 13586 13587 switch (Proto->getExceptionSpecType()) { 13588 case EST_Unparsed: 13589 case EST_Uninstantiated: 13590 case EST_Unevaluated: 13591 case EST_BasicNoexcept: 13592 case EST_DynamicNone: 13593 case EST_MSAny: 13594 case EST_None: 13595 break; 13596 13597 case EST_ComputedNoexcept: 13598 if (!Finder.TraverseStmt(Proto->getNoexceptExpr())) 13599 return true; 13600 13601 case EST_Dynamic: 13602 for (const auto &E : Proto->exceptions()) { 13603 if (!Finder.TraverseType(E)) 13604 return true; 13605 } 13606 break; 13607 } 13608 13609 return false; 13610 } 13611 13612 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) { 13613 FindCXXThisExpr Finder(*this); 13614 13615 // Check attributes. 13616 for (const auto *A : Method->attrs()) { 13617 // FIXME: This should be emitted by tblgen. 13618 Expr *Arg = nullptr; 13619 ArrayRef<Expr *> Args; 13620 if (const auto *G = dyn_cast<GuardedByAttr>(A)) 13621 Arg = G->getArg(); 13622 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A)) 13623 Arg = G->getArg(); 13624 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A)) 13625 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size()); 13626 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A)) 13627 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size()); 13628 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) { 13629 Arg = ETLF->getSuccessValue(); 13630 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size()); 13631 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) { 13632 Arg = STLF->getSuccessValue(); 13633 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size()); 13634 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A)) 13635 Arg = LR->getArg(); 13636 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A)) 13637 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size()); 13638 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A)) 13639 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13640 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A)) 13641 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13642 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A)) 13643 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13644 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A)) 13645 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13646 13647 if (Arg && !Finder.TraverseStmt(Arg)) 13648 return true; 13649 13650 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 13651 if (!Finder.TraverseStmt(Args[I])) 13652 return true; 13653 } 13654 } 13655 13656 return false; 13657 } 13658 13659 void Sema::checkExceptionSpecification( 13660 bool IsTopLevel, ExceptionSpecificationType EST, 13661 ArrayRef<ParsedType> DynamicExceptions, 13662 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, 13663 SmallVectorImpl<QualType> &Exceptions, 13664 FunctionProtoType::ExceptionSpecInfo &ESI) { 13665 Exceptions.clear(); 13666 ESI.Type = EST; 13667 if (EST == EST_Dynamic) { 13668 Exceptions.reserve(DynamicExceptions.size()); 13669 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) { 13670 // FIXME: Preserve type source info. 13671 QualType ET = GetTypeFromParser(DynamicExceptions[ei]); 13672 13673 if (IsTopLevel) { 13674 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 13675 collectUnexpandedParameterPacks(ET, Unexpanded); 13676 if (!Unexpanded.empty()) { 13677 DiagnoseUnexpandedParameterPacks( 13678 DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType, 13679 Unexpanded); 13680 continue; 13681 } 13682 } 13683 13684 // Check that the type is valid for an exception spec, and 13685 // drop it if not. 13686 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei])) 13687 Exceptions.push_back(ET); 13688 } 13689 ESI.Exceptions = Exceptions; 13690 return; 13691 } 13692 13693 if (EST == EST_ComputedNoexcept) { 13694 // If an error occurred, there's no expression here. 13695 if (NoexceptExpr) { 13696 assert((NoexceptExpr->isTypeDependent() || 13697 NoexceptExpr->getType()->getCanonicalTypeUnqualified() == 13698 Context.BoolTy) && 13699 "Parser should have made sure that the expression is boolean"); 13700 if (IsTopLevel && NoexceptExpr && 13701 DiagnoseUnexpandedParameterPack(NoexceptExpr)) { 13702 ESI.Type = EST_BasicNoexcept; 13703 return; 13704 } 13705 13706 if (!NoexceptExpr->isValueDependent()) 13707 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr, 13708 diag::err_noexcept_needs_constant_expression, 13709 /*AllowFold*/ false).get(); 13710 ESI.NoexceptExpr = NoexceptExpr; 13711 } 13712 return; 13713 } 13714 } 13715 13716 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD, 13717 ExceptionSpecificationType EST, 13718 SourceRange SpecificationRange, 13719 ArrayRef<ParsedType> DynamicExceptions, 13720 ArrayRef<SourceRange> DynamicExceptionRanges, 13721 Expr *NoexceptExpr) { 13722 if (!MethodD) 13723 return; 13724 13725 // Dig out the method we're referring to. 13726 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD)) 13727 MethodD = FunTmpl->getTemplatedDecl(); 13728 13729 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD); 13730 if (!Method) 13731 return; 13732 13733 // Check the exception specification. 13734 llvm::SmallVector<QualType, 4> Exceptions; 13735 FunctionProtoType::ExceptionSpecInfo ESI; 13736 checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions, 13737 DynamicExceptionRanges, NoexceptExpr, Exceptions, 13738 ESI); 13739 13740 // Update the exception specification on the function type. 13741 Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true); 13742 13743 if (Method->isStatic()) 13744 checkThisInStaticMemberFunctionExceptionSpec(Method); 13745 13746 if (Method->isVirtual()) { 13747 // Check overrides, which we previously had to delay. 13748 for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(), 13749 OEnd = Method->end_overridden_methods(); 13750 O != OEnd; ++O) 13751 CheckOverridingFunctionExceptionSpec(Method, *O); 13752 } 13753 } 13754 13755 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class. 13756 /// 13757 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, 13758 SourceLocation DeclStart, 13759 Declarator &D, Expr *BitWidth, 13760 InClassInitStyle InitStyle, 13761 AccessSpecifier AS, 13762 AttributeList *MSPropertyAttr) { 13763 IdentifierInfo *II = D.getIdentifier(); 13764 if (!II) { 13765 Diag(DeclStart, diag::err_anonymous_property); 13766 return nullptr; 13767 } 13768 SourceLocation Loc = D.getIdentifierLoc(); 13769 13770 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 13771 QualType T = TInfo->getType(); 13772 if (getLangOpts().CPlusPlus) { 13773 CheckExtraCXXDefaultArguments(D); 13774 13775 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 13776 UPPC_DataMemberType)) { 13777 D.setInvalidType(); 13778 T = Context.IntTy; 13779 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 13780 } 13781 } 13782 13783 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 13784 13785 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 13786 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 13787 diag::err_invalid_thread) 13788 << DeclSpec::getSpecifierName(TSCS); 13789 13790 // Check to see if this name was declared as a member previously 13791 NamedDecl *PrevDecl = nullptr; 13792 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration); 13793 LookupName(Previous, S); 13794 switch (Previous.getResultKind()) { 13795 case LookupResult::Found: 13796 case LookupResult::FoundUnresolvedValue: 13797 PrevDecl = Previous.getAsSingle<NamedDecl>(); 13798 break; 13799 13800 case LookupResult::FoundOverloaded: 13801 PrevDecl = Previous.getRepresentativeDecl(); 13802 break; 13803 13804 case LookupResult::NotFound: 13805 case LookupResult::NotFoundInCurrentInstantiation: 13806 case LookupResult::Ambiguous: 13807 break; 13808 } 13809 13810 if (PrevDecl && PrevDecl->isTemplateParameter()) { 13811 // Maybe we will complain about the shadowed template parameter. 13812 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 13813 // Just pretend that we didn't see the previous declaration. 13814 PrevDecl = nullptr; 13815 } 13816 13817 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 13818 PrevDecl = nullptr; 13819 13820 SourceLocation TSSL = D.getLocStart(); 13821 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData(); 13822 MSPropertyDecl *NewPD = MSPropertyDecl::Create( 13823 Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId); 13824 ProcessDeclAttributes(TUScope, NewPD, D); 13825 NewPD->setAccess(AS); 13826 13827 if (NewPD->isInvalidDecl()) 13828 Record->setInvalidDecl(); 13829 13830 if (D.getDeclSpec().isModulePrivateSpecified()) 13831 NewPD->setModulePrivate(); 13832 13833 if (NewPD->isInvalidDecl() && PrevDecl) { 13834 // Don't introduce NewFD into scope; there's already something 13835 // with the same name in the same scope. 13836 } else if (II) { 13837 PushOnScopeChains(NewPD, S); 13838 } else 13839 Record->addDecl(NewPD); 13840 13841 return NewPD; 13842 } 13843