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, CtorArgE); 3585 3586 ExprResult MemberInit 3587 = InitSeq.Perform(SemaRef, Entities.back(), InitKind, 3588 MultiExprArg(&CtorArgE, 1)); 3589 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3590 if (MemberInit.isInvalid()) 3591 return true; 3592 3593 if (Indirect) { 3594 assert(IndexVariables.size() == 0 && 3595 "Indirect field improperly initialized"); 3596 CXXMemberInit 3597 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Indirect, 3598 Loc, Loc, 3599 MemberInit.getAs<Expr>(), 3600 Loc); 3601 } else 3602 CXXMemberInit = CXXCtorInitializer::Create(SemaRef.Context, Field, Loc, 3603 Loc, MemberInit.getAs<Expr>(), 3604 Loc, 3605 IndexVariables.data(), 3606 IndexVariables.size()); 3607 return false; 3608 } 3609 3610 assert((ImplicitInitKind == IIK_Default || ImplicitInitKind == IIK_Inherit) && 3611 "Unhandled implicit init kind!"); 3612 3613 QualType FieldBaseElementType = 3614 SemaRef.Context.getBaseElementType(Field->getType()); 3615 3616 if (FieldBaseElementType->isRecordType()) { 3617 InitializedEntity InitEntity 3618 = Indirect? InitializedEntity::InitializeMember(Indirect) 3619 : InitializedEntity::InitializeMember(Field); 3620 InitializationKind InitKind = 3621 InitializationKind::CreateDefault(Loc); 3622 3623 InitializationSequence InitSeq(SemaRef, InitEntity, InitKind, None); 3624 ExprResult MemberInit = 3625 InitSeq.Perform(SemaRef, InitEntity, InitKind, None); 3626 3627 MemberInit = SemaRef.MaybeCreateExprWithCleanups(MemberInit); 3628 if (MemberInit.isInvalid()) 3629 return true; 3630 3631 if (Indirect) 3632 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3633 Indirect, Loc, 3634 Loc, 3635 MemberInit.get(), 3636 Loc); 3637 else 3638 CXXMemberInit = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, 3639 Field, Loc, Loc, 3640 MemberInit.get(), 3641 Loc); 3642 return false; 3643 } 3644 3645 if (!Field->getParent()->isUnion()) { 3646 if (FieldBaseElementType->isReferenceType()) { 3647 SemaRef.Diag(Constructor->getLocation(), 3648 diag::err_uninitialized_member_in_ctor) 3649 << (int)Constructor->isImplicit() 3650 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3651 << 0 << Field->getDeclName(); 3652 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3653 return true; 3654 } 3655 3656 if (FieldBaseElementType.isConstQualified()) { 3657 SemaRef.Diag(Constructor->getLocation(), 3658 diag::err_uninitialized_member_in_ctor) 3659 << (int)Constructor->isImplicit() 3660 << SemaRef.Context.getTagDeclType(Constructor->getParent()) 3661 << 1 << Field->getDeclName(); 3662 SemaRef.Diag(Field->getLocation(), diag::note_declared_at); 3663 return true; 3664 } 3665 } 3666 3667 if (SemaRef.getLangOpts().ObjCAutoRefCount && 3668 FieldBaseElementType->isObjCRetainableType() && 3669 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_None && 3670 FieldBaseElementType.getObjCLifetime() != Qualifiers::OCL_ExplicitNone) { 3671 // ARC: 3672 // Default-initialize Objective-C pointers to NULL. 3673 CXXMemberInit 3674 = new (SemaRef.Context) CXXCtorInitializer(SemaRef.Context, Field, 3675 Loc, Loc, 3676 new (SemaRef.Context) ImplicitValueInitExpr(Field->getType()), 3677 Loc); 3678 return false; 3679 } 3680 3681 // Nothing to initialize. 3682 CXXMemberInit = nullptr; 3683 return false; 3684 } 3685 3686 namespace { 3687 struct BaseAndFieldInfo { 3688 Sema &S; 3689 CXXConstructorDecl *Ctor; 3690 bool AnyErrorsInInits; 3691 ImplicitInitializerKind IIK; 3692 llvm::DenseMap<const void *, CXXCtorInitializer*> AllBaseFields; 3693 SmallVector<CXXCtorInitializer*, 8> AllToInit; 3694 llvm::DenseMap<TagDecl*, FieldDecl*> ActiveUnionMember; 3695 3696 BaseAndFieldInfo(Sema &S, CXXConstructorDecl *Ctor, bool ErrorsInInits) 3697 : S(S), Ctor(Ctor), AnyErrorsInInits(ErrorsInInits) { 3698 bool Generated = Ctor->isImplicit() || Ctor->isDefaulted(); 3699 if (Generated && Ctor->isCopyConstructor()) 3700 IIK = IIK_Copy; 3701 else if (Generated && Ctor->isMoveConstructor()) 3702 IIK = IIK_Move; 3703 else if (Ctor->getInheritedConstructor()) 3704 IIK = IIK_Inherit; 3705 else 3706 IIK = IIK_Default; 3707 } 3708 3709 bool isImplicitCopyOrMove() const { 3710 switch (IIK) { 3711 case IIK_Copy: 3712 case IIK_Move: 3713 return true; 3714 3715 case IIK_Default: 3716 case IIK_Inherit: 3717 return false; 3718 } 3719 3720 llvm_unreachable("Invalid ImplicitInitializerKind!"); 3721 } 3722 3723 bool addFieldInitializer(CXXCtorInitializer *Init) { 3724 AllToInit.push_back(Init); 3725 3726 // Check whether this initializer makes the field "used". 3727 if (Init->getInit()->HasSideEffects(S.Context)) 3728 S.UnusedPrivateFields.remove(Init->getAnyMember()); 3729 3730 return false; 3731 } 3732 3733 bool isInactiveUnionMember(FieldDecl *Field) { 3734 RecordDecl *Record = Field->getParent(); 3735 if (!Record->isUnion()) 3736 return false; 3737 3738 if (FieldDecl *Active = 3739 ActiveUnionMember.lookup(Record->getCanonicalDecl())) 3740 return Active != Field->getCanonicalDecl(); 3741 3742 // In an implicit copy or move constructor, ignore any in-class initializer. 3743 if (isImplicitCopyOrMove()) 3744 return true; 3745 3746 // If there's no explicit initialization, the field is active only if it 3747 // has an in-class initializer... 3748 if (Field->hasInClassInitializer()) 3749 return false; 3750 // ... or it's an anonymous struct or union whose class has an in-class 3751 // initializer. 3752 if (!Field->isAnonymousStructOrUnion()) 3753 return true; 3754 CXXRecordDecl *FieldRD = Field->getType()->getAsCXXRecordDecl(); 3755 return !FieldRD->hasInClassInitializer(); 3756 } 3757 3758 /// \brief Determine whether the given field is, or is within, a union member 3759 /// that is inactive (because there was an initializer given for a different 3760 /// member of the union, or because the union was not initialized at all). 3761 bool isWithinInactiveUnionMember(FieldDecl *Field, 3762 IndirectFieldDecl *Indirect) { 3763 if (!Indirect) 3764 return isInactiveUnionMember(Field); 3765 3766 for (auto *C : Indirect->chain()) { 3767 FieldDecl *Field = dyn_cast<FieldDecl>(C); 3768 if (Field && isInactiveUnionMember(Field)) 3769 return true; 3770 } 3771 return false; 3772 } 3773 }; 3774 } 3775 3776 /// \brief Determine whether the given type is an incomplete or zero-lenfgth 3777 /// array type. 3778 static bool isIncompleteOrZeroLengthArrayType(ASTContext &Context, QualType T) { 3779 if (T->isIncompleteArrayType()) 3780 return true; 3781 3782 while (const ConstantArrayType *ArrayT = Context.getAsConstantArrayType(T)) { 3783 if (!ArrayT->getSize()) 3784 return true; 3785 3786 T = ArrayT->getElementType(); 3787 } 3788 3789 return false; 3790 } 3791 3792 static bool CollectFieldInitializer(Sema &SemaRef, BaseAndFieldInfo &Info, 3793 FieldDecl *Field, 3794 IndirectFieldDecl *Indirect = nullptr) { 3795 if (Field->isInvalidDecl()) 3796 return false; 3797 3798 // Overwhelmingly common case: we have a direct initializer for this field. 3799 if (CXXCtorInitializer *Init = 3800 Info.AllBaseFields.lookup(Field->getCanonicalDecl())) 3801 return Info.addFieldInitializer(Init); 3802 3803 // C++11 [class.base.init]p8: 3804 // if the entity is a non-static data member that has a 3805 // brace-or-equal-initializer and either 3806 // -- the constructor's class is a union and no other variant member of that 3807 // union is designated by a mem-initializer-id or 3808 // -- the constructor's class is not a union, and, if the entity is a member 3809 // of an anonymous union, no other member of that union is designated by 3810 // a mem-initializer-id, 3811 // the entity is initialized as specified in [dcl.init]. 3812 // 3813 // We also apply the same rules to handle anonymous structs within anonymous 3814 // unions. 3815 if (Info.isWithinInactiveUnionMember(Field, Indirect)) 3816 return false; 3817 3818 if (Field->hasInClassInitializer() && !Info.isImplicitCopyOrMove()) { 3819 ExprResult DIE = 3820 SemaRef.BuildCXXDefaultInitExpr(Info.Ctor->getLocation(), Field); 3821 if (DIE.isInvalid()) 3822 return true; 3823 CXXCtorInitializer *Init; 3824 if (Indirect) 3825 Init = new (SemaRef.Context) 3826 CXXCtorInitializer(SemaRef.Context, Indirect, SourceLocation(), 3827 SourceLocation(), DIE.get(), SourceLocation()); 3828 else 3829 Init = new (SemaRef.Context) 3830 CXXCtorInitializer(SemaRef.Context, Field, SourceLocation(), 3831 SourceLocation(), DIE.get(), SourceLocation()); 3832 return Info.addFieldInitializer(Init); 3833 } 3834 3835 // Don't initialize incomplete or zero-length arrays. 3836 if (isIncompleteOrZeroLengthArrayType(SemaRef.Context, Field->getType())) 3837 return false; 3838 3839 // Don't try to build an implicit initializer if there were semantic 3840 // errors in any of the initializers (and therefore we might be 3841 // missing some that the user actually wrote). 3842 if (Info.AnyErrorsInInits) 3843 return false; 3844 3845 CXXCtorInitializer *Init = nullptr; 3846 if (BuildImplicitMemberInitializer(Info.S, Info.Ctor, Info.IIK, Field, 3847 Indirect, Init)) 3848 return true; 3849 3850 if (!Init) 3851 return false; 3852 3853 return Info.addFieldInitializer(Init); 3854 } 3855 3856 bool 3857 Sema::SetDelegatingInitializer(CXXConstructorDecl *Constructor, 3858 CXXCtorInitializer *Initializer) { 3859 assert(Initializer->isDelegatingInitializer()); 3860 Constructor->setNumCtorInitializers(1); 3861 CXXCtorInitializer **initializer = 3862 new (Context) CXXCtorInitializer*[1]; 3863 memcpy(initializer, &Initializer, sizeof (CXXCtorInitializer*)); 3864 Constructor->setCtorInitializers(initializer); 3865 3866 if (CXXDestructorDecl *Dtor = LookupDestructor(Constructor->getParent())) { 3867 MarkFunctionReferenced(Initializer->getSourceLocation(), Dtor); 3868 DiagnoseUseOfDecl(Dtor, Initializer->getSourceLocation()); 3869 } 3870 3871 DelegatingCtorDecls.push_back(Constructor); 3872 3873 DiagnoseUninitializedFields(*this, Constructor); 3874 3875 return false; 3876 } 3877 3878 bool Sema::SetCtorInitializers(CXXConstructorDecl *Constructor, bool AnyErrors, 3879 ArrayRef<CXXCtorInitializer *> Initializers) { 3880 if (Constructor->isDependentContext()) { 3881 // Just store the initializers as written, they will be checked during 3882 // instantiation. 3883 if (!Initializers.empty()) { 3884 Constructor->setNumCtorInitializers(Initializers.size()); 3885 CXXCtorInitializer **baseOrMemberInitializers = 3886 new (Context) CXXCtorInitializer*[Initializers.size()]; 3887 memcpy(baseOrMemberInitializers, Initializers.data(), 3888 Initializers.size() * sizeof(CXXCtorInitializer*)); 3889 Constructor->setCtorInitializers(baseOrMemberInitializers); 3890 } 3891 3892 // Let template instantiation know whether we had errors. 3893 if (AnyErrors) 3894 Constructor->setInvalidDecl(); 3895 3896 return false; 3897 } 3898 3899 BaseAndFieldInfo Info(*this, Constructor, AnyErrors); 3900 3901 // We need to build the initializer AST according to order of construction 3902 // and not what user specified in the Initializers list. 3903 CXXRecordDecl *ClassDecl = Constructor->getParent()->getDefinition(); 3904 if (!ClassDecl) 3905 return true; 3906 3907 bool HadError = false; 3908 3909 for (unsigned i = 0; i < Initializers.size(); i++) { 3910 CXXCtorInitializer *Member = Initializers[i]; 3911 3912 if (Member->isBaseInitializer()) 3913 Info.AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member; 3914 else { 3915 Info.AllBaseFields[Member->getAnyMember()->getCanonicalDecl()] = Member; 3916 3917 if (IndirectFieldDecl *F = Member->getIndirectMember()) { 3918 for (auto *C : F->chain()) { 3919 FieldDecl *FD = dyn_cast<FieldDecl>(C); 3920 if (FD && FD->getParent()->isUnion()) 3921 Info.ActiveUnionMember.insert(std::make_pair( 3922 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3923 } 3924 } else if (FieldDecl *FD = Member->getMember()) { 3925 if (FD->getParent()->isUnion()) 3926 Info.ActiveUnionMember.insert(std::make_pair( 3927 FD->getParent()->getCanonicalDecl(), FD->getCanonicalDecl())); 3928 } 3929 } 3930 } 3931 3932 // Keep track of the direct virtual bases. 3933 llvm::SmallPtrSet<CXXBaseSpecifier *, 16> DirectVBases; 3934 for (auto &I : ClassDecl->bases()) { 3935 if (I.isVirtual()) 3936 DirectVBases.insert(&I); 3937 } 3938 3939 // Push virtual bases before others. 3940 for (auto &VBase : ClassDecl->vbases()) { 3941 if (CXXCtorInitializer *Value 3942 = Info.AllBaseFields.lookup(VBase.getType()->getAs<RecordType>())) { 3943 // [class.base.init]p7, per DR257: 3944 // A mem-initializer where the mem-initializer-id names a virtual base 3945 // class is ignored during execution of a constructor of any class that 3946 // is not the most derived class. 3947 if (ClassDecl->isAbstract()) { 3948 // FIXME: Provide a fixit to remove the base specifier. This requires 3949 // tracking the location of the associated comma for a base specifier. 3950 Diag(Value->getSourceLocation(), diag::warn_abstract_vbase_init_ignored) 3951 << VBase.getType() << ClassDecl; 3952 DiagnoseAbstractType(ClassDecl); 3953 } 3954 3955 Info.AllToInit.push_back(Value); 3956 } else if (!AnyErrors && !ClassDecl->isAbstract()) { 3957 // [class.base.init]p8, per DR257: 3958 // If a given [...] base class is not named by a mem-initializer-id 3959 // [...] and the entity is not a virtual base class of an abstract 3960 // class, then [...] the entity is default-initialized. 3961 bool IsInheritedVirtualBase = !DirectVBases.count(&VBase); 3962 CXXCtorInitializer *CXXBaseInit; 3963 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3964 &VBase, IsInheritedVirtualBase, 3965 CXXBaseInit)) { 3966 HadError = true; 3967 continue; 3968 } 3969 3970 Info.AllToInit.push_back(CXXBaseInit); 3971 } 3972 } 3973 3974 // Non-virtual bases. 3975 for (auto &Base : ClassDecl->bases()) { 3976 // Virtuals are in the virtual base list and already constructed. 3977 if (Base.isVirtual()) 3978 continue; 3979 3980 if (CXXCtorInitializer *Value 3981 = Info.AllBaseFields.lookup(Base.getType()->getAs<RecordType>())) { 3982 Info.AllToInit.push_back(Value); 3983 } else if (!AnyErrors) { 3984 CXXCtorInitializer *CXXBaseInit; 3985 if (BuildImplicitBaseInitializer(*this, Constructor, Info.IIK, 3986 &Base, /*IsInheritedVirtualBase=*/false, 3987 CXXBaseInit)) { 3988 HadError = true; 3989 continue; 3990 } 3991 3992 Info.AllToInit.push_back(CXXBaseInit); 3993 } 3994 } 3995 3996 // Fields. 3997 for (auto *Mem : ClassDecl->decls()) { 3998 if (auto *F = dyn_cast<FieldDecl>(Mem)) { 3999 // C++ [class.bit]p2: 4000 // A declaration for a bit-field that omits the identifier declares an 4001 // unnamed bit-field. Unnamed bit-fields are not members and cannot be 4002 // initialized. 4003 if (F->isUnnamedBitfield()) 4004 continue; 4005 4006 // If we're not generating the implicit copy/move constructor, then we'll 4007 // handle anonymous struct/union fields based on their individual 4008 // indirect fields. 4009 if (F->isAnonymousStructOrUnion() && !Info.isImplicitCopyOrMove()) 4010 continue; 4011 4012 if (CollectFieldInitializer(*this, Info, F)) 4013 HadError = true; 4014 continue; 4015 } 4016 4017 // Beyond this point, we only consider default initialization. 4018 if (Info.isImplicitCopyOrMove()) 4019 continue; 4020 4021 if (auto *F = dyn_cast<IndirectFieldDecl>(Mem)) { 4022 if (F->getType()->isIncompleteArrayType()) { 4023 assert(ClassDecl->hasFlexibleArrayMember() && 4024 "Incomplete array type is not valid"); 4025 continue; 4026 } 4027 4028 // Initialize each field of an anonymous struct individually. 4029 if (CollectFieldInitializer(*this, Info, F->getAnonField(), F)) 4030 HadError = true; 4031 4032 continue; 4033 } 4034 } 4035 4036 unsigned NumInitializers = Info.AllToInit.size(); 4037 if (NumInitializers > 0) { 4038 Constructor->setNumCtorInitializers(NumInitializers); 4039 CXXCtorInitializer **baseOrMemberInitializers = 4040 new (Context) CXXCtorInitializer*[NumInitializers]; 4041 memcpy(baseOrMemberInitializers, Info.AllToInit.data(), 4042 NumInitializers * sizeof(CXXCtorInitializer*)); 4043 Constructor->setCtorInitializers(baseOrMemberInitializers); 4044 4045 // Constructors implicitly reference the base and member 4046 // destructors. 4047 MarkBaseAndMemberDestructorsReferenced(Constructor->getLocation(), 4048 Constructor->getParent()); 4049 } 4050 4051 return HadError; 4052 } 4053 4054 static void PopulateKeysForFields(FieldDecl *Field, SmallVectorImpl<const void*> &IdealInits) { 4055 if (const RecordType *RT = Field->getType()->getAs<RecordType>()) { 4056 const RecordDecl *RD = RT->getDecl(); 4057 if (RD->isAnonymousStructOrUnion()) { 4058 for (auto *Field : RD->fields()) 4059 PopulateKeysForFields(Field, IdealInits); 4060 return; 4061 } 4062 } 4063 IdealInits.push_back(Field->getCanonicalDecl()); 4064 } 4065 4066 static const void *GetKeyForBase(ASTContext &Context, QualType BaseType) { 4067 return Context.getCanonicalType(BaseType).getTypePtr(); 4068 } 4069 4070 static const void *GetKeyForMember(ASTContext &Context, 4071 CXXCtorInitializer *Member) { 4072 if (!Member->isAnyMemberInitializer()) 4073 return GetKeyForBase(Context, QualType(Member->getBaseClass(), 0)); 4074 4075 return Member->getAnyMember()->getCanonicalDecl(); 4076 } 4077 4078 static void DiagnoseBaseOrMemInitializerOrder( 4079 Sema &SemaRef, const CXXConstructorDecl *Constructor, 4080 ArrayRef<CXXCtorInitializer *> Inits) { 4081 if (Constructor->getDeclContext()->isDependentContext()) 4082 return; 4083 4084 // Don't check initializers order unless the warning is enabled at the 4085 // location of at least one initializer. 4086 bool ShouldCheckOrder = false; 4087 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4088 CXXCtorInitializer *Init = Inits[InitIndex]; 4089 if (!SemaRef.Diags.isIgnored(diag::warn_initializer_out_of_order, 4090 Init->getSourceLocation())) { 4091 ShouldCheckOrder = true; 4092 break; 4093 } 4094 } 4095 if (!ShouldCheckOrder) 4096 return; 4097 4098 // Build the list of bases and members in the order that they'll 4099 // actually be initialized. The explicit initializers should be in 4100 // this same order but may be missing things. 4101 SmallVector<const void*, 32> IdealInitKeys; 4102 4103 const CXXRecordDecl *ClassDecl = Constructor->getParent(); 4104 4105 // 1. Virtual bases. 4106 for (const auto &VBase : ClassDecl->vbases()) 4107 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, VBase.getType())); 4108 4109 // 2. Non-virtual bases. 4110 for (const auto &Base : ClassDecl->bases()) { 4111 if (Base.isVirtual()) 4112 continue; 4113 IdealInitKeys.push_back(GetKeyForBase(SemaRef.Context, Base.getType())); 4114 } 4115 4116 // 3. Direct fields. 4117 for (auto *Field : ClassDecl->fields()) { 4118 if (Field->isUnnamedBitfield()) 4119 continue; 4120 4121 PopulateKeysForFields(Field, IdealInitKeys); 4122 } 4123 4124 unsigned NumIdealInits = IdealInitKeys.size(); 4125 unsigned IdealIndex = 0; 4126 4127 CXXCtorInitializer *PrevInit = nullptr; 4128 for (unsigned InitIndex = 0; InitIndex != Inits.size(); ++InitIndex) { 4129 CXXCtorInitializer *Init = Inits[InitIndex]; 4130 const void *InitKey = GetKeyForMember(SemaRef.Context, Init); 4131 4132 // Scan forward to try to find this initializer in the idealized 4133 // initializers list. 4134 for (; IdealIndex != NumIdealInits; ++IdealIndex) 4135 if (InitKey == IdealInitKeys[IdealIndex]) 4136 break; 4137 4138 // If we didn't find this initializer, it must be because we 4139 // scanned past it on a previous iteration. That can only 4140 // happen if we're out of order; emit a warning. 4141 if (IdealIndex == NumIdealInits && PrevInit) { 4142 Sema::SemaDiagnosticBuilder D = 4143 SemaRef.Diag(PrevInit->getSourceLocation(), 4144 diag::warn_initializer_out_of_order); 4145 4146 if (PrevInit->isAnyMemberInitializer()) 4147 D << 0 << PrevInit->getAnyMember()->getDeclName(); 4148 else 4149 D << 1 << PrevInit->getTypeSourceInfo()->getType(); 4150 4151 if (Init->isAnyMemberInitializer()) 4152 D << 0 << Init->getAnyMember()->getDeclName(); 4153 else 4154 D << 1 << Init->getTypeSourceInfo()->getType(); 4155 4156 // Move back to the initializer's location in the ideal list. 4157 for (IdealIndex = 0; IdealIndex != NumIdealInits; ++IdealIndex) 4158 if (InitKey == IdealInitKeys[IdealIndex]) 4159 break; 4160 4161 assert(IdealIndex != NumIdealInits && 4162 "initializer not found in initializer list"); 4163 } 4164 4165 PrevInit = Init; 4166 } 4167 } 4168 4169 namespace { 4170 bool CheckRedundantInit(Sema &S, 4171 CXXCtorInitializer *Init, 4172 CXXCtorInitializer *&PrevInit) { 4173 if (!PrevInit) { 4174 PrevInit = Init; 4175 return false; 4176 } 4177 4178 if (FieldDecl *Field = Init->getAnyMember()) 4179 S.Diag(Init->getSourceLocation(), 4180 diag::err_multiple_mem_initialization) 4181 << Field->getDeclName() 4182 << Init->getSourceRange(); 4183 else { 4184 const Type *BaseClass = Init->getBaseClass(); 4185 assert(BaseClass && "neither field nor base"); 4186 S.Diag(Init->getSourceLocation(), 4187 diag::err_multiple_base_initialization) 4188 << QualType(BaseClass, 0) 4189 << Init->getSourceRange(); 4190 } 4191 S.Diag(PrevInit->getSourceLocation(), diag::note_previous_initializer) 4192 << 0 << PrevInit->getSourceRange(); 4193 4194 return true; 4195 } 4196 4197 typedef std::pair<NamedDecl *, CXXCtorInitializer *> UnionEntry; 4198 typedef llvm::DenseMap<RecordDecl*, UnionEntry> RedundantUnionMap; 4199 4200 bool CheckRedundantUnionInit(Sema &S, 4201 CXXCtorInitializer *Init, 4202 RedundantUnionMap &Unions) { 4203 FieldDecl *Field = Init->getAnyMember(); 4204 RecordDecl *Parent = Field->getParent(); 4205 NamedDecl *Child = Field; 4206 4207 while (Parent->isAnonymousStructOrUnion() || Parent->isUnion()) { 4208 if (Parent->isUnion()) { 4209 UnionEntry &En = Unions[Parent]; 4210 if (En.first && En.first != Child) { 4211 S.Diag(Init->getSourceLocation(), 4212 diag::err_multiple_mem_union_initialization) 4213 << Field->getDeclName() 4214 << Init->getSourceRange(); 4215 S.Diag(En.second->getSourceLocation(), diag::note_previous_initializer) 4216 << 0 << En.second->getSourceRange(); 4217 return true; 4218 } 4219 if (!En.first) { 4220 En.first = Child; 4221 En.second = Init; 4222 } 4223 if (!Parent->isAnonymousStructOrUnion()) 4224 return false; 4225 } 4226 4227 Child = Parent; 4228 Parent = cast<RecordDecl>(Parent->getDeclContext()); 4229 } 4230 4231 return false; 4232 } 4233 } 4234 4235 /// ActOnMemInitializers - Handle the member initializers for a constructor. 4236 void Sema::ActOnMemInitializers(Decl *ConstructorDecl, 4237 SourceLocation ColonLoc, 4238 ArrayRef<CXXCtorInitializer*> MemInits, 4239 bool AnyErrors) { 4240 if (!ConstructorDecl) 4241 return; 4242 4243 AdjustDeclIfTemplate(ConstructorDecl); 4244 4245 CXXConstructorDecl *Constructor 4246 = dyn_cast<CXXConstructorDecl>(ConstructorDecl); 4247 4248 if (!Constructor) { 4249 Diag(ColonLoc, diag::err_only_constructors_take_base_inits); 4250 return; 4251 } 4252 4253 // Mapping for the duplicate initializers check. 4254 // For member initializers, this is keyed with a FieldDecl*. 4255 // For base initializers, this is keyed with a Type*. 4256 llvm::DenseMap<const void *, CXXCtorInitializer *> Members; 4257 4258 // Mapping for the inconsistent anonymous-union initializers check. 4259 RedundantUnionMap MemberUnions; 4260 4261 bool HadError = false; 4262 for (unsigned i = 0; i < MemInits.size(); i++) { 4263 CXXCtorInitializer *Init = MemInits[i]; 4264 4265 // Set the source order index. 4266 Init->setSourceOrder(i); 4267 4268 if (Init->isAnyMemberInitializer()) { 4269 const void *Key = GetKeyForMember(Context, Init); 4270 if (CheckRedundantInit(*this, Init, Members[Key]) || 4271 CheckRedundantUnionInit(*this, Init, MemberUnions)) 4272 HadError = true; 4273 } else if (Init->isBaseInitializer()) { 4274 const void *Key = GetKeyForMember(Context, Init); 4275 if (CheckRedundantInit(*this, Init, Members[Key])) 4276 HadError = true; 4277 } else { 4278 assert(Init->isDelegatingInitializer()); 4279 // This must be the only initializer 4280 if (MemInits.size() != 1) { 4281 Diag(Init->getSourceLocation(), 4282 diag::err_delegating_initializer_alone) 4283 << Init->getSourceRange() << MemInits[i ? 0 : 1]->getSourceRange(); 4284 // We will treat this as being the only initializer. 4285 } 4286 SetDelegatingInitializer(Constructor, MemInits[i]); 4287 // Return immediately as the initializer is set. 4288 return; 4289 } 4290 } 4291 4292 if (HadError) 4293 return; 4294 4295 DiagnoseBaseOrMemInitializerOrder(*this, Constructor, MemInits); 4296 4297 SetCtorInitializers(Constructor, AnyErrors, MemInits); 4298 4299 DiagnoseUninitializedFields(*this, Constructor); 4300 } 4301 4302 void 4303 Sema::MarkBaseAndMemberDestructorsReferenced(SourceLocation Location, 4304 CXXRecordDecl *ClassDecl) { 4305 // Ignore dependent contexts. Also ignore unions, since their members never 4306 // have destructors implicitly called. 4307 if (ClassDecl->isDependentContext() || ClassDecl->isUnion()) 4308 return; 4309 4310 // FIXME: all the access-control diagnostics are positioned on the 4311 // field/base declaration. That's probably good; that said, the 4312 // user might reasonably want to know why the destructor is being 4313 // emitted, and we currently don't say. 4314 4315 // Non-static data members. 4316 for (auto *Field : ClassDecl->fields()) { 4317 if (Field->isInvalidDecl()) 4318 continue; 4319 4320 // Don't destroy incomplete or zero-length arrays. 4321 if (isIncompleteOrZeroLengthArrayType(Context, Field->getType())) 4322 continue; 4323 4324 QualType FieldType = Context.getBaseElementType(Field->getType()); 4325 4326 const RecordType* RT = FieldType->getAs<RecordType>(); 4327 if (!RT) 4328 continue; 4329 4330 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4331 if (FieldClassDecl->isInvalidDecl()) 4332 continue; 4333 if (FieldClassDecl->hasIrrelevantDestructor()) 4334 continue; 4335 // The destructor for an implicit anonymous union member is never invoked. 4336 if (FieldClassDecl->isUnion() && FieldClassDecl->isAnonymousStructOrUnion()) 4337 continue; 4338 4339 CXXDestructorDecl *Dtor = LookupDestructor(FieldClassDecl); 4340 assert(Dtor && "No dtor found for FieldClassDecl!"); 4341 CheckDestructorAccess(Field->getLocation(), Dtor, 4342 PDiag(diag::err_access_dtor_field) 4343 << Field->getDeclName() 4344 << FieldType); 4345 4346 MarkFunctionReferenced(Location, Dtor); 4347 DiagnoseUseOfDecl(Dtor, Location); 4348 } 4349 4350 llvm::SmallPtrSet<const RecordType *, 8> DirectVirtualBases; 4351 4352 // Bases. 4353 for (const auto &Base : ClassDecl->bases()) { 4354 // Bases are always records in a well-formed non-dependent class. 4355 const RecordType *RT = Base.getType()->getAs<RecordType>(); 4356 4357 // Remember direct virtual bases. 4358 if (Base.isVirtual()) 4359 DirectVirtualBases.insert(RT); 4360 4361 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4362 // If our base class is invalid, we probably can't get its dtor anyway. 4363 if (BaseClassDecl->isInvalidDecl()) 4364 continue; 4365 if (BaseClassDecl->hasIrrelevantDestructor()) 4366 continue; 4367 4368 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4369 assert(Dtor && "No dtor found for BaseClassDecl!"); 4370 4371 // FIXME: caret should be on the start of the class name 4372 CheckDestructorAccess(Base.getLocStart(), Dtor, 4373 PDiag(diag::err_access_dtor_base) 4374 << Base.getType() 4375 << Base.getSourceRange(), 4376 Context.getTypeDeclType(ClassDecl)); 4377 4378 MarkFunctionReferenced(Location, Dtor); 4379 DiagnoseUseOfDecl(Dtor, Location); 4380 } 4381 4382 // Virtual bases. 4383 for (const auto &VBase : ClassDecl->vbases()) { 4384 // Bases are always records in a well-formed non-dependent class. 4385 const RecordType *RT = VBase.getType()->castAs<RecordType>(); 4386 4387 // Ignore direct virtual bases. 4388 if (DirectVirtualBases.count(RT)) 4389 continue; 4390 4391 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl()); 4392 // If our base class is invalid, we probably can't get its dtor anyway. 4393 if (BaseClassDecl->isInvalidDecl()) 4394 continue; 4395 if (BaseClassDecl->hasIrrelevantDestructor()) 4396 continue; 4397 4398 CXXDestructorDecl *Dtor = LookupDestructor(BaseClassDecl); 4399 assert(Dtor && "No dtor found for BaseClassDecl!"); 4400 if (CheckDestructorAccess( 4401 ClassDecl->getLocation(), Dtor, 4402 PDiag(diag::err_access_dtor_vbase) 4403 << Context.getTypeDeclType(ClassDecl) << VBase.getType(), 4404 Context.getTypeDeclType(ClassDecl)) == 4405 AR_accessible) { 4406 CheckDerivedToBaseConversion( 4407 Context.getTypeDeclType(ClassDecl), VBase.getType(), 4408 diag::err_access_dtor_vbase, 0, ClassDecl->getLocation(), 4409 SourceRange(), DeclarationName(), nullptr); 4410 } 4411 4412 MarkFunctionReferenced(Location, Dtor); 4413 DiagnoseUseOfDecl(Dtor, Location); 4414 } 4415 } 4416 4417 void Sema::ActOnDefaultCtorInitializers(Decl *CDtorDecl) { 4418 if (!CDtorDecl) 4419 return; 4420 4421 if (CXXConstructorDecl *Constructor 4422 = dyn_cast<CXXConstructorDecl>(CDtorDecl)) { 4423 SetCtorInitializers(Constructor, /*AnyErrors=*/false); 4424 DiagnoseUninitializedFields(*this, Constructor); 4425 } 4426 } 4427 4428 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 4429 unsigned DiagID, AbstractDiagSelID SelID) { 4430 class NonAbstractTypeDiagnoser : public TypeDiagnoser { 4431 unsigned DiagID; 4432 AbstractDiagSelID SelID; 4433 4434 public: 4435 NonAbstractTypeDiagnoser(unsigned DiagID, AbstractDiagSelID SelID) 4436 : TypeDiagnoser(DiagID == 0), DiagID(DiagID), SelID(SelID) { } 4437 4438 void diagnose(Sema &S, SourceLocation Loc, QualType T) override { 4439 if (Suppressed) return; 4440 if (SelID == -1) 4441 S.Diag(Loc, DiagID) << T; 4442 else 4443 S.Diag(Loc, DiagID) << SelID << T; 4444 } 4445 } Diagnoser(DiagID, SelID); 4446 4447 return RequireNonAbstractType(Loc, T, Diagnoser); 4448 } 4449 4450 bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, 4451 TypeDiagnoser &Diagnoser) { 4452 if (!getLangOpts().CPlusPlus) 4453 return false; 4454 4455 if (const ArrayType *AT = Context.getAsArrayType(T)) 4456 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser); 4457 4458 if (const PointerType *PT = T->getAs<PointerType>()) { 4459 // Find the innermost pointer type. 4460 while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>()) 4461 PT = T; 4462 4463 if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType())) 4464 return RequireNonAbstractType(Loc, AT->getElementType(), Diagnoser); 4465 } 4466 4467 const RecordType *RT = T->getAs<RecordType>(); 4468 if (!RT) 4469 return false; 4470 4471 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); 4472 4473 // We can't answer whether something is abstract until it has a 4474 // definition. If it's currently being defined, we'll walk back 4475 // over all the declarations when we have a full definition. 4476 const CXXRecordDecl *Def = RD->getDefinition(); 4477 if (!Def || Def->isBeingDefined()) 4478 return false; 4479 4480 if (!RD->isAbstract()) 4481 return false; 4482 4483 Diagnoser.diagnose(*this, Loc, T); 4484 DiagnoseAbstractType(RD); 4485 4486 return true; 4487 } 4488 4489 void Sema::DiagnoseAbstractType(const CXXRecordDecl *RD) { 4490 // Check if we've already emitted the list of pure virtual functions 4491 // for this class. 4492 if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD)) 4493 return; 4494 4495 // If the diagnostic is suppressed, don't emit the notes. We're only 4496 // going to emit them once, so try to attach them to a diagnostic we're 4497 // actually going to show. 4498 if (Diags.isLastDiagnosticIgnored()) 4499 return; 4500 4501 CXXFinalOverriderMap FinalOverriders; 4502 RD->getFinalOverriders(FinalOverriders); 4503 4504 // Keep a set of seen pure methods so we won't diagnose the same method 4505 // more than once. 4506 llvm::SmallPtrSet<const CXXMethodDecl *, 8> SeenPureMethods; 4507 4508 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 4509 MEnd = FinalOverriders.end(); 4510 M != MEnd; 4511 ++M) { 4512 for (OverridingMethods::iterator SO = M->second.begin(), 4513 SOEnd = M->second.end(); 4514 SO != SOEnd; ++SO) { 4515 // C++ [class.abstract]p4: 4516 // A class is abstract if it contains or inherits at least one 4517 // pure virtual function for which the final overrider is pure 4518 // virtual. 4519 4520 // 4521 if (SO->second.size() != 1) 4522 continue; 4523 4524 if (!SO->second.front().Method->isPure()) 4525 continue; 4526 4527 if (!SeenPureMethods.insert(SO->second.front().Method).second) 4528 continue; 4529 4530 Diag(SO->second.front().Method->getLocation(), 4531 diag::note_pure_virtual_function) 4532 << SO->second.front().Method->getDeclName() << RD->getDeclName(); 4533 } 4534 } 4535 4536 if (!PureVirtualClassDiagSet) 4537 PureVirtualClassDiagSet.reset(new RecordDeclSetTy); 4538 PureVirtualClassDiagSet->insert(RD); 4539 } 4540 4541 namespace { 4542 struct AbstractUsageInfo { 4543 Sema &S; 4544 CXXRecordDecl *Record; 4545 CanQualType AbstractType; 4546 bool Invalid; 4547 4548 AbstractUsageInfo(Sema &S, CXXRecordDecl *Record) 4549 : S(S), Record(Record), 4550 AbstractType(S.Context.getCanonicalType( 4551 S.Context.getTypeDeclType(Record))), 4552 Invalid(false) {} 4553 4554 void DiagnoseAbstractType() { 4555 if (Invalid) return; 4556 S.DiagnoseAbstractType(Record); 4557 Invalid = true; 4558 } 4559 4560 void CheckType(const NamedDecl *D, TypeLoc TL, Sema::AbstractDiagSelID Sel); 4561 }; 4562 4563 struct CheckAbstractUsage { 4564 AbstractUsageInfo &Info; 4565 const NamedDecl *Ctx; 4566 4567 CheckAbstractUsage(AbstractUsageInfo &Info, const NamedDecl *Ctx) 4568 : Info(Info), Ctx(Ctx) {} 4569 4570 void Visit(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4571 switch (TL.getTypeLocClass()) { 4572 #define ABSTRACT_TYPELOC(CLASS, PARENT) 4573 #define TYPELOC(CLASS, PARENT) \ 4574 case TypeLoc::CLASS: Check(TL.castAs<CLASS##TypeLoc>(), Sel); break; 4575 #include "clang/AST/TypeLocNodes.def" 4576 } 4577 } 4578 4579 void Check(FunctionProtoTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4580 Visit(TL.getReturnLoc(), Sema::AbstractReturnType); 4581 for (unsigned I = 0, E = TL.getNumParams(); I != E; ++I) { 4582 if (!TL.getParam(I)) 4583 continue; 4584 4585 TypeSourceInfo *TSI = TL.getParam(I)->getTypeSourceInfo(); 4586 if (TSI) Visit(TSI->getTypeLoc(), Sema::AbstractParamType); 4587 } 4588 } 4589 4590 void Check(ArrayTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4591 Visit(TL.getElementLoc(), Sema::AbstractArrayType); 4592 } 4593 4594 void Check(TemplateSpecializationTypeLoc TL, Sema::AbstractDiagSelID Sel) { 4595 // Visit the type parameters from a permissive context. 4596 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) { 4597 TemplateArgumentLoc TAL = TL.getArgLoc(I); 4598 if (TAL.getArgument().getKind() == TemplateArgument::Type) 4599 if (TypeSourceInfo *TSI = TAL.getTypeSourceInfo()) 4600 Visit(TSI->getTypeLoc(), Sema::AbstractNone); 4601 // TODO: other template argument types? 4602 } 4603 } 4604 4605 // Visit pointee types from a permissive context. 4606 #define CheckPolymorphic(Type) \ 4607 void Check(Type TL, Sema::AbstractDiagSelID Sel) { \ 4608 Visit(TL.getNextTypeLoc(), Sema::AbstractNone); \ 4609 } 4610 CheckPolymorphic(PointerTypeLoc) 4611 CheckPolymorphic(ReferenceTypeLoc) 4612 CheckPolymorphic(MemberPointerTypeLoc) 4613 CheckPolymorphic(BlockPointerTypeLoc) 4614 CheckPolymorphic(AtomicTypeLoc) 4615 4616 /// Handle all the types we haven't given a more specific 4617 /// implementation for above. 4618 void Check(TypeLoc TL, Sema::AbstractDiagSelID Sel) { 4619 // Every other kind of type that we haven't called out already 4620 // that has an inner type is either (1) sugar or (2) contains that 4621 // inner type in some way as a subobject. 4622 if (TypeLoc Next = TL.getNextTypeLoc()) 4623 return Visit(Next, Sel); 4624 4625 // If there's no inner type and we're in a permissive context, 4626 // don't diagnose. 4627 if (Sel == Sema::AbstractNone) return; 4628 4629 // Check whether the type matches the abstract type. 4630 QualType T = TL.getType(); 4631 if (T->isArrayType()) { 4632 Sel = Sema::AbstractArrayType; 4633 T = Info.S.Context.getBaseElementType(T); 4634 } 4635 CanQualType CT = T->getCanonicalTypeUnqualified().getUnqualifiedType(); 4636 if (CT != Info.AbstractType) return; 4637 4638 // It matched; do some magic. 4639 if (Sel == Sema::AbstractArrayType) { 4640 Info.S.Diag(Ctx->getLocation(), diag::err_array_of_abstract_type) 4641 << T << TL.getSourceRange(); 4642 } else { 4643 Info.S.Diag(Ctx->getLocation(), diag::err_abstract_type_in_decl) 4644 << Sel << T << TL.getSourceRange(); 4645 } 4646 Info.DiagnoseAbstractType(); 4647 } 4648 }; 4649 4650 void AbstractUsageInfo::CheckType(const NamedDecl *D, TypeLoc TL, 4651 Sema::AbstractDiagSelID Sel) { 4652 CheckAbstractUsage(*this, D).Visit(TL, Sel); 4653 } 4654 4655 } 4656 4657 /// Check for invalid uses of an abstract type in a method declaration. 4658 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4659 CXXMethodDecl *MD) { 4660 // No need to do the check on definitions, which require that 4661 // the return/param types be complete. 4662 if (MD->doesThisDeclarationHaveABody()) 4663 return; 4664 4665 // For safety's sake, just ignore it if we don't have type source 4666 // information. This should never happen for non-implicit methods, 4667 // but... 4668 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) 4669 Info.CheckType(MD, TSI->getTypeLoc(), Sema::AbstractNone); 4670 } 4671 4672 /// Check for invalid uses of an abstract type within a class definition. 4673 static void CheckAbstractClassUsage(AbstractUsageInfo &Info, 4674 CXXRecordDecl *RD) { 4675 for (auto *D : RD->decls()) { 4676 if (D->isImplicit()) continue; 4677 4678 // Methods and method templates. 4679 if (isa<CXXMethodDecl>(D)) { 4680 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(D)); 4681 } else if (isa<FunctionTemplateDecl>(D)) { 4682 FunctionDecl *FD = cast<FunctionTemplateDecl>(D)->getTemplatedDecl(); 4683 CheckAbstractClassUsage(Info, cast<CXXMethodDecl>(FD)); 4684 4685 // Fields and static variables. 4686 } else if (isa<FieldDecl>(D)) { 4687 FieldDecl *FD = cast<FieldDecl>(D); 4688 if (TypeSourceInfo *TSI = FD->getTypeSourceInfo()) 4689 Info.CheckType(FD, TSI->getTypeLoc(), Sema::AbstractFieldType); 4690 } else if (isa<VarDecl>(D)) { 4691 VarDecl *VD = cast<VarDecl>(D); 4692 if (TypeSourceInfo *TSI = VD->getTypeSourceInfo()) 4693 Info.CheckType(VD, TSI->getTypeLoc(), Sema::AbstractVariableType); 4694 4695 // Nested classes and class templates. 4696 } else if (isa<CXXRecordDecl>(D)) { 4697 CheckAbstractClassUsage(Info, cast<CXXRecordDecl>(D)); 4698 } else if (isa<ClassTemplateDecl>(D)) { 4699 CheckAbstractClassUsage(Info, 4700 cast<ClassTemplateDecl>(D)->getTemplatedDecl()); 4701 } 4702 } 4703 } 4704 4705 /// \brief Check class-level dllimport/dllexport attribute. 4706 static void checkDLLAttribute(Sema &S, CXXRecordDecl *Class) { 4707 Attr *ClassAttr = getDLLAttr(Class); 4708 4709 // MSVC inherits DLL attributes to partial class template specializations. 4710 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && !ClassAttr) { 4711 if (auto *Spec = dyn_cast<ClassTemplatePartialSpecializationDecl>(Class)) { 4712 if (Attr *TemplateAttr = 4713 getDLLAttr(Spec->getSpecializedTemplate()->getTemplatedDecl())) { 4714 auto *A = cast<InheritableAttr>(TemplateAttr->clone(S.getASTContext())); 4715 A->setInherited(true); 4716 ClassAttr = A; 4717 } 4718 } 4719 } 4720 4721 if (!ClassAttr) 4722 return; 4723 4724 if (!Class->isExternallyVisible()) { 4725 S.Diag(Class->getLocation(), diag::err_attribute_dll_not_extern) 4726 << Class << ClassAttr; 4727 return; 4728 } 4729 4730 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && 4731 !ClassAttr->isInherited()) { 4732 // Diagnose dll attributes on members of class with dll attribute. 4733 for (Decl *Member : Class->decls()) { 4734 if (!isa<VarDecl>(Member) && !isa<CXXMethodDecl>(Member)) 4735 continue; 4736 InheritableAttr *MemberAttr = getDLLAttr(Member); 4737 if (!MemberAttr || MemberAttr->isInherited() || Member->isInvalidDecl()) 4738 continue; 4739 4740 S.Diag(MemberAttr->getLocation(), 4741 diag::err_attribute_dll_member_of_dll_class) 4742 << MemberAttr << ClassAttr; 4743 S.Diag(ClassAttr->getLocation(), diag::note_previous_attribute); 4744 Member->setInvalidDecl(); 4745 } 4746 } 4747 4748 if (Class->getDescribedClassTemplate()) 4749 // Don't inherit dll attribute until the template is instantiated. 4750 return; 4751 4752 // The class is either imported or exported. 4753 const bool ClassExported = ClassAttr->getKind() == attr::DLLExport; 4754 const bool ClassImported = !ClassExported; 4755 4756 TemplateSpecializationKind TSK = Class->getTemplateSpecializationKind(); 4757 4758 // Don't dllexport explicit class template instantiation declarations. 4759 if (ClassExported && TSK == TSK_ExplicitInstantiationDeclaration) { 4760 Class->dropAttr<DLLExportAttr>(); 4761 return; 4762 } 4763 4764 // Force declaration of implicit members so they can inherit the attribute. 4765 S.ForceDeclarationOfImplicitMembers(Class); 4766 4767 // FIXME: MSVC's docs say all bases must be exportable, but this doesn't 4768 // seem to be true in practice? 4769 4770 for (Decl *Member : Class->decls()) { 4771 VarDecl *VD = dyn_cast<VarDecl>(Member); 4772 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member); 4773 4774 // Only methods and static fields inherit the attributes. 4775 if (!VD && !MD) 4776 continue; 4777 4778 if (MD) { 4779 // Don't process deleted methods. 4780 if (MD->isDeleted()) 4781 continue; 4782 4783 if (MD->isMoveAssignmentOperator() && ClassImported && MD->isInlined()) { 4784 // Current MSVC versions don't export the move assignment operators, so 4785 // don't attempt to import them if we have a definition. 4786 continue; 4787 } 4788 4789 if (MD->isInlined() && 4790 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 4791 // MinGW does not import or export inline methods. 4792 continue; 4793 } 4794 } 4795 4796 if (!getDLLAttr(Member)) { 4797 auto *NewAttr = 4798 cast<InheritableAttr>(ClassAttr->clone(S.getASTContext())); 4799 NewAttr->setInherited(true); 4800 Member->addAttr(NewAttr); 4801 } 4802 4803 if (MD && ClassExported) { 4804 if (MD->isUserProvided()) { 4805 // Instantiate non-default class member functions ... 4806 4807 // .. except for certain kinds of template specializations. 4808 if (TSK == TSK_ExplicitInstantiationDeclaration) 4809 continue; 4810 if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited()) 4811 continue; 4812 4813 S.MarkFunctionReferenced(Class->getLocation(), MD); 4814 4815 // The function will be passed to the consumer when its definition is 4816 // encountered. 4817 } else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() || 4818 MD->isCopyAssignmentOperator() || 4819 MD->isMoveAssignmentOperator()) { 4820 // Synthesize and instantiate non-trivial implicit methods, explicitly 4821 // defaulted methods, and the copy and move assignment operators. The 4822 // latter are exported even if they are trivial, because the address of 4823 // an operator can be taken and should compare equal accross libraries. 4824 DiagnosticErrorTrap Trap(S.Diags); 4825 S.MarkFunctionReferenced(Class->getLocation(), MD); 4826 if (Trap.hasErrorOccurred()) { 4827 S.Diag(ClassAttr->getLocation(), diag::note_due_to_dllexported_class) 4828 << Class->getName() << !S.getLangOpts().CPlusPlus11; 4829 break; 4830 } 4831 4832 // There is no later point when we will see the definition of this 4833 // function, so pass it to the consumer now. 4834 S.Consumer.HandleTopLevelDecl(DeclGroupRef(MD)); 4835 } 4836 } 4837 } 4838 } 4839 4840 /// \brief Perform semantic checks on a class definition that has been 4841 /// completing, introducing implicitly-declared members, checking for 4842 /// abstract types, etc. 4843 void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) { 4844 if (!Record) 4845 return; 4846 4847 if (Record->isAbstract() && !Record->isInvalidDecl()) { 4848 AbstractUsageInfo Info(*this, Record); 4849 CheckAbstractClassUsage(Info, Record); 4850 } 4851 4852 // If this is not an aggregate type and has no user-declared constructor, 4853 // complain about any non-static data members of reference or const scalar 4854 // type, since they will never get initializers. 4855 if (!Record->isInvalidDecl() && !Record->isDependentType() && 4856 !Record->isAggregate() && !Record->hasUserDeclaredConstructor() && 4857 !Record->isLambda()) { 4858 bool Complained = false; 4859 for (const auto *F : Record->fields()) { 4860 if (F->hasInClassInitializer() || F->isUnnamedBitfield()) 4861 continue; 4862 4863 if (F->getType()->isReferenceType() || 4864 (F->getType().isConstQualified() && F->getType()->isScalarType())) { 4865 if (!Complained) { 4866 Diag(Record->getLocation(), diag::warn_no_constructor_for_refconst) 4867 << Record->getTagKind() << Record; 4868 Complained = true; 4869 } 4870 4871 Diag(F->getLocation(), diag::note_refconst_member_not_initialized) 4872 << F->getType()->isReferenceType() 4873 << F->getDeclName(); 4874 } 4875 } 4876 } 4877 4878 if (Record->isDynamicClass() && !Record->isDependentType()) 4879 DynamicClasses.push_back(Record); 4880 4881 if (Record->getIdentifier()) { 4882 // C++ [class.mem]p13: 4883 // If T is the name of a class, then each of the following shall have a 4884 // name different from T: 4885 // - every member of every anonymous union that is a member of class T. 4886 // 4887 // C++ [class.mem]p14: 4888 // In addition, if class T has a user-declared constructor (12.1), every 4889 // non-static data member of class T shall have a name different from T. 4890 DeclContext::lookup_result R = Record->lookup(Record->getDeclName()); 4891 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 4892 ++I) { 4893 NamedDecl *D = *I; 4894 if ((isa<FieldDecl>(D) && Record->hasUserDeclaredConstructor()) || 4895 isa<IndirectFieldDecl>(D)) { 4896 Diag(D->getLocation(), diag::err_member_name_of_class) 4897 << D->getDeclName(); 4898 break; 4899 } 4900 } 4901 } 4902 4903 // Warn if the class has virtual methods but non-virtual public destructor. 4904 if (Record->isPolymorphic() && !Record->isDependentType()) { 4905 CXXDestructorDecl *dtor = Record->getDestructor(); 4906 if ((!dtor || (!dtor->isVirtual() && dtor->getAccess() == AS_public)) && 4907 !Record->hasAttr<FinalAttr>()) 4908 Diag(dtor ? dtor->getLocation() : Record->getLocation(), 4909 diag::warn_non_virtual_dtor) << Context.getRecordType(Record); 4910 } 4911 4912 if (Record->isAbstract()) { 4913 if (FinalAttr *FA = Record->getAttr<FinalAttr>()) { 4914 Diag(Record->getLocation(), diag::warn_abstract_final_class) 4915 << FA->isSpelledAsSealed(); 4916 DiagnoseAbstractType(Record); 4917 } 4918 } 4919 4920 bool HasMethodWithOverrideControl = false, 4921 HasOverridingMethodWithoutOverrideControl = false; 4922 if (!Record->isDependentType()) { 4923 for (auto *M : Record->methods()) { 4924 // See if a method overloads virtual methods in a base 4925 // class without overriding any. 4926 if (!M->isStatic()) 4927 DiagnoseHiddenVirtualMethods(M); 4928 if (M->hasAttr<OverrideAttr>()) 4929 HasMethodWithOverrideControl = true; 4930 else if (M->size_overridden_methods() > 0) 4931 HasOverridingMethodWithoutOverrideControl = true; 4932 // Check whether the explicitly-defaulted special members are valid. 4933 if (!M->isInvalidDecl() && M->isExplicitlyDefaulted()) 4934 CheckExplicitlyDefaultedSpecialMember(M); 4935 4936 // For an explicitly defaulted or deleted special member, we defer 4937 // determining triviality until the class is complete. That time is now! 4938 if (!M->isImplicit() && !M->isUserProvided()) { 4939 CXXSpecialMember CSM = getSpecialMember(M); 4940 if (CSM != CXXInvalid) { 4941 M->setTrivial(SpecialMemberIsTrivial(M, CSM)); 4942 4943 // Inform the class that we've finished declaring this member. 4944 Record->finishedDefaultedOrDeletedMember(M); 4945 } 4946 } 4947 } 4948 } 4949 4950 if (HasMethodWithOverrideControl && 4951 HasOverridingMethodWithoutOverrideControl) { 4952 // At least one method has the 'override' control declared. 4953 // Diagnose all other overridden methods which do not have 'override' specified on them. 4954 for (auto *M : Record->methods()) 4955 DiagnoseAbsenceOfOverrideControl(M); 4956 } 4957 4958 // ms_struct is a request to use the same ABI rules as MSVC. Check 4959 // whether this class uses any C++ features that are implemented 4960 // completely differently in MSVC, and if so, emit a diagnostic. 4961 // That diagnostic defaults to an error, but we allow projects to 4962 // map it down to a warning (or ignore it). It's a fairly common 4963 // practice among users of the ms_struct pragma to mass-annotate 4964 // headers, sweeping up a bunch of types that the project doesn't 4965 // really rely on MSVC-compatible layout for. We must therefore 4966 // support "ms_struct except for C++ stuff" as a secondary ABI. 4967 if (Record->isMsStruct(Context) && 4968 (Record->isPolymorphic() || Record->getNumBases())) { 4969 Diag(Record->getLocation(), diag::warn_cxx_ms_struct); 4970 } 4971 4972 // Declare inheriting constructors. We do this eagerly here because: 4973 // - The standard requires an eager diagnostic for conflicting inheriting 4974 // constructors from different classes. 4975 // - The lazy declaration of the other implicit constructors is so as to not 4976 // waste space and performance on classes that are not meant to be 4977 // instantiated (e.g. meta-functions). This doesn't apply to classes that 4978 // have inheriting constructors. 4979 DeclareInheritingConstructors(Record); 4980 4981 checkDLLAttribute(*this, Record); 4982 } 4983 4984 /// Look up the special member function that would be called by a special 4985 /// member function for a subobject of class type. 4986 /// 4987 /// \param Class The class type of the subobject. 4988 /// \param CSM The kind of special member function. 4989 /// \param FieldQuals If the subobject is a field, its cv-qualifiers. 4990 /// \param ConstRHS True if this is a copy operation with a const object 4991 /// on its RHS, that is, if the argument to the outer special member 4992 /// function is 'const' and this is not a field marked 'mutable'. 4993 static Sema::SpecialMemberOverloadResult *lookupCallFromSpecialMember( 4994 Sema &S, CXXRecordDecl *Class, Sema::CXXSpecialMember CSM, 4995 unsigned FieldQuals, bool ConstRHS) { 4996 unsigned LHSQuals = 0; 4997 if (CSM == Sema::CXXCopyAssignment || CSM == Sema::CXXMoveAssignment) 4998 LHSQuals = FieldQuals; 4999 5000 unsigned RHSQuals = FieldQuals; 5001 if (CSM == Sema::CXXDefaultConstructor || CSM == Sema::CXXDestructor) 5002 RHSQuals = 0; 5003 else if (ConstRHS) 5004 RHSQuals |= Qualifiers::Const; 5005 5006 return S.LookupSpecialMember(Class, CSM, 5007 RHSQuals & Qualifiers::Const, 5008 RHSQuals & Qualifiers::Volatile, 5009 false, 5010 LHSQuals & Qualifiers::Const, 5011 LHSQuals & Qualifiers::Volatile); 5012 } 5013 5014 /// Is the special member function which would be selected to perform the 5015 /// specified operation on the specified class type a constexpr constructor? 5016 static bool specialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5017 Sema::CXXSpecialMember CSM, 5018 unsigned Quals, bool ConstRHS) { 5019 Sema::SpecialMemberOverloadResult *SMOR = 5020 lookupCallFromSpecialMember(S, ClassDecl, CSM, Quals, ConstRHS); 5021 if (!SMOR || !SMOR->getMethod()) 5022 // A constructor we wouldn't select can't be "involved in initializing" 5023 // anything. 5024 return true; 5025 return SMOR->getMethod()->isConstexpr(); 5026 } 5027 5028 /// Determine whether the specified special member function would be constexpr 5029 /// if it were implicitly defined. 5030 static bool defaultedSpecialMemberIsConstexpr(Sema &S, CXXRecordDecl *ClassDecl, 5031 Sema::CXXSpecialMember CSM, 5032 bool ConstArg) { 5033 if (!S.getLangOpts().CPlusPlus11) 5034 return false; 5035 5036 // C++11 [dcl.constexpr]p4: 5037 // In the definition of a constexpr constructor [...] 5038 bool Ctor = true; 5039 switch (CSM) { 5040 case Sema::CXXDefaultConstructor: 5041 // Since default constructor lookup is essentially trivial (and cannot 5042 // involve, for instance, template instantiation), we compute whether a 5043 // defaulted default constructor is constexpr directly within CXXRecordDecl. 5044 // 5045 // This is important for performance; we need to know whether the default 5046 // constructor is constexpr to determine whether the type is a literal type. 5047 return ClassDecl->defaultedDefaultConstructorIsConstexpr(); 5048 5049 case Sema::CXXCopyConstructor: 5050 case Sema::CXXMoveConstructor: 5051 // For copy or move constructors, we need to perform overload resolution. 5052 break; 5053 5054 case Sema::CXXCopyAssignment: 5055 case Sema::CXXMoveAssignment: 5056 if (!S.getLangOpts().CPlusPlus14) 5057 return false; 5058 // In C++1y, we need to perform overload resolution. 5059 Ctor = false; 5060 break; 5061 5062 case Sema::CXXDestructor: 5063 case Sema::CXXInvalid: 5064 return false; 5065 } 5066 5067 // -- if the class is a non-empty union, or for each non-empty anonymous 5068 // union member of a non-union class, exactly one non-static data member 5069 // shall be initialized; [DR1359] 5070 // 5071 // If we squint, this is guaranteed, since exactly one non-static data member 5072 // will be initialized (if the constructor isn't deleted), we just don't know 5073 // which one. 5074 if (Ctor && ClassDecl->isUnion()) 5075 return true; 5076 5077 // -- the class shall not have any virtual base classes; 5078 if (Ctor && ClassDecl->getNumVBases()) 5079 return false; 5080 5081 // C++1y [class.copy]p26: 5082 // -- [the class] is a literal type, and 5083 if (!Ctor && !ClassDecl->isLiteral()) 5084 return false; 5085 5086 // -- every constructor involved in initializing [...] base class 5087 // sub-objects shall be a constexpr constructor; 5088 // -- the assignment operator selected to copy/move each direct base 5089 // class is a constexpr function, and 5090 for (const auto &B : ClassDecl->bases()) { 5091 const RecordType *BaseType = B.getType()->getAs<RecordType>(); 5092 if (!BaseType) continue; 5093 5094 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 5095 if (!specialMemberIsConstexpr(S, BaseClassDecl, CSM, 0, ConstArg)) 5096 return false; 5097 } 5098 5099 // -- every constructor involved in initializing non-static data members 5100 // [...] shall be a constexpr constructor; 5101 // -- every non-static data member and base class sub-object shall be 5102 // initialized 5103 // -- for each non-static data member of X that is of class type (or array 5104 // thereof), the assignment operator selected to copy/move that member is 5105 // a constexpr function 5106 for (const auto *F : ClassDecl->fields()) { 5107 if (F->isInvalidDecl()) 5108 continue; 5109 QualType BaseType = S.Context.getBaseElementType(F->getType()); 5110 if (const RecordType *RecordTy = BaseType->getAs<RecordType>()) { 5111 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 5112 if (!specialMemberIsConstexpr(S, FieldRecDecl, CSM, 5113 BaseType.getCVRQualifiers(), 5114 ConstArg && !F->isMutable())) 5115 return false; 5116 } 5117 } 5118 5119 // All OK, it's constexpr! 5120 return true; 5121 } 5122 5123 static Sema::ImplicitExceptionSpecification 5124 computeImplicitExceptionSpec(Sema &S, SourceLocation Loc, CXXMethodDecl *MD) { 5125 switch (S.getSpecialMember(MD)) { 5126 case Sema::CXXDefaultConstructor: 5127 return S.ComputeDefaultedDefaultCtorExceptionSpec(Loc, MD); 5128 case Sema::CXXCopyConstructor: 5129 return S.ComputeDefaultedCopyCtorExceptionSpec(MD); 5130 case Sema::CXXCopyAssignment: 5131 return S.ComputeDefaultedCopyAssignmentExceptionSpec(MD); 5132 case Sema::CXXMoveConstructor: 5133 return S.ComputeDefaultedMoveCtorExceptionSpec(MD); 5134 case Sema::CXXMoveAssignment: 5135 return S.ComputeDefaultedMoveAssignmentExceptionSpec(MD); 5136 case Sema::CXXDestructor: 5137 return S.ComputeDefaultedDtorExceptionSpec(MD); 5138 case Sema::CXXInvalid: 5139 break; 5140 } 5141 assert(cast<CXXConstructorDecl>(MD)->getInheritedConstructor() && 5142 "only special members have implicit exception specs"); 5143 return S.ComputeInheritingCtorExceptionSpec(cast<CXXConstructorDecl>(MD)); 5144 } 5145 5146 static FunctionProtoType::ExtProtoInfo getImplicitMethodEPI(Sema &S, 5147 CXXMethodDecl *MD) { 5148 FunctionProtoType::ExtProtoInfo EPI; 5149 5150 // Build an exception specification pointing back at this member. 5151 EPI.ExceptionSpec.Type = EST_Unevaluated; 5152 EPI.ExceptionSpec.SourceDecl = MD; 5153 5154 // Set the calling convention to the default for C++ instance methods. 5155 EPI.ExtInfo = EPI.ExtInfo.withCallingConv( 5156 S.Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5157 /*IsCXXMethod=*/true)); 5158 return EPI; 5159 } 5160 5161 void Sema::EvaluateImplicitExceptionSpec(SourceLocation Loc, CXXMethodDecl *MD) { 5162 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); 5163 if (FPT->getExceptionSpecType() != EST_Unevaluated) 5164 return; 5165 5166 // Evaluate the exception specification. 5167 auto ESI = computeImplicitExceptionSpec(*this, Loc, MD).getExceptionSpec(); 5168 5169 // Update the type of the special member to use it. 5170 UpdateExceptionSpec(MD, ESI); 5171 5172 // A user-provided destructor can be defined outside the class. When that 5173 // happens, be sure to update the exception specification on both 5174 // declarations. 5175 const FunctionProtoType *CanonicalFPT = 5176 MD->getCanonicalDecl()->getType()->castAs<FunctionProtoType>(); 5177 if (CanonicalFPT->getExceptionSpecType() == EST_Unevaluated) 5178 UpdateExceptionSpec(MD->getCanonicalDecl(), ESI); 5179 } 5180 5181 void Sema::CheckExplicitlyDefaultedSpecialMember(CXXMethodDecl *MD) { 5182 CXXRecordDecl *RD = MD->getParent(); 5183 CXXSpecialMember CSM = getSpecialMember(MD); 5184 5185 assert(MD->isExplicitlyDefaulted() && CSM != CXXInvalid && 5186 "not an explicitly-defaulted special member"); 5187 5188 // Whether this was the first-declared instance of the constructor. 5189 // This affects whether we implicitly add an exception spec and constexpr. 5190 bool First = MD == MD->getCanonicalDecl(); 5191 5192 bool HadError = false; 5193 5194 // C++11 [dcl.fct.def.default]p1: 5195 // A function that is explicitly defaulted shall 5196 // -- be a special member function (checked elsewhere), 5197 // -- have the same type (except for ref-qualifiers, and except that a 5198 // copy operation can take a non-const reference) as an implicit 5199 // declaration, and 5200 // -- not have default arguments. 5201 unsigned ExpectedParams = 1; 5202 if (CSM == CXXDefaultConstructor || CSM == CXXDestructor) 5203 ExpectedParams = 0; 5204 if (MD->getNumParams() != ExpectedParams) { 5205 // This also checks for default arguments: a copy or move constructor with a 5206 // default argument is classified as a default constructor, and assignment 5207 // operations and destructors can't have default arguments. 5208 Diag(MD->getLocation(), diag::err_defaulted_special_member_params) 5209 << CSM << MD->getSourceRange(); 5210 HadError = true; 5211 } else if (MD->isVariadic()) { 5212 Diag(MD->getLocation(), diag::err_defaulted_special_member_variadic) 5213 << CSM << MD->getSourceRange(); 5214 HadError = true; 5215 } 5216 5217 const FunctionProtoType *Type = MD->getType()->getAs<FunctionProtoType>(); 5218 5219 bool CanHaveConstParam = false; 5220 if (CSM == CXXCopyConstructor) 5221 CanHaveConstParam = RD->implicitCopyConstructorHasConstParam(); 5222 else if (CSM == CXXCopyAssignment) 5223 CanHaveConstParam = RD->implicitCopyAssignmentHasConstParam(); 5224 5225 QualType ReturnType = Context.VoidTy; 5226 if (CSM == CXXCopyAssignment || CSM == CXXMoveAssignment) { 5227 // Check for return type matching. 5228 ReturnType = Type->getReturnType(); 5229 QualType ExpectedReturnType = 5230 Context.getLValueReferenceType(Context.getTypeDeclType(RD)); 5231 if (!Context.hasSameType(ReturnType, ExpectedReturnType)) { 5232 Diag(MD->getLocation(), diag::err_defaulted_special_member_return_type) 5233 << (CSM == CXXMoveAssignment) << ExpectedReturnType; 5234 HadError = true; 5235 } 5236 5237 // A defaulted special member cannot have cv-qualifiers. 5238 if (Type->getTypeQuals()) { 5239 Diag(MD->getLocation(), diag::err_defaulted_special_member_quals) 5240 << (CSM == CXXMoveAssignment) << getLangOpts().CPlusPlus14; 5241 HadError = true; 5242 } 5243 } 5244 5245 // Check for parameter type matching. 5246 QualType ArgType = ExpectedParams ? Type->getParamType(0) : QualType(); 5247 bool HasConstParam = false; 5248 if (ExpectedParams && ArgType->isReferenceType()) { 5249 // Argument must be reference to possibly-const T. 5250 QualType ReferentType = ArgType->getPointeeType(); 5251 HasConstParam = ReferentType.isConstQualified(); 5252 5253 if (ReferentType.isVolatileQualified()) { 5254 Diag(MD->getLocation(), 5255 diag::err_defaulted_special_member_volatile_param) << CSM; 5256 HadError = true; 5257 } 5258 5259 if (HasConstParam && !CanHaveConstParam) { 5260 if (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment) { 5261 Diag(MD->getLocation(), 5262 diag::err_defaulted_special_member_copy_const_param) 5263 << (CSM == CXXCopyAssignment); 5264 // FIXME: Explain why this special member can't be const. 5265 } else { 5266 Diag(MD->getLocation(), 5267 diag::err_defaulted_special_member_move_const_param) 5268 << (CSM == CXXMoveAssignment); 5269 } 5270 HadError = true; 5271 } 5272 } else if (ExpectedParams) { 5273 // A copy assignment operator can take its argument by value, but a 5274 // defaulted one cannot. 5275 assert(CSM == CXXCopyAssignment && "unexpected non-ref argument"); 5276 Diag(MD->getLocation(), diag::err_defaulted_copy_assign_not_ref); 5277 HadError = true; 5278 } 5279 5280 // C++11 [dcl.fct.def.default]p2: 5281 // An explicitly-defaulted function may be declared constexpr only if it 5282 // would have been implicitly declared as constexpr, 5283 // Do not apply this rule to members of class templates, since core issue 1358 5284 // makes such functions always instantiate to constexpr functions. For 5285 // functions which cannot be constexpr (for non-constructors in C++11 and for 5286 // destructors in C++1y), this is checked elsewhere. 5287 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, RD, CSM, 5288 HasConstParam); 5289 if ((getLangOpts().CPlusPlus14 ? !isa<CXXDestructorDecl>(MD) 5290 : isa<CXXConstructorDecl>(MD)) && 5291 MD->isConstexpr() && !Constexpr && 5292 MD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) { 5293 Diag(MD->getLocStart(), diag::err_incorrect_defaulted_constexpr) << CSM; 5294 // FIXME: Explain why the special member can't be constexpr. 5295 HadError = true; 5296 } 5297 5298 // and may have an explicit exception-specification only if it is compatible 5299 // with the exception-specification on the implicit declaration. 5300 if (Type->hasExceptionSpec()) { 5301 // Delay the check if this is the first declaration of the special member, 5302 // since we may not have parsed some necessary in-class initializers yet. 5303 if (First) { 5304 // If the exception specification needs to be instantiated, do so now, 5305 // before we clobber it with an EST_Unevaluated specification below. 5306 if (Type->getExceptionSpecType() == EST_Uninstantiated) { 5307 InstantiateExceptionSpec(MD->getLocStart(), MD); 5308 Type = MD->getType()->getAs<FunctionProtoType>(); 5309 } 5310 DelayedDefaultedMemberExceptionSpecs.push_back(std::make_pair(MD, Type)); 5311 } else 5312 CheckExplicitlyDefaultedMemberExceptionSpec(MD, Type); 5313 } 5314 5315 // If a function is explicitly defaulted on its first declaration, 5316 if (First) { 5317 // -- it is implicitly considered to be constexpr if the implicit 5318 // definition would be, 5319 MD->setConstexpr(Constexpr); 5320 5321 // -- it is implicitly considered to have the same exception-specification 5322 // as if it had been implicitly declared, 5323 FunctionProtoType::ExtProtoInfo EPI = Type->getExtProtoInfo(); 5324 EPI.ExceptionSpec.Type = EST_Unevaluated; 5325 EPI.ExceptionSpec.SourceDecl = MD; 5326 MD->setType(Context.getFunctionType(ReturnType, 5327 llvm::makeArrayRef(&ArgType, 5328 ExpectedParams), 5329 EPI)); 5330 } 5331 5332 if (ShouldDeleteSpecialMember(MD, CSM)) { 5333 if (First) { 5334 SetDeclDeleted(MD, MD->getLocation()); 5335 } else { 5336 // C++11 [dcl.fct.def.default]p4: 5337 // [For a] user-provided explicitly-defaulted function [...] if such a 5338 // function is implicitly defined as deleted, the program is ill-formed. 5339 Diag(MD->getLocation(), diag::err_out_of_line_default_deletes) << CSM; 5340 ShouldDeleteSpecialMember(MD, CSM, /*Diagnose*/true); 5341 HadError = true; 5342 } 5343 } 5344 5345 if (HadError) 5346 MD->setInvalidDecl(); 5347 } 5348 5349 /// Check whether the exception specification provided for an 5350 /// explicitly-defaulted special member matches the exception specification 5351 /// that would have been generated for an implicit special member, per 5352 /// C++11 [dcl.fct.def.default]p2. 5353 void Sema::CheckExplicitlyDefaultedMemberExceptionSpec( 5354 CXXMethodDecl *MD, const FunctionProtoType *SpecifiedType) { 5355 // If the exception specification was explicitly specified but hadn't been 5356 // parsed when the method was defaulted, grab it now. 5357 if (SpecifiedType->getExceptionSpecType() == EST_Unparsed) 5358 SpecifiedType = 5359 MD->getTypeSourceInfo()->getType()->castAs<FunctionProtoType>(); 5360 5361 // Compute the implicit exception specification. 5362 CallingConv CC = Context.getDefaultCallingConvention(/*IsVariadic=*/false, 5363 /*IsCXXMethod=*/true); 5364 FunctionProtoType::ExtProtoInfo EPI(CC); 5365 EPI.ExceptionSpec = computeImplicitExceptionSpec(*this, MD->getLocation(), MD) 5366 .getExceptionSpec(); 5367 const FunctionProtoType *ImplicitType = cast<FunctionProtoType>( 5368 Context.getFunctionType(Context.VoidTy, None, EPI)); 5369 5370 // Ensure that it matches. 5371 CheckEquivalentExceptionSpec( 5372 PDiag(diag::err_incorrect_defaulted_exception_spec) 5373 << getSpecialMember(MD), PDiag(), 5374 ImplicitType, SourceLocation(), 5375 SpecifiedType, MD->getLocation()); 5376 } 5377 5378 void Sema::CheckDelayedMemberExceptionSpecs() { 5379 decltype(DelayedExceptionSpecChecks) Checks; 5380 decltype(DelayedDefaultedMemberExceptionSpecs) Specs; 5381 5382 std::swap(Checks, DelayedExceptionSpecChecks); 5383 std::swap(Specs, DelayedDefaultedMemberExceptionSpecs); 5384 5385 // Perform any deferred checking of exception specifications for virtual 5386 // destructors. 5387 for (auto &Check : Checks) 5388 CheckOverridingFunctionExceptionSpec(Check.first, Check.second); 5389 5390 // Check that any explicitly-defaulted methods have exception specifications 5391 // compatible with their implicit exception specifications. 5392 for (auto &Spec : Specs) 5393 CheckExplicitlyDefaultedMemberExceptionSpec(Spec.first, Spec.second); 5394 } 5395 5396 namespace { 5397 struct SpecialMemberDeletionInfo { 5398 Sema &S; 5399 CXXMethodDecl *MD; 5400 Sema::CXXSpecialMember CSM; 5401 bool Diagnose; 5402 5403 // Properties of the special member, computed for convenience. 5404 bool IsConstructor, IsAssignment, IsMove, ConstArg; 5405 SourceLocation Loc; 5406 5407 bool AllFieldsAreConst; 5408 5409 SpecialMemberDeletionInfo(Sema &S, CXXMethodDecl *MD, 5410 Sema::CXXSpecialMember CSM, bool Diagnose) 5411 : S(S), MD(MD), CSM(CSM), Diagnose(Diagnose), 5412 IsConstructor(false), IsAssignment(false), IsMove(false), 5413 ConstArg(false), Loc(MD->getLocation()), 5414 AllFieldsAreConst(true) { 5415 switch (CSM) { 5416 case Sema::CXXDefaultConstructor: 5417 case Sema::CXXCopyConstructor: 5418 IsConstructor = true; 5419 break; 5420 case Sema::CXXMoveConstructor: 5421 IsConstructor = true; 5422 IsMove = true; 5423 break; 5424 case Sema::CXXCopyAssignment: 5425 IsAssignment = true; 5426 break; 5427 case Sema::CXXMoveAssignment: 5428 IsAssignment = true; 5429 IsMove = true; 5430 break; 5431 case Sema::CXXDestructor: 5432 break; 5433 case Sema::CXXInvalid: 5434 llvm_unreachable("invalid special member kind"); 5435 } 5436 5437 if (MD->getNumParams()) { 5438 if (const ReferenceType *RT = 5439 MD->getParamDecl(0)->getType()->getAs<ReferenceType>()) 5440 ConstArg = RT->getPointeeType().isConstQualified(); 5441 } 5442 } 5443 5444 bool inUnion() const { return MD->getParent()->isUnion(); } 5445 5446 /// Look up the corresponding special member in the given class. 5447 Sema::SpecialMemberOverloadResult *lookupIn(CXXRecordDecl *Class, 5448 unsigned Quals, bool IsMutable) { 5449 return lookupCallFromSpecialMember(S, Class, CSM, Quals, 5450 ConstArg && !IsMutable); 5451 } 5452 5453 typedef llvm::PointerUnion<CXXBaseSpecifier*, FieldDecl*> Subobject; 5454 5455 bool shouldDeleteForBase(CXXBaseSpecifier *Base); 5456 bool shouldDeleteForField(FieldDecl *FD); 5457 bool shouldDeleteForAllConstMembers(); 5458 5459 bool shouldDeleteForClassSubobject(CXXRecordDecl *Class, Subobject Subobj, 5460 unsigned Quals); 5461 bool shouldDeleteForSubobjectCall(Subobject Subobj, 5462 Sema::SpecialMemberOverloadResult *SMOR, 5463 bool IsDtorCallInCtor); 5464 5465 bool isAccessible(Subobject Subobj, CXXMethodDecl *D); 5466 }; 5467 } 5468 5469 /// Is the given special member inaccessible when used on the given 5470 /// sub-object. 5471 bool SpecialMemberDeletionInfo::isAccessible(Subobject Subobj, 5472 CXXMethodDecl *target) { 5473 /// If we're operating on a base class, the object type is the 5474 /// type of this special member. 5475 QualType objectTy; 5476 AccessSpecifier access = target->getAccess(); 5477 if (CXXBaseSpecifier *base = Subobj.dyn_cast<CXXBaseSpecifier*>()) { 5478 objectTy = S.Context.getTypeDeclType(MD->getParent()); 5479 access = CXXRecordDecl::MergeAccess(base->getAccessSpecifier(), access); 5480 5481 // If we're operating on a field, the object type is the type of the field. 5482 } else { 5483 objectTy = S.Context.getTypeDeclType(target->getParent()); 5484 } 5485 5486 return S.isSpecialMemberAccessibleForDeletion(target, access, objectTy); 5487 } 5488 5489 /// Check whether we should delete a special member due to the implicit 5490 /// definition containing a call to a special member of a subobject. 5491 bool SpecialMemberDeletionInfo::shouldDeleteForSubobjectCall( 5492 Subobject Subobj, Sema::SpecialMemberOverloadResult *SMOR, 5493 bool IsDtorCallInCtor) { 5494 CXXMethodDecl *Decl = SMOR->getMethod(); 5495 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5496 5497 int DiagKind = -1; 5498 5499 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::NoMemberOrDeleted) 5500 DiagKind = !Decl ? 0 : 1; 5501 else if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5502 DiagKind = 2; 5503 else if (!isAccessible(Subobj, Decl)) 5504 DiagKind = 3; 5505 else if (!IsDtorCallInCtor && Field && Field->getParent()->isUnion() && 5506 !Decl->isTrivial()) { 5507 // A member of a union must have a trivial corresponding special member. 5508 // As a weird special case, a destructor call from a union's constructor 5509 // must be accessible and non-deleted, but need not be trivial. Such a 5510 // destructor is never actually called, but is semantically checked as 5511 // if it were. 5512 DiagKind = 4; 5513 } 5514 5515 if (DiagKind == -1) 5516 return false; 5517 5518 if (Diagnose) { 5519 if (Field) { 5520 S.Diag(Field->getLocation(), 5521 diag::note_deleted_special_member_class_subobject) 5522 << CSM << MD->getParent() << /*IsField*/true 5523 << Field << DiagKind << IsDtorCallInCtor; 5524 } else { 5525 CXXBaseSpecifier *Base = Subobj.get<CXXBaseSpecifier*>(); 5526 S.Diag(Base->getLocStart(), 5527 diag::note_deleted_special_member_class_subobject) 5528 << CSM << MD->getParent() << /*IsField*/false 5529 << Base->getType() << DiagKind << IsDtorCallInCtor; 5530 } 5531 5532 if (DiagKind == 1) 5533 S.NoteDeletedFunction(Decl); 5534 // FIXME: Explain inaccessibility if DiagKind == 3. 5535 } 5536 5537 return true; 5538 } 5539 5540 /// Check whether we should delete a special member function due to having a 5541 /// direct or virtual base class or non-static data member of class type M. 5542 bool SpecialMemberDeletionInfo::shouldDeleteForClassSubobject( 5543 CXXRecordDecl *Class, Subobject Subobj, unsigned Quals) { 5544 FieldDecl *Field = Subobj.dyn_cast<FieldDecl*>(); 5545 bool IsMutable = Field && Field->isMutable(); 5546 5547 // C++11 [class.ctor]p5: 5548 // -- any direct or virtual base class, or non-static data member with no 5549 // brace-or-equal-initializer, has class type M (or array thereof) and 5550 // either M has no default constructor or overload resolution as applied 5551 // to M's default constructor results in an ambiguity or in a function 5552 // that is deleted or inaccessible 5553 // C++11 [class.copy]p11, C++11 [class.copy]p23: 5554 // -- a direct or virtual base class B that cannot be copied/moved because 5555 // overload resolution, as applied to B's corresponding special member, 5556 // results in an ambiguity or a function that is deleted or inaccessible 5557 // from the defaulted special member 5558 // C++11 [class.dtor]p5: 5559 // -- any direct or virtual base class [...] has a type with a destructor 5560 // that is deleted or inaccessible 5561 if (!(CSM == Sema::CXXDefaultConstructor && 5562 Field && Field->hasInClassInitializer()) && 5563 shouldDeleteForSubobjectCall(Subobj, lookupIn(Class, Quals, IsMutable), 5564 false)) 5565 return true; 5566 5567 // C++11 [class.ctor]p5, C++11 [class.copy]p11: 5568 // -- any direct or virtual base class or non-static data member has a 5569 // type with a destructor that is deleted or inaccessible 5570 if (IsConstructor) { 5571 Sema::SpecialMemberOverloadResult *SMOR = 5572 S.LookupSpecialMember(Class, Sema::CXXDestructor, 5573 false, false, false, false, false); 5574 if (shouldDeleteForSubobjectCall(Subobj, SMOR, true)) 5575 return true; 5576 } 5577 5578 return false; 5579 } 5580 5581 /// Check whether we should delete a special member function due to the class 5582 /// having a particular direct or virtual base class. 5583 bool SpecialMemberDeletionInfo::shouldDeleteForBase(CXXBaseSpecifier *Base) { 5584 CXXRecordDecl *BaseClass = Base->getType()->getAsCXXRecordDecl(); 5585 return shouldDeleteForClassSubobject(BaseClass, Base, 0); 5586 } 5587 5588 /// Check whether we should delete a special member function due to the class 5589 /// having a particular non-static data member. 5590 bool SpecialMemberDeletionInfo::shouldDeleteForField(FieldDecl *FD) { 5591 QualType FieldType = S.Context.getBaseElementType(FD->getType()); 5592 CXXRecordDecl *FieldRecord = FieldType->getAsCXXRecordDecl(); 5593 5594 if (CSM == Sema::CXXDefaultConstructor) { 5595 // For a default constructor, all references must be initialized in-class 5596 // and, if a union, it must have a non-const member. 5597 if (FieldType->isReferenceType() && !FD->hasInClassInitializer()) { 5598 if (Diagnose) 5599 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5600 << MD->getParent() << FD << FieldType << /*Reference*/0; 5601 return true; 5602 } 5603 // C++11 [class.ctor]p5: any non-variant non-static data member of 5604 // const-qualified type (or array thereof) with no 5605 // brace-or-equal-initializer does not have a user-provided default 5606 // constructor. 5607 if (!inUnion() && FieldType.isConstQualified() && 5608 !FD->hasInClassInitializer() && 5609 (!FieldRecord || !FieldRecord->hasUserProvidedDefaultConstructor())) { 5610 if (Diagnose) 5611 S.Diag(FD->getLocation(), diag::note_deleted_default_ctor_uninit_field) 5612 << MD->getParent() << FD << FD->getType() << /*Const*/1; 5613 return true; 5614 } 5615 5616 if (inUnion() && !FieldType.isConstQualified()) 5617 AllFieldsAreConst = false; 5618 } else if (CSM == Sema::CXXCopyConstructor) { 5619 // For a copy constructor, data members must not be of rvalue reference 5620 // type. 5621 if (FieldType->isRValueReferenceType()) { 5622 if (Diagnose) 5623 S.Diag(FD->getLocation(), diag::note_deleted_copy_ctor_rvalue_reference) 5624 << MD->getParent() << FD << FieldType; 5625 return true; 5626 } 5627 } else if (IsAssignment) { 5628 // For an assignment operator, data members must not be of reference type. 5629 if (FieldType->isReferenceType()) { 5630 if (Diagnose) 5631 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5632 << IsMove << MD->getParent() << FD << FieldType << /*Reference*/0; 5633 return true; 5634 } 5635 if (!FieldRecord && FieldType.isConstQualified()) { 5636 // C++11 [class.copy]p23: 5637 // -- a non-static data member of const non-class type (or array thereof) 5638 if (Diagnose) 5639 S.Diag(FD->getLocation(), diag::note_deleted_assign_field) 5640 << IsMove << MD->getParent() << FD << FD->getType() << /*Const*/1; 5641 return true; 5642 } 5643 } 5644 5645 if (FieldRecord) { 5646 // Some additional restrictions exist on the variant members. 5647 if (!inUnion() && FieldRecord->isUnion() && 5648 FieldRecord->isAnonymousStructOrUnion()) { 5649 bool AllVariantFieldsAreConst = true; 5650 5651 // FIXME: Handle anonymous unions declared within anonymous unions. 5652 for (auto *UI : FieldRecord->fields()) { 5653 QualType UnionFieldType = S.Context.getBaseElementType(UI->getType()); 5654 5655 if (!UnionFieldType.isConstQualified()) 5656 AllVariantFieldsAreConst = false; 5657 5658 CXXRecordDecl *UnionFieldRecord = UnionFieldType->getAsCXXRecordDecl(); 5659 if (UnionFieldRecord && 5660 shouldDeleteForClassSubobject(UnionFieldRecord, UI, 5661 UnionFieldType.getCVRQualifiers())) 5662 return true; 5663 } 5664 5665 // At least one member in each anonymous union must be non-const 5666 if (CSM == Sema::CXXDefaultConstructor && AllVariantFieldsAreConst && 5667 !FieldRecord->field_empty()) { 5668 if (Diagnose) 5669 S.Diag(FieldRecord->getLocation(), 5670 diag::note_deleted_default_ctor_all_const) 5671 << MD->getParent() << /*anonymous union*/1; 5672 return true; 5673 } 5674 5675 // Don't check the implicit member of the anonymous union type. 5676 // This is technically non-conformant, but sanity demands it. 5677 return false; 5678 } 5679 5680 if (shouldDeleteForClassSubobject(FieldRecord, FD, 5681 FieldType.getCVRQualifiers())) 5682 return true; 5683 } 5684 5685 return false; 5686 } 5687 5688 /// C++11 [class.ctor] p5: 5689 /// A defaulted default constructor for a class X is defined as deleted if 5690 /// X is a union and all of its variant members are of const-qualified type. 5691 bool SpecialMemberDeletionInfo::shouldDeleteForAllConstMembers() { 5692 // This is a silly definition, because it gives an empty union a deleted 5693 // default constructor. Don't do that. 5694 if (CSM == Sema::CXXDefaultConstructor && inUnion() && AllFieldsAreConst && 5695 !MD->getParent()->field_empty()) { 5696 if (Diagnose) 5697 S.Diag(MD->getParent()->getLocation(), 5698 diag::note_deleted_default_ctor_all_const) 5699 << MD->getParent() << /*not anonymous union*/0; 5700 return true; 5701 } 5702 return false; 5703 } 5704 5705 /// Determine whether a defaulted special member function should be defined as 5706 /// deleted, as specified in C++11 [class.ctor]p5, C++11 [class.copy]p11, 5707 /// C++11 [class.copy]p23, and C++11 [class.dtor]p5. 5708 bool Sema::ShouldDeleteSpecialMember(CXXMethodDecl *MD, CXXSpecialMember CSM, 5709 bool Diagnose) { 5710 if (MD->isInvalidDecl()) 5711 return false; 5712 CXXRecordDecl *RD = MD->getParent(); 5713 assert(!RD->isDependentType() && "do deletion after instantiation"); 5714 if (!LangOpts.CPlusPlus11 || RD->isInvalidDecl()) 5715 return false; 5716 5717 // C++11 [expr.lambda.prim]p19: 5718 // The closure type associated with a lambda-expression has a 5719 // deleted (8.4.3) default constructor and a deleted copy 5720 // assignment operator. 5721 if (RD->isLambda() && 5722 (CSM == CXXDefaultConstructor || CSM == CXXCopyAssignment)) { 5723 if (Diagnose) 5724 Diag(RD->getLocation(), diag::note_lambda_decl); 5725 return true; 5726 } 5727 5728 // For an anonymous struct or union, the copy and assignment special members 5729 // will never be used, so skip the check. For an anonymous union declared at 5730 // namespace scope, the constructor and destructor are used. 5731 if (CSM != CXXDefaultConstructor && CSM != CXXDestructor && 5732 RD->isAnonymousStructOrUnion()) 5733 return false; 5734 5735 // C++11 [class.copy]p7, p18: 5736 // If the class definition declares a move constructor or move assignment 5737 // operator, an implicitly declared copy constructor or copy assignment 5738 // operator is defined as deleted. 5739 if (MD->isImplicit() && 5740 (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment)) { 5741 CXXMethodDecl *UserDeclaredMove = nullptr; 5742 5743 // In Microsoft mode, a user-declared move only causes the deletion of the 5744 // corresponding copy operation, not both copy operations. 5745 if (RD->hasUserDeclaredMoveConstructor() && 5746 (!getLangOpts().MSVCCompat || CSM == CXXCopyConstructor)) { 5747 if (!Diagnose) return true; 5748 5749 // Find any user-declared move constructor. 5750 for (auto *I : RD->ctors()) { 5751 if (I->isMoveConstructor()) { 5752 UserDeclaredMove = I; 5753 break; 5754 } 5755 } 5756 assert(UserDeclaredMove); 5757 } else if (RD->hasUserDeclaredMoveAssignment() && 5758 (!getLangOpts().MSVCCompat || CSM == CXXCopyAssignment)) { 5759 if (!Diagnose) return true; 5760 5761 // Find any user-declared move assignment operator. 5762 for (auto *I : RD->methods()) { 5763 if (I->isMoveAssignmentOperator()) { 5764 UserDeclaredMove = I; 5765 break; 5766 } 5767 } 5768 assert(UserDeclaredMove); 5769 } 5770 5771 if (UserDeclaredMove) { 5772 Diag(UserDeclaredMove->getLocation(), 5773 diag::note_deleted_copy_user_declared_move) 5774 << (CSM == CXXCopyAssignment) << RD 5775 << UserDeclaredMove->isMoveAssignmentOperator(); 5776 return true; 5777 } 5778 } 5779 5780 // Do access control from the special member function 5781 ContextRAII MethodContext(*this, MD); 5782 5783 // C++11 [class.dtor]p5: 5784 // -- for a virtual destructor, lookup of the non-array deallocation function 5785 // results in an ambiguity or in a function that is deleted or inaccessible 5786 if (CSM == CXXDestructor && MD->isVirtual()) { 5787 FunctionDecl *OperatorDelete = nullptr; 5788 DeclarationName Name = 5789 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 5790 if (FindDeallocationFunction(MD->getLocation(), MD->getParent(), Name, 5791 OperatorDelete, false)) { 5792 if (Diagnose) 5793 Diag(RD->getLocation(), diag::note_deleted_dtor_no_operator_delete); 5794 return true; 5795 } 5796 } 5797 5798 SpecialMemberDeletionInfo SMI(*this, MD, CSM, Diagnose); 5799 5800 for (auto &BI : RD->bases()) 5801 if (!BI.isVirtual() && 5802 SMI.shouldDeleteForBase(&BI)) 5803 return true; 5804 5805 // Per DR1611, do not consider virtual bases of constructors of abstract 5806 // classes, since we are not going to construct them. 5807 if (!RD->isAbstract() || !SMI.IsConstructor) { 5808 for (auto &BI : RD->vbases()) 5809 if (SMI.shouldDeleteForBase(&BI)) 5810 return true; 5811 } 5812 5813 for (auto *FI : RD->fields()) 5814 if (!FI->isInvalidDecl() && !FI->isUnnamedBitfield() && 5815 SMI.shouldDeleteForField(FI)) 5816 return true; 5817 5818 if (SMI.shouldDeleteForAllConstMembers()) 5819 return true; 5820 5821 if (getLangOpts().CUDA) { 5822 // We should delete the special member in CUDA mode if target inference 5823 // failed. 5824 return inferCUDATargetForImplicitSpecialMember(RD, CSM, MD, SMI.ConstArg, 5825 Diagnose); 5826 } 5827 5828 return false; 5829 } 5830 5831 /// Perform lookup for a special member of the specified kind, and determine 5832 /// whether it is trivial. If the triviality can be determined without the 5833 /// lookup, skip it. This is intended for use when determining whether a 5834 /// special member of a containing object is trivial, and thus does not ever 5835 /// perform overload resolution for default constructors. 5836 /// 5837 /// If \p Selected is not \c NULL, \c *Selected will be filled in with the 5838 /// member that was most likely to be intended to be trivial, if any. 5839 static bool findTrivialSpecialMember(Sema &S, CXXRecordDecl *RD, 5840 Sema::CXXSpecialMember CSM, unsigned Quals, 5841 bool ConstRHS, CXXMethodDecl **Selected) { 5842 if (Selected) 5843 *Selected = nullptr; 5844 5845 switch (CSM) { 5846 case Sema::CXXInvalid: 5847 llvm_unreachable("not a special member"); 5848 5849 case Sema::CXXDefaultConstructor: 5850 // C++11 [class.ctor]p5: 5851 // A default constructor is trivial if: 5852 // - all the [direct subobjects] have trivial default constructors 5853 // 5854 // Note, no overload resolution is performed in this case. 5855 if (RD->hasTrivialDefaultConstructor()) 5856 return true; 5857 5858 if (Selected) { 5859 // If there's a default constructor which could have been trivial, dig it 5860 // out. Otherwise, if there's any user-provided default constructor, point 5861 // to that as an example of why there's not a trivial one. 5862 CXXConstructorDecl *DefCtor = nullptr; 5863 if (RD->needsImplicitDefaultConstructor()) 5864 S.DeclareImplicitDefaultConstructor(RD); 5865 for (auto *CI : RD->ctors()) { 5866 if (!CI->isDefaultConstructor()) 5867 continue; 5868 DefCtor = CI; 5869 if (!DefCtor->isUserProvided()) 5870 break; 5871 } 5872 5873 *Selected = DefCtor; 5874 } 5875 5876 return false; 5877 5878 case Sema::CXXDestructor: 5879 // C++11 [class.dtor]p5: 5880 // A destructor is trivial if: 5881 // - all the direct [subobjects] have trivial destructors 5882 if (RD->hasTrivialDestructor()) 5883 return true; 5884 5885 if (Selected) { 5886 if (RD->needsImplicitDestructor()) 5887 S.DeclareImplicitDestructor(RD); 5888 *Selected = RD->getDestructor(); 5889 } 5890 5891 return false; 5892 5893 case Sema::CXXCopyConstructor: 5894 // C++11 [class.copy]p12: 5895 // A copy constructor is trivial if: 5896 // - the constructor selected to copy each direct [subobject] is trivial 5897 if (RD->hasTrivialCopyConstructor()) { 5898 if (Quals == Qualifiers::Const) 5899 // We must either select the trivial copy constructor or reach an 5900 // ambiguity; no need to actually perform overload resolution. 5901 return true; 5902 } else if (!Selected) { 5903 return false; 5904 } 5905 // In C++98, we are not supposed to perform overload resolution here, but we 5906 // treat that as a language defect, as suggested on cxx-abi-dev, to treat 5907 // cases like B as having a non-trivial copy constructor: 5908 // struct A { template<typename T> A(T&); }; 5909 // struct B { mutable A a; }; 5910 goto NeedOverloadResolution; 5911 5912 case Sema::CXXCopyAssignment: 5913 // C++11 [class.copy]p25: 5914 // A copy assignment operator is trivial if: 5915 // - the assignment operator selected to copy each direct [subobject] is 5916 // trivial 5917 if (RD->hasTrivialCopyAssignment()) { 5918 if (Quals == Qualifiers::Const) 5919 return true; 5920 } else if (!Selected) { 5921 return false; 5922 } 5923 // In C++98, we are not supposed to perform overload resolution here, but we 5924 // treat that as a language defect. 5925 goto NeedOverloadResolution; 5926 5927 case Sema::CXXMoveConstructor: 5928 case Sema::CXXMoveAssignment: 5929 NeedOverloadResolution: 5930 Sema::SpecialMemberOverloadResult *SMOR = 5931 lookupCallFromSpecialMember(S, RD, CSM, Quals, ConstRHS); 5932 5933 // The standard doesn't describe how to behave if the lookup is ambiguous. 5934 // We treat it as not making the member non-trivial, just like the standard 5935 // mandates for the default constructor. This should rarely matter, because 5936 // the member will also be deleted. 5937 if (SMOR->getKind() == Sema::SpecialMemberOverloadResult::Ambiguous) 5938 return true; 5939 5940 if (!SMOR->getMethod()) { 5941 assert(SMOR->getKind() == 5942 Sema::SpecialMemberOverloadResult::NoMemberOrDeleted); 5943 return false; 5944 } 5945 5946 // We deliberately don't check if we found a deleted special member. We're 5947 // not supposed to! 5948 if (Selected) 5949 *Selected = SMOR->getMethod(); 5950 return SMOR->getMethod()->isTrivial(); 5951 } 5952 5953 llvm_unreachable("unknown special method kind"); 5954 } 5955 5956 static CXXConstructorDecl *findUserDeclaredCtor(CXXRecordDecl *RD) { 5957 for (auto *CI : RD->ctors()) 5958 if (!CI->isImplicit()) 5959 return CI; 5960 5961 // Look for constructor templates. 5962 typedef CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> tmpl_iter; 5963 for (tmpl_iter TI(RD->decls_begin()), TE(RD->decls_end()); TI != TE; ++TI) { 5964 if (CXXConstructorDecl *CD = 5965 dyn_cast<CXXConstructorDecl>(TI->getTemplatedDecl())) 5966 return CD; 5967 } 5968 5969 return nullptr; 5970 } 5971 5972 /// The kind of subobject we are checking for triviality. The values of this 5973 /// enumeration are used in diagnostics. 5974 enum TrivialSubobjectKind { 5975 /// The subobject is a base class. 5976 TSK_BaseClass, 5977 /// The subobject is a non-static data member. 5978 TSK_Field, 5979 /// The object is actually the complete object. 5980 TSK_CompleteObject 5981 }; 5982 5983 /// Check whether the special member selected for a given type would be trivial. 5984 static bool checkTrivialSubobjectCall(Sema &S, SourceLocation SubobjLoc, 5985 QualType SubType, bool ConstRHS, 5986 Sema::CXXSpecialMember CSM, 5987 TrivialSubobjectKind Kind, 5988 bool Diagnose) { 5989 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); 5990 if (!SubRD) 5991 return true; 5992 5993 CXXMethodDecl *Selected; 5994 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), 5995 ConstRHS, Diagnose ? &Selected : nullptr)) 5996 return true; 5997 5998 if (Diagnose) { 5999 if (ConstRHS) 6000 SubType.addConst(); 6001 6002 if (!Selected && CSM == Sema::CXXDefaultConstructor) { 6003 S.Diag(SubobjLoc, diag::note_nontrivial_no_def_ctor) 6004 << Kind << SubType.getUnqualifiedType(); 6005 if (CXXConstructorDecl *CD = findUserDeclaredCtor(SubRD)) 6006 S.Diag(CD->getLocation(), diag::note_user_declared_ctor); 6007 } else if (!Selected) 6008 S.Diag(SubobjLoc, diag::note_nontrivial_no_copy) 6009 << Kind << SubType.getUnqualifiedType() << CSM << SubType; 6010 else if (Selected->isUserProvided()) { 6011 if (Kind == TSK_CompleteObject) 6012 S.Diag(Selected->getLocation(), diag::note_nontrivial_user_provided) 6013 << Kind << SubType.getUnqualifiedType() << CSM; 6014 else { 6015 S.Diag(SubobjLoc, diag::note_nontrivial_user_provided) 6016 << Kind << SubType.getUnqualifiedType() << CSM; 6017 S.Diag(Selected->getLocation(), diag::note_declared_at); 6018 } 6019 } else { 6020 if (Kind != TSK_CompleteObject) 6021 S.Diag(SubobjLoc, diag::note_nontrivial_subobject) 6022 << Kind << SubType.getUnqualifiedType() << CSM; 6023 6024 // Explain why the defaulted or deleted special member isn't trivial. 6025 S.SpecialMemberIsTrivial(Selected, CSM, Diagnose); 6026 } 6027 } 6028 6029 return false; 6030 } 6031 6032 /// Check whether the members of a class type allow a special member to be 6033 /// trivial. 6034 static bool checkTrivialClassMembers(Sema &S, CXXRecordDecl *RD, 6035 Sema::CXXSpecialMember CSM, 6036 bool ConstArg, bool Diagnose) { 6037 for (const auto *FI : RD->fields()) { 6038 if (FI->isInvalidDecl() || FI->isUnnamedBitfield()) 6039 continue; 6040 6041 QualType FieldType = S.Context.getBaseElementType(FI->getType()); 6042 6043 // Pretend anonymous struct or union members are members of this class. 6044 if (FI->isAnonymousStructOrUnion()) { 6045 if (!checkTrivialClassMembers(S, FieldType->getAsCXXRecordDecl(), 6046 CSM, ConstArg, Diagnose)) 6047 return false; 6048 continue; 6049 } 6050 6051 // C++11 [class.ctor]p5: 6052 // A default constructor is trivial if [...] 6053 // -- no non-static data member of its class has a 6054 // brace-or-equal-initializer 6055 if (CSM == Sema::CXXDefaultConstructor && FI->hasInClassInitializer()) { 6056 if (Diagnose) 6057 S.Diag(FI->getLocation(), diag::note_nontrivial_in_class_init) << FI; 6058 return false; 6059 } 6060 6061 // Objective C ARC 4.3.5: 6062 // [...] nontrivally ownership-qualified types are [...] not trivially 6063 // default constructible, copy constructible, move constructible, copy 6064 // assignable, move assignable, or destructible [...] 6065 if (S.getLangOpts().ObjCAutoRefCount && 6066 FieldType.hasNonTrivialObjCLifetime()) { 6067 if (Diagnose) 6068 S.Diag(FI->getLocation(), diag::note_nontrivial_objc_ownership) 6069 << RD << FieldType.getObjCLifetime(); 6070 return false; 6071 } 6072 6073 bool ConstRHS = ConstArg && !FI->isMutable(); 6074 if (!checkTrivialSubobjectCall(S, FI->getLocation(), FieldType, ConstRHS, 6075 CSM, TSK_Field, Diagnose)) 6076 return false; 6077 } 6078 6079 return true; 6080 } 6081 6082 /// Diagnose why the specified class does not have a trivial special member of 6083 /// the given kind. 6084 void Sema::DiagnoseNontrivial(const CXXRecordDecl *RD, CXXSpecialMember CSM) { 6085 QualType Ty = Context.getRecordType(RD); 6086 6087 bool ConstArg = (CSM == CXXCopyConstructor || CSM == CXXCopyAssignment); 6088 checkTrivialSubobjectCall(*this, RD->getLocation(), Ty, ConstArg, CSM, 6089 TSK_CompleteObject, /*Diagnose*/true); 6090 } 6091 6092 /// Determine whether a defaulted or deleted special member function is trivial, 6093 /// as specified in C++11 [class.ctor]p5, C++11 [class.copy]p12, 6094 /// C++11 [class.copy]p25, and C++11 [class.dtor]p5. 6095 bool Sema::SpecialMemberIsTrivial(CXXMethodDecl *MD, CXXSpecialMember CSM, 6096 bool Diagnose) { 6097 assert(!MD->isUserProvided() && CSM != CXXInvalid && "not special enough"); 6098 6099 CXXRecordDecl *RD = MD->getParent(); 6100 6101 bool ConstArg = false; 6102 6103 // C++11 [class.copy]p12, p25: [DR1593] 6104 // A [special member] is trivial if [...] its parameter-type-list is 6105 // equivalent to the parameter-type-list of an implicit declaration [...] 6106 switch (CSM) { 6107 case CXXDefaultConstructor: 6108 case CXXDestructor: 6109 // Trivial default constructors and destructors cannot have parameters. 6110 break; 6111 6112 case CXXCopyConstructor: 6113 case CXXCopyAssignment: { 6114 // Trivial copy operations always have const, non-volatile parameter types. 6115 ConstArg = true; 6116 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6117 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>(); 6118 if (!RT || RT->getPointeeType().getCVRQualifiers() != Qualifiers::Const) { 6119 if (Diagnose) 6120 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6121 << Param0->getSourceRange() << Param0->getType() 6122 << Context.getLValueReferenceType( 6123 Context.getRecordType(RD).withConst()); 6124 return false; 6125 } 6126 break; 6127 } 6128 6129 case CXXMoveConstructor: 6130 case CXXMoveAssignment: { 6131 // Trivial move operations always have non-cv-qualified parameters. 6132 const ParmVarDecl *Param0 = MD->getParamDecl(0); 6133 const RValueReferenceType *RT = 6134 Param0->getType()->getAs<RValueReferenceType>(); 6135 if (!RT || RT->getPointeeType().getCVRQualifiers()) { 6136 if (Diagnose) 6137 Diag(Param0->getLocation(), diag::note_nontrivial_param_type) 6138 << Param0->getSourceRange() << Param0->getType() 6139 << Context.getRValueReferenceType(Context.getRecordType(RD)); 6140 return false; 6141 } 6142 break; 6143 } 6144 6145 case CXXInvalid: 6146 llvm_unreachable("not a special member"); 6147 } 6148 6149 if (MD->getMinRequiredArguments() < MD->getNumParams()) { 6150 if (Diagnose) 6151 Diag(MD->getParamDecl(MD->getMinRequiredArguments())->getLocation(), 6152 diag::note_nontrivial_default_arg) 6153 << MD->getParamDecl(MD->getMinRequiredArguments())->getSourceRange(); 6154 return false; 6155 } 6156 if (MD->isVariadic()) { 6157 if (Diagnose) 6158 Diag(MD->getLocation(), diag::note_nontrivial_variadic); 6159 return false; 6160 } 6161 6162 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6163 // A copy/move [constructor or assignment operator] is trivial if 6164 // -- the [member] selected to copy/move each direct base class subobject 6165 // is trivial 6166 // 6167 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6168 // A [default constructor or destructor] is trivial if 6169 // -- all the direct base classes have trivial [default constructors or 6170 // destructors] 6171 for (const auto &BI : RD->bases()) 6172 if (!checkTrivialSubobjectCall(*this, BI.getLocStart(), BI.getType(), 6173 ConstArg, CSM, TSK_BaseClass, Diagnose)) 6174 return false; 6175 6176 // C++11 [class.ctor]p5, C++11 [class.dtor]p5: 6177 // A copy/move [constructor or assignment operator] for a class X is 6178 // trivial if 6179 // -- for each non-static data member of X that is of class type (or array 6180 // thereof), the constructor selected to copy/move that member is 6181 // trivial 6182 // 6183 // C++11 [class.copy]p12, C++11 [class.copy]p25: 6184 // A [default constructor or destructor] is trivial if 6185 // -- for all of the non-static data members of its class that are of class 6186 // type (or array thereof), each such class has a trivial [default 6187 // constructor or destructor] 6188 if (!checkTrivialClassMembers(*this, RD, CSM, ConstArg, Diagnose)) 6189 return false; 6190 6191 // C++11 [class.dtor]p5: 6192 // A destructor is trivial if [...] 6193 // -- the destructor is not virtual 6194 if (CSM == CXXDestructor && MD->isVirtual()) { 6195 if (Diagnose) 6196 Diag(MD->getLocation(), diag::note_nontrivial_virtual_dtor) << RD; 6197 return false; 6198 } 6199 6200 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25: 6201 // A [special member] for class X is trivial if [...] 6202 // -- class X has no virtual functions and no virtual base classes 6203 if (CSM != CXXDestructor && MD->getParent()->isDynamicClass()) { 6204 if (!Diagnose) 6205 return false; 6206 6207 if (RD->getNumVBases()) { 6208 // Check for virtual bases. We already know that the corresponding 6209 // member in all bases is trivial, so vbases must all be direct. 6210 CXXBaseSpecifier &BS = *RD->vbases_begin(); 6211 assert(BS.isVirtual()); 6212 Diag(BS.getLocStart(), diag::note_nontrivial_has_virtual) << RD << 1; 6213 return false; 6214 } 6215 6216 // Must have a virtual method. 6217 for (const auto *MI : RD->methods()) { 6218 if (MI->isVirtual()) { 6219 SourceLocation MLoc = MI->getLocStart(); 6220 Diag(MLoc, diag::note_nontrivial_has_virtual) << RD << 0; 6221 return false; 6222 } 6223 } 6224 6225 llvm_unreachable("dynamic class with no vbases and no virtual functions"); 6226 } 6227 6228 // Looks like it's trivial! 6229 return true; 6230 } 6231 6232 /// \brief Data used with FindHiddenVirtualMethod 6233 namespace { 6234 struct FindHiddenVirtualMethodData { 6235 Sema *S; 6236 CXXMethodDecl *Method; 6237 llvm::SmallPtrSet<const CXXMethodDecl *, 8> OverridenAndUsingBaseMethods; 6238 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6239 }; 6240 } 6241 6242 /// \brief Check whether any most overriden method from MD in Methods 6243 static bool CheckMostOverridenMethods(const CXXMethodDecl *MD, 6244 const llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 6245 if (MD->size_overridden_methods() == 0) 6246 return Methods.count(MD->getCanonicalDecl()); 6247 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6248 E = MD->end_overridden_methods(); 6249 I != E; ++I) 6250 if (CheckMostOverridenMethods(*I, Methods)) 6251 return true; 6252 return false; 6253 } 6254 6255 /// \brief Member lookup function that determines whether a given C++ 6256 /// method overloads virtual methods in a base class without overriding any, 6257 /// to be used with CXXRecordDecl::lookupInBases(). 6258 static bool FindHiddenVirtualMethod(const CXXBaseSpecifier *Specifier, 6259 CXXBasePath &Path, 6260 void *UserData) { 6261 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl(); 6262 6263 FindHiddenVirtualMethodData &Data 6264 = *static_cast<FindHiddenVirtualMethodData*>(UserData); 6265 6266 DeclarationName Name = Data.Method->getDeclName(); 6267 assert(Name.getNameKind() == DeclarationName::Identifier); 6268 6269 bool foundSameNameMethod = false; 6270 SmallVector<CXXMethodDecl *, 8> overloadedMethods; 6271 for (Path.Decls = BaseRecord->lookup(Name); 6272 !Path.Decls.empty(); 6273 Path.Decls = Path.Decls.slice(1)) { 6274 NamedDecl *D = Path.Decls.front(); 6275 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 6276 MD = MD->getCanonicalDecl(); 6277 foundSameNameMethod = true; 6278 // Interested only in hidden virtual methods. 6279 if (!MD->isVirtual()) 6280 continue; 6281 // If the method we are checking overrides a method from its base 6282 // don't warn about the other overloaded methods. Clang deviates from GCC 6283 // by only diagnosing overloads of inherited virtual functions that do not 6284 // override any other virtual functions in the base. GCC's 6285 // -Woverloaded-virtual diagnoses any derived function hiding a virtual 6286 // function from a base class. These cases may be better served by a 6287 // warning (not specific to virtual functions) on call sites when the call 6288 // would select a different function from the base class, were it visible. 6289 // See FIXME in test/SemaCXX/warn-overload-virtual.cpp for an example. 6290 if (!Data.S->IsOverload(Data.Method, MD, false)) 6291 return true; 6292 // Collect the overload only if its hidden. 6293 if (!CheckMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods)) 6294 overloadedMethods.push_back(MD); 6295 } 6296 } 6297 6298 if (foundSameNameMethod) 6299 Data.OverloadedMethods.append(overloadedMethods.begin(), 6300 overloadedMethods.end()); 6301 return foundSameNameMethod; 6302 } 6303 6304 /// \brief Add the most overriden methods from MD to Methods 6305 static void AddMostOverridenMethods(const CXXMethodDecl *MD, 6306 llvm::SmallPtrSetImpl<const CXXMethodDecl *>& Methods) { 6307 if (MD->size_overridden_methods() == 0) 6308 Methods.insert(MD->getCanonicalDecl()); 6309 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 6310 E = MD->end_overridden_methods(); 6311 I != E; ++I) 6312 AddMostOverridenMethods(*I, Methods); 6313 } 6314 6315 /// \brief Check if a method overloads virtual methods in a base class without 6316 /// overriding any. 6317 void Sema::FindHiddenVirtualMethods(CXXMethodDecl *MD, 6318 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6319 if (!MD->getDeclName().isIdentifier()) 6320 return; 6321 6322 CXXBasePaths Paths(/*FindAmbiguities=*/true, // true to look in all bases. 6323 /*bool RecordPaths=*/false, 6324 /*bool DetectVirtual=*/false); 6325 FindHiddenVirtualMethodData Data; 6326 Data.Method = MD; 6327 Data.S = this; 6328 6329 // Keep the base methods that were overriden or introduced in the subclass 6330 // by 'using' in a set. A base method not in this set is hidden. 6331 CXXRecordDecl *DC = MD->getParent(); 6332 DeclContext::lookup_result R = DC->lookup(MD->getDeclName()); 6333 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) { 6334 NamedDecl *ND = *I; 6335 if (UsingShadowDecl *shad = dyn_cast<UsingShadowDecl>(*I)) 6336 ND = shad->getTargetDecl(); 6337 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND)) 6338 AddMostOverridenMethods(MD, Data.OverridenAndUsingBaseMethods); 6339 } 6340 6341 if (DC->lookupInBases(&FindHiddenVirtualMethod, &Data, Paths)) 6342 OverloadedMethods = Data.OverloadedMethods; 6343 } 6344 6345 void Sema::NoteHiddenVirtualMethods(CXXMethodDecl *MD, 6346 SmallVectorImpl<CXXMethodDecl*> &OverloadedMethods) { 6347 for (unsigned i = 0, e = OverloadedMethods.size(); i != e; ++i) { 6348 CXXMethodDecl *overloadedMD = OverloadedMethods[i]; 6349 PartialDiagnostic PD = PDiag( 6350 diag::note_hidden_overloaded_virtual_declared_here) << overloadedMD; 6351 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType()); 6352 Diag(overloadedMD->getLocation(), PD); 6353 } 6354 } 6355 6356 /// \brief Diagnose methods which overload virtual methods in a base class 6357 /// without overriding any. 6358 void Sema::DiagnoseHiddenVirtualMethods(CXXMethodDecl *MD) { 6359 if (MD->isInvalidDecl()) 6360 return; 6361 6362 if (Diags.isIgnored(diag::warn_overloaded_virtual, MD->getLocation())) 6363 return; 6364 6365 SmallVector<CXXMethodDecl *, 8> OverloadedMethods; 6366 FindHiddenVirtualMethods(MD, OverloadedMethods); 6367 if (!OverloadedMethods.empty()) { 6368 Diag(MD->getLocation(), diag::warn_overloaded_virtual) 6369 << MD << (OverloadedMethods.size() > 1); 6370 6371 NoteHiddenVirtualMethods(MD, OverloadedMethods); 6372 } 6373 } 6374 6375 void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, 6376 Decl *TagDecl, 6377 SourceLocation LBrac, 6378 SourceLocation RBrac, 6379 AttributeList *AttrList) { 6380 if (!TagDecl) 6381 return; 6382 6383 AdjustDeclIfTemplate(TagDecl); 6384 6385 for (const AttributeList* l = AttrList; l; l = l->getNext()) { 6386 if (l->getKind() != AttributeList::AT_Visibility) 6387 continue; 6388 l->setInvalid(); 6389 Diag(l->getLoc(), diag::warn_attribute_after_definition_ignored) << 6390 l->getName(); 6391 } 6392 6393 ActOnFields(S, RLoc, TagDecl, llvm::makeArrayRef( 6394 // strict aliasing violation! 6395 reinterpret_cast<Decl**>(FieldCollector->getCurFields()), 6396 FieldCollector->getCurNumFields()), LBrac, RBrac, AttrList); 6397 6398 CheckCompletedCXXClass( 6399 dyn_cast_or_null<CXXRecordDecl>(TagDecl)); 6400 } 6401 6402 /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared 6403 /// special functions, such as the default constructor, copy 6404 /// constructor, or destructor, to the given C++ class (C++ 6405 /// [special]p1). This routine can only be executed just before the 6406 /// definition of the class is complete. 6407 void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) { 6408 if (!ClassDecl->hasUserDeclaredConstructor()) 6409 ++ASTContext::NumImplicitDefaultConstructors; 6410 6411 if (!ClassDecl->hasUserDeclaredCopyConstructor()) { 6412 ++ASTContext::NumImplicitCopyConstructors; 6413 6414 // If the properties or semantics of the copy constructor couldn't be 6415 // determined while the class was being declared, force a declaration 6416 // of it now. 6417 if (ClassDecl->needsOverloadResolutionForCopyConstructor()) 6418 DeclareImplicitCopyConstructor(ClassDecl); 6419 } 6420 6421 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveConstructor()) { 6422 ++ASTContext::NumImplicitMoveConstructors; 6423 6424 if (ClassDecl->needsOverloadResolutionForMoveConstructor()) 6425 DeclareImplicitMoveConstructor(ClassDecl); 6426 } 6427 6428 if (!ClassDecl->hasUserDeclaredCopyAssignment()) { 6429 ++ASTContext::NumImplicitCopyAssignmentOperators; 6430 6431 // If we have a dynamic class, then the copy assignment operator may be 6432 // virtual, so we have to declare it immediately. This ensures that, e.g., 6433 // it shows up in the right place in the vtable and that we diagnose 6434 // problems with the implicit exception specification. 6435 if (ClassDecl->isDynamicClass() || 6436 ClassDecl->needsOverloadResolutionForCopyAssignment()) 6437 DeclareImplicitCopyAssignment(ClassDecl); 6438 } 6439 6440 if (getLangOpts().CPlusPlus11 && ClassDecl->needsImplicitMoveAssignment()) { 6441 ++ASTContext::NumImplicitMoveAssignmentOperators; 6442 6443 // Likewise for the move assignment operator. 6444 if (ClassDecl->isDynamicClass() || 6445 ClassDecl->needsOverloadResolutionForMoveAssignment()) 6446 DeclareImplicitMoveAssignment(ClassDecl); 6447 } 6448 6449 if (!ClassDecl->hasUserDeclaredDestructor()) { 6450 ++ASTContext::NumImplicitDestructors; 6451 6452 // If we have a dynamic class, then the destructor may be virtual, so we 6453 // have to declare the destructor immediately. This ensures that, e.g., it 6454 // shows up in the right place in the vtable and that we diagnose problems 6455 // with the implicit exception specification. 6456 if (ClassDecl->isDynamicClass() || 6457 ClassDecl->needsOverloadResolutionForDestructor()) 6458 DeclareImplicitDestructor(ClassDecl); 6459 } 6460 } 6461 6462 unsigned Sema::ActOnReenterTemplateScope(Scope *S, Decl *D) { 6463 if (!D) 6464 return 0; 6465 6466 // The order of template parameters is not important here. All names 6467 // get added to the same scope. 6468 SmallVector<TemplateParameterList *, 4> ParameterLists; 6469 6470 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 6471 D = TD->getTemplatedDecl(); 6472 6473 if (auto *PSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) 6474 ParameterLists.push_back(PSD->getTemplateParameters()); 6475 6476 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) { 6477 for (unsigned i = 0; i < DD->getNumTemplateParameterLists(); ++i) 6478 ParameterLists.push_back(DD->getTemplateParameterList(i)); 6479 6480 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 6481 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) 6482 ParameterLists.push_back(FTD->getTemplateParameters()); 6483 } 6484 } 6485 6486 if (TagDecl *TD = dyn_cast<TagDecl>(D)) { 6487 for (unsigned i = 0; i < TD->getNumTemplateParameterLists(); ++i) 6488 ParameterLists.push_back(TD->getTemplateParameterList(i)); 6489 6490 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TD)) { 6491 if (ClassTemplateDecl *CTD = RD->getDescribedClassTemplate()) 6492 ParameterLists.push_back(CTD->getTemplateParameters()); 6493 } 6494 } 6495 6496 unsigned Count = 0; 6497 for (TemplateParameterList *Params : ParameterLists) { 6498 if (Params->size() > 0) 6499 // Ignore explicit specializations; they don't contribute to the template 6500 // depth. 6501 ++Count; 6502 for (NamedDecl *Param : *Params) { 6503 if (Param->getDeclName()) { 6504 S->AddDecl(Param); 6505 IdResolver.AddDecl(Param); 6506 } 6507 } 6508 } 6509 6510 return Count; 6511 } 6512 6513 void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6514 if (!RecordD) return; 6515 AdjustDeclIfTemplate(RecordD); 6516 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD); 6517 PushDeclContext(S, Record); 6518 } 6519 6520 void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, Decl *RecordD) { 6521 if (!RecordD) return; 6522 PopDeclContext(); 6523 } 6524 6525 /// This is used to implement the constant expression evaluation part of the 6526 /// attribute enable_if extension. There is nothing in standard C++ which would 6527 /// require reentering parameters. 6528 void Sema::ActOnReenterCXXMethodParameter(Scope *S, ParmVarDecl *Param) { 6529 if (!Param) 6530 return; 6531 6532 S->AddDecl(Param); 6533 if (Param->getDeclName()) 6534 IdResolver.AddDecl(Param); 6535 } 6536 6537 /// ActOnStartDelayedCXXMethodDeclaration - We have completed 6538 /// parsing a top-level (non-nested) C++ class, and we are now 6539 /// parsing those parts of the given Method declaration that could 6540 /// not be parsed earlier (C++ [class.mem]p2), such as default 6541 /// arguments. This action should enter the scope of the given 6542 /// Method declaration as if we had just parsed the qualified method 6543 /// name. However, it should not bring the parameters into scope; 6544 /// that will be performed by ActOnDelayedCXXMethodParameter. 6545 void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6546 } 6547 6548 /// ActOnDelayedCXXMethodParameter - We've already started a delayed 6549 /// C++ method declaration. We're (re-)introducing the given 6550 /// function parameter into scope for use in parsing later parts of 6551 /// the method declaration. For example, we could see an 6552 /// ActOnParamDefaultArgument event for this parameter. 6553 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { 6554 if (!ParamD) 6555 return; 6556 6557 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); 6558 6559 // If this parameter has an unparsed default argument, clear it out 6560 // to make way for the parsed default argument. 6561 if (Param->hasUnparsedDefaultArg()) 6562 Param->setDefaultArg(nullptr); 6563 6564 S->AddDecl(Param); 6565 if (Param->getDeclName()) 6566 IdResolver.AddDecl(Param); 6567 } 6568 6569 /// ActOnFinishDelayedCXXMethodDeclaration - We have finished 6570 /// processing the delayed method declaration for Method. The method 6571 /// declaration is now considered finished. There may be a separate 6572 /// ActOnStartOfFunctionDef action later (not necessarily 6573 /// immediately!) for this method, if it was also defined inside the 6574 /// class body. 6575 void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, Decl *MethodD) { 6576 if (!MethodD) 6577 return; 6578 6579 AdjustDeclIfTemplate(MethodD); 6580 6581 FunctionDecl *Method = cast<FunctionDecl>(MethodD); 6582 6583 // Now that we have our default arguments, check the constructor 6584 // again. It could produce additional diagnostics or affect whether 6585 // the class has implicitly-declared destructors, among other 6586 // things. 6587 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) 6588 CheckConstructor(Constructor); 6589 6590 // Check the default arguments, which we may have added. 6591 if (!Method->isInvalidDecl()) 6592 CheckCXXDefaultArguments(Method); 6593 } 6594 6595 /// CheckConstructorDeclarator - Called by ActOnDeclarator to check 6596 /// the well-formedness of the constructor declarator @p D with type @p 6597 /// R. If there are any errors in the declarator, this routine will 6598 /// emit diagnostics and set the invalid bit to true. In any case, the type 6599 /// will be updated to reflect a well-formed type for the constructor and 6600 /// returned. 6601 QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R, 6602 StorageClass &SC) { 6603 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 6604 6605 // C++ [class.ctor]p3: 6606 // A constructor shall not be virtual (10.3) or static (9.4). A 6607 // constructor can be invoked for a const, volatile or const 6608 // volatile object. A constructor shall not be declared const, 6609 // volatile, or const volatile (9.3.2). 6610 if (isVirtual) { 6611 if (!D.isInvalidType()) 6612 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6613 << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc()) 6614 << SourceRange(D.getIdentifierLoc()); 6615 D.setInvalidType(); 6616 } 6617 if (SC == SC_Static) { 6618 if (!D.isInvalidType()) 6619 Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) 6620 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6621 << SourceRange(D.getIdentifierLoc()); 6622 D.setInvalidType(); 6623 SC = SC_None; 6624 } 6625 6626 if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6627 diagnoseIgnoredQualifiers( 6628 diag::err_constructor_return_type, TypeQuals, SourceLocation(), 6629 D.getDeclSpec().getConstSpecLoc(), D.getDeclSpec().getVolatileSpecLoc(), 6630 D.getDeclSpec().getRestrictSpecLoc(), 6631 D.getDeclSpec().getAtomicSpecLoc()); 6632 D.setInvalidType(); 6633 } 6634 6635 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6636 if (FTI.TypeQuals != 0) { 6637 if (FTI.TypeQuals & Qualifiers::Const) 6638 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6639 << "const" << SourceRange(D.getIdentifierLoc()); 6640 if (FTI.TypeQuals & Qualifiers::Volatile) 6641 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6642 << "volatile" << SourceRange(D.getIdentifierLoc()); 6643 if (FTI.TypeQuals & Qualifiers::Restrict) 6644 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) 6645 << "restrict" << SourceRange(D.getIdentifierLoc()); 6646 D.setInvalidType(); 6647 } 6648 6649 // C++0x [class.ctor]p4: 6650 // A constructor shall not be declared with a ref-qualifier. 6651 if (FTI.hasRefQualifier()) { 6652 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_constructor) 6653 << FTI.RefQualifierIsLValueRef 6654 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6655 D.setInvalidType(); 6656 } 6657 6658 // Rebuild the function type "R" without any type qualifiers (in 6659 // case any of the errors above fired) and with "void" as the 6660 // return type, since constructors don't have return types. 6661 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6662 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType()) 6663 return R; 6664 6665 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6666 EPI.TypeQuals = 0; 6667 EPI.RefQualifier = RQ_None; 6668 6669 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI); 6670 } 6671 6672 /// CheckConstructor - Checks a fully-formed constructor for 6673 /// well-formedness, issuing any diagnostics required. Returns true if 6674 /// the constructor declarator is invalid. 6675 void Sema::CheckConstructor(CXXConstructorDecl *Constructor) { 6676 CXXRecordDecl *ClassDecl 6677 = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext()); 6678 if (!ClassDecl) 6679 return Constructor->setInvalidDecl(); 6680 6681 // C++ [class.copy]p3: 6682 // A declaration of a constructor for a class X is ill-formed if 6683 // its first parameter is of type (optionally cv-qualified) X and 6684 // either there are no other parameters or else all other 6685 // parameters have default arguments. 6686 if (!Constructor->isInvalidDecl() && 6687 ((Constructor->getNumParams() == 1) || 6688 (Constructor->getNumParams() > 1 && 6689 Constructor->getParamDecl(1)->hasDefaultArg())) && 6690 Constructor->getTemplateSpecializationKind() 6691 != TSK_ImplicitInstantiation) { 6692 QualType ParamType = Constructor->getParamDecl(0)->getType(); 6693 QualType ClassTy = Context.getTagDeclType(ClassDecl); 6694 if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { 6695 SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation(); 6696 const char *ConstRef 6697 = Constructor->getParamDecl(0)->getIdentifier() ? "const &" 6698 : " const &"; 6699 Diag(ParamLoc, diag::err_constructor_byvalue_arg) 6700 << FixItHint::CreateInsertion(ParamLoc, ConstRef); 6701 6702 // FIXME: Rather that making the constructor invalid, we should endeavor 6703 // to fix the type. 6704 Constructor->setInvalidDecl(); 6705 } 6706 } 6707 } 6708 6709 /// CheckDestructor - Checks a fully-formed destructor definition for 6710 /// well-formedness, issuing any diagnostics required. Returns true 6711 /// on error. 6712 bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { 6713 CXXRecordDecl *RD = Destructor->getParent(); 6714 6715 if (!Destructor->getOperatorDelete() && Destructor->isVirtual()) { 6716 SourceLocation Loc; 6717 6718 if (!Destructor->isImplicit()) 6719 Loc = Destructor->getLocation(); 6720 else 6721 Loc = RD->getLocation(); 6722 6723 // If we have a virtual destructor, look up the deallocation function 6724 FunctionDecl *OperatorDelete = nullptr; 6725 DeclarationName Name = 6726 Context.DeclarationNames.getCXXOperatorName(OO_Delete); 6727 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete)) 6728 return true; 6729 // If there's no class-specific operator delete, look up the global 6730 // non-array delete. 6731 if (!OperatorDelete) 6732 OperatorDelete = FindUsualDeallocationFunction(Loc, true, Name); 6733 6734 MarkFunctionReferenced(Loc, OperatorDelete); 6735 6736 Destructor->setOperatorDelete(OperatorDelete); 6737 } 6738 6739 return false; 6740 } 6741 6742 /// CheckDestructorDeclarator - Called by ActOnDeclarator to check 6743 /// the well-formednes of the destructor declarator @p D with type @p 6744 /// R. If there are any errors in the declarator, this routine will 6745 /// emit diagnostics and set the declarator to invalid. Even if this happens, 6746 /// will be updated to reflect a well-formed type for the destructor and 6747 /// returned. 6748 QualType Sema::CheckDestructorDeclarator(Declarator &D, QualType R, 6749 StorageClass& SC) { 6750 // C++ [class.dtor]p1: 6751 // [...] A typedef-name that names a class is a class-name 6752 // (7.1.3); however, a typedef-name that names a class shall not 6753 // be used as the identifier in the declarator for a destructor 6754 // declaration. 6755 QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName); 6756 if (const TypedefType *TT = DeclaratorType->getAs<TypedefType>()) 6757 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6758 << DeclaratorType << isa<TypeAliasDecl>(TT->getDecl()); 6759 else if (const TemplateSpecializationType *TST = 6760 DeclaratorType->getAs<TemplateSpecializationType>()) 6761 if (TST->isTypeAlias()) 6762 Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) 6763 << DeclaratorType << 1; 6764 6765 // C++ [class.dtor]p2: 6766 // A destructor is used to destroy objects of its class type. A 6767 // destructor takes no parameters, and no return type can be 6768 // specified for it (not even void). The address of a destructor 6769 // shall not be taken. A destructor shall not be static. A 6770 // destructor can be invoked for a const, volatile or const 6771 // volatile object. A destructor shall not be declared const, 6772 // volatile or const volatile (9.3.2). 6773 if (SC == SC_Static) { 6774 if (!D.isInvalidType()) 6775 Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be) 6776 << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6777 << SourceRange(D.getIdentifierLoc()) 6778 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6779 6780 SC = SC_None; 6781 } 6782 if (!D.isInvalidType()) { 6783 // Destructors don't have return types, but the parser will 6784 // happily parse something like: 6785 // 6786 // class X { 6787 // float ~X(); 6788 // }; 6789 // 6790 // The return type will be eliminated later. 6791 if (D.getDeclSpec().hasTypeSpecifier()) 6792 Diag(D.getIdentifierLoc(), diag::err_destructor_return_type) 6793 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6794 << SourceRange(D.getIdentifierLoc()); 6795 else if (unsigned TypeQuals = D.getDeclSpec().getTypeQualifiers()) { 6796 diagnoseIgnoredQualifiers(diag::err_destructor_return_type, TypeQuals, 6797 SourceLocation(), 6798 D.getDeclSpec().getConstSpecLoc(), 6799 D.getDeclSpec().getVolatileSpecLoc(), 6800 D.getDeclSpec().getRestrictSpecLoc(), 6801 D.getDeclSpec().getAtomicSpecLoc()); 6802 D.setInvalidType(); 6803 } 6804 } 6805 6806 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6807 if (FTI.TypeQuals != 0 && !D.isInvalidType()) { 6808 if (FTI.TypeQuals & Qualifiers::Const) 6809 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6810 << "const" << SourceRange(D.getIdentifierLoc()); 6811 if (FTI.TypeQuals & Qualifiers::Volatile) 6812 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6813 << "volatile" << SourceRange(D.getIdentifierLoc()); 6814 if (FTI.TypeQuals & Qualifiers::Restrict) 6815 Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) 6816 << "restrict" << SourceRange(D.getIdentifierLoc()); 6817 D.setInvalidType(); 6818 } 6819 6820 // C++0x [class.dtor]p2: 6821 // A destructor shall not be declared with a ref-qualifier. 6822 if (FTI.hasRefQualifier()) { 6823 Diag(FTI.getRefQualifierLoc(), diag::err_ref_qualifier_destructor) 6824 << FTI.RefQualifierIsLValueRef 6825 << FixItHint::CreateRemoval(FTI.getRefQualifierLoc()); 6826 D.setInvalidType(); 6827 } 6828 6829 // Make sure we don't have any parameters. 6830 if (FTIHasNonVoidParameters(FTI)) { 6831 Diag(D.getIdentifierLoc(), diag::err_destructor_with_params); 6832 6833 // Delete the parameters. 6834 FTI.freeParams(); 6835 D.setInvalidType(); 6836 } 6837 6838 // Make sure the destructor isn't variadic. 6839 if (FTI.isVariadic) { 6840 Diag(D.getIdentifierLoc(), diag::err_destructor_variadic); 6841 D.setInvalidType(); 6842 } 6843 6844 // Rebuild the function type "R" without any type qualifiers or 6845 // parameters (in case any of the errors above fired) and with 6846 // "void" as the return type, since destructors don't have return 6847 // types. 6848 if (!D.isInvalidType()) 6849 return R; 6850 6851 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6852 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo(); 6853 EPI.Variadic = false; 6854 EPI.TypeQuals = 0; 6855 EPI.RefQualifier = RQ_None; 6856 return Context.getFunctionType(Context.VoidTy, None, EPI); 6857 } 6858 6859 static void extendLeft(SourceRange &R, const SourceRange &Before) { 6860 if (Before.isInvalid()) 6861 return; 6862 R.setBegin(Before.getBegin()); 6863 if (R.getEnd().isInvalid()) 6864 R.setEnd(Before.getEnd()); 6865 } 6866 6867 static void extendRight(SourceRange &R, const SourceRange &After) { 6868 if (After.isInvalid()) 6869 return; 6870 if (R.getBegin().isInvalid()) 6871 R.setBegin(After.getBegin()); 6872 R.setEnd(After.getEnd()); 6873 } 6874 6875 /// CheckConversionDeclarator - Called by ActOnDeclarator to check the 6876 /// well-formednes of the conversion function declarator @p D with 6877 /// type @p R. If there are any errors in the declarator, this routine 6878 /// will emit diagnostics and return true. Otherwise, it will return 6879 /// false. Either way, the type @p R will be updated to reflect a 6880 /// well-formed type for the conversion operator. 6881 void Sema::CheckConversionDeclarator(Declarator &D, QualType &R, 6882 StorageClass& SC) { 6883 // C++ [class.conv.fct]p1: 6884 // Neither parameter types nor return type can be specified. The 6885 // type of a conversion function (8.3.5) is "function taking no 6886 // parameter returning conversion-type-id." 6887 if (SC == SC_Static) { 6888 if (!D.isInvalidType()) 6889 Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member) 6890 << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) 6891 << D.getName().getSourceRange(); 6892 D.setInvalidType(); 6893 SC = SC_None; 6894 } 6895 6896 TypeSourceInfo *ConvTSI = nullptr; 6897 QualType ConvType = 6898 GetTypeFromParser(D.getName().ConversionFunctionId, &ConvTSI); 6899 6900 if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) { 6901 // Conversion functions don't have return types, but the parser will 6902 // happily parse something like: 6903 // 6904 // class X { 6905 // float operator bool(); 6906 // }; 6907 // 6908 // The return type will be changed later anyway. 6909 Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type) 6910 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 6911 << SourceRange(D.getIdentifierLoc()); 6912 D.setInvalidType(); 6913 } 6914 6915 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); 6916 6917 // Make sure we don't have any parameters. 6918 if (Proto->getNumParams() > 0) { 6919 Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params); 6920 6921 // Delete the parameters. 6922 D.getFunctionTypeInfo().freeParams(); 6923 D.setInvalidType(); 6924 } else if (Proto->isVariadic()) { 6925 Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic); 6926 D.setInvalidType(); 6927 } 6928 6929 // Diagnose "&operator bool()" and other such nonsense. This 6930 // is actually a gcc extension which we don't support. 6931 if (Proto->getReturnType() != ConvType) { 6932 bool NeedsTypedef = false; 6933 SourceRange Before, After; 6934 6935 // Walk the chunks and extract information on them for our diagnostic. 6936 bool PastFunctionChunk = false; 6937 for (auto &Chunk : D.type_objects()) { 6938 switch (Chunk.Kind) { 6939 case DeclaratorChunk::Function: 6940 if (!PastFunctionChunk) { 6941 if (Chunk.Fun.HasTrailingReturnType) { 6942 TypeSourceInfo *TRT = nullptr; 6943 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT); 6944 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange()); 6945 } 6946 PastFunctionChunk = true; 6947 break; 6948 } 6949 // Fall through. 6950 case DeclaratorChunk::Array: 6951 NeedsTypedef = true; 6952 extendRight(After, Chunk.getSourceRange()); 6953 break; 6954 6955 case DeclaratorChunk::Pointer: 6956 case DeclaratorChunk::BlockPointer: 6957 case DeclaratorChunk::Reference: 6958 case DeclaratorChunk::MemberPointer: 6959 extendLeft(Before, Chunk.getSourceRange()); 6960 break; 6961 6962 case DeclaratorChunk::Paren: 6963 extendLeft(Before, Chunk.Loc); 6964 extendRight(After, Chunk.EndLoc); 6965 break; 6966 } 6967 } 6968 6969 SourceLocation Loc = Before.isValid() ? Before.getBegin() : 6970 After.isValid() ? After.getBegin() : 6971 D.getIdentifierLoc(); 6972 auto &&DB = Diag(Loc, diag::err_conv_function_with_complex_decl); 6973 DB << Before << After; 6974 6975 if (!NeedsTypedef) { 6976 DB << /*don't need a typedef*/0; 6977 6978 // If we can provide a correct fix-it hint, do so. 6979 if (After.isInvalid() && ConvTSI) { 6980 SourceLocation InsertLoc = 6981 PP.getLocForEndOfToken(ConvTSI->getTypeLoc().getLocEnd()); 6982 DB << FixItHint::CreateInsertion(InsertLoc, " ") 6983 << FixItHint::CreateInsertionFromRange( 6984 InsertLoc, CharSourceRange::getTokenRange(Before)) 6985 << FixItHint::CreateRemoval(Before); 6986 } 6987 } else if (!Proto->getReturnType()->isDependentType()) { 6988 DB << /*typedef*/1 << Proto->getReturnType(); 6989 } else if (getLangOpts().CPlusPlus11) { 6990 DB << /*alias template*/2 << Proto->getReturnType(); 6991 } else { 6992 DB << /*might not be fixable*/3; 6993 } 6994 6995 // Recover by incorporating the other type chunks into the result type. 6996 // Note, this does *not* change the name of the function. This is compatible 6997 // with the GCC extension: 6998 // struct S { &operator int(); } s; 6999 // int &r = s.operator int(); // ok in GCC 7000 // S::operator int&() {} // error in GCC, function name is 'operator int'. 7001 ConvType = Proto->getReturnType(); 7002 } 7003 7004 // C++ [class.conv.fct]p4: 7005 // The conversion-type-id shall not represent a function type nor 7006 // an array type. 7007 if (ConvType->isArrayType()) { 7008 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array); 7009 ConvType = Context.getPointerType(ConvType); 7010 D.setInvalidType(); 7011 } else if (ConvType->isFunctionType()) { 7012 Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function); 7013 ConvType = Context.getPointerType(ConvType); 7014 D.setInvalidType(); 7015 } 7016 7017 // Rebuild the function type "R" without any parameters (in case any 7018 // of the errors above fired) and with the conversion type as the 7019 // return type. 7020 if (D.isInvalidType()) 7021 R = Context.getFunctionType(ConvType, None, Proto->getExtProtoInfo()); 7022 7023 // C++0x explicit conversion operators. 7024 if (D.getDeclSpec().isExplicitSpecified()) 7025 Diag(D.getDeclSpec().getExplicitSpecLoc(), 7026 getLangOpts().CPlusPlus11 ? 7027 diag::warn_cxx98_compat_explicit_conversion_functions : 7028 diag::ext_explicit_conversion_functions) 7029 << SourceRange(D.getDeclSpec().getExplicitSpecLoc()); 7030 } 7031 7032 /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete 7033 /// the declaration of the given C++ conversion function. This routine 7034 /// is responsible for recording the conversion function in the C++ 7035 /// class, if possible. 7036 Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) { 7037 assert(Conversion && "Expected to receive a conversion function declaration"); 7038 7039 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext()); 7040 7041 // Make sure we aren't redeclaring the conversion function. 7042 QualType ConvType = Context.getCanonicalType(Conversion->getConversionType()); 7043 7044 // C++ [class.conv.fct]p1: 7045 // [...] A conversion function is never used to convert a 7046 // (possibly cv-qualified) object to the (possibly cv-qualified) 7047 // same object type (or a reference to it), to a (possibly 7048 // cv-qualified) base class of that type (or a reference to it), 7049 // or to (possibly cv-qualified) void. 7050 // FIXME: Suppress this warning if the conversion function ends up being a 7051 // virtual function that overrides a virtual function in a base class. 7052 QualType ClassType 7053 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 7054 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>()) 7055 ConvType = ConvTypeRef->getPointeeType(); 7056 if (Conversion->getTemplateSpecializationKind() != TSK_Undeclared && 7057 Conversion->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) 7058 /* Suppress diagnostics for instantiations. */; 7059 else if (ConvType->isRecordType()) { 7060 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); 7061 if (ConvType == ClassType) 7062 Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used) 7063 << ClassType; 7064 else if (IsDerivedFrom(ClassType, ConvType)) 7065 Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used) 7066 << ClassType << ConvType; 7067 } else if (ConvType->isVoidType()) { 7068 Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used) 7069 << ClassType << ConvType; 7070 } 7071 7072 if (FunctionTemplateDecl *ConversionTemplate 7073 = Conversion->getDescribedFunctionTemplate()) 7074 return ConversionTemplate; 7075 7076 return Conversion; 7077 } 7078 7079 //===----------------------------------------------------------------------===// 7080 // Namespace Handling 7081 //===----------------------------------------------------------------------===// 7082 7083 /// \brief Diagnose a mismatch in 'inline' qualifiers when a namespace is 7084 /// reopened. 7085 static void DiagnoseNamespaceInlineMismatch(Sema &S, SourceLocation KeywordLoc, 7086 SourceLocation Loc, 7087 IdentifierInfo *II, bool *IsInline, 7088 NamespaceDecl *PrevNS) { 7089 assert(*IsInline != PrevNS->isInline()); 7090 7091 // HACK: Work around a bug in libstdc++4.6's <atomic>, where 7092 // std::__atomic[0,1,2] are defined as non-inline namespaces, then reopened as 7093 // inline namespaces, with the intention of bringing names into namespace std. 7094 // 7095 // We support this just well enough to get that case working; this is not 7096 // sufficient to support reopening namespaces as inline in general. 7097 if (*IsInline && II && II->getName().startswith("__atomic") && 7098 S.getSourceManager().isInSystemHeader(Loc)) { 7099 // Mark all prior declarations of the namespace as inline. 7100 for (NamespaceDecl *NS = PrevNS->getMostRecentDecl(); NS; 7101 NS = NS->getPreviousDecl()) 7102 NS->setInline(*IsInline); 7103 // Patch up the lookup table for the containing namespace. This isn't really 7104 // correct, but it's good enough for this particular case. 7105 for (auto *I : PrevNS->decls()) 7106 if (auto *ND = dyn_cast<NamedDecl>(I)) 7107 PrevNS->getParent()->makeDeclVisibleInContext(ND); 7108 return; 7109 } 7110 7111 if (PrevNS->isInline()) 7112 // The user probably just forgot the 'inline', so suggest that it 7113 // be added back. 7114 S.Diag(Loc, diag::warn_inline_namespace_reopened_noninline) 7115 << FixItHint::CreateInsertion(KeywordLoc, "inline "); 7116 else 7117 S.Diag(Loc, diag::err_inline_namespace_mismatch) << *IsInline; 7118 7119 S.Diag(PrevNS->getLocation(), diag::note_previous_definition); 7120 *IsInline = PrevNS->isInline(); 7121 } 7122 7123 /// ActOnStartNamespaceDef - This is called at the start of a namespace 7124 /// definition. 7125 Decl *Sema::ActOnStartNamespaceDef(Scope *NamespcScope, 7126 SourceLocation InlineLoc, 7127 SourceLocation NamespaceLoc, 7128 SourceLocation IdentLoc, 7129 IdentifierInfo *II, 7130 SourceLocation LBrace, 7131 AttributeList *AttrList) { 7132 SourceLocation StartLoc = InlineLoc.isValid() ? InlineLoc : NamespaceLoc; 7133 // For anonymous namespace, take the location of the left brace. 7134 SourceLocation Loc = II ? IdentLoc : LBrace; 7135 bool IsInline = InlineLoc.isValid(); 7136 bool IsInvalid = false; 7137 bool IsStd = false; 7138 bool AddToKnown = false; 7139 Scope *DeclRegionScope = NamespcScope->getParent(); 7140 7141 NamespaceDecl *PrevNS = nullptr; 7142 if (II) { 7143 // C++ [namespace.def]p2: 7144 // The identifier in an original-namespace-definition shall not 7145 // have been previously defined in the declarative region in 7146 // which the original-namespace-definition appears. The 7147 // identifier in an original-namespace-definition is the name of 7148 // the namespace. Subsequently in that declarative region, it is 7149 // treated as an original-namespace-name. 7150 // 7151 // Since namespace names are unique in their scope, and we don't 7152 // look through using directives, just look for any ordinary names. 7153 7154 const unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Member | 7155 Decl::IDNS_Type | Decl::IDNS_Using | Decl::IDNS_Tag | 7156 Decl::IDNS_Namespace; 7157 NamedDecl *PrevDecl = nullptr; 7158 DeclContext::lookup_result R = CurContext->getRedeclContext()->lookup(II); 7159 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; 7160 ++I) { 7161 if ((*I)->getIdentifierNamespace() & IDNS) { 7162 PrevDecl = *I; 7163 break; 7164 } 7165 } 7166 7167 PrevNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl); 7168 7169 if (PrevNS) { 7170 // This is an extended namespace definition. 7171 if (IsInline != PrevNS->isInline()) 7172 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, Loc, II, 7173 &IsInline, PrevNS); 7174 } else if (PrevDecl) { 7175 // This is an invalid name redefinition. 7176 Diag(Loc, diag::err_redefinition_different_kind) 7177 << II; 7178 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 7179 IsInvalid = true; 7180 // Continue on to push Namespc as current DeclContext and return it. 7181 } else if (II->isStr("std") && 7182 CurContext->getRedeclContext()->isTranslationUnit()) { 7183 // This is the first "real" definition of the namespace "std", so update 7184 // our cache of the "std" namespace to point at this definition. 7185 PrevNS = getStdNamespace(); 7186 IsStd = true; 7187 AddToKnown = !IsInline; 7188 } else { 7189 // We've seen this namespace for the first time. 7190 AddToKnown = !IsInline; 7191 } 7192 } else { 7193 // Anonymous namespaces. 7194 7195 // Determine whether the parent already has an anonymous namespace. 7196 DeclContext *Parent = CurContext->getRedeclContext(); 7197 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7198 PrevNS = TU->getAnonymousNamespace(); 7199 } else { 7200 NamespaceDecl *ND = cast<NamespaceDecl>(Parent); 7201 PrevNS = ND->getAnonymousNamespace(); 7202 } 7203 7204 if (PrevNS && IsInline != PrevNS->isInline()) 7205 DiagnoseNamespaceInlineMismatch(*this, NamespaceLoc, NamespaceLoc, II, 7206 &IsInline, PrevNS); 7207 } 7208 7209 NamespaceDecl *Namespc = NamespaceDecl::Create(Context, CurContext, IsInline, 7210 StartLoc, Loc, II, PrevNS); 7211 if (IsInvalid) 7212 Namespc->setInvalidDecl(); 7213 7214 ProcessDeclAttributeList(DeclRegionScope, Namespc, AttrList); 7215 7216 // FIXME: Should we be merging attributes? 7217 if (const VisibilityAttr *Attr = Namespc->getAttr<VisibilityAttr>()) 7218 PushNamespaceVisibilityAttr(Attr, Loc); 7219 7220 if (IsStd) 7221 StdNamespace = Namespc; 7222 if (AddToKnown) 7223 KnownNamespaces[Namespc] = false; 7224 7225 if (II) { 7226 PushOnScopeChains(Namespc, DeclRegionScope); 7227 } else { 7228 // Link the anonymous namespace into its parent. 7229 DeclContext *Parent = CurContext->getRedeclContext(); 7230 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { 7231 TU->setAnonymousNamespace(Namespc); 7232 } else { 7233 cast<NamespaceDecl>(Parent)->setAnonymousNamespace(Namespc); 7234 } 7235 7236 CurContext->addDecl(Namespc); 7237 7238 // C++ [namespace.unnamed]p1. An unnamed-namespace-definition 7239 // behaves as if it were replaced by 7240 // namespace unique { /* empty body */ } 7241 // using namespace unique; 7242 // namespace unique { namespace-body } 7243 // where all occurrences of 'unique' in a translation unit are 7244 // replaced by the same identifier and this identifier differs 7245 // from all other identifiers in the entire program. 7246 7247 // We just create the namespace with an empty name and then add an 7248 // implicit using declaration, just like the standard suggests. 7249 // 7250 // CodeGen enforces the "universally unique" aspect by giving all 7251 // declarations semantically contained within an anonymous 7252 // namespace internal linkage. 7253 7254 if (!PrevNS) { 7255 UsingDirectiveDecl* UD 7256 = UsingDirectiveDecl::Create(Context, Parent, 7257 /* 'using' */ LBrace, 7258 /* 'namespace' */ SourceLocation(), 7259 /* qualifier */ NestedNameSpecifierLoc(), 7260 /* identifier */ SourceLocation(), 7261 Namespc, 7262 /* Ancestor */ Parent); 7263 UD->setImplicit(); 7264 Parent->addDecl(UD); 7265 } 7266 } 7267 7268 ActOnDocumentableDecl(Namespc); 7269 7270 // Although we could have an invalid decl (i.e. the namespace name is a 7271 // redefinition), push it as current DeclContext and try to continue parsing. 7272 // FIXME: We should be able to push Namespc here, so that the each DeclContext 7273 // for the namespace has the declarations that showed up in that particular 7274 // namespace definition. 7275 PushDeclContext(NamespcScope, Namespc); 7276 return Namespc; 7277 } 7278 7279 /// getNamespaceDecl - Returns the namespace a decl represents. If the decl 7280 /// is a namespace alias, returns the namespace it points to. 7281 static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) { 7282 if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D)) 7283 return AD->getNamespace(); 7284 return dyn_cast_or_null<NamespaceDecl>(D); 7285 } 7286 7287 /// ActOnFinishNamespaceDef - This callback is called after a namespace is 7288 /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. 7289 void Sema::ActOnFinishNamespaceDef(Decl *Dcl, SourceLocation RBrace) { 7290 NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl); 7291 assert(Namespc && "Invalid parameter, expected NamespaceDecl"); 7292 Namespc->setRBraceLoc(RBrace); 7293 PopDeclContext(); 7294 if (Namespc->hasAttr<VisibilityAttr>()) 7295 PopPragmaVisibility(true, RBrace); 7296 } 7297 7298 CXXRecordDecl *Sema::getStdBadAlloc() const { 7299 return cast_or_null<CXXRecordDecl>( 7300 StdBadAlloc.get(Context.getExternalSource())); 7301 } 7302 7303 NamespaceDecl *Sema::getStdNamespace() const { 7304 return cast_or_null<NamespaceDecl>( 7305 StdNamespace.get(Context.getExternalSource())); 7306 } 7307 7308 /// \brief Retrieve the special "std" namespace, which may require us to 7309 /// implicitly define the namespace. 7310 NamespaceDecl *Sema::getOrCreateStdNamespace() { 7311 if (!StdNamespace) { 7312 // The "std" namespace has not yet been defined, so build one implicitly. 7313 StdNamespace = NamespaceDecl::Create(Context, 7314 Context.getTranslationUnitDecl(), 7315 /*Inline=*/false, 7316 SourceLocation(), SourceLocation(), 7317 &PP.getIdentifierTable().get("std"), 7318 /*PrevDecl=*/nullptr); 7319 getStdNamespace()->setImplicit(true); 7320 } 7321 7322 return getStdNamespace(); 7323 } 7324 7325 bool Sema::isStdInitializerList(QualType Ty, QualType *Element) { 7326 assert(getLangOpts().CPlusPlus && 7327 "Looking for std::initializer_list outside of C++."); 7328 7329 // We're looking for implicit instantiations of 7330 // template <typename E> class std::initializer_list. 7331 7332 if (!StdNamespace) // If we haven't seen namespace std yet, this can't be it. 7333 return false; 7334 7335 ClassTemplateDecl *Template = nullptr; 7336 const TemplateArgument *Arguments = nullptr; 7337 7338 if (const RecordType *RT = Ty->getAs<RecordType>()) { 7339 7340 ClassTemplateSpecializationDecl *Specialization = 7341 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()); 7342 if (!Specialization) 7343 return false; 7344 7345 Template = Specialization->getSpecializedTemplate(); 7346 Arguments = Specialization->getTemplateArgs().data(); 7347 } else if (const TemplateSpecializationType *TST = 7348 Ty->getAs<TemplateSpecializationType>()) { 7349 Template = dyn_cast_or_null<ClassTemplateDecl>( 7350 TST->getTemplateName().getAsTemplateDecl()); 7351 Arguments = TST->getArgs(); 7352 } 7353 if (!Template) 7354 return false; 7355 7356 if (!StdInitializerList) { 7357 // Haven't recognized std::initializer_list yet, maybe this is it. 7358 CXXRecordDecl *TemplateClass = Template->getTemplatedDecl(); 7359 if (TemplateClass->getIdentifier() != 7360 &PP.getIdentifierTable().get("initializer_list") || 7361 !getStdNamespace()->InEnclosingNamespaceSetOf( 7362 TemplateClass->getDeclContext())) 7363 return false; 7364 // This is a template called std::initializer_list, but is it the right 7365 // template? 7366 TemplateParameterList *Params = Template->getTemplateParameters(); 7367 if (Params->getMinRequiredArguments() != 1) 7368 return false; 7369 if (!isa<TemplateTypeParmDecl>(Params->getParam(0))) 7370 return false; 7371 7372 // It's the right template. 7373 StdInitializerList = Template; 7374 } 7375 7376 if (Template->getCanonicalDecl() != StdInitializerList->getCanonicalDecl()) 7377 return false; 7378 7379 // This is an instance of std::initializer_list. Find the argument type. 7380 if (Element) 7381 *Element = Arguments[0].getAsType(); 7382 return true; 7383 } 7384 7385 static ClassTemplateDecl *LookupStdInitializerList(Sema &S, SourceLocation Loc){ 7386 NamespaceDecl *Std = S.getStdNamespace(); 7387 if (!Std) { 7388 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7389 return nullptr; 7390 } 7391 7392 LookupResult Result(S, &S.PP.getIdentifierTable().get("initializer_list"), 7393 Loc, Sema::LookupOrdinaryName); 7394 if (!S.LookupQualifiedName(Result, Std)) { 7395 S.Diag(Loc, diag::err_implied_std_initializer_list_not_found); 7396 return nullptr; 7397 } 7398 ClassTemplateDecl *Template = Result.getAsSingle<ClassTemplateDecl>(); 7399 if (!Template) { 7400 Result.suppressDiagnostics(); 7401 // We found something weird. Complain about the first thing we found. 7402 NamedDecl *Found = *Result.begin(); 7403 S.Diag(Found->getLocation(), diag::err_malformed_std_initializer_list); 7404 return nullptr; 7405 } 7406 7407 // We found some template called std::initializer_list. Now verify that it's 7408 // correct. 7409 TemplateParameterList *Params = Template->getTemplateParameters(); 7410 if (Params->getMinRequiredArguments() != 1 || 7411 !isa<TemplateTypeParmDecl>(Params->getParam(0))) { 7412 S.Diag(Template->getLocation(), diag::err_malformed_std_initializer_list); 7413 return nullptr; 7414 } 7415 7416 return Template; 7417 } 7418 7419 QualType Sema::BuildStdInitializerList(QualType Element, SourceLocation Loc) { 7420 if (!StdInitializerList) { 7421 StdInitializerList = LookupStdInitializerList(*this, Loc); 7422 if (!StdInitializerList) 7423 return QualType(); 7424 } 7425 7426 TemplateArgumentListInfo Args(Loc, Loc); 7427 Args.addArgument(TemplateArgumentLoc(TemplateArgument(Element), 7428 Context.getTrivialTypeSourceInfo(Element, 7429 Loc))); 7430 return Context.getCanonicalType( 7431 CheckTemplateIdType(TemplateName(StdInitializerList), Loc, Args)); 7432 } 7433 7434 bool Sema::isInitListConstructor(const CXXConstructorDecl* Ctor) { 7435 // C++ [dcl.init.list]p2: 7436 // A constructor is an initializer-list constructor if its first parameter 7437 // is of type std::initializer_list<E> or reference to possibly cv-qualified 7438 // std::initializer_list<E> for some type E, and either there are no other 7439 // parameters or else all other parameters have default arguments. 7440 if (Ctor->getNumParams() < 1 || 7441 (Ctor->getNumParams() > 1 && !Ctor->getParamDecl(1)->hasDefaultArg())) 7442 return false; 7443 7444 QualType ArgType = Ctor->getParamDecl(0)->getType(); 7445 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>()) 7446 ArgType = RT->getPointeeType().getUnqualifiedType(); 7447 7448 return isStdInitializerList(ArgType, nullptr); 7449 } 7450 7451 /// \brief Determine whether a using statement is in a context where it will be 7452 /// apply in all contexts. 7453 static bool IsUsingDirectiveInToplevelContext(DeclContext *CurContext) { 7454 switch (CurContext->getDeclKind()) { 7455 case Decl::TranslationUnit: 7456 return true; 7457 case Decl::LinkageSpec: 7458 return IsUsingDirectiveInToplevelContext(CurContext->getParent()); 7459 default: 7460 return false; 7461 } 7462 } 7463 7464 namespace { 7465 7466 // Callback to only accept typo corrections that are namespaces. 7467 class NamespaceValidatorCCC : public CorrectionCandidateCallback { 7468 public: 7469 bool ValidateCandidate(const TypoCorrection &candidate) override { 7470 if (NamedDecl *ND = candidate.getCorrectionDecl()) 7471 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); 7472 return false; 7473 } 7474 }; 7475 7476 } 7477 7478 static bool TryNamespaceTypoCorrection(Sema &S, LookupResult &R, Scope *Sc, 7479 CXXScopeSpec &SS, 7480 SourceLocation IdentLoc, 7481 IdentifierInfo *Ident) { 7482 R.clear(); 7483 if (TypoCorrection Corrected = 7484 S.CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), Sc, &SS, 7485 llvm::make_unique<NamespaceValidatorCCC>(), 7486 Sema::CTK_ErrorRecovery)) { 7487 if (DeclContext *DC = S.computeDeclContext(SS, false)) { 7488 std::string CorrectedStr(Corrected.getAsString(S.getLangOpts())); 7489 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 7490 Ident->getName().equals(CorrectedStr); 7491 S.diagnoseTypo(Corrected, 7492 S.PDiag(diag::err_using_directive_member_suggest) 7493 << Ident << DC << DroppedSpecifier << SS.getRange(), 7494 S.PDiag(diag::note_namespace_defined_here)); 7495 } else { 7496 S.diagnoseTypo(Corrected, 7497 S.PDiag(diag::err_using_directive_suggest) << Ident, 7498 S.PDiag(diag::note_namespace_defined_here)); 7499 } 7500 R.addDecl(Corrected.getCorrectionDecl()); 7501 return true; 7502 } 7503 return false; 7504 } 7505 7506 Decl *Sema::ActOnUsingDirective(Scope *S, 7507 SourceLocation UsingLoc, 7508 SourceLocation NamespcLoc, 7509 CXXScopeSpec &SS, 7510 SourceLocation IdentLoc, 7511 IdentifierInfo *NamespcName, 7512 AttributeList *AttrList) { 7513 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 7514 assert(NamespcName && "Invalid NamespcName."); 7515 assert(IdentLoc.isValid() && "Invalid NamespceName location."); 7516 7517 // This can only happen along a recovery path. 7518 while (S->getFlags() & Scope::TemplateParamScope) 7519 S = S->getParent(); 7520 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7521 7522 UsingDirectiveDecl *UDir = nullptr; 7523 NestedNameSpecifier *Qualifier = nullptr; 7524 if (SS.isSet()) 7525 Qualifier = SS.getScopeRep(); 7526 7527 // Lookup namespace name. 7528 LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); 7529 LookupParsedName(R, S, &SS); 7530 if (R.isAmbiguous()) 7531 return nullptr; 7532 7533 if (R.empty()) { 7534 R.clear(); 7535 // Allow "using namespace std;" or "using namespace ::std;" even if 7536 // "std" hasn't been defined yet, for GCC compatibility. 7537 if ((!Qualifier || Qualifier->getKind() == NestedNameSpecifier::Global) && 7538 NamespcName->isStr("std")) { 7539 Diag(IdentLoc, diag::ext_using_undefined_std); 7540 R.addDecl(getOrCreateStdNamespace()); 7541 R.resolveKind(); 7542 } 7543 // Otherwise, attempt typo correction. 7544 else TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, NamespcName); 7545 } 7546 7547 if (!R.empty()) { 7548 NamedDecl *Named = R.getFoundDecl(); 7549 assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named)) 7550 && "expected namespace decl"); 7551 7552 // The use of a nested name specifier may trigger deprecation warnings. 7553 DiagnoseUseOfDecl(Named, IdentLoc); 7554 7555 // C++ [namespace.udir]p1: 7556 // A using-directive specifies that the names in the nominated 7557 // namespace can be used in the scope in which the 7558 // using-directive appears after the using-directive. During 7559 // unqualified name lookup (3.4.1), the names appear as if they 7560 // were declared in the nearest enclosing namespace which 7561 // contains both the using-directive and the nominated 7562 // namespace. [Note: in this context, "contains" means "contains 7563 // directly or indirectly". ] 7564 7565 // Find enclosing context containing both using-directive and 7566 // nominated namespace. 7567 NamespaceDecl *NS = getNamespaceDecl(Named); 7568 DeclContext *CommonAncestor = cast<DeclContext>(NS); 7569 while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) 7570 CommonAncestor = CommonAncestor->getParent(); 7571 7572 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, 7573 SS.getWithLocInContext(Context), 7574 IdentLoc, Named, CommonAncestor); 7575 7576 if (IsUsingDirectiveInToplevelContext(CurContext) && 7577 !SourceMgr.isInMainFile(SourceMgr.getExpansionLoc(IdentLoc))) { 7578 Diag(IdentLoc, diag::warn_using_directive_in_header); 7579 } 7580 7581 PushUsingDirective(S, UDir); 7582 } else { 7583 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 7584 } 7585 7586 if (UDir) 7587 ProcessDeclAttributeList(S, UDir, AttrList); 7588 7589 return UDir; 7590 } 7591 7592 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { 7593 // If the scope has an associated entity and the using directive is at 7594 // namespace or translation unit scope, add the UsingDirectiveDecl into 7595 // its lookup structure so qualified name lookup can find it. 7596 DeclContext *Ctx = S->getEntity(); 7597 if (Ctx && !Ctx->isFunctionOrMethod()) 7598 Ctx->addDecl(UDir); 7599 else 7600 // Otherwise, it is at block scope. The using-directives will affect lookup 7601 // only to the end of the scope. 7602 S->PushUsingDirective(UDir); 7603 } 7604 7605 7606 Decl *Sema::ActOnUsingDeclaration(Scope *S, 7607 AccessSpecifier AS, 7608 bool HasUsingKeyword, 7609 SourceLocation UsingLoc, 7610 CXXScopeSpec &SS, 7611 UnqualifiedId &Name, 7612 AttributeList *AttrList, 7613 bool HasTypenameKeyword, 7614 SourceLocation TypenameLoc) { 7615 assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); 7616 7617 switch (Name.getKind()) { 7618 case UnqualifiedId::IK_ImplicitSelfParam: 7619 case UnqualifiedId::IK_Identifier: 7620 case UnqualifiedId::IK_OperatorFunctionId: 7621 case UnqualifiedId::IK_LiteralOperatorId: 7622 case UnqualifiedId::IK_ConversionFunctionId: 7623 break; 7624 7625 case UnqualifiedId::IK_ConstructorName: 7626 case UnqualifiedId::IK_ConstructorTemplateId: 7627 // C++11 inheriting constructors. 7628 Diag(Name.getLocStart(), 7629 getLangOpts().CPlusPlus11 ? 7630 diag::warn_cxx98_compat_using_decl_constructor : 7631 diag::err_using_decl_constructor) 7632 << SS.getRange(); 7633 7634 if (getLangOpts().CPlusPlus11) break; 7635 7636 return nullptr; 7637 7638 case UnqualifiedId::IK_DestructorName: 7639 Diag(Name.getLocStart(), diag::err_using_decl_destructor) 7640 << SS.getRange(); 7641 return nullptr; 7642 7643 case UnqualifiedId::IK_TemplateId: 7644 Diag(Name.getLocStart(), diag::err_using_decl_template_id) 7645 << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc); 7646 return nullptr; 7647 } 7648 7649 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); 7650 DeclarationName TargetName = TargetNameInfo.getName(); 7651 if (!TargetName) 7652 return nullptr; 7653 7654 // Warn about access declarations. 7655 if (!HasUsingKeyword) { 7656 Diag(Name.getLocStart(), 7657 getLangOpts().CPlusPlus11 ? diag::err_access_decl 7658 : diag::warn_access_decl_deprecated) 7659 << FixItHint::CreateInsertion(SS.getRange().getBegin(), "using "); 7660 } 7661 7662 if (DiagnoseUnexpandedParameterPack(SS, UPPC_UsingDeclaration) || 7663 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC_UsingDeclaration)) 7664 return nullptr; 7665 7666 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, 7667 TargetNameInfo, AttrList, 7668 /* IsInstantiation */ false, 7669 HasTypenameKeyword, TypenameLoc); 7670 if (UD) 7671 PushOnScopeChains(UD, S, /*AddToContext*/ false); 7672 7673 return UD; 7674 } 7675 7676 /// \brief Determine whether a using declaration considers the given 7677 /// declarations as "equivalent", e.g., if they are redeclarations of 7678 /// the same entity or are both typedefs of the same type. 7679 static bool 7680 IsEquivalentForUsingDecl(ASTContext &Context, NamedDecl *D1, NamedDecl *D2) { 7681 if (D1->getCanonicalDecl() == D2->getCanonicalDecl()) 7682 return true; 7683 7684 if (TypedefNameDecl *TD1 = dyn_cast<TypedefNameDecl>(D1)) 7685 if (TypedefNameDecl *TD2 = dyn_cast<TypedefNameDecl>(D2)) 7686 return Context.hasSameType(TD1->getUnderlyingType(), 7687 TD2->getUnderlyingType()); 7688 7689 return false; 7690 } 7691 7692 7693 /// Determines whether to create a using shadow decl for a particular 7694 /// decl, given the set of decls existing prior to this using lookup. 7695 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, 7696 const LookupResult &Previous, 7697 UsingShadowDecl *&PrevShadow) { 7698 // Diagnose finding a decl which is not from a base class of the 7699 // current class. We do this now because there are cases where this 7700 // function will silently decide not to build a shadow decl, which 7701 // will pre-empt further diagnostics. 7702 // 7703 // We don't need to do this in C++0x because we do the check once on 7704 // the qualifier. 7705 // 7706 // FIXME: diagnose the following if we care enough: 7707 // struct A { int foo; }; 7708 // struct B : A { using A::foo; }; 7709 // template <class T> struct C : A {}; 7710 // template <class T> struct D : C<T> { using B::foo; } // <--- 7711 // This is invalid (during instantiation) in C++03 because B::foo 7712 // resolves to the using decl in B, which is not a base class of D<T>. 7713 // We can't diagnose it immediately because C<T> is an unknown 7714 // specialization. The UsingShadowDecl in D<T> then points directly 7715 // to A::foo, which will look well-formed when we instantiate. 7716 // The right solution is to not collapse the shadow-decl chain. 7717 if (!getLangOpts().CPlusPlus11 && CurContext->isRecord()) { 7718 DeclContext *OrigDC = Orig->getDeclContext(); 7719 7720 // Handle enums and anonymous structs. 7721 if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent(); 7722 CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC); 7723 while (OrigRec->isAnonymousStructOrUnion()) 7724 OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext()); 7725 7726 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) { 7727 if (OrigDC == CurContext) { 7728 Diag(Using->getLocation(), 7729 diag::err_using_decl_nested_name_specifier_is_current_class) 7730 << Using->getQualifierLoc().getSourceRange(); 7731 Diag(Orig->getLocation(), diag::note_using_decl_target); 7732 return true; 7733 } 7734 7735 Diag(Using->getQualifierLoc().getBeginLoc(), 7736 diag::err_using_decl_nested_name_specifier_is_not_base_class) 7737 << Using->getQualifier() 7738 << cast<CXXRecordDecl>(CurContext) 7739 << Using->getQualifierLoc().getSourceRange(); 7740 Diag(Orig->getLocation(), diag::note_using_decl_target); 7741 return true; 7742 } 7743 } 7744 7745 if (Previous.empty()) return false; 7746 7747 NamedDecl *Target = Orig; 7748 if (isa<UsingShadowDecl>(Target)) 7749 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7750 7751 // If the target happens to be one of the previous declarations, we 7752 // don't have a conflict. 7753 // 7754 // FIXME: but we might be increasing its access, in which case we 7755 // should redeclare it. 7756 NamedDecl *NonTag = nullptr, *Tag = nullptr; 7757 bool FoundEquivalentDecl = false; 7758 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7759 I != E; ++I) { 7760 NamedDecl *D = (*I)->getUnderlyingDecl(); 7761 if (IsEquivalentForUsingDecl(Context, D, Target)) { 7762 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(*I)) 7763 PrevShadow = Shadow; 7764 FoundEquivalentDecl = true; 7765 } 7766 7767 (isa<TagDecl>(D) ? Tag : NonTag) = D; 7768 } 7769 7770 if (FoundEquivalentDecl) 7771 return false; 7772 7773 if (FunctionDecl *FD = Target->getAsFunction()) { 7774 NamedDecl *OldDecl = nullptr; 7775 switch (CheckOverload(nullptr, FD, Previous, OldDecl, 7776 /*IsForUsingDecl*/ true)) { 7777 case Ovl_Overload: 7778 return false; 7779 7780 case Ovl_NonFunction: 7781 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7782 break; 7783 7784 // We found a decl with the exact signature. 7785 case Ovl_Match: 7786 // If we're in a record, we want to hide the target, so we 7787 // return true (without a diagnostic) to tell the caller not to 7788 // build a shadow decl. 7789 if (CurContext->isRecord()) 7790 return true; 7791 7792 // If we're not in a record, this is an error. 7793 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7794 break; 7795 } 7796 7797 Diag(Target->getLocation(), diag::note_using_decl_target); 7798 Diag(OldDecl->getLocation(), diag::note_using_decl_conflict); 7799 return true; 7800 } 7801 7802 // Target is not a function. 7803 7804 if (isa<TagDecl>(Target)) { 7805 // No conflict between a tag and a non-tag. 7806 if (!Tag) return false; 7807 7808 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7809 Diag(Target->getLocation(), diag::note_using_decl_target); 7810 Diag(Tag->getLocation(), diag::note_using_decl_conflict); 7811 return true; 7812 } 7813 7814 // No conflict between a tag and a non-tag. 7815 if (!NonTag) return false; 7816 7817 Diag(Using->getLocation(), diag::err_using_decl_conflict); 7818 Diag(Target->getLocation(), diag::note_using_decl_target); 7819 Diag(NonTag->getLocation(), diag::note_using_decl_conflict); 7820 return true; 7821 } 7822 7823 /// Builds a shadow declaration corresponding to a 'using' declaration. 7824 UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S, 7825 UsingDecl *UD, 7826 NamedDecl *Orig, 7827 UsingShadowDecl *PrevDecl) { 7828 7829 // If we resolved to another shadow declaration, just coalesce them. 7830 NamedDecl *Target = Orig; 7831 if (isa<UsingShadowDecl>(Target)) { 7832 Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); 7833 assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration"); 7834 } 7835 7836 UsingShadowDecl *Shadow 7837 = UsingShadowDecl::Create(Context, CurContext, 7838 UD->getLocation(), UD, Target); 7839 UD->addShadowDecl(Shadow); 7840 7841 Shadow->setAccess(UD->getAccess()); 7842 if (Orig->isInvalidDecl() || UD->isInvalidDecl()) 7843 Shadow->setInvalidDecl(); 7844 7845 Shadow->setPreviousDecl(PrevDecl); 7846 7847 if (S) 7848 PushOnScopeChains(Shadow, S); 7849 else 7850 CurContext->addDecl(Shadow); 7851 7852 7853 return Shadow; 7854 } 7855 7856 /// Hides a using shadow declaration. This is required by the current 7857 /// using-decl implementation when a resolvable using declaration in a 7858 /// class is followed by a declaration which would hide or override 7859 /// one or more of the using decl's targets; for example: 7860 /// 7861 /// struct Base { void foo(int); }; 7862 /// struct Derived : Base { 7863 /// using Base::foo; 7864 /// void foo(int); 7865 /// }; 7866 /// 7867 /// The governing language is C++03 [namespace.udecl]p12: 7868 /// 7869 /// When a using-declaration brings names from a base class into a 7870 /// derived class scope, member functions in the derived class 7871 /// override and/or hide member functions with the same name and 7872 /// parameter types in a base class (rather than conflicting). 7873 /// 7874 /// There are two ways to implement this: 7875 /// (1) optimistically create shadow decls when they're not hidden 7876 /// by existing declarations, or 7877 /// (2) don't create any shadow decls (or at least don't make them 7878 /// visible) until we've fully parsed/instantiated the class. 7879 /// The problem with (1) is that we might have to retroactively remove 7880 /// a shadow decl, which requires several O(n) operations because the 7881 /// decl structures are (very reasonably) not designed for removal. 7882 /// (2) avoids this but is very fiddly and phase-dependent. 7883 void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { 7884 if (Shadow->getDeclName().getNameKind() == 7885 DeclarationName::CXXConversionFunctionName) 7886 cast<CXXRecordDecl>(Shadow->getDeclContext())->removeConversion(Shadow); 7887 7888 // Remove it from the DeclContext... 7889 Shadow->getDeclContext()->removeDecl(Shadow); 7890 7891 // ...and the scope, if applicable... 7892 if (S) { 7893 S->RemoveDecl(Shadow); 7894 IdResolver.RemoveDecl(Shadow); 7895 } 7896 7897 // ...and the using decl. 7898 Shadow->getUsingDecl()->removeShadowDecl(Shadow); 7899 7900 // TODO: complain somehow if Shadow was used. It shouldn't 7901 // be possible for this to happen, because...? 7902 } 7903 7904 /// Find the base specifier for a base class with the given type. 7905 static CXXBaseSpecifier *findDirectBaseWithType(CXXRecordDecl *Derived, 7906 QualType DesiredBase, 7907 bool &AnyDependentBases) { 7908 // Check whether the named type is a direct base class. 7909 CanQualType CanonicalDesiredBase = DesiredBase->getCanonicalTypeUnqualified(); 7910 for (auto &Base : Derived->bases()) { 7911 CanQualType BaseType = Base.getType()->getCanonicalTypeUnqualified(); 7912 if (CanonicalDesiredBase == BaseType) 7913 return &Base; 7914 if (BaseType->isDependentType()) 7915 AnyDependentBases = true; 7916 } 7917 return nullptr; 7918 } 7919 7920 namespace { 7921 class UsingValidatorCCC : public CorrectionCandidateCallback { 7922 public: 7923 UsingValidatorCCC(bool HasTypenameKeyword, bool IsInstantiation, 7924 NestedNameSpecifier *NNS, CXXRecordDecl *RequireMemberOf) 7925 : HasTypenameKeyword(HasTypenameKeyword), 7926 IsInstantiation(IsInstantiation), OldNNS(NNS), 7927 RequireMemberOf(RequireMemberOf) {} 7928 7929 bool ValidateCandidate(const TypoCorrection &Candidate) override { 7930 NamedDecl *ND = Candidate.getCorrectionDecl(); 7931 7932 // Keywords are not valid here. 7933 if (!ND || isa<NamespaceDecl>(ND)) 7934 return false; 7935 7936 // Completely unqualified names are invalid for a 'using' declaration. 7937 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier()) 7938 return false; 7939 7940 if (RequireMemberOf) { 7941 auto *FoundRecord = dyn_cast<CXXRecordDecl>(ND); 7942 if (FoundRecord && FoundRecord->isInjectedClassName()) { 7943 // No-one ever wants a using-declaration to name an injected-class-name 7944 // of a base class, unless they're declaring an inheriting constructor. 7945 ASTContext &Ctx = ND->getASTContext(); 7946 if (!Ctx.getLangOpts().CPlusPlus11) 7947 return false; 7948 QualType FoundType = Ctx.getRecordType(FoundRecord); 7949 7950 // Check that the injected-class-name is named as a member of its own 7951 // type; we don't want to suggest 'using Derived::Base;', since that 7952 // means something else. 7953 NestedNameSpecifier *Specifier = 7954 Candidate.WillReplaceSpecifier() 7955 ? Candidate.getCorrectionSpecifier() 7956 : OldNNS; 7957 if (!Specifier->getAsType() || 7958 !Ctx.hasSameType(QualType(Specifier->getAsType(), 0), FoundType)) 7959 return false; 7960 7961 // Check that this inheriting constructor declaration actually names a 7962 // direct base class of the current class. 7963 bool AnyDependentBases = false; 7964 if (!findDirectBaseWithType(RequireMemberOf, 7965 Ctx.getRecordType(FoundRecord), 7966 AnyDependentBases) && 7967 !AnyDependentBases) 7968 return false; 7969 } else { 7970 auto *RD = dyn_cast<CXXRecordDecl>(ND->getDeclContext()); 7971 if (!RD || RequireMemberOf->isProvablyNotDerivedFrom(RD)) 7972 return false; 7973 7974 // FIXME: Check that the base class member is accessible? 7975 } 7976 } 7977 7978 if (isa<TypeDecl>(ND)) 7979 return HasTypenameKeyword || !IsInstantiation; 7980 7981 return !HasTypenameKeyword; 7982 } 7983 7984 private: 7985 bool HasTypenameKeyword; 7986 bool IsInstantiation; 7987 NestedNameSpecifier *OldNNS; 7988 CXXRecordDecl *RequireMemberOf; 7989 }; 7990 } // end anonymous namespace 7991 7992 /// Builds a using declaration. 7993 /// 7994 /// \param IsInstantiation - Whether this call arises from an 7995 /// instantiation of an unresolved using declaration. We treat 7996 /// the lookup differently for these declarations. 7997 NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS, 7998 SourceLocation UsingLoc, 7999 CXXScopeSpec &SS, 8000 DeclarationNameInfo NameInfo, 8001 AttributeList *AttrList, 8002 bool IsInstantiation, 8003 bool HasTypenameKeyword, 8004 SourceLocation TypenameLoc) { 8005 assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); 8006 SourceLocation IdentLoc = NameInfo.getLoc(); 8007 assert(IdentLoc.isValid() && "Invalid TargetName location."); 8008 8009 // FIXME: We ignore attributes for now. 8010 8011 if (SS.isEmpty()) { 8012 Diag(IdentLoc, diag::err_using_requires_qualname); 8013 return nullptr; 8014 } 8015 8016 // Do the redeclaration lookup in the current scope. 8017 LookupResult Previous(*this, NameInfo, LookupUsingDeclName, 8018 ForRedeclaration); 8019 Previous.setHideTags(false); 8020 if (S) { 8021 LookupName(Previous, S); 8022 8023 // It is really dumb that we have to do this. 8024 LookupResult::Filter F = Previous.makeFilter(); 8025 while (F.hasNext()) { 8026 NamedDecl *D = F.next(); 8027 if (!isDeclInScope(D, CurContext, S)) 8028 F.erase(); 8029 // If we found a local extern declaration that's not ordinarily visible, 8030 // and this declaration is being added to a non-block scope, ignore it. 8031 // We're only checking for scope conflicts here, not also for violations 8032 // of the linkage rules. 8033 else if (!CurContext->isFunctionOrMethod() && D->isLocalExternDecl() && 8034 !(D->getIdentifierNamespace() & Decl::IDNS_Ordinary)) 8035 F.erase(); 8036 } 8037 F.done(); 8038 } else { 8039 assert(IsInstantiation && "no scope in non-instantiation"); 8040 assert(CurContext->isRecord() && "scope not record in instantiation"); 8041 LookupQualifiedName(Previous, CurContext); 8042 } 8043 8044 // Check for invalid redeclarations. 8045 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, 8046 SS, IdentLoc, Previous)) 8047 return nullptr; 8048 8049 // Check for bad qualifiers. 8050 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) 8051 return nullptr; 8052 8053 DeclContext *LookupContext = computeDeclContext(SS); 8054 NamedDecl *D; 8055 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 8056 if (!LookupContext) { 8057 if (HasTypenameKeyword) { 8058 // FIXME: not all declaration name kinds are legal here 8059 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, 8060 UsingLoc, TypenameLoc, 8061 QualifierLoc, 8062 IdentLoc, NameInfo.getName()); 8063 } else { 8064 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, 8065 QualifierLoc, NameInfo); 8066 } 8067 D->setAccess(AS); 8068 CurContext->addDecl(D); 8069 return D; 8070 } 8071 8072 auto Build = [&](bool Invalid) { 8073 UsingDecl *UD = 8074 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo, 8075 HasTypenameKeyword); 8076 UD->setAccess(AS); 8077 CurContext->addDecl(UD); 8078 UD->setInvalidDecl(Invalid); 8079 return UD; 8080 }; 8081 auto BuildInvalid = [&]{ return Build(true); }; 8082 auto BuildValid = [&]{ return Build(false); }; 8083 8084 if (RequireCompleteDeclContext(SS, LookupContext)) 8085 return BuildInvalid(); 8086 8087 // The normal rules do not apply to inheriting constructor declarations. 8088 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) { 8089 UsingDecl *UD = BuildValid(); 8090 CheckInheritingConstructorUsingDecl(UD); 8091 return UD; 8092 } 8093 8094 // Otherwise, look up the target name. 8095 8096 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8097 8098 // Unlike most lookups, we don't always want to hide tag 8099 // declarations: tag names are visible through the using declaration 8100 // even if hidden by ordinary names, *except* in a dependent context 8101 // where it's important for the sanity of two-phase lookup. 8102 if (!IsInstantiation) 8103 R.setHideTags(false); 8104 8105 // For the purposes of this lookup, we have a base object type 8106 // equal to that of the current context. 8107 if (CurContext->isRecord()) { 8108 R.setBaseObjectType( 8109 Context.getTypeDeclType(cast<CXXRecordDecl>(CurContext))); 8110 } 8111 8112 LookupQualifiedName(R, LookupContext); 8113 8114 // Try to correct typos if possible. 8115 if (R.empty()) { 8116 if (TypoCorrection Corrected = CorrectTypo( 8117 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, 8118 llvm::make_unique<UsingValidatorCCC>( 8119 HasTypenameKeyword, IsInstantiation, SS.getScopeRep(), 8120 dyn_cast<CXXRecordDecl>(CurContext)), 8121 CTK_ErrorRecovery)) { 8122 // We reject any correction for which ND would be NULL. 8123 NamedDecl *ND = Corrected.getCorrectionDecl(); 8124 8125 // We reject candidates where DroppedSpecifier == true, hence the 8126 // literal '0' below. 8127 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) 8128 << NameInfo.getName() << LookupContext << 0 8129 << SS.getRange()); 8130 8131 // If we corrected to an inheriting constructor, handle it as one. 8132 auto *RD = dyn_cast<CXXRecordDecl>(ND); 8133 if (RD && RD->isInjectedClassName()) { 8134 // Fix up the information we'll use to build the using declaration. 8135 if (Corrected.WillReplaceSpecifier()) { 8136 NestedNameSpecifierLocBuilder Builder; 8137 Builder.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 8138 QualifierLoc.getSourceRange()); 8139 QualifierLoc = Builder.getWithLocInContext(Context); 8140 } 8141 8142 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 8143 Context.getCanonicalType(Context.getRecordType(RD)))); 8144 NameInfo.setNamedTypeInfo(nullptr); 8145 8146 // Build it and process it as an inheriting constructor. 8147 UsingDecl *UD = BuildValid(); 8148 CheckInheritingConstructorUsingDecl(UD); 8149 return UD; 8150 } 8151 8152 // FIXME: Pick up all the declarations if we found an overloaded function. 8153 R.setLookupName(Corrected.getCorrection()); 8154 R.addDecl(ND); 8155 } else { 8156 Diag(IdentLoc, diag::err_no_member) 8157 << NameInfo.getName() << LookupContext << SS.getRange(); 8158 return BuildInvalid(); 8159 } 8160 } 8161 8162 if (R.isAmbiguous()) 8163 return BuildInvalid(); 8164 8165 if (HasTypenameKeyword) { 8166 // If we asked for a typename and got a non-type decl, error out. 8167 if (!R.getAsSingle<TypeDecl>()) { 8168 Diag(IdentLoc, diag::err_using_typename_non_type); 8169 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 8170 Diag((*I)->getUnderlyingDecl()->getLocation(), 8171 diag::note_using_decl_target); 8172 return BuildInvalid(); 8173 } 8174 } else { 8175 // If we asked for a non-typename and we got a type, error out, 8176 // but only if this is an instantiation of an unresolved using 8177 // decl. Otherwise just silently find the type name. 8178 if (IsInstantiation && R.getAsSingle<TypeDecl>()) { 8179 Diag(IdentLoc, diag::err_using_dependent_value_is_type); 8180 Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target); 8181 return BuildInvalid(); 8182 } 8183 } 8184 8185 // C++0x N2914 [namespace.udecl]p6: 8186 // A using-declaration shall not name a namespace. 8187 if (R.getAsSingle<NamespaceDecl>()) { 8188 Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace) 8189 << SS.getRange(); 8190 return BuildInvalid(); 8191 } 8192 8193 UsingDecl *UD = BuildValid(); 8194 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 8195 UsingShadowDecl *PrevDecl = nullptr; 8196 if (!CheckUsingShadowDecl(UD, *I, Previous, PrevDecl)) 8197 BuildUsingShadowDecl(S, UD, *I, PrevDecl); 8198 } 8199 8200 return UD; 8201 } 8202 8203 /// Additional checks for a using declaration referring to a constructor name. 8204 bool Sema::CheckInheritingConstructorUsingDecl(UsingDecl *UD) { 8205 assert(!UD->hasTypename() && "expecting a constructor name"); 8206 8207 const Type *SourceType = UD->getQualifier()->getAsType(); 8208 assert(SourceType && 8209 "Using decl naming constructor doesn't have type in scope spec."); 8210 CXXRecordDecl *TargetClass = cast<CXXRecordDecl>(CurContext); 8211 8212 // Check whether the named type is a direct base class. 8213 bool AnyDependentBases = false; 8214 auto *Base = findDirectBaseWithType(TargetClass, QualType(SourceType, 0), 8215 AnyDependentBases); 8216 if (!Base && !AnyDependentBases) { 8217 Diag(UD->getUsingLoc(), 8218 diag::err_using_decl_constructor_not_in_direct_base) 8219 << UD->getNameInfo().getSourceRange() 8220 << QualType(SourceType, 0) << TargetClass; 8221 UD->setInvalidDecl(); 8222 return true; 8223 } 8224 8225 if (Base) 8226 Base->setInheritConstructors(); 8227 8228 return false; 8229 } 8230 8231 /// Checks that the given using declaration is not an invalid 8232 /// redeclaration. Note that this is checking only for the using decl 8233 /// itself, not for any ill-formedness among the UsingShadowDecls. 8234 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc, 8235 bool HasTypenameKeyword, 8236 const CXXScopeSpec &SS, 8237 SourceLocation NameLoc, 8238 const LookupResult &Prev) { 8239 // C++03 [namespace.udecl]p8: 8240 // C++0x [namespace.udecl]p10: 8241 // A using-declaration is a declaration and can therefore be used 8242 // repeatedly where (and only where) multiple declarations are 8243 // allowed. 8244 // 8245 // That's in non-member contexts. 8246 if (!CurContext->getRedeclContext()->isRecord()) 8247 return false; 8248 8249 NestedNameSpecifier *Qual = SS.getScopeRep(); 8250 8251 for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) { 8252 NamedDecl *D = *I; 8253 8254 bool DTypename; 8255 NestedNameSpecifier *DQual; 8256 if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { 8257 DTypename = UD->hasTypename(); 8258 DQual = UD->getQualifier(); 8259 } else if (UnresolvedUsingValueDecl *UD 8260 = dyn_cast<UnresolvedUsingValueDecl>(D)) { 8261 DTypename = false; 8262 DQual = UD->getQualifier(); 8263 } else if (UnresolvedUsingTypenameDecl *UD 8264 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { 8265 DTypename = true; 8266 DQual = UD->getQualifier(); 8267 } else continue; 8268 8269 // using decls differ if one says 'typename' and the other doesn't. 8270 // FIXME: non-dependent using decls? 8271 if (HasTypenameKeyword != DTypename) continue; 8272 8273 // using decls differ if they name different scopes (but note that 8274 // template instantiation can cause this check to trigger when it 8275 // didn't before instantiation). 8276 if (Context.getCanonicalNestedNameSpecifier(Qual) != 8277 Context.getCanonicalNestedNameSpecifier(DQual)) 8278 continue; 8279 8280 Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange(); 8281 Diag(D->getLocation(), diag::note_using_decl) << 1; 8282 return true; 8283 } 8284 8285 return false; 8286 } 8287 8288 8289 /// Checks that the given nested-name qualifier used in a using decl 8290 /// in the current context is appropriately related to the current 8291 /// scope. If an error is found, diagnoses it and returns true. 8292 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc, 8293 const CXXScopeSpec &SS, 8294 const DeclarationNameInfo &NameInfo, 8295 SourceLocation NameLoc) { 8296 DeclContext *NamedContext = computeDeclContext(SS); 8297 8298 if (!CurContext->isRecord()) { 8299 // C++03 [namespace.udecl]p3: 8300 // C++0x [namespace.udecl]p8: 8301 // A using-declaration for a class member shall be a member-declaration. 8302 8303 // If we weren't able to compute a valid scope, it must be a 8304 // dependent class scope. 8305 if (!NamedContext || NamedContext->isRecord()) { 8306 auto *RD = dyn_cast_or_null<CXXRecordDecl>(NamedContext); 8307 if (RD && RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), RD)) 8308 RD = nullptr; 8309 8310 Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member) 8311 << SS.getRange(); 8312 8313 // If we have a complete, non-dependent source type, try to suggest a 8314 // way to get the same effect. 8315 if (!RD) 8316 return true; 8317 8318 // Find what this using-declaration was referring to. 8319 LookupResult R(*this, NameInfo, LookupOrdinaryName); 8320 R.setHideTags(false); 8321 R.suppressDiagnostics(); 8322 LookupQualifiedName(R, RD); 8323 8324 if (R.getAsSingle<TypeDecl>()) { 8325 if (getLangOpts().CPlusPlus11) { 8326 // Convert 'using X::Y;' to 'using Y = X::Y;'. 8327 Diag(SS.getBeginLoc(), diag::note_using_decl_class_member_workaround) 8328 << 0 // alias declaration 8329 << FixItHint::CreateInsertion(SS.getBeginLoc(), 8330 NameInfo.getName().getAsString() + 8331 " = "); 8332 } else { 8333 // Convert 'using X::Y;' to 'typedef X::Y Y;'. 8334 SourceLocation InsertLoc = 8335 PP.getLocForEndOfToken(NameInfo.getLocEnd()); 8336 Diag(InsertLoc, diag::note_using_decl_class_member_workaround) 8337 << 1 // typedef declaration 8338 << FixItHint::CreateReplacement(UsingLoc, "typedef") 8339 << FixItHint::CreateInsertion( 8340 InsertLoc, " " + NameInfo.getName().getAsString()); 8341 } 8342 } else if (R.getAsSingle<VarDecl>()) { 8343 // Don't provide a fixit outside C++11 mode; we don't want to suggest 8344 // repeating the type of the static data member here. 8345 FixItHint FixIt; 8346 if (getLangOpts().CPlusPlus11) { 8347 // Convert 'using X::Y;' to 'auto &Y = X::Y;'. 8348 FixIt = FixItHint::CreateReplacement( 8349 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = "); 8350 } 8351 8352 Diag(UsingLoc, diag::note_using_decl_class_member_workaround) 8353 << 2 // reference declaration 8354 << FixIt; 8355 } 8356 return true; 8357 } 8358 8359 // Otherwise, everything is known to be fine. 8360 return false; 8361 } 8362 8363 // The current scope is a record. 8364 8365 // If the named context is dependent, we can't decide much. 8366 if (!NamedContext) { 8367 // FIXME: in C++0x, we can diagnose if we can prove that the 8368 // nested-name-specifier does not refer to a base class, which is 8369 // still possible in some cases. 8370 8371 // Otherwise we have to conservatively report that things might be 8372 // okay. 8373 return false; 8374 } 8375 8376 if (!NamedContext->isRecord()) { 8377 // Ideally this would point at the last name in the specifier, 8378 // but we don't have that level of source info. 8379 Diag(SS.getRange().getBegin(), 8380 diag::err_using_decl_nested_name_specifier_is_not_class) 8381 << SS.getScopeRep() << SS.getRange(); 8382 return true; 8383 } 8384 8385 if (!NamedContext->isDependentContext() && 8386 RequireCompleteDeclContext(const_cast<CXXScopeSpec&>(SS), NamedContext)) 8387 return true; 8388 8389 if (getLangOpts().CPlusPlus11) { 8390 // C++0x [namespace.udecl]p3: 8391 // In a using-declaration used as a member-declaration, the 8392 // nested-name-specifier shall name a base class of the class 8393 // being defined. 8394 8395 if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom( 8396 cast<CXXRecordDecl>(NamedContext))) { 8397 if (CurContext == NamedContext) { 8398 Diag(NameLoc, 8399 diag::err_using_decl_nested_name_specifier_is_current_class) 8400 << SS.getRange(); 8401 return true; 8402 } 8403 8404 Diag(SS.getRange().getBegin(), 8405 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8406 << SS.getScopeRep() 8407 << cast<CXXRecordDecl>(CurContext) 8408 << SS.getRange(); 8409 return true; 8410 } 8411 8412 return false; 8413 } 8414 8415 // C++03 [namespace.udecl]p4: 8416 // A using-declaration used as a member-declaration shall refer 8417 // to a member of a base class of the class being defined [etc.]. 8418 8419 // Salient point: SS doesn't have to name a base class as long as 8420 // lookup only finds members from base classes. Therefore we can 8421 // diagnose here only if we can prove that that can't happen, 8422 // i.e. if the class hierarchies provably don't intersect. 8423 8424 // TODO: it would be nice if "definitely valid" results were cached 8425 // in the UsingDecl and UsingShadowDecl so that these checks didn't 8426 // need to be repeated. 8427 8428 struct UserData { 8429 llvm::SmallPtrSet<const CXXRecordDecl*, 4> Bases; 8430 8431 static bool collect(const CXXRecordDecl *Base, void *OpaqueData) { 8432 UserData *Data = reinterpret_cast<UserData*>(OpaqueData); 8433 Data->Bases.insert(Base); 8434 return true; 8435 } 8436 8437 bool hasDependentBases(const CXXRecordDecl *Class) { 8438 return !Class->forallBases(collect, this); 8439 } 8440 8441 /// Returns true if the base is dependent or is one of the 8442 /// accumulated base classes. 8443 static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) { 8444 UserData *Data = reinterpret_cast<UserData*>(OpaqueData); 8445 return !Data->Bases.count(Base); 8446 } 8447 8448 bool mightShareBases(const CXXRecordDecl *Class) { 8449 return Bases.count(Class) || !Class->forallBases(doesNotContain, this); 8450 } 8451 }; 8452 8453 UserData Data; 8454 8455 // Returns false if we find a dependent base. 8456 if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext))) 8457 return false; 8458 8459 // Returns false if the class has a dependent base or if it or one 8460 // of its bases is present in the base set of the current context. 8461 if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext))) 8462 return false; 8463 8464 Diag(SS.getRange().getBegin(), 8465 diag::err_using_decl_nested_name_specifier_is_not_base_class) 8466 << SS.getScopeRep() 8467 << cast<CXXRecordDecl>(CurContext) 8468 << SS.getRange(); 8469 8470 return true; 8471 } 8472 8473 Decl *Sema::ActOnAliasDeclaration(Scope *S, 8474 AccessSpecifier AS, 8475 MultiTemplateParamsArg TemplateParamLists, 8476 SourceLocation UsingLoc, 8477 UnqualifiedId &Name, 8478 AttributeList *AttrList, 8479 TypeResult Type) { 8480 // Skip up to the relevant declaration scope. 8481 while (S->getFlags() & Scope::TemplateParamScope) 8482 S = S->getParent(); 8483 assert((S->getFlags() & Scope::DeclScope) && 8484 "got alias-declaration outside of declaration scope"); 8485 8486 if (Type.isInvalid()) 8487 return nullptr; 8488 8489 bool Invalid = false; 8490 DeclarationNameInfo NameInfo = GetNameFromUnqualifiedId(Name); 8491 TypeSourceInfo *TInfo = nullptr; 8492 GetTypeFromParser(Type.get(), &TInfo); 8493 8494 if (DiagnoseClassNameShadow(CurContext, NameInfo)) 8495 return nullptr; 8496 8497 if (DiagnoseUnexpandedParameterPack(Name.StartLocation, TInfo, 8498 UPPC_DeclarationType)) { 8499 Invalid = true; 8500 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 8501 TInfo->getTypeLoc().getBeginLoc()); 8502 } 8503 8504 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration); 8505 LookupName(Previous, S); 8506 8507 // Warn about shadowing the name of a template parameter. 8508 if (Previous.isSingleResult() && 8509 Previous.getFoundDecl()->isTemplateParameter()) { 8510 DiagnoseTemplateParameterShadow(Name.StartLocation,Previous.getFoundDecl()); 8511 Previous.clear(); 8512 } 8513 8514 assert(Name.Kind == UnqualifiedId::IK_Identifier && 8515 "name in alias declaration must be an identifier"); 8516 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc, 8517 Name.StartLocation, 8518 Name.Identifier, TInfo); 8519 8520 NewTD->setAccess(AS); 8521 8522 if (Invalid) 8523 NewTD->setInvalidDecl(); 8524 8525 ProcessDeclAttributeList(S, NewTD, AttrList); 8526 8527 CheckTypedefForVariablyModifiedType(S, NewTD); 8528 Invalid |= NewTD->isInvalidDecl(); 8529 8530 bool Redeclaration = false; 8531 8532 NamedDecl *NewND; 8533 if (TemplateParamLists.size()) { 8534 TypeAliasTemplateDecl *OldDecl = nullptr; 8535 TemplateParameterList *OldTemplateParams = nullptr; 8536 8537 if (TemplateParamLists.size() != 1) { 8538 Diag(UsingLoc, diag::err_alias_template_extra_headers) 8539 << SourceRange(TemplateParamLists[1]->getTemplateLoc(), 8540 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc()); 8541 } 8542 TemplateParameterList *TemplateParams = TemplateParamLists[0]; 8543 8544 // Only consider previous declarations in the same scope. 8545 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false, 8546 /*ExplicitInstantiationOrSpecialization*/false); 8547 if (!Previous.empty()) { 8548 Redeclaration = true; 8549 8550 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>(); 8551 if (!OldDecl && !Invalid) { 8552 Diag(UsingLoc, diag::err_redefinition_different_kind) 8553 << Name.Identifier; 8554 8555 NamedDecl *OldD = Previous.getRepresentativeDecl(); 8556 if (OldD->getLocation().isValid()) 8557 Diag(OldD->getLocation(), diag::note_previous_definition); 8558 8559 Invalid = true; 8560 } 8561 8562 if (!Invalid && OldDecl && !OldDecl->isInvalidDecl()) { 8563 if (TemplateParameterListsAreEqual(TemplateParams, 8564 OldDecl->getTemplateParameters(), 8565 /*Complain=*/true, 8566 TPL_TemplateMatch)) 8567 OldTemplateParams = OldDecl->getTemplateParameters(); 8568 else 8569 Invalid = true; 8570 8571 TypeAliasDecl *OldTD = OldDecl->getTemplatedDecl(); 8572 if (!Invalid && 8573 !Context.hasSameType(OldTD->getUnderlyingType(), 8574 NewTD->getUnderlyingType())) { 8575 // FIXME: The C++0x standard does not clearly say this is ill-formed, 8576 // but we can't reasonably accept it. 8577 Diag(NewTD->getLocation(), diag::err_redefinition_different_typedef) 8578 << 2 << NewTD->getUnderlyingType() << OldTD->getUnderlyingType(); 8579 if (OldTD->getLocation().isValid()) 8580 Diag(OldTD->getLocation(), diag::note_previous_definition); 8581 Invalid = true; 8582 } 8583 } 8584 } 8585 8586 // Merge any previous default template arguments into our parameters, 8587 // and check the parameter list. 8588 if (CheckTemplateParameterList(TemplateParams, OldTemplateParams, 8589 TPC_TypeAliasTemplate)) 8590 return nullptr; 8591 8592 TypeAliasTemplateDecl *NewDecl = 8593 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc, 8594 Name.Identifier, TemplateParams, 8595 NewTD); 8596 NewTD->setDescribedAliasTemplate(NewDecl); 8597 8598 NewDecl->setAccess(AS); 8599 8600 if (Invalid) 8601 NewDecl->setInvalidDecl(); 8602 else if (OldDecl) 8603 NewDecl->setPreviousDecl(OldDecl); 8604 8605 NewND = NewDecl; 8606 } else { 8607 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration); 8608 NewND = NewTD; 8609 } 8610 8611 if (!Redeclaration) 8612 PushOnScopeChains(NewND, S); 8613 8614 ActOnDocumentableDecl(NewND); 8615 return NewND; 8616 } 8617 8618 Decl *Sema::ActOnNamespaceAliasDef(Scope *S, SourceLocation NamespaceLoc, 8619 SourceLocation AliasLoc, 8620 IdentifierInfo *Alias, CXXScopeSpec &SS, 8621 SourceLocation IdentLoc, 8622 IdentifierInfo *Ident) { 8623 8624 // Lookup the namespace name. 8625 LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName); 8626 LookupParsedName(R, S, &SS); 8627 8628 if (R.isAmbiguous()) 8629 return nullptr; 8630 8631 if (R.empty()) { 8632 if (!TryNamespaceTypoCorrection(*this, R, S, SS, IdentLoc, Ident)) { 8633 Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); 8634 return nullptr; 8635 } 8636 } 8637 assert(!R.isAmbiguous() && !R.empty()); 8638 8639 // Check if we have a previous declaration with the same name. 8640 NamedDecl *PrevDecl = LookupSingleName(S, Alias, AliasLoc, LookupOrdinaryName, 8641 ForRedeclaration); 8642 if (PrevDecl && !isDeclInScope(PrevDecl, CurContext, S)) 8643 PrevDecl = nullptr; 8644 8645 NamedDecl *ND = R.getFoundDecl(); 8646 8647 if (PrevDecl) { 8648 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) { 8649 // We already have an alias with the same name that points to the same 8650 // namespace; check that it matches. 8651 if (!AD->getNamespace()->Equals(getNamespaceDecl(ND))) { 8652 Diag(AliasLoc, diag::err_redefinition_different_namespace_alias) 8653 << Alias; 8654 Diag(PrevDecl->getLocation(), diag::note_previous_namespace_alias) 8655 << AD->getNamespace(); 8656 return nullptr; 8657 } 8658 } else { 8659 unsigned DiagID = isa<NamespaceDecl>(PrevDecl) 8660 ? diag::err_redefinition 8661 : diag::err_redefinition_different_kind; 8662 Diag(AliasLoc, DiagID) << Alias; 8663 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 8664 return nullptr; 8665 } 8666 } 8667 8668 // The use of a nested name specifier may trigger deprecation warnings. 8669 DiagnoseUseOfDecl(ND, IdentLoc); 8670 8671 NamespaceAliasDecl *AliasDecl = 8672 NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc, 8673 Alias, SS.getWithLocInContext(Context), 8674 IdentLoc, ND); 8675 if (PrevDecl) 8676 AliasDecl->setPreviousDecl(cast<NamespaceAliasDecl>(PrevDecl)); 8677 8678 PushOnScopeChains(AliasDecl, S); 8679 return AliasDecl; 8680 } 8681 8682 Sema::ImplicitExceptionSpecification 8683 Sema::ComputeDefaultedDefaultCtorExceptionSpec(SourceLocation Loc, 8684 CXXMethodDecl *MD) { 8685 CXXRecordDecl *ClassDecl = MD->getParent(); 8686 8687 // C++ [except.spec]p14: 8688 // An implicitly declared special member function (Clause 12) shall have an 8689 // exception-specification. [...] 8690 ImplicitExceptionSpecification ExceptSpec(*this); 8691 if (ClassDecl->isInvalidDecl()) 8692 return ExceptSpec; 8693 8694 // Direct base-class constructors. 8695 for (const auto &B : ClassDecl->bases()) { 8696 if (B.isVirtual()) // Handled below. 8697 continue; 8698 8699 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8700 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8701 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8702 // If this is a deleted function, add it anyway. This might be conformant 8703 // with the standard. This might not. I'm not sure. It might not matter. 8704 if (Constructor) 8705 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8706 } 8707 } 8708 8709 // Virtual base-class constructors. 8710 for (const auto &B : ClassDecl->vbases()) { 8711 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8712 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8713 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8714 // If this is a deleted function, add it anyway. This might be conformant 8715 // with the standard. This might not. I'm not sure. It might not matter. 8716 if (Constructor) 8717 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8718 } 8719 } 8720 8721 // Field constructors. 8722 for (const auto *F : ClassDecl->fields()) { 8723 if (F->hasInClassInitializer()) { 8724 if (Expr *E = F->getInClassInitializer()) 8725 ExceptSpec.CalledExpr(E); 8726 } else if (const RecordType *RecordTy 8727 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8728 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8729 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8730 // If this is a deleted function, add it anyway. This might be conformant 8731 // with the standard. This might not. I'm not sure. It might not matter. 8732 // In particular, the problem is that this function never gets called. It 8733 // might just be ill-formed because this function attempts to refer to 8734 // a deleted function here. 8735 if (Constructor) 8736 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8737 } 8738 } 8739 8740 return ExceptSpec; 8741 } 8742 8743 Sema::ImplicitExceptionSpecification 8744 Sema::ComputeInheritingCtorExceptionSpec(CXXConstructorDecl *CD) { 8745 CXXRecordDecl *ClassDecl = CD->getParent(); 8746 8747 // C++ [except.spec]p14: 8748 // An inheriting constructor [...] shall have an exception-specification. [...] 8749 ImplicitExceptionSpecification ExceptSpec(*this); 8750 if (ClassDecl->isInvalidDecl()) 8751 return ExceptSpec; 8752 8753 // Inherited constructor. 8754 const CXXConstructorDecl *InheritedCD = CD->getInheritedConstructor(); 8755 const CXXRecordDecl *InheritedDecl = InheritedCD->getParent(); 8756 // FIXME: Copying or moving the parameters could add extra exceptions to the 8757 // set, as could the default arguments for the inherited constructor. This 8758 // will be addressed when we implement the resolution of core issue 1351. 8759 ExceptSpec.CalledDecl(CD->getLocStart(), InheritedCD); 8760 8761 // Direct base-class constructors. 8762 for (const auto &B : ClassDecl->bases()) { 8763 if (B.isVirtual()) // Handled below. 8764 continue; 8765 8766 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8767 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8768 if (BaseClassDecl == InheritedDecl) 8769 continue; 8770 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8771 if (Constructor) 8772 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8773 } 8774 } 8775 8776 // Virtual base-class constructors. 8777 for (const auto &B : ClassDecl->vbases()) { 8778 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 8779 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 8780 if (BaseClassDecl == InheritedDecl) 8781 continue; 8782 CXXConstructorDecl *Constructor = LookupDefaultConstructor(BaseClassDecl); 8783 if (Constructor) 8784 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 8785 } 8786 } 8787 8788 // Field constructors. 8789 for (const auto *F : ClassDecl->fields()) { 8790 if (F->hasInClassInitializer()) { 8791 if (Expr *E = F->getInClassInitializer()) 8792 ExceptSpec.CalledExpr(E); 8793 } else if (const RecordType *RecordTy 8794 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) { 8795 CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 8796 CXXConstructorDecl *Constructor = LookupDefaultConstructor(FieldRecDecl); 8797 if (Constructor) 8798 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 8799 } 8800 } 8801 8802 return ExceptSpec; 8803 } 8804 8805 namespace { 8806 /// RAII object to register a special member as being currently declared. 8807 struct DeclaringSpecialMember { 8808 Sema &S; 8809 Sema::SpecialMemberDecl D; 8810 bool WasAlreadyBeingDeclared; 8811 8812 DeclaringSpecialMember(Sema &S, CXXRecordDecl *RD, Sema::CXXSpecialMember CSM) 8813 : S(S), D(RD, CSM) { 8814 WasAlreadyBeingDeclared = !S.SpecialMembersBeingDeclared.insert(D).second; 8815 if (WasAlreadyBeingDeclared) 8816 // This almost never happens, but if it does, ensure that our cache 8817 // doesn't contain a stale result. 8818 S.SpecialMemberCache.clear(); 8819 8820 // FIXME: Register a note to be produced if we encounter an error while 8821 // declaring the special member. 8822 } 8823 ~DeclaringSpecialMember() { 8824 if (!WasAlreadyBeingDeclared) 8825 S.SpecialMembersBeingDeclared.erase(D); 8826 } 8827 8828 /// \brief Are we already trying to declare this special member? 8829 bool isAlreadyBeingDeclared() const { 8830 return WasAlreadyBeingDeclared; 8831 } 8832 }; 8833 } 8834 8835 CXXConstructorDecl *Sema::DeclareImplicitDefaultConstructor( 8836 CXXRecordDecl *ClassDecl) { 8837 // C++ [class.ctor]p5: 8838 // A default constructor for a class X is a constructor of class X 8839 // that can be called without an argument. If there is no 8840 // user-declared constructor for class X, a default constructor is 8841 // implicitly declared. An implicitly-declared default constructor 8842 // is an inline public member of its class. 8843 assert(ClassDecl->needsImplicitDefaultConstructor() && 8844 "Should not build implicit default constructor!"); 8845 8846 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDefaultConstructor); 8847 if (DSM.isAlreadyBeingDeclared()) 8848 return nullptr; 8849 8850 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 8851 CXXDefaultConstructor, 8852 false); 8853 8854 // Create the actual constructor declaration. 8855 CanQualType ClassType 8856 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 8857 SourceLocation ClassLoc = ClassDecl->getLocation(); 8858 DeclarationName Name 8859 = Context.DeclarationNames.getCXXConstructorName(ClassType); 8860 DeclarationNameInfo NameInfo(Name, ClassLoc); 8861 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( 8862 Context, ClassDecl, ClassLoc, NameInfo, /*Type*/QualType(), 8863 /*TInfo=*/nullptr, /*isExplicit=*/false, /*isInline=*/true, 8864 /*isImplicitlyDeclared=*/true, Constexpr); 8865 DefaultCon->setAccess(AS_public); 8866 DefaultCon->setDefaulted(); 8867 8868 if (getLangOpts().CUDA) { 8869 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDefaultConstructor, 8870 DefaultCon, 8871 /* ConstRHS */ false, 8872 /* Diagnose */ false); 8873 } 8874 8875 // Build an exception specification pointing back at this constructor. 8876 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, DefaultCon); 8877 DefaultCon->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 8878 8879 // We don't need to use SpecialMemberIsTrivial here; triviality for default 8880 // constructors is easy to compute. 8881 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); 8882 8883 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) 8884 SetDeclDeleted(DefaultCon, ClassLoc); 8885 8886 // Note that we have declared this constructor. 8887 ++ASTContext::NumImplicitDefaultConstructorsDeclared; 8888 8889 if (Scope *S = getScopeForContext(ClassDecl)) 8890 PushOnScopeChains(DefaultCon, S, false); 8891 ClassDecl->addDecl(DefaultCon); 8892 8893 return DefaultCon; 8894 } 8895 8896 void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, 8897 CXXConstructorDecl *Constructor) { 8898 assert((Constructor->isDefaulted() && Constructor->isDefaultConstructor() && 8899 !Constructor->doesThisDeclarationHaveABody() && 8900 !Constructor->isDeleted()) && 8901 "DefineImplicitDefaultConstructor - call it for implicit default ctor"); 8902 8903 CXXRecordDecl *ClassDecl = Constructor->getParent(); 8904 assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor"); 8905 8906 SynthesizedFunctionScope Scope(*this, Constructor); 8907 DiagnosticErrorTrap Trap(Diags); 8908 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 8909 Trap.hasErrorOccurred()) { 8910 Diag(CurrentLocation, diag::note_member_synthesized_at) 8911 << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl); 8912 Constructor->setInvalidDecl(); 8913 return; 8914 } 8915 8916 // The exception specification is needed because we are defining the 8917 // function. 8918 ResolveExceptionSpec(CurrentLocation, 8919 Constructor->getType()->castAs<FunctionProtoType>()); 8920 8921 SourceLocation Loc = Constructor->getLocEnd().isValid() 8922 ? Constructor->getLocEnd() 8923 : Constructor->getLocation(); 8924 Constructor->setBody(new (Context) CompoundStmt(Loc)); 8925 8926 Constructor->markUsed(Context); 8927 MarkVTableUsed(CurrentLocation, ClassDecl); 8928 8929 if (ASTMutationListener *L = getASTMutationListener()) { 8930 L->CompletedImplicitDefinition(Constructor); 8931 } 8932 8933 DiagnoseUninitializedFields(*this, Constructor); 8934 } 8935 8936 void Sema::ActOnFinishDelayedMemberInitializers(Decl *D) { 8937 // Perform any delayed checks on exception specifications. 8938 CheckDelayedMemberExceptionSpecs(); 8939 } 8940 8941 namespace { 8942 /// Information on inheriting constructors to declare. 8943 class InheritingConstructorInfo { 8944 public: 8945 InheritingConstructorInfo(Sema &SemaRef, CXXRecordDecl *Derived) 8946 : SemaRef(SemaRef), Derived(Derived) { 8947 // Mark the constructors that we already have in the derived class. 8948 // 8949 // C++11 [class.inhctor]p3: [...] a constructor is implicitly declared [...] 8950 // unless there is a user-declared constructor with the same signature in 8951 // the class where the using-declaration appears. 8952 visitAll(Derived, &InheritingConstructorInfo::noteDeclaredInDerived); 8953 } 8954 8955 void inheritAll(CXXRecordDecl *RD) { 8956 visitAll(RD, &InheritingConstructorInfo::inherit); 8957 } 8958 8959 private: 8960 /// Information about an inheriting constructor. 8961 struct InheritingConstructor { 8962 InheritingConstructor() 8963 : DeclaredInDerived(false), BaseCtor(nullptr), DerivedCtor(nullptr) {} 8964 8965 /// If \c true, a constructor with this signature is already declared 8966 /// in the derived class. 8967 bool DeclaredInDerived; 8968 8969 /// The constructor which is inherited. 8970 const CXXConstructorDecl *BaseCtor; 8971 8972 /// The derived constructor we declared. 8973 CXXConstructorDecl *DerivedCtor; 8974 }; 8975 8976 /// Inheriting constructors with a given canonical type. There can be at 8977 /// most one such non-template constructor, and any number of templated 8978 /// constructors. 8979 struct InheritingConstructorsForType { 8980 InheritingConstructor NonTemplate; 8981 SmallVector<std::pair<TemplateParameterList *, InheritingConstructor>, 4> 8982 Templates; 8983 8984 InheritingConstructor &getEntry(Sema &S, const CXXConstructorDecl *Ctor) { 8985 if (FunctionTemplateDecl *FTD = Ctor->getDescribedFunctionTemplate()) { 8986 TemplateParameterList *ParamList = FTD->getTemplateParameters(); 8987 for (unsigned I = 0, N = Templates.size(); I != N; ++I) 8988 if (S.TemplateParameterListsAreEqual(ParamList, Templates[I].first, 8989 false, S.TPL_TemplateMatch)) 8990 return Templates[I].second; 8991 Templates.push_back(std::make_pair(ParamList, InheritingConstructor())); 8992 return Templates.back().second; 8993 } 8994 8995 return NonTemplate; 8996 } 8997 }; 8998 8999 /// Get or create the inheriting constructor record for a constructor. 9000 InheritingConstructor &getEntry(const CXXConstructorDecl *Ctor, 9001 QualType CtorType) { 9002 return Map[CtorType.getCanonicalType()->castAs<FunctionProtoType>()] 9003 .getEntry(SemaRef, Ctor); 9004 } 9005 9006 typedef void (InheritingConstructorInfo::*VisitFn)(const CXXConstructorDecl*); 9007 9008 /// Process all constructors for a class. 9009 void visitAll(const CXXRecordDecl *RD, VisitFn Callback) { 9010 for (const auto *Ctor : RD->ctors()) 9011 (this->*Callback)(Ctor); 9012 for (CXXRecordDecl::specific_decl_iterator<FunctionTemplateDecl> 9013 I(RD->decls_begin()), E(RD->decls_end()); 9014 I != E; ++I) { 9015 const FunctionDecl *FD = (*I)->getTemplatedDecl(); 9016 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) 9017 (this->*Callback)(CD); 9018 } 9019 } 9020 9021 /// Note that a constructor (or constructor template) was declared in Derived. 9022 void noteDeclaredInDerived(const CXXConstructorDecl *Ctor) { 9023 getEntry(Ctor, Ctor->getType()).DeclaredInDerived = true; 9024 } 9025 9026 /// Inherit a single constructor. 9027 void inherit(const CXXConstructorDecl *Ctor) { 9028 const FunctionProtoType *CtorType = 9029 Ctor->getType()->castAs<FunctionProtoType>(); 9030 ArrayRef<QualType> ArgTypes = CtorType->getParamTypes(); 9031 FunctionProtoType::ExtProtoInfo EPI = CtorType->getExtProtoInfo(); 9032 9033 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent()); 9034 9035 // Core issue (no number yet): the ellipsis is always discarded. 9036 if (EPI.Variadic) { 9037 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis); 9038 SemaRef.Diag(Ctor->getLocation(), 9039 diag::note_using_decl_constructor_ellipsis); 9040 EPI.Variadic = false; 9041 } 9042 9043 // Declare a constructor for each number of parameters. 9044 // 9045 // C++11 [class.inhctor]p1: 9046 // The candidate set of inherited constructors from the class X named in 9047 // the using-declaration consists of [... modulo defects ...] for each 9048 // constructor or constructor template of X, the set of constructors or 9049 // constructor templates that results from omitting any ellipsis parameter 9050 // specification and successively omitting parameters with a default 9051 // argument from the end of the parameter-type-list 9052 unsigned MinParams = minParamsToInherit(Ctor); 9053 unsigned Params = Ctor->getNumParams(); 9054 if (Params >= MinParams) { 9055 do 9056 declareCtor(UsingLoc, Ctor, 9057 SemaRef.Context.getFunctionType( 9058 Ctor->getReturnType(), ArgTypes.slice(0, Params), EPI)); 9059 while (Params > MinParams && 9060 Ctor->getParamDecl(--Params)->hasDefaultArg()); 9061 } 9062 } 9063 9064 /// Find the using-declaration which specified that we should inherit the 9065 /// constructors of \p Base. 9066 SourceLocation getUsingLoc(const CXXRecordDecl *Base) { 9067 // No fancy lookup required; just look for the base constructor name 9068 // directly within the derived class. 9069 ASTContext &Context = SemaRef.Context; 9070 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9071 Context.getCanonicalType(Context.getRecordType(Base))); 9072 DeclContext::lookup_result Decls = Derived->lookup(Name); 9073 return Decls.empty() ? Derived->getLocation() : Decls[0]->getLocation(); 9074 } 9075 9076 unsigned minParamsToInherit(const CXXConstructorDecl *Ctor) { 9077 // C++11 [class.inhctor]p3: 9078 // [F]or each constructor template in the candidate set of inherited 9079 // constructors, a constructor template is implicitly declared 9080 if (Ctor->getDescribedFunctionTemplate()) 9081 return 0; 9082 9083 // For each non-template constructor in the candidate set of inherited 9084 // constructors other than a constructor having no parameters or a 9085 // copy/move constructor having a single parameter, a constructor is 9086 // implicitly declared [...] 9087 if (Ctor->getNumParams() == 0) 9088 return 1; 9089 if (Ctor->isCopyOrMoveConstructor()) 9090 return 2; 9091 9092 // Per discussion on core reflector, never inherit a constructor which 9093 // would become a default, copy, or move constructor of Derived either. 9094 const ParmVarDecl *PD = Ctor->getParamDecl(0); 9095 const ReferenceType *RT = PD->getType()->getAs<ReferenceType>(); 9096 return (RT && RT->getPointeeCXXRecordDecl() == Derived) ? 2 : 1; 9097 } 9098 9099 /// Declare a single inheriting constructor, inheriting the specified 9100 /// constructor, with the given type. 9101 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor, 9102 QualType DerivedType) { 9103 InheritingConstructor &Entry = getEntry(BaseCtor, DerivedType); 9104 9105 // C++11 [class.inhctor]p3: 9106 // ... a constructor is implicitly declared with the same constructor 9107 // characteristics unless there is a user-declared constructor with 9108 // the same signature in the class where the using-declaration appears 9109 if (Entry.DeclaredInDerived) 9110 return; 9111 9112 // C++11 [class.inhctor]p7: 9113 // If two using-declarations declare inheriting constructors with the 9114 // same signature, the program is ill-formed 9115 if (Entry.DerivedCtor) { 9116 if (BaseCtor->getParent() != Entry.BaseCtor->getParent()) { 9117 // Only diagnose this once per constructor. 9118 if (Entry.DerivedCtor->isInvalidDecl()) 9119 return; 9120 Entry.DerivedCtor->setInvalidDecl(); 9121 9122 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict); 9123 SemaRef.Diag(BaseCtor->getLocation(), 9124 diag::note_using_decl_constructor_conflict_current_ctor); 9125 SemaRef.Diag(Entry.BaseCtor->getLocation(), 9126 diag::note_using_decl_constructor_conflict_previous_ctor); 9127 SemaRef.Diag(Entry.DerivedCtor->getLocation(), 9128 diag::note_using_decl_constructor_conflict_previous_using); 9129 } else { 9130 // Core issue (no number): if the same inheriting constructor is 9131 // produced by multiple base class constructors from the same base 9132 // class, the inheriting constructor is defined as deleted. 9133 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc); 9134 } 9135 9136 return; 9137 } 9138 9139 ASTContext &Context = SemaRef.Context; 9140 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( 9141 Context.getCanonicalType(Context.getRecordType(Derived))); 9142 DeclarationNameInfo NameInfo(Name, UsingLoc); 9143 9144 TemplateParameterList *TemplateParams = nullptr; 9145 if (const FunctionTemplateDecl *FTD = 9146 BaseCtor->getDescribedFunctionTemplate()) { 9147 TemplateParams = FTD->getTemplateParameters(); 9148 // We're reusing template parameters from a different DeclContext. This 9149 // is questionable at best, but works out because the template depth in 9150 // both places is guaranteed to be 0. 9151 // FIXME: Rebuild the template parameters in the new context, and 9152 // transform the function type to refer to them. 9153 } 9154 9155 // Build type source info pointing at the using-declaration. This is 9156 // required by template instantiation. 9157 TypeSourceInfo *TInfo = 9158 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc); 9159 FunctionProtoTypeLoc ProtoLoc = 9160 TInfo->getTypeLoc().IgnoreParens().castAs<FunctionProtoTypeLoc>(); 9161 9162 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create( 9163 Context, Derived, UsingLoc, NameInfo, DerivedType, 9164 TInfo, BaseCtor->isExplicit(), /*Inline=*/true, 9165 /*ImplicitlyDeclared=*/true, /*Constexpr=*/BaseCtor->isConstexpr()); 9166 9167 // Build an unevaluated exception specification for this constructor. 9168 const FunctionProtoType *FPT = DerivedType->castAs<FunctionProtoType>(); 9169 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 9170 EPI.ExceptionSpec.Type = EST_Unevaluated; 9171 EPI.ExceptionSpec.SourceDecl = DerivedCtor; 9172 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(), 9173 FPT->getParamTypes(), EPI)); 9174 9175 // Build the parameter declarations. 9176 SmallVector<ParmVarDecl *, 16> ParamDecls; 9177 for (unsigned I = 0, N = FPT->getNumParams(); I != N; ++I) { 9178 TypeSourceInfo *TInfo = 9179 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc); 9180 ParmVarDecl *PD = ParmVarDecl::Create( 9181 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, 9182 FPT->getParamType(I), TInfo, SC_None, /*DefaultArg=*/nullptr); 9183 PD->setScopeInfo(0, I); 9184 PD->setImplicit(); 9185 ParamDecls.push_back(PD); 9186 ProtoLoc.setParam(I, PD); 9187 } 9188 9189 // Set up the new constructor. 9190 DerivedCtor->setAccess(BaseCtor->getAccess()); 9191 DerivedCtor->setParams(ParamDecls); 9192 DerivedCtor->setInheritedConstructor(BaseCtor); 9193 if (BaseCtor->isDeleted()) 9194 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc); 9195 9196 // If this is a constructor template, build the template declaration. 9197 if (TemplateParams) { 9198 FunctionTemplateDecl *DerivedTemplate = 9199 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name, 9200 TemplateParams, DerivedCtor); 9201 DerivedTemplate->setAccess(BaseCtor->getAccess()); 9202 DerivedCtor->setDescribedFunctionTemplate(DerivedTemplate); 9203 Derived->addDecl(DerivedTemplate); 9204 } else { 9205 Derived->addDecl(DerivedCtor); 9206 } 9207 9208 Entry.BaseCtor = BaseCtor; 9209 Entry.DerivedCtor = DerivedCtor; 9210 } 9211 9212 Sema &SemaRef; 9213 CXXRecordDecl *Derived; 9214 typedef llvm::DenseMap<const Type *, InheritingConstructorsForType> MapType; 9215 MapType Map; 9216 }; 9217 } 9218 9219 void Sema::DeclareInheritingConstructors(CXXRecordDecl *ClassDecl) { 9220 // Defer declaring the inheriting constructors until the class is 9221 // instantiated. 9222 if (ClassDecl->isDependentContext()) 9223 return; 9224 9225 // Find base classes from which we might inherit constructors. 9226 SmallVector<CXXRecordDecl*, 4> InheritedBases; 9227 for (const auto &BaseIt : ClassDecl->bases()) 9228 if (BaseIt.getInheritConstructors()) 9229 InheritedBases.push_back(BaseIt.getType()->getAsCXXRecordDecl()); 9230 9231 // Go no further if we're not inheriting any constructors. 9232 if (InheritedBases.empty()) 9233 return; 9234 9235 // Declare the inherited constructors. 9236 InheritingConstructorInfo ICI(*this, ClassDecl); 9237 for (unsigned I = 0, N = InheritedBases.size(); I != N; ++I) 9238 ICI.inheritAll(InheritedBases[I]); 9239 } 9240 9241 void Sema::DefineInheritingConstructor(SourceLocation CurrentLocation, 9242 CXXConstructorDecl *Constructor) { 9243 CXXRecordDecl *ClassDecl = Constructor->getParent(); 9244 assert(Constructor->getInheritedConstructor() && 9245 !Constructor->doesThisDeclarationHaveABody() && 9246 !Constructor->isDeleted()); 9247 9248 SynthesizedFunctionScope Scope(*this, Constructor); 9249 DiagnosticErrorTrap Trap(Diags); 9250 if (SetCtorInitializers(Constructor, /*AnyErrors=*/false) || 9251 Trap.hasErrorOccurred()) { 9252 Diag(CurrentLocation, diag::note_inhctor_synthesized_at) 9253 << Context.getTagDeclType(ClassDecl); 9254 Constructor->setInvalidDecl(); 9255 return; 9256 } 9257 9258 SourceLocation Loc = Constructor->getLocation(); 9259 Constructor->setBody(new (Context) CompoundStmt(Loc)); 9260 9261 Constructor->markUsed(Context); 9262 MarkVTableUsed(CurrentLocation, ClassDecl); 9263 9264 if (ASTMutationListener *L = getASTMutationListener()) { 9265 L->CompletedImplicitDefinition(Constructor); 9266 } 9267 } 9268 9269 9270 Sema::ImplicitExceptionSpecification 9271 Sema::ComputeDefaultedDtorExceptionSpec(CXXMethodDecl *MD) { 9272 CXXRecordDecl *ClassDecl = MD->getParent(); 9273 9274 // C++ [except.spec]p14: 9275 // An implicitly declared special member function (Clause 12) shall have 9276 // an exception-specification. 9277 ImplicitExceptionSpecification ExceptSpec(*this); 9278 if (ClassDecl->isInvalidDecl()) 9279 return ExceptSpec; 9280 9281 // Direct base-class destructors. 9282 for (const auto &B : ClassDecl->bases()) { 9283 if (B.isVirtual()) // Handled below. 9284 continue; 9285 9286 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9287 ExceptSpec.CalledDecl(B.getLocStart(), 9288 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9289 } 9290 9291 // Virtual base-class destructors. 9292 for (const auto &B : ClassDecl->vbases()) { 9293 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) 9294 ExceptSpec.CalledDecl(B.getLocStart(), 9295 LookupDestructor(cast<CXXRecordDecl>(BaseType->getDecl()))); 9296 } 9297 9298 // Field destructors. 9299 for (const auto *F : ClassDecl->fields()) { 9300 if (const RecordType *RecordTy 9301 = Context.getBaseElementType(F->getType())->getAs<RecordType>()) 9302 ExceptSpec.CalledDecl(F->getLocation(), 9303 LookupDestructor(cast<CXXRecordDecl>(RecordTy->getDecl()))); 9304 } 9305 9306 return ExceptSpec; 9307 } 9308 9309 CXXDestructorDecl *Sema::DeclareImplicitDestructor(CXXRecordDecl *ClassDecl) { 9310 // C++ [class.dtor]p2: 9311 // If a class has no user-declared destructor, a destructor is 9312 // declared implicitly. An implicitly-declared destructor is an 9313 // inline public member of its class. 9314 assert(ClassDecl->needsImplicitDestructor()); 9315 9316 DeclaringSpecialMember DSM(*this, ClassDecl, CXXDestructor); 9317 if (DSM.isAlreadyBeingDeclared()) 9318 return nullptr; 9319 9320 // Create the actual destructor declaration. 9321 CanQualType ClassType 9322 = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); 9323 SourceLocation ClassLoc = ClassDecl->getLocation(); 9324 DeclarationName Name 9325 = Context.DeclarationNames.getCXXDestructorName(ClassType); 9326 DeclarationNameInfo NameInfo(Name, ClassLoc); 9327 CXXDestructorDecl *Destructor 9328 = CXXDestructorDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, 9329 QualType(), nullptr, /*isInline=*/true, 9330 /*isImplicitlyDeclared=*/true); 9331 Destructor->setAccess(AS_public); 9332 Destructor->setDefaulted(); 9333 9334 if (getLangOpts().CUDA) { 9335 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXDestructor, 9336 Destructor, 9337 /* ConstRHS */ false, 9338 /* Diagnose */ false); 9339 } 9340 9341 // Build an exception specification pointing back at this destructor. 9342 FunctionProtoType::ExtProtoInfo EPI = getImplicitMethodEPI(*this, Destructor); 9343 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9344 9345 AddOverriddenMethods(ClassDecl, Destructor); 9346 9347 // We don't need to use SpecialMemberIsTrivial here; triviality for 9348 // destructors is easy to compute. 9349 Destructor->setTrivial(ClassDecl->hasTrivialDestructor()); 9350 9351 if (ShouldDeleteSpecialMember(Destructor, CXXDestructor)) 9352 SetDeclDeleted(Destructor, ClassLoc); 9353 9354 // Note that we have declared this destructor. 9355 ++ASTContext::NumImplicitDestructorsDeclared; 9356 9357 // Introduce this destructor into its scope. 9358 if (Scope *S = getScopeForContext(ClassDecl)) 9359 PushOnScopeChains(Destructor, S, false); 9360 ClassDecl->addDecl(Destructor); 9361 9362 return Destructor; 9363 } 9364 9365 void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation, 9366 CXXDestructorDecl *Destructor) { 9367 assert((Destructor->isDefaulted() && 9368 !Destructor->doesThisDeclarationHaveABody() && 9369 !Destructor->isDeleted()) && 9370 "DefineImplicitDestructor - call it for implicit default dtor"); 9371 CXXRecordDecl *ClassDecl = Destructor->getParent(); 9372 assert(ClassDecl && "DefineImplicitDestructor - invalid destructor"); 9373 9374 if (Destructor->isInvalidDecl()) 9375 return; 9376 9377 SynthesizedFunctionScope Scope(*this, Destructor); 9378 9379 DiagnosticErrorTrap Trap(Diags); 9380 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 9381 Destructor->getParent()); 9382 9383 if (CheckDestructor(Destructor) || Trap.hasErrorOccurred()) { 9384 Diag(CurrentLocation, diag::note_member_synthesized_at) 9385 << CXXDestructor << Context.getTagDeclType(ClassDecl); 9386 9387 Destructor->setInvalidDecl(); 9388 return; 9389 } 9390 9391 // The exception specification is needed because we are defining the 9392 // function. 9393 ResolveExceptionSpec(CurrentLocation, 9394 Destructor->getType()->castAs<FunctionProtoType>()); 9395 9396 SourceLocation Loc = Destructor->getLocEnd().isValid() 9397 ? Destructor->getLocEnd() 9398 : Destructor->getLocation(); 9399 Destructor->setBody(new (Context) CompoundStmt(Loc)); 9400 Destructor->markUsed(Context); 9401 MarkVTableUsed(CurrentLocation, ClassDecl); 9402 9403 if (ASTMutationListener *L = getASTMutationListener()) { 9404 L->CompletedImplicitDefinition(Destructor); 9405 } 9406 } 9407 9408 /// \brief Perform any semantic analysis which needs to be delayed until all 9409 /// pending class member declarations have been parsed. 9410 void Sema::ActOnFinishCXXMemberDecls() { 9411 // If the context is an invalid C++ class, just suppress these checks. 9412 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(CurContext)) { 9413 if (Record->isInvalidDecl()) { 9414 DelayedDefaultedMemberExceptionSpecs.clear(); 9415 DelayedExceptionSpecChecks.clear(); 9416 return; 9417 } 9418 } 9419 } 9420 9421 void Sema::AdjustDestructorExceptionSpec(CXXRecordDecl *ClassDecl, 9422 CXXDestructorDecl *Destructor) { 9423 assert(getLangOpts().CPlusPlus11 && 9424 "adjusting dtor exception specs was introduced in c++11"); 9425 9426 // C++11 [class.dtor]p3: 9427 // A declaration of a destructor that does not have an exception- 9428 // specification is implicitly considered to have the same exception- 9429 // specification as an implicit declaration. 9430 const FunctionProtoType *DtorType = Destructor->getType()-> 9431 getAs<FunctionProtoType>(); 9432 if (DtorType->hasExceptionSpec()) 9433 return; 9434 9435 // Replace the destructor's type, building off the existing one. Fortunately, 9436 // the only thing of interest in the destructor type is its extended info. 9437 // The return and arguments are fixed. 9438 FunctionProtoType::ExtProtoInfo EPI = DtorType->getExtProtoInfo(); 9439 EPI.ExceptionSpec.Type = EST_Unevaluated; 9440 EPI.ExceptionSpec.SourceDecl = Destructor; 9441 Destructor->setType(Context.getFunctionType(Context.VoidTy, None, EPI)); 9442 9443 // FIXME: If the destructor has a body that could throw, and the newly created 9444 // spec doesn't allow exceptions, we should emit a warning, because this 9445 // change in behavior can break conforming C++03 programs at runtime. 9446 // However, we don't have a body or an exception specification yet, so it 9447 // needs to be done somewhere else. 9448 } 9449 9450 namespace { 9451 /// \brief An abstract base class for all helper classes used in building the 9452 // copy/move operators. These classes serve as factory functions and help us 9453 // avoid using the same Expr* in the AST twice. 9454 class ExprBuilder { 9455 ExprBuilder(const ExprBuilder&) = delete; 9456 ExprBuilder &operator=(const ExprBuilder&) = delete; 9457 9458 protected: 9459 static Expr *assertNotNull(Expr *E) { 9460 assert(E && "Expression construction must not fail."); 9461 return E; 9462 } 9463 9464 public: 9465 ExprBuilder() {} 9466 virtual ~ExprBuilder() {} 9467 9468 virtual Expr *build(Sema &S, SourceLocation Loc) const = 0; 9469 }; 9470 9471 class RefBuilder: public ExprBuilder { 9472 VarDecl *Var; 9473 QualType VarType; 9474 9475 public: 9476 Expr *build(Sema &S, SourceLocation Loc) const override { 9477 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get()); 9478 } 9479 9480 RefBuilder(VarDecl *Var, QualType VarType) 9481 : Var(Var), VarType(VarType) {} 9482 }; 9483 9484 class ThisBuilder: public ExprBuilder { 9485 public: 9486 Expr *build(Sema &S, SourceLocation Loc) const override { 9487 return assertNotNull(S.ActOnCXXThis(Loc).getAs<Expr>()); 9488 } 9489 }; 9490 9491 class CastBuilder: public ExprBuilder { 9492 const ExprBuilder &Builder; 9493 QualType Type; 9494 ExprValueKind Kind; 9495 const CXXCastPath &Path; 9496 9497 public: 9498 Expr *build(Sema &S, SourceLocation Loc) const override { 9499 return assertNotNull(S.ImpCastExprToType(Builder.build(S, Loc), Type, 9500 CK_UncheckedDerivedToBase, Kind, 9501 &Path).get()); 9502 } 9503 9504 CastBuilder(const ExprBuilder &Builder, QualType Type, ExprValueKind Kind, 9505 const CXXCastPath &Path) 9506 : Builder(Builder), Type(Type), Kind(Kind), Path(Path) {} 9507 }; 9508 9509 class DerefBuilder: public ExprBuilder { 9510 const ExprBuilder &Builder; 9511 9512 public: 9513 Expr *build(Sema &S, SourceLocation Loc) const override { 9514 return assertNotNull( 9515 S.CreateBuiltinUnaryOp(Loc, UO_Deref, Builder.build(S, Loc)).get()); 9516 } 9517 9518 DerefBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9519 }; 9520 9521 class MemberBuilder: public ExprBuilder { 9522 const ExprBuilder &Builder; 9523 QualType Type; 9524 CXXScopeSpec SS; 9525 bool IsArrow; 9526 LookupResult &MemberLookup; 9527 9528 public: 9529 Expr *build(Sema &S, SourceLocation Loc) const override { 9530 return assertNotNull(S.BuildMemberReferenceExpr( 9531 Builder.build(S, Loc), Type, Loc, IsArrow, SS, SourceLocation(), 9532 nullptr, MemberLookup, nullptr).get()); 9533 } 9534 9535 MemberBuilder(const ExprBuilder &Builder, QualType Type, bool IsArrow, 9536 LookupResult &MemberLookup) 9537 : Builder(Builder), Type(Type), IsArrow(IsArrow), 9538 MemberLookup(MemberLookup) {} 9539 }; 9540 9541 class MoveCastBuilder: public ExprBuilder { 9542 const ExprBuilder &Builder; 9543 9544 public: 9545 Expr *build(Sema &S, SourceLocation Loc) const override { 9546 return assertNotNull(CastForMoving(S, Builder.build(S, Loc))); 9547 } 9548 9549 MoveCastBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9550 }; 9551 9552 class LvalueConvBuilder: public ExprBuilder { 9553 const ExprBuilder &Builder; 9554 9555 public: 9556 Expr *build(Sema &S, SourceLocation Loc) const override { 9557 return assertNotNull( 9558 S.DefaultLvalueConversion(Builder.build(S, Loc)).get()); 9559 } 9560 9561 LvalueConvBuilder(const ExprBuilder &Builder) : Builder(Builder) {} 9562 }; 9563 9564 class SubscriptBuilder: public ExprBuilder { 9565 const ExprBuilder &Base; 9566 const ExprBuilder &Index; 9567 9568 public: 9569 Expr *build(Sema &S, SourceLocation Loc) const override { 9570 return assertNotNull(S.CreateBuiltinArraySubscriptExpr( 9571 Base.build(S, Loc), Loc, Index.build(S, Loc), Loc).get()); 9572 } 9573 9574 SubscriptBuilder(const ExprBuilder &Base, const ExprBuilder &Index) 9575 : Base(Base), Index(Index) {} 9576 }; 9577 9578 } // end anonymous namespace 9579 9580 /// When generating a defaulted copy or move assignment operator, if a field 9581 /// should be copied with __builtin_memcpy rather than via explicit assignments, 9582 /// do so. This optimization only applies for arrays of scalars, and for arrays 9583 /// of class type where the selected copy/move-assignment operator is trivial. 9584 static StmtResult 9585 buildMemcpyForAssignmentOp(Sema &S, SourceLocation Loc, QualType T, 9586 const ExprBuilder &ToB, const ExprBuilder &FromB) { 9587 // Compute the size of the memory buffer to be copied. 9588 QualType SizeType = S.Context.getSizeType(); 9589 llvm::APInt Size(S.Context.getTypeSize(SizeType), 9590 S.Context.getTypeSizeInChars(T).getQuantity()); 9591 9592 // Take the address of the field references for "from" and "to". We 9593 // directly construct UnaryOperators here because semantic analysis 9594 // does not permit us to take the address of an xvalue. 9595 Expr *From = FromB.build(S, Loc); 9596 From = new (S.Context) UnaryOperator(From, UO_AddrOf, 9597 S.Context.getPointerType(From->getType()), 9598 VK_RValue, OK_Ordinary, Loc); 9599 Expr *To = ToB.build(S, Loc); 9600 To = new (S.Context) UnaryOperator(To, UO_AddrOf, 9601 S.Context.getPointerType(To->getType()), 9602 VK_RValue, OK_Ordinary, Loc); 9603 9604 const Type *E = T->getBaseElementTypeUnsafe(); 9605 bool NeedsCollectableMemCpy = 9606 E->isRecordType() && E->getAs<RecordType>()->getDecl()->hasObjectMember(); 9607 9608 // Create a reference to the __builtin_objc_memmove_collectable function 9609 StringRef MemCpyName = NeedsCollectableMemCpy ? 9610 "__builtin_objc_memmove_collectable" : 9611 "__builtin_memcpy"; 9612 LookupResult R(S, &S.Context.Idents.get(MemCpyName), Loc, 9613 Sema::LookupOrdinaryName); 9614 S.LookupName(R, S.TUScope, true); 9615 9616 FunctionDecl *MemCpy = R.getAsSingle<FunctionDecl>(); 9617 if (!MemCpy) 9618 // Something went horribly wrong earlier, and we will have complained 9619 // about it. 9620 return StmtError(); 9621 9622 ExprResult MemCpyRef = S.BuildDeclRefExpr(MemCpy, S.Context.BuiltinFnTy, 9623 VK_RValue, Loc, nullptr); 9624 assert(MemCpyRef.isUsable() && "Builtin reference cannot fail"); 9625 9626 Expr *CallArgs[] = { 9627 To, From, IntegerLiteral::Create(S.Context, Size, SizeType, Loc) 9628 }; 9629 ExprResult Call = S.ActOnCallExpr(/*Scope=*/nullptr, MemCpyRef.get(), 9630 Loc, CallArgs, Loc); 9631 9632 assert(!Call.isInvalid() && "Call to __builtin_memcpy cannot fail!"); 9633 return Call.getAs<Stmt>(); 9634 } 9635 9636 /// \brief Builds a statement that copies/moves the given entity from \p From to 9637 /// \c To. 9638 /// 9639 /// This routine is used to copy/move the members of a class with an 9640 /// implicitly-declared copy/move assignment operator. When the entities being 9641 /// copied are arrays, this routine builds for loops to copy them. 9642 /// 9643 /// \param S The Sema object used for type-checking. 9644 /// 9645 /// \param Loc The location where the implicit copy/move is being generated. 9646 /// 9647 /// \param T The type of the expressions being copied/moved. Both expressions 9648 /// must have this type. 9649 /// 9650 /// \param To The expression we are copying/moving to. 9651 /// 9652 /// \param From The expression we are copying/moving from. 9653 /// 9654 /// \param CopyingBaseSubobject Whether we're copying/moving a base subobject. 9655 /// Otherwise, it's a non-static member subobject. 9656 /// 9657 /// \param Copying Whether we're copying or moving. 9658 /// 9659 /// \param Depth Internal parameter recording the depth of the recursion. 9660 /// 9661 /// \returns A statement or a loop that copies the expressions, or StmtResult(0) 9662 /// if a memcpy should be used instead. 9663 static StmtResult 9664 buildSingleCopyAssignRecursively(Sema &S, SourceLocation Loc, QualType T, 9665 const ExprBuilder &To, const ExprBuilder &From, 9666 bool CopyingBaseSubobject, bool Copying, 9667 unsigned Depth = 0) { 9668 // C++11 [class.copy]p28: 9669 // Each subobject is assigned in the manner appropriate to its type: 9670 // 9671 // - if the subobject is of class type, as if by a call to operator= with 9672 // the subobject as the object expression and the corresponding 9673 // subobject of x as a single function argument (as if by explicit 9674 // qualification; that is, ignoring any possible virtual overriding 9675 // functions in more derived classes); 9676 // 9677 // C++03 [class.copy]p13: 9678 // - if the subobject is of class type, the copy assignment operator for 9679 // the class is used (as if by explicit qualification; that is, 9680 // ignoring any possible virtual overriding functions in more derived 9681 // classes); 9682 if (const RecordType *RecordTy = T->getAs<RecordType>()) { 9683 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(RecordTy->getDecl()); 9684 9685 // Look for operator=. 9686 DeclarationName Name 9687 = S.Context.DeclarationNames.getCXXOperatorName(OO_Equal); 9688 LookupResult OpLookup(S, Name, Loc, Sema::LookupOrdinaryName); 9689 S.LookupQualifiedName(OpLookup, ClassDecl, false); 9690 9691 // Prior to C++11, filter out any result that isn't a copy/move-assignment 9692 // operator. 9693 if (!S.getLangOpts().CPlusPlus11) { 9694 LookupResult::Filter F = OpLookup.makeFilter(); 9695 while (F.hasNext()) { 9696 NamedDecl *D = F.next(); 9697 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 9698 if (Method->isCopyAssignmentOperator() || 9699 (!Copying && Method->isMoveAssignmentOperator())) 9700 continue; 9701 9702 F.erase(); 9703 } 9704 F.done(); 9705 } 9706 9707 // Suppress the protected check (C++ [class.protected]) for each of the 9708 // assignment operators we found. This strange dance is required when 9709 // we're assigning via a base classes's copy-assignment operator. To 9710 // ensure that we're getting the right base class subobject (without 9711 // ambiguities), we need to cast "this" to that subobject type; to 9712 // ensure that we don't go through the virtual call mechanism, we need 9713 // to qualify the operator= name with the base class (see below). However, 9714 // this means that if the base class has a protected copy assignment 9715 // operator, the protected member access check will fail. So, we 9716 // rewrite "protected" access to "public" access in this case, since we 9717 // know by construction that we're calling from a derived class. 9718 if (CopyingBaseSubobject) { 9719 for (LookupResult::iterator L = OpLookup.begin(), LEnd = OpLookup.end(); 9720 L != LEnd; ++L) { 9721 if (L.getAccess() == AS_protected) 9722 L.setAccess(AS_public); 9723 } 9724 } 9725 9726 // Create the nested-name-specifier that will be used to qualify the 9727 // reference to operator=; this is required to suppress the virtual 9728 // call mechanism. 9729 CXXScopeSpec SS; 9730 const Type *CanonicalT = S.Context.getCanonicalType(T.getTypePtr()); 9731 SS.MakeTrivial(S.Context, 9732 NestedNameSpecifier::Create(S.Context, nullptr, false, 9733 CanonicalT), 9734 Loc); 9735 9736 // Create the reference to operator=. 9737 ExprResult OpEqualRef 9738 = S.BuildMemberReferenceExpr(To.build(S, Loc), T, Loc, /*isArrow=*/false, 9739 SS, /*TemplateKWLoc=*/SourceLocation(), 9740 /*FirstQualifierInScope=*/nullptr, 9741 OpLookup, 9742 /*TemplateArgs=*/nullptr, 9743 /*SuppressQualifierCheck=*/true); 9744 if (OpEqualRef.isInvalid()) 9745 return StmtError(); 9746 9747 // Build the call to the assignment operator. 9748 9749 Expr *FromInst = From.build(S, Loc); 9750 ExprResult Call = S.BuildCallToMemberFunction(/*Scope=*/nullptr, 9751 OpEqualRef.getAs<Expr>(), 9752 Loc, FromInst, Loc); 9753 if (Call.isInvalid()) 9754 return StmtError(); 9755 9756 // If we built a call to a trivial 'operator=' while copying an array, 9757 // bail out. We'll replace the whole shebang with a memcpy. 9758 CXXMemberCallExpr *CE = dyn_cast<CXXMemberCallExpr>(Call.get()); 9759 if (CE && CE->getMethodDecl()->isTrivial() && Depth) 9760 return StmtResult((Stmt*)nullptr); 9761 9762 // Convert to an expression-statement, and clean up any produced 9763 // temporaries. 9764 return S.ActOnExprStmt(Call); 9765 } 9766 9767 // - if the subobject is of scalar type, the built-in assignment 9768 // operator is used. 9769 const ConstantArrayType *ArrayTy = S.Context.getAsConstantArrayType(T); 9770 if (!ArrayTy) { 9771 ExprResult Assignment = S.CreateBuiltinBinOp( 9772 Loc, BO_Assign, To.build(S, Loc), From.build(S, Loc)); 9773 if (Assignment.isInvalid()) 9774 return StmtError(); 9775 return S.ActOnExprStmt(Assignment); 9776 } 9777 9778 // - if the subobject is an array, each element is assigned, in the 9779 // manner appropriate to the element type; 9780 9781 // Construct a loop over the array bounds, e.g., 9782 // 9783 // for (__SIZE_TYPE__ i0 = 0; i0 != array-size; ++i0) 9784 // 9785 // that will copy each of the array elements. 9786 QualType SizeType = S.Context.getSizeType(); 9787 9788 // Create the iteration variable. 9789 IdentifierInfo *IterationVarName = nullptr; 9790 { 9791 SmallString<8> Str; 9792 llvm::raw_svector_ostream OS(Str); 9793 OS << "__i" << Depth; 9794 IterationVarName = &S.Context.Idents.get(OS.str()); 9795 } 9796 VarDecl *IterationVar = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, 9797 IterationVarName, SizeType, 9798 S.Context.getTrivialTypeSourceInfo(SizeType, Loc), 9799 SC_None); 9800 9801 // Initialize the iteration variable to zero. 9802 llvm::APInt Zero(S.Context.getTypeSize(SizeType), 0); 9803 IterationVar->setInit(IntegerLiteral::Create(S.Context, Zero, SizeType, Loc)); 9804 9805 // Creates a reference to the iteration variable. 9806 RefBuilder IterationVarRef(IterationVar, SizeType); 9807 LvalueConvBuilder IterationVarRefRVal(IterationVarRef); 9808 9809 // Create the DeclStmt that holds the iteration variable. 9810 Stmt *InitStmt = new (S.Context) DeclStmt(DeclGroupRef(IterationVar),Loc,Loc); 9811 9812 // Subscript the "from" and "to" expressions with the iteration variable. 9813 SubscriptBuilder FromIndexCopy(From, IterationVarRefRVal); 9814 MoveCastBuilder FromIndexMove(FromIndexCopy); 9815 const ExprBuilder *FromIndex; 9816 if (Copying) 9817 FromIndex = &FromIndexCopy; 9818 else 9819 FromIndex = &FromIndexMove; 9820 9821 SubscriptBuilder ToIndex(To, IterationVarRefRVal); 9822 9823 // Build the copy/move for an individual element of the array. 9824 StmtResult Copy = 9825 buildSingleCopyAssignRecursively(S, Loc, ArrayTy->getElementType(), 9826 ToIndex, *FromIndex, CopyingBaseSubobject, 9827 Copying, Depth + 1); 9828 // Bail out if copying fails or if we determined that we should use memcpy. 9829 if (Copy.isInvalid() || !Copy.get()) 9830 return Copy; 9831 9832 // Create the comparison against the array bound. 9833 llvm::APInt Upper 9834 = ArrayTy->getSize().zextOrTrunc(S.Context.getTypeSize(SizeType)); 9835 Expr *Comparison 9836 = new (S.Context) BinaryOperator(IterationVarRefRVal.build(S, Loc), 9837 IntegerLiteral::Create(S.Context, Upper, SizeType, Loc), 9838 BO_NE, S.Context.BoolTy, 9839 VK_RValue, OK_Ordinary, Loc, false); 9840 9841 // Create the pre-increment of the iteration variable. 9842 Expr *Increment 9843 = new (S.Context) UnaryOperator(IterationVarRef.build(S, Loc), UO_PreInc, 9844 SizeType, VK_LValue, OK_Ordinary, Loc); 9845 9846 // Construct the loop that copies all elements of this array. 9847 return S.ActOnForStmt(Loc, Loc, InitStmt, 9848 S.MakeFullExpr(Comparison), 9849 nullptr, S.MakeFullDiscardedValueExpr(Increment), 9850 Loc, Copy.get()); 9851 } 9852 9853 static StmtResult 9854 buildSingleCopyAssign(Sema &S, SourceLocation Loc, QualType T, 9855 const ExprBuilder &To, const ExprBuilder &From, 9856 bool CopyingBaseSubobject, bool Copying) { 9857 // Maybe we should use a memcpy? 9858 if (T->isArrayType() && !T.isConstQualified() && !T.isVolatileQualified() && 9859 T.isTriviallyCopyableType(S.Context)) 9860 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 9861 9862 StmtResult Result(buildSingleCopyAssignRecursively(S, Loc, T, To, From, 9863 CopyingBaseSubobject, 9864 Copying, 0)); 9865 9866 // If we ended up picking a trivial assignment operator for an array of a 9867 // non-trivially-copyable class type, just emit a memcpy. 9868 if (!Result.isInvalid() && !Result.get()) 9869 return buildMemcpyForAssignmentOp(S, Loc, T, To, From); 9870 9871 return Result; 9872 } 9873 9874 Sema::ImplicitExceptionSpecification 9875 Sema::ComputeDefaultedCopyAssignmentExceptionSpec(CXXMethodDecl *MD) { 9876 CXXRecordDecl *ClassDecl = MD->getParent(); 9877 9878 ImplicitExceptionSpecification ExceptSpec(*this); 9879 if (ClassDecl->isInvalidDecl()) 9880 return ExceptSpec; 9881 9882 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 9883 assert(T->getNumParams() == 1 && "not a copy assignment op"); 9884 unsigned ArgQuals = 9885 T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 9886 9887 // C++ [except.spec]p14: 9888 // An implicitly declared special member function (Clause 12) shall have an 9889 // exception-specification. [...] 9890 9891 // It is unspecified whether or not an implicit copy assignment operator 9892 // attempts to deduplicate calls to assignment operators of virtual bases are 9893 // made. As such, this exception specification is effectively unspecified. 9894 // Based on a similar decision made for constness in C++0x, we're erring on 9895 // the side of assuming such calls to be made regardless of whether they 9896 // actually happen. 9897 for (const auto &Base : ClassDecl->bases()) { 9898 if (Base.isVirtual()) 9899 continue; 9900 9901 CXXRecordDecl *BaseClassDecl 9902 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 9903 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 9904 ArgQuals, false, 0)) 9905 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 9906 } 9907 9908 for (const auto &Base : ClassDecl->vbases()) { 9909 CXXRecordDecl *BaseClassDecl 9910 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 9911 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl, 9912 ArgQuals, false, 0)) 9913 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign); 9914 } 9915 9916 for (const auto *Field : ClassDecl->fields()) { 9917 QualType FieldType = Context.getBaseElementType(Field->getType()); 9918 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 9919 if (CXXMethodDecl *CopyAssign = 9920 LookupCopyingAssignment(FieldClassDecl, 9921 ArgQuals | FieldType.getCVRQualifiers(), 9922 false, 0)) 9923 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign); 9924 } 9925 } 9926 9927 return ExceptSpec; 9928 } 9929 9930 CXXMethodDecl *Sema::DeclareImplicitCopyAssignment(CXXRecordDecl *ClassDecl) { 9931 // Note: The following rules are largely analoguous to the copy 9932 // constructor rules. Note that virtual bases are not taken into account 9933 // for determining the argument type of the operator. Note also that 9934 // operators taking an object instead of a reference are allowed. 9935 assert(ClassDecl->needsImplicitCopyAssignment()); 9936 9937 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyAssignment); 9938 if (DSM.isAlreadyBeingDeclared()) 9939 return nullptr; 9940 9941 QualType ArgType = Context.getTypeDeclType(ClassDecl); 9942 QualType RetType = Context.getLValueReferenceType(ArgType); 9943 bool Const = ClassDecl->implicitCopyAssignmentHasConstParam(); 9944 if (Const) 9945 ArgType = ArgType.withConst(); 9946 ArgType = Context.getLValueReferenceType(ArgType); 9947 9948 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 9949 CXXCopyAssignment, 9950 Const); 9951 9952 // An implicitly-declared copy assignment operator is an inline public 9953 // member of its class. 9954 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 9955 SourceLocation ClassLoc = ClassDecl->getLocation(); 9956 DeclarationNameInfo NameInfo(Name, ClassLoc); 9957 CXXMethodDecl *CopyAssignment = 9958 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 9959 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 9960 /*isInline=*/true, Constexpr, SourceLocation()); 9961 CopyAssignment->setAccess(AS_public); 9962 CopyAssignment->setDefaulted(); 9963 CopyAssignment->setImplicit(); 9964 9965 if (getLangOpts().CUDA) { 9966 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyAssignment, 9967 CopyAssignment, 9968 /* ConstRHS */ Const, 9969 /* Diagnose */ false); 9970 } 9971 9972 // Build an exception specification pointing back at this member. 9973 FunctionProtoType::ExtProtoInfo EPI = 9974 getImplicitMethodEPI(*this, CopyAssignment); 9975 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 9976 9977 // Add the parameter to the operator. 9978 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment, 9979 ClassLoc, ClassLoc, 9980 /*Id=*/nullptr, ArgType, 9981 /*TInfo=*/nullptr, SC_None, 9982 nullptr); 9983 CopyAssignment->setParams(FromParam); 9984 9985 AddOverriddenMethods(ClassDecl, CopyAssignment); 9986 9987 CopyAssignment->setTrivial( 9988 ClassDecl->needsOverloadResolutionForCopyAssignment() 9989 ? SpecialMemberIsTrivial(CopyAssignment, CXXCopyAssignment) 9990 : ClassDecl->hasTrivialCopyAssignment()); 9991 9992 if (ShouldDeleteSpecialMember(CopyAssignment, CXXCopyAssignment)) 9993 SetDeclDeleted(CopyAssignment, ClassLoc); 9994 9995 // Note that we have added this copy-assignment operator. 9996 ++ASTContext::NumImplicitCopyAssignmentOperatorsDeclared; 9997 9998 if (Scope *S = getScopeForContext(ClassDecl)) 9999 PushOnScopeChains(CopyAssignment, S, false); 10000 ClassDecl->addDecl(CopyAssignment); 10001 10002 return CopyAssignment; 10003 } 10004 10005 /// Diagnose an implicit copy operation for a class which is odr-used, but 10006 /// which is deprecated because the class has a user-declared copy constructor, 10007 /// copy assignment operator, or destructor. 10008 static void diagnoseDeprecatedCopyOperation(Sema &S, CXXMethodDecl *CopyOp, 10009 SourceLocation UseLoc) { 10010 assert(CopyOp->isImplicit()); 10011 10012 CXXRecordDecl *RD = CopyOp->getParent(); 10013 CXXMethodDecl *UserDeclaredOperation = nullptr; 10014 10015 // In Microsoft mode, assignment operations don't affect constructors and 10016 // vice versa. 10017 if (RD->hasUserDeclaredDestructor()) { 10018 UserDeclaredOperation = RD->getDestructor(); 10019 } else if (!isa<CXXConstructorDecl>(CopyOp) && 10020 RD->hasUserDeclaredCopyConstructor() && 10021 !S.getLangOpts().MSVCCompat) { 10022 // Find any user-declared copy constructor. 10023 for (auto *I : RD->ctors()) { 10024 if (I->isCopyConstructor()) { 10025 UserDeclaredOperation = I; 10026 break; 10027 } 10028 } 10029 assert(UserDeclaredOperation); 10030 } else if (isa<CXXConstructorDecl>(CopyOp) && 10031 RD->hasUserDeclaredCopyAssignment() && 10032 !S.getLangOpts().MSVCCompat) { 10033 // Find any user-declared move assignment operator. 10034 for (auto *I : RD->methods()) { 10035 if (I->isCopyAssignmentOperator()) { 10036 UserDeclaredOperation = I; 10037 break; 10038 } 10039 } 10040 assert(UserDeclaredOperation); 10041 } 10042 10043 if (UserDeclaredOperation) { 10044 S.Diag(UserDeclaredOperation->getLocation(), 10045 diag::warn_deprecated_copy_operation) 10046 << RD << /*copy assignment*/!isa<CXXConstructorDecl>(CopyOp) 10047 << /*destructor*/isa<CXXDestructorDecl>(UserDeclaredOperation); 10048 S.Diag(UseLoc, diag::note_member_synthesized_at) 10049 << (isa<CXXConstructorDecl>(CopyOp) ? Sema::CXXCopyConstructor 10050 : Sema::CXXCopyAssignment) 10051 << RD; 10052 } 10053 } 10054 10055 void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation, 10056 CXXMethodDecl *CopyAssignOperator) { 10057 assert((CopyAssignOperator->isDefaulted() && 10058 CopyAssignOperator->isOverloadedOperator() && 10059 CopyAssignOperator->getOverloadedOperator() == OO_Equal && 10060 !CopyAssignOperator->doesThisDeclarationHaveABody() && 10061 !CopyAssignOperator->isDeleted()) && 10062 "DefineImplicitCopyAssignment called for wrong function"); 10063 10064 CXXRecordDecl *ClassDecl = CopyAssignOperator->getParent(); 10065 10066 if (ClassDecl->isInvalidDecl() || CopyAssignOperator->isInvalidDecl()) { 10067 CopyAssignOperator->setInvalidDecl(); 10068 return; 10069 } 10070 10071 // C++11 [class.copy]p18: 10072 // The [definition of an implicitly declared copy assignment operator] is 10073 // deprecated if the class has a user-declared copy constructor or a 10074 // user-declared destructor. 10075 if (getLangOpts().CPlusPlus11 && CopyAssignOperator->isImplicit()) 10076 diagnoseDeprecatedCopyOperation(*this, CopyAssignOperator, CurrentLocation); 10077 10078 CopyAssignOperator->markUsed(Context); 10079 10080 SynthesizedFunctionScope Scope(*this, CopyAssignOperator); 10081 DiagnosticErrorTrap Trap(Diags); 10082 10083 // C++0x [class.copy]p30: 10084 // The implicitly-defined or explicitly-defaulted copy assignment operator 10085 // for a non-union class X performs memberwise copy assignment of its 10086 // subobjects. The direct base classes of X are assigned first, in the 10087 // order of their declaration in the base-specifier-list, and then the 10088 // immediate non-static data members of X are assigned, in the order in 10089 // which they were declared in the class definition. 10090 10091 // The statements that form the synthesized function body. 10092 SmallVector<Stmt*, 8> Statements; 10093 10094 // The parameter for the "other" object, which we are copying from. 10095 ParmVarDecl *Other = CopyAssignOperator->getParamDecl(0); 10096 Qualifiers OtherQuals = Other->getType().getQualifiers(); 10097 QualType OtherRefType = Other->getType(); 10098 if (const LValueReferenceType *OtherRef 10099 = OtherRefType->getAs<LValueReferenceType>()) { 10100 OtherRefType = OtherRef->getPointeeType(); 10101 OtherQuals = OtherRefType.getQualifiers(); 10102 } 10103 10104 // Our location for everything implicitly-generated. 10105 SourceLocation Loc = CopyAssignOperator->getLocEnd().isValid() 10106 ? CopyAssignOperator->getLocEnd() 10107 : CopyAssignOperator->getLocation(); 10108 10109 // Builds a DeclRefExpr for the "other" object. 10110 RefBuilder OtherRef(Other, OtherRefType); 10111 10112 // Builds the "this" pointer. 10113 ThisBuilder This; 10114 10115 // Assign base classes. 10116 bool Invalid = false; 10117 for (auto &Base : ClassDecl->bases()) { 10118 // Form the assignment: 10119 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&>(other)); 10120 QualType BaseType = Base.getType().getUnqualifiedType(); 10121 if (!BaseType->isRecordType()) { 10122 Invalid = true; 10123 continue; 10124 } 10125 10126 CXXCastPath BasePath; 10127 BasePath.push_back(&Base); 10128 10129 // Construct the "from" expression, which is an implicit cast to the 10130 // appropriately-qualified base type. 10131 CastBuilder From(OtherRef, Context.getQualifiedType(BaseType, OtherQuals), 10132 VK_LValue, BasePath); 10133 10134 // Dereference "this". 10135 DerefBuilder DerefThis(This); 10136 CastBuilder To(DerefThis, 10137 Context.getCVRQualifiedType( 10138 BaseType, CopyAssignOperator->getTypeQualifiers()), 10139 VK_LValue, BasePath); 10140 10141 // Build the copy. 10142 StmtResult Copy = buildSingleCopyAssign(*this, Loc, BaseType, 10143 To, From, 10144 /*CopyingBaseSubobject=*/true, 10145 /*Copying=*/true); 10146 if (Copy.isInvalid()) { 10147 Diag(CurrentLocation, diag::note_member_synthesized_at) 10148 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10149 CopyAssignOperator->setInvalidDecl(); 10150 return; 10151 } 10152 10153 // Success! Record the copy. 10154 Statements.push_back(Copy.getAs<Expr>()); 10155 } 10156 10157 // Assign non-static members. 10158 for (auto *Field : ClassDecl->fields()) { 10159 if (Field->isUnnamedBitfield()) 10160 continue; 10161 10162 if (Field->isInvalidDecl()) { 10163 Invalid = true; 10164 continue; 10165 } 10166 10167 // Check for members of reference type; we can't copy those. 10168 if (Field->getType()->isReferenceType()) { 10169 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10170 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10171 Diag(Field->getLocation(), diag::note_declared_at); 10172 Diag(CurrentLocation, diag::note_member_synthesized_at) 10173 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10174 Invalid = true; 10175 continue; 10176 } 10177 10178 // Check for members of const-qualified, non-class type. 10179 QualType BaseType = Context.getBaseElementType(Field->getType()); 10180 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10181 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10182 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10183 Diag(Field->getLocation(), diag::note_declared_at); 10184 Diag(CurrentLocation, diag::note_member_synthesized_at) 10185 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10186 Invalid = true; 10187 continue; 10188 } 10189 10190 // Suppress assigning zero-width bitfields. 10191 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10192 continue; 10193 10194 QualType FieldType = Field->getType().getNonReferenceType(); 10195 if (FieldType->isIncompleteArrayType()) { 10196 assert(ClassDecl->hasFlexibleArrayMember() && 10197 "Incomplete array type is not valid"); 10198 continue; 10199 } 10200 10201 // Build references to the field in the object we're copying from and to. 10202 CXXScopeSpec SS; // Intentionally empty 10203 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10204 LookupMemberName); 10205 MemberLookup.addDecl(Field); 10206 MemberLookup.resolveKind(); 10207 10208 MemberBuilder From(OtherRef, OtherRefType, /*IsArrow=*/false, MemberLookup); 10209 10210 MemberBuilder To(This, getCurrentThisType(), /*IsArrow=*/true, MemberLookup); 10211 10212 // Build the copy of this field. 10213 StmtResult Copy = buildSingleCopyAssign(*this, Loc, FieldType, 10214 To, From, 10215 /*CopyingBaseSubobject=*/false, 10216 /*Copying=*/true); 10217 if (Copy.isInvalid()) { 10218 Diag(CurrentLocation, diag::note_member_synthesized_at) 10219 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10220 CopyAssignOperator->setInvalidDecl(); 10221 return; 10222 } 10223 10224 // Success! Record the copy. 10225 Statements.push_back(Copy.getAs<Stmt>()); 10226 } 10227 10228 if (!Invalid) { 10229 // Add a "return *this;" 10230 ExprResult ThisObj = CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10231 10232 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10233 if (Return.isInvalid()) 10234 Invalid = true; 10235 else { 10236 Statements.push_back(Return.getAs<Stmt>()); 10237 10238 if (Trap.hasErrorOccurred()) { 10239 Diag(CurrentLocation, diag::note_member_synthesized_at) 10240 << CXXCopyAssignment << Context.getTagDeclType(ClassDecl); 10241 Invalid = true; 10242 } 10243 } 10244 } 10245 10246 // The exception specification is needed because we are defining the 10247 // function. 10248 ResolveExceptionSpec(CurrentLocation, 10249 CopyAssignOperator->getType()->castAs<FunctionProtoType>()); 10250 10251 if (Invalid) { 10252 CopyAssignOperator->setInvalidDecl(); 10253 return; 10254 } 10255 10256 StmtResult Body; 10257 { 10258 CompoundScopeRAII CompoundScope(*this); 10259 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10260 /*isStmtExpr=*/false); 10261 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10262 } 10263 CopyAssignOperator->setBody(Body.getAs<Stmt>()); 10264 10265 if (ASTMutationListener *L = getASTMutationListener()) { 10266 L->CompletedImplicitDefinition(CopyAssignOperator); 10267 } 10268 } 10269 10270 Sema::ImplicitExceptionSpecification 10271 Sema::ComputeDefaultedMoveAssignmentExceptionSpec(CXXMethodDecl *MD) { 10272 CXXRecordDecl *ClassDecl = MD->getParent(); 10273 10274 ImplicitExceptionSpecification ExceptSpec(*this); 10275 if (ClassDecl->isInvalidDecl()) 10276 return ExceptSpec; 10277 10278 // C++0x [except.spec]p14: 10279 // An implicitly declared special member function (Clause 12) shall have an 10280 // exception-specification. [...] 10281 10282 // It is unspecified whether or not an implicit move assignment operator 10283 // attempts to deduplicate calls to assignment operators of virtual bases are 10284 // made. As such, this exception specification is effectively unspecified. 10285 // Based on a similar decision made for constness in C++0x, we're erring on 10286 // the side of assuming such calls to be made regardless of whether they 10287 // actually happen. 10288 // Note that a move constructor is not implicitly declared when there are 10289 // virtual bases, but it can still be user-declared and explicitly defaulted. 10290 for (const auto &Base : ClassDecl->bases()) { 10291 if (Base.isVirtual()) 10292 continue; 10293 10294 CXXRecordDecl *BaseClassDecl 10295 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10296 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10297 0, false, 0)) 10298 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10299 } 10300 10301 for (const auto &Base : ClassDecl->vbases()) { 10302 CXXRecordDecl *BaseClassDecl 10303 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10304 if (CXXMethodDecl *MoveAssign = LookupMovingAssignment(BaseClassDecl, 10305 0, false, 0)) 10306 ExceptSpec.CalledDecl(Base.getLocStart(), MoveAssign); 10307 } 10308 10309 for (const auto *Field : ClassDecl->fields()) { 10310 QualType FieldType = Context.getBaseElementType(Field->getType()); 10311 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10312 if (CXXMethodDecl *MoveAssign = 10313 LookupMovingAssignment(FieldClassDecl, 10314 FieldType.getCVRQualifiers(), 10315 false, 0)) 10316 ExceptSpec.CalledDecl(Field->getLocation(), MoveAssign); 10317 } 10318 } 10319 10320 return ExceptSpec; 10321 } 10322 10323 CXXMethodDecl *Sema::DeclareImplicitMoveAssignment(CXXRecordDecl *ClassDecl) { 10324 assert(ClassDecl->needsImplicitMoveAssignment()); 10325 10326 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveAssignment); 10327 if (DSM.isAlreadyBeingDeclared()) 10328 return nullptr; 10329 10330 // Note: The following rules are largely analoguous to the move 10331 // constructor rules. 10332 10333 QualType ArgType = Context.getTypeDeclType(ClassDecl); 10334 QualType RetType = Context.getLValueReferenceType(ArgType); 10335 ArgType = Context.getRValueReferenceType(ArgType); 10336 10337 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10338 CXXMoveAssignment, 10339 false); 10340 10341 // An implicitly-declared move assignment operator is an inline public 10342 // member of its class. 10343 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 10344 SourceLocation ClassLoc = ClassDecl->getLocation(); 10345 DeclarationNameInfo NameInfo(Name, ClassLoc); 10346 CXXMethodDecl *MoveAssignment = 10347 CXXMethodDecl::Create(Context, ClassDecl, ClassLoc, NameInfo, QualType(), 10348 /*TInfo=*/nullptr, /*StorageClass=*/SC_None, 10349 /*isInline=*/true, Constexpr, SourceLocation()); 10350 MoveAssignment->setAccess(AS_public); 10351 MoveAssignment->setDefaulted(); 10352 MoveAssignment->setImplicit(); 10353 10354 if (getLangOpts().CUDA) { 10355 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveAssignment, 10356 MoveAssignment, 10357 /* ConstRHS */ false, 10358 /* Diagnose */ false); 10359 } 10360 10361 // Build an exception specification pointing back at this member. 10362 FunctionProtoType::ExtProtoInfo EPI = 10363 getImplicitMethodEPI(*this, MoveAssignment); 10364 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); 10365 10366 // Add the parameter to the operator. 10367 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveAssignment, 10368 ClassLoc, ClassLoc, 10369 /*Id=*/nullptr, ArgType, 10370 /*TInfo=*/nullptr, SC_None, 10371 nullptr); 10372 MoveAssignment->setParams(FromParam); 10373 10374 AddOverriddenMethods(ClassDecl, MoveAssignment); 10375 10376 MoveAssignment->setTrivial( 10377 ClassDecl->needsOverloadResolutionForMoveAssignment() 10378 ? SpecialMemberIsTrivial(MoveAssignment, CXXMoveAssignment) 10379 : ClassDecl->hasTrivialMoveAssignment()); 10380 10381 if (ShouldDeleteSpecialMember(MoveAssignment, CXXMoveAssignment)) { 10382 ClassDecl->setImplicitMoveAssignmentIsDeleted(); 10383 SetDeclDeleted(MoveAssignment, ClassLoc); 10384 } 10385 10386 // Note that we have added this copy-assignment operator. 10387 ++ASTContext::NumImplicitMoveAssignmentOperatorsDeclared; 10388 10389 if (Scope *S = getScopeForContext(ClassDecl)) 10390 PushOnScopeChains(MoveAssignment, S, false); 10391 ClassDecl->addDecl(MoveAssignment); 10392 10393 return MoveAssignment; 10394 } 10395 10396 /// Check if we're implicitly defining a move assignment operator for a class 10397 /// with virtual bases. Such a move assignment might move-assign the virtual 10398 /// base multiple times. 10399 static void checkMoveAssignmentForRepeatedMove(Sema &S, CXXRecordDecl *Class, 10400 SourceLocation CurrentLocation) { 10401 assert(!Class->isDependentContext() && "should not define dependent move"); 10402 10403 // Only a virtual base could get implicitly move-assigned multiple times. 10404 // Only a non-trivial move assignment can observe this. We only want to 10405 // diagnose if we implicitly define an assignment operator that assigns 10406 // two base classes, both of which move-assign the same virtual base. 10407 if (Class->getNumVBases() == 0 || Class->hasTrivialMoveAssignment() || 10408 Class->getNumBases() < 2) 10409 return; 10410 10411 llvm::SmallVector<CXXBaseSpecifier *, 16> Worklist; 10412 typedef llvm::DenseMap<CXXRecordDecl*, CXXBaseSpecifier*> VBaseMap; 10413 VBaseMap VBases; 10414 10415 for (auto &BI : Class->bases()) { 10416 Worklist.push_back(&BI); 10417 while (!Worklist.empty()) { 10418 CXXBaseSpecifier *BaseSpec = Worklist.pop_back_val(); 10419 CXXRecordDecl *Base = BaseSpec->getType()->getAsCXXRecordDecl(); 10420 10421 // If the base has no non-trivial move assignment operators, 10422 // we don't care about moves from it. 10423 if (!Base->hasNonTrivialMoveAssignment()) 10424 continue; 10425 10426 // If there's nothing virtual here, skip it. 10427 if (!BaseSpec->isVirtual() && !Base->getNumVBases()) 10428 continue; 10429 10430 // If we're not actually going to call a move assignment for this base, 10431 // or the selected move assignment is trivial, skip it. 10432 Sema::SpecialMemberOverloadResult *SMOR = 10433 S.LookupSpecialMember(Base, Sema::CXXMoveAssignment, 10434 /*ConstArg*/false, /*VolatileArg*/false, 10435 /*RValueThis*/true, /*ConstThis*/false, 10436 /*VolatileThis*/false); 10437 if (!SMOR->getMethod() || SMOR->getMethod()->isTrivial() || 10438 !SMOR->getMethod()->isMoveAssignmentOperator()) 10439 continue; 10440 10441 if (BaseSpec->isVirtual()) { 10442 // We're going to move-assign this virtual base, and its move 10443 // assignment operator is not trivial. If this can happen for 10444 // multiple distinct direct bases of Class, diagnose it. (If it 10445 // only happens in one base, we'll diagnose it when synthesizing 10446 // that base class's move assignment operator.) 10447 CXXBaseSpecifier *&Existing = 10448 VBases.insert(std::make_pair(Base->getCanonicalDecl(), &BI)) 10449 .first->second; 10450 if (Existing && Existing != &BI) { 10451 S.Diag(CurrentLocation, diag::warn_vbase_moved_multiple_times) 10452 << Class << Base; 10453 S.Diag(Existing->getLocStart(), diag::note_vbase_moved_here) 10454 << (Base->getCanonicalDecl() == 10455 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10456 << Base << Existing->getType() << Existing->getSourceRange(); 10457 S.Diag(BI.getLocStart(), diag::note_vbase_moved_here) 10458 << (Base->getCanonicalDecl() == 10459 BI.getType()->getAsCXXRecordDecl()->getCanonicalDecl()) 10460 << Base << BI.getType() << BaseSpec->getSourceRange(); 10461 10462 // Only diagnose each vbase once. 10463 Existing = nullptr; 10464 } 10465 } else { 10466 // Only walk over bases that have defaulted move assignment operators. 10467 // We assume that any user-provided move assignment operator handles 10468 // the multiple-moves-of-vbase case itself somehow. 10469 if (!SMOR->getMethod()->isDefaulted()) 10470 continue; 10471 10472 // We're going to move the base classes of Base. Add them to the list. 10473 for (auto &BI : Base->bases()) 10474 Worklist.push_back(&BI); 10475 } 10476 } 10477 } 10478 } 10479 10480 void Sema::DefineImplicitMoveAssignment(SourceLocation CurrentLocation, 10481 CXXMethodDecl *MoveAssignOperator) { 10482 assert((MoveAssignOperator->isDefaulted() && 10483 MoveAssignOperator->isOverloadedOperator() && 10484 MoveAssignOperator->getOverloadedOperator() == OO_Equal && 10485 !MoveAssignOperator->doesThisDeclarationHaveABody() && 10486 !MoveAssignOperator->isDeleted()) && 10487 "DefineImplicitMoveAssignment called for wrong function"); 10488 10489 CXXRecordDecl *ClassDecl = MoveAssignOperator->getParent(); 10490 10491 if (ClassDecl->isInvalidDecl() || MoveAssignOperator->isInvalidDecl()) { 10492 MoveAssignOperator->setInvalidDecl(); 10493 return; 10494 } 10495 10496 MoveAssignOperator->markUsed(Context); 10497 10498 SynthesizedFunctionScope Scope(*this, MoveAssignOperator); 10499 DiagnosticErrorTrap Trap(Diags); 10500 10501 // C++0x [class.copy]p28: 10502 // The implicitly-defined or move assignment operator for a non-union class 10503 // X performs memberwise move assignment of its subobjects. The direct base 10504 // classes of X are assigned first, in the order of their declaration in the 10505 // base-specifier-list, and then the immediate non-static data members of X 10506 // are assigned, in the order in which they were declared in the class 10507 // definition. 10508 10509 // Issue a warning if our implicit move assignment operator will move 10510 // from a virtual base more than once. 10511 checkMoveAssignmentForRepeatedMove(*this, ClassDecl, CurrentLocation); 10512 10513 // The statements that form the synthesized function body. 10514 SmallVector<Stmt*, 8> Statements; 10515 10516 // The parameter for the "other" object, which we are move from. 10517 ParmVarDecl *Other = MoveAssignOperator->getParamDecl(0); 10518 QualType OtherRefType = Other->getType()-> 10519 getAs<RValueReferenceType>()->getPointeeType(); 10520 assert(!OtherRefType.getQualifiers() && 10521 "Bad argument type of defaulted move assignment"); 10522 10523 // Our location for everything implicitly-generated. 10524 SourceLocation Loc = MoveAssignOperator->getLocEnd().isValid() 10525 ? MoveAssignOperator->getLocEnd() 10526 : MoveAssignOperator->getLocation(); 10527 10528 // Builds a reference to the "other" object. 10529 RefBuilder OtherRef(Other, OtherRefType); 10530 // Cast to rvalue. 10531 MoveCastBuilder MoveOther(OtherRef); 10532 10533 // Builds the "this" pointer. 10534 ThisBuilder This; 10535 10536 // Assign base classes. 10537 bool Invalid = false; 10538 for (auto &Base : ClassDecl->bases()) { 10539 // C++11 [class.copy]p28: 10540 // It is unspecified whether subobjects representing virtual base classes 10541 // are assigned more than once by the implicitly-defined copy assignment 10542 // operator. 10543 // FIXME: Do not assign to a vbase that will be assigned by some other base 10544 // class. For a move-assignment, this can result in the vbase being moved 10545 // multiple times. 10546 10547 // Form the assignment: 10548 // static_cast<Base*>(this)->Base::operator=(static_cast<Base&&>(other)); 10549 QualType BaseType = Base.getType().getUnqualifiedType(); 10550 if (!BaseType->isRecordType()) { 10551 Invalid = true; 10552 continue; 10553 } 10554 10555 CXXCastPath BasePath; 10556 BasePath.push_back(&Base); 10557 10558 // Construct the "from" expression, which is an implicit cast to the 10559 // appropriately-qualified base type. 10560 CastBuilder From(OtherRef, BaseType, VK_XValue, BasePath); 10561 10562 // Dereference "this". 10563 DerefBuilder DerefThis(This); 10564 10565 // Implicitly cast "this" to the appropriately-qualified base type. 10566 CastBuilder To(DerefThis, 10567 Context.getCVRQualifiedType( 10568 BaseType, MoveAssignOperator->getTypeQualifiers()), 10569 VK_LValue, BasePath); 10570 10571 // Build the move. 10572 StmtResult Move = buildSingleCopyAssign(*this, Loc, BaseType, 10573 To, From, 10574 /*CopyingBaseSubobject=*/true, 10575 /*Copying=*/false); 10576 if (Move.isInvalid()) { 10577 Diag(CurrentLocation, diag::note_member_synthesized_at) 10578 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10579 MoveAssignOperator->setInvalidDecl(); 10580 return; 10581 } 10582 10583 // Success! Record the move. 10584 Statements.push_back(Move.getAs<Expr>()); 10585 } 10586 10587 // Assign non-static members. 10588 for (auto *Field : ClassDecl->fields()) { 10589 if (Field->isUnnamedBitfield()) 10590 continue; 10591 10592 if (Field->isInvalidDecl()) { 10593 Invalid = true; 10594 continue; 10595 } 10596 10597 // Check for members of reference type; we can't move those. 10598 if (Field->getType()->isReferenceType()) { 10599 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10600 << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); 10601 Diag(Field->getLocation(), diag::note_declared_at); 10602 Diag(CurrentLocation, diag::note_member_synthesized_at) 10603 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10604 Invalid = true; 10605 continue; 10606 } 10607 10608 // Check for members of const-qualified, non-class type. 10609 QualType BaseType = Context.getBaseElementType(Field->getType()); 10610 if (!BaseType->getAs<RecordType>() && BaseType.isConstQualified()) { 10611 Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) 10612 << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); 10613 Diag(Field->getLocation(), diag::note_declared_at); 10614 Diag(CurrentLocation, diag::note_member_synthesized_at) 10615 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10616 Invalid = true; 10617 continue; 10618 } 10619 10620 // Suppress assigning zero-width bitfields. 10621 if (Field->isBitField() && Field->getBitWidthValue(Context) == 0) 10622 continue; 10623 10624 QualType FieldType = Field->getType().getNonReferenceType(); 10625 if (FieldType->isIncompleteArrayType()) { 10626 assert(ClassDecl->hasFlexibleArrayMember() && 10627 "Incomplete array type is not valid"); 10628 continue; 10629 } 10630 10631 // Build references to the field in the object we're copying from and to. 10632 LookupResult MemberLookup(*this, Field->getDeclName(), Loc, 10633 LookupMemberName); 10634 MemberLookup.addDecl(Field); 10635 MemberLookup.resolveKind(); 10636 MemberBuilder From(MoveOther, OtherRefType, 10637 /*IsArrow=*/false, MemberLookup); 10638 MemberBuilder To(This, getCurrentThisType(), 10639 /*IsArrow=*/true, MemberLookup); 10640 10641 assert(!From.build(*this, Loc)->isLValue() && // could be xvalue or prvalue 10642 "Member reference with rvalue base must be rvalue except for reference " 10643 "members, which aren't allowed for move assignment."); 10644 10645 // Build the move of this field. 10646 StmtResult Move = buildSingleCopyAssign(*this, Loc, FieldType, 10647 To, From, 10648 /*CopyingBaseSubobject=*/false, 10649 /*Copying=*/false); 10650 if (Move.isInvalid()) { 10651 Diag(CurrentLocation, diag::note_member_synthesized_at) 10652 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10653 MoveAssignOperator->setInvalidDecl(); 10654 return; 10655 } 10656 10657 // Success! Record the copy. 10658 Statements.push_back(Move.getAs<Stmt>()); 10659 } 10660 10661 if (!Invalid) { 10662 // Add a "return *this;" 10663 ExprResult ThisObj = 10664 CreateBuiltinUnaryOp(Loc, UO_Deref, This.build(*this, Loc)); 10665 10666 StmtResult Return = BuildReturnStmt(Loc, ThisObj.get()); 10667 if (Return.isInvalid()) 10668 Invalid = true; 10669 else { 10670 Statements.push_back(Return.getAs<Stmt>()); 10671 10672 if (Trap.hasErrorOccurred()) { 10673 Diag(CurrentLocation, diag::note_member_synthesized_at) 10674 << CXXMoveAssignment << Context.getTagDeclType(ClassDecl); 10675 Invalid = true; 10676 } 10677 } 10678 } 10679 10680 // The exception specification is needed because we are defining the 10681 // function. 10682 ResolveExceptionSpec(CurrentLocation, 10683 MoveAssignOperator->getType()->castAs<FunctionProtoType>()); 10684 10685 if (Invalid) { 10686 MoveAssignOperator->setInvalidDecl(); 10687 return; 10688 } 10689 10690 StmtResult Body; 10691 { 10692 CompoundScopeRAII CompoundScope(*this); 10693 Body = ActOnCompoundStmt(Loc, Loc, Statements, 10694 /*isStmtExpr=*/false); 10695 assert(!Body.isInvalid() && "Compound statement creation cannot fail"); 10696 } 10697 MoveAssignOperator->setBody(Body.getAs<Stmt>()); 10698 10699 if (ASTMutationListener *L = getASTMutationListener()) { 10700 L->CompletedImplicitDefinition(MoveAssignOperator); 10701 } 10702 } 10703 10704 Sema::ImplicitExceptionSpecification 10705 Sema::ComputeDefaultedCopyCtorExceptionSpec(CXXMethodDecl *MD) { 10706 CXXRecordDecl *ClassDecl = MD->getParent(); 10707 10708 ImplicitExceptionSpecification ExceptSpec(*this); 10709 if (ClassDecl->isInvalidDecl()) 10710 return ExceptSpec; 10711 10712 const FunctionProtoType *T = MD->getType()->castAs<FunctionProtoType>(); 10713 assert(T->getNumParams() >= 1 && "not a copy ctor"); 10714 unsigned Quals = T->getParamType(0).getNonReferenceType().getCVRQualifiers(); 10715 10716 // C++ [except.spec]p14: 10717 // An implicitly declared special member function (Clause 12) shall have an 10718 // exception-specification. [...] 10719 for (const auto &Base : ClassDecl->bases()) { 10720 // Virtual bases are handled below. 10721 if (Base.isVirtual()) 10722 continue; 10723 10724 CXXRecordDecl *BaseClassDecl 10725 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10726 if (CXXConstructorDecl *CopyConstructor = 10727 LookupCopyingConstructor(BaseClassDecl, Quals)) 10728 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10729 } 10730 for (const auto &Base : ClassDecl->vbases()) { 10731 CXXRecordDecl *BaseClassDecl 10732 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); 10733 if (CXXConstructorDecl *CopyConstructor = 10734 LookupCopyingConstructor(BaseClassDecl, Quals)) 10735 ExceptSpec.CalledDecl(Base.getLocStart(), CopyConstructor); 10736 } 10737 for (const auto *Field : ClassDecl->fields()) { 10738 QualType FieldType = Context.getBaseElementType(Field->getType()); 10739 if (CXXRecordDecl *FieldClassDecl = FieldType->getAsCXXRecordDecl()) { 10740 if (CXXConstructorDecl *CopyConstructor = 10741 LookupCopyingConstructor(FieldClassDecl, 10742 Quals | FieldType.getCVRQualifiers())) 10743 ExceptSpec.CalledDecl(Field->getLocation(), CopyConstructor); 10744 } 10745 } 10746 10747 return ExceptSpec; 10748 } 10749 10750 CXXConstructorDecl *Sema::DeclareImplicitCopyConstructor( 10751 CXXRecordDecl *ClassDecl) { 10752 // C++ [class.copy]p4: 10753 // If the class definition does not explicitly declare a copy 10754 // constructor, one is declared implicitly. 10755 assert(ClassDecl->needsImplicitCopyConstructor()); 10756 10757 DeclaringSpecialMember DSM(*this, ClassDecl, CXXCopyConstructor); 10758 if (DSM.isAlreadyBeingDeclared()) 10759 return nullptr; 10760 10761 QualType ClassType = Context.getTypeDeclType(ClassDecl); 10762 QualType ArgType = ClassType; 10763 bool Const = ClassDecl->implicitCopyConstructorHasConstParam(); 10764 if (Const) 10765 ArgType = ArgType.withConst(); 10766 ArgType = Context.getLValueReferenceType(ArgType); 10767 10768 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10769 CXXCopyConstructor, 10770 Const); 10771 10772 DeclarationName Name 10773 = Context.DeclarationNames.getCXXConstructorName( 10774 Context.getCanonicalType(ClassType)); 10775 SourceLocation ClassLoc = ClassDecl->getLocation(); 10776 DeclarationNameInfo NameInfo(Name, ClassLoc); 10777 10778 // An implicitly-declared copy constructor is an inline public 10779 // member of its class. 10780 CXXConstructorDecl *CopyConstructor = CXXConstructorDecl::Create( 10781 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 10782 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 10783 Constexpr); 10784 CopyConstructor->setAccess(AS_public); 10785 CopyConstructor->setDefaulted(); 10786 10787 if (getLangOpts().CUDA) { 10788 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXCopyConstructor, 10789 CopyConstructor, 10790 /* ConstRHS */ Const, 10791 /* Diagnose */ false); 10792 } 10793 10794 // Build an exception specification pointing back at this member. 10795 FunctionProtoType::ExtProtoInfo EPI = 10796 getImplicitMethodEPI(*this, CopyConstructor); 10797 CopyConstructor->setType( 10798 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 10799 10800 // Add the parameter to the constructor. 10801 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor, 10802 ClassLoc, ClassLoc, 10803 /*IdentifierInfo=*/nullptr, 10804 ArgType, /*TInfo=*/nullptr, 10805 SC_None, nullptr); 10806 CopyConstructor->setParams(FromParam); 10807 10808 CopyConstructor->setTrivial( 10809 ClassDecl->needsOverloadResolutionForCopyConstructor() 10810 ? SpecialMemberIsTrivial(CopyConstructor, CXXCopyConstructor) 10811 : ClassDecl->hasTrivialCopyConstructor()); 10812 10813 if (ShouldDeleteSpecialMember(CopyConstructor, CXXCopyConstructor)) 10814 SetDeclDeleted(CopyConstructor, ClassLoc); 10815 10816 // Note that we have declared this constructor. 10817 ++ASTContext::NumImplicitCopyConstructorsDeclared; 10818 10819 if (Scope *S = getScopeForContext(ClassDecl)) 10820 PushOnScopeChains(CopyConstructor, S, false); 10821 ClassDecl->addDecl(CopyConstructor); 10822 10823 return CopyConstructor; 10824 } 10825 10826 void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation, 10827 CXXConstructorDecl *CopyConstructor) { 10828 assert((CopyConstructor->isDefaulted() && 10829 CopyConstructor->isCopyConstructor() && 10830 !CopyConstructor->doesThisDeclarationHaveABody() && 10831 !CopyConstructor->isDeleted()) && 10832 "DefineImplicitCopyConstructor - call it for implicit copy ctor"); 10833 10834 CXXRecordDecl *ClassDecl = CopyConstructor->getParent(); 10835 assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor"); 10836 10837 // C++11 [class.copy]p7: 10838 // The [definition of an implicitly declared copy constructor] is 10839 // deprecated if the class has a user-declared copy assignment operator 10840 // or a user-declared destructor. 10841 if (getLangOpts().CPlusPlus11 && CopyConstructor->isImplicit()) 10842 diagnoseDeprecatedCopyOperation(*this, CopyConstructor, CurrentLocation); 10843 10844 SynthesizedFunctionScope Scope(*this, CopyConstructor); 10845 DiagnosticErrorTrap Trap(Diags); 10846 10847 if (SetCtorInitializers(CopyConstructor, /*AnyErrors=*/false) || 10848 Trap.hasErrorOccurred()) { 10849 Diag(CurrentLocation, diag::note_member_synthesized_at) 10850 << CXXCopyConstructor << Context.getTagDeclType(ClassDecl); 10851 CopyConstructor->setInvalidDecl(); 10852 } else { 10853 SourceLocation Loc = CopyConstructor->getLocEnd().isValid() 10854 ? CopyConstructor->getLocEnd() 10855 : CopyConstructor->getLocation(); 10856 Sema::CompoundScopeRAII CompoundScope(*this); 10857 CopyConstructor->setBody( 10858 ActOnCompoundStmt(Loc, Loc, None, /*isStmtExpr=*/false).getAs<Stmt>()); 10859 } 10860 10861 // The exception specification is needed because we are defining the 10862 // function. 10863 ResolveExceptionSpec(CurrentLocation, 10864 CopyConstructor->getType()->castAs<FunctionProtoType>()); 10865 10866 CopyConstructor->markUsed(Context); 10867 MarkVTableUsed(CurrentLocation, ClassDecl); 10868 10869 if (ASTMutationListener *L = getASTMutationListener()) { 10870 L->CompletedImplicitDefinition(CopyConstructor); 10871 } 10872 } 10873 10874 Sema::ImplicitExceptionSpecification 10875 Sema::ComputeDefaultedMoveCtorExceptionSpec(CXXMethodDecl *MD) { 10876 CXXRecordDecl *ClassDecl = MD->getParent(); 10877 10878 // C++ [except.spec]p14: 10879 // An implicitly declared special member function (Clause 12) shall have an 10880 // exception-specification. [...] 10881 ImplicitExceptionSpecification ExceptSpec(*this); 10882 if (ClassDecl->isInvalidDecl()) 10883 return ExceptSpec; 10884 10885 // Direct base-class constructors. 10886 for (const auto &B : ClassDecl->bases()) { 10887 if (B.isVirtual()) // Handled below. 10888 continue; 10889 10890 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 10891 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 10892 CXXConstructorDecl *Constructor = 10893 LookupMovingConstructor(BaseClassDecl, 0); 10894 // If this is a deleted function, add it anyway. This might be conformant 10895 // with the standard. This might not. I'm not sure. It might not matter. 10896 if (Constructor) 10897 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 10898 } 10899 } 10900 10901 // Virtual base-class constructors. 10902 for (const auto &B : ClassDecl->vbases()) { 10903 if (const RecordType *BaseType = B.getType()->getAs<RecordType>()) { 10904 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl()); 10905 CXXConstructorDecl *Constructor = 10906 LookupMovingConstructor(BaseClassDecl, 0); 10907 // If this is a deleted function, add it anyway. This might be conformant 10908 // with the standard. This might not. I'm not sure. It might not matter. 10909 if (Constructor) 10910 ExceptSpec.CalledDecl(B.getLocStart(), Constructor); 10911 } 10912 } 10913 10914 // Field constructors. 10915 for (const auto *F : ClassDecl->fields()) { 10916 QualType FieldType = Context.getBaseElementType(F->getType()); 10917 if (CXXRecordDecl *FieldRecDecl = FieldType->getAsCXXRecordDecl()) { 10918 CXXConstructorDecl *Constructor = 10919 LookupMovingConstructor(FieldRecDecl, FieldType.getCVRQualifiers()); 10920 // If this is a deleted function, add it anyway. This might be conformant 10921 // with the standard. This might not. I'm not sure. It might not matter. 10922 // In particular, the problem is that this function never gets called. It 10923 // might just be ill-formed because this function attempts to refer to 10924 // a deleted function here. 10925 if (Constructor) 10926 ExceptSpec.CalledDecl(F->getLocation(), Constructor); 10927 } 10928 } 10929 10930 return ExceptSpec; 10931 } 10932 10933 CXXConstructorDecl *Sema::DeclareImplicitMoveConstructor( 10934 CXXRecordDecl *ClassDecl) { 10935 assert(ClassDecl->needsImplicitMoveConstructor()); 10936 10937 DeclaringSpecialMember DSM(*this, ClassDecl, CXXMoveConstructor); 10938 if (DSM.isAlreadyBeingDeclared()) 10939 return nullptr; 10940 10941 QualType ClassType = Context.getTypeDeclType(ClassDecl); 10942 QualType ArgType = Context.getRValueReferenceType(ClassType); 10943 10944 bool Constexpr = defaultedSpecialMemberIsConstexpr(*this, ClassDecl, 10945 CXXMoveConstructor, 10946 false); 10947 10948 DeclarationName Name 10949 = Context.DeclarationNames.getCXXConstructorName( 10950 Context.getCanonicalType(ClassType)); 10951 SourceLocation ClassLoc = ClassDecl->getLocation(); 10952 DeclarationNameInfo NameInfo(Name, ClassLoc); 10953 10954 // C++11 [class.copy]p11: 10955 // An implicitly-declared copy/move constructor is an inline public 10956 // member of its class. 10957 CXXConstructorDecl *MoveConstructor = CXXConstructorDecl::Create( 10958 Context, ClassDecl, ClassLoc, NameInfo, QualType(), /*TInfo=*/nullptr, 10959 /*isExplicit=*/false, /*isInline=*/true, /*isImplicitlyDeclared=*/true, 10960 Constexpr); 10961 MoveConstructor->setAccess(AS_public); 10962 MoveConstructor->setDefaulted(); 10963 10964 if (getLangOpts().CUDA) { 10965 inferCUDATargetForImplicitSpecialMember(ClassDecl, CXXMoveConstructor, 10966 MoveConstructor, 10967 /* ConstRHS */ false, 10968 /* Diagnose */ false); 10969 } 10970 10971 // Build an exception specification pointing back at this member. 10972 FunctionProtoType::ExtProtoInfo EPI = 10973 getImplicitMethodEPI(*this, MoveConstructor); 10974 MoveConstructor->setType( 10975 Context.getFunctionType(Context.VoidTy, ArgType, EPI)); 10976 10977 // Add the parameter to the constructor. 10978 ParmVarDecl *FromParam = ParmVarDecl::Create(Context, MoveConstructor, 10979 ClassLoc, ClassLoc, 10980 /*IdentifierInfo=*/nullptr, 10981 ArgType, /*TInfo=*/nullptr, 10982 SC_None, nullptr); 10983 MoveConstructor->setParams(FromParam); 10984 10985 MoveConstructor->setTrivial( 10986 ClassDecl->needsOverloadResolutionForMoveConstructor() 10987 ? SpecialMemberIsTrivial(MoveConstructor, CXXMoveConstructor) 10988 : ClassDecl->hasTrivialMoveConstructor()); 10989 10990 if (ShouldDeleteSpecialMember(MoveConstructor, CXXMoveConstructor)) { 10991 ClassDecl->setImplicitMoveConstructorIsDeleted(); 10992 SetDeclDeleted(MoveConstructor, ClassLoc); 10993 } 10994 10995 // Note that we have declared this constructor. 10996 ++ASTContext::NumImplicitMoveConstructorsDeclared; 10997 10998 if (Scope *S = getScopeForContext(ClassDecl)) 10999 PushOnScopeChains(MoveConstructor, S, false); 11000 ClassDecl->addDecl(MoveConstructor); 11001 11002 return MoveConstructor; 11003 } 11004 11005 void Sema::DefineImplicitMoveConstructor(SourceLocation CurrentLocation, 11006 CXXConstructorDecl *MoveConstructor) { 11007 assert((MoveConstructor->isDefaulted() && 11008 MoveConstructor->isMoveConstructor() && 11009 !MoveConstructor->doesThisDeclarationHaveABody() && 11010 !MoveConstructor->isDeleted()) && 11011 "DefineImplicitMoveConstructor - call it for implicit move ctor"); 11012 11013 CXXRecordDecl *ClassDecl = MoveConstructor->getParent(); 11014 assert(ClassDecl && "DefineImplicitMoveConstructor - invalid constructor"); 11015 11016 SynthesizedFunctionScope Scope(*this, MoveConstructor); 11017 DiagnosticErrorTrap Trap(Diags); 11018 11019 if (SetCtorInitializers(MoveConstructor, /*AnyErrors=*/false) || 11020 Trap.hasErrorOccurred()) { 11021 Diag(CurrentLocation, diag::note_member_synthesized_at) 11022 << CXXMoveConstructor << Context.getTagDeclType(ClassDecl); 11023 MoveConstructor->setInvalidDecl(); 11024 } else { 11025 SourceLocation Loc = MoveConstructor->getLocEnd().isValid() 11026 ? MoveConstructor->getLocEnd() 11027 : MoveConstructor->getLocation(); 11028 Sema::CompoundScopeRAII CompoundScope(*this); 11029 MoveConstructor->setBody(ActOnCompoundStmt( 11030 Loc, Loc, None, /*isStmtExpr=*/ false).getAs<Stmt>()); 11031 } 11032 11033 // The exception specification is needed because we are defining the 11034 // function. 11035 ResolveExceptionSpec(CurrentLocation, 11036 MoveConstructor->getType()->castAs<FunctionProtoType>()); 11037 11038 MoveConstructor->markUsed(Context); 11039 MarkVTableUsed(CurrentLocation, ClassDecl); 11040 11041 if (ASTMutationListener *L = getASTMutationListener()) { 11042 L->CompletedImplicitDefinition(MoveConstructor); 11043 } 11044 } 11045 11046 bool Sema::isImplicitlyDeleted(FunctionDecl *FD) { 11047 return FD->isDeleted() && FD->isDefaulted() && isa<CXXMethodDecl>(FD); 11048 } 11049 11050 void Sema::DefineImplicitLambdaToFunctionPointerConversion( 11051 SourceLocation CurrentLocation, 11052 CXXConversionDecl *Conv) { 11053 CXXRecordDecl *Lambda = Conv->getParent(); 11054 CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator(); 11055 // If we are defining a specialization of a conversion to function-ptr 11056 // cache the deduced template arguments for this specialization 11057 // so that we can use them to retrieve the corresponding call-operator 11058 // and static-invoker. 11059 const TemplateArgumentList *DeducedTemplateArgs = nullptr; 11060 11061 // Retrieve the corresponding call-operator specialization. 11062 if (Lambda->isGenericLambda()) { 11063 assert(Conv->isFunctionTemplateSpecialization()); 11064 FunctionTemplateDecl *CallOpTemplate = 11065 CallOp->getDescribedFunctionTemplate(); 11066 DeducedTemplateArgs = Conv->getTemplateSpecializationArgs(); 11067 void *InsertPos = nullptr; 11068 FunctionDecl *CallOpSpec = CallOpTemplate->findSpecialization( 11069 DeducedTemplateArgs->asArray(), 11070 InsertPos); 11071 assert(CallOpSpec && 11072 "Conversion operator must have a corresponding call operator"); 11073 CallOp = cast<CXXMethodDecl>(CallOpSpec); 11074 } 11075 // Mark the call operator referenced (and add to pending instantiations 11076 // if necessary). 11077 // For both the conversion and static-invoker template specializations 11078 // we construct their body's in this function, so no need to add them 11079 // to the PendingInstantiations. 11080 MarkFunctionReferenced(CurrentLocation, CallOp); 11081 11082 SynthesizedFunctionScope Scope(*this, Conv); 11083 DiagnosticErrorTrap Trap(Diags); 11084 11085 // Retrieve the static invoker... 11086 CXXMethodDecl *Invoker = Lambda->getLambdaStaticInvoker(); 11087 // ... and get the corresponding specialization for a generic lambda. 11088 if (Lambda->isGenericLambda()) { 11089 assert(DeducedTemplateArgs && 11090 "Must have deduced template arguments from Conversion Operator"); 11091 FunctionTemplateDecl *InvokeTemplate = 11092 Invoker->getDescribedFunctionTemplate(); 11093 void *InsertPos = nullptr; 11094 FunctionDecl *InvokeSpec = InvokeTemplate->findSpecialization( 11095 DeducedTemplateArgs->asArray(), 11096 InsertPos); 11097 assert(InvokeSpec && 11098 "Must have a corresponding static invoker specialization"); 11099 Invoker = cast<CXXMethodDecl>(InvokeSpec); 11100 } 11101 // Construct the body of the conversion function { return __invoke; }. 11102 Expr *FunctionRef = BuildDeclRefExpr(Invoker, Invoker->getType(), 11103 VK_LValue, Conv->getLocation()).get(); 11104 assert(FunctionRef && "Can't refer to __invoke function?"); 11105 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get(); 11106 Conv->setBody(new (Context) CompoundStmt(Context, Return, 11107 Conv->getLocation(), 11108 Conv->getLocation())); 11109 11110 Conv->markUsed(Context); 11111 Conv->setReferenced(); 11112 11113 // Fill in the __invoke function with a dummy implementation. IR generation 11114 // will fill in the actual details. 11115 Invoker->markUsed(Context); 11116 Invoker->setReferenced(); 11117 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation())); 11118 11119 if (ASTMutationListener *L = getASTMutationListener()) { 11120 L->CompletedImplicitDefinition(Conv); 11121 L->CompletedImplicitDefinition(Invoker); 11122 } 11123 } 11124 11125 11126 11127 void Sema::DefineImplicitLambdaToBlockPointerConversion( 11128 SourceLocation CurrentLocation, 11129 CXXConversionDecl *Conv) 11130 { 11131 assert(!Conv->getParent()->isGenericLambda()); 11132 11133 Conv->markUsed(Context); 11134 11135 SynthesizedFunctionScope Scope(*this, Conv); 11136 DiagnosticErrorTrap Trap(Diags); 11137 11138 // Copy-initialize the lambda object as needed to capture it. 11139 Expr *This = ActOnCXXThis(CurrentLocation).get(); 11140 Expr *DerefThis =CreateBuiltinUnaryOp(CurrentLocation, UO_Deref, This).get(); 11141 11142 ExprResult BuildBlock = BuildBlockForLambdaConversion(CurrentLocation, 11143 Conv->getLocation(), 11144 Conv, DerefThis); 11145 11146 // If we're not under ARC, make sure we still get the _Block_copy/autorelease 11147 // behavior. Note that only the general conversion function does this 11148 // (since it's unusable otherwise); in the case where we inline the 11149 // block literal, it has block literal lifetime semantics. 11150 if (!BuildBlock.isInvalid() && !getLangOpts().ObjCAutoRefCount) 11151 BuildBlock = ImplicitCastExpr::Create(Context, BuildBlock.get()->getType(), 11152 CK_CopyAndAutoreleaseBlockObject, 11153 BuildBlock.get(), nullptr, VK_RValue); 11154 11155 if (BuildBlock.isInvalid()) { 11156 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11157 Conv->setInvalidDecl(); 11158 return; 11159 } 11160 11161 // Create the return statement that returns the block from the conversion 11162 // function. 11163 StmtResult Return = BuildReturnStmt(Conv->getLocation(), BuildBlock.get()); 11164 if (Return.isInvalid()) { 11165 Diag(CurrentLocation, diag::note_lambda_to_block_conv); 11166 Conv->setInvalidDecl(); 11167 return; 11168 } 11169 11170 // Set the body of the conversion function. 11171 Stmt *ReturnS = Return.get(); 11172 Conv->setBody(new (Context) CompoundStmt(Context, ReturnS, 11173 Conv->getLocation(), 11174 Conv->getLocation())); 11175 11176 // We're done; notify the mutation listener, if any. 11177 if (ASTMutationListener *L = getASTMutationListener()) { 11178 L->CompletedImplicitDefinition(Conv); 11179 } 11180 } 11181 11182 /// \brief Determine whether the given list arguments contains exactly one 11183 /// "real" (non-default) argument. 11184 static bool hasOneRealArgument(MultiExprArg Args) { 11185 switch (Args.size()) { 11186 case 0: 11187 return false; 11188 11189 default: 11190 if (!Args[1]->isDefaultArgument()) 11191 return false; 11192 11193 // fall through 11194 case 1: 11195 return !Args[0]->isDefaultArgument(); 11196 } 11197 11198 return false; 11199 } 11200 11201 ExprResult 11202 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11203 CXXConstructorDecl *Constructor, 11204 MultiExprArg ExprArgs, 11205 bool HadMultipleCandidates, 11206 bool IsListInitialization, 11207 bool IsStdInitListInitialization, 11208 bool RequiresZeroInit, 11209 unsigned ConstructKind, 11210 SourceRange ParenRange) { 11211 bool Elidable = false; 11212 11213 // C++0x [class.copy]p34: 11214 // When certain criteria are met, an implementation is allowed to 11215 // omit the copy/move construction of a class object, even if the 11216 // copy/move constructor and/or destructor for the object have 11217 // side effects. [...] 11218 // - when a temporary class object that has not been bound to a 11219 // reference (12.2) would be copied/moved to a class object 11220 // with the same cv-unqualified type, the copy/move operation 11221 // can be omitted by constructing the temporary object 11222 // directly into the target of the omitted copy/move 11223 if (ConstructKind == CXXConstructExpr::CK_Complete && 11224 Constructor->isCopyOrMoveConstructor() && hasOneRealArgument(ExprArgs)) { 11225 Expr *SubExpr = ExprArgs[0]; 11226 Elidable = SubExpr->isTemporaryObject(Context, Constructor->getParent()); 11227 } 11228 11229 return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor, 11230 Elidable, ExprArgs, HadMultipleCandidates, 11231 IsListInitialization, 11232 IsStdInitListInitialization, RequiresZeroInit, 11233 ConstructKind, ParenRange); 11234 } 11235 11236 /// BuildCXXConstructExpr - Creates a complete call to a constructor, 11237 /// including handling of its default argument expressions. 11238 ExprResult 11239 Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, 11240 CXXConstructorDecl *Constructor, bool Elidable, 11241 MultiExprArg ExprArgs, 11242 bool HadMultipleCandidates, 11243 bool IsListInitialization, 11244 bool IsStdInitListInitialization, 11245 bool RequiresZeroInit, 11246 unsigned ConstructKind, 11247 SourceRange ParenRange) { 11248 MarkFunctionReferenced(ConstructLoc, Constructor); 11249 return CXXConstructExpr::Create( 11250 Context, DeclInitType, ConstructLoc, Constructor, Elidable, ExprArgs, 11251 HadMultipleCandidates, IsListInitialization, IsStdInitListInitialization, 11252 RequiresZeroInit, 11253 static_cast<CXXConstructExpr::ConstructionKind>(ConstructKind), 11254 ParenRange); 11255 } 11256 11257 ExprResult Sema::BuildCXXDefaultInitExpr(SourceLocation Loc, FieldDecl *Field) { 11258 assert(Field->hasInClassInitializer()); 11259 11260 // If we already have the in-class initializer nothing needs to be done. 11261 if (Field->getInClassInitializer()) 11262 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11263 11264 // Maybe we haven't instantiated the in-class initializer. Go check the 11265 // pattern FieldDecl to see if it has one. 11266 CXXRecordDecl *ParentRD = cast<CXXRecordDecl>(Field->getParent()); 11267 11268 if (isTemplateInstantiation(ParentRD->getTemplateSpecializationKind())) { 11269 CXXRecordDecl *ClassPattern = ParentRD->getTemplateInstantiationPattern(); 11270 DeclContext::lookup_result Lookup = 11271 ClassPattern->lookup(Field->getDeclName()); 11272 assert(Lookup.size() == 1); 11273 FieldDecl *Pattern = cast<FieldDecl>(Lookup[0]); 11274 if (InstantiateInClassInitializer(Loc, Field, Pattern, 11275 getTemplateInstantiationArgs(Field))) 11276 return ExprError(); 11277 return CXXDefaultInitExpr::Create(Context, Loc, Field); 11278 } 11279 11280 // DR1351: 11281 // If the brace-or-equal-initializer of a non-static data member 11282 // invokes a defaulted default constructor of its class or of an 11283 // enclosing class in a potentially evaluated subexpression, the 11284 // program is ill-formed. 11285 // 11286 // This resolution is unworkable: the exception specification of the 11287 // default constructor can be needed in an unevaluated context, in 11288 // particular, in the operand of a noexcept-expression, and we can be 11289 // unable to compute an exception specification for an enclosed class. 11290 // 11291 // Any attempt to resolve the exception specification of a defaulted default 11292 // constructor before the initializer is lexically complete will ultimately 11293 // come here at which point we can diagnose it. 11294 RecordDecl *OutermostClass = ParentRD->getOuterLexicalRecordContext(); 11295 if (OutermostClass == ParentRD) { 11296 Diag(Field->getLocEnd(), diag::err_in_class_initializer_not_yet_parsed) 11297 << ParentRD << Field; 11298 } else { 11299 Diag(Field->getLocEnd(), 11300 diag::err_in_class_initializer_not_yet_parsed_outer_class) 11301 << ParentRD << OutermostClass << Field; 11302 } 11303 11304 return ExprError(); 11305 } 11306 11307 void Sema::FinalizeVarWithDestructor(VarDecl *VD, const RecordType *Record) { 11308 if (VD->isInvalidDecl()) return; 11309 11310 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Record->getDecl()); 11311 if (ClassDecl->isInvalidDecl()) return; 11312 if (ClassDecl->hasIrrelevantDestructor()) return; 11313 if (ClassDecl->isDependentContext()) return; 11314 11315 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl); 11316 MarkFunctionReferenced(VD->getLocation(), Destructor); 11317 CheckDestructorAccess(VD->getLocation(), Destructor, 11318 PDiag(diag::err_access_dtor_var) 11319 << VD->getDeclName() 11320 << VD->getType()); 11321 DiagnoseUseOfDecl(Destructor, VD->getLocation()); 11322 11323 if (Destructor->isTrivial()) return; 11324 if (!VD->hasGlobalStorage()) return; 11325 11326 // Emit warning for non-trivial dtor in global scope (a real global, 11327 // class-static, function-static). 11328 Diag(VD->getLocation(), diag::warn_exit_time_destructor); 11329 11330 // TODO: this should be re-enabled for static locals by !CXAAtExit 11331 if (!VD->isStaticLocal()) 11332 Diag(VD->getLocation(), diag::warn_global_destructor); 11333 } 11334 11335 /// \brief Given a constructor and the set of arguments provided for the 11336 /// constructor, convert the arguments and add any required default arguments 11337 /// to form a proper call to this constructor. 11338 /// 11339 /// \returns true if an error occurred, false otherwise. 11340 bool 11341 Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor, 11342 MultiExprArg ArgsPtr, 11343 SourceLocation Loc, 11344 SmallVectorImpl<Expr*> &ConvertedArgs, 11345 bool AllowExplicit, 11346 bool IsListInitialization) { 11347 // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall. 11348 unsigned NumArgs = ArgsPtr.size(); 11349 Expr **Args = ArgsPtr.data(); 11350 11351 const FunctionProtoType *Proto 11352 = Constructor->getType()->getAs<FunctionProtoType>(); 11353 assert(Proto && "Constructor without a prototype?"); 11354 unsigned NumParams = Proto->getNumParams(); 11355 11356 // If too few arguments are available, we'll fill in the rest with defaults. 11357 if (NumArgs < NumParams) 11358 ConvertedArgs.reserve(NumParams); 11359 else 11360 ConvertedArgs.reserve(NumArgs); 11361 11362 VariadicCallType CallType = 11363 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; 11364 SmallVector<Expr *, 8> AllArgs; 11365 bool Invalid = GatherArgumentsForCall(Loc, Constructor, 11366 Proto, 0, 11367 llvm::makeArrayRef(Args, NumArgs), 11368 AllArgs, 11369 CallType, AllowExplicit, 11370 IsListInitialization); 11371 ConvertedArgs.append(AllArgs.begin(), AllArgs.end()); 11372 11373 DiagnoseSentinelCalls(Constructor, Loc, AllArgs); 11374 11375 CheckConstructorCall(Constructor, 11376 llvm::makeArrayRef(AllArgs.data(), AllArgs.size()), 11377 Proto, Loc); 11378 11379 return Invalid; 11380 } 11381 11382 static inline bool 11383 CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef, 11384 const FunctionDecl *FnDecl) { 11385 const DeclContext *DC = FnDecl->getDeclContext()->getRedeclContext(); 11386 if (isa<NamespaceDecl>(DC)) { 11387 return SemaRef.Diag(FnDecl->getLocation(), 11388 diag::err_operator_new_delete_declared_in_namespace) 11389 << FnDecl->getDeclName(); 11390 } 11391 11392 if (isa<TranslationUnitDecl>(DC) && 11393 FnDecl->getStorageClass() == SC_Static) { 11394 return SemaRef.Diag(FnDecl->getLocation(), 11395 diag::err_operator_new_delete_declared_static) 11396 << FnDecl->getDeclName(); 11397 } 11398 11399 return false; 11400 } 11401 11402 static inline bool 11403 CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl, 11404 CanQualType ExpectedResultType, 11405 CanQualType ExpectedFirstParamType, 11406 unsigned DependentParamTypeDiag, 11407 unsigned InvalidParamTypeDiag) { 11408 QualType ResultType = 11409 FnDecl->getType()->getAs<FunctionType>()->getReturnType(); 11410 11411 // Check that the result type is not dependent. 11412 if (ResultType->isDependentType()) 11413 return SemaRef.Diag(FnDecl->getLocation(), 11414 diag::err_operator_new_delete_dependent_result_type) 11415 << FnDecl->getDeclName() << ExpectedResultType; 11416 11417 // Check that the result type is what we expect. 11418 if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType) 11419 return SemaRef.Diag(FnDecl->getLocation(), 11420 diag::err_operator_new_delete_invalid_result_type) 11421 << FnDecl->getDeclName() << ExpectedResultType; 11422 11423 // A function template must have at least 2 parameters. 11424 if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2) 11425 return SemaRef.Diag(FnDecl->getLocation(), 11426 diag::err_operator_new_delete_template_too_few_parameters) 11427 << FnDecl->getDeclName(); 11428 11429 // The function decl must have at least 1 parameter. 11430 if (FnDecl->getNumParams() == 0) 11431 return SemaRef.Diag(FnDecl->getLocation(), 11432 diag::err_operator_new_delete_too_few_parameters) 11433 << FnDecl->getDeclName(); 11434 11435 // Check the first parameter type is not dependent. 11436 QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); 11437 if (FirstParamType->isDependentType()) 11438 return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag) 11439 << FnDecl->getDeclName() << ExpectedFirstParamType; 11440 11441 // Check that the first parameter type is what we expect. 11442 if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() != 11443 ExpectedFirstParamType) 11444 return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag) 11445 << FnDecl->getDeclName() << ExpectedFirstParamType; 11446 11447 return false; 11448 } 11449 11450 static bool 11451 CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { 11452 // C++ [basic.stc.dynamic.allocation]p1: 11453 // A program is ill-formed if an allocation function is declared in a 11454 // namespace scope other than global scope or declared static in global 11455 // scope. 11456 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11457 return true; 11458 11459 CanQualType SizeTy = 11460 SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType()); 11461 11462 // C++ [basic.stc.dynamic.allocation]p1: 11463 // The return type shall be void*. The first parameter shall have type 11464 // std::size_t. 11465 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy, 11466 SizeTy, 11467 diag::err_operator_new_dependent_param_type, 11468 diag::err_operator_new_param_type)) 11469 return true; 11470 11471 // C++ [basic.stc.dynamic.allocation]p1: 11472 // The first parameter shall not have an associated default argument. 11473 if (FnDecl->getParamDecl(0)->hasDefaultArg()) 11474 return SemaRef.Diag(FnDecl->getLocation(), 11475 diag::err_operator_new_default_arg) 11476 << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange(); 11477 11478 return false; 11479 } 11480 11481 static bool 11482 CheckOperatorDeleteDeclaration(Sema &SemaRef, FunctionDecl *FnDecl) { 11483 // C++ [basic.stc.dynamic.deallocation]p1: 11484 // A program is ill-formed if deallocation functions are declared in a 11485 // namespace scope other than global scope or declared static in global 11486 // scope. 11487 if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) 11488 return true; 11489 11490 // C++ [basic.stc.dynamic.deallocation]p2: 11491 // Each deallocation function shall return void and its first parameter 11492 // shall be void*. 11493 if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy, 11494 SemaRef.Context.VoidPtrTy, 11495 diag::err_operator_delete_dependent_param_type, 11496 diag::err_operator_delete_param_type)) 11497 return true; 11498 11499 return false; 11500 } 11501 11502 /// CheckOverloadedOperatorDeclaration - Check whether the declaration 11503 /// of this overloaded operator is well-formed. If so, returns false; 11504 /// otherwise, emits appropriate diagnostics and returns true. 11505 bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) { 11506 assert(FnDecl && FnDecl->isOverloadedOperator() && 11507 "Expected an overloaded operator declaration"); 11508 11509 OverloadedOperatorKind Op = FnDecl->getOverloadedOperator(); 11510 11511 // C++ [over.oper]p5: 11512 // The allocation and deallocation functions, operator new, 11513 // operator new[], operator delete and operator delete[], are 11514 // described completely in 3.7.3. The attributes and restrictions 11515 // found in the rest of this subclause do not apply to them unless 11516 // explicitly stated in 3.7.3. 11517 if (Op == OO_Delete || Op == OO_Array_Delete) 11518 return CheckOperatorDeleteDeclaration(*this, FnDecl); 11519 11520 if (Op == OO_New || Op == OO_Array_New) 11521 return CheckOperatorNewDeclaration(*this, FnDecl); 11522 11523 // C++ [over.oper]p6: 11524 // An operator function shall either be a non-static member 11525 // function or be a non-member function and have at least one 11526 // parameter whose type is a class, a reference to a class, an 11527 // enumeration, or a reference to an enumeration. 11528 if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { 11529 if (MethodDecl->isStatic()) 11530 return Diag(FnDecl->getLocation(), 11531 diag::err_operator_overload_static) << FnDecl->getDeclName(); 11532 } else { 11533 bool ClassOrEnumParam = false; 11534 for (auto Param : FnDecl->params()) { 11535 QualType ParamType = Param->getType().getNonReferenceType(); 11536 if (ParamType->isDependentType() || ParamType->isRecordType() || 11537 ParamType->isEnumeralType()) { 11538 ClassOrEnumParam = true; 11539 break; 11540 } 11541 } 11542 11543 if (!ClassOrEnumParam) 11544 return Diag(FnDecl->getLocation(), 11545 diag::err_operator_overload_needs_class_or_enum) 11546 << FnDecl->getDeclName(); 11547 } 11548 11549 // C++ [over.oper]p8: 11550 // An operator function cannot have default arguments (8.3.6), 11551 // except where explicitly stated below. 11552 // 11553 // Only the function-call operator allows default arguments 11554 // (C++ [over.call]p1). 11555 if (Op != OO_Call) { 11556 for (auto Param : FnDecl->params()) { 11557 if (Param->hasDefaultArg()) 11558 return Diag(Param->getLocation(), 11559 diag::err_operator_overload_default_arg) 11560 << FnDecl->getDeclName() << Param->getDefaultArgRange(); 11561 } 11562 } 11563 11564 static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = { 11565 { false, false, false } 11566 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ 11567 , { Unary, Binary, MemberOnly } 11568 #include "clang/Basic/OperatorKinds.def" 11569 }; 11570 11571 bool CanBeUnaryOperator = OperatorUses[Op][0]; 11572 bool CanBeBinaryOperator = OperatorUses[Op][1]; 11573 bool MustBeMemberOperator = OperatorUses[Op][2]; 11574 11575 // C++ [over.oper]p8: 11576 // [...] Operator functions cannot have more or fewer parameters 11577 // than the number required for the corresponding operator, as 11578 // described in the rest of this subclause. 11579 unsigned NumParams = FnDecl->getNumParams() 11580 + (isa<CXXMethodDecl>(FnDecl)? 1 : 0); 11581 if (Op != OO_Call && 11582 ((NumParams == 1 && !CanBeUnaryOperator) || 11583 (NumParams == 2 && !CanBeBinaryOperator) || 11584 (NumParams < 1) || (NumParams > 2))) { 11585 // We have the wrong number of parameters. 11586 unsigned ErrorKind; 11587 if (CanBeUnaryOperator && CanBeBinaryOperator) { 11588 ErrorKind = 2; // 2 -> unary or binary. 11589 } else if (CanBeUnaryOperator) { 11590 ErrorKind = 0; // 0 -> unary 11591 } else { 11592 assert(CanBeBinaryOperator && 11593 "All non-call overloaded operators are unary or binary!"); 11594 ErrorKind = 1; // 1 -> binary 11595 } 11596 11597 return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be) 11598 << FnDecl->getDeclName() << NumParams << ErrorKind; 11599 } 11600 11601 // Overloaded operators other than operator() cannot be variadic. 11602 if (Op != OO_Call && 11603 FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) { 11604 return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic) 11605 << FnDecl->getDeclName(); 11606 } 11607 11608 // Some operators must be non-static member functions. 11609 if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) { 11610 return Diag(FnDecl->getLocation(), 11611 diag::err_operator_overload_must_be_member) 11612 << FnDecl->getDeclName(); 11613 } 11614 11615 // C++ [over.inc]p1: 11616 // The user-defined function called operator++ implements the 11617 // prefix and postfix ++ operator. If this function is a member 11618 // function with no parameters, or a non-member function with one 11619 // parameter of class or enumeration type, it defines the prefix 11620 // increment operator ++ for objects of that type. If the function 11621 // is a member function with one parameter (which shall be of type 11622 // int) or a non-member function with two parameters (the second 11623 // of which shall be of type int), it defines the postfix 11624 // increment operator ++ for objects of that type. 11625 if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) { 11626 ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1); 11627 QualType ParamType = LastParam->getType(); 11628 11629 if (!ParamType->isSpecificBuiltinType(BuiltinType::Int) && 11630 !ParamType->isDependentType()) 11631 return Diag(LastParam->getLocation(), 11632 diag::err_operator_overload_post_incdec_must_be_int) 11633 << LastParam->getType() << (Op == OO_MinusMinus); 11634 } 11635 11636 return false; 11637 } 11638 11639 /// CheckLiteralOperatorDeclaration - Check whether the declaration 11640 /// of this literal operator function is well-formed. If so, returns 11641 /// false; otherwise, emits appropriate diagnostics and returns true. 11642 bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) { 11643 if (isa<CXXMethodDecl>(FnDecl)) { 11644 Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace) 11645 << FnDecl->getDeclName(); 11646 return true; 11647 } 11648 11649 if (FnDecl->isExternC()) { 11650 Diag(FnDecl->getLocation(), diag::err_literal_operator_extern_c); 11651 return true; 11652 } 11653 11654 bool Valid = false; 11655 11656 // This might be the definition of a literal operator template. 11657 FunctionTemplateDecl *TpDecl = FnDecl->getDescribedFunctionTemplate(); 11658 // This might be a specialization of a literal operator template. 11659 if (!TpDecl) 11660 TpDecl = FnDecl->getPrimaryTemplate(); 11661 11662 // template <char...> type operator "" name() and 11663 // template <class T, T...> type operator "" name() are the only valid 11664 // template signatures, and the only valid signatures with no parameters. 11665 if (TpDecl) { 11666 if (FnDecl->param_size() == 0) { 11667 // Must have one or two template parameters 11668 TemplateParameterList *Params = TpDecl->getTemplateParameters(); 11669 if (Params->size() == 1) { 11670 NonTypeTemplateParmDecl *PmDecl = 11671 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(0)); 11672 11673 // The template parameter must be a char parameter pack. 11674 if (PmDecl && PmDecl->isTemplateParameterPack() && 11675 Context.hasSameType(PmDecl->getType(), Context.CharTy)) 11676 Valid = true; 11677 } else if (Params->size() == 2) { 11678 TemplateTypeParmDecl *PmType = 11679 dyn_cast<TemplateTypeParmDecl>(Params->getParam(0)); 11680 NonTypeTemplateParmDecl *PmArgs = 11681 dyn_cast<NonTypeTemplateParmDecl>(Params->getParam(1)); 11682 11683 // The second template parameter must be a parameter pack with the 11684 // first template parameter as its type. 11685 if (PmType && PmArgs && 11686 !PmType->isTemplateParameterPack() && 11687 PmArgs->isTemplateParameterPack()) { 11688 const TemplateTypeParmType *TArgs = 11689 PmArgs->getType()->getAs<TemplateTypeParmType>(); 11690 if (TArgs && TArgs->getDepth() == PmType->getDepth() && 11691 TArgs->getIndex() == PmType->getIndex()) { 11692 Valid = true; 11693 if (ActiveTemplateInstantiations.empty()) 11694 Diag(FnDecl->getLocation(), 11695 diag::ext_string_literal_operator_template); 11696 } 11697 } 11698 } 11699 } 11700 } else if (FnDecl->param_size()) { 11701 // Check the first parameter 11702 FunctionDecl::param_iterator Param = FnDecl->param_begin(); 11703 11704 QualType T = (*Param)->getType().getUnqualifiedType(); 11705 11706 // unsigned long long int, long double, and any character type are allowed 11707 // as the only parameters. 11708 if (Context.hasSameType(T, Context.UnsignedLongLongTy) || 11709 Context.hasSameType(T, Context.LongDoubleTy) || 11710 Context.hasSameType(T, Context.CharTy) || 11711 Context.hasSameType(T, Context.WideCharTy) || 11712 Context.hasSameType(T, Context.Char16Ty) || 11713 Context.hasSameType(T, Context.Char32Ty)) { 11714 if (++Param == FnDecl->param_end()) 11715 Valid = true; 11716 goto FinishedParams; 11717 } 11718 11719 // Otherwise it must be a pointer to const; let's strip those qualifiers. 11720 const PointerType *PT = T->getAs<PointerType>(); 11721 if (!PT) 11722 goto FinishedParams; 11723 T = PT->getPointeeType(); 11724 if (!T.isConstQualified() || T.isVolatileQualified()) 11725 goto FinishedParams; 11726 T = T.getUnqualifiedType(); 11727 11728 // Move on to the second parameter; 11729 ++Param; 11730 11731 // If there is no second parameter, the first must be a const char * 11732 if (Param == FnDecl->param_end()) { 11733 if (Context.hasSameType(T, Context.CharTy)) 11734 Valid = true; 11735 goto FinishedParams; 11736 } 11737 11738 // const char *, const wchar_t*, const char16_t*, and const char32_t* 11739 // are allowed as the first parameter to a two-parameter function 11740 if (!(Context.hasSameType(T, Context.CharTy) || 11741 Context.hasSameType(T, Context.WideCharTy) || 11742 Context.hasSameType(T, Context.Char16Ty) || 11743 Context.hasSameType(T, Context.Char32Ty))) 11744 goto FinishedParams; 11745 11746 // The second and final parameter must be an std::size_t 11747 T = (*Param)->getType().getUnqualifiedType(); 11748 if (Context.hasSameType(T, Context.getSizeType()) && 11749 ++Param == FnDecl->param_end()) 11750 Valid = true; 11751 } 11752 11753 // FIXME: This diagnostic is absolutely terrible. 11754 FinishedParams: 11755 if (!Valid) { 11756 Diag(FnDecl->getLocation(), diag::err_literal_operator_params) 11757 << FnDecl->getDeclName(); 11758 return true; 11759 } 11760 11761 // A parameter-declaration-clause containing a default argument is not 11762 // equivalent to any of the permitted forms. 11763 for (auto Param : FnDecl->params()) { 11764 if (Param->hasDefaultArg()) { 11765 Diag(Param->getDefaultArgRange().getBegin(), 11766 diag::err_literal_operator_default_argument) 11767 << Param->getDefaultArgRange(); 11768 break; 11769 } 11770 } 11771 11772 StringRef LiteralName 11773 = FnDecl->getDeclName().getCXXLiteralIdentifier()->getName(); 11774 if (LiteralName[0] != '_') { 11775 // C++11 [usrlit.suffix]p1: 11776 // Literal suffix identifiers that do not start with an underscore 11777 // are reserved for future standardization. 11778 Diag(FnDecl->getLocation(), diag::warn_user_literal_reserved) 11779 << NumericLiteralParser::isValidUDSuffix(getLangOpts(), LiteralName); 11780 } 11781 11782 return false; 11783 } 11784 11785 /// ActOnStartLinkageSpecification - Parsed the beginning of a C++ 11786 /// linkage specification, including the language and (if present) 11787 /// the '{'. ExternLoc is the location of the 'extern', Lang is the 11788 /// language string literal. LBraceLoc, if valid, provides the location of 11789 /// the '{' brace. Otherwise, this linkage specification does not 11790 /// have any braces. 11791 Decl *Sema::ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, 11792 Expr *LangStr, 11793 SourceLocation LBraceLoc) { 11794 StringLiteral *Lit = cast<StringLiteral>(LangStr); 11795 if (!Lit->isAscii()) { 11796 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_not_ascii) 11797 << LangStr->getSourceRange(); 11798 return nullptr; 11799 } 11800 11801 StringRef Lang = Lit->getString(); 11802 LinkageSpecDecl::LanguageIDs Language; 11803 if (Lang == "C") 11804 Language = LinkageSpecDecl::lang_c; 11805 else if (Lang == "C++") 11806 Language = LinkageSpecDecl::lang_cxx; 11807 else { 11808 Diag(LangStr->getExprLoc(), diag::err_language_linkage_spec_unknown) 11809 << LangStr->getSourceRange(); 11810 return nullptr; 11811 } 11812 11813 // FIXME: Add all the various semantics of linkage specifications 11814 11815 LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, ExternLoc, 11816 LangStr->getExprLoc(), Language, 11817 LBraceLoc.isValid()); 11818 CurContext->addDecl(D); 11819 PushDeclContext(S, D); 11820 return D; 11821 } 11822 11823 /// ActOnFinishLinkageSpecification - Complete the definition of 11824 /// the C++ linkage specification LinkageSpec. If RBraceLoc is 11825 /// valid, it's the position of the closing '}' brace in a linkage 11826 /// specification that uses braces. 11827 Decl *Sema::ActOnFinishLinkageSpecification(Scope *S, 11828 Decl *LinkageSpec, 11829 SourceLocation RBraceLoc) { 11830 if (RBraceLoc.isValid()) { 11831 LinkageSpecDecl* LSDecl = cast<LinkageSpecDecl>(LinkageSpec); 11832 LSDecl->setRBraceLoc(RBraceLoc); 11833 } 11834 PopDeclContext(); 11835 return LinkageSpec; 11836 } 11837 11838 Decl *Sema::ActOnEmptyDeclaration(Scope *S, 11839 AttributeList *AttrList, 11840 SourceLocation SemiLoc) { 11841 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); 11842 // Attribute declarations appertain to empty declaration so we handle 11843 // them here. 11844 if (AttrList) 11845 ProcessDeclAttributeList(S, ED, AttrList); 11846 11847 CurContext->addDecl(ED); 11848 return ED; 11849 } 11850 11851 /// \brief Perform semantic analysis for the variable declaration that 11852 /// occurs within a C++ catch clause, returning the newly-created 11853 /// variable. 11854 VarDecl *Sema::BuildExceptionDeclaration(Scope *S, 11855 TypeSourceInfo *TInfo, 11856 SourceLocation StartLoc, 11857 SourceLocation Loc, 11858 IdentifierInfo *Name) { 11859 bool Invalid = false; 11860 QualType ExDeclType = TInfo->getType(); 11861 11862 // Arrays and functions decay. 11863 if (ExDeclType->isArrayType()) 11864 ExDeclType = Context.getArrayDecayedType(ExDeclType); 11865 else if (ExDeclType->isFunctionType()) 11866 ExDeclType = Context.getPointerType(ExDeclType); 11867 11868 // C++ 15.3p1: The exception-declaration shall not denote an incomplete type. 11869 // The exception-declaration shall not denote a pointer or reference to an 11870 // incomplete type, other than [cv] void*. 11871 // N2844 forbids rvalue references. 11872 if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) { 11873 Diag(Loc, diag::err_catch_rvalue_ref); 11874 Invalid = true; 11875 } 11876 11877 QualType BaseType = ExDeclType; 11878 int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference 11879 unsigned DK = diag::err_catch_incomplete; 11880 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { 11881 BaseType = Ptr->getPointeeType(); 11882 Mode = 1; 11883 DK = diag::err_catch_incomplete_ptr; 11884 } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) { 11885 // For the purpose of error recovery, we treat rvalue refs like lvalue refs. 11886 BaseType = Ref->getPointeeType(); 11887 Mode = 2; 11888 DK = diag::err_catch_incomplete_ref; 11889 } 11890 if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) && 11891 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK)) 11892 Invalid = true; 11893 11894 if (!Invalid && !ExDeclType->isDependentType() && 11895 RequireNonAbstractType(Loc, ExDeclType, 11896 diag::err_abstract_type_in_decl, 11897 AbstractVariableType)) 11898 Invalid = true; 11899 11900 // Only the non-fragile NeXT runtime currently supports C++ catches 11901 // of ObjC types, and no runtime supports catching ObjC types by value. 11902 if (!Invalid && getLangOpts().ObjC1) { 11903 QualType T = ExDeclType; 11904 if (const ReferenceType *RT = T->getAs<ReferenceType>()) 11905 T = RT->getPointeeType(); 11906 11907 if (T->isObjCObjectType()) { 11908 Diag(Loc, diag::err_objc_object_catch); 11909 Invalid = true; 11910 } else if (T->isObjCObjectPointerType()) { 11911 // FIXME: should this be a test for macosx-fragile specifically? 11912 if (getLangOpts().ObjCRuntime.isFragile()) 11913 Diag(Loc, diag::warn_objc_pointer_cxx_catch_fragile); 11914 } 11915 } 11916 11917 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, 11918 ExDeclType, TInfo, SC_None); 11919 ExDecl->setExceptionVariable(true); 11920 11921 // In ARC, infer 'retaining' for variables of retainable type. 11922 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) 11923 Invalid = true; 11924 11925 if (!Invalid && !ExDeclType->isDependentType()) { 11926 if (const RecordType *recordType = ExDeclType->getAs<RecordType>()) { 11927 // Insulate this from anything else we might currently be parsing. 11928 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated); 11929 11930 // C++ [except.handle]p16: 11931 // The object declared in an exception-declaration or, if the 11932 // exception-declaration does not specify a name, a temporary (12.2) is 11933 // copy-initialized (8.5) from the exception object. [...] 11934 // The object is destroyed when the handler exits, after the destruction 11935 // of any automatic objects initialized within the handler. 11936 // 11937 // We just pretend to initialize the object with itself, then make sure 11938 // it can be destroyed later. 11939 QualType initType = ExDeclType; 11940 11941 InitializedEntity entity = 11942 InitializedEntity::InitializeVariable(ExDecl); 11943 InitializationKind initKind = 11944 InitializationKind::CreateCopy(Loc, SourceLocation()); 11945 11946 Expr *opaqueValue = 11947 new (Context) OpaqueValueExpr(Loc, initType, VK_LValue, OK_Ordinary); 11948 InitializationSequence sequence(*this, entity, initKind, opaqueValue); 11949 ExprResult result = sequence.Perform(*this, entity, initKind, opaqueValue); 11950 if (result.isInvalid()) 11951 Invalid = true; 11952 else { 11953 // If the constructor used was non-trivial, set this as the 11954 // "initializer". 11955 CXXConstructExpr *construct = result.getAs<CXXConstructExpr>(); 11956 if (!construct->getConstructor()->isTrivial()) { 11957 Expr *init = MaybeCreateExprWithCleanups(construct); 11958 ExDecl->setInit(init); 11959 } 11960 11961 // And make sure it's destructable. 11962 FinalizeVarWithDestructor(ExDecl, recordType); 11963 } 11964 } 11965 } 11966 11967 if (Invalid) 11968 ExDecl->setInvalidDecl(); 11969 11970 return ExDecl; 11971 } 11972 11973 /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch 11974 /// handler. 11975 Decl *Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) { 11976 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 11977 bool Invalid = D.isInvalidType(); 11978 11979 // Check for unexpanded parameter packs. 11980 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 11981 UPPC_ExceptionType)) { 11982 TInfo = Context.getTrivialTypeSourceInfo(Context.IntTy, 11983 D.getIdentifierLoc()); 11984 Invalid = true; 11985 } 11986 11987 IdentifierInfo *II = D.getIdentifier(); 11988 if (NamedDecl *PrevDecl = LookupSingleName(S, II, D.getIdentifierLoc(), 11989 LookupOrdinaryName, 11990 ForRedeclaration)) { 11991 // The scope should be freshly made just for us. There is just no way 11992 // it contains any previous declaration, except for function parameters in 11993 // a function-try-block's catch statement. 11994 assert(!S->isDeclScope(PrevDecl)); 11995 if (isDeclInScope(PrevDecl, CurContext, S)) { 11996 Diag(D.getIdentifierLoc(), diag::err_redefinition) 11997 << D.getIdentifier(); 11998 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 11999 Invalid = true; 12000 } else if (PrevDecl->isTemplateParameter()) 12001 // Maybe we will complain about the shadowed template parameter. 12002 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 12003 } 12004 12005 if (D.getCXXScopeSpec().isSet() && !Invalid) { 12006 Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator) 12007 << D.getCXXScopeSpec().getRange(); 12008 Invalid = true; 12009 } 12010 12011 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, 12012 D.getLocStart(), 12013 D.getIdentifierLoc(), 12014 D.getIdentifier()); 12015 if (Invalid) 12016 ExDecl->setInvalidDecl(); 12017 12018 // Add the exception declaration into this scope. 12019 if (II) 12020 PushOnScopeChains(ExDecl, S); 12021 else 12022 CurContext->addDecl(ExDecl); 12023 12024 ProcessDeclAttributes(S, ExDecl, D); 12025 return ExDecl; 12026 } 12027 12028 Decl *Sema::ActOnStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12029 Expr *AssertExpr, 12030 Expr *AssertMessageExpr, 12031 SourceLocation RParenLoc) { 12032 StringLiteral *AssertMessage = 12033 AssertMessageExpr ? cast<StringLiteral>(AssertMessageExpr) : nullptr; 12034 12035 if (DiagnoseUnexpandedParameterPack(AssertExpr, UPPC_StaticAssertExpression)) 12036 return nullptr; 12037 12038 return BuildStaticAssertDeclaration(StaticAssertLoc, AssertExpr, 12039 AssertMessage, RParenLoc, false); 12040 } 12041 12042 Decl *Sema::BuildStaticAssertDeclaration(SourceLocation StaticAssertLoc, 12043 Expr *AssertExpr, 12044 StringLiteral *AssertMessage, 12045 SourceLocation RParenLoc, 12046 bool Failed) { 12047 assert(AssertExpr != nullptr && "Expected non-null condition"); 12048 if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent() && 12049 !Failed) { 12050 // In a static_assert-declaration, the constant-expression shall be a 12051 // constant expression that can be contextually converted to bool. 12052 ExprResult Converted = PerformContextuallyConvertToBool(AssertExpr); 12053 if (Converted.isInvalid()) 12054 Failed = true; 12055 12056 llvm::APSInt Cond; 12057 if (!Failed && VerifyIntegerConstantExpression(Converted.get(), &Cond, 12058 diag::err_static_assert_expression_is_not_constant, 12059 /*AllowFold=*/false).isInvalid()) 12060 Failed = true; 12061 12062 if (!Failed && !Cond) { 12063 SmallString<256> MsgBuffer; 12064 llvm::raw_svector_ostream Msg(MsgBuffer); 12065 if (AssertMessage) 12066 AssertMessage->printPretty(Msg, nullptr, getPrintingPolicy()); 12067 Diag(StaticAssertLoc, diag::err_static_assert_failed) 12068 << !AssertMessage << Msg.str() << AssertExpr->getSourceRange(); 12069 Failed = true; 12070 } 12071 } 12072 12073 Decl *Decl = StaticAssertDecl::Create(Context, CurContext, StaticAssertLoc, 12074 AssertExpr, AssertMessage, RParenLoc, 12075 Failed); 12076 12077 CurContext->addDecl(Decl); 12078 return Decl; 12079 } 12080 12081 /// \brief Perform semantic analysis of the given friend type declaration. 12082 /// 12083 /// \returns A friend declaration that. 12084 FriendDecl *Sema::CheckFriendTypeDecl(SourceLocation LocStart, 12085 SourceLocation FriendLoc, 12086 TypeSourceInfo *TSInfo) { 12087 assert(TSInfo && "NULL TypeSourceInfo for friend type declaration"); 12088 12089 QualType T = TSInfo->getType(); 12090 SourceRange TypeRange = TSInfo->getTypeLoc().getLocalSourceRange(); 12091 12092 // C++03 [class.friend]p2: 12093 // An elaborated-type-specifier shall be used in a friend declaration 12094 // for a class.* 12095 // 12096 // * The class-key of the elaborated-type-specifier is required. 12097 if (!ActiveTemplateInstantiations.empty()) { 12098 // Do not complain about the form of friend template types during 12099 // template instantiation; we will already have complained when the 12100 // template was declared. 12101 } else { 12102 if (!T->isElaboratedTypeSpecifier()) { 12103 // If we evaluated the type to a record type, suggest putting 12104 // a tag in front. 12105 if (const RecordType *RT = T->getAs<RecordType>()) { 12106 RecordDecl *RD = RT->getDecl(); 12107 12108 SmallString<16> InsertionText(" "); 12109 InsertionText += RD->getKindName(); 12110 12111 Diag(TypeRange.getBegin(), 12112 getLangOpts().CPlusPlus11 ? 12113 diag::warn_cxx98_compat_unelaborated_friend_type : 12114 diag::ext_unelaborated_friend_type) 12115 << (unsigned) RD->getTagKind() 12116 << T 12117 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(FriendLoc), 12118 InsertionText); 12119 } else { 12120 Diag(FriendLoc, 12121 getLangOpts().CPlusPlus11 ? 12122 diag::warn_cxx98_compat_nonclass_type_friend : 12123 diag::ext_nonclass_type_friend) 12124 << T 12125 << TypeRange; 12126 } 12127 } else if (T->getAs<EnumType>()) { 12128 Diag(FriendLoc, 12129 getLangOpts().CPlusPlus11 ? 12130 diag::warn_cxx98_compat_enum_friend : 12131 diag::ext_enum_friend) 12132 << T 12133 << TypeRange; 12134 } 12135 12136 // C++11 [class.friend]p3: 12137 // A friend declaration that does not declare a function shall have one 12138 // of the following forms: 12139 // friend elaborated-type-specifier ; 12140 // friend simple-type-specifier ; 12141 // friend typename-specifier ; 12142 if (getLangOpts().CPlusPlus11 && LocStart != FriendLoc) 12143 Diag(FriendLoc, diag::err_friend_not_first_in_declaration) << T; 12144 } 12145 12146 // If the type specifier in a friend declaration designates a (possibly 12147 // cv-qualified) class type, that class is declared as a friend; otherwise, 12148 // the friend declaration is ignored. 12149 return FriendDecl::Create(Context, CurContext, 12150 TSInfo->getTypeLoc().getLocStart(), TSInfo, 12151 FriendLoc); 12152 } 12153 12154 /// Handle a friend tag declaration where the scope specifier was 12155 /// templated. 12156 Decl *Sema::ActOnTemplatedFriendTag(Scope *S, SourceLocation FriendLoc, 12157 unsigned TagSpec, SourceLocation TagLoc, 12158 CXXScopeSpec &SS, 12159 IdentifierInfo *Name, 12160 SourceLocation NameLoc, 12161 AttributeList *Attr, 12162 MultiTemplateParamsArg TempParamLists) { 12163 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 12164 12165 bool isExplicitSpecialization = false; 12166 bool Invalid = false; 12167 12168 if (TemplateParameterList *TemplateParams = 12169 MatchTemplateParametersToScopeSpecifier( 12170 TagLoc, NameLoc, SS, nullptr, TempParamLists, /*friend*/ true, 12171 isExplicitSpecialization, Invalid)) { 12172 if (TemplateParams->size() > 0) { 12173 // This is a declaration of a class template. 12174 if (Invalid) 12175 return nullptr; 12176 12177 return CheckClassTemplate(S, TagSpec, TUK_Friend, TagLoc, SS, Name, 12178 NameLoc, Attr, TemplateParams, AS_public, 12179 /*ModulePrivateLoc=*/SourceLocation(), 12180 FriendLoc, TempParamLists.size() - 1, 12181 TempParamLists.data()).get(); 12182 } else { 12183 // The "template<>" header is extraneous. 12184 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 12185 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 12186 isExplicitSpecialization = true; 12187 } 12188 } 12189 12190 if (Invalid) return nullptr; 12191 12192 bool isAllExplicitSpecializations = true; 12193 for (unsigned I = TempParamLists.size(); I-- > 0; ) { 12194 if (TempParamLists[I]->size()) { 12195 isAllExplicitSpecializations = false; 12196 break; 12197 } 12198 } 12199 12200 // FIXME: don't ignore attributes. 12201 12202 // If it's explicit specializations all the way down, just forget 12203 // about the template header and build an appropriate non-templated 12204 // friend. TODO: for source fidelity, remember the headers. 12205 if (isAllExplicitSpecializations) { 12206 if (SS.isEmpty()) { 12207 bool Owned = false; 12208 bool IsDependent = false; 12209 return ActOnTag(S, TagSpec, TUK_Friend, TagLoc, SS, Name, NameLoc, 12210 Attr, AS_public, 12211 /*ModulePrivateLoc=*/SourceLocation(), 12212 MultiTemplateParamsArg(), Owned, IsDependent, 12213 /*ScopedEnumKWLoc=*/SourceLocation(), 12214 /*ScopedEnumUsesClassTag=*/false, 12215 /*UnderlyingType=*/TypeResult(), 12216 /*IsTypeSpecifier=*/false); 12217 } 12218 12219 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context); 12220 ElaboratedTypeKeyword Keyword 12221 = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12222 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc, 12223 *Name, NameLoc); 12224 if (T.isNull()) 12225 return nullptr; 12226 12227 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12228 if (isa<DependentNameType>(T)) { 12229 DependentNameTypeLoc TL = 12230 TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12231 TL.setElaboratedKeywordLoc(TagLoc); 12232 TL.setQualifierLoc(QualifierLoc); 12233 TL.setNameLoc(NameLoc); 12234 } else { 12235 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>(); 12236 TL.setElaboratedKeywordLoc(TagLoc); 12237 TL.setQualifierLoc(QualifierLoc); 12238 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(NameLoc); 12239 } 12240 12241 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12242 TSI, FriendLoc, TempParamLists); 12243 Friend->setAccess(AS_public); 12244 CurContext->addDecl(Friend); 12245 return Friend; 12246 } 12247 12248 assert(SS.isNotEmpty() && "valid templated tag with no SS and no direct?"); 12249 12250 12251 12252 // Handle the case of a templated-scope friend class. e.g. 12253 // template <class T> class A<T>::B; 12254 // FIXME: we don't support these right now. 12255 Diag(NameLoc, diag::warn_template_qualified_friend_unsupported) 12256 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext); 12257 ElaboratedTypeKeyword ETK = TypeWithKeyword::getKeywordForTagTypeKind(Kind); 12258 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name); 12259 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T); 12260 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>(); 12261 TL.setElaboratedKeywordLoc(TagLoc); 12262 TL.setQualifierLoc(SS.getWithLocInContext(Context)); 12263 TL.setNameLoc(NameLoc); 12264 12265 FriendDecl *Friend = FriendDecl::Create(Context, CurContext, NameLoc, 12266 TSI, FriendLoc, TempParamLists); 12267 Friend->setAccess(AS_public); 12268 Friend->setUnsupportedFriend(true); 12269 CurContext->addDecl(Friend); 12270 return Friend; 12271 } 12272 12273 12274 /// Handle a friend type declaration. This works in tandem with 12275 /// ActOnTag. 12276 /// 12277 /// Notes on friend class templates: 12278 /// 12279 /// We generally treat friend class declarations as if they were 12280 /// declaring a class. So, for example, the elaborated type specifier 12281 /// in a friend declaration is required to obey the restrictions of a 12282 /// class-head (i.e. no typedefs in the scope chain), template 12283 /// parameters are required to match up with simple template-ids, &c. 12284 /// However, unlike when declaring a template specialization, it's 12285 /// okay to refer to a template specialization without an empty 12286 /// template parameter declaration, e.g. 12287 /// friend class A<T>::B<unsigned>; 12288 /// We permit this as a special case; if there are any template 12289 /// parameters present at all, require proper matching, i.e. 12290 /// template <> template \<class T> friend class A<int>::B; 12291 Decl *Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, 12292 MultiTemplateParamsArg TempParams) { 12293 SourceLocation Loc = DS.getLocStart(); 12294 12295 assert(DS.isFriendSpecified()); 12296 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12297 12298 // Try to convert the decl specifier to a type. This works for 12299 // friend templates because ActOnTag never produces a ClassTemplateDecl 12300 // for a TUK_Friend. 12301 Declarator TheDeclarator(DS, Declarator::MemberContext); 12302 TypeSourceInfo *TSI = GetTypeForDeclarator(TheDeclarator, S); 12303 QualType T = TSI->getType(); 12304 if (TheDeclarator.isInvalidType()) 12305 return nullptr; 12306 12307 if (DiagnoseUnexpandedParameterPack(Loc, TSI, UPPC_FriendDeclaration)) 12308 return nullptr; 12309 12310 // This is definitely an error in C++98. It's probably meant to 12311 // be forbidden in C++0x, too, but the specification is just 12312 // poorly written. 12313 // 12314 // The problem is with declarations like the following: 12315 // template <T> friend A<T>::foo; 12316 // where deciding whether a class C is a friend or not now hinges 12317 // on whether there exists an instantiation of A that causes 12318 // 'foo' to equal C. There are restrictions on class-heads 12319 // (which we declare (by fiat) elaborated friend declarations to 12320 // be) that makes this tractable. 12321 // 12322 // FIXME: handle "template <> friend class A<T>;", which 12323 // is possibly well-formed? Who even knows? 12324 if (TempParams.size() && !T->isElaboratedTypeSpecifier()) { 12325 Diag(Loc, diag::err_tagless_friend_type_template) 12326 << DS.getSourceRange(); 12327 return nullptr; 12328 } 12329 12330 // C++98 [class.friend]p1: A friend of a class is a function 12331 // or class that is not a member of the class . . . 12332 // This is fixed in DR77, which just barely didn't make the C++03 12333 // deadline. It's also a very silly restriction that seriously 12334 // affects inner classes and which nobody else seems to implement; 12335 // thus we never diagnose it, not even in -pedantic. 12336 // 12337 // But note that we could warn about it: it's always useless to 12338 // friend one of your own members (it's not, however, worthless to 12339 // friend a member of an arbitrary specialization of your template). 12340 12341 Decl *D; 12342 if (unsigned NumTempParamLists = TempParams.size()) 12343 D = FriendTemplateDecl::Create(Context, CurContext, Loc, 12344 NumTempParamLists, 12345 TempParams.data(), 12346 TSI, 12347 DS.getFriendSpecLoc()); 12348 else 12349 D = CheckFriendTypeDecl(Loc, DS.getFriendSpecLoc(), TSI); 12350 12351 if (!D) 12352 return nullptr; 12353 12354 D->setAccess(AS_public); 12355 CurContext->addDecl(D); 12356 12357 return D; 12358 } 12359 12360 NamedDecl *Sema::ActOnFriendFunctionDecl(Scope *S, Declarator &D, 12361 MultiTemplateParamsArg TemplateParams) { 12362 const DeclSpec &DS = D.getDeclSpec(); 12363 12364 assert(DS.isFriendSpecified()); 12365 assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); 12366 12367 SourceLocation Loc = D.getIdentifierLoc(); 12368 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 12369 12370 // C++ [class.friend]p1 12371 // A friend of a class is a function or class.... 12372 // Note that this sees through typedefs, which is intended. 12373 // It *doesn't* see through dependent types, which is correct 12374 // according to [temp.arg.type]p3: 12375 // If a declaration acquires a function type through a 12376 // type dependent on a template-parameter and this causes 12377 // a declaration that does not use the syntactic form of a 12378 // function declarator to have a function type, the program 12379 // is ill-formed. 12380 if (!TInfo->getType()->isFunctionType()) { 12381 Diag(Loc, diag::err_unexpected_friend); 12382 12383 // It might be worthwhile to try to recover by creating an 12384 // appropriate declaration. 12385 return nullptr; 12386 } 12387 12388 // C++ [namespace.memdef]p3 12389 // - If a friend declaration in a non-local class first declares a 12390 // class or function, the friend class or function is a member 12391 // of the innermost enclosing namespace. 12392 // - The name of the friend is not found by simple name lookup 12393 // until a matching declaration is provided in that namespace 12394 // scope (either before or after the class declaration granting 12395 // friendship). 12396 // - If a friend function is called, its name may be found by the 12397 // name lookup that considers functions from namespaces and 12398 // classes associated with the types of the function arguments. 12399 // - When looking for a prior declaration of a class or a function 12400 // declared as a friend, scopes outside the innermost enclosing 12401 // namespace scope are not considered. 12402 12403 CXXScopeSpec &SS = D.getCXXScopeSpec(); 12404 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 12405 DeclarationName Name = NameInfo.getName(); 12406 assert(Name); 12407 12408 // Check for unexpanded parameter packs. 12409 if (DiagnoseUnexpandedParameterPack(Loc, TInfo, UPPC_FriendDeclaration) || 12410 DiagnoseUnexpandedParameterPack(NameInfo, UPPC_FriendDeclaration) || 12411 DiagnoseUnexpandedParameterPack(SS, UPPC_FriendDeclaration)) 12412 return nullptr; 12413 12414 // The context we found the declaration in, or in which we should 12415 // create the declaration. 12416 DeclContext *DC; 12417 Scope *DCScope = S; 12418 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 12419 ForRedeclaration); 12420 12421 // There are five cases here. 12422 // - There's no scope specifier and we're in a local class. Only look 12423 // for functions declared in the immediately-enclosing block scope. 12424 // We recover from invalid scope qualifiers as if they just weren't there. 12425 FunctionDecl *FunctionContainingLocalClass = nullptr; 12426 if ((SS.isInvalid() || !SS.isSet()) && 12427 (FunctionContainingLocalClass = 12428 cast<CXXRecordDecl>(CurContext)->isLocalClass())) { 12429 // C++11 [class.friend]p11: 12430 // If a friend declaration appears in a local class and the name 12431 // specified is an unqualified name, a prior declaration is 12432 // looked up without considering scopes that are outside the 12433 // innermost enclosing non-class scope. For a friend function 12434 // declaration, if there is no prior declaration, the program is 12435 // ill-formed. 12436 12437 // Find the innermost enclosing non-class scope. This is the block 12438 // scope containing the local class definition (or for a nested class, 12439 // the outer local class). 12440 DCScope = S->getFnParent(); 12441 12442 // Look up the function name in the scope. 12443 Previous.clear(LookupLocalFriendName); 12444 LookupName(Previous, S, /*AllowBuiltinCreation*/false); 12445 12446 if (!Previous.empty()) { 12447 // All possible previous declarations must have the same context: 12448 // either they were declared at block scope or they are members of 12449 // one of the enclosing local classes. 12450 DC = Previous.getRepresentativeDecl()->getDeclContext(); 12451 } else { 12452 // This is ill-formed, but provide the context that we would have 12453 // declared the function in, if we were permitted to, for error recovery. 12454 DC = FunctionContainingLocalClass; 12455 } 12456 adjustContextForLocalExternDecl(DC); 12457 12458 // C++ [class.friend]p6: 12459 // A function can be defined in a friend declaration of a class if and 12460 // only if the class is a non-local class (9.8), the function name is 12461 // unqualified, and the function has namespace scope. 12462 if (D.isFunctionDefinition()) { 12463 Diag(NameInfo.getBeginLoc(), diag::err_friend_def_in_local_class); 12464 } 12465 12466 // - There's no scope specifier, in which case we just go to the 12467 // appropriate scope and look for a function or function template 12468 // there as appropriate. 12469 } else if (SS.isInvalid() || !SS.isSet()) { 12470 // C++11 [namespace.memdef]p3: 12471 // If the name in a friend declaration is neither qualified nor 12472 // a template-id and the declaration is a function or an 12473 // elaborated-type-specifier, the lookup to determine whether 12474 // the entity has been previously declared shall not consider 12475 // any scopes outside the innermost enclosing namespace. 12476 bool isTemplateId = D.getName().getKind() == UnqualifiedId::IK_TemplateId; 12477 12478 // Find the appropriate context according to the above. 12479 DC = CurContext; 12480 12481 // Skip class contexts. If someone can cite chapter and verse 12482 // for this behavior, that would be nice --- it's what GCC and 12483 // EDG do, and it seems like a reasonable intent, but the spec 12484 // really only says that checks for unqualified existing 12485 // declarations should stop at the nearest enclosing namespace, 12486 // not that they should only consider the nearest enclosing 12487 // namespace. 12488 while (DC->isRecord()) 12489 DC = DC->getParent(); 12490 12491 DeclContext *LookupDC = DC; 12492 while (LookupDC->isTransparentContext()) 12493 LookupDC = LookupDC->getParent(); 12494 12495 while (true) { 12496 LookupQualifiedName(Previous, LookupDC); 12497 12498 if (!Previous.empty()) { 12499 DC = LookupDC; 12500 break; 12501 } 12502 12503 if (isTemplateId) { 12504 if (isa<TranslationUnitDecl>(LookupDC)) break; 12505 } else { 12506 if (LookupDC->isFileContext()) break; 12507 } 12508 LookupDC = LookupDC->getParent(); 12509 } 12510 12511 DCScope = getScopeForDeclContext(S, DC); 12512 12513 // - There's a non-dependent scope specifier, in which case we 12514 // compute it and do a previous lookup there for a function 12515 // or function template. 12516 } else if (!SS.getScopeRep()->isDependent()) { 12517 DC = computeDeclContext(SS); 12518 if (!DC) return nullptr; 12519 12520 if (RequireCompleteDeclContext(SS, DC)) return nullptr; 12521 12522 LookupQualifiedName(Previous, DC); 12523 12524 // Ignore things found implicitly in the wrong scope. 12525 // TODO: better diagnostics for this case. Suggesting the right 12526 // qualified scope would be nice... 12527 LookupResult::Filter F = Previous.makeFilter(); 12528 while (F.hasNext()) { 12529 NamedDecl *D = F.next(); 12530 if (!DC->InEnclosingNamespaceSetOf( 12531 D->getDeclContext()->getRedeclContext())) 12532 F.erase(); 12533 } 12534 F.done(); 12535 12536 if (Previous.empty()) { 12537 D.setInvalidType(); 12538 Diag(Loc, diag::err_qualified_friend_not_found) 12539 << Name << TInfo->getType(); 12540 return nullptr; 12541 } 12542 12543 // C++ [class.friend]p1: A friend of a class is a function or 12544 // class that is not a member of the class . . . 12545 if (DC->Equals(CurContext)) 12546 Diag(DS.getFriendSpecLoc(), 12547 getLangOpts().CPlusPlus11 ? 12548 diag::warn_cxx98_compat_friend_is_member : 12549 diag::err_friend_is_member); 12550 12551 if (D.isFunctionDefinition()) { 12552 // C++ [class.friend]p6: 12553 // A function can be defined in a friend declaration of a class if and 12554 // only if the class is a non-local class (9.8), the function name is 12555 // unqualified, and the function has namespace scope. 12556 SemaDiagnosticBuilder DB 12557 = Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def); 12558 12559 DB << SS.getScopeRep(); 12560 if (DC->isFileContext()) 12561 DB << FixItHint::CreateRemoval(SS.getRange()); 12562 SS.clear(); 12563 } 12564 12565 // - There's a scope specifier that does not match any template 12566 // parameter lists, in which case we use some arbitrary context, 12567 // create a method or method template, and wait for instantiation. 12568 // - There's a scope specifier that does match some template 12569 // parameter lists, which we don't handle right now. 12570 } else { 12571 if (D.isFunctionDefinition()) { 12572 // C++ [class.friend]p6: 12573 // A function can be defined in a friend declaration of a class if and 12574 // only if the class is a non-local class (9.8), the function name is 12575 // unqualified, and the function has namespace scope. 12576 Diag(SS.getRange().getBegin(), diag::err_qualified_friend_def) 12577 << SS.getScopeRep(); 12578 } 12579 12580 DC = CurContext; 12581 assert(isa<CXXRecordDecl>(DC) && "friend declaration not in class?"); 12582 } 12583 12584 if (!DC->isRecord()) { 12585 // This implies that it has to be an operator or function. 12586 if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName || 12587 D.getName().getKind() == UnqualifiedId::IK_DestructorName || 12588 D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) { 12589 Diag(Loc, diag::err_introducing_special_friend) << 12590 (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 : 12591 D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2); 12592 return nullptr; 12593 } 12594 } 12595 12596 // FIXME: This is an egregious hack to cope with cases where the scope stack 12597 // does not contain the declaration context, i.e., in an out-of-line 12598 // definition of a class. 12599 Scope FakeDCScope(S, Scope::DeclScope, Diags); 12600 if (!DCScope) { 12601 FakeDCScope.setEntity(DC); 12602 DCScope = &FakeDCScope; 12603 } 12604 12605 bool AddToScope = true; 12606 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, TInfo, Previous, 12607 TemplateParams, AddToScope); 12608 if (!ND) return nullptr; 12609 12610 assert(ND->getLexicalDeclContext() == CurContext); 12611 12612 // If we performed typo correction, we might have added a scope specifier 12613 // and changed the decl context. 12614 DC = ND->getDeclContext(); 12615 12616 // Add the function declaration to the appropriate lookup tables, 12617 // adjusting the redeclarations list as necessary. We don't 12618 // want to do this yet if the friending class is dependent. 12619 // 12620 // Also update the scope-based lookup if the target context's 12621 // lookup context is in lexical scope. 12622 if (!CurContext->isDependentContext()) { 12623 DC = DC->getRedeclContext(); 12624 DC->makeDeclVisibleInContext(ND); 12625 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 12626 PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false); 12627 } 12628 12629 FriendDecl *FrD = FriendDecl::Create(Context, CurContext, 12630 D.getIdentifierLoc(), ND, 12631 DS.getFriendSpecLoc()); 12632 FrD->setAccess(AS_public); 12633 CurContext->addDecl(FrD); 12634 12635 if (ND->isInvalidDecl()) { 12636 FrD->setInvalidDecl(); 12637 } else { 12638 if (DC->isRecord()) CheckFriendAccess(ND); 12639 12640 FunctionDecl *FD; 12641 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 12642 FD = FTD->getTemplatedDecl(); 12643 else 12644 FD = cast<FunctionDecl>(ND); 12645 12646 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a 12647 // default argument expression, that declaration shall be a definition 12648 // and shall be the only declaration of the function or function 12649 // template in the translation unit. 12650 if (functionDeclHasDefaultArgument(FD)) { 12651 if (FunctionDecl *OldFD = FD->getPreviousDecl()) { 12652 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_redeclared); 12653 Diag(OldFD->getLocation(), diag::note_previous_declaration); 12654 } else if (!D.isFunctionDefinition()) 12655 Diag(FD->getLocation(), diag::err_friend_decl_with_def_arg_must_be_def); 12656 } 12657 12658 // Mark templated-scope function declarations as unsupported. 12659 if (FD->getNumTemplateParameterLists() && SS.isValid()) { 12660 Diag(FD->getLocation(), diag::warn_template_qualified_friend_unsupported) 12661 << SS.getScopeRep() << SS.getRange() 12662 << cast<CXXRecordDecl>(CurContext); 12663 FrD->setUnsupportedFriend(true); 12664 } 12665 } 12666 12667 return ND; 12668 } 12669 12670 void Sema::SetDeclDeleted(Decl *Dcl, SourceLocation DelLoc) { 12671 AdjustDeclIfTemplate(Dcl); 12672 12673 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(Dcl); 12674 if (!Fn) { 12675 Diag(DelLoc, diag::err_deleted_non_function); 12676 return; 12677 } 12678 12679 if (const FunctionDecl *Prev = Fn->getPreviousDecl()) { 12680 // Don't consider the implicit declaration we generate for explicit 12681 // specializations. FIXME: Do not generate these implicit declarations. 12682 if ((Prev->getTemplateSpecializationKind() != TSK_ExplicitSpecialization || 12683 Prev->getPreviousDecl()) && 12684 !Prev->isDefined()) { 12685 Diag(DelLoc, diag::err_deleted_decl_not_first); 12686 Diag(Prev->getLocation().isInvalid() ? DelLoc : Prev->getLocation(), 12687 Prev->isImplicit() ? diag::note_previous_implicit_declaration 12688 : diag::note_previous_declaration); 12689 } 12690 // If the declaration wasn't the first, we delete the function anyway for 12691 // recovery. 12692 Fn = Fn->getCanonicalDecl(); 12693 } 12694 12695 // dllimport/dllexport cannot be deleted. 12696 if (const InheritableAttr *DLLAttr = getDLLAttr(Fn)) { 12697 Diag(Fn->getLocation(), diag::err_attribute_dll_deleted) << DLLAttr; 12698 Fn->setInvalidDecl(); 12699 } 12700 12701 if (Fn->isDeleted()) 12702 return; 12703 12704 // See if we're deleting a function which is already known to override a 12705 // non-deleted virtual function. 12706 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Fn)) { 12707 bool IssuedDiagnostic = false; 12708 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 12709 E = MD->end_overridden_methods(); 12710 I != E; ++I) { 12711 if (!(*MD->begin_overridden_methods())->isDeleted()) { 12712 if (!IssuedDiagnostic) { 12713 Diag(DelLoc, diag::err_deleted_override) << MD->getDeclName(); 12714 IssuedDiagnostic = true; 12715 } 12716 Diag((*I)->getLocation(), diag::note_overridden_virtual_function); 12717 } 12718 } 12719 } 12720 12721 // C++11 [basic.start.main]p3: 12722 // A program that defines main as deleted [...] is ill-formed. 12723 if (Fn->isMain()) 12724 Diag(DelLoc, diag::err_deleted_main); 12725 12726 Fn->setDeletedAsWritten(); 12727 } 12728 12729 void Sema::SetDeclDefaulted(Decl *Dcl, SourceLocation DefaultLoc) { 12730 CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(Dcl); 12731 12732 if (MD) { 12733 if (MD->getParent()->isDependentType()) { 12734 MD->setDefaulted(); 12735 MD->setExplicitlyDefaulted(); 12736 return; 12737 } 12738 12739 CXXSpecialMember Member = getSpecialMember(MD); 12740 if (Member == CXXInvalid) { 12741 if (!MD->isInvalidDecl()) 12742 Diag(DefaultLoc, diag::err_default_special_members); 12743 return; 12744 } 12745 12746 MD->setDefaulted(); 12747 MD->setExplicitlyDefaulted(); 12748 12749 // If this definition appears within the record, do the checking when 12750 // the record is complete. 12751 const FunctionDecl *Primary = MD; 12752 if (const FunctionDecl *Pattern = MD->getTemplateInstantiationPattern()) 12753 // Find the uninstantiated declaration that actually had the '= default' 12754 // on it. 12755 Pattern->isDefined(Primary); 12756 12757 // If the method was defaulted on its first declaration, we will have 12758 // already performed the checking in CheckCompletedCXXClass. Such a 12759 // declaration doesn't trigger an implicit definition. 12760 if (Primary == Primary->getCanonicalDecl()) 12761 return; 12762 12763 CheckExplicitlyDefaultedSpecialMember(MD); 12764 12765 if (MD->isInvalidDecl()) 12766 return; 12767 12768 switch (Member) { 12769 case CXXDefaultConstructor: 12770 DefineImplicitDefaultConstructor(DefaultLoc, 12771 cast<CXXConstructorDecl>(MD)); 12772 break; 12773 case CXXCopyConstructor: 12774 DefineImplicitCopyConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12775 break; 12776 case CXXCopyAssignment: 12777 DefineImplicitCopyAssignment(DefaultLoc, MD); 12778 break; 12779 case CXXDestructor: 12780 DefineImplicitDestructor(DefaultLoc, cast<CXXDestructorDecl>(MD)); 12781 break; 12782 case CXXMoveConstructor: 12783 DefineImplicitMoveConstructor(DefaultLoc, cast<CXXConstructorDecl>(MD)); 12784 break; 12785 case CXXMoveAssignment: 12786 DefineImplicitMoveAssignment(DefaultLoc, MD); 12787 break; 12788 case CXXInvalid: 12789 llvm_unreachable("Invalid special member."); 12790 } 12791 } else { 12792 Diag(DefaultLoc, diag::err_default_special_members); 12793 } 12794 } 12795 12796 static void SearchForReturnInStmt(Sema &Self, Stmt *S) { 12797 for (Stmt::child_range CI = S->children(); CI; ++CI) { 12798 Stmt *SubStmt = *CI; 12799 if (!SubStmt) 12800 continue; 12801 if (isa<ReturnStmt>(SubStmt)) 12802 Self.Diag(SubStmt->getLocStart(), 12803 diag::err_return_in_constructor_handler); 12804 if (!isa<Expr>(SubStmt)) 12805 SearchForReturnInStmt(Self, SubStmt); 12806 } 12807 } 12808 12809 void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) { 12810 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { 12811 CXXCatchStmt *Handler = TryBlock->getHandler(I); 12812 SearchForReturnInStmt(*this, Handler); 12813 } 12814 } 12815 12816 bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New, 12817 const CXXMethodDecl *Old) { 12818 const FunctionType *NewFT = New->getType()->getAs<FunctionType>(); 12819 const FunctionType *OldFT = Old->getType()->getAs<FunctionType>(); 12820 12821 CallingConv NewCC = NewFT->getCallConv(), OldCC = OldFT->getCallConv(); 12822 12823 // If the calling conventions match, everything is fine 12824 if (NewCC == OldCC) 12825 return false; 12826 12827 // If the calling conventions mismatch because the new function is static, 12828 // suppress the calling convention mismatch error; the error about static 12829 // function override (err_static_overrides_virtual from 12830 // Sema::CheckFunctionDeclaration) is more clear. 12831 if (New->getStorageClass() == SC_Static) 12832 return false; 12833 12834 Diag(New->getLocation(), 12835 diag::err_conflicting_overriding_cc_attributes) 12836 << New->getDeclName() << New->getType() << Old->getType(); 12837 Diag(Old->getLocation(), diag::note_overridden_virtual_function); 12838 return true; 12839 } 12840 12841 bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, 12842 const CXXMethodDecl *Old) { 12843 QualType NewTy = New->getType()->getAs<FunctionType>()->getReturnType(); 12844 QualType OldTy = Old->getType()->getAs<FunctionType>()->getReturnType(); 12845 12846 if (Context.hasSameType(NewTy, OldTy) || 12847 NewTy->isDependentType() || OldTy->isDependentType()) 12848 return false; 12849 12850 // Check if the return types are covariant 12851 QualType NewClassTy, OldClassTy; 12852 12853 /// Both types must be pointers or references to classes. 12854 if (const PointerType *NewPT = NewTy->getAs<PointerType>()) { 12855 if (const PointerType *OldPT = OldTy->getAs<PointerType>()) { 12856 NewClassTy = NewPT->getPointeeType(); 12857 OldClassTy = OldPT->getPointeeType(); 12858 } 12859 } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) { 12860 if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) { 12861 if (NewRT->getTypeClass() == OldRT->getTypeClass()) { 12862 NewClassTy = NewRT->getPointeeType(); 12863 OldClassTy = OldRT->getPointeeType(); 12864 } 12865 } 12866 } 12867 12868 // The return types aren't either both pointers or references to a class type. 12869 if (NewClassTy.isNull()) { 12870 Diag(New->getLocation(), 12871 diag::err_different_return_type_for_overriding_virtual_function) 12872 << New->getDeclName() << NewTy << OldTy 12873 << New->getReturnTypeSourceRange(); 12874 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12875 << Old->getReturnTypeSourceRange(); 12876 12877 return true; 12878 } 12879 12880 // C++ [class.virtual]p6: 12881 // If the return type of D::f differs from the return type of B::f, the 12882 // class type in the return type of D::f shall be complete at the point of 12883 // declaration of D::f or shall be the class type D. 12884 if (const RecordType *RT = NewClassTy->getAs<RecordType>()) { 12885 if (!RT->isBeingDefined() && 12886 RequireCompleteType(New->getLocation(), NewClassTy, 12887 diag::err_covariant_return_incomplete, 12888 New->getDeclName())) 12889 return true; 12890 } 12891 12892 if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) { 12893 // Check if the new class derives from the old class. 12894 if (!IsDerivedFrom(NewClassTy, OldClassTy)) { 12895 Diag(New->getLocation(), diag::err_covariant_return_not_derived) 12896 << New->getDeclName() << NewTy << OldTy 12897 << New->getReturnTypeSourceRange(); 12898 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12899 << Old->getReturnTypeSourceRange(); 12900 return true; 12901 } 12902 12903 // Check if we the conversion from derived to base is valid. 12904 if (CheckDerivedToBaseConversion( 12905 NewClassTy, OldClassTy, 12906 diag::err_covariant_return_inaccessible_base, 12907 diag::err_covariant_return_ambiguous_derived_to_base_conv, 12908 New->getLocation(), New->getReturnTypeSourceRange(), 12909 New->getDeclName(), nullptr)) { 12910 // FIXME: this note won't trigger for delayed access control 12911 // diagnostics, and it's impossible to get an undelayed error 12912 // here from access control during the original parse because 12913 // the ParsingDeclSpec/ParsingDeclarator are still in scope. 12914 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12915 << Old->getReturnTypeSourceRange(); 12916 return true; 12917 } 12918 } 12919 12920 // The qualifiers of the return types must be the same. 12921 if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) { 12922 Diag(New->getLocation(), 12923 diag::err_covariant_return_type_different_qualifications) 12924 << New->getDeclName() << NewTy << OldTy 12925 << New->getReturnTypeSourceRange(); 12926 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12927 << Old->getReturnTypeSourceRange(); 12928 return true; 12929 }; 12930 12931 12932 // The new class type must have the same or less qualifiers as the old type. 12933 if (NewClassTy.isMoreQualifiedThan(OldClassTy)) { 12934 Diag(New->getLocation(), 12935 diag::err_covariant_return_type_class_type_more_qualified) 12936 << New->getDeclName() << NewTy << OldTy 12937 << New->getReturnTypeSourceRange(); 12938 Diag(Old->getLocation(), diag::note_overridden_virtual_function) 12939 << Old->getReturnTypeSourceRange(); 12940 return true; 12941 }; 12942 12943 return false; 12944 } 12945 12946 /// \brief Mark the given method pure. 12947 /// 12948 /// \param Method the method to be marked pure. 12949 /// 12950 /// \param InitRange the source range that covers the "0" initializer. 12951 bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { 12952 SourceLocation EndLoc = InitRange.getEnd(); 12953 if (EndLoc.isValid()) 12954 Method->setRangeEnd(EndLoc); 12955 12956 if (Method->isVirtual() || Method->getParent()->isDependentContext()) { 12957 Method->setPure(); 12958 return false; 12959 } 12960 12961 if (!Method->isInvalidDecl()) 12962 Diag(Method->getLocation(), diag::err_non_virtual_pure) 12963 << Method->getDeclName() << InitRange; 12964 return true; 12965 } 12966 12967 /// \brief Determine whether the given declaration is a static data member. 12968 static bool isStaticDataMember(const Decl *D) { 12969 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D)) 12970 return Var->isStaticDataMember(); 12971 12972 return false; 12973 } 12974 12975 /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse 12976 /// an initializer for the out-of-line declaration 'Dcl'. The scope 12977 /// is a fresh scope pushed for just this purpose. 12978 /// 12979 /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a 12980 /// static data member of class X, names should be looked up in the scope of 12981 /// class X. 12982 void Sema::ActOnCXXEnterDeclInitializer(Scope *S, Decl *D) { 12983 // If there is no declaration, there was an error parsing it. 12984 if (!D || D->isInvalidDecl()) 12985 return; 12986 12987 // We will always have a nested name specifier here, but this declaration 12988 // might not be out of line if the specifier names the current namespace: 12989 // extern int n; 12990 // int ::n = 0; 12991 if (D->isOutOfLine()) 12992 EnterDeclaratorContext(S, D->getDeclContext()); 12993 12994 // If we are parsing the initializer for a static data member, push a 12995 // new expression evaluation context that is associated with this static 12996 // data member. 12997 if (isStaticDataMember(D)) 12998 PushExpressionEvaluationContext(PotentiallyEvaluated, D); 12999 } 13000 13001 /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an 13002 /// initializer for the out-of-line declaration 'D'. 13003 void Sema::ActOnCXXExitDeclInitializer(Scope *S, Decl *D) { 13004 // If there is no declaration, there was an error parsing it. 13005 if (!D || D->isInvalidDecl()) 13006 return; 13007 13008 if (isStaticDataMember(D)) 13009 PopExpressionEvaluationContext(); 13010 13011 if (D->isOutOfLine()) 13012 ExitDeclaratorContext(S); 13013 } 13014 13015 /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a 13016 /// C++ if/switch/while/for statement. 13017 /// e.g: "if (int x = f()) {...}" 13018 DeclResult Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) { 13019 // C++ 6.4p2: 13020 // The declarator shall not specify a function or an array. 13021 // The type-specifier-seq shall not contain typedef and shall not declare a 13022 // new class or enumeration. 13023 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 13024 "Parser allowed 'typedef' as storage class of condition decl."); 13025 13026 Decl *Dcl = ActOnDeclarator(S, D); 13027 if (!Dcl) 13028 return true; 13029 13030 if (isa<FunctionDecl>(Dcl)) { // The declarator shall not specify a function. 13031 Diag(Dcl->getLocation(), diag::err_invalid_use_of_function_type) 13032 << D.getSourceRange(); 13033 return true; 13034 } 13035 13036 return Dcl; 13037 } 13038 13039 void Sema::LoadExternalVTableUses() { 13040 if (!ExternalSource) 13041 return; 13042 13043 SmallVector<ExternalVTableUse, 4> VTables; 13044 ExternalSource->ReadUsedVTables(VTables); 13045 SmallVector<VTableUse, 4> NewUses; 13046 for (unsigned I = 0, N = VTables.size(); I != N; ++I) { 13047 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos 13048 = VTablesUsed.find(VTables[I].Record); 13049 // Even if a definition wasn't required before, it may be required now. 13050 if (Pos != VTablesUsed.end()) { 13051 if (!Pos->second && VTables[I].DefinitionRequired) 13052 Pos->second = true; 13053 continue; 13054 } 13055 13056 VTablesUsed[VTables[I].Record] = VTables[I].DefinitionRequired; 13057 NewUses.push_back(VTableUse(VTables[I].Record, VTables[I].Location)); 13058 } 13059 13060 VTableUses.insert(VTableUses.begin(), NewUses.begin(), NewUses.end()); 13061 } 13062 13063 void Sema::MarkVTableUsed(SourceLocation Loc, CXXRecordDecl *Class, 13064 bool DefinitionRequired) { 13065 // Ignore any vtable uses in unevaluated operands or for classes that do 13066 // not have a vtable. 13067 if (!Class->isDynamicClass() || Class->isDependentContext() || 13068 CurContext->isDependentContext() || isUnevaluatedContext()) 13069 return; 13070 13071 // Try to insert this class into the map. 13072 LoadExternalVTableUses(); 13073 Class = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13074 std::pair<llvm::DenseMap<CXXRecordDecl *, bool>::iterator, bool> 13075 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired)); 13076 if (!Pos.second) { 13077 // If we already had an entry, check to see if we are promoting this vtable 13078 // to require a definition. If so, we need to reappend to the VTableUses 13079 // list, since we may have already processed the first entry. 13080 if (DefinitionRequired && !Pos.first->second) { 13081 Pos.first->second = true; 13082 } else { 13083 // Otherwise, we can early exit. 13084 return; 13085 } 13086 } else { 13087 // The Microsoft ABI requires that we perform the destructor body 13088 // checks (i.e. operator delete() lookup) when the vtable is marked used, as 13089 // the deleting destructor is emitted with the vtable, not with the 13090 // destructor definition as in the Itanium ABI. 13091 // If it has a definition, we do the check at that point instead. 13092 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 13093 Class->hasUserDeclaredDestructor() && 13094 !Class->getDestructor()->isDefined() && 13095 !Class->getDestructor()->isDeleted()) { 13096 CXXDestructorDecl *DD = Class->getDestructor(); 13097 ContextRAII SavedContext(*this, DD); 13098 CheckDestructor(DD); 13099 } 13100 } 13101 13102 // Local classes need to have their virtual members marked 13103 // immediately. For all other classes, we mark their virtual members 13104 // at the end of the translation unit. 13105 if (Class->isLocalClass()) 13106 MarkVirtualMembersReferenced(Loc, Class); 13107 else 13108 VTableUses.push_back(std::make_pair(Class, Loc)); 13109 } 13110 13111 bool Sema::DefineUsedVTables() { 13112 LoadExternalVTableUses(); 13113 if (VTableUses.empty()) 13114 return false; 13115 13116 // Note: The VTableUses vector could grow as a result of marking 13117 // the members of a class as "used", so we check the size each 13118 // time through the loop and prefer indices (which are stable) to 13119 // iterators (which are not). 13120 bool DefinedAnything = false; 13121 for (unsigned I = 0; I != VTableUses.size(); ++I) { 13122 CXXRecordDecl *Class = VTableUses[I].first->getDefinition(); 13123 if (!Class) 13124 continue; 13125 13126 SourceLocation Loc = VTableUses[I].second; 13127 13128 bool DefineVTable = true; 13129 13130 // If this class has a key function, but that key function is 13131 // defined in another translation unit, we don't need to emit the 13132 // vtable even though we're using it. 13133 const CXXMethodDecl *KeyFunction = Context.getCurrentKeyFunction(Class); 13134 if (KeyFunction && !KeyFunction->hasBody()) { 13135 // The key function is in another translation unit. 13136 DefineVTable = false; 13137 TemplateSpecializationKind TSK = 13138 KeyFunction->getTemplateSpecializationKind(); 13139 assert(TSK != TSK_ExplicitInstantiationDefinition && 13140 TSK != TSK_ImplicitInstantiation && 13141 "Instantiations don't have key functions"); 13142 (void)TSK; 13143 } else if (!KeyFunction) { 13144 // If we have a class with no key function that is the subject 13145 // of an explicit instantiation declaration, suppress the 13146 // vtable; it will live with the explicit instantiation 13147 // definition. 13148 bool IsExplicitInstantiationDeclaration 13149 = Class->getTemplateSpecializationKind() 13150 == TSK_ExplicitInstantiationDeclaration; 13151 for (auto R : Class->redecls()) { 13152 TemplateSpecializationKind TSK 13153 = cast<CXXRecordDecl>(R)->getTemplateSpecializationKind(); 13154 if (TSK == TSK_ExplicitInstantiationDeclaration) 13155 IsExplicitInstantiationDeclaration = true; 13156 else if (TSK == TSK_ExplicitInstantiationDefinition) { 13157 IsExplicitInstantiationDeclaration = false; 13158 break; 13159 } 13160 } 13161 13162 if (IsExplicitInstantiationDeclaration) 13163 DefineVTable = false; 13164 } 13165 13166 // The exception specifications for all virtual members may be needed even 13167 // if we are not providing an authoritative form of the vtable in this TU. 13168 // We may choose to emit it available_externally anyway. 13169 if (!DefineVTable) { 13170 MarkVirtualMemberExceptionSpecsNeeded(Loc, Class); 13171 continue; 13172 } 13173 13174 // Mark all of the virtual members of this class as referenced, so 13175 // that we can build a vtable. Then, tell the AST consumer that a 13176 // vtable for this class is required. 13177 DefinedAnything = true; 13178 MarkVirtualMembersReferenced(Loc, Class); 13179 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl()); 13180 if (VTablesUsed[Canonical]) 13181 Consumer.HandleVTable(Class); 13182 13183 // Optionally warn if we're emitting a weak vtable. 13184 if (Class->isExternallyVisible() && 13185 Class->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) { 13186 const FunctionDecl *KeyFunctionDef = nullptr; 13187 if (!KeyFunction || 13188 (KeyFunction->hasBody(KeyFunctionDef) && 13189 KeyFunctionDef->isInlined())) 13190 Diag(Class->getLocation(), Class->getTemplateSpecializationKind() == 13191 TSK_ExplicitInstantiationDefinition 13192 ? diag::warn_weak_template_vtable : diag::warn_weak_vtable) 13193 << Class; 13194 } 13195 } 13196 VTableUses.clear(); 13197 13198 return DefinedAnything; 13199 } 13200 13201 void Sema::MarkVirtualMemberExceptionSpecsNeeded(SourceLocation Loc, 13202 const CXXRecordDecl *RD) { 13203 for (const auto *I : RD->methods()) 13204 if (I->isVirtual() && !I->isPure()) 13205 ResolveExceptionSpec(Loc, I->getType()->castAs<FunctionProtoType>()); 13206 } 13207 13208 void Sema::MarkVirtualMembersReferenced(SourceLocation Loc, 13209 const CXXRecordDecl *RD) { 13210 // Mark all functions which will appear in RD's vtable as used. 13211 CXXFinalOverriderMap FinalOverriders; 13212 RD->getFinalOverriders(FinalOverriders); 13213 for (CXXFinalOverriderMap::const_iterator I = FinalOverriders.begin(), 13214 E = FinalOverriders.end(); 13215 I != E; ++I) { 13216 for (OverridingMethods::const_iterator OI = I->second.begin(), 13217 OE = I->second.end(); 13218 OI != OE; ++OI) { 13219 assert(OI->second.size() > 0 && "no final overrider"); 13220 CXXMethodDecl *Overrider = OI->second.front().Method; 13221 13222 // C++ [basic.def.odr]p2: 13223 // [...] A virtual member function is used if it is not pure. [...] 13224 if (!Overrider->isPure()) 13225 MarkFunctionReferenced(Loc, Overrider); 13226 } 13227 } 13228 13229 // Only classes that have virtual bases need a VTT. 13230 if (RD->getNumVBases() == 0) 13231 return; 13232 13233 for (const auto &I : RD->bases()) { 13234 const CXXRecordDecl *Base = 13235 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl()); 13236 if (Base->getNumVBases() == 0) 13237 continue; 13238 MarkVirtualMembersReferenced(Loc, Base); 13239 } 13240 } 13241 13242 /// SetIvarInitializers - This routine builds initialization ASTs for the 13243 /// Objective-C implementation whose ivars need be initialized. 13244 void Sema::SetIvarInitializers(ObjCImplementationDecl *ObjCImplementation) { 13245 if (!getLangOpts().CPlusPlus) 13246 return; 13247 if (ObjCInterfaceDecl *OID = ObjCImplementation->getClassInterface()) { 13248 SmallVector<ObjCIvarDecl*, 8> ivars; 13249 CollectIvarsToConstructOrDestruct(OID, ivars); 13250 if (ivars.empty()) 13251 return; 13252 SmallVector<CXXCtorInitializer*, 32> AllToInit; 13253 for (unsigned i = 0; i < ivars.size(); i++) { 13254 FieldDecl *Field = ivars[i]; 13255 if (Field->isInvalidDecl()) 13256 continue; 13257 13258 CXXCtorInitializer *Member; 13259 InitializedEntity InitEntity = InitializedEntity::InitializeMember(Field); 13260 InitializationKind InitKind = 13261 InitializationKind::CreateDefault(ObjCImplementation->getLocation()); 13262 13263 InitializationSequence InitSeq(*this, InitEntity, InitKind, None); 13264 ExprResult MemberInit = 13265 InitSeq.Perform(*this, InitEntity, InitKind, None); 13266 MemberInit = MaybeCreateExprWithCleanups(MemberInit); 13267 // Note, MemberInit could actually come back empty if no initialization 13268 // is required (e.g., because it would call a trivial default constructor) 13269 if (!MemberInit.get() || MemberInit.isInvalid()) 13270 continue; 13271 13272 Member = 13273 new (Context) CXXCtorInitializer(Context, Field, SourceLocation(), 13274 SourceLocation(), 13275 MemberInit.getAs<Expr>(), 13276 SourceLocation()); 13277 AllToInit.push_back(Member); 13278 13279 // Be sure that the destructor is accessible and is marked as referenced. 13280 if (const RecordType *RecordTy = 13281 Context.getBaseElementType(Field->getType()) 13282 ->getAs<RecordType>()) { 13283 CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); 13284 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { 13285 MarkFunctionReferenced(Field->getLocation(), Destructor); 13286 CheckDestructorAccess(Field->getLocation(), Destructor, 13287 PDiag(diag::err_access_dtor_ivar) 13288 << Context.getBaseElementType(Field->getType())); 13289 } 13290 } 13291 } 13292 ObjCImplementation->setIvarInitializers(Context, 13293 AllToInit.data(), AllToInit.size()); 13294 } 13295 } 13296 13297 static 13298 void DelegatingCycleHelper(CXXConstructorDecl* Ctor, 13299 llvm::SmallSet<CXXConstructorDecl*, 4> &Valid, 13300 llvm::SmallSet<CXXConstructorDecl*, 4> &Invalid, 13301 llvm::SmallSet<CXXConstructorDecl*, 4> &Current, 13302 Sema &S) { 13303 if (Ctor->isInvalidDecl()) 13304 return; 13305 13306 CXXConstructorDecl *Target = Ctor->getTargetConstructor(); 13307 13308 // Target may not be determinable yet, for instance if this is a dependent 13309 // call in an uninstantiated template. 13310 if (Target) { 13311 const FunctionDecl *FNTarget = nullptr; 13312 (void)Target->hasBody(FNTarget); 13313 Target = const_cast<CXXConstructorDecl*>( 13314 cast_or_null<CXXConstructorDecl>(FNTarget)); 13315 } 13316 13317 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), 13318 // Avoid dereferencing a null pointer here. 13319 *TCanonical = Target? Target->getCanonicalDecl() : nullptr; 13320 13321 if (!Current.insert(Canonical).second) 13322 return; 13323 13324 // We know that beyond here, we aren't chaining into a cycle. 13325 if (!Target || !Target->isDelegatingConstructor() || 13326 Target->isInvalidDecl() || Valid.count(TCanonical)) { 13327 Valid.insert(Current.begin(), Current.end()); 13328 Current.clear(); 13329 // We've hit a cycle. 13330 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || 13331 Current.count(TCanonical)) { 13332 // If we haven't diagnosed this cycle yet, do so now. 13333 if (!Invalid.count(TCanonical)) { 13334 S.Diag((*Ctor->init_begin())->getSourceLocation(), 13335 diag::warn_delegating_ctor_cycle) 13336 << Ctor; 13337 13338 // Don't add a note for a function delegating directly to itself. 13339 if (TCanonical != Canonical) 13340 S.Diag(Target->getLocation(), diag::note_it_delegates_to); 13341 13342 CXXConstructorDecl *C = Target; 13343 while (C->getCanonicalDecl() != Canonical) { 13344 const FunctionDecl *FNTarget = nullptr; 13345 (void)C->getTargetConstructor()->hasBody(FNTarget); 13346 assert(FNTarget && "Ctor cycle through bodiless function"); 13347 13348 C = const_cast<CXXConstructorDecl*>( 13349 cast<CXXConstructorDecl>(FNTarget)); 13350 S.Diag(C->getLocation(), diag::note_which_delegates_to); 13351 } 13352 } 13353 13354 Invalid.insert(Current.begin(), Current.end()); 13355 Current.clear(); 13356 } else { 13357 DelegatingCycleHelper(Target, Valid, Invalid, Current, S); 13358 } 13359 } 13360 13361 13362 void Sema::CheckDelegatingCtorCycles() { 13363 llvm::SmallSet<CXXConstructorDecl*, 4> Valid, Invalid, Current; 13364 13365 for (DelegatingCtorDeclsType::iterator 13366 I = DelegatingCtorDecls.begin(ExternalSource), 13367 E = DelegatingCtorDecls.end(); 13368 I != E; ++I) 13369 DelegatingCycleHelper(*I, Valid, Invalid, Current, *this); 13370 13371 for (llvm::SmallSet<CXXConstructorDecl *, 4>::iterator CI = Invalid.begin(), 13372 CE = Invalid.end(); 13373 CI != CE; ++CI) 13374 (*CI)->setInvalidDecl(); 13375 } 13376 13377 namespace { 13378 /// \brief AST visitor that finds references to the 'this' expression. 13379 class FindCXXThisExpr : public RecursiveASTVisitor<FindCXXThisExpr> { 13380 Sema &S; 13381 13382 public: 13383 explicit FindCXXThisExpr(Sema &S) : S(S) { } 13384 13385 bool VisitCXXThisExpr(CXXThisExpr *E) { 13386 S.Diag(E->getLocation(), diag::err_this_static_member_func) 13387 << E->isImplicit(); 13388 return false; 13389 } 13390 }; 13391 } 13392 13393 bool Sema::checkThisInStaticMemberFunctionType(CXXMethodDecl *Method) { 13394 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13395 if (!TSInfo) 13396 return false; 13397 13398 TypeLoc TL = TSInfo->getTypeLoc(); 13399 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13400 if (!ProtoTL) 13401 return false; 13402 13403 // C++11 [expr.prim.general]p3: 13404 // [The expression this] shall not appear before the optional 13405 // cv-qualifier-seq and it shall not appear within the declaration of a 13406 // static member function (although its type and value category are defined 13407 // within a static member function as they are within a non-static member 13408 // function). [ Note: this is because declaration matching does not occur 13409 // until the complete declarator is known. - end note ] 13410 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13411 FindCXXThisExpr Finder(*this); 13412 13413 // If the return type came after the cv-qualifier-seq, check it now. 13414 if (Proto->hasTrailingReturn() && 13415 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc())) 13416 return true; 13417 13418 // Check the exception specification. 13419 if (checkThisInStaticMemberFunctionExceptionSpec(Method)) 13420 return true; 13421 13422 return checkThisInStaticMemberFunctionAttributes(Method); 13423 } 13424 13425 bool Sema::checkThisInStaticMemberFunctionExceptionSpec(CXXMethodDecl *Method) { 13426 TypeSourceInfo *TSInfo = Method->getTypeSourceInfo(); 13427 if (!TSInfo) 13428 return false; 13429 13430 TypeLoc TL = TSInfo->getTypeLoc(); 13431 FunctionProtoTypeLoc ProtoTL = TL.getAs<FunctionProtoTypeLoc>(); 13432 if (!ProtoTL) 13433 return false; 13434 13435 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); 13436 FindCXXThisExpr Finder(*this); 13437 13438 switch (Proto->getExceptionSpecType()) { 13439 case EST_Unparsed: 13440 case EST_Uninstantiated: 13441 case EST_Unevaluated: 13442 case EST_BasicNoexcept: 13443 case EST_DynamicNone: 13444 case EST_MSAny: 13445 case EST_None: 13446 break; 13447 13448 case EST_ComputedNoexcept: 13449 if (!Finder.TraverseStmt(Proto->getNoexceptExpr())) 13450 return true; 13451 13452 case EST_Dynamic: 13453 for (const auto &E : Proto->exceptions()) { 13454 if (!Finder.TraverseType(E)) 13455 return true; 13456 } 13457 break; 13458 } 13459 13460 return false; 13461 } 13462 13463 bool Sema::checkThisInStaticMemberFunctionAttributes(CXXMethodDecl *Method) { 13464 FindCXXThisExpr Finder(*this); 13465 13466 // Check attributes. 13467 for (const auto *A : Method->attrs()) { 13468 // FIXME: This should be emitted by tblgen. 13469 Expr *Arg = nullptr; 13470 ArrayRef<Expr *> Args; 13471 if (const auto *G = dyn_cast<GuardedByAttr>(A)) 13472 Arg = G->getArg(); 13473 else if (const auto *G = dyn_cast<PtGuardedByAttr>(A)) 13474 Arg = G->getArg(); 13475 else if (const auto *AA = dyn_cast<AcquiredAfterAttr>(A)) 13476 Args = llvm::makeArrayRef(AA->args_begin(), AA->args_size()); 13477 else if (const auto *AB = dyn_cast<AcquiredBeforeAttr>(A)) 13478 Args = llvm::makeArrayRef(AB->args_begin(), AB->args_size()); 13479 else if (const auto *ETLF = dyn_cast<ExclusiveTrylockFunctionAttr>(A)) { 13480 Arg = ETLF->getSuccessValue(); 13481 Args = llvm::makeArrayRef(ETLF->args_begin(), ETLF->args_size()); 13482 } else if (const auto *STLF = dyn_cast<SharedTrylockFunctionAttr>(A)) { 13483 Arg = STLF->getSuccessValue(); 13484 Args = llvm::makeArrayRef(STLF->args_begin(), STLF->args_size()); 13485 } else if (const auto *LR = dyn_cast<LockReturnedAttr>(A)) 13486 Arg = LR->getArg(); 13487 else if (const auto *LE = dyn_cast<LocksExcludedAttr>(A)) 13488 Args = llvm::makeArrayRef(LE->args_begin(), LE->args_size()); 13489 else if (const auto *RC = dyn_cast<RequiresCapabilityAttr>(A)) 13490 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13491 else if (const auto *AC = dyn_cast<AcquireCapabilityAttr>(A)) 13492 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13493 else if (const auto *AC = dyn_cast<TryAcquireCapabilityAttr>(A)) 13494 Args = llvm::makeArrayRef(AC->args_begin(), AC->args_size()); 13495 else if (const auto *RC = dyn_cast<ReleaseCapabilityAttr>(A)) 13496 Args = llvm::makeArrayRef(RC->args_begin(), RC->args_size()); 13497 13498 if (Arg && !Finder.TraverseStmt(Arg)) 13499 return true; 13500 13501 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 13502 if (!Finder.TraverseStmt(Args[I])) 13503 return true; 13504 } 13505 } 13506 13507 return false; 13508 } 13509 13510 void Sema::checkExceptionSpecification( 13511 bool IsTopLevel, ExceptionSpecificationType EST, 13512 ArrayRef<ParsedType> DynamicExceptions, 13513 ArrayRef<SourceRange> DynamicExceptionRanges, Expr *NoexceptExpr, 13514 SmallVectorImpl<QualType> &Exceptions, 13515 FunctionProtoType::ExceptionSpecInfo &ESI) { 13516 Exceptions.clear(); 13517 ESI.Type = EST; 13518 if (EST == EST_Dynamic) { 13519 Exceptions.reserve(DynamicExceptions.size()); 13520 for (unsigned ei = 0, ee = DynamicExceptions.size(); ei != ee; ++ei) { 13521 // FIXME: Preserve type source info. 13522 QualType ET = GetTypeFromParser(DynamicExceptions[ei]); 13523 13524 if (IsTopLevel) { 13525 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 13526 collectUnexpandedParameterPacks(ET, Unexpanded); 13527 if (!Unexpanded.empty()) { 13528 DiagnoseUnexpandedParameterPacks( 13529 DynamicExceptionRanges[ei].getBegin(), UPPC_ExceptionType, 13530 Unexpanded); 13531 continue; 13532 } 13533 } 13534 13535 // Check that the type is valid for an exception spec, and 13536 // drop it if not. 13537 if (!CheckSpecifiedExceptionType(ET, DynamicExceptionRanges[ei])) 13538 Exceptions.push_back(ET); 13539 } 13540 ESI.Exceptions = Exceptions; 13541 return; 13542 } 13543 13544 if (EST == EST_ComputedNoexcept) { 13545 // If an error occurred, there's no expression here. 13546 if (NoexceptExpr) { 13547 assert((NoexceptExpr->isTypeDependent() || 13548 NoexceptExpr->getType()->getCanonicalTypeUnqualified() == 13549 Context.BoolTy) && 13550 "Parser should have made sure that the expression is boolean"); 13551 if (IsTopLevel && NoexceptExpr && 13552 DiagnoseUnexpandedParameterPack(NoexceptExpr)) { 13553 ESI.Type = EST_BasicNoexcept; 13554 return; 13555 } 13556 13557 if (!NoexceptExpr->isValueDependent()) 13558 NoexceptExpr = VerifyIntegerConstantExpression(NoexceptExpr, nullptr, 13559 diag::err_noexcept_needs_constant_expression, 13560 /*AllowFold*/ false).get(); 13561 ESI.NoexceptExpr = NoexceptExpr; 13562 } 13563 return; 13564 } 13565 } 13566 13567 void Sema::actOnDelayedExceptionSpecification(Decl *MethodD, 13568 ExceptionSpecificationType EST, 13569 SourceRange SpecificationRange, 13570 ArrayRef<ParsedType> DynamicExceptions, 13571 ArrayRef<SourceRange> DynamicExceptionRanges, 13572 Expr *NoexceptExpr) { 13573 if (!MethodD) 13574 return; 13575 13576 // Dig out the method we're referring to. 13577 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(MethodD)) 13578 MethodD = FunTmpl->getTemplatedDecl(); 13579 13580 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(MethodD); 13581 if (!Method) 13582 return; 13583 13584 // Check the exception specification. 13585 llvm::SmallVector<QualType, 4> Exceptions; 13586 FunctionProtoType::ExceptionSpecInfo ESI; 13587 checkExceptionSpecification(/*IsTopLevel*/true, EST, DynamicExceptions, 13588 DynamicExceptionRanges, NoexceptExpr, Exceptions, 13589 ESI); 13590 13591 // Update the exception specification on the function type. 13592 Context.adjustExceptionSpec(Method, ESI, /*AsWritten*/true); 13593 13594 if (Method->isStatic()) 13595 checkThisInStaticMemberFunctionExceptionSpec(Method); 13596 13597 if (Method->isVirtual()) { 13598 // Check overrides, which we previously had to delay. 13599 for (CXXMethodDecl::method_iterator O = Method->begin_overridden_methods(), 13600 OEnd = Method->end_overridden_methods(); 13601 O != OEnd; ++O) 13602 CheckOverridingFunctionExceptionSpec(Method, *O); 13603 } 13604 } 13605 13606 /// HandleMSProperty - Analyze a __delcspec(property) field of a C++ class. 13607 /// 13608 MSPropertyDecl *Sema::HandleMSProperty(Scope *S, RecordDecl *Record, 13609 SourceLocation DeclStart, 13610 Declarator &D, Expr *BitWidth, 13611 InClassInitStyle InitStyle, 13612 AccessSpecifier AS, 13613 AttributeList *MSPropertyAttr) { 13614 IdentifierInfo *II = D.getIdentifier(); 13615 if (!II) { 13616 Diag(DeclStart, diag::err_anonymous_property); 13617 return nullptr; 13618 } 13619 SourceLocation Loc = D.getIdentifierLoc(); 13620 13621 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 13622 QualType T = TInfo->getType(); 13623 if (getLangOpts().CPlusPlus) { 13624 CheckExtraCXXDefaultArguments(D); 13625 13626 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 13627 UPPC_DataMemberType)) { 13628 D.setInvalidType(); 13629 T = Context.IntTy; 13630 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 13631 } 13632 } 13633 13634 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 13635 13636 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 13637 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 13638 diag::err_invalid_thread) 13639 << DeclSpec::getSpecifierName(TSCS); 13640 13641 // Check to see if this name was declared as a member previously 13642 NamedDecl *PrevDecl = nullptr; 13643 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration); 13644 LookupName(Previous, S); 13645 switch (Previous.getResultKind()) { 13646 case LookupResult::Found: 13647 case LookupResult::FoundUnresolvedValue: 13648 PrevDecl = Previous.getAsSingle<NamedDecl>(); 13649 break; 13650 13651 case LookupResult::FoundOverloaded: 13652 PrevDecl = Previous.getRepresentativeDecl(); 13653 break; 13654 13655 case LookupResult::NotFound: 13656 case LookupResult::NotFoundInCurrentInstantiation: 13657 case LookupResult::Ambiguous: 13658 break; 13659 } 13660 13661 if (PrevDecl && PrevDecl->isTemplateParameter()) { 13662 // Maybe we will complain about the shadowed template parameter. 13663 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 13664 // Just pretend that we didn't see the previous declaration. 13665 PrevDecl = nullptr; 13666 } 13667 13668 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 13669 PrevDecl = nullptr; 13670 13671 SourceLocation TSSL = D.getLocStart(); 13672 const AttributeList::PropertyData &Data = MSPropertyAttr->getPropertyData(); 13673 MSPropertyDecl *NewPD = MSPropertyDecl::Create( 13674 Context, Record, Loc, II, T, TInfo, TSSL, Data.GetterId, Data.SetterId); 13675 ProcessDeclAttributes(TUScope, NewPD, D); 13676 NewPD->setAccess(AS); 13677 13678 if (NewPD->isInvalidDecl()) 13679 Record->setInvalidDecl(); 13680 13681 if (D.getDeclSpec().isModulePrivateSpecified()) 13682 NewPD->setModulePrivate(); 13683 13684 if (NewPD->isInvalidDecl() && PrevDecl) { 13685 // Don't introduce NewFD into scope; there's already something 13686 // with the same name in the same scope. 13687 } else if (II) { 13688 PushOnScopeChains(NewPD, S); 13689 } else 13690 Record->addDecl(NewPD); 13691 13692 return NewPD; 13693 } 13694