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::child_range I = Node->children(); I; ++I) 77 IsInvalid |= Visit(*I); 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 this function can throw any exceptions, make a note of that. 166 if (EST == EST_MSAny || EST == EST_None) { 167 ClearExceptions(); 168 ComputedEST = EST; 169 return; 170 } 171 172 // FIXME: If the call to this decl is using any of its default arguments, we 173 // need to search them for potentially-throwing calls. 174 175 // If this function has a basic noexcept, it doesn't affect the outcome. 176 if (EST == EST_BasicNoexcept) 177 return; 178 179 // If we have a throw-all spec at this point, ignore the function. 180 if (ComputedEST == EST_None) 181 return; 182 183 // If we're still at noexcept(true) and there's a nothrow() callee, 184 // change to that specification. 185 if (EST == EST_DynamicNone) { 186 if (ComputedEST == EST_BasicNoexcept) 187 ComputedEST = EST_DynamicNone; 188 return; 189 } 190 191 // Check out noexcept specs. 192 if (EST == EST_ComputedNoexcept) { 193 FunctionProtoType::NoexceptResult NR = 194 Proto->getNoexceptSpec(Self->Context); 195 assert(NR != FunctionProtoType::NR_NoNoexcept && 196 "Must have noexcept result for EST_ComputedNoexcept."); 197 assert(NR != FunctionProtoType::NR_Dependent && 198 "Should not generate implicit declarations for dependent cases, " 199 "and don't know how to handle them anyway."); 200 201 // noexcept(false) -> no spec on the new function 202 if (NR == FunctionProtoType::NR_Throw) { 203 ClearExceptions(); 204 ComputedEST = EST_None; 205 } 206 // noexcept(true) won't change anything either. 207 return; 208 } 209 210 assert(EST == EST_Dynamic && "EST case not considered earlier."); 211 assert(ComputedEST != EST_None && 212 "Shouldn't collect exceptions when throw-all is guaranteed."); 213 ComputedEST = EST_Dynamic; 214 // Record the exceptions in this function's exception specification. 215 for (const auto &E : Proto->exceptions()) 216 if (ExceptionsSeen.insert(Self->Context.getCanonicalType(E)).second) 217 Exceptions.push_back(E); 218 } 219 220 void Sema::ImplicitExceptionSpecification::CalledExpr(Expr *E) { 221 if (!E || ComputedEST == EST_MSAny) 222 return; 223 224 // FIXME: 225 // 226 // C++0x [except.spec]p14: 227 // [An] implicit exception-specification specifies the type-id T if and 228 // only if T is allowed by the exception-specification of a function directly 229 // invoked by f's implicit definition; f shall allow all exceptions if any 230 // function it directly invokes allows all exceptions, and f shall allow no 231 // exceptions if every function it directly invokes allows no exceptions. 232 // 233 // Note in particular that if an implicit exception-specification is generated 234 // for a function containing a throw-expression, that specification can still 235 // be noexcept(true). 236 // 237 // Note also that 'directly invoked' is not defined in the standard, and there 238 // is no indication that we should only consider potentially-evaluated calls. 239 // 240 // Ultimately we should implement the intent of the standard: the exception 241 // specification should be the set of exceptions which can be thrown by the 242 // implicit definition. For now, we assume that any non-nothrow expression can 243 // throw any exception. 244 245 if (Self->canThrow(E)) 246 ComputedEST = EST_None; 247 } 248 249 bool 250 Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, 251 SourceLocation EqualLoc) { 252 if (RequireCompleteType(Param->getLocation(), Param->getType(), 253 diag::err_typecheck_decl_incomplete_type)) { 254 Param->setInvalidDecl(); 255 return true; 256 } 257 258 // C++ [dcl.fct.default]p5 259 // A default argument expression is implicitly converted (clause 260 // 4) to the parameter type. The default argument expression has 261 // the same semantic constraints as the initializer expression in 262 // a declaration of a variable of the parameter type, using the 263 // copy-initialization semantics (8.5). 264 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, 265 Param); 266 InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(), 267 EqualLoc); 268 InitializationSequence InitSeq(*this, Entity, Kind, Arg); 269 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg); 270 if (Result.isInvalid()) 271 return true; 272 Arg = Result.getAs<Expr>(); 273 274 CheckCompletedExpr(Arg, EqualLoc); 275 Arg = MaybeCreateExprWithCleanups(Arg); 276 277 // Okay: add the default argument to the parameter 278 Param->setDefaultArg(Arg); 279 280 // We have already instantiated this parameter; provide each of the 281 // instantiations with the uninstantiated default argument. 282 UnparsedDefaultArgInstantiationsMap::iterator InstPos 283 = UnparsedDefaultArgInstantiations.find(Param); 284 if (InstPos != UnparsedDefaultArgInstantiations.end()) { 285 for (unsigned I = 0, N = InstPos->second.size(); I != N; ++I) 286 InstPos->second[I]->setUninstantiatedDefaultArg(Arg); 287 288 // We're done tracking this parameter's instantiations. 289 UnparsedDefaultArgInstantiations.erase(InstPos); 290 } 291 292 return false; 293 } 294 295 /// ActOnParamDefaultArgument - Check whether the default argument 296 /// provided for a function parameter is well-formed. If so, attach it 297 /// to the parameter declaration. 298 void 299 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc, 300 Expr *DefaultArg) { 301 if (!param || !DefaultArg) 302 return; 303 304 ParmVarDecl *Param = cast<ParmVarDecl>(param); 305 UnparsedDefaultArgLocs.erase(Param); 306 307 // Default arguments are only permitted in C++ 308 if (!getLangOpts().CPlusPlus) { 309 Diag(EqualLoc, diag::err_param_default_argument) 310 << DefaultArg->getSourceRange(); 311 Param->setInvalidDecl(); 312 return; 313 } 314 315 // Check for unexpanded parameter packs. 316 if (DiagnoseUnexpandedParameterPack(DefaultArg, UPPC_DefaultArgument)) { 317 Param->setInvalidDecl(); 318 return; 319 } 320 321 // Check that the default argument is well-formed 322 CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg, this); 323 if (DefaultArgChecker.Visit(DefaultArg)) { 324 Param->setInvalidDecl(); 325 return; 326 } 327 328 SetParamDefaultArgument(Param, DefaultArg, EqualLoc); 329 } 330 331 /// ActOnParamUnparsedDefaultArgument - We've seen a default 332 /// argument for a function parameter, but we can't parse it yet 333 /// because we're inside a class definition. Note that this default 334 /// argument will be parsed later. 335 void Sema::ActOnParamUnparsedDefaultArgument(Decl *param, 336 SourceLocation EqualLoc, 337 SourceLocation ArgLoc) { 338 if (!param) 339 return; 340 341 ParmVarDecl *Param = cast<ParmVarDecl>(param); 342 Param->setUnparsedDefaultArg(); 343 UnparsedDefaultArgLocs[Param] = ArgLoc; 344 } 345 346 /// ActOnParamDefaultArgumentError - Parsing or semantic analysis of 347 /// the default argument for the parameter param failed. 348 void Sema::ActOnParamDefaultArgumentError(Decl *param, 349 SourceLocation EqualLoc) { 350 if (!param) 351 return; 352 353 ParmVarDecl *Param = cast<ParmVarDecl>(param); 354 Param->setInvalidDecl(); 355 UnparsedDefaultArgLocs.erase(Param); 356 Param->setDefaultArg(new(Context) 357 OpaqueValueExpr(EqualLoc, 358 Param->getType().getNonReferenceType(), 359 VK_RValue)); 360 } 361 362 /// CheckExtraCXXDefaultArguments - Check for any extra default 363 /// arguments in the declarator, which is not a function declaration 364 /// or definition and therefore is not permitted to have default 365 /// arguments. This routine should be invoked for every declarator 366 /// that is not a function declaration or definition. 367 void Sema::CheckExtraCXXDefaultArguments(Declarator &D) { 368 // C++ [dcl.fct.default]p3 369 // A default argument expression shall be specified only in the 370 // parameter-declaration-clause of a function declaration or in a 371 // template-parameter (14.1). It shall not be specified for a 372 // parameter pack. If it is specified in a 373 // parameter-declaration-clause, it shall not occur within a 374 // declarator or abstract-declarator of a parameter-declaration. 375 bool MightBeFunction = D.isFunctionDeclarationContext(); 376 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) { 377 DeclaratorChunk &chunk = D.getTypeObject(i); 378 if (chunk.Kind == DeclaratorChunk::Function) { 379 if (MightBeFunction) { 380 // This is a function declaration. It can have default arguments, but 381 // keep looking in case its return type is a function type with default 382 // arguments. 383 MightBeFunction = false; 384 continue; 385 } 386 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e; 387 ++argIdx) { 388 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param); 389 if (Param->hasUnparsedDefaultArg()) { 390 CachedTokens *Toks = chunk.Fun.Params[argIdx].DefaultArgTokens; 391 SourceRange SR; 392 if (Toks->size() > 1) 393 SR = SourceRange((*Toks)[1].getLocation(), 394 Toks->back().getLocation()); 395 else 396 SR = UnparsedDefaultArgLocs[Param]; 397 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) 398 << SR; 399 delete Toks; 400 chunk.Fun.Params[argIdx].DefaultArgTokens = nullptr; 401 } else if (Param->getDefaultArg()) { 402 Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) 403 << Param->getDefaultArg()->getSourceRange(); 404 Param->setDefaultArg(nullptr); 405 } 406 } 407 } else if (chunk.Kind != DeclaratorChunk::Paren) { 408 MightBeFunction = false; 409 } 410 } 411 } 412 413 static bool functionDeclHasDefaultArgument(const FunctionDecl *FD) { 414 for (unsigned NumParams = FD->getNumParams(); NumParams > 0; --NumParams) { 415 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1); 416 if (!PVD->hasDefaultArg()) 417 return false; 418 if (!PVD->hasInheritedDefaultArg()) 419 return true; 420 } 421 return false; 422 } 423 424 /// MergeCXXFunctionDecl - Merge two declarations of the same C++ 425 /// function, once we already know that they have the same 426 /// type. Subroutine of MergeFunctionDecl. Returns true if there was an 427 /// error, false otherwise. 428 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old, 429 Scope *S) { 430 bool Invalid = false; 431 432 // C++ [dcl.fct.default]p4: 433 // For non-template functions, default arguments can be added in 434 // later declarations of a function in the same 435 // scope. Declarations in different scopes have completely 436 // distinct sets of default arguments. That is, declarations in 437 // inner scopes do not acquire default arguments from 438 // declarations in outer scopes, and vice versa. In a given 439 // function declaration, all parameters subsequent to a 440 // parameter with a default argument shall have default 441 // arguments supplied in this or previous declarations. A 442 // default argument shall not be redefined by a later 443 // declaration (not even to the same value). 444 // 445 // C++ [dcl.fct.default]p6: 446 // Except for member functions of class templates, the default arguments 447 // in a member function definition that appears outside of the class 448 // definition are added to the set of default arguments provided by the 449 // member function declaration in the class definition. 450 for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) { 451 ParmVarDecl *OldParam = Old->getParamDecl(p); 452 ParmVarDecl *NewParam = New->getParamDecl(p); 453 454 bool OldParamHasDfl = OldParam->hasDefaultArg(); 455 bool NewParamHasDfl = NewParam->hasDefaultArg(); 456 457 // The declaration context corresponding to the scope is the semantic 458 // parent, unless this is a local function declaration, in which case 459 // it is that surrounding function. 460 DeclContext *ScopeDC = New->isLocalExternDecl() 461 ? New->getLexicalDeclContext() 462 : New->getDeclContext(); 463 if (S && !isDeclInScope(Old, ScopeDC, S) && 464 !New->getDeclContext()->isRecord()) 465 // Ignore default parameters of old decl if they are not in 466 // the same scope and this is not an out-of-line definition of 467 // a member function. 468 OldParamHasDfl = false; 469 if (New->isLocalExternDecl() != Old->isLocalExternDecl()) 470 // If only one of these is a local function declaration, then they are 471 // declared in different scopes, even though isDeclInScope may think 472 // they're in the same scope. (If both are local, the scope check is 473 // sufficent, and if neither is local, then they are in the same scope.) 474 OldParamHasDfl = false; 475 476 if (OldParamHasDfl && NewParamHasDfl) { 477 478 unsigned DiagDefaultParamID = 479 diag::err_param_default_argument_redefinition; 480 481 // MSVC accepts that default parameters be redefined for member functions 482 // of template class. The new default parameter's value is ignored. 483 Invalid = true; 484 if (getLangOpts().MicrosoftExt) { 485 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New); 486 if (MD && MD->getParent()->getDescribedClassTemplate()) { 487 // Merge the old default argument into the new parameter. 488 NewParam->setHasInheritedDefaultArg(); 489 if (OldParam->hasUninstantiatedDefaultArg()) 490 NewParam->setUninstantiatedDefaultArg( 491 OldParam->getUninstantiatedDefaultArg()); 492 else 493 NewParam->setDefaultArg(OldParam->getInit()); 494 DiagDefaultParamID = diag::ext_param_default_argument_redefinition; 495 Invalid = false; 496 } 497 } 498 499 // FIXME: If we knew where the '=' was, we could easily provide a fix-it 500 // hint here. Alternatively, we could walk the type-source information 501 // for NewParam to find the last source location in the type... but it 502 // isn't worth the effort right now. This is the kind of test case that 503 // is hard to get right: 504 // int f(int); 505 // void g(int (*fp)(int) = f); 506 // void g(int (*fp)(int) = &f); 507 Diag(NewParam->getLocation(), DiagDefaultParamID) 508 << NewParam->getDefaultArgRange(); 509 510 // Look for the function declaration where the default argument was 511 // actually written, which may be a declaration prior to Old. 512 for (auto Older = Old; OldParam->hasInheritedDefaultArg();) { 513 Older = Older->getPreviousDecl(); 514 OldParam = Older->getParamDecl(p); 515 } 516 517 Diag(OldParam->getLocation(), diag::note_previous_definition) 518 << OldParam->getDefaultArgRange(); 519 } else if (OldParamHasDfl) { 520 // Merge the old default argument into the new parameter. 521 // It's important to use getInit() here; getDefaultArg() 522 // strips off any top-level ExprWithCleanups. 523 NewParam->setHasInheritedDefaultArg(); 524 if (OldParam->hasUnparsedDefaultArg()) 525 NewParam->setUnparsedDefaultArg(); 526 else if (OldParam->hasUninstantiatedDefaultArg()) 527 NewParam->setUninstantiatedDefaultArg( 528 OldParam->getUninstantiatedDefaultArg()); 529 else 530 NewParam->setDefaultArg(OldParam->getInit()); 531 } else if (NewParamHasDfl) { 532 if (New->getDescribedFunctionTemplate()) { 533 // Paragraph 4, quoted above, only applies to non-template functions. 534 Diag(NewParam->getLocation(), 535 diag::err_param_default_argument_template_redecl) 536 << NewParam->getDefaultArgRange(); 537 Diag(Old->getLocation(), diag::note_template_prev_declaration) 538 << false; 539 } else if (New->getTemplateSpecializationKind() 540 != TSK_ImplicitInstantiation && 541 New->getTemplateSpecializationKind() != TSK_Undeclared) { 542 // C++ [temp.expr.spec]p21: 543 // Default function arguments shall not be specified in a declaration 544 // or a definition for one of the following explicit specializations: 545 // - the explicit specialization of a function template; 546 // - the explicit specialization of a member function template; 547 // - the explicit specialization of a member function of a class 548 // template where the class template specialization to which the 549 // member function specialization belongs is implicitly 550 // instantiated. 551 Diag(NewParam->getLocation(), diag::err_template_spec_default_arg) 552 << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization) 553 << New->getDeclName() 554 << NewParam->getDefaultArgRange(); 555 } else if (New->getDeclContext()->isDependentContext()) { 556 // C++ [dcl.fct.default]p6 (DR217): 557 // Default arguments for a member function of a class template shall 558 // be specified on the initial declaration of the member function 559 // within the class template. 560 // 561 // Reading the tea leaves a bit in DR217 and its reference to DR205 562 // leads me to the conclusion that one cannot add default function 563 // arguments for an out-of-line definition of a member function of a 564 // dependent type. 565 int WhichKind = 2; 566 if (CXXRecordDecl *Record 567 = dyn_cast<CXXRecordDecl>(New->getDeclContext())) { 568 if (Record->getDescribedClassTemplate()) 569 WhichKind = 0; 570 else if (isa<ClassTemplatePartialSpecializationDecl>(Record)) 571 WhichKind = 1; 572 else 573 WhichKind = 2; 574 } 575 576 Diag(NewParam->getLocation(), 577 diag::err_param_default_argument_member_template_redecl) 578 << WhichKind 579 << NewParam->getDefaultArgRange(); 580 } 581 } 582 } 583 584 // DR1344: If a default argument is added outside a class definition and that 585 // default argument makes the function a special member function, the program 586 // is ill-formed. This can only happen for constructors. 587 if (isa<CXXConstructorDecl>(New) && 588 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) { 589 CXXSpecialMember NewSM = getSpecialMember(cast<CXXMethodDecl>(New)), 590 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old)); 591 if (NewSM != OldSM) { 592 ParmVarDecl *NewParam = New->getParamDecl(New->getMinRequiredArguments()); 593 assert(NewParam->hasDefaultArg()); 594 Diag(NewParam->getLocation(), diag::err_default_arg_makes_ctor_special) 595 << NewParam->getDefaultArgRange() << NewSM; 596 Diag(Old->getLocation(), diag::note_previous_declaration); 597 } 598 } 599 600 const FunctionDecl *Def; 601 // C++11 [dcl.constexpr]p1: If any declaration of a function or function 602 // template has a constexpr specifier then all its declarations shall 603 // contain the constexpr specifier. 604 if (New->isConstexpr() != Old->isConstexpr()) { 605 Diag(New->getLocation(), diag::err_constexpr_redecl_mismatch) 606 << New << New->isConstexpr(); 607 Diag(Old->getLocation(), diag::note_previous_declaration); 608 Invalid = true; 609 } else if (!Old->isInlined() && New->isInlined() && Old->isDefined(Def)) { 610 // C++11 [dcl.fcn.spec]p4: 611 // If the definition of a function appears in a translation unit before its 612 // first declaration as inline, the program is ill-formed. 613 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New; 614 Diag(Def->getLocation(), diag::note_previous_definition); 615 Invalid = true; 616 } 617 618 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default 619 // argument expression, that declaration shall be a definition and shall be 620 // the only declaration of the function or function template in the 621 // translation unit. 622 if (Old->getFriendObjectKind() == Decl::FOK_Undeclared && 623 functionDeclHasDefaultArgument(Old)) { 624 Diag(New->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 625 Diag(Old->getLocation(), diag::note_previous_declaration); 626 Invalid = true; 627 } 628 629 if (CheckEquivalentExceptionSpec(Old, New)) 630 Invalid = true; 631 632 return Invalid; 633 } 634 635 /// \brief Merge the exception specifications of two variable declarations. 636 /// 637 /// This is called when there's a redeclaration of a VarDecl. The function 638 /// checks if the redeclaration might have an exception specification and 639 /// validates compatibility and merges the specs if necessary. 640 void Sema::MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) { 641 // Shortcut if exceptions are disabled. 642 if (!getLangOpts().CXXExceptions) 643 return; 644 645 assert(Context.hasSameType(New->getType(), Old->getType()) && 646 "Should only be called if types are otherwise the same."); 647 648 QualType NewType = New->getType(); 649 QualType OldType = Old->getType(); 650 651 // We're only interested in pointers and references to functions, as well 652 // as pointers to member functions. 653 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) { 654 NewType = R->getPointeeType(); 655 OldType = OldType->getAs<ReferenceType>()->getPointeeType(); 656 } else if (const PointerType *P = NewType->getAs<PointerType>()) { 657 NewType = P->getPointeeType(); 658 OldType = OldType->getAs<PointerType>()->getPointeeType(); 659 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) { 660 NewType = M->getPointeeType(); 661 OldType = OldType->getAs<MemberPointerType>()->getPointeeType(); 662 } 663 664 if (!NewType->isFunctionProtoType()) 665 return; 666 667 // There's lots of special cases for functions. For function pointers, system 668 // libraries are hopefully not as broken so that we don't need these 669 // workarounds. 670 if (CheckEquivalentExceptionSpec( 671 OldType->getAs<FunctionProtoType>(), Old->getLocation(), 672 NewType->getAs<FunctionProtoType>(), New->getLocation())) { 673 New->setInvalidDecl(); 674 } 675 } 676 677 /// CheckCXXDefaultArguments - Verify that the default arguments for a 678 /// function declaration are well-formed according to C++ 679 /// [dcl.fct.default]. 680 void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) { 681 unsigned NumParams = FD->getNumParams(); 682 unsigned p; 683 684 // Find first parameter with a default argument 685 for (p = 0; p < NumParams; ++p) { 686 ParmVarDecl *Param = FD->getParamDecl(p); 687 if (Param->hasDefaultArg()) 688 break; 689 } 690 691 // C++ [dcl.fct.default]p4: 692 // In a given function declaration, all parameters 693 // subsequent to a parameter with a default argument shall 694 // have default arguments supplied in this or previous 695 // declarations. A default argument shall not be redefined 696 // by a later declaration (not even to the same value). 697 unsigned LastMissingDefaultArg = 0; 698 for (; p < NumParams; ++p) { 699 ParmVarDecl *Param = FD->getParamDecl(p); 700 if (!Param->hasDefaultArg()) { 701 if (Param->isInvalidDecl()) 702 /* We already complained about this parameter. */; 703 else if (Param->getIdentifier()) 704 Diag(Param->getLocation(), 705 diag::err_param_default_argument_missing_name) 706 << Param->getIdentifier(); 707 else 708 Diag(Param->getLocation(), 709 diag::err_param_default_argument_missing); 710 711 LastMissingDefaultArg = p; 712 } 713 } 714 715 if (LastMissingDefaultArg > 0) { 716 // Some default arguments were missing. Clear out all of the 717 // default arguments up to (and including) the last missing 718 // default argument, so that we leave the function parameters 719 // in a semantically valid state. 720 for (p = 0; p <= LastMissingDefaultArg; ++p) { 721 ParmVarDecl *Param = FD->getParamDecl(p); 722 if (Param->hasDefaultArg()) { 723 Param->setDefaultArg(nullptr); 724 } 725 } 726 } 727 } 728 729 // CheckConstexprParameterTypes - Check whether a function's parameter types 730 // are all literal types. If so, return true. If not, produce a suitable 731 // diagnostic and return false. 732 static bool CheckConstexprParameterTypes(Sema &SemaRef, 733 const FunctionDecl *FD) { 734 unsigned ArgIndex = 0; 735 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>(); 736 for (FunctionProtoType::param_type_iterator i = FT->param_type_begin(), 737 e = FT->param_type_end(); 738 i != e; ++i, ++ArgIndex) { 739 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex); 740 SourceLocation ParamLoc = PD->getLocation(); 741 if (!(*i)->isDependentType() && 742 SemaRef.RequireLiteralType(ParamLoc, *i, 743 diag::err_constexpr_non_literal_param, 744 ArgIndex+1, PD->getSourceRange(), 745 isa<CXXConstructorDecl>(FD))) 746 return false; 747 } 748 return true; 749 } 750 751 /// \brief Get diagnostic %select index for tag kind for 752 /// record diagnostic message. 753 /// WARNING: Indexes apply to particular diagnostics only! 754 /// 755 /// \returns diagnostic %select index. 756 static unsigned getRecordDiagFromTagKind(TagTypeKind Tag) { 757 switch (Tag) { 758 case TTK_Struct: return 0; 759 case TTK_Interface: return 1; 760 case TTK_Class: return 2; 761 default: llvm_unreachable("Invalid tag kind for record diagnostic!"); 762 } 763 } 764 765 // CheckConstexprFunctionDecl - Check whether a function declaration satisfies 766 // the requirements of a constexpr function definition or a constexpr 767 // constructor definition. If so, return true. If not, produce appropriate 768 // diagnostics and return false. 769 // 770 // This implements C++11 [dcl.constexpr]p3,4, as amended by DR1360. 771 bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) { 772 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 773 if (MD && MD->isInstance()) { 774 // C++11 [dcl.constexpr]p4: 775 // The definition of a constexpr constructor shall satisfy the following 776 // constraints: 777 // - the class shall not have any virtual base classes; 778 const CXXRecordDecl *RD = MD->getParent(); 779 if (RD->getNumVBases()) { 780 Diag(NewFD->getLocation(), diag::err_constexpr_virtual_base) 781 << isa<CXXConstructorDecl>(NewFD) 782 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getNumVBases(); 783 for (const auto &I : RD->vbases()) 784 Diag(I.getLocStart(), 785 diag::note_constexpr_virtual_base_here) << I.getSourceRange(); 786 return false; 787 } 788 } 789 790 if (!isa<CXXConstructorDecl>(NewFD)) { 791 // C++11 [dcl.constexpr]p3: 792 // The definition of a constexpr function shall satisfy the following 793 // constraints: 794 // - it shall not be virtual; 795 const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD); 796 if (Method && Method->isVirtual()) { 797 Diag(NewFD->getLocation(), diag::err_constexpr_virtual); 798 799 // If it's not obvious why this function is virtual, find an overridden 800 // function which uses the 'virtual' keyword. 801 const CXXMethodDecl *WrittenVirtual = Method; 802 while (!WrittenVirtual->isVirtualAsWritten()) 803 WrittenVirtual = *WrittenVirtual->begin_overridden_methods(); 804 if (WrittenVirtual != Method) 805 Diag(WrittenVirtual->getLocation(), 806 diag::note_overridden_virtual_function); 807 return false; 808 } 809 810 // - its return type shall be a literal type; 811 QualType RT = NewFD->getReturnType(); 812 if (!RT->isDependentType() && 813 RequireLiteralType(NewFD->getLocation(), RT, 814 diag::err_constexpr_non_literal_return)) 815 return false; 816 } 817 818 // - each of its parameter types shall be a literal type; 819 if (!CheckConstexprParameterTypes(*this, NewFD)) 820 return false; 821 822 return true; 823 } 824 825 /// Check the given declaration statement is legal within a constexpr function 826 /// body. C++11 [dcl.constexpr]p3,p4, and C++1y [dcl.constexpr]p3. 827 /// 828 /// \return true if the body is OK (maybe only as an extension), false if we 829 /// have diagnosed a problem. 830 static bool CheckConstexprDeclStmt(Sema &SemaRef, const FunctionDecl *Dcl, 831 DeclStmt *DS, SourceLocation &Cxx1yLoc) { 832 // C++11 [dcl.constexpr]p3 and p4: 833 // The definition of a constexpr function(p3) or constructor(p4) [...] shall 834 // contain only 835 for (const auto *DclIt : DS->decls()) { 836 switch (DclIt->getKind()) { 837 case Decl::StaticAssert: 838 case Decl::Using: 839 case Decl::UsingShadow: 840 case Decl::UsingDirective: 841 case Decl::UnresolvedUsingTypename: 842 case Decl::UnresolvedUsingValue: 843 // - static_assert-declarations 844 // - using-declarations, 845 // - using-directives, 846 continue; 847 848 case Decl::Typedef: 849 case Decl::TypeAlias: { 850 // - typedef declarations and alias-declarations that do not define 851 // classes or enumerations, 852 const auto *TN = cast<TypedefNameDecl>(DclIt); 853 if (TN->getUnderlyingType()->isVariablyModifiedType()) { 854 // Don't allow variably-modified types in constexpr functions. 855 TypeLoc TL = TN->getTypeSourceInfo()->getTypeLoc(); 856 SemaRef.Diag(TL.getBeginLoc(), diag::err_constexpr_vla) 857 << TL.getSourceRange() << TL.getType() 858 << isa<CXXConstructorDecl>(Dcl); 859 return false; 860 } 861 continue; 862 } 863 864 case Decl::Enum: 865 case Decl::CXXRecord: 866 // C++1y allows types to be defined, not just declared. 867 if (cast<TagDecl>(DclIt)->isThisDeclarationADefinition()) 868 SemaRef.Diag(DS->getLocStart(), 869 SemaRef.getLangOpts().CPlusPlus14 870 ? diag::warn_cxx11_compat_constexpr_type_definition 871 : diag::ext_constexpr_type_definition) 872 << isa<CXXConstructorDecl>(Dcl); 873 continue; 874 875 case Decl::EnumConstant: 876 case Decl::IndirectField: 877 case Decl::ParmVar: 878 // These can only appear with other declarations which are banned in 879 // C++11 and permitted in C++1y, so ignore them. 880 continue; 881 882 case Decl::Var: { 883 // C++1y [dcl.constexpr]p3 allows anything except: 884 // a definition of a variable of non-literal type or of static or 885 // thread storage duration or for which no initialization is performed. 886 const auto *VD = cast<VarDecl>(DclIt); 887 if (VD->isThisDeclarationADefinition()) { 888 if (VD->isStaticLocal()) { 889 SemaRef.Diag(VD->getLocation(), 890 diag::err_constexpr_local_var_static) 891 << isa<CXXConstructorDecl>(Dcl) 892 << (VD->getTLSKind() == VarDecl::TLS_Dynamic); 893 return false; 894 } 895 if (!VD->getType()->isDependentType() && 896 SemaRef.RequireLiteralType( 897 VD->getLocation(), VD->getType(), 898 diag::err_constexpr_local_var_non_literal_type, 899 isa<CXXConstructorDecl>(Dcl))) 900 return false; 901 if (!VD->getType()->isDependentType() && 902 !VD->hasInit() && !VD->isCXXForRangeDecl()) { 903 SemaRef.Diag(VD->getLocation(), 904 diag::err_constexpr_local_var_no_init) 905 << isa<CXXConstructorDecl>(Dcl); 906 return false; 907 } 908 } 909 SemaRef.Diag(VD->getLocation(), 910 SemaRef.getLangOpts().CPlusPlus14 911 ? diag::warn_cxx11_compat_constexpr_local_var 912 : diag::ext_constexpr_local_var) 913 << isa<CXXConstructorDecl>(Dcl); 914 continue; 915 } 916 917 case Decl::NamespaceAlias: 918 case Decl::Function: 919 // These are disallowed in C++11 and permitted in C++1y. Allow them 920 // everywhere as an extension. 921 if (!Cxx1yLoc.isValid()) 922 Cxx1yLoc = DS->getLocStart(); 923 continue; 924 925 default: 926 SemaRef.Diag(DS->getLocStart(), diag::err_constexpr_body_invalid_stmt) 927 << isa<CXXConstructorDecl>(Dcl); 928 return false; 929 } 930 } 931 932 return true; 933 } 934 935 /// Check that the given field is initialized within a constexpr constructor. 936 /// 937 /// \param Dcl The constexpr constructor being checked. 938 /// \param Field The field being checked. This may be a member of an anonymous 939 /// struct or union nested within the class being checked. 940 /// \param Inits All declarations, including anonymous struct/union members and 941 /// indirect members, for which any initialization was provided. 942 /// \param Diagnosed Set to true if an error is produced. 943 static void CheckConstexprCtorInitializer(Sema &SemaRef, 944 const FunctionDecl *Dcl, 945 FieldDecl *Field, 946 llvm::SmallSet<Decl*, 16> &Inits, 947 bool &Diagnosed) { 948 if (Field->isInvalidDecl()) 949 return; 950 951 if (Field->isUnnamedBitfield()) 952 return; 953 954 // Anonymous unions with no variant members and empty anonymous structs do not 955 // need to be explicitly initialized. FIXME: Anonymous structs that contain no 956 // indirect fields don't need initializing. 957 if (Field->isAnonymousStructOrUnion() && 958 (Field->getType()->isUnionType() 959 ? !Field->getType()->getAsCXXRecordDecl()->hasVariantMembers() 960 : Field->getType()->getAsCXXRecordDecl()->isEmpty())) 961 return; 962 963 if (!Inits.count(Field)) { 964 if (!Diagnosed) { 965 SemaRef.Diag(Dcl->getLocation(), diag::err_constexpr_ctor_missing_init); 966 Diagnosed = true; 967 } 968 SemaRef.Diag(Field->getLocation(), diag::note_constexpr_ctor_missing_init); 969 } else if (Field->isAnonymousStructOrUnion()) { 970 const RecordDecl *RD = Field->getType()->castAs<RecordType>()->getDecl(); 971 for (auto *I : RD->fields()) 972 // If an anonymous union contains an anonymous struct of which any member 973 // is initialized, all members must be initialized. 974 if (!RD->isUnion() || Inits.count(I)) 975 CheckConstexprCtorInitializer(SemaRef, Dcl, I, Inits, Diagnosed); 976 } 977 } 978 979 /// Check the provided statement is allowed in a constexpr function 980 /// definition. 981 static bool 982 CheckConstexprFunctionStmt(Sema &SemaRef, const FunctionDecl *Dcl, Stmt *S, 983 SmallVectorImpl<SourceLocation> &ReturnStmts, 984 SourceLocation &Cxx1yLoc) { 985 // - its function-body shall be [...] a compound-statement that contains only 986 switch (S->getStmtClass()) { 987 case Stmt::NullStmtClass: 988 // - null statements, 989 return true; 990 991 case Stmt::DeclStmtClass: 992 // - static_assert-declarations 993 // - using-declarations, 994 // - using-directives, 995 // - typedef declarations and alias-declarations that do not define 996 // classes or enumerations, 997 if (!CheckConstexprDeclStmt(SemaRef, Dcl, cast<DeclStmt>(S), Cxx1yLoc)) 998 return false; 999 return true; 1000 1001 case Stmt::ReturnStmtClass: 1002 // - and exactly one return statement; 1003 if (isa<CXXConstructorDecl>(Dcl)) { 1004 // C++1y allows return statements in constexpr constructors. 1005 if (!Cxx1yLoc.isValid()) 1006 Cxx1yLoc = S->getLocStart(); 1007 return true; 1008 } 1009 1010 ReturnStmts.push_back(S->getLocStart()); 1011 return true; 1012 1013 case Stmt::CompoundStmtClass: { 1014 // C++1y allows compound-statements. 1015 if (!Cxx1yLoc.isValid()) 1016 Cxx1yLoc = S->getLocStart(); 1017 1018 CompoundStmt *CompStmt = cast<CompoundStmt>(S); 1019 for (auto *BodyIt : CompStmt->body()) { 1020 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, BodyIt, ReturnStmts, 1021 Cxx1yLoc)) 1022 return false; 1023 } 1024 return true; 1025 } 1026 1027 case Stmt::AttributedStmtClass: 1028 if (!Cxx1yLoc.isValid()) 1029 Cxx1yLoc = S->getLocStart(); 1030 return true; 1031 1032 case Stmt::IfStmtClass: { 1033 // C++1y allows if-statements. 1034 if (!Cxx1yLoc.isValid()) 1035 Cxx1yLoc = S->getLocStart(); 1036 1037 IfStmt *If = cast<IfStmt>(S); 1038 if (!CheckConstexprFunctionStmt(SemaRef, Dcl, If->getThen(), ReturnStmts, 1039 Cxx1yLoc)) 1040 return false; 1041 if (If->getElse() && 1042 !CheckConstexprFunctionStmt(SemaRef, Dcl, If->getElse(), ReturnStmts, 1043 Cxx1yLoc)) 1044 return false; 1045 return true; 1046 } 1047 1048 case Stmt::WhileStmtClass: 1049 case Stmt::DoStmtClass: 1050 case Stmt::ForStmtClass: 1051 case Stmt::CXXForRangeStmtClass: 1052 case Stmt::ContinueStmtClass: 1053 // C++1y allows all of these. We don't allow them as extensions in C++11, 1054 // because they don't make sense without variable mutation. 1055 if (!SemaRef.getLangOpts().CPlusPlus14) 1056 break; 1057 if (!Cxx1yLoc.isValid()) 1058 Cxx1yLoc = S->getLocStart(); 1059 for (Stmt::child_range Children = S->children(); Children; ++Children) 1060 if (*Children && 1061 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts, 1062 Cxx1yLoc)) 1063 return false; 1064 return true; 1065 1066 case Stmt::SwitchStmtClass: 1067 case Stmt::CaseStmtClass: 1068 case Stmt::DefaultStmtClass: 1069 case Stmt::BreakStmtClass: 1070 // C++1y allows switch-statements, and since they don't need variable 1071 // mutation, we can reasonably allow them in C++11 as an extension. 1072 if (!Cxx1yLoc.isValid()) 1073 Cxx1yLoc = S->getLocStart(); 1074 for (Stmt::child_range Children = S->children(); Children; ++Children) 1075 if (*Children && 1076 !CheckConstexprFunctionStmt(SemaRef, Dcl, *Children, ReturnStmts, 1077 Cxx1yLoc)) 1078 return false; 1079 return true; 1080 1081 default: 1082 if (!isa<Expr>(S)) 1083 break; 1084 1085 // C++1y allows expression-statements. 1086 if (!Cxx1yLoc.isValid()) 1087 Cxx1yLoc = S->getLocStart(); 1088 return true; 1089 } 1090 1091 SemaRef.Diag(S->getLocStart(), diag::err_constexpr_body_invalid_stmt) 1092 << isa<CXXConstructorDecl>(Dcl); 1093 return false; 1094 } 1095 1096 /// Check the body for the given constexpr function declaration only contains 1097 /// the permitted types of statement. C++11 [dcl.constexpr]p3,p4. 1098 /// 1099 /// \return true if the body is OK, false if we have diagnosed a problem. 1100 bool Sema::CheckConstexprFunctionBody(const FunctionDecl *Dcl, Stmt *Body) { 1101 if (isa<CXXTryStmt>(Body)) { 1102 // C++11 [dcl.constexpr]p3: 1103 // The definition of a constexpr function shall satisfy the following 1104 // constraints: [...] 1105 // - its function-body shall be = delete, = default, or a 1106 // compound-statement 1107 // 1108 // C++11 [dcl.constexpr]p4: 1109 // In the definition of a constexpr constructor, [...] 1110 // - its function-body shall not be a function-try-block; 1111 Diag(Body->getLocStart(), diag::err_constexpr_function_try_block) 1112 << isa<CXXConstructorDecl>(Dcl); 1113 return false; 1114 } 1115 1116 SmallVector<SourceLocation, 4> ReturnStmts; 1117 1118 // - its function-body shall be [...] a compound-statement that contains only 1119 // [... list of cases ...] 1120 CompoundStmt *CompBody = cast<CompoundStmt>(Body); 1121 SourceLocation Cxx1yLoc; 1122 for (auto *BodyIt : CompBody->body()) { 1123 if (!CheckConstexprFunctionStmt(*this, Dcl, BodyIt, ReturnStmts, Cxx1yLoc)) 1124 return false; 1125 } 1126 1127 if (Cxx1yLoc.isValid()) 1128 Diag(Cxx1yLoc, 1129 getLangOpts().CPlusPlus14 1130 ? diag::warn_cxx11_compat_constexpr_body_invalid_stmt 1131 : diag::ext_constexpr_body_invalid_stmt) 1132 << isa<CXXConstructorDecl>(Dcl); 1133 1134 if (const CXXConstructorDecl *Constructor 1135 = dyn_cast<CXXConstructorDecl>(Dcl)) { 1136 const CXXRecordDecl *RD = Constructor->getParent(); 1137 // DR1359: 1138 // - every non-variant non-static data member and base class sub-object 1139 // shall be initialized; 1140 // DR1460: 1141 // - if the class is a union having variant members, exactly one of them 1142 // shall be initialized; 1143 if (RD->isUnion()) { 1144 if (Constructor->getNumCtorInitializers() == 0 && 1145 RD->hasVariantMembers()) { 1146 Diag(Dcl->getLocation(), diag::err_constexpr_union_ctor_no_init); 1147 return false; 1148 } 1149 } else if (!Constructor->isDependentContext() && 1150 !Constructor->isDelegatingConstructor()) { 1151 assert(RD->getNumVBases() == 0 && "constexpr ctor with virtual bases"); 1152 1153 // Skip detailed checking if we have enough initializers, and we would 1154 // allow at most one initializer per member. 1155 bool AnyAnonStructUnionMembers = false; 1156 unsigned Fields = 0; 1157 for (CXXRecordDecl::field_iterator I = RD->field_begin(), 1158 E = RD->field_end(); I != E; ++I, ++Fields) { 1159 if (I->isAnonymousStructOrUnion()) { 1160 AnyAnonStructUnionMembers = true; 1161 break; 1162 } 1163 } 1164 // DR1460: 1165 // - if the class is a union-like class, but is not a union, for each of 1166 // its anonymous union members having variant members, exactly one of 1167 // them shall be initialized; 1168 if (AnyAnonStructUnionMembers || 1169 Constructor->getNumCtorInitializers() != RD->getNumBases() + Fields) { 1170 // Check initialization of non-static data members. Base classes are 1171 // always initialized so do not need to be checked. Dependent bases 1172 // might not have initializers in the member initializer list. 1173 llvm::SmallSet<Decl*, 16> Inits; 1174 for (const auto *I: Constructor->inits()) { 1175 if (FieldDecl *FD = I->getMember()) 1176 Inits.insert(FD); 1177 else if (IndirectFieldDecl *ID = I->getIndirectMember()) 1178 Inits.insert(ID->chain_begin(), ID->chain_end()); 1179 } 1180 1181 bool Diagnosed = false; 1182 for (auto *I : RD->fields()) 1183 CheckConstexprCtorInitializer(*this, Dcl, I, Inits, Diagnosed); 1184 if (Diagnosed) 1185 return false; 1186 } 1187 } 1188 } else { 1189 if (ReturnStmts.empty()) { 1190 // C++1y doesn't require constexpr functions to contain a 'return' 1191 // statement. We still do, unless the return type might be void, because 1192 // otherwise if there's no return statement, the function cannot 1193 // be used in a core constant expression. 1194 bool OK = getLangOpts().CPlusPlus14 && 1195 (Dcl->getReturnType()->isVoidType() || 1196 Dcl->getReturnType()->isDependentType()); 1197 Diag(Dcl->getLocation(), 1198 OK ? diag::warn_cxx11_compat_constexpr_body_no_return 1199 : diag::err_constexpr_body_no_return); 1200 return OK; 1201 } 1202 if (ReturnStmts.size() > 1) { 1203 Diag(ReturnStmts.back(), 1204 getLangOpts().CPlusPlus14 1205 ? diag::warn_cxx11_compat_constexpr_body_multiple_return 1206 : diag::ext_constexpr_body_multiple_return); 1207 for (unsigned I = 0; I < ReturnStmts.size() - 1; ++I) 1208 Diag(ReturnStmts[I], diag::note_constexpr_body_previous_return); 1209 } 1210 } 1211 1212 // C++11 [dcl.constexpr]p5: 1213 // if no function argument values exist such that the function invocation 1214 // substitution would produce a constant expression, the program is 1215 // ill-formed; no diagnostic required. 1216 // C++11 [dcl.constexpr]p3: 1217 // - every constructor call and implicit conversion used in initializing the 1218 // return value shall be one of those allowed in a constant expression. 1219 // C++11 [dcl.constexpr]p4: 1220 // - every constructor involved in initializing non-static data members and 1221 // base class sub-objects shall be a constexpr constructor. 1222 SmallVector<PartialDiagnosticAt, 8> Diags; 1223 if (!Expr::isPotentialConstantExpr(Dcl, Diags)) { 1224 Diag(Dcl->getLocation(), diag::ext_constexpr_function_never_constant_expr) 1225 << isa<CXXConstructorDecl>(Dcl); 1226 for (size_t I = 0, N = Diags.size(); I != N; ++I) 1227 Diag(Diags[I].first, Diags[I].second); 1228 // Don't return false here: we allow this for compatibility in 1229 // system headers. 1230 } 1231 1232 return true; 1233 } 1234 1235 /// isCurrentClassName - Determine whether the identifier II is the 1236 /// name of the class type currently being defined. In the case of 1237 /// nested classes, this will only return true if II is the name of 1238 /// the innermost class. 1239 bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *, 1240 const CXXScopeSpec *SS) { 1241 assert(getLangOpts().CPlusPlus && "No class names in C!"); 1242 1243 CXXRecordDecl *CurDecl; 1244 if (SS && SS->isSet() && !SS->isInvalid()) { 1245 DeclContext *DC = computeDeclContext(*SS, true); 1246 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC); 1247 } else 1248 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext); 1249 1250 if (CurDecl && CurDecl->getIdentifier()) 1251 return &II == CurDecl->getIdentifier(); 1252 return false; 1253 } 1254 1255 /// \brief Determine whether the identifier II is a typo for the name of 1256 /// the class type currently being defined. If so, update it to the identifier 1257 /// that should have been used. 1258 bool Sema::isCurrentClassNameTypo(IdentifierInfo *&II, const CXXScopeSpec *SS) { 1259 assert(getLangOpts().CPlusPlus && "No class names in C!"); 1260 1261 if (!getLangOpts().SpellChecking) 1262 return false; 1263 1264 CXXRecordDecl *CurDecl; 1265 if (SS && SS->isSet() && !SS->isInvalid()) { 1266 DeclContext *DC = computeDeclContext(*SS, true); 1267 CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC); 1268 } else 1269 CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext); 1270 1271 if (CurDecl && CurDecl->getIdentifier() && II != CurDecl->getIdentifier() && 1272 3 * II->getName().edit_distance(CurDecl->getIdentifier()->getName()) 1273 < II->getLength()) { 1274 II = CurDecl->getIdentifier(); 1275 return true; 1276 } 1277 1278 return false; 1279 } 1280 1281 /// \brief Determine whether the given class is a base class of the given 1282 /// class, including looking at dependent bases. 1283 static bool findCircularInheritance(const CXXRecordDecl *Class, 1284 const CXXRecordDecl *Current) { 1285 SmallVector<const CXXRecordDecl*, 8> Queue; 1286 1287 Class = Class->getCanonicalDecl(); 1288 while (true) { 1289 for (const auto &I : Current->bases()) { 1290 CXXRecordDecl *Base = I.getType()->getAsCXXRecordDecl(); 1291 if (!Base) 1292 continue; 1293 1294 Base = Base->getDefinition(); 1295 if (!Base) 1296 continue; 1297 1298 if (Base->getCanonicalDecl() == Class) 1299 return true; 1300 1301 Queue.push_back(Base); 1302 } 1303 1304 if (Queue.empty()) 1305 return false; 1306 1307 Current = Queue.pop_back_val(); 1308 } 1309 1310 return false; 1311 } 1312 1313 /// \brief Perform propagation of DLL attributes from a derived class to a 1314 /// templated base class for MS compatibility. 1315 static void propagateDLLAttrToBaseClassTemplate( 1316 Sema &S, CXXRecordDecl *Class, Attr *ClassAttr, 1317 ClassTemplateSpecializationDecl *BaseTemplateSpec, SourceLocation BaseLoc) { 1318 if (getDLLAttr( 1319 BaseTemplateSpec->getSpecializedTemplate()->getTemplatedDecl())) { 1320 // If the base class template has a DLL attribute, don't try to change it. 1321 return; 1322 } 1323 1324 if (BaseTemplateSpec->getSpecializationKind() == TSK_Undeclared) { 1325 // If the base class is not already specialized, we can do the propagation. 1326 auto *NewAttr = cast<InheritableAttr>(ClassAttr->clone(S.getASTContext())); 1327 NewAttr->setInherited(true); 1328 BaseTemplateSpec->addAttr(NewAttr); 1329 return; 1330 } 1331 1332 bool DifferentAttribute = false; 1333 if (Attr *SpecializationAttr = getDLLAttr(BaseTemplateSpec)) { 1334 if (!SpecializationAttr->isInherited()) { 1335 // The template has previously been specialized or instantiated with an 1336 // explicit attribute. We should not try to change it. 1337 return; 1338 } 1339 if (SpecializationAttr->getKind() == ClassAttr->getKind()) { 1340 // The specialization already has the right attribute. 1341 return; 1342 } 1343 DifferentAttribute = true; 1344 } 1345 1346 // The template was previously instantiated or explicitly specialized without 1347 // a dll attribute, or the template was previously instantiated with a 1348 // different inherited attribute. It's too late for us to change the 1349 // attribute, so warn that this is unsupported. 1350 S.Diag(BaseLoc, diag::warn_attribute_dll_instantiated_base_class) 1351 << BaseTemplateSpec->isExplicitSpecialization() << DifferentAttribute; 1352 S.Diag(ClassAttr->getLocation(), diag::note_attribute); 1353 if (BaseTemplateSpec->isExplicitSpecialization()) { 1354 S.Diag(BaseTemplateSpec->getLocation(), 1355 diag::note_template_class_explicit_specialization_was_here) 1356 << BaseTemplateSpec; 1357 } else { 1358 S.Diag(BaseTemplateSpec->getPointOfInstantiation(), 1359 diag::note_template_class_instantiation_was_here) 1360 << BaseTemplateSpec; 1361 } 1362 } 1363 1364 /// \brief Check the validity of a C++ base class specifier. 1365 /// 1366 /// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics 1367 /// and returns NULL otherwise. 1368 CXXBaseSpecifier * 1369 Sema::CheckBaseSpecifier(CXXRecordDecl *Class, 1370 SourceRange SpecifierRange, 1371 bool Virtual, AccessSpecifier Access, 1372 TypeSourceInfo *TInfo, 1373 SourceLocation EllipsisLoc) { 1374 QualType BaseType = TInfo->getType(); 1375 1376 // C++ [class.union]p1: 1377 // A union shall not have base classes. 1378 if (Class->isUnion()) { 1379 Diag(Class->getLocation(), diag::err_base_clause_on_union) 1380 << SpecifierRange; 1381 return nullptr; 1382 } 1383 1384 if (EllipsisLoc.isValid() && 1385 !TInfo->getType()->containsUnexpandedParameterPack()) { 1386 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 1387 << TInfo->getTypeLoc().getSourceRange(); 1388 EllipsisLoc = SourceLocation(); 1389 } 1390 1391 SourceLocation BaseLoc = TInfo->getTypeLoc().getBeginLoc(); 1392 1393 if (BaseType->isDependentType()) { 1394 // Make sure that we don't have circular inheritance among our dependent 1395 // bases. For non-dependent bases, the check for completeness below handles 1396 // this. 1397 if (CXXRecordDecl *BaseDecl = BaseType->getAsCXXRecordDecl()) { 1398 if (BaseDecl->getCanonicalDecl() == Class->getCanonicalDecl() || 1399 ((BaseDecl = BaseDecl->getDefinition()) && 1400 findCircularInheritance(Class, BaseDecl))) { 1401 Diag(BaseLoc, diag::err_circular_inheritance) 1402 << BaseType << Context.getTypeDeclType(Class); 1403 1404 if (BaseDecl->getCanonicalDecl() != Class->getCanonicalDecl()) 1405 Diag(BaseDecl->getLocation(), diag::note_previous_decl) 1406 << BaseType; 1407 1408 return nullptr; 1409 } 1410 } 1411 1412 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, 1413 Class->getTagKind() == TTK_Class, 1414 Access, TInfo, EllipsisLoc); 1415 } 1416 1417 // Base specifiers must be record types. 1418 if (!BaseType->isRecordType()) { 1419 Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange; 1420 return nullptr; 1421 } 1422 1423 // C++ [class.union]p1: 1424 // A union shall not be used as a base class. 1425 if (BaseType->isUnionType()) { 1426 Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange; 1427 return nullptr; 1428 } 1429 1430 // For the MS ABI, propagate DLL attributes to base class templates. 1431 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 1432 if (Attr *ClassAttr = getDLLAttr(Class)) { 1433 if (auto *BaseTemplate = dyn_cast_or_null<ClassTemplateSpecializationDecl>( 1434 BaseType->getAsCXXRecordDecl())) { 1435 propagateDLLAttrToBaseClassTemplate(*this, Class, ClassAttr, 1436 BaseTemplate, BaseLoc); 1437 } 1438 } 1439 } 1440 1441 // C++ [class.derived]p2: 1442 // The class-name in a base-specifier shall not be an incompletely 1443 // defined class. 1444 if (RequireCompleteType(BaseLoc, BaseType, 1445 diag::err_incomplete_base_class, SpecifierRange)) { 1446 Class->setInvalidDecl(); 1447 return nullptr; 1448 } 1449 1450 // If the base class is polymorphic or isn't empty, the new one is/isn't, too. 1451 RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl(); 1452 assert(BaseDecl && "Record type has no declaration"); 1453 BaseDecl = BaseDecl->getDefinition(); 1454 assert(BaseDecl && "Base type is not incomplete, but has no definition"); 1455 CXXRecordDecl *CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl); 1456 assert(CXXBaseDecl && "Base type is not a C++ type"); 1457 1458 // A class which contains a flexible array member is not suitable for use as a 1459 // base class: 1460 // - If the layout determines that a base comes before another base, 1461 // the flexible array member would index into the subsequent base. 1462 // - If the layout determines that base comes before the derived class, 1463 // the flexible array member would index into the derived class. 1464 if (CXXBaseDecl->hasFlexibleArrayMember()) { 1465 Diag(BaseLoc, diag::err_base_class_has_flexible_array_member) 1466 << CXXBaseDecl->getDeclName(); 1467 return nullptr; 1468 } 1469 1470 // C++ [class]p3: 1471 // If a class is marked final and it appears as a base-type-specifier in 1472 // base-clause, the program is ill-formed. 1473 if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) { 1474 Diag(BaseLoc, diag::err_class_marked_final_used_as_base) 1475 << CXXBaseDecl->getDeclName() 1476 << FA->isSpelledAsSealed(); 1477 Diag(CXXBaseDecl->getLocation(), diag::note_entity_declared_at) 1478 << CXXBaseDecl->getDeclName() << FA->getRange(); 1479 return nullptr; 1480 } 1481 1482 if (BaseDecl->isInvalidDecl()) 1483 Class->setInvalidDecl(); 1484 1485 // Create the base specifier. 1486 return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, 1487 Class->getTagKind() == TTK_Class, 1488 Access, TInfo, EllipsisLoc); 1489 } 1490 1491 /// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is 1492 /// one entry in the base class list of a class specifier, for 1493 /// example: 1494 /// class foo : public bar, virtual private baz { 1495 /// 'public bar' and 'virtual private baz' are each base-specifiers. 1496 BaseResult 1497 Sema::ActOnBaseSpecifier(Decl *classdecl, SourceRange SpecifierRange, 1498 ParsedAttributes &Attributes, 1499 bool Virtual, AccessSpecifier Access, 1500 ParsedType basetype, SourceLocation BaseLoc, 1501 SourceLocation EllipsisLoc) { 1502 if (!classdecl) 1503 return true; 1504 1505 AdjustDeclIfTemplate(classdecl); 1506 CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(classdecl); 1507 if (!Class) 1508 return true; 1509 1510 // We haven't yet attached the base specifiers. 1511 Class->setIsParsingBaseSpecifiers(); 1512 1513 // We do not support any C++11 attributes on base-specifiers yet. 1514 // Diagnose any attributes we see. 1515 if (!Attributes.empty()) { 1516 for (AttributeList *Attr = Attributes.getList(); Attr; 1517 Attr = Attr->getNext()) { 1518 if (Attr->isInvalid() || 1519 Attr->getKind() == AttributeList::IgnoredAttribute) 1520 continue; 1521 Diag(Attr->getLoc(), 1522 Attr->getKind() == AttributeList::UnknownAttribute 1523 ? diag::warn_unknown_attribute_ignored 1524 : diag::err_base_specifier_attribute) 1525 << Attr->getName(); 1526 } 1527 } 1528 1529 TypeSourceInfo *TInfo = nullptr; 1530 GetTypeFromParser(basetype, &TInfo); 1531 1532 if (EllipsisLoc.isInvalid() && 1533 DiagnoseUnexpandedParameterPack(SpecifierRange.getBegin(), TInfo, 1534 UPPC_BaseType)) 1535 return true; 1536 1537 if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange, 1538 Virtual, Access, TInfo, 1539 EllipsisLoc)) 1540 return BaseSpec; 1541 else 1542 Class->setInvalidDecl(); 1543 1544 return true; 1545 } 1546 1547 /// Use small set to collect indirect bases. As this is only used 1548 /// locally, there's no need to abstract the small size parameter. 1549 typedef llvm::SmallPtrSet<QualType, 4> IndirectBaseSet; 1550 1551 /// \brief Recursively add the bases of Type. Don't add Type itself. 1552 static void 1553 NoteIndirectBases(ASTContext &Context, IndirectBaseSet &Set, 1554 const QualType &Type) 1555 { 1556 // Even though the incoming type is a base, it might not be 1557 // a class -- it could be a template parm, for instance. 1558 if (auto Rec = Type->getAs<RecordType>()) { 1559 auto Decl = Rec->getAsCXXRecordDecl(); 1560 1561 // Iterate over its bases. 1562 for (const auto &BaseSpec : Decl->bases()) { 1563 QualType Base = Context.getCanonicalType(BaseSpec.getType()) 1564 .getUnqualifiedType(); 1565 if (Set.insert(Base).second) 1566 // If we've not already seen it, recurse. 1567 NoteIndirectBases(Context, Set, Base); 1568 } 1569 } 1570 } 1571 1572 /// \brief Performs the actual work of attaching the given base class 1573 /// specifiers to a C++ class. 1574 bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases, 1575 unsigned NumBases) { 1576 if (NumBases == 0) 1577 return false; 1578 1579 // Used to keep track of which base types we have already seen, so 1580 // that we can properly diagnose redundant direct base types. Note 1581 // that the key is always the unqualified canonical type of the base 1582 // class. 1583 std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes; 1584 1585 // Used to track indirect bases so we can see if a direct base is 1586 // ambiguous. 1587 IndirectBaseSet IndirectBaseTypes; 1588 1589 // Copy non-redundant base specifiers into permanent storage. 1590 unsigned NumGoodBases = 0; 1591 bool Invalid = false; 1592 for (unsigned idx = 0; idx < NumBases; ++idx) { 1593 QualType NewBaseType 1594 = Context.getCanonicalType(Bases[idx]->getType()); 1595 NewBaseType = NewBaseType.getLocalUnqualifiedType(); 1596 1597 CXXBaseSpecifier *&KnownBase = KnownBaseTypes[NewBaseType]; 1598 if (KnownBase) { 1599 // C++ [class.mi]p3: 1600 // A class shall not be specified as a direct base class of a 1601 // derived class more than once. 1602 Diag(Bases[idx]->getLocStart(), 1603 diag::err_duplicate_base_class) 1604 << KnownBase->getType() 1605 << Bases[idx]->getSourceRange(); 1606 1607 // Delete the duplicate base class specifier; we're going to 1608 // overwrite its pointer later. 1609 Context.Deallocate(Bases[idx]); 1610 1611 Invalid = true; 1612 } else { 1613 // Okay, add this new base class. 1614 KnownBase = Bases[idx]; 1615 Bases[NumGoodBases++] = Bases[idx]; 1616 1617 // Note this base's direct & indirect bases, if there could be ambiguity. 1618 if (NumBases > 1) 1619 NoteIndirectBases(Context, IndirectBaseTypes, NewBaseType); 1620 1621 if (const RecordType *Record = NewBaseType->getAs<RecordType>()) { 1622 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()); 1623 if (Class->isInterface() && 1624 (!RD->isInterface() || 1625 KnownBase->getAccessSpecifier() != AS_public)) { 1626 // The Microsoft extension __interface does not permit bases that 1627 // are not themselves public interfaces. 1628 Diag(KnownBase->getLocStart(), diag::err_invalid_base_in_interface) 1629 << getRecordDiagFromTagKind(RD->getTagKind()) << RD->getName() 1630 << RD->getSourceRange(); 1631 Invalid = true; 1632 } 1633 if (RD->hasAttr<WeakAttr>()) 1634 Class->addAttr(WeakAttr::CreateImplicit(Context)); 1635 } 1636 } 1637 } 1638 1639 // Attach the remaining base class specifiers to the derived class. 1640 Class->setBases(Bases, NumGoodBases); 1641 1642 for (unsigned idx = 0; idx < NumGoodBases; ++idx) { 1643 // Check whether this direct base is inaccessible due to ambiguity. 1644 QualType BaseType = Bases[idx]->getType(); 1645 CanQualType CanonicalBase = Context.getCanonicalType(BaseType) 1646 .getUnqualifiedType(); 1647 1648 if (IndirectBaseTypes.count(CanonicalBase)) { 1649 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1650 /*DetectVirtual=*/true); 1651 bool found 1652 = Class->isDerivedFrom(CanonicalBase->getAsCXXRecordDecl(), Paths); 1653 assert(found); 1654 (void)found; 1655 1656 if (Paths.isAmbiguous(CanonicalBase)) 1657 Diag(Bases[idx]->getLocStart (), diag::warn_inaccessible_base_class) 1658 << BaseType << getAmbiguousPathsDisplayString(Paths) 1659 << Bases[idx]->getSourceRange(); 1660 else 1661 assert(Bases[idx]->isVirtual()); 1662 } 1663 1664 // Delete the base class specifier, since its data has been copied 1665 // into the CXXRecordDecl. 1666 Context.Deallocate(Bases[idx]); 1667 } 1668 1669 return Invalid; 1670 } 1671 1672 /// ActOnBaseSpecifiers - Attach the given base specifiers to the 1673 /// class, after checking whether there are any duplicate base 1674 /// classes. 1675 void Sema::ActOnBaseSpecifiers(Decl *ClassDecl, CXXBaseSpecifier **Bases, 1676 unsigned NumBases) { 1677 if (!ClassDecl || !Bases || !NumBases) 1678 return; 1679 1680 AdjustDeclIfTemplate(ClassDecl); 1681 AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl), Bases, NumBases); 1682 } 1683 1684 /// \brief Determine whether the type \p Derived is a C++ class that is 1685 /// derived from the type \p Base. 1686 bool Sema::IsDerivedFrom(QualType Derived, QualType Base) { 1687 if (!getLangOpts().CPlusPlus) 1688 return false; 1689 1690 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl(); 1691 if (!DerivedRD) 1692 return false; 1693 1694 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl(); 1695 if (!BaseRD) 1696 return false; 1697 1698 // If either the base or the derived type is invalid, don't try to 1699 // check whether one is derived from the other. 1700 if (BaseRD->isInvalidDecl() || DerivedRD->isInvalidDecl()) 1701 return false; 1702 1703 // FIXME: instantiate DerivedRD if necessary. We need a PoI for this. 1704 return DerivedRD->hasDefinition() && DerivedRD->isDerivedFrom(BaseRD); 1705 } 1706 1707 /// \brief Determine whether the type \p Derived is a C++ class that is 1708 /// derived from the type \p Base. 1709 bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) { 1710 if (!getLangOpts().CPlusPlus) 1711 return false; 1712 1713 CXXRecordDecl *DerivedRD = Derived->getAsCXXRecordDecl(); 1714 if (!DerivedRD) 1715 return false; 1716 1717 CXXRecordDecl *BaseRD = Base->getAsCXXRecordDecl(); 1718 if (!BaseRD) 1719 return false; 1720 1721 return DerivedRD->isDerivedFrom(BaseRD, Paths); 1722 } 1723 1724 void Sema::BuildBasePathArray(const CXXBasePaths &Paths, 1725 CXXCastPath &BasePathArray) { 1726 assert(BasePathArray.empty() && "Base path array must be empty!"); 1727 assert(Paths.isRecordingPaths() && "Must record paths!"); 1728 1729 const CXXBasePath &Path = Paths.front(); 1730 1731 // We first go backward and check if we have a virtual base. 1732 // FIXME: It would be better if CXXBasePath had the base specifier for 1733 // the nearest virtual base. 1734 unsigned Start = 0; 1735 for (unsigned I = Path.size(); I != 0; --I) { 1736 if (Path[I - 1].Base->isVirtual()) { 1737 Start = I - 1; 1738 break; 1739 } 1740 } 1741 1742 // Now add all bases. 1743 for (unsigned I = Start, E = Path.size(); I != E; ++I) 1744 BasePathArray.push_back(const_cast<CXXBaseSpecifier*>(Path[I].Base)); 1745 } 1746 1747 /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base 1748 /// conversion (where Derived and Base are class types) is 1749 /// well-formed, meaning that the conversion is unambiguous (and 1750 /// that all of the base classes are accessible). Returns true 1751 /// and emits a diagnostic if the code is ill-formed, returns false 1752 /// otherwise. Loc is the location where this routine should point to 1753 /// if there is an error, and Range is the source range to highlight 1754 /// if there is an error. 1755 bool 1756 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 1757 unsigned InaccessibleBaseID, 1758 unsigned AmbigiousBaseConvID, 1759 SourceLocation Loc, SourceRange Range, 1760 DeclarationName Name, 1761 CXXCastPath *BasePath) { 1762 // First, determine whether the path from Derived to Base is 1763 // ambiguous. This is slightly more expensive than checking whether 1764 // the Derived to Base conversion exists, because here we need to 1765 // explore multiple paths to determine if there is an ambiguity. 1766 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 1767 /*DetectVirtual=*/false); 1768 bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths); 1769 assert(DerivationOkay && 1770 "Can only be used with a derived-to-base conversion"); 1771 (void)DerivationOkay; 1772 1773 if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) { 1774 if (InaccessibleBaseID) { 1775 // Check that the base class can be accessed. 1776 switch (CheckBaseClassAccess(Loc, Base, Derived, Paths.front(), 1777 InaccessibleBaseID)) { 1778 case AR_inaccessible: 1779 return true; 1780 case AR_accessible: 1781 case AR_dependent: 1782 case AR_delayed: 1783 break; 1784 } 1785 } 1786 1787 // Build a base path if necessary. 1788 if (BasePath) 1789 BuildBasePathArray(Paths, *BasePath); 1790 return false; 1791 } 1792 1793 if (AmbigiousBaseConvID) { 1794 // We know that the derived-to-base conversion is ambiguous, and 1795 // we're going to produce a diagnostic. Perform the derived-to-base 1796 // search just one more time to compute all of the possible paths so 1797 // that we can print them out. This is more expensive than any of 1798 // the previous derived-to-base checks we've done, but at this point 1799 // performance isn't as much of an issue. 1800 Paths.clear(); 1801 Paths.setRecordingPaths(true); 1802 bool StillOkay = IsDerivedFrom(Derived, Base, Paths); 1803 assert(StillOkay && "Can only be used with a derived-to-base conversion"); 1804 (void)StillOkay; 1805 1806 // Build up a textual representation of the ambiguous paths, e.g., 1807 // D -> B -> A, that will be used to illustrate the ambiguous 1808 // conversions in the diagnostic. We only print one of the paths 1809 // to each base class subobject. 1810 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths); 1811 1812 Diag(Loc, AmbigiousBaseConvID) 1813 << Derived << Base << PathDisplayStr << Range << Name; 1814 } 1815 return true; 1816 } 1817 1818 bool 1819 Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, 1820 SourceLocation Loc, SourceRange Range, 1821 CXXCastPath *BasePath, 1822 bool IgnoreAccess) { 1823 return CheckDerivedToBaseConversion(Derived, Base, 1824 IgnoreAccess ? 0 1825 : diag::err_upcast_to_inaccessible_base, 1826 diag::err_ambiguous_derived_to_base_conv, 1827 Loc, Range, DeclarationName(), 1828 BasePath); 1829 } 1830 1831 1832 /// @brief Builds a string representing ambiguous paths from a 1833 /// specific derived class to different subobjects of the same base 1834 /// class. 1835 /// 1836 /// This function builds a string that can be used in error messages 1837 /// to show the different paths that one can take through the 1838 /// inheritance hierarchy to go from the derived class to different 1839 /// subobjects of a base class. The result looks something like this: 1840 /// @code 1841 /// struct D -> struct B -> struct A 1842 /// struct D -> struct C -> struct A 1843 /// @endcode 1844 std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) { 1845 std::string PathDisplayStr; 1846 std::set<unsigned> DisplayedPaths; 1847 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 1848 Path != Paths.end(); ++Path) { 1849 if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) { 1850 // We haven't displayed a path to this particular base 1851 // class subobject yet. 1852 PathDisplayStr += "\n "; 1853 PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString(); 1854 for (CXXBasePath::const_iterator Element = Path->begin(); 1855 Element != Path->end(); ++Element) 1856 PathDisplayStr += " -> " + Element->Base->getType().getAsString(); 1857 } 1858 } 1859 1860 return PathDisplayStr; 1861 } 1862 1863 //===----------------------------------------------------------------------===// 1864 // C++ class member Handling 1865 //===----------------------------------------------------------------------===// 1866 1867 /// ActOnAccessSpecifier - Parsed an access specifier followed by a colon. 1868 bool Sema::ActOnAccessSpecifier(AccessSpecifier Access, 1869 SourceLocation ASLoc, 1870 SourceLocation ColonLoc, 1871 AttributeList *Attrs) { 1872 assert(Access != AS_none && "Invalid kind for syntactic access specifier!"); 1873 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext, 1874 ASLoc, ColonLoc); 1875 CurContext->addHiddenDecl(ASDecl); 1876 return ProcessAccessDeclAttributeList(ASDecl, Attrs); 1877 } 1878 1879 /// CheckOverrideControl - Check C++11 override control semantics. 1880 void Sema::CheckOverrideControl(NamedDecl *D) { 1881 if (D->isInvalidDecl()) 1882 return; 1883 1884 // We only care about "override" and "final" declarations. 1885 if (!D->hasAttr<OverrideAttr>() && !D->hasAttr<FinalAttr>()) 1886 return; 1887 1888 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 1889 1890 // We can't check dependent instance methods. 1891 if (MD && MD->isInstance() && 1892 (MD->getParent()->hasAnyDependentBases() || 1893 MD->getType()->isDependentType())) 1894 return; 1895 1896 if (MD && !MD->isVirtual()) { 1897 // If we have a non-virtual method, check if if hides a virtual method. 1898 // (In that case, it's most likely the method has the wrong type.) 1899 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 1900 FindHiddenVirtualMethods(MD, OverloadedMethods); 1901 1902 if (!OverloadedMethods.empty()) { 1903 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 1904 Diag(OA->getLocation(), 1905 diag::override_keyword_hides_virtual_member_function) 1906 << "override" << (OverloadedMethods.size() > 1); 1907 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 1908 Diag(FA->getLocation(), 1909 diag::override_keyword_hides_virtual_member_function) 1910 << (FA->isSpelledAsSealed() ? "sealed" : "final") 1911 << (OverloadedMethods.size() > 1); 1912 } 1913 NoteHiddenVirtualMethods(MD, OverloadedMethods); 1914 MD->setInvalidDecl(); 1915 return; 1916 } 1917 // Fall through into the general case diagnostic. 1918 // FIXME: We might want to attempt typo correction here. 1919 } 1920 1921 if (!MD || !MD->isVirtual()) { 1922 if (OverrideAttr *OA = D->getAttr<OverrideAttr>()) { 1923 Diag(OA->getLocation(), 1924 diag::override_keyword_only_allowed_on_virtual_member_functions) 1925 << "override" << FixItHint::CreateRemoval(OA->getLocation()); 1926 D->dropAttr<OverrideAttr>(); 1927 } 1928 if (FinalAttr *FA = D->getAttr<FinalAttr>()) { 1929 Diag(FA->getLocation(), 1930 diag::override_keyword_only_allowed_on_virtual_member_functions) 1931 << (FA->isSpelledAsSealed() ? "sealed" : "final") 1932 << FixItHint::CreateRemoval(FA->getLocation()); 1933 D->dropAttr<FinalAttr>(); 1934 } 1935 return; 1936 } 1937 1938 // C++11 [class.virtual]p5: 1939 // If a function is marked with the virt-specifier override and 1940 // does not override a member function of a base class, the program is 1941 // ill-formed. 1942 bool HasOverriddenMethods = 1943 MD->begin_overridden_methods() != MD->end_overridden_methods(); 1944 if (MD->hasAttr<OverrideAttr>() && !HasOverriddenMethods) 1945 Diag(MD->getLocation(), diag::err_function_marked_override_not_overriding) 1946 << MD->getDeclName(); 1947 } 1948 1949 void Sema::DiagnoseAbsenceOfOverrideControl(NamedDecl *D) { 1950 if (D->isInvalidDecl() || D->hasAttr<OverrideAttr>()) 1951 return; 1952 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D); 1953 if (!MD || MD->isImplicit() || MD->hasAttr<FinalAttr>() || 1954 isa<CXXDestructorDecl>(MD)) 1955 return; 1956 1957 SourceLocation Loc = MD->getLocation(); 1958 SourceLocation SpellingLoc = Loc; 1959 if (getSourceManager().isMacroArgExpansion(Loc)) 1960 SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).first; 1961 SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc); 1962 if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc)) 1963 return; 1964 1965 if (MD->size_overridden_methods() > 0) { 1966 Diag(MD->getLocation(), diag::warn_function_marked_not_override_overriding) 1967 << MD->getDeclName(); 1968 const CXXMethodDecl *OMD = *MD->begin_overridden_methods(); 1969 Diag(OMD->getLocation(), diag::note_overridden_virtual_function); 1970 } 1971 } 1972 1973 /// CheckIfOverriddenFunctionIsMarkedFinal - Checks whether a virtual member 1974 /// function overrides a virtual member function marked 'final', according to 1975 /// C++11 [class.virtual]p4. 1976 bool Sema::CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New, 1977 const CXXMethodDecl *Old) { 1978 FinalAttr *FA = Old->getAttr<FinalAttr>(); 1979 if (!FA) 1980 return false; 1981 1982 Diag(New->getLocation(), diag::err_final_function_overridden) 1983 << New->getDeclName() 1984 << FA->isSpelledAsSealed(); 1985 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 1986 return true; 1987 } 1988 1989 static bool InitializationHasSideEffects(const FieldDecl &FD) { 1990 const Type *T = FD.getType()->getBaseElementTypeUnsafe(); 1991 // FIXME: Destruction of ObjC lifetime types has side-effects. 1992 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 1993 return !RD->isCompleteDefinition() || 1994 !RD->hasTrivialDefaultConstructor() || 1995 !RD->hasTrivialDestructor(); 1996 return false; 1997 } 1998 1999 static AttributeList *getMSPropertyAttr(AttributeList *list) { 2000 for (AttributeList *it = list; it != nullptr; it = it->getNext()) 2001 if (it->isDeclspecPropertyAttribute()) 2002 return it; 2003 return nullptr; 2004 } 2005 2006 /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member 2007 /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the 2008 /// bitfield width if there is one, 'InitExpr' specifies the initializer if 2009 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is 2010 /// present (but parsing it has been deferred). 2011 NamedDecl * 2012 Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, 2013 MultiTemplateParamsArg TemplateParameterLists, 2014 Expr *BW, const VirtSpecifiers &VS, 2015 InClassInitStyle InitStyle) { 2016 const DeclSpec &DS = D.getDeclSpec(); 2017 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 2018 DeclarationName Name = NameInfo.getName(); 2019 SourceLocation Loc = NameInfo.getLoc(); 2020 2021 // For anonymous bitfields, the location should point to the type. 2022 if (Loc.isInvalid()) 2023 Loc = D.getLocStart(); 2024 2025 Expr *BitWidth = static_cast<Expr*>(BW); 2026 2027 assert(isa<CXXRecordDecl>(CurContext)); 2028 assert(!DS.isFriendSpecified()); 2029 2030 bool isFunc = D.isDeclarationOfFunction(); 2031 2032 if (cast<CXXRecordDecl>(CurContext)->isInterface()) { 2033 // The Microsoft extension __interface only permits public member functions 2034 // and prohibits constructors, destructors, operators, non-public member 2035 // functions, static methods and data members. 2036 unsigned InvalidDecl; 2037 bool ShowDeclName = true; 2038 if (!isFunc) 2039 InvalidDecl = (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) ? 0 : 1; 2040 else if (AS != AS_public) 2041 InvalidDecl = 2; 2042 else if (DS.getStorageClassSpec() == DeclSpec::SCS_static) 2043 InvalidDecl = 3; 2044 else switch (Name.getNameKind()) { 2045 case DeclarationName::CXXConstructorName: 2046 InvalidDecl = 4; 2047 ShowDeclName = false; 2048 break; 2049 2050 case DeclarationName::CXXDestructorName: 2051 InvalidDecl = 5; 2052 ShowDeclName = false; 2053 break; 2054 2055 case DeclarationName::CXXOperatorName: 2056 case DeclarationName::CXXConversionFunctionName: 2057 InvalidDecl = 6; 2058 break; 2059 2060 default: 2061 InvalidDecl = 0; 2062 break; 2063 } 2064 2065 if (InvalidDecl) { 2066 if (ShowDeclName) 2067 Diag(Loc, diag::err_invalid_member_in_interface) 2068 << (InvalidDecl-1) << Name; 2069 else 2070 Diag(Loc, diag::err_invalid_member_in_interface) 2071 << (InvalidDecl-1) << ""; 2072 return nullptr; 2073 } 2074 } 2075 2076 // C++ 9.2p6: A member shall not be declared to have automatic storage 2077 // duration (auto, register) or with the extern storage-class-specifier. 2078 // C++ 7.1.1p8: The mutable specifier can be applied only to names of class 2079 // data members and cannot be applied to names declared const or static, 2080 // and cannot be applied to reference members. 2081 switch (DS.getStorageClassSpec()) { 2082 case DeclSpec::SCS_unspecified: 2083 case DeclSpec::SCS_typedef: 2084 case DeclSpec::SCS_static: 2085 break; 2086 case DeclSpec::SCS_mutable: 2087 if (isFunc) { 2088 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function); 2089 2090 // FIXME: It would be nicer if the keyword was ignored only for this 2091 // declarator. Otherwise we could get follow-up errors. 2092 D.getMutableDeclSpec().ClearStorageClassSpecs(); 2093 } 2094 break; 2095 default: 2096 Diag(DS.getStorageClassSpecLoc(), 2097 diag::err_storageclass_invalid_for_member); 2098 D.getMutableDeclSpec().ClearStorageClassSpecs(); 2099 break; 2100 } 2101 2102 bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified || 2103 DS.getStorageClassSpec() == DeclSpec::SCS_mutable) && 2104 !isFunc); 2105 2106 if (DS.isConstexprSpecified() && isInstField) { 2107 SemaDiagnosticBuilder B = 2108 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr_member); 2109 SourceLocation ConstexprLoc = DS.getConstexprSpecLoc(); 2110 if (InitStyle == ICIS_NoInit) { 2111 B << 0 << 0; 2112 if (D.getDeclSpec().getTypeQualifiers() & DeclSpec::TQ_const) 2113 B << FixItHint::CreateRemoval(ConstexprLoc); 2114 else { 2115 B << FixItHint::CreateReplacement(ConstexprLoc, "const"); 2116 D.getMutableDeclSpec().ClearConstexprSpec(); 2117 const char *PrevSpec; 2118 unsigned DiagID; 2119 bool Failed = D.getMutableDeclSpec().SetTypeQual( 2120 DeclSpec::TQ_const, ConstexprLoc, PrevSpec, DiagID, getLangOpts()); 2121 (void)Failed; 2122 assert(!Failed && "Making a constexpr member const shouldn't fail"); 2123 } 2124 } else { 2125 B << 1; 2126 const char *PrevSpec; 2127 unsigned DiagID; 2128 if (D.getMutableDeclSpec().SetStorageClassSpec( 2129 *this, DeclSpec::SCS_static, ConstexprLoc, PrevSpec, DiagID, 2130 Context.getPrintingPolicy())) { 2131 assert(DS.getStorageClassSpec() == DeclSpec::SCS_mutable && 2132 "This is the only DeclSpec that should fail to be applied"); 2133 B << 1; 2134 } else { 2135 B << 0 << FixItHint::CreateInsertion(ConstexprLoc, "static "); 2136 isInstField = false; 2137 } 2138 } 2139 } 2140 2141 NamedDecl *Member; 2142 if (isInstField) { 2143 CXXScopeSpec &SS = D.getCXXScopeSpec(); 2144 2145 // Data members must have identifiers for names. 2146 if (!Name.isIdentifier()) { 2147 Diag(Loc, diag::err_bad_variable_name) 2148 << Name; 2149 return nullptr; 2150 } 2151 2152 IdentifierInfo *II = Name.getAsIdentifierInfo(); 2153 2154 // Member field could not be with "template" keyword. 2155 // So TemplateParameterLists should be empty in this case. 2156 if (TemplateParameterLists.size()) { 2157 TemplateParameterList* TemplateParams = TemplateParameterLists[0]; 2158 if (TemplateParams->size()) { 2159 // There is no such thing as a member field template. 2160 Diag(D.getIdentifierLoc(), diag::err_template_member) 2161 << II 2162 << SourceRange(TemplateParams->getTemplateLoc(), 2163 TemplateParams->getRAngleLoc()); 2164 } else { 2165 // There is an extraneous 'template<>' for this member. 2166 Diag(TemplateParams->getTemplateLoc(), 2167 diag::err_template_member_noparams) 2168 << II 2169 << SourceRange(TemplateParams->getTemplateLoc(), 2170 TemplateParams->getRAngleLoc()); 2171 } 2172 return nullptr; 2173 } 2174 2175 if (SS.isSet() && !SS.isInvalid()) { 2176 // The user provided a superfluous scope specifier inside a class 2177 // definition: 2178 // 2179 // class X { 2180 // int X::member; 2181 // }; 2182 if (DeclContext *DC = computeDeclContext(SS, false)) 2183 diagnoseQualifiedDeclaration(SS, DC, Name, D.getIdentifierLoc()); 2184 else 2185 Diag(D.getIdentifierLoc(), diag::err_member_qualification) 2186 << Name << SS.getRange(); 2187 2188 SS.clear(); 2189 } 2190 2191 AttributeList *MSPropertyAttr = 2192 getMSPropertyAttr(D.getDeclSpec().getAttributes().getList()); 2193 if (MSPropertyAttr) { 2194 Member = HandleMSProperty(S, cast<CXXRecordDecl>(CurContext), Loc, D, 2195 BitWidth, InitStyle, AS, MSPropertyAttr); 2196 if (!Member) 2197 return nullptr; 2198 isInstField = false; 2199 } else { 2200 Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, 2201 BitWidth, InitStyle, AS); 2202 assert(Member && "HandleField never returns null"); 2203 } 2204 } else { 2205 assert(InitStyle == ICIS_NoInit || 2206 D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_static); 2207 2208 Member = HandleDeclarator(S, D, TemplateParameterLists); 2209 if (!Member) 2210 return nullptr; 2211 2212 // Non-instance-fields can't have a bitfield. 2213 if (BitWidth) { 2214 if (Member->isInvalidDecl()) { 2215 // don't emit another diagnostic. 2216 } else if (isa<VarDecl>(Member) || isa<VarTemplateDecl>(Member)) { 2217 // C++ 9.6p3: A bit-field shall not be a static member. 2218 // "static member 'A' cannot be a bit-field" 2219 Diag(Loc, diag::err_static_not_bitfield) 2220 << Name << BitWidth->getSourceRange(); 2221 } else if (isa<TypedefDecl>(Member)) { 2222 // "typedef member 'x' cannot be a bit-field" 2223 Diag(Loc, diag::err_typedef_not_bitfield) 2224 << Name << BitWidth->getSourceRange(); 2225 } else { 2226 // A function typedef ("typedef int f(); f a;"). 2227 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 2228 Diag(Loc, diag::err_not_integral_type_bitfield) 2229 << Name << cast<ValueDecl>(Member)->getType() 2230 << BitWidth->getSourceRange(); 2231 } 2232 2233 BitWidth = nullptr; 2234 Member->setInvalidDecl(); 2235 } 2236 2237 Member->setAccess(AS); 2238 2239 // If we have declared a member function template or static data member 2240 // template, set the access of the templated declaration as well. 2241 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member)) 2242 FunTmpl->getTemplatedDecl()->setAccess(AS); 2243 else if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(Member)) 2244 VarTmpl->getTemplatedDecl()->setAccess(AS); 2245 } 2246 2247 if (VS.isOverrideSpecified()) 2248 Member->addAttr(new (Context) OverrideAttr(VS.getOverrideLoc(), Context, 0)); 2249 if (VS.isFinalSpecified()) 2250 Member->addAttr(new (Context) FinalAttr(VS.getFinalLoc(), Context, 2251 VS.isFinalSpelledSealed())); 2252 2253 if (VS.getLastLocation().isValid()) { 2254 // Update the end location of a method that has a virt-specifiers. 2255 if (CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Member)) 2256 MD->setRangeEnd(VS.getLastLocation()); 2257 } 2258 2259 CheckOverrideControl(Member); 2260 2261 assert((Name || isInstField) && "No identifier for non-field ?"); 2262 2263 if (isInstField) { 2264 FieldDecl *FD = cast<FieldDecl>(Member); 2265 FieldCollector->Add(FD); 2266 2267 if (!Diags.isIgnored(diag::warn_unused_private_field, FD->getLocation())) { 2268 // Remember all explicit private FieldDecls that have a name, no side 2269 // effects and are not part of a dependent type declaration. 2270 if (!FD->isImplicit() && FD->getDeclName() && 2271 FD->getAccess() == AS_private && 2272 !FD->hasAttr<UnusedAttr>() && 2273 !FD->getParent()->isDependentContext() && 2274 !InitializationHasSideEffects(*FD)) 2275 UnusedPrivateFields.insert(FD); 2276 } 2277 } 2278 2279 return Member; 2280 } 2281 2282 namespace { 2283 class UninitializedFieldVisitor 2284 : public EvaluatedExprVisitor<UninitializedFieldVisitor> { 2285 Sema &S; 2286 // List of Decls to generate a warning on. Also remove Decls that become 2287 // initialized. 2288 llvm::SmallPtrSetImpl<ValueDecl*> &Decls; 2289 // List of base classes of the record. Classes are removed after their 2290 // initializers. 2291 llvm::SmallPtrSetImpl<QualType> &BaseClasses; 2292 // Vector of decls to be removed from the Decl set prior to visiting the 2293 // nodes. These Decls may have been initialized in the prior initializer. 2294 llvm::SmallVector<ValueDecl*, 4> DeclsToRemove; 2295 // If non-null, add a note to the warning pointing back to the constructor. 2296 const CXXConstructorDecl *Constructor; 2297 // Variables to hold state when processing an initializer list. When 2298 // InitList is true, special case initialization of FieldDecls matching 2299 // InitListFieldDecl. 2300 bool InitList; 2301 FieldDecl *InitListFieldDecl; 2302 llvm::SmallVector<unsigned, 4> InitFieldIndex; 2303 2304 public: 2305 typedef EvaluatedExprVisitor<UninitializedFieldVisitor> Inherited; 2306 UninitializedFieldVisitor(Sema &S, 2307 llvm::SmallPtrSetImpl<ValueDecl*> &Decls, 2308 llvm::SmallPtrSetImpl<QualType> &BaseClasses) 2309 : Inherited(S.Context), S(S), Decls(Decls), BaseClasses(BaseClasses), 2310 Constructor(nullptr), InitList(false), InitListFieldDecl(nullptr) {} 2311 2312 // Returns true if the use of ME is not an uninitialized use. 2313 bool IsInitListMemberExprInitialized(MemberExpr *ME, 2314 bool CheckReferenceOnly) { 2315 llvm::SmallVector<FieldDecl*, 4> Fields; 2316 bool ReferenceField = false; 2317 while (ME) { 2318 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 2319 if (!FD) 2320 return false; 2321 Fields.push_back(FD); 2322 if (FD->getType()->isReferenceType()) 2323 ReferenceField = true; 2324 ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParenImpCasts()); 2325 } 2326 2327 // Binding a reference to an unintialized field is not an 2328 // uninitialized use. 2329 if (CheckReferenceOnly && !ReferenceField) 2330 return true; 2331 2332 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 2333 // Discard the first field since it is the field decl that is being 2334 // initialized. 2335 for (auto I = Fields.rbegin() + 1, E = Fields.rend(); I != E; ++I) { 2336 UsedFieldIndex.push_back((*I)->getFieldIndex()); 2337 } 2338 2339 for (auto UsedIter = UsedFieldIndex.begin(), 2340 UsedEnd = UsedFieldIndex.end(), 2341 OrigIter = InitFieldIndex.begin(), 2342 OrigEnd = InitFieldIndex.end(); 2343 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 2344 if (*UsedIter < *OrigIter) 2345 return true; 2346 if (*UsedIter > *OrigIter) 2347 break; 2348 } 2349 2350 return false; 2351 } 2352 2353 void HandleMemberExpr(MemberExpr *ME, bool CheckReferenceOnly, 2354 bool AddressOf) { 2355 if (isa<EnumConstantDecl>(ME->getMemberDecl())) 2356 return; 2357 2358 // FieldME is the inner-most MemberExpr that is not an anonymous struct 2359 // or union. 2360 MemberExpr *FieldME = ME; 2361 2362 bool AllPODFields = FieldME->getType().isPODType(S.Context); 2363 2364 Expr *Base = ME; 2365 while (MemberExpr *SubME = 2366 dyn_cast<MemberExpr>(Base->IgnoreParenImpCasts())) { 2367 2368 if (isa<VarDecl>(SubME->getMemberDecl())) 2369 return; 2370 2371 if (FieldDecl *FD = dyn_cast<FieldDecl>(SubME->getMemberDecl())) 2372 if (!FD->isAnonymousStructOrUnion()) 2373 FieldME = SubME; 2374 2375 if (!FieldME->getType().isPODType(S.Context)) 2376 AllPODFields = false; 2377 2378 Base = SubME->getBase(); 2379 } 2380 2381 if (!isa<CXXThisExpr>(Base->IgnoreParenImpCasts())) 2382 return; 2383 2384 if (AddressOf && AllPODFields) 2385 return; 2386 2387 ValueDecl* FoundVD = FieldME->getMemberDecl(); 2388 2389 if (ImplicitCastExpr *BaseCast = dyn_cast<ImplicitCastExpr>(Base)) { 2390 while (isa<ImplicitCastExpr>(BaseCast->getSubExpr())) { 2391 BaseCast = cast<ImplicitCastExpr>(BaseCast->getSubExpr()); 2392 } 2393 2394 if (BaseCast->getCastKind() == CK_UncheckedDerivedToBase) { 2395 QualType T = BaseCast->getType(); 2396 if (T->isPointerType() && 2397 BaseClasses.count(T->getPointeeType())) { 2398 S.Diag(FieldME->getExprLoc(), diag::warn_base_class_is_uninit) 2399 << T->getPointeeType() << FoundVD; 2400 } 2401 } 2402 } 2403 2404 if (!Decls.count(FoundVD)) 2405 return; 2406 2407 const bool IsReference = FoundVD->getType()->isReferenceType(); 2408 2409 if (InitList && !AddressOf && FoundVD == InitListFieldDecl) { 2410 // Special checking for initializer lists. 2411 if (IsInitListMemberExprInitialized(ME, CheckReferenceOnly)) { 2412 return; 2413 } 2414 } else { 2415 // Prevent double warnings on use of unbounded references. 2416 if (CheckReferenceOnly && !IsReference) 2417 return; 2418 } 2419 2420 unsigned diag = IsReference 2421 ? diag::warn_reference_field_is_uninit 2422 : diag::warn_field_is_uninit; 2423 S.Diag(FieldME->getExprLoc(), diag) << FoundVD; 2424 if (Constructor) 2425 S.Diag(Constructor->getLocation(), 2426 diag::note_uninit_in_this_constructor) 2427 << (Constructor->isDefaultConstructor() && Constructor->isImplicit()); 2428 2429 } 2430 2431 void HandleValue(Expr *E, bool AddressOf) { 2432 E = E->IgnoreParens(); 2433 2434 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 2435 HandleMemberExpr(ME, false /*CheckReferenceOnly*/, 2436 AddressOf /*AddressOf*/); 2437 return; 2438 } 2439 2440 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 2441 Visit(CO->getCond()); 2442 HandleValue(CO->getTrueExpr(), AddressOf); 2443 HandleValue(CO->getFalseExpr(), AddressOf); 2444 return; 2445 } 2446 2447 if (BinaryConditionalOperator *BCO = 2448 dyn_cast<BinaryConditionalOperator>(E)) { 2449 Visit(BCO->getCond()); 2450 HandleValue(BCO->getFalseExpr(), AddressOf); 2451 return; 2452 } 2453 2454 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 2455 HandleValue(OVE->getSourceExpr(), AddressOf); 2456 return; 2457 } 2458 2459 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 2460 switch (BO->getOpcode()) { 2461 default: 2462 break; 2463 case(BO_PtrMemD): 2464 case(BO_PtrMemI): 2465 HandleValue(BO->getLHS(), AddressOf); 2466 Visit(BO->getRHS()); 2467 return; 2468 case(BO_Comma): 2469 Visit(BO->getLHS()); 2470 HandleValue(BO->getRHS(), AddressOf); 2471 return; 2472 } 2473 } 2474 2475 Visit(E); 2476 } 2477 2478 void CheckInitListExpr(InitListExpr *ILE) { 2479 InitFieldIndex.push_back(0); 2480 for (auto Child : ILE->children()) { 2481 if (InitListExpr *SubList = dyn_cast<InitListExpr>(Child)) { 2482 CheckInitListExpr(SubList); 2483 } else { 2484 Visit(Child); 2485 } 2486 ++InitFieldIndex.back(); 2487 } 2488 InitFieldIndex.pop_back(); 2489 } 2490 2491 void CheckInitializer(Expr *E, const CXXConstructorDecl *FieldConstructor, 2492 FieldDecl *Field, const Type *BaseClass) { 2493 // Remove Decls that may have been initialized in the previous 2494 // initializer. 2495 for (ValueDecl* VD : DeclsToRemove) 2496 Decls.erase(VD); 2497 DeclsToRemove.clear(); 2498 2499 Constructor = FieldConstructor; 2500 InitListExpr *ILE = dyn_cast<InitListExpr>(E); 2501 2502 if (ILE && Field) { 2503 InitList = true; 2504 InitListFieldDecl = Field; 2505 InitFieldIndex.clear(); 2506 CheckInitListExpr(ILE); 2507 } else { 2508 InitList = false; 2509 Visit(E); 2510 } 2511 2512 if (Field) 2513 Decls.erase(Field); 2514 if (BaseClass) 2515 BaseClasses.erase(BaseClass->getCanonicalTypeInternal()); 2516 } 2517 2518 void VisitMemberExpr(MemberExpr *ME) { 2519 // All uses of unbounded reference fields will warn. 2520 HandleMemberExpr(ME, true /*CheckReferenceOnly*/, false /*AddressOf*/); 2521 } 2522 2523 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 2524 if (E->getCastKind() == CK_LValueToRValue) { 2525 HandleValue(E->getSubExpr(), false /*AddressOf*/); 2526 return; 2527 } 2528 2529 Inherited::VisitImplicitCastExpr(E); 2530 } 2531 2532 void VisitCXXConstructExpr(CXXConstructExpr *E) { 2533 if (E->getConstructor()->isCopyConstructor()) { 2534 Expr *ArgExpr = E->getArg(0); 2535 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 2536 if (ILE->getNumInits() == 1) 2537 ArgExpr = ILE->getInit(0); 2538 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 2539 if (ICE->getCastKind() == CK_NoOp) 2540 ArgExpr = ICE->getSubExpr(); 2541 HandleValue(ArgExpr, false /*AddressOf*/); 2542 return; 2543 } 2544 Inherited::VisitCXXConstructExpr(E); 2545 } 2546 2547 void VisitCXXMemberCallExpr(CXXMemberCallExpr *E) { 2548 Expr *Callee = E->getCallee(); 2549 if (isa<MemberExpr>(Callee)) { 2550 HandleValue(Callee, false /*AddressOf*/); 2551 for (auto Arg : E->arguments()) 2552 Visit(Arg); 2553 return; 2554 } 2555 2556 Inherited::VisitCXXMemberCallExpr(E); 2557 } 2558 2559 void VisitCallExpr(CallExpr *E) { 2560 // Treat std::move as a use. 2561 if (E->getNumArgs() == 1) { 2562 if (FunctionDecl *FD = E->getDirectCallee()) { 2563 if (FD->isInStdNamespace() && FD->getIdentifier() && 2564 FD->getIdentifier()->isStr("move")) { 2565 HandleValue(E->getArg(0), false /*AddressOf*/); 2566 return; 2567 } 2568 } 2569 } 2570 2571 Inherited::VisitCallExpr(E); 2572 } 2573 2574 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 2575 Expr *Callee = E->getCallee(); 2576 2577 if (isa<UnresolvedLookupExpr>(Callee)) 2578 return Inherited::VisitCXXOperatorCallExpr(E); 2579 2580 Visit(Callee); 2581 for (auto Arg : E->arguments()) 2582 HandleValue(Arg->IgnoreParenImpCasts(), false /*AddressOf*/); 2583 } 2584 2585 void VisitBinaryOperator(BinaryOperator *E) { 2586 // If a field assignment is detected, remove the field from the 2587 // uninitiailized field set. 2588 if (E->getOpcode() == BO_Assign) 2589 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getLHS())) 2590 if (FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl())) 2591 if (!FD->getType()->isReferenceType()) 2592 DeclsToRemove.push_back(FD); 2593 2594 if (E->isCompoundAssignmentOp()) { 2595 HandleValue(E->getLHS(), false /*AddressOf*/); 2596 Visit(E->getRHS()); 2597 return; 2598 } 2599 2600 Inherited::VisitBinaryOperator(E); 2601 } 2602 2603 void VisitUnaryOperator(UnaryOperator *E) { 2604 if (E->isIncrementDecrementOp()) { 2605 HandleValue(E->getSubExpr(), false /*AddressOf*/); 2606 return; 2607 } 2608 if (E->getOpcode() == UO_AddrOf) { 2609 if (MemberExpr *ME = dyn_cast<MemberExpr>(E->getSubExpr())) { 2610 HandleValue(ME->getBase(), true /*AddressOf*/); 2611 return; 2612 } 2613 } 2614 2615 Inherited::VisitUnaryOperator(E); 2616 } 2617 }; 2618 2619 // Diagnose value-uses of fields to initialize themselves, e.g. 2620 // foo(foo) 2621 // where foo is not also a parameter to the constructor. 2622 // Also diagnose across field uninitialized use such as 2623 // x(y), y(x) 2624 // TODO: implement -Wuninitialized and fold this into that framework. 2625 static void DiagnoseUninitializedFields( 2626 Sema &SemaRef, const CXXConstructorDecl *Constructor) { 2627 2628 if (SemaRef.getDiagnostics().isIgnored(diag::warn_field_is_uninit, 2629 Constructor->getLocation())) { 2630 return; 2631 } 2632 2633 if (Constructor->isInvalidDecl()) 2634 return; 2635 2636 const CXXRecordDecl *RD = Constructor->getParent(); 2637 2638 if (RD->getDescribedClassTemplate()) 2639 return; 2640 2641 // Holds fields that are uninitialized. 2642 llvm::SmallPtrSet<ValueDecl*, 4> UninitializedFields; 2643 2644 // At the beginning, all fields are uninitialized. 2645 for (auto *I : RD->decls()) { 2646 if (auto *FD = dyn_cast<FieldDecl>(I)) { 2647 UninitializedFields.insert(FD); 2648 } else if (auto *IFD = dyn_cast<IndirectFieldDecl>(I)) { 2649 UninitializedFields.insert(IFD->getAnonField()); 2650 } 2651 } 2652 2653 llvm::SmallPtrSet<QualType, 4> UninitializedBaseClasses; 2654 for (auto I : RD->bases()) 2655 UninitializedBaseClasses.insert(I.getType().getCanonicalType()); 2656 2657 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 2658 return; 2659 2660 UninitializedFieldVisitor UninitializedChecker(SemaRef, 2661 UninitializedFields, 2662 UninitializedBaseClasses); 2663 2664 for (const auto *FieldInit : Constructor->inits()) { 2665 if (UninitializedFields.empty() && UninitializedBaseClasses.empty()) 2666 break; 2667 2668 Expr *InitExpr = FieldInit->getInit(); 2669 if (!InitExpr) 2670 continue; 2671 2672 if (CXXDefaultInitExpr *Default = 2673 dyn_cast<CXXDefaultInitExpr>(InitExpr)) { 2674 InitExpr = Default->getExpr(); 2675 if (!InitExpr) 2676 continue; 2677 // In class initializers will point to the constructor. 2678 UninitializedChecker.CheckInitializer(InitExpr, Constructor, 2679 FieldInit->getAnyMember(), 2680 FieldInit->getBaseClass()); 2681 } else { 2682 UninitializedChecker.CheckInitializer(InitExpr, nullptr, 2683 FieldInit->getAnyMember(), 2684 FieldInit->getBaseClass()); 2685 } 2686 } 2687 } 2688 } // namespace 2689 2690 /// \brief Enter a new C++ default initializer scope. After calling this, the 2691 /// caller must call \ref ActOnFinishCXXInClassMemberInitializer, even if 2692 /// parsing or instantiating the initializer failed. 2693 void Sema::ActOnStartCXXInClassMemberInitializer() { 2694 // Create a synthetic function scope to represent the call to the constructor 2695 // that notionally surrounds a use of this initializer. 2696 PushFunctionScope(); 2697 } 2698 2699 /// \brief This is invoked after parsing an in-class initializer for a 2700 /// non-static C++ class member, and after instantiating an in-class initializer 2701 /// in a class template. Such actions are deferred until the class is complete. 2702 void Sema::ActOnFinishCXXInClassMemberInitializer(Decl *D, 2703 SourceLocation InitLoc, 2704 Expr *InitExpr) { 2705 // Pop the notional constructor scope we created earlier. 2706 PopFunctionScopeInfo(nullptr, D); 2707 2708 FieldDecl *FD = dyn_cast<FieldDecl>(D); 2709 assert((isa<MSPropertyDecl>(D) || FD->getInClassInitStyle() != ICIS_NoInit) && 2710 "must set init style when field is created"); 2711 2712 if (!InitExpr) { 2713 D->setInvalidDecl(); 2714 if (FD) 2715 FD->removeInClassInitializer(); 2716 return; 2717 } 2718 2719 if (DiagnoseUnexpandedParameterPack(InitExpr, UPPC_Initializer)) { 2720 FD->setInvalidDecl(); 2721 FD->removeInClassInitializer(); 2722 return; 2723 } 2724 2725 ExprResult Init = InitExpr; 2726 if (!FD->getType()->isDependentType() && !InitExpr->isTypeDependent()) { 2727 InitializedEntity Entity = InitializedEntity::InitializeMember(FD); 2728 InitializationKind Kind = FD->getInClassInitStyle() == ICIS_ListInit 2729 ? InitializationKind::CreateDirectList(InitExpr->getLocStart()) 2730 : InitializationKind::CreateCopy(InitExpr->getLocStart(), InitLoc); 2731 InitializationSequence Seq(*this, Entity, Kind, InitExpr); 2732 Init = Seq.Perform(*this, Entity, Kind, InitExpr); 2733 if (Init.isInvalid()) { 2734 FD->setInvalidDecl(); 2735 return; 2736 } 2737 } 2738 2739 // C++11 [class.base.init]p7: 2740 // The initialization of each base and member constitutes a 2741 // full-expression. 2742 Init = ActOnFinishFullExpr(Init.get(), InitLoc); 2743 if (Init.isInvalid()) { 2744 FD->setInvalidDecl(); 2745 return; 2746 } 2747 2748 InitExpr = Init.get(); 2749 2750 FD->setInClassInitializer(InitExpr); 2751 } 2752 2753 /// \brief Find the direct and/or virtual base specifiers that 2754 /// correspond to the given base type, for use in base initialization 2755 /// within a constructor. 2756 static bool FindBaseInitializer(Sema &SemaRef, 2757 CXXRecordDecl *ClassDecl, 2758 QualType BaseType, 2759 const CXXBaseSpecifier *&DirectBaseSpec, 2760 const CXXBaseSpecifier *&VirtualBaseSpec) { 2761 // First, check for a direct base class. 2762 DirectBaseSpec = nullptr; 2763 for (const auto &Base : ClassDecl->bases()) { 2764 if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) { 2765 // We found a direct base of this type. That's what we're 2766 // initializing. 2767 DirectBaseSpec = &Base; 2768 break; 2769 } 2770 } 2771 2772 // Check for a virtual base class. 2773 // FIXME: We might be able to short-circuit this if we know in advance that 2774 // there are no virtual bases. 2775 VirtualBaseSpec = nullptr; 2776 if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) { 2777 // We haven't found a base yet; search the class hierarchy for a 2778 // virtual base class. 2779 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, 2780 /*DetectVirtual=*/false); 2781 if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl), 2782 BaseType, Paths)) { 2783 for (CXXBasePaths::paths_iterator Path = Paths.begin(); 2784 Path != Paths.end(); ++Path) { 2785 if (Path->back().Base->isVirtual()) { 2786 VirtualBaseSpec = Path->back().Base; 2787 break; 2788 } 2789 } 2790 } 2791 } 2792 2793 return DirectBaseSpec || VirtualBaseSpec; 2794 } 2795 2796 /// \brief Handle a C++ member initializer using braced-init-list syntax. 2797 MemInitResult 2798 Sema::ActOnMemInitializer(Decl *ConstructorD, 2799 Scope *S, 2800 CXXScopeSpec &SS, 2801 IdentifierInfo *MemberOrBase, 2802 ParsedType TemplateTypeTy, 2803 const DeclSpec &DS, 2804 SourceLocation IdLoc, 2805 Expr *InitList, 2806 SourceLocation EllipsisLoc) { 2807 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 2808 DS, IdLoc, InitList, 2809 EllipsisLoc); 2810 } 2811 2812 /// \brief Handle a C++ member initializer using parentheses syntax. 2813 MemInitResult 2814 Sema::ActOnMemInitializer(Decl *ConstructorD, 2815 Scope *S, 2816 CXXScopeSpec &SS, 2817 IdentifierInfo *MemberOrBase, 2818 ParsedType TemplateTypeTy, 2819 const DeclSpec &DS, 2820 SourceLocation IdLoc, 2821 SourceLocation LParenLoc, 2822 ArrayRef<Expr *> Args, 2823 SourceLocation RParenLoc, 2824 SourceLocation EllipsisLoc) { 2825 Expr *List = new (Context) ParenListExpr(Context, LParenLoc, 2826 Args, RParenLoc); 2827 return BuildMemInitializer(ConstructorD, S, SS, MemberOrBase, TemplateTypeTy, 2828 DS, IdLoc, List, EllipsisLoc); 2829 } 2830 2831 namespace { 2832 2833 // Callback to only accept typo corrections that can be a valid C++ member 2834 // intializer: either a non-static field member or a base class. 2835 class MemInitializerValidatorCCC : public CorrectionCandidateCallback { 2836 public: 2837 explicit MemInitializerValidatorCCC(CXXRecordDecl *ClassDecl) 2838 : ClassDecl(ClassDecl) {} 2839 2840 bool ValidateCandidate(const TypoCorrection &candidate) override { 2841 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 2842 if (FieldDecl *Member = dyn_cast<FieldDecl>(ND)) 2843 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl); 2844 return isa<TypeDecl>(ND); 2845 } 2846 return false; 2847 } 2848 2849 private: 2850 CXXRecordDecl *ClassDecl; 2851 }; 2852 2853 } 2854 2855 /// \brief Handle a C++ member initializer. 2856 MemInitResult 2857 Sema::BuildMemInitializer(Decl *ConstructorD, 2858 Scope *S, 2859 CXXScopeSpec &SS, 2860 IdentifierInfo *MemberOrBase, 2861 ParsedType TemplateTypeTy, 2862 const DeclSpec &DS, 2863 SourceLocation IdLoc, 2864 Expr *Init, 2865 SourceLocation EllipsisLoc) { 2866 ExprResult Res = CorrectDelayedTyposInExpr(Init); 2867 if (!Res.isUsable()) 2868 return true; 2869 Init = Res.get(); 2870 2871 if (!ConstructorD) 2872 return true; 2873 2874 AdjustDeclIfTemplate(ConstructorD); 2875 2876 CXXConstructorDecl *Constructor 2877 = dyn_cast<CXXConstructorDecl>(ConstructorD); 2878 if (!Constructor) { 2879 // The user wrote a constructor initializer on a function that is 2880 // not a C++ constructor. Ignore the error for now, because we may 2881 // have more member initializers coming; we'll diagnose it just 2882 // once in ActOnMemInitializers. 2883 return true; 2884 } 2885 2886 CXXRecordDecl *ClassDecl = Constructor->getParent(); 2887 2888 // C++ [class.base.init]p2: 2889 // Names in a mem-initializer-id are looked up in the scope of the 2890 // constructor's class and, if not found in that scope, are looked 2891 // up in the scope containing the constructor's definition. 2892 // [Note: if the constructor's class contains a member with the 2893 // same name as a direct or virtual base class of the class, a 2894 // mem-initializer-id naming the member or base class and composed 2895 // of a single identifier refers to the class member. A 2896 // mem-initializer-id for the hidden base class may be specified 2897 // using a qualified name. ] 2898 if (!SS.getScopeRep() && !TemplateTypeTy) { 2899 // Look for a member, first. 2900 DeclContext::lookup_result Result = ClassDecl->lookup(MemberOrBase); 2901 if (!Result.empty()) { 2902 ValueDecl *Member; 2903 if ((Member = dyn_cast<FieldDecl>(Result.front())) || 2904 (Member = dyn_cast<IndirectFieldDecl>(Result.front()))) { 2905 if (EllipsisLoc.isValid()) 2906 Diag(EllipsisLoc, diag::err_pack_expansion_member_init) 2907 << MemberOrBase 2908 << SourceRange(IdLoc, Init->getSourceRange().getEnd()); 2909 2910 return BuildMemberInitializer(Member, Init, IdLoc); 2911 } 2912 } 2913 } 2914 // It didn't name a member, so see if it names a class. 2915 QualType BaseType; 2916 TypeSourceInfo *TInfo = nullptr; 2917 2918 if (TemplateTypeTy) { 2919 BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo); 2920 } else if (DS.getTypeSpecType() == TST_decltype) { 2921 BaseType = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); 2922 } else { 2923 LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName); 2924 LookupParsedName(R, S, &SS); 2925 2926 TypeDecl *TyD = R.getAsSingle<TypeDecl>(); 2927 if (!TyD) { 2928 if (R.isAmbiguous()) return true; 2929 2930 // We don't want access-control diagnostics here. 2931 R.suppressDiagnostics(); 2932 2933 if (SS.isSet() && isDependentScopeSpecifier(SS)) { 2934 bool NotUnknownSpecialization = false; 2935 DeclContext *DC = computeDeclContext(SS, false); 2936 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC)) 2937 NotUnknownSpecialization = !Record->hasAnyDependentBases(); 2938 2939 if (!NotUnknownSpecialization) { 2940 // When the scope specifier can refer to a member of an unknown 2941 // specialization, we take it as a type name. 2942 BaseType = CheckTypenameType(ETK_None, SourceLocation(), 2943 SS.getWithLocInContext(Context), 2944 *MemberOrBase, IdLoc); 2945 if (BaseType.isNull()) 2946 return true; 2947 2948 R.clear(); 2949 R.setLookupName(MemberOrBase); 2950 } 2951 } 2952 2953 // If no results were found, try to correct typos. 2954 TypoCorrection Corr; 2955 if (R.empty() && BaseType.isNull() && 2956 (Corr = CorrectTypo( 2957 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 2958 llvm::make_unique<MemInitializerValidatorCCC>(ClassDecl), 2959 CTK_ErrorRecovery, ClassDecl))) { 2960 if (FieldDecl *Member = Corr.getCorrectionDeclAs<FieldDecl>()) { 2961 // We have found a non-static data member with a similar 2962 // name to what was typed; complain and initialize that 2963 // member. 2964 diagnoseTypo(Corr, 2965 PDiag(diag::err_mem_init_not_member_or_class_suggest) 2966 << MemberOrBase << true); 2967 return BuildMemberInitializer(Member, Init, IdLoc); 2968 } else if (TypeDecl *Type = Corr.getCorrectionDeclAs<TypeDecl>()) { 2969 const CXXBaseSpecifier *DirectBaseSpec; 2970 const CXXBaseSpecifier *VirtualBaseSpec; 2971 if (FindBaseInitializer(*this, ClassDecl, 2972 Context.getTypeDeclType(Type), 2973 DirectBaseSpec, VirtualBaseSpec)) { 2974 // We have found a direct or virtual base class with a 2975 // similar name to what was typed; complain and initialize 2976 // that base class. 2977 diagnoseTypo(Corr, 2978 PDiag(diag::err_mem_init_not_member_or_class_suggest) 2979 << MemberOrBase << false, 2980 PDiag() /*Suppress note, we provide our own.*/); 2981 2982 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec ? DirectBaseSpec 2983 : VirtualBaseSpec; 2984 Diag(BaseSpec->getLocStart(), 2985 diag::note_base_class_specified_here) 2986 << BaseSpec->getType() 2987 << BaseSpec->getSourceRange(); 2988 2989 TyD = Type; 2990 } 2991 } 2992 } 2993 2994 if (!TyD && BaseType.isNull()) { 2995 Diag(IdLoc, diag::err_mem_init_not_member_or_class) 2996 << MemberOrBase << SourceRange(IdLoc,Init->getSourceRange().getEnd()); 2997 return true; 2998 } 2999 } 3000 3001 if (BaseType.isNull()) { 3002 BaseType = Context.getTypeDeclType(TyD); 3003 MarkAnyDeclReferenced(TyD->getLocation(), TyD, /*OdrUse=*/false); 3004 if (SS.isSet()) 3005 // FIXME: preserve source range information 3006 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(), 3007 BaseType); 3008 } 3009 } 3010 3011 if (!TInfo) 3012 TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc); 3013 3014 return BuildBaseInitializer(BaseType, TInfo, Init, ClassDecl, EllipsisLoc); 3015 } 3016 3017 /// Checks a member initializer expression for cases where reference (or 3018 /// pointer) members are bound to by-value parameters (or their addresses). 3019 static void CheckForDanglingReferenceOrPointer(Sema &S, ValueDecl *Member, 3020 Expr *Init, 3021 SourceLocation IdLoc) { 3022 QualType MemberTy = Member->getType(); 3023 3024 // We only handle pointers and references currently. 3025 // FIXME: Would this be relevant for ObjC object pointers? Or block pointers? 3026 if (!MemberTy->isReferenceType() && !MemberTy->isPointerType()) 3027 return; 3028 3029 const bool IsPointer = MemberTy->isPointerType(); 3030 if (IsPointer) { 3031 if (const UnaryOperator *Op 3032 = dyn_cast<UnaryOperator>(Init->IgnoreParenImpCasts())) { 3033 // The only case we're worried about with pointers requires taking the 3034 // address. 3035 if (Op->getOpcode() != UO_AddrOf) 3036 return; 3037 3038 Init = Op->getSubExpr(); 3039 } else { 3040 // We only handle address-of expression initializers for pointers. 3041 return; 3042 } 3043 } 3044 3045 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Init->IgnoreParens())) { 3046 // We only warn when referring to a non-reference parameter declaration. 3047 const ParmVarDecl *Parameter = dyn_cast<ParmVarDecl>(DRE->getDecl()); 3048 if (!Parameter || Parameter->getType()->isReferenceType()) 3049 return; 3050 3051 S.Diag(Init->getExprLoc(), 3052 IsPointer ? diag::warn_init_ptr_member_to_parameter_addr 3053 : diag::warn_bind_ref_member_to_parameter) 3054 << Member << Parameter << Init->getSourceRange(); 3055 } else { 3056 // Other initializers are fine. 3057 return; 3058 } 3059 3060 S.Diag(Member->getLocation(), diag::note_ref_or_ptr_member_declared_here) 3061 << (unsigned)IsPointer; 3062 } 3063 3064 MemInitResult 3065 Sema::BuildMemberInitializer(ValueDecl *Member, Expr *Init, 3066 SourceLocation IdLoc) { 3067 FieldDecl *DirectMember = dyn_cast<FieldDecl>(Member); 3068 IndirectFieldDecl *IndirectMember = dyn_cast<IndirectFieldDecl>(Member); 3069 assert((DirectMember || IndirectMember) && 3070 "Member must be a FieldDecl or IndirectFieldDecl"); 3071 3072 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 3073 return true; 3074 3075 if (Member->isInvalidDecl()) 3076 return true; 3077 3078 MultiExprArg Args; 3079 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3080 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3081 } else if (InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) { 3082 Args = MultiExprArg(InitList->getInits(), InitList->getNumInits()); 3083 } else { 3084 // Template instantiation doesn't reconstruct ParenListExprs for us. 3085 Args = Init; 3086 } 3087 3088 SourceRange InitRange = Init->getSourceRange(); 3089 3090 if (Member->getType()->isDependentType() || Init->isTypeDependent()) { 3091 // Can't check initialization for a member of dependent type or when 3092 // any of the arguments are type-dependent expressions. 3093 DiscardCleanupsInEvaluationContext(); 3094 } else { 3095 bool InitList = false; 3096 if (isa<InitListExpr>(Init)) { 3097 InitList = true; 3098 Args = Init; 3099 } 3100 3101 // Initialize the member. 3102 InitializedEntity MemberEntity = 3103 DirectMember ? InitializedEntity::InitializeMember(DirectMember, nullptr) 3104 : InitializedEntity::InitializeMember(IndirectMember, 3105 nullptr); 3106 InitializationKind Kind = 3107 InitList ? InitializationKind::CreateDirectList(IdLoc) 3108 : InitializationKind::CreateDirect(IdLoc, InitRange.getBegin(), 3109 InitRange.getEnd()); 3110 3111 InitializationSequence InitSeq(*this, MemberEntity, Kind, Args); 3112 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args, 3113 nullptr); 3114 if (MemberInit.isInvalid()) 3115 return true; 3116 3117 CheckForDanglingReferenceOrPointer(*this, Member, MemberInit.get(), IdLoc); 3118 3119 // C++11 [class.base.init]p7: 3120 // The initialization of each base and member constitutes a 3121 // full-expression. 3122 MemberInit = ActOnFinishFullExpr(MemberInit.get(), InitRange.getBegin()); 3123 if (MemberInit.isInvalid()) 3124 return true; 3125 3126 Init = MemberInit.get(); 3127 } 3128 3129 if (DirectMember) { 3130 return new (Context) CXXCtorInitializer(Context, DirectMember, IdLoc, 3131 InitRange.getBegin(), Init, 3132 InitRange.getEnd()); 3133 } else { 3134 return new (Context) CXXCtorInitializer(Context, IndirectMember, IdLoc, 3135 InitRange.getBegin(), Init, 3136 InitRange.getEnd()); 3137 } 3138 } 3139 3140 MemInitResult 3141 Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init, 3142 CXXRecordDecl *ClassDecl) { 3143 SourceLocation NameLoc = TInfo->getTypeLoc().getLocalSourceRange().getBegin(); 3144 if (!LangOpts.CPlusPlus11) 3145 return Diag(NameLoc, diag::err_delegating_ctor) 3146 << TInfo->getTypeLoc().getLocalSourceRange(); 3147 Diag(NameLoc, diag::warn_cxx98_compat_delegating_ctor); 3148 3149 bool InitList = true; 3150 MultiExprArg Args = Init; 3151 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3152 InitList = false; 3153 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3154 } 3155 3156 SourceRange InitRange = Init->getSourceRange(); 3157 // Initialize the object. 3158 InitializedEntity DelegationEntity = InitializedEntity::InitializeDelegation( 3159 QualType(ClassDecl->getTypeForDecl(), 0)); 3160 InitializationKind Kind = 3161 InitList ? InitializationKind::CreateDirectList(NameLoc) 3162 : InitializationKind::CreateDirect(NameLoc, InitRange.getBegin(), 3163 InitRange.getEnd()); 3164 InitializationSequence InitSeq(*this, DelegationEntity, Kind, Args); 3165 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind, 3166 Args, nullptr); 3167 if (DelegationInit.isInvalid()) 3168 return true; 3169 3170 assert(cast<CXXConstructExpr>(DelegationInit.get())->getConstructor() && 3171 "Delegating constructor with no target?"); 3172 3173 // C++11 [class.base.init]p7: 3174 // The initialization of each base and member constitutes a 3175 // full-expression. 3176 DelegationInit = ActOnFinishFullExpr(DelegationInit.get(), 3177 InitRange.getBegin()); 3178 if (DelegationInit.isInvalid()) 3179 return true; 3180 3181 // If we are in a dependent context, template instantiation will 3182 // perform this type-checking again. Just save the arguments that we 3183 // received in a ParenListExpr. 3184 // FIXME: This isn't quite ideal, since our ASTs don't capture all 3185 // of the information that we have about the base 3186 // initializer. However, deconstructing the ASTs is a dicey process, 3187 // and this approach is far more likely to get the corner cases right. 3188 if (CurContext->isDependentContext()) 3189 DelegationInit = Init; 3190 3191 return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(), 3192 DelegationInit.getAs<Expr>(), 3193 InitRange.getEnd()); 3194 } 3195 3196 MemInitResult 3197 Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, 3198 Expr *Init, CXXRecordDecl *ClassDecl, 3199 SourceLocation EllipsisLoc) { 3200 SourceLocation BaseLoc 3201 = BaseTInfo->getTypeLoc().getLocalSourceRange().getBegin(); 3202 3203 if (!BaseType->isDependentType() && !BaseType->isRecordType()) 3204 return Diag(BaseLoc, diag::err_base_init_does_not_name_class) 3205 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3206 3207 // C++ [class.base.init]p2: 3208 // [...] Unless the mem-initializer-id names a nonstatic data 3209 // member of the constructor's class or a direct or virtual base 3210 // of that class, the mem-initializer is ill-formed. A 3211 // mem-initializer-list can initialize a base class using any 3212 // name that denotes that base class type. 3213 bool Dependent = BaseType->isDependentType() || Init->isTypeDependent(); 3214 3215 SourceRange InitRange = Init->getSourceRange(); 3216 if (EllipsisLoc.isValid()) { 3217 // This is a pack expansion. 3218 if (!BaseType->containsUnexpandedParameterPack()) { 3219 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 3220 << SourceRange(BaseLoc, InitRange.getEnd()); 3221 3222 EllipsisLoc = SourceLocation(); 3223 } 3224 } else { 3225 // Check for any unexpanded parameter packs. 3226 if (DiagnoseUnexpandedParameterPack(BaseLoc, BaseTInfo, UPPC_Initializer)) 3227 return true; 3228 3229 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) 3230 return true; 3231 } 3232 3233 // Check for direct and virtual base classes. 3234 const CXXBaseSpecifier *DirectBaseSpec = nullptr; 3235 const CXXBaseSpecifier *VirtualBaseSpec = nullptr; 3236 if (!Dependent) { 3237 if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0), 3238 BaseType)) 3239 return BuildDelegatingInitializer(BaseTInfo, Init, ClassDecl); 3240 3241 FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec, 3242 VirtualBaseSpec); 3243 3244 // C++ [base.class.init]p2: 3245 // Unless the mem-initializer-id names a nonstatic data member of the 3246 // constructor's class or a direct or virtual base of that class, the 3247 // mem-initializer is ill-formed. 3248 if (!DirectBaseSpec && !VirtualBaseSpec) { 3249 // If the class has any dependent bases, then it's possible that 3250 // one of those types will resolve to the same type as 3251 // BaseType. Therefore, just treat this as a dependent base 3252 // class initialization. FIXME: Should we try to check the 3253 // initialization anyway? It seems odd. 3254 if (ClassDecl->hasAnyDependentBases()) 3255 Dependent = true; 3256 else 3257 return Diag(BaseLoc, diag::err_not_direct_base_or_virtual) 3258 << BaseType << Context.getTypeDeclType(ClassDecl) 3259 << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3260 } 3261 } 3262 3263 if (Dependent) { 3264 DiscardCleanupsInEvaluationContext(); 3265 3266 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 3267 /*IsVirtual=*/false, 3268 InitRange.getBegin(), Init, 3269 InitRange.getEnd(), EllipsisLoc); 3270 } 3271 3272 // C++ [base.class.init]p2: 3273 // If a mem-initializer-id is ambiguous because it designates both 3274 // a direct non-virtual base class and an inherited virtual base 3275 // class, the mem-initializer is ill-formed. 3276 if (DirectBaseSpec && VirtualBaseSpec) 3277 return Diag(BaseLoc, diag::err_base_init_direct_and_virtual) 3278 << BaseType << BaseTInfo->getTypeLoc().getLocalSourceRange(); 3279 3280 const CXXBaseSpecifier *BaseSpec = DirectBaseSpec; 3281 if (!BaseSpec) 3282 BaseSpec = VirtualBaseSpec; 3283 3284 // Initialize the base. 3285 bool InitList = true; 3286 MultiExprArg Args = Init; 3287 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) { 3288 InitList = false; 3289 Args = MultiExprArg(ParenList->getExprs(), ParenList->getNumExprs()); 3290 } 3291 3292 InitializedEntity BaseEntity = 3293 InitializedEntity::InitializeBase(Context, BaseSpec, VirtualBaseSpec); 3294 InitializationKind Kind = 3295 InitList ? InitializationKind::CreateDirectList(BaseLoc) 3296 : InitializationKind::CreateDirect(BaseLoc, InitRange.getBegin(), 3297 InitRange.getEnd()); 3298 InitializationSequence InitSeq(*this, BaseEntity, Kind, Args); 3299 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr); 3300 if (BaseInit.isInvalid()) 3301 return true; 3302 3303 // C++11 [class.base.init]p7: 3304 // The initialization of each base and member constitutes a 3305 // full-expression. 3306 BaseInit = ActOnFinishFullExpr(BaseInit.get(), InitRange.getBegin()); 3307 if (BaseInit.isInvalid()) 3308 return true; 3309 3310 // If we are in a dependent context, template instantiation will 3311 // perform this type-checking again. Just save the arguments that we 3312 // received in a ParenListExpr. 3313 // FIXME: This isn't quite ideal, since our ASTs don't capture all 3314 // of the information that we have about the base 3315 // initializer. However, deconstructing the ASTs is a dicey process, 3316 // and this approach is far more likely to get the corner cases right. 3317 if (CurContext->isDependentContext()) 3318 BaseInit = Init; 3319 3320 return new (Context) CXXCtorInitializer(Context, BaseTInfo, 3321 BaseSpec->isVirtual(), 3322 InitRange.getBegin(), 3323 BaseInit.getAs<Expr>(), 3324 InitRange.getEnd(), EllipsisLoc); 3325 } 3326 3327 // Create a static_cast\<T&&>(expr). 3328 static Expr *CastForMoving(Sema &SemaRef, Expr *E, QualType T = QualType()) { 3329 if (T.isNull()) T = E->getType(); 3330 QualType TargetType = SemaRef.BuildReferenceType( 3331 T, /*SpelledAsLValue*/false, SourceLocation(), DeclarationName()); 3332 SourceLocation ExprLoc = E->getLocStart(); 3333 TypeSourceInfo *TargetLoc = SemaRef.Context.getTrivialTypeSourceInfo( 3334 TargetType, ExprLoc); 3335 3336 return SemaRef.BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E, 3337 SourceRange(ExprLoc, ExprLoc), 3338 E->getSourceRange()).get(); 3339 } 3340 3341 /// ImplicitInitializerKind - How an implicit base or member initializer should 3342 /// initialize its base or member. 3343 enum ImplicitInitializerKind { 3344 IIK_Default, 3345 IIK_Copy, 3346 IIK_Move, 3347 IIK_Inherit 3348 }; 3349 3350 static bool 3351 BuildImplicitBaseInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 3352 ImplicitInitializerKind ImplicitInitKind, 3353 CXXBaseSpecifier *BaseSpec, 3354 bool IsInheritedVirtualBase, 3355 CXXCtorInitializer *&CXXBaseInit) { 3356 InitializedEntity InitEntity 3357 = InitializedEntity::InitializeBase(SemaRef.Context, BaseSpec, 3358 IsInheritedVirtualBase); 3359 3360 ExprResult BaseInit; 3361 3362 switch (ImplicitInitKind) { 3363 case IIK_Inherit: { 3364 const CXXRecordDecl *Inherited = 3365 Constructor->getInheritedConstructor()->getParent(); 3366 const CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 3367 if (Base && Inherited->getCanonicalDecl() == Base->getCanonicalDecl()) { 3368 // C++11 [class.inhctor]p8: 3369 // Each expression in the expression-list is of the form 3370 // static_cast<T&&>(p), where p is the name of the corresponding 3371 // constructor parameter and T is the declared type of p. 3372 SmallVector<Expr*, 16> Args; 3373 for (unsigned I = 0, E = Constructor->getNumParams(); I != E; ++I) { 3374 ParmVarDecl *PD = Constructor->getParamDecl(I); 3375 ExprResult ArgExpr = 3376 SemaRef.BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(), 3377 VK_LValue, SourceLocation()); 3378 if (ArgExpr.isInvalid()) 3379 return true; 3380 Args.push_back(CastForMoving(SemaRef, ArgExpr.get(), PD->getType())); 3381 } 3382 3383 InitializationKind InitKind = InitializationKind::CreateDirect( 3384 Constructor->getLocation(), SourceLocation(), SourceLocation()); 3385 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, Args); 3386 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, Args); 3387 break; 3388 } 3389 } 3390 // Fall through. 3391 case IIK_Default: { 3392 InitializationKind InitKind 3393 = InitializationKind::CreateDefault(Constructor->getLocation()); 3394 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3395 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3396 break; 3397 } 3398 3399 case IIK_Move: 3400 case IIK_Copy: { 3401 bool Moving = ImplicitInitKind == IIK_Move; 3402 ParmVarDecl *Param = Constructor->getParamDecl(0); 3403 QualType ParamType = Param->getType().getNonReferenceType(); 3404 3405 Expr *CopyCtorArg = 3406 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 3407 SourceLocation(), Param, false, 3408 Constructor->getLocation(), ParamType, 3409 VK_LValue, nullptr); 3410 3411 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(CopyCtorArg)); 3412 3413 // Cast to the base class to avoid ambiguities. 3414 QualType ArgTy = 3415 SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(), 3416 ParamType.getQualifiers()); 3417 3418 if (Moving) { 3419 CopyCtorArg = CastForMoving(SemaRef, CopyCtorArg); 3420 } 3421 3422 CXXCastPath BasePath; 3423 BasePath.push_back(BaseSpec); 3424 CopyCtorArg = SemaRef.ImpCastExprToType(CopyCtorArg, ArgTy, 3425 CK_UncheckedDerivedToBase, 3426 Moving ? VK_XValue : VK_LValue, 3427 &BasePath).get(); 3428 3429 InitializationKind InitKind 3430 = InitializationKind::CreateDirect(Constructor->getLocation(), 3431 SourceLocation(), SourceLocation()); 3432 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, CopyCtorArg); 3433 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg); 3434 break; 3435 } 3436 } 3437 3438 BaseInit = SemaRef.MaybeCreateExprWithCleanups(BaseInit); 3439 if (BaseInit.isInvalid()) 3440 return true; 3441 3442 CXXBaseInit = 3443 new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3444 SemaRef.Context.getTrivialTypeSourceInfo(BaseSpec->getType(), 3445 SourceLocation()), 3446 BaseSpec->isVirtual(), 3447 SourceLocation(), 3448 BaseInit.getAs<Expr>(), 3449 SourceLocation(), 3450 SourceLocation()); 3451 3452 return false; 3453 } 3454 3455 static bool RefersToRValueRef(Expr *MemRef) { 3456 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl(); 3457 return Referenced->getType()->isRValueReferenceType(); 3458 } 3459 3460 static bool 3461 BuildImplicitMemberInitializer(Sema &SemaRef, CXXConstructorDecl *Constructor, 3462 ImplicitInitializerKind ImplicitInitKind, 3463 FieldDecl *Field, IndirectFieldDecl *Indirect, 3464 CXXCtorInitializer *&CXXMemberInit) { 3465 if (Field->isInvalidDecl()) 3466 return true; 3467 3468 SourceLocation Loc = Constructor->getLocation(); 3469 3470 if (ImplicitInitKind == IIK_Copy || ImplicitInitKind == IIK_Move) { 3471 bool Moving = ImplicitInitKind == IIK_Move; 3472 ParmVarDecl *Param = Constructor->getParamDecl(0); 3473 QualType ParamType = Param->getType().getNonReferenceType(); 3474 3475 // Suppress copying zero-width bitfields. 3476 if (Field->isBitField() && Field->getBitWidthValue(SemaRef.Context) == 0) 3477 return false; 3478 3479 Expr *MemberExprBase = 3480 DeclRefExpr::Create(SemaRef.Context, NestedNameSpecifierLoc(), 3481 SourceLocation(), Param, false, 3482 Loc, ParamType, VK_LValue, nullptr); 3483 3484 SemaRef.MarkDeclRefReferenced(cast<DeclRefExpr>(MemberExprBase)); 3485 3486 if (Moving) { 3487 MemberExprBase = CastForMoving(SemaRef, MemberExprBase); 3488 } 3489 3490 // Build a reference to this field within the parameter. 3491 CXXScopeSpec SS; 3492 LookupResult MemberLookup(SemaRef, Field->getDeclName(), Loc, 3493 Sema::LookupMemberName); 3494 MemberLookup.addDecl(Indirect ? cast<ValueDecl>(Indirect) 3495 : cast<ValueDecl>(Field), AS_public); 3496 MemberLookup.resolveKind(); 3497 ExprResult CtorArg 3498 = SemaRef.BuildMemberReferenceExpr(MemberExprBase, 3499 ParamType, Loc, 3500 /*IsArrow=*/false, 3501 SS, 3502 /*TemplateKWLoc=*/SourceLocation(), 3503 /*FirstQualifierInScope=*/nullptr, 3504 MemberLookup, 3505 /*TemplateArgs=*/nullptr); 3506 if (CtorArg.isInvalid()) 3507 return true; 3508 3509 // C++11 [class.copy]p15: 3510 // - if a member m has rvalue reference type T&&, it is direct-initialized 3511 // with static_cast<T&&>(x.m); 3512 if (RefersToRValueRef(CtorArg.get())) { 3513 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 3514 } 3515 3516 // When the field we are copying is an array, create index variables for 3517 // each dimension of the array. We use these index variables to subscript 3518 // the source array, and other clients (e.g., CodeGen) will perform the 3519 // necessary iteration with these index variables. 3520 SmallVector<VarDecl *, 4> IndexVariables; 3521 QualType BaseType = Field->getType(); 3522 QualType SizeType = SemaRef.Context.getSizeType(); 3523 bool InitializingArray = false; 3524 while (const ConstantArrayType *Array 3525 = SemaRef.Context.getAsConstantArrayType(BaseType)) { 3526 InitializingArray = true; 3527 // Create the iteration variable for this array index. 3528 IdentifierInfo *IterationVarName = nullptr; 3529 { 3530 SmallString<8> Str; 3531 llvm::raw_svector_ostream OS(Str); 3532 OS << "__i" << IndexVariables.size(); 3533 IterationVarName = &SemaRef.Context.Idents.get(OS.str()); 3534 } 3535 VarDecl *IterationVar 3536 = VarDecl::Create(SemaRef.Context, SemaRef.CurContext, Loc, Loc, 3537 IterationVarName, SizeType, 3538 SemaRef.Context.getTrivialTypeSourceInfo(SizeType, Loc), 3539 SC_None); 3540 IndexVariables.push_back(IterationVar); 3541 3542 // Create a reference to the iteration variable. 3543 ExprResult IterationVarRef 3544 = SemaRef.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc); 3545 assert(!IterationVarRef.isInvalid() && 3546 "Reference to invented variable cannot fail!"); 3547 IterationVarRef = SemaRef.DefaultLvalueConversion(IterationVarRef.get()); 3548 assert(!IterationVarRef.isInvalid() && 3549 "Conversion of invented variable cannot fail!"); 3550 3551 // Subscript the array with this iteration variable. 3552 CtorArg = SemaRef.CreateBuiltinArraySubscriptExpr(CtorArg.get(), Loc, 3553 IterationVarRef.get(), 3554 Loc); 3555 if (CtorArg.isInvalid()) 3556 return true; 3557 3558 BaseType = Array->getElementType(); 3559 } 3560 3561 // The array subscript expression is an lvalue, which is wrong for moving. 3562 if (Moving && InitializingArray) 3563 CtorArg = CastForMoving(SemaRef, CtorArg.get()); 3564 3565 // Construct the entity that we will be initializing. For an array, this 3566 // will be first element in the array, which may require several levels 3567 // of array-subscript entities. 3568 SmallVector<InitializedEntity, 4> Entities; 3569 Entities.reserve(1 + IndexVariables.size()); 3570 if (Indirect) 3571 Entities.push_back(InitializedEntity::InitializeMember(Indirect)); 3572 else 3573 Entities.push_back(InitializedEntity::InitializeMember(Field)); 3574 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I) 3575 Entities.push_back(InitializedEntity::InitializeElement(SemaRef.Context, 3576 0, 3577 Entities.back())); 3578 3579 // Direct-initialize to use the copy constructor. 3580 InitializationKind InitKind = 3581 InitializationKind::CreateDirect(Loc, SourceLocation(), SourceLocation()); 3582 3583 Expr *CtorArgE = CtorArg.getAs<Expr>(); 3584 InitializationSequence InitSeq(SemaRef, Entities.back(), InitKind, 3585 CtorArgE); 3586 3587 ExprResult MemberInit 3588 = InitSeq.Perform(SemaRef, Entities.back(), InitKind, 3589 MultiExprArg(&CtorArgE, 1)); 3590 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3591 if (MemberInit.isInvalid()) 3592 return true; 3593 3594 if (Indirect) { 3595 assert(IndexVariables.size() == 0 && 3596 "Indirect field improperly initialized"); 3597 CXXMemberInit 3598 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect, 3599 Loc, Loc, 3600 MemberInit.getAs<Expr>(), 3601 Loc); 3602 } else 3603 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, 3604 Loc, MemberInit.getAs<Expr>(), 3605 Loc, 3606 IndexVariables.data(), 3607 IndexVariables.size()); 3608 return false; 3609 } 3610 3611 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) && 3612 "Unhandled implicit init kind!"); 3613 3614 QualType FieldBaseElementType = 3615 SemaRef.Context.getBaseElementType(Field->getType()); 3616 3617 if (FieldBaseElementType->isRecordType()) { 3618 InitializedEntity InitEntity 3619 = Indirect? InitializedEntity::InitializeMember(Indirect) 3620 : InitializedEntity::InitializeMember(Field); 3621 InitializationKind InitKind = 3622 InitializationKind::CreateDefault(Loc); 3623 3624 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3625 ExprResult MemberInit = 3626 InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3627 3628 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3629 if (MemberInit.isInvalid()) 3630 return true; 3631 3632 if (Indirect) 3633 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3634 Indirect, Loc, 3635 Loc, 3636 MemberInit.get(), 3637 Loc); 3638 else 3639 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3640 Field, Loc, Loc, 3641 MemberInit.get(), 3642 Loc); 3643 return false; 3644 } 3645 3646 if (!Field->getParent()->isUnion()) { 3647 if (FieldBaseElementType->isReferenceType()) { 3648 SemaRef.Diag(Constructor->getLocation(), 3649 diag::err_uninitialized_member_in_ctor) 3650 << (int)Constructor->isImplicit() 3651 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3652 << 0 << Field->getDeclName(); 3653 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3654 return true; 3655 } 3656 3657 if (FieldBaseElementType.isConstQualified()) { 3658 SemaRef.Diag(Constructor->getLocation(), 3659 diag::err_uninitialized_member_in_ctor) 3660 << (int)Constructor->isImplicit() 3661 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3662 << 1 << Field->getDeclName(); 3663 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3664 return true; 3665 } 3666 } 3667 3668 if (SemaRef.getLangOpts().ObjCAutoRefCount && 3669 FieldBaseElementType->isObjCRetainableType() && 3670 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None && 3671 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) { 3672 // ARC: 3673 // Default-initialize Objective-C pointers to NULL. 3674 CXXMemberInit 3675 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field, 3676 Loc, Loc, 3677 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()), 3678 Loc); 3679 return false; 3680 } 3681 3682 // Nothing to initialize. 3683 CXXMemberInit = nullptr; 3684 return false; 3685 } 3686 3687 namespace { 3688 struct BaseAndFieldInfo { 3689 Sema &S; 3690 CXXConstructorDecl *Ctor; 3691 bool AnyErrorsInInits; 3692 ImplicitInitializerKind IIK; 3693 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields; 3694 SmallVector<CXXCtorInitializer*, 8> AllToInit; 3695 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember; 3696 3697 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits) 3698 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) { 3699 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted(); 3700 if (Generated && Ctor->isCopyConstructor()) 3701 IIK = IIK_Copy; 3702 else if (Generated && Ctor->isMoveConstructor()) 3703 IIK = IIK_Move; 3704 else if (Ctor->getInheritedConstructor()) 3705 IIK = IIK_Inherit; 3706 else 3707 IIK = IIK_Default; 3708 } 3709 3710 bool isImplicitCopyOrMove() const { 3711 switch (IIK) { 3712 case IIK_Copy: 3713 case IIK_Move: 3714 return true; 3715 3716 case IIK_Default: 3717 case IIK_Inherit: 3718 return false; 3719 } 3720 3721 llvm_unreachable("Invalid ImplicitInitializerKind!"); 3722 } 3723 3724 bool addFieldInitializer(CXXCtorInitializer *Init) { 3725 AllToInit.push_back(Init); 3726 3727 // Check whether this initializer makes the field "used". 3728 if (Init->getInit()->HasSideEffects(S.Context)) 3729 S.UnusedPrivateFields.remove(Init->getAnyMember()); 3730 3731 return false; 3732 } 3733 3734 bool isInactiveUnionMember(FieldDecl *Field) { 3735 RecordDecl *Record = Field->getParent(); 3736 if (!Record->isUnion()) 3737 return false; 3738 3739 if (FieldDecl *Active = 3740 ActiveUnionMember.lookup(Record->getCanonicalDecl())) 3741 return Active != Field->getCanonicalDecl(); 3742 3743 // In an implicit copy or move constructor, ignore any in-class initializer. 3744 if (isImplicitCopyOrMove()) 3745 return true; 3746 3747 // If there's no explicit initialization, the field is active only if it 3748 // has an in-class initializer... 3749 if (Field->hasInClassInitializer()) 3750 return false; 3751 // ... or it's an anonymous struct or union whose class has an in-class 3752 // initializer. 3753 if (!Field->isAnonymousStructOrUnion()) 3754 return true; 3755 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl(); 3756 return !FieldRD->hasInClassInitializer(); 3757 } 3758 3759 /// \brief Determine whether the given field is, or is within, a union member 3760 /// that is inactive (because there was an initializer given for a different 3761 /// member of the union, or because the union was not initialized at all). 3762 bool isWithinInactiveUnionMember(FieldDecl *Field, 3763 IndirectFieldDecl *Indirect) { 3764 if (!Indirect) 3765 return isInactiveUnionMember(Field); 3766 3767 for (auto *C : Indirect->chain()) { 3768 FieldDecl *Field = dyn_cast<FieldDecl>(C); 3769 if (Field && isInactiveUnionMember(Field)) 3770 return true; 3771 } 3772 return false; 3773 } 3774 }; 3775 } 3776 3777 /// \brief Determine whether the given type is an incomplete or zero-lenfgth 3778 /// array type. 3779 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) { 3780 if (T->isIncompleteArrayType()) 3781 return true; 3782 3783 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) { 3784 if (!ArrayT->getSize()) 3785 return true; 3786 3787 T = ArrayT->getElementType(); 3788 } 3789 3790 return false; 3791 } 3792 3793 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info, 3794 FieldDecl *Field, 3795 IndirectFieldDecl *Indirect = nullptr) { 3796 if (Field->isInvalidDecl()) 3797 return false; 3798 3799 // Overwhelmingly common case: we have a direct initializer for this field. 3800 if (CXXCtorInitializer *Init = 3801 Info.AllBaseFields.lookup(Field->getCanonicalDecl())) 3802 return Info.addFieldInitializer(Init); 3803 3804 // C++11 [class.base.init]p8: 3805 // if the entity is a non-static data member that has a 3806 // brace-or-equal-initializer and either 3807 // -- the constructor's class is a union and no other variant member of that 3808 // union is designated by a mem-initializer-id or 3809 // -- the constructor's class is not a union, and, if the entity is a member 3810 // of an anonymous union, no other member of that union is designated by 3811 // a mem-initializer-id, 3812 // the entity is initialized as specified in [dcl.init]. 3813 // 3814 // We also apply the same rules to handle anonymous structs within anonymous 3815 // unions. 3816 if (Info.isWithinInactiveUnionMember(Field, Indirect)) 3817 return false; 3818 3819 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) { 3820 ExprResult DIE = 3821 SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field); 3822 if (DIE.isInvalid()) 3823 return true; 3824 CXXCtorInitializer *Init; 3825 if (Indirect) 3826 Init = new (SemaRef.Context) 3827 CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(), 3828 SourceLocation(), DIE.get(), SourceLocation()); 3829 else 3830 Init = new (SemaRef.Context) 3831 CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(), 3832 SourceLocation(), DIE.get(), SourceLocation()); 3833 return Info.addFieldInitializer(Init); 3834 } 3835 3836 // Don't initialize incomplete or zero-length arrays. 3837 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType())) 3838 return false; 3839 3840 // Don't try to build an implicit initializer if there were semantic 3841 // errors in any of the initializers (and therefore we might be 3842 // missing some that the user actually wrote). 3843 if (Info.AnyErrorsInInits) 3844 return false; 3845 3846 CXXCtorInitializer *Init = nullptr; 3847 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, 3848 Indirect, Init)) 3849 return true; 3850 3851 if (!Init) 3852 return false; 3853 3854 return Info.addFieldInitializer(Init); 3855 } 3856 3857 bool 3858 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor, 3859 CXXCtorInitializer *Initializer) { 3860 assert(Initializer->isDelegatingInitializer()); 3861 Constructor->setNumCtorInitializers(1); 3862 CXXCtorInitializer **initializer = 3863 new (Context) CXXCtorInitializer*[1]; 3864 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*)); 3865 Constructor->setCtorInitializers(initializer); 3866 3867 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) { 3868 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); 3869 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); 3870 } 3871 3872 DelegatingCtorDecls.push_back(Constructor); 3873 3874 DiagnoseUninitializedFields(*this, Constructor); 3875 3876 return false; 3877 } 3878 3879 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors, 3880 ArrayRef<CXXCtorInitializer *> Initializers) { 3881 if (Constructor->isDependentContext()) { 3882 // Just store the initializers as written, they will be checked during 3883 // instantiation. 3884 if (!Initializers.empty()) { 3885 Constructor->setNumCtorInitializers(Initializers.size()); 3886 CXXCtorInitializer **baseOrMemberInitializers = 3887 new (Context) CXXCtorInitializer*[Initializers.size()]; 3888 memcpy(baseOrMemberInitializers, Initializers.data(), 3889 Initializers.size() * sizeof(CXXCtorInitializer*)); 3890 Constructor->setCtorInitializers(baseOrMemberInitializers); 3891 } 3892 3893 // Let template instantiation know whether we had errors. 3894 if (AnyErrors) 3895 Constructor->setInvalidDecl(); 3896 3897 return false; 3898 } 3899 3900 BaseAndFieldInfo Info(*this, Constructor, AnyErrors); 3901 3902 // We need to build the initializer AST according to order of construction 3903 // and not what user specified in the Initializers list. 3904 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition(); 3905 if (!ClassDecl) 3906 return true; 3907 3908 bool HadError = false; 3909 3910 for (unsigned i = 0; i < Initializers.size(); i++) { 3911 CXXCtorInitializer *Member = Initializers[i]; 3912 3913 if (Member->isBaseInitializer()) 3914 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member; 3915 else { 3916 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member; 3917 3918 if (IndirectFieldDecl *F = Member->getIndirectMember()) { 3919 for (auto *C : F->chain()) { 3920 FieldDecl *FD = dyn_cast<FieldDecl>(C); 3921 if (FD && FD->getParent()->isUnion()) 3922 Info.ActiveUnionMember.insert(std::make_pair( 3923 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3924 } 3925 } else if (FieldDecl *FD = Member->getMember()) { 3926 if (FD->getParent()->isUnion()) 3927 Info.ActiveUnionMember.insert(std::make_pair( 3928 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3929 } 3930 } 3931 } 3932 3933 // Keep track of the direct virtual bases. 3934 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases; 3935 for (auto &I : ClassDecl->bases()) { 3936 if (I.isVirtual()) 3937 DirectVBases.insert(&I); 3938 } 3939 3940 // Push virtual bases before others. 3941 for (auto &VBase : ClassDecl->vbases()) { 3942 if (CXXCtorInitializer *Value 3943 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) { 3944 // [class.base.init]p7, per DR257: 3945 // A mem-initializer where the mem-initializer-id names a virtual base 3946 // class is ignored during execution of a constructor of any class that 3947 // is not the most derived class. 3948 if (ClassDecl->isAbstract()) { 3949 // FIXME: Provide a fixit to remove the base specifier. This requires 3950 // tracking the location of the associated comma for a base specifier. 3951 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) 3952 << VBase.getType() << ClassDecl; 3953 DiagnoseAbstractType(ClassDecl); 3954 } 3955 3956 Info.AllToInit.push_back(Value); 3957 } else if (!AnyErrors && !ClassDecl->isAbstract()) { 3958 // [class.base.init]p8, per DR257: 3959 // If a given [...] base class is not named by a mem-initializer-id 3960 // [...] and the entity is not a virtual base class of an abstract 3961 // class, then [...] the entity is default-initialized. 3962 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase); 3963 CXXCtorInitializer *CXXBaseInit; 3964 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3965 &VBase, IsInheritedVirtualBase, 3966 CXXBaseInit)) { 3967 HadError = true; 3968 continue; 3969 } 3970 3971 Info.AllToInit.push_back(CXXBaseInit); 3972 } 3973 } 3974 3975 // Non-virtual bases. 3976 for (auto &Base : ClassDecl->bases()) { 3977 // Virtuals are in the virtual base list and already constructed. 3978 if (Base.isVirtual()) 3979 continue; 3980 3981 if (CXXCtorInitializer *Value 3982 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) { 3983 Info.AllToInit.push_back(Value); 3984 } else if (!AnyErrors) { 3985 CXXCtorInitializer *CXXBaseInit; 3986 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3987 &Base, /*IsInheritedVirtualBase=*/false, 3988 CXXBaseInit)) { 3989 HadError = true; 3990 continue; 3991 } 3992 3993 Info.AllToInit.push_back(CXXBaseInit); 3994 } 3995 } 3996 3997 // Fields. 3998 for (auto *Mem : ClassDecl->decls()) { 3999 if (auto *F = dyn_cast<FieldDecl>(Mem)) { 4000 // C++ [class.bit]p2: 4001 // A declaration for a bit-field that omits the identifier declares an 4002 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 4003 // initialized. 4004 if (F->isUnnamedBitfield()) 4005 continue; 4006 4007 // If we're not generating the implicit copy/move constructor, then we'll 4008 // handle anonymous struct/union fields based on their individual 4009 // indirect fields. 4010 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove()) 4011 continue; 4012 4013 if (CollectFieldInitializer(*this, Info, F)) 4014 HadError = true; 4015 continue; 4016 } 4017 4018 // Beyond this point, we only consider default initialization. 4019 if (Info.isImplicitCopyOrMove()) 4020 continue; 4021 4022 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) { 4023 if (F->getType()->isIncompleteArrayType()) { 4024 assert(ClassDecl->hasFlexibleArrayMember() && 4025 "Incomplete array type is not valid"); 4026 continue; 4027 } 4028 4029 // Initialize each field of an anonymous struct individually. 4030 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F)) 4031 HadError = true; 4032 4033 continue; 4034 } 4035 } 4036 4037 unsigned NumInitializers = Info.AllToInit.size(); 4038 if (NumInitializers > 0) { 4039 Constructor->setNumCtorInitializers(NumInitializers); 4040 CXXCtorInitializer **baseOrMemberInitializers = 4041 new (Context) CXXCtorInitializer*[NumInitializers]; 4042 memcpy(baseOrMemberInitializers, Info.AllToInit.data(), 4043 NumInitializers * sizeof(CXXCtorInitializer*)); 4044 Constructor->setCtorInitializers(baseOrMemberInitializers); 4045 4046 // Constructors implicitly reference the base and member 4047 // destructors. 4048 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(), 4049 Constructor->getParent()); 4050 } 4051 4052 return HadError; 4053 } 4054 4055 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) { 4056 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) { 4057 const RecordDecl *RD = RT->getDecl(); 4058 if (RD->isAnonymousStructOrUnion()) { 4059 for (auto *Field : RD->fields()) 4060 PopulateKeysForFields(Field, IdealInits); 4061 return; 4062 } 4063 } 4064 IdealInits.push_back(Field->getCanonicalDecl()); 4065 } 4066 4067 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) { 4068 return Context.getCanonicalType(BaseType).getTypePtr(); 4069 } 4070 4071 static const void *GetKeyForMember(ASTContext &Context, 4072 CXXCtorInitializer *Member) { 4073 if (!Member->isAnyMemberInitializer()) 4074 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0)); 4075 4076 return Member->getAnyMember()->getCanonicalDecl(); 4077 } 4078 4079 static void DiagnoseBaseOrMemInitializerOrder( 4080 Sema &SemaRef, const CXXConstructorDecl *Constructor, 4081 ArrayRef<CXXCtorInitializer *> Inits) { 4082 if (Constructor->getDeclContext()->isDependentContext()) 4083 return; 4084 4085 // Don't check initializers order unless the warning is enabled at the 4086 // location of at least one initializer. 4087 bool ShouldCheckOrder = false; 4088 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4089 CXXCtorInitializer *Init = Inits[InitIndex]; 4090 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order, 4091 Init->getSourceLocation())) { 4092 ShouldCheckOrder = true; 4093 break; 4094 } 4095 } 4096 if (!ShouldCheckOrder) 4097 return; 4098 4099 // Build the list of bases and members in the order that they'll 4100 // actually be initialized. The explicit initializers should be in 4101 // this same order but may be missing things. 4102 SmallVector<const void*, 32> IdealInitKeys; 4103 4104 const CXXRecordDecl *ClassDecl = Constructor->getParent(); 4105 4106 // 1. Virtual bases. 4107 for (const auto &VBase : ClassDecl->vbases()) 4108 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType())); 4109 4110 // 2. Non-virtual bases. 4111 for (const auto &Base : ClassDecl->bases()) { 4112 if (Base.isVirtual()) 4113 continue; 4114 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType())); 4115 } 4116 4117 // 3. Direct fields. 4118 for (auto *Field : ClassDecl->fields()) { 4119 if (Field->isUnnamedBitfield()) 4120 continue; 4121 4122 PopulateKeysForFields(Field, IdealInitKeys); 4123 } 4124 4125 unsigned NumIdealInits = IdealInitKeys.size(); 4126 unsigned IdealIndex = 0; 4127 4128 CXXCtorInitializer *PrevInit = nullptr; 4129 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4130 CXXCtorInitializer *Init = Inits[InitIndex]; 4131 const void *InitKey = GetKeyForMember(SemaRef.Context, Init); 4132 4133 // Scan forward to try to find this initializer in the idealized 4134 // initializers list. 4135 for (; IdealIndex != NumIdealInits; ++IdealIndex) 4136 if (InitKey == IdealInitKeys[IdealIndex]) 4137 break; 4138 4139 // If we didn't find this initializer, it must be because we 4140 // scanned past it on a previous iteration. That can only 4141 // happen if we're out of order; emit a warning. 4142 if (IdealIndex == NumIdealInits && PrevInit) { 4143 Sema::SemaDiagnosticBuilder D = 4144 SemaRef.Diag(PrevInit->getSourceLocation(), 4145 diag::warn_initializer_out_of_order); 4146 4147 if (PrevInit->isAnyMemberInitializer()) 4148 D << 0 << PrevInit->getAnyMember()->getDeclName(); 4149 else 4150 D << 1 << PrevInit->getTypeSourceInfo()->getType(); 4151 4152 if (Init->isAnyMemberInitializer()) 4153 D << 0 << Init->getAnyMember()->getDeclName(); 4154 else 4155 D << 1 << Init->getTypeSourceInfo()->getType(); 4156 4157 // Move back to the initializer's location in the ideal list. 4158 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex) 4159 if (InitKey == IdealInitKeys[IdealIndex]) 4160 break; 4161 4162 assert(IdealIndex != NumIdealInits && 4163 "initializer not found in initializer list"); 4164 } 4165 4166 PrevInit = Init; 4167 } 4168 } 4169 4170 namespace { 4171 bool CheckRedundantInit(Sema &S, 4172 CXXCtorInitializer *Init, 4173 CXXCtorInitializer *&PrevInit) { 4174 if (!PrevInit) { 4175 PrevInit = Init; 4176 return false; 4177 } 4178 4179 if (FieldDecl *Field = Init->getAnyMember()) 4180 S.Diag(Init->getSourceLocation(), 4181 diag::err_multiple_mem_initialization) 4182 << Field->getDeclName() 4183 << Init->getSourceRange(); 4184 else { 4185 const Type *BaseClass = Init->getBaseClass(); 4186 assert(BaseClass && "neither field nor base"); 4187 S.Diag(Init->getSourceLocation(), 4188 diag::err_multiple_base_initialization) 4189 << QualType(BaseClass, 0) 4190 << Init->getSourceRange(); 4191 } 4192 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) 4193 << 0 << PrevInit->getSourceRange(); 4194 4195 return true; 4196 } 4197 4198 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry; 4199 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap; 4200 4201 bool CheckRedundantUnionInit(Sema &S, 4202 CXXCtorInitializer *Init, 4203 RedundantUnionMap &Unions) { 4204 FieldDecl *Field = Init->getAnyMember(); 4205 RecordDecl *Parent = Field->getParent(); 4206 NamedDecl *Child = Field; 4207 4208 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) { 4209 if (Parent->isUnion()) { 4210 UnionEntry &En = Unions[Parent]; 4211 if (En.first && En.first != Child) { 4212 S.Diag(Init->getSourceLocation(), 4213 diag::err_multiple_mem_union_initialization) 4214 << Field->getDeclName() 4215 << Init->getSourceRange(); 4216 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer) 4217 << 0 << En.second->getSourceRange(); 4218 return true; 4219 } 4220 if (!En.first) { 4221 En.first = Child; 4222 En.second = Init; 4223 } 4224 if (!Parent->isAnonymousStructOrUnion()) 4225 return false; 4226 } 4227 4228 Child = Parent; 4229 Parent = cast<RecordDecl>(Parent->getDeclContext()); 4230 } 4231 4232 return false; 4233 } 4234 } 4235 4236 /// ActOnMemInitializers - Handle the member initializers for a constructor. 4237 void Sema::ActOnMemInitializers(Decl *ConstructorDecl, 4238 SourceLocation ColonLoc, 4239 ArrayRef<CXXCtorInitializer*> MemInits, 4240 bool AnyErrors) { 4241 if (!ConstructorDecl) 4242 return; 4243 4244 AdjustDeclIfTemplate(ConstructorDecl); 4245 4246 CXXConstructorDecl *Constructor 4247 = dyn_cast<CXXConstructorDecl>(ConstructorDecl); 4248 4249 if (!Constructor) { 4250 Diag(ColonLoc, diag::err_only_constructors_take_base_inits); 4251 return; 4252 } 4253 4254 // Mapping for the duplicate initializers check. 4255 // For member initializers, this is keyed with a FieldDecl*. 4256 // For base initializers, this is keyed with a Type*. 4257 llvm::DenseMap<const void *, CXXCtorInitializer *> Members; 4258 4259 // Mapping for the inconsistent anonymous-union initializers check. 4260 RedundantUnionMap MemberUnions; 4261 4262 bool HadError = false; 4263 for (unsigned i = 0; i < MemInits.size(); i++) { 4264 CXXCtorInitializer *Init = MemInits[i]; 4265 4266 // Set the source order index. 4267 Init->setSourceOrder(i); 4268 4269 if (Init->isAnyMemberInitializer()) { 4270 const void *Key = GetKeyForMember(Context, Init); 4271 if (CheckRedundantInit(*this, Init, Members[Key]) || 4272 CheckRedundantUnionInit(*this, Init, MemberUnions)) 4273 HadError = true; 4274 } else if (Init->isBaseInitializer()) { 4275 const void *Key = GetKeyForMember(Context, Init); 4276 if (CheckRedundantInit(*this, Init, Members[Key])) 4277 HadError = true; 4278 } else { 4279 assert(Init->isDelegatingInitializer()); 4280 // This must be the only initializer 4281 if (MemInits.size() != 1) { 4282 Diag(Init->getSourceLocation(), 4283 diag::err_delegating_initializer_alone) 4284 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange(); 4285 // We will treat this as being the only initializer. 4286 } 4287 SetDelegatingInitializer(Constructor, MemInits[i]); 4288 // Return immediately as the initializer is set. 4289 return; 4290 } 4291 } 4292 4293 if (HadError) 4294 return; 4295 4296 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits); 4297 4298 SetCtorInitializers(Constructor, AnyErrors, MemInits); 4299 4300 DiagnoseUninitializedFields(*this, Constructor); 4301 } 4302 4303 void 4304 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location, 4305 CXXRecordDecl *ClassDecl) { 4306 // Ignore dependent contexts. Also ignore unions, since their members never 4307 // have destructors implicitly called. 4308 if (ClassDecl->isDependentContext() || ClassDecl->isUnion()) 4309 return; 4310 4311 // FIXME: all the access-control diagnostics are positioned on the 4312 // field/base declaration. That's probably good; that said, the 4313 // user might reasonably want to know why the destructor is being 4314 // emitted, and we currently don't say. 4315 4316 // Non-static data members. 4317 for (auto *Field : ClassDecl->fields()) { 4318 if (Field->isInvalidDecl()) 4319 continue; 4320 4321 // Don't destroy incomplete or zero-length arrays. 4322 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType())) 4323 continue; 4324 4325 QualType FieldType = Context.getBaseElementType(Field->getType()); 4326 4327 const RecordType* RT = FieldType->getAs<RecordType>(); 4328 if (!RT) 4329 continue; 4330 4331 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4332 if (FieldClassDecl->isInvalidDecl()) 4333 continue; 4334 if (FieldClassDecl->hasIrrelevantDestructor()) 4335 continue; 4336 // The destructor for an implicit anonymous union member is never invoked. 4337 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion()) 4338 continue; 4339 4340 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl); 4341 assert(Dtor && "No dtor found for FieldClassDecl!"); 4342 CheckDestructorAccess(Field->getLocation(), Dtor, 4343 PDiag(diag::err_access_dtor_field) 4344 << Field->getDeclName() 4345 << FieldType); 4346 4347 MarkFunctionReferenced(Location, Dtor); 4348 DiagnoseUseOfDecl(Dtor, Location); 4349 } 4350 4351 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases; 4352 4353 // Bases. 4354 for (const auto &Base : ClassDecl->bases()) { 4355 // Bases are always records in a well-formed non-dependent class. 4356 const RecordType *RT = Base.getType()->getAs<RecordType>(); 4357 4358 // Remember direct virtual bases. 4359 if (Base.isVirtual()) 4360 DirectVirtualBases.insert(RT); 4361 4362 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4363 // If our base class is invalid, we probably can't get its dtor anyway. 4364 if (BaseClassDecl->isInvalidDecl()) 4365 continue; 4366 if (BaseClassDecl->hasIrrelevantDestructor()) 4367 continue; 4368 4369 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4370 assert(Dtor && "No dtor found for BaseClassDecl!"); 4371 4372 // FIXME: caret should be on the start of the class name 4373 CheckDestructorAccess(Base.getLocStart(), Dtor, 4374 PDiag(diag::err_access_dtor_base) 4375 << Base.getType() 4376 << Base.getSourceRange(), 4377 Context.getTypeDeclType(ClassDecl)); 4378 4379 MarkFunctionReferenced(Location, Dtor); 4380 DiagnoseUseOfDecl(Dtor, Location); 4381 } 4382 4383 // Virtual bases. 4384 for (const auto &VBase : ClassDecl->vbases()) { 4385 // Bases are always records in a well-formed non-dependent class. 4386 const RecordType *RT = VBase.getType()->castAs<RecordType>(); 4387 4388 // Ignore direct virtual bases. 4389 if (DirectVirtualBases.count(RT)) 4390 continue; 4391 4392 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4393 // If our base class is invalid, we probably can't get its dtor anyway. 4394 if (BaseClassDecl->isInvalidDecl()) 4395 continue; 4396 if (BaseClassDecl->hasIrrelevantDestructor()) 4397 continue; 4398 4399 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4400 assert(Dtor && "No dtor found for BaseClassDecl!"); 4401 if (CheckDestructorAccess( 4402 ClassDecl->getLocation(), Dtor, 4403 PDiag(diag::err_access_dtor_vbase) 4404 << Context.getTypeDeclType(ClassDecl) << VBase.getType(), 4405 Context.getTypeDeclType(ClassDecl)) == 4406 AR_accessible) { 4407 CheckDerivedToBaseConversion( 4408 Context.getTypeDeclType(ClassDecl), VBase.getType(), 4409 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(), 4410 SourceRange(), DeclarationName(), nullptr); 4411 } 4412 4413 MarkFunctionReferenced(Location, Dtor); 4414 DiagnoseUseOfDecl(Dtor, Location); 4415 } 4416 } 4417 4418 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) { 4419 if (!CDtorDecl) 4420 return; 4421 4422 if (CXXConstructorDecl *Constructor 4423 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) { 4424 SetCtorInitializers(Constructor, /*AnyErrors=*/false); 4425 DiagnoseUninitializedFields(*this, Constructor); 4426 } 4427 } 4428 4429 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 4430 unsigned DiagID, AbstractDiagSelID SelID) { 4431 class NonAbstractTypeDiagnoser : public TypeDiagnoser { 4432 unsigned DiagID; 4433 AbstractDiagSelID SelID; 4434 4435 public: 4436 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID) 4437 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { } 4438 4439 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 4440 if (Suppressed) return; 4441 if (SelID == -1) 4442 S.Diag(Loc, DiagID) << T; 4443 else 4444 S.Diag(Loc, DiagID) << SelID << T; 4445 } 4446 } Diagnoser(DiagID, SelID); 4447 4448 return RequireNonAbstractType(Loc, T, Diagnoser); 4449 } 4450 4451 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 4452 TypeDiagnoser &Diagnoser) { 4453 if (!getLangOpts().CPlusPlus) 4454 return false; 4455 4456 if (const ArrayType *AT = Context.getAsArrayType(T)) 4457 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser); 4458 4459 if (const PointerType *PT = T->getAs<PointerType>()) { 4460 // Find the innermost pointer type. 4461 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>()) 4462 PT = T; 4463 4464 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType())) 4465 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser); 4466 } 4467 4468 const RecordType *RT = T->getAs<RecordType>(); 4469 if (!RT) 4470 return false; 4471 4472 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); 4473 4474 // We can't answer whether something is abstract until it has a 4475 // definition. If it's currently being defined, we'll walk back 4476 // over all the declarations when we have a full definition. 4477 const CXXRecordDecl *Def = RD->getDefinition(); 4478 if (!Def || Def->isBeingDefined()) 4479 return false; 4480 4481 if (!RD->isAbstract()) 4482 return false; 4483 4484 Diagnoser.diagnose(*this, Loc, T); 4485 DiagnoseAbstractType(RD); 4486 4487 return true; 4488 } 4489 4490 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) { 4491 // Check if we've already emitted the list of pure virtual functions 4492 // for this class. 4493 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD)) 4494 return; 4495 4496 // If the diagnostic is suppressed, don't emit the notes. We're only 4497 // going to emit them once, so try to attach them to a diagnostic we're 4498 // actually going to show. 4499 if (Diags.isLastDiagnosticIgnored()) 4500 return; 4501 4502 CXXFinalOverriderMap FinalOverriders; 4503 RD->getFinalOverriders(FinalOverriders); 4504 4505 // Keep a set of seen pure methods so we won't diagnose the same method 4506 // more than once. 4507 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods; 4508 4509 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 4510 MEnd = FinalOverriders.end(); 4511 M != MEnd; 4512 ++M) { 4513 for (OverridingMethods::iterator SO = M->second.begin(), 4514 SOEnd = M->second.end(); 4515 SO != SOEnd; ++SO) { 4516 // C++ [class.abstract]p4: 4517 // A class is abstract if it contains or inherits at least one 4518 // pure virtual function for which the final overrider is pure 4519 // virtual. 4520 4521 // 4522 if (SO->second.size() != 1) 4523 continue; 4524 4525 if (!SO->second.front().Method->isPure()) 4526 continue; 4527 4528 if (!SeenPureMethods.insert(SO->second.front().Method).second) 4529 continue; 4530 4531 Diag(SO->second.front().Method->getLocation(), 4532 diag::note_pure_virtual_function) 4533 << SO->second.front().Method->getDeclName() << RD->getDeclName(); 4534 } 4535 } 4536 4537 if (!PureVirtualClassDiagSet) 4538 PureVirtualClassDiagSet.reset(new RecordDeclSetTy); 4539 PureVirtualClassDiagSet->insert(RD); 4540 } 4541 4542 namespace { 4543 struct AbstractUsageInfo { 4544 Sema &S; 4545 CXXRecordDecl *Record; 4546 CanQualType AbstractType; 4547 bool Invalid; 4548 4549 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record) 4550 : S(S), Record(Record), 4551 AbstractType(S.Context.getCanonicalType( 4552 S.Context.getTypeDeclType(Record))), 4553 Invalid(false) {} 4554 4555 void DiagnoseAbstractType() { 4556 if (Invalid) return; 4557 S.DiagnoseAbstractType(Record); 4558 Invalid = true; 4559 } 4560 4561 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 4562 }; 4563 4564 struct CheckAbstractUsage { 4565 AbstractUsageInfo &Info; 4566 const NamedDecl *Ctx; 4567 4568 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx) 4569 : Info(Info), Ctx(Ctx) {} 4570 4571 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4572 switch (TL.getTypeLocClass()) { 4573 #define ABSTRACT_TYPELOC(CLASS, PARENT) 4574 #define TYPELOC(CLASS, PARENT) \ 4575 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break; 4576 #include "clang/AST/TypeLocNodes.def" 4577 } 4578 } 4579 4580 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4581 Visit(TL.getReturnLoc(), Sema::AbstractReturnType); 4582 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) { 4583 if (!TL.getParam(I)) 4584 continue; 4585 4586 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo(); 4587 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); 4588 } 4589 } 4590 4591 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4592 Visit(TL.getElementLoc(), Sema::AbstractArrayType); 4593 } 4594 4595 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4596 // Visit the type parameters from a permissive context. 4597 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { 4598 TemplateArgumentLoc TAL = TL.getArgLoc(I); 4599 if (TAL.getArgument().getKind() == TemplateArgument::Type) 4600 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) 4601 Visit(TSI->getTypeLoc(), Sema::AbstractNone); 4602 // TODO: other template argument types? 4603 } 4604 } 4605 4606 // Visit pointee types from a permissive context. 4607 #define CheckPolymorphic(Type) \ 4608 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \ 4609 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \ 4610 } 4611 CheckPolymorphic(PointerTypeLoc) 4612 CheckPolymorphic(ReferenceTypeLoc) 4613 CheckPolymorphic(MemberPointerTypeLoc) 4614 CheckPolymorphic(BlockPointerTypeLoc) 4615 CheckPolymorphic(AtomicTypeLoc) 4616 4617 /// Handle all the types we haven't given a more specific 4618 /// implementation for above. 4619 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4620 // Every other kind of type that we haven't called out already 4621 // that has an inner type is either (1) sugar or (2) contains that 4622 // inner type in some way as a subobject. 4623 if (TypeLoc Next = TL.getNextTypeLoc()) 4624 return Visit(Next, Sel); 4625 4626 // If there's no inner type and we're in a permissive context, 4627 // don't diagnose. 4628 if (Sel == Sema::AbstractNone) return; 4629 4630 // Check whether the type matches the abstract type. 4631 QualType T = TL.getType(); 4632 if (T->isArrayType()) { 4633 Sel = Sema::AbstractArrayType; 4634 T = Info.S.Context.getBaseElementType(T); 4635 } 4636 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType(); 4637 if (CT != Info.AbstractType) return; 4638 4639 // It matched; do some magic. 4640 if (Sel == Sema::AbstractArrayType) { 4641 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type) 4642 << T << TL.getSourceRange(); 4643 } else { 4644 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl) 4645 << Sel << T << TL.getSourceRange(); 4646 } 4647 Info.DiagnoseAbstractType(); 4648 } 4649 }; 4650 4651 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, 4652 Sema::AbstractDiagSelID Sel) { 4653 CheckAbstractUsage(*this, D).Visit(TL, Sel); 4654 } 4655 4656 } 4657 4658 /// Check for invalid uses of an abstract type in a method declaration. 4659 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4660 CXXMethodDecl *MD) { 4661 // No need to do the check on definitions, which require that 4662 // the return/param types be complete. 4663 if (MD->doesThisDeclarationHaveABody()) 4664 return; 4665 4666 // For safety's sake, just ignore it if we don't have type source 4667 // information. This should never happen for non-implicit methods, 4668 // but... 4669 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) 4670 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); 4671 } 4672 4673 /// Check for invalid uses of an abstract type within a class definition. 4674 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4675 CXXRecordDecl *RD) { 4676 for (auto *D : RD->decls()) { 4677 if (D->isImplicit()) continue; 4678 4679 // Methods and method templates. 4680 if (isa<CXXMethodDecl>(D)) { 4681 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D)); 4682 } else if (isa<FunctionTemplateDecl>(D)) { 4683 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl(); 4684 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD)); 4685 4686 // Fields and static variables. 4687 } else if (isa<FieldDecl>(D)) { 4688 FieldDecl *FD = cast<FieldDecl>(D); 4689 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) 4690 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); 4691 } else if (isa<VarDecl>(D)) { 4692 VarDecl *VD = cast<VarDecl>(D); 4693 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) 4694 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); 4695 4696 // Nested classes and class templates. 4697 } else if (isa<CXXRecordDecl>(D)) { 4698 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D)); 4699 } else if (isa<ClassTemplateDecl>(D)) { 4700 CheckAbstractClassUsage(Info, 4701 cast<ClassTemplateDecl>(D)->getTemplatedDecl()); 4702 } 4703 } 4704 } 4705 4706 /// \brief Check class-level dllimport/dllexport attribute. 4707 static void checkDLLAttribute(Sema &S, CXXRecordDecl *Class) { 4708 Attr *ClassAttr = getDLLAttr(Class); 4709 4710 // MSVC inherits DLL attributes to partial class template specializations. 4711 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) { 4712 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) { 4713 if (Attr *TemplateAttr = 4714 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) { 4715 auto *A = cast<InheritableAttr>(TemplateAttr->clone(S.getASTContext())); 4716 A->setInherited(true); 4717 ClassAttr = A; 4718 } 4719 } 4720 } 4721 4722 if (!ClassAttr) 4723 return; 4724 4725 if (!Class->isExternallyVisible()) { 4726 S.Diag(Class->getLocation(), diag::err_attribute_dll_not_extern) 4727 << Class << ClassAttr; 4728 return; 4729 } 4730 4731 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && 4732 !ClassAttr->isInherited()) { 4733 // Diagnose dll attributes on members of class with dll attribute. 4734 for (Decl *Member : Class->decls()) { 4735 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member)) 4736 continue; 4737 InheritableAttr *MemberAttr = getDLLAttr(Member); 4738 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl()) 4739 continue; 4740 4741 S.Diag(MemberAttr->getLocation(), 4742 diag::err_attribute_dll_member_of_dll_class) 4743 << MemberAttr << ClassAttr; 4744 S.Diag(ClassAttr->getLocation(), diag::note_previous_attribute); 4745 Member->setInvalidDecl(); 4746 } 4747 } 4748 4749 if (Class->getDescribedClassTemplate()) 4750 // Don't inherit dll attribute until the template is instantiated. 4751 return; 4752 4753 // The class is either imported or exported. 4754 const bool ClassExported = ClassAttr->getKind() == attr::DLLExport; 4755 const bool ClassImported = !ClassExported; 4756 4757 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 4758 4759 // Don't dllexport explicit class template instantiation declarations. 4760 if (ClassExported && TSK == TSK_ExplicitInstantiationDeclaration) { 4761 Class->dropAttr<DLLExportAttr>(); 4762 return; 4763 } 4764 4765 // Force declaration of implicit members so they can inherit the attribute. 4766 S.ForceDeclarationOfImplicitMembers(Class); 4767 4768 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't 4769 // seem to be true in practice? 4770 4771 for (Decl *Member : Class->decls()) { 4772 VarDecl *VD = dyn_cast<VarDecl>(Member); 4773 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member); 4774 4775 // Only methods and static fields inherit the attributes. 4776 if (!VD && !MD) 4777 continue; 4778 4779 if (MD) { 4780 // Don't process deleted methods. 4781 if (MD->isDeleted()) 4782 continue; 4783 4784 if (MD->isMoveAssignmentOperator() && ClassImported && MD->isInlined()) { 4785 // Current MSVC versions don't export the move assignment operators, so 4786 // don't attempt to import them if we have a definition. 4787 continue; 4788 } 4789 4790 if (MD->isInlined() && 4791 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 4792 // MinGW does not import or export inline methods. 4793 continue; 4794 } 4795 } 4796 4797 if (!getDLLAttr(Member)) { 4798 auto *NewAttr = 4799 cast<InheritableAttr>(ClassAttr->clone(S.getASTContext())); 4800 NewAttr->setInherited(true); 4801 Member->addAttr(NewAttr); 4802 } 4803 4804 if (MD && ClassExported) { 4805 if (MD->isUserProvided()) { 4806 // Instantiate non-default class member functions ... 4807 4808 // .. except for certain kinds of template specializations. 4809 if (TSK == TSK_ExplicitInstantiationDeclaration) 4810 continue; 4811 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited()) 4812 continue; 4813 4814 S.MarkFunctionReferenced(Class->getLocation(), MD); 4815 4816 // The function will be passed to the consumer when its definition is 4817 // encountered. 4818 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() || 4819 MD->isCopyAssignmentOperator() || 4820 MD->isMoveAssignmentOperator()) { 4821 // Synthesize and instantiate non-trivial implicit methods, explicitly 4822 // defaulted methods, and the copy and move assignment operators. The 4823 // latter are exported even if they are trivial, because the address of 4824 // an operator can be taken and should compare equal accross libraries. 4825 DiagnosticErrorTrap Trap(S.Diags); 4826 S.MarkFunctionReferenced(Class->getLocation(), MD); 4827 if (Trap.hasErrorOccurred()) { 4828 S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class) 4829 << Class->getName() << !S.getLangOpts().CPlusPlus11; 4830 break; 4831 } 4832 4833 // There is no later point when we will see the definition of this 4834 // function, so pass it to the consumer now. 4835 S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD)); 4836 } 4837 } 4838 } 4839 } 4840 4841 /// \brief Perform semantic checks on a class definition that has been 4842 /// completing, introducing implicitly-declared members, checking for 4843 /// abstract types, etc. 4844 void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) { 4845 if (!Record) 4846 return; 4847 4848 if (Record->isAbstract() && !Record->isInvalidDecl()) { 4849 AbstractUsageInfo Info(*this, Record); 4850 CheckAbstractClassUsage(Info, Record); 4851 } 4852 4853 // If this is not an aggregate type and has no user-declared constructor, 4854 // complain about any non-static data members of reference or const scalar 4855 // type, since they will never get initializers. 4856 if (!Record->isInvalidDecl() && !Record->isDependentType() && 4857 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() && 4858 !Record->isLambda()) { 4859 bool Complained = false; 4860 for (const auto *F : Record->fields()) { 4861 if (F->hasInClassInitializer() || F->isUnnamedBitfield()) 4862 continue; 4863 4864 if (F->getType()->isReferenceType() || 4865 (F->getType().isConstQualified() && F->getType()->isScalarType())) { 4866 if (!Complained) { 4867 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst) 4868 << Record->getTagKind() << Record; 4869 Complained = true; 4870 } 4871 4872 Diag(F->getLocation(), diag::note_refconst_member_not_initialized) 4873 << F->getType()->isReferenceType() 4874 << F->getDeclName(); 4875 } 4876 } 4877 } 4878 4879 if (Record->getIdentifier()) { 4880 // C++ [class.mem]p13: 4881 // If T is the name of a class, then each of the following shall have a 4882 // name different from T: 4883 // - every member of every anonymous union that is a member of class T. 4884 // 4885 // C++ [class.mem]p14: 4886 // In addition, if class T has a user-declared constructor (12.1), every 4887 // non-static data member of class T shall have a name different from T. 4888 DeclContext::lookup_result R = Record->lookup(Record->getDeclName()); 4889 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 4890 ++I) { 4891 NamedDecl *D = *I; 4892 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) || 4893 isa<IndirectFieldDecl>(D)) { 4894 Diag(D->getLocation(), diag::err_member_name_of_class) 4895 << D->getDeclName(); 4896 break; 4897 } 4898 } 4899 } 4900 4901 // Warn if the class has virtual methods but non-virtual public destructor. 4902 if (Record->isPolymorphic() && !Record->isDependentType()) { 4903 CXXDestructorDecl *dtor = Record->getDestructor(); 4904 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) && 4905 !Record->hasAttr<FinalAttr>()) 4906 Diag(dtor ? dtor->getLocation() : Record->getLocation(), 4907 diag::warn_non_virtual_dtor) << Context.getRecordType(Record); 4908 } 4909 4910 if (Record->isAbstract()) { 4911 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) { 4912 Diag(Record->getLocation(), diag::warn_abstract_final_class) 4913 << FA->isSpelledAsSealed(); 4914 DiagnoseAbstractType(Record); 4915 } 4916 } 4917 4918 bool HasMethodWithOverrideControl = false, 4919 HasOverridingMethodWithoutOverrideControl = false; 4920 if (!Record->isDependentType()) { 4921 for (auto *M : Record->methods()) { 4922 // See if a method overloads virtual methods in a base 4923 // class without overriding any. 4924 if (!M->isStatic()) 4925 DiagnoseHiddenVirtualMethods(M); 4926 if (M->hasAttr<OverrideAttr>()) 4927 HasMethodWithOverrideControl = true; 4928 else if (M->size_overridden_methods() > 0) 4929 HasOverridingMethodWithoutOverrideControl = true; 4930 // Check whether the explicitly-defaulted special members are valid. 4931 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted()) 4932 CheckExplicitlyDefaultedSpecialMember(M); 4933 4934 // For an explicitly defaulted or deleted special member, we defer 4935 // determining triviality until the class is complete. That time is now! 4936 if (!M->isImplicit() && !M->isUserProvided()) { 4937 CXXSpecialMember CSM = getSpecialMember(M); 4938 if (CSM != CXXInvalid) { 4939 M->setTrivial(SpecialMemberIsTrivial(M, CSM)); 4940 4941 // Inform the class that we've finished declaring this member. 4942 Record->finishedDefaultedOrDeletedMember(M); 4943 } 4944 } 4945 } 4946 } 4947 4948 if (HasMethodWithOverrideControl && 4949 HasOverridingMethodWithoutOverrideControl) { 4950 // At least one method has the 'override' control declared. 4951 // Diagnose all other overridden methods which do not have 'override' specified on them. 4952 for (auto *M : Record->methods()) 4953 DiagnoseAbsenceOfOverrideControl(M); 4954 } 4955 4956 // ms_struct is a request to use the same ABI rules as MSVC. Check 4957 // whether this class uses any C++ features that are implemented 4958 // completely differently in MSVC, and if so, emit a diagnostic. 4959 // That diagnostic defaults to an error, but we allow projects to 4960 // map it down to a warning (or ignore it). It's a fairly common 4961 // practice among users of the ms_struct pragma to mass-annotate 4962 // headers, sweeping up a bunch of types that the project doesn't 4963 // really rely on MSVC-compatible layout for. We must therefore 4964 // support "ms_struct except for C++ stuff" as a secondary ABI. 4965 if (Record->isMsStruct(Context) && 4966 (Record->isPolymorphic() || Record->getNumBases())) { 4967 Diag(Record->getLocation(), diag::warn_cxx_ms_struct); 4968 } 4969 4970 // Declare inheriting constructors. We do this eagerly here because: 4971 // - The standard requires an eager diagnostic for conflicting inheriting 4972 // constructors from different classes. 4973 // - The lazy declaration of the other implicit constructors is so as to not 4974 // waste space and performance on classes that are not meant to be 4975 // instantiated (e.g. meta-functions). This doesn't apply to classes that 4976 // have inheriting constructors. 4977 DeclareInheritingConstructors(Record); 4978 4979 checkDLLAttribute(*this, Record); 4980 } 4981 4982 /// Look up the special member function that would be called by a special 4983 /// member function for a subobject of class type. 4984 /// 4985 /// \param Class The class type of the subobject. 4986 /// \param CSM The kind of special member function. 4987 /// \param FieldQuals If the subobject is a field, its cv-qualifiers. 4988 /// \param ConstRHS True if this is a copy operation with a const object 4989 /// on its RHS, that is, if the argument to the outer special member 4990 /// function is 'const' and this is not a field marked 'mutable'. 4991 static Sema::SpecialMemberOverloadResult *lookupCallFromSpecialMember( 4992 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM, 4993 unsigned FieldQuals, bool ConstRHS) { 4994 unsigned LHSQuals = 0; 4995 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment) 4996 LHSQuals = FieldQuals; 4997 4998 unsigned RHSQuals = FieldQuals; 4999 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor) 5000 RHSQuals = 0; 5001 else if (ConstRHS) 5002 RHSQuals |= Qualifiers::Const; 5003 5004 return S.LookupSpecialMember(Class, CSM, 5005 RHSQuals & Qualifiers::Const, 5006 RHSQuals & Qualifiers::Volatile, 5007 false, 5008 LHSQuals & Qualifiers::Const, 5009 LHSQuals & Qualifiers::Volatile); 5010 } 5011 5012 /// Is the special member function which would be selected to perform the 5013 /// specified operation on the specified class type a constexpr constructor? 5014 static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5015 Sema::CXXSpecialMember CSM, 5016 unsigned Quals, bool ConstRHS) { 5017 Sema::SpecialMemberOverloadResult *SMOR = 5018 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS); 5019 if (!SMOR || !SMOR->getMethod()) 5020 // A constructor we wouldn't select can't be "involved in initializing" 5021 // anything. 5022 return true; 5023 return SMOR->getMethod()->isConstexpr(); 5024 } 5025 5026 /// Determine whether the specified special member function would be constexpr 5027 /// if it were implicitly defined. 5028 static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5029 Sema::CXXSpecialMember CSM, 5030 bool ConstArg) { 5031 if (!S.getLangOpts().CPlusPlus11) 5032 return false; 5033 5034 // C++11 [dcl.constexpr]p4: 5035 // In the definition of a constexpr constructor [...] 5036 bool Ctor = true; 5037 switch (CSM) { 5038 case Sema::CXXDefaultConstructor: 5039 // Since default constructor lookup is essentially trivial (and cannot 5040 // involve, for instance, template instantiation), we compute whether a 5041 // defaulted default constructor is constexpr directly within CXXRecordDecl. 5042 // 5043 // This is important for performance; we need to know whether the default 5044 // constructor is constexpr to determine whether the type is a literal type. 5045 return ClassDecl->defaultedDefaultConstructorIsConstexpr(); 5046 5047 case Sema::CXXCopyConstructor: 5048 case Sema::CXXMoveConstructor: 5049 // For copy or move constructors, we need to perform overload resolution. 5050 break; 5051 5052 case Sema::CXXCopyAssignment: 5053 case Sema::CXXMoveAssignment: 5054 if (!S.getLangOpts().CPlusPlus14) 5055 return false; 5056 // In C++1y, we need to perform overload resolution. 5057 Ctor = false; 5058 break; 5059 5060 case Sema::CXXDestructor: 5061 case Sema::CXXInvalid: 5062 return false; 5063 } 5064 5065 // -- if the class is a non-empty union, or for each non-empty anonymous 5066 // union member of a non-union class, exactly one non-static data member 5067 // shall be initialized; [DR1359] 5068 // 5069 // If we squint, this is guaranteed, since exactly one non-static data member 5070 // will be initialized (if the constructor isn't deleted), we just don't know 5071 // which one. 5072 if (Ctor && ClassDecl->isUnion()) 5073 return true; 5074 5075 // -- the class shall not have any virtual base classes; 5076 if (Ctor && ClassDecl->getNumVBases()) 5077 return false; 5078 5079 // C++1y [class.copy]p26: 5080 // -- [the class] is a literal type, and 5081 if (!Ctor && !ClassDecl->isLiteral()) 5082 return false; 5083 5084 // -- every constructor involved in initializing [...] base class 5085 // sub-objects shall be a constexpr constructor; 5086 // -- the assignment operator selected to copy/move each direct base 5087 // class is a constexpr function, and 5088 for (const auto &B : ClassDecl->bases()) { 5089 const RecordType *BaseType = B.getType()->getAs<RecordType>(); 5090 if (!BaseType) continue; 5091 5092 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 5093 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg)) 5094 return false; 5095 } 5096 5097 // -- every constructor involved in initializing non-static data members 5098 // [...] shall be a constexpr constructor; 5099 // -- every non-static data member and base class sub-object shall be 5100 // initialized 5101 // -- for each non-static data member of X that is of class type (or array 5102 // thereof), the assignment operator selected to copy/move that member is 5103 // a constexpr function 5104 for (const auto *F : ClassDecl->fields()) { 5105 if (F->isInvalidDecl()) 5106 continue; 5107 QualType BaseType = S.Context.getBaseElementType(F->getType()); 5108 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 5109 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 5110 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, 5111 BaseType.getCVRQualifiers(), 5112 ConstArg && !F->isMutable())) 5113 return false; 5114 } 5115 } 5116 5117 // All OK, it's constexpr! 5118 return true; 5119 } 5120 5121 static Sema::ImplicitExceptionSpecification 5122 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) { 5123 switch (S.getSpecialMember(MD)) { 5124 case Sema::CXXDefaultConstructor: 5125 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD); 5126 case Sema::CXXCopyConstructor: 5127 return S.ComputeDefaultedCopyCtorExceptionSpec(MD); 5128 case Sema::CXXCopyAssignment: 5129 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD); 5130 case Sema::CXXMoveConstructor: 5131 return S.ComputeDefaultedMoveCtorExceptionSpec(MD); 5132 case Sema::CXXMoveAssignment: 5133 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD); 5134 case Sema::CXXDestructor: 5135 return S.ComputeDefaultedDtorExceptionSpec(MD); 5136 case Sema::CXXInvalid: 5137 break; 5138 } 5139 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() && 5140 "only special members have implicit exception specs"); 5141 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD)); 5142 } 5143 5144 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S, 5145 CXXMethodDecl *MD) { 5146 FunctionProtoType::ExtProtoInfo EPI; 5147 5148 // Build an exception specification pointing back at this member. 5149 EPI.ExceptionSpec.Type = EST_Unevaluated; 5150 EPI.ExceptionSpec.SourceDecl = MD; 5151 5152 // Set the calling convention to the default for C++ instance methods. 5153 EPI.ExtInfo = EPI.ExtInfo.withCallingConv( 5154 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5155 /*IsCXXMethod=*/true)); 5156 return EPI; 5157 } 5158 5159 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) { 5160 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); 5161 if (FPT->getExceptionSpecType() != EST_Unevaluated) 5162 return; 5163 5164 // Evaluate the exception specification. 5165 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec(); 5166 5167 // Update the type of the special member to use it. 5168 UpdateExceptionSpec(MD, ESI); 5169 5170 // A user-provided destructor can be defined outside the class. When that 5171 // happens, be sure to update the exception specification on both 5172 // declarations. 5173 const FunctionProtoType *CanonicalFPT = 5174 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>(); 5175 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) 5176 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI); 5177 } 5178 5179 void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) { 5180 CXXRecordDecl *RD = MD->getParent(); 5181 CXXSpecialMember CSM = getSpecialMember(MD); 5182 5183 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid && 5184 "not an explicitly-defaulted special member"); 5185 5186 // Whether this was the first-declared instance of the constructor. 5187 // This affects whether we implicitly add an exception spec and constexpr. 5188 bool First = MD == MD->getCanonicalDecl(); 5189 5190 bool HadError = false; 5191 5192 // C++11 [dcl.fct.def.default]p1: 5193 // A function that is explicitly defaulted shall 5194 // -- be a special member function (checked elsewhere), 5195 // -- have the same type (except for ref-qualifiers, and except that a 5196 // copy operation can take a non-const reference) as an implicit 5197 // declaration, and 5198 // -- not have default arguments. 5199 unsigned ExpectedParams = 1; 5200 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor) 5201 ExpectedParams = 0; 5202 if (MD->getNumParams() != ExpectedParams) { 5203 // This also checks for default arguments: a copy or move constructor with a 5204 // default argument is classified as a default constructor, and assignment 5205 // operations and destructors can't have default arguments. 5206 Diag(MD->getLocation(), diag::err_defaulted_special_member_params) 5207 << CSM << MD->getSourceRange(); 5208 HadError = true; 5209 } else if (MD->isVariadic()) { 5210 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic) 5211 << CSM << MD->getSourceRange(); 5212 HadError = true; 5213 } 5214 5215 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>(); 5216 5217 bool CanHaveConstParam = false; 5218 if (CSM == CXXCopyConstructor) 5219 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam(); 5220 else if (CSM == CXXCopyAssignment) 5221 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam(); 5222 5223 QualType ReturnType = Context.VoidTy; 5224 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) { 5225 // Check for return type matching. 5226 ReturnType = Type->getReturnType(); 5227 QualType ExpectedReturnType = 5228 Context.getLValueReferenceType(Context.getTypeDeclType(RD)); 5229 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) { 5230 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type) 5231 << (CSM == CXXMoveAssignment) << ExpectedReturnType; 5232 HadError = true; 5233 } 5234 5235 // A defaulted special member cannot have cv-qualifiers. 5236 if (Type->getTypeQuals()) { 5237 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals) 5238 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14; 5239 HadError = true; 5240 } 5241 } 5242 5243 // Check for parameter type matching. 5244 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType(); 5245 bool HasConstParam = false; 5246 if (ExpectedParams && ArgType->isReferenceType()) { 5247 // Argument must be reference to possibly-const T. 5248 QualType ReferentType = ArgType->getPointeeType(); 5249 HasConstParam = ReferentType.isConstQualified(); 5250 5251 if (ReferentType.isVolatileQualified()) { 5252 Diag(MD->getLocation(), 5253 diag::err_defaulted_special_member_volatile_param) << CSM; 5254 HadError = true; 5255 } 5256 5257 if (HasConstParam && !CanHaveConstParam) { 5258 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) { 5259 Diag(MD->getLocation(), 5260 diag::err_defaulted_special_member_copy_const_param) 5261 << (CSM == CXXCopyAssignment); 5262 // FIXME: Explain why this special member can't be const. 5263 } else { 5264 Diag(MD->getLocation(), 5265 diag::err_defaulted_special_member_move_const_param) 5266 << (CSM == CXXMoveAssignment); 5267 } 5268 HadError = true; 5269 } 5270 } else if (ExpectedParams) { 5271 // A copy assignment operator can take its argument by value, but a 5272 // defaulted one cannot. 5273 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument"); 5274 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref); 5275 HadError = true; 5276 } 5277 5278 // C++11 [dcl.fct.def.default]p2: 5279 // An explicitly-defaulted function may be declared constexpr only if it 5280 // would have been implicitly declared as constexpr, 5281 // Do not apply this rule to members of class templates, since core issue 1358 5282 // makes such functions always instantiate to constexpr functions. For 5283 // functions which cannot be constexpr (for non-constructors in C++11 and for 5284 // destructors in C++1y), this is checked elsewhere. 5285 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM, 5286 HasConstParam); 5287 if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD) 5288 : isa<CXXConstructorDecl>(MD)) && 5289 MD->isConstexpr() && !Constexpr && 5290 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) { 5291 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM; 5292 // FIXME: Explain why the special member can't be constexpr. 5293 HadError = true; 5294 } 5295 5296 // and may have an explicit exception-specification only if it is compatible 5297 // with the exception-specification on the implicit declaration. 5298 if (Type->hasExceptionSpec()) { 5299 // Delay the check if this is the first declaration of the special member, 5300 // since we may not have parsed some necessary in-class initializers yet. 5301 if (First) { 5302 // If the exception specification needs to be instantiated, do so now, 5303 // before we clobber it with an EST_Unevaluated specification below. 5304 if (Type->getExceptionSpecType() == EST_Uninstantiated) { 5305 InstantiateExceptionSpec(MD->getLocStart(), MD); 5306 Type = MD->getType()->getAs<FunctionProtoType>(); 5307 } 5308 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type)); 5309 } else 5310 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type); 5311 } 5312 5313 // If a function is explicitly defaulted on its first declaration, 5314 if (First) { 5315 // -- it is implicitly considered to be constexpr if the implicit 5316 // definition would be, 5317 MD->setConstexpr(Constexpr); 5318 5319 // -- it is implicitly considered to have the same exception-specification 5320 // as if it had been implicitly declared, 5321 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo(); 5322 EPI.ExceptionSpec.Type = EST_Unevaluated; 5323 EPI.ExceptionSpec.SourceDecl = MD; 5324 MD->setType(Context.getFunctionType(ReturnType, 5325 llvm::makeArrayRef(&ArgType, 5326 ExpectedParams), 5327 EPI)); 5328 } 5329 5330 if (ShouldDeleteSpecialMember(MD, CSM)) { 5331 if (First) { 5332 SetDeclDeleted(MD, MD->getLocation()); 5333 } else { 5334 // C++11 [dcl.fct.def.default]p4: 5335 // [For a] user-provided explicitly-defaulted function [...] if such a 5336 // function is implicitly defined as deleted, the program is ill-formed. 5337 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM; 5338 ShouldDeleteSpecialMember(MD, CSM, /*Diagnose*/true); 5339 HadError = true; 5340 } 5341 } 5342 5343 if (HadError) 5344 MD->setInvalidDecl(); 5345 } 5346 5347 /// Check whether the exception specification provided for an 5348 /// explicitly-defaulted special member matches the exception specification 5349 /// that would have been generated for an implicit special member, per 5350 /// C++11 [dcl.fct.def.default]p2. 5351 void Sema::CheckExplicitlyDefaultedMemberExceptionSpec( 5352 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) { 5353 // If the exception specification was explicitly specified but hadn't been 5354 // parsed when the method was defaulted, grab it now. 5355 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed) 5356 SpecifiedType = 5357 MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>(); 5358 5359 // Compute the implicit exception specification. 5360 CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5361 /*IsCXXMethod=*/true); 5362 FunctionProtoType::ExtProtoInfo EPI(CC); 5363 EPI.ExceptionSpec = computeImplicitExceptionSpec(*this, MD->getLocation(), MD) 5364 .getExceptionSpec(); 5365 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>( 5366 Context.getFunctionType(Context.VoidTy, None, EPI)); 5367 5368 // Ensure that it matches. 5369 CheckEquivalentExceptionSpec( 5370 PDiag(diag::err_incorrect_defaulted_exception_spec) 5371 << getSpecialMember(MD), PDiag(), 5372 ImplicitType, SourceLocation(), 5373 SpecifiedType, MD->getLocation()); 5374 } 5375 5376 void Sema::CheckDelayedMemberExceptionSpecs() { 5377 decltype(DelayedExceptionSpecChecks) Checks; 5378 decltype(DelayedDefaultedMemberExceptionSpecs) Specs; 5379 5380 std::swap(Checks, DelayedExceptionSpecChecks); 5381 std::swap(Specs, DelayedDefaultedMemberExceptionSpecs); 5382 5383 // Perform any deferred checking of exception specifications for virtual 5384 // destructors. 5385 for (auto &Check : Checks) 5386 CheckOverridingFunctionExceptionSpec(Check.first, Check.second); 5387 5388 // Check that any explicitly-defaulted methods have exception specifications 5389 // compatible with their implicit exception specifications. 5390 for (auto &Spec : Specs) 5391 CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second); 5392 } 5393 5394 namespace { 5395 struct SpecialMemberDeletionInfo { 5396 Sema &S; 5397 CXXMethodDecl *MD; 5398 Sema::CXXSpecialMember CSM; 5399 bool Diagnose; 5400 5401 // Properties of the special member, computed for convenience. 5402 bool IsConstructor, IsAssignment, IsMove, ConstArg; 5403 SourceLocation Loc; 5404 5405 bool AllFieldsAreConst; 5406 5407 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD, 5408 Sema::CXXSpecialMember CSM, bool Diagnose) 5409 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose), 5410 IsConstructor(false), IsAssignment(false), IsMove(false), 5411 ConstArg(false), Loc(MD->getLocation()), 5412 AllFieldsAreConst(true) { 5413 switch (CSM) { 5414 case Sema::CXXDefaultConstructor: 5415 case Sema::CXXCopyConstructor: 5416 IsConstructor = true; 5417 break; 5418 case Sema::CXXMoveConstructor: 5419 IsConstructor = true; 5420 IsMove = true; 5421 break; 5422 case Sema::CXXCopyAssignment: 5423 IsAssignment = true; 5424 break; 5425 case Sema::CXXMoveAssignment: 5426 IsAssignment = true; 5427 IsMove = true; 5428 break; 5429 case Sema::CXXDestructor: 5430 break; 5431 case Sema::CXXInvalid: 5432 llvm_unreachable("invalid special member kind"); 5433 } 5434 5435 if (MD->getNumParams()) { 5436 if (const ReferenceType *RT = 5437 MD->getParamDecl(0)->getType()->getAs<ReferenceType>()) 5438 ConstArg = RT->getPointeeType().isConstQualified(); 5439 } 5440 } 5441 5442 bool inUnion() const { return MD->getParent()->isUnion(); } 5443 5444 /// Look up the corresponding special member in the given class. 5445 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class, 5446 unsigned Quals, bool IsMutable) { 5447 return lookupCallFromSpecialMember(S, Class, CSM, Quals, 5448 ConstArg && !IsMutable); 5449 } 5450 5451 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject; 5452 5453 bool shouldDeleteForBase(CXXBaseSpecifier *Base); 5454 bool shouldDeleteForField(FieldDecl *FD); 5455 bool shouldDeleteForAllConstMembers(); 5456 5457 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj, 5458 unsigned Quals); 5459 bool shouldDeleteForSubobjectCall(Subobject Subobj, 5460 Sema::SpecialMemberOverloadResult *SMOR, 5461 bool IsDtorCallInCtor); 5462 5463 bool isAccessible(Subobject Subobj, CXXMethodDecl *D); 5464 }; 5465 } 5466 5467 /// Is the given special member inaccessible when used on the given 5468 /// sub-object. 5469 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj, 5470 CXXMethodDecl *target) { 5471 /// If we're operating on a base class, the object type is the 5472 /// type of this special member. 5473 QualType objectTy; 5474 AccessSpecifier access = target->getAccess(); 5475 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) { 5476 objectTy = S.Context.getTypeDeclType(MD->getParent()); 5477 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access); 5478 5479 // If we're operating on a field, the object type is the type of the field. 5480 } else { 5481 objectTy = S.Context.getTypeDeclType(target->getParent()); 5482 } 5483 5484 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy); 5485 } 5486 5487 /// Check whether we should delete a special member due to the implicit 5488 /// definition containing a call to a special member of a subobject. 5489 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall( 5490 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR, 5491 bool IsDtorCallInCtor) { 5492 CXXMethodDecl *Decl = SMOR->getMethod(); 5493 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5494 5495 int DiagKind = -1; 5496 5497 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted) 5498 DiagKind = !Decl ? 0 : 1; 5499 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5500 DiagKind = 2; 5501 else if (!isAccessible(Subobj, Decl)) 5502 DiagKind = 3; 5503 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() && 5504 !Decl->isTrivial()) { 5505 // A member of a union must have a trivial corresponding special member. 5506 // As a weird special case, a destructor call from a union's constructor 5507 // must be accessible and non-deleted, but need not be trivial. Such a 5508 // destructor is never actually called, but is semantically checked as 5509 // if it were. 5510 DiagKind = 4; 5511 } 5512 5513 if (DiagKind == -1) 5514 return false; 5515 5516 if (Diagnose) { 5517 if (Field) { 5518 S.Diag(Field->getLocation(), 5519 diag::note_deleted_special_member_class_subobject) 5520 << CSM << MD->getParent() << /*IsField*/true 5521 << Field << DiagKind << IsDtorCallInCtor; 5522 } else { 5523 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>(); 5524 S.Diag(Base->getLocStart(), 5525 diag::note_deleted_special_member_class_subobject) 5526 << CSM << MD->getParent() << /*IsField*/false 5527 << Base->getType() << DiagKind << IsDtorCallInCtor; 5528 } 5529 5530 if (DiagKind == 1) 5531 S.NoteDeletedFunction(Decl); 5532 // FIXME: Explain inaccessibility if DiagKind == 3. 5533 } 5534 5535 return true; 5536 } 5537 5538 /// Check whether we should delete a special member function due to having a 5539 /// direct or virtual base class or non-static data member of class type M. 5540 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject( 5541 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) { 5542 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5543 bool IsMutable = Field && Field->isMutable(); 5544 5545 // C++11 [class.ctor]p5: 5546 // -- any direct or virtual base class, or non-static data member with no 5547 // brace-or-equal-initializer, has class type M (or array thereof) and 5548 // either M has no default constructor or overload resolution as applied 5549 // to M's default constructor results in an ambiguity or in a function 5550 // that is deleted or inaccessible 5551 // C++11 [class.copy]p11, C++11 [class.copy]p23: 5552 // -- a direct or virtual base class B that cannot be copied/moved because 5553 // overload resolution, as applied to B's corresponding special member, 5554 // results in an ambiguity or a function that is deleted or inaccessible 5555 // from the defaulted special member 5556 // C++11 [class.dtor]p5: 5557 // -- any direct or virtual base class [...] has a type with a destructor 5558 // that is deleted or inaccessible 5559 if (!(CSM == Sema::CXXDefaultConstructor && 5560 Field && Field->hasInClassInitializer()) && 5561 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable), 5562 false)) 5563 return true; 5564 5565 // C++11 [class.ctor]p5, C++11 [class.copy]p11: 5566 // -- any direct or virtual base class or non-static data member has a 5567 // type with a destructor that is deleted or inaccessible 5568 if (IsConstructor) { 5569 Sema::SpecialMemberOverloadResult *SMOR = 5570 S.LookupSpecialMember(Class, Sema::CXXDestructor, 5571 false, false, false, false, false); 5572 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true)) 5573 return true; 5574 } 5575 5576 return false; 5577 } 5578 5579 /// Check whether we should delete a special member function due to the class 5580 /// having a particular direct or virtual base class. 5581 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) { 5582 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl(); 5583 return shouldDeleteForClassSubobject(BaseClass, Base, 0); 5584 } 5585 5586 /// Check whether we should delete a special member function due to the class 5587 /// having a particular non-static data member. 5588 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) { 5589 QualType FieldType = S.Context.getBaseElementType(FD->getType()); 5590 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl(); 5591 5592 if (CSM == Sema::CXXDefaultConstructor) { 5593 // For a default constructor, all references must be initialized in-class 5594 // and, if a union, it must have a non-const member. 5595 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) { 5596 if (Diagnose) 5597 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5598 << MD->getParent() << FD << FieldType << /*Reference*/0; 5599 return true; 5600 } 5601 // C++11 [class.ctor]p5: any non-variant non-static data member of 5602 // const-qualified type (or array thereof) with no 5603 // brace-or-equal-initializer does not have a user-provided default 5604 // constructor. 5605 if (!inUnion() && FieldType.isConstQualified() && 5606 !FD->hasInClassInitializer() && 5607 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) { 5608 if (Diagnose) 5609 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5610 << MD->getParent() << FD << FD->getType() << /*Const*/1; 5611 return true; 5612 } 5613 5614 if (inUnion() && !FieldType.isConstQualified()) 5615 AllFieldsAreConst = false; 5616 } else if (CSM == Sema::CXXCopyConstructor) { 5617 // For a copy constructor, data members must not be of rvalue reference 5618 // type. 5619 if (FieldType->isRValueReferenceType()) { 5620 if (Diagnose) 5621 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference) 5622 << MD->getParent() << FD << FieldType; 5623 return true; 5624 } 5625 } else if (IsAssignment) { 5626 // For an assignment operator, data members must not be of reference type. 5627 if (FieldType->isReferenceType()) { 5628 if (Diagnose) 5629 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5630 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0; 5631 return true; 5632 } 5633 if (!FieldRecord && FieldType.isConstQualified()) { 5634 // C++11 [class.copy]p23: 5635 // -- a non-static data member of const non-class type (or array thereof) 5636 if (Diagnose) 5637 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5638 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1; 5639 return true; 5640 } 5641 } 5642 5643 if (FieldRecord) { 5644 // Some additional restrictions exist on the variant members. 5645 if (!inUnion() && FieldRecord->isUnion() && 5646 FieldRecord->isAnonymousStructOrUnion()) { 5647 bool AllVariantFieldsAreConst = true; 5648 5649 // FIXME: Handle anonymous unions declared within anonymous unions. 5650 for (auto *UI : FieldRecord->fields()) { 5651 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType()); 5652 5653 if (!UnionFieldType.isConstQualified()) 5654 AllVariantFieldsAreConst = false; 5655 5656 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl(); 5657 if (UnionFieldRecord && 5658 shouldDeleteForClassSubobject(UnionFieldRecord, UI, 5659 UnionFieldType.getCVRQualifiers())) 5660 return true; 5661 } 5662 5663 // At least one member in each anonymous union must be non-const 5664 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst && 5665 !FieldRecord->field_empty()) { 5666 if (Diagnose) 5667 S.Diag(FieldRecord->getLocation(), 5668 diag::note_deleted_default_ctor_all_const) 5669 << MD->getParent() << /*anonymous union*/1; 5670 return true; 5671 } 5672 5673 // Don't check the implicit member of the anonymous union type. 5674 // This is technically non-conformant, but sanity demands it. 5675 return false; 5676 } 5677 5678 if (shouldDeleteForClassSubobject(FieldRecord, FD, 5679 FieldType.getCVRQualifiers())) 5680 return true; 5681 } 5682 5683 return false; 5684 } 5685 5686 /// C++11 [class.ctor] p5: 5687 /// A defaulted default constructor for a class X is defined as deleted if 5688 /// X is a union and all of its variant members are of const-qualified type. 5689 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() { 5690 // This is a silly definition, because it gives an empty union a deleted 5691 // default constructor. Don't do that. 5692 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst && 5693 !MD->getParent()->field_empty()) { 5694 if (Diagnose) 5695 S.Diag(MD->getParent()->getLocation(), 5696 diag::note_deleted_default_ctor_all_const) 5697 << MD->getParent() << /*not anonymous union*/0; 5698 return true; 5699 } 5700 return false; 5701 } 5702 5703 /// Determine whether a defaulted special member function should be defined as 5704 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11, 5705 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5. 5706 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM, 5707 bool Diagnose) { 5708 if (MD->isInvalidDecl()) 5709 return false; 5710 CXXRecordDecl *RD = MD->getParent(); 5711 assert(!RD->isDependentType() && "do deletion after instantiation"); 5712 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl()) 5713 return false; 5714 5715 // C++11 [expr.lambda.prim]p19: 5716 // The closure type associated with a lambda-expression has a 5717 // deleted (8.4.3) default constructor and a deleted copy 5718 // assignment operator. 5719 if (RD->isLambda() && 5720 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) { 5721 if (Diagnose) 5722 Diag(RD->getLocation(), diag::note_lambda_decl); 5723 return true; 5724 } 5725 5726 // For an anonymous struct or union, the copy and assignment special members 5727 // will never be used, so skip the check. For an anonymous union declared at 5728 // namespace scope, the constructor and destructor are used. 5729 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor && 5730 RD->isAnonymousStructOrUnion()) 5731 return false; 5732 5733 // C++11 [class.copy]p7, p18: 5734 // If the class definition declares a move constructor or move assignment 5735 // operator, an implicitly declared copy constructor or copy assignment 5736 // operator is defined as deleted. 5737 if (MD->isImplicit() && 5738 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) { 5739 CXXMethodDecl *UserDeclaredMove = nullptr; 5740 5741 // In Microsoft mode, a user-declared move only causes the deletion of the 5742 // corresponding copy operation, not both copy operations. 5743 if (RD->hasUserDeclaredMoveConstructor() && 5744 (!getLangOpts().MSVCCompat || CSM == CXXCopyConstructor)) { 5745 if (!Diagnose) return true; 5746 5747 // Find any user-declared move constructor. 5748 for (auto *I : RD->ctors()) { 5749 if (I->isMoveConstructor()) { 5750 UserDeclaredMove = I; 5751 break; 5752 } 5753 } 5754 assert(UserDeclaredMove); 5755 } else if (RD->hasUserDeclaredMoveAssignment() && 5756 (!getLangOpts().MSVCCompat || CSM == CXXCopyAssignment)) { 5757 if (!Diagnose) return true; 5758 5759 // Find any user-declared move assignment operator. 5760 for (auto *I : RD->methods()) { 5761 if (I->isMoveAssignmentOperator()) { 5762 UserDeclaredMove = I; 5763 break; 5764 } 5765 } 5766 assert(UserDeclaredMove); 5767 } 5768 5769 if (UserDeclaredMove) { 5770 Diag(UserDeclaredMove->getLocation(), 5771 diag::note_deleted_copy_user_declared_move) 5772 << (CSM == CXXCopyAssignment) << RD 5773 << UserDeclaredMove->isMoveAssignmentOperator(); 5774 return true; 5775 } 5776 } 5777 5778 // Do access control from the special member function 5779 ContextRAII MethodContext(*this, MD); 5780 5781 // C++11 [class.dtor]p5: 5782 // -- for a virtual destructor, lookup of the non-array deallocation function 5783 // results in an ambiguity or in a function that is deleted or inaccessible 5784 if (CSM == CXXDestructor && MD->isVirtual()) { 5785 FunctionDecl *OperatorDelete = nullptr; 5786 DeclarationName Name = 5787 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 5788 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name, 5789 OperatorDelete, false)) { 5790 if (Diagnose) 5791 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete); 5792 return true; 5793 } 5794 } 5795 5796 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose); 5797 5798 for (auto &BI : RD->bases()) 5799 if (!BI.isVirtual() && 5800 SMI.shouldDeleteForBase(&BI)) 5801 return true; 5802 5803 // Per DR1611, do not consider virtual bases of constructors of abstract 5804 // classes, since we are not going to construct them. 5805 if (!RD->isAbstract() || !SMI.IsConstructor) { 5806 for (auto &BI : RD->vbases()) 5807 if (SMI.shouldDeleteForBase(&BI)) 5808 return true; 5809 } 5810 5811 for (auto *FI : RD->fields()) 5812 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() && 5813 SMI.shouldDeleteForField(FI)) 5814 return true; 5815 5816 if (SMI.shouldDeleteForAllConstMembers()) 5817 return true; 5818 5819 if (getLangOpts().CUDA) { 5820 // We should delete the special member in CUDA mode if target inference 5821 // failed. 5822 return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg, 5823 Diagnose); 5824 } 5825 5826 return false; 5827 } 5828 5829 /// Perform lookup for a special member of the specified kind, and determine 5830 /// whether it is trivial. If the triviality can be determined without the 5831 /// lookup, skip it. This is intended for use when determining whether a 5832 /// special member of a containing object is trivial, and thus does not ever 5833 /// perform overload resolution for default constructors. 5834 /// 5835 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the 5836 /// member that was most likely to be intended to be trivial, if any. 5837 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD, 5838 Sema::CXXSpecialMember CSM, unsigned Quals, 5839 bool ConstRHS, CXXMethodDecl **Selected) { 5840 if (Selected) 5841 *Selected = nullptr; 5842 5843 switch (CSM) { 5844 case Sema::CXXInvalid: 5845 llvm_unreachable("not a special member"); 5846 5847 case Sema::CXXDefaultConstructor: 5848 // C++11 [class.ctor]p5: 5849 // A default constructor is trivial if: 5850 // - all the [direct subobjects] have trivial default constructors 5851 // 5852 // Note, no overload resolution is performed in this case. 5853 if (RD->hasTrivialDefaultConstructor()) 5854 return true; 5855 5856 if (Selected) { 5857 // If there's a default constructor which could have been trivial, dig it 5858 // out. Otherwise, if there's any user-provided default constructor, point 5859 // to that as an example of why there's not a trivial one. 5860 CXXConstructorDecl *DefCtor = nullptr; 5861 if (RD->needsImplicitDefaultConstructor()) 5862 S.DeclareImplicitDefaultConstructor(RD); 5863 for (auto *CI : RD->ctors()) { 5864 if (!CI->isDefaultConstructor()) 5865 continue; 5866 DefCtor = CI; 5867 if (!DefCtor->isUserProvided()) 5868 break; 5869 } 5870 5871 *Selected = DefCtor; 5872 } 5873 5874 return false; 5875 5876 case Sema::CXXDestructor: 5877 // C++11 [class.dtor]p5: 5878 // A destructor is trivial if: 5879 // - all the direct [subobjects] have trivial destructors 5880 if (RD->hasTrivialDestructor()) 5881 return true; 5882 5883 if (Selected) { 5884 if (RD->needsImplicitDestructor()) 5885 S.DeclareImplicitDestructor(RD); 5886 *Selected = RD->getDestructor(); 5887 } 5888 5889 return false; 5890 5891 case Sema::CXXCopyConstructor: 5892 // C++11 [class.copy]p12: 5893 // A copy constructor is trivial if: 5894 // - the constructor selected to copy each direct [subobject] is trivial 5895 if (RD->hasTrivialCopyConstructor()) { 5896 if (Quals == Qualifiers::Const) 5897 // We must either select the trivial copy constructor or reach an 5898 // ambiguity; no need to actually perform overload resolution. 5899 return true; 5900 } else if (!Selected) { 5901 return false; 5902 } 5903 // In C++98, we are not supposed to perform overload resolution here, but we 5904 // treat that as a language defect, as suggested on cxx-abi-dev, to treat 5905 // cases like B as having a non-trivial copy constructor: 5906 // struct A { template<typename T> A(T&); }; 5907 // struct B { mutable A a; }; 5908 goto NeedOverloadResolution; 5909 5910 case Sema::CXXCopyAssignment: 5911 // C++11 [class.copy]p25: 5912 // A copy assignment operator is trivial if: 5913 // - the assignment operator selected to copy each direct [subobject] is 5914 // trivial 5915 if (RD->hasTrivialCopyAssignment()) { 5916 if (Quals == Qualifiers::Const) 5917 return true; 5918 } else if (!Selected) { 5919 return false; 5920 } 5921 // In C++98, we are not supposed to perform overload resolution here, but we 5922 // treat that as a language defect. 5923 goto NeedOverloadResolution; 5924 5925 case Sema::CXXMoveConstructor: 5926 case Sema::CXXMoveAssignment: 5927 NeedOverloadResolution: 5928 Sema::SpecialMemberOverloadResult *SMOR = 5929 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS); 5930 5931 // The standard doesn't describe how to behave if the lookup is ambiguous. 5932 // We treat it as not making the member non-trivial, just like the standard 5933 // mandates for the default constructor. This should rarely matter, because 5934 // the member will also be deleted. 5935 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5936 return true; 5937 5938 if (!SMOR->getMethod()) { 5939 assert(SMOR->getKind() == 5940 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted); 5941 return false; 5942 } 5943 5944 // We deliberately don't check if we found a deleted special member. We're 5945 // not supposed to! 5946 if (Selected) 5947 *Selected = SMOR->getMethod(); 5948 return SMOR->getMethod()->isTrivial(); 5949 } 5950 5951 llvm_unreachable("unknown special method kind"); 5952 } 5953 5954 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) { 5955 for (auto *CI : RD->ctors()) 5956 if (!CI->isImplicit()) 5957 return CI; 5958 5959 // Look for constructor templates. 5960 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter; 5961 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) { 5962 if (CXXConstructorDecl *CD = 5963 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl())) 5964 return CD; 5965 } 5966 5967 return nullptr; 5968 } 5969 5970 /// The kind of subobject we are checking for triviality. The values of this 5971 /// enumeration are used in diagnostics. 5972 enum TrivialSubobjectKind { 5973 /// The subobject is a base class. 5974 TSK_BaseClass, 5975 /// The subobject is a non-static data member. 5976 TSK_Field, 5977 /// The object is actually the complete object. 5978 TSK_CompleteObject 5979 }; 5980 5981 /// Check whether the special member selected for a given type would be trivial. 5982 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc, 5983 QualType SubType, bool ConstRHS, 5984 Sema::CXXSpecialMember CSM, 5985 TrivialSubobjectKind Kind, 5986 bool Diagnose) { 5987 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); 5988 if (!SubRD) 5989 return true; 5990 5991 CXXMethodDecl *Selected; 5992 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), 5993 ConstRHS, Diagnose ? &Selected : nullptr)) 5994 return true; 5995 5996 if (Diagnose) { 5997 if (ConstRHS) 5998 SubType.addConst(); 5999 6000 if (!Selected && CSM == Sema::CXXDefaultConstructor) { 6001 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor) 6002 << Kind << SubType.getUnqualifiedType(); 6003 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD)) 6004 S.Diag(CD->getLocation(), diag::note_user_declared_ctor); 6005 } else if (!Selected) 6006 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy) 6007 << Kind << SubType.getUnqualifiedType() << CSM << SubType; 6008 else if (Selected->isUserProvided()) { 6009 if (Kind == TSK_CompleteObject) 6010 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided) 6011 << Kind << SubType.getUnqualifiedType() << CSM; 6012 else { 6013 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided) 6014 << Kind << SubType.getUnqualifiedType() << CSM; 6015 S.Diag(Selected->getLocation(), diag::note_declared_at); 6016 } 6017 } else { 6018 if (Kind != TSK_CompleteObject) 6019 S.Diag(SubobjLoc, diag::note_nontrivial_subobject) 6020 << Kind << SubType.getUnqualifiedType() << CSM; 6021 6022 // Explain why the defaulted or deleted special member isn't trivial. 6023 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose); 6024 } 6025 } 6026 6027 return false; 6028 } 6029 6030 /// Check whether the members of a class type allow a special member to be 6031 /// trivial. 6032 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD, 6033 Sema::CXXSpecialMember CSM, 6034 bool ConstArg, bool Diagnose) { 6035 for (const auto *FI : RD->fields()) { 6036 if (FI->isInvalidDecl() || FI->isUnnamedBitfield()) 6037 continue; 6038 6039 QualType FieldType = S.Context.getBaseElementType(FI->getType()); 6040 6041 // Pretend anonymous struct or union members are members of this class. 6042 if (FI->isAnonymousStructOrUnion()) { 6043 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(), 6044 CSM, ConstArg, Diagnose)) 6045 return false; 6046 continue; 6047 } 6048 6049 // C++11 [class.ctor]p5: 6050 // A default constructor is trivial if [...] 6051 // -- no non-static data member of its class has a 6052 // brace-or-equal-initializer 6053 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) { 6054 if (Diagnose) 6055 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI; 6056 return false; 6057 } 6058 6059 // Objective C ARC 4.3.5: 6060 // [...] nontrivally ownership-qualified types are [...] not trivially 6061 // default constructible, copy constructible, move constructible, copy 6062 // assignable, move assignable, or destructible [...] 6063 if (S.getLangOpts().ObjCAutoRefCount && 6064 FieldType.hasNonTrivialObjCLifetime()) { 6065 if (Diagnose) 6066 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership) 6067 << RD << FieldType.getObjCLifetime(); 6068 return false; 6069 } 6070 6071 bool ConstRHS = ConstArg && !FI->isMutable(); 6072 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS, 6073 CSM, TSK_Field, Diagnose)) 6074 return false; 6075 } 6076 6077 return true; 6078 } 6079 6080 /// Diagnose why the specified class does not have a trivial special member of 6081 /// the given kind. 6082 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) { 6083 QualType Ty = Context.getRecordType(RD); 6084 6085 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment); 6086 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM, 6087 TSK_CompleteObject, /*Diagnose*/true); 6088 } 6089 6090 /// Determine whether a defaulted or deleted special member function is trivial, 6091 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12, 6092 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5. 6093 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM, 6094 bool Diagnose) { 6095 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough"); 6096 6097 CXXRecordDecl *RD = MD->getParent(); 6098 6099 bool ConstArg = false; 6100 6101 // C++11 [class.copy]p12, p25: [DR1593] 6102 // A [special member] is trivial if [...] its parameter-type-list is 6103 // equivalent to the parameter-type-list of an implicit declaration [...] 6104 switch (CSM) { 6105 case CXXDefaultConstructor: 6106 case CXXDestructor: 6107 // Trivial default constructors and destructors cannot have parameters. 6108 break; 6109 6110 case CXXCopyConstructor: 6111 case CXXCopyAssignment: { 6112 // Trivial copy operations always have const, non-volatile parameter types. 6113 ConstArg = true; 6114 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6115 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>(); 6116 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) { 6117 if (Diagnose) 6118 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6119 << Param0->getSourceRange() << Param0->getType() 6120 << Context.getLValueReferenceType( 6121 Context.getRecordType(RD).withConst()); 6122 return false; 6123 } 6124 break; 6125 } 6126 6127 case CXXMoveConstructor: 6128 case CXXMoveAssignment: { 6129 // Trivial move operations always have non-cv-qualified parameters. 6130 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6131 const RValueReferenceType *RT = 6132 Param0->getType()->getAs<RValueReferenceType>(); 6133 if (!RT || RT->getPointeeType().getCVRQualifiers()) { 6134 if (Diagnose) 6135 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6136 << Param0->getSourceRange() << Param0->getType() 6137 << Context.getRValueReferenceType(Context.getRecordType(RD)); 6138 return false; 6139 } 6140 break; 6141 } 6142 6143 case CXXInvalid: 6144 llvm_unreachable("not a special member"); 6145 } 6146 6147 if (MD->getMinRequiredArguments() < MD->getNumParams()) { 6148 if (Diagnose) 6149 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(), 6150 diag::note_nontrivial_default_arg) 6151 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange(); 6152 return false; 6153 } 6154 if (MD->isVariadic()) { 6155 if (Diagnose) 6156 Diag(MD->getLocation(), diag::note_nontrivial_variadic); 6157 return false; 6158 } 6159 6160 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6161 // A copy/move [constructor or assignment operator] is trivial if 6162 // -- the [member] selected to copy/move each direct base class subobject 6163 // is trivial 6164 // 6165 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6166 // A [default constructor or destructor] is trivial if 6167 // -- all the direct base classes have trivial [default constructors or 6168 // destructors] 6169 for (const auto &BI : RD->bases()) 6170 if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(), 6171 ConstArg, CSM, TSK_BaseClass, Diagnose)) 6172 return false; 6173 6174 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6175 // A copy/move [constructor or assignment operator] for a class X is 6176 // trivial if 6177 // -- for each non-static data member of X that is of class type (or array 6178 // thereof), the constructor selected to copy/move that member is 6179 // trivial 6180 // 6181 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6182 // A [default constructor or destructor] is trivial if 6183 // -- for all of the non-static data members of its class that are of class 6184 // type (or array thereof), each such class has a trivial [default 6185 // constructor or destructor] 6186 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose)) 6187 return false; 6188 6189 // C++11 [class.dtor]p5: 6190 // A destructor is trivial if [...] 6191 // -- the destructor is not virtual 6192 if (CSM == CXXDestructor && MD->isVirtual()) { 6193 if (Diagnose) 6194 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD; 6195 return false; 6196 } 6197 6198 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 6199 // A [special member] for class X is trivial if [...] 6200 // -- class X has no virtual functions and no virtual base classes 6201 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) { 6202 if (!Diagnose) 6203 return false; 6204 6205 if (RD->getNumVBases()) { 6206 // Check for virtual bases. We already know that the corresponding 6207 // member in all bases is trivial, so vbases must all be direct. 6208 CXXBaseSpecifier &BS = *RD->vbases_begin(); 6209 assert(BS.isVirtual()); 6210 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1; 6211 return false; 6212 } 6213 6214 // Must have a virtual method. 6215 for (const auto *MI : RD->methods()) { 6216 if (MI->isVirtual()) { 6217 SourceLocation MLoc = MI->getLocStart(); 6218 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0; 6219 return false; 6220 } 6221 } 6222 6223 llvm_unreachable("dynamic class with no vbases and no virtual functions"); 6224 } 6225 6226 // Looks like it's trivial! 6227 return true; 6228 } 6229 6230 /// \brief Data used with FindHiddenVirtualMethod 6231 namespace { 6232 struct FindHiddenVirtualMethodData { 6233 Sema *S; 6234 CXXMethodDecl *Method; 6235 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods; 6236 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6237 }; 6238 } 6239 6240 /// \brief Check whether any most overriden method from MD in Methods 6241 static bool CheckMostOverridenMethods(const CXXMethodDecl *MD, 6242 const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 6243 if (MD->size_overridden_methods() == 0) 6244 return Methods.count(MD->getCanonicalDecl()); 6245 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6246 E = MD->end_overridden_methods(); 6247 I != E; ++I) 6248 if (CheckMostOverridenMethods(*I, Methods)) 6249 return true; 6250 return false; 6251 } 6252 6253 /// \brief Member lookup function that determines whether a given C++ 6254 /// method overloads virtual methods in a base class without overriding any, 6255 /// to be used with CXXRecordDecl::lookupInBases(). 6256 static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier, 6257 CXXBasePath &Path, 6258 void *UserData) { 6259 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl(); 6260 6261 FindHiddenVirtualMethodData &Data 6262 = *static_cast<FindHiddenVirtualMethodData*>(UserData); 6263 6264 DeclarationName Name = Data.Method->getDeclName(); 6265 assert(Name.getNameKind() == DeclarationName::Identifier); 6266 6267 bool foundSameNameMethod = false; 6268 SmallVector<CXXMethodDecl *, 8> overloadedMethods; 6269 for (Path.Decls = BaseRecord->lookup(Name); 6270 !Path.Decls.empty(); 6271 Path.Decls = Path.Decls.slice(1)) { 6272 NamedDecl *D = Path.Decls.front(); 6273 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 6274 MD = MD->getCanonicalDecl(); 6275 foundSameNameMethod = true; 6276 // Interested only in hidden virtual methods. 6277 if (!MD->isVirtual()) 6278 continue; 6279 // If the method we are checking overrides a method from its base 6280 // don't warn about the other overloaded methods. Clang deviates from GCC 6281 // by only diagnosing overloads of inherited virtual functions that do not 6282 // override any other virtual functions in the base. GCC's 6283 // -Woverloaded-virtual diagnoses any derived function hiding a virtual 6284 // function from a base class. These cases may be better served by a 6285 // warning (not specific to virtual functions) on call sites when the call 6286 // would select a different function from the base class, were it visible. 6287 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example. 6288 if (!Data.S->IsOverload(Data.Method, MD, false)) 6289 return true; 6290 // Collect the overload only if its hidden. 6291 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods)) 6292 overloadedMethods.push_back(MD); 6293 } 6294 } 6295 6296 if (foundSameNameMethod) 6297 Data.OverloadedMethods.append(overloadedMethods.begin(), 6298 overloadedMethods.end()); 6299 return foundSameNameMethod; 6300 } 6301 6302 /// \brief Add the most overriden methods from MD to Methods 6303 static void AddMostOverridenMethods(const CXXMethodDecl *MD, 6304 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 6305 if (MD->size_overridden_methods() == 0) 6306 Methods.insert(MD->getCanonicalDecl()); 6307 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6308 E = MD->end_overridden_methods(); 6309 I != E; ++I) 6310 AddMostOverridenMethods(*I, Methods); 6311 } 6312 6313 /// \brief Check if a method overloads virtual methods in a base class without 6314 /// overriding any. 6315 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD, 6316 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6317 if (!MD->getDeclName().isIdentifier()) 6318 return; 6319 6320 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases. 6321 /*bool RecordPaths=*/false, 6322 /*bool DetectVirtual=*/false); 6323 FindHiddenVirtualMethodData Data; 6324 Data.Method = MD; 6325 Data.S = this; 6326 6327 // Keep the base methods that were overriden or introduced in the subclass 6328 // by 'using' in a set. A base method not in this set is hidden. 6329 CXXRecordDecl *DC = MD->getParent(); 6330 DeclContext::lookup_result R = DC->lookup(MD->getDeclName()); 6331 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) { 6332 NamedDecl *ND = *I; 6333 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I)) 6334 ND = shad->getTargetDecl(); 6335 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND)) 6336 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods); 6337 } 6338 6339 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths)) 6340 OverloadedMethods = Data.OverloadedMethods; 6341 } 6342 6343 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD, 6344 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6345 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) { 6346 CXXMethodDecl *overloadedMD = OverloadedMethods[i]; 6347 PartialDiagnostic PD = PDiag( 6348 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD; 6349 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType()); 6350 Diag(overloadedMD->getLocation(), PD); 6351 } 6352 } 6353 6354 /// \brief Diagnose methods which overload virtual methods in a base class 6355 /// without overriding any. 6356 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) { 6357 if (MD->isInvalidDecl()) 6358 return; 6359 6360 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation())) 6361 return; 6362 6363 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6364 FindHiddenVirtualMethods(MD, OverloadedMethods); 6365 if (!OverloadedMethods.empty()) { 6366 Diag(MD->getLocation(), diag::warn_overloaded_virtual) 6367 << MD << (OverloadedMethods.size() > 1); 6368 6369 NoteHiddenVirtualMethods(MD, OverloadedMethods); 6370 } 6371 } 6372 6373 void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, 6374 Decl *TagDecl, 6375 SourceLocation LBrac, 6376 SourceLocation RBrac, 6377 AttributeList *AttrList) { 6378 if (!TagDecl) 6379 return; 6380 6381 AdjustDeclIfTemplate(TagDecl); 6382 6383 for (const AttributeList* l = AttrList; l; l = l->getNext()) { 6384 if (l->getKind() != AttributeList::AT_Visibility) 6385 continue; 6386 l->setInvalid(); 6387 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) << 6388 l->getName(); 6389 } 6390 6391 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef( 6392 // strict aliasing violation! 6393 reinterpret_cast<Decl**>(FieldCollector->getCurFields()), 6394 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList); 6395 6396 CheckCompletedCXXClass( 6397 dyn_cast_or_null<CXXRecordDecl>(TagDecl)); 6398 } 6399 6400 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared 6401 /// special functions, such as the default constructor, copy 6402 /// constructor, or destructor, to the given C++ class (C++ 6403 /// [special]p1). This routine can only be executed just before the 6404 /// definition of the class is complete. 6405 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) { 6406 if (!ClassDecl->hasUserDeclaredConstructor()) 6407 ++ASTContext::NumImplicitDefaultConstructors; 6408 6409 if (!ClassDecl->hasUserDeclaredCopyConstructor()) { 6410 ++ASTContext::NumImplicitCopyConstructors; 6411 6412 // If the properties or semantics of the copy constructor couldn't be 6413 // determined while the class was being declared, force a declaration 6414 // of it now. 6415 if (ClassDecl->needsOverloadResolutionForCopyConstructor()) 6416 DeclareImplicitCopyConstructor(ClassDecl); 6417 } 6418 6419 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) { 6420 ++ASTContext::NumImplicitMoveConstructors; 6421 6422 if (ClassDecl->needsOverloadResolutionForMoveConstructor()) 6423 DeclareImplicitMoveConstructor(ClassDecl); 6424 } 6425 6426 if (!ClassDecl->hasUserDeclaredCopyAssignment()) { 6427 ++ASTContext::NumImplicitCopyAssignmentOperators; 6428 6429 // If we have a dynamic class, then the copy assignment operator may be 6430 // virtual, so we have to declare it immediately. This ensures that, e.g., 6431 // it shows up in the right place in the vtable and that we diagnose 6432 // problems with the implicit exception specification. 6433 if (ClassDecl->isDynamicClass() || 6434 ClassDecl->needsOverloadResolutionForCopyAssignment()) 6435 DeclareImplicitCopyAssignment(ClassDecl); 6436 } 6437 6438 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) { 6439 ++ASTContext::NumImplicitMoveAssignmentOperators; 6440 6441 // Likewise for the move assignment operator. 6442 if (ClassDecl->isDynamicClass() || 6443 ClassDecl->needsOverloadResolutionForMoveAssignment()) 6444 DeclareImplicitMoveAssignment(ClassDecl); 6445 } 6446 6447 if (!ClassDecl->hasUserDeclaredDestructor()) { 6448 ++ASTContext::NumImplicitDestructors; 6449 6450 // If we have a dynamic class, then the destructor may be virtual, so we 6451 // have to declare the destructor immediately. This ensures that, e.g., it 6452 // shows up in the right place in the vtable and that we diagnose problems 6453 // with the implicit exception specification. 6454 if (ClassDecl->isDynamicClass() || 6455 ClassDecl->needsOverloadResolutionForDestructor()) 6456 DeclareImplicitDestructor(ClassDecl); 6457 } 6458 } 6459 6460 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) { 6461 if (!D) 6462 return 0; 6463 6464 // The order of template parameters is not important here. All names 6465 // get added to the same scope. 6466 SmallVector<TemplateParameterList *, 4> ParameterLists; 6467 6468 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 6469 D = TD->getTemplatedDecl(); 6470 6471 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) 6472 ParameterLists.push_back(PSD->getTemplateParameters()); 6473 6474 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) { 6475 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i) 6476 ParameterLists.push_back(DD->getTemplateParameterList(i)); 6477 6478 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 6479 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) 6480 ParameterLists.push_back(FTD->getTemplateParameters()); 6481 } 6482 } 6483 6484 if (TagDecl *TD = dyn_cast<TagDecl>(D)) { 6485 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i) 6486 ParameterLists.push_back(TD->getTemplateParameterList(i)); 6487 6488 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) { 6489 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate()) 6490 ParameterLists.push_back(CTD->getTemplateParameters()); 6491 } 6492 } 6493 6494 unsigned Count = 0; 6495 for (TemplateParameterList *Params : ParameterLists) { 6496 if (Params->size() > 0) 6497 // Ignore explicit specializations; they don't contribute to the template 6498 // depth. 6499 ++Count; 6500 for (NamedDecl *Param : *Params) { 6501 if (Param->getDeclName()) { 6502 S->AddDecl(Param); 6503 IdResolver.AddDecl(Param); 6504 } 6505 } 6506 } 6507 6508 return Count; 6509 } 6510 6511 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6512 if (!RecordD) return; 6513 AdjustDeclIfTemplate(RecordD); 6514 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD); 6515 PushDeclContext(S, Record); 6516 } 6517 6518 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6519 if (!RecordD) return; 6520 PopDeclContext(); 6521 } 6522 6523 /// This is used to implement the constant expression evaluation part of the 6524 /// attribute enable_if extension. There is nothing in standard C++ which would 6525 /// require reentering parameters. 6526 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) { 6527 if (!Param) 6528 return; 6529 6530 S->AddDecl(Param); 6531 if (Param->getDeclName()) 6532 IdResolver.AddDecl(Param); 6533 } 6534 6535 /// ActOnStartDelayedCXXMethodDeclaration - We have completed 6536 /// parsing a top-level (non-nested) C++ class, and we are now 6537 /// parsing those parts of the given Method declaration that could 6538 /// not be parsed earlier (C++ [class.mem]p2), such as default 6539 /// arguments. This action should enter the scope of the given 6540 /// Method declaration as if we had just parsed the qualified method 6541 /// name. However, it should not bring the parameters into scope; 6542 /// that will be performed by ActOnDelayedCXXMethodParameter. 6543 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6544 } 6545 6546 /// ActOnDelayedCXXMethodParameter - We've already started a delayed 6547 /// C++ method declaration. We're (re-)introducing the given 6548 /// function parameter into scope for use in parsing later parts of 6549 /// the method declaration. For example, we could see an 6550 /// ActOnParamDefaultArgument event for this parameter. 6551 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { 6552 if (!ParamD) 6553 return; 6554 6555 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); 6556 6557 // If this parameter has an unparsed default argument, clear it out 6558 // to make way for the parsed default argument. 6559 if (Param->hasUnparsedDefaultArg()) 6560 Param->setDefaultArg(nullptr); 6561 6562 S->AddDecl(Param); 6563 if (Param->getDeclName()) 6564 IdResolver.AddDecl(Param); 6565 } 6566 6567 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished 6568 /// processing the delayed method declaration for Method. The method 6569 /// declaration is now considered finished. There may be a separate 6570 /// ActOnStartOfFunctionDef action later (not necessarily 6571 /// immediately!) for this method, if it was also defined inside the 6572 /// class body. 6573 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6574 if (!MethodD) 6575 return; 6576 6577 AdjustDeclIfTemplate(MethodD); 6578 6579 FunctionDecl *Method = cast<FunctionDecl>(MethodD); 6580 6581 // Now that we have our default arguments, check the constructor 6582 // again. It could produce additional diagnostics or affect whether 6583 // the class has implicitly-declared destructors, among other 6584 // things. 6585 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) 6586 CheckConstructor(Constructor); 6587 6588 // Check the default arguments, which we may have added. 6589 if (!Method->isInvalidDecl()) 6590 CheckCXXDefaultArguments(Method); 6591 } 6592 6593 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check 6594 /// the well-formedness of the constructor declarator @p D with type @p 6595 /// R. If there are any errors in the declarator, this routine will 6596 /// emit diagnostics and set the invalid bit to true. In any case, the type 6597 /// will be updated to reflect a well-formed type for the constructor and 6598 /// returned. 6599 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R, 6600 StorageClass &SC) { 6601 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 6602 6603 // C++ [class.ctor]p3: 6604 // A constructor shall not be virtual (10.3) or static (9.4). A 6605 // constructor can be invoked for a const, volatile or const 6606 // volatile object. A constructor shall not be declared const, 6607 // volatile, or const volatile (9.3.2). 6608 if (isVirtual) { 6609 if (!D.isInvalidType()) 6610 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6611 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc()) 6612 << SourceRange(D.getIdentifierLoc()); 6613 D.setInvalidType(); 6614 } 6615 if (SC == SC_Static) { 6616 if (!D.isInvalidType()) 6617 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6618 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6619 << SourceRange(D.getIdentifierLoc()); 6620 D.setInvalidType(); 6621 SC = SC_None; 6622 } 6623 6624 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6625 diagnoseIgnoredQualifiers( 6626 diag::err_constructor_return_type, TypeQuals, SourceLocation(), 6627 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(), 6628 D.getDeclSpec().getRestrictSpecLoc(), 6629 D.getDeclSpec().getAtomicSpecLoc()); 6630 D.setInvalidType(); 6631 } 6632 6633 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6634 if (FTI.TypeQuals != 0) { 6635 if (FTI.TypeQuals & Qualifiers::Const) 6636 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6637 << "const" << SourceRange(D.getIdentifierLoc()); 6638 if (FTI.TypeQuals & Qualifiers::Volatile) 6639 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6640 << "volatile" << SourceRange(D.getIdentifierLoc()); 6641 if (FTI.TypeQuals & Qualifiers::Restrict) 6642 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6643 << "restrict" << SourceRange(D.getIdentifierLoc()); 6644 D.setInvalidType(); 6645 } 6646 6647 // C++0x [class.ctor]p4: 6648 // A constructor shall not be declared with a ref-qualifier. 6649 if (FTI.hasRefQualifier()) { 6650 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor) 6651 << FTI.RefQualifierIsLValueRef 6652 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6653 D.setInvalidType(); 6654 } 6655 6656 // Rebuild the function type "R" without any type qualifiers (in 6657 // case any of the errors above fired) and with "void" as the 6658 // return type, since constructors don't have return types. 6659 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6660 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType()) 6661 return R; 6662 6663 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6664 EPI.TypeQuals = 0; 6665 EPI.RefQualifier = RQ_None; 6666 6667 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI); 6668 } 6669 6670 /// CheckConstructor - Checks a fully-formed constructor for 6671 /// well-formedness, issuing any diagnostics required. Returns true if 6672 /// the constructor declarator is invalid. 6673 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) { 6674 CXXRecordDecl *ClassDecl 6675 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext()); 6676 if (!ClassDecl) 6677 return Constructor->setInvalidDecl(); 6678 6679 // C++ [class.copy]p3: 6680 // A declaration of a constructor for a class X is ill-formed if 6681 // its first parameter is of type (optionally cv-qualified) X and 6682 // either there are no other parameters or else all other 6683 // parameters have default arguments. 6684 if (!Constructor->isInvalidDecl() && 6685 ((Constructor->getNumParams() == 1) || 6686 (Constructor->getNumParams() > 1 && 6687 Constructor->getParamDecl(1)->hasDefaultArg())) && 6688 Constructor->getTemplateSpecializationKind() 6689 != TSK_ImplicitInstantiation) { 6690 QualType ParamType = Constructor->getParamDecl(0)->getType(); 6691 QualType ClassTy = Context.getTagDeclType(ClassDecl); 6692 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { 6693 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation(); 6694 const char *ConstRef 6695 = Constructor->getParamDecl(0)->getIdentifier() ? "const &" 6696 : " const &"; 6697 Diag(ParamLoc, diag::err_constructor_byvalue_arg) 6698 << FixItHint::CreateInsertion(ParamLoc, ConstRef); 6699 6700 // FIXME: Rather that making the constructor invalid, we should endeavor 6701 // to fix the type. 6702 Constructor->setInvalidDecl(); 6703 } 6704 } 6705 } 6706 6707 /// CheckDestructor - Checks a fully-formed destructor definition for 6708 /// well-formedness, issuing any diagnostics required. Returns true 6709 /// on error. 6710 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { 6711 CXXRecordDecl *RD = Destructor->getParent(); 6712 6713 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) { 6714 SourceLocation Loc; 6715 6716 if (!Destructor->isImplicit()) 6717 Loc = Destructor->getLocation(); 6718 else 6719 Loc = RD->getLocation(); 6720 6721 // If we have a virtual destructor, look up the deallocation function 6722 FunctionDecl *OperatorDelete = nullptr; 6723 DeclarationName Name = 6724 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 6725 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete)) 6726 return true; 6727 // If there's no class-specific operator delete, look up the global 6728 // non-array delete. 6729 if (!OperatorDelete) 6730 OperatorDelete = FindUsualDeallocationFunction(Loc, true, Name); 6731 6732 MarkFunctionReferenced(Loc, OperatorDelete); 6733 6734 Destructor->setOperatorDelete(OperatorDelete); 6735 } 6736 6737 return false; 6738 } 6739 6740 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check 6741 /// the well-formednes of the destructor declarator @p D with type @p 6742 /// R. If there are any errors in the declarator, this routine will 6743 /// emit diagnostics and set the declarator to invalid. Even if this happens, 6744 /// will be updated to reflect a well-formed type for the destructor and 6745 /// returned. 6746 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R, 6747 StorageClass& SC) { 6748 // C++ [class.dtor]p1: 6749 // [...] A typedef-name that names a class is a class-name 6750 // (7.1.3); however, a typedef-name that names a class shall not 6751 // be used as the identifier in the declarator for a destructor 6752 // declaration. 6753 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName); 6754 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>()) 6755 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6756 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl()); 6757 else if (const TemplateSpecializationType *TST = 6758 DeclaratorType->getAs<TemplateSpecializationType>()) 6759 if (TST->isTypeAlias()) 6760 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6761 << DeclaratorType << 1; 6762 6763 // C++ [class.dtor]p2: 6764 // A destructor is used to destroy objects of its class type. A 6765 // destructor takes no parameters, and no return type can be 6766 // specified for it (not even void). The address of a destructor 6767 // shall not be taken. A destructor shall not be static. A 6768 // destructor can be invoked for a const, volatile or const 6769 // volatile object. A destructor shall not be declared const, 6770 // volatile or const volatile (9.3.2). 6771 if (SC == SC_Static) { 6772 if (!D.isInvalidType()) 6773 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be) 6774 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6775 << SourceRange(D.getIdentifierLoc()) 6776 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6777 6778 SC = SC_None; 6779 } 6780 if (!D.isInvalidType()) { 6781 // Destructors don't have return types, but the parser will 6782 // happily parse something like: 6783 // 6784 // class X { 6785 // float ~X(); 6786 // }; 6787 // 6788 // The return type will be eliminated later. 6789 if (D.getDeclSpec().hasTypeSpecifier()) 6790 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type) 6791 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6792 << SourceRange(D.getIdentifierLoc()); 6793 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6794 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals, 6795 SourceLocation(), 6796 D.getDeclSpec().getConstSpecLoc(), 6797 D.getDeclSpec().getVolatileSpecLoc(), 6798 D.getDeclSpec().getRestrictSpecLoc(), 6799 D.getDeclSpec().getAtomicSpecLoc()); 6800 D.setInvalidType(); 6801 } 6802 } 6803 6804 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6805 if (FTI.TypeQuals != 0 && !D.isInvalidType()) { 6806 if (FTI.TypeQuals & Qualifiers::Const) 6807 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6808 << "const" << SourceRange(D.getIdentifierLoc()); 6809 if (FTI.TypeQuals & Qualifiers::Volatile) 6810 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6811 << "volatile" << SourceRange(D.getIdentifierLoc()); 6812 if (FTI.TypeQuals & Qualifiers::Restrict) 6813 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6814 << "restrict" << SourceRange(D.getIdentifierLoc()); 6815 D.setInvalidType(); 6816 } 6817 6818 // C++0x [class.dtor]p2: 6819 // A destructor shall not be declared with a ref-qualifier. 6820 if (FTI.hasRefQualifier()) { 6821 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor) 6822 << FTI.RefQualifierIsLValueRef 6823 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6824 D.setInvalidType(); 6825 } 6826 6827 // Make sure we don't have any parameters. 6828 if (FTIHasNonVoidParameters(FTI)) { 6829 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params); 6830 6831 // Delete the parameters. 6832 FTI.freeParams(); 6833 D.setInvalidType(); 6834 } 6835 6836 // Make sure the destructor isn't variadic. 6837 if (FTI.isVariadic) { 6838 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic); 6839 D.setInvalidType(); 6840 } 6841 6842 // Rebuild the function type "R" without any type qualifiers or 6843 // parameters (in case any of the errors above fired) and with 6844 // "void" as the return type, since destructors don't have return 6845 // types. 6846 if (!D.isInvalidType()) 6847 return R; 6848 6849 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6850 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6851 EPI.Variadic = false; 6852 EPI.TypeQuals = 0; 6853 EPI.RefQualifier = RQ_None; 6854 return Context.getFunctionType(Context.VoidTy, None, EPI); 6855 } 6856 6857 static void extendLeft(SourceRange &R, const SourceRange &Before) { 6858 if (Before.isInvalid()) 6859 return; 6860 R.setBegin(Before.getBegin()); 6861 if (R.getEnd().isInvalid()) 6862 R.setEnd(Before.getEnd()); 6863 } 6864 6865 static void extendRight(SourceRange &R, const SourceRange &After) { 6866 if (After.isInvalid()) 6867 return; 6868 if (R.getBegin().isInvalid()) 6869 R.setBegin(After.getBegin()); 6870 R.setEnd(After.getEnd()); 6871 } 6872 6873 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the 6874 /// well-formednes of the conversion function declarator @p D with 6875 /// type @p R. If there are any errors in the declarator, this routine 6876 /// will emit diagnostics and return true. Otherwise, it will return 6877 /// false. Either way, the type @p R will be updated to reflect a 6878 /// well-formed type for the conversion operator. 6879 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R, 6880 StorageClass& SC) { 6881 // C++ [class.conv.fct]p1: 6882 // Neither parameter types nor return type can be specified. The 6883 // type of a conversion function (8.3.5) is "function taking no 6884 // parameter returning conversion-type-id." 6885 if (SC == SC_Static) { 6886 if (!D.isInvalidType()) 6887 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member) 6888 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6889 << D.getName().getSourceRange(); 6890 D.setInvalidType(); 6891 SC = SC_None; 6892 } 6893 6894 TypeSourceInfo *ConvTSI = nullptr; 6895 QualType ConvType = 6896 GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI); 6897 6898 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) { 6899 // Conversion functions don't have return types, but the parser will 6900 // happily parse something like: 6901 // 6902 // class X { 6903 // float operator bool(); 6904 // }; 6905 // 6906 // The return type will be changed later anyway. 6907 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type) 6908 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6909 << SourceRange(D.getIdentifierLoc()); 6910 D.setInvalidType(); 6911 } 6912 6913 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6914 6915 // Make sure we don't have any parameters. 6916 if (Proto->getNumParams() > 0) { 6917 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params); 6918 6919 // Delete the parameters. 6920 D.getFunctionTypeInfo().freeParams(); 6921 D.setInvalidType(); 6922 } else if (Proto->isVariadic()) { 6923 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic); 6924 D.setInvalidType(); 6925 } 6926 6927 // Diagnose "&operator bool()" and other such nonsense. This 6928 // is actually a gcc extension which we don't support. 6929 if (Proto->getReturnType() != ConvType) { 6930 bool NeedsTypedef = false; 6931 SourceRange Before, After; 6932 6933 // Walk the chunks and extract information on them for our diagnostic. 6934 bool PastFunctionChunk = false; 6935 for (auto &Chunk : D.type_objects()) { 6936 switch (Chunk.Kind) { 6937 case DeclaratorChunk::Function: 6938 if (!PastFunctionChunk) { 6939 if (Chunk.Fun.HasTrailingReturnType) { 6940 TypeSourceInfo *TRT = nullptr; 6941 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT); 6942 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange()); 6943 } 6944 PastFunctionChunk = true; 6945 break; 6946 } 6947 // Fall through. 6948 case DeclaratorChunk::Array: 6949 NeedsTypedef = true; 6950 extendRight(After, Chunk.getSourceRange()); 6951 break; 6952 6953 case DeclaratorChunk::Pointer: 6954 case DeclaratorChunk::BlockPointer: 6955 case DeclaratorChunk::Reference: 6956 case DeclaratorChunk::MemberPointer: 6957 extendLeft(Before, Chunk.getSourceRange()); 6958 break; 6959 6960 case DeclaratorChunk::Paren: 6961 extendLeft(Before, Chunk.Loc); 6962 extendRight(After, Chunk.EndLoc); 6963 break; 6964 } 6965 } 6966 6967 SourceLocation Loc = Before.isValid() ? Before.getBegin() : 6968 After.isValid() ? After.getBegin() : 6969 D.getIdentifierLoc(); 6970 auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl); 6971 DB << Before << After; 6972 6973 if (!NeedsTypedef) { 6974 DB << /*don't need a typedef*/0; 6975 6976 // If we can provide a correct fix-it hint, do so. 6977 if (After.isInvalid() && ConvTSI) { 6978 SourceLocation InsertLoc = 6979 PP.getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd()); 6980 DB << FixItHint::CreateInsertion(InsertLoc, " ") 6981 << FixItHint::CreateInsertionFromRange( 6982 InsertLoc, CharSourceRange::getTokenRange(Before)) 6983 << FixItHint::CreateRemoval(Before); 6984 } 6985 } else if (!Proto->getReturnType()->isDependentType()) { 6986 DB << /*typedef*/1 << Proto->getReturnType(); 6987 } else if (getLangOpts().CPlusPlus11) { 6988 DB << /*alias template*/2 << Proto->getReturnType(); 6989 } else { 6990 DB << /*might not be fixable*/3; 6991 } 6992 6993 // Recover by incorporating the other type chunks into the result type. 6994 // Note, this does *not* change the name of the function. This is compatible 6995 // with the GCC extension: 6996 // struct S { &operator int(); } s; 6997 // int &r = s.operator int(); // ok in GCC 6998 // S::operator int&() {} // error in GCC, function name is 'operator int'. 6999 ConvType = Proto->getReturnType(); 7000 } 7001 7002 // C++ [class.conv.fct]p4: 7003 // The conversion-type-id shall not represent a function type nor 7004 // an array type. 7005 if (ConvType->isArrayType()) { 7006 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array); 7007 ConvType = Context.getPointerType(ConvType); 7008 D.setInvalidType(); 7009 } else if (ConvType->isFunctionType()) { 7010 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function); 7011 ConvType = Context.getPointerType(ConvType); 7012 D.setInvalidType(); 7013 } 7014 7015 // Rebuild the function type "R" without any parameters (in case any 7016 // of the errors above fired) and with the conversion type as the 7017 // return type. 7018 if (D.isInvalidType()) 7019 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo()); 7020 7021 // C++0x explicit conversion operators. 7022 if (D.getDeclSpec().isExplicitSpecified()) 7023 Diag(D.getDeclSpec().getExplicitSpecLoc(), 7024 getLangOpts().CPlusPlus11 ? 7025 diag::warn_cxx98_compat_explicit_conversion_functions : 7026 diag::ext_explicit_conversion_functions) 7027 << SourceRange(D.getDeclSpec().getExplicitSpecLoc()); 7028 } 7029 7030 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete 7031 /// the declaration of the given C++ conversion function. This routine 7032 /// is responsible for recording the conversion function in the C++ 7033 /// class, if possible. 7034 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) { 7035 assert(Conversion && "Expected to receive a conversion function declaration"); 7036 7037 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext()); 7038 7039 // Make sure we aren't redeclaring the conversion function. 7040 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType()); 7041 7042 // C++ [class.conv.fct]p1: 7043 // [...] A conversion function is never used to convert a 7044 // (possibly cv-qualified) object to the (possibly cv-qualified) 7045 // same object type (or a reference to it), to a (possibly 7046 // cv-qualified) base class of that type (or a reference to it), 7047 // or to (possibly cv-qualified) void. 7048 // FIXME: Suppress this warning if the conversion function ends up being a 7049 // virtual function that overrides a virtual function in a base class. 7050 QualType ClassType 7051 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 7052 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>()) 7053 ConvType = ConvTypeRef->getPointeeType(); 7054 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared && 7055 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) 7056 /* Suppress diagnostics for instantiations. */; 7057 else if (ConvType->isRecordType()) { 7058 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); 7059 if (ConvType == ClassType) 7060 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used) 7061 << ClassType; 7062 else if (IsDerivedFrom(ClassType, ConvType)) 7063 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used) 7064 << ClassType << ConvType; 7065 } else if (ConvType->isVoidType()) { 7066 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used) 7067 << ClassType << ConvType; 7068 } 7069 7070 if (FunctionTemplateDecl *ConversionTemplate 7071 = Conversion->getDescribedFunctionTemplate()) 7072 return ConversionTemplate; 7073 7074 return Conversion; 7075 } 7076 7077 //===----------------------------------------------------------------------===// 7078 // Namespace Handling 7079 //===----------------------------------------------------------------------===// 7080 7081 /// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is 7082 /// reopened. 7083 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, 7084 SourceLocation Loc, 7085 IdentifierInfo *II, bool *IsInline, 7086 NamespaceDecl *PrevNS) { 7087 assert(*IsInline != PrevNS->isInline()); 7088 7089 // HACK: Work around a bug in libstdc++4.6's <atomic>, where 7090 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as 7091 // inline namespaces, with the intention of bringing names into namespace std. 7092 // 7093 // We support this just well enough to get that case working; this is not 7094 // sufficient to support reopening namespaces as inline in general. 7095 if (*IsInline && II && II->getName().startswith("__atomic") && 7096 S.getSourceManager().isInSystemHeader(Loc)) { 7097 // Mark all prior declarations of the namespace as inline. 7098 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS; 7099 NS = NS->getPreviousDecl()) 7100 NS->setInline(*IsInline); 7101 // Patch up the lookup table for the containing namespace. This isn't really 7102 // correct, but it's good enough for this particular case. 7103 for (auto *I : PrevNS->decls()) 7104 if (auto *ND = dyn_cast<NamedDecl>(I)) 7105 PrevNS->getParent()->makeDeclVisibleInContext(ND); 7106 return; 7107 } 7108 7109 if (PrevNS->isInline()) 7110 // The user probably just forgot the 'inline', so suggest that it 7111 // be added back. 7112 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline) 7113 << FixItHint::CreateInsertion(KeywordLoc, "inline "); 7114 else 7115 S.Diag(Loc, diag::err_inline_namespace_mismatch) << *IsInline; 7116 7117 S.Diag(PrevNS->getLocation(), diag::note_previous_definition); 7118 *IsInline = PrevNS->isInline(); 7119 } 7120 7121 /// ActOnStartNamespaceDef - This is called at the start of a namespace 7122 /// definition. 7123 Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope, 7124 SourceLocation InlineLoc, 7125 SourceLocation NamespaceLoc, 7126 SourceLocation IdentLoc, 7127 IdentifierInfo *II, 7128 SourceLocation LBrace, 7129 AttributeList *AttrList) { 7130 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc; 7131 // For anonymous namespace, take the location of the left brace. 7132 SourceLocation Loc = II ? IdentLoc : LBrace; 7133 bool IsInline = InlineLoc.isValid(); 7134 bool IsInvalid = false; 7135 bool IsStd = false; 7136 bool AddToKnown = false; 7137 Scope *DeclRegionScope = NamespcScope->getParent(); 7138 7139 NamespaceDecl *PrevNS = nullptr; 7140 if (II) { 7141 // C++ [namespace.def]p2: 7142 // The identifier in an original-namespace-definition shall not 7143 // have been previously defined in the declarative region in 7144 // which the original-namespace-definition appears. The 7145 // identifier in an original-namespace-definition is the name of 7146 // the namespace. Subsequently in that declarative region, it is 7147 // treated as an original-namespace-name. 7148 // 7149 // Since namespace names are unique in their scope, and we don't 7150 // look through using directives, just look for any ordinary names. 7151 7152 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member | 7153 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag | 7154 Decl::IDNS_Namespace; 7155 NamedDecl *PrevDecl = nullptr; 7156 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II); 7157 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 7158 ++I) { 7159 if ((*I)->getIdentifierNamespace() & IDNS) { 7160 PrevDecl = *I; 7161 break; 7162 } 7163 } 7164 7165 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl); 7166 7167 if (PrevNS) { 7168 // This is an extended namespace definition. 7169 if (IsInline != PrevNS->isInline()) 7170 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II, 7171 &IsInline, PrevNS); 7172 } else if (PrevDecl) { 7173 // This is an invalid name redefinition. 7174 Diag(Loc, diag::err_redefinition_different_kind) 7175 << II; 7176 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 7177 IsInvalid = true; 7178 // Continue on to push Namespc as current DeclContext and return it. 7179 } else if (II->isStr("std") && 7180 CurContext->getRedeclContext()->isTranslationUnit()) { 7181 // This is the first "real" definition of the namespace "std", so update 7182 // our cache of the "std" namespace to point at this definition. 7183 PrevNS = getStdNamespace(); 7184 IsStd = true; 7185 AddToKnown = !IsInline; 7186 } else { 7187 // We've seen this namespace for the first time. 7188 AddToKnown = !IsInline; 7189 } 7190 } else { 7191 // Anonymous namespaces. 7192 7193 // Determine whether the parent already has an anonymous namespace. 7194 DeclContext *Parent = CurContext->getRedeclContext(); 7195 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7196 PrevNS = TU->getAnonymousNamespace(); 7197 } else { 7198 NamespaceDecl *ND = cast<NamespaceDecl>(Parent); 7199 PrevNS = ND->getAnonymousNamespace(); 7200 } 7201 7202 if (PrevNS && IsInline != PrevNS->isInline()) 7203 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II, 7204 &IsInline, PrevNS); 7205 } 7206 7207 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline, 7208 StartLoc, Loc, II, PrevNS); 7209 if (IsInvalid) 7210 Namespc->setInvalidDecl(); 7211 7212 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList); 7213 7214 // FIXME: Should we be merging attributes? 7215 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>()) 7216 PushNamespaceVisibilityAttr(Attr, Loc); 7217 7218 if (IsStd) 7219 StdNamespace = Namespc; 7220 if (AddToKnown) 7221 KnownNamespaces[Namespc] = false; 7222 7223 if (II) { 7224 PushOnScopeChains(Namespc, DeclRegionScope); 7225 } else { 7226 // Link the anonymous namespace into its parent. 7227 DeclContext *Parent = CurContext->getRedeclContext(); 7228 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7229 TU->setAnonymousNamespace(Namespc); 7230 } else { 7231 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc); 7232 } 7233 7234 CurContext->addDecl(Namespc); 7235 7236 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition 7237 // behaves as if it were replaced by 7238 // namespace unique { /* empty body */ } 7239 // using namespace unique; 7240 // namespace unique { namespace-body } 7241 // where all occurrences of 'unique' in a translation unit are 7242 // replaced by the same identifier and this identifier differs 7243 // from all other identifiers in the entire program. 7244 7245 // We just create the namespace with an empty name and then add an 7246 // implicit using declaration, just like the standard suggests. 7247 // 7248 // CodeGen enforces the "universally unique" aspect by giving all 7249 // declarations semantically contained within an anonymous 7250 // namespace internal linkage. 7251 7252 if (!PrevNS) { 7253 UsingDirectiveDecl* UD 7254 = UsingDirectiveDecl::Create(Context, Parent, 7255 /* 'using' */ LBrace, 7256 /* 'namespace' */ SourceLocation(), 7257 /* qualifier */ NestedNameSpecifierLoc(), 7258 /* identifier */ SourceLocation(), 7259 Namespc, 7260 /* Ancestor */ Parent); 7261 UD->setImplicit(); 7262 Parent->addDecl(UD); 7263 } 7264 } 7265 7266 ActOnDocumentableDecl(Namespc); 7267 7268 // Although we could have an invalid decl (i.e. the namespace name is a 7269 // redefinition), push it as current DeclContext and try to continue parsing. 7270 // FIXME: We should be able to push Namespc here, so that the each DeclContext 7271 // for the namespace has the declarations that showed up in that particular 7272 // namespace definition. 7273 PushDeclContext(NamespcScope, Namespc); 7274 return Namespc; 7275 } 7276 7277 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl 7278 /// is a namespace alias, returns the namespace it points to. 7279 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) { 7280 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D)) 7281 return AD->getNamespace(); 7282 return dyn_cast_or_null<NamespaceDecl>(D); 7283 } 7284 7285 /// ActOnFinishNamespaceDef - This callback is called after a namespace is 7286 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. 7287 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) { 7288 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl); 7289 assert(Namespc && "Invalid parameter, expected NamespaceDecl"); 7290 Namespc->setRBraceLoc(RBrace); 7291 PopDeclContext(); 7292 if (Namespc->hasAttr<VisibilityAttr>()) 7293 PopPragmaVisibility(true, RBrace); 7294 } 7295 7296 CXXRecordDecl *Sema::getStdBadAlloc() const { 7297 return cast_or_null<CXXRecordDecl>( 7298 StdBadAlloc.get(Context.getExternalSource())); 7299 } 7300 7301 NamespaceDecl *Sema::getStdNamespace() const { 7302 return cast_or_null<NamespaceDecl>( 7303 StdNamespace.get(Context.getExternalSource())); 7304 } 7305 7306 /// \brief Retrieve the special "std" namespace, which may require us to 7307 /// implicitly define the namespace. 7308 NamespaceDecl *Sema::getOrCreateStdNamespace() { 7309 if (!StdNamespace) { 7310 // The "std" namespace has not yet been defined, so build one implicitly. 7311 StdNamespace = NamespaceDecl::Create(Context, 7312 Context.getTranslationUnitDecl(), 7313 /*Inline=*/false, 7314 SourceLocation(), SourceLocation(), 7315 &PP.getIdentifierTable().get("std"), 7316 /*PrevDecl=*/nullptr); 7317 getStdNamespace()->setImplicit(true); 7318 } 7319 7320 return getStdNamespace(); 7321 } 7322 7323 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) { 7324 assert(getLangOpts().CPlusPlus && 7325 "Looking for std::initializer_list outside of C++."); 7326 7327 // We're looking for implicit instantiations of 7328 // template <typename E> class std::initializer_list. 7329 7330 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it. 7331 return false; 7332 7333 ClassTemplateDecl *Template = nullptr; 7334 const TemplateArgument *Arguments = nullptr; 7335 7336 if (const RecordType *RT = Ty->getAs<RecordType>()) { 7337 7338 ClassTemplateSpecializationDecl *Specialization = 7339 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()); 7340 if (!Specialization) 7341 return false; 7342 7343 Template = Specialization->getSpecializedTemplate(); 7344 Arguments = Specialization->getTemplateArgs().data(); 7345 } else if (const TemplateSpecializationType *TST = 7346 Ty->getAs<TemplateSpecializationType>()) { 7347 Template = dyn_cast_or_null<ClassTemplateDecl>( 7348 TST->getTemplateName().getAsTemplateDecl()); 7349 Arguments = TST->getArgs(); 7350 } 7351 if (!Template) 7352 return false; 7353 7354 if (!StdInitializerList) { 7355 // Haven't recognized std::initializer_list yet, maybe this is it. 7356 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl(); 7357 if (TemplateClass->getIdentifier() != 7358 &PP.getIdentifierTable().get("initializer_list") || 7359 !getStdNamespace()->InEnclosingNamespaceSetOf( 7360 TemplateClass->getDeclContext())) 7361 return false; 7362 // This is a template called std::initializer_list, but is it the right 7363 // template? 7364 TemplateParameterList *Params = Template->getTemplateParameters(); 7365 if (Params->getMinRequiredArguments() != 1) 7366 return false; 7367 if (!isa<TemplateTypeParmDecl>(Params->getParam(0))) 7368 return false; 7369 7370 // It's the right template. 7371 StdInitializerList = Template; 7372 } 7373 7374 if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl()) 7375 return false; 7376 7377 // This is an instance of std::initializer_list. Find the argument type. 7378 if (Element) 7379 *Element = Arguments[0].getAsType(); 7380 return true; 7381 } 7382 7383 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){ 7384 NamespaceDecl *Std = S.getStdNamespace(); 7385 if (!Std) { 7386 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7387 return nullptr; 7388 } 7389 7390 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), 7391 Loc, Sema::LookupOrdinaryName); 7392 if (!S.LookupQualifiedName(Result, Std)) { 7393 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7394 return nullptr; 7395 } 7396 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>(); 7397 if (!Template) { 7398 Result.suppressDiagnostics(); 7399 // We found something weird. Complain about the first thing we found. 7400 NamedDecl *Found = *Result.begin(); 7401 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list); 7402 return nullptr; 7403 } 7404 7405 // We found some template called std::initializer_list. Now verify that it's 7406 // correct. 7407 TemplateParameterList *Params = Template->getTemplateParameters(); 7408 if (Params->getMinRequiredArguments() != 1 || 7409 !isa<TemplateTypeParmDecl>(Params->getParam(0))) { 7410 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list); 7411 return nullptr; 7412 } 7413 7414 return Template; 7415 } 7416 7417 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) { 7418 if (!StdInitializerList) { 7419 StdInitializerList = LookupStdInitializerList(*this, Loc); 7420 if (!StdInitializerList) 7421 return QualType(); 7422 } 7423 7424 TemplateArgumentListInfo Args(Loc, Loc); 7425 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element), 7426 Context.getTrivialTypeSourceInfo(Element, 7427 Loc))); 7428 return Context.getCanonicalType( 7429 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args)); 7430 } 7431 7432 bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) { 7433 // C++ [dcl.init.list]p2: 7434 // A constructor is an initializer-list constructor if its first parameter 7435 // is of type std::initializer_list<E> or reference to possibly cv-qualified 7436 // std::initializer_list<E> for some type E, and either there are no other 7437 // parameters or else all other parameters have default arguments. 7438 if (Ctor->getNumParams() < 1 || 7439 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg())) 7440 return false; 7441 7442 QualType ArgType = Ctor->getParamDecl(0)->getType(); 7443 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>()) 7444 ArgType = RT->getPointeeType().getUnqualifiedType(); 7445 7446 return isStdInitializerList(ArgType, nullptr); 7447 } 7448 7449 /// \brief Determine whether a using statement is in a context where it will be 7450 /// apply in all contexts. 7451 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) { 7452 switch (CurContext->getDeclKind()) { 7453 case Decl::TranslationUnit: 7454 return true; 7455 case Decl::LinkageSpec: 7456 return IsUsingDirectiveInToplevelContext(CurContext->getParent()); 7457 default: 7458 return false; 7459 } 7460 } 7461 7462 namespace { 7463 7464 // Callback to only accept typo corrections that are namespaces. 7465 class NamespaceValidatorCCC : public CorrectionCandidateCallback { 7466 public: 7467 bool ValidateCandidate(const TypoCorrection &candidate) override { 7468 if (NamedDecl *ND = candidate.getCorrectionDecl()) 7469 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); 7470 return false; 7471 } 7472 }; 7473 7474 } 7475 7476 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, 7477 CXXScopeSpec &SS, 7478 SourceLocation IdentLoc, 7479 IdentifierInfo *Ident) { 7480 R.clear(); 7481 if (TypoCorrection Corrected = 7482 S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS, 7483 llvm::make_unique<NamespaceValidatorCCC>(), 7484 Sema::CTK_ErrorRecovery)) { 7485 if (DeclContext *DC = S.computeDeclContext(SS, false)) { 7486 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); 7487 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 7488 Ident->getName().equals(CorrectedStr); 7489 S.diagnoseTypo(Corrected, 7490 S.PDiag(diag::err_using_directive_member_suggest) 7491 << Ident << DC << DroppedSpecifier << SS.getRange(), 7492 S.PDiag(diag::note_namespace_defined_here)); 7493 } else { 7494 S.diagnoseTypo(Corrected, 7495 S.PDiag(diag::err_using_directive_suggest) << Ident, 7496 S.PDiag(diag::note_namespace_defined_here)); 7497 } 7498 R.addDecl(Corrected.getCorrectionDecl()); 7499 return true; 7500 } 7501 return false; 7502 } 7503 7504 Decl *Sema::ActOnUsingDirective(Scope *S, 7505 SourceLocation UsingLoc, 7506 SourceLocation NamespcLoc, 7507 CXXScopeSpec &SS, 7508 SourceLocation IdentLoc, 7509 IdentifierInfo *NamespcName, 7510 AttributeList *AttrList) { 7511 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 7512 assert(NamespcName && "Invalid NamespcName."); 7513 assert(IdentLoc.isValid() && "Invalid NamespceName location."); 7514 7515 // This can only happen along a recovery path. 7516 while (S->getFlags() & Scope::TemplateParamScope) 7517 S = S->getParent(); 7518 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7519 7520 UsingDirectiveDecl *UDir = nullptr; 7521 NestedNameSpecifier *Qualifier = nullptr; 7522 if (SS.isSet()) 7523 Qualifier = SS.getScopeRep(); 7524 7525 // Lookup namespace name. 7526 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); 7527 LookupParsedName(R, S, &SS); 7528 if (R.isAmbiguous()) 7529 return nullptr; 7530 7531 if (R.empty()) { 7532 R.clear(); 7533 // Allow "using namespace std;" or "using namespace ::std;" even if 7534 // "std" hasn't been defined yet, for GCC compatibility. 7535 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) && 7536 NamespcName->isStr("std")) { 7537 Diag(IdentLoc, diag::ext_using_undefined_std); 7538 R.addDecl(getOrCreateStdNamespace()); 7539 R.resolveKind(); 7540 } 7541 // Otherwise, attempt typo correction. 7542 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName); 7543 } 7544 7545 if (!R.empty()) { 7546 NamedDecl *Named = R.getFoundDecl(); 7547 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named)) 7548 && "expected namespace decl"); 7549 7550 // The use of a nested name specifier may trigger deprecation warnings. 7551 DiagnoseUseOfDecl(Named, IdentLoc); 7552 7553 // C++ [namespace.udir]p1: 7554 // A using-directive specifies that the names in the nominated 7555 // namespace can be used in the scope in which the 7556 // using-directive appears after the using-directive. During 7557 // unqualified name lookup (3.4.1), the names appear as if they 7558 // were declared in the nearest enclosing namespace which 7559 // contains both the using-directive and the nominated 7560 // namespace. [Note: in this context, "contains" means "contains 7561 // directly or indirectly". ] 7562 7563 // Find enclosing context containing both using-directive and 7564 // nominated namespace. 7565 NamespaceDecl *NS = getNamespaceDecl(Named); 7566 DeclContext *CommonAncestor = cast<DeclContext>(NS); 7567 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) 7568 CommonAncestor = CommonAncestor->getParent(); 7569 7570 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, 7571 SS.getWithLocInContext(Context), 7572 IdentLoc, Named, CommonAncestor); 7573 7574 if (IsUsingDirectiveInToplevelContext(CurContext) && 7575 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) { 7576 Diag(IdentLoc, diag::warn_using_directive_in_header); 7577 } 7578 7579 PushUsingDirective(S, UDir); 7580 } else { 7581 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 7582 } 7583 7584 if (UDir) 7585 ProcessDeclAttributeList(S, UDir, AttrList); 7586 7587 return UDir; 7588 } 7589 7590 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { 7591 // If the scope has an associated entity and the using directive is at 7592 // namespace or translation unit scope, add the UsingDirectiveDecl into 7593 // its lookup structure so qualified name lookup can find it. 7594 DeclContext *Ctx = S->getEntity(); 7595 if (Ctx && !Ctx->isFunctionOrMethod()) 7596 Ctx->addDecl(UDir); 7597 else 7598 // Otherwise, it is at block scope. The using-directives will affect lookup 7599 // only to the end of the scope. 7600 S->PushUsingDirective(UDir); 7601 } 7602 7603 7604 Decl *Sema::ActOnUsingDeclaration(Scope *S, 7605 AccessSpecifier AS, 7606 bool HasUsingKeyword, 7607 SourceLocation UsingLoc, 7608 CXXScopeSpec &SS, 7609 UnqualifiedId &Name, 7610 AttributeList *AttrList, 7611 bool HasTypenameKeyword, 7612 SourceLocation TypenameLoc) { 7613 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7614 7615 switch (Name.getKind()) { 7616 case UnqualifiedId::IK_ImplicitSelfParam: 7617 case UnqualifiedId::IK_Identifier: 7618 case UnqualifiedId::IK_OperatorFunctionId: 7619 case UnqualifiedId::IK_LiteralOperatorId: 7620 case UnqualifiedId::IK_ConversionFunctionId: 7621 break; 7622 7623 case UnqualifiedId::IK_ConstructorName: 7624 case UnqualifiedId::IK_ConstructorTemplateId: 7625 // C++11 inheriting constructors. 7626 Diag(Name.getLocStart(), 7627 getLangOpts().CPlusPlus11 ? 7628 diag::warn_cxx98_compat_using_decl_constructor : 7629 diag::err_using_decl_constructor) 7630 << SS.getRange(); 7631 7632 if (getLangOpts().CPlusPlus11) break; 7633 7634 return nullptr; 7635 7636 case UnqualifiedId::IK_DestructorName: 7637 Diag(Name.getLocStart(), diag::err_using_decl_destructor) 7638 << SS.getRange(); 7639 return nullptr; 7640 7641 case UnqualifiedId::IK_TemplateId: 7642 Diag(Name.getLocStart(), diag::err_using_decl_template_id) 7643 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc); 7644 return nullptr; 7645 } 7646 7647 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); 7648 DeclarationName TargetName = TargetNameInfo.getName(); 7649 if (!TargetName) 7650 return nullptr; 7651 7652 // Warn about access declarations. 7653 if (!HasUsingKeyword) { 7654 Diag(Name.getLocStart(), 7655 getLangOpts().CPlusPlus11 ? diag::err_access_decl 7656 : diag::warn_access_decl_deprecated) 7657 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using "); 7658 } 7659 7660 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) || 7661 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration)) 7662 return nullptr; 7663 7664 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, 7665 TargetNameInfo, AttrList, 7666 /* IsInstantiation */ false, 7667 HasTypenameKeyword, TypenameLoc); 7668 if (UD) 7669 PushOnScopeChains(UD, S, /*AddToContext*/ false); 7670 7671 return UD; 7672 } 7673 7674 /// \brief Determine whether a using declaration considers the given 7675 /// declarations as "equivalent", e.g., if they are redeclarations of 7676 /// the same entity or are both typedefs of the same type. 7677 static bool 7678 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) { 7679 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) 7680 return true; 7681 7682 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1)) 7683 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) 7684 return Context.hasSameType(TD1->getUnderlyingType(), 7685 TD2->getUnderlyingType()); 7686 7687 return false; 7688 } 7689 7690 7691 /// Determines whether to create a using shadow decl for a particular 7692 /// decl, given the set of decls existing prior to this using lookup. 7693 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, 7694 const LookupResult &Previous, 7695 UsingShadowDecl *&PrevShadow) { 7696 // Diagnose finding a decl which is not from a base class of the 7697 // current class. We do this now because there are cases where this 7698 // function will silently decide not to build a shadow decl, which 7699 // will pre-empt further diagnostics. 7700 // 7701 // We don't need to do this in C++0x because we do the check once on 7702 // the qualifier. 7703 // 7704 // FIXME: diagnose the following if we care enough: 7705 // struct A { int foo; }; 7706 // struct B : A { using A::foo; }; 7707 // template <class T> struct C : A {}; 7708 // template <class T> struct D : C<T> { using B::foo; } // <--- 7709 // This is invalid (during instantiation) in C++03 because B::foo 7710 // resolves to the using decl in B, which is not a base class of D<T>. 7711 // We can't diagnose it immediately because C<T> is an unknown 7712 // specialization. The UsingShadowDecl in D<T> then points directly 7713 // to A::foo, which will look well-formed when we instantiate. 7714 // The right solution is to not collapse the shadow-decl chain. 7715 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) { 7716 DeclContext *OrigDC = Orig->getDeclContext(); 7717 7718 // Handle enums and anonymous structs. 7719 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent(); 7720 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC); 7721 while (OrigRec->isAnonymousStructOrUnion()) 7722 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext()); 7723 7724 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) { 7725 if (OrigDC == CurContext) { 7726 Diag(Using->getLocation(), 7727 diag::err_using_decl_nested_name_specifier_is_current_class) 7728 << Using->getQualifierLoc().getSourceRange(); 7729 Diag(Orig->getLocation(), diag::note_using_decl_target); 7730 return true; 7731 } 7732 7733 Diag(Using->getQualifierLoc().getBeginLoc(), 7734 diag::err_using_decl_nested_name_specifier_is_not_base_class) 7735 << Using->getQualifier() 7736 << cast<CXXRecordDecl>(CurContext) 7737 << Using->getQualifierLoc().getSourceRange(); 7738 Diag(Orig->getLocation(), diag::note_using_decl_target); 7739 return true; 7740 } 7741 } 7742 7743 if (Previous.empty()) return false; 7744 7745 NamedDecl *Target = Orig; 7746 if (isa<UsingShadowDecl>(Target)) 7747 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7748 7749 // If the target happens to be one of the previous declarations, we 7750 // don't have a conflict. 7751 // 7752 // FIXME: but we might be increasing its access, in which case we 7753 // should redeclare it. 7754 NamedDecl *NonTag = nullptr, *Tag = nullptr; 7755 bool FoundEquivalentDecl = false; 7756 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7757 I != E; ++I) { 7758 NamedDecl *D = (*I)->getUnderlyingDecl(); 7759 if (IsEquivalentForUsingDecl(Context, D, Target)) { 7760 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I)) 7761 PrevShadow = Shadow; 7762 FoundEquivalentDecl = true; 7763 } 7764 7765 (isa<TagDecl>(D) ? Tag : NonTag) = D; 7766 } 7767 7768 if (FoundEquivalentDecl) 7769 return false; 7770 7771 if (FunctionDecl *FD = Target->getAsFunction()) { 7772 NamedDecl *OldDecl = nullptr; 7773 switch (CheckOverload(nullptr, FD, Previous, OldDecl, 7774 /*IsForUsingDecl*/ true)) { 7775 case Ovl_Overload: 7776 return false; 7777 7778 case Ovl_NonFunction: 7779 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7780 break; 7781 7782 // We found a decl with the exact signature. 7783 case Ovl_Match: 7784 // If we're in a record, we want to hide the target, so we 7785 // return true (without a diagnostic) to tell the caller not to 7786 // build a shadow decl. 7787 if (CurContext->isRecord()) 7788 return true; 7789 7790 // If we're not in a record, this is an error. 7791 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7792 break; 7793 } 7794 7795 Diag(Target->getLocation(), diag::note_using_decl_target); 7796 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict); 7797 return true; 7798 } 7799 7800 // Target is not a function. 7801 7802 if (isa<TagDecl>(Target)) { 7803 // No conflict between a tag and a non-tag. 7804 if (!Tag) return false; 7805 7806 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7807 Diag(Target->getLocation(), diag::note_using_decl_target); 7808 Diag(Tag->getLocation(), diag::note_using_decl_conflict); 7809 return true; 7810 } 7811 7812 // No conflict between a tag and a non-tag. 7813 if (!NonTag) return false; 7814 7815 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7816 Diag(Target->getLocation(), diag::note_using_decl_target); 7817 Diag(NonTag->getLocation(), diag::note_using_decl_conflict); 7818 return true; 7819 } 7820 7821 /// Builds a shadow declaration corresponding to a 'using' declaration. 7822 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S, 7823 UsingDecl *UD, 7824 NamedDecl *Orig, 7825 UsingShadowDecl *PrevDecl) { 7826 7827 // If we resolved to another shadow declaration, just coalesce them. 7828 NamedDecl *Target = Orig; 7829 if (isa<UsingShadowDecl>(Target)) { 7830 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7831 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration"); 7832 } 7833 7834 UsingShadowDecl *Shadow 7835 = UsingShadowDecl::Create(Context, CurContext, 7836 UD->getLocation(), UD, Target); 7837 UD->addShadowDecl(Shadow); 7838 7839 Shadow->setAccess(UD->getAccess()); 7840 if (Orig->isInvalidDecl() || UD->isInvalidDecl()) 7841 Shadow->setInvalidDecl(); 7842 7843 Shadow->setPreviousDecl(PrevDecl); 7844 7845 if (S) 7846 PushOnScopeChains(Shadow, S); 7847 else 7848 CurContext->addDecl(Shadow); 7849 7850 7851 return Shadow; 7852 } 7853 7854 /// Hides a using shadow declaration. This is required by the current 7855 /// using-decl implementation when a resolvable using declaration in a 7856 /// class is followed by a declaration which would hide or override 7857 /// one or more of the using decl's targets; for example: 7858 /// 7859 /// struct Base { void foo(int); }; 7860 /// struct Derived : Base { 7861 /// using Base::foo; 7862 /// void foo(int); 7863 /// }; 7864 /// 7865 /// The governing language is C++03 [namespace.udecl]p12: 7866 /// 7867 /// When a using-declaration brings names from a base class into a 7868 /// derived class scope, member functions in the derived class 7869 /// override and/or hide member functions with the same name and 7870 /// parameter types in a base class (rather than conflicting). 7871 /// 7872 /// There are two ways to implement this: 7873 /// (1) optimistically create shadow decls when they're not hidden 7874 /// by existing declarations, or 7875 /// (2) don't create any shadow decls (or at least don't make them 7876 /// visible) until we've fully parsed/instantiated the class. 7877 /// The problem with (1) is that we might have to retroactively remove 7878 /// a shadow decl, which requires several O(n) operations because the 7879 /// decl structures are (very reasonably) not designed for removal. 7880 /// (2) avoids this but is very fiddly and phase-dependent. 7881 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { 7882 if (Shadow->getDeclName().getNameKind() == 7883 DeclarationName::CXXConversionFunctionName) 7884 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); 7885 7886 // Remove it from the DeclContext... 7887 Shadow->getDeclContext()->removeDecl(Shadow); 7888 7889 // ...and the scope, if applicable... 7890 if (S) { 7891 S->RemoveDecl(Shadow); 7892 IdResolver.RemoveDecl(Shadow); 7893 } 7894 7895 // ...and the using decl. 7896 Shadow->getUsingDecl()->removeShadowDecl(Shadow); 7897 7898 // TODO: complain somehow if Shadow was used. It shouldn't 7899 // be possible for this to happen, because...? 7900 } 7901 7902 /// Find the base specifier for a base class with the given type. 7903 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived, 7904 QualType DesiredBase, 7905 bool &AnyDependentBases) { 7906 // Check whether the named type is a direct base class. 7907 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified(); 7908 for (auto &Base : Derived->bases()) { 7909 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified(); 7910 if (CanonicalDesiredBase == BaseType) 7911 return &Base; 7912 if (BaseType->isDependentType()) 7913 AnyDependentBases = true; 7914 } 7915 return nullptr; 7916 } 7917 7918 namespace { 7919 class UsingValidatorCCC : public CorrectionCandidateCallback { 7920 public: 7921 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation, 7922 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf) 7923 : HasTypenameKeyword(HasTypenameKeyword), 7924 IsInstantiation(IsInstantiation), OldNNS(NNS), 7925 RequireMemberOf(RequireMemberOf) {} 7926 7927 bool ValidateCandidate(const TypoCorrection &Candidate) override { 7928 NamedDecl *ND = Candidate.getCorrectionDecl(); 7929 7930 // Keywords are not valid here. 7931 if (!ND || isa<NamespaceDecl>(ND)) 7932 return false; 7933 7934 // Completely unqualified names are invalid for a 'using' declaration. 7935 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier()) 7936 return false; 7937 7938 if (RequireMemberOf) { 7939 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 7940 if (FoundRecord && FoundRecord->isInjectedClassName()) { 7941 // No-one ever wants a using-declaration to name an injected-class-name 7942 // of a base class, unless they're declaring an inheriting constructor. 7943 ASTContext &Ctx = ND->getASTContext(); 7944 if (!Ctx.getLangOpts().CPlusPlus11) 7945 return false; 7946 QualType FoundType = Ctx.getRecordType(FoundRecord); 7947 7948 // Check that the injected-class-name is named as a member of its own 7949 // type; we don't want to suggest 'using Derived::Base;', since that 7950 // means something else. 7951 NestedNameSpecifier *Specifier = 7952 Candidate.WillReplaceSpecifier() 7953 ? Candidate.getCorrectionSpecifier() 7954 : OldNNS; 7955 if (!Specifier->getAsType() || 7956 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType)) 7957 return false; 7958 7959 // Check that this inheriting constructor declaration actually names a 7960 // direct base class of the current class. 7961 bool AnyDependentBases = false; 7962 if (!findDirectBaseWithType(RequireMemberOf, 7963 Ctx.getRecordType(FoundRecord), 7964 AnyDependentBases) && 7965 !AnyDependentBases) 7966 return false; 7967 } else { 7968 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext()); 7969 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD)) 7970 return false; 7971 7972 // FIXME: Check that the base class member is accessible? 7973 } 7974 } 7975 7976 if (isa<TypeDecl>(ND)) 7977 return HasTypenameKeyword || !IsInstantiation; 7978 7979 return !HasTypenameKeyword; 7980 } 7981 7982 private: 7983 bool HasTypenameKeyword; 7984 bool IsInstantiation; 7985 NestedNameSpecifier *OldNNS; 7986 CXXRecordDecl *RequireMemberOf; 7987 }; 7988 } // end anonymous namespace 7989 7990 /// Builds a using declaration. 7991 /// 7992 /// \param IsInstantiation - Whether this call arises from an 7993 /// instantiation of an unresolved using declaration. We treat 7994 /// the lookup differently for these declarations. 7995 NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS, 7996 SourceLocation UsingLoc, 7997 CXXScopeSpec &SS, 7998 DeclarationNameInfo NameInfo, 7999 AttributeList *AttrList, 8000 bool IsInstantiation, 8001 bool HasTypenameKeyword, 8002 SourceLocation TypenameLoc) { 8003 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 8004 SourceLocation IdentLoc = NameInfo.getLoc(); 8005 assert(IdentLoc.isValid() && "Invalid TargetName location."); 8006 8007 // FIXME: We ignore attributes for now. 8008 8009 if (SS.isEmpty()) { 8010 Diag(IdentLoc, diag::err_using_requires_qualname); 8011 return nullptr; 8012 } 8013 8014 // Do the redeclaration lookup in the current scope. 8015 LookupResult Previous(*this, NameInfo, LookupUsingDeclName, 8016 ForRedeclaration); 8017 Previous.setHideTags(false); 8018 if (S) { 8019 LookupName(Previous, S); 8020 8021 // It is really dumb that we have to do this. 8022 LookupResult::Filter F = Previous.makeFilter(); 8023 while (F.hasNext()) { 8024 NamedDecl *D = F.next(); 8025 if (!isDeclInScope(D, CurContext, S)) 8026 F.erase(); 8027 // If we found a local extern declaration that's not ordinarily visible, 8028 // and this declaration is being added to a non-block scope, ignore it. 8029 // We're only checking for scope conflicts here, not also for violations 8030 // of the linkage rules. 8031 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() && 8032 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary)) 8033 F.erase(); 8034 } 8035 F.done(); 8036 } else { 8037 assert(IsInstantiation && "no scope in non-instantiation"); 8038 assert(CurContext->isRecord() && "scope not record in instantiation"); 8039 LookupQualifiedName(Previous, CurContext); 8040 } 8041 8042 // Check for invalid redeclarations. 8043 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, 8044 SS, IdentLoc, Previous)) 8045 return nullptr; 8046 8047 // Check for bad qualifiers. 8048 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) 8049 return nullptr; 8050 8051 DeclContext *LookupContext = computeDeclContext(SS); 8052 NamedDecl *D; 8053 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 8054 if (!LookupContext) { 8055 if (HasTypenameKeyword) { 8056 // FIXME: not all declaration name kinds are legal here 8057 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, 8058 UsingLoc, TypenameLoc, 8059 QualifierLoc, 8060 IdentLoc, NameInfo.getName()); 8061 } else { 8062 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, 8063 QualifierLoc, NameInfo); 8064 } 8065 D->setAccess(AS); 8066 CurContext->addDecl(D); 8067 return D; 8068 } 8069 8070 auto Build = [&](bool Invalid) { 8071 UsingDecl *UD = 8072 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo, 8073 HasTypenameKeyword); 8074 UD->setAccess(AS); 8075 CurContext->addDecl(UD); 8076 UD->setInvalidDecl(Invalid); 8077 return UD; 8078 }; 8079 auto BuildInvalid = [&]{ return Build(true); }; 8080 auto BuildValid = [&]{ return Build(false); }; 8081 8082 if (RequireCompleteDeclContext(SS, LookupContext)) 8083 return BuildInvalid(); 8084 8085 // The normal rules do not apply to inheriting constructor declarations. 8086 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) { 8087 UsingDecl *UD = BuildValid(); 8088 CheckInheritingConstructorUsingDecl(UD); 8089 return UD; 8090 } 8091 8092 // Otherwise, look up the target name. 8093 8094 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8095 8096 // Unlike most lookups, we don't always want to hide tag 8097 // declarations: tag names are visible through the using declaration 8098 // even if hidden by ordinary names, *except* in a dependent context 8099 // where it's important for the sanity of two-phase lookup. 8100 if (!IsInstantiation) 8101 R.setHideTags(false); 8102 8103 // For the purposes of this lookup, we have a base object type 8104 // equal to that of the current context. 8105 if (CurContext->isRecord()) { 8106 R.setBaseObjectType( 8107 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext))); 8108 } 8109 8110 LookupQualifiedName(R, LookupContext); 8111 8112 // Try to correct typos if possible. 8113 if (R.empty()) { 8114 if (TypoCorrection Corrected = CorrectTypo( 8115 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 8116 llvm::make_unique<UsingValidatorCCC>( 8117 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(), 8118 dyn_cast<CXXRecordDecl>(CurContext)), 8119 CTK_ErrorRecovery)) { 8120 // We reject any correction for which ND would be NULL. 8121 NamedDecl *ND = Corrected.getCorrectionDecl(); 8122 8123 // We reject candidates where DroppedSpecifier == true, hence the 8124 // literal '0' below. 8125 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 8126 << NameInfo.getName() << LookupContext << 0 8127 << SS.getRange()); 8128 8129 // If we corrected to an inheriting constructor, handle it as one. 8130 auto *RD = dyn_cast<CXXRecordDecl>(ND); 8131 if (RD && RD->isInjectedClassName()) { 8132 // Fix up the information we'll use to build the using declaration. 8133 if (Corrected.WillReplaceSpecifier()) { 8134 NestedNameSpecifierLocBuilder Builder; 8135 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 8136 QualifierLoc.getSourceRange()); 8137 QualifierLoc = Builder.getWithLocInContext(Context); 8138 } 8139 8140 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 8141 Context.getCanonicalType(Context.getRecordType(RD)))); 8142 NameInfo.setNamedTypeInfo(nullptr); 8143 8144 // Build it and process it as an inheriting constructor. 8145 UsingDecl *UD = BuildValid(); 8146 CheckInheritingConstructorUsingDecl(UD); 8147 return UD; 8148 } 8149 8150 // FIXME: Pick up all the declarations if we found an overloaded function. 8151 R.setLookupName(Corrected.getCorrection()); 8152 R.addDecl(ND); 8153 } else { 8154 Diag(IdentLoc, diag::err_no_member) 8155 << NameInfo.getName() << LookupContext << SS.getRange(); 8156 return BuildInvalid(); 8157 } 8158 } 8159 8160 if (R.isAmbiguous()) 8161 return BuildInvalid(); 8162 8163 if (HasTypenameKeyword) { 8164 // If we asked for a typename and got a non-type decl, error out. 8165 if (!R.getAsSingle<TypeDecl>()) { 8166 Diag(IdentLoc, diag::err_using_typename_non_type); 8167 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 8168 Diag((*I)->getUnderlyingDecl()->getLocation(), 8169 diag::note_using_decl_target); 8170 return BuildInvalid(); 8171 } 8172 } else { 8173 // If we asked for a non-typename and we got a type, error out, 8174 // but only if this is an instantiation of an unresolved using 8175 // decl. Otherwise just silently find the type name. 8176 if (IsInstantiation && R.getAsSingle<TypeDecl>()) { 8177 Diag(IdentLoc, diag::err_using_dependent_value_is_type); 8178 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target); 8179 return BuildInvalid(); 8180 } 8181 } 8182 8183 // C++0x N2914 [namespace.udecl]p6: 8184 // A using-declaration shall not name a namespace. 8185 if (R.getAsSingle<NamespaceDecl>()) { 8186 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace) 8187 << SS.getRange(); 8188 return BuildInvalid(); 8189 } 8190 8191 UsingDecl *UD = BuildValid(); 8192 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 8193 UsingShadowDecl *PrevDecl = nullptr; 8194 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl)) 8195 BuildUsingShadowDecl(S, UD, *I, PrevDecl); 8196 } 8197 8198 return UD; 8199 } 8200 8201 /// Additional checks for a using declaration referring to a constructor name. 8202 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) { 8203 assert(!UD->hasTypename() && "expecting a constructor name"); 8204 8205 const Type *SourceType = UD->getQualifier()->getAsType(); 8206 assert(SourceType && 8207 "Using decl naming constructor doesn't have type in scope spec."); 8208 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext); 8209 8210 // Check whether the named type is a direct base class. 8211 bool AnyDependentBases = false; 8212 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), 8213 AnyDependentBases); 8214 if (!Base && !AnyDependentBases) { 8215 Diag(UD->getUsingLoc(), 8216 diag::err_using_decl_constructor_not_in_direct_base) 8217 << UD->getNameInfo().getSourceRange() 8218 << QualType(SourceType, 0) << TargetClass; 8219 UD->setInvalidDecl(); 8220 return true; 8221 } 8222 8223 if (Base) 8224 Base->setInheritConstructors(); 8225 8226 return false; 8227 } 8228 8229 /// Checks that the given using declaration is not an invalid 8230 /// redeclaration. Note that this is checking only for the using decl 8231 /// itself, not for any ill-formedness among the UsingShadowDecls. 8232 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc, 8233 bool HasTypenameKeyword, 8234 const CXXScopeSpec &SS, 8235 SourceLocation NameLoc, 8236 const LookupResult &Prev) { 8237 // C++03 [namespace.udecl]p8: 8238 // C++0x [namespace.udecl]p10: 8239 // A using-declaration is a declaration and can therefore be used 8240 // repeatedly where (and only where) multiple declarations are 8241 // allowed. 8242 // 8243 // That's in non-member contexts. 8244 if (!CurContext->getRedeclContext()->isRecord()) 8245 return false; 8246 8247 NestedNameSpecifier *Qual = SS.getScopeRep(); 8248 8249 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) { 8250 NamedDecl *D = *I; 8251 8252 bool DTypename; 8253 NestedNameSpecifier *DQual; 8254 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { 8255 DTypename = UD->hasTypename(); 8256 DQual = UD->getQualifier(); 8257 } else if (UnresolvedUsingValueDecl *UD 8258 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 8259 DTypename = false; 8260 DQual = UD->getQualifier(); 8261 } else if (UnresolvedUsingTypenameDecl *UD 8262 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 8263 DTypename = true; 8264 DQual = UD->getQualifier(); 8265 } else continue; 8266 8267 // using decls differ if one says 'typename' and the other doesn't. 8268 // FIXME: non-dependent using decls? 8269 if (HasTypenameKeyword != DTypename) continue; 8270 8271 // using decls differ if they name different scopes (but note that 8272 // template instantiation can cause this check to trigger when it 8273 // didn't before instantiation). 8274 if (Context.getCanonicalNestedNameSpecifier(Qual) != 8275 Context.getCanonicalNestedNameSpecifier(DQual)) 8276 continue; 8277 8278 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange(); 8279 Diag(D->getLocation(), diag::note_using_decl) << 1; 8280 return true; 8281 } 8282 8283 return false; 8284 } 8285 8286 8287 /// Checks that the given nested-name qualifier used in a using decl 8288 /// in the current context is appropriately related to the current 8289 /// scope. If an error is found, diagnoses it and returns true. 8290 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc, 8291 const CXXScopeSpec &SS, 8292 const DeclarationNameInfo &NameInfo, 8293 SourceLocation NameLoc) { 8294 DeclContext *NamedContext = computeDeclContext(SS); 8295 8296 if (!CurContext->isRecord()) { 8297 // C++03 [namespace.udecl]p3: 8298 // C++0x [namespace.udecl]p8: 8299 // A using-declaration for a class member shall be a member-declaration. 8300 8301 // If we weren't able to compute a valid scope, it must be a 8302 // dependent class scope. 8303 if (!NamedContext || NamedContext->isRecord()) { 8304 auto *RD = dyn_cast_or_null<CXXRecordDecl>(NamedContext); 8305 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD)) 8306 RD = nullptr; 8307 8308 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member) 8309 << SS.getRange(); 8310 8311 // If we have a complete, non-dependent source type, try to suggest a 8312 // way to get the same effect. 8313 if (!RD) 8314 return true; 8315 8316 // Find what this using-declaration was referring to. 8317 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8318 R.setHideTags(false); 8319 R.suppressDiagnostics(); 8320 LookupQualifiedName(R, RD); 8321 8322 if (R.getAsSingle<TypeDecl>()) { 8323 if (getLangOpts().CPlusPlus11) { 8324 // Convert 'using X::Y;' to 'using Y = X::Y;'. 8325 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround) 8326 << 0 // alias declaration 8327 << FixItHint::CreateInsertion(SS.getBeginLoc(), 8328 NameInfo.getName().getAsString() + 8329 " = "); 8330 } else { 8331 // Convert 'using X::Y;' to 'typedef X::Y Y;'. 8332 SourceLocation InsertLoc = 8333 PP.getLocForEndOfToken(NameInfo.getLocEnd()); 8334 Diag(InsertLoc, diag::note_using_decl_class_member_workaround) 8335 << 1 // typedef declaration 8336 << FixItHint::CreateReplacement(UsingLoc, "typedef") 8337 << FixItHint::CreateInsertion( 8338 InsertLoc, " " + NameInfo.getName().getAsString()); 8339 } 8340 } else if (R.getAsSingle<VarDecl>()) { 8341 // Don't provide a fixit outside C++11 mode; we don't want to suggest 8342 // repeating the type of the static data member here. 8343 FixItHint FixIt; 8344 if (getLangOpts().CPlusPlus11) { 8345 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 8346 FixIt = FixItHint::CreateReplacement( 8347 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = "); 8348 } 8349 8350 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 8351 << 2 // reference declaration 8352 << FixIt; 8353 } 8354 return true; 8355 } 8356 8357 // Otherwise, everything is known to be fine. 8358 return false; 8359 } 8360 8361 // The current scope is a record. 8362 8363 // If the named context is dependent, we can't decide much. 8364 if (!NamedContext) { 8365 // FIXME: in C++0x, we can diagnose if we can prove that the 8366 // nested-name-specifier does not refer to a base class, which is 8367 // still possible in some cases. 8368 8369 // Otherwise we have to conservatively report that things might be 8370 // okay. 8371 return false; 8372 } 8373 8374 if (!NamedContext->isRecord()) { 8375 // Ideally this would point at the last name in the specifier, 8376 // but we don't have that level of source info. 8377 Diag(SS.getRange().getBegin(), 8378 diag::err_using_decl_nested_name_specifier_is_not_class) 8379 << SS.getScopeRep() << SS.getRange(); 8380 return true; 8381 } 8382 8383 if (!NamedContext->isDependentContext() && 8384 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext)) 8385 return true; 8386 8387 if (getLangOpts().CPlusPlus11) { 8388 // C++0x [namespace.udecl]p3: 8389 // In a using-declaration used as a member-declaration, the 8390 // nested-name-specifier shall name a base class of the class 8391 // being defined. 8392 8393 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom( 8394 cast<CXXRecordDecl>(NamedContext))) { 8395 if (CurContext == NamedContext) { 8396 Diag(NameLoc, 8397 diag::err_using_decl_nested_name_specifier_is_current_class) 8398 << SS.getRange(); 8399 return true; 8400 } 8401 8402 Diag(SS.getRange().getBegin(), 8403 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8404 << SS.getScopeRep() 8405 << cast<CXXRecordDecl>(CurContext) 8406 << SS.getRange(); 8407 return true; 8408 } 8409 8410 return false; 8411 } 8412 8413 // C++03 [namespace.udecl]p4: 8414 // A using-declaration used as a member-declaration shall refer 8415 // to a member of a base class of the class being defined [etc.]. 8416 8417 // Salient point: SS doesn't have to name a base class as long as 8418 // lookup only finds members from base classes. Therefore we can 8419 // diagnose here only if we can prove that that can't happen, 8420 // i.e. if the class hierarchies provably don't intersect. 8421 8422 // TODO: it would be nice if "definitely valid" results were cached 8423 // in the UsingDecl and UsingShadowDecl so that these checks didn't 8424 // need to be repeated. 8425 8426 struct UserData { 8427 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases; 8428 8429 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) { 8430 UserData *Data = reinterpret_cast<UserData*>(OpaqueData); 8431 Data->Bases.insert(Base); 8432 return true; 8433 } 8434 8435 bool hasDependentBases(const CXXRecordDecl *Class) { 8436 return !Class->forallBases(collect, this); 8437 } 8438 8439 /// Returns true if the base is dependent or is one of the 8440 /// accumulated base classes. 8441 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) { 8442 UserData *Data = reinterpret_cast<UserData*>(OpaqueData); 8443 return !Data->Bases.count(Base); 8444 } 8445 8446 bool mightShareBases(const CXXRecordDecl *Class) { 8447 return Bases.count(Class) || !Class->forallBases(doesNotContain, this); 8448 } 8449 }; 8450 8451 UserData Data; 8452 8453 // Returns false if we find a dependent base. 8454 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext))) 8455 return false; 8456 8457 // Returns false if the class has a dependent base or if it or one 8458 // of its bases is present in the base set of the current context. 8459 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext))) 8460 return false; 8461 8462 Diag(SS.getRange().getBegin(), 8463 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8464 << SS.getScopeRep() 8465 << cast<CXXRecordDecl>(CurContext) 8466 << SS.getRange(); 8467 8468 return true; 8469 } 8470 8471 Decl *Sema::ActOnAliasDeclaration(Scope *S, 8472 AccessSpecifier AS, 8473 MultiTemplateParamsArg TemplateParamLists, 8474 SourceLocation UsingLoc, 8475 UnqualifiedId &Name, 8476 AttributeList *AttrList, 8477 TypeResult Type) { 8478 // Skip up to the relevant declaration scope. 8479 while (S->getFlags() & Scope::TemplateParamScope) 8480 S = S->getParent(); 8481 assert((S->getFlags() & Scope::DeclScope) && 8482 "got alias-declaration outside of declaration scope"); 8483 8484 if (Type.isInvalid()) 8485 return nullptr; 8486 8487 bool Invalid = false; 8488 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name); 8489 TypeSourceInfo *TInfo = nullptr; 8490 GetTypeFromParser(Type.get(), &TInfo); 8491 8492 if (DiagnoseClassNameShadow(CurContext, NameInfo)) 8493 return nullptr; 8494 8495 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo, 8496 UPPC_DeclarationType)) { 8497 Invalid = true; 8498 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 8499 TInfo->getTypeLoc().getBeginLoc()); 8500 } 8501 8502 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration); 8503 LookupName(Previous, S); 8504 8505 // Warn about shadowing the name of a template parameter. 8506 if (Previous.isSingleResult() && 8507 Previous.getFoundDecl()->isTemplateParameter()) { 8508 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl()); 8509 Previous.clear(); 8510 } 8511 8512 assert(Name.Kind == UnqualifiedId::IK_Identifier && 8513 "name in alias declaration must be an identifier"); 8514 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc, 8515 Name.StartLocation, 8516 Name.Identifier, TInfo); 8517 8518 NewTD->setAccess(AS); 8519 8520 if (Invalid) 8521 NewTD->setInvalidDecl(); 8522 8523 ProcessDeclAttributeList(S, NewTD, AttrList); 8524 8525 CheckTypedefForVariablyModifiedType(S, NewTD); 8526 Invalid |= NewTD->isInvalidDecl(); 8527 8528 bool Redeclaration = false; 8529 8530 NamedDecl *NewND; 8531 if (TemplateParamLists.size()) { 8532 TypeAliasTemplateDecl *OldDecl = nullptr; 8533 TemplateParameterList *OldTemplateParams = nullptr; 8534 8535 if (TemplateParamLists.size() != 1) { 8536 Diag(UsingLoc, diag::err_alias_template_extra_headers) 8537 << SourceRange(TemplateParamLists[1]->getTemplateLoc(), 8538 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc()); 8539 } 8540 TemplateParameterList *TemplateParams = TemplateParamLists[0]; 8541 8542 // Only consider previous declarations in the same scope. 8543 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false, 8544 /*ExplicitInstantiationOrSpecialization*/false); 8545 if (!Previous.empty()) { 8546 Redeclaration = true; 8547 8548 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>(); 8549 if (!OldDecl && !Invalid) { 8550 Diag(UsingLoc, diag::err_redefinition_different_kind) 8551 << Name.Identifier; 8552 8553 NamedDecl *OldD = Previous.getRepresentativeDecl(); 8554 if (OldD->getLocation().isValid()) 8555 Diag(OldD->getLocation(), diag::note_previous_definition); 8556 8557 Invalid = true; 8558 } 8559 8560 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) { 8561 if (TemplateParameterListsAreEqual(TemplateParams, 8562 OldDecl->getTemplateParameters(), 8563 /*Complain=*/true, 8564 TPL_TemplateMatch)) 8565 OldTemplateParams = OldDecl->getTemplateParameters(); 8566 else 8567 Invalid = true; 8568 8569 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl(); 8570 if (!Invalid && 8571 !Context.hasSameType(OldTD->getUnderlyingType(), 8572 NewTD->getUnderlyingType())) { 8573 // FIXME: The C++0x standard does not clearly say this is ill-formed, 8574 // but we can't reasonably accept it. 8575 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef) 8576 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType(); 8577 if (OldTD->getLocation().isValid()) 8578 Diag(OldTD->getLocation(), diag::note_previous_definition); 8579 Invalid = true; 8580 } 8581 } 8582 } 8583 8584 // Merge any previous default template arguments into our parameters, 8585 // and check the parameter list. 8586 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams, 8587 TPC_TypeAliasTemplate)) 8588 return nullptr; 8589 8590 TypeAliasTemplateDecl *NewDecl = 8591 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc, 8592 Name.Identifier, TemplateParams, 8593 NewTD); 8594 NewTD->setDescribedAliasTemplate(NewDecl); 8595 8596 NewDecl->setAccess(AS); 8597 8598 if (Invalid) 8599 NewDecl->setInvalidDecl(); 8600 else if (OldDecl) 8601 NewDecl->setPreviousDecl(OldDecl); 8602 8603 NewND = NewDecl; 8604 } else { 8605 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration); 8606 NewND = NewTD; 8607 } 8608 8609 if (!Redeclaration) 8610 PushOnScopeChains(NewND, S); 8611 8612 ActOnDocumentableDecl(NewND); 8613 return NewND; 8614 } 8615 8616 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, 8617 SourceLocation AliasLoc, 8618 IdentifierInfo *Alias, CXXScopeSpec &SS, 8619 SourceLocation IdentLoc, 8620 IdentifierInfo *Ident) { 8621 8622 // Lookup the namespace name. 8623 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName); 8624 LookupParsedName(R, S, &SS); 8625 8626 if (R.isAmbiguous()) 8627 return nullptr; 8628 8629 if (R.empty()) { 8630 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) { 8631 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 8632 return nullptr; 8633 } 8634 } 8635 assert(!R.isAmbiguous() && !R.empty()); 8636 8637 // Check if we have a previous declaration with the same name. 8638 NamedDecl *PrevDecl = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName, 8639 ForRedeclaration); 8640 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S)) 8641 PrevDecl = nullptr; 8642 8643 NamedDecl *ND = R.getFoundDecl(); 8644 8645 if (PrevDecl) { 8646 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) { 8647 // We already have an alias with the same name that points to the same 8648 // namespace; check that it matches. 8649 if (!AD->getNamespace()->Equals(getNamespaceDecl(ND))) { 8650 Diag(AliasLoc, diag::err_redefinition_different_namespace_alias) 8651 << Alias; 8652 Diag(PrevDecl->getLocation(), diag::note_previous_namespace_alias) 8653 << AD->getNamespace(); 8654 return nullptr; 8655 } 8656 } else { 8657 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) 8658 ? diag::err_redefinition 8659 : diag::err_redefinition_different_kind; 8660 Diag(AliasLoc, DiagID) << Alias; 8661 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 8662 return nullptr; 8663 } 8664 } 8665 8666 // The use of a nested name specifier may trigger deprecation warnings. 8667 DiagnoseUseOfDecl(ND, IdentLoc); 8668 8669 NamespaceAliasDecl *AliasDecl = 8670 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc, 8671 Alias, SS.getWithLocInContext(Context), 8672 IdentLoc, ND); 8673 if (PrevDecl) 8674 AliasDecl->setPreviousDecl(cast<NamespaceAliasDecl>(PrevDecl)); 8675 8676 PushOnScopeChains(AliasDecl, S); 8677 return AliasDecl; 8678 } 8679 8680 Sema::ImplicitExceptionSpecification 8681 Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc, 8682 CXXMethodDecl *MD) { 8683 CXXRecordDecl *ClassDecl = MD->getParent(); 8684 8685 // C++ [except.spec]p14: 8686 // An implicitly declared special member function (Clause 12) shall have an 8687 // exception-specification. [...] 8688 ImplicitExceptionSpecification ExceptSpec(*this); 8689 if (ClassDecl->isInvalidDecl()) 8690 return ExceptSpec; 8691 8692 // Direct base-class constructors. 8693 for (const auto &B : ClassDecl->bases()) { 8694 if (B.isVirtual()) // Handled below. 8695 continue; 8696 8697 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8698 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8699 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8700 // If this is a deleted function, add it anyway. This might be conformant 8701 // with the standard. This might not. I'm not sure. It might not matter. 8702 if (Constructor) 8703 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8704 } 8705 } 8706 8707 // Virtual base-class constructors. 8708 for (const auto &B : ClassDecl->vbases()) { 8709 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8710 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8711 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8712 // If this is a deleted function, add it anyway. This might be conformant 8713 // with the standard. This might not. I'm not sure. It might not matter. 8714 if (Constructor) 8715 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8716 } 8717 } 8718 8719 // Field constructors. 8720 for (const auto *F : ClassDecl->fields()) { 8721 if (F->hasInClassInitializer()) { 8722 if (Expr *E = F->getInClassInitializer()) 8723 ExceptSpec.CalledExpr(E); 8724 } else if (const RecordType *RecordTy 8725 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8726 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8727 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8728 // If this is a deleted function, add it anyway. This might be conformant 8729 // with the standard. This might not. I'm not sure. It might not matter. 8730 // In particular, the problem is that this function never gets called. It 8731 // might just be ill-formed because this function attempts to refer to 8732 // a deleted function here. 8733 if (Constructor) 8734 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8735 } 8736 } 8737 8738 return ExceptSpec; 8739 } 8740 8741 Sema::ImplicitExceptionSpecification 8742 Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) { 8743 CXXRecordDecl *ClassDecl = CD->getParent(); 8744 8745 // C++ [except.spec]p14: 8746 // An inheriting constructor [...] shall have an exception-specification. [...] 8747 ImplicitExceptionSpecification ExceptSpec(*this); 8748 if (ClassDecl->isInvalidDecl()) 8749 return ExceptSpec; 8750 8751 // Inherited constructor. 8752 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor(); 8753 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent(); 8754 // FIXME: Copying or moving the parameters could add extra exceptions to the 8755 // set, as could the default arguments for the inherited constructor. This 8756 // will be addressed when we implement the resolution of core issue 1351. 8757 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD); 8758 8759 // Direct base-class constructors. 8760 for (const auto &B : ClassDecl->bases()) { 8761 if (B.isVirtual()) // Handled below. 8762 continue; 8763 8764 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8765 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8766 if (BaseClassDecl == InheritedDecl) 8767 continue; 8768 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8769 if (Constructor) 8770 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8771 } 8772 } 8773 8774 // Virtual base-class constructors. 8775 for (const auto &B : ClassDecl->vbases()) { 8776 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8777 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8778 if (BaseClassDecl == InheritedDecl) 8779 continue; 8780 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8781 if (Constructor) 8782 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8783 } 8784 } 8785 8786 // Field constructors. 8787 for (const auto *F : ClassDecl->fields()) { 8788 if (F->hasInClassInitializer()) { 8789 if (Expr *E = F->getInClassInitializer()) 8790 ExceptSpec.CalledExpr(E); 8791 } else if (const RecordType *RecordTy 8792 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8793 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8794 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8795 if (Constructor) 8796 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8797 } 8798 } 8799 8800 return ExceptSpec; 8801 } 8802 8803 namespace { 8804 /// RAII object to register a special member as being currently declared. 8805 struct DeclaringSpecialMember { 8806 Sema &S; 8807 Sema::SpecialMemberDecl D; 8808 bool WasAlreadyBeingDeclared; 8809 8810 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM) 8811 : S(S), D(RD, CSM) { 8812 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second; 8813 if (WasAlreadyBeingDeclared) 8814 // This almost never happens, but if it does, ensure that our cache 8815 // doesn't contain a stale result. 8816 S.SpecialMemberCache.clear(); 8817 8818 // FIXME: Register a note to be produced if we encounter an error while 8819 // declaring the special member. 8820 } 8821 ~DeclaringSpecialMember() { 8822 if (!WasAlreadyBeingDeclared) 8823 S.SpecialMembersBeingDeclared.erase(D); 8824 } 8825 8826 /// \brief Are we already trying to declare this special member? 8827 bool isAlreadyBeingDeclared() const { 8828 return WasAlreadyBeingDeclared; 8829 } 8830 }; 8831 } 8832 8833 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor( 8834 CXXRecordDecl *ClassDecl) { 8835 // C++ [class.ctor]p5: 8836 // A default constructor for a class X is a constructor of class X 8837 // that can be called without an argument. If there is no 8838 // user-declared constructor for class X, a default constructor is 8839 // implicitly declared. An implicitly-declared default constructor 8840 // is an inline public member of its class. 8841 assert(ClassDecl->needsImplicitDefaultConstructor() && 8842 "Should not build implicit default constructor!"); 8843 8844 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor); 8845 if (DSM.isAlreadyBeingDeclared()) 8846 return nullptr; 8847 8848 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 8849 CXXDefaultConstructor, 8850 false); 8851 8852 // Create the actual constructor declaration. 8853 CanQualType ClassType 8854 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 8855 SourceLocation ClassLoc = ClassDecl->getLocation(); 8856 DeclarationName Name 8857 = Context.DeclarationNames.getCXXConstructorName(ClassType); 8858 DeclarationNameInfo NameInfo(Name, ClassLoc); 8859 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( 8860 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), 8861 /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true, 8862 /*isImplicitlyDeclared=*/true, Constexpr); 8863 DefaultCon->setAccess(AS_public); 8864 DefaultCon->setDefaulted(); 8865 8866 if (getLangOpts().CUDA) { 8867 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor, 8868 DefaultCon, 8869 /* ConstRHS */ false, 8870 /* Diagnose */ false); 8871 } 8872 8873 // Build an exception specification pointing back at this constructor. 8874 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon); 8875 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 8876 8877 // We don't need to use SpecialMemberIsTrivial here; triviality for default 8878 // constructors is easy to compute. 8879 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); 8880 8881 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) 8882 SetDeclDeleted(DefaultCon, ClassLoc); 8883 8884 // Note that we have declared this constructor. 8885 ++ASTContext::NumImplicitDefaultConstructorsDeclared; 8886 8887 if (Scope *S = getScopeForContext(ClassDecl)) 8888 PushOnScopeChains(DefaultCon, S, false); 8889 ClassDecl->addDecl(DefaultCon); 8890 8891 return DefaultCon; 8892 } 8893 8894 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, 8895 CXXConstructorDecl *Constructor) { 8896 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() && 8897 !Constructor->doesThisDeclarationHaveABody() && 8898 !Constructor->isDeleted()) && 8899 "DefineImplicitDefaultConstructor - call it for implicit default ctor"); 8900 8901 CXXRecordDecl *ClassDecl = Constructor->getParent(); 8902 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor"); 8903 8904 SynthesizedFunctionScope Scope(*this, Constructor); 8905 DiagnosticErrorTrap Trap(Diags); 8906 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 8907 Trap.hasErrorOccurred()) { 8908 Diag(CurrentLocation, diag::note_member_synthesized_at) 8909 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl); 8910 Constructor->setInvalidDecl(); 8911 return; 8912 } 8913 8914 // The exception specification is needed because we are defining the 8915 // function. 8916 ResolveExceptionSpec(CurrentLocation, 8917 Constructor->getType()->castAs<FunctionProtoType>()); 8918 8919 SourceLocation Loc = Constructor->getLocEnd().isValid() 8920 ? Constructor->getLocEnd() 8921 : Constructor->getLocation(); 8922 Constructor->setBody(new (Context) CompoundStmt(Loc)); 8923 8924 Constructor->markUsed(Context); 8925 MarkVTableUsed(CurrentLocation, ClassDecl); 8926 8927 if (ASTMutationListener *L = getASTMutationListener()) { 8928 L->CompletedImplicitDefinition(Constructor); 8929 } 8930 8931 DiagnoseUninitializedFields(*this, Constructor); 8932 } 8933 8934 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) { 8935 // Perform any delayed checks on exception specifications. 8936 CheckDelayedMemberExceptionSpecs(); 8937 } 8938 8939 namespace { 8940 /// Information on inheriting constructors to declare. 8941 class InheritingConstructorInfo { 8942 public: 8943 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived) 8944 : SemaRef(SemaRef), Derived(Derived) { 8945 // Mark the constructors that we already have in the derived class. 8946 // 8947 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...] 8948 // unless there is a user-declared constructor with the same signature in 8949 // the class where the using-declaration appears. 8950 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived); 8951 } 8952 8953 void inheritAll(CXXRecordDecl *RD) { 8954 visitAll(RD, &InheritingConstructorInfo::inherit); 8955 } 8956 8957 private: 8958 /// Information about an inheriting constructor. 8959 struct InheritingConstructor { 8960 InheritingConstructor() 8961 : DeclaredInDerived(false), BaseCtor(nullptr), DerivedCtor(nullptr) {} 8962 8963 /// If \c true, a constructor with this signature is already declared 8964 /// in the derived class. 8965 bool DeclaredInDerived; 8966 8967 /// The constructor which is inherited. 8968 const CXXConstructorDecl *BaseCtor; 8969 8970 /// The derived constructor we declared. 8971 CXXConstructorDecl *DerivedCtor; 8972 }; 8973 8974 /// Inheriting constructors with a given canonical type. There can be at 8975 /// most one such non-template constructor, and any number of templated 8976 /// constructors. 8977 struct InheritingConstructorsForType { 8978 InheritingConstructor NonTemplate; 8979 SmallVector<std::pair<TemplateParameterList *, InheritingConstructor>, 4> 8980 Templates; 8981 8982 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) { 8983 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) { 8984 TemplateParameterList *ParamList = FTD->getTemplateParameters(); 8985 for (unsigned I = 0, N = Templates.size(); I != N; ++I) 8986 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first, 8987 false, S.TPL_TemplateMatch)) 8988 return Templates[I].second; 8989 Templates.push_back(std::make_pair(ParamList, InheritingConstructor())); 8990 return Templates.back().second; 8991 } 8992 8993 return NonTemplate; 8994 } 8995 }; 8996 8997 /// Get or create the inheriting constructor record for a constructor. 8998 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor, 8999 QualType CtorType) { 9000 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()] 9001 .getEntry(SemaRef, Ctor); 9002 } 9003 9004 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*); 9005 9006 /// Process all constructors for a class. 9007 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) { 9008 for (const auto *Ctor : RD->ctors()) 9009 (this->*Callback)(Ctor); 9010 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> 9011 I(RD->decls_begin()), E(RD->decls_end()); 9012 I != E; ++I) { 9013 const FunctionDecl *FD = (*I)->getTemplatedDecl(); 9014 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) 9015 (this->*Callback)(CD); 9016 } 9017 } 9018 9019 /// Note that a constructor (or constructor template) was declared in Derived. 9020 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) { 9021 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true; 9022 } 9023 9024 /// Inherit a single constructor. 9025 void inherit(const CXXConstructorDecl *Ctor) { 9026 const FunctionProtoType *CtorType = 9027 Ctor->getType()->castAs<FunctionProtoType>(); 9028 ArrayRef<QualType> ArgTypes = CtorType->getParamTypes(); 9029 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo(); 9030 9031 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent()); 9032 9033 // Core issue (no number yet): the ellipsis is always discarded. 9034 if (EPI.Variadic) { 9035 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis); 9036 SemaRef.Diag(Ctor->getLocation(), 9037 diag::note_using_decl_constructor_ellipsis); 9038 EPI.Variadic = false; 9039 } 9040 9041 // Declare a constructor for each number of parameters. 9042 // 9043 // C++11 [class.inhctor]p1: 9044 // The candidate set of inherited constructors from the class X named in 9045 // the using-declaration consists of [... modulo defects ...] for each 9046 // constructor or constructor template of X, the set of constructors or 9047 // constructor templates that results from omitting any ellipsis parameter 9048 // specification and successively omitting parameters with a default 9049 // argument from the end of the parameter-type-list 9050 unsigned MinParams = minParamsToInherit(Ctor); 9051 unsigned Params = Ctor->getNumParams(); 9052 if (Params >= MinParams) { 9053 do 9054 declareCtor(UsingLoc, Ctor, 9055 SemaRef.Context.getFunctionType( 9056 Ctor->getReturnType(), ArgTypes.slice(0, Params), EPI)); 9057 while (Params > MinParams && 9058 Ctor->getParamDecl(--Params)->hasDefaultArg()); 9059 } 9060 } 9061 9062 /// Find the using-declaration which specified that we should inherit the 9063 /// constructors of \p Base. 9064 SourceLocation getUsingLoc(const CXXRecordDecl *Base) { 9065 // No fancy lookup required; just look for the base constructor name 9066 // directly within the derived class. 9067 ASTContext &Context = SemaRef.Context; 9068 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9069 Context.getCanonicalType(Context.getRecordType(Base))); 9070 DeclContext::lookup_result Decls = Derived->lookup(Name); 9071 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation(); 9072 } 9073 9074 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) { 9075 // C++11 [class.inhctor]p3: 9076 // [F]or each constructor template in the candidate set of inherited 9077 // constructors, a constructor template is implicitly declared 9078 if (Ctor->getDescribedFunctionTemplate()) 9079 return 0; 9080 9081 // For each non-template constructor in the candidate set of inherited 9082 // constructors other than a constructor having no parameters or a 9083 // copy/move constructor having a single parameter, a constructor is 9084 // implicitly declared [...] 9085 if (Ctor->getNumParams() == 0) 9086 return 1; 9087 if (Ctor->isCopyOrMoveConstructor()) 9088 return 2; 9089 9090 // Per discussion on core reflector, never inherit a constructor which 9091 // would become a default, copy, or move constructor of Derived either. 9092 const ParmVarDecl *PD = Ctor->getParamDecl(0); 9093 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>(); 9094 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1; 9095 } 9096 9097 /// Declare a single inheriting constructor, inheriting the specified 9098 /// constructor, with the given type. 9099 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor, 9100 QualType DerivedType) { 9101 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType); 9102 9103 // C++11 [class.inhctor]p3: 9104 // ... a constructor is implicitly declared with the same constructor 9105 // characteristics unless there is a user-declared constructor with 9106 // the same signature in the class where the using-declaration appears 9107 if (Entry.DeclaredInDerived) 9108 return; 9109 9110 // C++11 [class.inhctor]p7: 9111 // If two using-declarations declare inheriting constructors with the 9112 // same signature, the program is ill-formed 9113 if (Entry.DerivedCtor) { 9114 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) { 9115 // Only diagnose this once per constructor. 9116 if (Entry.DerivedCtor->isInvalidDecl()) 9117 return; 9118 Entry.DerivedCtor->setInvalidDecl(); 9119 9120 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict); 9121 SemaRef.Diag(BaseCtor->getLocation(), 9122 diag::note_using_decl_constructor_conflict_current_ctor); 9123 SemaRef.Diag(Entry.BaseCtor->getLocation(), 9124 diag::note_using_decl_constructor_conflict_previous_ctor); 9125 SemaRef.Diag(Entry.DerivedCtor->getLocation(), 9126 diag::note_using_decl_constructor_conflict_previous_using); 9127 } else { 9128 // Core issue (no number): if the same inheriting constructor is 9129 // produced by multiple base class constructors from the same base 9130 // class, the inheriting constructor is defined as deleted. 9131 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc); 9132 } 9133 9134 return; 9135 } 9136 9137 ASTContext &Context = SemaRef.Context; 9138 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9139 Context.getCanonicalType(Context.getRecordType(Derived))); 9140 DeclarationNameInfo NameInfo(Name, UsingLoc); 9141 9142 TemplateParameterList *TemplateParams = nullptr; 9143 if (const FunctionTemplateDecl *FTD = 9144 BaseCtor->getDescribedFunctionTemplate()) { 9145 TemplateParams = FTD->getTemplateParameters(); 9146 // We're reusing template parameters from a different DeclContext. This 9147 // is questionable at best, but works out because the template depth in 9148 // both places is guaranteed to be 0. 9149 // FIXME: Rebuild the template parameters in the new context, and 9150 // transform the function type to refer to them. 9151 } 9152 9153 // Build type source info pointing at the using-declaration. This is 9154 // required by template instantiation. 9155 TypeSourceInfo *TInfo = 9156 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc); 9157 FunctionProtoTypeLoc ProtoLoc = 9158 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>(); 9159 9160 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create( 9161 Context, Derived, UsingLoc, NameInfo, DerivedType, 9162 TInfo, BaseCtor->isExplicit(), /*Inline=*/true, 9163 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr()); 9164 9165 // Build an unevaluated exception specification for this constructor. 9166 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>(); 9167 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 9168 EPI.ExceptionSpec.Type = EST_Unevaluated; 9169 EPI.ExceptionSpec.SourceDecl = DerivedCtor; 9170 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(), 9171 FPT->getParamTypes(), EPI)); 9172 9173 // Build the parameter declarations. 9174 SmallVector<ParmVarDecl *, 16> ParamDecls; 9175 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) { 9176 TypeSourceInfo *TInfo = 9177 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc); 9178 ParmVarDecl *PD = ParmVarDecl::Create( 9179 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, 9180 FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr); 9181 PD->setScopeInfo(0, I); 9182 PD->setImplicit(); 9183 ParamDecls.push_back(PD); 9184 ProtoLoc.setParam(I, PD); 9185 } 9186 9187 // Set up the new constructor. 9188 DerivedCtor->setAccess(BaseCtor->getAccess()); 9189 DerivedCtor->setParams(ParamDecls); 9190 DerivedCtor->setInheritedConstructor(BaseCtor); 9191 if (BaseCtor->isDeleted()) 9192 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc); 9193 9194 // If this is a constructor template, build the template declaration. 9195 if (TemplateParams) { 9196 FunctionTemplateDecl *DerivedTemplate = 9197 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name, 9198 TemplateParams, DerivedCtor); 9199 DerivedTemplate->setAccess(BaseCtor->getAccess()); 9200 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate); 9201 Derived->addDecl(DerivedTemplate); 9202 } else { 9203 Derived->addDecl(DerivedCtor); 9204 } 9205 9206 Entry.BaseCtor = BaseCtor; 9207 Entry.DerivedCtor = DerivedCtor; 9208 } 9209 9210 Sema &SemaRef; 9211 CXXRecordDecl *Derived; 9212 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType; 9213 MapType Map; 9214 }; 9215 } 9216 9217 void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) { 9218 // Defer declaring the inheriting constructors until the class is 9219 // instantiated. 9220 if (ClassDecl->isDependentContext()) 9221 return; 9222 9223 // Find base classes from which we might inherit constructors. 9224 SmallVector<CXXRecordDecl*, 4> InheritedBases; 9225 for (const auto &BaseIt : ClassDecl->bases()) 9226 if (BaseIt.getInheritConstructors()) 9227 InheritedBases.push_back(BaseIt.getType()->getAsCXXRecordDecl()); 9228 9229 // Go no further if we're not inheriting any constructors. 9230 if (InheritedBases.empty()) 9231 return; 9232 9233 // Declare the inherited constructors. 9234 InheritingConstructorInfo ICI(*this, ClassDecl); 9235 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I) 9236 ICI.inheritAll(InheritedBases[I]); 9237 } 9238 9239 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation, 9240 CXXConstructorDecl *Constructor) { 9241 CXXRecordDecl *ClassDecl = Constructor->getParent(); 9242 assert(Constructor->getInheritedConstructor() && 9243 !Constructor->doesThisDeclarationHaveABody() && 9244 !Constructor->isDeleted()); 9245 9246 SynthesizedFunctionScope Scope(*this, Constructor); 9247 DiagnosticErrorTrap Trap(Diags); 9248 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 9249 Trap.hasErrorOccurred()) { 9250 Diag(CurrentLocation, diag::note_inhctor_synthesized_at) 9251 << Context.getTagDeclType(ClassDecl); 9252 Constructor->setInvalidDecl(); 9253 return; 9254 } 9255 9256 SourceLocation Loc = Constructor->getLocation(); 9257 Constructor->setBody(new (Context) CompoundStmt(Loc)); 9258 9259 Constructor->markUsed(Context); 9260 MarkVTableUsed(CurrentLocation, ClassDecl); 9261 9262 if (ASTMutationListener *L = getASTMutationListener()) { 9263 L->CompletedImplicitDefinition(Constructor); 9264 } 9265 } 9266 9267 9268 Sema::ImplicitExceptionSpecification 9269 Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) { 9270 CXXRecordDecl *ClassDecl = MD->getParent(); 9271 9272 // C++ [except.spec]p14: 9273 // An implicitly declared special member function (Clause 12) shall have 9274 // an exception-specification. 9275 ImplicitExceptionSpecification ExceptSpec(*this); 9276 if (ClassDecl->isInvalidDecl()) 9277 return ExceptSpec; 9278 9279 // Direct base-class destructors. 9280 for (const auto &B : ClassDecl->bases()) { 9281 if (B.isVirtual()) // Handled below. 9282 continue; 9283 9284 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9285 ExceptSpec.CalledDecl(B.getLocStart(), 9286 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9287 } 9288 9289 // Virtual base-class destructors. 9290 for (const auto &B : ClassDecl->vbases()) { 9291 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9292 ExceptSpec.CalledDecl(B.getLocStart(), 9293 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9294 } 9295 9296 // Field destructors. 9297 for (const auto *F : ClassDecl->fields()) { 9298 if (const RecordType *RecordTy 9299 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) 9300 ExceptSpec.CalledDecl(F->getLocation(), 9301 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl()))); 9302 } 9303 9304 return ExceptSpec; 9305 } 9306 9307 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) { 9308 // C++ [class.dtor]p2: 9309 // If a class has no user-declared destructor, a destructor is 9310 // declared implicitly. An implicitly-declared destructor is an 9311 // inline public member of its class. 9312 assert(ClassDecl->needsImplicitDestructor()); 9313 9314 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor); 9315 if (DSM.isAlreadyBeingDeclared()) 9316 return nullptr; 9317 9318 // Create the actual destructor declaration. 9319 CanQualType ClassType 9320 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 9321 SourceLocation ClassLoc = ClassDecl->getLocation(); 9322 DeclarationName Name 9323 = Context.DeclarationNames.getCXXDestructorName(ClassType); 9324 DeclarationNameInfo NameInfo(Name, ClassLoc); 9325 CXXDestructorDecl *Destructor 9326 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, 9327 QualType(), nullptr, /*isInline=*/true, 9328 /*isImplicitlyDeclared=*/true); 9329 Destructor->setAccess(AS_public); 9330 Destructor->setDefaulted(); 9331 9332 if (getLangOpts().CUDA) { 9333 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor, 9334 Destructor, 9335 /* ConstRHS */ false, 9336 /* Diagnose */ false); 9337 } 9338 9339 // Build an exception specification pointing back at this destructor. 9340 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor); 9341 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9342 9343 AddOverriddenMethods(ClassDecl, Destructor); 9344 9345 // We don't need to use SpecialMemberIsTrivial here; triviality for 9346 // destructors is easy to compute. 9347 Destructor->setTrivial(ClassDecl->hasTrivialDestructor()); 9348 9349 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor)) 9350 SetDeclDeleted(Destructor, ClassLoc); 9351 9352 // Note that we have declared this destructor. 9353 ++ASTContext::NumImplicitDestructorsDeclared; 9354 9355 // Introduce this destructor into its scope. 9356 if (Scope *S = getScopeForContext(ClassDecl)) 9357 PushOnScopeChains(Destructor, S, false); 9358 ClassDecl->addDecl(Destructor); 9359 9360 return Destructor; 9361 } 9362 9363 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation, 9364 CXXDestructorDecl *Destructor) { 9365 assert((Destructor->isDefaulted() && 9366 !Destructor->doesThisDeclarationHaveABody() && 9367 !Destructor->isDeleted()) && 9368 "DefineImplicitDestructor - call it for implicit default dtor"); 9369 CXXRecordDecl *ClassDecl = Destructor->getParent(); 9370 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor"); 9371 9372 if (Destructor->isInvalidDecl()) 9373 return; 9374 9375 SynthesizedFunctionScope Scope(*this, Destructor); 9376 9377 DiagnosticErrorTrap Trap(Diags); 9378 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 9379 Destructor->getParent()); 9380 9381 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) { 9382 Diag(CurrentLocation, diag::note_member_synthesized_at) 9383 << CXXDestructor << Context.getTagDeclType(ClassDecl); 9384 9385 Destructor->setInvalidDecl(); 9386 return; 9387 } 9388 9389 // The exception specification is needed because we are defining the 9390 // function. 9391 ResolveExceptionSpec(CurrentLocation, 9392 Destructor->getType()->castAs<FunctionProtoType>()); 9393 9394 SourceLocation Loc = Destructor->getLocEnd().isValid() 9395 ? Destructor->getLocEnd() 9396 : Destructor->getLocation(); 9397 Destructor->setBody(new (Context) CompoundStmt(Loc)); 9398 Destructor->markUsed(Context); 9399 MarkVTableUsed(CurrentLocation, ClassDecl); 9400 9401 if (ASTMutationListener *L = getASTMutationListener()) { 9402 L->CompletedImplicitDefinition(Destructor); 9403 } 9404 } 9405 9406 /// \brief Perform any semantic analysis which needs to be delayed until all 9407 /// pending class member declarations have been parsed. 9408 void Sema::ActOnFinishCXXMemberDecls() { 9409 // If the context is an invalid C++ class, just suppress these checks. 9410 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) { 9411 if (Record->isInvalidDecl()) { 9412 DelayedDefaultedMemberExceptionSpecs.clear(); 9413 DelayedExceptionSpecChecks.clear(); 9414 return; 9415 } 9416 } 9417 } 9418 9419 void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl, 9420 CXXDestructorDecl *Destructor) { 9421 assert(getLangOpts().CPlusPlus11 && 9422 "adjusting dtor exception specs was introduced in c++11"); 9423 9424 // C++11 [class.dtor]p3: 9425 // A declaration of a destructor that does not have an exception- 9426 // specification is implicitly considered to have the same exception- 9427 // specification as an implicit declaration. 9428 const FunctionProtoType *DtorType = Destructor->getType()-> 9429 getAs<FunctionProtoType>(); 9430 if (DtorType->hasExceptionSpec()) 9431 return; 9432 9433 // Replace the destructor's type, building off the existing one. Fortunately, 9434 // the only thing of interest in the destructor type is its extended info. 9435 // The return and arguments are fixed. 9436 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo(); 9437 EPI.ExceptionSpec.Type = EST_Unevaluated; 9438 EPI.ExceptionSpec.SourceDecl = Destructor; 9439 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9440 9441 // FIXME: If the destructor has a body that could throw, and the newly created 9442 // spec doesn't allow exceptions, we should emit a warning, because this 9443 // change in behavior can break conforming C++03 programs at runtime. 9444 // However, we don't have a body or an exception specification yet, so it 9445 // needs to be done somewhere else. 9446 } 9447 9448 namespace { 9449 /// \brief An abstract base class for all helper classes used in building the 9450 // copy/move operators. These classes serve as factory functions and help us 9451 // avoid using the same Expr* in the AST twice. 9452 class ExprBuilder { 9453 ExprBuilder(const ExprBuilder&) = delete; 9454 ExprBuilder &operator=(const ExprBuilder&) = delete; 9455 9456 protected: 9457 static Expr *assertNotNull(Expr *E) { 9458 assert(E && "Expression construction must not fail."); 9459 return E; 9460 } 9461 9462 public: 9463 ExprBuilder() {} 9464 virtual ~ExprBuilder() {} 9465 9466 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0; 9467 }; 9468 9469 class RefBuilder: public ExprBuilder { 9470 VarDecl *Var; 9471 QualType VarType; 9472 9473 public: 9474 Expr *build(Sema &S, SourceLocation Loc) const override { 9475 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get()); 9476 } 9477 9478 RefBuilder(VarDecl *Var, QualType VarType) 9479 : Var(Var), VarType(VarType) {} 9480 }; 9481 9482 class ThisBuilder: public ExprBuilder { 9483 public: 9484 Expr *build(Sema &S, SourceLocation Loc) const override { 9485 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>()); 9486 } 9487 }; 9488 9489 class CastBuilder: public ExprBuilder { 9490 const ExprBuilder &Builder; 9491 QualType Type; 9492 ExprValueKind Kind; 9493 const CXXCastPath &Path; 9494 9495 public: 9496 Expr *build(Sema &S, SourceLocation Loc) const override { 9497 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type, 9498 CK_UncheckedDerivedToBase, Kind, 9499 &Path).get()); 9500 } 9501 9502 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind, 9503 const CXXCastPath &Path) 9504 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {} 9505 }; 9506 9507 class DerefBuilder: public ExprBuilder { 9508 const ExprBuilder &Builder; 9509 9510 public: 9511 Expr *build(Sema &S, SourceLocation Loc) const override { 9512 return assertNotNull( 9513 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get()); 9514 } 9515 9516 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9517 }; 9518 9519 class MemberBuilder: public ExprBuilder { 9520 const ExprBuilder &Builder; 9521 QualType Type; 9522 CXXScopeSpec SS; 9523 bool IsArrow; 9524 LookupResult &MemberLookup; 9525 9526 public: 9527 Expr *build(Sema &S, SourceLocation Loc) const override { 9528 return assertNotNull(S.BuildMemberReferenceExpr( 9529 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(), 9530 nullptr, MemberLookup, nullptr).get()); 9531 } 9532 9533 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow, 9534 LookupResult &MemberLookup) 9535 : Builder(Builder), Type(Type), IsArrow(IsArrow), 9536 MemberLookup(MemberLookup) {} 9537 }; 9538 9539 class MoveCastBuilder: public ExprBuilder { 9540 const ExprBuilder &Builder; 9541 9542 public: 9543 Expr *build(Sema &S, SourceLocation Loc) const override { 9544 return assertNotNull(CastForMoving(S, Builder.build(S, Loc))); 9545 } 9546 9547 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9548 }; 9549 9550 class LvalueConvBuilder: public ExprBuilder { 9551 const ExprBuilder &Builder; 9552 9553 public: 9554 Expr *build(Sema &S, SourceLocation Loc) const override { 9555 return assertNotNull( 9556 S.DefaultLvalueConversion(Builder.build(S, Loc)).get()); 9557 } 9558 9559 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9560 }; 9561 9562 class SubscriptBuilder: public ExprBuilder { 9563 const ExprBuilder &Base; 9564 const ExprBuilder &Index; 9565 9566 public: 9567 Expr *build(Sema &S, SourceLocation Loc) const override { 9568 return assertNotNull(S.CreateBuiltinArraySubscriptExpr( 9569 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get()); 9570 } 9571 9572 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index) 9573 : Base(Base), Index(Index) {} 9574 }; 9575 9576 } // end anonymous namespace 9577 9578 /// When generating a defaulted copy or move assignment operator, if a field 9579 /// should be copied with __builtin_memcpy rather than via explicit assignments, 9580 /// do so. This optimization only applies for arrays of scalars, and for arrays 9581 /// of class type where the selected copy/move-assignment operator is trivial. 9582 static StmtResult 9583 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T, 9584 const ExprBuilder &ToB, const ExprBuilder &FromB) { 9585 // Compute the size of the memory buffer to be copied. 9586 QualType SizeType = S.Context.getSizeType(); 9587 llvm::APInt Size(S.Context.getTypeSize(SizeType), 9588 S.Context.getTypeSizeInChars(T).getQuantity()); 9589 9590 // Take the address of the field references for "from" and "to". We 9591 // directly construct UnaryOperators here because semantic analysis 9592 // does not permit us to take the address of an xvalue. 9593 Expr *From = FromB.build(S, Loc); 9594 From = new (S.Context) UnaryOperator(From, UO_AddrOf, 9595 S.Context.getPointerType(From->getType()), 9596 VK_RValue, OK_Ordinary, Loc); 9597 Expr *To = ToB.build(S, Loc); 9598 To = new (S.Context) UnaryOperator(To, UO_AddrOf, 9599 S.Context.getPointerType(To->getType()), 9600 VK_RValue, OK_Ordinary, Loc); 9601 9602 const Type *E = T->getBaseElementTypeUnsafe(); 9603 bool NeedsCollectableMemCpy = 9604 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember(); 9605 9606 // Create a reference to the __builtin_objc_memmove_collectable function 9607 StringRef MemCpyName = NeedsCollectableMemCpy ? 9608 "__builtin_objc_memmove_collectable" : 9609 "__builtin_memcpy"; 9610 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc, 9611 Sema::LookupOrdinaryName); 9612 S.LookupName(R, S.TUScope, true); 9613 9614 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>(); 9615 if (!MemCpy) 9616 // Something went horribly wrong earlier, and we will have complained 9617 // about it. 9618 return StmtError(); 9619 9620 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy, 9621 VK_RValue, Loc, nullptr); 9622 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail"); 9623 9624 Expr *CallArgs[] = { 9625 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc) 9626 }; 9627 ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(), 9628 Loc, CallArgs, Loc); 9629 9630 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!"); 9631 return Call.getAs<Stmt>(); 9632 } 9633 9634 /// \brief Builds a statement that copies/moves the given entity from \p From to 9635 /// \c To. 9636 /// 9637 /// This routine is used to copy/move the members of a class with an 9638 /// implicitly-declared copy/move assignment operator. When the entities being 9639 /// copied are arrays, this routine builds for loops to copy them. 9640 /// 9641 /// \param S The Sema object used for type-checking. 9642 /// 9643 /// \param Loc The location where the implicit copy/move is being generated. 9644 /// 9645 /// \param T The type of the expressions being copied/moved. Both expressions 9646 /// must have this type. 9647 /// 9648 /// \param To The expression we are copying/moving to. 9649 /// 9650 /// \param From The expression we are copying/moving from. 9651 /// 9652 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject. 9653 /// Otherwise, it's a non-static member subobject. 9654 /// 9655 /// \param Copying Whether we're copying or moving. 9656 /// 9657 /// \param Depth Internal parameter recording the depth of the recursion. 9658 /// 9659 /// \returns A statement or a loop that copies the expressions, or StmtResult(0) 9660 /// if a memcpy should be used instead. 9661 static StmtResult 9662 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T, 9663 const ExprBuilder &To, const ExprBuilder &From, 9664 bool CopyingBaseSubobject, bool Copying, 9665 unsigned Depth = 0) { 9666 // C++11 [class.copy]p28: 9667 // Each subobject is assigned in the manner appropriate to its type: 9668 // 9669 // - if the subobject is of class type, as if by a call to operator= with 9670 // the subobject as the object expression and the corresponding 9671 // subobject of x as a single function argument (as if by explicit 9672 // qualification; that is, ignoring any possible virtual overriding 9673 // functions in more derived classes); 9674 // 9675 // C++03 [class.copy]p13: 9676 // - if the subobject is of class type, the copy assignment operator for 9677 // the class is used (as if by explicit qualification; that is, 9678 // ignoring any possible virtual overriding functions in more derived 9679 // classes); 9680 if (const RecordType *RecordTy = T->getAs<RecordType>()) { 9681 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 9682 9683 // Look for operator=. 9684 DeclarationName Name 9685 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal); 9686 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName); 9687 S.LookupQualifiedName(OpLookup, ClassDecl, false); 9688 9689 // Prior to C++11, filter out any result that isn't a copy/move-assignment 9690 // operator. 9691 if (!S.getLangOpts().CPlusPlus11) { 9692 LookupResult::Filter F = OpLookup.makeFilter(); 9693 while (F.hasNext()) { 9694 NamedDecl *D = F.next(); 9695 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 9696 if (Method->isCopyAssignmentOperator() || 9697 (!Copying && Method->isMoveAssignmentOperator())) 9698 continue; 9699 9700 F.erase(); 9701 } 9702 F.done(); 9703 } 9704 9705 // Suppress the protected check (C++ [class.protected]) for each of the 9706 // assignment operators we found. This strange dance is required when 9707 // we're assigning via a base classes's copy-assignment operator. To 9708 // ensure that we're getting the right base class subobject (without 9709 // ambiguities), we need to cast "this" to that subobject type; to 9710 // ensure that we don't go through the virtual call mechanism, we need 9711 // to qualify the operator= name with the base class (see below). However, 9712 // this means that if the base class has a protected copy assignment 9713 // operator, the protected member access check will fail. So, we 9714 // rewrite "protected" access to "public" access in this case, since we 9715 // know by construction that we're calling from a derived class. 9716 if (CopyingBaseSubobject) { 9717 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end(); 9718 L != LEnd; ++L) { 9719 if (L.getAccess() == AS_protected) 9720 L.setAccess(AS_public); 9721 } 9722 } 9723 9724 // Create the nested-name-specifier that will be used to qualify the 9725 // reference to operator=; this is required to suppress the virtual 9726 // call mechanism. 9727 CXXScopeSpec SS; 9728 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr()); 9729 SS.MakeTrivial(S.Context, 9730 NestedNameSpecifier::Create(S.Context, nullptr, false, 9731 CanonicalT), 9732 Loc); 9733 9734 // Create the reference to operator=. 9735 ExprResult OpEqualRef 9736 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false, 9737 SS, /*TemplateKWLoc=*/SourceLocation(), 9738 /*FirstQualifierInScope=*/nullptr, 9739 OpLookup, 9740 /*TemplateArgs=*/nullptr, 9741 /*SuppressQualifierCheck=*/true); 9742 if (OpEqualRef.isInvalid()) 9743 return StmtError(); 9744 9745 // Build the call to the assignment operator. 9746 9747 Expr *FromInst = From.build(S, Loc); 9748 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr, 9749 OpEqualRef.getAs<Expr>(), 9750 Loc, FromInst, Loc); 9751 if (Call.isInvalid()) 9752 return StmtError(); 9753 9754 // If we built a call to a trivial 'operator=' while copying an array, 9755 // bail out. We'll replace the whole shebang with a memcpy. 9756 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get()); 9757 if (CE && CE->getMethodDecl()->isTrivial() && Depth) 9758 return StmtResult((Stmt*)nullptr); 9759 9760 // Convert to an expression-statement, and clean up any produced 9761 // temporaries. 9762 return S.ActOnExprStmt(Call); 9763 } 9764 9765 // - if the subobject is of scalar type, the built-in assignment 9766 // operator is used. 9767 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T); 9768 if (!ArrayTy) { 9769 ExprResult Assignment = S.CreateBuiltinBinOp( 9770 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc)); 9771 if (Assignment.isInvalid()) 9772 return StmtError(); 9773 return S.ActOnExprStmt(Assignment); 9774 } 9775 9776 // - if the subobject is an array, each element is assigned, in the 9777 // manner appropriate to the element type; 9778 9779 // Construct a loop over the array bounds, e.g., 9780 // 9781 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0) 9782 // 9783 // that will copy each of the array elements. 9784 QualType SizeType = S.Context.getSizeType(); 9785 9786 // Create the iteration variable. 9787 IdentifierInfo *IterationVarName = nullptr; 9788 { 9789 SmallString<8> Str; 9790 llvm::raw_svector_ostream OS(Str); 9791 OS << "__i" << Depth; 9792 IterationVarName = &S.Context.Idents.get(OS.str()); 9793 } 9794 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, 9795 IterationVarName, SizeType, 9796 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), 9797 SC_None); 9798 9799 // Initialize the iteration variable to zero. 9800 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0); 9801 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc)); 9802 9803 // Creates a reference to the iteration variable. 9804 RefBuilder IterationVarRef(IterationVar, SizeType); 9805 LvalueConvBuilder IterationVarRefRVal(IterationVarRef); 9806 9807 // Create the DeclStmt that holds the iteration variable. 9808 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc); 9809 9810 // Subscript the "from" and "to" expressions with the iteration variable. 9811 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal); 9812 MoveCastBuilder FromIndexMove(FromIndexCopy); 9813 const ExprBuilder *FromIndex; 9814 if (Copying) 9815 FromIndex = &FromIndexCopy; 9816 else 9817 FromIndex = &FromIndexMove; 9818 9819 SubscriptBuilder ToIndex(To, IterationVarRefRVal); 9820 9821 // Build the copy/move for an individual element of the array. 9822 StmtResult Copy = 9823 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(), 9824 ToIndex, *FromIndex, CopyingBaseSubobject, 9825 Copying, Depth + 1); 9826 // Bail out if copying fails or if we determined that we should use memcpy. 9827 if (Copy.isInvalid() || !Copy.get()) 9828 return Copy; 9829 9830 // Create the comparison against the array bound. 9831 llvm::APInt Upper 9832 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType)); 9833 Expr *Comparison 9834 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc), 9835 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc), 9836 BO_NE, S.Context.BoolTy, 9837 VK_RValue, OK_Ordinary, Loc, false); 9838 9839 // Create the pre-increment of the iteration variable. 9840 Expr *Increment 9841 = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc, 9842 SizeType, VK_LValue, OK_Ordinary, Loc); 9843 9844 // Construct the loop that copies all elements of this array. 9845 return S.ActOnForStmt(Loc, Loc, InitStmt, 9846 S.MakeFullExpr(Comparison), 9847 nullptr, S.MakeFullDiscardedValueExpr(Increment), 9848 Loc, Copy.get()); 9849 } 9850 9851 static StmtResult 9852 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T, 9853 const ExprBuilder &To, const ExprBuilder &From, 9854 bool CopyingBaseSubobject, bool Copying) { 9855 // Maybe we should use a memcpy? 9856 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() && 9857 T.isTriviallyCopyableType(S.Context)) 9858 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 9859 9860 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From, 9861 CopyingBaseSubobject, 9862 Copying, 0)); 9863 9864 // If we ended up picking a trivial assignment operator for an array of a 9865 // non-trivially-copyable class type, just emit a memcpy. 9866 if (!Result.isInvalid() && !Result.get()) 9867 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 9868 9869 return Result; 9870 } 9871 9872 Sema::ImplicitExceptionSpecification 9873 Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) { 9874 CXXRecordDecl *ClassDecl = MD->getParent(); 9875 9876 ImplicitExceptionSpecification ExceptSpec(*this); 9877 if (ClassDecl->isInvalidDecl()) 9878 return ExceptSpec; 9879 9880 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 9881 assert(T->getNumParams() == 1 && "not a copy assignment op"); 9882 unsigned ArgQuals = 9883 T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 9884 9885 // C++ [except.spec]p14: 9886 // An implicitly declared special member function (Clause 12) shall have an 9887 // exception-specification. [...] 9888 9889 // It is unspecified whether or not an implicit copy assignment operator 9890 // attempts to deduplicate calls to assignment operators of virtual bases are 9891 // made. As such, this exception specification is effectively unspecified. 9892 // Based on a similar decision made for constness in C++0x, we're erring on 9893 // the side of assuming such calls to be made regardless of whether they 9894 // actually happen. 9895 for (const auto &Base : ClassDecl->bases()) { 9896 if (Base.isVirtual()) 9897 continue; 9898 9899 CXXRecordDecl *BaseClassDecl 9900 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 9901 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 9902 ArgQuals, false, 0)) 9903 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 9904 } 9905 9906 for (const auto &Base : ClassDecl->vbases()) { 9907 CXXRecordDecl *BaseClassDecl 9908 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 9909 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 9910 ArgQuals, false, 0)) 9911 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 9912 } 9913 9914 for (const auto *Field : ClassDecl->fields()) { 9915 QualType FieldType = Context.getBaseElementType(Field->getType()); 9916 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 9917 if (CXXMethodDecl *CopyAssign = 9918 LookupCopyingAssignment(FieldClassDecl, 9919 ArgQuals | FieldType.getCVRQualifiers(), 9920 false, 0)) 9921 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign); 9922 } 9923 } 9924 9925 return ExceptSpec; 9926 } 9927 9928 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) { 9929 // Note: The following rules are largely analoguous to the copy 9930 // constructor rules. Note that virtual bases are not taken into account 9931 // for determining the argument type of the operator. Note also that 9932 // operators taking an object instead of a reference are allowed. 9933 assert(ClassDecl->needsImplicitCopyAssignment()); 9934 9935 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment); 9936 if (DSM.isAlreadyBeingDeclared()) 9937 return nullptr; 9938 9939 QualType ArgType = Context.getTypeDeclType(ClassDecl); 9940 QualType RetType = Context.getLValueReferenceType(ArgType); 9941 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam(); 9942 if (Const) 9943 ArgType = ArgType.withConst(); 9944 ArgType = Context.getLValueReferenceType(ArgType); 9945 9946 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 9947 CXXCopyAssignment, 9948 Const); 9949 9950 // An implicitly-declared copy assignment operator is an inline public 9951 // member of its class. 9952 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 9953 SourceLocation ClassLoc = ClassDecl->getLocation(); 9954 DeclarationNameInfo NameInfo(Name, ClassLoc); 9955 CXXMethodDecl *CopyAssignment = 9956 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 9957 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 9958 /*isInline=*/true, Constexpr, SourceLocation()); 9959 CopyAssignment->setAccess(AS_public); 9960 CopyAssignment->setDefaulted(); 9961 CopyAssignment->setImplicit(); 9962 9963 if (getLangOpts().CUDA) { 9964 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment, 9965 CopyAssignment, 9966 /* ConstRHS */ Const, 9967 /* Diagnose */ false); 9968 } 9969 9970 // Build an exception specification pointing back at this member. 9971 FunctionProtoType::ExtProtoInfo EPI = 9972 getImplicitMethodEPI(*this, CopyAssignment); 9973 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 9974 9975 // Add the parameter to the operator. 9976 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment, 9977 ClassLoc, ClassLoc, 9978 /*Id=*/nullptr, ArgType, 9979 /*TInfo=*/nullptr, SC_None, 9980 nullptr); 9981 CopyAssignment->setParams(FromParam); 9982 9983 AddOverriddenMethods(ClassDecl, CopyAssignment); 9984 9985 CopyAssignment->setTrivial( 9986 ClassDecl->needsOverloadResolutionForCopyAssignment() 9987 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment) 9988 : ClassDecl->hasTrivialCopyAssignment()); 9989 9990 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment)) 9991 SetDeclDeleted(CopyAssignment, ClassLoc); 9992 9993 // Note that we have added this copy-assignment operator. 9994 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared; 9995 9996 if (Scope *S = getScopeForContext(ClassDecl)) 9997 PushOnScopeChains(CopyAssignment, S, false); 9998 ClassDecl->addDecl(CopyAssignment); 9999 10000 return CopyAssignment; 10001 } 10002 10003 /// Diagnose an implicit copy operation for a class which is odr-used, but 10004 /// which is deprecated because the class has a user-declared copy constructor, 10005 /// copy assignment operator, or destructor. 10006 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp, 10007 SourceLocation UseLoc) { 10008 assert(CopyOp->isImplicit()); 10009 10010 CXXRecordDecl *RD = CopyOp->getParent(); 10011 CXXMethodDecl *UserDeclaredOperation = nullptr; 10012 10013 // In Microsoft mode, assignment operations don't affect constructors and 10014 // vice versa. 10015 if (RD->hasUserDeclaredDestructor()) { 10016 UserDeclaredOperation = RD->getDestructor(); 10017 } else if (!isa<CXXConstructorDecl>(CopyOp) && 10018 RD->hasUserDeclaredCopyConstructor() && 10019 !S.getLangOpts().MSVCCompat) { 10020 // Find any user-declared copy constructor. 10021 for (auto *I : RD->ctors()) { 10022 if (I->isCopyConstructor()) { 10023 UserDeclaredOperation = I; 10024 break; 10025 } 10026 } 10027 assert(UserDeclaredOperation); 10028 } else if (isa<CXXConstructorDecl>(CopyOp) && 10029 RD->hasUserDeclaredCopyAssignment() && 10030 !S.getLangOpts().MSVCCompat) { 10031 // Find any user-declared move assignment operator. 10032 for (auto *I : RD->methods()) { 10033 if (I->isCopyAssignmentOperator()) { 10034 UserDeclaredOperation = I; 10035 break; 10036 } 10037 } 10038 assert(UserDeclaredOperation); 10039 } 10040 10041 if (UserDeclaredOperation) { 10042 S.Diag(UserDeclaredOperation->getLocation(), 10043 diag::warn_deprecated_copy_operation) 10044 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp) 10045 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation); 10046 S.Diag(UseLoc, diag::note_member_synthesized_at) 10047 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor 10048 : Sema::CXXCopyAssignment) 10049 << RD; 10050 } 10051 } 10052 10053 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation, 10054 CXXMethodDecl *CopyAssignOperator) { 10055 assert((CopyAssignOperator->isDefaulted() && 10056 CopyAssignOperator->isOverloadedOperator() && 10057 CopyAssignOperator->getOverloadedOperator() == OO_Equal && 10058 !CopyAssignOperator->doesThisDeclarationHaveABody() && 10059 !CopyAssignOperator->isDeleted()) && 10060 "DefineImplicitCopyAssignment called for wrong function"); 10061 10062 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent(); 10063 10064 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) { 10065 CopyAssignOperator->setInvalidDecl(); 10066 return; 10067 } 10068 10069 // C++11 [class.copy]p18: 10070 // The [definition of an implicitly declared copy assignment operator] is 10071 // deprecated if the class has a user-declared copy constructor or a 10072 // user-declared destructor. 10073 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit()) 10074 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation); 10075 10076 CopyAssignOperator->markUsed(Context); 10077 10078 SynthesizedFunctionScope Scope(*this, CopyAssignOperator); 10079 DiagnosticErrorTrap Trap(Diags); 10080 10081 // C++0x [class.copy]p30: 10082 // The implicitly-defined or explicitly-defaulted copy assignment operator 10083 // for a non-union class X performs memberwise copy assignment of its 10084 // subobjects. The direct base classes of X are assigned first, in the 10085 // order of their declaration in the base-specifier-list, and then the 10086 // immediate non-static data members of X are assigned, in the order in 10087 // which they were declared in the class definition. 10088 10089 // The statements that form the synthesized function body. 10090 SmallVector<Stmt*, 8> Statements; 10091 10092 // The parameter for the "other" object, which we are copying from. 10093 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0); 10094 Qualifiers OtherQuals = Other->getType().getQualifiers(); 10095 QualType OtherRefType = Other->getType(); 10096 if (const LValueReferenceType *OtherRef 10097 = OtherRefType->getAs<LValueReferenceType>()) { 10098 OtherRefType = OtherRef->getPointeeType(); 10099 OtherQuals = OtherRefType.getQualifiers(); 10100 } 10101 10102 // Our location for everything implicitly-generated. 10103 SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid() 10104 ? CopyAssignOperator->getLocEnd() 10105 : CopyAssignOperator->getLocation(); 10106 10107 // Builds a DeclRefExpr for the "other" object. 10108 RefBuilder OtherRef(Other, OtherRefType); 10109 10110 // Builds the "this" pointer. 10111 ThisBuilder This; 10112 10113 // Assign base classes. 10114 bool Invalid = false; 10115 for (auto &Base : ClassDecl->bases()) { 10116 // Form the assignment: 10117 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other)); 10118 QualType BaseType = Base.getType().getUnqualifiedType(); 10119 if (!BaseType->isRecordType()) { 10120 Invalid = true; 10121 continue; 10122 } 10123 10124 CXXCastPath BasePath; 10125 BasePath.push_back(&Base); 10126 10127 // Construct the "from" expression, which is an implicit cast to the 10128 // appropriately-qualified base type. 10129 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals), 10130 VK_LValue, BasePath); 10131 10132 // Dereference "this". 10133 DerefBuilder DerefThis(This); 10134 CastBuilder To(DerefThis, 10135 Context.getCVRQualifiedType( 10136 BaseType, CopyAssignOperator->getTypeQualifiers()), 10137 VK_LValue, BasePath); 10138 10139 // Build the copy. 10140 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType, 10141 To, From, 10142 /*CopyingBaseSubobject=*/true, 10143 /*Copying=*/true); 10144 if (Copy.isInvalid()) { 10145 Diag(CurrentLocation, diag::note_member_synthesized_at) 10146 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10147 CopyAssignOperator->setInvalidDecl(); 10148 return; 10149 } 10150 10151 // Success! Record the copy. 10152 Statements.push_back(Copy.getAs<Expr>()); 10153 } 10154 10155 // Assign non-static members. 10156 for (auto *Field : ClassDecl->fields()) { 10157 if (Field->isUnnamedBitfield()) 10158 continue; 10159 10160 if (Field->isInvalidDecl()) { 10161 Invalid = true; 10162 continue; 10163 } 10164 10165 // Check for members of reference type; we can't copy those. 10166 if (Field->getType()->isReferenceType()) { 10167 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10168 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10169 Diag(Field->getLocation(), diag::note_declared_at); 10170 Diag(CurrentLocation, diag::note_member_synthesized_at) 10171 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10172 Invalid = true; 10173 continue; 10174 } 10175 10176 // Check for members of const-qualified, non-class type. 10177 QualType BaseType = Context.getBaseElementType(Field->getType()); 10178 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10179 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10180 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10181 Diag(Field->getLocation(), diag::note_declared_at); 10182 Diag(CurrentLocation, diag::note_member_synthesized_at) 10183 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10184 Invalid = true; 10185 continue; 10186 } 10187 10188 // Suppress assigning zero-width bitfields. 10189 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10190 continue; 10191 10192 QualType FieldType = Field->getType().getNonReferenceType(); 10193 if (FieldType->isIncompleteArrayType()) { 10194 assert(ClassDecl->hasFlexibleArrayMember() && 10195 "Incomplete array type is not valid"); 10196 continue; 10197 } 10198 10199 // Build references to the field in the object we're copying from and to. 10200 CXXScopeSpec SS; // Intentionally empty 10201 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10202 LookupMemberName); 10203 MemberLookup.addDecl(Field); 10204 MemberLookup.resolveKind(); 10205 10206 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup); 10207 10208 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup); 10209 10210 // Build the copy of this field. 10211 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType, 10212 To, From, 10213 /*CopyingBaseSubobject=*/false, 10214 /*Copying=*/true); 10215 if (Copy.isInvalid()) { 10216 Diag(CurrentLocation, diag::note_member_synthesized_at) 10217 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10218 CopyAssignOperator->setInvalidDecl(); 10219 return; 10220 } 10221 10222 // Success! Record the copy. 10223 Statements.push_back(Copy.getAs<Stmt>()); 10224 } 10225 10226 if (!Invalid) { 10227 // Add a "return *this;" 10228 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10229 10230 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10231 if (Return.isInvalid()) 10232 Invalid = true; 10233 else { 10234 Statements.push_back(Return.getAs<Stmt>()); 10235 10236 if (Trap.hasErrorOccurred()) { 10237 Diag(CurrentLocation, diag::note_member_synthesized_at) 10238 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10239 Invalid = true; 10240 } 10241 } 10242 } 10243 10244 // The exception specification is needed because we are defining the 10245 // function. 10246 ResolveExceptionSpec(CurrentLocation, 10247 CopyAssignOperator->getType()->castAs<FunctionProtoType>()); 10248 10249 if (Invalid) { 10250 CopyAssignOperator->setInvalidDecl(); 10251 return; 10252 } 10253 10254 StmtResult Body; 10255 { 10256 CompoundScopeRAII CompoundScope(*this); 10257 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10258 /*isStmtExpr=*/false); 10259 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10260 } 10261 CopyAssignOperator->setBody(Body.getAs<Stmt>()); 10262 10263 if (ASTMutationListener *L = getASTMutationListener()) { 10264 L->CompletedImplicitDefinition(CopyAssignOperator); 10265 } 10266 } 10267 10268 Sema::ImplicitExceptionSpecification 10269 Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) { 10270 CXXRecordDecl *ClassDecl = MD->getParent(); 10271 10272 ImplicitExceptionSpecification ExceptSpec(*this); 10273 if (ClassDecl->isInvalidDecl()) 10274 return ExceptSpec; 10275 10276 // C++0x [except.spec]p14: 10277 // An implicitly declared special member function (Clause 12) shall have an 10278 // exception-specification. [...] 10279 10280 // It is unspecified whether or not an implicit move assignment operator 10281 // attempts to deduplicate calls to assignment operators of virtual bases are 10282 // made. As such, this exception specification is effectively unspecified. 10283 // Based on a similar decision made for constness in C++0x, we're erring on 10284 // the side of assuming such calls to be made regardless of whether they 10285 // actually happen. 10286 // Note that a move constructor is not implicitly declared when there are 10287 // virtual bases, but it can still be user-declared and explicitly defaulted. 10288 for (const auto &Base : ClassDecl->bases()) { 10289 if (Base.isVirtual()) 10290 continue; 10291 10292 CXXRecordDecl *BaseClassDecl 10293 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10294 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10295 0, false, 0)) 10296 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10297 } 10298 10299 for (const auto &Base : ClassDecl->vbases()) { 10300 CXXRecordDecl *BaseClassDecl 10301 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10302 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10303 0, false, 0)) 10304 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10305 } 10306 10307 for (const auto *Field : ClassDecl->fields()) { 10308 QualType FieldType = Context.getBaseElementType(Field->getType()); 10309 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10310 if (CXXMethodDecl *MoveAssign = 10311 LookupMovingAssignment(FieldClassDecl, 10312 FieldType.getCVRQualifiers(), 10313 false, 0)) 10314 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign); 10315 } 10316 } 10317 10318 return ExceptSpec; 10319 } 10320 10321 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) { 10322 assert(ClassDecl->needsImplicitMoveAssignment()); 10323 10324 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment); 10325 if (DSM.isAlreadyBeingDeclared()) 10326 return nullptr; 10327 10328 // Note: The following rules are largely analoguous to the move 10329 // constructor rules. 10330 10331 QualType ArgType = Context.getTypeDeclType(ClassDecl); 10332 QualType RetType = Context.getLValueReferenceType(ArgType); 10333 ArgType = Context.getRValueReferenceType(ArgType); 10334 10335 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10336 CXXMoveAssignment, 10337 false); 10338 10339 // An implicitly-declared move assignment operator is an inline public 10340 // member of its class. 10341 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 10342 SourceLocation ClassLoc = ClassDecl->getLocation(); 10343 DeclarationNameInfo NameInfo(Name, ClassLoc); 10344 CXXMethodDecl *MoveAssignment = 10345 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 10346 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 10347 /*isInline=*/true, Constexpr, SourceLocation()); 10348 MoveAssignment->setAccess(AS_public); 10349 MoveAssignment->setDefaulted(); 10350 MoveAssignment->setImplicit(); 10351 10352 if (getLangOpts().CUDA) { 10353 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment, 10354 MoveAssignment, 10355 /* ConstRHS */ false, 10356 /* Diagnose */ false); 10357 } 10358 10359 // Build an exception specification pointing back at this member. 10360 FunctionProtoType::ExtProtoInfo EPI = 10361 getImplicitMethodEPI(*this, MoveAssignment); 10362 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 10363 10364 // Add the parameter to the operator. 10365 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment, 10366 ClassLoc, ClassLoc, 10367 /*Id=*/nullptr, ArgType, 10368 /*TInfo=*/nullptr, SC_None, 10369 nullptr); 10370 MoveAssignment->setParams(FromParam); 10371 10372 AddOverriddenMethods(ClassDecl, MoveAssignment); 10373 10374 MoveAssignment->setTrivial( 10375 ClassDecl->needsOverloadResolutionForMoveAssignment() 10376 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment) 10377 : ClassDecl->hasTrivialMoveAssignment()); 10378 10379 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) { 10380 ClassDecl->setImplicitMoveAssignmentIsDeleted(); 10381 SetDeclDeleted(MoveAssignment, ClassLoc); 10382 } 10383 10384 // Note that we have added this copy-assignment operator. 10385 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared; 10386 10387 if (Scope *S = getScopeForContext(ClassDecl)) 10388 PushOnScopeChains(MoveAssignment, S, false); 10389 ClassDecl->addDecl(MoveAssignment); 10390 10391 return MoveAssignment; 10392 } 10393 10394 /// Check if we're implicitly defining a move assignment operator for a class 10395 /// with virtual bases. Such a move assignment might move-assign the virtual 10396 /// base multiple times. 10397 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class, 10398 SourceLocation CurrentLocation) { 10399 assert(!Class->isDependentContext() && "should not define dependent move"); 10400 10401 // Only a virtual base could get implicitly move-assigned multiple times. 10402 // Only a non-trivial move assignment can observe this. We only want to 10403 // diagnose if we implicitly define an assignment operator that assigns 10404 // two base classes, both of which move-assign the same virtual base. 10405 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() || 10406 Class->getNumBases() < 2) 10407 return; 10408 10409 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist; 10410 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap; 10411 VBaseMap VBases; 10412 10413 for (auto &BI : Class->bases()) { 10414 Worklist.push_back(&BI); 10415 while (!Worklist.empty()) { 10416 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val(); 10417 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 10418 10419 // If the base has no non-trivial move assignment operators, 10420 // we don't care about moves from it. 10421 if (!Base->hasNonTrivialMoveAssignment()) 10422 continue; 10423 10424 // If there's nothing virtual here, skip it. 10425 if (!BaseSpec->isVirtual() && !Base->getNumVBases()) 10426 continue; 10427 10428 // If we're not actually going to call a move assignment for this base, 10429 // or the selected move assignment is trivial, skip it. 10430 Sema::SpecialMemberOverloadResult *SMOR = 10431 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment, 10432 /*ConstArg*/false, /*VolatileArg*/false, 10433 /*RValueThis*/true, /*ConstThis*/false, 10434 /*VolatileThis*/false); 10435 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() || 10436 !SMOR->getMethod()->isMoveAssignmentOperator()) 10437 continue; 10438 10439 if (BaseSpec->isVirtual()) { 10440 // We're going to move-assign this virtual base, and its move 10441 // assignment operator is not trivial. If this can happen for 10442 // multiple distinct direct bases of Class, diagnose it. (If it 10443 // only happens in one base, we'll diagnose it when synthesizing 10444 // that base class's move assignment operator.) 10445 CXXBaseSpecifier *&Existing = 10446 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI)) 10447 .first->second; 10448 if (Existing && Existing != &BI) { 10449 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times) 10450 << Class << Base; 10451 S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here) 10452 << (Base->getCanonicalDecl() == 10453 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10454 << Base << Existing->getType() << Existing->getSourceRange(); 10455 S.Diag(BI.getLocStart(), diag::note_vbase_moved_here) 10456 << (Base->getCanonicalDecl() == 10457 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10458 << Base << BI.getType() << BaseSpec->getSourceRange(); 10459 10460 // Only diagnose each vbase once. 10461 Existing = nullptr; 10462 } 10463 } else { 10464 // Only walk over bases that have defaulted move assignment operators. 10465 // We assume that any user-provided move assignment operator handles 10466 // the multiple-moves-of-vbase case itself somehow. 10467 if (!SMOR->getMethod()->isDefaulted()) 10468 continue; 10469 10470 // We're going to move the base classes of Base. Add them to the list. 10471 for (auto &BI : Base->bases()) 10472 Worklist.push_back(&BI); 10473 } 10474 } 10475 } 10476 } 10477 10478 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation, 10479 CXXMethodDecl *MoveAssignOperator) { 10480 assert((MoveAssignOperator->isDefaulted() && 10481 MoveAssignOperator->isOverloadedOperator() && 10482 MoveAssignOperator->getOverloadedOperator() == OO_Equal && 10483 !MoveAssignOperator->doesThisDeclarationHaveABody() && 10484 !MoveAssignOperator->isDeleted()) && 10485 "DefineImplicitMoveAssignment called for wrong function"); 10486 10487 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent(); 10488 10489 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) { 10490 MoveAssignOperator->setInvalidDecl(); 10491 return; 10492 } 10493 10494 MoveAssignOperator->markUsed(Context); 10495 10496 SynthesizedFunctionScope Scope(*this, MoveAssignOperator); 10497 DiagnosticErrorTrap Trap(Diags); 10498 10499 // C++0x [class.copy]p28: 10500 // The implicitly-defined or move assignment operator for a non-union class 10501 // X performs memberwise move assignment of its subobjects. The direct base 10502 // classes of X are assigned first, in the order of their declaration in the 10503 // base-specifier-list, and then the immediate non-static data members of X 10504 // are assigned, in the order in which they were declared in the class 10505 // definition. 10506 10507 // Issue a warning if our implicit move assignment operator will move 10508 // from a virtual base more than once. 10509 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation); 10510 10511 // The statements that form the synthesized function body. 10512 SmallVector<Stmt*, 8> Statements; 10513 10514 // The parameter for the "other" object, which we are move from. 10515 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0); 10516 QualType OtherRefType = Other->getType()-> 10517 getAs<RValueReferenceType>()->getPointeeType(); 10518 assert(!OtherRefType.getQualifiers() && 10519 "Bad argument type of defaulted move assignment"); 10520 10521 // Our location for everything implicitly-generated. 10522 SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid() 10523 ? MoveAssignOperator->getLocEnd() 10524 : MoveAssignOperator->getLocation(); 10525 10526 // Builds a reference to the "other" object. 10527 RefBuilder OtherRef(Other, OtherRefType); 10528 // Cast to rvalue. 10529 MoveCastBuilder MoveOther(OtherRef); 10530 10531 // Builds the "this" pointer. 10532 ThisBuilder This; 10533 10534 // Assign base classes. 10535 bool Invalid = false; 10536 for (auto &Base : ClassDecl->bases()) { 10537 // C++11 [class.copy]p28: 10538 // It is unspecified whether subobjects representing virtual base classes 10539 // are assigned more than once by the implicitly-defined copy assignment 10540 // operator. 10541 // FIXME: Do not assign to a vbase that will be assigned by some other base 10542 // class. For a move-assignment, this can result in the vbase being moved 10543 // multiple times. 10544 10545 // Form the assignment: 10546 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other)); 10547 QualType BaseType = Base.getType().getUnqualifiedType(); 10548 if (!BaseType->isRecordType()) { 10549 Invalid = true; 10550 continue; 10551 } 10552 10553 CXXCastPath BasePath; 10554 BasePath.push_back(&Base); 10555 10556 // Construct the "from" expression, which is an implicit cast to the 10557 // appropriately-qualified base type. 10558 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath); 10559 10560 // Dereference "this". 10561 DerefBuilder DerefThis(This); 10562 10563 // Implicitly cast "this" to the appropriately-qualified base type. 10564 CastBuilder To(DerefThis, 10565 Context.getCVRQualifiedType( 10566 BaseType, MoveAssignOperator->getTypeQualifiers()), 10567 VK_LValue, BasePath); 10568 10569 // Build the move. 10570 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType, 10571 To, From, 10572 /*CopyingBaseSubobject=*/true, 10573 /*Copying=*/false); 10574 if (Move.isInvalid()) { 10575 Diag(CurrentLocation, diag::note_member_synthesized_at) 10576 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10577 MoveAssignOperator->setInvalidDecl(); 10578 return; 10579 } 10580 10581 // Success! Record the move. 10582 Statements.push_back(Move.getAs<Expr>()); 10583 } 10584 10585 // Assign non-static members. 10586 for (auto *Field : ClassDecl->fields()) { 10587 if (Field->isUnnamedBitfield()) 10588 continue; 10589 10590 if (Field->isInvalidDecl()) { 10591 Invalid = true; 10592 continue; 10593 } 10594 10595 // Check for members of reference type; we can't move those. 10596 if (Field->getType()->isReferenceType()) { 10597 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10598 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10599 Diag(Field->getLocation(), diag::note_declared_at); 10600 Diag(CurrentLocation, diag::note_member_synthesized_at) 10601 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10602 Invalid = true; 10603 continue; 10604 } 10605 10606 // Check for members of const-qualified, non-class type. 10607 QualType BaseType = Context.getBaseElementType(Field->getType()); 10608 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10609 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10610 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10611 Diag(Field->getLocation(), diag::note_declared_at); 10612 Diag(CurrentLocation, diag::note_member_synthesized_at) 10613 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10614 Invalid = true; 10615 continue; 10616 } 10617 10618 // Suppress assigning zero-width bitfields. 10619 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10620 continue; 10621 10622 QualType FieldType = Field->getType().getNonReferenceType(); 10623 if (FieldType->isIncompleteArrayType()) { 10624 assert(ClassDecl->hasFlexibleArrayMember() && 10625 "Incomplete array type is not valid"); 10626 continue; 10627 } 10628 10629 // Build references to the field in the object we're copying from and to. 10630 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10631 LookupMemberName); 10632 MemberLookup.addDecl(Field); 10633 MemberLookup.resolveKind(); 10634 MemberBuilder From(MoveOther, OtherRefType, 10635 /*IsArrow=*/false, MemberLookup); 10636 MemberBuilder To(This, getCurrentThisType(), 10637 /*IsArrow=*/true, MemberLookup); 10638 10639 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue 10640 "Member reference with rvalue base must be rvalue except for reference " 10641 "members, which aren't allowed for move assignment."); 10642 10643 // Build the move of this field. 10644 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType, 10645 To, From, 10646 /*CopyingBaseSubobject=*/false, 10647 /*Copying=*/false); 10648 if (Move.isInvalid()) { 10649 Diag(CurrentLocation, diag::note_member_synthesized_at) 10650 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10651 MoveAssignOperator->setInvalidDecl(); 10652 return; 10653 } 10654 10655 // Success! Record the copy. 10656 Statements.push_back(Move.getAs<Stmt>()); 10657 } 10658 10659 if (!Invalid) { 10660 // Add a "return *this;" 10661 ExprResult ThisObj = 10662 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10663 10664 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10665 if (Return.isInvalid()) 10666 Invalid = true; 10667 else { 10668 Statements.push_back(Return.getAs<Stmt>()); 10669 10670 if (Trap.hasErrorOccurred()) { 10671 Diag(CurrentLocation, diag::note_member_synthesized_at) 10672 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10673 Invalid = true; 10674 } 10675 } 10676 } 10677 10678 // The exception specification is needed because we are defining the 10679 // function. 10680 ResolveExceptionSpec(CurrentLocation, 10681 MoveAssignOperator->getType()->castAs<FunctionProtoType>()); 10682 10683 if (Invalid) { 10684 MoveAssignOperator->setInvalidDecl(); 10685 return; 10686 } 10687 10688 StmtResult Body; 10689 { 10690 CompoundScopeRAII CompoundScope(*this); 10691 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10692 /*isStmtExpr=*/false); 10693 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10694 } 10695 MoveAssignOperator->setBody(Body.getAs<Stmt>()); 10696 10697 if (ASTMutationListener *L = getASTMutationListener()) { 10698 L->CompletedImplicitDefinition(MoveAssignOperator); 10699 } 10700 } 10701 10702 Sema::ImplicitExceptionSpecification 10703 Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) { 10704 CXXRecordDecl *ClassDecl = MD->getParent(); 10705 10706 ImplicitExceptionSpecification ExceptSpec(*this); 10707 if (ClassDecl->isInvalidDecl()) 10708 return ExceptSpec; 10709 10710 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 10711 assert(T->getNumParams() >= 1 && "not a copy ctor"); 10712 unsigned Quals = T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 10713 10714 // C++ [except.spec]p14: 10715 // An implicitly declared special member function (Clause 12) shall have an 10716 // exception-specification. [...] 10717 for (const auto &Base : ClassDecl->bases()) { 10718 // Virtual bases are handled below. 10719 if (Base.isVirtual()) 10720 continue; 10721 10722 CXXRecordDecl *BaseClassDecl 10723 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10724 if (CXXConstructorDecl *CopyConstructor = 10725 LookupCopyingConstructor(BaseClassDecl, Quals)) 10726 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10727 } 10728 for (const auto &Base : ClassDecl->vbases()) { 10729 CXXRecordDecl *BaseClassDecl 10730 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10731 if (CXXConstructorDecl *CopyConstructor = 10732 LookupCopyingConstructor(BaseClassDecl, Quals)) 10733 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10734 } 10735 for (const auto *Field : ClassDecl->fields()) { 10736 QualType FieldType = Context.getBaseElementType(Field->getType()); 10737 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10738 if (CXXConstructorDecl *CopyConstructor = 10739 LookupCopyingConstructor(FieldClassDecl, 10740 Quals | FieldType.getCVRQualifiers())) 10741 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor); 10742 } 10743 } 10744 10745 return ExceptSpec; 10746 } 10747 10748 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor( 10749 CXXRecordDecl *ClassDecl) { 10750 // C++ [class.copy]p4: 10751 // If the class definition does not explicitly declare a copy 10752 // constructor, one is declared implicitly. 10753 assert(ClassDecl->needsImplicitCopyConstructor()); 10754 10755 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor); 10756 if (DSM.isAlreadyBeingDeclared()) 10757 return nullptr; 10758 10759 QualType ClassType = Context.getTypeDeclType(ClassDecl); 10760 QualType ArgType = ClassType; 10761 bool Const = ClassDecl->implicitCopyConstructorHasConstParam(); 10762 if (Const) 10763 ArgType = ArgType.withConst(); 10764 ArgType = Context.getLValueReferenceType(ArgType); 10765 10766 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10767 CXXCopyConstructor, 10768 Const); 10769 10770 DeclarationName Name 10771 = Context.DeclarationNames.getCXXConstructorName( 10772 Context.getCanonicalType(ClassType)); 10773 SourceLocation ClassLoc = ClassDecl->getLocation(); 10774 DeclarationNameInfo NameInfo(Name, ClassLoc); 10775 10776 // An implicitly-declared copy constructor is an inline public 10777 // member of its class. 10778 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create( 10779 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 10780 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 10781 Constexpr); 10782 CopyConstructor->setAccess(AS_public); 10783 CopyConstructor->setDefaulted(); 10784 10785 if (getLangOpts().CUDA) { 10786 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor, 10787 CopyConstructor, 10788 /* ConstRHS */ Const, 10789 /* Diagnose */ false); 10790 } 10791 10792 // Build an exception specification pointing back at this member. 10793 FunctionProtoType::ExtProtoInfo EPI = 10794 getImplicitMethodEPI(*this, CopyConstructor); 10795 CopyConstructor->setType( 10796 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 10797 10798 // Add the parameter to the constructor. 10799 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor, 10800 ClassLoc, ClassLoc, 10801 /*IdentifierInfo=*/nullptr, 10802 ArgType, /*TInfo=*/nullptr, 10803 SC_None, nullptr); 10804 CopyConstructor->setParams(FromParam); 10805 10806 CopyConstructor->setTrivial( 10807 ClassDecl->needsOverloadResolutionForCopyConstructor() 10808 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor) 10809 : ClassDecl->hasTrivialCopyConstructor()); 10810 10811 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor)) 10812 SetDeclDeleted(CopyConstructor, ClassLoc); 10813 10814 // Note that we have declared this constructor. 10815 ++ASTContext::NumImplicitCopyConstructorsDeclared; 10816 10817 if (Scope *S = getScopeForContext(ClassDecl)) 10818 PushOnScopeChains(CopyConstructor, S, false); 10819 ClassDecl->addDecl(CopyConstructor); 10820 10821 return CopyConstructor; 10822 } 10823 10824 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation, 10825 CXXConstructorDecl *CopyConstructor) { 10826 assert((CopyConstructor->isDefaulted() && 10827 CopyConstructor->isCopyConstructor() && 10828 !CopyConstructor->doesThisDeclarationHaveABody() && 10829 !CopyConstructor->isDeleted()) && 10830 "DefineImplicitCopyConstructor - call it for implicit copy ctor"); 10831 10832 CXXRecordDecl *ClassDecl = CopyConstructor->getParent(); 10833 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor"); 10834 10835 // C++11 [class.copy]p7: 10836 // The [definition of an implicitly declared copy constructor] is 10837 // deprecated if the class has a user-declared copy assignment operator 10838 // or a user-declared destructor. 10839 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit()) 10840 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation); 10841 10842 SynthesizedFunctionScope Scope(*this, CopyConstructor); 10843 DiagnosticErrorTrap Trap(Diags); 10844 10845 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) || 10846 Trap.hasErrorOccurred()) { 10847 Diag(CurrentLocation, diag::note_member_synthesized_at) 10848 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl); 10849 CopyConstructor->setInvalidDecl(); 10850 } else { 10851 SourceLocation Loc = CopyConstructor->getLocEnd().isValid() 10852 ? CopyConstructor->getLocEnd() 10853 : CopyConstructor->getLocation(); 10854 Sema::CompoundScopeRAII CompoundScope(*this); 10855 CopyConstructor->setBody( 10856 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>()); 10857 } 10858 10859 // The exception specification is needed because we are defining the 10860 // function. 10861 ResolveExceptionSpec(CurrentLocation, 10862 CopyConstructor->getType()->castAs<FunctionProtoType>()); 10863 10864 CopyConstructor->markUsed(Context); 10865 MarkVTableUsed(CurrentLocation, ClassDecl); 10866 10867 if (ASTMutationListener *L = getASTMutationListener()) { 10868 L->CompletedImplicitDefinition(CopyConstructor); 10869 } 10870 } 10871 10872 Sema::ImplicitExceptionSpecification 10873 Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) { 10874 CXXRecordDecl *ClassDecl = MD->getParent(); 10875 10876 // C++ [except.spec]p14: 10877 // An implicitly declared special member function (Clause 12) shall have an 10878 // exception-specification. [...] 10879 ImplicitExceptionSpecification ExceptSpec(*this); 10880 if (ClassDecl->isInvalidDecl()) 10881 return ExceptSpec; 10882 10883 // Direct base-class constructors. 10884 for (const auto &B : ClassDecl->bases()) { 10885 if (B.isVirtual()) // Handled below. 10886 continue; 10887 10888 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 10889 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 10890 CXXConstructorDecl *Constructor = 10891 LookupMovingConstructor(BaseClassDecl, 0); 10892 // If this is a deleted function, add it anyway. This might be conformant 10893 // with the standard. This might not. I'm not sure. It might not matter. 10894 if (Constructor) 10895 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 10896 } 10897 } 10898 10899 // Virtual base-class constructors. 10900 for (const auto &B : ClassDecl->vbases()) { 10901 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 10902 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 10903 CXXConstructorDecl *Constructor = 10904 LookupMovingConstructor(BaseClassDecl, 0); 10905 // If this is a deleted function, add it anyway. This might be conformant 10906 // with the standard. This might not. I'm not sure. It might not matter. 10907 if (Constructor) 10908 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 10909 } 10910 } 10911 10912 // Field constructors. 10913 for (const auto *F : ClassDecl->fields()) { 10914 QualType FieldType = Context.getBaseElementType(F->getType()); 10915 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) { 10916 CXXConstructorDecl *Constructor = 10917 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers()); 10918 // If this is a deleted function, add it anyway. This might be conformant 10919 // with the standard. This might not. I'm not sure. It might not matter. 10920 // In particular, the problem is that this function never gets called. It 10921 // might just be ill-formed because this function attempts to refer to 10922 // a deleted function here. 10923 if (Constructor) 10924 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 10925 } 10926 } 10927 10928 return ExceptSpec; 10929 } 10930 10931 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor( 10932 CXXRecordDecl *ClassDecl) { 10933 assert(ClassDecl->needsImplicitMoveConstructor()); 10934 10935 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor); 10936 if (DSM.isAlreadyBeingDeclared()) 10937 return nullptr; 10938 10939 QualType ClassType = Context.getTypeDeclType(ClassDecl); 10940 QualType ArgType = Context.getRValueReferenceType(ClassType); 10941 10942 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10943 CXXMoveConstructor, 10944 false); 10945 10946 DeclarationName Name 10947 = Context.DeclarationNames.getCXXConstructorName( 10948 Context.getCanonicalType(ClassType)); 10949 SourceLocation ClassLoc = ClassDecl->getLocation(); 10950 DeclarationNameInfo NameInfo(Name, ClassLoc); 10951 10952 // C++11 [class.copy]p11: 10953 // An implicitly-declared copy/move constructor is an inline public 10954 // member of its class. 10955 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create( 10956 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 10957 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 10958 Constexpr); 10959 MoveConstructor->setAccess(AS_public); 10960 MoveConstructor->setDefaulted(); 10961 10962 if (getLangOpts().CUDA) { 10963 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor, 10964 MoveConstructor, 10965 /* ConstRHS */ false, 10966 /* Diagnose */ false); 10967 } 10968 10969 // Build an exception specification pointing back at this member. 10970 FunctionProtoType::ExtProtoInfo EPI = 10971 getImplicitMethodEPI(*this, MoveConstructor); 10972 MoveConstructor->setType( 10973 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 10974 10975 // Add the parameter to the constructor. 10976 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor, 10977 ClassLoc, ClassLoc, 10978 /*IdentifierInfo=*/nullptr, 10979 ArgType, /*TInfo=*/nullptr, 10980 SC_None, nullptr); 10981 MoveConstructor->setParams(FromParam); 10982 10983 MoveConstructor->setTrivial( 10984 ClassDecl->needsOverloadResolutionForMoveConstructor() 10985 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor) 10986 : ClassDecl->hasTrivialMoveConstructor()); 10987 10988 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) { 10989 ClassDecl->setImplicitMoveConstructorIsDeleted(); 10990 SetDeclDeleted(MoveConstructor, ClassLoc); 10991 } 10992 10993 // Note that we have declared this constructor. 10994 ++ASTContext::NumImplicitMoveConstructorsDeclared; 10995 10996 if (Scope *S = getScopeForContext(ClassDecl)) 10997 PushOnScopeChains(MoveConstructor, S, false); 10998 ClassDecl->addDecl(MoveConstructor); 10999 11000 return MoveConstructor; 11001 } 11002 11003 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation, 11004 CXXConstructorDecl *MoveConstructor) { 11005 assert((MoveConstructor->isDefaulted() && 11006 MoveConstructor->isMoveConstructor() && 11007 !MoveConstructor->doesThisDeclarationHaveABody() && 11008 !MoveConstructor->isDeleted()) && 11009 "DefineImplicitMoveConstructor - call it for implicit move ctor"); 11010 11011 CXXRecordDecl *ClassDecl = MoveConstructor->getParent(); 11012 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor"); 11013 11014 SynthesizedFunctionScope Scope(*this, MoveConstructor); 11015 DiagnosticErrorTrap Trap(Diags); 11016 11017 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) || 11018 Trap.hasErrorOccurred()) { 11019 Diag(CurrentLocation, diag::note_member_synthesized_at) 11020 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl); 11021 MoveConstructor->setInvalidDecl(); 11022 } else { 11023 SourceLocation Loc = MoveConstructor->getLocEnd().isValid() 11024 ? MoveConstructor->getLocEnd() 11025 : MoveConstructor->getLocation(); 11026 Sema::CompoundScopeRAII CompoundScope(*this); 11027 MoveConstructor->setBody(ActOnCompoundStmt( 11028 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>()); 11029 } 11030 11031 // The exception specification is needed because we are defining the 11032 // function. 11033 ResolveExceptionSpec(CurrentLocation, 11034 MoveConstructor->getType()->castAs<FunctionProtoType>()); 11035 11036 MoveConstructor->markUsed(Context); 11037 MarkVTableUsed(CurrentLocation, ClassDecl); 11038 11039 if (ASTMutationListener *L = getASTMutationListener()) { 11040 L->CompletedImplicitDefinition(MoveConstructor); 11041 } 11042 } 11043 11044 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) { 11045 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD); 11046 } 11047 11048 void Sema::DefineImplicitLambdaToFunctionPointerConversion( 11049 SourceLocation CurrentLocation, 11050 CXXConversionDecl *Conv) { 11051 CXXRecordDecl *Lambda = Conv->getParent(); 11052 CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator(); 11053 // If we are defining a specialization of a conversion to function-ptr 11054 // cache the deduced template arguments for this specialization 11055 // so that we can use them to retrieve the corresponding call-operator 11056 // and static-invoker. 11057 const TemplateArgumentList *DeducedTemplateArgs = nullptr; 11058 11059 // Retrieve the corresponding call-operator specialization. 11060 if (Lambda->isGenericLambda()) { 11061 assert(Conv->isFunctionTemplateSpecialization()); 11062 FunctionTemplateDecl *CallOpTemplate = 11063 CallOp->getDescribedFunctionTemplate(); 11064 DeducedTemplateArgs = Conv->getTemplateSpecializationArgs(); 11065 void *InsertPos = nullptr; 11066 FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization( 11067 DeducedTemplateArgs->asArray(), 11068 InsertPos); 11069 assert(CallOpSpec && 11070 "Conversion operator must have a corresponding call operator"); 11071 CallOp = cast<CXXMethodDecl>(CallOpSpec); 11072 } 11073 // Mark the call operator referenced (and add to pending instantiations 11074 // if necessary). 11075 // For both the conversion and static-invoker template specializations 11076 // we construct their body's in this function, so no need to add them 11077 // to the PendingInstantiations. 11078 MarkFunctionReferenced(CurrentLocation, CallOp); 11079 11080 SynthesizedFunctionScope Scope(*this, Conv); 11081 DiagnosticErrorTrap Trap(Diags); 11082 11083 // Retrieve the static invoker... 11084 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker(); 11085 // ... and get the corresponding specialization for a generic lambda. 11086 if (Lambda->isGenericLambda()) { 11087 assert(DeducedTemplateArgs && 11088 "Must have deduced template arguments from Conversion Operator"); 11089 FunctionTemplateDecl *InvokeTemplate = 11090 Invoker->getDescribedFunctionTemplate(); 11091 void *InsertPos = nullptr; 11092 FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization( 11093 DeducedTemplateArgs->asArray(), 11094 InsertPos); 11095 assert(InvokeSpec && 11096 "Must have a corresponding static invoker specialization"); 11097 Invoker = cast<CXXMethodDecl>(InvokeSpec); 11098 } 11099 // Construct the body of the conversion function { return __invoke; }. 11100 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(), 11101 VK_LValue, Conv->getLocation()).get(); 11102 assert(FunctionRef && "Can't refer to __invoke function?"); 11103 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get(); 11104 Conv->setBody(new (Context) CompoundStmt(Context, Return, 11105 Conv->getLocation(), 11106 Conv->getLocation())); 11107 11108 Conv->markUsed(Context); 11109 Conv->setReferenced(); 11110 11111 // Fill in the __invoke function with a dummy implementation. IR generation 11112 // will fill in the actual details. 11113 Invoker->markUsed(Context); 11114 Invoker->setReferenced(); 11115 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation())); 11116 11117 if (ASTMutationListener *L = getASTMutationListener()) { 11118 L->CompletedImplicitDefinition(Conv); 11119 L->CompletedImplicitDefinition(Invoker); 11120 } 11121 } 11122 11123 11124 11125 void Sema::DefineImplicitLambdaToBlockPointerConversion( 11126 SourceLocation CurrentLocation, 11127 CXXConversionDecl *Conv) 11128 { 11129 assert(!Conv->getParent()->isGenericLambda()); 11130 11131 Conv->markUsed(Context); 11132 11133 SynthesizedFunctionScope Scope(*this, Conv); 11134 DiagnosticErrorTrap Trap(Diags); 11135 11136 // Copy-initialize the lambda object as needed to capture it. 11137 Expr *This = ActOnCXXThis(CurrentLocation).get(); 11138 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get(); 11139 11140 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation, 11141 Conv->getLocation(), 11142 Conv, DerefThis); 11143 11144 // If we're not under ARC, make sure we still get the _Block_copy/autorelease 11145 // behavior. Note that only the general conversion function does this 11146 // (since it's unusable otherwise); in the case where we inline the 11147 // block literal, it has block literal lifetime semantics. 11148 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount) 11149 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(), 11150 CK_CopyAndAutoreleaseBlockObject, 11151 BuildBlock.get(), nullptr, VK_RValue); 11152 11153 if (BuildBlock.isInvalid()) { 11154 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11155 Conv->setInvalidDecl(); 11156 return; 11157 } 11158 11159 // Create the return statement that returns the block from the conversion 11160 // function. 11161 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get()); 11162 if (Return.isInvalid()) { 11163 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11164 Conv->setInvalidDecl(); 11165 return; 11166 } 11167 11168 // Set the body of the conversion function. 11169 Stmt *ReturnS = Return.get(); 11170 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS, 11171 Conv->getLocation(), 11172 Conv->getLocation())); 11173 11174 // We're done; notify the mutation listener, if any. 11175 if (ASTMutationListener *L = getASTMutationListener()) { 11176 L->CompletedImplicitDefinition(Conv); 11177 } 11178 } 11179 11180 /// \brief Determine whether the given list arguments contains exactly one 11181 /// "real" (non-default) argument. 11182 static bool hasOneRealArgument(MultiExprArg Args) { 11183 switch (Args.size()) { 11184 case 0: 11185 return false; 11186 11187 default: 11188 if (!Args[1]->isDefaultArgument()) 11189 return false; 11190 11191 // fall through 11192 case 1: 11193 return !Args[0]->isDefaultArgument(); 11194 } 11195 11196 return false; 11197 } 11198 11199 ExprResult 11200 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11201 CXXConstructorDecl *Constructor, 11202 MultiExprArg ExprArgs, 11203 bool HadMultipleCandidates, 11204 bool IsListInitialization, 11205 bool IsStdInitListInitialization, 11206 bool RequiresZeroInit, 11207 unsigned ConstructKind, 11208 SourceRange ParenRange) { 11209 bool Elidable = false; 11210 11211 // C++0x [class.copy]p34: 11212 // When certain criteria are met, an implementation is allowed to 11213 // omit the copy/move construction of a class object, even if the 11214 // copy/move constructor and/or destructor for the object have 11215 // side effects. [...] 11216 // - when a temporary class object that has not been bound to a 11217 // reference (12.2) would be copied/moved to a class object 11218 // with the same cv-unqualified type, the copy/move operation 11219 // can be omitted by constructing the temporary object 11220 // directly into the target of the omitted copy/move 11221 if (ConstructKind == CXXConstructExpr::CK_Complete && 11222 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) { 11223 Expr *SubExpr = ExprArgs[0]; 11224 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent()); 11225 } 11226 11227 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor, 11228 Elidable, ExprArgs, HadMultipleCandidates, 11229 IsListInitialization, 11230 IsStdInitListInitialization, RequiresZeroInit, 11231 ConstructKind, ParenRange); 11232 } 11233 11234 /// BuildCXXConstructExpr - Creates a complete call to a constructor, 11235 /// including handling of its default argument expressions. 11236 ExprResult 11237 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11238 CXXConstructorDecl *Constructor, bool Elidable, 11239 MultiExprArg ExprArgs, 11240 bool HadMultipleCandidates, 11241 bool IsListInitialization, 11242 bool IsStdInitListInitialization, 11243 bool RequiresZeroInit, 11244 unsigned ConstructKind, 11245 SourceRange ParenRange) { 11246 MarkFunctionReferenced(ConstructLoc, Constructor); 11247 return CXXConstructExpr::Create( 11248 Context, DeclInitType, ConstructLoc, Constructor, Elidable, ExprArgs, 11249 HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization, 11250 RequiresZeroInit, 11251 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind), 11252 ParenRange); 11253 } 11254 11255 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) { 11256 assert(Field->hasInClassInitializer()); 11257 11258 // If we already have the in-class initializer nothing needs to be done. 11259 if (Field->getInClassInitializer()) 11260 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11261 11262 // Maybe we haven't instantiated the in-class initializer. Go check the 11263 // pattern FieldDecl to see if it has one. 11264 CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent()); 11265 11266 if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) { 11267 CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern(); 11268 DeclContext::lookup_result Lookup = 11269 ClassPattern->lookup(Field->getDeclName()); 11270 assert(Lookup.size() == 1); 11271 FieldDecl *Pattern = cast<FieldDecl>(Lookup[0]); 11272 if (InstantiateInClassInitializer(Loc, Field, Pattern, 11273 getTemplateInstantiationArgs(Field))) 11274 return ExprError(); 11275 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11276 } 11277 11278 // DR1351: 11279 // If the brace-or-equal-initializer of a non-static data member 11280 // invokes a defaulted default constructor of its class or of an 11281 // enclosing class in a potentially evaluated subexpression, the 11282 // program is ill-formed. 11283 // 11284 // This resolution is unworkable: the exception specification of the 11285 // default constructor can be needed in an unevaluated context, in 11286 // particular, in the operand of a noexcept-expression, and we can be 11287 // unable to compute an exception specification for an enclosed class. 11288 // 11289 // Any attempt to resolve the exception specification of a defaulted default 11290 // constructor before the initializer is lexically complete will ultimately 11291 // come here at which point we can diagnose it. 11292 RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext(); 11293 if (OutermostClass == ParentRD) { 11294 Diag(Field->getLocEnd(), diag::err_in_class_initializer_not_yet_parsed) 11295 << ParentRD << Field; 11296 } else { 11297 Diag(Field->getLocEnd(), 11298 diag::err_in_class_initializer_not_yet_parsed_outer_class) 11299 << ParentRD << OutermostClass << Field; 11300 } 11301 11302 return ExprError(); 11303 } 11304 11305 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) { 11306 if (VD->isInvalidDecl()) return; 11307 11308 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl()); 11309 if (ClassDecl->isInvalidDecl()) return; 11310 if (ClassDecl->hasIrrelevantDestructor()) return; 11311 if (ClassDecl->isDependentContext()) return; 11312 11313 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl); 11314 MarkFunctionReferenced(VD->getLocation(), Destructor); 11315 CheckDestructorAccess(VD->getLocation(), Destructor, 11316 PDiag(diag::err_access_dtor_var) 11317 << VD->getDeclName() 11318 << VD->getType()); 11319 DiagnoseUseOfDecl(Destructor, VD->getLocation()); 11320 11321 if (Destructor->isTrivial()) return; 11322 if (!VD->hasGlobalStorage()) return; 11323 11324 // Emit warning for non-trivial dtor in global scope (a real global, 11325 // class-static, function-static). 11326 Diag(VD->getLocation(), diag::warn_exit_time_destructor); 11327 11328 // TODO: this should be re-enabled for static locals by !CXAAtExit 11329 if (!VD->isStaticLocal()) 11330 Diag(VD->getLocation(), diag::warn_global_destructor); 11331 } 11332 11333 /// \brief Given a constructor and the set of arguments provided for the 11334 /// constructor, convert the arguments and add any required default arguments 11335 /// to form a proper call to this constructor. 11336 /// 11337 /// \returns true if an error occurred, false otherwise. 11338 bool 11339 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor, 11340 MultiExprArg ArgsPtr, 11341 SourceLocation Loc, 11342 SmallVectorImpl<Expr*> &ConvertedArgs, 11343 bool AllowExplicit, 11344 bool IsListInitialization) { 11345 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall. 11346 unsigned NumArgs = ArgsPtr.size(); 11347 Expr **Args = ArgsPtr.data(); 11348 11349 const FunctionProtoType *Proto 11350 = Constructor->getType()->getAs<FunctionProtoType>(); 11351 assert(Proto && "Constructor without a prototype?"); 11352 unsigned NumParams = Proto->getNumParams(); 11353 11354 // If too few arguments are available, we'll fill in the rest with defaults. 11355 if (NumArgs < NumParams) 11356 ConvertedArgs.reserve(NumParams); 11357 else 11358 ConvertedArgs.reserve(NumArgs); 11359 11360 VariadicCallType CallType = 11361 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; 11362 SmallVector<Expr *, 8> AllArgs; 11363 bool Invalid = GatherArgumentsForCall(Loc, Constructor, 11364 Proto, 0, 11365 llvm::makeArrayRef(Args, NumArgs), 11366 AllArgs, 11367 CallType, AllowExplicit, 11368 IsListInitialization); 11369 ConvertedArgs.append(AllArgs.begin(), AllArgs.end()); 11370 11371 DiagnoseSentinelCalls(Constructor, Loc, AllArgs); 11372 11373 CheckConstructorCall(Constructor, 11374 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()), 11375 Proto, Loc); 11376 11377 return Invalid; 11378 } 11379 11380 static inline bool 11381 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef, 11382 const FunctionDecl *FnDecl) { 11383 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext(); 11384 if (isa<NamespaceDecl>(DC)) { 11385 return SemaRef.Diag(FnDecl->getLocation(), 11386 diag::err_operator_new_delete_declared_in_namespace) 11387 << FnDecl->getDeclName(); 11388 } 11389 11390 if (isa<TranslationUnitDecl>(DC) && 11391 FnDecl->getStorageClass() == SC_Static) { 11392 return SemaRef.Diag(FnDecl->getLocation(), 11393 diag::err_operator_new_delete_declared_static) 11394 << FnDecl->getDeclName(); 11395 } 11396 11397 return false; 11398 } 11399 11400 static inline bool 11401 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl, 11402 CanQualType ExpectedResultType, 11403 CanQualType ExpectedFirstParamType, 11404 unsigned DependentParamTypeDiag, 11405 unsigned InvalidParamTypeDiag) { 11406 QualType ResultType = 11407 FnDecl->getType()->getAs<FunctionType>()->getReturnType(); 11408 11409 // Check that the result type is not dependent. 11410 if (ResultType->isDependentType()) 11411 return SemaRef.Diag(FnDecl->getLocation(), 11412 diag::err_operator_new_delete_dependent_result_type) 11413 << FnDecl->getDeclName() << ExpectedResultType; 11414 11415 // Check that the result type is what we expect. 11416 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType) 11417 return SemaRef.Diag(FnDecl->getLocation(), 11418 diag::err_operator_new_delete_invalid_result_type) 11419 << FnDecl->getDeclName() << ExpectedResultType; 11420 11421 // A function template must have at least 2 parameters. 11422 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2) 11423 return SemaRef.Diag(FnDecl->getLocation(), 11424 diag::err_operator_new_delete_template_too_few_parameters) 11425 << FnDecl->getDeclName(); 11426 11427 // The function decl must have at least 1 parameter. 11428 if (FnDecl->getNumParams() == 0) 11429 return SemaRef.Diag(FnDecl->getLocation(), 11430 diag::err_operator_new_delete_too_few_parameters) 11431 << FnDecl->getDeclName(); 11432 11433 // Check the first parameter type is not dependent. 11434 QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); 11435 if (FirstParamType->isDependentType()) 11436 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag) 11437 << FnDecl->getDeclName() << ExpectedFirstParamType; 11438 11439 // Check that the first parameter type is what we expect. 11440 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() != 11441 ExpectedFirstParamType) 11442 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag) 11443 << FnDecl->getDeclName() << ExpectedFirstParamType; 11444 11445 return false; 11446 } 11447 11448 static bool 11449 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { 11450 // C++ [basic.stc.dynamic.allocation]p1: 11451 // A program is ill-formed if an allocation function is declared in a 11452 // namespace scope other than global scope or declared static in global 11453 // scope. 11454 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11455 return true; 11456 11457 CanQualType SizeTy = 11458 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType()); 11459 11460 // C++ [basic.stc.dynamic.allocation]p1: 11461 // The return type shall be void*. The first parameter shall have type 11462 // std::size_t. 11463 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy, 11464 SizeTy, 11465 diag::err_operator_new_dependent_param_type, 11466 diag::err_operator_new_param_type)) 11467 return true; 11468 11469 // C++ [basic.stc.dynamic.allocation]p1: 11470 // The first parameter shall not have an associated default argument. 11471 if (FnDecl->getParamDecl(0)->hasDefaultArg()) 11472 return SemaRef.Diag(FnDecl->getLocation(), 11473 diag::err_operator_new_default_arg) 11474 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange(); 11475 11476 return false; 11477 } 11478 11479 static bool 11480 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) { 11481 // C++ [basic.stc.dynamic.deallocation]p1: 11482 // A program is ill-formed if deallocation functions are declared in a 11483 // namespace scope other than global scope or declared static in global 11484 // scope. 11485 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11486 return true; 11487 11488 // C++ [basic.stc.dynamic.deallocation]p2: 11489 // Each deallocation function shall return void and its first parameter 11490 // shall be void*. 11491 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy, 11492 SemaRef.Context.VoidPtrTy, 11493 diag::err_operator_delete_dependent_param_type, 11494 diag::err_operator_delete_param_type)) 11495 return true; 11496 11497 return false; 11498 } 11499 11500 /// CheckOverloadedOperatorDeclaration - Check whether the declaration 11501 /// of this overloaded operator is well-formed. If so, returns false; 11502 /// otherwise, emits appropriate diagnostics and returns true. 11503 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) { 11504 assert(FnDecl && FnDecl->isOverloadedOperator() && 11505 "Expected an overloaded operator declaration"); 11506 11507 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator(); 11508 11509 // C++ [over.oper]p5: 11510 // The allocation and deallocation functions, operator new, 11511 // operator new[], operator delete and operator delete[], are 11512 // described completely in 3.7.3. The attributes and restrictions 11513 // found in the rest of this subclause do not apply to them unless 11514 // explicitly stated in 3.7.3. 11515 if (Op == OO_Delete || Op == OO_Array_Delete) 11516 return CheckOperatorDeleteDeclaration(*this, FnDecl); 11517 11518 if (Op == OO_New || Op == OO_Array_New) 11519 return CheckOperatorNewDeclaration(*this, FnDecl); 11520 11521 // C++ [over.oper]p6: 11522 // An operator function shall either be a non-static member 11523 // function or be a non-member function and have at least one 11524 // parameter whose type is a class, a reference to a class, an 11525 // enumeration, or a reference to an enumeration. 11526 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { 11527 if (MethodDecl->isStatic()) 11528 return Diag(FnDecl->getLocation(), 11529 diag::err_operator_overload_static) << FnDecl->getDeclName(); 11530 } else { 11531 bool ClassOrEnumParam = false; 11532 for (auto Param : FnDecl->params()) { 11533 QualType ParamType = Param->getType().getNonReferenceType(); 11534 if (ParamType->isDependentType() || ParamType->isRecordType() || 11535 ParamType->isEnumeralType()) { 11536 ClassOrEnumParam = true; 11537 break; 11538 } 11539 } 11540 11541 if (!ClassOrEnumParam) 11542 return Diag(FnDecl->getLocation(), 11543 diag::err_operator_overload_needs_class_or_enum) 11544 << FnDecl->getDeclName(); 11545 } 11546 11547 // C++ [over.oper]p8: 11548 // An operator function cannot have default arguments (8.3.6), 11549 // except where explicitly stated below. 11550 // 11551 // Only the function-call operator allows default arguments 11552 // (C++ [over.call]p1). 11553 if (Op != OO_Call) { 11554 for (auto Param : FnDecl->params()) { 11555 if (Param->hasDefaultArg()) 11556 return Diag(Param->getLocation(), 11557 diag::err_operator_overload_default_arg) 11558 << FnDecl->getDeclName() << Param->getDefaultArgRange(); 11559 } 11560 } 11561 11562 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = { 11563 { false, false, false } 11564 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ 11565 , { Unary, Binary, MemberOnly } 11566 #include "clang/Basic/OperatorKinds.def" 11567 }; 11568 11569 bool CanBeUnaryOperator = OperatorUses[Op][0]; 11570 bool CanBeBinaryOperator = OperatorUses[Op][1]; 11571 bool MustBeMemberOperator = OperatorUses[Op][2]; 11572 11573 // C++ [over.oper]p8: 11574 // [...] Operator functions cannot have more or fewer parameters 11575 // than the number required for the corresponding operator, as 11576 // described in the rest of this subclause. 11577 unsigned NumParams = FnDecl->getNumParams() 11578 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0); 11579 if (Op != OO_Call && 11580 ((NumParams == 1 && !CanBeUnaryOperator) || 11581 (NumParams == 2 && !CanBeBinaryOperator) || 11582 (NumParams < 1) || (NumParams > 2))) { 11583 // We have the wrong number of parameters. 11584 unsigned ErrorKind; 11585 if (CanBeUnaryOperator && CanBeBinaryOperator) { 11586 ErrorKind = 2; // 2 -> unary or binary. 11587 } else if (CanBeUnaryOperator) { 11588 ErrorKind = 0; // 0 -> unary 11589 } else { 11590 assert(CanBeBinaryOperator && 11591 "All non-call overloaded operators are unary or binary!"); 11592 ErrorKind = 1; // 1 -> binary 11593 } 11594 11595 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be) 11596 << FnDecl->getDeclName() << NumParams << ErrorKind; 11597 } 11598 11599 // Overloaded operators other than operator() cannot be variadic. 11600 if (Op != OO_Call && 11601 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) { 11602 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic) 11603 << FnDecl->getDeclName(); 11604 } 11605 11606 // Some operators must be non-static member functions. 11607 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) { 11608 return Diag(FnDecl->getLocation(), 11609 diag::err_operator_overload_must_be_member) 11610 << FnDecl->getDeclName(); 11611 } 11612 11613 // C++ [over.inc]p1: 11614 // The user-defined function called operator++ implements the 11615 // prefix and postfix ++ operator. If this function is a member 11616 // function with no parameters, or a non-member function with one 11617 // parameter of class or enumeration type, it defines the prefix 11618 // increment operator ++ for objects of that type. If the function 11619 // is a member function with one parameter (which shall be of type 11620 // int) or a non-member function with two parameters (the second 11621 // of which shall be of type int), it defines the postfix 11622 // increment operator ++ for objects of that type. 11623 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) { 11624 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1); 11625 QualType ParamType = LastParam->getType(); 11626 11627 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) && 11628 !ParamType->isDependentType()) 11629 return Diag(LastParam->getLocation(), 11630 diag::err_operator_overload_post_incdec_must_be_int) 11631 << LastParam->getType() << (Op == OO_MinusMinus); 11632 } 11633 11634 return false; 11635 } 11636 11637 /// CheckLiteralOperatorDeclaration - Check whether the declaration 11638 /// of this literal operator function is well-formed. If so, returns 11639 /// false; otherwise, emits appropriate diagnostics and returns true. 11640 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) { 11641 if (isa<CXXMethodDecl>(FnDecl)) { 11642 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace) 11643 << FnDecl->getDeclName(); 11644 return true; 11645 } 11646 11647 if (FnDecl->isExternC()) { 11648 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c); 11649 return true; 11650 } 11651 11652 bool Valid = false; 11653 11654 // This might be the definition of a literal operator template. 11655 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate(); 11656 // This might be a specialization of a literal operator template. 11657 if (!TpDecl) 11658 TpDecl = FnDecl->getPrimaryTemplate(); 11659 11660 // template <char...> type operator "" name() and 11661 // template <class T, T...> type operator "" name() are the only valid 11662 // template signatures, and the only valid signatures with no parameters. 11663 if (TpDecl) { 11664 if (FnDecl->param_size() == 0) { 11665 // Must have one or two template parameters 11666 TemplateParameterList *Params = TpDecl->getTemplateParameters(); 11667 if (Params->size() == 1) { 11668 NonTypeTemplateParmDecl *PmDecl = 11669 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0)); 11670 11671 // The template parameter must be a char parameter pack. 11672 if (PmDecl && PmDecl->isTemplateParameterPack() && 11673 Context.hasSameType(PmDecl->getType(), Context.CharTy)) 11674 Valid = true; 11675 } else if (Params->size() == 2) { 11676 TemplateTypeParmDecl *PmType = 11677 dyn_cast<TemplateTypeParmDecl>(Params->getParam(0)); 11678 NonTypeTemplateParmDecl *PmArgs = 11679 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(1)); 11680 11681 // The second template parameter must be a parameter pack with the 11682 // first template parameter as its type. 11683 if (PmType && PmArgs && 11684 !PmType->isTemplateParameterPack() && 11685 PmArgs->isTemplateParameterPack()) { 11686 const TemplateTypeParmType *TArgs = 11687 PmArgs->getType()->getAs<TemplateTypeParmType>(); 11688 if (TArgs && TArgs->getDepth() == PmType->getDepth() && 11689 TArgs->getIndex() == PmType->getIndex()) { 11690 Valid = true; 11691 if (ActiveTemplateInstantiations.empty()) 11692 Diag(FnDecl->getLocation(), 11693 diag::ext_string_literal_operator_template); 11694 } 11695 } 11696 } 11697 } 11698 } else if (FnDecl->param_size()) { 11699 // Check the first parameter 11700 FunctionDecl::param_iterator Param = FnDecl->param_begin(); 11701 11702 QualType T = (*Param)->getType().getUnqualifiedType(); 11703 11704 // unsigned long long int, long double, and any character type are allowed 11705 // as the only parameters. 11706 if (Context.hasSameType(T, Context.UnsignedLongLongTy) || 11707 Context.hasSameType(T, Context.LongDoubleTy) || 11708 Context.hasSameType(T, Context.CharTy) || 11709 Context.hasSameType(T, Context.WideCharTy) || 11710 Context.hasSameType(T, Context.Char16Ty) || 11711 Context.hasSameType(T, Context.Char32Ty)) { 11712 if (++Param == FnDecl->param_end()) 11713 Valid = true; 11714 goto FinishedParams; 11715 } 11716 11717 // Otherwise it must be a pointer to const; let's strip those qualifiers. 11718 const PointerType *PT = T->getAs<PointerType>(); 11719 if (!PT) 11720 goto FinishedParams; 11721 T = PT->getPointeeType(); 11722 if (!T.isConstQualified() || T.isVolatileQualified()) 11723 goto FinishedParams; 11724 T = T.getUnqualifiedType(); 11725 11726 // Move on to the second parameter; 11727 ++Param; 11728 11729 // If there is no second parameter, the first must be a const char * 11730 if (Param == FnDecl->param_end()) { 11731 if (Context.hasSameType(T, Context.CharTy)) 11732 Valid = true; 11733 goto FinishedParams; 11734 } 11735 11736 // const char *, const wchar_t*, const char16_t*, and const char32_t* 11737 // are allowed as the first parameter to a two-parameter function 11738 if (!(Context.hasSameType(T, Context.CharTy) || 11739 Context.hasSameType(T, Context.WideCharTy) || 11740 Context.hasSameType(T, Context.Char16Ty) || 11741 Context.hasSameType(T, Context.Char32Ty))) 11742 goto FinishedParams; 11743 11744 // The second and final parameter must be an std::size_t 11745 T = (*Param)->getType().getUnqualifiedType(); 11746 if (Context.hasSameType(T, Context.getSizeType()) && 11747 ++Param == FnDecl->param_end()) 11748 Valid = true; 11749 } 11750 11751 // FIXME: This diagnostic is absolutely terrible. 11752 FinishedParams: 11753 if (!Valid) { 11754 Diag(FnDecl->getLocation(), diag::err_literal_operator_params) 11755 << FnDecl->getDeclName(); 11756 return true; 11757 } 11758 11759 // A parameter-declaration-clause containing a default argument is not 11760 // equivalent to any of the permitted forms. 11761 for (auto Param : FnDecl->params()) { 11762 if (Param->hasDefaultArg()) { 11763 Diag(Param->getDefaultArgRange().getBegin(), 11764 diag::err_literal_operator_default_argument) 11765 << Param->getDefaultArgRange(); 11766 break; 11767 } 11768 } 11769 11770 StringRef LiteralName 11771 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName(); 11772 if (LiteralName[0] != '_') { 11773 // C++11 [usrlit.suffix]p1: 11774 // Literal suffix identifiers that do not start with an underscore 11775 // are reserved for future standardization. 11776 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved) 11777 << NumericLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName); 11778 } 11779 11780 return false; 11781 } 11782 11783 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++ 11784 /// linkage specification, including the language and (if present) 11785 /// the '{'. ExternLoc is the location of the 'extern', Lang is the 11786 /// language string literal. LBraceLoc, if valid, provides the location of 11787 /// the '{' brace. Otherwise, this linkage specification does not 11788 /// have any braces. 11789 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, 11790 Expr *LangStr, 11791 SourceLocation LBraceLoc) { 11792 StringLiteral *Lit = cast<StringLiteral>(LangStr); 11793 if (!Lit->isAscii()) { 11794 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii) 11795 << LangStr->getSourceRange(); 11796 return nullptr; 11797 } 11798 11799 StringRef Lang = Lit->getString(); 11800 LinkageSpecDecl::LanguageIDs Language; 11801 if (Lang == "C") 11802 Language = LinkageSpecDecl::lang_c; 11803 else if (Lang == "C++") 11804 Language = LinkageSpecDecl::lang_cxx; 11805 else { 11806 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown) 11807 << LangStr->getSourceRange(); 11808 return nullptr; 11809 } 11810 11811 // FIXME: Add all the various semantics of linkage specifications 11812 11813 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc, 11814 LangStr->getExprLoc(), Language, 11815 LBraceLoc.isValid()); 11816 CurContext->addDecl(D); 11817 PushDeclContext(S, D); 11818 return D; 11819 } 11820 11821 /// ActOnFinishLinkageSpecification - Complete the definition of 11822 /// the C++ linkage specification LinkageSpec. If RBraceLoc is 11823 /// valid, it's the position of the closing '}' brace in a linkage 11824 /// specification that uses braces. 11825 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S, 11826 Decl *LinkageSpec, 11827 SourceLocation RBraceLoc) { 11828 if (RBraceLoc.isValid()) { 11829 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec); 11830 LSDecl->setRBraceLoc(RBraceLoc); 11831 } 11832 PopDeclContext(); 11833 return LinkageSpec; 11834 } 11835 11836 Decl *Sema::ActOnEmptyDeclaration(Scope *S, 11837 AttributeList *AttrList, 11838 SourceLocation SemiLoc) { 11839 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); 11840 // Attribute declarations appertain to empty declaration so we handle 11841 // them here. 11842 if (AttrList) 11843 ProcessDeclAttributeList(S, ED, AttrList); 11844 11845 CurContext->addDecl(ED); 11846 return ED; 11847 } 11848 11849 /// \brief Perform semantic analysis for the variable declaration that 11850 /// occurs within a C++ catch clause, returning the newly-created 11851 /// variable. 11852 VarDecl *Sema::BuildExceptionDeclaration(Scope *S, 11853 TypeSourceInfo *TInfo, 11854 SourceLocation StartLoc, 11855 SourceLocation Loc, 11856 IdentifierInfo *Name) { 11857 bool Invalid = false; 11858 QualType ExDeclType = TInfo->getType(); 11859 11860 // Arrays and functions decay. 11861 if (ExDeclType->isArrayType()) 11862 ExDeclType = Context.getArrayDecayedType(ExDeclType); 11863 else if (ExDeclType->isFunctionType()) 11864 ExDeclType = Context.getPointerType(ExDeclType); 11865 11866 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type. 11867 // The exception-declaration shall not denote a pointer or reference to an 11868 // incomplete type, other than [cv] void*. 11869 // N2844 forbids rvalue references. 11870 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) { 11871 Diag(Loc, diag::err_catch_rvalue_ref); 11872 Invalid = true; 11873 } 11874 11875 QualType BaseType = ExDeclType; 11876 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference 11877 unsigned DK = diag::err_catch_incomplete; 11878 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { 11879 BaseType = Ptr->getPointeeType(); 11880 Mode = 1; 11881 DK = diag::err_catch_incomplete_ptr; 11882 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) { 11883 // For the purpose of error recovery, we treat rvalue refs like lvalue refs. 11884 BaseType = Ref->getPointeeType(); 11885 Mode = 2; 11886 DK = diag::err_catch_incomplete_ref; 11887 } 11888 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) && 11889 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK)) 11890 Invalid = true; 11891 11892 if (!Invalid && !ExDeclType->isDependentType() && 11893 RequireNonAbstractType(Loc, ExDeclType, 11894 diag::err_abstract_type_in_decl, 11895 AbstractVariableType)) 11896 Invalid = true; 11897 11898 // Only the non-fragile NeXT runtime currently supports C++ catches 11899 // of ObjC types, and no runtime supports catching ObjC types by value. 11900 if (!Invalid && getLangOpts().ObjC1) { 11901 QualType T = ExDeclType; 11902 if (const ReferenceType *RT = T->getAs<ReferenceType>()) 11903 T = RT->getPointeeType(); 11904 11905 if (T->isObjCObjectType()) { 11906 Diag(Loc, diag::err_objc_object_catch); 11907 Invalid = true; 11908 } else if (T->isObjCObjectPointerType()) { 11909 // FIXME: should this be a test for macosx-fragile specifically? 11910 if (getLangOpts().ObjCRuntime.isFragile()) 11911 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile); 11912 } 11913 } 11914 11915 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, 11916 ExDeclType, TInfo, SC_None); 11917 ExDecl->setExceptionVariable(true); 11918 11919 // In ARC, infer 'retaining' for variables of retainable type. 11920 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) 11921 Invalid = true; 11922 11923 if (!Invalid && !ExDeclType->isDependentType()) { 11924 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) { 11925 // Insulate this from anything else we might currently be parsing. 11926 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated); 11927 11928 // C++ [except.handle]p16: 11929 // The object declared in an exception-declaration or, if the 11930 // exception-declaration does not specify a name, a temporary (12.2) is 11931 // copy-initialized (8.5) from the exception object. [...] 11932 // The object is destroyed when the handler exits, after the destruction 11933 // of any automatic objects initialized within the handler. 11934 // 11935 // We just pretend to initialize the object with itself, then make sure 11936 // it can be destroyed later. 11937 QualType initType = Context.getExceptionObjectType(ExDeclType); 11938 11939 InitializedEntity entity = 11940 InitializedEntity::InitializeVariable(ExDecl); 11941 InitializationKind initKind = 11942 InitializationKind::CreateCopy(Loc, SourceLocation()); 11943 11944 Expr *opaqueValue = 11945 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary); 11946 InitializationSequence sequence(*this, entity, initKind, opaqueValue); 11947 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue); 11948 if (result.isInvalid()) 11949 Invalid = true; 11950 else { 11951 // If the constructor used was non-trivial, set this as the 11952 // "initializer". 11953 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>(); 11954 if (!construct->getConstructor()->isTrivial()) { 11955 Expr *init = MaybeCreateExprWithCleanups(construct); 11956 ExDecl->setInit(init); 11957 } 11958 11959 // And make sure it's destructable. 11960 FinalizeVarWithDestructor(ExDecl, recordType); 11961 } 11962 } 11963 } 11964 11965 if (Invalid) 11966 ExDecl->setInvalidDecl(); 11967 11968 return ExDecl; 11969 } 11970 11971 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch 11972 /// handler. 11973 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) { 11974 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 11975 bool Invalid = D.isInvalidType(); 11976 11977 // Check for unexpanded parameter packs. 11978 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 11979 UPPC_ExceptionType)) { 11980 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 11981 D.getIdentifierLoc()); 11982 Invalid = true; 11983 } 11984 11985 IdentifierInfo *II = D.getIdentifier(); 11986 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(), 11987 LookupOrdinaryName, 11988 ForRedeclaration)) { 11989 // The scope should be freshly made just for us. There is just no way 11990 // it contains any previous declaration, except for function parameters in 11991 // a function-try-block's catch statement. 11992 assert(!S->isDeclScope(PrevDecl)); 11993 if (isDeclInScope(PrevDecl, CurContext, S)) { 11994 Diag(D.getIdentifierLoc(), diag::err_redefinition) 11995 << D.getIdentifier(); 11996 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 11997 Invalid = true; 11998 } else if (PrevDecl->isTemplateParameter()) 11999 // Maybe we will complain about the shadowed template parameter. 12000 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 12001 } 12002 12003 if (D.getCXXScopeSpec().isSet() && !Invalid) { 12004 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator) 12005 << D.getCXXScopeSpec().getRange(); 12006 Invalid = true; 12007 } 12008 12009 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, 12010 D.getLocStart(), 12011 D.getIdentifierLoc(), 12012 D.getIdentifier()); 12013 if (Invalid) 12014 ExDecl->setInvalidDecl(); 12015 12016 // Add the exception declaration into this scope. 12017 if (II) 12018 PushOnScopeChains(ExDecl, S); 12019 else 12020 CurContext->addDecl(ExDecl); 12021 12022 ProcessDeclAttributes(S, ExDecl, D); 12023 return ExDecl; 12024 } 12025 12026 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12027 Expr *AssertExpr, 12028 Expr *AssertMessageExpr, 12029 SourceLocation RParenLoc) { 12030 StringLiteral *AssertMessage = 12031 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr; 12032 12033 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression)) 12034 return nullptr; 12035 12036 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr, 12037 AssertMessage, RParenLoc, false); 12038 } 12039 12040 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12041 Expr *AssertExpr, 12042 StringLiteral *AssertMessage, 12043 SourceLocation RParenLoc, 12044 bool Failed) { 12045 assert(AssertExpr != nullptr && "Expected non-null condition"); 12046 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() && 12047 !Failed) { 12048 // In a static_assert-declaration, the constant-expression shall be a 12049 // constant expression that can be contextually converted to bool. 12050 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); 12051 if (Converted.isInvalid()) 12052 Failed = true; 12053 12054 llvm::APSInt Cond; 12055 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond, 12056 diag::err_static_assert_expression_is_not_constant, 12057 /*AllowFold=*/false).isInvalid()) 12058 Failed = true; 12059 12060 if (!Failed && !Cond) { 12061 SmallString<256> MsgBuffer; 12062 llvm::raw_svector_ostream Msg(MsgBuffer); 12063 if (AssertMessage) 12064 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy()); 12065 Diag(StaticAssertLoc, diag::err_static_assert_failed) 12066 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); 12067 Failed = true; 12068 } 12069 } 12070 12071 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc, 12072 AssertExpr, AssertMessage, RParenLoc, 12073 Failed); 12074 12075 CurContext->addDecl(Decl); 12076 return Decl; 12077 } 12078 12079 /// \brief Perform semantic analysis of the given friend type declaration. 12080 /// 12081 /// \returns A friend declaration that. 12082 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart, 12083 SourceLocation FriendLoc, 12084 TypeSourceInfo *TSInfo) { 12085 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration"); 12086 12087 QualType T = TSInfo->getType(); 12088 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange(); 12089 12090 // C++03 [class.friend]p2: 12091 // An elaborated-type-specifier shall be used in a friend declaration 12092 // for a class.* 12093 // 12094 // * The class-key of the elaborated-type-specifier is required. 12095 if (!ActiveTemplateInstantiations.empty()) { 12096 // Do not complain about the form of friend template types during 12097 // template instantiation; we will already have complained when the 12098 // template was declared. 12099 } else { 12100 if (!T->isElaboratedTypeSpecifier()) { 12101 // If we evaluated the type to a record type, suggest putting 12102 // a tag in front. 12103 if (const RecordType *RT = T->getAs<RecordType>()) { 12104 RecordDecl *RD = RT->getDecl(); 12105 12106 SmallString<16> InsertionText(" "); 12107 InsertionText += RD->getKindName(); 12108 12109 Diag(TypeRange.getBegin(), 12110 getLangOpts().CPlusPlus11 ? 12111 diag::warn_cxx98_compat_unelaborated_friend_type : 12112 diag::ext_unelaborated_friend_type) 12113 << (unsigned) RD->getTagKind() 12114 << T 12115 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc), 12116 InsertionText); 12117 } else { 12118 Diag(FriendLoc, 12119 getLangOpts().CPlusPlus11 ? 12120 diag::warn_cxx98_compat_nonclass_type_friend : 12121 diag::ext_nonclass_type_friend) 12122 << T 12123 << TypeRange; 12124 } 12125 } else if (T->getAs<EnumType>()) { 12126 Diag(FriendLoc, 12127 getLangOpts().CPlusPlus11 ? 12128 diag::warn_cxx98_compat_enum_friend : 12129 diag::ext_enum_friend) 12130 << T 12131 << TypeRange; 12132 } 12133 12134 // C++11 [class.friend]p3: 12135 // A friend declaration that does not declare a function shall have one 12136 // of the following forms: 12137 // friend elaborated-type-specifier ; 12138 // friend simple-type-specifier ; 12139 // friend typename-specifier ; 12140 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc) 12141 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T; 12142 } 12143 12144 // If the type specifier in a friend declaration designates a (possibly 12145 // cv-qualified) class type, that class is declared as a friend; otherwise, 12146 // the friend declaration is ignored. 12147 return FriendDecl::Create(Context, CurContext, 12148 TSInfo->getTypeLoc().getLocStart(), TSInfo, 12149 FriendLoc); 12150 } 12151 12152 /// Handle a friend tag declaration where the scope specifier was 12153 /// templated. 12154 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc, 12155 unsigned TagSpec, SourceLocation TagLoc, 12156 CXXScopeSpec &SS, 12157 IdentifierInfo *Name, 12158 SourceLocation NameLoc, 12159 AttributeList *Attr, 12160 MultiTemplateParamsArg TempParamLists) { 12161 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 12162 12163 bool isExplicitSpecialization = false; 12164 bool Invalid = false; 12165 12166 if (TemplateParameterList *TemplateParams = 12167 MatchTemplateParametersToScopeSpecifier( 12168 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true, 12169 isExplicitSpecialization, Invalid)) { 12170 if (TemplateParams->size() > 0) { 12171 // This is a declaration of a class template. 12172 if (Invalid) 12173 return nullptr; 12174 12175 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name, 12176 NameLoc, Attr, TemplateParams, AS_public, 12177 /*ModulePrivateLoc=*/SourceLocation(), 12178 FriendLoc, TempParamLists.size() - 1, 12179 TempParamLists.data()).get(); 12180 } else { 12181 // The "template<>" header is extraneous. 12182 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 12183 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 12184 isExplicitSpecialization = true; 12185 } 12186 } 12187 12188 if (Invalid) return nullptr; 12189 12190 bool isAllExplicitSpecializations = true; 12191 for (unsigned I = TempParamLists.size(); I-- > 0; ) { 12192 if (TempParamLists[I]->size()) { 12193 isAllExplicitSpecializations = false; 12194 break; 12195 } 12196 } 12197 12198 // FIXME: don't ignore attributes. 12199 12200 // If it's explicit specializations all the way down, just forget 12201 // about the template header and build an appropriate non-templated 12202 // friend. TODO: for source fidelity, remember the headers. 12203 if (isAllExplicitSpecializations) { 12204 if (SS.isEmpty()) { 12205 bool Owned = false; 12206 bool IsDependent = false; 12207 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc, 12208 Attr, AS_public, 12209 /*ModulePrivateLoc=*/SourceLocation(), 12210 MultiTemplateParamsArg(), Owned, IsDependent, 12211 /*ScopedEnumKWLoc=*/SourceLocation(), 12212 /*ScopedEnumUsesClassTag=*/false, 12213 /*UnderlyingType=*/TypeResult(), 12214 /*IsTypeSpecifier=*/false); 12215 } 12216 12217 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 12218 ElaboratedTypeKeyword Keyword 12219 = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12220 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc, 12221 *Name, NameLoc); 12222 if (T.isNull()) 12223 return nullptr; 12224 12225 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12226 if (isa<DependentNameType>(T)) { 12227 DependentNameTypeLoc TL = 12228 TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12229 TL.setElaboratedKeywordLoc(TagLoc); 12230 TL.setQualifierLoc(QualifierLoc); 12231 TL.setNameLoc(NameLoc); 12232 } else { 12233 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); 12234 TL.setElaboratedKeywordLoc(TagLoc); 12235 TL.setQualifierLoc(QualifierLoc); 12236 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc); 12237 } 12238 12239 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12240 TSI, FriendLoc, TempParamLists); 12241 Friend->setAccess(AS_public); 12242 CurContext->addDecl(Friend); 12243 return Friend; 12244 } 12245 12246 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); 12247 12248 12249 12250 // Handle the case of a templated-scope friend class. e.g. 12251 // template <class T> class A<T>::B; 12252 // FIXME: we don't support these right now. 12253 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported) 12254 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext); 12255 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12256 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name); 12257 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12258 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12259 TL.setElaboratedKeywordLoc(TagLoc); 12260 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 12261 TL.setNameLoc(NameLoc); 12262 12263 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12264 TSI, FriendLoc, TempParamLists); 12265 Friend->setAccess(AS_public); 12266 Friend->setUnsupportedFriend(true); 12267 CurContext->addDecl(Friend); 12268 return Friend; 12269 } 12270 12271 12272 /// Handle a friend type declaration. This works in tandem with 12273 /// ActOnTag. 12274 /// 12275 /// Notes on friend class templates: 12276 /// 12277 /// We generally treat friend class declarations as if they were 12278 /// declaring a class. So, for example, the elaborated type specifier 12279 /// in a friend declaration is required to obey the restrictions of a 12280 /// class-head (i.e. no typedefs in the scope chain), template 12281 /// parameters are required to match up with simple template-ids, &c. 12282 /// However, unlike when declaring a template specialization, it's 12283 /// okay to refer to a template specialization without an empty 12284 /// template parameter declaration, e.g. 12285 /// friend class A<T>::B<unsigned>; 12286 /// We permit this as a special case; if there are any template 12287 /// parameters present at all, require proper matching, i.e. 12288 /// template <> template \<class T> friend class A<int>::B; 12289 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, 12290 MultiTemplateParamsArg TempParams) { 12291 SourceLocation Loc = DS.getLocStart(); 12292 12293 assert(DS.isFriendSpecified()); 12294 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12295 12296 // Try to convert the decl specifier to a type. This works for 12297 // friend templates because ActOnTag never produces a ClassTemplateDecl 12298 // for a TUK_Friend. 12299 Declarator TheDeclarator(DS, Declarator::MemberContext); 12300 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S); 12301 QualType T = TSI->getType(); 12302 if (TheDeclarator.isInvalidType()) 12303 return nullptr; 12304 12305 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration)) 12306 return nullptr; 12307 12308 // This is definitely an error in C++98. It's probably meant to 12309 // be forbidden in C++0x, too, but the specification is just 12310 // poorly written. 12311 // 12312 // The problem is with declarations like the following: 12313 // template <T> friend A<T>::foo; 12314 // where deciding whether a class C is a friend or not now hinges 12315 // on whether there exists an instantiation of A that causes 12316 // 'foo' to equal C. There are restrictions on class-heads 12317 // (which we declare (by fiat) elaborated friend declarations to 12318 // be) that makes this tractable. 12319 // 12320 // FIXME: handle "template <> friend class A<T>;", which 12321 // is possibly well-formed? Who even knows? 12322 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) { 12323 Diag(Loc, diag::err_tagless_friend_type_template) 12324 << DS.getSourceRange(); 12325 return nullptr; 12326 } 12327 12328 // C++98 [class.friend]p1: A friend of a class is a function 12329 // or class that is not a member of the class . . . 12330 // This is fixed in DR77, which just barely didn't make the C++03 12331 // deadline. It's also a very silly restriction that seriously 12332 // affects inner classes and which nobody else seems to implement; 12333 // thus we never diagnose it, not even in -pedantic. 12334 // 12335 // But note that we could warn about it: it's always useless to 12336 // friend one of your own members (it's not, however, worthless to 12337 // friend a member of an arbitrary specialization of your template). 12338 12339 Decl *D; 12340 if (unsigned NumTempParamLists = TempParams.size()) 12341 D = FriendTemplateDecl::Create(Context, CurContext, Loc, 12342 NumTempParamLists, 12343 TempParams.data(), 12344 TSI, 12345 DS.getFriendSpecLoc()); 12346 else 12347 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI); 12348 12349 if (!D) 12350 return nullptr; 12351 12352 D->setAccess(AS_public); 12353 CurContext->addDecl(D); 12354 12355 return D; 12356 } 12357 12358 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, 12359 MultiTemplateParamsArg TemplateParams) { 12360 const DeclSpec &DS = D.getDeclSpec(); 12361 12362 assert(DS.isFriendSpecified()); 12363 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12364 12365 SourceLocation Loc = D.getIdentifierLoc(); 12366 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 12367 12368 // C++ [class.friend]p1 12369 // A friend of a class is a function or class.... 12370 // Note that this sees through typedefs, which is intended. 12371 // It *doesn't* see through dependent types, which is correct 12372 // according to [temp.arg.type]p3: 12373 // If a declaration acquires a function type through a 12374 // type dependent on a template-parameter and this causes 12375 // a declaration that does not use the syntactic form of a 12376 // function declarator to have a function type, the program 12377 // is ill-formed. 12378 if (!TInfo->getType()->isFunctionType()) { 12379 Diag(Loc, diag::err_unexpected_friend); 12380 12381 // It might be worthwhile to try to recover by creating an 12382 // appropriate declaration. 12383 return nullptr; 12384 } 12385 12386 // C++ [namespace.memdef]p3 12387 // - If a friend declaration in a non-local class first declares a 12388 // class or function, the friend class or function is a member 12389 // of the innermost enclosing namespace. 12390 // - The name of the friend is not found by simple name lookup 12391 // until a matching declaration is provided in that namespace 12392 // scope (either before or after the class declaration granting 12393 // friendship). 12394 // - If a friend function is called, its name may be found by the 12395 // name lookup that considers functions from namespaces and 12396 // classes associated with the types of the function arguments. 12397 // - When looking for a prior declaration of a class or a function 12398 // declared as a friend, scopes outside the innermost enclosing 12399 // namespace scope are not considered. 12400 12401 CXXScopeSpec &SS = D.getCXXScopeSpec(); 12402 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 12403 DeclarationName Name = NameInfo.getName(); 12404 assert(Name); 12405 12406 // Check for unexpanded parameter packs. 12407 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) || 12408 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) || 12409 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration)) 12410 return nullptr; 12411 12412 // The context we found the declaration in, or in which we should 12413 // create the declaration. 12414 DeclContext *DC; 12415 Scope *DCScope = S; 12416 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 12417 ForRedeclaration); 12418 12419 // There are five cases here. 12420 // - There's no scope specifier and we're in a local class. Only look 12421 // for functions declared in the immediately-enclosing block scope. 12422 // We recover from invalid scope qualifiers as if they just weren't there. 12423 FunctionDecl *FunctionContainingLocalClass = nullptr; 12424 if ((SS.isInvalid() || !SS.isSet()) && 12425 (FunctionContainingLocalClass = 12426 cast<CXXRecordDecl>(CurContext)->isLocalClass())) { 12427 // C++11 [class.friend]p11: 12428 // If a friend declaration appears in a local class and the name 12429 // specified is an unqualified name, a prior declaration is 12430 // looked up without considering scopes that are outside the 12431 // innermost enclosing non-class scope. For a friend function 12432 // declaration, if there is no prior declaration, the program is 12433 // ill-formed. 12434 12435 // Find the innermost enclosing non-class scope. This is the block 12436 // scope containing the local class definition (or for a nested class, 12437 // the outer local class). 12438 DCScope = S->getFnParent(); 12439 12440 // Look up the function name in the scope. 12441 Previous.clear(LookupLocalFriendName); 12442 LookupName(Previous, S, /*AllowBuiltinCreation*/false); 12443 12444 if (!Previous.empty()) { 12445 // All possible previous declarations must have the same context: 12446 // either they were declared at block scope or they are members of 12447 // one of the enclosing local classes. 12448 DC = Previous.getRepresentativeDecl()->getDeclContext(); 12449 } else { 12450 // This is ill-formed, but provide the context that we would have 12451 // declared the function in, if we were permitted to, for error recovery. 12452 DC = FunctionContainingLocalClass; 12453 } 12454 adjustContextForLocalExternDecl(DC); 12455 12456 // C++ [class.friend]p6: 12457 // A function can be defined in a friend declaration of a class if and 12458 // only if the class is a non-local class (9.8), the function name is 12459 // unqualified, and the function has namespace scope. 12460 if (D.isFunctionDefinition()) { 12461 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class); 12462 } 12463 12464 // - There's no scope specifier, in which case we just go to the 12465 // appropriate scope and look for a function or function template 12466 // there as appropriate. 12467 } else if (SS.isInvalid() || !SS.isSet()) { 12468 // C++11 [namespace.memdef]p3: 12469 // If the name in a friend declaration is neither qualified nor 12470 // a template-id and the declaration is a function or an 12471 // elaborated-type-specifier, the lookup to determine whether 12472 // the entity has been previously declared shall not consider 12473 // any scopes outside the innermost enclosing namespace. 12474 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId; 12475 12476 // Find the appropriate context according to the above. 12477 DC = CurContext; 12478 12479 // Skip class contexts. If someone can cite chapter and verse 12480 // for this behavior, that would be nice --- it's what GCC and 12481 // EDG do, and it seems like a reasonable intent, but the spec 12482 // really only says that checks for unqualified existing 12483 // declarations should stop at the nearest enclosing namespace, 12484 // not that they should only consider the nearest enclosing 12485 // namespace. 12486 while (DC->isRecord()) 12487 DC = DC->getParent(); 12488 12489 DeclContext *LookupDC = DC; 12490 while (LookupDC->isTransparentContext()) 12491 LookupDC = LookupDC->getParent(); 12492 12493 while (true) { 12494 LookupQualifiedName(Previous, LookupDC); 12495 12496 if (!Previous.empty()) { 12497 DC = LookupDC; 12498 break; 12499 } 12500 12501 if (isTemplateId) { 12502 if (isa<TranslationUnitDecl>(LookupDC)) break; 12503 } else { 12504 if (LookupDC->isFileContext()) break; 12505 } 12506 LookupDC = LookupDC->getParent(); 12507 } 12508 12509 DCScope = getScopeForDeclContext(S, DC); 12510 12511 // - There's a non-dependent scope specifier, in which case we 12512 // compute it and do a previous lookup there for a function 12513 // or function template. 12514 } else if (!SS.getScopeRep()->isDependent()) { 12515 DC = computeDeclContext(SS); 12516 if (!DC) return nullptr; 12517 12518 if (RequireCompleteDeclContext(SS, DC)) return nullptr; 12519 12520 LookupQualifiedName(Previous, DC); 12521 12522 // Ignore things found implicitly in the wrong scope. 12523 // TODO: better diagnostics for this case. Suggesting the right 12524 // qualified scope would be nice... 12525 LookupResult::Filter F = Previous.makeFilter(); 12526 while (F.hasNext()) { 12527 NamedDecl *D = F.next(); 12528 if (!DC->InEnclosingNamespaceSetOf( 12529 D->getDeclContext()->getRedeclContext())) 12530 F.erase(); 12531 } 12532 F.done(); 12533 12534 if (Previous.empty()) { 12535 D.setInvalidType(); 12536 Diag(Loc, diag::err_qualified_friend_not_found) 12537 << Name << TInfo->getType(); 12538 return nullptr; 12539 } 12540 12541 // C++ [class.friend]p1: A friend of a class is a function or 12542 // class that is not a member of the class . . . 12543 if (DC->Equals(CurContext)) 12544 Diag(DS.getFriendSpecLoc(), 12545 getLangOpts().CPlusPlus11 ? 12546 diag::warn_cxx98_compat_friend_is_member : 12547 diag::err_friend_is_member); 12548 12549 if (D.isFunctionDefinition()) { 12550 // C++ [class.friend]p6: 12551 // A function can be defined in a friend declaration of a class if and 12552 // only if the class is a non-local class (9.8), the function name is 12553 // unqualified, and the function has namespace scope. 12554 SemaDiagnosticBuilder DB 12555 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def); 12556 12557 DB << SS.getScopeRep(); 12558 if (DC->isFileContext()) 12559 DB << FixItHint::CreateRemoval(SS.getRange()); 12560 SS.clear(); 12561 } 12562 12563 // - There's a scope specifier that does not match any template 12564 // parameter lists, in which case we use some arbitrary context, 12565 // create a method or method template, and wait for instantiation. 12566 // - There's a scope specifier that does match some template 12567 // parameter lists, which we don't handle right now. 12568 } else { 12569 if (D.isFunctionDefinition()) { 12570 // C++ [class.friend]p6: 12571 // A function can be defined in a friend declaration of a class if and 12572 // only if the class is a non-local class (9.8), the function name is 12573 // unqualified, and the function has namespace scope. 12574 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def) 12575 << SS.getScopeRep(); 12576 } 12577 12578 DC = CurContext; 12579 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?"); 12580 } 12581 12582 if (!DC->isRecord()) { 12583 // This implies that it has to be an operator or function. 12584 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName || 12585 D.getName().getKind() == UnqualifiedId::IK_DestructorName || 12586 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) { 12587 Diag(Loc, diag::err_introducing_special_friend) << 12588 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 : 12589 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2); 12590 return nullptr; 12591 } 12592 } 12593 12594 // FIXME: This is an egregious hack to cope with cases where the scope stack 12595 // does not contain the declaration context, i.e., in an out-of-line 12596 // definition of a class. 12597 Scope FakeDCScope(S, Scope::DeclScope, Diags); 12598 if (!DCScope) { 12599 FakeDCScope.setEntity(DC); 12600 DCScope = &FakeDCScope; 12601 } 12602 12603 bool AddToScope = true; 12604 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous, 12605 TemplateParams, AddToScope); 12606 if (!ND) return nullptr; 12607 12608 assert(ND->getLexicalDeclContext() == CurContext); 12609 12610 // If we performed typo correction, we might have added a scope specifier 12611 // and changed the decl context. 12612 DC = ND->getDeclContext(); 12613 12614 // Add the function declaration to the appropriate lookup tables, 12615 // adjusting the redeclarations list as necessary. We don't 12616 // want to do this yet if the friending class is dependent. 12617 // 12618 // Also update the scope-based lookup if the target context's 12619 // lookup context is in lexical scope. 12620 if (!CurContext->isDependentContext()) { 12621 DC = DC->getRedeclContext(); 12622 DC->makeDeclVisibleInContext(ND); 12623 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 12624 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false); 12625 } 12626 12627 FriendDecl *FrD = FriendDecl::Create(Context, CurContext, 12628 D.getIdentifierLoc(), ND, 12629 DS.getFriendSpecLoc()); 12630 FrD->setAccess(AS_public); 12631 CurContext->addDecl(FrD); 12632 12633 if (ND->isInvalidDecl()) { 12634 FrD->setInvalidDecl(); 12635 } else { 12636 if (DC->isRecord()) CheckFriendAccess(ND); 12637 12638 FunctionDecl *FD; 12639 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 12640 FD = FTD->getTemplatedDecl(); 12641 else 12642 FD = cast<FunctionDecl>(ND); 12643 12644 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a 12645 // default argument expression, that declaration shall be a definition 12646 // and shall be the only declaration of the function or function 12647 // template in the translation unit. 12648 if (functionDeclHasDefaultArgument(FD)) { 12649 if (FunctionDecl *OldFD = FD->getPreviousDecl()) { 12650 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 12651 Diag(OldFD->getLocation(), diag::note_previous_declaration); 12652 } else if (!D.isFunctionDefinition()) 12653 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def); 12654 } 12655 12656 // Mark templated-scope function declarations as unsupported. 12657 if (FD->getNumTemplateParameterLists() && SS.isValid()) { 12658 Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported) 12659 << SS.getScopeRep() << SS.getRange() 12660 << cast<CXXRecordDecl>(CurContext); 12661 FrD->setUnsupportedFriend(true); 12662 } 12663 } 12664 12665 return ND; 12666 } 12667 12668 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) { 12669 AdjustDeclIfTemplate(Dcl); 12670 12671 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl); 12672 if (!Fn) { 12673 Diag(DelLoc, diag::err_deleted_non_function); 12674 return; 12675 } 12676 12677 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) { 12678 // Don't consider the implicit declaration we generate for explicit 12679 // specializations. FIXME: Do not generate these implicit declarations. 12680 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization || 12681 Prev->getPreviousDecl()) && 12682 !Prev->isDefined()) { 12683 Diag(DelLoc, diag::err_deleted_decl_not_first); 12684 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(), 12685 Prev->isImplicit() ? diag::note_previous_implicit_declaration 12686 : diag::note_previous_declaration); 12687 } 12688 // If the declaration wasn't the first, we delete the function anyway for 12689 // recovery. 12690 Fn = Fn->getCanonicalDecl(); 12691 } 12692 12693 // dllimport/dllexport cannot be deleted. 12694 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) { 12695 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr; 12696 Fn->setInvalidDecl(); 12697 } 12698 12699 if (Fn->isDeleted()) 12700 return; 12701 12702 // See if we're deleting a function which is already known to override a 12703 // non-deleted virtual function. 12704 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) { 12705 bool IssuedDiagnostic = false; 12706 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 12707 E = MD->end_overridden_methods(); 12708 I != E; ++I) { 12709 if (!(*MD->begin_overridden_methods())->isDeleted()) { 12710 if (!IssuedDiagnostic) { 12711 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName(); 12712 IssuedDiagnostic = true; 12713 } 12714 Diag((*I)->getLocation(), diag::note_overridden_virtual_function); 12715 } 12716 } 12717 } 12718 12719 // C++11 [basic.start.main]p3: 12720 // A program that defines main as deleted [...] is ill-formed. 12721 if (Fn->isMain()) 12722 Diag(DelLoc, diag::err_deleted_main); 12723 12724 Fn->setDeletedAsWritten(); 12725 } 12726 12727 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { 12728 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl); 12729 12730 if (MD) { 12731 if (MD->getParent()->isDependentType()) { 12732 MD->setDefaulted(); 12733 MD->setExplicitlyDefaulted(); 12734 return; 12735 } 12736 12737 CXXSpecialMember Member = getSpecialMember(MD); 12738 if (Member == CXXInvalid) { 12739 if (!MD->isInvalidDecl()) 12740 Diag(DefaultLoc, diag::err_default_special_members); 12741 return; 12742 } 12743 12744 MD->setDefaulted(); 12745 MD->setExplicitlyDefaulted(); 12746 12747 // If this definition appears within the record, do the checking when 12748 // the record is complete. 12749 const FunctionDecl *Primary = MD; 12750 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern()) 12751 // Find the uninstantiated declaration that actually had the '= default' 12752 // on it. 12753 Pattern->isDefined(Primary); 12754 12755 // If the method was defaulted on its first declaration, we will have 12756 // already performed the checking in CheckCompletedCXXClass. Such a 12757 // declaration doesn't trigger an implicit definition. 12758 if (Primary == Primary->getCanonicalDecl()) 12759 return; 12760 12761 CheckExplicitlyDefaultedSpecialMember(MD); 12762 12763 if (MD->isInvalidDecl()) 12764 return; 12765 12766 switch (Member) { 12767 case CXXDefaultConstructor: 12768 DefineImplicitDefaultConstructor(DefaultLoc, 12769 cast<CXXConstructorDecl>(MD)); 12770 break; 12771 case CXXCopyConstructor: 12772 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12773 break; 12774 case CXXCopyAssignment: 12775 DefineImplicitCopyAssignment(DefaultLoc, MD); 12776 break; 12777 case CXXDestructor: 12778 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); 12779 break; 12780 case CXXMoveConstructor: 12781 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12782 break; 12783 case CXXMoveAssignment: 12784 DefineImplicitMoveAssignment(DefaultLoc, MD); 12785 break; 12786 case CXXInvalid: 12787 llvm_unreachable("Invalid special member."); 12788 } 12789 } else { 12790 Diag(DefaultLoc, diag::err_default_special_members); 12791 } 12792 } 12793 12794 static void SearchForReturnInStmt(Sema &Self, Stmt *S) { 12795 for (Stmt::child_range CI = S->children(); CI; ++CI) { 12796 Stmt *SubStmt = *CI; 12797 if (!SubStmt) 12798 continue; 12799 if (isa<ReturnStmt>(SubStmt)) 12800 Self.Diag(SubStmt->getLocStart(), 12801 diag::err_return_in_constructor_handler); 12802 if (!isa<Expr>(SubStmt)) 12803 SearchForReturnInStmt(Self, SubStmt); 12804 } 12805 } 12806 12807 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) { 12808 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { 12809 CXXCatchStmt *Handler = TryBlock->getHandler(I); 12810 SearchForReturnInStmt(*this, Handler); 12811 } 12812 } 12813 12814 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New, 12815 const CXXMethodDecl *Old) { 12816 const FunctionType *NewFT = New->getType()->getAs<FunctionType>(); 12817 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>(); 12818 12819 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv(); 12820 12821 // If the calling conventions match, everything is fine 12822 if (NewCC == OldCC) 12823 return false; 12824 12825 // If the calling conventions mismatch because the new function is static, 12826 // suppress the calling convention mismatch error; the error about static 12827 // function override (err_static_overrides_virtual from 12828 // Sema::CheckFunctionDeclaration) is more clear. 12829 if (New->getStorageClass() == SC_Static) 12830 return false; 12831 12832 Diag(New->getLocation(), 12833 diag::err_conflicting_overriding_cc_attributes) 12834 << New->getDeclName() << New->getType() << Old->getType(); 12835 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 12836 return true; 12837 } 12838 12839 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, 12840 const CXXMethodDecl *Old) { 12841 QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType(); 12842 QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType(); 12843 12844 if (Context.hasSameType(NewTy, OldTy) || 12845 NewTy->isDependentType() || OldTy->isDependentType()) 12846 return false; 12847 12848 // Check if the return types are covariant 12849 QualType NewClassTy, OldClassTy; 12850 12851 /// Both types must be pointers or references to classes. 12852 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) { 12853 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) { 12854 NewClassTy = NewPT->getPointeeType(); 12855 OldClassTy = OldPT->getPointeeType(); 12856 } 12857 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) { 12858 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) { 12859 if (NewRT->getTypeClass() == OldRT->getTypeClass()) { 12860 NewClassTy = NewRT->getPointeeType(); 12861 OldClassTy = OldRT->getPointeeType(); 12862 } 12863 } 12864 } 12865 12866 // The return types aren't either both pointers or references to a class type. 12867 if (NewClassTy.isNull()) { 12868 Diag(New->getLocation(), 12869 diag::err_different_return_type_for_overriding_virtual_function) 12870 << New->getDeclName() << NewTy << OldTy 12871 << New->getReturnTypeSourceRange(); 12872 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12873 << Old->getReturnTypeSourceRange(); 12874 12875 return true; 12876 } 12877 12878 // C++ [class.virtual]p6: 12879 // If the return type of D::f differs from the return type of B::f, the 12880 // class type in the return type of D::f shall be complete at the point of 12881 // declaration of D::f or shall be the class type D. 12882 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) { 12883 if (!RT->isBeingDefined() && 12884 RequireCompleteType(New->getLocation(), NewClassTy, 12885 diag::err_covariant_return_incomplete, 12886 New->getDeclName())) 12887 return true; 12888 } 12889 12890 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) { 12891 // Check if the new class derives from the old class. 12892 if (!IsDerivedFrom(NewClassTy, OldClassTy)) { 12893 Diag(New->getLocation(), diag::err_covariant_return_not_derived) 12894 << New->getDeclName() << NewTy << OldTy 12895 << New->getReturnTypeSourceRange(); 12896 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12897 << Old->getReturnTypeSourceRange(); 12898 return true; 12899 } 12900 12901 // Check if we the conversion from derived to base is valid. 12902 if (CheckDerivedToBaseConversion( 12903 NewClassTy, OldClassTy, 12904 diag::err_covariant_return_inaccessible_base, 12905 diag::err_covariant_return_ambiguous_derived_to_base_conv, 12906 New->getLocation(), New->getReturnTypeSourceRange(), 12907 New->getDeclName(), nullptr)) { 12908 // FIXME: this note won't trigger for delayed access control 12909 // diagnostics, and it's impossible to get an undelayed error 12910 // here from access control during the original parse because 12911 // the ParsingDeclSpec/ParsingDeclarator are still in scope. 12912 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12913 << Old->getReturnTypeSourceRange(); 12914 return true; 12915 } 12916 } 12917 12918 // The qualifiers of the return types must be the same. 12919 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) { 12920 Diag(New->getLocation(), 12921 diag::err_covariant_return_type_different_qualifications) 12922 << New->getDeclName() << NewTy << OldTy 12923 << New->getReturnTypeSourceRange(); 12924 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12925 << Old->getReturnTypeSourceRange(); 12926 return true; 12927 }; 12928 12929 12930 // The new class type must have the same or less qualifiers as the old type. 12931 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) { 12932 Diag(New->getLocation(), 12933 diag::err_covariant_return_type_class_type_more_qualified) 12934 << New->getDeclName() << NewTy << OldTy 12935 << New->getReturnTypeSourceRange(); 12936 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12937 << Old->getReturnTypeSourceRange(); 12938 return true; 12939 }; 12940 12941 return false; 12942 } 12943 12944 /// \brief Mark the given method pure. 12945 /// 12946 /// \param Method the method to be marked pure. 12947 /// 12948 /// \param InitRange the source range that covers the "0" initializer. 12949 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { 12950 SourceLocation EndLoc = InitRange.getEnd(); 12951 if (EndLoc.isValid()) 12952 Method->setRangeEnd(EndLoc); 12953 12954 if (Method->isVirtual() || Method->getParent()->isDependentContext()) { 12955 Method->setPure(); 12956 return false; 12957 } 12958 12959 if (!Method->isInvalidDecl()) 12960 Diag(Method->getLocation(), diag::err_non_virtual_pure) 12961 << Method->getDeclName() << InitRange; 12962 return true; 12963 } 12964 12965 /// \brief Determine whether the given declaration is a static data member. 12966 static bool isStaticDataMember(const Decl *D) { 12967 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D)) 12968 return Var->isStaticDataMember(); 12969 12970 return false; 12971 } 12972 12973 /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse 12974 /// an initializer for the out-of-line declaration 'Dcl'. The scope 12975 /// is a fresh scope pushed for just this purpose. 12976 /// 12977 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a 12978 /// static data member of class X, names should be looked up in the scope of 12979 /// class X. 12980 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) { 12981 // If there is no declaration, there was an error parsing it. 12982 if (!D || D->isInvalidDecl()) 12983 return; 12984 12985 // We will always have a nested name specifier here, but this declaration 12986 // might not be out of line if the specifier names the current namespace: 12987 // extern int n; 12988 // int ::n = 0; 12989 if (D->isOutOfLine()) 12990 EnterDeclaratorContext(S, D->getDeclContext()); 12991 12992 // If we are parsing the initializer for a static data member, push a 12993 // new expression evaluation context that is associated with this static 12994 // data member. 12995 if (isStaticDataMember(D)) 12996 PushExpressionEvaluationContext(PotentiallyEvaluated, D); 12997 } 12998 12999 /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an 13000 /// initializer for the out-of-line declaration 'D'. 13001 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) { 13002 // If there is no declaration, there was an error parsing it. 13003 if (!D || D->isInvalidDecl()) 13004 return; 13005 13006 if (isStaticDataMember(D)) 13007 PopExpressionEvaluationContext(); 13008 13009 if (D->isOutOfLine()) 13010 ExitDeclaratorContext(S); 13011 } 13012 13013 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a 13014 /// C++ if/switch/while/for statement. 13015 /// e.g: "if (int x = f()) {...}" 13016 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) { 13017 // C++ 6.4p2: 13018 // The declarator shall not specify a function or an array. 13019 // The type-specifier-seq shall not contain typedef and shall not declare a 13020 // new class or enumeration. 13021 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 13022 "Parser allowed 'typedef' as storage class of condition decl."); 13023 13024 Decl *Dcl = ActOnDeclarator(S, D); 13025 if (!Dcl) 13026 return true; 13027 13028 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function. 13029 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type) 13030 << D.getSourceRange(); 13031 return true; 13032 } 13033 13034 return Dcl; 13035 } 13036 13037 void Sema::LoadExternalVTableUses() { 13038 if (!ExternalSource) 13039 return; 13040 13041 SmallVector<ExternalVTableUse, 4> VTables; 13042 ExternalSource->ReadUsedVTables(VTables); 13043 SmallVector<VTableUse, 4> NewUses; 13044 for (unsigned I = 0, N = VTables.size(); I != N; ++I) { 13045 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos 13046 = VTablesUsed.find(VTables[I].Record); 13047 // Even if a definition wasn't required before, it may be required now. 13048 if (Pos != VTablesUsed.end()) { 13049 if (!Pos->second && VTables[I].DefinitionRequired) 13050 Pos->second = true; 13051 continue; 13052 } 13053 13054 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired; 13055 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location)); 13056 } 13057 13058 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end()); 13059 } 13060 13061 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, 13062 bool DefinitionRequired) { 13063 // Ignore any vtable uses in unevaluated operands or for classes that do 13064 // not have a vtable. 13065 if (!Class->isDynamicClass() || Class->isDependentContext() || 13066 CurContext->isDependentContext() || isUnevaluatedContext()) 13067 return; 13068 13069 // Try to insert this class into the map. 13070 LoadExternalVTableUses(); 13071 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13072 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool> 13073 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired)); 13074 if (!Pos.second) { 13075 // If we already had an entry, check to see if we are promoting this vtable 13076 // to require a definition. If so, we need to reappend to the VTableUses 13077 // list, since we may have already processed the first entry. 13078 if (DefinitionRequired && !Pos.first->second) { 13079 Pos.first->second = true; 13080 } else { 13081 // Otherwise, we can early exit. 13082 return; 13083 } 13084 } else { 13085 // The Microsoft ABI requires that we perform the destructor body 13086 // checks (i.e. operator delete() lookup) when the vtable is marked used, as 13087 // the deleting destructor is emitted with the vtable, not with the 13088 // destructor definition as in the Itanium ABI. 13089 // If it has a definition, we do the check at that point instead. 13090 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 13091 Class->hasUserDeclaredDestructor() && 13092 !Class->getDestructor()->isDefined() && 13093 !Class->getDestructor()->isDeleted()) { 13094 CXXDestructorDecl *DD = Class->getDestructor(); 13095 ContextRAII SavedContext(*this, DD); 13096 CheckDestructor(DD); 13097 } 13098 } 13099 13100 // Local classes need to have their virtual members marked 13101 // immediately. For all other classes, we mark their virtual members 13102 // at the end of the translation unit. 13103 if (Class->isLocalClass()) 13104 MarkVirtualMembersReferenced(Loc, Class); 13105 else 13106 VTableUses.push_back(std::make_pair(Class, Loc)); 13107 } 13108 13109 bool Sema::DefineUsedVTables() { 13110 LoadExternalVTableUses(); 13111 if (VTableUses.empty()) 13112 return false; 13113 13114 // Note: The VTableUses vector could grow as a result of marking 13115 // the members of a class as "used", so we check the size each 13116 // time through the loop and prefer indices (which are stable) to 13117 // iterators (which are not). 13118 bool DefinedAnything = false; 13119 for (unsigned I = 0; I != VTableUses.size(); ++I) { 13120 CXXRecordDecl *Class = VTableUses[I].first->getDefinition(); 13121 if (!Class) 13122 continue; 13123 13124 SourceLocation Loc = VTableUses[I].second; 13125 13126 bool DefineVTable = true; 13127 13128 // If this class has a key function, but that key function is 13129 // defined in another translation unit, we don't need to emit the 13130 // vtable even though we're using it. 13131 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class); 13132 if (KeyFunction && !KeyFunction->hasBody()) { 13133 // The key function is in another translation unit. 13134 DefineVTable = false; 13135 TemplateSpecializationKind TSK = 13136 KeyFunction->getTemplateSpecializationKind(); 13137 assert(TSK != TSK_ExplicitInstantiationDefinition && 13138 TSK != TSK_ImplicitInstantiation && 13139 "Instantiations don't have key functions"); 13140 (void)TSK; 13141 } else if (!KeyFunction) { 13142 // If we have a class with no key function that is the subject 13143 // of an explicit instantiation declaration, suppress the 13144 // vtable; it will live with the explicit instantiation 13145 // definition. 13146 bool IsExplicitInstantiationDeclaration 13147 = Class->getTemplateSpecializationKind() 13148 == TSK_ExplicitInstantiationDeclaration; 13149 for (auto R : Class->redecls()) { 13150 TemplateSpecializationKind TSK 13151 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind(); 13152 if (TSK == TSK_ExplicitInstantiationDeclaration) 13153 IsExplicitInstantiationDeclaration = true; 13154 else if (TSK == TSK_ExplicitInstantiationDefinition) { 13155 IsExplicitInstantiationDeclaration = false; 13156 break; 13157 } 13158 } 13159 13160 if (IsExplicitInstantiationDeclaration) 13161 DefineVTable = false; 13162 } 13163 13164 // The exception specifications for all virtual members may be needed even 13165 // if we are not providing an authoritative form of the vtable in this TU. 13166 // We may choose to emit it available_externally anyway. 13167 if (!DefineVTable) { 13168 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class); 13169 continue; 13170 } 13171 13172 // Mark all of the virtual members of this class as referenced, so 13173 // that we can build a vtable. Then, tell the AST consumer that a 13174 // vtable for this class is required. 13175 DefinedAnything = true; 13176 MarkVirtualMembersReferenced(Loc, Class); 13177 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13178 if (VTablesUsed[Canonical]) 13179 Consumer.HandleVTable(Class); 13180 13181 // Optionally warn if we're emitting a weak vtable. 13182 if (Class->isExternallyVisible() && 13183 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) { 13184 const FunctionDecl *KeyFunctionDef = nullptr; 13185 if (!KeyFunction || 13186 (KeyFunction->hasBody(KeyFunctionDef) && 13187 KeyFunctionDef->isInlined())) 13188 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() == 13189 TSK_ExplicitInstantiationDefinition 13190 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable) 13191 << Class; 13192 } 13193 } 13194 VTableUses.clear(); 13195 13196 return DefinedAnything; 13197 } 13198 13199 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc, 13200 const CXXRecordDecl *RD) { 13201 for (const auto *I : RD->methods()) 13202 if (I->isVirtual() && !I->isPure()) 13203 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>()); 13204 } 13205 13206 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc, 13207 const CXXRecordDecl *RD) { 13208 // Mark all functions which will appear in RD's vtable as used. 13209 CXXFinalOverriderMap FinalOverriders; 13210 RD->getFinalOverriders(FinalOverriders); 13211 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(), 13212 E = FinalOverriders.end(); 13213 I != E; ++I) { 13214 for (OverridingMethods::const_iterator OI = I->second.begin(), 13215 OE = I->second.end(); 13216 OI != OE; ++OI) { 13217 assert(OI->second.size() > 0 && "no final overrider"); 13218 CXXMethodDecl *Overrider = OI->second.front().Method; 13219 13220 // C++ [basic.def.odr]p2: 13221 // [...] A virtual member function is used if it is not pure. [...] 13222 if (!Overrider->isPure()) 13223 MarkFunctionReferenced(Loc, Overrider); 13224 } 13225 } 13226 13227 // Only classes that have virtual bases need a VTT. 13228 if (RD->getNumVBases() == 0) 13229 return; 13230 13231 for (const auto &I : RD->bases()) { 13232 const CXXRecordDecl *Base = 13233 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl()); 13234 if (Base->getNumVBases() == 0) 13235 continue; 13236 MarkVirtualMembersReferenced(Loc, Base); 13237 } 13238 } 13239 13240 /// SetIvarInitializers - This routine builds initialization ASTs for the 13241 /// Objective-C implementation whose ivars need be initialized. 13242 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) { 13243 if (!getLangOpts().CPlusPlus) 13244 return; 13245 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) { 13246 SmallVector<ObjCIvarDecl*, 8> ivars; 13247 CollectIvarsToConstructOrDestruct(OID, ivars); 13248 if (ivars.empty()) 13249 return; 13250 SmallVector<CXXCtorInitializer*, 32> AllToInit; 13251 for (unsigned i = 0; i < ivars.size(); i++) { 13252 FieldDecl *Field = ivars[i]; 13253 if (Field->isInvalidDecl()) 13254 continue; 13255 13256 CXXCtorInitializer *Member; 13257 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field); 13258 InitializationKind InitKind = 13259 InitializationKind::CreateDefault(ObjCImplementation->getLocation()); 13260 13261 InitializationSequence InitSeq(*this, InitEntity, InitKind, None); 13262 ExprResult MemberInit = 13263 InitSeq.Perform(*this, InitEntity, InitKind, None); 13264 MemberInit = MaybeCreateExprWithCleanups(MemberInit); 13265 // Note, MemberInit could actually come back empty if no initialization 13266 // is required (e.g., because it would call a trivial default constructor) 13267 if (!MemberInit.get() || MemberInit.isInvalid()) 13268 continue; 13269 13270 Member = 13271 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(), 13272 SourceLocation(), 13273 MemberInit.getAs<Expr>(), 13274 SourceLocation()); 13275 AllToInit.push_back(Member); 13276 13277 // Be sure that the destructor is accessible and is marked as referenced. 13278 if (const RecordType *RecordTy = 13279 Context.getBaseElementType(Field->getType()) 13280 ->getAs<RecordType>()) { 13281 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); 13282 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { 13283 MarkFunctionReferenced(Field->getLocation(), Destructor); 13284 CheckDestructorAccess(Field->getLocation(), Destructor, 13285 PDiag(diag::err_access_dtor_ivar) 13286 << Context.getBaseElementType(Field->getType())); 13287 } 13288 } 13289 } 13290 ObjCImplementation->setIvarInitializers(Context, 13291 AllToInit.data(), AllToInit.size()); 13292 } 13293 } 13294 13295 static 13296 void DelegatingCycleHelper(CXXConstructorDecl* Ctor, 13297 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid, 13298 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid, 13299 llvm::SmallSet<CXXConstructorDecl*, 4> &Current, 13300 Sema &S) { 13301 if (Ctor->isInvalidDecl()) 13302 return; 13303 13304 CXXConstructorDecl *Target = Ctor->getTargetConstructor(); 13305 13306 // Target may not be determinable yet, for instance if this is a dependent 13307 // call in an uninstantiated template. 13308 if (Target) { 13309 const FunctionDecl *FNTarget = nullptr; 13310 (void)Target->hasBody(FNTarget); 13311 Target = const_cast<CXXConstructorDecl*>( 13312 cast_or_null<CXXConstructorDecl>(FNTarget)); 13313 } 13314 13315 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), 13316 // Avoid dereferencing a null pointer here. 13317 *TCanonical = Target? Target->getCanonicalDecl() : nullptr; 13318 13319 if (!Current.insert(Canonical).second) 13320 return; 13321 13322 // We know that beyond here, we aren't chaining into a cycle. 13323 if (!Target || !Target->isDelegatingConstructor() || 13324 Target->isInvalidDecl() || Valid.count(TCanonical)) { 13325 Valid.insert(Current.begin(), Current.end()); 13326 Current.clear(); 13327 // We've hit a cycle. 13328 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || 13329 Current.count(TCanonical)) { 13330 // If we haven't diagnosed this cycle yet, do so now. 13331 if (!Invalid.count(TCanonical)) { 13332 S.Diag((*Ctor->init_begin())->getSourceLocation(), 13333 diag::warn_delegating_ctor_cycle) 13334 << Ctor; 13335 13336 // Don't add a note for a function delegating directly to itself. 13337 if (TCanonical != Canonical) 13338 S.Diag(Target->getLocation(), diag::note_it_delegates_to); 13339 13340 CXXConstructorDecl *C = Target; 13341 while (C->getCanonicalDecl() != Canonical) { 13342 const FunctionDecl *FNTarget = nullptr; 13343 (void)C->getTargetConstructor()->hasBody(FNTarget); 13344 assert(FNTarget && "Ctor cycle through bodiless function"); 13345 13346 C = const_cast<CXXConstructorDecl*>( 13347 cast<CXXConstructorDecl>(FNTarget)); 13348 S.Diag(C->getLocation(), diag::note_which_delegates_to); 13349 } 13350 } 13351 13352 Invalid.insert(Current.begin(), Current.end()); 13353 Current.clear(); 13354 } else { 13355 DelegatingCycleHelper(Target, Valid, Invalid, Current, S); 13356 } 13357 } 13358 13359 13360 void Sema::CheckDelegatingCtorCycles() { 13361 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current; 13362 13363 for (DelegatingCtorDeclsType::iterator 13364 I = DelegatingCtorDecls.begin(ExternalSource), 13365 E = DelegatingCtorDecls.end(); 13366 I != E; ++I) 13367 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this); 13368 13369 for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(), 13370 CE = Invalid.end(); 13371 CI != CE; ++CI) 13372 (*CI)->setInvalidDecl(); 13373 } 13374 13375 namespace { 13376 /// \brief AST visitor that finds references to the 'this' expression. 13377 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> { 13378 Sema &S; 13379 13380 public: 13381 explicit FindCXXThisExpr(Sema &S) : S(S) { } 13382 13383 bool VisitCXXThisExpr(CXXThisExpr *E) { 13384 S.Diag(E->getLocation(), diag::err_this_static_member_func) 13385 << E->isImplicit(); 13386 return false; 13387 } 13388 }; 13389 } 13390 13391 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) { 13392 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13393 if (!TSInfo) 13394 return false; 13395 13396 TypeLoc TL = TSInfo->getTypeLoc(); 13397 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13398 if (!ProtoTL) 13399 return false; 13400 13401 // C++11 [expr.prim.general]p3: 13402 // [The expression this] shall not appear before the optional 13403 // cv-qualifier-seq and it shall not appear within the declaration of a 13404 // static member function (although its type and value category are defined 13405 // within a static member function as they are within a non-static member 13406 // function). [ Note: this is because declaration matching does not occur 13407 // until the complete declarator is known. - end note ] 13408 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13409 FindCXXThisExpr Finder(*this); 13410 13411 // If the return type came after the cv-qualifier-seq, check it now. 13412 if (Proto->hasTrailingReturn() && 13413 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc())) 13414 return true; 13415 13416 // Check the exception specification. 13417 if (checkThisInStaticMemberFunctionExceptionSpec(Method)) 13418 return true; 13419 13420 return checkThisInStaticMemberFunctionAttributes(Method); 13421 } 13422 13423 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) { 13424 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13425 if (!TSInfo) 13426 return false; 13427 13428 TypeLoc TL = TSInfo->getTypeLoc(); 13429 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13430 if (!ProtoTL) 13431 return false; 13432 13433 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13434 FindCXXThisExpr Finder(*this); 13435 13436 switch (Proto->getExceptionSpecType()) { 13437 case EST_Unparsed: 13438 case EST_Uninstantiated: 13439 case EST_Unevaluated: 13440 case EST_BasicNoexcept: 13441 case EST_DynamicNone: 13442 case EST_MSAny: 13443 case EST_None: 13444 break; 13445 13446 case EST_ComputedNoexcept: 13447 if (!Finder.TraverseStmt(Proto->getNoexceptExpr())) 13448 return true; 13449 13450 case EST_Dynamic: 13451 for (const auto &E : Proto->exceptions()) { 13452 if (!Finder.TraverseType(E)) 13453 return true; 13454 } 13455 break; 13456 } 13457 13458 return false; 13459 } 13460 13461 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) { 13462 FindCXXThisExpr Finder(*this); 13463 13464 // Check attributes. 13465 for (const auto *A : Method->attrs()) { 13466 // FIXME: This should be emitted by tblgen. 13467 Expr *Arg = nullptr; 13468 ArrayRef<Expr *> Args; 13469 if (const auto *G = dyn_cast<GuardedByAttr>(A)) 13470 Arg = G->getArg(); 13471 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A)) 13472 Arg = G->getArg(); 13473 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A)) 13474 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size()); 13475 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A)) 13476 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size()); 13477 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) { 13478 Arg = ETLF->getSuccessValue(); 13479 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size()); 13480 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) { 13481 Arg = STLF->getSuccessValue(); 13482 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size()); 13483 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A)) 13484 Arg = LR->getArg(); 13485 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A)) 13486 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size()); 13487 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A)) 13488 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13489 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A)) 13490 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13491 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A)) 13492 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13493 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A)) 13494 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13495 13496 if (Arg && !Finder.TraverseStmt(Arg)) 13497 return true; 13498 13499 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 13500 if (!Finder.TraverseStmt(Args[I])) 13501 return true; 13502 } 13503 } 13504 13505 return false; 13506 } 13507 13508 void Sema::checkExceptionSpecification( 13509 bool IsTopLevel, ExceptionSpecificationType EST, 13510 ArrayRef<ParsedType> DynamicExceptions, 13511 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, 13512 SmallVectorImpl<QualType> &Exceptions, 13513 FunctionProtoType::ExceptionSpecInfo &ESI) { 13514 Exceptions.clear(); 13515 ESI.Type = EST; 13516 if (EST == EST_Dynamic) { 13517 Exceptions.reserve(DynamicExceptions.size()); 13518 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) { 13519 // FIXME: Preserve type source info. 13520 QualType ET = GetTypeFromParser(DynamicExceptions[ei]); 13521 13522 if (IsTopLevel) { 13523 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 13524 collectUnexpandedParameterPacks(ET, Unexpanded); 13525 if (!Unexpanded.empty()) { 13526 DiagnoseUnexpandedParameterPacks( 13527 DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType, 13528 Unexpanded); 13529 continue; 13530 } 13531 } 13532 13533 // Check that the type is valid for an exception spec, and 13534 // drop it if not. 13535 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei])) 13536 Exceptions.push_back(ET); 13537 } 13538 ESI.Exceptions = Exceptions; 13539 return; 13540 } 13541 13542 if (EST == EST_ComputedNoexcept) { 13543 // If an error occurred, there's no expression here. 13544 if (NoexceptExpr) { 13545 assert((NoexceptExpr->isTypeDependent() || 13546 NoexceptExpr->getType()->getCanonicalTypeUnqualified() == 13547 Context.BoolTy) && 13548 "Parser should have made sure that the expression is boolean"); 13549 if (IsTopLevel && NoexceptExpr && 13550 DiagnoseUnexpandedParameterPack(NoexceptExpr)) { 13551 ESI.Type = EST_BasicNoexcept; 13552 return; 13553 } 13554 13555 if (!NoexceptExpr->isValueDependent()) 13556 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr, 13557 diag::err_noexcept_needs_constant_expression, 13558 /*AllowFold*/ false).get(); 13559 ESI.NoexceptExpr = NoexceptExpr; 13560 } 13561 return; 13562 } 13563 } 13564 13565 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD, 13566 ExceptionSpecificationType EST, 13567 SourceRange SpecificationRange, 13568 ArrayRef<ParsedType> DynamicExceptions, 13569 ArrayRef<SourceRange> DynamicExceptionRanges, 13570 Expr *NoexceptExpr) { 13571 if (!MethodD) 13572 return; 13573 13574 // Dig out the method we're referring to. 13575 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD)) 13576 MethodD = FunTmpl->getTemplatedDecl(); 13577 13578 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD); 13579 if (!Method) 13580 return; 13581 13582 // Check the exception specification. 13583 llvm::SmallVector<QualType, 4> Exceptions; 13584 FunctionProtoType::ExceptionSpecInfo ESI; 13585 checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions, 13586 DynamicExceptionRanges, NoexceptExpr, Exceptions, 13587 ESI); 13588 13589 // Update the exception specification on the function type. 13590 Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true); 13591 13592 if (Method->isStatic()) 13593 checkThisInStaticMemberFunctionExceptionSpec(Method); 13594 13595 if (Method->isVirtual()) { 13596 // Check overrides, which we previously had to delay. 13597 for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(), 13598 OEnd = Method->end_overridden_methods(); 13599 O != OEnd; ++O) 13600 CheckOverridingFunctionExceptionSpec(Method, *O); 13601 } 13602 } 13603 13604 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class. 13605 /// 13606 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, 13607 SourceLocation DeclStart, 13608 Declarator &D, Expr *BitWidth, 13609 InClassInitStyle InitStyle, 13610 AccessSpecifier AS, 13611 AttributeList *MSPropertyAttr) { 13612 IdentifierInfo *II = D.getIdentifier(); 13613 if (!II) { 13614 Diag(DeclStart, diag::err_anonymous_property); 13615 return nullptr; 13616 } 13617 SourceLocation Loc = D.getIdentifierLoc(); 13618 13619 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 13620 QualType T = TInfo->getType(); 13621 if (getLangOpts().CPlusPlus) { 13622 CheckExtraCXXDefaultArguments(D); 13623 13624 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 13625 UPPC_DataMemberType)) { 13626 D.setInvalidType(); 13627 T = Context.IntTy; 13628 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 13629 } 13630 } 13631 13632 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 13633 13634 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 13635 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 13636 diag::err_invalid_thread) 13637 << DeclSpec::getSpecifierName(TSCS); 13638 13639 // Check to see if this name was declared as a member previously 13640 NamedDecl *PrevDecl = nullptr; 13641 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration); 13642 LookupName(Previous, S); 13643 switch (Previous.getResultKind()) { 13644 case LookupResult::Found: 13645 case LookupResult::FoundUnresolvedValue: 13646 PrevDecl = Previous.getAsSingle<NamedDecl>(); 13647 break; 13648 13649 case LookupResult::FoundOverloaded: 13650 PrevDecl = Previous.getRepresentativeDecl(); 13651 break; 13652 13653 case LookupResult::NotFound: 13654 case LookupResult::NotFoundInCurrentInstantiation: 13655 case LookupResult::Ambiguous: 13656 break; 13657 } 13658 13659 if (PrevDecl && PrevDecl->isTemplateParameter()) { 13660 // Maybe we will complain about the shadowed template parameter. 13661 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 13662 // Just pretend that we didn't see the previous declaration. 13663 PrevDecl = nullptr; 13664 } 13665 13666 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 13667 PrevDecl = nullptr; 13668 13669 SourceLocation TSSL = D.getLocStart(); 13670 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData(); 13671 MSPropertyDecl *NewPD = MSPropertyDecl::Create( 13672 Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId); 13673 ProcessDeclAttributes(TUScope, NewPD, D); 13674 NewPD->setAccess(AS); 13675 13676 if (NewPD->isInvalidDecl()) 13677 Record->setInvalidDecl(); 13678 13679 if (D.getDeclSpec().isModulePrivateSpecified()) 13680 NewPD->setModulePrivate(); 13681 13682 if (NewPD->isInvalidDecl() && PrevDecl) { 13683 // Don't introduce NewFD into scope; there's already something 13684 // with the same name in the same scope. 13685 } else if (II) { 13686 PushOnScopeChains(NewPD, S); 13687 } else 13688 Record->addDecl(NewPD); 13689 13690 return NewPD; 13691 } 13692