1 //===--- SemaDecl.cpp - Semantic Analysis for 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 declarations. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "TypeLocBuilder.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/ASTLambda.h" 18 #include "clang/AST/CXXInheritance.h" 19 #include "clang/AST/CharUnits.h" 20 #include "clang/AST/CommentDiagnostic.h" 21 #include "clang/AST/DeclCXX.h" 22 #include "clang/AST/DeclObjC.h" 23 #include "clang/AST/DeclTemplate.h" 24 #include "clang/AST/EvaluatedExprVisitor.h" 25 #include "clang/AST/ExprCXX.h" 26 #include "clang/AST/StmtCXX.h" 27 #include "clang/Basic/Builtins.h" 28 #include "clang/Basic/PartialDiagnostic.h" 29 #include "clang/Basic/SourceManager.h" 30 #include "clang/Basic/TargetInfo.h" 31 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex 32 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering. 33 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex 34 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled() 35 #include "clang/Sema/CXXFieldCollector.h" 36 #include "clang/Sema/DeclSpec.h" 37 #include "clang/Sema/DelayedDiagnostic.h" 38 #include "clang/Sema/Initialization.h" 39 #include "clang/Sema/Lookup.h" 40 #include "clang/Sema/ParsedTemplate.h" 41 #include "clang/Sema/Scope.h" 42 #include "clang/Sema/ScopeInfo.h" 43 #include "clang/Sema/SemaInternal.h" 44 #include "clang/Sema/Template.h" 45 #include "llvm/ADT/SmallString.h" 46 #include "llvm/ADT/Triple.h" 47 #include <algorithm> 48 #include <cstring> 49 #include <functional> 50 51 using namespace clang; 52 using namespace sema; 53 54 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) { 55 if (OwnedType) { 56 Decl *Group[2] = { OwnedType, Ptr }; 57 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2)); 58 } 59 60 return DeclGroupPtrTy::make(DeclGroupRef(Ptr)); 61 } 62 63 namespace { 64 65 class TypeNameValidatorCCC : public CorrectionCandidateCallback { 66 public: 67 TypeNameValidatorCCC(bool AllowInvalid, bool WantClass=false, 68 bool AllowTemplates=false) 69 : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass), 70 AllowClassTemplates(AllowTemplates) { 71 WantExpressionKeywords = false; 72 WantCXXNamedCasts = false; 73 WantRemainingKeywords = false; 74 } 75 76 bool ValidateCandidate(const TypoCorrection &candidate) override { 77 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 78 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); 79 bool AllowedTemplate = AllowClassTemplates && isa<ClassTemplateDecl>(ND); 80 return (IsType || AllowedTemplate) && 81 (AllowInvalidDecl || !ND->isInvalidDecl()); 82 } 83 return !WantClassName && candidate.isKeyword(); 84 } 85 86 private: 87 bool AllowInvalidDecl; 88 bool WantClassName; 89 bool AllowClassTemplates; 90 }; 91 92 } // end anonymous namespace 93 94 /// \brief Determine whether the token kind starts a simple-type-specifier. 95 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const { 96 switch (Kind) { 97 // FIXME: Take into account the current language when deciding whether a 98 // token kind is a valid type specifier 99 case tok::kw_short: 100 case tok::kw_long: 101 case tok::kw___int64: 102 case tok::kw___int128: 103 case tok::kw_signed: 104 case tok::kw_unsigned: 105 case tok::kw_void: 106 case tok::kw_char: 107 case tok::kw_int: 108 case tok::kw_half: 109 case tok::kw_float: 110 case tok::kw_double: 111 case tok::kw___float128: 112 case tok::kw_wchar_t: 113 case tok::kw_bool: 114 case tok::kw___underlying_type: 115 case tok::kw___auto_type: 116 return true; 117 118 case tok::annot_typename: 119 case tok::kw_char16_t: 120 case tok::kw_char32_t: 121 case tok::kw_typeof: 122 case tok::annot_decltype: 123 case tok::kw_decltype: 124 return getLangOpts().CPlusPlus; 125 126 default: 127 break; 128 } 129 130 return false; 131 } 132 133 namespace { 134 enum class UnqualifiedTypeNameLookupResult { 135 NotFound, 136 FoundNonType, 137 FoundType 138 }; 139 } // end anonymous namespace 140 141 /// \brief Tries to perform unqualified lookup of the type decls in bases for 142 /// dependent class. 143 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a 144 /// type decl, \a FoundType if only type decls are found. 145 static UnqualifiedTypeNameLookupResult 146 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II, 147 SourceLocation NameLoc, 148 const CXXRecordDecl *RD) { 149 if (!RD->hasDefinition()) 150 return UnqualifiedTypeNameLookupResult::NotFound; 151 // Look for type decls in base classes. 152 UnqualifiedTypeNameLookupResult FoundTypeDecl = 153 UnqualifiedTypeNameLookupResult::NotFound; 154 for (const auto &Base : RD->bases()) { 155 const CXXRecordDecl *BaseRD = nullptr; 156 if (auto *BaseTT = Base.getType()->getAs<TagType>()) 157 BaseRD = BaseTT->getAsCXXRecordDecl(); 158 else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) { 159 // Look for type decls in dependent base classes that have known primary 160 // templates. 161 if (!TST || !TST->isDependentType()) 162 continue; 163 auto *TD = TST->getTemplateName().getAsTemplateDecl(); 164 if (!TD) 165 continue; 166 if (auto *BasePrimaryTemplate = 167 dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl())) { 168 if (BasePrimaryTemplate->getCanonicalDecl() != RD->getCanonicalDecl()) 169 BaseRD = BasePrimaryTemplate; 170 else if (auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) { 171 if (const ClassTemplatePartialSpecializationDecl *PS = 172 CTD->findPartialSpecialization(Base.getType())) 173 if (PS->getCanonicalDecl() != RD->getCanonicalDecl()) 174 BaseRD = PS; 175 } 176 } 177 } 178 if (BaseRD) { 179 for (NamedDecl *ND : BaseRD->lookup(&II)) { 180 if (!isa<TypeDecl>(ND)) 181 return UnqualifiedTypeNameLookupResult::FoundNonType; 182 FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType; 183 } 184 if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) { 185 switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) { 186 case UnqualifiedTypeNameLookupResult::FoundNonType: 187 return UnqualifiedTypeNameLookupResult::FoundNonType; 188 case UnqualifiedTypeNameLookupResult::FoundType: 189 FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType; 190 break; 191 case UnqualifiedTypeNameLookupResult::NotFound: 192 break; 193 } 194 } 195 } 196 } 197 198 return FoundTypeDecl; 199 } 200 201 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S, 202 const IdentifierInfo &II, 203 SourceLocation NameLoc) { 204 // Lookup in the parent class template context, if any. 205 const CXXRecordDecl *RD = nullptr; 206 UnqualifiedTypeNameLookupResult FoundTypeDecl = 207 UnqualifiedTypeNameLookupResult::NotFound; 208 for (DeclContext *DC = S.CurContext; 209 DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound; 210 DC = DC->getParent()) { 211 // Look for type decls in dependent base classes that have known primary 212 // templates. 213 RD = dyn_cast<CXXRecordDecl>(DC); 214 if (RD && RD->getDescribedClassTemplate()) 215 FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD); 216 } 217 if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType) 218 return nullptr; 219 220 // We found some types in dependent base classes. Recover as if the user 221 // wrote 'typename MyClass::II' instead of 'II'. We'll fully resolve the 222 // lookup during template instantiation. 223 S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II; 224 225 ASTContext &Context = S.Context; 226 auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false, 227 cast<Type>(Context.getRecordType(RD))); 228 QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II); 229 230 CXXScopeSpec SS; 231 SS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 232 233 TypeLocBuilder Builder; 234 DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T); 235 DepTL.setNameLoc(NameLoc); 236 DepTL.setElaboratedKeywordLoc(SourceLocation()); 237 DepTL.setQualifierLoc(SS.getWithLocInContext(Context)); 238 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 239 } 240 241 /// \brief If the identifier refers to a type name within this scope, 242 /// return the declaration of that type. 243 /// 244 /// This routine performs ordinary name lookup of the identifier II 245 /// within the given scope, with optional C++ scope specifier SS, to 246 /// determine whether the name refers to a type. If so, returns an 247 /// opaque pointer (actually a QualType) corresponding to that 248 /// type. Otherwise, returns NULL. 249 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, 250 Scope *S, CXXScopeSpec *SS, 251 bool isClassName, bool HasTrailingDot, 252 ParsedType ObjectTypePtr, 253 bool IsCtorOrDtorName, 254 bool WantNontrivialTypeSourceInfo, 255 IdentifierInfo **CorrectedII) { 256 // Determine where we will perform name lookup. 257 DeclContext *LookupCtx = nullptr; 258 if (ObjectTypePtr) { 259 QualType ObjectType = ObjectTypePtr.get(); 260 if (ObjectType->isRecordType()) 261 LookupCtx = computeDeclContext(ObjectType); 262 } else if (SS && SS->isNotEmpty()) { 263 LookupCtx = computeDeclContext(*SS, false); 264 265 if (!LookupCtx) { 266 if (isDependentScopeSpecifier(*SS)) { 267 // C++ [temp.res]p3: 268 // A qualified-id that refers to a type and in which the 269 // nested-name-specifier depends on a template-parameter (14.6.2) 270 // shall be prefixed by the keyword typename to indicate that the 271 // qualified-id denotes a type, forming an 272 // elaborated-type-specifier (7.1.5.3). 273 // 274 // We therefore do not perform any name lookup if the result would 275 // refer to a member of an unknown specialization. 276 if (!isClassName && !IsCtorOrDtorName) 277 return nullptr; 278 279 // We know from the grammar that this name refers to a type, 280 // so build a dependent node to describe the type. 281 if (WantNontrivialTypeSourceInfo) 282 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get(); 283 284 NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context); 285 QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc, 286 II, NameLoc); 287 return ParsedType::make(T); 288 } 289 290 return nullptr; 291 } 292 293 if (!LookupCtx->isDependentContext() && 294 RequireCompleteDeclContext(*SS, LookupCtx)) 295 return nullptr; 296 } 297 298 // FIXME: LookupNestedNameSpecifierName isn't the right kind of 299 // lookup for class-names. 300 LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName : 301 LookupOrdinaryName; 302 LookupResult Result(*this, &II, NameLoc, Kind); 303 if (LookupCtx) { 304 // Perform "qualified" name lookup into the declaration context we 305 // computed, which is either the type of the base of a member access 306 // expression or the declaration context associated with a prior 307 // nested-name-specifier. 308 LookupQualifiedName(Result, LookupCtx); 309 310 if (ObjectTypePtr && Result.empty()) { 311 // C++ [basic.lookup.classref]p3: 312 // If the unqualified-id is ~type-name, the type-name is looked up 313 // in the context of the entire postfix-expression. If the type T of 314 // the object expression is of a class type C, the type-name is also 315 // looked up in the scope of class C. At least one of the lookups shall 316 // find a name that refers to (possibly cv-qualified) T. 317 LookupName(Result, S); 318 } 319 } else { 320 // Perform unqualified name lookup. 321 LookupName(Result, S); 322 323 // For unqualified lookup in a class template in MSVC mode, look into 324 // dependent base classes where the primary class template is known. 325 if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) { 326 if (ParsedType TypeInBase = 327 recoverFromTypeInKnownDependentBase(*this, II, NameLoc)) 328 return TypeInBase; 329 } 330 } 331 332 NamedDecl *IIDecl = nullptr; 333 switch (Result.getResultKind()) { 334 case LookupResult::NotFound: 335 case LookupResult::NotFoundInCurrentInstantiation: 336 if (CorrectedII) { 337 TypoCorrection Correction = CorrectTypo( 338 Result.getLookupNameInfo(), Kind, S, SS, 339 llvm::make_unique<TypeNameValidatorCCC>(true, isClassName), 340 CTK_ErrorRecovery); 341 IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo(); 342 TemplateTy Template; 343 bool MemberOfUnknownSpecialization; 344 UnqualifiedId TemplateName; 345 TemplateName.setIdentifier(NewII, NameLoc); 346 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier(); 347 CXXScopeSpec NewSS, *NewSSPtr = SS; 348 if (SS && NNS) { 349 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 350 NewSSPtr = &NewSS; 351 } 352 if (Correction && (NNS || NewII != &II) && 353 // Ignore a correction to a template type as the to-be-corrected 354 // identifier is not a template (typo correction for template names 355 // is handled elsewhere). 356 !(getLangOpts().CPlusPlus && NewSSPtr && 357 isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false, 358 Template, MemberOfUnknownSpecialization))) { 359 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr, 360 isClassName, HasTrailingDot, ObjectTypePtr, 361 IsCtorOrDtorName, 362 WantNontrivialTypeSourceInfo); 363 if (Ty) { 364 diagnoseTypo(Correction, 365 PDiag(diag::err_unknown_type_or_class_name_suggest) 366 << Result.getLookupName() << isClassName); 367 if (SS && NNS) 368 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc)); 369 *CorrectedII = NewII; 370 return Ty; 371 } 372 } 373 } 374 // If typo correction failed or was not performed, fall through 375 case LookupResult::FoundOverloaded: 376 case LookupResult::FoundUnresolvedValue: 377 Result.suppressDiagnostics(); 378 return nullptr; 379 380 case LookupResult::Ambiguous: 381 // Recover from type-hiding ambiguities by hiding the type. We'll 382 // do the lookup again when looking for an object, and we can 383 // diagnose the error then. If we don't do this, then the error 384 // about hiding the type will be immediately followed by an error 385 // that only makes sense if the identifier was treated like a type. 386 if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) { 387 Result.suppressDiagnostics(); 388 return nullptr; 389 } 390 391 // Look to see if we have a type anywhere in the list of results. 392 for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end(); 393 Res != ResEnd; ++Res) { 394 if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) { 395 if (!IIDecl || 396 (*Res)->getLocation().getRawEncoding() < 397 IIDecl->getLocation().getRawEncoding()) 398 IIDecl = *Res; 399 } 400 } 401 402 if (!IIDecl) { 403 // None of the entities we found is a type, so there is no way 404 // to even assume that the result is a type. In this case, don't 405 // complain about the ambiguity. The parser will either try to 406 // perform this lookup again (e.g., as an object name), which 407 // will produce the ambiguity, or will complain that it expected 408 // a type name. 409 Result.suppressDiagnostics(); 410 return nullptr; 411 } 412 413 // We found a type within the ambiguous lookup; diagnose the 414 // ambiguity and then return that type. This might be the right 415 // answer, or it might not be, but it suppresses any attempt to 416 // perform the name lookup again. 417 break; 418 419 case LookupResult::Found: 420 IIDecl = Result.getFoundDecl(); 421 break; 422 } 423 424 assert(IIDecl && "Didn't find decl"); 425 426 QualType T; 427 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) { 428 DiagnoseUseOfDecl(IIDecl, NameLoc); 429 430 T = Context.getTypeDeclType(TD); 431 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false); 432 433 // NOTE: avoid constructing an ElaboratedType(Loc) if this is a 434 // constructor or destructor name (in such a case, the scope specifier 435 // will be attached to the enclosing Expr or Decl node). 436 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName) { 437 if (WantNontrivialTypeSourceInfo) { 438 // Construct a type with type-source information. 439 TypeLocBuilder Builder; 440 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 441 442 T = getElaboratedType(ETK_None, *SS, T); 443 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 444 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 445 ElabTL.setQualifierLoc(SS->getWithLocInContext(Context)); 446 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 447 } else { 448 T = getElaboratedType(ETK_None, *SS, T); 449 } 450 } 451 } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) { 452 (void)DiagnoseUseOfDecl(IDecl, NameLoc); 453 if (!HasTrailingDot) 454 T = Context.getObjCInterfaceType(IDecl); 455 } 456 457 if (T.isNull()) { 458 // If it's not plausibly a type, suppress diagnostics. 459 Result.suppressDiagnostics(); 460 return nullptr; 461 } 462 return ParsedType::make(T); 463 } 464 465 // Builds a fake NNS for the given decl context. 466 static NestedNameSpecifier * 467 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) { 468 for (;; DC = DC->getLookupParent()) { 469 DC = DC->getPrimaryContext(); 470 auto *ND = dyn_cast<NamespaceDecl>(DC); 471 if (ND && !ND->isInline() && !ND->isAnonymousNamespace()) 472 return NestedNameSpecifier::Create(Context, nullptr, ND); 473 else if (auto *RD = dyn_cast<CXXRecordDecl>(DC)) 474 return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(), 475 RD->getTypeForDecl()); 476 else if (isa<TranslationUnitDecl>(DC)) 477 return NestedNameSpecifier::GlobalSpecifier(Context); 478 } 479 llvm_unreachable("something isn't in TU scope?"); 480 } 481 482 /// Find the parent class with dependent bases of the innermost enclosing method 483 /// context. Do not look for enclosing CXXRecordDecls directly, or we will end 484 /// up allowing unqualified dependent type names at class-level, which MSVC 485 /// correctly rejects. 486 static const CXXRecordDecl * 487 findRecordWithDependentBasesOfEnclosingMethod(const DeclContext *DC) { 488 for (; DC && DC->isDependentContext(); DC = DC->getLookupParent()) { 489 DC = DC->getPrimaryContext(); 490 if (const auto *MD = dyn_cast<CXXMethodDecl>(DC)) 491 if (MD->getParent()->hasAnyDependentBases()) 492 return MD->getParent(); 493 } 494 return nullptr; 495 } 496 497 ParsedType Sema::ActOnMSVCUnknownTypeName(const IdentifierInfo &II, 498 SourceLocation NameLoc, 499 bool IsTemplateTypeArg) { 500 assert(getLangOpts().MSVCCompat && "shouldn't be called in non-MSVC mode"); 501 502 NestedNameSpecifier *NNS = nullptr; 503 if (IsTemplateTypeArg && getCurScope()->isTemplateParamScope()) { 504 // If we weren't able to parse a default template argument, delay lookup 505 // until instantiation time by making a non-dependent DependentTypeName. We 506 // pretend we saw a NestedNameSpecifier referring to the current scope, and 507 // lookup is retried. 508 // FIXME: This hurts our diagnostic quality, since we get errors like "no 509 // type named 'Foo' in 'current_namespace'" when the user didn't write any 510 // name specifiers. 511 NNS = synthesizeCurrentNestedNameSpecifier(Context, CurContext); 512 Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II; 513 } else if (const CXXRecordDecl *RD = 514 findRecordWithDependentBasesOfEnclosingMethod(CurContext)) { 515 // Build a DependentNameType that will perform lookup into RD at 516 // instantiation time. 517 NNS = NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(), 518 RD->getTypeForDecl()); 519 520 // Diagnose that this identifier was undeclared, and retry the lookup during 521 // template instantiation. 522 Diag(NameLoc, diag::ext_undeclared_unqual_id_with_dependent_base) << &II 523 << RD; 524 } else { 525 // This is not a situation that we should recover from. 526 return ParsedType(); 527 } 528 529 QualType T = Context.getDependentNameType(ETK_None, NNS, &II); 530 531 // Build type location information. We synthesized the qualifier, so we have 532 // to build a fake NestedNameSpecifierLoc. 533 NestedNameSpecifierLocBuilder NNSLocBuilder; 534 NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 535 NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context); 536 537 TypeLocBuilder Builder; 538 DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T); 539 DepTL.setNameLoc(NameLoc); 540 DepTL.setElaboratedKeywordLoc(SourceLocation()); 541 DepTL.setQualifierLoc(QualifierLoc); 542 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 543 } 544 545 /// isTagName() - This method is called *for error recovery purposes only* 546 /// to determine if the specified name is a valid tag name ("struct foo"). If 547 /// so, this returns the TST for the tag corresponding to it (TST_enum, 548 /// TST_union, TST_struct, TST_interface, TST_class). This is used to diagnose 549 /// cases in C where the user forgot to specify the tag. 550 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) { 551 // Do a tag name lookup in this scope. 552 LookupResult R(*this, &II, SourceLocation(), LookupTagName); 553 LookupName(R, S, false); 554 R.suppressDiagnostics(); 555 if (R.getResultKind() == LookupResult::Found) 556 if (const TagDecl *TD = R.getAsSingle<TagDecl>()) { 557 switch (TD->getTagKind()) { 558 case TTK_Struct: return DeclSpec::TST_struct; 559 case TTK_Interface: return DeclSpec::TST_interface; 560 case TTK_Union: return DeclSpec::TST_union; 561 case TTK_Class: return DeclSpec::TST_class; 562 case TTK_Enum: return DeclSpec::TST_enum; 563 } 564 } 565 566 return DeclSpec::TST_unspecified; 567 } 568 569 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope, 570 /// if a CXXScopeSpec's type is equal to the type of one of the base classes 571 /// then downgrade the missing typename error to a warning. 572 /// This is needed for MSVC compatibility; Example: 573 /// @code 574 /// template<class T> class A { 575 /// public: 576 /// typedef int TYPE; 577 /// }; 578 /// template<class T> class B : public A<T> { 579 /// public: 580 /// A<T>::TYPE a; // no typename required because A<T> is a base class. 581 /// }; 582 /// @endcode 583 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) { 584 if (CurContext->isRecord()) { 585 if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super) 586 return true; 587 588 const Type *Ty = SS->getScopeRep()->getAsType(); 589 590 CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext); 591 for (const auto &Base : RD->bases()) 592 if (Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType())) 593 return true; 594 return S->isFunctionPrototypeScope(); 595 } 596 return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope(); 597 } 598 599 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II, 600 SourceLocation IILoc, 601 Scope *S, 602 CXXScopeSpec *SS, 603 ParsedType &SuggestedType, 604 bool AllowClassTemplates) { 605 // We don't have anything to suggest (yet). 606 SuggestedType = nullptr; 607 608 // There may have been a typo in the name of the type. Look up typo 609 // results, in case we have something that we can suggest. 610 if (TypoCorrection Corrected = 611 CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS, 612 llvm::make_unique<TypeNameValidatorCCC>( 613 false, false, AllowClassTemplates), 614 CTK_ErrorRecovery)) { 615 if (Corrected.isKeyword()) { 616 // We corrected to a keyword. 617 diagnoseTypo(Corrected, PDiag(diag::err_unknown_typename_suggest) << II); 618 II = Corrected.getCorrectionAsIdentifierInfo(); 619 } else { 620 // We found a similarly-named type or interface; suggest that. 621 if (!SS || !SS->isSet()) { 622 diagnoseTypo(Corrected, 623 PDiag(diag::err_unknown_typename_suggest) << II); 624 } else if (DeclContext *DC = computeDeclContext(*SS, false)) { 625 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 626 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 627 II->getName().equals(CorrectedStr); 628 diagnoseTypo(Corrected, 629 PDiag(diag::err_unknown_nested_typename_suggest) 630 << II << DC << DroppedSpecifier << SS->getRange()); 631 } else { 632 llvm_unreachable("could not have corrected a typo here"); 633 } 634 635 CXXScopeSpec tmpSS; 636 if (Corrected.getCorrectionSpecifier()) 637 tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 638 SourceRange(IILoc)); 639 SuggestedType = 640 getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S, 641 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr, 642 /*IsCtorOrDtorName=*/false, 643 /*NonTrivialTypeSourceInfo=*/true); 644 } 645 return; 646 } 647 648 if (getLangOpts().CPlusPlus) { 649 // See if II is a class template that the user forgot to pass arguments to. 650 UnqualifiedId Name; 651 Name.setIdentifier(II, IILoc); 652 CXXScopeSpec EmptySS; 653 TemplateTy TemplateResult; 654 bool MemberOfUnknownSpecialization; 655 if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false, 656 Name, nullptr, true, TemplateResult, 657 MemberOfUnknownSpecialization) == TNK_Type_template) { 658 TemplateName TplName = TemplateResult.get(); 659 Diag(IILoc, diag::err_template_missing_args) << TplName; 660 if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) { 661 Diag(TplDecl->getLocation(), diag::note_template_decl_here) 662 << TplDecl->getTemplateParameters()->getSourceRange(); 663 } 664 return; 665 } 666 } 667 668 // FIXME: Should we move the logic that tries to recover from a missing tag 669 // (struct, union, enum) from Parser::ParseImplicitInt here, instead? 670 671 if (!SS || (!SS->isSet() && !SS->isInvalid())) 672 Diag(IILoc, diag::err_unknown_typename) << II; 673 else if (DeclContext *DC = computeDeclContext(*SS, false)) 674 Diag(IILoc, diag::err_typename_nested_not_found) 675 << II << DC << SS->getRange(); 676 else if (isDependentScopeSpecifier(*SS)) { 677 unsigned DiagID = diag::err_typename_missing; 678 if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S)) 679 DiagID = diag::ext_typename_missing; 680 681 Diag(SS->getRange().getBegin(), DiagID) 682 << SS->getScopeRep() << II->getName() 683 << SourceRange(SS->getRange().getBegin(), IILoc) 684 << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename "); 685 SuggestedType = ActOnTypenameType(S, SourceLocation(), 686 *SS, *II, IILoc).get(); 687 } else { 688 assert(SS && SS->isInvalid() && 689 "Invalid scope specifier has already been diagnosed"); 690 } 691 } 692 693 /// \brief Determine whether the given result set contains either a type name 694 /// or 695 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) { 696 bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus && 697 NextToken.is(tok::less); 698 699 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) { 700 if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I)) 701 return true; 702 703 if (CheckTemplate && isa<TemplateDecl>(*I)) 704 return true; 705 } 706 707 return false; 708 } 709 710 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result, 711 Scope *S, CXXScopeSpec &SS, 712 IdentifierInfo *&Name, 713 SourceLocation NameLoc) { 714 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName); 715 SemaRef.LookupParsedName(R, S, &SS); 716 if (TagDecl *Tag = R.getAsSingle<TagDecl>()) { 717 StringRef FixItTagName; 718 switch (Tag->getTagKind()) { 719 case TTK_Class: 720 FixItTagName = "class "; 721 break; 722 723 case TTK_Enum: 724 FixItTagName = "enum "; 725 break; 726 727 case TTK_Struct: 728 FixItTagName = "struct "; 729 break; 730 731 case TTK_Interface: 732 FixItTagName = "__interface "; 733 break; 734 735 case TTK_Union: 736 FixItTagName = "union "; 737 break; 738 } 739 740 StringRef TagName = FixItTagName.drop_back(); 741 SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag) 742 << Name << TagName << SemaRef.getLangOpts().CPlusPlus 743 << FixItHint::CreateInsertion(NameLoc, FixItTagName); 744 745 for (LookupResult::iterator I = Result.begin(), IEnd = Result.end(); 746 I != IEnd; ++I) 747 SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type) 748 << Name << TagName; 749 750 // Replace lookup results with just the tag decl. 751 Result.clear(Sema::LookupTagName); 752 SemaRef.LookupParsedName(Result, S, &SS); 753 return true; 754 } 755 756 return false; 757 } 758 759 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier. 760 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS, 761 QualType T, SourceLocation NameLoc) { 762 ASTContext &Context = S.Context; 763 764 TypeLocBuilder Builder; 765 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 766 767 T = S.getElaboratedType(ETK_None, SS, T); 768 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 769 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 770 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context)); 771 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 772 } 773 774 Sema::NameClassification 775 Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name, 776 SourceLocation NameLoc, const Token &NextToken, 777 bool IsAddressOfOperand, 778 std::unique_ptr<CorrectionCandidateCallback> CCC) { 779 DeclarationNameInfo NameInfo(Name, NameLoc); 780 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 781 782 if (NextToken.is(tok::coloncolon)) { 783 NestedNameSpecInfo IdInfo(Name, NameLoc, NextToken.getLocation()); 784 BuildCXXNestedNameSpecifier(S, IdInfo, false, SS, nullptr, false); 785 } 786 787 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); 788 LookupParsedName(Result, S, &SS, !CurMethod); 789 790 // For unqualified lookup in a class template in MSVC mode, look into 791 // dependent base classes where the primary class template is known. 792 if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) { 793 if (ParsedType TypeInBase = 794 recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc)) 795 return TypeInBase; 796 } 797 798 // Perform lookup for Objective-C instance variables (including automatically 799 // synthesized instance variables), if we're in an Objective-C method. 800 // FIXME: This lookup really, really needs to be folded in to the normal 801 // unqualified lookup mechanism. 802 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) { 803 ExprResult E = LookupInObjCMethod(Result, S, Name, true); 804 if (E.get() || E.isInvalid()) 805 return E; 806 } 807 808 bool SecondTry = false; 809 bool IsFilteredTemplateName = false; 810 811 Corrected: 812 switch (Result.getResultKind()) { 813 case LookupResult::NotFound: 814 // If an unqualified-id is followed by a '(', then we have a function 815 // call. 816 if (!SS.isSet() && NextToken.is(tok::l_paren)) { 817 // In C++, this is an ADL-only call. 818 // FIXME: Reference? 819 if (getLangOpts().CPlusPlus) 820 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true); 821 822 // C90 6.3.2.2: 823 // If the expression that precedes the parenthesized argument list in a 824 // function call consists solely of an identifier, and if no 825 // declaration is visible for this identifier, the identifier is 826 // implicitly declared exactly as if, in the innermost block containing 827 // the function call, the declaration 828 // 829 // extern int identifier (); 830 // 831 // appeared. 832 // 833 // We also allow this in C99 as an extension. 834 if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) { 835 Result.addDecl(D); 836 Result.resolveKind(); 837 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false); 838 } 839 } 840 841 // In C, we first see whether there is a tag type by the same name, in 842 // which case it's likely that the user just forgot to write "enum", 843 // "struct", or "union". 844 if (!getLangOpts().CPlusPlus && !SecondTry && 845 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 846 break; 847 } 848 849 // Perform typo correction to determine if there is another name that is 850 // close to this name. 851 if (!SecondTry && CCC) { 852 SecondTry = true; 853 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(), 854 Result.getLookupKind(), S, 855 &SS, std::move(CCC), 856 CTK_ErrorRecovery)) { 857 unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest; 858 unsigned QualifiedDiag = diag::err_no_member_suggest; 859 860 NamedDecl *FirstDecl = Corrected.getFoundDecl(); 861 NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl(); 862 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 863 UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) { 864 UnqualifiedDiag = diag::err_no_template_suggest; 865 QualifiedDiag = diag::err_no_member_template_suggest; 866 } else if (UnderlyingFirstDecl && 867 (isa<TypeDecl>(UnderlyingFirstDecl) || 868 isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) || 869 isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) { 870 UnqualifiedDiag = diag::err_unknown_typename_suggest; 871 QualifiedDiag = diag::err_unknown_nested_typename_suggest; 872 } 873 874 if (SS.isEmpty()) { 875 diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name); 876 } else {// FIXME: is this even reachable? Test it. 877 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 878 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 879 Name->getName().equals(CorrectedStr); 880 diagnoseTypo(Corrected, PDiag(QualifiedDiag) 881 << Name << computeDeclContext(SS, false) 882 << DroppedSpecifier << SS.getRange()); 883 } 884 885 // Update the name, so that the caller has the new name. 886 Name = Corrected.getCorrectionAsIdentifierInfo(); 887 888 // Typo correction corrected to a keyword. 889 if (Corrected.isKeyword()) 890 return Name; 891 892 // Also update the LookupResult... 893 // FIXME: This should probably go away at some point 894 Result.clear(); 895 Result.setLookupName(Corrected.getCorrection()); 896 if (FirstDecl) 897 Result.addDecl(FirstDecl); 898 899 // If we found an Objective-C instance variable, let 900 // LookupInObjCMethod build the appropriate expression to 901 // reference the ivar. 902 // FIXME: This is a gross hack. 903 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) { 904 Result.clear(); 905 ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier())); 906 return E; 907 } 908 909 goto Corrected; 910 } 911 } 912 913 // We failed to correct; just fall through and let the parser deal with it. 914 Result.suppressDiagnostics(); 915 return NameClassification::Unknown(); 916 917 case LookupResult::NotFoundInCurrentInstantiation: { 918 // We performed name lookup into the current instantiation, and there were 919 // dependent bases, so we treat this result the same way as any other 920 // dependent nested-name-specifier. 921 922 // C++ [temp.res]p2: 923 // A name used in a template declaration or definition and that is 924 // dependent on a template-parameter is assumed not to name a type 925 // unless the applicable name lookup finds a type name or the name is 926 // qualified by the keyword typename. 927 // 928 // FIXME: If the next token is '<', we might want to ask the parser to 929 // perform some heroics to see if we actually have a 930 // template-argument-list, which would indicate a missing 'template' 931 // keyword here. 932 return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(), 933 NameInfo, IsAddressOfOperand, 934 /*TemplateArgs=*/nullptr); 935 } 936 937 case LookupResult::Found: 938 case LookupResult::FoundOverloaded: 939 case LookupResult::FoundUnresolvedValue: 940 break; 941 942 case LookupResult::Ambiguous: 943 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 944 hasAnyAcceptableTemplateNames(Result)) { 945 // C++ [temp.local]p3: 946 // A lookup that finds an injected-class-name (10.2) can result in an 947 // ambiguity in certain cases (for example, if it is found in more than 948 // one base class). If all of the injected-class-names that are found 949 // refer to specializations of the same class template, and if the name 950 // is followed by a template-argument-list, the reference refers to the 951 // class template itself and not a specialization thereof, and is not 952 // ambiguous. 953 // 954 // This filtering can make an ambiguous result into an unambiguous one, 955 // so try again after filtering out template names. 956 FilterAcceptableTemplateNames(Result); 957 if (!Result.isAmbiguous()) { 958 IsFilteredTemplateName = true; 959 break; 960 } 961 } 962 963 // Diagnose the ambiguity and return an error. 964 return NameClassification::Error(); 965 } 966 967 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 968 (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) { 969 // C++ [temp.names]p3: 970 // After name lookup (3.4) finds that a name is a template-name or that 971 // an operator-function-id or a literal- operator-id refers to a set of 972 // overloaded functions any member of which is a function template if 973 // this is followed by a <, the < is always taken as the delimiter of a 974 // template-argument-list and never as the less-than operator. 975 if (!IsFilteredTemplateName) 976 FilterAcceptableTemplateNames(Result); 977 978 if (!Result.empty()) { 979 bool IsFunctionTemplate; 980 bool IsVarTemplate; 981 TemplateName Template; 982 if (Result.end() - Result.begin() > 1) { 983 IsFunctionTemplate = true; 984 Template = Context.getOverloadedTemplateName(Result.begin(), 985 Result.end()); 986 } else { 987 TemplateDecl *TD 988 = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl()); 989 IsFunctionTemplate = isa<FunctionTemplateDecl>(TD); 990 IsVarTemplate = isa<VarTemplateDecl>(TD); 991 992 if (SS.isSet() && !SS.isInvalid()) 993 Template = Context.getQualifiedTemplateName(SS.getScopeRep(), 994 /*TemplateKeyword=*/false, 995 TD); 996 else 997 Template = TemplateName(TD); 998 } 999 1000 if (IsFunctionTemplate) { 1001 // Function templates always go through overload resolution, at which 1002 // point we'll perform the various checks (e.g., accessibility) we need 1003 // to based on which function we selected. 1004 Result.suppressDiagnostics(); 1005 1006 return NameClassification::FunctionTemplate(Template); 1007 } 1008 1009 return IsVarTemplate ? NameClassification::VarTemplate(Template) 1010 : NameClassification::TypeTemplate(Template); 1011 } 1012 } 1013 1014 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl(); 1015 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) { 1016 DiagnoseUseOfDecl(Type, NameLoc); 1017 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false); 1018 QualType T = Context.getTypeDeclType(Type); 1019 if (SS.isNotEmpty()) 1020 return buildNestedType(*this, SS, T, NameLoc); 1021 return ParsedType::make(T); 1022 } 1023 1024 ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl); 1025 if (!Class) { 1026 // FIXME: It's unfortunate that we don't have a Type node for handling this. 1027 if (ObjCCompatibleAliasDecl *Alias = 1028 dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl)) 1029 Class = Alias->getClassInterface(); 1030 } 1031 1032 if (Class) { 1033 DiagnoseUseOfDecl(Class, NameLoc); 1034 1035 if (NextToken.is(tok::period)) { 1036 // Interface. <something> is parsed as a property reference expression. 1037 // Just return "unknown" as a fall-through for now. 1038 Result.suppressDiagnostics(); 1039 return NameClassification::Unknown(); 1040 } 1041 1042 QualType T = Context.getObjCInterfaceType(Class); 1043 return ParsedType::make(T); 1044 } 1045 1046 // We can have a type template here if we're classifying a template argument. 1047 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl)) 1048 return NameClassification::TypeTemplate( 1049 TemplateName(cast<TemplateDecl>(FirstDecl))); 1050 1051 // Check for a tag type hidden by a non-type decl in a few cases where it 1052 // seems likely a type is wanted instead of the non-type that was found. 1053 bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star); 1054 if ((NextToken.is(tok::identifier) || 1055 (NextIsOp && 1056 FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) && 1057 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 1058 TypeDecl *Type = Result.getAsSingle<TypeDecl>(); 1059 DiagnoseUseOfDecl(Type, NameLoc); 1060 QualType T = Context.getTypeDeclType(Type); 1061 if (SS.isNotEmpty()) 1062 return buildNestedType(*this, SS, T, NameLoc); 1063 return ParsedType::make(T); 1064 } 1065 1066 if (FirstDecl->isCXXClassMember()) 1067 return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result, 1068 nullptr, S); 1069 1070 bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren)); 1071 return BuildDeclarationNameExpr(SS, Result, ADL); 1072 } 1073 1074 // Determines the context to return to after temporarily entering a 1075 // context. This depends in an unnecessarily complicated way on the 1076 // exact ordering of callbacks from the parser. 1077 DeclContext *Sema::getContainingDC(DeclContext *DC) { 1078 1079 // Functions defined inline within classes aren't parsed until we've 1080 // finished parsing the top-level class, so the top-level class is 1081 // the context we'll need to return to. 1082 // A Lambda call operator whose parent is a class must not be treated 1083 // as an inline member function. A Lambda can be used legally 1084 // either as an in-class member initializer or a default argument. These 1085 // are parsed once the class has been marked complete and so the containing 1086 // context would be the nested class (when the lambda is defined in one); 1087 // If the class is not complete, then the lambda is being used in an 1088 // ill-formed fashion (such as to specify the width of a bit-field, or 1089 // in an array-bound) - in which case we still want to return the 1090 // lexically containing DC (which could be a nested class). 1091 if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) { 1092 DC = DC->getLexicalParent(); 1093 1094 // A function not defined within a class will always return to its 1095 // lexical context. 1096 if (!isa<CXXRecordDecl>(DC)) 1097 return DC; 1098 1099 // A C++ inline method/friend is parsed *after* the topmost class 1100 // it was declared in is fully parsed ("complete"); the topmost 1101 // class is the context we need to return to. 1102 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent())) 1103 DC = RD; 1104 1105 // Return the declaration context of the topmost class the inline method is 1106 // declared in. 1107 return DC; 1108 } 1109 1110 return DC->getLexicalParent(); 1111 } 1112 1113 void Sema::PushDeclContext(Scope *S, DeclContext *DC) { 1114 assert(getContainingDC(DC) == CurContext && 1115 "The next DeclContext should be lexically contained in the current one."); 1116 CurContext = DC; 1117 S->setEntity(DC); 1118 } 1119 1120 void Sema::PopDeclContext() { 1121 assert(CurContext && "DeclContext imbalance!"); 1122 1123 CurContext = getContainingDC(CurContext); 1124 assert(CurContext && "Popped translation unit!"); 1125 } 1126 1127 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S, 1128 Decl *D) { 1129 // Unlike PushDeclContext, the context to which we return is not necessarily 1130 // the containing DC of TD, because the new context will be some pre-existing 1131 // TagDecl definition instead of a fresh one. 1132 auto Result = static_cast<SkippedDefinitionContext>(CurContext); 1133 CurContext = cast<TagDecl>(D)->getDefinition(); 1134 assert(CurContext && "skipping definition of undefined tag"); 1135 // Start lookups from the parent of the current context; we don't want to look 1136 // into the pre-existing complete definition. 1137 S->setEntity(CurContext->getLookupParent()); 1138 return Result; 1139 } 1140 1141 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) { 1142 CurContext = static_cast<decltype(CurContext)>(Context); 1143 } 1144 1145 /// EnterDeclaratorContext - Used when we must lookup names in the context 1146 /// of a declarator's nested name specifier. 1147 /// 1148 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) { 1149 // C++0x [basic.lookup.unqual]p13: 1150 // A name used in the definition of a static data member of class 1151 // X (after the qualified-id of the static member) is looked up as 1152 // if the name was used in a member function of X. 1153 // C++0x [basic.lookup.unqual]p14: 1154 // If a variable member of a namespace is defined outside of the 1155 // scope of its namespace then any name used in the definition of 1156 // the variable member (after the declarator-id) is looked up as 1157 // if the definition of the variable member occurred in its 1158 // namespace. 1159 // Both of these imply that we should push a scope whose context 1160 // is the semantic context of the declaration. We can't use 1161 // PushDeclContext here because that context is not necessarily 1162 // lexically contained in the current context. Fortunately, 1163 // the containing scope should have the appropriate information. 1164 1165 assert(!S->getEntity() && "scope already has entity"); 1166 1167 #ifndef NDEBUG 1168 Scope *Ancestor = S->getParent(); 1169 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 1170 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch"); 1171 #endif 1172 1173 CurContext = DC; 1174 S->setEntity(DC); 1175 } 1176 1177 void Sema::ExitDeclaratorContext(Scope *S) { 1178 assert(S->getEntity() == CurContext && "Context imbalance!"); 1179 1180 // Switch back to the lexical context. The safety of this is 1181 // enforced by an assert in EnterDeclaratorContext. 1182 Scope *Ancestor = S->getParent(); 1183 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 1184 CurContext = Ancestor->getEntity(); 1185 1186 // We don't need to do anything with the scope, which is going to 1187 // disappear. 1188 } 1189 1190 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) { 1191 // We assume that the caller has already called 1192 // ActOnReenterTemplateScope so getTemplatedDecl() works. 1193 FunctionDecl *FD = D->getAsFunction(); 1194 if (!FD) 1195 return; 1196 1197 // Same implementation as PushDeclContext, but enters the context 1198 // from the lexical parent, rather than the top-level class. 1199 assert(CurContext == FD->getLexicalParent() && 1200 "The next DeclContext should be lexically contained in the current one."); 1201 CurContext = FD; 1202 S->setEntity(CurContext); 1203 1204 for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) { 1205 ParmVarDecl *Param = FD->getParamDecl(P); 1206 // If the parameter has an identifier, then add it to the scope 1207 if (Param->getIdentifier()) { 1208 S->AddDecl(Param); 1209 IdResolver.AddDecl(Param); 1210 } 1211 } 1212 } 1213 1214 void Sema::ActOnExitFunctionContext() { 1215 // Same implementation as PopDeclContext, but returns to the lexical parent, 1216 // rather than the top-level class. 1217 assert(CurContext && "DeclContext imbalance!"); 1218 CurContext = CurContext->getLexicalParent(); 1219 assert(CurContext && "Popped translation unit!"); 1220 } 1221 1222 /// \brief Determine whether we allow overloading of the function 1223 /// PrevDecl with another declaration. 1224 /// 1225 /// This routine determines whether overloading is possible, not 1226 /// whether some new function is actually an overload. It will return 1227 /// true in C++ (where we can always provide overloads) or, as an 1228 /// extension, in C when the previous function is already an 1229 /// overloaded function declaration or has the "overloadable" 1230 /// attribute. 1231 static bool AllowOverloadingOfFunction(LookupResult &Previous, 1232 ASTContext &Context) { 1233 if (Context.getLangOpts().CPlusPlus) 1234 return true; 1235 1236 if (Previous.getResultKind() == LookupResult::FoundOverloaded) 1237 return true; 1238 1239 return (Previous.getResultKind() == LookupResult::Found 1240 && Previous.getFoundDecl()->hasAttr<OverloadableAttr>()); 1241 } 1242 1243 /// Add this decl to the scope shadowed decl chains. 1244 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) { 1245 // Move up the scope chain until we find the nearest enclosing 1246 // non-transparent context. The declaration will be introduced into this 1247 // scope. 1248 while (S->getEntity() && S->getEntity()->isTransparentContext()) 1249 S = S->getParent(); 1250 1251 // Add scoped declarations into their context, so that they can be 1252 // found later. Declarations without a context won't be inserted 1253 // into any context. 1254 if (AddToContext) 1255 CurContext->addDecl(D); 1256 1257 // Out-of-line definitions shouldn't be pushed into scope in C++, unless they 1258 // are function-local declarations. 1259 if (getLangOpts().CPlusPlus && D->isOutOfLine() && 1260 !D->getDeclContext()->getRedeclContext()->Equals( 1261 D->getLexicalDeclContext()->getRedeclContext()) && 1262 !D->getLexicalDeclContext()->isFunctionOrMethod()) 1263 return; 1264 1265 // Template instantiations should also not be pushed into scope. 1266 if (isa<FunctionDecl>(D) && 1267 cast<FunctionDecl>(D)->isFunctionTemplateSpecialization()) 1268 return; 1269 1270 // If this replaces anything in the current scope, 1271 IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()), 1272 IEnd = IdResolver.end(); 1273 for (; I != IEnd; ++I) { 1274 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { 1275 S->RemoveDecl(*I); 1276 IdResolver.RemoveDecl(*I); 1277 1278 // Should only need to replace one decl. 1279 break; 1280 } 1281 } 1282 1283 S->AddDecl(D); 1284 1285 if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) { 1286 // Implicitly-generated labels may end up getting generated in an order that 1287 // isn't strictly lexical, which breaks name lookup. Be careful to insert 1288 // the label at the appropriate place in the identifier chain. 1289 for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) { 1290 DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext(); 1291 if (IDC == CurContext) { 1292 if (!S->isDeclScope(*I)) 1293 continue; 1294 } else if (IDC->Encloses(CurContext)) 1295 break; 1296 } 1297 1298 IdResolver.InsertDeclAfter(I, D); 1299 } else { 1300 IdResolver.AddDecl(D); 1301 } 1302 } 1303 1304 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) { 1305 if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope) 1306 TUScope->AddDecl(D); 1307 } 1308 1309 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S, 1310 bool AllowInlineNamespace) { 1311 return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace); 1312 } 1313 1314 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) { 1315 DeclContext *TargetDC = DC->getPrimaryContext(); 1316 do { 1317 if (DeclContext *ScopeDC = S->getEntity()) 1318 if (ScopeDC->getPrimaryContext() == TargetDC) 1319 return S; 1320 } while ((S = S->getParent())); 1321 1322 return nullptr; 1323 } 1324 1325 static bool isOutOfScopePreviousDeclaration(NamedDecl *, 1326 DeclContext*, 1327 ASTContext&); 1328 1329 /// Filters out lookup results that don't fall within the given scope 1330 /// as determined by isDeclInScope. 1331 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S, 1332 bool ConsiderLinkage, 1333 bool AllowInlineNamespace) { 1334 LookupResult::Filter F = R.makeFilter(); 1335 while (F.hasNext()) { 1336 NamedDecl *D = F.next(); 1337 1338 if (isDeclInScope(D, Ctx, S, AllowInlineNamespace)) 1339 continue; 1340 1341 if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context)) 1342 continue; 1343 1344 F.erase(); 1345 } 1346 1347 F.done(); 1348 } 1349 1350 static bool isUsingDecl(NamedDecl *D) { 1351 return isa<UsingShadowDecl>(D) || 1352 isa<UnresolvedUsingTypenameDecl>(D) || 1353 isa<UnresolvedUsingValueDecl>(D); 1354 } 1355 1356 /// Removes using shadow declarations from the lookup results. 1357 static void RemoveUsingDecls(LookupResult &R) { 1358 LookupResult::Filter F = R.makeFilter(); 1359 while (F.hasNext()) 1360 if (isUsingDecl(F.next())) 1361 F.erase(); 1362 1363 F.done(); 1364 } 1365 1366 /// \brief Check for this common pattern: 1367 /// @code 1368 /// class S { 1369 /// S(const S&); // DO NOT IMPLEMENT 1370 /// void operator=(const S&); // DO NOT IMPLEMENT 1371 /// }; 1372 /// @endcode 1373 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) { 1374 // FIXME: Should check for private access too but access is set after we get 1375 // the decl here. 1376 if (D->doesThisDeclarationHaveABody()) 1377 return false; 1378 1379 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) 1380 return CD->isCopyConstructor(); 1381 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 1382 return Method->isCopyAssignmentOperator(); 1383 return false; 1384 } 1385 1386 // We need this to handle 1387 // 1388 // typedef struct { 1389 // void *foo() { return 0; } 1390 // } A; 1391 // 1392 // When we see foo we don't know if after the typedef we will get 'A' or '*A' 1393 // for example. If 'A', foo will have external linkage. If we have '*A', 1394 // foo will have no linkage. Since we can't know until we get to the end 1395 // of the typedef, this function finds out if D might have non-external linkage. 1396 // Callers should verify at the end of the TU if it D has external linkage or 1397 // not. 1398 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) { 1399 const DeclContext *DC = D->getDeclContext(); 1400 while (!DC->isTranslationUnit()) { 1401 if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){ 1402 if (!RD->hasNameForLinkage()) 1403 return true; 1404 } 1405 DC = DC->getParent(); 1406 } 1407 1408 return !D->isExternallyVisible(); 1409 } 1410 1411 // FIXME: This needs to be refactored; some other isInMainFile users want 1412 // these semantics. 1413 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) { 1414 if (S.TUKind != TU_Complete) 1415 return false; 1416 return S.SourceMgr.isInMainFile(Loc); 1417 } 1418 1419 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const { 1420 assert(D); 1421 1422 if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>()) 1423 return false; 1424 1425 // Ignore all entities declared within templates, and out-of-line definitions 1426 // of members of class templates. 1427 if (D->getDeclContext()->isDependentContext() || 1428 D->getLexicalDeclContext()->isDependentContext()) 1429 return false; 1430 1431 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1432 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1433 return false; 1434 1435 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 1436 if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD)) 1437 return false; 1438 } else { 1439 // 'static inline' functions are defined in headers; don't warn. 1440 if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation())) 1441 return false; 1442 } 1443 1444 if (FD->doesThisDeclarationHaveABody() && 1445 Context.DeclMustBeEmitted(FD)) 1446 return false; 1447 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1448 // Constants and utility variables are defined in headers with internal 1449 // linkage; don't warn. (Unlike functions, there isn't a convenient marker 1450 // like "inline".) 1451 if (!isMainFileLoc(*this, VD->getLocation())) 1452 return false; 1453 1454 if (Context.DeclMustBeEmitted(VD)) 1455 return false; 1456 1457 if (VD->isStaticDataMember() && 1458 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1459 return false; 1460 1461 if (VD->isInline() && !isMainFileLoc(*this, VD->getLocation())) 1462 return false; 1463 } else { 1464 return false; 1465 } 1466 1467 // Only warn for unused decls internal to the translation unit. 1468 // FIXME: This seems like a bogus check; it suppresses -Wunused-function 1469 // for inline functions defined in the main source file, for instance. 1470 return mightHaveNonExternalLinkage(D); 1471 } 1472 1473 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) { 1474 if (!D) 1475 return; 1476 1477 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1478 const FunctionDecl *First = FD->getFirstDecl(); 1479 if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1480 return; // First should already be in the vector. 1481 } 1482 1483 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1484 const VarDecl *First = VD->getFirstDecl(); 1485 if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1486 return; // First should already be in the vector. 1487 } 1488 1489 if (ShouldWarnIfUnusedFileScopedDecl(D)) 1490 UnusedFileScopedDecls.push_back(D); 1491 } 1492 1493 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) { 1494 if (D->isInvalidDecl()) 1495 return false; 1496 1497 if (D->isReferenced() || D->isUsed() || D->hasAttr<UnusedAttr>() || 1498 D->hasAttr<ObjCPreciseLifetimeAttr>()) 1499 return false; 1500 1501 if (isa<LabelDecl>(D)) 1502 return true; 1503 1504 // Except for labels, we only care about unused decls that are local to 1505 // functions. 1506 bool WithinFunction = D->getDeclContext()->isFunctionOrMethod(); 1507 if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext())) 1508 // For dependent types, the diagnostic is deferred. 1509 WithinFunction = 1510 WithinFunction || (R->isLocalClass() && !R->isDependentType()); 1511 if (!WithinFunction) 1512 return false; 1513 1514 if (isa<TypedefNameDecl>(D)) 1515 return true; 1516 1517 // White-list anything that isn't a local variable. 1518 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) 1519 return false; 1520 1521 // Types of valid local variables should be complete, so this should succeed. 1522 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1523 1524 // White-list anything with an __attribute__((unused)) type. 1525 const auto *Ty = VD->getType().getTypePtr(); 1526 1527 // Only look at the outermost level of typedef. 1528 if (const TypedefType *TT = Ty->getAs<TypedefType>()) { 1529 if (TT->getDecl()->hasAttr<UnusedAttr>()) 1530 return false; 1531 } 1532 1533 // If we failed to complete the type for some reason, or if the type is 1534 // dependent, don't diagnose the variable. 1535 if (Ty->isIncompleteType() || Ty->isDependentType()) 1536 return false; 1537 1538 // Look at the element type to ensure that the warning behaviour is 1539 // consistent for both scalars and arrays. 1540 Ty = Ty->getBaseElementTypeUnsafe(); 1541 1542 if (const TagType *TT = Ty->getAs<TagType>()) { 1543 const TagDecl *Tag = TT->getDecl(); 1544 if (Tag->hasAttr<UnusedAttr>()) 1545 return false; 1546 1547 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) { 1548 if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>()) 1549 return false; 1550 1551 if (const Expr *Init = VD->getInit()) { 1552 if (const ExprWithCleanups *Cleanups = 1553 dyn_cast<ExprWithCleanups>(Init)) 1554 Init = Cleanups->getSubExpr(); 1555 const CXXConstructExpr *Construct = 1556 dyn_cast<CXXConstructExpr>(Init); 1557 if (Construct && !Construct->isElidable()) { 1558 CXXConstructorDecl *CD = Construct->getConstructor(); 1559 if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>()) 1560 return false; 1561 } 1562 } 1563 } 1564 } 1565 1566 // TODO: __attribute__((unused)) templates? 1567 } 1568 1569 return true; 1570 } 1571 1572 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx, 1573 FixItHint &Hint) { 1574 if (isa<LabelDecl>(D)) { 1575 SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(), 1576 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true); 1577 if (AfterColon.isInvalid()) 1578 return; 1579 Hint = FixItHint::CreateRemoval(CharSourceRange:: 1580 getCharRange(D->getLocStart(), AfterColon)); 1581 } 1582 } 1583 1584 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) { 1585 if (D->getTypeForDecl()->isDependentType()) 1586 return; 1587 1588 for (auto *TmpD : D->decls()) { 1589 if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD)) 1590 DiagnoseUnusedDecl(T); 1591 else if(const auto *R = dyn_cast<RecordDecl>(TmpD)) 1592 DiagnoseUnusedNestedTypedefs(R); 1593 } 1594 } 1595 1596 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used 1597 /// unless they are marked attr(unused). 1598 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) { 1599 if (!ShouldDiagnoseUnusedDecl(D)) 1600 return; 1601 1602 if (auto *TD = dyn_cast<TypedefNameDecl>(D)) { 1603 // typedefs can be referenced later on, so the diagnostics are emitted 1604 // at end-of-translation-unit. 1605 UnusedLocalTypedefNameCandidates.insert(TD); 1606 return; 1607 } 1608 1609 FixItHint Hint; 1610 GenerateFixForUnusedDecl(D, Context, Hint); 1611 1612 unsigned DiagID; 1613 if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable()) 1614 DiagID = diag::warn_unused_exception_param; 1615 else if (isa<LabelDecl>(D)) 1616 DiagID = diag::warn_unused_label; 1617 else 1618 DiagID = diag::warn_unused_variable; 1619 1620 Diag(D->getLocation(), DiagID) << D->getDeclName() << Hint; 1621 } 1622 1623 static void CheckPoppedLabel(LabelDecl *L, Sema &S) { 1624 // Verify that we have no forward references left. If so, there was a goto 1625 // or address of a label taken, but no definition of it. Label fwd 1626 // definitions are indicated with a null substmt which is also not a resolved 1627 // MS inline assembly label name. 1628 bool Diagnose = false; 1629 if (L->isMSAsmLabel()) 1630 Diagnose = !L->isResolvedMSAsmLabel(); 1631 else 1632 Diagnose = L->getStmt() == nullptr; 1633 if (Diagnose) 1634 S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName(); 1635 } 1636 1637 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) { 1638 S->mergeNRVOIntoParent(); 1639 1640 if (S->decl_empty()) return; 1641 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) && 1642 "Scope shouldn't contain decls!"); 1643 1644 for (auto *TmpD : S->decls()) { 1645 assert(TmpD && "This decl didn't get pushed??"); 1646 1647 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?"); 1648 NamedDecl *D = cast<NamedDecl>(TmpD); 1649 1650 if (!D->getDeclName()) continue; 1651 1652 // Diagnose unused variables in this scope. 1653 if (!S->hasUnrecoverableErrorOccurred()) { 1654 DiagnoseUnusedDecl(D); 1655 if (const auto *RD = dyn_cast<RecordDecl>(D)) 1656 DiagnoseUnusedNestedTypedefs(RD); 1657 } 1658 1659 // If this was a forward reference to a label, verify it was defined. 1660 if (LabelDecl *LD = dyn_cast<LabelDecl>(D)) 1661 CheckPoppedLabel(LD, *this); 1662 1663 // Remove this name from our lexical scope, and warn on it if we haven't 1664 // already. 1665 IdResolver.RemoveDecl(D); 1666 auto ShadowI = ShadowingDecls.find(D); 1667 if (ShadowI != ShadowingDecls.end()) { 1668 if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) { 1669 Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field) 1670 << D << FD << FD->getParent(); 1671 Diag(FD->getLocation(), diag::note_previous_declaration); 1672 } 1673 ShadowingDecls.erase(ShadowI); 1674 } 1675 } 1676 } 1677 1678 /// \brief Look for an Objective-C class in the translation unit. 1679 /// 1680 /// \param Id The name of the Objective-C class we're looking for. If 1681 /// typo-correction fixes this name, the Id will be updated 1682 /// to the fixed name. 1683 /// 1684 /// \param IdLoc The location of the name in the translation unit. 1685 /// 1686 /// \param DoTypoCorrection If true, this routine will attempt typo correction 1687 /// if there is no class with the given name. 1688 /// 1689 /// \returns The declaration of the named Objective-C class, or NULL if the 1690 /// class could not be found. 1691 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id, 1692 SourceLocation IdLoc, 1693 bool DoTypoCorrection) { 1694 // The third "scope" argument is 0 since we aren't enabling lazy built-in 1695 // creation from this context. 1696 NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName); 1697 1698 if (!IDecl && DoTypoCorrection) { 1699 // Perform typo correction at the given location, but only if we 1700 // find an Objective-C class name. 1701 if (TypoCorrection C = CorrectTypo( 1702 DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr, 1703 llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(), 1704 CTK_ErrorRecovery)) { 1705 diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id); 1706 IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>(); 1707 Id = IDecl->getIdentifier(); 1708 } 1709 } 1710 ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl); 1711 // This routine must always return a class definition, if any. 1712 if (Def && Def->getDefinition()) 1713 Def = Def->getDefinition(); 1714 return Def; 1715 } 1716 1717 /// getNonFieldDeclScope - Retrieves the innermost scope, starting 1718 /// from S, where a non-field would be declared. This routine copes 1719 /// with the difference between C and C++ scoping rules in structs and 1720 /// unions. For example, the following code is well-formed in C but 1721 /// ill-formed in C++: 1722 /// @code 1723 /// struct S6 { 1724 /// enum { BAR } e; 1725 /// }; 1726 /// 1727 /// void test_S6() { 1728 /// struct S6 a; 1729 /// a.e = BAR; 1730 /// } 1731 /// @endcode 1732 /// For the declaration of BAR, this routine will return a different 1733 /// scope. The scope S will be the scope of the unnamed enumeration 1734 /// within S6. In C++, this routine will return the scope associated 1735 /// with S6, because the enumeration's scope is a transparent 1736 /// context but structures can contain non-field names. In C, this 1737 /// routine will return the translation unit scope, since the 1738 /// enumeration's scope is a transparent context and structures cannot 1739 /// contain non-field names. 1740 Scope *Sema::getNonFieldDeclScope(Scope *S) { 1741 while (((S->getFlags() & Scope::DeclScope) == 0) || 1742 (S->getEntity() && S->getEntity()->isTransparentContext()) || 1743 (S->isClassScope() && !getLangOpts().CPlusPlus)) 1744 S = S->getParent(); 1745 return S; 1746 } 1747 1748 /// \brief Looks up the declaration of "struct objc_super" and 1749 /// saves it for later use in building builtin declaration of 1750 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such 1751 /// pre-existing declaration exists no action takes place. 1752 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S, 1753 IdentifierInfo *II) { 1754 if (!II->isStr("objc_msgSendSuper")) 1755 return; 1756 ASTContext &Context = ThisSema.Context; 1757 1758 LookupResult Result(ThisSema, &Context.Idents.get("objc_super"), 1759 SourceLocation(), Sema::LookupTagName); 1760 ThisSema.LookupName(Result, S); 1761 if (Result.getResultKind() == LookupResult::Found) 1762 if (const TagDecl *TD = Result.getAsSingle<TagDecl>()) 1763 Context.setObjCSuperType(Context.getTagDeclType(TD)); 1764 } 1765 1766 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) { 1767 switch (Error) { 1768 case ASTContext::GE_None: 1769 return ""; 1770 case ASTContext::GE_Missing_stdio: 1771 return "stdio.h"; 1772 case ASTContext::GE_Missing_setjmp: 1773 return "setjmp.h"; 1774 case ASTContext::GE_Missing_ucontext: 1775 return "ucontext.h"; 1776 } 1777 llvm_unreachable("unhandled error kind"); 1778 } 1779 1780 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at 1781 /// file scope. lazily create a decl for it. ForRedeclaration is true 1782 /// if we're creating this built-in in anticipation of redeclaring the 1783 /// built-in. 1784 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID, 1785 Scope *S, bool ForRedeclaration, 1786 SourceLocation Loc) { 1787 LookupPredefedObjCSuperType(*this, S, II); 1788 1789 ASTContext::GetBuiltinTypeError Error; 1790 QualType R = Context.GetBuiltinType(ID, Error); 1791 if (Error) { 1792 if (ForRedeclaration) 1793 Diag(Loc, diag::warn_implicit_decl_requires_sysheader) 1794 << getHeaderName(Error) << Context.BuiltinInfo.getName(ID); 1795 return nullptr; 1796 } 1797 1798 if (!ForRedeclaration && 1799 (Context.BuiltinInfo.isPredefinedLibFunction(ID) || 1800 Context.BuiltinInfo.isHeaderDependentFunction(ID))) { 1801 Diag(Loc, diag::ext_implicit_lib_function_decl) 1802 << Context.BuiltinInfo.getName(ID) << R; 1803 if (Context.BuiltinInfo.getHeaderName(ID) && 1804 !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc)) 1805 Diag(Loc, diag::note_include_header_or_declare) 1806 << Context.BuiltinInfo.getHeaderName(ID) 1807 << Context.BuiltinInfo.getName(ID); 1808 } 1809 1810 if (R.isNull()) 1811 return nullptr; 1812 1813 DeclContext *Parent = Context.getTranslationUnitDecl(); 1814 if (getLangOpts().CPlusPlus) { 1815 LinkageSpecDecl *CLinkageDecl = 1816 LinkageSpecDecl::Create(Context, Parent, Loc, Loc, 1817 LinkageSpecDecl::lang_c, false); 1818 CLinkageDecl->setImplicit(); 1819 Parent->addDecl(CLinkageDecl); 1820 Parent = CLinkageDecl; 1821 } 1822 1823 FunctionDecl *New = FunctionDecl::Create(Context, 1824 Parent, 1825 Loc, Loc, II, R, /*TInfo=*/nullptr, 1826 SC_Extern, 1827 false, 1828 R->isFunctionProtoType()); 1829 New->setImplicit(); 1830 1831 // Create Decl objects for each parameter, adding them to the 1832 // FunctionDecl. 1833 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) { 1834 SmallVector<ParmVarDecl*, 16> Params; 1835 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 1836 ParmVarDecl *parm = 1837 ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(), 1838 nullptr, FT->getParamType(i), /*TInfo=*/nullptr, 1839 SC_None, nullptr); 1840 parm->setScopeInfo(0, i); 1841 Params.push_back(parm); 1842 } 1843 New->setParams(Params); 1844 } 1845 1846 AddKnownFunctionAttributes(New); 1847 RegisterLocallyScopedExternCDecl(New, S); 1848 1849 // TUScope is the translation-unit scope to insert this function into. 1850 // FIXME: This is hideous. We need to teach PushOnScopeChains to 1851 // relate Scopes to DeclContexts, and probably eliminate CurContext 1852 // entirely, but we're not there yet. 1853 DeclContext *SavedContext = CurContext; 1854 CurContext = Parent; 1855 PushOnScopeChains(New, TUScope); 1856 CurContext = SavedContext; 1857 return New; 1858 } 1859 1860 /// Typedef declarations don't have linkage, but they still denote the same 1861 /// entity if their types are the same. 1862 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's 1863 /// isSameEntity. 1864 static void filterNonConflictingPreviousTypedefDecls(Sema &S, 1865 TypedefNameDecl *Decl, 1866 LookupResult &Previous) { 1867 // This is only interesting when modules are enabled. 1868 if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility) 1869 return; 1870 1871 // Empty sets are uninteresting. 1872 if (Previous.empty()) 1873 return; 1874 1875 LookupResult::Filter Filter = Previous.makeFilter(); 1876 while (Filter.hasNext()) { 1877 NamedDecl *Old = Filter.next(); 1878 1879 // Non-hidden declarations are never ignored. 1880 if (S.isVisible(Old)) 1881 continue; 1882 1883 // Declarations of the same entity are not ignored, even if they have 1884 // different linkages. 1885 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { 1886 if (S.Context.hasSameType(OldTD->getUnderlyingType(), 1887 Decl->getUnderlyingType())) 1888 continue; 1889 1890 // If both declarations give a tag declaration a typedef name for linkage 1891 // purposes, then they declare the same entity. 1892 if (S.getLangOpts().CPlusPlus && 1893 OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) && 1894 Decl->getAnonDeclWithTypedefName()) 1895 continue; 1896 } 1897 1898 Filter.erase(); 1899 } 1900 1901 Filter.done(); 1902 } 1903 1904 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { 1905 QualType OldType; 1906 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) 1907 OldType = OldTypedef->getUnderlyingType(); 1908 else 1909 OldType = Context.getTypeDeclType(Old); 1910 QualType NewType = New->getUnderlyingType(); 1911 1912 if (NewType->isVariablyModifiedType()) { 1913 // Must not redefine a typedef with a variably-modified type. 1914 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 1915 Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef) 1916 << Kind << NewType; 1917 if (Old->getLocation().isValid()) 1918 Diag(Old->getLocation(), diag::note_previous_definition); 1919 New->setInvalidDecl(); 1920 return true; 1921 } 1922 1923 if (OldType != NewType && 1924 !OldType->isDependentType() && 1925 !NewType->isDependentType() && 1926 !Context.hasSameType(OldType, NewType)) { 1927 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 1928 Diag(New->getLocation(), diag::err_redefinition_different_typedef) 1929 << Kind << NewType << OldType; 1930 if (Old->getLocation().isValid()) 1931 Diag(Old->getLocation(), diag::note_previous_definition); 1932 New->setInvalidDecl(); 1933 return true; 1934 } 1935 return false; 1936 } 1937 1938 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the 1939 /// same name and scope as a previous declaration 'Old'. Figure out 1940 /// how to resolve this situation, merging decls or emitting 1941 /// diagnostics as appropriate. If there was an error, set New to be invalid. 1942 /// 1943 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New, 1944 LookupResult &OldDecls) { 1945 // If the new decl is known invalid already, don't bother doing any 1946 // merging checks. 1947 if (New->isInvalidDecl()) return; 1948 1949 // Allow multiple definitions for ObjC built-in typedefs. 1950 // FIXME: Verify the underlying types are equivalent! 1951 if (getLangOpts().ObjC1) { 1952 const IdentifierInfo *TypeID = New->getIdentifier(); 1953 switch (TypeID->getLength()) { 1954 default: break; 1955 case 2: 1956 { 1957 if (!TypeID->isStr("id")) 1958 break; 1959 QualType T = New->getUnderlyingType(); 1960 if (!T->isPointerType()) 1961 break; 1962 if (!T->isVoidPointerType()) { 1963 QualType PT = T->getAs<PointerType>()->getPointeeType(); 1964 if (!PT->isStructureType()) 1965 break; 1966 } 1967 Context.setObjCIdRedefinitionType(T); 1968 // Install the built-in type for 'id', ignoring the current definition. 1969 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); 1970 return; 1971 } 1972 case 5: 1973 if (!TypeID->isStr("Class")) 1974 break; 1975 Context.setObjCClassRedefinitionType(New->getUnderlyingType()); 1976 // Install the built-in type for 'Class', ignoring the current definition. 1977 New->setTypeForDecl(Context.getObjCClassType().getTypePtr()); 1978 return; 1979 case 3: 1980 if (!TypeID->isStr("SEL")) 1981 break; 1982 Context.setObjCSelRedefinitionType(New->getUnderlyingType()); 1983 // Install the built-in type for 'SEL', ignoring the current definition. 1984 New->setTypeForDecl(Context.getObjCSelType().getTypePtr()); 1985 return; 1986 } 1987 // Fall through - the typedef name was not a builtin type. 1988 } 1989 1990 // Verify the old decl was also a type. 1991 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); 1992 if (!Old) { 1993 Diag(New->getLocation(), diag::err_redefinition_different_kind) 1994 << New->getDeclName(); 1995 1996 NamedDecl *OldD = OldDecls.getRepresentativeDecl(); 1997 if (OldD->getLocation().isValid()) 1998 Diag(OldD->getLocation(), diag::note_previous_definition); 1999 2000 return New->setInvalidDecl(); 2001 } 2002 2003 // If the old declaration is invalid, just give up here. 2004 if (Old->isInvalidDecl()) 2005 return New->setInvalidDecl(); 2006 2007 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { 2008 auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true); 2009 auto *NewTag = New->getAnonDeclWithTypedefName(); 2010 NamedDecl *Hidden = nullptr; 2011 if (getLangOpts().CPlusPlus && OldTag && NewTag && 2012 OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() && 2013 !hasVisibleDefinition(OldTag, &Hidden)) { 2014 // There is a definition of this tag, but it is not visible. Use it 2015 // instead of our tag. 2016 New->setTypeForDecl(OldTD->getTypeForDecl()); 2017 if (OldTD->isModed()) 2018 New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(), 2019 OldTD->getUnderlyingType()); 2020 else 2021 New->setTypeSourceInfo(OldTD->getTypeSourceInfo()); 2022 2023 // Make the old tag definition visible. 2024 makeMergedDefinitionVisible(Hidden, NewTag->getLocation()); 2025 2026 // If this was an unscoped enumeration, yank all of its enumerators 2027 // out of the scope. 2028 if (isa<EnumDecl>(NewTag)) { 2029 Scope *EnumScope = getNonFieldDeclScope(S); 2030 for (auto *D : NewTag->decls()) { 2031 auto *ED = cast<EnumConstantDecl>(D); 2032 assert(EnumScope->isDeclScope(ED)); 2033 EnumScope->RemoveDecl(ED); 2034 IdResolver.RemoveDecl(ED); 2035 ED->getLexicalDeclContext()->removeDecl(ED); 2036 } 2037 } 2038 } 2039 } 2040 2041 // If the typedef types are not identical, reject them in all languages and 2042 // with any extensions enabled. 2043 if (isIncompatibleTypedef(Old, New)) 2044 return; 2045 2046 // The types match. Link up the redeclaration chain and merge attributes if 2047 // the old declaration was a typedef. 2048 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) { 2049 New->setPreviousDecl(Typedef); 2050 mergeDeclAttributes(New, Old); 2051 } 2052 2053 if (getLangOpts().MicrosoftExt) 2054 return; 2055 2056 if (getLangOpts().CPlusPlus) { 2057 // C++ [dcl.typedef]p2: 2058 // In a given non-class scope, a typedef specifier can be used to 2059 // redefine the name of any type declared in that scope to refer 2060 // to the type to which it already refers. 2061 if (!isa<CXXRecordDecl>(CurContext)) 2062 return; 2063 2064 // C++0x [dcl.typedef]p4: 2065 // In a given class scope, a typedef specifier can be used to redefine 2066 // any class-name declared in that scope that is not also a typedef-name 2067 // to refer to the type to which it already refers. 2068 // 2069 // This wording came in via DR424, which was a correction to the 2070 // wording in DR56, which accidentally banned code like: 2071 // 2072 // struct S { 2073 // typedef struct A { } A; 2074 // }; 2075 // 2076 // in the C++03 standard. We implement the C++0x semantics, which 2077 // allow the above but disallow 2078 // 2079 // struct S { 2080 // typedef int I; 2081 // typedef int I; 2082 // }; 2083 // 2084 // since that was the intent of DR56. 2085 if (!isa<TypedefNameDecl>(Old)) 2086 return; 2087 2088 Diag(New->getLocation(), diag::err_redefinition) 2089 << New->getDeclName(); 2090 Diag(Old->getLocation(), diag::note_previous_definition); 2091 return New->setInvalidDecl(); 2092 } 2093 2094 // Modules always permit redefinition of typedefs, as does C11. 2095 if (getLangOpts().Modules || getLangOpts().C11) 2096 return; 2097 2098 // If we have a redefinition of a typedef in C, emit a warning. This warning 2099 // is normally mapped to an error, but can be controlled with 2100 // -Wtypedef-redefinition. If either the original or the redefinition is 2101 // in a system header, don't emit this for compatibility with GCC. 2102 if (getDiagnostics().getSuppressSystemWarnings() && 2103 (Context.getSourceManager().isInSystemHeader(Old->getLocation()) || 2104 Context.getSourceManager().isInSystemHeader(New->getLocation()))) 2105 return; 2106 2107 Diag(New->getLocation(), diag::ext_redefinition_of_typedef) 2108 << New->getDeclName(); 2109 Diag(Old->getLocation(), diag::note_previous_definition); 2110 } 2111 2112 /// DeclhasAttr - returns true if decl Declaration already has the target 2113 /// attribute. 2114 static bool DeclHasAttr(const Decl *D, const Attr *A) { 2115 const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A); 2116 const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A); 2117 for (const auto *i : D->attrs()) 2118 if (i->getKind() == A->getKind()) { 2119 if (Ann) { 2120 if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation()) 2121 return true; 2122 continue; 2123 } 2124 // FIXME: Don't hardcode this check 2125 if (OA && isa<OwnershipAttr>(i)) 2126 return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind(); 2127 return true; 2128 } 2129 2130 return false; 2131 } 2132 2133 static bool isAttributeTargetADefinition(Decl *D) { 2134 if (VarDecl *VD = dyn_cast<VarDecl>(D)) 2135 return VD->isThisDeclarationADefinition(); 2136 if (TagDecl *TD = dyn_cast<TagDecl>(D)) 2137 return TD->isCompleteDefinition() || TD->isBeingDefined(); 2138 return true; 2139 } 2140 2141 /// Merge alignment attributes from \p Old to \p New, taking into account the 2142 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute. 2143 /// 2144 /// \return \c true if any attributes were added to \p New. 2145 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) { 2146 // Look for alignas attributes on Old, and pick out whichever attribute 2147 // specifies the strictest alignment requirement. 2148 AlignedAttr *OldAlignasAttr = nullptr; 2149 AlignedAttr *OldStrictestAlignAttr = nullptr; 2150 unsigned OldAlign = 0; 2151 for (auto *I : Old->specific_attrs<AlignedAttr>()) { 2152 // FIXME: We have no way of representing inherited dependent alignments 2153 // in a case like: 2154 // template<int A, int B> struct alignas(A) X; 2155 // template<int A, int B> struct alignas(B) X {}; 2156 // For now, we just ignore any alignas attributes which are not on the 2157 // definition in such a case. 2158 if (I->isAlignmentDependent()) 2159 return false; 2160 2161 if (I->isAlignas()) 2162 OldAlignasAttr = I; 2163 2164 unsigned Align = I->getAlignment(S.Context); 2165 if (Align > OldAlign) { 2166 OldAlign = Align; 2167 OldStrictestAlignAttr = I; 2168 } 2169 } 2170 2171 // Look for alignas attributes on New. 2172 AlignedAttr *NewAlignasAttr = nullptr; 2173 unsigned NewAlign = 0; 2174 for (auto *I : New->specific_attrs<AlignedAttr>()) { 2175 if (I->isAlignmentDependent()) 2176 return false; 2177 2178 if (I->isAlignas()) 2179 NewAlignasAttr = I; 2180 2181 unsigned Align = I->getAlignment(S.Context); 2182 if (Align > NewAlign) 2183 NewAlign = Align; 2184 } 2185 2186 if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) { 2187 // Both declarations have 'alignas' attributes. We require them to match. 2188 // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but 2189 // fall short. (If two declarations both have alignas, they must both match 2190 // every definition, and so must match each other if there is a definition.) 2191 2192 // If either declaration only contains 'alignas(0)' specifiers, then it 2193 // specifies the natural alignment for the type. 2194 if (OldAlign == 0 || NewAlign == 0) { 2195 QualType Ty; 2196 if (ValueDecl *VD = dyn_cast<ValueDecl>(New)) 2197 Ty = VD->getType(); 2198 else 2199 Ty = S.Context.getTagDeclType(cast<TagDecl>(New)); 2200 2201 if (OldAlign == 0) 2202 OldAlign = S.Context.getTypeAlign(Ty); 2203 if (NewAlign == 0) 2204 NewAlign = S.Context.getTypeAlign(Ty); 2205 } 2206 2207 if (OldAlign != NewAlign) { 2208 S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch) 2209 << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity() 2210 << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity(); 2211 S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration); 2212 } 2213 } 2214 2215 if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) { 2216 // C++11 [dcl.align]p6: 2217 // if any declaration of an entity has an alignment-specifier, 2218 // every defining declaration of that entity shall specify an 2219 // equivalent alignment. 2220 // C11 6.7.5/7: 2221 // If the definition of an object does not have an alignment 2222 // specifier, any other declaration of that object shall also 2223 // have no alignment specifier. 2224 S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition) 2225 << OldAlignasAttr; 2226 S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration) 2227 << OldAlignasAttr; 2228 } 2229 2230 bool AnyAdded = false; 2231 2232 // Ensure we have an attribute representing the strictest alignment. 2233 if (OldAlign > NewAlign) { 2234 AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context); 2235 Clone->setInherited(true); 2236 New->addAttr(Clone); 2237 AnyAdded = true; 2238 } 2239 2240 // Ensure we have an alignas attribute if the old declaration had one. 2241 if (OldAlignasAttr && !NewAlignasAttr && 2242 !(AnyAdded && OldStrictestAlignAttr->isAlignas())) { 2243 AlignedAttr *Clone = OldAlignasAttr->clone(S.Context); 2244 Clone->setInherited(true); 2245 New->addAttr(Clone); 2246 AnyAdded = true; 2247 } 2248 2249 return AnyAdded; 2250 } 2251 2252 static bool mergeDeclAttribute(Sema &S, NamedDecl *D, 2253 const InheritableAttr *Attr, 2254 Sema::AvailabilityMergeKind AMK) { 2255 // This function copies an attribute Attr from a previous declaration to the 2256 // new declaration D if the new declaration doesn't itself have that attribute 2257 // yet or if that attribute allows duplicates. 2258 // If you're adding a new attribute that requires logic different from 2259 // "use explicit attribute on decl if present, else use attribute from 2260 // previous decl", for example if the attribute needs to be consistent 2261 // between redeclarations, you need to call a custom merge function here. 2262 InheritableAttr *NewAttr = nullptr; 2263 unsigned AttrSpellingListIndex = Attr->getSpellingListIndex(); 2264 if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr)) 2265 NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(), 2266 AA->isImplicit(), AA->getIntroduced(), 2267 AA->getDeprecated(), 2268 AA->getObsoleted(), AA->getUnavailable(), 2269 AA->getMessage(), AA->getStrict(), 2270 AA->getReplacement(), AMK, 2271 AttrSpellingListIndex); 2272 else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr)) 2273 NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(), 2274 AttrSpellingListIndex); 2275 else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr)) 2276 NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(), 2277 AttrSpellingListIndex); 2278 else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr)) 2279 NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(), 2280 AttrSpellingListIndex); 2281 else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr)) 2282 NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(), 2283 AttrSpellingListIndex); 2284 else if (const auto *FA = dyn_cast<FormatAttr>(Attr)) 2285 NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(), 2286 FA->getFormatIdx(), FA->getFirstArg(), 2287 AttrSpellingListIndex); 2288 else if (const auto *SA = dyn_cast<SectionAttr>(Attr)) 2289 NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(), 2290 AttrSpellingListIndex); 2291 else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr)) 2292 NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(), 2293 AttrSpellingListIndex, 2294 IA->getSemanticSpelling()); 2295 else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr)) 2296 NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(), 2297 &S.Context.Idents.get(AA->getSpelling()), 2298 AttrSpellingListIndex); 2299 else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) && 2300 (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) || 2301 isa<CUDAGlobalAttr>(Attr))) { 2302 // CUDA target attributes are part of function signature for 2303 // overloading purposes and must not be merged. 2304 return false; 2305 } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr)) 2306 NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex); 2307 else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr)) 2308 NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex); 2309 else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr)) 2310 NewAttr = S.mergeInternalLinkageAttr( 2311 D, InternalLinkageA->getRange(), 2312 &S.Context.Idents.get(InternalLinkageA->getSpelling()), 2313 AttrSpellingListIndex); 2314 else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr)) 2315 NewAttr = S.mergeCommonAttr(D, CommonA->getRange(), 2316 &S.Context.Idents.get(CommonA->getSpelling()), 2317 AttrSpellingListIndex); 2318 else if (isa<AlignedAttr>(Attr)) 2319 // AlignedAttrs are handled separately, because we need to handle all 2320 // such attributes on a declaration at the same time. 2321 NewAttr = nullptr; 2322 else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) && 2323 (AMK == Sema::AMK_Override || 2324 AMK == Sema::AMK_ProtocolImplementation)) 2325 NewAttr = nullptr; 2326 else if (const auto *UA = dyn_cast<UuidAttr>(Attr)) 2327 NewAttr = S.mergeUuidAttr(D, UA->getRange(), AttrSpellingListIndex, 2328 UA->getGuid()); 2329 else if (Attr->duplicatesAllowed() || !DeclHasAttr(D, Attr)) 2330 NewAttr = cast<InheritableAttr>(Attr->clone(S.Context)); 2331 2332 if (NewAttr) { 2333 NewAttr->setInherited(true); 2334 D->addAttr(NewAttr); 2335 if (isa<MSInheritanceAttr>(NewAttr)) 2336 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D)); 2337 return true; 2338 } 2339 2340 return false; 2341 } 2342 2343 static const Decl *getDefinition(const Decl *D) { 2344 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) 2345 return TD->getDefinition(); 2346 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 2347 const VarDecl *Def = VD->getDefinition(); 2348 if (Def) 2349 return Def; 2350 return VD->getActingDefinition(); 2351 } 2352 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 2353 return FD->getDefinition(); 2354 return nullptr; 2355 } 2356 2357 static bool hasAttribute(const Decl *D, attr::Kind Kind) { 2358 for (const auto *Attribute : D->attrs()) 2359 if (Attribute->getKind() == Kind) 2360 return true; 2361 return false; 2362 } 2363 2364 /// checkNewAttributesAfterDef - If we already have a definition, check that 2365 /// there are no new attributes in this declaration. 2366 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) { 2367 if (!New->hasAttrs()) 2368 return; 2369 2370 const Decl *Def = getDefinition(Old); 2371 if (!Def || Def == New) 2372 return; 2373 2374 AttrVec &NewAttributes = New->getAttrs(); 2375 for (unsigned I = 0, E = NewAttributes.size(); I != E;) { 2376 const Attr *NewAttribute = NewAttributes[I]; 2377 2378 if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) { 2379 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) { 2380 Sema::SkipBodyInfo SkipBody; 2381 S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody); 2382 2383 // If we're skipping this definition, drop the "alias" attribute. 2384 if (SkipBody.ShouldSkip) { 2385 NewAttributes.erase(NewAttributes.begin() + I); 2386 --E; 2387 continue; 2388 } 2389 } else { 2390 VarDecl *VD = cast<VarDecl>(New); 2391 unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() == 2392 VarDecl::TentativeDefinition 2393 ? diag::err_alias_after_tentative 2394 : diag::err_redefinition; 2395 S.Diag(VD->getLocation(), Diag) << VD->getDeclName(); 2396 S.Diag(Def->getLocation(), diag::note_previous_definition); 2397 VD->setInvalidDecl(); 2398 } 2399 ++I; 2400 continue; 2401 } 2402 2403 if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) { 2404 // Tentative definitions are only interesting for the alias check above. 2405 if (VD->isThisDeclarationADefinition() != VarDecl::Definition) { 2406 ++I; 2407 continue; 2408 } 2409 } 2410 2411 if (hasAttribute(Def, NewAttribute->getKind())) { 2412 ++I; 2413 continue; // regular attr merging will take care of validating this. 2414 } 2415 2416 if (isa<C11NoReturnAttr>(NewAttribute)) { 2417 // C's _Noreturn is allowed to be added to a function after it is defined. 2418 ++I; 2419 continue; 2420 } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) { 2421 if (AA->isAlignas()) { 2422 // C++11 [dcl.align]p6: 2423 // if any declaration of an entity has an alignment-specifier, 2424 // every defining declaration of that entity shall specify an 2425 // equivalent alignment. 2426 // C11 6.7.5/7: 2427 // If the definition of an object does not have an alignment 2428 // specifier, any other declaration of that object shall also 2429 // have no alignment specifier. 2430 S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition) 2431 << AA; 2432 S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration) 2433 << AA; 2434 NewAttributes.erase(NewAttributes.begin() + I); 2435 --E; 2436 continue; 2437 } 2438 } 2439 2440 S.Diag(NewAttribute->getLocation(), 2441 diag::warn_attribute_precede_definition); 2442 S.Diag(Def->getLocation(), diag::note_previous_definition); 2443 NewAttributes.erase(NewAttributes.begin() + I); 2444 --E; 2445 } 2446 } 2447 2448 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one. 2449 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old, 2450 AvailabilityMergeKind AMK) { 2451 if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) { 2452 UsedAttr *NewAttr = OldAttr->clone(Context); 2453 NewAttr->setInherited(true); 2454 New->addAttr(NewAttr); 2455 } 2456 2457 if (!Old->hasAttrs() && !New->hasAttrs()) 2458 return; 2459 2460 // Attributes declared post-definition are currently ignored. 2461 checkNewAttributesAfterDef(*this, New, Old); 2462 2463 if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) { 2464 if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) { 2465 if (OldA->getLabel() != NewA->getLabel()) { 2466 // This redeclaration changes __asm__ label. 2467 Diag(New->getLocation(), diag::err_different_asm_label); 2468 Diag(OldA->getLocation(), diag::note_previous_declaration); 2469 } 2470 } else if (Old->isUsed()) { 2471 // This redeclaration adds an __asm__ label to a declaration that has 2472 // already been ODR-used. 2473 Diag(New->getLocation(), diag::err_late_asm_label_name) 2474 << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange(); 2475 } 2476 } 2477 2478 // Re-declaration cannot add abi_tag's. 2479 if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) { 2480 if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) { 2481 for (const auto &NewTag : NewAbiTagAttr->tags()) { 2482 if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(), 2483 NewTag) == OldAbiTagAttr->tags_end()) { 2484 Diag(NewAbiTagAttr->getLocation(), 2485 diag::err_new_abi_tag_on_redeclaration) 2486 << NewTag; 2487 Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration); 2488 } 2489 } 2490 } else { 2491 Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration); 2492 Diag(Old->getLocation(), diag::note_previous_declaration); 2493 } 2494 } 2495 2496 if (!Old->hasAttrs()) 2497 return; 2498 2499 bool foundAny = New->hasAttrs(); 2500 2501 // Ensure that any moving of objects within the allocated map is done before 2502 // we process them. 2503 if (!foundAny) New->setAttrs(AttrVec()); 2504 2505 for (auto *I : Old->specific_attrs<InheritableAttr>()) { 2506 // Ignore deprecated/unavailable/availability attributes if requested. 2507 AvailabilityMergeKind LocalAMK = AMK_None; 2508 if (isa<DeprecatedAttr>(I) || 2509 isa<UnavailableAttr>(I) || 2510 isa<AvailabilityAttr>(I)) { 2511 switch (AMK) { 2512 case AMK_None: 2513 continue; 2514 2515 case AMK_Redeclaration: 2516 case AMK_Override: 2517 case AMK_ProtocolImplementation: 2518 LocalAMK = AMK; 2519 break; 2520 } 2521 } 2522 2523 // Already handled. 2524 if (isa<UsedAttr>(I)) 2525 continue; 2526 2527 if (mergeDeclAttribute(*this, New, I, LocalAMK)) 2528 foundAny = true; 2529 } 2530 2531 if (mergeAlignedAttrs(*this, New, Old)) 2532 foundAny = true; 2533 2534 if (!foundAny) New->dropAttrs(); 2535 } 2536 2537 /// mergeParamDeclAttributes - Copy attributes from the old parameter 2538 /// to the new one. 2539 static void mergeParamDeclAttributes(ParmVarDecl *newDecl, 2540 const ParmVarDecl *oldDecl, 2541 Sema &S) { 2542 // C++11 [dcl.attr.depend]p2: 2543 // The first declaration of a function shall specify the 2544 // carries_dependency attribute for its declarator-id if any declaration 2545 // of the function specifies the carries_dependency attribute. 2546 const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>(); 2547 if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) { 2548 S.Diag(CDA->getLocation(), 2549 diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/; 2550 // Find the first declaration of the parameter. 2551 // FIXME: Should we build redeclaration chains for function parameters? 2552 const FunctionDecl *FirstFD = 2553 cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl(); 2554 const ParmVarDecl *FirstVD = 2555 FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex()); 2556 S.Diag(FirstVD->getLocation(), 2557 diag::note_carries_dependency_missing_first_decl) << 1/*Param*/; 2558 } 2559 2560 if (!oldDecl->hasAttrs()) 2561 return; 2562 2563 bool foundAny = newDecl->hasAttrs(); 2564 2565 // Ensure that any moving of objects within the allocated map is 2566 // done before we process them. 2567 if (!foundAny) newDecl->setAttrs(AttrVec()); 2568 2569 for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) { 2570 if (!DeclHasAttr(newDecl, I)) { 2571 InheritableAttr *newAttr = 2572 cast<InheritableParamAttr>(I->clone(S.Context)); 2573 newAttr->setInherited(true); 2574 newDecl->addAttr(newAttr); 2575 foundAny = true; 2576 } 2577 } 2578 2579 if (!foundAny) newDecl->dropAttrs(); 2580 } 2581 2582 static void mergeParamDeclTypes(ParmVarDecl *NewParam, 2583 const ParmVarDecl *OldParam, 2584 Sema &S) { 2585 if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) { 2586 if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) { 2587 if (*Oldnullability != *Newnullability) { 2588 S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr) 2589 << DiagNullabilityKind( 2590 *Newnullability, 2591 ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) 2592 != 0)) 2593 << DiagNullabilityKind( 2594 *Oldnullability, 2595 ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) 2596 != 0)); 2597 S.Diag(OldParam->getLocation(), diag::note_previous_declaration); 2598 } 2599 } else { 2600 QualType NewT = NewParam->getType(); 2601 NewT = S.Context.getAttributedType( 2602 AttributedType::getNullabilityAttrKind(*Oldnullability), 2603 NewT, NewT); 2604 NewParam->setType(NewT); 2605 } 2606 } 2607 } 2608 2609 namespace { 2610 2611 /// Used in MergeFunctionDecl to keep track of function parameters in 2612 /// C. 2613 struct GNUCompatibleParamWarning { 2614 ParmVarDecl *OldParm; 2615 ParmVarDecl *NewParm; 2616 QualType PromotedType; 2617 }; 2618 2619 } // end anonymous namespace 2620 2621 /// getSpecialMember - get the special member enum for a method. 2622 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) { 2623 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) { 2624 if (Ctor->isDefaultConstructor()) 2625 return Sema::CXXDefaultConstructor; 2626 2627 if (Ctor->isCopyConstructor()) 2628 return Sema::CXXCopyConstructor; 2629 2630 if (Ctor->isMoveConstructor()) 2631 return Sema::CXXMoveConstructor; 2632 } else if (isa<CXXDestructorDecl>(MD)) { 2633 return Sema::CXXDestructor; 2634 } else if (MD->isCopyAssignmentOperator()) { 2635 return Sema::CXXCopyAssignment; 2636 } else if (MD->isMoveAssignmentOperator()) { 2637 return Sema::CXXMoveAssignment; 2638 } 2639 2640 return Sema::CXXInvalid; 2641 } 2642 2643 // Determine whether the previous declaration was a definition, implicit 2644 // declaration, or a declaration. 2645 template <typename T> 2646 static std::pair<diag::kind, SourceLocation> 2647 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) { 2648 diag::kind PrevDiag; 2649 SourceLocation OldLocation = Old->getLocation(); 2650 if (Old->isThisDeclarationADefinition()) 2651 PrevDiag = diag::note_previous_definition; 2652 else if (Old->isImplicit()) { 2653 PrevDiag = diag::note_previous_implicit_declaration; 2654 if (OldLocation.isInvalid()) 2655 OldLocation = New->getLocation(); 2656 } else 2657 PrevDiag = diag::note_previous_declaration; 2658 return std::make_pair(PrevDiag, OldLocation); 2659 } 2660 2661 /// canRedefineFunction - checks if a function can be redefined. Currently, 2662 /// only extern inline functions can be redefined, and even then only in 2663 /// GNU89 mode. 2664 static bool canRedefineFunction(const FunctionDecl *FD, 2665 const LangOptions& LangOpts) { 2666 return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) && 2667 !LangOpts.CPlusPlus && 2668 FD->isInlineSpecified() && 2669 FD->getStorageClass() == SC_Extern); 2670 } 2671 2672 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const { 2673 const AttributedType *AT = T->getAs<AttributedType>(); 2674 while (AT && !AT->isCallingConv()) 2675 AT = AT->getModifiedType()->getAs<AttributedType>(); 2676 return AT; 2677 } 2678 2679 template <typename T> 2680 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) { 2681 const DeclContext *DC = Old->getDeclContext(); 2682 if (DC->isRecord()) 2683 return false; 2684 2685 LanguageLinkage OldLinkage = Old->getLanguageLinkage(); 2686 if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext()) 2687 return true; 2688 if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext()) 2689 return true; 2690 return false; 2691 } 2692 2693 template<typename T> static bool isExternC(T *D) { return D->isExternC(); } 2694 static bool isExternC(VarTemplateDecl *) { return false; } 2695 2696 /// \brief Check whether a redeclaration of an entity introduced by a 2697 /// using-declaration is valid, given that we know it's not an overload 2698 /// (nor a hidden tag declaration). 2699 template<typename ExpectedDecl> 2700 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS, 2701 ExpectedDecl *New) { 2702 // C++11 [basic.scope.declarative]p4: 2703 // Given a set of declarations in a single declarative region, each of 2704 // which specifies the same unqualified name, 2705 // -- they shall all refer to the same entity, or all refer to functions 2706 // and function templates; or 2707 // -- exactly one declaration shall declare a class name or enumeration 2708 // name that is not a typedef name and the other declarations shall all 2709 // refer to the same variable or enumerator, or all refer to functions 2710 // and function templates; in this case the class name or enumeration 2711 // name is hidden (3.3.10). 2712 2713 // C++11 [namespace.udecl]p14: 2714 // If a function declaration in namespace scope or block scope has the 2715 // same name and the same parameter-type-list as a function introduced 2716 // by a using-declaration, and the declarations do not declare the same 2717 // function, the program is ill-formed. 2718 2719 auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl()); 2720 if (Old && 2721 !Old->getDeclContext()->getRedeclContext()->Equals( 2722 New->getDeclContext()->getRedeclContext()) && 2723 !(isExternC(Old) && isExternC(New))) 2724 Old = nullptr; 2725 2726 if (!Old) { 2727 S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse); 2728 S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target); 2729 S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0; 2730 return true; 2731 } 2732 return false; 2733 } 2734 2735 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A, 2736 const FunctionDecl *B) { 2737 assert(A->getNumParams() == B->getNumParams()); 2738 2739 auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) { 2740 const auto *AttrA = A->getAttr<PassObjectSizeAttr>(); 2741 const auto *AttrB = B->getAttr<PassObjectSizeAttr>(); 2742 if (AttrA == AttrB) 2743 return true; 2744 return AttrA && AttrB && AttrA->getType() == AttrB->getType(); 2745 }; 2746 2747 return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq); 2748 } 2749 2750 /// MergeFunctionDecl - We just parsed a function 'New' from 2751 /// declarator D which has the same name and scope as a previous 2752 /// declaration 'Old'. Figure out how to resolve this situation, 2753 /// merging decls or emitting diagnostics as appropriate. 2754 /// 2755 /// In C++, New and Old must be declarations that are not 2756 /// overloaded. Use IsOverload to determine whether New and Old are 2757 /// overloaded, and to select the Old declaration that New should be 2758 /// merged with. 2759 /// 2760 /// Returns true if there was an error, false otherwise. 2761 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD, 2762 Scope *S, bool MergeTypeWithOld) { 2763 // Verify the old decl was also a function. 2764 FunctionDecl *Old = OldD->getAsFunction(); 2765 if (!Old) { 2766 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) { 2767 if (New->getFriendObjectKind()) { 2768 Diag(New->getLocation(), diag::err_using_decl_friend); 2769 Diag(Shadow->getTargetDecl()->getLocation(), 2770 diag::note_using_decl_target); 2771 Diag(Shadow->getUsingDecl()->getLocation(), 2772 diag::note_using_decl) << 0; 2773 return true; 2774 } 2775 2776 // Check whether the two declarations might declare the same function. 2777 if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New)) 2778 return true; 2779 OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl()); 2780 } else { 2781 Diag(New->getLocation(), diag::err_redefinition_different_kind) 2782 << New->getDeclName(); 2783 Diag(OldD->getLocation(), diag::note_previous_definition); 2784 return true; 2785 } 2786 } 2787 2788 // If the old declaration is invalid, just give up here. 2789 if (Old->isInvalidDecl()) 2790 return true; 2791 2792 diag::kind PrevDiag; 2793 SourceLocation OldLocation; 2794 std::tie(PrevDiag, OldLocation) = 2795 getNoteDiagForInvalidRedeclaration(Old, New); 2796 2797 // Don't complain about this if we're in GNU89 mode and the old function 2798 // is an extern inline function. 2799 // Don't complain about specializations. They are not supposed to have 2800 // storage classes. 2801 if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) && 2802 New->getStorageClass() == SC_Static && 2803 Old->hasExternalFormalLinkage() && 2804 !New->getTemplateSpecializationInfo() && 2805 !canRedefineFunction(Old, getLangOpts())) { 2806 if (getLangOpts().MicrosoftExt) { 2807 Diag(New->getLocation(), diag::ext_static_non_static) << New; 2808 Diag(OldLocation, PrevDiag); 2809 } else { 2810 Diag(New->getLocation(), diag::err_static_non_static) << New; 2811 Diag(OldLocation, PrevDiag); 2812 return true; 2813 } 2814 } 2815 2816 if (New->hasAttr<InternalLinkageAttr>() && 2817 !Old->hasAttr<InternalLinkageAttr>()) { 2818 Diag(New->getLocation(), diag::err_internal_linkage_redeclaration) 2819 << New->getDeclName(); 2820 Diag(Old->getLocation(), diag::note_previous_definition); 2821 New->dropAttr<InternalLinkageAttr>(); 2822 } 2823 2824 // If a function is first declared with a calling convention, but is later 2825 // declared or defined without one, all following decls assume the calling 2826 // convention of the first. 2827 // 2828 // It's OK if a function is first declared without a calling convention, 2829 // but is later declared or defined with the default calling convention. 2830 // 2831 // To test if either decl has an explicit calling convention, we look for 2832 // AttributedType sugar nodes on the type as written. If they are missing or 2833 // were canonicalized away, we assume the calling convention was implicit. 2834 // 2835 // Note also that we DO NOT return at this point, because we still have 2836 // other tests to run. 2837 QualType OldQType = Context.getCanonicalType(Old->getType()); 2838 QualType NewQType = Context.getCanonicalType(New->getType()); 2839 const FunctionType *OldType = cast<FunctionType>(OldQType); 2840 const FunctionType *NewType = cast<FunctionType>(NewQType); 2841 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); 2842 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); 2843 bool RequiresAdjustment = false; 2844 2845 if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) { 2846 FunctionDecl *First = Old->getFirstDecl(); 2847 const FunctionType *FT = 2848 First->getType().getCanonicalType()->castAs<FunctionType>(); 2849 FunctionType::ExtInfo FI = FT->getExtInfo(); 2850 bool NewCCExplicit = getCallingConvAttributedType(New->getType()); 2851 if (!NewCCExplicit) { 2852 // Inherit the CC from the previous declaration if it was specified 2853 // there but not here. 2854 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC()); 2855 RequiresAdjustment = true; 2856 } else { 2857 // Calling conventions aren't compatible, so complain. 2858 bool FirstCCExplicit = getCallingConvAttributedType(First->getType()); 2859 Diag(New->getLocation(), diag::err_cconv_change) 2860 << FunctionType::getNameForCallConv(NewTypeInfo.getCC()) 2861 << !FirstCCExplicit 2862 << (!FirstCCExplicit ? "" : 2863 FunctionType::getNameForCallConv(FI.getCC())); 2864 2865 // Put the note on the first decl, since it is the one that matters. 2866 Diag(First->getLocation(), diag::note_previous_declaration); 2867 return true; 2868 } 2869 } 2870 2871 // FIXME: diagnose the other way around? 2872 if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) { 2873 NewTypeInfo = NewTypeInfo.withNoReturn(true); 2874 RequiresAdjustment = true; 2875 } 2876 2877 // Merge regparm attribute. 2878 if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() || 2879 OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) { 2880 if (NewTypeInfo.getHasRegParm()) { 2881 Diag(New->getLocation(), diag::err_regparm_mismatch) 2882 << NewType->getRegParmType() 2883 << OldType->getRegParmType(); 2884 Diag(OldLocation, diag::note_previous_declaration); 2885 return true; 2886 } 2887 2888 NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm()); 2889 RequiresAdjustment = true; 2890 } 2891 2892 // Merge ns_returns_retained attribute. 2893 if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) { 2894 if (NewTypeInfo.getProducesResult()) { 2895 Diag(New->getLocation(), diag::err_returns_retained_mismatch); 2896 Diag(OldLocation, diag::note_previous_declaration); 2897 return true; 2898 } 2899 2900 NewTypeInfo = NewTypeInfo.withProducesResult(true); 2901 RequiresAdjustment = true; 2902 } 2903 2904 if (RequiresAdjustment) { 2905 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); 2906 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); 2907 New->setType(QualType(AdjustedType, 0)); 2908 NewQType = Context.getCanonicalType(New->getType()); 2909 NewType = cast<FunctionType>(NewQType); 2910 } 2911 2912 // If this redeclaration makes the function inline, we may need to add it to 2913 // UndefinedButUsed. 2914 if (!Old->isInlined() && New->isInlined() && 2915 !New->hasAttr<GNUInlineAttr>() && 2916 !getLangOpts().GNUInline && 2917 Old->isUsed(false) && 2918 !Old->isDefined() && !New->isThisDeclarationADefinition()) 2919 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 2920 SourceLocation())); 2921 2922 // If this redeclaration makes it newly gnu_inline, we don't want to warn 2923 // about it. 2924 if (New->hasAttr<GNUInlineAttr>() && 2925 Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) { 2926 UndefinedButUsed.erase(Old->getCanonicalDecl()); 2927 } 2928 2929 // If pass_object_size params don't match up perfectly, this isn't a valid 2930 // redeclaration. 2931 if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() && 2932 !hasIdenticalPassObjectSizeAttrs(Old, New)) { 2933 Diag(New->getLocation(), diag::err_different_pass_object_size_params) 2934 << New->getDeclName(); 2935 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 2936 return true; 2937 } 2938 2939 if (getLangOpts().CPlusPlus) { 2940 // C++1z [over.load]p2 2941 // Certain function declarations cannot be overloaded: 2942 // -- Function declarations that differ only in the return type, 2943 // the exception specification, or both cannot be overloaded. 2944 2945 // Check the exception specifications match. This may recompute the type of 2946 // both Old and New if it resolved exception specifications, so grab the 2947 // types again after this. Because this updates the type, we do this before 2948 // any of the other checks below, which may update the "de facto" NewQType 2949 // but do not necessarily update the type of New. 2950 if (CheckEquivalentExceptionSpec(Old, New)) 2951 return true; 2952 OldQType = Context.getCanonicalType(Old->getType()); 2953 NewQType = Context.getCanonicalType(New->getType()); 2954 2955 // Go back to the type source info to compare the declared return types, 2956 // per C++1y [dcl.type.auto]p13: 2957 // Redeclarations or specializations of a function or function template 2958 // with a declared return type that uses a placeholder type shall also 2959 // use that placeholder, not a deduced type. 2960 QualType OldDeclaredReturnType = 2961 (Old->getTypeSourceInfo() 2962 ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>() 2963 : OldType)->getReturnType(); 2964 QualType NewDeclaredReturnType = 2965 (New->getTypeSourceInfo() 2966 ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>() 2967 : NewType)->getReturnType(); 2968 if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) && 2969 !((NewQType->isDependentType() || OldQType->isDependentType()) && 2970 New->isLocalExternDecl())) { 2971 QualType ResQT; 2972 if (NewDeclaredReturnType->isObjCObjectPointerType() && 2973 OldDeclaredReturnType->isObjCObjectPointerType()) 2974 ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType); 2975 if (ResQT.isNull()) { 2976 if (New->isCXXClassMember() && New->isOutOfLine()) 2977 Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type) 2978 << New << New->getReturnTypeSourceRange(); 2979 else 2980 Diag(New->getLocation(), diag::err_ovl_diff_return_type) 2981 << New->getReturnTypeSourceRange(); 2982 Diag(OldLocation, PrevDiag) << Old << Old->getType() 2983 << Old->getReturnTypeSourceRange(); 2984 return true; 2985 } 2986 else 2987 NewQType = ResQT; 2988 } 2989 2990 QualType OldReturnType = OldType->getReturnType(); 2991 QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType(); 2992 if (OldReturnType != NewReturnType) { 2993 // If this function has a deduced return type and has already been 2994 // defined, copy the deduced value from the old declaration. 2995 AutoType *OldAT = Old->getReturnType()->getContainedAutoType(); 2996 if (OldAT && OldAT->isDeduced()) { 2997 New->setType( 2998 SubstAutoType(New->getType(), 2999 OldAT->isDependentType() ? Context.DependentTy 3000 : OldAT->getDeducedType())); 3001 NewQType = Context.getCanonicalType( 3002 SubstAutoType(NewQType, 3003 OldAT->isDependentType() ? Context.DependentTy 3004 : OldAT->getDeducedType())); 3005 } 3006 } 3007 3008 const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old); 3009 CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New); 3010 if (OldMethod && NewMethod) { 3011 // Preserve triviality. 3012 NewMethod->setTrivial(OldMethod->isTrivial()); 3013 3014 // MSVC allows explicit template specialization at class scope: 3015 // 2 CXXMethodDecls referring to the same function will be injected. 3016 // We don't want a redeclaration error. 3017 bool IsClassScopeExplicitSpecialization = 3018 OldMethod->isFunctionTemplateSpecialization() && 3019 NewMethod->isFunctionTemplateSpecialization(); 3020 bool isFriend = NewMethod->getFriendObjectKind(); 3021 3022 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() && 3023 !IsClassScopeExplicitSpecialization) { 3024 // -- Member function declarations with the same name and the 3025 // same parameter types cannot be overloaded if any of them 3026 // is a static member function declaration. 3027 if (OldMethod->isStatic() != NewMethod->isStatic()) { 3028 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member); 3029 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3030 return true; 3031 } 3032 3033 // C++ [class.mem]p1: 3034 // [...] A member shall not be declared twice in the 3035 // member-specification, except that a nested class or member 3036 // class template can be declared and then later defined. 3037 if (ActiveTemplateInstantiations.empty()) { 3038 unsigned NewDiag; 3039 if (isa<CXXConstructorDecl>(OldMethod)) 3040 NewDiag = diag::err_constructor_redeclared; 3041 else if (isa<CXXDestructorDecl>(NewMethod)) 3042 NewDiag = diag::err_destructor_redeclared; 3043 else if (isa<CXXConversionDecl>(NewMethod)) 3044 NewDiag = diag::err_conv_function_redeclared; 3045 else 3046 NewDiag = diag::err_member_redeclared; 3047 3048 Diag(New->getLocation(), NewDiag); 3049 } else { 3050 Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation) 3051 << New << New->getType(); 3052 } 3053 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3054 return true; 3055 3056 // Complain if this is an explicit declaration of a special 3057 // member that was initially declared implicitly. 3058 // 3059 // As an exception, it's okay to befriend such methods in order 3060 // to permit the implicit constructor/destructor/operator calls. 3061 } else if (OldMethod->isImplicit()) { 3062 if (isFriend) { 3063 NewMethod->setImplicit(); 3064 } else { 3065 Diag(NewMethod->getLocation(), 3066 diag::err_definition_of_implicitly_declared_member) 3067 << New << getSpecialMember(OldMethod); 3068 return true; 3069 } 3070 } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) { 3071 Diag(NewMethod->getLocation(), 3072 diag::err_definition_of_explicitly_defaulted_member) 3073 << getSpecialMember(OldMethod); 3074 return true; 3075 } 3076 } 3077 3078 // C++11 [dcl.attr.noreturn]p1: 3079 // The first declaration of a function shall specify the noreturn 3080 // attribute if any declaration of that function specifies the noreturn 3081 // attribute. 3082 const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>(); 3083 if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) { 3084 Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl); 3085 Diag(Old->getFirstDecl()->getLocation(), 3086 diag::note_noreturn_missing_first_decl); 3087 } 3088 3089 // C++11 [dcl.attr.depend]p2: 3090 // The first declaration of a function shall specify the 3091 // carries_dependency attribute for its declarator-id if any declaration 3092 // of the function specifies the carries_dependency attribute. 3093 const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>(); 3094 if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) { 3095 Diag(CDA->getLocation(), 3096 diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/; 3097 Diag(Old->getFirstDecl()->getLocation(), 3098 diag::note_carries_dependency_missing_first_decl) << 0/*Function*/; 3099 } 3100 3101 // (C++98 8.3.5p3): 3102 // All declarations for a function shall agree exactly in both the 3103 // return type and the parameter-type-list. 3104 // We also want to respect all the extended bits except noreturn. 3105 3106 // noreturn should now match unless the old type info didn't have it. 3107 QualType OldQTypeForComparison = OldQType; 3108 if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) { 3109 auto *OldType = OldQType->castAs<FunctionProtoType>(); 3110 const FunctionType *OldTypeForComparison 3111 = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true)); 3112 OldQTypeForComparison = QualType(OldTypeForComparison, 0); 3113 assert(OldQTypeForComparison.isCanonical()); 3114 } 3115 3116 if (haveIncompatibleLanguageLinkages(Old, New)) { 3117 // As a special case, retain the language linkage from previous 3118 // declarations of a friend function as an extension. 3119 // 3120 // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC 3121 // and is useful because there's otherwise no way to specify language 3122 // linkage within class scope. 3123 // 3124 // Check cautiously as the friend object kind isn't yet complete. 3125 if (New->getFriendObjectKind() != Decl::FOK_None) { 3126 Diag(New->getLocation(), diag::ext_retained_language_linkage) << New; 3127 Diag(OldLocation, PrevDiag); 3128 } else { 3129 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 3130 Diag(OldLocation, PrevDiag); 3131 return true; 3132 } 3133 } 3134 3135 if (OldQTypeForComparison == NewQType) 3136 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3137 3138 if ((NewQType->isDependentType() || OldQType->isDependentType()) && 3139 New->isLocalExternDecl()) { 3140 // It's OK if we couldn't merge types for a local function declaraton 3141 // if either the old or new type is dependent. We'll merge the types 3142 // when we instantiate the function. 3143 return false; 3144 } 3145 3146 // Fall through for conflicting redeclarations and redefinitions. 3147 } 3148 3149 // C: Function types need to be compatible, not identical. This handles 3150 // duplicate function decls like "void f(int); void f(enum X);" properly. 3151 if (!getLangOpts().CPlusPlus && 3152 Context.typesAreCompatible(OldQType, NewQType)) { 3153 const FunctionType *OldFuncType = OldQType->getAs<FunctionType>(); 3154 const FunctionType *NewFuncType = NewQType->getAs<FunctionType>(); 3155 const FunctionProtoType *OldProto = nullptr; 3156 if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) && 3157 (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) { 3158 // The old declaration provided a function prototype, but the 3159 // new declaration does not. Merge in the prototype. 3160 assert(!OldProto->hasExceptionSpec() && "Exception spec in C"); 3161 SmallVector<QualType, 16> ParamTypes(OldProto->param_types()); 3162 NewQType = 3163 Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes, 3164 OldProto->getExtProtoInfo()); 3165 New->setType(NewQType); 3166 New->setHasInheritedPrototype(); 3167 3168 // Synthesize parameters with the same types. 3169 SmallVector<ParmVarDecl*, 16> Params; 3170 for (const auto &ParamType : OldProto->param_types()) { 3171 ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(), 3172 SourceLocation(), nullptr, 3173 ParamType, /*TInfo=*/nullptr, 3174 SC_None, nullptr); 3175 Param->setScopeInfo(0, Params.size()); 3176 Param->setImplicit(); 3177 Params.push_back(Param); 3178 } 3179 3180 New->setParams(Params); 3181 } 3182 3183 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3184 } 3185 3186 // GNU C permits a K&R definition to follow a prototype declaration 3187 // if the declared types of the parameters in the K&R definition 3188 // match the types in the prototype declaration, even when the 3189 // promoted types of the parameters from the K&R definition differ 3190 // from the types in the prototype. GCC then keeps the types from 3191 // the prototype. 3192 // 3193 // If a variadic prototype is followed by a non-variadic K&R definition, 3194 // the K&R definition becomes variadic. This is sort of an edge case, but 3195 // it's legal per the standard depending on how you read C99 6.7.5.3p15 and 3196 // C99 6.9.1p8. 3197 if (!getLangOpts().CPlusPlus && 3198 Old->hasPrototype() && !New->hasPrototype() && 3199 New->getType()->getAs<FunctionProtoType>() && 3200 Old->getNumParams() == New->getNumParams()) { 3201 SmallVector<QualType, 16> ArgTypes; 3202 SmallVector<GNUCompatibleParamWarning, 16> Warnings; 3203 const FunctionProtoType *OldProto 3204 = Old->getType()->getAs<FunctionProtoType>(); 3205 const FunctionProtoType *NewProto 3206 = New->getType()->getAs<FunctionProtoType>(); 3207 3208 // Determine whether this is the GNU C extension. 3209 QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(), 3210 NewProto->getReturnType()); 3211 bool LooseCompatible = !MergedReturn.isNull(); 3212 for (unsigned Idx = 0, End = Old->getNumParams(); 3213 LooseCompatible && Idx != End; ++Idx) { 3214 ParmVarDecl *OldParm = Old->getParamDecl(Idx); 3215 ParmVarDecl *NewParm = New->getParamDecl(Idx); 3216 if (Context.typesAreCompatible(OldParm->getType(), 3217 NewProto->getParamType(Idx))) { 3218 ArgTypes.push_back(NewParm->getType()); 3219 } else if (Context.typesAreCompatible(OldParm->getType(), 3220 NewParm->getType(), 3221 /*CompareUnqualified=*/true)) { 3222 GNUCompatibleParamWarning Warn = { OldParm, NewParm, 3223 NewProto->getParamType(Idx) }; 3224 Warnings.push_back(Warn); 3225 ArgTypes.push_back(NewParm->getType()); 3226 } else 3227 LooseCompatible = false; 3228 } 3229 3230 if (LooseCompatible) { 3231 for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) { 3232 Diag(Warnings[Warn].NewParm->getLocation(), 3233 diag::ext_param_promoted_not_compatible_with_prototype) 3234 << Warnings[Warn].PromotedType 3235 << Warnings[Warn].OldParm->getType(); 3236 if (Warnings[Warn].OldParm->getLocation().isValid()) 3237 Diag(Warnings[Warn].OldParm->getLocation(), 3238 diag::note_previous_declaration); 3239 } 3240 3241 if (MergeTypeWithOld) 3242 New->setType(Context.getFunctionType(MergedReturn, ArgTypes, 3243 OldProto->getExtProtoInfo())); 3244 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3245 } 3246 3247 // Fall through to diagnose conflicting types. 3248 } 3249 3250 // A function that has already been declared has been redeclared or 3251 // defined with a different type; show an appropriate diagnostic. 3252 3253 // If the previous declaration was an implicitly-generated builtin 3254 // declaration, then at the very least we should use a specialized note. 3255 unsigned BuiltinID; 3256 if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) { 3257 // If it's actually a library-defined builtin function like 'malloc' 3258 // or 'printf', just warn about the incompatible redeclaration. 3259 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { 3260 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New; 3261 Diag(OldLocation, diag::note_previous_builtin_declaration) 3262 << Old << Old->getType(); 3263 3264 // If this is a global redeclaration, just forget hereafter 3265 // about the "builtin-ness" of the function. 3266 // 3267 // Doing this for local extern declarations is problematic. If 3268 // the builtin declaration remains visible, a second invalid 3269 // local declaration will produce a hard error; if it doesn't 3270 // remain visible, a single bogus local redeclaration (which is 3271 // actually only a warning) could break all the downstream code. 3272 if (!New->getLexicalDeclContext()->isFunctionOrMethod()) 3273 New->getIdentifier()->revertBuiltin(); 3274 3275 return false; 3276 } 3277 3278 PrevDiag = diag::note_previous_builtin_declaration; 3279 } 3280 3281 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName(); 3282 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3283 return true; 3284 } 3285 3286 /// \brief Completes the merge of two function declarations that are 3287 /// known to be compatible. 3288 /// 3289 /// This routine handles the merging of attributes and other 3290 /// properties of function declarations from the old declaration to 3291 /// the new declaration, once we know that New is in fact a 3292 /// redeclaration of Old. 3293 /// 3294 /// \returns false 3295 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, 3296 Scope *S, bool MergeTypeWithOld) { 3297 // Merge the attributes 3298 mergeDeclAttributes(New, Old); 3299 3300 // Merge "pure" flag. 3301 if (Old->isPure()) 3302 New->setPure(); 3303 3304 // Merge "used" flag. 3305 if (Old->getMostRecentDecl()->isUsed(false)) 3306 New->setIsUsed(); 3307 3308 // Merge attributes from the parameters. These can mismatch with K&R 3309 // declarations. 3310 if (New->getNumParams() == Old->getNumParams()) 3311 for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) { 3312 ParmVarDecl *NewParam = New->getParamDecl(i); 3313 ParmVarDecl *OldParam = Old->getParamDecl(i); 3314 mergeParamDeclAttributes(NewParam, OldParam, *this); 3315 mergeParamDeclTypes(NewParam, OldParam, *this); 3316 } 3317 3318 if (getLangOpts().CPlusPlus) 3319 return MergeCXXFunctionDecl(New, Old, S); 3320 3321 // Merge the function types so the we get the composite types for the return 3322 // and argument types. Per C11 6.2.7/4, only update the type if the old decl 3323 // was visible. 3324 QualType Merged = Context.mergeTypes(Old->getType(), New->getType()); 3325 if (!Merged.isNull() && MergeTypeWithOld) 3326 New->setType(Merged); 3327 3328 return false; 3329 } 3330 3331 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod, 3332 ObjCMethodDecl *oldMethod) { 3333 // Merge the attributes, including deprecated/unavailable 3334 AvailabilityMergeKind MergeKind = 3335 isa<ObjCProtocolDecl>(oldMethod->getDeclContext()) 3336 ? AMK_ProtocolImplementation 3337 : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration 3338 : AMK_Override; 3339 3340 mergeDeclAttributes(newMethod, oldMethod, MergeKind); 3341 3342 // Merge attributes from the parameters. 3343 ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(), 3344 oe = oldMethod->param_end(); 3345 for (ObjCMethodDecl::param_iterator 3346 ni = newMethod->param_begin(), ne = newMethod->param_end(); 3347 ni != ne && oi != oe; ++ni, ++oi) 3348 mergeParamDeclAttributes(*ni, *oi, *this); 3349 3350 CheckObjCMethodOverride(newMethod, oldMethod); 3351 } 3352 3353 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) { 3354 assert(!S.Context.hasSameType(New->getType(), Old->getType())); 3355 3356 S.Diag(New->getLocation(), New->isThisDeclarationADefinition() 3357 ? diag::err_redefinition_different_type 3358 : diag::err_redeclaration_different_type) 3359 << New->getDeclName() << New->getType() << Old->getType(); 3360 3361 diag::kind PrevDiag; 3362 SourceLocation OldLocation; 3363 std::tie(PrevDiag, OldLocation) 3364 = getNoteDiagForInvalidRedeclaration(Old, New); 3365 S.Diag(OldLocation, PrevDiag); 3366 New->setInvalidDecl(); 3367 } 3368 3369 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and 3370 /// scope as a previous declaration 'Old'. Figure out how to merge their types, 3371 /// emitting diagnostics as appropriate. 3372 /// 3373 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back 3374 /// to here in AddInitializerToDecl. We can't check them before the initializer 3375 /// is attached. 3376 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old, 3377 bool MergeTypeWithOld) { 3378 if (New->isInvalidDecl() || Old->isInvalidDecl()) 3379 return; 3380 3381 QualType MergedT; 3382 if (getLangOpts().CPlusPlus) { 3383 if (New->getType()->isUndeducedType()) { 3384 // We don't know what the new type is until the initializer is attached. 3385 return; 3386 } else if (Context.hasSameType(New->getType(), Old->getType())) { 3387 // These could still be something that needs exception specs checked. 3388 return MergeVarDeclExceptionSpecs(New, Old); 3389 } 3390 // C++ [basic.link]p10: 3391 // [...] the types specified by all declarations referring to a given 3392 // object or function shall be identical, except that declarations for an 3393 // array object can specify array types that differ by the presence or 3394 // absence of a major array bound (8.3.4). 3395 else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) { 3396 const ArrayType *OldArray = Context.getAsArrayType(Old->getType()); 3397 const ArrayType *NewArray = Context.getAsArrayType(New->getType()); 3398 3399 // We are merging a variable declaration New into Old. If it has an array 3400 // bound, and that bound differs from Old's bound, we should diagnose the 3401 // mismatch. 3402 if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) { 3403 for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD; 3404 PrevVD = PrevVD->getPreviousDecl()) { 3405 const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType()); 3406 if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType()) 3407 continue; 3408 3409 if (!Context.hasSameType(NewArray, PrevVDTy)) 3410 return diagnoseVarDeclTypeMismatch(*this, New, PrevVD); 3411 } 3412 } 3413 3414 if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) { 3415 if (Context.hasSameType(OldArray->getElementType(), 3416 NewArray->getElementType())) 3417 MergedT = New->getType(); 3418 } 3419 // FIXME: Check visibility. New is hidden but has a complete type. If New 3420 // has no array bound, it should not inherit one from Old, if Old is not 3421 // visible. 3422 else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) { 3423 if (Context.hasSameType(OldArray->getElementType(), 3424 NewArray->getElementType())) 3425 MergedT = Old->getType(); 3426 } 3427 } 3428 else if (New->getType()->isObjCObjectPointerType() && 3429 Old->getType()->isObjCObjectPointerType()) { 3430 MergedT = Context.mergeObjCGCQualifiers(New->getType(), 3431 Old->getType()); 3432 } 3433 } else { 3434 // C 6.2.7p2: 3435 // All declarations that refer to the same object or function shall have 3436 // compatible type. 3437 MergedT = Context.mergeTypes(New->getType(), Old->getType()); 3438 } 3439 if (MergedT.isNull()) { 3440 // It's OK if we couldn't merge types if either type is dependent, for a 3441 // block-scope variable. In other cases (static data members of class 3442 // templates, variable templates, ...), we require the types to be 3443 // equivalent. 3444 // FIXME: The C++ standard doesn't say anything about this. 3445 if ((New->getType()->isDependentType() || 3446 Old->getType()->isDependentType()) && New->isLocalVarDecl()) { 3447 // If the old type was dependent, we can't merge with it, so the new type 3448 // becomes dependent for now. We'll reproduce the original type when we 3449 // instantiate the TypeSourceInfo for the variable. 3450 if (!New->getType()->isDependentType() && MergeTypeWithOld) 3451 New->setType(Context.DependentTy); 3452 return; 3453 } 3454 return diagnoseVarDeclTypeMismatch(*this, New, Old); 3455 } 3456 3457 // Don't actually update the type on the new declaration if the old 3458 // declaration was an extern declaration in a different scope. 3459 if (MergeTypeWithOld) 3460 New->setType(MergedT); 3461 } 3462 3463 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD, 3464 LookupResult &Previous) { 3465 // C11 6.2.7p4: 3466 // For an identifier with internal or external linkage declared 3467 // in a scope in which a prior declaration of that identifier is 3468 // visible, if the prior declaration specifies internal or 3469 // external linkage, the type of the identifier at the later 3470 // declaration becomes the composite type. 3471 // 3472 // If the variable isn't visible, we do not merge with its type. 3473 if (Previous.isShadowed()) 3474 return false; 3475 3476 if (S.getLangOpts().CPlusPlus) { 3477 // C++11 [dcl.array]p3: 3478 // If there is a preceding declaration of the entity in the same 3479 // scope in which the bound was specified, an omitted array bound 3480 // is taken to be the same as in that earlier declaration. 3481 return NewVD->isPreviousDeclInSameBlockScope() || 3482 (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() && 3483 !NewVD->getLexicalDeclContext()->isFunctionOrMethod()); 3484 } else { 3485 // If the old declaration was function-local, don't merge with its 3486 // type unless we're in the same function. 3487 return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() || 3488 OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext(); 3489 } 3490 } 3491 3492 /// MergeVarDecl - We just parsed a variable 'New' which has the same name 3493 /// and scope as a previous declaration 'Old'. Figure out how to resolve this 3494 /// situation, merging decls or emitting diagnostics as appropriate. 3495 /// 3496 /// Tentative definition rules (C99 6.9.2p2) are checked by 3497 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative 3498 /// definitions here, since the initializer hasn't been attached. 3499 /// 3500 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) { 3501 // If the new decl is already invalid, don't do any other checking. 3502 if (New->isInvalidDecl()) 3503 return; 3504 3505 if (!shouldLinkPossiblyHiddenDecl(Previous, New)) 3506 return; 3507 3508 VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate(); 3509 3510 // Verify the old decl was also a variable or variable template. 3511 VarDecl *Old = nullptr; 3512 VarTemplateDecl *OldTemplate = nullptr; 3513 if (Previous.isSingleResult()) { 3514 if (NewTemplate) { 3515 OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl()); 3516 Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr; 3517 3518 if (auto *Shadow = 3519 dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl())) 3520 if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate)) 3521 return New->setInvalidDecl(); 3522 } else { 3523 Old = dyn_cast<VarDecl>(Previous.getFoundDecl()); 3524 3525 if (auto *Shadow = 3526 dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl())) 3527 if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New)) 3528 return New->setInvalidDecl(); 3529 } 3530 } 3531 if (!Old) { 3532 Diag(New->getLocation(), diag::err_redefinition_different_kind) 3533 << New->getDeclName(); 3534 Diag(Previous.getRepresentativeDecl()->getLocation(), 3535 diag::note_previous_definition); 3536 return New->setInvalidDecl(); 3537 } 3538 3539 // Ensure the template parameters are compatible. 3540 if (NewTemplate && 3541 !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(), 3542 OldTemplate->getTemplateParameters(), 3543 /*Complain=*/true, TPL_TemplateMatch)) 3544 return New->setInvalidDecl(); 3545 3546 // C++ [class.mem]p1: 3547 // A member shall not be declared twice in the member-specification [...] 3548 // 3549 // Here, we need only consider static data members. 3550 if (Old->isStaticDataMember() && !New->isOutOfLine()) { 3551 Diag(New->getLocation(), diag::err_duplicate_member) 3552 << New->getIdentifier(); 3553 Diag(Old->getLocation(), diag::note_previous_declaration); 3554 New->setInvalidDecl(); 3555 } 3556 3557 mergeDeclAttributes(New, Old); 3558 // Warn if an already-declared variable is made a weak_import in a subsequent 3559 // declaration 3560 if (New->hasAttr<WeakImportAttr>() && 3561 Old->getStorageClass() == SC_None && 3562 !Old->hasAttr<WeakImportAttr>()) { 3563 Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName(); 3564 Diag(Old->getLocation(), diag::note_previous_definition); 3565 // Remove weak_import attribute on new declaration. 3566 New->dropAttr<WeakImportAttr>(); 3567 } 3568 3569 if (New->hasAttr<InternalLinkageAttr>() && 3570 !Old->hasAttr<InternalLinkageAttr>()) { 3571 Diag(New->getLocation(), diag::err_internal_linkage_redeclaration) 3572 << New->getDeclName(); 3573 Diag(Old->getLocation(), diag::note_previous_definition); 3574 New->dropAttr<InternalLinkageAttr>(); 3575 } 3576 3577 // Merge the types. 3578 VarDecl *MostRecent = Old->getMostRecentDecl(); 3579 if (MostRecent != Old) { 3580 MergeVarDeclTypes(New, MostRecent, 3581 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); 3582 if (New->isInvalidDecl()) 3583 return; 3584 } 3585 3586 MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous)); 3587 if (New->isInvalidDecl()) 3588 return; 3589 3590 diag::kind PrevDiag; 3591 SourceLocation OldLocation; 3592 std::tie(PrevDiag, OldLocation) = 3593 getNoteDiagForInvalidRedeclaration(Old, New); 3594 3595 // [dcl.stc]p8: Check if we have a non-static decl followed by a static. 3596 if (New->getStorageClass() == SC_Static && 3597 !New->isStaticDataMember() && 3598 Old->hasExternalFormalLinkage()) { 3599 if (getLangOpts().MicrosoftExt) { 3600 Diag(New->getLocation(), diag::ext_static_non_static) 3601 << New->getDeclName(); 3602 Diag(OldLocation, PrevDiag); 3603 } else { 3604 Diag(New->getLocation(), diag::err_static_non_static) 3605 << New->getDeclName(); 3606 Diag(OldLocation, PrevDiag); 3607 return New->setInvalidDecl(); 3608 } 3609 } 3610 // C99 6.2.2p4: 3611 // For an identifier declared with the storage-class specifier 3612 // extern in a scope in which a prior declaration of that 3613 // identifier is visible,23) if the prior declaration specifies 3614 // internal or external linkage, the linkage of the identifier at 3615 // the later declaration is the same as the linkage specified at 3616 // the prior declaration. If no prior declaration is visible, or 3617 // if the prior declaration specifies no linkage, then the 3618 // identifier has external linkage. 3619 if (New->hasExternalStorage() && Old->hasLinkage()) 3620 /* Okay */; 3621 else if (New->getCanonicalDecl()->getStorageClass() != SC_Static && 3622 !New->isStaticDataMember() && 3623 Old->getCanonicalDecl()->getStorageClass() == SC_Static) { 3624 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName(); 3625 Diag(OldLocation, PrevDiag); 3626 return New->setInvalidDecl(); 3627 } 3628 3629 // Check if extern is followed by non-extern and vice-versa. 3630 if (New->hasExternalStorage() && 3631 !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) { 3632 Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName(); 3633 Diag(OldLocation, PrevDiag); 3634 return New->setInvalidDecl(); 3635 } 3636 if (Old->hasLinkage() && New->isLocalVarDeclOrParm() && 3637 !New->hasExternalStorage()) { 3638 Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName(); 3639 Diag(OldLocation, PrevDiag); 3640 return New->setInvalidDecl(); 3641 } 3642 3643 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup. 3644 3645 // FIXME: The test for external storage here seems wrong? We still 3646 // need to check for mismatches. 3647 if (!New->hasExternalStorage() && !New->isFileVarDecl() && 3648 // Don't complain about out-of-line definitions of static members. 3649 !(Old->getLexicalDeclContext()->isRecord() && 3650 !New->getLexicalDeclContext()->isRecord())) { 3651 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName(); 3652 Diag(OldLocation, PrevDiag); 3653 return New->setInvalidDecl(); 3654 } 3655 3656 if (New->isInline() && !Old->getMostRecentDecl()->isInline()) { 3657 if (VarDecl *Def = Old->getDefinition()) { 3658 // C++1z [dcl.fcn.spec]p4: 3659 // If the definition of a variable appears in a translation unit before 3660 // its first declaration as inline, the program is ill-formed. 3661 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New; 3662 Diag(Def->getLocation(), diag::note_previous_definition); 3663 } 3664 } 3665 3666 // If this redeclaration makes the function inline, we may need to add it to 3667 // UndefinedButUsed. 3668 if (!Old->isInline() && New->isInline() && Old->isUsed(false) && 3669 !Old->getDefinition() && !New->isThisDeclarationADefinition()) 3670 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 3671 SourceLocation())); 3672 3673 if (New->getTLSKind() != Old->getTLSKind()) { 3674 if (!Old->getTLSKind()) { 3675 Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName(); 3676 Diag(OldLocation, PrevDiag); 3677 } else if (!New->getTLSKind()) { 3678 Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName(); 3679 Diag(OldLocation, PrevDiag); 3680 } else { 3681 // Do not allow redeclaration to change the variable between requiring 3682 // static and dynamic initialization. 3683 // FIXME: GCC allows this, but uses the TLS keyword on the first 3684 // declaration to determine the kind. Do we need to be compatible here? 3685 Diag(New->getLocation(), diag::err_thread_thread_different_kind) 3686 << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic); 3687 Diag(OldLocation, PrevDiag); 3688 } 3689 } 3690 3691 // C++ doesn't have tentative definitions, so go right ahead and check here. 3692 if (getLangOpts().CPlusPlus && 3693 New->isThisDeclarationADefinition() == VarDecl::Definition) { 3694 if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() && 3695 Old->getCanonicalDecl()->isConstexpr()) { 3696 // This definition won't be a definition any more once it's been merged. 3697 Diag(New->getLocation(), 3698 diag::warn_deprecated_redundant_constexpr_static_def); 3699 } else if (VarDecl *Def = Old->getDefinition()) { 3700 if (checkVarDeclRedefinition(Def, New)) 3701 return; 3702 } 3703 } 3704 3705 if (haveIncompatibleLanguageLinkages(Old, New)) { 3706 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 3707 Diag(OldLocation, PrevDiag); 3708 New->setInvalidDecl(); 3709 return; 3710 } 3711 3712 // Merge "used" flag. 3713 if (Old->getMostRecentDecl()->isUsed(false)) 3714 New->setIsUsed(); 3715 3716 // Keep a chain of previous declarations. 3717 New->setPreviousDecl(Old); 3718 if (NewTemplate) 3719 NewTemplate->setPreviousDecl(OldTemplate); 3720 3721 // Inherit access appropriately. 3722 New->setAccess(Old->getAccess()); 3723 if (NewTemplate) 3724 NewTemplate->setAccess(New->getAccess()); 3725 3726 if (Old->isInline()) 3727 New->setImplicitlyInline(); 3728 } 3729 3730 /// We've just determined that \p Old and \p New both appear to be definitions 3731 /// of the same variable. Either diagnose or fix the problem. 3732 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) { 3733 if (!hasVisibleDefinition(Old) && 3734 (New->getFormalLinkage() == InternalLinkage || 3735 New->isInline() || 3736 New->getDescribedVarTemplate() || 3737 New->getNumTemplateParameterLists() || 3738 New->getDeclContext()->isDependentContext())) { 3739 // The previous definition is hidden, and multiple definitions are 3740 // permitted (in separate TUs). Demote this to a declaration. 3741 New->demoteThisDefinitionToDeclaration(); 3742 3743 // Make the canonical definition visible. 3744 if (auto *OldTD = Old->getDescribedVarTemplate()) 3745 makeMergedDefinitionVisible(OldTD, New->getLocation()); 3746 makeMergedDefinitionVisible(Old, New->getLocation()); 3747 return false; 3748 } else { 3749 Diag(New->getLocation(), diag::err_redefinition) << New; 3750 Diag(Old->getLocation(), diag::note_previous_definition); 3751 New->setInvalidDecl(); 3752 return true; 3753 } 3754 } 3755 3756 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 3757 /// no declarator (e.g. "struct foo;") is parsed. 3758 Decl * 3759 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, 3760 RecordDecl *&AnonRecord) { 3761 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false, 3762 AnonRecord); 3763 } 3764 3765 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to 3766 // disambiguate entities defined in different scopes. 3767 // While the VS2015 ABI fixes potential miscompiles, it is also breaks 3768 // compatibility. 3769 // We will pick our mangling number depending on which version of MSVC is being 3770 // targeted. 3771 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) { 3772 return LO.isCompatibleWithMSVC(LangOptions::MSVC2015) 3773 ? S->getMSCurManglingNumber() 3774 : S->getMSLastManglingNumber(); 3775 } 3776 3777 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) { 3778 if (!Context.getLangOpts().CPlusPlus) 3779 return; 3780 3781 if (isa<CXXRecordDecl>(Tag->getParent())) { 3782 // If this tag is the direct child of a class, number it if 3783 // it is anonymous. 3784 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl()) 3785 return; 3786 MangleNumberingContext &MCtx = 3787 Context.getManglingNumberContext(Tag->getParent()); 3788 Context.setManglingNumber( 3789 Tag, MCtx.getManglingNumber( 3790 Tag, getMSManglingNumber(getLangOpts(), TagScope))); 3791 return; 3792 } 3793 3794 // If this tag isn't a direct child of a class, number it if it is local. 3795 Decl *ManglingContextDecl; 3796 if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext( 3797 Tag->getDeclContext(), ManglingContextDecl)) { 3798 Context.setManglingNumber( 3799 Tag, MCtx->getManglingNumber( 3800 Tag, getMSManglingNumber(getLangOpts(), TagScope))); 3801 } 3802 } 3803 3804 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec, 3805 TypedefNameDecl *NewTD) { 3806 if (TagFromDeclSpec->isInvalidDecl()) 3807 return; 3808 3809 // Do nothing if the tag already has a name for linkage purposes. 3810 if (TagFromDeclSpec->hasNameForLinkage()) 3811 return; 3812 3813 // A well-formed anonymous tag must always be a TUK_Definition. 3814 assert(TagFromDeclSpec->isThisDeclarationADefinition()); 3815 3816 // The type must match the tag exactly; no qualifiers allowed. 3817 if (!Context.hasSameType(NewTD->getUnderlyingType(), 3818 Context.getTagDeclType(TagFromDeclSpec))) { 3819 if (getLangOpts().CPlusPlus) 3820 Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD); 3821 return; 3822 } 3823 3824 // If we've already computed linkage for the anonymous tag, then 3825 // adding a typedef name for the anonymous decl can change that 3826 // linkage, which might be a serious problem. Diagnose this as 3827 // unsupported and ignore the typedef name. TODO: we should 3828 // pursue this as a language defect and establish a formal rule 3829 // for how to handle it. 3830 if (TagFromDeclSpec->hasLinkageBeenComputed()) { 3831 Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage); 3832 3833 SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart(); 3834 tagLoc = getLocForEndOfToken(tagLoc); 3835 3836 llvm::SmallString<40> textToInsert; 3837 textToInsert += ' '; 3838 textToInsert += NewTD->getIdentifier()->getName(); 3839 Diag(tagLoc, diag::note_typedef_changes_linkage) 3840 << FixItHint::CreateInsertion(tagLoc, textToInsert); 3841 return; 3842 } 3843 3844 // Otherwise, set this is the anon-decl typedef for the tag. 3845 TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD); 3846 } 3847 3848 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) { 3849 switch (T) { 3850 case DeclSpec::TST_class: 3851 return 0; 3852 case DeclSpec::TST_struct: 3853 return 1; 3854 case DeclSpec::TST_interface: 3855 return 2; 3856 case DeclSpec::TST_union: 3857 return 3; 3858 case DeclSpec::TST_enum: 3859 return 4; 3860 default: 3861 llvm_unreachable("unexpected type specifier"); 3862 } 3863 } 3864 3865 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 3866 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template 3867 /// parameters to cope with template friend declarations. 3868 Decl * 3869 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, 3870 MultiTemplateParamsArg TemplateParams, 3871 bool IsExplicitInstantiation, 3872 RecordDecl *&AnonRecord) { 3873 Decl *TagD = nullptr; 3874 TagDecl *Tag = nullptr; 3875 if (DS.getTypeSpecType() == DeclSpec::TST_class || 3876 DS.getTypeSpecType() == DeclSpec::TST_struct || 3877 DS.getTypeSpecType() == DeclSpec::TST_interface || 3878 DS.getTypeSpecType() == DeclSpec::TST_union || 3879 DS.getTypeSpecType() == DeclSpec::TST_enum) { 3880 TagD = DS.getRepAsDecl(); 3881 3882 if (!TagD) // We probably had an error 3883 return nullptr; 3884 3885 // Note that the above type specs guarantee that the 3886 // type rep is a Decl, whereas in many of the others 3887 // it's a Type. 3888 if (isa<TagDecl>(TagD)) 3889 Tag = cast<TagDecl>(TagD); 3890 else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD)) 3891 Tag = CTD->getTemplatedDecl(); 3892 } 3893 3894 if (Tag) { 3895 handleTagNumbering(Tag, S); 3896 Tag->setFreeStanding(); 3897 if (Tag->isInvalidDecl()) 3898 return Tag; 3899 } 3900 3901 if (unsigned TypeQuals = DS.getTypeQualifiers()) { 3902 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object 3903 // or incomplete types shall not be restrict-qualified." 3904 if (TypeQuals & DeclSpec::TQ_restrict) 3905 Diag(DS.getRestrictSpecLoc(), 3906 diag::err_typecheck_invalid_restrict_not_pointer_noarg) 3907 << DS.getSourceRange(); 3908 } 3909 3910 if (DS.isInlineSpecified()) 3911 Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function) 3912 << getLangOpts().CPlusPlus1z; 3913 3914 if (DS.isConstexprSpecified()) { 3915 // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations 3916 // and definitions of functions and variables. 3917 if (Tag) 3918 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag) 3919 << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()); 3920 else 3921 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators); 3922 // Don't emit warnings after this error. 3923 return TagD; 3924 } 3925 3926 if (DS.isConceptSpecified()) { 3927 // C++ Concepts TS [dcl.spec.concept]p1: A concept definition refers to 3928 // either a function concept and its definition or a variable concept and 3929 // its initializer. 3930 Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind); 3931 return TagD; 3932 } 3933 3934 DiagnoseFunctionSpecifiers(DS); 3935 3936 if (DS.isFriendSpecified()) { 3937 // If we're dealing with a decl but not a TagDecl, assume that 3938 // whatever routines created it handled the friendship aspect. 3939 if (TagD && !Tag) 3940 return nullptr; 3941 return ActOnFriendTypeDecl(S, DS, TemplateParams); 3942 } 3943 3944 const CXXScopeSpec &SS = DS.getTypeSpecScope(); 3945 bool IsExplicitSpecialization = 3946 !TemplateParams.empty() && TemplateParams.back()->size() == 0; 3947 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() && 3948 !IsExplicitInstantiation && !IsExplicitSpecialization && 3949 !isa<ClassTemplatePartialSpecializationDecl>(Tag)) { 3950 // Per C++ [dcl.type.elab]p1, a class declaration cannot have a 3951 // nested-name-specifier unless it is an explicit instantiation 3952 // or an explicit specialization. 3953 // 3954 // FIXME: We allow class template partial specializations here too, per the 3955 // obvious intent of DR1819. 3956 // 3957 // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either. 3958 Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier) 3959 << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange(); 3960 return nullptr; 3961 } 3962 3963 // Track whether this decl-specifier declares anything. 3964 bool DeclaresAnything = true; 3965 3966 // Handle anonymous struct definitions. 3967 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) { 3968 if (!Record->getDeclName() && Record->isCompleteDefinition() && 3969 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) { 3970 if (getLangOpts().CPlusPlus || 3971 Record->getDeclContext()->isRecord()) { 3972 // If CurContext is a DeclContext that can contain statements, 3973 // RecursiveASTVisitor won't visit the decls that 3974 // BuildAnonymousStructOrUnion() will put into CurContext. 3975 // Also store them here so that they can be part of the 3976 // DeclStmt that gets created in this case. 3977 // FIXME: Also return the IndirectFieldDecls created by 3978 // BuildAnonymousStructOr union, for the same reason? 3979 if (CurContext->isFunctionOrMethod()) 3980 AnonRecord = Record; 3981 return BuildAnonymousStructOrUnion(S, DS, AS, Record, 3982 Context.getPrintingPolicy()); 3983 } 3984 3985 DeclaresAnything = false; 3986 } 3987 } 3988 3989 // C11 6.7.2.1p2: 3990 // A struct-declaration that does not declare an anonymous structure or 3991 // anonymous union shall contain a struct-declarator-list. 3992 // 3993 // This rule also existed in C89 and C99; the grammar for struct-declaration 3994 // did not permit a struct-declaration without a struct-declarator-list. 3995 if (!getLangOpts().CPlusPlus && CurContext->isRecord() && 3996 DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) { 3997 // Check for Microsoft C extension: anonymous struct/union member. 3998 // Handle 2 kinds of anonymous struct/union: 3999 // struct STRUCT; 4000 // union UNION; 4001 // and 4002 // STRUCT_TYPE; <- where STRUCT_TYPE is a typedef struct. 4003 // UNION_TYPE; <- where UNION_TYPE is a typedef union. 4004 if ((Tag && Tag->getDeclName()) || 4005 DS.getTypeSpecType() == DeclSpec::TST_typename) { 4006 RecordDecl *Record = nullptr; 4007 if (Tag) 4008 Record = dyn_cast<RecordDecl>(Tag); 4009 else if (const RecordType *RT = 4010 DS.getRepAsType().get()->getAsStructureType()) 4011 Record = RT->getDecl(); 4012 else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType()) 4013 Record = UT->getDecl(); 4014 4015 if (Record && getLangOpts().MicrosoftExt) { 4016 Diag(DS.getLocStart(), diag::ext_ms_anonymous_record) 4017 << Record->isUnion() << DS.getSourceRange(); 4018 return BuildMicrosoftCAnonymousStruct(S, DS, Record); 4019 } 4020 4021 DeclaresAnything = false; 4022 } 4023 } 4024 4025 // Skip all the checks below if we have a type error. 4026 if (DS.getTypeSpecType() == DeclSpec::TST_error || 4027 (TagD && TagD->isInvalidDecl())) 4028 return TagD; 4029 4030 if (getLangOpts().CPlusPlus && 4031 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) 4032 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag)) 4033 if (Enum->enumerator_begin() == Enum->enumerator_end() && 4034 !Enum->getIdentifier() && !Enum->isInvalidDecl()) 4035 DeclaresAnything = false; 4036 4037 if (!DS.isMissingDeclaratorOk()) { 4038 // Customize diagnostic for a typedef missing a name. 4039 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) 4040 Diag(DS.getLocStart(), diag::ext_typedef_without_a_name) 4041 << DS.getSourceRange(); 4042 else 4043 DeclaresAnything = false; 4044 } 4045 4046 if (DS.isModulePrivateSpecified() && 4047 Tag && Tag->getDeclContext()->isFunctionOrMethod()) 4048 Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class) 4049 << Tag->getTagKind() 4050 << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc()); 4051 4052 ActOnDocumentableDecl(TagD); 4053 4054 // C 6.7/2: 4055 // A declaration [...] shall declare at least a declarator [...], a tag, 4056 // or the members of an enumeration. 4057 // C++ [dcl.dcl]p3: 4058 // [If there are no declarators], and except for the declaration of an 4059 // unnamed bit-field, the decl-specifier-seq shall introduce one or more 4060 // names into the program, or shall redeclare a name introduced by a 4061 // previous declaration. 4062 if (!DeclaresAnything) { 4063 // In C, we allow this as a (popular) extension / bug. Don't bother 4064 // producing further diagnostics for redundant qualifiers after this. 4065 Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange(); 4066 return TagD; 4067 } 4068 4069 // C++ [dcl.stc]p1: 4070 // If a storage-class-specifier appears in a decl-specifier-seq, [...] the 4071 // init-declarator-list of the declaration shall not be empty. 4072 // C++ [dcl.fct.spec]p1: 4073 // If a cv-qualifier appears in a decl-specifier-seq, the 4074 // init-declarator-list of the declaration shall not be empty. 4075 // 4076 // Spurious qualifiers here appear to be valid in C. 4077 unsigned DiagID = diag::warn_standalone_specifier; 4078 if (getLangOpts().CPlusPlus) 4079 DiagID = diag::ext_standalone_specifier; 4080 4081 // Note that a linkage-specification sets a storage class, but 4082 // 'extern "C" struct foo;' is actually valid and not theoretically 4083 // useless. 4084 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { 4085 if (SCS == DeclSpec::SCS_mutable) 4086 // Since mutable is not a viable storage class specifier in C, there is 4087 // no reason to treat it as an extension. Instead, diagnose as an error. 4088 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember); 4089 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef) 4090 Diag(DS.getStorageClassSpecLoc(), DiagID) 4091 << DeclSpec::getSpecifierName(SCS); 4092 } 4093 4094 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 4095 Diag(DS.getThreadStorageClassSpecLoc(), DiagID) 4096 << DeclSpec::getSpecifierName(TSCS); 4097 if (DS.getTypeQualifiers()) { 4098 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 4099 Diag(DS.getConstSpecLoc(), DiagID) << "const"; 4100 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 4101 Diag(DS.getConstSpecLoc(), DiagID) << "volatile"; 4102 // Restrict is covered above. 4103 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 4104 Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic"; 4105 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 4106 Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned"; 4107 } 4108 4109 // Warn about ignored type attributes, for example: 4110 // __attribute__((aligned)) struct A; 4111 // Attributes should be placed after tag to apply to type declaration. 4112 if (!DS.getAttributes().empty()) { 4113 DeclSpec::TST TypeSpecType = DS.getTypeSpecType(); 4114 if (TypeSpecType == DeclSpec::TST_class || 4115 TypeSpecType == DeclSpec::TST_struct || 4116 TypeSpecType == DeclSpec::TST_interface || 4117 TypeSpecType == DeclSpec::TST_union || 4118 TypeSpecType == DeclSpec::TST_enum) { 4119 for (AttributeList* attrs = DS.getAttributes().getList(); attrs; 4120 attrs = attrs->getNext()) 4121 Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored) 4122 << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType); 4123 } 4124 } 4125 4126 return TagD; 4127 } 4128 4129 /// We are trying to inject an anonymous member into the given scope; 4130 /// check if there's an existing declaration that can't be overloaded. 4131 /// 4132 /// \return true if this is a forbidden redeclaration 4133 static bool CheckAnonMemberRedeclaration(Sema &SemaRef, 4134 Scope *S, 4135 DeclContext *Owner, 4136 DeclarationName Name, 4137 SourceLocation NameLoc, 4138 bool IsUnion) { 4139 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName, 4140 Sema::ForRedeclaration); 4141 if (!SemaRef.LookupName(R, S)) return false; 4142 4143 // Pick a representative declaration. 4144 NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl(); 4145 assert(PrevDecl && "Expected a non-null Decl"); 4146 4147 if (!SemaRef.isDeclInScope(PrevDecl, Owner, S)) 4148 return false; 4149 4150 SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl) 4151 << IsUnion << Name; 4152 SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 4153 4154 return true; 4155 } 4156 4157 /// InjectAnonymousStructOrUnionMembers - Inject the members of the 4158 /// anonymous struct or union AnonRecord into the owning context Owner 4159 /// and scope S. This routine will be invoked just after we realize 4160 /// that an unnamed union or struct is actually an anonymous union or 4161 /// struct, e.g., 4162 /// 4163 /// @code 4164 /// union { 4165 /// int i; 4166 /// float f; 4167 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and 4168 /// // f into the surrounding scope.x 4169 /// @endcode 4170 /// 4171 /// This routine is recursive, injecting the names of nested anonymous 4172 /// structs/unions into the owning context and scope as well. 4173 static bool 4174 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner, 4175 RecordDecl *AnonRecord, AccessSpecifier AS, 4176 SmallVectorImpl<NamedDecl *> &Chaining) { 4177 bool Invalid = false; 4178 4179 // Look every FieldDecl and IndirectFieldDecl with a name. 4180 for (auto *D : AnonRecord->decls()) { 4181 if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) && 4182 cast<NamedDecl>(D)->getDeclName()) { 4183 ValueDecl *VD = cast<ValueDecl>(D); 4184 if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(), 4185 VD->getLocation(), 4186 AnonRecord->isUnion())) { 4187 // C++ [class.union]p2: 4188 // The names of the members of an anonymous union shall be 4189 // distinct from the names of any other entity in the 4190 // scope in which the anonymous union is declared. 4191 Invalid = true; 4192 } else { 4193 // C++ [class.union]p2: 4194 // For the purpose of name lookup, after the anonymous union 4195 // definition, the members of the anonymous union are 4196 // considered to have been defined in the scope in which the 4197 // anonymous union is declared. 4198 unsigned OldChainingSize = Chaining.size(); 4199 if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD)) 4200 Chaining.append(IF->chain_begin(), IF->chain_end()); 4201 else 4202 Chaining.push_back(VD); 4203 4204 assert(Chaining.size() >= 2); 4205 NamedDecl **NamedChain = 4206 new (SemaRef.Context)NamedDecl*[Chaining.size()]; 4207 for (unsigned i = 0; i < Chaining.size(); i++) 4208 NamedChain[i] = Chaining[i]; 4209 4210 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create( 4211 SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(), 4212 VD->getType(), {NamedChain, Chaining.size()}); 4213 4214 for (const auto *Attr : VD->attrs()) 4215 IndirectField->addAttr(Attr->clone(SemaRef.Context)); 4216 4217 IndirectField->setAccess(AS); 4218 IndirectField->setImplicit(); 4219 SemaRef.PushOnScopeChains(IndirectField, S); 4220 4221 // That includes picking up the appropriate access specifier. 4222 if (AS != AS_none) IndirectField->setAccess(AS); 4223 4224 Chaining.resize(OldChainingSize); 4225 } 4226 } 4227 } 4228 4229 return Invalid; 4230 } 4231 4232 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to 4233 /// a VarDecl::StorageClass. Any error reporting is up to the caller: 4234 /// illegal input values are mapped to SC_None. 4235 static StorageClass 4236 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) { 4237 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec(); 4238 assert(StorageClassSpec != DeclSpec::SCS_typedef && 4239 "Parser allowed 'typedef' as storage class VarDecl."); 4240 switch (StorageClassSpec) { 4241 case DeclSpec::SCS_unspecified: return SC_None; 4242 case DeclSpec::SCS_extern: 4243 if (DS.isExternInLinkageSpec()) 4244 return SC_None; 4245 return SC_Extern; 4246 case DeclSpec::SCS_static: return SC_Static; 4247 case DeclSpec::SCS_auto: return SC_Auto; 4248 case DeclSpec::SCS_register: return SC_Register; 4249 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 4250 // Illegal SCSs map to None: error reporting is up to the caller. 4251 case DeclSpec::SCS_mutable: // Fall through. 4252 case DeclSpec::SCS_typedef: return SC_None; 4253 } 4254 llvm_unreachable("unknown storage class specifier"); 4255 } 4256 4257 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) { 4258 assert(Record->hasInClassInitializer()); 4259 4260 for (const auto *I : Record->decls()) { 4261 const auto *FD = dyn_cast<FieldDecl>(I); 4262 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) 4263 FD = IFD->getAnonField(); 4264 if (FD && FD->hasInClassInitializer()) 4265 return FD->getLocation(); 4266 } 4267 4268 llvm_unreachable("couldn't find in-class initializer"); 4269 } 4270 4271 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent, 4272 SourceLocation DefaultInitLoc) { 4273 if (!Parent->isUnion() || !Parent->hasInClassInitializer()) 4274 return; 4275 4276 S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization); 4277 S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0; 4278 } 4279 4280 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent, 4281 CXXRecordDecl *AnonUnion) { 4282 if (!Parent->isUnion() || !Parent->hasInClassInitializer()) 4283 return; 4284 4285 checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion)); 4286 } 4287 4288 /// BuildAnonymousStructOrUnion - Handle the declaration of an 4289 /// anonymous structure or union. Anonymous unions are a C++ feature 4290 /// (C++ [class.union]) and a C11 feature; anonymous structures 4291 /// are a C11 feature and GNU C++ extension. 4292 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, 4293 AccessSpecifier AS, 4294 RecordDecl *Record, 4295 const PrintingPolicy &Policy) { 4296 DeclContext *Owner = Record->getDeclContext(); 4297 4298 // Diagnose whether this anonymous struct/union is an extension. 4299 if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11) 4300 Diag(Record->getLocation(), diag::ext_anonymous_union); 4301 else if (!Record->isUnion() && getLangOpts().CPlusPlus) 4302 Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct); 4303 else if (!Record->isUnion() && !getLangOpts().C11) 4304 Diag(Record->getLocation(), diag::ext_c11_anonymous_struct); 4305 4306 // C and C++ require different kinds of checks for anonymous 4307 // structs/unions. 4308 bool Invalid = false; 4309 if (getLangOpts().CPlusPlus) { 4310 const char *PrevSpec = nullptr; 4311 unsigned DiagID; 4312 if (Record->isUnion()) { 4313 // C++ [class.union]p6: 4314 // Anonymous unions declared in a named namespace or in the 4315 // global namespace shall be declared static. 4316 if (DS.getStorageClassSpec() != DeclSpec::SCS_static && 4317 (isa<TranslationUnitDecl>(Owner) || 4318 (isa<NamespaceDecl>(Owner) && 4319 cast<NamespaceDecl>(Owner)->getDeclName()))) { 4320 Diag(Record->getLocation(), diag::err_anonymous_union_not_static) 4321 << FixItHint::CreateInsertion(Record->getLocation(), "static "); 4322 4323 // Recover by adding 'static'. 4324 DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(), 4325 PrevSpec, DiagID, Policy); 4326 } 4327 // C++ [class.union]p6: 4328 // A storage class is not allowed in a declaration of an 4329 // anonymous union in a class scope. 4330 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && 4331 isa<RecordDecl>(Owner)) { 4332 Diag(DS.getStorageClassSpecLoc(), 4333 diag::err_anonymous_union_with_storage_spec) 4334 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 4335 4336 // Recover by removing the storage specifier. 4337 DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified, 4338 SourceLocation(), 4339 PrevSpec, DiagID, Context.getPrintingPolicy()); 4340 } 4341 } 4342 4343 // Ignore const/volatile/restrict qualifiers. 4344 if (DS.getTypeQualifiers()) { 4345 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 4346 Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified) 4347 << Record->isUnion() << "const" 4348 << FixItHint::CreateRemoval(DS.getConstSpecLoc()); 4349 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 4350 Diag(DS.getVolatileSpecLoc(), 4351 diag::ext_anonymous_struct_union_qualified) 4352 << Record->isUnion() << "volatile" 4353 << FixItHint::CreateRemoval(DS.getVolatileSpecLoc()); 4354 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) 4355 Diag(DS.getRestrictSpecLoc(), 4356 diag::ext_anonymous_struct_union_qualified) 4357 << Record->isUnion() << "restrict" 4358 << FixItHint::CreateRemoval(DS.getRestrictSpecLoc()); 4359 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 4360 Diag(DS.getAtomicSpecLoc(), 4361 diag::ext_anonymous_struct_union_qualified) 4362 << Record->isUnion() << "_Atomic" 4363 << FixItHint::CreateRemoval(DS.getAtomicSpecLoc()); 4364 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 4365 Diag(DS.getUnalignedSpecLoc(), 4366 diag::ext_anonymous_struct_union_qualified) 4367 << Record->isUnion() << "__unaligned" 4368 << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc()); 4369 4370 DS.ClearTypeQualifiers(); 4371 } 4372 4373 // C++ [class.union]p2: 4374 // The member-specification of an anonymous union shall only 4375 // define non-static data members. [Note: nested types and 4376 // functions cannot be declared within an anonymous union. ] 4377 for (auto *Mem : Record->decls()) { 4378 if (auto *FD = dyn_cast<FieldDecl>(Mem)) { 4379 // C++ [class.union]p3: 4380 // An anonymous union shall not have private or protected 4381 // members (clause 11). 4382 assert(FD->getAccess() != AS_none); 4383 if (FD->getAccess() != AS_public) { 4384 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member) 4385 << Record->isUnion() << (FD->getAccess() == AS_protected); 4386 Invalid = true; 4387 } 4388 4389 // C++ [class.union]p1 4390 // An object of a class with a non-trivial constructor, a non-trivial 4391 // copy constructor, a non-trivial destructor, or a non-trivial copy 4392 // assignment operator cannot be a member of a union, nor can an 4393 // array of such objects. 4394 if (CheckNontrivialField(FD)) 4395 Invalid = true; 4396 } else if (Mem->isImplicit()) { 4397 // Any implicit members are fine. 4398 } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) { 4399 // This is a type that showed up in an 4400 // elaborated-type-specifier inside the anonymous struct or 4401 // union, but which actually declares a type outside of the 4402 // anonymous struct or union. It's okay. 4403 } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) { 4404 if (!MemRecord->isAnonymousStructOrUnion() && 4405 MemRecord->getDeclName()) { 4406 // Visual C++ allows type definition in anonymous struct or union. 4407 if (getLangOpts().MicrosoftExt) 4408 Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type) 4409 << Record->isUnion(); 4410 else { 4411 // This is a nested type declaration. 4412 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type) 4413 << Record->isUnion(); 4414 Invalid = true; 4415 } 4416 } else { 4417 // This is an anonymous type definition within another anonymous type. 4418 // This is a popular extension, provided by Plan9, MSVC and GCC, but 4419 // not part of standard C++. 4420 Diag(MemRecord->getLocation(), 4421 diag::ext_anonymous_record_with_anonymous_type) 4422 << Record->isUnion(); 4423 } 4424 } else if (isa<AccessSpecDecl>(Mem)) { 4425 // Any access specifier is fine. 4426 } else if (isa<StaticAssertDecl>(Mem)) { 4427 // In C++1z, static_assert declarations are also fine. 4428 } else { 4429 // We have something that isn't a non-static data 4430 // member. Complain about it. 4431 unsigned DK = diag::err_anonymous_record_bad_member; 4432 if (isa<TypeDecl>(Mem)) 4433 DK = diag::err_anonymous_record_with_type; 4434 else if (isa<FunctionDecl>(Mem)) 4435 DK = diag::err_anonymous_record_with_function; 4436 else if (isa<VarDecl>(Mem)) 4437 DK = diag::err_anonymous_record_with_static; 4438 4439 // Visual C++ allows type definition in anonymous struct or union. 4440 if (getLangOpts().MicrosoftExt && 4441 DK == diag::err_anonymous_record_with_type) 4442 Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type) 4443 << Record->isUnion(); 4444 else { 4445 Diag(Mem->getLocation(), DK) << Record->isUnion(); 4446 Invalid = true; 4447 } 4448 } 4449 } 4450 4451 // C++11 [class.union]p8 (DR1460): 4452 // At most one variant member of a union may have a 4453 // brace-or-equal-initializer. 4454 if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() && 4455 Owner->isRecord()) 4456 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner), 4457 cast<CXXRecordDecl>(Record)); 4458 } 4459 4460 if (!Record->isUnion() && !Owner->isRecord()) { 4461 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member) 4462 << getLangOpts().CPlusPlus; 4463 Invalid = true; 4464 } 4465 4466 // Mock up a declarator. 4467 Declarator Dc(DS, Declarator::MemberContext); 4468 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 4469 assert(TInfo && "couldn't build declarator info for anonymous struct/union"); 4470 4471 // Create a declaration for this anonymous struct/union. 4472 NamedDecl *Anon = nullptr; 4473 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) { 4474 Anon = FieldDecl::Create(Context, OwningClass, 4475 DS.getLocStart(), 4476 Record->getLocation(), 4477 /*IdentifierInfo=*/nullptr, 4478 Context.getTypeDeclType(Record), 4479 TInfo, 4480 /*BitWidth=*/nullptr, /*Mutable=*/false, 4481 /*InitStyle=*/ICIS_NoInit); 4482 Anon->setAccess(AS); 4483 if (getLangOpts().CPlusPlus) 4484 FieldCollector->Add(cast<FieldDecl>(Anon)); 4485 } else { 4486 DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); 4487 StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS); 4488 if (SCSpec == DeclSpec::SCS_mutable) { 4489 // mutable can only appear on non-static class members, so it's always 4490 // an error here 4491 Diag(Record->getLocation(), diag::err_mutable_nonmember); 4492 Invalid = true; 4493 SC = SC_None; 4494 } 4495 4496 Anon = VarDecl::Create(Context, Owner, 4497 DS.getLocStart(), 4498 Record->getLocation(), /*IdentifierInfo=*/nullptr, 4499 Context.getTypeDeclType(Record), 4500 TInfo, SC); 4501 4502 // Default-initialize the implicit variable. This initialization will be 4503 // trivial in almost all cases, except if a union member has an in-class 4504 // initializer: 4505 // union { int n = 0; }; 4506 ActOnUninitializedDecl(Anon, /*TypeMayContainAuto=*/false); 4507 } 4508 Anon->setImplicit(); 4509 4510 // Mark this as an anonymous struct/union type. 4511 Record->setAnonymousStructOrUnion(true); 4512 4513 // Add the anonymous struct/union object to the current 4514 // context. We'll be referencing this object when we refer to one of 4515 // its members. 4516 Owner->addDecl(Anon); 4517 4518 // Inject the members of the anonymous struct/union into the owning 4519 // context and into the identifier resolver chain for name lookup 4520 // purposes. 4521 SmallVector<NamedDecl*, 2> Chain; 4522 Chain.push_back(Anon); 4523 4524 if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain)) 4525 Invalid = true; 4526 4527 if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) { 4528 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) { 4529 Decl *ManglingContextDecl; 4530 if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext( 4531 NewVD->getDeclContext(), ManglingContextDecl)) { 4532 Context.setManglingNumber( 4533 NewVD, MCtx->getManglingNumber( 4534 NewVD, getMSManglingNumber(getLangOpts(), S))); 4535 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD)); 4536 } 4537 } 4538 } 4539 4540 if (Invalid) 4541 Anon->setInvalidDecl(); 4542 4543 return Anon; 4544 } 4545 4546 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an 4547 /// Microsoft C anonymous structure. 4548 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx 4549 /// Example: 4550 /// 4551 /// struct A { int a; }; 4552 /// struct B { struct A; int b; }; 4553 /// 4554 /// void foo() { 4555 /// B var; 4556 /// var.a = 3; 4557 /// } 4558 /// 4559 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS, 4560 RecordDecl *Record) { 4561 assert(Record && "expected a record!"); 4562 4563 // Mock up a declarator. 4564 Declarator Dc(DS, Declarator::TypeNameContext); 4565 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 4566 assert(TInfo && "couldn't build declarator info for anonymous struct"); 4567 4568 auto *ParentDecl = cast<RecordDecl>(CurContext); 4569 QualType RecTy = Context.getTypeDeclType(Record); 4570 4571 // Create a declaration for this anonymous struct. 4572 NamedDecl *Anon = FieldDecl::Create(Context, 4573 ParentDecl, 4574 DS.getLocStart(), 4575 DS.getLocStart(), 4576 /*IdentifierInfo=*/nullptr, 4577 RecTy, 4578 TInfo, 4579 /*BitWidth=*/nullptr, /*Mutable=*/false, 4580 /*InitStyle=*/ICIS_NoInit); 4581 Anon->setImplicit(); 4582 4583 // Add the anonymous struct object to the current context. 4584 CurContext->addDecl(Anon); 4585 4586 // Inject the members of the anonymous struct into the current 4587 // context and into the identifier resolver chain for name lookup 4588 // purposes. 4589 SmallVector<NamedDecl*, 2> Chain; 4590 Chain.push_back(Anon); 4591 4592 RecordDecl *RecordDef = Record->getDefinition(); 4593 if (RequireCompleteType(Anon->getLocation(), RecTy, 4594 diag::err_field_incomplete) || 4595 InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef, 4596 AS_none, Chain)) { 4597 Anon->setInvalidDecl(); 4598 ParentDecl->setInvalidDecl(); 4599 } 4600 4601 return Anon; 4602 } 4603 4604 /// GetNameForDeclarator - Determine the full declaration name for the 4605 /// given Declarator. 4606 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) { 4607 return GetNameFromUnqualifiedId(D.getName()); 4608 } 4609 4610 /// \brief Retrieves the declaration name from a parsed unqualified-id. 4611 DeclarationNameInfo 4612 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) { 4613 DeclarationNameInfo NameInfo; 4614 NameInfo.setLoc(Name.StartLocation); 4615 4616 switch (Name.getKind()) { 4617 4618 case UnqualifiedId::IK_ImplicitSelfParam: 4619 case UnqualifiedId::IK_Identifier: 4620 NameInfo.setName(Name.Identifier); 4621 NameInfo.setLoc(Name.StartLocation); 4622 return NameInfo; 4623 4624 case UnqualifiedId::IK_OperatorFunctionId: 4625 NameInfo.setName(Context.DeclarationNames.getCXXOperatorName( 4626 Name.OperatorFunctionId.Operator)); 4627 NameInfo.setLoc(Name.StartLocation); 4628 NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc 4629 = Name.OperatorFunctionId.SymbolLocations[0]; 4630 NameInfo.getInfo().CXXOperatorName.EndOpNameLoc 4631 = Name.EndLocation.getRawEncoding(); 4632 return NameInfo; 4633 4634 case UnqualifiedId::IK_LiteralOperatorId: 4635 NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName( 4636 Name.Identifier)); 4637 NameInfo.setLoc(Name.StartLocation); 4638 NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation); 4639 return NameInfo; 4640 4641 case UnqualifiedId::IK_ConversionFunctionId: { 4642 TypeSourceInfo *TInfo; 4643 QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo); 4644 if (Ty.isNull()) 4645 return DeclarationNameInfo(); 4646 NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName( 4647 Context.getCanonicalType(Ty))); 4648 NameInfo.setLoc(Name.StartLocation); 4649 NameInfo.setNamedTypeInfo(TInfo); 4650 return NameInfo; 4651 } 4652 4653 case UnqualifiedId::IK_ConstructorName: { 4654 TypeSourceInfo *TInfo; 4655 QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo); 4656 if (Ty.isNull()) 4657 return DeclarationNameInfo(); 4658 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 4659 Context.getCanonicalType(Ty))); 4660 NameInfo.setLoc(Name.StartLocation); 4661 NameInfo.setNamedTypeInfo(TInfo); 4662 return NameInfo; 4663 } 4664 4665 case UnqualifiedId::IK_ConstructorTemplateId: { 4666 // In well-formed code, we can only have a constructor 4667 // template-id that refers to the current context, so go there 4668 // to find the actual type being constructed. 4669 CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext); 4670 if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name) 4671 return DeclarationNameInfo(); 4672 4673 // Determine the type of the class being constructed. 4674 QualType CurClassType = Context.getTypeDeclType(CurClass); 4675 4676 // FIXME: Check two things: that the template-id names the same type as 4677 // CurClassType, and that the template-id does not occur when the name 4678 // was qualified. 4679 4680 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 4681 Context.getCanonicalType(CurClassType))); 4682 NameInfo.setLoc(Name.StartLocation); 4683 // FIXME: should we retrieve TypeSourceInfo? 4684 NameInfo.setNamedTypeInfo(nullptr); 4685 return NameInfo; 4686 } 4687 4688 case UnqualifiedId::IK_DestructorName: { 4689 TypeSourceInfo *TInfo; 4690 QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo); 4691 if (Ty.isNull()) 4692 return DeclarationNameInfo(); 4693 NameInfo.setName(Context.DeclarationNames.getCXXDestructorName( 4694 Context.getCanonicalType(Ty))); 4695 NameInfo.setLoc(Name.StartLocation); 4696 NameInfo.setNamedTypeInfo(TInfo); 4697 return NameInfo; 4698 } 4699 4700 case UnqualifiedId::IK_TemplateId: { 4701 TemplateName TName = Name.TemplateId->Template.get(); 4702 SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc; 4703 return Context.getNameForTemplate(TName, TNameLoc); 4704 } 4705 4706 } // switch (Name.getKind()) 4707 4708 llvm_unreachable("Unknown name kind"); 4709 } 4710 4711 static QualType getCoreType(QualType Ty) { 4712 do { 4713 if (Ty->isPointerType() || Ty->isReferenceType()) 4714 Ty = Ty->getPointeeType(); 4715 else if (Ty->isArrayType()) 4716 Ty = Ty->castAsArrayTypeUnsafe()->getElementType(); 4717 else 4718 return Ty.withoutLocalFastQualifiers(); 4719 } while (true); 4720 } 4721 4722 /// hasSimilarParameters - Determine whether the C++ functions Declaration 4723 /// and Definition have "nearly" matching parameters. This heuristic is 4724 /// used to improve diagnostics in the case where an out-of-line function 4725 /// definition doesn't match any declaration within the class or namespace. 4726 /// Also sets Params to the list of indices to the parameters that differ 4727 /// between the declaration and the definition. If hasSimilarParameters 4728 /// returns true and Params is empty, then all of the parameters match. 4729 static bool hasSimilarParameters(ASTContext &Context, 4730 FunctionDecl *Declaration, 4731 FunctionDecl *Definition, 4732 SmallVectorImpl<unsigned> &Params) { 4733 Params.clear(); 4734 if (Declaration->param_size() != Definition->param_size()) 4735 return false; 4736 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) { 4737 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType(); 4738 QualType DefParamTy = Definition->getParamDecl(Idx)->getType(); 4739 4740 // The parameter types are identical 4741 if (Context.hasSameType(DefParamTy, DeclParamTy)) 4742 continue; 4743 4744 QualType DeclParamBaseTy = getCoreType(DeclParamTy); 4745 QualType DefParamBaseTy = getCoreType(DefParamTy); 4746 const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier(); 4747 const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier(); 4748 4749 if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) || 4750 (DeclTyName && DeclTyName == DefTyName)) 4751 Params.push_back(Idx); 4752 else // The two parameters aren't even close 4753 return false; 4754 } 4755 4756 return true; 4757 } 4758 4759 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given 4760 /// declarator needs to be rebuilt in the current instantiation. 4761 /// Any bits of declarator which appear before the name are valid for 4762 /// consideration here. That's specifically the type in the decl spec 4763 /// and the base type in any member-pointer chunks. 4764 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D, 4765 DeclarationName Name) { 4766 // The types we specifically need to rebuild are: 4767 // - typenames, typeofs, and decltypes 4768 // - types which will become injected class names 4769 // Of course, we also need to rebuild any type referencing such a 4770 // type. It's safest to just say "dependent", but we call out a 4771 // few cases here. 4772 4773 DeclSpec &DS = D.getMutableDeclSpec(); 4774 switch (DS.getTypeSpecType()) { 4775 case DeclSpec::TST_typename: 4776 case DeclSpec::TST_typeofType: 4777 case DeclSpec::TST_underlyingType: 4778 case DeclSpec::TST_atomic: { 4779 // Grab the type from the parser. 4780 TypeSourceInfo *TSI = nullptr; 4781 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI); 4782 if (T.isNull() || !T->isDependentType()) break; 4783 4784 // Make sure there's a type source info. This isn't really much 4785 // of a waste; most dependent types should have type source info 4786 // attached already. 4787 if (!TSI) 4788 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc()); 4789 4790 // Rebuild the type in the current instantiation. 4791 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name); 4792 if (!TSI) return true; 4793 4794 // Store the new type back in the decl spec. 4795 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI); 4796 DS.UpdateTypeRep(LocType); 4797 break; 4798 } 4799 4800 case DeclSpec::TST_decltype: 4801 case DeclSpec::TST_typeofExpr: { 4802 Expr *E = DS.getRepAsExpr(); 4803 ExprResult Result = S.RebuildExprInCurrentInstantiation(E); 4804 if (Result.isInvalid()) return true; 4805 DS.UpdateExprRep(Result.get()); 4806 break; 4807 } 4808 4809 default: 4810 // Nothing to do for these decl specs. 4811 break; 4812 } 4813 4814 // It doesn't matter what order we do this in. 4815 for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) { 4816 DeclaratorChunk &Chunk = D.getTypeObject(I); 4817 4818 // The only type information in the declarator which can come 4819 // before the declaration name is the base type of a member 4820 // pointer. 4821 if (Chunk.Kind != DeclaratorChunk::MemberPointer) 4822 continue; 4823 4824 // Rebuild the scope specifier in-place. 4825 CXXScopeSpec &SS = Chunk.Mem.Scope(); 4826 if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS)) 4827 return true; 4828 } 4829 4830 return false; 4831 } 4832 4833 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) { 4834 D.setFunctionDefinitionKind(FDK_Declaration); 4835 Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg()); 4836 4837 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() && 4838 Dcl && Dcl->getDeclContext()->isFileContext()) 4839 Dcl->setTopLevelDeclInObjCContainer(); 4840 4841 return Dcl; 4842 } 4843 4844 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13: 4845 /// If T is the name of a class, then each of the following shall have a 4846 /// name different from T: 4847 /// - every static data member of class T; 4848 /// - every member function of class T 4849 /// - every member of class T that is itself a type; 4850 /// \returns true if the declaration name violates these rules. 4851 bool Sema::DiagnoseClassNameShadow(DeclContext *DC, 4852 DeclarationNameInfo NameInfo) { 4853 DeclarationName Name = NameInfo.getName(); 4854 4855 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC); 4856 while (Record && Record->isAnonymousStructOrUnion()) 4857 Record = dyn_cast<CXXRecordDecl>(Record->getParent()); 4858 if (Record && Record->getIdentifier() && Record->getDeclName() == Name) { 4859 Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name; 4860 return true; 4861 } 4862 4863 return false; 4864 } 4865 4866 /// \brief Diagnose a declaration whose declarator-id has the given 4867 /// nested-name-specifier. 4868 /// 4869 /// \param SS The nested-name-specifier of the declarator-id. 4870 /// 4871 /// \param DC The declaration context to which the nested-name-specifier 4872 /// resolves. 4873 /// 4874 /// \param Name The name of the entity being declared. 4875 /// 4876 /// \param Loc The location of the name of the entity being declared. 4877 /// 4878 /// \returns true if we cannot safely recover from this error, false otherwise. 4879 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC, 4880 DeclarationName Name, 4881 SourceLocation Loc) { 4882 DeclContext *Cur = CurContext; 4883 while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur)) 4884 Cur = Cur->getParent(); 4885 4886 // If the user provided a superfluous scope specifier that refers back to the 4887 // class in which the entity is already declared, diagnose and ignore it. 4888 // 4889 // class X { 4890 // void X::f(); 4891 // }; 4892 // 4893 // Note, it was once ill-formed to give redundant qualification in all 4894 // contexts, but that rule was removed by DR482. 4895 if (Cur->Equals(DC)) { 4896 if (Cur->isRecord()) { 4897 Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification 4898 : diag::err_member_extra_qualification) 4899 << Name << FixItHint::CreateRemoval(SS.getRange()); 4900 SS.clear(); 4901 } else { 4902 Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name; 4903 } 4904 return false; 4905 } 4906 4907 // Check whether the qualifying scope encloses the scope of the original 4908 // declaration. 4909 if (!Cur->Encloses(DC)) { 4910 if (Cur->isRecord()) 4911 Diag(Loc, diag::err_member_qualification) 4912 << Name << SS.getRange(); 4913 else if (isa<TranslationUnitDecl>(DC)) 4914 Diag(Loc, diag::err_invalid_declarator_global_scope) 4915 << Name << SS.getRange(); 4916 else if (isa<FunctionDecl>(Cur)) 4917 Diag(Loc, diag::err_invalid_declarator_in_function) 4918 << Name << SS.getRange(); 4919 else if (isa<BlockDecl>(Cur)) 4920 Diag(Loc, diag::err_invalid_declarator_in_block) 4921 << Name << SS.getRange(); 4922 else 4923 Diag(Loc, diag::err_invalid_declarator_scope) 4924 << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange(); 4925 4926 return true; 4927 } 4928 4929 if (Cur->isRecord()) { 4930 // Cannot qualify members within a class. 4931 Diag(Loc, diag::err_member_qualification) 4932 << Name << SS.getRange(); 4933 SS.clear(); 4934 4935 // C++ constructors and destructors with incorrect scopes can break 4936 // our AST invariants by having the wrong underlying types. If 4937 // that's the case, then drop this declaration entirely. 4938 if ((Name.getNameKind() == DeclarationName::CXXConstructorName || 4939 Name.getNameKind() == DeclarationName::CXXDestructorName) && 4940 !Context.hasSameType(Name.getCXXNameType(), 4941 Context.getTypeDeclType(cast<CXXRecordDecl>(Cur)))) 4942 return true; 4943 4944 return false; 4945 } 4946 4947 // C++11 [dcl.meaning]p1: 4948 // [...] "The nested-name-specifier of the qualified declarator-id shall 4949 // not begin with a decltype-specifer" 4950 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data()); 4951 while (SpecLoc.getPrefix()) 4952 SpecLoc = SpecLoc.getPrefix(); 4953 if (dyn_cast_or_null<DecltypeType>( 4954 SpecLoc.getNestedNameSpecifier()->getAsType())) 4955 Diag(Loc, diag::err_decltype_in_declarator) 4956 << SpecLoc.getTypeLoc().getSourceRange(); 4957 4958 return false; 4959 } 4960 4961 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D, 4962 MultiTemplateParamsArg TemplateParamLists) { 4963 // TODO: consider using NameInfo for diagnostic. 4964 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 4965 DeclarationName Name = NameInfo.getName(); 4966 4967 // All of these full declarators require an identifier. If it doesn't have 4968 // one, the ParsedFreeStandingDeclSpec action should be used. 4969 if (D.isDecompositionDeclarator()) { 4970 return ActOnDecompositionDeclarator(S, D, TemplateParamLists); 4971 } else if (!Name) { 4972 if (!D.isInvalidType()) // Reject this if we think it is valid. 4973 Diag(D.getDeclSpec().getLocStart(), 4974 diag::err_declarator_need_ident) 4975 << D.getDeclSpec().getSourceRange() << D.getSourceRange(); 4976 return nullptr; 4977 } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType)) 4978 return nullptr; 4979 4980 // The scope passed in may not be a decl scope. Zip up the scope tree until 4981 // we find one that is. 4982 while ((S->getFlags() & Scope::DeclScope) == 0 || 4983 (S->getFlags() & Scope::TemplateParamScope) != 0) 4984 S = S->getParent(); 4985 4986 DeclContext *DC = CurContext; 4987 if (D.getCXXScopeSpec().isInvalid()) 4988 D.setInvalidType(); 4989 else if (D.getCXXScopeSpec().isSet()) { 4990 if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(), 4991 UPPC_DeclarationQualifier)) 4992 return nullptr; 4993 4994 bool EnteringContext = !D.getDeclSpec().isFriendSpecified(); 4995 DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext); 4996 if (!DC || isa<EnumDecl>(DC)) { 4997 // If we could not compute the declaration context, it's because the 4998 // declaration context is dependent but does not refer to a class, 4999 // class template, or class template partial specialization. Complain 5000 // and return early, to avoid the coming semantic disaster. 5001 Diag(D.getIdentifierLoc(), 5002 diag::err_template_qualified_declarator_no_match) 5003 << D.getCXXScopeSpec().getScopeRep() 5004 << D.getCXXScopeSpec().getRange(); 5005 return nullptr; 5006 } 5007 bool IsDependentContext = DC->isDependentContext(); 5008 5009 if (!IsDependentContext && 5010 RequireCompleteDeclContext(D.getCXXScopeSpec(), DC)) 5011 return nullptr; 5012 5013 // If a class is incomplete, do not parse entities inside it. 5014 if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) { 5015 Diag(D.getIdentifierLoc(), 5016 diag::err_member_def_undefined_record) 5017 << Name << DC << D.getCXXScopeSpec().getRange(); 5018 return nullptr; 5019 } 5020 if (!D.getDeclSpec().isFriendSpecified()) { 5021 if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC, 5022 Name, D.getIdentifierLoc())) { 5023 if (DC->isRecord()) 5024 return nullptr; 5025 5026 D.setInvalidType(); 5027 } 5028 } 5029 5030 // Check whether we need to rebuild the type of the given 5031 // declaration in the current instantiation. 5032 if (EnteringContext && IsDependentContext && 5033 TemplateParamLists.size() != 0) { 5034 ContextRAII SavedContext(*this, DC); 5035 if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name)) 5036 D.setInvalidType(); 5037 } 5038 } 5039 5040 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 5041 QualType R = TInfo->getType(); 5042 5043 if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo)) 5044 // If this is a typedef, we'll end up spewing multiple diagnostics. 5045 // Just return early; it's safer. If this is a function, let the 5046 // "constructor cannot have a return type" diagnostic handle it. 5047 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) 5048 return nullptr; 5049 5050 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 5051 UPPC_DeclarationType)) 5052 D.setInvalidType(); 5053 5054 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 5055 ForRedeclaration); 5056 5057 // See if this is a redefinition of a variable in the same scope. 5058 if (!D.getCXXScopeSpec().isSet()) { 5059 bool IsLinkageLookup = false; 5060 bool CreateBuiltins = false; 5061 5062 // If the declaration we're planning to build will be a function 5063 // or object with linkage, then look for another declaration with 5064 // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6). 5065 // 5066 // If the declaration we're planning to build will be declared with 5067 // external linkage in the translation unit, create any builtin with 5068 // the same name. 5069 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) 5070 /* Do nothing*/; 5071 else if (CurContext->isFunctionOrMethod() && 5072 (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern || 5073 R->isFunctionType())) { 5074 IsLinkageLookup = true; 5075 CreateBuiltins = 5076 CurContext->getEnclosingNamespaceContext()->isTranslationUnit(); 5077 } else if (CurContext->getRedeclContext()->isTranslationUnit() && 5078 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static) 5079 CreateBuiltins = true; 5080 5081 if (IsLinkageLookup) 5082 Previous.clear(LookupRedeclarationWithLinkage); 5083 5084 LookupName(Previous, S, CreateBuiltins); 5085 } else { // Something like "int foo::x;" 5086 LookupQualifiedName(Previous, DC); 5087 5088 // C++ [dcl.meaning]p1: 5089 // When the declarator-id is qualified, the declaration shall refer to a 5090 // previously declared member of the class or namespace to which the 5091 // qualifier refers (or, in the case of a namespace, of an element of the 5092 // inline namespace set of that namespace (7.3.1)) or to a specialization 5093 // thereof; [...] 5094 // 5095 // Note that we already checked the context above, and that we do not have 5096 // enough information to make sure that Previous contains the declaration 5097 // we want to match. For example, given: 5098 // 5099 // class X { 5100 // void f(); 5101 // void f(float); 5102 // }; 5103 // 5104 // void X::f(int) { } // ill-formed 5105 // 5106 // In this case, Previous will point to the overload set 5107 // containing the two f's declared in X, but neither of them 5108 // matches. 5109 5110 // C++ [dcl.meaning]p1: 5111 // [...] the member shall not merely have been introduced by a 5112 // using-declaration in the scope of the class or namespace nominated by 5113 // the nested-name-specifier of the declarator-id. 5114 RemoveUsingDecls(Previous); 5115 } 5116 5117 if (Previous.isSingleResult() && 5118 Previous.getFoundDecl()->isTemplateParameter()) { 5119 // Maybe we will complain about the shadowed template parameter. 5120 if (!D.isInvalidType()) 5121 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), 5122 Previous.getFoundDecl()); 5123 5124 // Just pretend that we didn't see the previous declaration. 5125 Previous.clear(); 5126 } 5127 5128 // In C++, the previous declaration we find might be a tag type 5129 // (class or enum). In this case, the new declaration will hide the 5130 // tag type. Note that this does does not apply if we're declaring a 5131 // typedef (C++ [dcl.typedef]p4). 5132 if (Previous.isSingleTagDecl() && 5133 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef) 5134 Previous.clear(); 5135 5136 // Check that there are no default arguments other than in the parameters 5137 // of a function declaration (C++ only). 5138 if (getLangOpts().CPlusPlus) 5139 CheckExtraCXXDefaultArguments(D); 5140 5141 if (D.getDeclSpec().isConceptSpecified()) { 5142 // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be 5143 // applied only to the definition of a function template or variable 5144 // template, declared in namespace scope 5145 if (!TemplateParamLists.size()) { 5146 Diag(D.getDeclSpec().getConceptSpecLoc(), 5147 diag:: err_concept_wrong_decl_kind); 5148 return nullptr; 5149 } 5150 5151 if (!DC->getRedeclContext()->isFileContext()) { 5152 Diag(D.getIdentifierLoc(), 5153 diag::err_concept_decls_may_only_appear_in_namespace_scope); 5154 return nullptr; 5155 } 5156 } 5157 5158 NamedDecl *New; 5159 5160 bool AddToScope = true; 5161 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { 5162 if (TemplateParamLists.size()) { 5163 Diag(D.getIdentifierLoc(), diag::err_template_typedef); 5164 return nullptr; 5165 } 5166 5167 New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous); 5168 } else if (R->isFunctionType()) { 5169 New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous, 5170 TemplateParamLists, 5171 AddToScope); 5172 } else { 5173 New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists, 5174 AddToScope); 5175 } 5176 5177 if (!New) 5178 return nullptr; 5179 5180 // If this has an identifier and is not a function template specialization, 5181 // add it to the scope stack. 5182 if (New->getDeclName() && AddToScope) { 5183 // Only make a locally-scoped extern declaration visible if it is the first 5184 // declaration of this entity. Qualified lookup for such an entity should 5185 // only find this declaration if there is no visible declaration of it. 5186 bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl(); 5187 PushOnScopeChains(New, S, AddToContext); 5188 if (!AddToContext) 5189 CurContext->addHiddenDecl(New); 5190 } 5191 5192 if (isInOpenMPDeclareTargetContext()) 5193 checkDeclIsAllowedInOpenMPTarget(nullptr, New); 5194 5195 return New; 5196 } 5197 5198 /// Helper method to turn variable array types into constant array 5199 /// types in certain situations which would otherwise be errors (for 5200 /// GCC compatibility). 5201 static QualType TryToFixInvalidVariablyModifiedType(QualType T, 5202 ASTContext &Context, 5203 bool &SizeIsNegative, 5204 llvm::APSInt &Oversized) { 5205 // This method tries to turn a variable array into a constant 5206 // array even when the size isn't an ICE. This is necessary 5207 // for compatibility with code that depends on gcc's buggy 5208 // constant expression folding, like struct {char x[(int)(char*)2];} 5209 SizeIsNegative = false; 5210 Oversized = 0; 5211 5212 if (T->isDependentType()) 5213 return QualType(); 5214 5215 QualifierCollector Qs; 5216 const Type *Ty = Qs.strip(T); 5217 5218 if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) { 5219 QualType Pointee = PTy->getPointeeType(); 5220 QualType FixedType = 5221 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative, 5222 Oversized); 5223 if (FixedType.isNull()) return FixedType; 5224 FixedType = Context.getPointerType(FixedType); 5225 return Qs.apply(Context, FixedType); 5226 } 5227 if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) { 5228 QualType Inner = PTy->getInnerType(); 5229 QualType FixedType = 5230 TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative, 5231 Oversized); 5232 if (FixedType.isNull()) return FixedType; 5233 FixedType = Context.getParenType(FixedType); 5234 return Qs.apply(Context, FixedType); 5235 } 5236 5237 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T); 5238 if (!VLATy) 5239 return QualType(); 5240 // FIXME: We should probably handle this case 5241 if (VLATy->getElementType()->isVariablyModifiedType()) 5242 return QualType(); 5243 5244 llvm::APSInt Res; 5245 if (!VLATy->getSizeExpr() || 5246 !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context)) 5247 return QualType(); 5248 5249 // Check whether the array size is negative. 5250 if (Res.isSigned() && Res.isNegative()) { 5251 SizeIsNegative = true; 5252 return QualType(); 5253 } 5254 5255 // Check whether the array is too large to be addressed. 5256 unsigned ActiveSizeBits 5257 = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(), 5258 Res); 5259 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) { 5260 Oversized = Res; 5261 return QualType(); 5262 } 5263 5264 return Context.getConstantArrayType(VLATy->getElementType(), 5265 Res, ArrayType::Normal, 0); 5266 } 5267 5268 static void 5269 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) { 5270 SrcTL = SrcTL.getUnqualifiedLoc(); 5271 DstTL = DstTL.getUnqualifiedLoc(); 5272 if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) { 5273 PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>(); 5274 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(), 5275 DstPTL.getPointeeLoc()); 5276 DstPTL.setStarLoc(SrcPTL.getStarLoc()); 5277 return; 5278 } 5279 if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) { 5280 ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>(); 5281 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(), 5282 DstPTL.getInnerLoc()); 5283 DstPTL.setLParenLoc(SrcPTL.getLParenLoc()); 5284 DstPTL.setRParenLoc(SrcPTL.getRParenLoc()); 5285 return; 5286 } 5287 ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>(); 5288 ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>(); 5289 TypeLoc SrcElemTL = SrcATL.getElementLoc(); 5290 TypeLoc DstElemTL = DstATL.getElementLoc(); 5291 DstElemTL.initializeFullCopy(SrcElemTL); 5292 DstATL.setLBracketLoc(SrcATL.getLBracketLoc()); 5293 DstATL.setSizeExpr(SrcATL.getSizeExpr()); 5294 DstATL.setRBracketLoc(SrcATL.getRBracketLoc()); 5295 } 5296 5297 /// Helper method to turn variable array types into constant array 5298 /// types in certain situations which would otherwise be errors (for 5299 /// GCC compatibility). 5300 static TypeSourceInfo* 5301 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo, 5302 ASTContext &Context, 5303 bool &SizeIsNegative, 5304 llvm::APSInt &Oversized) { 5305 QualType FixedTy 5306 = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context, 5307 SizeIsNegative, Oversized); 5308 if (FixedTy.isNull()) 5309 return nullptr; 5310 TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy); 5311 FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(), 5312 FixedTInfo->getTypeLoc()); 5313 return FixedTInfo; 5314 } 5315 5316 /// \brief Register the given locally-scoped extern "C" declaration so 5317 /// that it can be found later for redeclarations. We include any extern "C" 5318 /// declaration that is not visible in the translation unit here, not just 5319 /// function-scope declarations. 5320 void 5321 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) { 5322 if (!getLangOpts().CPlusPlus && 5323 ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit()) 5324 // Don't need to track declarations in the TU in C. 5325 return; 5326 5327 // Note that we have a locally-scoped external with this name. 5328 Context.getExternCContextDecl()->makeDeclVisibleInContext(ND); 5329 } 5330 5331 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) { 5332 // FIXME: We can have multiple results via __attribute__((overloadable)). 5333 auto Result = Context.getExternCContextDecl()->lookup(Name); 5334 return Result.empty() ? nullptr : *Result.begin(); 5335 } 5336 5337 /// \brief Diagnose function specifiers on a declaration of an identifier that 5338 /// does not identify a function. 5339 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) { 5340 // FIXME: We should probably indicate the identifier in question to avoid 5341 // confusion for constructs like "virtual int a(), b;" 5342 if (DS.isVirtualSpecified()) 5343 Diag(DS.getVirtualSpecLoc(), 5344 diag::err_virtual_non_function); 5345 5346 if (DS.isExplicitSpecified()) 5347 Diag(DS.getExplicitSpecLoc(), 5348 diag::err_explicit_non_function); 5349 5350 if (DS.isNoreturnSpecified()) 5351 Diag(DS.getNoreturnSpecLoc(), 5352 diag::err_noreturn_non_function); 5353 } 5354 5355 NamedDecl* 5356 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, 5357 TypeSourceInfo *TInfo, LookupResult &Previous) { 5358 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1). 5359 if (D.getCXXScopeSpec().isSet()) { 5360 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator) 5361 << D.getCXXScopeSpec().getRange(); 5362 D.setInvalidType(); 5363 // Pretend we didn't see the scope specifier. 5364 DC = CurContext; 5365 Previous.clear(); 5366 } 5367 5368 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 5369 5370 if (D.getDeclSpec().isInlineSpecified()) 5371 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 5372 << getLangOpts().CPlusPlus1z; 5373 if (D.getDeclSpec().isConstexprSpecified()) 5374 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr) 5375 << 1; 5376 if (D.getDeclSpec().isConceptSpecified()) 5377 Diag(D.getDeclSpec().getConceptSpecLoc(), 5378 diag::err_concept_wrong_decl_kind); 5379 5380 if (D.getName().Kind != UnqualifiedId::IK_Identifier) { 5381 Diag(D.getName().StartLocation, diag::err_typedef_not_identifier) 5382 << D.getName().getSourceRange(); 5383 return nullptr; 5384 } 5385 5386 TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo); 5387 if (!NewTD) return nullptr; 5388 5389 // Handle attributes prior to checking for duplicates in MergeVarDecl 5390 ProcessDeclAttributes(S, NewTD, D); 5391 5392 CheckTypedefForVariablyModifiedType(S, NewTD); 5393 5394 bool Redeclaration = D.isRedeclaration(); 5395 NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration); 5396 D.setRedeclaration(Redeclaration); 5397 return ND; 5398 } 5399 5400 void 5401 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) { 5402 // C99 6.7.7p2: If a typedef name specifies a variably modified type 5403 // then it shall have block scope. 5404 // Note that variably modified types must be fixed before merging the decl so 5405 // that redeclarations will match. 5406 TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo(); 5407 QualType T = TInfo->getType(); 5408 if (T->isVariablyModifiedType()) { 5409 getCurFunction()->setHasBranchProtectedScope(); 5410 5411 if (S->getFnParent() == nullptr) { 5412 bool SizeIsNegative; 5413 llvm::APSInt Oversized; 5414 TypeSourceInfo *FixedTInfo = 5415 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 5416 SizeIsNegative, 5417 Oversized); 5418 if (FixedTInfo) { 5419 Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size); 5420 NewTD->setTypeSourceInfo(FixedTInfo); 5421 } else { 5422 if (SizeIsNegative) 5423 Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size); 5424 else if (T->isVariableArrayType()) 5425 Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope); 5426 else if (Oversized.getBoolValue()) 5427 Diag(NewTD->getLocation(), diag::err_array_too_large) 5428 << Oversized.toString(10); 5429 else 5430 Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope); 5431 NewTD->setInvalidDecl(); 5432 } 5433 } 5434 } 5435 } 5436 5437 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which 5438 /// declares a typedef-name, either using the 'typedef' type specifier or via 5439 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'. 5440 NamedDecl* 5441 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD, 5442 LookupResult &Previous, bool &Redeclaration) { 5443 // Merge the decl with the existing one if appropriate. If the decl is 5444 // in an outer scope, it isn't the same thing. 5445 FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false, 5446 /*AllowInlineNamespace*/false); 5447 filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous); 5448 if (!Previous.empty()) { 5449 Redeclaration = true; 5450 MergeTypedefNameDecl(S, NewTD, Previous); 5451 } 5452 5453 // If this is the C FILE type, notify the AST context. 5454 if (IdentifierInfo *II = NewTD->getIdentifier()) 5455 if (!NewTD->isInvalidDecl() && 5456 NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 5457 if (II->isStr("FILE")) 5458 Context.setFILEDecl(NewTD); 5459 else if (II->isStr("jmp_buf")) 5460 Context.setjmp_bufDecl(NewTD); 5461 else if (II->isStr("sigjmp_buf")) 5462 Context.setsigjmp_bufDecl(NewTD); 5463 else if (II->isStr("ucontext_t")) 5464 Context.setucontext_tDecl(NewTD); 5465 } 5466 5467 return NewTD; 5468 } 5469 5470 /// \brief Determines whether the given declaration is an out-of-scope 5471 /// previous declaration. 5472 /// 5473 /// This routine should be invoked when name lookup has found a 5474 /// previous declaration (PrevDecl) that is not in the scope where a 5475 /// new declaration by the same name is being introduced. If the new 5476 /// declaration occurs in a local scope, previous declarations with 5477 /// linkage may still be considered previous declarations (C99 5478 /// 6.2.2p4-5, C++ [basic.link]p6). 5479 /// 5480 /// \param PrevDecl the previous declaration found by name 5481 /// lookup 5482 /// 5483 /// \param DC the context in which the new declaration is being 5484 /// declared. 5485 /// 5486 /// \returns true if PrevDecl is an out-of-scope previous declaration 5487 /// for a new delcaration with the same name. 5488 static bool 5489 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC, 5490 ASTContext &Context) { 5491 if (!PrevDecl) 5492 return false; 5493 5494 if (!PrevDecl->hasLinkage()) 5495 return false; 5496 5497 if (Context.getLangOpts().CPlusPlus) { 5498 // C++ [basic.link]p6: 5499 // If there is a visible declaration of an entity with linkage 5500 // having the same name and type, ignoring entities declared 5501 // outside the innermost enclosing namespace scope, the block 5502 // scope declaration declares that same entity and receives the 5503 // linkage of the previous declaration. 5504 DeclContext *OuterContext = DC->getRedeclContext(); 5505 if (!OuterContext->isFunctionOrMethod()) 5506 // This rule only applies to block-scope declarations. 5507 return false; 5508 5509 DeclContext *PrevOuterContext = PrevDecl->getDeclContext(); 5510 if (PrevOuterContext->isRecord()) 5511 // We found a member function: ignore it. 5512 return false; 5513 5514 // Find the innermost enclosing namespace for the new and 5515 // previous declarations. 5516 OuterContext = OuterContext->getEnclosingNamespaceContext(); 5517 PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext(); 5518 5519 // The previous declaration is in a different namespace, so it 5520 // isn't the same function. 5521 if (!OuterContext->Equals(PrevOuterContext)) 5522 return false; 5523 } 5524 5525 return true; 5526 } 5527 5528 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) { 5529 CXXScopeSpec &SS = D.getCXXScopeSpec(); 5530 if (!SS.isSet()) return; 5531 DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext())); 5532 } 5533 5534 bool Sema::inferObjCARCLifetime(ValueDecl *decl) { 5535 QualType type = decl->getType(); 5536 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); 5537 if (lifetime == Qualifiers::OCL_Autoreleasing) { 5538 // Various kinds of declaration aren't allowed to be __autoreleasing. 5539 unsigned kind = -1U; 5540 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 5541 if (var->hasAttr<BlocksAttr>()) 5542 kind = 0; // __block 5543 else if (!var->hasLocalStorage()) 5544 kind = 1; // global 5545 } else if (isa<ObjCIvarDecl>(decl)) { 5546 kind = 3; // ivar 5547 } else if (isa<FieldDecl>(decl)) { 5548 kind = 2; // field 5549 } 5550 5551 if (kind != -1U) { 5552 Diag(decl->getLocation(), diag::err_arc_autoreleasing_var) 5553 << kind; 5554 } 5555 } else if (lifetime == Qualifiers::OCL_None) { 5556 // Try to infer lifetime. 5557 if (!type->isObjCLifetimeType()) 5558 return false; 5559 5560 lifetime = type->getObjCARCImplicitLifetime(); 5561 type = Context.getLifetimeQualifiedType(type, lifetime); 5562 decl->setType(type); 5563 } 5564 5565 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 5566 // Thread-local variables cannot have lifetime. 5567 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone && 5568 var->getTLSKind()) { 5569 Diag(var->getLocation(), diag::err_arc_thread_ownership) 5570 << var->getType(); 5571 return true; 5572 } 5573 } 5574 5575 return false; 5576 } 5577 5578 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) { 5579 // Ensure that an auto decl is deduced otherwise the checks below might cache 5580 // the wrong linkage. 5581 assert(S.ParsingInitForAutoVars.count(&ND) == 0); 5582 5583 // 'weak' only applies to declarations with external linkage. 5584 if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) { 5585 if (!ND.isExternallyVisible()) { 5586 S.Diag(Attr->getLocation(), diag::err_attribute_weak_static); 5587 ND.dropAttr<WeakAttr>(); 5588 } 5589 } 5590 if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) { 5591 if (ND.isExternallyVisible()) { 5592 S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static); 5593 ND.dropAttr<WeakRefAttr>(); 5594 ND.dropAttr<AliasAttr>(); 5595 } 5596 } 5597 5598 if (auto *VD = dyn_cast<VarDecl>(&ND)) { 5599 if (VD->hasInit()) { 5600 if (const auto *Attr = VD->getAttr<AliasAttr>()) { 5601 assert(VD->isThisDeclarationADefinition() && 5602 !VD->isExternallyVisible() && "Broken AliasAttr handled late!"); 5603 S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0; 5604 VD->dropAttr<AliasAttr>(); 5605 } 5606 } 5607 } 5608 5609 // 'selectany' only applies to externally visible variable declarations. 5610 // It does not apply to functions. 5611 if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) { 5612 if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) { 5613 S.Diag(Attr->getLocation(), 5614 diag::err_attribute_selectany_non_extern_data); 5615 ND.dropAttr<SelectAnyAttr>(); 5616 } 5617 } 5618 5619 if (const InheritableAttr *Attr = getDLLAttr(&ND)) { 5620 // dll attributes require external linkage. Static locals may have external 5621 // linkage but still cannot be explicitly imported or exported. 5622 auto *VD = dyn_cast<VarDecl>(&ND); 5623 if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) { 5624 S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern) 5625 << &ND << Attr; 5626 ND.setInvalidDecl(); 5627 } 5628 } 5629 5630 // Virtual functions cannot be marked as 'notail'. 5631 if (auto *Attr = ND.getAttr<NotTailCalledAttr>()) 5632 if (auto *MD = dyn_cast<CXXMethodDecl>(&ND)) 5633 if (MD->isVirtual()) { 5634 S.Diag(ND.getLocation(), 5635 diag::err_invalid_attribute_on_virtual_function) 5636 << Attr; 5637 ND.dropAttr<NotTailCalledAttr>(); 5638 } 5639 } 5640 5641 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl, 5642 NamedDecl *NewDecl, 5643 bool IsSpecialization, 5644 bool IsDefinition) { 5645 if (OldDecl->isInvalidDecl()) 5646 return; 5647 5648 if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) { 5649 OldDecl = OldTD->getTemplatedDecl(); 5650 if (!IsSpecialization) 5651 IsDefinition = false; 5652 } 5653 if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) 5654 NewDecl = NewTD->getTemplatedDecl(); 5655 5656 if (!OldDecl || !NewDecl) 5657 return; 5658 5659 const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>(); 5660 const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>(); 5661 const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>(); 5662 const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>(); 5663 5664 // dllimport and dllexport are inheritable attributes so we have to exclude 5665 // inherited attribute instances. 5666 bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) || 5667 (NewExportAttr && !NewExportAttr->isInherited()); 5668 5669 // A redeclaration is not allowed to add a dllimport or dllexport attribute, 5670 // the only exception being explicit specializations. 5671 // Implicitly generated declarations are also excluded for now because there 5672 // is no other way to switch these to use dllimport or dllexport. 5673 bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr; 5674 5675 if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) { 5676 // Allow with a warning for free functions and global variables. 5677 bool JustWarn = false; 5678 if (!OldDecl->isCXXClassMember()) { 5679 auto *VD = dyn_cast<VarDecl>(OldDecl); 5680 if (VD && !VD->getDescribedVarTemplate()) 5681 JustWarn = true; 5682 auto *FD = dyn_cast<FunctionDecl>(OldDecl); 5683 if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) 5684 JustWarn = true; 5685 } 5686 5687 // We cannot change a declaration that's been used because IR has already 5688 // been emitted. Dllimported functions will still work though (modulo 5689 // address equality) as they can use the thunk. 5690 if (OldDecl->isUsed()) 5691 if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr) 5692 JustWarn = false; 5693 5694 unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration 5695 : diag::err_attribute_dll_redeclaration; 5696 S.Diag(NewDecl->getLocation(), DiagID) 5697 << NewDecl 5698 << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr); 5699 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 5700 if (!JustWarn) { 5701 NewDecl->setInvalidDecl(); 5702 return; 5703 } 5704 } 5705 5706 // A redeclaration is not allowed to drop a dllimport attribute, the only 5707 // exceptions being inline function definitions, local extern declarations, 5708 // qualified friend declarations or special MSVC extension: in the last case, 5709 // the declaration is treated as if it were marked dllexport. 5710 bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false; 5711 bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft(); 5712 if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) { 5713 // Ignore static data because out-of-line definitions are diagnosed 5714 // separately. 5715 IsStaticDataMember = VD->isStaticDataMember(); 5716 IsDefinition = VD->isThisDeclarationADefinition(S.Context) != 5717 VarDecl::DeclarationOnly; 5718 } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) { 5719 IsInline = FD->isInlined(); 5720 IsQualifiedFriend = FD->getQualifier() && 5721 FD->getFriendObjectKind() == Decl::FOK_Declared; 5722 } 5723 5724 if (OldImportAttr && !HasNewAttr && !IsInline && !IsStaticDataMember && 5725 !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) { 5726 if (IsMicrosoft && IsDefinition) { 5727 S.Diag(NewDecl->getLocation(), 5728 diag::warn_redeclaration_without_import_attribute) 5729 << NewDecl; 5730 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 5731 NewDecl->dropAttr<DLLImportAttr>(); 5732 NewDecl->addAttr(::new (S.Context) DLLExportAttr( 5733 NewImportAttr->getRange(), S.Context, 5734 NewImportAttr->getSpellingListIndex())); 5735 } else { 5736 S.Diag(NewDecl->getLocation(), 5737 diag::warn_redeclaration_without_attribute_prev_attribute_ignored) 5738 << NewDecl << OldImportAttr; 5739 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 5740 S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute); 5741 OldDecl->dropAttr<DLLImportAttr>(); 5742 NewDecl->dropAttr<DLLImportAttr>(); 5743 } 5744 } else if (IsInline && OldImportAttr && !IsMicrosoft) { 5745 // In MinGW, seeing a function declared inline drops the dllimport attribute. 5746 OldDecl->dropAttr<DLLImportAttr>(); 5747 NewDecl->dropAttr<DLLImportAttr>(); 5748 S.Diag(NewDecl->getLocation(), 5749 diag::warn_dllimport_dropped_from_inline_function) 5750 << NewDecl << OldImportAttr; 5751 } 5752 } 5753 5754 /// Given that we are within the definition of the given function, 5755 /// will that definition behave like C99's 'inline', where the 5756 /// definition is discarded except for optimization purposes? 5757 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) { 5758 // Try to avoid calling GetGVALinkageForFunction. 5759 5760 // All cases of this require the 'inline' keyword. 5761 if (!FD->isInlined()) return false; 5762 5763 // This is only possible in C++ with the gnu_inline attribute. 5764 if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>()) 5765 return false; 5766 5767 // Okay, go ahead and call the relatively-more-expensive function. 5768 return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally; 5769 } 5770 5771 /// Determine whether a variable is extern "C" prior to attaching 5772 /// an initializer. We can't just call isExternC() here, because that 5773 /// will also compute and cache whether the declaration is externally 5774 /// visible, which might change when we attach the initializer. 5775 /// 5776 /// This can only be used if the declaration is known to not be a 5777 /// redeclaration of an internal linkage declaration. 5778 /// 5779 /// For instance: 5780 /// 5781 /// auto x = []{}; 5782 /// 5783 /// Attaching the initializer here makes this declaration not externally 5784 /// visible, because its type has internal linkage. 5785 /// 5786 /// FIXME: This is a hack. 5787 template<typename T> 5788 static bool isIncompleteDeclExternC(Sema &S, const T *D) { 5789 if (S.getLangOpts().CPlusPlus) { 5790 // In C++, the overloadable attribute negates the effects of extern "C". 5791 if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>()) 5792 return false; 5793 5794 // So do CUDA's host/device attributes. 5795 if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() || 5796 D->template hasAttr<CUDAHostAttr>())) 5797 return false; 5798 } 5799 return D->isExternC(); 5800 } 5801 5802 static bool shouldConsiderLinkage(const VarDecl *VD) { 5803 const DeclContext *DC = VD->getDeclContext()->getRedeclContext(); 5804 if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC)) 5805 return VD->hasExternalStorage(); 5806 if (DC->isFileContext()) 5807 return true; 5808 if (DC->isRecord()) 5809 return false; 5810 llvm_unreachable("Unexpected context"); 5811 } 5812 5813 static bool shouldConsiderLinkage(const FunctionDecl *FD) { 5814 const DeclContext *DC = FD->getDeclContext()->getRedeclContext(); 5815 if (DC->isFileContext() || DC->isFunctionOrMethod() || 5816 isa<OMPDeclareReductionDecl>(DC)) 5817 return true; 5818 if (DC->isRecord()) 5819 return false; 5820 llvm_unreachable("Unexpected context"); 5821 } 5822 5823 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList, 5824 AttributeList::Kind Kind) { 5825 for (const AttributeList *L = AttrList; L; L = L->getNext()) 5826 if (L->getKind() == Kind) 5827 return true; 5828 return false; 5829 } 5830 5831 static bool hasParsedAttr(Scope *S, const Declarator &PD, 5832 AttributeList::Kind Kind) { 5833 // Check decl attributes on the DeclSpec. 5834 if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind)) 5835 return true; 5836 5837 // Walk the declarator structure, checking decl attributes that were in a type 5838 // position to the decl itself. 5839 for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) { 5840 if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind)) 5841 return true; 5842 } 5843 5844 // Finally, check attributes on the decl itself. 5845 return hasParsedAttr(S, PD.getAttributes(), Kind); 5846 } 5847 5848 /// Adjust the \c DeclContext for a function or variable that might be a 5849 /// function-local external declaration. 5850 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) { 5851 if (!DC->isFunctionOrMethod()) 5852 return false; 5853 5854 // If this is a local extern function or variable declared within a function 5855 // template, don't add it into the enclosing namespace scope until it is 5856 // instantiated; it might have a dependent type right now. 5857 if (DC->isDependentContext()) 5858 return true; 5859 5860 // C++11 [basic.link]p7: 5861 // When a block scope declaration of an entity with linkage is not found to 5862 // refer to some other declaration, then that entity is a member of the 5863 // innermost enclosing namespace. 5864 // 5865 // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a 5866 // semantically-enclosing namespace, not a lexically-enclosing one. 5867 while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC)) 5868 DC = DC->getParent(); 5869 return true; 5870 } 5871 5872 /// \brief Returns true if given declaration has external C language linkage. 5873 static bool isDeclExternC(const Decl *D) { 5874 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 5875 return FD->isExternC(); 5876 if (const auto *VD = dyn_cast<VarDecl>(D)) 5877 return VD->isExternC(); 5878 5879 llvm_unreachable("Unknown type of decl!"); 5880 } 5881 5882 NamedDecl *Sema::ActOnVariableDeclarator( 5883 Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo, 5884 LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists, 5885 bool &AddToScope, ArrayRef<BindingDecl *> Bindings) { 5886 QualType R = TInfo->getType(); 5887 DeclarationName Name = GetNameForDeclarator(D).getName(); 5888 5889 IdentifierInfo *II = Name.getAsIdentifierInfo(); 5890 5891 if (D.isDecompositionDeclarator()) { 5892 AddToScope = false; 5893 // Take the name of the first declarator as our name for diagnostic 5894 // purposes. 5895 auto &Decomp = D.getDecompositionDeclarator(); 5896 if (!Decomp.bindings().empty()) { 5897 II = Decomp.bindings()[0].Name; 5898 Name = II; 5899 } 5900 } else if (!II) { 5901 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) 5902 << Name; 5903 return nullptr; 5904 } 5905 5906 if (getLangOpts().OpenCL) { 5907 // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument. 5908 // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function 5909 // argument. 5910 if (R->isImageType() || R->isPipeType()) { 5911 Diag(D.getIdentifierLoc(), 5912 diag::err_opencl_type_can_only_be_used_as_function_parameter) 5913 << R; 5914 D.setInvalidType(); 5915 return nullptr; 5916 } 5917 5918 // OpenCL v1.2 s6.9.r: 5919 // The event type cannot be used to declare a program scope variable. 5920 // OpenCL v2.0 s6.9.q: 5921 // The clk_event_t and reserve_id_t types cannot be declared in program scope. 5922 if (NULL == S->getParent()) { 5923 if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) { 5924 Diag(D.getIdentifierLoc(), 5925 diag::err_invalid_type_for_program_scope_var) << R; 5926 D.setInvalidType(); 5927 return nullptr; 5928 } 5929 } 5930 5931 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed. 5932 QualType NR = R; 5933 while (NR->isPointerType()) { 5934 if (NR->isFunctionPointerType()) { 5935 Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer_variable); 5936 D.setInvalidType(); 5937 break; 5938 } 5939 NR = NR->getPointeeType(); 5940 } 5941 5942 if (!getOpenCLOptions().cl_khr_fp16) { 5943 // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and 5944 // half array type (unless the cl_khr_fp16 extension is enabled). 5945 if (Context.getBaseElementType(R)->isHalfType()) { 5946 Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R; 5947 D.setInvalidType(); 5948 } 5949 } 5950 5951 // OpenCL v1.2 s6.9.b p4: 5952 // The sampler type cannot be used with the __local and __global address 5953 // space qualifiers. 5954 if (R->isSamplerT() && (R.getAddressSpace() == LangAS::opencl_local || 5955 R.getAddressSpace() == LangAS::opencl_global)) { 5956 Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace); 5957 } 5958 5959 // OpenCL v1.2 s6.9.r: 5960 // The event type cannot be used with the __local, __constant and __global 5961 // address space qualifiers. 5962 if (R->isEventT()) { 5963 if (R.getAddressSpace()) { 5964 Diag(D.getLocStart(), diag::err_event_t_addr_space_qual); 5965 D.setInvalidType(); 5966 } 5967 } 5968 } 5969 5970 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec(); 5971 StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec()); 5972 5973 // dllimport globals without explicit storage class are treated as extern. We 5974 // have to change the storage class this early to get the right DeclContext. 5975 if (SC == SC_None && !DC->isRecord() && 5976 hasParsedAttr(S, D, AttributeList::AT_DLLImport) && 5977 !hasParsedAttr(S, D, AttributeList::AT_DLLExport)) 5978 SC = SC_Extern; 5979 5980 DeclContext *OriginalDC = DC; 5981 bool IsLocalExternDecl = SC == SC_Extern && 5982 adjustContextForLocalExternDecl(DC); 5983 5984 if (SCSpec == DeclSpec::SCS_mutable) { 5985 // mutable can only appear on non-static class members, so it's always 5986 // an error here 5987 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember); 5988 D.setInvalidType(); 5989 SC = SC_None; 5990 } 5991 5992 if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register && 5993 !D.getAsmLabel() && !getSourceManager().isInSystemMacro( 5994 D.getDeclSpec().getStorageClassSpecLoc())) { 5995 // In C++11, the 'register' storage class specifier is deprecated. 5996 // Suppress the warning in system macros, it's used in macros in some 5997 // popular C system headers, such as in glibc's htonl() macro. 5998 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 5999 getLangOpts().CPlusPlus1z ? diag::ext_register_storage_class 6000 : diag::warn_deprecated_register) 6001 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6002 } 6003 6004 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 6005 6006 if (!DC->isRecord() && S->getFnParent() == nullptr) { 6007 // C99 6.9p2: The storage-class specifiers auto and register shall not 6008 // appear in the declaration specifiers in an external declaration. 6009 // Global Register+Asm is a GNU extension we support. 6010 if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) { 6011 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope); 6012 D.setInvalidType(); 6013 } 6014 } 6015 6016 bool IsExplicitSpecialization = false; 6017 bool IsVariableTemplateSpecialization = false; 6018 bool IsPartialSpecialization = false; 6019 bool IsVariableTemplate = false; 6020 VarDecl *NewVD = nullptr; 6021 VarTemplateDecl *NewTemplate = nullptr; 6022 TemplateParameterList *TemplateParams = nullptr; 6023 if (!getLangOpts().CPlusPlus) { 6024 NewVD = VarDecl::Create(Context, DC, D.getLocStart(), 6025 D.getIdentifierLoc(), II, 6026 R, TInfo, SC); 6027 6028 if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType()) 6029 ParsingInitForAutoVars.insert(NewVD); 6030 6031 if (D.isInvalidType()) 6032 NewVD->setInvalidDecl(); 6033 } else { 6034 bool Invalid = false; 6035 6036 if (DC->isRecord() && !CurContext->isRecord()) { 6037 // This is an out-of-line definition of a static data member. 6038 switch (SC) { 6039 case SC_None: 6040 break; 6041 case SC_Static: 6042 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6043 diag::err_static_out_of_line) 6044 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6045 break; 6046 case SC_Auto: 6047 case SC_Register: 6048 case SC_Extern: 6049 // [dcl.stc] p2: The auto or register specifiers shall be applied only 6050 // to names of variables declared in a block or to function parameters. 6051 // [dcl.stc] p6: The extern specifier cannot be used in the declaration 6052 // of class members 6053 6054 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6055 diag::err_storage_class_for_static_member) 6056 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6057 break; 6058 case SC_PrivateExtern: 6059 llvm_unreachable("C storage class in c++!"); 6060 } 6061 } 6062 6063 if (SC == SC_Static && CurContext->isRecord()) { 6064 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) { 6065 if (RD->isLocalClass()) 6066 Diag(D.getIdentifierLoc(), 6067 diag::err_static_data_member_not_allowed_in_local_class) 6068 << Name << RD->getDeclName(); 6069 6070 // C++98 [class.union]p1: If a union contains a static data member, 6071 // the program is ill-formed. C++11 drops this restriction. 6072 if (RD->isUnion()) 6073 Diag(D.getIdentifierLoc(), 6074 getLangOpts().CPlusPlus11 6075 ? diag::warn_cxx98_compat_static_data_member_in_union 6076 : diag::ext_static_data_member_in_union) << Name; 6077 // We conservatively disallow static data members in anonymous structs. 6078 else if (!RD->getDeclName()) 6079 Diag(D.getIdentifierLoc(), 6080 diag::err_static_data_member_not_allowed_in_anon_struct) 6081 << Name << RD->isUnion(); 6082 } 6083 } 6084 6085 // Match up the template parameter lists with the scope specifier, then 6086 // determine whether we have a template or a template specialization. 6087 TemplateParams = MatchTemplateParametersToScopeSpecifier( 6088 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(), 6089 D.getCXXScopeSpec(), 6090 D.getName().getKind() == UnqualifiedId::IK_TemplateId 6091 ? D.getName().TemplateId 6092 : nullptr, 6093 TemplateParamLists, 6094 /*never a friend*/ false, IsExplicitSpecialization, Invalid); 6095 6096 if (TemplateParams) { 6097 if (!TemplateParams->size() && 6098 D.getName().getKind() != UnqualifiedId::IK_TemplateId) { 6099 // There is an extraneous 'template<>' for this variable. Complain 6100 // about it, but allow the declaration of the variable. 6101 Diag(TemplateParams->getTemplateLoc(), 6102 diag::err_template_variable_noparams) 6103 << II 6104 << SourceRange(TemplateParams->getTemplateLoc(), 6105 TemplateParams->getRAngleLoc()); 6106 TemplateParams = nullptr; 6107 } else { 6108 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) { 6109 // This is an explicit specialization or a partial specialization. 6110 // FIXME: Check that we can declare a specialization here. 6111 IsVariableTemplateSpecialization = true; 6112 IsPartialSpecialization = TemplateParams->size() > 0; 6113 } else { // if (TemplateParams->size() > 0) 6114 // This is a template declaration. 6115 IsVariableTemplate = true; 6116 6117 // Check that we can declare a template here. 6118 if (CheckTemplateDeclScope(S, TemplateParams)) 6119 return nullptr; 6120 6121 // Only C++1y supports variable templates (N3651). 6122 Diag(D.getIdentifierLoc(), 6123 getLangOpts().CPlusPlus14 6124 ? diag::warn_cxx11_compat_variable_template 6125 : diag::ext_variable_template); 6126 } 6127 } 6128 } else { 6129 assert( 6130 (Invalid || D.getName().getKind() != UnqualifiedId::IK_TemplateId) && 6131 "should have a 'template<>' for this decl"); 6132 } 6133 6134 if (IsVariableTemplateSpecialization) { 6135 SourceLocation TemplateKWLoc = 6136 TemplateParamLists.size() > 0 6137 ? TemplateParamLists[0]->getTemplateLoc() 6138 : SourceLocation(); 6139 DeclResult Res = ActOnVarTemplateSpecialization( 6140 S, D, TInfo, TemplateKWLoc, TemplateParams, SC, 6141 IsPartialSpecialization); 6142 if (Res.isInvalid()) 6143 return nullptr; 6144 NewVD = cast<VarDecl>(Res.get()); 6145 AddToScope = false; 6146 } else if (D.isDecompositionDeclarator()) { 6147 NewVD = DecompositionDecl::Create(Context, DC, D.getLocStart(), 6148 D.getIdentifierLoc(), R, TInfo, SC, 6149 Bindings); 6150 } else 6151 NewVD = VarDecl::Create(Context, DC, D.getLocStart(), 6152 D.getIdentifierLoc(), II, R, TInfo, SC); 6153 6154 // If this is supposed to be a variable template, create it as such. 6155 if (IsVariableTemplate) { 6156 NewTemplate = 6157 VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name, 6158 TemplateParams, NewVD); 6159 NewVD->setDescribedVarTemplate(NewTemplate); 6160 } 6161 6162 // If this decl has an auto type in need of deduction, make a note of the 6163 // Decl so we can diagnose uses of it in its own initializer. 6164 if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType()) 6165 ParsingInitForAutoVars.insert(NewVD); 6166 6167 if (D.isInvalidType() || Invalid) { 6168 NewVD->setInvalidDecl(); 6169 if (NewTemplate) 6170 NewTemplate->setInvalidDecl(); 6171 } 6172 6173 SetNestedNameSpecifier(NewVD, D); 6174 6175 // If we have any template parameter lists that don't directly belong to 6176 // the variable (matching the scope specifier), store them. 6177 unsigned VDTemplateParamLists = TemplateParams ? 1 : 0; 6178 if (TemplateParamLists.size() > VDTemplateParamLists) 6179 NewVD->setTemplateParameterListsInfo( 6180 Context, TemplateParamLists.drop_back(VDTemplateParamLists)); 6181 6182 if (D.getDeclSpec().isConstexprSpecified()) { 6183 NewVD->setConstexpr(true); 6184 // C++1z [dcl.spec.constexpr]p1: 6185 // A static data member declared with the constexpr specifier is 6186 // implicitly an inline variable. 6187 if (NewVD->isStaticDataMember() && getLangOpts().CPlusPlus1z) 6188 NewVD->setImplicitlyInline(); 6189 } 6190 6191 if (D.getDeclSpec().isConceptSpecified()) { 6192 if (VarTemplateDecl *VTD = NewVD->getDescribedVarTemplate()) 6193 VTD->setConcept(); 6194 6195 // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not 6196 // be declared with the thread_local, inline, friend, or constexpr 6197 // specifiers, [...] 6198 if (D.getDeclSpec().getThreadStorageClassSpec() == TSCS_thread_local) { 6199 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6200 diag::err_concept_decl_invalid_specifiers) 6201 << 0 << 0; 6202 NewVD->setInvalidDecl(true); 6203 } 6204 6205 if (D.getDeclSpec().isConstexprSpecified()) { 6206 Diag(D.getDeclSpec().getConstexprSpecLoc(), 6207 diag::err_concept_decl_invalid_specifiers) 6208 << 0 << 3; 6209 NewVD->setInvalidDecl(true); 6210 } 6211 6212 // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be 6213 // applied only to the definition of a function template or variable 6214 // template, declared in namespace scope. 6215 if (IsVariableTemplateSpecialization) { 6216 Diag(D.getDeclSpec().getConceptSpecLoc(), 6217 diag::err_concept_specified_specialization) 6218 << (IsPartialSpecialization ? 2 : 1); 6219 } 6220 6221 // C++ Concepts TS [dcl.spec.concept]p6: A variable concept has the 6222 // following restrictions: 6223 // - The declared type shall have the type bool. 6224 if (!Context.hasSameType(NewVD->getType(), Context.BoolTy) && 6225 !NewVD->isInvalidDecl()) { 6226 Diag(D.getIdentifierLoc(), diag::err_variable_concept_bool_decl); 6227 NewVD->setInvalidDecl(true); 6228 } 6229 } 6230 } 6231 6232 if (D.getDeclSpec().isInlineSpecified()) { 6233 if (!getLangOpts().CPlusPlus) { 6234 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 6235 << 0; 6236 } else if (CurContext->isFunctionOrMethod()) { 6237 // 'inline' is not allowed on block scope variable declaration. 6238 Diag(D.getDeclSpec().getInlineSpecLoc(), 6239 diag::err_inline_declaration_block_scope) << Name 6240 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 6241 } else { 6242 Diag(D.getDeclSpec().getInlineSpecLoc(), 6243 getLangOpts().CPlusPlus1z ? diag::warn_cxx14_compat_inline_variable 6244 : diag::ext_inline_variable); 6245 NewVD->setInlineSpecified(); 6246 } 6247 } 6248 6249 // Set the lexical context. If the declarator has a C++ scope specifier, the 6250 // lexical context will be different from the semantic context. 6251 NewVD->setLexicalDeclContext(CurContext); 6252 if (NewTemplate) 6253 NewTemplate->setLexicalDeclContext(CurContext); 6254 6255 if (IsLocalExternDecl) { 6256 if (D.isDecompositionDeclarator()) 6257 for (auto *B : Bindings) 6258 B->setLocalExternDecl(); 6259 else 6260 NewVD->setLocalExternDecl(); 6261 } 6262 6263 bool EmitTLSUnsupportedError = false; 6264 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) { 6265 // C++11 [dcl.stc]p4: 6266 // When thread_local is applied to a variable of block scope the 6267 // storage-class-specifier static is implied if it does not appear 6268 // explicitly. 6269 // Core issue: 'static' is not implied if the variable is declared 6270 // 'extern'. 6271 if (NewVD->hasLocalStorage() && 6272 (SCSpec != DeclSpec::SCS_unspecified || 6273 TSCS != DeclSpec::TSCS_thread_local || 6274 !DC->isFunctionOrMethod())) 6275 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6276 diag::err_thread_non_global) 6277 << DeclSpec::getSpecifierName(TSCS); 6278 else if (!Context.getTargetInfo().isTLSSupported()) { 6279 if (getLangOpts().CUDA) { 6280 // Postpone error emission until we've collected attributes required to 6281 // figure out whether it's a host or device variable and whether the 6282 // error should be ignored. 6283 EmitTLSUnsupportedError = true; 6284 // We still need to mark the variable as TLS so it shows up in AST with 6285 // proper storage class for other tools to use even if we're not going 6286 // to emit any code for it. 6287 NewVD->setTSCSpec(TSCS); 6288 } else 6289 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6290 diag::err_thread_unsupported); 6291 } else 6292 NewVD->setTSCSpec(TSCS); 6293 } 6294 6295 // C99 6.7.4p3 6296 // An inline definition of a function with external linkage shall 6297 // not contain a definition of a modifiable object with static or 6298 // thread storage duration... 6299 // We only apply this when the function is required to be defined 6300 // elsewhere, i.e. when the function is not 'extern inline'. Note 6301 // that a local variable with thread storage duration still has to 6302 // be marked 'static'. Also note that it's possible to get these 6303 // semantics in C++ using __attribute__((gnu_inline)). 6304 if (SC == SC_Static && S->getFnParent() != nullptr && 6305 !NewVD->getType().isConstQualified()) { 6306 FunctionDecl *CurFD = getCurFunctionDecl(); 6307 if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) { 6308 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6309 diag::warn_static_local_in_extern_inline); 6310 MaybeSuggestAddingStaticToDecl(CurFD); 6311 } 6312 } 6313 6314 if (D.getDeclSpec().isModulePrivateSpecified()) { 6315 if (IsVariableTemplateSpecialization) 6316 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 6317 << (IsPartialSpecialization ? 1 : 0) 6318 << FixItHint::CreateRemoval( 6319 D.getDeclSpec().getModulePrivateSpecLoc()); 6320 else if (IsExplicitSpecialization) 6321 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 6322 << 2 6323 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 6324 else if (NewVD->hasLocalStorage()) 6325 Diag(NewVD->getLocation(), diag::err_module_private_local) 6326 << 0 << NewVD->getDeclName() 6327 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 6328 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 6329 else { 6330 NewVD->setModulePrivate(); 6331 if (NewTemplate) 6332 NewTemplate->setModulePrivate(); 6333 for (auto *B : Bindings) 6334 B->setModulePrivate(); 6335 } 6336 } 6337 6338 // Handle attributes prior to checking for duplicates in MergeVarDecl 6339 ProcessDeclAttributes(S, NewVD, D); 6340 6341 if (getLangOpts().CUDA) { 6342 if (EmitTLSUnsupportedError && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) 6343 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6344 diag::err_thread_unsupported); 6345 // CUDA B.2.5: "__shared__ and __constant__ variables have implied static 6346 // storage [duration]." 6347 if (SC == SC_None && S->getFnParent() != nullptr && 6348 (NewVD->hasAttr<CUDASharedAttr>() || 6349 NewVD->hasAttr<CUDAConstantAttr>())) { 6350 NewVD->setStorageClass(SC_Static); 6351 } 6352 } 6353 6354 // Ensure that dllimport globals without explicit storage class are treated as 6355 // extern. The storage class is set above using parsed attributes. Now we can 6356 // check the VarDecl itself. 6357 assert(!NewVD->hasAttr<DLLImportAttr>() || 6358 NewVD->getAttr<DLLImportAttr>()->isInherited() || 6359 NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None); 6360 6361 // In auto-retain/release, infer strong retension for variables of 6362 // retainable type. 6363 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD)) 6364 NewVD->setInvalidDecl(); 6365 6366 // Handle GNU asm-label extension (encoded as an attribute). 6367 if (Expr *E = (Expr*)D.getAsmLabel()) { 6368 // The parser guarantees this is a string. 6369 StringLiteral *SE = cast<StringLiteral>(E); 6370 StringRef Label = SE->getString(); 6371 if (S->getFnParent() != nullptr) { 6372 switch (SC) { 6373 case SC_None: 6374 case SC_Auto: 6375 Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label; 6376 break; 6377 case SC_Register: 6378 // Local Named register 6379 if (!Context.getTargetInfo().isValidGCCRegisterName(Label) && 6380 DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) 6381 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 6382 break; 6383 case SC_Static: 6384 case SC_Extern: 6385 case SC_PrivateExtern: 6386 break; 6387 } 6388 } else if (SC == SC_Register) { 6389 // Global Named register 6390 if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) { 6391 const auto &TI = Context.getTargetInfo(); 6392 bool HasSizeMismatch; 6393 6394 if (!TI.isValidGCCRegisterName(Label)) 6395 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 6396 else if (!TI.validateGlobalRegisterVariable(Label, 6397 Context.getTypeSize(R), 6398 HasSizeMismatch)) 6399 Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label; 6400 else if (HasSizeMismatch) 6401 Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label; 6402 } 6403 6404 if (!R->isIntegralType(Context) && !R->isPointerType()) { 6405 Diag(D.getLocStart(), diag::err_asm_bad_register_type); 6406 NewVD->setInvalidDecl(true); 6407 } 6408 } 6409 6410 NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), 6411 Context, Label, 0)); 6412 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 6413 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 6414 ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier()); 6415 if (I != ExtnameUndeclaredIdentifiers.end()) { 6416 if (isDeclExternC(NewVD)) { 6417 NewVD->addAttr(I->second); 6418 ExtnameUndeclaredIdentifiers.erase(I); 6419 } else 6420 Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied) 6421 << /*Variable*/1 << NewVD; 6422 } 6423 } 6424 6425 // Diagnose shadowed variables before filtering for scope. 6426 if (D.getCXXScopeSpec().isEmpty()) 6427 CheckShadow(S, NewVD, Previous); 6428 6429 // Don't consider existing declarations that are in a different 6430 // scope and are out-of-semantic-context declarations (if the new 6431 // declaration has linkage). 6432 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD), 6433 D.getCXXScopeSpec().isNotEmpty() || 6434 IsExplicitSpecialization || 6435 IsVariableTemplateSpecialization); 6436 6437 // Check whether the previous declaration is in the same block scope. This 6438 // affects whether we merge types with it, per C++11 [dcl.array]p3. 6439 if (getLangOpts().CPlusPlus && 6440 NewVD->isLocalVarDecl() && NewVD->hasExternalStorage()) 6441 NewVD->setPreviousDeclInSameBlockScope( 6442 Previous.isSingleResult() && !Previous.isShadowed() && 6443 isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false)); 6444 6445 if (!getLangOpts().CPlusPlus) { 6446 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 6447 } else { 6448 // If this is an explicit specialization of a static data member, check it. 6449 if (IsExplicitSpecialization && !NewVD->isInvalidDecl() && 6450 CheckMemberSpecialization(NewVD, Previous)) 6451 NewVD->setInvalidDecl(); 6452 6453 // Merge the decl with the existing one if appropriate. 6454 if (!Previous.empty()) { 6455 if (Previous.isSingleResult() && 6456 isa<FieldDecl>(Previous.getFoundDecl()) && 6457 D.getCXXScopeSpec().isSet()) { 6458 // The user tried to define a non-static data member 6459 // out-of-line (C++ [dcl.meaning]p1). 6460 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line) 6461 << D.getCXXScopeSpec().getRange(); 6462 Previous.clear(); 6463 NewVD->setInvalidDecl(); 6464 } 6465 } else if (D.getCXXScopeSpec().isSet()) { 6466 // No previous declaration in the qualifying scope. 6467 Diag(D.getIdentifierLoc(), diag::err_no_member) 6468 << Name << computeDeclContext(D.getCXXScopeSpec(), true) 6469 << D.getCXXScopeSpec().getRange(); 6470 NewVD->setInvalidDecl(); 6471 } 6472 6473 if (!IsVariableTemplateSpecialization) 6474 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 6475 6476 // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare [...] 6477 // an explicit specialization (14.8.3) or a partial specialization of a 6478 // concept definition. 6479 if (IsVariableTemplateSpecialization && 6480 !D.getDeclSpec().isConceptSpecified() && !Previous.empty() && 6481 Previous.isSingleResult()) { 6482 NamedDecl *PreviousDecl = Previous.getFoundDecl(); 6483 if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(PreviousDecl)) { 6484 if (VarTmpl->isConcept()) { 6485 Diag(NewVD->getLocation(), diag::err_concept_specialized) 6486 << 1 /*variable*/ 6487 << (IsPartialSpecialization ? 2 /*partially specialized*/ 6488 : 1 /*explicitly specialized*/); 6489 Diag(VarTmpl->getLocation(), diag::note_previous_declaration); 6490 NewVD->setInvalidDecl(); 6491 } 6492 } 6493 } 6494 6495 if (NewTemplate) { 6496 VarTemplateDecl *PrevVarTemplate = 6497 NewVD->getPreviousDecl() 6498 ? NewVD->getPreviousDecl()->getDescribedVarTemplate() 6499 : nullptr; 6500 6501 // Check the template parameter list of this declaration, possibly 6502 // merging in the template parameter list from the previous variable 6503 // template declaration. 6504 if (CheckTemplateParameterList( 6505 TemplateParams, 6506 PrevVarTemplate ? PrevVarTemplate->getTemplateParameters() 6507 : nullptr, 6508 (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() && 6509 DC->isDependentContext()) 6510 ? TPC_ClassTemplateMember 6511 : TPC_VarTemplate)) 6512 NewVD->setInvalidDecl(); 6513 6514 // If we are providing an explicit specialization of a static variable 6515 // template, make a note of that. 6516 if (PrevVarTemplate && 6517 PrevVarTemplate->getInstantiatedFromMemberTemplate()) 6518 PrevVarTemplate->setMemberSpecialization(); 6519 } 6520 } 6521 6522 ProcessPragmaWeak(S, NewVD); 6523 6524 // If this is the first declaration of an extern C variable, update 6525 // the map of such variables. 6526 if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() && 6527 isIncompleteDeclExternC(*this, NewVD)) 6528 RegisterLocallyScopedExternCDecl(NewVD, S); 6529 6530 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) { 6531 Decl *ManglingContextDecl; 6532 if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext( 6533 NewVD->getDeclContext(), ManglingContextDecl)) { 6534 Context.setManglingNumber( 6535 NewVD, MCtx->getManglingNumber( 6536 NewVD, getMSManglingNumber(getLangOpts(), S))); 6537 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD)); 6538 } 6539 } 6540 6541 // Special handling of variable named 'main'. 6542 if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") && 6543 NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() && 6544 !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) { 6545 6546 // C++ [basic.start.main]p3 6547 // A program that declares a variable main at global scope is ill-formed. 6548 if (getLangOpts().CPlusPlus) 6549 Diag(D.getLocStart(), diag::err_main_global_variable); 6550 6551 // In C, and external-linkage variable named main results in undefined 6552 // behavior. 6553 else if (NewVD->hasExternalFormalLinkage()) 6554 Diag(D.getLocStart(), diag::warn_main_redefined); 6555 } 6556 6557 if (D.isRedeclaration() && !Previous.empty()) { 6558 checkDLLAttributeRedeclaration( 6559 *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewVD, 6560 IsExplicitSpecialization, D.isFunctionDefinition()); 6561 } 6562 6563 if (NewTemplate) { 6564 if (NewVD->isInvalidDecl()) 6565 NewTemplate->setInvalidDecl(); 6566 ActOnDocumentableDecl(NewTemplate); 6567 return NewTemplate; 6568 } 6569 6570 return NewVD; 6571 } 6572 6573 /// Enum describing the %select options in diag::warn_decl_shadow. 6574 enum ShadowedDeclKind { SDK_Local, SDK_Global, SDK_StaticMember, SDK_Field }; 6575 6576 /// Determine what kind of declaration we're shadowing. 6577 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl, 6578 const DeclContext *OldDC) { 6579 if (isa<RecordDecl>(OldDC)) 6580 return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember; 6581 return OldDC->isFileContext() ? SDK_Global : SDK_Local; 6582 } 6583 6584 /// Return the location of the capture if the given lambda captures the given 6585 /// variable \p VD, or an invalid source location otherwise. 6586 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI, 6587 const VarDecl *VD) { 6588 for (const LambdaScopeInfo::Capture &Capture : LSI->Captures) { 6589 if (Capture.isVariableCapture() && Capture.getVariable() == VD) 6590 return Capture.getLocation(); 6591 } 6592 return SourceLocation(); 6593 } 6594 6595 /// \brief Diagnose variable or built-in function shadowing. Implements 6596 /// -Wshadow. 6597 /// 6598 /// This method is called whenever a VarDecl is added to a "useful" 6599 /// scope. 6600 /// 6601 /// \param S the scope in which the shadowing name is being declared 6602 /// \param R the lookup of the name 6603 /// 6604 void Sema::CheckShadow(Scope *S, VarDecl *D, const LookupResult& R) { 6605 // Return if warning is ignored. 6606 if (Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc())) 6607 return; 6608 6609 // Don't diagnose declarations at file scope. 6610 if (D->hasGlobalStorage()) 6611 return; 6612 6613 DeclContext *NewDC = D->getDeclContext(); 6614 6615 // Only diagnose if we're shadowing an unambiguous field or variable. 6616 if (R.getResultKind() != LookupResult::Found) 6617 return; 6618 6619 NamedDecl* ShadowedDecl = R.getFoundDecl(); 6620 if (!isa<VarDecl>(ShadowedDecl) && !isa<FieldDecl>(ShadowedDecl)) 6621 return; 6622 6623 if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) { 6624 // Fields are not shadowed by variables in C++ static methods. 6625 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC)) 6626 if (MD->isStatic()) 6627 return; 6628 6629 // Fields shadowed by constructor parameters are a special case. Usually 6630 // the constructor initializes the field with the parameter. 6631 if (isa<CXXConstructorDecl>(NewDC) && isa<ParmVarDecl>(D)) { 6632 // Remember that this was shadowed so we can either warn about its 6633 // modification or its existence depending on warning settings. 6634 D = D->getCanonicalDecl(); 6635 ShadowingDecls.insert({D, FD}); 6636 return; 6637 } 6638 } 6639 6640 if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl)) 6641 if (shadowedVar->isExternC()) { 6642 // For shadowing external vars, make sure that we point to the global 6643 // declaration, not a locally scoped extern declaration. 6644 for (auto I : shadowedVar->redecls()) 6645 if (I->isFileVarDecl()) { 6646 ShadowedDecl = I; 6647 break; 6648 } 6649 } 6650 6651 DeclContext *OldDC = ShadowedDecl->getDeclContext(); 6652 6653 unsigned WarningDiag = diag::warn_decl_shadow; 6654 SourceLocation CaptureLoc; 6655 if (isa<VarDecl>(ShadowedDecl) && NewDC && isa<CXXMethodDecl>(NewDC)) { 6656 if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) { 6657 if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) { 6658 if (RD->getLambdaCaptureDefault() == LCD_None) { 6659 // Try to avoid warnings for lambdas with an explicit capture list. 6660 const auto *LSI = cast<LambdaScopeInfo>(getCurFunction()); 6661 // Warn only when the lambda captures the shadowed decl explicitly. 6662 CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl)); 6663 if (CaptureLoc.isInvalid()) 6664 WarningDiag = diag::warn_decl_shadow_uncaptured_local; 6665 } else { 6666 // Remember that this was shadowed so we can avoid the warning if the 6667 // shadowed decl isn't captured and the warning settings allow it. 6668 cast<LambdaScopeInfo>(getCurFunction()) 6669 ->ShadowingDecls.push_back({D, cast<VarDecl>(ShadowedDecl)}); 6670 return; 6671 } 6672 } 6673 } 6674 } 6675 6676 // Only warn about certain kinds of shadowing for class members. 6677 if (NewDC && NewDC->isRecord()) { 6678 // In particular, don't warn about shadowing non-class members. 6679 if (!OldDC->isRecord()) 6680 return; 6681 6682 // TODO: should we warn about static data members shadowing 6683 // static data members from base classes? 6684 6685 // TODO: don't diagnose for inaccessible shadowed members. 6686 // This is hard to do perfectly because we might friend the 6687 // shadowing context, but that's just a false negative. 6688 } 6689 6690 6691 DeclarationName Name = R.getLookupName(); 6692 6693 // Emit warning and note. 6694 if (getSourceManager().isInSystemMacro(R.getNameLoc())) 6695 return; 6696 ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC); 6697 Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC; 6698 if (!CaptureLoc.isInvalid()) 6699 Diag(CaptureLoc, diag::note_var_explicitly_captured_here) 6700 << Name << /*explicitly*/ 1; 6701 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 6702 } 6703 6704 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD 6705 /// when these variables are captured by the lambda. 6706 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) { 6707 for (const auto &Shadow : LSI->ShadowingDecls) { 6708 const VarDecl *ShadowedDecl = Shadow.ShadowedDecl; 6709 // Try to avoid the warning when the shadowed decl isn't captured. 6710 SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl); 6711 const DeclContext *OldDC = ShadowedDecl->getDeclContext(); 6712 Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid() 6713 ? diag::warn_decl_shadow_uncaptured_local 6714 : diag::warn_decl_shadow) 6715 << Shadow.VD->getDeclName() 6716 << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC; 6717 if (!CaptureLoc.isInvalid()) 6718 Diag(CaptureLoc, diag::note_var_explicitly_captured_here) 6719 << Shadow.VD->getDeclName() << /*explicitly*/ 0; 6720 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 6721 } 6722 } 6723 6724 /// \brief Check -Wshadow without the advantage of a previous lookup. 6725 void Sema::CheckShadow(Scope *S, VarDecl *D) { 6726 if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation())) 6727 return; 6728 6729 LookupResult R(*this, D->getDeclName(), D->getLocation(), 6730 Sema::LookupOrdinaryName, Sema::ForRedeclaration); 6731 LookupName(R, S); 6732 CheckShadow(S, D, R); 6733 } 6734 6735 /// Check if 'E', which is an expression that is about to be modified, refers 6736 /// to a constructor parameter that shadows a field. 6737 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) { 6738 // Quickly ignore expressions that can't be shadowing ctor parameters. 6739 if (!getLangOpts().CPlusPlus || ShadowingDecls.empty()) 6740 return; 6741 E = E->IgnoreParenImpCasts(); 6742 auto *DRE = dyn_cast<DeclRefExpr>(E); 6743 if (!DRE) 6744 return; 6745 const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl()); 6746 auto I = ShadowingDecls.find(D); 6747 if (I == ShadowingDecls.end()) 6748 return; 6749 const NamedDecl *ShadowedDecl = I->second; 6750 const DeclContext *OldDC = ShadowedDecl->getDeclContext(); 6751 Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC; 6752 Diag(D->getLocation(), diag::note_var_declared_here) << D; 6753 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 6754 6755 // Avoid issuing multiple warnings about the same decl. 6756 ShadowingDecls.erase(I); 6757 } 6758 6759 /// Check for conflict between this global or extern "C" declaration and 6760 /// previous global or extern "C" declarations. This is only used in C++. 6761 template<typename T> 6762 static bool checkGlobalOrExternCConflict( 6763 Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) { 6764 assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\""); 6765 NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName()); 6766 6767 if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) { 6768 // The common case: this global doesn't conflict with any extern "C" 6769 // declaration. 6770 return false; 6771 } 6772 6773 if (Prev) { 6774 if (!IsGlobal || isIncompleteDeclExternC(S, ND)) { 6775 // Both the old and new declarations have C language linkage. This is a 6776 // redeclaration. 6777 Previous.clear(); 6778 Previous.addDecl(Prev); 6779 return true; 6780 } 6781 6782 // This is a global, non-extern "C" declaration, and there is a previous 6783 // non-global extern "C" declaration. Diagnose if this is a variable 6784 // declaration. 6785 if (!isa<VarDecl>(ND)) 6786 return false; 6787 } else { 6788 // The declaration is extern "C". Check for any declaration in the 6789 // translation unit which might conflict. 6790 if (IsGlobal) { 6791 // We have already performed the lookup into the translation unit. 6792 IsGlobal = false; 6793 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 6794 I != E; ++I) { 6795 if (isa<VarDecl>(*I)) { 6796 Prev = *I; 6797 break; 6798 } 6799 } 6800 } else { 6801 DeclContext::lookup_result R = 6802 S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName()); 6803 for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end(); 6804 I != E; ++I) { 6805 if (isa<VarDecl>(*I)) { 6806 Prev = *I; 6807 break; 6808 } 6809 // FIXME: If we have any other entity with this name in global scope, 6810 // the declaration is ill-formed, but that is a defect: it breaks the 6811 // 'stat' hack, for instance. Only variables can have mangled name 6812 // clashes with extern "C" declarations, so only they deserve a 6813 // diagnostic. 6814 } 6815 } 6816 6817 if (!Prev) 6818 return false; 6819 } 6820 6821 // Use the first declaration's location to ensure we point at something which 6822 // is lexically inside an extern "C" linkage-spec. 6823 assert(Prev && "should have found a previous declaration to diagnose"); 6824 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev)) 6825 Prev = FD->getFirstDecl(); 6826 else 6827 Prev = cast<VarDecl>(Prev)->getFirstDecl(); 6828 6829 S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict) 6830 << IsGlobal << ND; 6831 S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict) 6832 << IsGlobal; 6833 return false; 6834 } 6835 6836 /// Apply special rules for handling extern "C" declarations. Returns \c true 6837 /// if we have found that this is a redeclaration of some prior entity. 6838 /// 6839 /// Per C++ [dcl.link]p6: 6840 /// Two declarations [for a function or variable] with C language linkage 6841 /// with the same name that appear in different scopes refer to the same 6842 /// [entity]. An entity with C language linkage shall not be declared with 6843 /// the same name as an entity in global scope. 6844 template<typename T> 6845 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND, 6846 LookupResult &Previous) { 6847 if (!S.getLangOpts().CPlusPlus) { 6848 // In C, when declaring a global variable, look for a corresponding 'extern' 6849 // variable declared in function scope. We don't need this in C++, because 6850 // we find local extern decls in the surrounding file-scope DeclContext. 6851 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 6852 if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) { 6853 Previous.clear(); 6854 Previous.addDecl(Prev); 6855 return true; 6856 } 6857 } 6858 return false; 6859 } 6860 6861 // A declaration in the translation unit can conflict with an extern "C" 6862 // declaration. 6863 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) 6864 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous); 6865 6866 // An extern "C" declaration can conflict with a declaration in the 6867 // translation unit or can be a redeclaration of an extern "C" declaration 6868 // in another scope. 6869 if (isIncompleteDeclExternC(S,ND)) 6870 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous); 6871 6872 // Neither global nor extern "C": nothing to do. 6873 return false; 6874 } 6875 6876 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) { 6877 // If the decl is already known invalid, don't check it. 6878 if (NewVD->isInvalidDecl()) 6879 return; 6880 6881 TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo(); 6882 QualType T = TInfo->getType(); 6883 6884 // Defer checking an 'auto' type until its initializer is attached. 6885 if (T->isUndeducedType()) 6886 return; 6887 6888 if (NewVD->hasAttrs()) 6889 CheckAlignasUnderalignment(NewVD); 6890 6891 if (T->isObjCObjectType()) { 6892 Diag(NewVD->getLocation(), diag::err_statically_allocated_object) 6893 << FixItHint::CreateInsertion(NewVD->getLocation(), "*"); 6894 T = Context.getObjCObjectPointerType(T); 6895 NewVD->setType(T); 6896 } 6897 6898 // Emit an error if an address space was applied to decl with local storage. 6899 // This includes arrays of objects with address space qualifiers, but not 6900 // automatic variables that point to other address spaces. 6901 // ISO/IEC TR 18037 S5.1.2 6902 if (!getLangOpts().OpenCL 6903 && NewVD->hasLocalStorage() && T.getAddressSpace() != 0) { 6904 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl); 6905 NewVD->setInvalidDecl(); 6906 return; 6907 } 6908 6909 // OpenCL v1.2 s6.8 - The static qualifier is valid only in program 6910 // scope. 6911 if (getLangOpts().OpenCLVersion == 120 && 6912 !getOpenCLOptions().cl_clang_storage_class_specifiers && 6913 NewVD->isStaticLocal()) { 6914 Diag(NewVD->getLocation(), diag::err_static_function_scope); 6915 NewVD->setInvalidDecl(); 6916 return; 6917 } 6918 6919 if (getLangOpts().OpenCL) { 6920 // OpenCL v2.0 s6.12.5 - The __block storage type is not supported. 6921 if (NewVD->hasAttr<BlocksAttr>()) { 6922 Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type); 6923 return; 6924 } 6925 6926 if (T->isBlockPointerType()) { 6927 // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and 6928 // can't use 'extern' storage class. 6929 if (!T.isConstQualified()) { 6930 Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration) 6931 << 0 /*const*/; 6932 NewVD->setInvalidDecl(); 6933 return; 6934 } 6935 if (NewVD->hasExternalStorage()) { 6936 Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration); 6937 NewVD->setInvalidDecl(); 6938 return; 6939 } 6940 } 6941 // OpenCL v1.2 s6.5 - All program scope variables must be declared in the 6942 // __constant address space. 6943 // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static 6944 // variables inside a function can also be declared in the global 6945 // address space. 6946 if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() || 6947 NewVD->hasExternalStorage()) { 6948 if (!T->isSamplerT() && 6949 !(T.getAddressSpace() == LangAS::opencl_constant || 6950 (T.getAddressSpace() == LangAS::opencl_global && 6951 getLangOpts().OpenCLVersion == 200))) { 6952 int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1; 6953 if (getLangOpts().OpenCLVersion == 200) 6954 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space) 6955 << Scope << "global or constant"; 6956 else 6957 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space) 6958 << Scope << "constant"; 6959 NewVD->setInvalidDecl(); 6960 return; 6961 } 6962 } else { 6963 if (T.getAddressSpace() == LangAS::opencl_global) { 6964 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 6965 << 1 /*is any function*/ << "global"; 6966 NewVD->setInvalidDecl(); 6967 return; 6968 } 6969 // OpenCL v1.1 s6.5.2 and s6.5.3 no local or constant variables 6970 // in functions. 6971 if (T.getAddressSpace() == LangAS::opencl_constant || 6972 T.getAddressSpace() == LangAS::opencl_local) { 6973 FunctionDecl *FD = getCurFunctionDecl(); 6974 if (FD && !FD->hasAttr<OpenCLKernelAttr>()) { 6975 if (T.getAddressSpace() == LangAS::opencl_constant) 6976 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 6977 << 0 /*non-kernel only*/ << "constant"; 6978 else 6979 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 6980 << 0 /*non-kernel only*/ << "local"; 6981 NewVD->setInvalidDecl(); 6982 return; 6983 } 6984 } 6985 } 6986 } 6987 6988 if (NewVD->hasLocalStorage() && T.isObjCGCWeak() 6989 && !NewVD->hasAttr<BlocksAttr>()) { 6990 if (getLangOpts().getGC() != LangOptions::NonGC) 6991 Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local); 6992 else { 6993 assert(!getLangOpts().ObjCAutoRefCount); 6994 Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local); 6995 } 6996 } 6997 6998 bool isVM = T->isVariablyModifiedType(); 6999 if (isVM || NewVD->hasAttr<CleanupAttr>() || 7000 NewVD->hasAttr<BlocksAttr>()) 7001 getCurFunction()->setHasBranchProtectedScope(); 7002 7003 if ((isVM && NewVD->hasLinkage()) || 7004 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { 7005 bool SizeIsNegative; 7006 llvm::APSInt Oversized; 7007 TypeSourceInfo *FixedTInfo = 7008 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 7009 SizeIsNegative, Oversized); 7010 if (!FixedTInfo && T->isVariableArrayType()) { 7011 const VariableArrayType *VAT = Context.getAsVariableArrayType(T); 7012 // FIXME: This won't give the correct result for 7013 // int a[10][n]; 7014 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange(); 7015 7016 if (NewVD->isFileVarDecl()) 7017 Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope) 7018 << SizeRange; 7019 else if (NewVD->isStaticLocal()) 7020 Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage) 7021 << SizeRange; 7022 else 7023 Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage) 7024 << SizeRange; 7025 NewVD->setInvalidDecl(); 7026 return; 7027 } 7028 7029 if (!FixedTInfo) { 7030 if (NewVD->isFileVarDecl()) 7031 Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope); 7032 else 7033 Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage); 7034 NewVD->setInvalidDecl(); 7035 return; 7036 } 7037 7038 Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size); 7039 NewVD->setType(FixedTInfo->getType()); 7040 NewVD->setTypeSourceInfo(FixedTInfo); 7041 } 7042 7043 if (T->isVoidType()) { 7044 // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names 7045 // of objects and functions. 7046 if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) { 7047 Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type) 7048 << T; 7049 NewVD->setInvalidDecl(); 7050 return; 7051 } 7052 } 7053 7054 if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) { 7055 Diag(NewVD->getLocation(), diag::err_block_on_nonlocal); 7056 NewVD->setInvalidDecl(); 7057 return; 7058 } 7059 7060 if (isVM && NewVD->hasAttr<BlocksAttr>()) { 7061 Diag(NewVD->getLocation(), diag::err_block_on_vm); 7062 NewVD->setInvalidDecl(); 7063 return; 7064 } 7065 7066 if (NewVD->isConstexpr() && !T->isDependentType() && 7067 RequireLiteralType(NewVD->getLocation(), T, 7068 diag::err_constexpr_var_non_literal)) { 7069 NewVD->setInvalidDecl(); 7070 return; 7071 } 7072 } 7073 7074 /// \brief Perform semantic checking on a newly-created variable 7075 /// declaration. 7076 /// 7077 /// This routine performs all of the type-checking required for a 7078 /// variable declaration once it has been built. It is used both to 7079 /// check variables after they have been parsed and their declarators 7080 /// have been translated into a declaration, and to check variables 7081 /// that have been instantiated from a template. 7082 /// 7083 /// Sets NewVD->isInvalidDecl() if an error was encountered. 7084 /// 7085 /// Returns true if the variable declaration is a redeclaration. 7086 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) { 7087 CheckVariableDeclarationType(NewVD); 7088 7089 // If the decl is already known invalid, don't check it. 7090 if (NewVD->isInvalidDecl()) 7091 return false; 7092 7093 // If we did not find anything by this name, look for a non-visible 7094 // extern "C" declaration with the same name. 7095 if (Previous.empty() && 7096 checkForConflictWithNonVisibleExternC(*this, NewVD, Previous)) 7097 Previous.setShadowed(); 7098 7099 if (!Previous.empty()) { 7100 MergeVarDecl(NewVD, Previous); 7101 return true; 7102 } 7103 return false; 7104 } 7105 7106 namespace { 7107 struct FindOverriddenMethod { 7108 Sema *S; 7109 CXXMethodDecl *Method; 7110 7111 /// Member lookup function that determines whether a given C++ 7112 /// method overrides a method in a base class, to be used with 7113 /// CXXRecordDecl::lookupInBases(). 7114 bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 7115 RecordDecl *BaseRecord = 7116 Specifier->getType()->getAs<RecordType>()->getDecl(); 7117 7118 DeclarationName Name = Method->getDeclName(); 7119 7120 // FIXME: Do we care about other names here too? 7121 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 7122 // We really want to find the base class destructor here. 7123 QualType T = S->Context.getTypeDeclType(BaseRecord); 7124 CanQualType CT = S->Context.getCanonicalType(T); 7125 7126 Name = S->Context.DeclarationNames.getCXXDestructorName(CT); 7127 } 7128 7129 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); 7130 Path.Decls = Path.Decls.slice(1)) { 7131 NamedDecl *D = Path.Decls.front(); 7132 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 7133 if (MD->isVirtual() && !S->IsOverload(Method, MD, false)) 7134 return true; 7135 } 7136 } 7137 7138 return false; 7139 } 7140 }; 7141 7142 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted }; 7143 } // end anonymous namespace 7144 7145 /// \brief Report an error regarding overriding, along with any relevant 7146 /// overriden methods. 7147 /// 7148 /// \param DiagID the primary error to report. 7149 /// \param MD the overriding method. 7150 /// \param OEK which overrides to include as notes. 7151 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD, 7152 OverrideErrorKind OEK = OEK_All) { 7153 S.Diag(MD->getLocation(), DiagID) << MD->getDeclName(); 7154 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 7155 E = MD->end_overridden_methods(); 7156 I != E; ++I) { 7157 // This check (& the OEK parameter) could be replaced by a predicate, but 7158 // without lambdas that would be overkill. This is still nicer than writing 7159 // out the diag loop 3 times. 7160 if ((OEK == OEK_All) || 7161 (OEK == OEK_NonDeleted && !(*I)->isDeleted()) || 7162 (OEK == OEK_Deleted && (*I)->isDeleted())) 7163 S.Diag((*I)->getLocation(), diag::note_overridden_virtual_function); 7164 } 7165 } 7166 7167 /// AddOverriddenMethods - See if a method overrides any in the base classes, 7168 /// and if so, check that it's a valid override and remember it. 7169 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) { 7170 // Look for methods in base classes that this method might override. 7171 CXXBasePaths Paths; 7172 FindOverriddenMethod FOM; 7173 FOM.Method = MD; 7174 FOM.S = this; 7175 bool hasDeletedOverridenMethods = false; 7176 bool hasNonDeletedOverridenMethods = false; 7177 bool AddedAny = false; 7178 if (DC->lookupInBases(FOM, Paths)) { 7179 for (auto *I : Paths.found_decls()) { 7180 if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) { 7181 MD->addOverriddenMethod(OldMD->getCanonicalDecl()); 7182 if (!CheckOverridingFunctionReturnType(MD, OldMD) && 7183 !CheckOverridingFunctionAttributes(MD, OldMD) && 7184 !CheckOverridingFunctionExceptionSpec(MD, OldMD) && 7185 !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) { 7186 hasDeletedOverridenMethods |= OldMD->isDeleted(); 7187 hasNonDeletedOverridenMethods |= !OldMD->isDeleted(); 7188 AddedAny = true; 7189 } 7190 } 7191 } 7192 } 7193 7194 if (hasDeletedOverridenMethods && !MD->isDeleted()) { 7195 ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted); 7196 } 7197 if (hasNonDeletedOverridenMethods && MD->isDeleted()) { 7198 ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted); 7199 } 7200 7201 return AddedAny; 7202 } 7203 7204 namespace { 7205 // Struct for holding all of the extra arguments needed by 7206 // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator. 7207 struct ActOnFDArgs { 7208 Scope *S; 7209 Declarator &D; 7210 MultiTemplateParamsArg TemplateParamLists; 7211 bool AddToScope; 7212 }; 7213 } // end anonymous namespace 7214 7215 namespace { 7216 7217 // Callback to only accept typo corrections that have a non-zero edit distance. 7218 // Also only accept corrections that have the same parent decl. 7219 class DifferentNameValidatorCCC : public CorrectionCandidateCallback { 7220 public: 7221 DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD, 7222 CXXRecordDecl *Parent) 7223 : Context(Context), OriginalFD(TypoFD), 7224 ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {} 7225 7226 bool ValidateCandidate(const TypoCorrection &candidate) override { 7227 if (candidate.getEditDistance() == 0) 7228 return false; 7229 7230 SmallVector<unsigned, 1> MismatchedParams; 7231 for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(), 7232 CDeclEnd = candidate.end(); 7233 CDecl != CDeclEnd; ++CDecl) { 7234 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 7235 7236 if (FD && !FD->hasBody() && 7237 hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) { 7238 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 7239 CXXRecordDecl *Parent = MD->getParent(); 7240 if (Parent && Parent->getCanonicalDecl() == ExpectedParent) 7241 return true; 7242 } else if (!ExpectedParent) { 7243 return true; 7244 } 7245 } 7246 } 7247 7248 return false; 7249 } 7250 7251 private: 7252 ASTContext &Context; 7253 FunctionDecl *OriginalFD; 7254 CXXRecordDecl *ExpectedParent; 7255 }; 7256 7257 } // end anonymous namespace 7258 7259 /// \brief Generate diagnostics for an invalid function redeclaration. 7260 /// 7261 /// This routine handles generating the diagnostic messages for an invalid 7262 /// function redeclaration, including finding possible similar declarations 7263 /// or performing typo correction if there are no previous declarations with 7264 /// the same name. 7265 /// 7266 /// Returns a NamedDecl iff typo correction was performed and substituting in 7267 /// the new declaration name does not cause new errors. 7268 static NamedDecl *DiagnoseInvalidRedeclaration( 7269 Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD, 7270 ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) { 7271 DeclarationName Name = NewFD->getDeclName(); 7272 DeclContext *NewDC = NewFD->getDeclContext(); 7273 SmallVector<unsigned, 1> MismatchedParams; 7274 SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches; 7275 TypoCorrection Correction; 7276 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); 7277 unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend 7278 : diag::err_member_decl_does_not_match; 7279 LookupResult Prev(SemaRef, Name, NewFD->getLocation(), 7280 IsLocalFriend ? Sema::LookupLocalFriendName 7281 : Sema::LookupOrdinaryName, 7282 Sema::ForRedeclaration); 7283 7284 NewFD->setInvalidDecl(); 7285 if (IsLocalFriend) 7286 SemaRef.LookupName(Prev, S); 7287 else 7288 SemaRef.LookupQualifiedName(Prev, NewDC); 7289 assert(!Prev.isAmbiguous() && 7290 "Cannot have an ambiguity in previous-declaration lookup"); 7291 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 7292 if (!Prev.empty()) { 7293 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end(); 7294 Func != FuncEnd; ++Func) { 7295 FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func); 7296 if (FD && 7297 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 7298 // Add 1 to the index so that 0 can mean the mismatch didn't 7299 // involve a parameter 7300 unsigned ParamNum = 7301 MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1; 7302 NearMatches.push_back(std::make_pair(FD, ParamNum)); 7303 } 7304 } 7305 // If the qualified name lookup yielded nothing, try typo correction 7306 } else if ((Correction = SemaRef.CorrectTypo( 7307 Prev.getLookupNameInfo(), Prev.getLookupKind(), S, 7308 &ExtraArgs.D.getCXXScopeSpec(), 7309 llvm::make_unique<DifferentNameValidatorCCC>( 7310 SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr), 7311 Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) { 7312 // Set up everything for the call to ActOnFunctionDeclarator 7313 ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(), 7314 ExtraArgs.D.getIdentifierLoc()); 7315 Previous.clear(); 7316 Previous.setLookupName(Correction.getCorrection()); 7317 for (TypoCorrection::decl_iterator CDecl = Correction.begin(), 7318 CDeclEnd = Correction.end(); 7319 CDecl != CDeclEnd; ++CDecl) { 7320 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 7321 if (FD && !FD->hasBody() && 7322 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 7323 Previous.addDecl(FD); 7324 } 7325 } 7326 bool wasRedeclaration = ExtraArgs.D.isRedeclaration(); 7327 7328 NamedDecl *Result; 7329 // Retry building the function declaration with the new previous 7330 // declarations, and with errors suppressed. 7331 { 7332 // Trap errors. 7333 Sema::SFINAETrap Trap(SemaRef); 7334 7335 // TODO: Refactor ActOnFunctionDeclarator so that we can call only the 7336 // pieces need to verify the typo-corrected C++ declaration and hopefully 7337 // eliminate the need for the parameter pack ExtraArgs. 7338 Result = SemaRef.ActOnFunctionDeclarator( 7339 ExtraArgs.S, ExtraArgs.D, 7340 Correction.getCorrectionDecl()->getDeclContext(), 7341 NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists, 7342 ExtraArgs.AddToScope); 7343 7344 if (Trap.hasErrorOccurred()) 7345 Result = nullptr; 7346 } 7347 7348 if (Result) { 7349 // Determine which correction we picked. 7350 Decl *Canonical = Result->getCanonicalDecl(); 7351 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7352 I != E; ++I) 7353 if ((*I)->getCanonicalDecl() == Canonical) 7354 Correction.setCorrectionDecl(*I); 7355 7356 SemaRef.diagnoseTypo( 7357 Correction, 7358 SemaRef.PDiag(IsLocalFriend 7359 ? diag::err_no_matching_local_friend_suggest 7360 : diag::err_member_decl_does_not_match_suggest) 7361 << Name << NewDC << IsDefinition); 7362 return Result; 7363 } 7364 7365 // Pretend the typo correction never occurred 7366 ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(), 7367 ExtraArgs.D.getIdentifierLoc()); 7368 ExtraArgs.D.setRedeclaration(wasRedeclaration); 7369 Previous.clear(); 7370 Previous.setLookupName(Name); 7371 } 7372 7373 SemaRef.Diag(NewFD->getLocation(), DiagMsg) 7374 << Name << NewDC << IsDefinition << NewFD->getLocation(); 7375 7376 bool NewFDisConst = false; 7377 if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD)) 7378 NewFDisConst = NewMD->isConst(); 7379 7380 for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator 7381 NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end(); 7382 NearMatch != NearMatchEnd; ++NearMatch) { 7383 FunctionDecl *FD = NearMatch->first; 7384 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 7385 bool FDisConst = MD && MD->isConst(); 7386 bool IsMember = MD || !IsLocalFriend; 7387 7388 // FIXME: These notes are poorly worded for the local friend case. 7389 if (unsigned Idx = NearMatch->second) { 7390 ParmVarDecl *FDParam = FD->getParamDecl(Idx-1); 7391 SourceLocation Loc = FDParam->getTypeSpecStartLoc(); 7392 if (Loc.isInvalid()) Loc = FD->getLocation(); 7393 SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match 7394 : diag::note_local_decl_close_param_match) 7395 << Idx << FDParam->getType() 7396 << NewFD->getParamDecl(Idx - 1)->getType(); 7397 } else if (FDisConst != NewFDisConst) { 7398 SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match) 7399 << NewFDisConst << FD->getSourceRange().getEnd(); 7400 } else 7401 SemaRef.Diag(FD->getLocation(), 7402 IsMember ? diag::note_member_def_close_match 7403 : diag::note_local_decl_close_match); 7404 } 7405 return nullptr; 7406 } 7407 7408 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) { 7409 switch (D.getDeclSpec().getStorageClassSpec()) { 7410 default: llvm_unreachable("Unknown storage class!"); 7411 case DeclSpec::SCS_auto: 7412 case DeclSpec::SCS_register: 7413 case DeclSpec::SCS_mutable: 7414 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 7415 diag::err_typecheck_sclass_func); 7416 D.setInvalidType(); 7417 break; 7418 case DeclSpec::SCS_unspecified: break; 7419 case DeclSpec::SCS_extern: 7420 if (D.getDeclSpec().isExternInLinkageSpec()) 7421 return SC_None; 7422 return SC_Extern; 7423 case DeclSpec::SCS_static: { 7424 if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) { 7425 // C99 6.7.1p5: 7426 // The declaration of an identifier for a function that has 7427 // block scope shall have no explicit storage-class specifier 7428 // other than extern 7429 // See also (C++ [dcl.stc]p4). 7430 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 7431 diag::err_static_block_func); 7432 break; 7433 } else 7434 return SC_Static; 7435 } 7436 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 7437 } 7438 7439 // No explicit storage class has already been returned 7440 return SC_None; 7441 } 7442 7443 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D, 7444 DeclContext *DC, QualType &R, 7445 TypeSourceInfo *TInfo, 7446 StorageClass SC, 7447 bool &IsVirtualOkay) { 7448 DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D); 7449 DeclarationName Name = NameInfo.getName(); 7450 7451 FunctionDecl *NewFD = nullptr; 7452 bool isInline = D.getDeclSpec().isInlineSpecified(); 7453 7454 if (!SemaRef.getLangOpts().CPlusPlus) { 7455 // Determine whether the function was written with a 7456 // prototype. This true when: 7457 // - there is a prototype in the declarator, or 7458 // - the type R of the function is some kind of typedef or other reference 7459 // to a type name (which eventually refers to a function type). 7460 bool HasPrototype = 7461 (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) || 7462 (!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType()); 7463 7464 NewFD = FunctionDecl::Create(SemaRef.Context, DC, 7465 D.getLocStart(), NameInfo, R, 7466 TInfo, SC, isInline, 7467 HasPrototype, false); 7468 if (D.isInvalidType()) 7469 NewFD->setInvalidDecl(); 7470 7471 return NewFD; 7472 } 7473 7474 bool isExplicit = D.getDeclSpec().isExplicitSpecified(); 7475 bool isConstexpr = D.getDeclSpec().isConstexprSpecified(); 7476 7477 // Check that the return type is not an abstract class type. 7478 // For record types, this is done by the AbstractClassUsageDiagnoser once 7479 // the class has been completely parsed. 7480 if (!DC->isRecord() && 7481 SemaRef.RequireNonAbstractType( 7482 D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(), 7483 diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType)) 7484 D.setInvalidType(); 7485 7486 if (Name.getNameKind() == DeclarationName::CXXConstructorName) { 7487 // This is a C++ constructor declaration. 7488 assert(DC->isRecord() && 7489 "Constructors can only be declared in a member context"); 7490 7491 R = SemaRef.CheckConstructorDeclarator(D, R, SC); 7492 return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC), 7493 D.getLocStart(), NameInfo, 7494 R, TInfo, isExplicit, isInline, 7495 /*isImplicitlyDeclared=*/false, 7496 isConstexpr); 7497 7498 } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 7499 // This is a C++ destructor declaration. 7500 if (DC->isRecord()) { 7501 R = SemaRef.CheckDestructorDeclarator(D, R, SC); 7502 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); 7503 CXXDestructorDecl *NewDD = CXXDestructorDecl::Create( 7504 SemaRef.Context, Record, 7505 D.getLocStart(), 7506 NameInfo, R, TInfo, isInline, 7507 /*isImplicitlyDeclared=*/false); 7508 7509 // If the class is complete, then we now create the implicit exception 7510 // specification. If the class is incomplete or dependent, we can't do 7511 // it yet. 7512 if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() && 7513 Record->getDefinition() && !Record->isBeingDefined() && 7514 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { 7515 SemaRef.AdjustDestructorExceptionSpec(Record, NewDD); 7516 } 7517 7518 IsVirtualOkay = true; 7519 return NewDD; 7520 7521 } else { 7522 SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member); 7523 D.setInvalidType(); 7524 7525 // Create a FunctionDecl to satisfy the function definition parsing 7526 // code path. 7527 return FunctionDecl::Create(SemaRef.Context, DC, 7528 D.getLocStart(), 7529 D.getIdentifierLoc(), Name, R, TInfo, 7530 SC, isInline, 7531 /*hasPrototype=*/true, isConstexpr); 7532 } 7533 7534 } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 7535 if (!DC->isRecord()) { 7536 SemaRef.Diag(D.getIdentifierLoc(), 7537 diag::err_conv_function_not_member); 7538 return nullptr; 7539 } 7540 7541 SemaRef.CheckConversionDeclarator(D, R, SC); 7542 IsVirtualOkay = true; 7543 return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC), 7544 D.getLocStart(), NameInfo, 7545 R, TInfo, isInline, isExplicit, 7546 isConstexpr, SourceLocation()); 7547 7548 } else if (DC->isRecord()) { 7549 // If the name of the function is the same as the name of the record, 7550 // then this must be an invalid constructor that has a return type. 7551 // (The parser checks for a return type and makes the declarator a 7552 // constructor if it has no return type). 7553 if (Name.getAsIdentifierInfo() && 7554 Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){ 7555 SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type) 7556 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 7557 << SourceRange(D.getIdentifierLoc()); 7558 return nullptr; 7559 } 7560 7561 // This is a C++ method declaration. 7562 CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context, 7563 cast<CXXRecordDecl>(DC), 7564 D.getLocStart(), NameInfo, R, 7565 TInfo, SC, isInline, 7566 isConstexpr, SourceLocation()); 7567 IsVirtualOkay = !Ret->isStatic(); 7568 return Ret; 7569 } else { 7570 bool isFriend = 7571 SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified(); 7572 if (!isFriend && SemaRef.CurContext->isRecord()) 7573 return nullptr; 7574 7575 // Determine whether the function was written with a 7576 // prototype. This true when: 7577 // - we're in C++ (where every function has a prototype), 7578 return FunctionDecl::Create(SemaRef.Context, DC, 7579 D.getLocStart(), 7580 NameInfo, R, TInfo, SC, isInline, 7581 true/*HasPrototype*/, isConstexpr); 7582 } 7583 } 7584 7585 enum OpenCLParamType { 7586 ValidKernelParam, 7587 PtrPtrKernelParam, 7588 PtrKernelParam, 7589 InvalidAddrSpacePtrKernelParam, 7590 InvalidKernelParam, 7591 RecordKernelParam 7592 }; 7593 7594 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) { 7595 if (PT->isPointerType()) { 7596 QualType PointeeType = PT->getPointeeType(); 7597 if (PointeeType->isPointerType()) 7598 return PtrPtrKernelParam; 7599 if (PointeeType.getAddressSpace() == LangAS::opencl_generic || 7600 PointeeType.getAddressSpace() == 0) 7601 return InvalidAddrSpacePtrKernelParam; 7602 return PtrKernelParam; 7603 } 7604 7605 // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can 7606 // be used as builtin types. 7607 7608 if (PT->isImageType()) 7609 return PtrKernelParam; 7610 7611 if (PT->isBooleanType()) 7612 return InvalidKernelParam; 7613 7614 if (PT->isEventT()) 7615 return InvalidKernelParam; 7616 7617 // OpenCL extension spec v1.2 s9.5: 7618 // This extension adds support for half scalar and vector types as built-in 7619 // types that can be used for arithmetic operations, conversions etc. 7620 if (!S.getOpenCLOptions().cl_khr_fp16 && PT->isHalfType()) 7621 return InvalidKernelParam; 7622 7623 if (PT->isRecordType()) 7624 return RecordKernelParam; 7625 7626 return ValidKernelParam; 7627 } 7628 7629 static void checkIsValidOpenCLKernelParameter( 7630 Sema &S, 7631 Declarator &D, 7632 ParmVarDecl *Param, 7633 llvm::SmallPtrSetImpl<const Type *> &ValidTypes) { 7634 QualType PT = Param->getType(); 7635 7636 // Cache the valid types we encounter to avoid rechecking structs that are 7637 // used again 7638 if (ValidTypes.count(PT.getTypePtr())) 7639 return; 7640 7641 switch (getOpenCLKernelParameterType(S, PT)) { 7642 case PtrPtrKernelParam: 7643 // OpenCL v1.2 s6.9.a: 7644 // A kernel function argument cannot be declared as a 7645 // pointer to a pointer type. 7646 S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param); 7647 D.setInvalidType(); 7648 return; 7649 7650 case InvalidAddrSpacePtrKernelParam: 7651 // OpenCL v1.0 s6.5: 7652 // __kernel function arguments declared to be a pointer of a type can point 7653 // to one of the following address spaces only : __global, __local or 7654 // __constant. 7655 S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space); 7656 D.setInvalidType(); 7657 return; 7658 7659 // OpenCL v1.2 s6.9.k: 7660 // Arguments to kernel functions in a program cannot be declared with the 7661 // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and 7662 // uintptr_t or a struct and/or union that contain fields declared to be 7663 // one of these built-in scalar types. 7664 7665 case InvalidKernelParam: 7666 // OpenCL v1.2 s6.8 n: 7667 // A kernel function argument cannot be declared 7668 // of event_t type. 7669 // Do not diagnose half type since it is diagnosed as invalid argument 7670 // type for any function elsewhere. 7671 if (!PT->isHalfType()) 7672 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT; 7673 D.setInvalidType(); 7674 return; 7675 7676 case PtrKernelParam: 7677 case ValidKernelParam: 7678 ValidTypes.insert(PT.getTypePtr()); 7679 return; 7680 7681 case RecordKernelParam: 7682 break; 7683 } 7684 7685 // Track nested structs we will inspect 7686 SmallVector<const Decl *, 4> VisitStack; 7687 7688 // Track where we are in the nested structs. Items will migrate from 7689 // VisitStack to HistoryStack as we do the DFS for bad field. 7690 SmallVector<const FieldDecl *, 4> HistoryStack; 7691 HistoryStack.push_back(nullptr); 7692 7693 const RecordDecl *PD = PT->castAs<RecordType>()->getDecl(); 7694 VisitStack.push_back(PD); 7695 7696 assert(VisitStack.back() && "First decl null?"); 7697 7698 do { 7699 const Decl *Next = VisitStack.pop_back_val(); 7700 if (!Next) { 7701 assert(!HistoryStack.empty()); 7702 // Found a marker, we have gone up a level 7703 if (const FieldDecl *Hist = HistoryStack.pop_back_val()) 7704 ValidTypes.insert(Hist->getType().getTypePtr()); 7705 7706 continue; 7707 } 7708 7709 // Adds everything except the original parameter declaration (which is not a 7710 // field itself) to the history stack. 7711 const RecordDecl *RD; 7712 if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) { 7713 HistoryStack.push_back(Field); 7714 RD = Field->getType()->castAs<RecordType>()->getDecl(); 7715 } else { 7716 RD = cast<RecordDecl>(Next); 7717 } 7718 7719 // Add a null marker so we know when we've gone back up a level 7720 VisitStack.push_back(nullptr); 7721 7722 for (const auto *FD : RD->fields()) { 7723 QualType QT = FD->getType(); 7724 7725 if (ValidTypes.count(QT.getTypePtr())) 7726 continue; 7727 7728 OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT); 7729 if (ParamType == ValidKernelParam) 7730 continue; 7731 7732 if (ParamType == RecordKernelParam) { 7733 VisitStack.push_back(FD); 7734 continue; 7735 } 7736 7737 // OpenCL v1.2 s6.9.p: 7738 // Arguments to kernel functions that are declared to be a struct or union 7739 // do not allow OpenCL objects to be passed as elements of the struct or 7740 // union. 7741 if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam || 7742 ParamType == InvalidAddrSpacePtrKernelParam) { 7743 S.Diag(Param->getLocation(), 7744 diag::err_record_with_pointers_kernel_param) 7745 << PT->isUnionType() 7746 << PT; 7747 } else { 7748 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT; 7749 } 7750 7751 S.Diag(PD->getLocation(), diag::note_within_field_of_type) 7752 << PD->getDeclName(); 7753 7754 // We have an error, now let's go back up through history and show where 7755 // the offending field came from 7756 for (ArrayRef<const FieldDecl *>::const_iterator 7757 I = HistoryStack.begin() + 1, 7758 E = HistoryStack.end(); 7759 I != E; ++I) { 7760 const FieldDecl *OuterField = *I; 7761 S.Diag(OuterField->getLocation(), diag::note_within_field_of_type) 7762 << OuterField->getType(); 7763 } 7764 7765 S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here) 7766 << QT->isPointerType() 7767 << QT; 7768 D.setInvalidType(); 7769 return; 7770 } 7771 } while (!VisitStack.empty()); 7772 } 7773 7774 /// Find the DeclContext in which a tag is implicitly declared if we see an 7775 /// elaborated type specifier in the specified context, and lookup finds 7776 /// nothing. 7777 static DeclContext *getTagInjectionContext(DeclContext *DC) { 7778 while (!DC->isFileContext() && !DC->isFunctionOrMethod()) 7779 DC = DC->getParent(); 7780 return DC; 7781 } 7782 7783 /// Find the Scope in which a tag is implicitly declared if we see an 7784 /// elaborated type specifier in the specified context, and lookup finds 7785 /// nothing. 7786 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) { 7787 while (S->isClassScope() || 7788 (LangOpts.CPlusPlus && 7789 S->isFunctionPrototypeScope()) || 7790 ((S->getFlags() & Scope::DeclScope) == 0) || 7791 (S->getEntity() && S->getEntity()->isTransparentContext())) 7792 S = S->getParent(); 7793 return S; 7794 } 7795 7796 NamedDecl* 7797 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC, 7798 TypeSourceInfo *TInfo, LookupResult &Previous, 7799 MultiTemplateParamsArg TemplateParamLists, 7800 bool &AddToScope) { 7801 QualType R = TInfo->getType(); 7802 7803 assert(R.getTypePtr()->isFunctionType()); 7804 7805 // TODO: consider using NameInfo for diagnostic. 7806 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 7807 DeclarationName Name = NameInfo.getName(); 7808 StorageClass SC = getFunctionStorageClass(*this, D); 7809 7810 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 7811 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 7812 diag::err_invalid_thread) 7813 << DeclSpec::getSpecifierName(TSCS); 7814 7815 if (D.isFirstDeclarationOfMember()) 7816 adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(), 7817 D.getIdentifierLoc()); 7818 7819 bool isFriend = false; 7820 FunctionTemplateDecl *FunctionTemplate = nullptr; 7821 bool isExplicitSpecialization = false; 7822 bool isFunctionTemplateSpecialization = false; 7823 7824 bool isDependentClassScopeExplicitSpecialization = false; 7825 bool HasExplicitTemplateArgs = false; 7826 TemplateArgumentListInfo TemplateArgs; 7827 7828 bool isVirtualOkay = false; 7829 7830 DeclContext *OriginalDC = DC; 7831 bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC); 7832 7833 FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC, 7834 isVirtualOkay); 7835 if (!NewFD) return nullptr; 7836 7837 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer()) 7838 NewFD->setTopLevelDeclInObjCContainer(); 7839 7840 // Set the lexical context. If this is a function-scope declaration, or has a 7841 // C++ scope specifier, or is the object of a friend declaration, the lexical 7842 // context will be different from the semantic context. 7843 NewFD->setLexicalDeclContext(CurContext); 7844 7845 if (IsLocalExternDecl) 7846 NewFD->setLocalExternDecl(); 7847 7848 if (getLangOpts().CPlusPlus) { 7849 bool isInline = D.getDeclSpec().isInlineSpecified(); 7850 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 7851 bool isExplicit = D.getDeclSpec().isExplicitSpecified(); 7852 bool isConstexpr = D.getDeclSpec().isConstexprSpecified(); 7853 bool isConcept = D.getDeclSpec().isConceptSpecified(); 7854 isFriend = D.getDeclSpec().isFriendSpecified(); 7855 if (isFriend && !isInline && D.isFunctionDefinition()) { 7856 // C++ [class.friend]p5 7857 // A function can be defined in a friend declaration of a 7858 // class . . . . Such a function is implicitly inline. 7859 NewFD->setImplicitlyInline(); 7860 } 7861 7862 // If this is a method defined in an __interface, and is not a constructor 7863 // or an overloaded operator, then set the pure flag (isVirtual will already 7864 // return true). 7865 if (const CXXRecordDecl *Parent = 7866 dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) { 7867 if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided()) 7868 NewFD->setPure(true); 7869 7870 // C++ [class.union]p2 7871 // A union can have member functions, but not virtual functions. 7872 if (isVirtual && Parent->isUnion()) 7873 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union); 7874 } 7875 7876 SetNestedNameSpecifier(NewFD, D); 7877 isExplicitSpecialization = false; 7878 isFunctionTemplateSpecialization = false; 7879 if (D.isInvalidType()) 7880 NewFD->setInvalidDecl(); 7881 7882 // Match up the template parameter lists with the scope specifier, then 7883 // determine whether we have a template or a template specialization. 7884 bool Invalid = false; 7885 if (TemplateParameterList *TemplateParams = 7886 MatchTemplateParametersToScopeSpecifier( 7887 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(), 7888 D.getCXXScopeSpec(), 7889 D.getName().getKind() == UnqualifiedId::IK_TemplateId 7890 ? D.getName().TemplateId 7891 : nullptr, 7892 TemplateParamLists, isFriend, isExplicitSpecialization, 7893 Invalid)) { 7894 if (TemplateParams->size() > 0) { 7895 // This is a function template 7896 7897 // Check that we can declare a template here. 7898 if (CheckTemplateDeclScope(S, TemplateParams)) 7899 NewFD->setInvalidDecl(); 7900 7901 // A destructor cannot be a template. 7902 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 7903 Diag(NewFD->getLocation(), diag::err_destructor_template); 7904 NewFD->setInvalidDecl(); 7905 } 7906 7907 // If we're adding a template to a dependent context, we may need to 7908 // rebuilding some of the types used within the template parameter list, 7909 // now that we know what the current instantiation is. 7910 if (DC->isDependentContext()) { 7911 ContextRAII SavedContext(*this, DC); 7912 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams)) 7913 Invalid = true; 7914 } 7915 7916 FunctionTemplate = FunctionTemplateDecl::Create(Context, DC, 7917 NewFD->getLocation(), 7918 Name, TemplateParams, 7919 NewFD); 7920 FunctionTemplate->setLexicalDeclContext(CurContext); 7921 NewFD->setDescribedFunctionTemplate(FunctionTemplate); 7922 7923 // For source fidelity, store the other template param lists. 7924 if (TemplateParamLists.size() > 1) { 7925 NewFD->setTemplateParameterListsInfo(Context, 7926 TemplateParamLists.drop_back(1)); 7927 } 7928 } else { 7929 // This is a function template specialization. 7930 isFunctionTemplateSpecialization = true; 7931 // For source fidelity, store all the template param lists. 7932 if (TemplateParamLists.size() > 0) 7933 NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists); 7934 7935 // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);". 7936 if (isFriend) { 7937 // We want to remove the "template<>", found here. 7938 SourceRange RemoveRange = TemplateParams->getSourceRange(); 7939 7940 // If we remove the template<> and the name is not a 7941 // template-id, we're actually silently creating a problem: 7942 // the friend declaration will refer to an untemplated decl, 7943 // and clearly the user wants a template specialization. So 7944 // we need to insert '<>' after the name. 7945 SourceLocation InsertLoc; 7946 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) { 7947 InsertLoc = D.getName().getSourceRange().getEnd(); 7948 InsertLoc = getLocForEndOfToken(InsertLoc); 7949 } 7950 7951 Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend) 7952 << Name << RemoveRange 7953 << FixItHint::CreateRemoval(RemoveRange) 7954 << FixItHint::CreateInsertion(InsertLoc, "<>"); 7955 } 7956 } 7957 } 7958 else { 7959 // All template param lists were matched against the scope specifier: 7960 // this is NOT (an explicit specialization of) a template. 7961 if (TemplateParamLists.size() > 0) 7962 // For source fidelity, store all the template param lists. 7963 NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists); 7964 } 7965 7966 if (Invalid) { 7967 NewFD->setInvalidDecl(); 7968 if (FunctionTemplate) 7969 FunctionTemplate->setInvalidDecl(); 7970 } 7971 7972 // C++ [dcl.fct.spec]p5: 7973 // The virtual specifier shall only be used in declarations of 7974 // nonstatic class member functions that appear within a 7975 // member-specification of a class declaration; see 10.3. 7976 // 7977 if (isVirtual && !NewFD->isInvalidDecl()) { 7978 if (!isVirtualOkay) { 7979 Diag(D.getDeclSpec().getVirtualSpecLoc(), 7980 diag::err_virtual_non_function); 7981 } else if (!CurContext->isRecord()) { 7982 // 'virtual' was specified outside of the class. 7983 Diag(D.getDeclSpec().getVirtualSpecLoc(), 7984 diag::err_virtual_out_of_class) 7985 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 7986 } else if (NewFD->getDescribedFunctionTemplate()) { 7987 // C++ [temp.mem]p3: 7988 // A member function template shall not be virtual. 7989 Diag(D.getDeclSpec().getVirtualSpecLoc(), 7990 diag::err_virtual_member_function_template) 7991 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 7992 } else { 7993 // Okay: Add virtual to the method. 7994 NewFD->setVirtualAsWritten(true); 7995 } 7996 7997 if (getLangOpts().CPlusPlus14 && 7998 NewFD->getReturnType()->isUndeducedType()) 7999 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual); 8000 } 8001 8002 if (getLangOpts().CPlusPlus14 && 8003 (NewFD->isDependentContext() || 8004 (isFriend && CurContext->isDependentContext())) && 8005 NewFD->getReturnType()->isUndeducedType()) { 8006 // If the function template is referenced directly (for instance, as a 8007 // member of the current instantiation), pretend it has a dependent type. 8008 // This is not really justified by the standard, but is the only sane 8009 // thing to do. 8010 // FIXME: For a friend function, we have not marked the function as being 8011 // a friend yet, so 'isDependentContext' on the FD doesn't work. 8012 const FunctionProtoType *FPT = 8013 NewFD->getType()->castAs<FunctionProtoType>(); 8014 QualType Result = 8015 SubstAutoType(FPT->getReturnType(), Context.DependentTy); 8016 NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(), 8017 FPT->getExtProtoInfo())); 8018 } 8019 8020 // C++ [dcl.fct.spec]p3: 8021 // The inline specifier shall not appear on a block scope function 8022 // declaration. 8023 if (isInline && !NewFD->isInvalidDecl()) { 8024 if (CurContext->isFunctionOrMethod()) { 8025 // 'inline' is not allowed on block scope function declaration. 8026 Diag(D.getDeclSpec().getInlineSpecLoc(), 8027 diag::err_inline_declaration_block_scope) << Name 8028 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 8029 } 8030 } 8031 8032 // C++ [dcl.fct.spec]p6: 8033 // The explicit specifier shall be used only in the declaration of a 8034 // constructor or conversion function within its class definition; 8035 // see 12.3.1 and 12.3.2. 8036 if (isExplicit && !NewFD->isInvalidDecl()) { 8037 if (!CurContext->isRecord()) { 8038 // 'explicit' was specified outside of the class. 8039 Diag(D.getDeclSpec().getExplicitSpecLoc(), 8040 diag::err_explicit_out_of_class) 8041 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc()); 8042 } else if (!isa<CXXConstructorDecl>(NewFD) && 8043 !isa<CXXConversionDecl>(NewFD)) { 8044 // 'explicit' was specified on a function that wasn't a constructor 8045 // or conversion function. 8046 Diag(D.getDeclSpec().getExplicitSpecLoc(), 8047 diag::err_explicit_non_ctor_or_conv_function) 8048 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc()); 8049 } 8050 } 8051 8052 if (isConstexpr) { 8053 // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors 8054 // are implicitly inline. 8055 NewFD->setImplicitlyInline(); 8056 8057 // C++11 [dcl.constexpr]p3: functions declared constexpr are required to 8058 // be either constructors or to return a literal type. Therefore, 8059 // destructors cannot be declared constexpr. 8060 if (isa<CXXDestructorDecl>(NewFD)) 8061 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor); 8062 } 8063 8064 if (isConcept) { 8065 // This is a function concept. 8066 if (FunctionTemplateDecl *FTD = NewFD->getDescribedFunctionTemplate()) 8067 FTD->setConcept(); 8068 8069 // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be 8070 // applied only to the definition of a function template [...] 8071 if (!D.isFunctionDefinition()) { 8072 Diag(D.getDeclSpec().getConceptSpecLoc(), 8073 diag::err_function_concept_not_defined); 8074 NewFD->setInvalidDecl(); 8075 } 8076 8077 // C++ Concepts TS [dcl.spec.concept]p1: [...] A function concept shall 8078 // have no exception-specification and is treated as if it were specified 8079 // with noexcept(true) (15.4). [...] 8080 if (const FunctionProtoType *FPT = R->getAs<FunctionProtoType>()) { 8081 if (FPT->hasExceptionSpec()) { 8082 SourceRange Range; 8083 if (D.isFunctionDeclarator()) 8084 Range = D.getFunctionTypeInfo().getExceptionSpecRange(); 8085 Diag(NewFD->getLocation(), diag::err_function_concept_exception_spec) 8086 << FixItHint::CreateRemoval(Range); 8087 NewFD->setInvalidDecl(); 8088 } else { 8089 Context.adjustExceptionSpec(NewFD, EST_BasicNoexcept); 8090 } 8091 8092 // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the 8093 // following restrictions: 8094 // - The declared return type shall have the type bool. 8095 if (!Context.hasSameType(FPT->getReturnType(), Context.BoolTy)) { 8096 Diag(D.getIdentifierLoc(), diag::err_function_concept_bool_ret); 8097 NewFD->setInvalidDecl(); 8098 } 8099 8100 // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the 8101 // following restrictions: 8102 // - The declaration's parameter list shall be equivalent to an empty 8103 // parameter list. 8104 if (FPT->getNumParams() > 0 || FPT->isVariadic()) 8105 Diag(NewFD->getLocation(), diag::err_function_concept_with_params); 8106 } 8107 8108 // C++ Concepts TS [dcl.spec.concept]p2: Every concept definition is 8109 // implicity defined to be a constexpr declaration (implicitly inline) 8110 NewFD->setImplicitlyInline(); 8111 8112 // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not 8113 // be declared with the thread_local, inline, friend, or constexpr 8114 // specifiers, [...] 8115 if (isInline) { 8116 Diag(D.getDeclSpec().getInlineSpecLoc(), 8117 diag::err_concept_decl_invalid_specifiers) 8118 << 1 << 1; 8119 NewFD->setInvalidDecl(true); 8120 } 8121 8122 if (isFriend) { 8123 Diag(D.getDeclSpec().getFriendSpecLoc(), 8124 diag::err_concept_decl_invalid_specifiers) 8125 << 1 << 2; 8126 NewFD->setInvalidDecl(true); 8127 } 8128 8129 if (isConstexpr) { 8130 Diag(D.getDeclSpec().getConstexprSpecLoc(), 8131 diag::err_concept_decl_invalid_specifiers) 8132 << 1 << 3; 8133 NewFD->setInvalidDecl(true); 8134 } 8135 8136 // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be 8137 // applied only to the definition of a function template or variable 8138 // template, declared in namespace scope. 8139 if (isFunctionTemplateSpecialization) { 8140 Diag(D.getDeclSpec().getConceptSpecLoc(), 8141 diag::err_concept_specified_specialization) << 1; 8142 NewFD->setInvalidDecl(true); 8143 return NewFD; 8144 } 8145 } 8146 8147 // If __module_private__ was specified, mark the function accordingly. 8148 if (D.getDeclSpec().isModulePrivateSpecified()) { 8149 if (isFunctionTemplateSpecialization) { 8150 SourceLocation ModulePrivateLoc 8151 = D.getDeclSpec().getModulePrivateSpecLoc(); 8152 Diag(ModulePrivateLoc, diag::err_module_private_specialization) 8153 << 0 8154 << FixItHint::CreateRemoval(ModulePrivateLoc); 8155 } else { 8156 NewFD->setModulePrivate(); 8157 if (FunctionTemplate) 8158 FunctionTemplate->setModulePrivate(); 8159 } 8160 } 8161 8162 if (isFriend) { 8163 if (FunctionTemplate) { 8164 FunctionTemplate->setObjectOfFriendDecl(); 8165 FunctionTemplate->setAccess(AS_public); 8166 } 8167 NewFD->setObjectOfFriendDecl(); 8168 NewFD->setAccess(AS_public); 8169 } 8170 8171 // If a function is defined as defaulted or deleted, mark it as such now. 8172 // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function 8173 // definition kind to FDK_Definition. 8174 switch (D.getFunctionDefinitionKind()) { 8175 case FDK_Declaration: 8176 case FDK_Definition: 8177 break; 8178 8179 case FDK_Defaulted: 8180 NewFD->setDefaulted(); 8181 break; 8182 8183 case FDK_Deleted: 8184 NewFD->setDeletedAsWritten(); 8185 break; 8186 } 8187 8188 if (isa<CXXMethodDecl>(NewFD) && DC == CurContext && 8189 D.isFunctionDefinition()) { 8190 // C++ [class.mfct]p2: 8191 // A member function may be defined (8.4) in its class definition, in 8192 // which case it is an inline member function (7.1.2) 8193 NewFD->setImplicitlyInline(); 8194 } 8195 8196 if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) && 8197 !CurContext->isRecord()) { 8198 // C++ [class.static]p1: 8199 // A data or function member of a class may be declared static 8200 // in a class definition, in which case it is a static member of 8201 // the class. 8202 8203 // Complain about the 'static' specifier if it's on an out-of-line 8204 // member function definition. 8205 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 8206 diag::err_static_out_of_line) 8207 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 8208 } 8209 8210 // C++11 [except.spec]p15: 8211 // A deallocation function with no exception-specification is treated 8212 // as if it were specified with noexcept(true). 8213 const FunctionProtoType *FPT = R->getAs<FunctionProtoType>(); 8214 if ((Name.getCXXOverloadedOperator() == OO_Delete || 8215 Name.getCXXOverloadedOperator() == OO_Array_Delete) && 8216 getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec()) 8217 NewFD->setType(Context.getFunctionType( 8218 FPT->getReturnType(), FPT->getParamTypes(), 8219 FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept))); 8220 } 8221 8222 // Filter out previous declarations that don't match the scope. 8223 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD), 8224 D.getCXXScopeSpec().isNotEmpty() || 8225 isExplicitSpecialization || 8226 isFunctionTemplateSpecialization); 8227 8228 // Handle GNU asm-label extension (encoded as an attribute). 8229 if (Expr *E = (Expr*) D.getAsmLabel()) { 8230 // The parser guarantees this is a string. 8231 StringLiteral *SE = cast<StringLiteral>(E); 8232 NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context, 8233 SE->getString(), 0)); 8234 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 8235 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 8236 ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier()); 8237 if (I != ExtnameUndeclaredIdentifiers.end()) { 8238 if (isDeclExternC(NewFD)) { 8239 NewFD->addAttr(I->second); 8240 ExtnameUndeclaredIdentifiers.erase(I); 8241 } else 8242 Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied) 8243 << /*Variable*/0 << NewFD; 8244 } 8245 } 8246 8247 // Copy the parameter declarations from the declarator D to the function 8248 // declaration NewFD, if they are available. First scavenge them into Params. 8249 SmallVector<ParmVarDecl*, 16> Params; 8250 unsigned FTIIdx; 8251 if (D.isFunctionDeclarator(FTIIdx)) { 8252 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun; 8253 8254 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs 8255 // function that takes no arguments, not a function that takes a 8256 // single void argument. 8257 // We let through "const void" here because Sema::GetTypeForDeclarator 8258 // already checks for that case. 8259 if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) { 8260 for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) { 8261 ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param); 8262 assert(Param->getDeclContext() != NewFD && "Was set before ?"); 8263 Param->setDeclContext(NewFD); 8264 Params.push_back(Param); 8265 8266 if (Param->isInvalidDecl()) 8267 NewFD->setInvalidDecl(); 8268 } 8269 } 8270 8271 if (!getLangOpts().CPlusPlus) { 8272 // In C, find all the tag declarations from the prototype and move them 8273 // into the function DeclContext. Remove them from the surrounding tag 8274 // injection context of the function, which is typically but not always 8275 // the TU. 8276 DeclContext *PrototypeTagContext = 8277 getTagInjectionContext(NewFD->getLexicalDeclContext()); 8278 for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) { 8279 auto *TD = dyn_cast<TagDecl>(NonParmDecl); 8280 8281 // We don't want to reparent enumerators. Look at their parent enum 8282 // instead. 8283 if (!TD) { 8284 if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl)) 8285 TD = cast<EnumDecl>(ECD->getDeclContext()); 8286 } 8287 if (!TD) 8288 continue; 8289 DeclContext *TagDC = TD->getLexicalDeclContext(); 8290 if (!TagDC->containsDecl(TD)) 8291 continue; 8292 TagDC->removeDecl(TD); 8293 TD->setDeclContext(NewFD); 8294 NewFD->addDecl(TD); 8295 8296 // Preserve the lexical DeclContext if it is not the surrounding tag 8297 // injection context of the FD. In this example, the semantic context of 8298 // E will be f and the lexical context will be S, while both the 8299 // semantic and lexical contexts of S will be f: 8300 // void f(struct S { enum E { a } f; } s); 8301 if (TagDC != PrototypeTagContext) 8302 TD->setLexicalDeclContext(TagDC); 8303 } 8304 } 8305 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) { 8306 // When we're declaring a function with a typedef, typeof, etc as in the 8307 // following example, we'll need to synthesize (unnamed) 8308 // parameters for use in the declaration. 8309 // 8310 // @code 8311 // typedef void fn(int); 8312 // fn f; 8313 // @endcode 8314 8315 // Synthesize a parameter for each argument type. 8316 for (const auto &AI : FT->param_types()) { 8317 ParmVarDecl *Param = 8318 BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI); 8319 Param->setScopeInfo(0, Params.size()); 8320 Params.push_back(Param); 8321 } 8322 } else { 8323 assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 && 8324 "Should not need args for typedef of non-prototype fn"); 8325 } 8326 8327 // Finally, we know we have the right number of parameters, install them. 8328 NewFD->setParams(Params); 8329 8330 if (D.getDeclSpec().isNoreturnSpecified()) 8331 NewFD->addAttr( 8332 ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(), 8333 Context, 0)); 8334 8335 // Functions returning a variably modified type violate C99 6.7.5.2p2 8336 // because all functions have linkage. 8337 if (!NewFD->isInvalidDecl() && 8338 NewFD->getReturnType()->isVariablyModifiedType()) { 8339 Diag(NewFD->getLocation(), diag::err_vm_func_decl); 8340 NewFD->setInvalidDecl(); 8341 } 8342 8343 // Apply an implicit SectionAttr if #pragma code_seg is active. 8344 if (CodeSegStack.CurrentValue && D.isFunctionDefinition() && 8345 !NewFD->hasAttr<SectionAttr>()) { 8346 NewFD->addAttr( 8347 SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate, 8348 CodeSegStack.CurrentValue->getString(), 8349 CodeSegStack.CurrentPragmaLocation)); 8350 if (UnifySection(CodeSegStack.CurrentValue->getString(), 8351 ASTContext::PSF_Implicit | ASTContext::PSF_Execute | 8352 ASTContext::PSF_Read, 8353 NewFD)) 8354 NewFD->dropAttr<SectionAttr>(); 8355 } 8356 8357 // Handle attributes. 8358 ProcessDeclAttributes(S, NewFD, D); 8359 8360 if (getLangOpts().OpenCL) { 8361 // OpenCL v1.1 s6.5: Using an address space qualifier in a function return 8362 // type declaration will generate a compilation error. 8363 unsigned AddressSpace = NewFD->getReturnType().getAddressSpace(); 8364 if (AddressSpace == LangAS::opencl_local || 8365 AddressSpace == LangAS::opencl_global || 8366 AddressSpace == LangAS::opencl_constant) { 8367 Diag(NewFD->getLocation(), 8368 diag::err_opencl_return_value_with_address_space); 8369 NewFD->setInvalidDecl(); 8370 } 8371 } 8372 8373 if (!getLangOpts().CPlusPlus) { 8374 // Perform semantic checking on the function declaration. 8375 bool isExplicitSpecialization=false; 8376 if (!NewFD->isInvalidDecl() && NewFD->isMain()) 8377 CheckMain(NewFD, D.getDeclSpec()); 8378 8379 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint()) 8380 CheckMSVCRTEntryPoint(NewFD); 8381 8382 if (!NewFD->isInvalidDecl()) 8383 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 8384 isExplicitSpecialization)); 8385 else if (!Previous.empty()) 8386 // Recover gracefully from an invalid redeclaration. 8387 D.setRedeclaration(true); 8388 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 8389 Previous.getResultKind() != LookupResult::FoundOverloaded) && 8390 "previous declaration set still overloaded"); 8391 8392 // Diagnose no-prototype function declarations with calling conventions that 8393 // don't support variadic calls. Only do this in C and do it after merging 8394 // possibly prototyped redeclarations. 8395 const FunctionType *FT = NewFD->getType()->castAs<FunctionType>(); 8396 if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) { 8397 CallingConv CC = FT->getExtInfo().getCC(); 8398 if (!supportsVariadicCall(CC)) { 8399 // Windows system headers sometimes accidentally use stdcall without 8400 // (void) parameters, so we relax this to a warning. 8401 int DiagID = 8402 CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr; 8403 Diag(NewFD->getLocation(), DiagID) 8404 << FunctionType::getNameForCallConv(CC); 8405 } 8406 } 8407 } else { 8408 // C++11 [replacement.functions]p3: 8409 // The program's definitions shall not be specified as inline. 8410 // 8411 // N.B. We diagnose declarations instead of definitions per LWG issue 2340. 8412 // 8413 // Suppress the diagnostic if the function is __attribute__((used)), since 8414 // that forces an external definition to be emitted. 8415 if (D.getDeclSpec().isInlineSpecified() && 8416 NewFD->isReplaceableGlobalAllocationFunction() && 8417 !NewFD->hasAttr<UsedAttr>()) 8418 Diag(D.getDeclSpec().getInlineSpecLoc(), 8419 diag::ext_operator_new_delete_declared_inline) 8420 << NewFD->getDeclName(); 8421 8422 // If the declarator is a template-id, translate the parser's template 8423 // argument list into our AST format. 8424 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) { 8425 TemplateIdAnnotation *TemplateId = D.getName().TemplateId; 8426 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc); 8427 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc); 8428 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 8429 TemplateId->NumArgs); 8430 translateTemplateArguments(TemplateArgsPtr, 8431 TemplateArgs); 8432 8433 HasExplicitTemplateArgs = true; 8434 8435 if (NewFD->isInvalidDecl()) { 8436 HasExplicitTemplateArgs = false; 8437 } else if (FunctionTemplate) { 8438 // Function template with explicit template arguments. 8439 Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec) 8440 << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc); 8441 8442 HasExplicitTemplateArgs = false; 8443 } else { 8444 assert((isFunctionTemplateSpecialization || 8445 D.getDeclSpec().isFriendSpecified()) && 8446 "should have a 'template<>' for this decl"); 8447 // "friend void foo<>(int);" is an implicit specialization decl. 8448 isFunctionTemplateSpecialization = true; 8449 } 8450 } else if (isFriend && isFunctionTemplateSpecialization) { 8451 // This combination is only possible in a recovery case; the user 8452 // wrote something like: 8453 // template <> friend void foo(int); 8454 // which we're recovering from as if the user had written: 8455 // friend void foo<>(int); 8456 // Go ahead and fake up a template id. 8457 HasExplicitTemplateArgs = true; 8458 TemplateArgs.setLAngleLoc(D.getIdentifierLoc()); 8459 TemplateArgs.setRAngleLoc(D.getIdentifierLoc()); 8460 } 8461 8462 // We do not add HD attributes to specializations here because 8463 // they may have different constexpr-ness compared to their 8464 // templates and, after maybeAddCUDAHostDeviceAttrs() is applied, 8465 // may end up with different effective targets. Instead, a 8466 // specialization inherits its target attributes from its template 8467 // in the CheckFunctionTemplateSpecialization() call below. 8468 if (getLangOpts().CUDA & !isFunctionTemplateSpecialization) 8469 maybeAddCUDAHostDeviceAttrs(NewFD, Previous); 8470 8471 // If it's a friend (and only if it's a friend), it's possible 8472 // that either the specialized function type or the specialized 8473 // template is dependent, and therefore matching will fail. In 8474 // this case, don't check the specialization yet. 8475 bool InstantiationDependent = false; 8476 if (isFunctionTemplateSpecialization && isFriend && 8477 (NewFD->getType()->isDependentType() || DC->isDependentContext() || 8478 TemplateSpecializationType::anyDependentTemplateArguments( 8479 TemplateArgs, 8480 InstantiationDependent))) { 8481 assert(HasExplicitTemplateArgs && 8482 "friend function specialization without template args"); 8483 if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs, 8484 Previous)) 8485 NewFD->setInvalidDecl(); 8486 } else if (isFunctionTemplateSpecialization) { 8487 if (CurContext->isDependentContext() && CurContext->isRecord() 8488 && !isFriend) { 8489 isDependentClassScopeExplicitSpecialization = true; 8490 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 8491 diag::ext_function_specialization_in_class : 8492 diag::err_function_specialization_in_class) 8493 << NewFD->getDeclName(); 8494 } else if (CheckFunctionTemplateSpecialization(NewFD, 8495 (HasExplicitTemplateArgs ? &TemplateArgs 8496 : nullptr), 8497 Previous)) 8498 NewFD->setInvalidDecl(); 8499 8500 // C++ [dcl.stc]p1: 8501 // A storage-class-specifier shall not be specified in an explicit 8502 // specialization (14.7.3) 8503 FunctionTemplateSpecializationInfo *Info = 8504 NewFD->getTemplateSpecializationInfo(); 8505 if (Info && SC != SC_None) { 8506 if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass()) 8507 Diag(NewFD->getLocation(), 8508 diag::err_explicit_specialization_inconsistent_storage_class) 8509 << SC 8510 << FixItHint::CreateRemoval( 8511 D.getDeclSpec().getStorageClassSpecLoc()); 8512 8513 else 8514 Diag(NewFD->getLocation(), 8515 diag::ext_explicit_specialization_storage_class) 8516 << FixItHint::CreateRemoval( 8517 D.getDeclSpec().getStorageClassSpecLoc()); 8518 } 8519 } else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD)) { 8520 if (CheckMemberSpecialization(NewFD, Previous)) 8521 NewFD->setInvalidDecl(); 8522 } 8523 8524 // Perform semantic checking on the function declaration. 8525 if (!isDependentClassScopeExplicitSpecialization) { 8526 if (!NewFD->isInvalidDecl() && NewFD->isMain()) 8527 CheckMain(NewFD, D.getDeclSpec()); 8528 8529 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint()) 8530 CheckMSVCRTEntryPoint(NewFD); 8531 8532 if (!NewFD->isInvalidDecl()) 8533 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 8534 isExplicitSpecialization)); 8535 else if (!Previous.empty()) 8536 // Recover gracefully from an invalid redeclaration. 8537 D.setRedeclaration(true); 8538 } 8539 8540 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 8541 Previous.getResultKind() != LookupResult::FoundOverloaded) && 8542 "previous declaration set still overloaded"); 8543 8544 NamedDecl *PrincipalDecl = (FunctionTemplate 8545 ? cast<NamedDecl>(FunctionTemplate) 8546 : NewFD); 8547 8548 if (isFriend && NewFD->getPreviousDecl()) { 8549 AccessSpecifier Access = AS_public; 8550 if (!NewFD->isInvalidDecl()) 8551 Access = NewFD->getPreviousDecl()->getAccess(); 8552 8553 NewFD->setAccess(Access); 8554 if (FunctionTemplate) FunctionTemplate->setAccess(Access); 8555 } 8556 8557 if (NewFD->isOverloadedOperator() && !DC->isRecord() && 8558 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary)) 8559 PrincipalDecl->setNonMemberOperator(); 8560 8561 // If we have a function template, check the template parameter 8562 // list. This will check and merge default template arguments. 8563 if (FunctionTemplate) { 8564 FunctionTemplateDecl *PrevTemplate = 8565 FunctionTemplate->getPreviousDecl(); 8566 CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(), 8567 PrevTemplate ? PrevTemplate->getTemplateParameters() 8568 : nullptr, 8569 D.getDeclSpec().isFriendSpecified() 8570 ? (D.isFunctionDefinition() 8571 ? TPC_FriendFunctionTemplateDefinition 8572 : TPC_FriendFunctionTemplate) 8573 : (D.getCXXScopeSpec().isSet() && 8574 DC && DC->isRecord() && 8575 DC->isDependentContext()) 8576 ? TPC_ClassTemplateMember 8577 : TPC_FunctionTemplate); 8578 } 8579 8580 if (NewFD->isInvalidDecl()) { 8581 // Ignore all the rest of this. 8582 } else if (!D.isRedeclaration()) { 8583 struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists, 8584 AddToScope }; 8585 // Fake up an access specifier if it's supposed to be a class member. 8586 if (isa<CXXRecordDecl>(NewFD->getDeclContext())) 8587 NewFD->setAccess(AS_public); 8588 8589 // Qualified decls generally require a previous declaration. 8590 if (D.getCXXScopeSpec().isSet()) { 8591 // ...with the major exception of templated-scope or 8592 // dependent-scope friend declarations. 8593 8594 // TODO: we currently also suppress this check in dependent 8595 // contexts because (1) the parameter depth will be off when 8596 // matching friend templates and (2) we might actually be 8597 // selecting a friend based on a dependent factor. But there 8598 // are situations where these conditions don't apply and we 8599 // can actually do this check immediately. 8600 if (isFriend && 8601 (TemplateParamLists.size() || 8602 D.getCXXScopeSpec().getScopeRep()->isDependent() || 8603 CurContext->isDependentContext())) { 8604 // ignore these 8605 } else { 8606 // The user tried to provide an out-of-line definition for a 8607 // function that is a member of a class or namespace, but there 8608 // was no such member function declared (C++ [class.mfct]p2, 8609 // C++ [namespace.memdef]p2). For example: 8610 // 8611 // class X { 8612 // void f() const; 8613 // }; 8614 // 8615 // void X::f() { } // ill-formed 8616 // 8617 // Complain about this problem, and attempt to suggest close 8618 // matches (e.g., those that differ only in cv-qualifiers and 8619 // whether the parameter types are references). 8620 8621 if (NamedDecl *Result = DiagnoseInvalidRedeclaration( 8622 *this, Previous, NewFD, ExtraArgs, false, nullptr)) { 8623 AddToScope = ExtraArgs.AddToScope; 8624 return Result; 8625 } 8626 } 8627 8628 // Unqualified local friend declarations are required to resolve 8629 // to something. 8630 } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) { 8631 if (NamedDecl *Result = DiagnoseInvalidRedeclaration( 8632 *this, Previous, NewFD, ExtraArgs, true, S)) { 8633 AddToScope = ExtraArgs.AddToScope; 8634 return Result; 8635 } 8636 } 8637 } else if (!D.isFunctionDefinition() && 8638 isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() && 8639 !isFriend && !isFunctionTemplateSpecialization && 8640 !isExplicitSpecialization) { 8641 // An out-of-line member function declaration must also be a 8642 // definition (C++ [class.mfct]p2). 8643 // Note that this is not the case for explicit specializations of 8644 // function templates or member functions of class templates, per 8645 // C++ [temp.expl.spec]p2. We also allow these declarations as an 8646 // extension for compatibility with old SWIG code which likes to 8647 // generate them. 8648 Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration) 8649 << D.getCXXScopeSpec().getRange(); 8650 } 8651 } 8652 8653 ProcessPragmaWeak(S, NewFD); 8654 checkAttributesAfterMerging(*this, *NewFD); 8655 8656 AddKnownFunctionAttributes(NewFD); 8657 8658 if (NewFD->hasAttr<OverloadableAttr>() && 8659 !NewFD->getType()->getAs<FunctionProtoType>()) { 8660 Diag(NewFD->getLocation(), 8661 diag::err_attribute_overloadable_no_prototype) 8662 << NewFD; 8663 8664 // Turn this into a variadic function with no parameters. 8665 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>(); 8666 FunctionProtoType::ExtProtoInfo EPI( 8667 Context.getDefaultCallingConvention(true, false)); 8668 EPI.Variadic = true; 8669 EPI.ExtInfo = FT->getExtInfo(); 8670 8671 QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI); 8672 NewFD->setType(R); 8673 } 8674 8675 // If there's a #pragma GCC visibility in scope, and this isn't a class 8676 // member, set the visibility of this function. 8677 if (!DC->isRecord() && NewFD->isExternallyVisible()) 8678 AddPushedVisibilityAttribute(NewFD); 8679 8680 // If there's a #pragma clang arc_cf_code_audited in scope, consider 8681 // marking the function. 8682 AddCFAuditedAttribute(NewFD); 8683 8684 // If this is a function definition, check if we have to apply optnone due to 8685 // a pragma. 8686 if(D.isFunctionDefinition()) 8687 AddRangeBasedOptnone(NewFD); 8688 8689 // If this is the first declaration of an extern C variable, update 8690 // the map of such variables. 8691 if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() && 8692 isIncompleteDeclExternC(*this, NewFD)) 8693 RegisterLocallyScopedExternCDecl(NewFD, S); 8694 8695 // Set this FunctionDecl's range up to the right paren. 8696 NewFD->setRangeEnd(D.getSourceRange().getEnd()); 8697 8698 if (D.isRedeclaration() && !Previous.empty()) { 8699 checkDLLAttributeRedeclaration( 8700 *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewFD, 8701 isExplicitSpecialization || isFunctionTemplateSpecialization, 8702 D.isFunctionDefinition()); 8703 } 8704 8705 if (getLangOpts().CUDA) { 8706 IdentifierInfo *II = NewFD->getIdentifier(); 8707 if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() && 8708 NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 8709 if (!R->getAs<FunctionType>()->getReturnType()->isScalarType()) 8710 Diag(NewFD->getLocation(), diag::err_config_scalar_return); 8711 8712 Context.setcudaConfigureCallDecl(NewFD); 8713 } 8714 8715 // Variadic functions, other than a *declaration* of printf, are not allowed 8716 // in device-side CUDA code, unless someone passed 8717 // -fcuda-allow-variadic-functions. 8718 if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() && 8719 (NewFD->hasAttr<CUDADeviceAttr>() || 8720 NewFD->hasAttr<CUDAGlobalAttr>()) && 8721 !(II && II->isStr("printf") && NewFD->isExternC() && 8722 !D.isFunctionDefinition())) { 8723 Diag(NewFD->getLocation(), diag::err_variadic_device_fn); 8724 } 8725 } 8726 8727 if (getLangOpts().CPlusPlus) { 8728 if (FunctionTemplate) { 8729 if (NewFD->isInvalidDecl()) 8730 FunctionTemplate->setInvalidDecl(); 8731 return FunctionTemplate; 8732 } 8733 } 8734 8735 if (NewFD->hasAttr<OpenCLKernelAttr>()) { 8736 // OpenCL v1.2 s6.8 static is invalid for kernel functions. 8737 if ((getLangOpts().OpenCLVersion >= 120) 8738 && (SC == SC_Static)) { 8739 Diag(D.getIdentifierLoc(), diag::err_static_kernel); 8740 D.setInvalidType(); 8741 } 8742 8743 // OpenCL v1.2, s6.9 -- Kernels can only have return type void. 8744 if (!NewFD->getReturnType()->isVoidType()) { 8745 SourceRange RTRange = NewFD->getReturnTypeSourceRange(); 8746 Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type) 8747 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void") 8748 : FixItHint()); 8749 D.setInvalidType(); 8750 } 8751 8752 llvm::SmallPtrSet<const Type *, 16> ValidTypes; 8753 for (auto Param : NewFD->parameters()) 8754 checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes); 8755 } 8756 for (const ParmVarDecl *Param : NewFD->parameters()) { 8757 QualType PT = Param->getType(); 8758 8759 // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value 8760 // types. 8761 if (getLangOpts().OpenCLVersion >= 200) { 8762 if(const PipeType *PipeTy = PT->getAs<PipeType>()) { 8763 QualType ElemTy = PipeTy->getElementType(); 8764 if (ElemTy->isReferenceType() || ElemTy->isPointerType()) { 8765 Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type ); 8766 D.setInvalidType(); 8767 } 8768 } 8769 } 8770 } 8771 8772 MarkUnusedFileScopedDecl(NewFD); 8773 8774 // Here we have an function template explicit specialization at class scope. 8775 // The actually specialization will be postponed to template instatiation 8776 // time via the ClassScopeFunctionSpecializationDecl node. 8777 if (isDependentClassScopeExplicitSpecialization) { 8778 ClassScopeFunctionSpecializationDecl *NewSpec = 8779 ClassScopeFunctionSpecializationDecl::Create( 8780 Context, CurContext, SourceLocation(), 8781 cast<CXXMethodDecl>(NewFD), 8782 HasExplicitTemplateArgs, TemplateArgs); 8783 CurContext->addDecl(NewSpec); 8784 AddToScope = false; 8785 } 8786 8787 return NewFD; 8788 } 8789 8790 /// \brief Checks if the new declaration declared in dependent context must be 8791 /// put in the same redeclaration chain as the specified declaration. 8792 /// 8793 /// \param D Declaration that is checked. 8794 /// \param PrevDecl Previous declaration found with proper lookup method for the 8795 /// same declaration name. 8796 /// \returns True if D must be added to the redeclaration chain which PrevDecl 8797 /// belongs to. 8798 /// 8799 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) { 8800 // Any declarations should be put into redeclaration chains except for 8801 // friend declaration in a dependent context that names a function in 8802 // namespace scope. 8803 // 8804 // This allows to compile code like: 8805 // 8806 // void func(); 8807 // template<typename T> class C1 { friend void func() { } }; 8808 // template<typename T> class C2 { friend void func() { } }; 8809 // 8810 // This code snippet is a valid code unless both templates are instantiated. 8811 return !(D->getLexicalDeclContext()->isDependentContext() && 8812 D->getDeclContext()->isFileContext() && 8813 D->getFriendObjectKind() != Decl::FOK_None); 8814 } 8815 8816 /// \brief Perform semantic checking of a new function declaration. 8817 /// 8818 /// Performs semantic analysis of the new function declaration 8819 /// NewFD. This routine performs all semantic checking that does not 8820 /// require the actual declarator involved in the declaration, and is 8821 /// used both for the declaration of functions as they are parsed 8822 /// (called via ActOnDeclarator) and for the declaration of functions 8823 /// that have been instantiated via C++ template instantiation (called 8824 /// via InstantiateDecl). 8825 /// 8826 /// \param IsExplicitSpecialization whether this new function declaration is 8827 /// an explicit specialization of the previous declaration. 8828 /// 8829 /// This sets NewFD->isInvalidDecl() to true if there was an error. 8830 /// 8831 /// \returns true if the function declaration is a redeclaration. 8832 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD, 8833 LookupResult &Previous, 8834 bool IsExplicitSpecialization) { 8835 assert(!NewFD->getReturnType()->isVariablyModifiedType() && 8836 "Variably modified return types are not handled here"); 8837 8838 // Determine whether the type of this function should be merged with 8839 // a previous visible declaration. This never happens for functions in C++, 8840 // and always happens in C if the previous declaration was visible. 8841 bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus && 8842 !Previous.isShadowed(); 8843 8844 bool Redeclaration = false; 8845 NamedDecl *OldDecl = nullptr; 8846 8847 // Merge or overload the declaration with an existing declaration of 8848 // the same name, if appropriate. 8849 if (!Previous.empty()) { 8850 // Determine whether NewFD is an overload of PrevDecl or 8851 // a declaration that requires merging. If it's an overload, 8852 // there's no more work to do here; we'll just add the new 8853 // function to the scope. 8854 if (!AllowOverloadingOfFunction(Previous, Context)) { 8855 NamedDecl *Candidate = Previous.getRepresentativeDecl(); 8856 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) { 8857 Redeclaration = true; 8858 OldDecl = Candidate; 8859 } 8860 } else { 8861 switch (CheckOverload(S, NewFD, Previous, OldDecl, 8862 /*NewIsUsingDecl*/ false)) { 8863 case Ovl_Match: 8864 Redeclaration = true; 8865 break; 8866 8867 case Ovl_NonFunction: 8868 Redeclaration = true; 8869 break; 8870 8871 case Ovl_Overload: 8872 Redeclaration = false; 8873 break; 8874 } 8875 8876 if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) { 8877 // If a function name is overloadable in C, then every function 8878 // with that name must be marked "overloadable". 8879 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing) 8880 << Redeclaration << NewFD; 8881 NamedDecl *OverloadedDecl = nullptr; 8882 if (Redeclaration) 8883 OverloadedDecl = OldDecl; 8884 else if (!Previous.empty()) 8885 OverloadedDecl = Previous.getRepresentativeDecl(); 8886 if (OverloadedDecl) 8887 Diag(OverloadedDecl->getLocation(), 8888 diag::note_attribute_overloadable_prev_overload); 8889 NewFD->addAttr(OverloadableAttr::CreateImplicit(Context)); 8890 } 8891 } 8892 } 8893 8894 // Check for a previous extern "C" declaration with this name. 8895 if (!Redeclaration && 8896 checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) { 8897 if (!Previous.empty()) { 8898 // This is an extern "C" declaration with the same name as a previous 8899 // declaration, and thus redeclares that entity... 8900 Redeclaration = true; 8901 OldDecl = Previous.getFoundDecl(); 8902 MergeTypeWithPrevious = false; 8903 8904 // ... except in the presence of __attribute__((overloadable)). 8905 if (OldDecl->hasAttr<OverloadableAttr>()) { 8906 if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) { 8907 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing) 8908 << Redeclaration << NewFD; 8909 Diag(Previous.getFoundDecl()->getLocation(), 8910 diag::note_attribute_overloadable_prev_overload); 8911 NewFD->addAttr(OverloadableAttr::CreateImplicit(Context)); 8912 } 8913 if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) { 8914 Redeclaration = false; 8915 OldDecl = nullptr; 8916 } 8917 } 8918 } 8919 } 8920 8921 // C++11 [dcl.constexpr]p8: 8922 // A constexpr specifier for a non-static member function that is not 8923 // a constructor declares that member function to be const. 8924 // 8925 // This needs to be delayed until we know whether this is an out-of-line 8926 // definition of a static member function. 8927 // 8928 // This rule is not present in C++1y, so we produce a backwards 8929 // compatibility warning whenever it happens in C++11. 8930 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 8931 if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() && 8932 !MD->isStatic() && !isa<CXXConstructorDecl>(MD) && 8933 (MD->getTypeQualifiers() & Qualifiers::Const) == 0) { 8934 CXXMethodDecl *OldMD = nullptr; 8935 if (OldDecl) 8936 OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction()); 8937 if (!OldMD || !OldMD->isStatic()) { 8938 const FunctionProtoType *FPT = 8939 MD->getType()->castAs<FunctionProtoType>(); 8940 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 8941 EPI.TypeQuals |= Qualifiers::Const; 8942 MD->setType(Context.getFunctionType(FPT->getReturnType(), 8943 FPT->getParamTypes(), EPI)); 8944 8945 // Warn that we did this, if we're not performing template instantiation. 8946 // In that case, we'll have warned already when the template was defined. 8947 if (ActiveTemplateInstantiations.empty()) { 8948 SourceLocation AddConstLoc; 8949 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc() 8950 .IgnoreParens().getAs<FunctionTypeLoc>()) 8951 AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc()); 8952 8953 Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const) 8954 << FixItHint::CreateInsertion(AddConstLoc, " const"); 8955 } 8956 } 8957 } 8958 8959 if (Redeclaration) { 8960 // NewFD and OldDecl represent declarations that need to be 8961 // merged. 8962 if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) { 8963 NewFD->setInvalidDecl(); 8964 return Redeclaration; 8965 } 8966 8967 Previous.clear(); 8968 Previous.addDecl(OldDecl); 8969 8970 if (FunctionTemplateDecl *OldTemplateDecl 8971 = dyn_cast<FunctionTemplateDecl>(OldDecl)) { 8972 NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl()); 8973 FunctionTemplateDecl *NewTemplateDecl 8974 = NewFD->getDescribedFunctionTemplate(); 8975 assert(NewTemplateDecl && "Template/non-template mismatch"); 8976 if (CXXMethodDecl *Method 8977 = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) { 8978 Method->setAccess(OldTemplateDecl->getAccess()); 8979 NewTemplateDecl->setAccess(OldTemplateDecl->getAccess()); 8980 } 8981 8982 // If this is an explicit specialization of a member that is a function 8983 // template, mark it as a member specialization. 8984 if (IsExplicitSpecialization && 8985 NewTemplateDecl->getInstantiatedFromMemberTemplate()) { 8986 NewTemplateDecl->setMemberSpecialization(); 8987 assert(OldTemplateDecl->isMemberSpecialization()); 8988 // Explicit specializations of a member template do not inherit deleted 8989 // status from the parent member template that they are specializing. 8990 if (OldTemplateDecl->getTemplatedDecl()->isDeleted()) { 8991 FunctionDecl *const OldTemplatedDecl = 8992 OldTemplateDecl->getTemplatedDecl(); 8993 assert(OldTemplatedDecl->getCanonicalDecl() == OldTemplatedDecl); 8994 OldTemplatedDecl->setDeletedAsWritten(false); 8995 } 8996 } 8997 8998 } else { 8999 if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) { 9000 // This needs to happen first so that 'inline' propagates. 9001 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl)); 9002 if (isa<CXXMethodDecl>(NewFD)) 9003 NewFD->setAccess(OldDecl->getAccess()); 9004 } 9005 } 9006 } 9007 9008 // Semantic checking for this function declaration (in isolation). 9009 9010 if (getLangOpts().CPlusPlus) { 9011 // C++-specific checks. 9012 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) { 9013 CheckConstructor(Constructor); 9014 } else if (CXXDestructorDecl *Destructor = 9015 dyn_cast<CXXDestructorDecl>(NewFD)) { 9016 CXXRecordDecl *Record = Destructor->getParent(); 9017 QualType ClassType = Context.getTypeDeclType(Record); 9018 9019 // FIXME: Shouldn't we be able to perform this check even when the class 9020 // type is dependent? Both gcc and edg can handle that. 9021 if (!ClassType->isDependentType()) { 9022 DeclarationName Name 9023 = Context.DeclarationNames.getCXXDestructorName( 9024 Context.getCanonicalType(ClassType)); 9025 if (NewFD->getDeclName() != Name) { 9026 Diag(NewFD->getLocation(), diag::err_destructor_name); 9027 NewFD->setInvalidDecl(); 9028 return Redeclaration; 9029 } 9030 } 9031 } else if (CXXConversionDecl *Conversion 9032 = dyn_cast<CXXConversionDecl>(NewFD)) { 9033 ActOnConversionDeclarator(Conversion); 9034 } 9035 9036 // Find any virtual functions that this function overrides. 9037 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) { 9038 if (!Method->isFunctionTemplateSpecialization() && 9039 !Method->getDescribedFunctionTemplate() && 9040 Method->isCanonicalDecl()) { 9041 if (AddOverriddenMethods(Method->getParent(), Method)) { 9042 // If the function was marked as "static", we have a problem. 9043 if (NewFD->getStorageClass() == SC_Static) { 9044 ReportOverrides(*this, diag::err_static_overrides_virtual, Method); 9045 } 9046 } 9047 } 9048 9049 if (Method->isStatic()) 9050 checkThisInStaticMemberFunctionType(Method); 9051 } 9052 9053 // Extra checking for C++ overloaded operators (C++ [over.oper]). 9054 if (NewFD->isOverloadedOperator() && 9055 CheckOverloadedOperatorDeclaration(NewFD)) { 9056 NewFD->setInvalidDecl(); 9057 return Redeclaration; 9058 } 9059 9060 // Extra checking for C++0x literal operators (C++0x [over.literal]). 9061 if (NewFD->getLiteralIdentifier() && 9062 CheckLiteralOperatorDeclaration(NewFD)) { 9063 NewFD->setInvalidDecl(); 9064 return Redeclaration; 9065 } 9066 9067 // In C++, check default arguments now that we have merged decls. Unless 9068 // the lexical context is the class, because in this case this is done 9069 // during delayed parsing anyway. 9070 if (!CurContext->isRecord()) 9071 CheckCXXDefaultArguments(NewFD); 9072 9073 // If this function declares a builtin function, check the type of this 9074 // declaration against the expected type for the builtin. 9075 if (unsigned BuiltinID = NewFD->getBuiltinID()) { 9076 ASTContext::GetBuiltinTypeError Error; 9077 LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier()); 9078 QualType T = Context.GetBuiltinType(BuiltinID, Error); 9079 // If the type of the builtin differs only in its exception 9080 // specification, that's OK. 9081 // FIXME: If the types do differ in this way, it would be better to 9082 // retain the 'noexcept' form of the type. 9083 if (!T.isNull() && 9084 !Context.hasSameFunctionTypeIgnoringExceptionSpec(T, 9085 NewFD->getType())) 9086 // The type of this function differs from the type of the builtin, 9087 // so forget about the builtin entirely. 9088 Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents); 9089 } 9090 9091 // If this function is declared as being extern "C", then check to see if 9092 // the function returns a UDT (class, struct, or union type) that is not C 9093 // compatible, and if it does, warn the user. 9094 // But, issue any diagnostic on the first declaration only. 9095 if (Previous.empty() && NewFD->isExternC()) { 9096 QualType R = NewFD->getReturnType(); 9097 if (R->isIncompleteType() && !R->isVoidType()) 9098 Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete) 9099 << NewFD << R; 9100 else if (!R.isPODType(Context) && !R->isVoidType() && 9101 !R->isObjCObjectPointerType()) 9102 Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R; 9103 } 9104 9105 // C++1z [dcl.fct]p6: 9106 // [...] whether the function has a non-throwing exception-specification 9107 // [is] part of the function type 9108 // 9109 // This results in an ABI break between C++14 and C++17 for functions whose 9110 // declared type includes an exception-specification in a parameter or 9111 // return type. (Exception specifications on the function itself are OK in 9112 // most cases, and exception specifications are not permitted in most other 9113 // contexts where they could make it into a mangling.) 9114 if (!getLangOpts().CPlusPlus1z && !NewFD->getPrimaryTemplate()) { 9115 auto HasNoexcept = [&](QualType T) -> bool { 9116 // Strip off declarator chunks that could be between us and a function 9117 // type. We don't need to look far, exception specifications are very 9118 // restricted prior to C++17. 9119 if (auto *RT = T->getAs<ReferenceType>()) 9120 T = RT->getPointeeType(); 9121 else if (T->isAnyPointerType()) 9122 T = T->getPointeeType(); 9123 else if (auto *MPT = T->getAs<MemberPointerType>()) 9124 T = MPT->getPointeeType(); 9125 if (auto *FPT = T->getAs<FunctionProtoType>()) 9126 if (FPT->isNothrow(Context)) 9127 return true; 9128 return false; 9129 }; 9130 9131 auto *FPT = NewFD->getType()->castAs<FunctionProtoType>(); 9132 bool AnyNoexcept = HasNoexcept(FPT->getReturnType()); 9133 for (QualType T : FPT->param_types()) 9134 AnyNoexcept |= HasNoexcept(T); 9135 if (AnyNoexcept) 9136 Diag(NewFD->getLocation(), 9137 diag::warn_cxx1z_compat_exception_spec_in_signature) 9138 << NewFD; 9139 } 9140 9141 if (!Redeclaration && LangOpts.CUDA) 9142 checkCUDATargetOverload(NewFD, Previous); 9143 } 9144 return Redeclaration; 9145 } 9146 9147 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) { 9148 // C++11 [basic.start.main]p3: 9149 // A program that [...] declares main to be inline, static or 9150 // constexpr is ill-formed. 9151 // C11 6.7.4p4: In a hosted environment, no function specifier(s) shall 9152 // appear in a declaration of main. 9153 // static main is not an error under C99, but we should warn about it. 9154 // We accept _Noreturn main as an extension. 9155 if (FD->getStorageClass() == SC_Static) 9156 Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus 9157 ? diag::err_static_main : diag::warn_static_main) 9158 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 9159 if (FD->isInlineSpecified()) 9160 Diag(DS.getInlineSpecLoc(), diag::err_inline_main) 9161 << FixItHint::CreateRemoval(DS.getInlineSpecLoc()); 9162 if (DS.isNoreturnSpecified()) { 9163 SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc(); 9164 SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc)); 9165 Diag(NoreturnLoc, diag::ext_noreturn_main); 9166 Diag(NoreturnLoc, diag::note_main_remove_noreturn) 9167 << FixItHint::CreateRemoval(NoreturnRange); 9168 } 9169 if (FD->isConstexpr()) { 9170 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main) 9171 << FixItHint::CreateRemoval(DS.getConstexprSpecLoc()); 9172 FD->setConstexpr(false); 9173 } 9174 9175 if (getLangOpts().OpenCL) { 9176 Diag(FD->getLocation(), diag::err_opencl_no_main) 9177 << FD->hasAttr<OpenCLKernelAttr>(); 9178 FD->setInvalidDecl(); 9179 return; 9180 } 9181 9182 QualType T = FD->getType(); 9183 assert(T->isFunctionType() && "function decl is not of function type"); 9184 const FunctionType* FT = T->castAs<FunctionType>(); 9185 9186 if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) { 9187 // In C with GNU extensions we allow main() to have non-integer return 9188 // type, but we should warn about the extension, and we disable the 9189 // implicit-return-zero rule. 9190 9191 // GCC in C mode accepts qualified 'int'. 9192 if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy)) 9193 FD->setHasImplicitReturnZero(true); 9194 else { 9195 Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint); 9196 SourceRange RTRange = FD->getReturnTypeSourceRange(); 9197 if (RTRange.isValid()) 9198 Diag(RTRange.getBegin(), diag::note_main_change_return_type) 9199 << FixItHint::CreateReplacement(RTRange, "int"); 9200 } 9201 } else { 9202 // In C and C++, main magically returns 0 if you fall off the end; 9203 // set the flag which tells us that. 9204 // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3. 9205 9206 // All the standards say that main() should return 'int'. 9207 if (Context.hasSameType(FT->getReturnType(), Context.IntTy)) 9208 FD->setHasImplicitReturnZero(true); 9209 else { 9210 // Otherwise, this is just a flat-out error. 9211 SourceRange RTRange = FD->getReturnTypeSourceRange(); 9212 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint) 9213 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int") 9214 : FixItHint()); 9215 FD->setInvalidDecl(true); 9216 } 9217 } 9218 9219 // Treat protoless main() as nullary. 9220 if (isa<FunctionNoProtoType>(FT)) return; 9221 9222 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); 9223 unsigned nparams = FTP->getNumParams(); 9224 assert(FD->getNumParams() == nparams); 9225 9226 bool HasExtraParameters = (nparams > 3); 9227 9228 if (FTP->isVariadic()) { 9229 Diag(FD->getLocation(), diag::ext_variadic_main); 9230 // FIXME: if we had information about the location of the ellipsis, we 9231 // could add a FixIt hint to remove it as a parameter. 9232 } 9233 9234 // Darwin passes an undocumented fourth argument of type char**. If 9235 // other platforms start sprouting these, the logic below will start 9236 // getting shifty. 9237 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin()) 9238 HasExtraParameters = false; 9239 9240 if (HasExtraParameters) { 9241 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams; 9242 FD->setInvalidDecl(true); 9243 nparams = 3; 9244 } 9245 9246 // FIXME: a lot of the following diagnostics would be improved 9247 // if we had some location information about types. 9248 9249 QualType CharPP = 9250 Context.getPointerType(Context.getPointerType(Context.CharTy)); 9251 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP }; 9252 9253 for (unsigned i = 0; i < nparams; ++i) { 9254 QualType AT = FTP->getParamType(i); 9255 9256 bool mismatch = true; 9257 9258 if (Context.hasSameUnqualifiedType(AT, Expected[i])) 9259 mismatch = false; 9260 else if (Expected[i] == CharPP) { 9261 // As an extension, the following forms are okay: 9262 // char const ** 9263 // char const * const * 9264 // char * const * 9265 9266 QualifierCollector qs; 9267 const PointerType* PT; 9268 if ((PT = qs.strip(AT)->getAs<PointerType>()) && 9269 (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) && 9270 Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0), 9271 Context.CharTy)) { 9272 qs.removeConst(); 9273 mismatch = !qs.empty(); 9274 } 9275 } 9276 9277 if (mismatch) { 9278 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i]; 9279 // TODO: suggest replacing given type with expected type 9280 FD->setInvalidDecl(true); 9281 } 9282 } 9283 9284 if (nparams == 1 && !FD->isInvalidDecl()) { 9285 Diag(FD->getLocation(), diag::warn_main_one_arg); 9286 } 9287 9288 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 9289 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD; 9290 FD->setInvalidDecl(); 9291 } 9292 } 9293 9294 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) { 9295 QualType T = FD->getType(); 9296 assert(T->isFunctionType() && "function decl is not of function type"); 9297 const FunctionType *FT = T->castAs<FunctionType>(); 9298 9299 // Set an implicit return of 'zero' if the function can return some integral, 9300 // enumeration, pointer or nullptr type. 9301 if (FT->getReturnType()->isIntegralOrEnumerationType() || 9302 FT->getReturnType()->isAnyPointerType() || 9303 FT->getReturnType()->isNullPtrType()) 9304 // DllMain is exempt because a return value of zero means it failed. 9305 if (FD->getName() != "DllMain") 9306 FD->setHasImplicitReturnZero(true); 9307 9308 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 9309 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD; 9310 FD->setInvalidDecl(); 9311 } 9312 } 9313 9314 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) { 9315 // FIXME: Need strict checking. In C89, we need to check for 9316 // any assignment, increment, decrement, function-calls, or 9317 // commas outside of a sizeof. In C99, it's the same list, 9318 // except that the aforementioned are allowed in unevaluated 9319 // expressions. Everything else falls under the 9320 // "may accept other forms of constant expressions" exception. 9321 // (We never end up here for C++, so the constant expression 9322 // rules there don't matter.) 9323 const Expr *Culprit; 9324 if (Init->isConstantInitializer(Context, false, &Culprit)) 9325 return false; 9326 Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant) 9327 << Culprit->getSourceRange(); 9328 return true; 9329 } 9330 9331 namespace { 9332 // Visits an initialization expression to see if OrigDecl is evaluated in 9333 // its own initialization and throws a warning if it does. 9334 class SelfReferenceChecker 9335 : public EvaluatedExprVisitor<SelfReferenceChecker> { 9336 Sema &S; 9337 Decl *OrigDecl; 9338 bool isRecordType; 9339 bool isPODType; 9340 bool isReferenceType; 9341 9342 bool isInitList; 9343 llvm::SmallVector<unsigned, 4> InitFieldIndex; 9344 9345 public: 9346 typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited; 9347 9348 SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context), 9349 S(S), OrigDecl(OrigDecl) { 9350 isPODType = false; 9351 isRecordType = false; 9352 isReferenceType = false; 9353 isInitList = false; 9354 if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) { 9355 isPODType = VD->getType().isPODType(S.Context); 9356 isRecordType = VD->getType()->isRecordType(); 9357 isReferenceType = VD->getType()->isReferenceType(); 9358 } 9359 } 9360 9361 // For most expressions, just call the visitor. For initializer lists, 9362 // track the index of the field being initialized since fields are 9363 // initialized in order allowing use of previously initialized fields. 9364 void CheckExpr(Expr *E) { 9365 InitListExpr *InitList = dyn_cast<InitListExpr>(E); 9366 if (!InitList) { 9367 Visit(E); 9368 return; 9369 } 9370 9371 // Track and increment the index here. 9372 isInitList = true; 9373 InitFieldIndex.push_back(0); 9374 for (auto Child : InitList->children()) { 9375 CheckExpr(cast<Expr>(Child)); 9376 ++InitFieldIndex.back(); 9377 } 9378 InitFieldIndex.pop_back(); 9379 } 9380 9381 // Returns true if MemberExpr is checked and no futher checking is needed. 9382 // Returns false if additional checking is required. 9383 bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) { 9384 llvm::SmallVector<FieldDecl*, 4> Fields; 9385 Expr *Base = E; 9386 bool ReferenceField = false; 9387 9388 // Get the field memebers used. 9389 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 9390 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 9391 if (!FD) 9392 return false; 9393 Fields.push_back(FD); 9394 if (FD->getType()->isReferenceType()) 9395 ReferenceField = true; 9396 Base = ME->getBase()->IgnoreParenImpCasts(); 9397 } 9398 9399 // Keep checking only if the base Decl is the same. 9400 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base); 9401 if (!DRE || DRE->getDecl() != OrigDecl) 9402 return false; 9403 9404 // A reference field can be bound to an unininitialized field. 9405 if (CheckReference && !ReferenceField) 9406 return true; 9407 9408 // Convert FieldDecls to their index number. 9409 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 9410 for (const FieldDecl *I : llvm::reverse(Fields)) 9411 UsedFieldIndex.push_back(I->getFieldIndex()); 9412 9413 // See if a warning is needed by checking the first difference in index 9414 // numbers. If field being used has index less than the field being 9415 // initialized, then the use is safe. 9416 for (auto UsedIter = UsedFieldIndex.begin(), 9417 UsedEnd = UsedFieldIndex.end(), 9418 OrigIter = InitFieldIndex.begin(), 9419 OrigEnd = InitFieldIndex.end(); 9420 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 9421 if (*UsedIter < *OrigIter) 9422 return true; 9423 if (*UsedIter > *OrigIter) 9424 break; 9425 } 9426 9427 // TODO: Add a different warning which will print the field names. 9428 HandleDeclRefExpr(DRE); 9429 return true; 9430 } 9431 9432 // For most expressions, the cast is directly above the DeclRefExpr. 9433 // For conditional operators, the cast can be outside the conditional 9434 // operator if both expressions are DeclRefExpr's. 9435 void HandleValue(Expr *E) { 9436 E = E->IgnoreParens(); 9437 if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) { 9438 HandleDeclRefExpr(DRE); 9439 return; 9440 } 9441 9442 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 9443 Visit(CO->getCond()); 9444 HandleValue(CO->getTrueExpr()); 9445 HandleValue(CO->getFalseExpr()); 9446 return; 9447 } 9448 9449 if (BinaryConditionalOperator *BCO = 9450 dyn_cast<BinaryConditionalOperator>(E)) { 9451 Visit(BCO->getCond()); 9452 HandleValue(BCO->getFalseExpr()); 9453 return; 9454 } 9455 9456 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 9457 HandleValue(OVE->getSourceExpr()); 9458 return; 9459 } 9460 9461 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 9462 if (BO->getOpcode() == BO_Comma) { 9463 Visit(BO->getLHS()); 9464 HandleValue(BO->getRHS()); 9465 return; 9466 } 9467 } 9468 9469 if (isa<MemberExpr>(E)) { 9470 if (isInitList) { 9471 if (CheckInitListMemberExpr(cast<MemberExpr>(E), 9472 false /*CheckReference*/)) 9473 return; 9474 } 9475 9476 Expr *Base = E->IgnoreParenImpCasts(); 9477 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 9478 // Check for static member variables and don't warn on them. 9479 if (!isa<FieldDecl>(ME->getMemberDecl())) 9480 return; 9481 Base = ME->getBase()->IgnoreParenImpCasts(); 9482 } 9483 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) 9484 HandleDeclRefExpr(DRE); 9485 return; 9486 } 9487 9488 Visit(E); 9489 } 9490 9491 // Reference types not handled in HandleValue are handled here since all 9492 // uses of references are bad, not just r-value uses. 9493 void VisitDeclRefExpr(DeclRefExpr *E) { 9494 if (isReferenceType) 9495 HandleDeclRefExpr(E); 9496 } 9497 9498 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 9499 if (E->getCastKind() == CK_LValueToRValue) { 9500 HandleValue(E->getSubExpr()); 9501 return; 9502 } 9503 9504 Inherited::VisitImplicitCastExpr(E); 9505 } 9506 9507 void VisitMemberExpr(MemberExpr *E) { 9508 if (isInitList) { 9509 if (CheckInitListMemberExpr(E, true /*CheckReference*/)) 9510 return; 9511 } 9512 9513 // Don't warn on arrays since they can be treated as pointers. 9514 if (E->getType()->canDecayToPointerType()) return; 9515 9516 // Warn when a non-static method call is followed by non-static member 9517 // field accesses, which is followed by a DeclRefExpr. 9518 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl()); 9519 bool Warn = (MD && !MD->isStatic()); 9520 Expr *Base = E->getBase()->IgnoreParenImpCasts(); 9521 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 9522 if (!isa<FieldDecl>(ME->getMemberDecl())) 9523 Warn = false; 9524 Base = ME->getBase()->IgnoreParenImpCasts(); 9525 } 9526 9527 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) { 9528 if (Warn) 9529 HandleDeclRefExpr(DRE); 9530 return; 9531 } 9532 9533 // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr. 9534 // Visit that expression. 9535 Visit(Base); 9536 } 9537 9538 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 9539 Expr *Callee = E->getCallee(); 9540 9541 if (isa<UnresolvedLookupExpr>(Callee)) 9542 return Inherited::VisitCXXOperatorCallExpr(E); 9543 9544 Visit(Callee); 9545 for (auto Arg: E->arguments()) 9546 HandleValue(Arg->IgnoreParenImpCasts()); 9547 } 9548 9549 void VisitUnaryOperator(UnaryOperator *E) { 9550 // For POD record types, addresses of its own members are well-defined. 9551 if (E->getOpcode() == UO_AddrOf && isRecordType && 9552 isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) { 9553 if (!isPODType) 9554 HandleValue(E->getSubExpr()); 9555 return; 9556 } 9557 9558 if (E->isIncrementDecrementOp()) { 9559 HandleValue(E->getSubExpr()); 9560 return; 9561 } 9562 9563 Inherited::VisitUnaryOperator(E); 9564 } 9565 9566 void VisitObjCMessageExpr(ObjCMessageExpr *E) {} 9567 9568 void VisitCXXConstructExpr(CXXConstructExpr *E) { 9569 if (E->getConstructor()->isCopyConstructor()) { 9570 Expr *ArgExpr = E->getArg(0); 9571 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 9572 if (ILE->getNumInits() == 1) 9573 ArgExpr = ILE->getInit(0); 9574 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 9575 if (ICE->getCastKind() == CK_NoOp) 9576 ArgExpr = ICE->getSubExpr(); 9577 HandleValue(ArgExpr); 9578 return; 9579 } 9580 Inherited::VisitCXXConstructExpr(E); 9581 } 9582 9583 void VisitCallExpr(CallExpr *E) { 9584 // Treat std::move as a use. 9585 if (E->getNumArgs() == 1) { 9586 if (FunctionDecl *FD = E->getDirectCallee()) { 9587 if (FD->isInStdNamespace() && FD->getIdentifier() && 9588 FD->getIdentifier()->isStr("move")) { 9589 HandleValue(E->getArg(0)); 9590 return; 9591 } 9592 } 9593 } 9594 9595 Inherited::VisitCallExpr(E); 9596 } 9597 9598 void VisitBinaryOperator(BinaryOperator *E) { 9599 if (E->isCompoundAssignmentOp()) { 9600 HandleValue(E->getLHS()); 9601 Visit(E->getRHS()); 9602 return; 9603 } 9604 9605 Inherited::VisitBinaryOperator(E); 9606 } 9607 9608 // A custom visitor for BinaryConditionalOperator is needed because the 9609 // regular visitor would check the condition and true expression separately 9610 // but both point to the same place giving duplicate diagnostics. 9611 void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) { 9612 Visit(E->getCond()); 9613 Visit(E->getFalseExpr()); 9614 } 9615 9616 void HandleDeclRefExpr(DeclRefExpr *DRE) { 9617 Decl* ReferenceDecl = DRE->getDecl(); 9618 if (OrigDecl != ReferenceDecl) return; 9619 unsigned diag; 9620 if (isReferenceType) { 9621 diag = diag::warn_uninit_self_reference_in_reference_init; 9622 } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) { 9623 diag = diag::warn_static_self_reference_in_init; 9624 } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) || 9625 isa<NamespaceDecl>(OrigDecl->getDeclContext()) || 9626 DRE->getDecl()->getType()->isRecordType()) { 9627 diag = diag::warn_uninit_self_reference_in_init; 9628 } else { 9629 // Local variables will be handled by the CFG analysis. 9630 return; 9631 } 9632 9633 S.DiagRuntimeBehavior(DRE->getLocStart(), DRE, 9634 S.PDiag(diag) 9635 << DRE->getNameInfo().getName() 9636 << OrigDecl->getLocation() 9637 << DRE->getSourceRange()); 9638 } 9639 }; 9640 9641 /// CheckSelfReference - Warns if OrigDecl is used in expression E. 9642 static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E, 9643 bool DirectInit) { 9644 // Parameters arguments are occassionially constructed with itself, 9645 // for instance, in recursive functions. Skip them. 9646 if (isa<ParmVarDecl>(OrigDecl)) 9647 return; 9648 9649 E = E->IgnoreParens(); 9650 9651 // Skip checking T a = a where T is not a record or reference type. 9652 // Doing so is a way to silence uninitialized warnings. 9653 if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType()) 9654 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) 9655 if (ICE->getCastKind() == CK_LValueToRValue) 9656 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) 9657 if (DRE->getDecl() == OrigDecl) 9658 return; 9659 9660 SelfReferenceChecker(S, OrigDecl).CheckExpr(E); 9661 } 9662 } // end anonymous namespace 9663 9664 namespace { 9665 // Simple wrapper to add the name of a variable or (if no variable is 9666 // available) a DeclarationName into a diagnostic. 9667 struct VarDeclOrName { 9668 VarDecl *VDecl; 9669 DeclarationName Name; 9670 9671 friend const Sema::SemaDiagnosticBuilder & 9672 operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) { 9673 return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name; 9674 } 9675 }; 9676 } // end anonymous namespace 9677 9678 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl, 9679 DeclarationName Name, QualType Type, 9680 TypeSourceInfo *TSI, 9681 SourceRange Range, bool DirectInit, 9682 Expr *Init) { 9683 bool IsInitCapture = !VDecl; 9684 assert((!VDecl || !VDecl->isInitCapture()) && 9685 "init captures are expected to be deduced prior to initialization"); 9686 9687 VarDeclOrName VN{VDecl, Name}; 9688 9689 ArrayRef<Expr *> DeduceInits = Init; 9690 if (DirectInit) { 9691 if (auto *PL = dyn_cast<ParenListExpr>(Init)) 9692 DeduceInits = PL->exprs(); 9693 else if (auto *IL = dyn_cast<InitListExpr>(Init)) 9694 DeduceInits = IL->inits(); 9695 } 9696 9697 // Deduction only works if we have exactly one source expression. 9698 if (DeduceInits.empty()) { 9699 // It isn't possible to write this directly, but it is possible to 9700 // end up in this situation with "auto x(some_pack...);" 9701 Diag(Init->getLocStart(), IsInitCapture 9702 ? diag::err_init_capture_no_expression 9703 : diag::err_auto_var_init_no_expression) 9704 << VN << Type << Range; 9705 return QualType(); 9706 } 9707 9708 if (DeduceInits.size() > 1) { 9709 Diag(DeduceInits[1]->getLocStart(), 9710 IsInitCapture ? diag::err_init_capture_multiple_expressions 9711 : diag::err_auto_var_init_multiple_expressions) 9712 << VN << Type << Range; 9713 return QualType(); 9714 } 9715 9716 Expr *DeduceInit = DeduceInits[0]; 9717 if (DirectInit && isa<InitListExpr>(DeduceInit)) { 9718 Diag(Init->getLocStart(), IsInitCapture 9719 ? diag::err_init_capture_paren_braces 9720 : diag::err_auto_var_init_paren_braces) 9721 << isa<InitListExpr>(Init) << VN << Type << Range; 9722 return QualType(); 9723 } 9724 9725 // Expressions default to 'id' when we're in a debugger. 9726 bool DefaultedAnyToId = false; 9727 if (getLangOpts().DebuggerCastResultToId && 9728 Init->getType() == Context.UnknownAnyTy && !IsInitCapture) { 9729 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 9730 if (Result.isInvalid()) { 9731 return QualType(); 9732 } 9733 Init = Result.get(); 9734 DefaultedAnyToId = true; 9735 } 9736 9737 // C++ [dcl.decomp]p1: 9738 // If the assignment-expression [...] has array type A and no ref-qualifier 9739 // is present, e has type cv A 9740 if (VDecl && isa<DecompositionDecl>(VDecl) && 9741 Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) && 9742 DeduceInit->getType()->isConstantArrayType()) 9743 return Context.getQualifiedType(DeduceInit->getType(), 9744 Type.getQualifiers()); 9745 9746 QualType DeducedType; 9747 if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) { 9748 if (!IsInitCapture) 9749 DiagnoseAutoDeductionFailure(VDecl, DeduceInit); 9750 else if (isa<InitListExpr>(Init)) 9751 Diag(Range.getBegin(), 9752 diag::err_init_capture_deduction_failure_from_init_list) 9753 << VN 9754 << (DeduceInit->getType().isNull() ? TSI->getType() 9755 : DeduceInit->getType()) 9756 << DeduceInit->getSourceRange(); 9757 else 9758 Diag(Range.getBegin(), diag::err_init_capture_deduction_failure) 9759 << VN << TSI->getType() 9760 << (DeduceInit->getType().isNull() ? TSI->getType() 9761 : DeduceInit->getType()) 9762 << DeduceInit->getSourceRange(); 9763 } 9764 9765 // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using 9766 // 'id' instead of a specific object type prevents most of our usual 9767 // checks. 9768 // We only want to warn outside of template instantiations, though: 9769 // inside a template, the 'id' could have come from a parameter. 9770 if (ActiveTemplateInstantiations.empty() && !DefaultedAnyToId && 9771 !IsInitCapture && !DeducedType.isNull() && DeducedType->isObjCIdType()) { 9772 SourceLocation Loc = TSI->getTypeLoc().getBeginLoc(); 9773 Diag(Loc, diag::warn_auto_var_is_id) << VN << Range; 9774 } 9775 9776 return DeducedType; 9777 } 9778 9779 /// AddInitializerToDecl - Adds the initializer Init to the 9780 /// declaration dcl. If DirectInit is true, this is C++ direct 9781 /// initialization rather than copy initialization. 9782 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, 9783 bool DirectInit, bool TypeMayContainAuto) { 9784 // If there is no declaration, there was an error parsing it. Just ignore 9785 // the initializer. 9786 if (!RealDecl || RealDecl->isInvalidDecl()) { 9787 CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl)); 9788 return; 9789 } 9790 9791 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) { 9792 // Pure-specifiers are handled in ActOnPureSpecifier. 9793 Diag(Method->getLocation(), diag::err_member_function_initialization) 9794 << Method->getDeclName() << Init->getSourceRange(); 9795 Method->setInvalidDecl(); 9796 return; 9797 } 9798 9799 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); 9800 if (!VDecl) { 9801 assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here"); 9802 Diag(RealDecl->getLocation(), diag::err_illegal_initializer); 9803 RealDecl->setInvalidDecl(); 9804 return; 9805 } 9806 9807 // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for. 9808 if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) { 9809 // Attempt typo correction early so that the type of the init expression can 9810 // be deduced based on the chosen correction if the original init contains a 9811 // TypoExpr. 9812 ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl); 9813 if (!Res.isUsable()) { 9814 RealDecl->setInvalidDecl(); 9815 return; 9816 } 9817 Init = Res.get(); 9818 9819 QualType DeducedType = deduceVarTypeFromInitializer( 9820 VDecl, VDecl->getDeclName(), VDecl->getType(), 9821 VDecl->getTypeSourceInfo(), VDecl->getSourceRange(), DirectInit, Init); 9822 if (DeducedType.isNull()) { 9823 RealDecl->setInvalidDecl(); 9824 return; 9825 } 9826 9827 VDecl->setType(DeducedType); 9828 assert(VDecl->isLinkageValid()); 9829 9830 // In ARC, infer lifetime. 9831 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl)) 9832 VDecl->setInvalidDecl(); 9833 9834 // If this is a redeclaration, check that the type we just deduced matches 9835 // the previously declared type. 9836 if (VarDecl *Old = VDecl->getPreviousDecl()) { 9837 // We never need to merge the type, because we cannot form an incomplete 9838 // array of auto, nor deduce such a type. 9839 MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false); 9840 } 9841 9842 // Check the deduced type is valid for a variable declaration. 9843 CheckVariableDeclarationType(VDecl); 9844 if (VDecl->isInvalidDecl()) 9845 return; 9846 } 9847 9848 // dllimport cannot be used on variable definitions. 9849 if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) { 9850 Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition); 9851 VDecl->setInvalidDecl(); 9852 return; 9853 } 9854 9855 if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) { 9856 // C99 6.7.8p5. C++ has no such restriction, but that is a defect. 9857 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init); 9858 VDecl->setInvalidDecl(); 9859 return; 9860 } 9861 9862 if (!VDecl->getType()->isDependentType()) { 9863 // A definition must end up with a complete type, which means it must be 9864 // complete with the restriction that an array type might be completed by 9865 // the initializer; note that later code assumes this restriction. 9866 QualType BaseDeclType = VDecl->getType(); 9867 if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType)) 9868 BaseDeclType = Array->getElementType(); 9869 if (RequireCompleteType(VDecl->getLocation(), BaseDeclType, 9870 diag::err_typecheck_decl_incomplete_type)) { 9871 RealDecl->setInvalidDecl(); 9872 return; 9873 } 9874 9875 // The variable can not have an abstract class type. 9876 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(), 9877 diag::err_abstract_type_in_decl, 9878 AbstractVariableType)) 9879 VDecl->setInvalidDecl(); 9880 } 9881 9882 // If adding the initializer will turn this declaration into a definition, 9883 // and we already have a definition for this variable, diagnose or otherwise 9884 // handle the situation. 9885 VarDecl *Def; 9886 if ((Def = VDecl->getDefinition()) && Def != VDecl && 9887 (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) && 9888 !VDecl->isThisDeclarationADemotedDefinition() && 9889 checkVarDeclRedefinition(Def, VDecl)) 9890 return; 9891 9892 if (getLangOpts().CPlusPlus) { 9893 // C++ [class.static.data]p4 9894 // If a static data member is of const integral or const 9895 // enumeration type, its declaration in the class definition can 9896 // specify a constant-initializer which shall be an integral 9897 // constant expression (5.19). In that case, the member can appear 9898 // in integral constant expressions. The member shall still be 9899 // defined in a namespace scope if it is used in the program and the 9900 // namespace scope definition shall not contain an initializer. 9901 // 9902 // We already performed a redefinition check above, but for static 9903 // data members we also need to check whether there was an in-class 9904 // declaration with an initializer. 9905 if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) { 9906 Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization) 9907 << VDecl->getDeclName(); 9908 Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(), 9909 diag::note_previous_initializer) 9910 << 0; 9911 return; 9912 } 9913 9914 if (VDecl->hasLocalStorage()) 9915 getCurFunction()->setHasBranchProtectedScope(); 9916 9917 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) { 9918 VDecl->setInvalidDecl(); 9919 return; 9920 } 9921 } 9922 9923 // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside 9924 // a kernel function cannot be initialized." 9925 if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) { 9926 Diag(VDecl->getLocation(), diag::err_local_cant_init); 9927 VDecl->setInvalidDecl(); 9928 return; 9929 } 9930 9931 // Get the decls type and save a reference for later, since 9932 // CheckInitializerTypes may change it. 9933 QualType DclT = VDecl->getType(), SavT = DclT; 9934 9935 // Expressions default to 'id' when we're in a debugger 9936 // and we are assigning it to a variable of Objective-C pointer type. 9937 if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() && 9938 Init->getType() == Context.UnknownAnyTy) { 9939 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 9940 if (Result.isInvalid()) { 9941 VDecl->setInvalidDecl(); 9942 return; 9943 } 9944 Init = Result.get(); 9945 } 9946 9947 // Perform the initialization. 9948 ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init); 9949 if (!VDecl->isInvalidDecl()) { 9950 // Handle errors like: int a({0}) 9951 if (CXXDirectInit && CXXDirectInit->getNumExprs() == 1 && 9952 !canInitializeWithParenthesizedList(VDecl->getType())) 9953 if (auto IList = dyn_cast<InitListExpr>(CXXDirectInit->getExpr(0))) { 9954 Diag(VDecl->getLocation(), diag::err_list_init_in_parens) 9955 << VDecl->getType() << CXXDirectInit->getSourceRange() 9956 << FixItHint::CreateRemoval(CXXDirectInit->getLocStart()) 9957 << FixItHint::CreateRemoval(CXXDirectInit->getLocEnd()); 9958 Init = IList; 9959 CXXDirectInit = nullptr; 9960 } 9961 9962 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); 9963 InitializationKind Kind = 9964 DirectInit 9965 ? CXXDirectInit 9966 ? InitializationKind::CreateDirect(VDecl->getLocation(), 9967 Init->getLocStart(), 9968 Init->getLocEnd()) 9969 : InitializationKind::CreateDirectList(VDecl->getLocation()) 9970 : InitializationKind::CreateCopy(VDecl->getLocation(), 9971 Init->getLocStart()); 9972 9973 MultiExprArg Args = Init; 9974 if (CXXDirectInit) 9975 Args = MultiExprArg(CXXDirectInit->getExprs(), 9976 CXXDirectInit->getNumExprs()); 9977 9978 // Try to correct any TypoExprs in the initialization arguments. 9979 for (size_t Idx = 0; Idx < Args.size(); ++Idx) { 9980 ExprResult Res = CorrectDelayedTyposInExpr( 9981 Args[Idx], VDecl, [this, Entity, Kind](Expr *E) { 9982 InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E)); 9983 return Init.Failed() ? ExprError() : E; 9984 }); 9985 if (Res.isInvalid()) { 9986 VDecl->setInvalidDecl(); 9987 } else if (Res.get() != Args[Idx]) { 9988 Args[Idx] = Res.get(); 9989 } 9990 } 9991 if (VDecl->isInvalidDecl()) 9992 return; 9993 9994 InitializationSequence InitSeq(*this, Entity, Kind, Args, 9995 /*TopLevelOfInitList=*/false, 9996 /*TreatUnavailableAsInvalid=*/false); 9997 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT); 9998 if (Result.isInvalid()) { 9999 VDecl->setInvalidDecl(); 10000 return; 10001 } 10002 10003 Init = Result.getAs<Expr>(); 10004 } 10005 10006 // Check for self-references within variable initializers. 10007 // Variables declared within a function/method body (except for references) 10008 // are handled by a dataflow analysis. 10009 if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() || 10010 VDecl->getType()->isReferenceType()) { 10011 CheckSelfReference(*this, RealDecl, Init, DirectInit); 10012 } 10013 10014 // If the type changed, it means we had an incomplete type that was 10015 // completed by the initializer. For example: 10016 // int ary[] = { 1, 3, 5 }; 10017 // "ary" transitions from an IncompleteArrayType to a ConstantArrayType. 10018 if (!VDecl->isInvalidDecl() && (DclT != SavT)) 10019 VDecl->setType(DclT); 10020 10021 if (!VDecl->isInvalidDecl()) { 10022 checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init); 10023 10024 if (VDecl->hasAttr<BlocksAttr>()) 10025 checkRetainCycles(VDecl, Init); 10026 10027 // It is safe to assign a weak reference into a strong variable. 10028 // Although this code can still have problems: 10029 // id x = self.weakProp; 10030 // id y = self.weakProp; 10031 // we do not warn to warn spuriously when 'x' and 'y' are on separate 10032 // paths through the function. This should be revisited if 10033 // -Wrepeated-use-of-weak is made flow-sensitive. 10034 if (VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong && 10035 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 10036 Init->getLocStart())) 10037 getCurFunction()->markSafeWeakUse(Init); 10038 } 10039 10040 // The initialization is usually a full-expression. 10041 // 10042 // FIXME: If this is a braced initialization of an aggregate, it is not 10043 // an expression, and each individual field initializer is a separate 10044 // full-expression. For instance, in: 10045 // 10046 // struct Temp { ~Temp(); }; 10047 // struct S { S(Temp); }; 10048 // struct T { S a, b; } t = { Temp(), Temp() } 10049 // 10050 // we should destroy the first Temp before constructing the second. 10051 ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(), 10052 false, 10053 VDecl->isConstexpr()); 10054 if (Result.isInvalid()) { 10055 VDecl->setInvalidDecl(); 10056 return; 10057 } 10058 Init = Result.get(); 10059 10060 // Attach the initializer to the decl. 10061 VDecl->setInit(Init); 10062 10063 if (VDecl->isLocalVarDecl()) { 10064 // C99 6.7.8p4: All the expressions in an initializer for an object that has 10065 // static storage duration shall be constant expressions or string literals. 10066 // C++ does not have this restriction. 10067 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) { 10068 const Expr *Culprit; 10069 if (VDecl->getStorageClass() == SC_Static) 10070 CheckForConstantInitializer(Init, DclT); 10071 // C89 is stricter than C99 for non-static aggregate types. 10072 // C89 6.5.7p3: All the expressions [...] in an initializer list 10073 // for an object that has aggregate or union type shall be 10074 // constant expressions. 10075 else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() && 10076 isa<InitListExpr>(Init) && 10077 !Init->isConstantInitializer(Context, false, &Culprit)) 10078 Diag(Culprit->getExprLoc(), 10079 diag::ext_aggregate_init_not_constant) 10080 << Culprit->getSourceRange(); 10081 } 10082 } else if (VDecl->isStaticDataMember() && !VDecl->isInline() && 10083 VDecl->getLexicalDeclContext()->isRecord()) { 10084 // This is an in-class initialization for a static data member, e.g., 10085 // 10086 // struct S { 10087 // static const int value = 17; 10088 // }; 10089 10090 // C++ [class.mem]p4: 10091 // A member-declarator can contain a constant-initializer only 10092 // if it declares a static member (9.4) of const integral or 10093 // const enumeration type, see 9.4.2. 10094 // 10095 // C++11 [class.static.data]p3: 10096 // If a non-volatile non-inline const static data member is of integral 10097 // or enumeration type, its declaration in the class definition can 10098 // specify a brace-or-equal-initializer in which every initalizer-clause 10099 // that is an assignment-expression is a constant expression. A static 10100 // data member of literal type can be declared in the class definition 10101 // with the constexpr specifier; if so, its declaration shall specify a 10102 // brace-or-equal-initializer in which every initializer-clause that is 10103 // an assignment-expression is a constant expression. 10104 10105 // Do nothing on dependent types. 10106 if (DclT->isDependentType()) { 10107 10108 // Allow any 'static constexpr' members, whether or not they are of literal 10109 // type. We separately check that every constexpr variable is of literal 10110 // type. 10111 } else if (VDecl->isConstexpr()) { 10112 10113 // Require constness. 10114 } else if (!DclT.isConstQualified()) { 10115 Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const) 10116 << Init->getSourceRange(); 10117 VDecl->setInvalidDecl(); 10118 10119 // We allow integer constant expressions in all cases. 10120 } else if (DclT->isIntegralOrEnumerationType()) { 10121 // Check whether the expression is a constant expression. 10122 SourceLocation Loc; 10123 if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified()) 10124 // In C++11, a non-constexpr const static data member with an 10125 // in-class initializer cannot be volatile. 10126 Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile); 10127 else if (Init->isValueDependent()) 10128 ; // Nothing to check. 10129 else if (Init->isIntegerConstantExpr(Context, &Loc)) 10130 ; // Ok, it's an ICE! 10131 else if (Init->isEvaluatable(Context)) { 10132 // If we can constant fold the initializer through heroics, accept it, 10133 // but report this as a use of an extension for -pedantic. 10134 Diag(Loc, diag::ext_in_class_initializer_non_constant) 10135 << Init->getSourceRange(); 10136 } else { 10137 // Otherwise, this is some crazy unknown case. Report the issue at the 10138 // location provided by the isIntegerConstantExpr failed check. 10139 Diag(Loc, diag::err_in_class_initializer_non_constant) 10140 << Init->getSourceRange(); 10141 VDecl->setInvalidDecl(); 10142 } 10143 10144 // We allow foldable floating-point constants as an extension. 10145 } else if (DclT->isFloatingType()) { // also permits complex, which is ok 10146 // In C++98, this is a GNU extension. In C++11, it is not, but we support 10147 // it anyway and provide a fixit to add the 'constexpr'. 10148 if (getLangOpts().CPlusPlus11) { 10149 Diag(VDecl->getLocation(), 10150 diag::ext_in_class_initializer_float_type_cxx11) 10151 << DclT << Init->getSourceRange(); 10152 Diag(VDecl->getLocStart(), 10153 diag::note_in_class_initializer_float_type_cxx11) 10154 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr "); 10155 } else { 10156 Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type) 10157 << DclT << Init->getSourceRange(); 10158 10159 if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) { 10160 Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant) 10161 << Init->getSourceRange(); 10162 VDecl->setInvalidDecl(); 10163 } 10164 } 10165 10166 // Suggest adding 'constexpr' in C++11 for literal types. 10167 } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) { 10168 Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type) 10169 << DclT << Init->getSourceRange() 10170 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr "); 10171 VDecl->setConstexpr(true); 10172 10173 } else { 10174 Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type) 10175 << DclT << Init->getSourceRange(); 10176 VDecl->setInvalidDecl(); 10177 } 10178 } else if (VDecl->isFileVarDecl()) { 10179 // In C, extern is typically used to avoid tentative definitions when 10180 // declaring variables in headers, but adding an intializer makes it a 10181 // defintion. This is somewhat confusing, so GCC and Clang both warn on it. 10182 // In C++, extern is often used to give implictly static const variables 10183 // external linkage, so don't warn in that case. If selectany is present, 10184 // this might be header code intended for C and C++ inclusion, so apply the 10185 // C++ rules. 10186 if (VDecl->getStorageClass() == SC_Extern && 10187 ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) || 10188 !Context.getBaseElementType(VDecl->getType()).isConstQualified()) && 10189 !(getLangOpts().CPlusPlus && VDecl->isExternC()) && 10190 !isTemplateInstantiation(VDecl->getTemplateSpecializationKind())) 10191 Diag(VDecl->getLocation(), diag::warn_extern_init); 10192 10193 // C99 6.7.8p4. All file scoped initializers need to be constant. 10194 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) 10195 CheckForConstantInitializer(Init, DclT); 10196 } 10197 10198 // We will represent direct-initialization similarly to copy-initialization: 10199 // int x(1); -as-> int x = 1; 10200 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c); 10201 // 10202 // Clients that want to distinguish between the two forms, can check for 10203 // direct initializer using VarDecl::getInitStyle(). 10204 // A major benefit is that clients that don't particularly care about which 10205 // exactly form was it (like the CodeGen) can handle both cases without 10206 // special case code. 10207 10208 // C++ 8.5p11: 10209 // The form of initialization (using parentheses or '=') is generally 10210 // insignificant, but does matter when the entity being initialized has a 10211 // class type. 10212 if (CXXDirectInit) { 10213 assert(DirectInit && "Call-style initializer must be direct init."); 10214 VDecl->setInitStyle(VarDecl::CallInit); 10215 } else if (DirectInit) { 10216 // This must be list-initialization. No other way is direct-initialization. 10217 VDecl->setInitStyle(VarDecl::ListInit); 10218 } 10219 10220 CheckCompleteVariableDeclaration(VDecl); 10221 } 10222 10223 /// ActOnInitializerError - Given that there was an error parsing an 10224 /// initializer for the given declaration, try to return to some form 10225 /// of sanity. 10226 void Sema::ActOnInitializerError(Decl *D) { 10227 // Our main concern here is re-establishing invariants like "a 10228 // variable's type is either dependent or complete". 10229 if (!D || D->isInvalidDecl()) return; 10230 10231 VarDecl *VD = dyn_cast<VarDecl>(D); 10232 if (!VD) return; 10233 10234 // Bindings are not usable if we can't make sense of the initializer. 10235 if (auto *DD = dyn_cast<DecompositionDecl>(D)) 10236 for (auto *BD : DD->bindings()) 10237 BD->setInvalidDecl(); 10238 10239 // Auto types are meaningless if we can't make sense of the initializer. 10240 if (ParsingInitForAutoVars.count(D)) { 10241 D->setInvalidDecl(); 10242 return; 10243 } 10244 10245 QualType Ty = VD->getType(); 10246 if (Ty->isDependentType()) return; 10247 10248 // Require a complete type. 10249 if (RequireCompleteType(VD->getLocation(), 10250 Context.getBaseElementType(Ty), 10251 diag::err_typecheck_decl_incomplete_type)) { 10252 VD->setInvalidDecl(); 10253 return; 10254 } 10255 10256 // Require a non-abstract type. 10257 if (RequireNonAbstractType(VD->getLocation(), Ty, 10258 diag::err_abstract_type_in_decl, 10259 AbstractVariableType)) { 10260 VD->setInvalidDecl(); 10261 return; 10262 } 10263 10264 // Don't bother complaining about constructors or destructors, 10265 // though. 10266 } 10267 10268 /// Checks if an object of the given type can be initialized with parenthesized 10269 /// init-list. 10270 /// 10271 /// \param TargetType Type of object being initialized. 10272 /// 10273 /// The function is used to detect wrong initializations, such as 'int({0})'. 10274 /// 10275 bool Sema::canInitializeWithParenthesizedList(QualType TargetType) { 10276 return TargetType->isDependentType() || TargetType->isRecordType() || 10277 TargetType->getContainedAutoType(); 10278 } 10279 10280 void Sema::ActOnUninitializedDecl(Decl *RealDecl, 10281 bool TypeMayContainAuto) { 10282 // If there is no declaration, there was an error parsing it. Just ignore it. 10283 if (!RealDecl) 10284 return; 10285 10286 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) { 10287 QualType Type = Var->getType(); 10288 10289 // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory. 10290 if (isa<DecompositionDecl>(RealDecl)) { 10291 Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var; 10292 Var->setInvalidDecl(); 10293 return; 10294 } 10295 10296 // C++11 [dcl.spec.auto]p3 10297 if (TypeMayContainAuto && Type->getContainedAutoType()) { 10298 Diag(Var->getLocation(), diag::err_auto_var_requires_init) 10299 << Var->getDeclName() << Type; 10300 Var->setInvalidDecl(); 10301 return; 10302 } 10303 10304 // C++11 [class.static.data]p3: A static data member can be declared with 10305 // the constexpr specifier; if so, its declaration shall specify 10306 // a brace-or-equal-initializer. 10307 // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to 10308 // the definition of a variable [...] or the declaration of a static data 10309 // member. 10310 if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() && 10311 !Var->isThisDeclarationADemotedDefinition()) { 10312 if (Var->isStaticDataMember()) { 10313 // C++1z removes the relevant rule; the in-class declaration is always 10314 // a definition there. 10315 if (!getLangOpts().CPlusPlus1z) { 10316 Diag(Var->getLocation(), 10317 diag::err_constexpr_static_mem_var_requires_init) 10318 << Var->getDeclName(); 10319 Var->setInvalidDecl(); 10320 return; 10321 } 10322 } else { 10323 Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl); 10324 Var->setInvalidDecl(); 10325 return; 10326 } 10327 } 10328 10329 // C++ Concepts TS [dcl.spec.concept]p1: [...] A variable template 10330 // definition having the concept specifier is called a variable concept. A 10331 // concept definition refers to [...] a variable concept and its initializer. 10332 if (VarTemplateDecl *VTD = Var->getDescribedVarTemplate()) { 10333 if (VTD->isConcept()) { 10334 Diag(Var->getLocation(), diag::err_var_concept_not_initialized); 10335 Var->setInvalidDecl(); 10336 return; 10337 } 10338 } 10339 10340 // OpenCL v1.1 s6.5.3: variables declared in the constant address space must 10341 // be initialized. 10342 if (!Var->isInvalidDecl() && 10343 Var->getType().getAddressSpace() == LangAS::opencl_constant && 10344 Var->getStorageClass() != SC_Extern && !Var->getInit()) { 10345 Diag(Var->getLocation(), diag::err_opencl_constant_no_init); 10346 Var->setInvalidDecl(); 10347 return; 10348 } 10349 10350 switch (Var->isThisDeclarationADefinition()) { 10351 case VarDecl::Definition: 10352 if (!Var->isStaticDataMember() || !Var->getAnyInitializer()) 10353 break; 10354 10355 // We have an out-of-line definition of a static data member 10356 // that has an in-class initializer, so we type-check this like 10357 // a declaration. 10358 // 10359 // Fall through 10360 10361 case VarDecl::DeclarationOnly: 10362 // It's only a declaration. 10363 10364 // Block scope. C99 6.7p7: If an identifier for an object is 10365 // declared with no linkage (C99 6.2.2p6), the type for the 10366 // object shall be complete. 10367 if (!Type->isDependentType() && Var->isLocalVarDecl() && 10368 !Var->hasLinkage() && !Var->isInvalidDecl() && 10369 RequireCompleteType(Var->getLocation(), Type, 10370 diag::err_typecheck_decl_incomplete_type)) 10371 Var->setInvalidDecl(); 10372 10373 // Make sure that the type is not abstract. 10374 if (!Type->isDependentType() && !Var->isInvalidDecl() && 10375 RequireNonAbstractType(Var->getLocation(), Type, 10376 diag::err_abstract_type_in_decl, 10377 AbstractVariableType)) 10378 Var->setInvalidDecl(); 10379 if (!Type->isDependentType() && !Var->isInvalidDecl() && 10380 Var->getStorageClass() == SC_PrivateExtern) { 10381 Diag(Var->getLocation(), diag::warn_private_extern); 10382 Diag(Var->getLocation(), diag::note_private_extern); 10383 } 10384 10385 return; 10386 10387 case VarDecl::TentativeDefinition: 10388 // File scope. C99 6.9.2p2: A declaration of an identifier for an 10389 // object that has file scope without an initializer, and without a 10390 // storage-class specifier or with the storage-class specifier "static", 10391 // constitutes a tentative definition. Note: A tentative definition with 10392 // external linkage is valid (C99 6.2.2p5). 10393 if (!Var->isInvalidDecl()) { 10394 if (const IncompleteArrayType *ArrayT 10395 = Context.getAsIncompleteArrayType(Type)) { 10396 if (RequireCompleteType(Var->getLocation(), 10397 ArrayT->getElementType(), 10398 diag::err_illegal_decl_array_incomplete_type)) 10399 Var->setInvalidDecl(); 10400 } else if (Var->getStorageClass() == SC_Static) { 10401 // C99 6.9.2p3: If the declaration of an identifier for an object is 10402 // a tentative definition and has internal linkage (C99 6.2.2p3), the 10403 // declared type shall not be an incomplete type. 10404 // NOTE: code such as the following 10405 // static struct s; 10406 // struct s { int a; }; 10407 // is accepted by gcc. Hence here we issue a warning instead of 10408 // an error and we do not invalidate the static declaration. 10409 // NOTE: to avoid multiple warnings, only check the first declaration. 10410 if (Var->isFirstDecl()) 10411 RequireCompleteType(Var->getLocation(), Type, 10412 diag::ext_typecheck_decl_incomplete_type); 10413 } 10414 } 10415 10416 // Record the tentative definition; we're done. 10417 if (!Var->isInvalidDecl()) 10418 TentativeDefinitions.push_back(Var); 10419 return; 10420 } 10421 10422 // Provide a specific diagnostic for uninitialized variable 10423 // definitions with incomplete array type. 10424 if (Type->isIncompleteArrayType()) { 10425 Diag(Var->getLocation(), 10426 diag::err_typecheck_incomplete_array_needs_initializer); 10427 Var->setInvalidDecl(); 10428 return; 10429 } 10430 10431 // Provide a specific diagnostic for uninitialized variable 10432 // definitions with reference type. 10433 if (Type->isReferenceType()) { 10434 Diag(Var->getLocation(), diag::err_reference_var_requires_init) 10435 << Var->getDeclName() 10436 << SourceRange(Var->getLocation(), Var->getLocation()); 10437 Var->setInvalidDecl(); 10438 return; 10439 } 10440 10441 // Do not attempt to type-check the default initializer for a 10442 // variable with dependent type. 10443 if (Type->isDependentType()) 10444 return; 10445 10446 if (Var->isInvalidDecl()) 10447 return; 10448 10449 if (!Var->hasAttr<AliasAttr>()) { 10450 if (RequireCompleteType(Var->getLocation(), 10451 Context.getBaseElementType(Type), 10452 diag::err_typecheck_decl_incomplete_type)) { 10453 Var->setInvalidDecl(); 10454 return; 10455 } 10456 } else { 10457 return; 10458 } 10459 10460 // The variable can not have an abstract class type. 10461 if (RequireNonAbstractType(Var->getLocation(), Type, 10462 diag::err_abstract_type_in_decl, 10463 AbstractVariableType)) { 10464 Var->setInvalidDecl(); 10465 return; 10466 } 10467 10468 // Check for jumps past the implicit initializer. C++0x 10469 // clarifies that this applies to a "variable with automatic 10470 // storage duration", not a "local variable". 10471 // C++11 [stmt.dcl]p3 10472 // A program that jumps from a point where a variable with automatic 10473 // storage duration is not in scope to a point where it is in scope is 10474 // ill-formed unless the variable has scalar type, class type with a 10475 // trivial default constructor and a trivial destructor, a cv-qualified 10476 // version of one of these types, or an array of one of the preceding 10477 // types and is declared without an initializer. 10478 if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) { 10479 if (const RecordType *Record 10480 = Context.getBaseElementType(Type)->getAs<RecordType>()) { 10481 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl()); 10482 // Mark the function for further checking even if the looser rules of 10483 // C++11 do not require such checks, so that we can diagnose 10484 // incompatibilities with C++98. 10485 if (!CXXRecord->isPOD()) 10486 getCurFunction()->setHasBranchProtectedScope(); 10487 } 10488 } 10489 10490 // C++03 [dcl.init]p9: 10491 // If no initializer is specified for an object, and the 10492 // object is of (possibly cv-qualified) non-POD class type (or 10493 // array thereof), the object shall be default-initialized; if 10494 // the object is of const-qualified type, the underlying class 10495 // type shall have a user-declared default 10496 // constructor. Otherwise, if no initializer is specified for 10497 // a non- static object, the object and its subobjects, if 10498 // any, have an indeterminate initial value); if the object 10499 // or any of its subobjects are of const-qualified type, the 10500 // program is ill-formed. 10501 // C++0x [dcl.init]p11: 10502 // If no initializer is specified for an object, the object is 10503 // default-initialized; [...]. 10504 InitializedEntity Entity = InitializedEntity::InitializeVariable(Var); 10505 InitializationKind Kind 10506 = InitializationKind::CreateDefault(Var->getLocation()); 10507 10508 InitializationSequence InitSeq(*this, Entity, Kind, None); 10509 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None); 10510 if (Init.isInvalid()) 10511 Var->setInvalidDecl(); 10512 else if (Init.get()) { 10513 Var->setInit(MaybeCreateExprWithCleanups(Init.get())); 10514 // This is important for template substitution. 10515 Var->setInitStyle(VarDecl::CallInit); 10516 } 10517 10518 CheckCompleteVariableDeclaration(Var); 10519 } 10520 } 10521 10522 void Sema::ActOnCXXForRangeDecl(Decl *D) { 10523 // If there is no declaration, there was an error parsing it. Ignore it. 10524 if (!D) 10525 return; 10526 10527 VarDecl *VD = dyn_cast<VarDecl>(D); 10528 if (!VD) { 10529 Diag(D->getLocation(), diag::err_for_range_decl_must_be_var); 10530 D->setInvalidDecl(); 10531 return; 10532 } 10533 10534 VD->setCXXForRangeDecl(true); 10535 10536 // for-range-declaration cannot be given a storage class specifier. 10537 int Error = -1; 10538 switch (VD->getStorageClass()) { 10539 case SC_None: 10540 break; 10541 case SC_Extern: 10542 Error = 0; 10543 break; 10544 case SC_Static: 10545 Error = 1; 10546 break; 10547 case SC_PrivateExtern: 10548 Error = 2; 10549 break; 10550 case SC_Auto: 10551 Error = 3; 10552 break; 10553 case SC_Register: 10554 Error = 4; 10555 break; 10556 } 10557 if (Error != -1) { 10558 Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class) 10559 << VD->getDeclName() << Error; 10560 D->setInvalidDecl(); 10561 } 10562 } 10563 10564 StmtResult 10565 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc, 10566 IdentifierInfo *Ident, 10567 ParsedAttributes &Attrs, 10568 SourceLocation AttrEnd) { 10569 // C++1y [stmt.iter]p1: 10570 // A range-based for statement of the form 10571 // for ( for-range-identifier : for-range-initializer ) statement 10572 // is equivalent to 10573 // for ( auto&& for-range-identifier : for-range-initializer ) statement 10574 DeclSpec DS(Attrs.getPool().getFactory()); 10575 10576 const char *PrevSpec; 10577 unsigned DiagID; 10578 DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID, 10579 getPrintingPolicy()); 10580 10581 Declarator D(DS, Declarator::ForContext); 10582 D.SetIdentifier(Ident, IdentLoc); 10583 D.takeAttributes(Attrs, AttrEnd); 10584 10585 ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory()); 10586 D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false), 10587 EmptyAttrs, IdentLoc); 10588 Decl *Var = ActOnDeclarator(S, D); 10589 cast<VarDecl>(Var)->setCXXForRangeDecl(true); 10590 FinalizeDeclaration(Var); 10591 return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc, 10592 AttrEnd.isValid() ? AttrEnd : IdentLoc); 10593 } 10594 10595 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) { 10596 if (var->isInvalidDecl()) return; 10597 10598 if (getLangOpts().OpenCL) { 10599 // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an 10600 // initialiser 10601 if (var->getTypeSourceInfo()->getType()->isBlockPointerType() && 10602 !var->hasInit()) { 10603 Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration) 10604 << 1 /*Init*/; 10605 var->setInvalidDecl(); 10606 return; 10607 } 10608 } 10609 10610 // In Objective-C, don't allow jumps past the implicit initialization of a 10611 // local retaining variable. 10612 if (getLangOpts().ObjC1 && 10613 var->hasLocalStorage()) { 10614 switch (var->getType().getObjCLifetime()) { 10615 case Qualifiers::OCL_None: 10616 case Qualifiers::OCL_ExplicitNone: 10617 case Qualifiers::OCL_Autoreleasing: 10618 break; 10619 10620 case Qualifiers::OCL_Weak: 10621 case Qualifiers::OCL_Strong: 10622 getCurFunction()->setHasBranchProtectedScope(); 10623 break; 10624 } 10625 } 10626 10627 // Warn about externally-visible variables being defined without a 10628 // prior declaration. We only want to do this for global 10629 // declarations, but we also specifically need to avoid doing it for 10630 // class members because the linkage of an anonymous class can 10631 // change if it's later given a typedef name. 10632 if (var->isThisDeclarationADefinition() && 10633 var->getDeclContext()->getRedeclContext()->isFileContext() && 10634 var->isExternallyVisible() && var->hasLinkage() && 10635 !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations, 10636 var->getLocation())) { 10637 // Find a previous declaration that's not a definition. 10638 VarDecl *prev = var->getPreviousDecl(); 10639 while (prev && prev->isThisDeclarationADefinition()) 10640 prev = prev->getPreviousDecl(); 10641 10642 if (!prev) 10643 Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var; 10644 } 10645 10646 // Cache the result of checking for constant initialization. 10647 Optional<bool> CacheHasConstInit; 10648 const Expr *CacheCulprit; 10649 auto checkConstInit = [&]() mutable { 10650 if (!CacheHasConstInit) 10651 CacheHasConstInit = var->getInit()->isConstantInitializer( 10652 Context, var->getType()->isReferenceType(), &CacheCulprit); 10653 return *CacheHasConstInit; 10654 }; 10655 10656 if (var->getTLSKind() == VarDecl::TLS_Static) { 10657 if (var->getType().isDestructedType()) { 10658 // GNU C++98 edits for __thread, [basic.start.term]p3: 10659 // The type of an object with thread storage duration shall not 10660 // have a non-trivial destructor. 10661 Diag(var->getLocation(), diag::err_thread_nontrivial_dtor); 10662 if (getLangOpts().CPlusPlus11) 10663 Diag(var->getLocation(), diag::note_use_thread_local); 10664 } else if (getLangOpts().CPlusPlus && var->hasInit()) { 10665 if (!checkConstInit()) { 10666 // GNU C++98 edits for __thread, [basic.start.init]p4: 10667 // An object of thread storage duration shall not require dynamic 10668 // initialization. 10669 // FIXME: Need strict checking here. 10670 Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init) 10671 << CacheCulprit->getSourceRange(); 10672 if (getLangOpts().CPlusPlus11) 10673 Diag(var->getLocation(), diag::note_use_thread_local); 10674 } 10675 } 10676 } 10677 10678 // Apply section attributes and pragmas to global variables. 10679 bool GlobalStorage = var->hasGlobalStorage(); 10680 if (GlobalStorage && var->isThisDeclarationADefinition() && 10681 ActiveTemplateInstantiations.empty()) { 10682 PragmaStack<StringLiteral *> *Stack = nullptr; 10683 int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read; 10684 if (var->getType().isConstQualified()) 10685 Stack = &ConstSegStack; 10686 else if (!var->getInit()) { 10687 Stack = &BSSSegStack; 10688 SectionFlags |= ASTContext::PSF_Write; 10689 } else { 10690 Stack = &DataSegStack; 10691 SectionFlags |= ASTContext::PSF_Write; 10692 } 10693 if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) { 10694 var->addAttr(SectionAttr::CreateImplicit( 10695 Context, SectionAttr::Declspec_allocate, 10696 Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation)); 10697 } 10698 if (const SectionAttr *SA = var->getAttr<SectionAttr>()) 10699 if (UnifySection(SA->getName(), SectionFlags, var)) 10700 var->dropAttr<SectionAttr>(); 10701 10702 // Apply the init_seg attribute if this has an initializer. If the 10703 // initializer turns out to not be dynamic, we'll end up ignoring this 10704 // attribute. 10705 if (CurInitSeg && var->getInit()) 10706 var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(), 10707 CurInitSegLoc)); 10708 } 10709 10710 // All the following checks are C++ only. 10711 if (!getLangOpts().CPlusPlus) { 10712 // If this variable must be emitted, add it as an initializer for the 10713 // current module. 10714 if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty()) 10715 Context.addModuleInitializer(ModuleScopes.back().Module, var); 10716 return; 10717 } 10718 10719 if (auto *DD = dyn_cast<DecompositionDecl>(var)) 10720 CheckCompleteDecompositionDeclaration(DD); 10721 10722 QualType type = var->getType(); 10723 if (type->isDependentType()) return; 10724 10725 // __block variables might require us to capture a copy-initializer. 10726 if (var->hasAttr<BlocksAttr>()) { 10727 // It's currently invalid to ever have a __block variable with an 10728 // array type; should we diagnose that here? 10729 10730 // Regardless, we don't want to ignore array nesting when 10731 // constructing this copy. 10732 if (type->isStructureOrClassType()) { 10733 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated); 10734 SourceLocation poi = var->getLocation(); 10735 Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi); 10736 ExprResult result 10737 = PerformMoveOrCopyInitialization( 10738 InitializedEntity::InitializeBlock(poi, type, false), 10739 var, var->getType(), varRef, /*AllowNRVO=*/true); 10740 if (!result.isInvalid()) { 10741 result = MaybeCreateExprWithCleanups(result); 10742 Expr *init = result.getAs<Expr>(); 10743 Context.setBlockVarCopyInits(var, init); 10744 } 10745 } 10746 } 10747 10748 Expr *Init = var->getInit(); 10749 bool IsGlobal = GlobalStorage && !var->isStaticLocal(); 10750 QualType baseType = Context.getBaseElementType(type); 10751 10752 if (!var->getDeclContext()->isDependentContext() && 10753 Init && !Init->isValueDependent()) { 10754 10755 if (var->isConstexpr()) { 10756 SmallVector<PartialDiagnosticAt, 8> Notes; 10757 if (!var->evaluateValue(Notes) || !var->isInitICE()) { 10758 SourceLocation DiagLoc = var->getLocation(); 10759 // If the note doesn't add any useful information other than a source 10760 // location, fold it into the primary diagnostic. 10761 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 10762 diag::note_invalid_subexpr_in_const_expr) { 10763 DiagLoc = Notes[0].first; 10764 Notes.clear(); 10765 } 10766 Diag(DiagLoc, diag::err_constexpr_var_requires_const_init) 10767 << var << Init->getSourceRange(); 10768 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 10769 Diag(Notes[I].first, Notes[I].second); 10770 } 10771 } else if (var->isUsableInConstantExpressions(Context)) { 10772 // Check whether the initializer of a const variable of integral or 10773 // enumeration type is an ICE now, since we can't tell whether it was 10774 // initialized by a constant expression if we check later. 10775 var->checkInitIsICE(); 10776 } 10777 10778 // Don't emit further diagnostics about constexpr globals since they 10779 // were just diagnosed. 10780 if (!var->isConstexpr() && GlobalStorage && 10781 var->hasAttr<RequireConstantInitAttr>()) { 10782 // FIXME: Need strict checking in C++03 here. 10783 bool DiagErr = getLangOpts().CPlusPlus11 10784 ? !var->checkInitIsICE() : !checkConstInit(); 10785 if (DiagErr) { 10786 auto attr = var->getAttr<RequireConstantInitAttr>(); 10787 Diag(var->getLocation(), diag::err_require_constant_init_failed) 10788 << Init->getSourceRange(); 10789 Diag(attr->getLocation(), diag::note_declared_required_constant_init_here) 10790 << attr->getRange(); 10791 } 10792 } 10793 else if (!var->isConstexpr() && IsGlobal && 10794 !getDiagnostics().isIgnored(diag::warn_global_constructor, 10795 var->getLocation())) { 10796 // Warn about globals which don't have a constant initializer. Don't 10797 // warn about globals with a non-trivial destructor because we already 10798 // warned about them. 10799 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); 10800 if (!(RD && !RD->hasTrivialDestructor())) { 10801 if (!checkConstInit()) 10802 Diag(var->getLocation(), diag::warn_global_constructor) 10803 << Init->getSourceRange(); 10804 } 10805 } 10806 } 10807 10808 // Require the destructor. 10809 if (const RecordType *recordType = baseType->getAs<RecordType>()) 10810 FinalizeVarWithDestructor(var, recordType); 10811 10812 // If this variable must be emitted, add it as an initializer for the current 10813 // module. 10814 if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty()) 10815 Context.addModuleInitializer(ModuleScopes.back().Module, var); 10816 } 10817 10818 /// \brief Determines if a variable's alignment is dependent. 10819 static bool hasDependentAlignment(VarDecl *VD) { 10820 if (VD->getType()->isDependentType()) 10821 return true; 10822 for (auto *I : VD->specific_attrs<AlignedAttr>()) 10823 if (I->isAlignmentDependent()) 10824 return true; 10825 return false; 10826 } 10827 10828 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform 10829 /// any semantic actions necessary after any initializer has been attached. 10830 void 10831 Sema::FinalizeDeclaration(Decl *ThisDecl) { 10832 // Note that we are no longer parsing the initializer for this declaration. 10833 ParsingInitForAutoVars.erase(ThisDecl); 10834 10835 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl); 10836 if (!VD) 10837 return; 10838 10839 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { 10840 for (auto *BD : DD->bindings()) { 10841 FinalizeDeclaration(BD); 10842 } 10843 } 10844 10845 checkAttributesAfterMerging(*this, *VD); 10846 10847 // Perform TLS alignment check here after attributes attached to the variable 10848 // which may affect the alignment have been processed. Only perform the check 10849 // if the target has a maximum TLS alignment (zero means no constraints). 10850 if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) { 10851 // Protect the check so that it's not performed on dependent types and 10852 // dependent alignments (we can't determine the alignment in that case). 10853 if (VD->getTLSKind() && !hasDependentAlignment(VD)) { 10854 CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign); 10855 if (Context.getDeclAlign(VD) > MaxAlignChars) { 10856 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum) 10857 << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD 10858 << (unsigned)MaxAlignChars.getQuantity(); 10859 } 10860 } 10861 } 10862 10863 if (VD->isStaticLocal()) { 10864 if (FunctionDecl *FD = 10865 dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) { 10866 // Static locals inherit dll attributes from their function. 10867 if (Attr *A = getDLLAttr(FD)) { 10868 auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext())); 10869 NewAttr->setInherited(true); 10870 VD->addAttr(NewAttr); 10871 } 10872 // CUDA E.2.9.4: Within the body of a __device__ or __global__ 10873 // function, only __shared__ variables may be declared with 10874 // static storage class. 10875 if (getLangOpts().CUDA && !VD->hasAttr<CUDASharedAttr>() && 10876 CUDADiagIfDeviceCode(VD->getLocation(), 10877 diag::err_device_static_local_var) 10878 << CurrentCUDATarget()) 10879 VD->setInvalidDecl(); 10880 } 10881 } 10882 10883 // Perform check for initializers of device-side global variables. 10884 // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA 10885 // 7.5). We must also apply the same checks to all __shared__ 10886 // variables whether they are local or not. CUDA also allows 10887 // constant initializers for __constant__ and __device__ variables. 10888 if (getLangOpts().CUDA) { 10889 const Expr *Init = VD->getInit(); 10890 if (Init && VD->hasGlobalStorage()) { 10891 if (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() || 10892 VD->hasAttr<CUDASharedAttr>()) { 10893 assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>()); 10894 bool AllowedInit = false; 10895 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) 10896 AllowedInit = 10897 isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor()); 10898 // We'll allow constant initializers even if it's a non-empty 10899 // constructor according to CUDA rules. This deviates from NVCC, 10900 // but allows us to handle things like constexpr constructors. 10901 if (!AllowedInit && 10902 (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>())) 10903 AllowedInit = VD->getInit()->isConstantInitializer( 10904 Context, VD->getType()->isReferenceType()); 10905 10906 // Also make sure that destructor, if there is one, is empty. 10907 if (AllowedInit) 10908 if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl()) 10909 AllowedInit = 10910 isEmptyCudaDestructor(VD->getLocation(), RD->getDestructor()); 10911 10912 if (!AllowedInit) { 10913 Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>() 10914 ? diag::err_shared_var_init 10915 : diag::err_dynamic_var_init) 10916 << Init->getSourceRange(); 10917 VD->setInvalidDecl(); 10918 } 10919 } else { 10920 // This is a host-side global variable. Check that the initializer is 10921 // callable from the host side. 10922 const FunctionDecl *InitFn = nullptr; 10923 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) { 10924 InitFn = CE->getConstructor(); 10925 } else if (const CallExpr *CE = dyn_cast<CallExpr>(Init)) { 10926 InitFn = CE->getDirectCallee(); 10927 } 10928 if (InitFn) { 10929 CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn); 10930 if (InitFnTarget != CFT_Host && InitFnTarget != CFT_HostDevice) { 10931 Diag(VD->getLocation(), diag::err_ref_bad_target_global_initializer) 10932 << InitFnTarget << InitFn; 10933 Diag(InitFn->getLocation(), diag::note_previous_decl) << InitFn; 10934 VD->setInvalidDecl(); 10935 } 10936 } 10937 } 10938 } 10939 } 10940 10941 // Grab the dllimport or dllexport attribute off of the VarDecl. 10942 const InheritableAttr *DLLAttr = getDLLAttr(VD); 10943 10944 // Imported static data members cannot be defined out-of-line. 10945 if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) { 10946 if (VD->isStaticDataMember() && VD->isOutOfLine() && 10947 VD->isThisDeclarationADefinition()) { 10948 // We allow definitions of dllimport class template static data members 10949 // with a warning. 10950 CXXRecordDecl *Context = 10951 cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext()); 10952 bool IsClassTemplateMember = 10953 isa<ClassTemplatePartialSpecializationDecl>(Context) || 10954 Context->getDescribedClassTemplate(); 10955 10956 Diag(VD->getLocation(), 10957 IsClassTemplateMember 10958 ? diag::warn_attribute_dllimport_static_field_definition 10959 : diag::err_attribute_dllimport_static_field_definition); 10960 Diag(IA->getLocation(), diag::note_attribute); 10961 if (!IsClassTemplateMember) 10962 VD->setInvalidDecl(); 10963 } 10964 } 10965 10966 // dllimport/dllexport variables cannot be thread local, their TLS index 10967 // isn't exported with the variable. 10968 if (DLLAttr && VD->getTLSKind()) { 10969 auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod()); 10970 if (F && getDLLAttr(F)) { 10971 assert(VD->isStaticLocal()); 10972 // But if this is a static local in a dlimport/dllexport function, the 10973 // function will never be inlined, which means the var would never be 10974 // imported, so having it marked import/export is safe. 10975 } else { 10976 Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD 10977 << DLLAttr; 10978 VD->setInvalidDecl(); 10979 } 10980 } 10981 10982 if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) { 10983 if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) { 10984 Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr; 10985 VD->dropAttr<UsedAttr>(); 10986 } 10987 } 10988 10989 const DeclContext *DC = VD->getDeclContext(); 10990 // If there's a #pragma GCC visibility in scope, and this isn't a class 10991 // member, set the visibility of this variable. 10992 if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible()) 10993 AddPushedVisibilityAttribute(VD); 10994 10995 // FIXME: Warn on unused templates. 10996 if (VD->isFileVarDecl() && !VD->getDescribedVarTemplate() && 10997 !isa<VarTemplatePartialSpecializationDecl>(VD)) 10998 MarkUnusedFileScopedDecl(VD); 10999 11000 // Now we have parsed the initializer and can update the table of magic 11001 // tag values. 11002 if (!VD->hasAttr<TypeTagForDatatypeAttr>() || 11003 !VD->getType()->isIntegralOrEnumerationType()) 11004 return; 11005 11006 for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) { 11007 const Expr *MagicValueExpr = VD->getInit(); 11008 if (!MagicValueExpr) { 11009 continue; 11010 } 11011 llvm::APSInt MagicValueInt; 11012 if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) { 11013 Diag(I->getRange().getBegin(), 11014 diag::err_type_tag_for_datatype_not_ice) 11015 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 11016 continue; 11017 } 11018 if (MagicValueInt.getActiveBits() > 64) { 11019 Diag(I->getRange().getBegin(), 11020 diag::err_type_tag_for_datatype_too_large) 11021 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 11022 continue; 11023 } 11024 uint64_t MagicValue = MagicValueInt.getZExtValue(); 11025 RegisterTypeTagForDatatype(I->getArgumentKind(), 11026 MagicValue, 11027 I->getMatchingCType(), 11028 I->getLayoutCompatible(), 11029 I->getMustBeNull()); 11030 } 11031 } 11032 11033 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS, 11034 ArrayRef<Decl *> Group) { 11035 SmallVector<Decl*, 8> Decls; 11036 11037 if (DS.isTypeSpecOwned()) 11038 Decls.push_back(DS.getRepAsDecl()); 11039 11040 DeclaratorDecl *FirstDeclaratorInGroup = nullptr; 11041 DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr; 11042 bool DiagnosedMultipleDecomps = false; 11043 11044 for (unsigned i = 0, e = Group.size(); i != e; ++i) { 11045 if (Decl *D = Group[i]) { 11046 auto *DD = dyn_cast<DeclaratorDecl>(D); 11047 if (DD && !FirstDeclaratorInGroup) 11048 FirstDeclaratorInGroup = DD; 11049 11050 auto *Decomp = dyn_cast<DecompositionDecl>(D); 11051 if (Decomp && !FirstDecompDeclaratorInGroup) 11052 FirstDecompDeclaratorInGroup = Decomp; 11053 11054 // A decomposition declaration cannot be combined with any other 11055 // declaration in the same group. 11056 auto *OtherDD = FirstDeclaratorInGroup; 11057 if (OtherDD == FirstDecompDeclaratorInGroup) 11058 OtherDD = DD; 11059 if (OtherDD && FirstDecompDeclaratorInGroup && 11060 OtherDD != FirstDecompDeclaratorInGroup && 11061 !DiagnosedMultipleDecomps) { 11062 Diag(FirstDecompDeclaratorInGroup->getLocation(), 11063 diag::err_decomp_decl_not_alone) 11064 << OtherDD->getSourceRange(); 11065 DiagnosedMultipleDecomps = true; 11066 } 11067 11068 Decls.push_back(D); 11069 } 11070 } 11071 11072 if (DeclSpec::isDeclRep(DS.getTypeSpecType())) { 11073 if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) { 11074 handleTagNumbering(Tag, S); 11075 if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() && 11076 getLangOpts().CPlusPlus) 11077 Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup); 11078 } 11079 } 11080 11081 return BuildDeclaratorGroup(Decls, DS.containsPlaceholderType()); 11082 } 11083 11084 /// BuildDeclaratorGroup - convert a list of declarations into a declaration 11085 /// group, performing any necessary semantic checking. 11086 Sema::DeclGroupPtrTy 11087 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group, 11088 bool TypeMayContainAuto) { 11089 // C++0x [dcl.spec.auto]p7: 11090 // If the type deduced for the template parameter U is not the same in each 11091 // deduction, the program is ill-formed. 11092 // FIXME: When initializer-list support is added, a distinction is needed 11093 // between the deduced type U and the deduced type which 'auto' stands for. 11094 // auto a = 0, b = { 1, 2, 3 }; 11095 // is legal because the deduced type U is 'int' in both cases. 11096 if (TypeMayContainAuto && Group.size() > 1) { 11097 QualType Deduced; 11098 CanQualType DeducedCanon; 11099 VarDecl *DeducedDecl = nullptr; 11100 for (unsigned i = 0, e = Group.size(); i != e; ++i) { 11101 if (VarDecl *D = dyn_cast<VarDecl>(Group[i])) { 11102 AutoType *AT = D->getType()->getContainedAutoType(); 11103 // Don't reissue diagnostics when instantiating a template. 11104 if (AT && D->isInvalidDecl()) 11105 break; 11106 QualType U = AT ? AT->getDeducedType() : QualType(); 11107 if (!U.isNull()) { 11108 CanQualType UCanon = Context.getCanonicalType(U); 11109 if (Deduced.isNull()) { 11110 Deduced = U; 11111 DeducedCanon = UCanon; 11112 DeducedDecl = D; 11113 } else if (DeducedCanon != UCanon) { 11114 Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(), 11115 diag::err_auto_different_deductions) 11116 << (unsigned)AT->getKeyword() 11117 << Deduced << DeducedDecl->getDeclName() 11118 << U << D->getDeclName() 11119 << DeducedDecl->getInit()->getSourceRange() 11120 << D->getInit()->getSourceRange(); 11121 D->setInvalidDecl(); 11122 break; 11123 } 11124 } 11125 } 11126 } 11127 } 11128 11129 ActOnDocumentableDecls(Group); 11130 11131 return DeclGroupPtrTy::make( 11132 DeclGroupRef::Create(Context, Group.data(), Group.size())); 11133 } 11134 11135 void Sema::ActOnDocumentableDecl(Decl *D) { 11136 ActOnDocumentableDecls(D); 11137 } 11138 11139 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) { 11140 // Don't parse the comment if Doxygen diagnostics are ignored. 11141 if (Group.empty() || !Group[0]) 11142 return; 11143 11144 if (Diags.isIgnored(diag::warn_doc_param_not_found, 11145 Group[0]->getLocation()) && 11146 Diags.isIgnored(diag::warn_unknown_comment_command_name, 11147 Group[0]->getLocation())) 11148 return; 11149 11150 if (Group.size() >= 2) { 11151 // This is a decl group. Normally it will contain only declarations 11152 // produced from declarator list. But in case we have any definitions or 11153 // additional declaration references: 11154 // 'typedef struct S {} S;' 11155 // 'typedef struct S *S;' 11156 // 'struct S *pS;' 11157 // FinalizeDeclaratorGroup adds these as separate declarations. 11158 Decl *MaybeTagDecl = Group[0]; 11159 if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) { 11160 Group = Group.slice(1); 11161 } 11162 } 11163 11164 // See if there are any new comments that are not attached to a decl. 11165 ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments(); 11166 if (!Comments.empty() && 11167 !Comments.back()->isAttached()) { 11168 // There is at least one comment that not attached to a decl. 11169 // Maybe it should be attached to one of these decls? 11170 // 11171 // Note that this way we pick up not only comments that precede the 11172 // declaration, but also comments that *follow* the declaration -- thanks to 11173 // the lookahead in the lexer: we've consumed the semicolon and looked 11174 // ahead through comments. 11175 for (unsigned i = 0, e = Group.size(); i != e; ++i) 11176 Context.getCommentForDecl(Group[i], &PP); 11177 } 11178 } 11179 11180 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator() 11181 /// to introduce parameters into function prototype scope. 11182 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) { 11183 const DeclSpec &DS = D.getDeclSpec(); 11184 11185 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'. 11186 11187 // C++03 [dcl.stc]p2 also permits 'auto'. 11188 StorageClass SC = SC_None; 11189 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) { 11190 SC = SC_Register; 11191 } else if (getLangOpts().CPlusPlus && 11192 DS.getStorageClassSpec() == DeclSpec::SCS_auto) { 11193 SC = SC_Auto; 11194 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) { 11195 Diag(DS.getStorageClassSpecLoc(), 11196 diag::err_invalid_storage_class_in_func_decl); 11197 D.getMutableDeclSpec().ClearStorageClassSpecs(); 11198 } 11199 11200 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 11201 Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread) 11202 << DeclSpec::getSpecifierName(TSCS); 11203 if (DS.isInlineSpecified()) 11204 Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function) 11205 << getLangOpts().CPlusPlus1z; 11206 if (DS.isConstexprSpecified()) 11207 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr) 11208 << 0; 11209 if (DS.isConceptSpecified()) 11210 Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind); 11211 11212 DiagnoseFunctionSpecifiers(DS); 11213 11214 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 11215 QualType parmDeclType = TInfo->getType(); 11216 11217 if (getLangOpts().CPlusPlus) { 11218 // Check that there are no default arguments inside the type of this 11219 // parameter. 11220 CheckExtraCXXDefaultArguments(D); 11221 11222 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1). 11223 if (D.getCXXScopeSpec().isSet()) { 11224 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator) 11225 << D.getCXXScopeSpec().getRange(); 11226 D.getCXXScopeSpec().clear(); 11227 } 11228 } 11229 11230 // Ensure we have a valid name 11231 IdentifierInfo *II = nullptr; 11232 if (D.hasName()) { 11233 II = D.getIdentifier(); 11234 if (!II) { 11235 Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name) 11236 << GetNameForDeclarator(D).getName(); 11237 D.setInvalidType(true); 11238 } 11239 } 11240 11241 // Check for redeclaration of parameters, e.g. int foo(int x, int x); 11242 if (II) { 11243 LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName, 11244 ForRedeclaration); 11245 LookupName(R, S); 11246 if (R.isSingleResult()) { 11247 NamedDecl *PrevDecl = R.getFoundDecl(); 11248 if (PrevDecl->isTemplateParameter()) { 11249 // Maybe we will complain about the shadowed template parameter. 11250 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 11251 // Just pretend that we didn't see the previous declaration. 11252 PrevDecl = nullptr; 11253 } else if (S->isDeclScope(PrevDecl)) { 11254 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II; 11255 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 11256 11257 // Recover by removing the name 11258 II = nullptr; 11259 D.SetIdentifier(nullptr, D.getIdentifierLoc()); 11260 D.setInvalidType(true); 11261 } 11262 } 11263 } 11264 11265 // Temporarily put parameter variables in the translation unit, not 11266 // the enclosing context. This prevents them from accidentally 11267 // looking like class members in C++. 11268 ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(), 11269 D.getLocStart(), 11270 D.getIdentifierLoc(), II, 11271 parmDeclType, TInfo, 11272 SC); 11273 11274 if (D.isInvalidType()) 11275 New->setInvalidDecl(); 11276 11277 assert(S->isFunctionPrototypeScope()); 11278 assert(S->getFunctionPrototypeDepth() >= 1); 11279 New->setScopeInfo(S->getFunctionPrototypeDepth() - 1, 11280 S->getNextFunctionPrototypeIndex()); 11281 11282 // Add the parameter declaration into this scope. 11283 S->AddDecl(New); 11284 if (II) 11285 IdResolver.AddDecl(New); 11286 11287 ProcessDeclAttributes(S, New, D); 11288 11289 if (D.getDeclSpec().isModulePrivateSpecified()) 11290 Diag(New->getLocation(), diag::err_module_private_local) 11291 << 1 << New->getDeclName() 11292 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 11293 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 11294 11295 if (New->hasAttr<BlocksAttr>()) { 11296 Diag(New->getLocation(), diag::err_block_on_nonlocal); 11297 } 11298 return New; 11299 } 11300 11301 /// \brief Synthesizes a variable for a parameter arising from a 11302 /// typedef. 11303 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC, 11304 SourceLocation Loc, 11305 QualType T) { 11306 /* FIXME: setting StartLoc == Loc. 11307 Would it be worth to modify callers so as to provide proper source 11308 location for the unnamed parameters, embedding the parameter's type? */ 11309 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr, 11310 T, Context.getTrivialTypeSourceInfo(T, Loc), 11311 SC_None, nullptr); 11312 Param->setImplicit(); 11313 return Param; 11314 } 11315 11316 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) { 11317 // Don't diagnose unused-parameter errors in template instantiations; we 11318 // will already have done so in the template itself. 11319 if (!ActiveTemplateInstantiations.empty()) 11320 return; 11321 11322 for (const ParmVarDecl *Parameter : Parameters) { 11323 if (!Parameter->isReferenced() && Parameter->getDeclName() && 11324 !Parameter->hasAttr<UnusedAttr>()) { 11325 Diag(Parameter->getLocation(), diag::warn_unused_parameter) 11326 << Parameter->getDeclName(); 11327 } 11328 } 11329 } 11330 11331 void Sema::DiagnoseSizeOfParametersAndReturnValue( 11332 ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) { 11333 if (LangOpts.NumLargeByValueCopy == 0) // No check. 11334 return; 11335 11336 // Warn if the return value is pass-by-value and larger than the specified 11337 // threshold. 11338 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) { 11339 unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity(); 11340 if (Size > LangOpts.NumLargeByValueCopy) 11341 Diag(D->getLocation(), diag::warn_return_value_size) 11342 << D->getDeclName() << Size; 11343 } 11344 11345 // Warn if any parameter is pass-by-value and larger than the specified 11346 // threshold. 11347 for (const ParmVarDecl *Parameter : Parameters) { 11348 QualType T = Parameter->getType(); 11349 if (T->isDependentType() || !T.isPODType(Context)) 11350 continue; 11351 unsigned Size = Context.getTypeSizeInChars(T).getQuantity(); 11352 if (Size > LangOpts.NumLargeByValueCopy) 11353 Diag(Parameter->getLocation(), diag::warn_parameter_size) 11354 << Parameter->getDeclName() << Size; 11355 } 11356 } 11357 11358 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc, 11359 SourceLocation NameLoc, IdentifierInfo *Name, 11360 QualType T, TypeSourceInfo *TSInfo, 11361 StorageClass SC) { 11362 // In ARC, infer a lifetime qualifier for appropriate parameter types. 11363 if (getLangOpts().ObjCAutoRefCount && 11364 T.getObjCLifetime() == Qualifiers::OCL_None && 11365 T->isObjCLifetimeType()) { 11366 11367 Qualifiers::ObjCLifetime lifetime; 11368 11369 // Special cases for arrays: 11370 // - if it's const, use __unsafe_unretained 11371 // - otherwise, it's an error 11372 if (T->isArrayType()) { 11373 if (!T.isConstQualified()) { 11374 DelayedDiagnostics.add( 11375 sema::DelayedDiagnostic::makeForbiddenType( 11376 NameLoc, diag::err_arc_array_param_no_ownership, T, false)); 11377 } 11378 lifetime = Qualifiers::OCL_ExplicitNone; 11379 } else { 11380 lifetime = T->getObjCARCImplicitLifetime(); 11381 } 11382 T = Context.getLifetimeQualifiedType(T, lifetime); 11383 } 11384 11385 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, 11386 Context.getAdjustedParameterType(T), 11387 TSInfo, SC, nullptr); 11388 11389 // Parameters can not be abstract class types. 11390 // For record types, this is done by the AbstractClassUsageDiagnoser once 11391 // the class has been completely parsed. 11392 if (!CurContext->isRecord() && 11393 RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl, 11394 AbstractParamType)) 11395 New->setInvalidDecl(); 11396 11397 // Parameter declarators cannot be interface types. All ObjC objects are 11398 // passed by reference. 11399 if (T->isObjCObjectType()) { 11400 SourceLocation TypeEndLoc = 11401 getLocForEndOfToken(TSInfo->getTypeLoc().getLocEnd()); 11402 Diag(NameLoc, 11403 diag::err_object_cannot_be_passed_returned_by_value) << 1 << T 11404 << FixItHint::CreateInsertion(TypeEndLoc, "*"); 11405 T = Context.getObjCObjectPointerType(T); 11406 New->setType(T); 11407 } 11408 11409 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage 11410 // duration shall not be qualified by an address-space qualifier." 11411 // Since all parameters have automatic store duration, they can not have 11412 // an address space. 11413 if (T.getAddressSpace() != 0) { 11414 // OpenCL allows function arguments declared to be an array of a type 11415 // to be qualified with an address space. 11416 if (!(getLangOpts().OpenCL && T->isArrayType())) { 11417 Diag(NameLoc, diag::err_arg_with_address_space); 11418 New->setInvalidDecl(); 11419 } 11420 } 11421 11422 return New; 11423 } 11424 11425 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D, 11426 SourceLocation LocAfterDecls) { 11427 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 11428 11429 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared' 11430 // for a K&R function. 11431 if (!FTI.hasPrototype) { 11432 for (int i = FTI.NumParams; i != 0; /* decrement in loop */) { 11433 --i; 11434 if (FTI.Params[i].Param == nullptr) { 11435 SmallString<256> Code; 11436 llvm::raw_svector_ostream(Code) 11437 << " int " << FTI.Params[i].Ident->getName() << ";\n"; 11438 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared) 11439 << FTI.Params[i].Ident 11440 << FixItHint::CreateInsertion(LocAfterDecls, Code); 11441 11442 // Implicitly declare the argument as type 'int' for lack of a better 11443 // type. 11444 AttributeFactory attrs; 11445 DeclSpec DS(attrs); 11446 const char* PrevSpec; // unused 11447 unsigned DiagID; // unused 11448 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec, 11449 DiagID, Context.getPrintingPolicy()); 11450 // Use the identifier location for the type source range. 11451 DS.SetRangeStart(FTI.Params[i].IdentLoc); 11452 DS.SetRangeEnd(FTI.Params[i].IdentLoc); 11453 Declarator ParamD(DS, Declarator::KNRTypeListContext); 11454 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); 11455 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); 11456 } 11457 } 11458 } 11459 } 11460 11461 Decl * 11462 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D, 11463 MultiTemplateParamsArg TemplateParameterLists, 11464 SkipBodyInfo *SkipBody) { 11465 assert(getCurFunctionDecl() == nullptr && "Function parsing confused"); 11466 assert(D.isFunctionDeclarator() && "Not a function declarator!"); 11467 Scope *ParentScope = FnBodyScope->getParent(); 11468 11469 D.setFunctionDefinitionKind(FDK_Definition); 11470 Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists); 11471 return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody); 11472 } 11473 11474 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) { 11475 Consumer.HandleInlineFunctionDefinition(D); 11476 } 11477 11478 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD, 11479 const FunctionDecl*& PossibleZeroParamPrototype) { 11480 // Don't warn about invalid declarations. 11481 if (FD->isInvalidDecl()) 11482 return false; 11483 11484 // Or declarations that aren't global. 11485 if (!FD->isGlobal()) 11486 return false; 11487 11488 // Don't warn about C++ member functions. 11489 if (isa<CXXMethodDecl>(FD)) 11490 return false; 11491 11492 // Don't warn about 'main'. 11493 if (FD->isMain()) 11494 return false; 11495 11496 // Don't warn about inline functions. 11497 if (FD->isInlined()) 11498 return false; 11499 11500 // Don't warn about function templates. 11501 if (FD->getDescribedFunctionTemplate()) 11502 return false; 11503 11504 // Don't warn about function template specializations. 11505 if (FD->isFunctionTemplateSpecialization()) 11506 return false; 11507 11508 // Don't warn for OpenCL kernels. 11509 if (FD->hasAttr<OpenCLKernelAttr>()) 11510 return false; 11511 11512 // Don't warn on explicitly deleted functions. 11513 if (FD->isDeleted()) 11514 return false; 11515 11516 bool MissingPrototype = true; 11517 for (const FunctionDecl *Prev = FD->getPreviousDecl(); 11518 Prev; Prev = Prev->getPreviousDecl()) { 11519 // Ignore any declarations that occur in function or method 11520 // scope, because they aren't visible from the header. 11521 if (Prev->getLexicalDeclContext()->isFunctionOrMethod()) 11522 continue; 11523 11524 MissingPrototype = !Prev->getType()->isFunctionProtoType(); 11525 if (FD->getNumParams() == 0) 11526 PossibleZeroParamPrototype = Prev; 11527 break; 11528 } 11529 11530 return MissingPrototype; 11531 } 11532 11533 void 11534 Sema::CheckForFunctionRedefinition(FunctionDecl *FD, 11535 const FunctionDecl *EffectiveDefinition, 11536 SkipBodyInfo *SkipBody) { 11537 // Don't complain if we're in GNU89 mode and the previous definition 11538 // was an extern inline function. 11539 const FunctionDecl *Definition = EffectiveDefinition; 11540 if (!Definition) 11541 if (!FD->isDefined(Definition)) 11542 return; 11543 11544 if (canRedefineFunction(Definition, getLangOpts())) 11545 return; 11546 11547 // If we don't have a visible definition of the function, and it's inline or 11548 // a template, skip the new definition. 11549 if (SkipBody && !hasVisibleDefinition(Definition) && 11550 (Definition->getFormalLinkage() == InternalLinkage || 11551 Definition->isInlined() || 11552 Definition->getDescribedFunctionTemplate() || 11553 Definition->getNumTemplateParameterLists())) { 11554 SkipBody->ShouldSkip = true; 11555 if (auto *TD = Definition->getDescribedFunctionTemplate()) 11556 makeMergedDefinitionVisible(TD, FD->getLocation()); 11557 makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition), 11558 FD->getLocation()); 11559 return; 11560 } 11561 11562 if (getLangOpts().GNUMode && Definition->isInlineSpecified() && 11563 Definition->getStorageClass() == SC_Extern) 11564 Diag(FD->getLocation(), diag::err_redefinition_extern_inline) 11565 << FD->getDeclName() << getLangOpts().CPlusPlus; 11566 else 11567 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName(); 11568 11569 Diag(Definition->getLocation(), diag::note_previous_definition); 11570 FD->setInvalidDecl(); 11571 } 11572 11573 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator, 11574 Sema &S) { 11575 CXXRecordDecl *const LambdaClass = CallOperator->getParent(); 11576 11577 LambdaScopeInfo *LSI = S.PushLambdaScope(); 11578 LSI->CallOperator = CallOperator; 11579 LSI->Lambda = LambdaClass; 11580 LSI->ReturnType = CallOperator->getReturnType(); 11581 const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault(); 11582 11583 if (LCD == LCD_None) 11584 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None; 11585 else if (LCD == LCD_ByCopy) 11586 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval; 11587 else if (LCD == LCD_ByRef) 11588 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref; 11589 DeclarationNameInfo DNI = CallOperator->getNameInfo(); 11590 11591 LSI->IntroducerRange = DNI.getCXXOperatorNameRange(); 11592 LSI->Mutable = !CallOperator->isConst(); 11593 11594 // Add the captures to the LSI so they can be noted as already 11595 // captured within tryCaptureVar. 11596 auto I = LambdaClass->field_begin(); 11597 for (const auto &C : LambdaClass->captures()) { 11598 if (C.capturesVariable()) { 11599 VarDecl *VD = C.getCapturedVar(); 11600 if (VD->isInitCapture()) 11601 S.CurrentInstantiationScope->InstantiatedLocal(VD, VD); 11602 QualType CaptureType = VD->getType(); 11603 const bool ByRef = C.getCaptureKind() == LCK_ByRef; 11604 LSI->addCapture(VD, /*IsBlock*/false, ByRef, 11605 /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(), 11606 /*EllipsisLoc*/C.isPackExpansion() 11607 ? C.getEllipsisLoc() : SourceLocation(), 11608 CaptureType, /*Expr*/ nullptr); 11609 11610 } else if (C.capturesThis()) { 11611 LSI->addThisCapture(/*Nested*/ false, C.getLocation(), 11612 /*Expr*/ nullptr, 11613 C.getCaptureKind() == LCK_StarThis); 11614 } else { 11615 LSI->addVLATypeCapture(C.getLocation(), I->getType()); 11616 } 11617 ++I; 11618 } 11619 } 11620 11621 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, 11622 SkipBodyInfo *SkipBody) { 11623 // Clear the last template instantiation error context. 11624 LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation(); 11625 11626 if (!D) 11627 return D; 11628 FunctionDecl *FD = nullptr; 11629 11630 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) 11631 FD = FunTmpl->getTemplatedDecl(); 11632 else 11633 FD = cast<FunctionDecl>(D); 11634 11635 // See if this is a redefinition. 11636 if (!FD->isLateTemplateParsed()) { 11637 CheckForFunctionRedefinition(FD, nullptr, SkipBody); 11638 11639 // If we're skipping the body, we're done. Don't enter the scope. 11640 if (SkipBody && SkipBody->ShouldSkip) 11641 return D; 11642 } 11643 11644 // Mark this function as "will have a body eventually". This lets users to 11645 // call e.g. isInlineDefinitionExternallyVisible while we're still parsing 11646 // this function. 11647 FD->setWillHaveBody(); 11648 11649 // If we are instantiating a generic lambda call operator, push 11650 // a LambdaScopeInfo onto the function stack. But use the information 11651 // that's already been calculated (ActOnLambdaExpr) to prime the current 11652 // LambdaScopeInfo. 11653 // When the template operator is being specialized, the LambdaScopeInfo, 11654 // has to be properly restored so that tryCaptureVariable doesn't try 11655 // and capture any new variables. In addition when calculating potential 11656 // captures during transformation of nested lambdas, it is necessary to 11657 // have the LSI properly restored. 11658 if (isGenericLambdaCallOperatorSpecialization(FD)) { 11659 assert(ActiveTemplateInstantiations.size() && 11660 "There should be an active template instantiation on the stack " 11661 "when instantiating a generic lambda!"); 11662 RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this); 11663 } 11664 else 11665 // Enter a new function scope 11666 PushFunctionScope(); 11667 11668 // Builtin functions cannot be defined. 11669 if (unsigned BuiltinID = FD->getBuiltinID()) { 11670 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) && 11671 !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) { 11672 Diag(FD->getLocation(), diag::err_builtin_definition) << FD; 11673 FD->setInvalidDecl(); 11674 } 11675 } 11676 11677 // The return type of a function definition must be complete 11678 // (C99 6.9.1p3, C++ [dcl.fct]p6). 11679 QualType ResultType = FD->getReturnType(); 11680 if (!ResultType->isDependentType() && !ResultType->isVoidType() && 11681 !FD->isInvalidDecl() && 11682 RequireCompleteType(FD->getLocation(), ResultType, 11683 diag::err_func_def_incomplete_result)) 11684 FD->setInvalidDecl(); 11685 11686 if (FnBodyScope) 11687 PushDeclContext(FnBodyScope, FD); 11688 11689 // Check the validity of our function parameters 11690 CheckParmsForFunctionDef(FD->parameters(), 11691 /*CheckParameterNames=*/true); 11692 11693 // Add non-parameter declarations already in the function to the current 11694 // scope. 11695 if (FnBodyScope) { 11696 for (Decl *NPD : FD->decls()) { 11697 auto *NonParmDecl = dyn_cast<NamedDecl>(NPD); 11698 if (!NonParmDecl) 11699 continue; 11700 assert(!isa<ParmVarDecl>(NonParmDecl) && 11701 "parameters should not be in newly created FD yet"); 11702 11703 // If the decl has a name, make it accessible in the current scope. 11704 if (NonParmDecl->getDeclName()) 11705 PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false); 11706 11707 // Similarly, dive into enums and fish their constants out, making them 11708 // accessible in this scope. 11709 if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) { 11710 for (auto *EI : ED->enumerators()) 11711 PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false); 11712 } 11713 } 11714 } 11715 11716 // Introduce our parameters into the function scope 11717 for (auto Param : FD->parameters()) { 11718 Param->setOwningFunction(FD); 11719 11720 // If this has an identifier, add it to the scope stack. 11721 if (Param->getIdentifier() && FnBodyScope) { 11722 CheckShadow(FnBodyScope, Param); 11723 11724 PushOnScopeChains(Param, FnBodyScope); 11725 } 11726 } 11727 11728 // Ensure that the function's exception specification is instantiated. 11729 if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>()) 11730 ResolveExceptionSpec(D->getLocation(), FPT); 11731 11732 // dllimport cannot be applied to non-inline function definitions. 11733 if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() && 11734 !FD->isTemplateInstantiation()) { 11735 assert(!FD->hasAttr<DLLExportAttr>()); 11736 Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition); 11737 FD->setInvalidDecl(); 11738 return D; 11739 } 11740 // We want to attach documentation to original Decl (which might be 11741 // a function template). 11742 ActOnDocumentableDecl(D); 11743 if (getCurLexicalContext()->isObjCContainer() && 11744 getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl && 11745 getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation) 11746 Diag(FD->getLocation(), diag::warn_function_def_in_objc_container); 11747 11748 return D; 11749 } 11750 11751 /// \brief Given the set of return statements within a function body, 11752 /// compute the variables that are subject to the named return value 11753 /// optimization. 11754 /// 11755 /// Each of the variables that is subject to the named return value 11756 /// optimization will be marked as NRVO variables in the AST, and any 11757 /// return statement that has a marked NRVO variable as its NRVO candidate can 11758 /// use the named return value optimization. 11759 /// 11760 /// This function applies a very simplistic algorithm for NRVO: if every return 11761 /// statement in the scope of a variable has the same NRVO candidate, that 11762 /// candidate is an NRVO variable. 11763 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) { 11764 ReturnStmt **Returns = Scope->Returns.data(); 11765 11766 for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) { 11767 if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) { 11768 if (!NRVOCandidate->isNRVOVariable()) 11769 Returns[I]->setNRVOCandidate(nullptr); 11770 } 11771 } 11772 } 11773 11774 bool Sema::canDelayFunctionBody(const Declarator &D) { 11775 // We can't delay parsing the body of a constexpr function template (yet). 11776 if (D.getDeclSpec().isConstexprSpecified()) 11777 return false; 11778 11779 // We can't delay parsing the body of a function template with a deduced 11780 // return type (yet). 11781 if (D.getDeclSpec().containsPlaceholderType()) { 11782 // If the placeholder introduces a non-deduced trailing return type, 11783 // we can still delay parsing it. 11784 if (D.getNumTypeObjects()) { 11785 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1); 11786 if (Outer.Kind == DeclaratorChunk::Function && 11787 Outer.Fun.hasTrailingReturnType()) { 11788 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType()); 11789 return Ty.isNull() || !Ty->isUndeducedType(); 11790 } 11791 } 11792 return false; 11793 } 11794 11795 return true; 11796 } 11797 11798 bool Sema::canSkipFunctionBody(Decl *D) { 11799 // We cannot skip the body of a function (or function template) which is 11800 // constexpr, since we may need to evaluate its body in order to parse the 11801 // rest of the file. 11802 // We cannot skip the body of a function with an undeduced return type, 11803 // because any callers of that function need to know the type. 11804 if (const FunctionDecl *FD = D->getAsFunction()) 11805 if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType()) 11806 return false; 11807 return Consumer.shouldSkipFunctionBody(D); 11808 } 11809 11810 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) { 11811 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Decl)) 11812 FD->setHasSkippedBody(); 11813 else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(Decl)) 11814 MD->setHasSkippedBody(); 11815 return Decl; 11816 } 11817 11818 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) { 11819 return ActOnFinishFunctionBody(D, BodyArg, false); 11820 } 11821 11822 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body, 11823 bool IsInstantiation) { 11824 FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr; 11825 11826 sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 11827 sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr; 11828 11829 if (getLangOpts().CoroutinesTS && !getCurFunction()->CoroutineStmts.empty()) 11830 CheckCompletedCoroutineBody(FD, Body); 11831 11832 if (FD) { 11833 FD->setBody(Body); 11834 11835 if (getLangOpts().CPlusPlus14) { 11836 if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() && 11837 FD->getReturnType()->isUndeducedType()) { 11838 // If the function has a deduced result type but contains no 'return' 11839 // statements, the result type as written must be exactly 'auto', and 11840 // the deduced result type is 'void'. 11841 if (!FD->getReturnType()->getAs<AutoType>()) { 11842 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto) 11843 << FD->getReturnType(); 11844 FD->setInvalidDecl(); 11845 } else { 11846 // Substitute 'void' for the 'auto' in the type. 11847 TypeLoc ResultType = getReturnTypeLoc(FD); 11848 Context.adjustDeducedFunctionResultType( 11849 FD, SubstAutoType(ResultType.getType(), Context.VoidTy)); 11850 } 11851 } 11852 } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) { 11853 // In C++11, we don't use 'auto' deduction rules for lambda call 11854 // operators because we don't support return type deduction. 11855 auto *LSI = getCurLambda(); 11856 if (LSI->HasImplicitReturnType) { 11857 deduceClosureReturnType(*LSI); 11858 11859 // C++11 [expr.prim.lambda]p4: 11860 // [...] if there are no return statements in the compound-statement 11861 // [the deduced type is] the type void 11862 QualType RetType = 11863 LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType; 11864 11865 // Update the return type to the deduced type. 11866 const FunctionProtoType *Proto = 11867 FD->getType()->getAs<FunctionProtoType>(); 11868 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(), 11869 Proto->getExtProtoInfo())); 11870 } 11871 } 11872 11873 // The only way to be included in UndefinedButUsed is if there is an 11874 // ODR use before the definition. Avoid the expensive map lookup if this 11875 // is the first declaration. 11876 if (!FD->isFirstDecl() && FD->getPreviousDecl()->isUsed()) { 11877 if (!FD->isExternallyVisible()) 11878 UndefinedButUsed.erase(FD); 11879 else if (FD->isInlined() && 11880 !LangOpts.GNUInline && 11881 (!FD->getPreviousDecl()->hasAttr<GNUInlineAttr>())) 11882 UndefinedButUsed.erase(FD); 11883 } 11884 11885 // If the function implicitly returns zero (like 'main') or is naked, 11886 // don't complain about missing return statements. 11887 if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>()) 11888 WP.disableCheckFallThrough(); 11889 11890 // MSVC permits the use of pure specifier (=0) on function definition, 11891 // defined at class scope, warn about this non-standard construct. 11892 if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl()) 11893 Diag(FD->getLocation(), diag::ext_pure_function_definition); 11894 11895 if (!FD->isInvalidDecl()) { 11896 // Don't diagnose unused parameters of defaulted or deleted functions. 11897 if (!FD->isDeleted() && !FD->isDefaulted()) 11898 DiagnoseUnusedParameters(FD->parameters()); 11899 DiagnoseSizeOfParametersAndReturnValue(FD->parameters(), 11900 FD->getReturnType(), FD); 11901 11902 // If this is a structor, we need a vtable. 11903 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD)) 11904 MarkVTableUsed(FD->getLocation(), Constructor->getParent()); 11905 else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD)) 11906 MarkVTableUsed(FD->getLocation(), Destructor->getParent()); 11907 11908 // Try to apply the named return value optimization. We have to check 11909 // if we can do this here because lambdas keep return statements around 11910 // to deduce an implicit return type. 11911 if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() && 11912 !FD->isDependentContext()) 11913 computeNRVO(Body, getCurFunction()); 11914 } 11915 11916 // GNU warning -Wmissing-prototypes: 11917 // Warn if a global function is defined without a previous 11918 // prototype declaration. This warning is issued even if the 11919 // definition itself provides a prototype. The aim is to detect 11920 // global functions that fail to be declared in header files. 11921 const FunctionDecl *PossibleZeroParamPrototype = nullptr; 11922 if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) { 11923 Diag(FD->getLocation(), diag::warn_missing_prototype) << FD; 11924 11925 if (PossibleZeroParamPrototype) { 11926 // We found a declaration that is not a prototype, 11927 // but that could be a zero-parameter prototype 11928 if (TypeSourceInfo *TI = 11929 PossibleZeroParamPrototype->getTypeSourceInfo()) { 11930 TypeLoc TL = TI->getTypeLoc(); 11931 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>()) 11932 Diag(PossibleZeroParamPrototype->getLocation(), 11933 diag::note_declaration_not_a_prototype) 11934 << PossibleZeroParamPrototype 11935 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void"); 11936 } 11937 } 11938 11939 // GNU warning -Wstrict-prototypes 11940 // Warn if K&R function is defined without a previous declaration. 11941 // This warning is issued only if the definition itself does not provide 11942 // a prototype. Only K&R definitions do not provide a prototype. 11943 // An empty list in a function declarator that is part of a definition 11944 // of that function specifies that the function has no parameters 11945 // (C99 6.7.5.3p14) 11946 if (!FD->hasWrittenPrototype() && FD->getNumParams() > 0 && 11947 !LangOpts.CPlusPlus) { 11948 TypeSourceInfo *TI = FD->getTypeSourceInfo(); 11949 TypeLoc TL = TI->getTypeLoc(); 11950 FunctionTypeLoc FTL = TL.castAs<FunctionTypeLoc>(); 11951 Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 1; 11952 } 11953 } 11954 11955 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 11956 const CXXMethodDecl *KeyFunction; 11957 if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) && 11958 MD->isVirtual() && 11959 (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) && 11960 MD == KeyFunction->getCanonicalDecl()) { 11961 // Update the key-function state if necessary for this ABI. 11962 if (FD->isInlined() && 11963 !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) { 11964 Context.setNonKeyFunction(MD); 11965 11966 // If the newly-chosen key function is already defined, then we 11967 // need to mark the vtable as used retroactively. 11968 KeyFunction = Context.getCurrentKeyFunction(MD->getParent()); 11969 const FunctionDecl *Definition; 11970 if (KeyFunction && KeyFunction->isDefined(Definition)) 11971 MarkVTableUsed(Definition->getLocation(), MD->getParent(), true); 11972 } else { 11973 // We just defined they key function; mark the vtable as used. 11974 MarkVTableUsed(FD->getLocation(), MD->getParent(), true); 11975 } 11976 } 11977 } 11978 11979 assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) && 11980 "Function parsing confused"); 11981 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { 11982 assert(MD == getCurMethodDecl() && "Method parsing confused"); 11983 MD->setBody(Body); 11984 if (!MD->isInvalidDecl()) { 11985 DiagnoseUnusedParameters(MD->parameters()); 11986 DiagnoseSizeOfParametersAndReturnValue(MD->parameters(), 11987 MD->getReturnType(), MD); 11988 11989 if (Body) 11990 computeNRVO(Body, getCurFunction()); 11991 } 11992 if (getCurFunction()->ObjCShouldCallSuper) { 11993 Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call) 11994 << MD->getSelector().getAsString(); 11995 getCurFunction()->ObjCShouldCallSuper = false; 11996 } 11997 if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) { 11998 const ObjCMethodDecl *InitMethod = nullptr; 11999 bool isDesignated = 12000 MD->isDesignatedInitializerForTheInterface(&InitMethod); 12001 assert(isDesignated && InitMethod); 12002 (void)isDesignated; 12003 12004 auto superIsNSObject = [&](const ObjCMethodDecl *MD) { 12005 auto IFace = MD->getClassInterface(); 12006 if (!IFace) 12007 return false; 12008 auto SuperD = IFace->getSuperClass(); 12009 if (!SuperD) 12010 return false; 12011 return SuperD->getIdentifier() == 12012 NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject); 12013 }; 12014 // Don't issue this warning for unavailable inits or direct subclasses 12015 // of NSObject. 12016 if (!MD->isUnavailable() && !superIsNSObject(MD)) { 12017 Diag(MD->getLocation(), 12018 diag::warn_objc_designated_init_missing_super_call); 12019 Diag(InitMethod->getLocation(), 12020 diag::note_objc_designated_init_marked_here); 12021 } 12022 getCurFunction()->ObjCWarnForNoDesignatedInitChain = false; 12023 } 12024 if (getCurFunction()->ObjCWarnForNoInitDelegation) { 12025 // Don't issue this warning for unavaialable inits. 12026 if (!MD->isUnavailable()) 12027 Diag(MD->getLocation(), 12028 diag::warn_objc_secondary_init_missing_init_call); 12029 getCurFunction()->ObjCWarnForNoInitDelegation = false; 12030 } 12031 } else { 12032 return nullptr; 12033 } 12034 12035 if (Body && getCurFunction()->HasPotentialAvailabilityViolations) 12036 DiagnoseUnguardedAvailabilityViolations(dcl); 12037 12038 assert(!getCurFunction()->ObjCShouldCallSuper && 12039 "This should only be set for ObjC methods, which should have been " 12040 "handled in the block above."); 12041 12042 // Verify and clean out per-function state. 12043 if (Body && (!FD || !FD->isDefaulted())) { 12044 // C++ constructors that have function-try-blocks can't have return 12045 // statements in the handlers of that block. (C++ [except.handle]p14) 12046 // Verify this. 12047 if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body)) 12048 DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body)); 12049 12050 // Verify that gotos and switch cases don't jump into scopes illegally. 12051 if (getCurFunction()->NeedsScopeChecking() && 12052 !PP.isCodeCompletionEnabled()) 12053 DiagnoseInvalidJumps(Body); 12054 12055 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) { 12056 if (!Destructor->getParent()->isDependentType()) 12057 CheckDestructor(Destructor); 12058 12059 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 12060 Destructor->getParent()); 12061 } 12062 12063 // If any errors have occurred, clear out any temporaries that may have 12064 // been leftover. This ensures that these temporaries won't be picked up for 12065 // deletion in some later function. 12066 if (getDiagnostics().hasErrorOccurred() || 12067 getDiagnostics().getSuppressAllDiagnostics()) { 12068 DiscardCleanupsInEvaluationContext(); 12069 } 12070 if (!getDiagnostics().hasUncompilableErrorOccurred() && 12071 !isa<FunctionTemplateDecl>(dcl)) { 12072 // Since the body is valid, issue any analysis-based warnings that are 12073 // enabled. 12074 ActivePolicy = &WP; 12075 } 12076 12077 if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() && 12078 (!CheckConstexprFunctionDecl(FD) || 12079 !CheckConstexprFunctionBody(FD, Body))) 12080 FD->setInvalidDecl(); 12081 12082 if (FD && FD->hasAttr<NakedAttr>()) { 12083 for (const Stmt *S : Body->children()) { 12084 // Allow local register variables without initializer as they don't 12085 // require prologue. 12086 bool RegisterVariables = false; 12087 if (auto *DS = dyn_cast<DeclStmt>(S)) { 12088 for (const auto *Decl : DS->decls()) { 12089 if (const auto *Var = dyn_cast<VarDecl>(Decl)) { 12090 RegisterVariables = 12091 Var->hasAttr<AsmLabelAttr>() && !Var->hasInit(); 12092 if (!RegisterVariables) 12093 break; 12094 } 12095 } 12096 } 12097 if (RegisterVariables) 12098 continue; 12099 if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) { 12100 Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function); 12101 Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute); 12102 FD->setInvalidDecl(); 12103 break; 12104 } 12105 } 12106 } 12107 12108 assert(ExprCleanupObjects.size() == 12109 ExprEvalContexts.back().NumCleanupObjects && 12110 "Leftover temporaries in function"); 12111 assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function"); 12112 assert(MaybeODRUseExprs.empty() && 12113 "Leftover expressions for odr-use checking"); 12114 } 12115 12116 if (!IsInstantiation) 12117 PopDeclContext(); 12118 12119 PopFunctionScopeInfo(ActivePolicy, dcl); 12120 // If any errors have occurred, clear out any temporaries that may have 12121 // been leftover. This ensures that these temporaries won't be picked up for 12122 // deletion in some later function. 12123 if (getDiagnostics().hasErrorOccurred()) { 12124 DiscardCleanupsInEvaluationContext(); 12125 } 12126 12127 return dcl; 12128 } 12129 12130 /// When we finish delayed parsing of an attribute, we must attach it to the 12131 /// relevant Decl. 12132 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D, 12133 ParsedAttributes &Attrs) { 12134 // Always attach attributes to the underlying decl. 12135 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 12136 D = TD->getTemplatedDecl(); 12137 ProcessDeclAttributeList(S, D, Attrs.getList()); 12138 12139 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D)) 12140 if (Method->isStatic()) 12141 checkThisInStaticMemberFunctionAttributes(Method); 12142 } 12143 12144 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function 12145 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2). 12146 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, 12147 IdentifierInfo &II, Scope *S) { 12148 // Before we produce a declaration for an implicitly defined 12149 // function, see whether there was a locally-scoped declaration of 12150 // this name as a function or variable. If so, use that 12151 // (non-visible) declaration, and complain about it. 12152 if (NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II)) { 12153 Diag(Loc, diag::warn_use_out_of_scope_declaration) << ExternCPrev; 12154 Diag(ExternCPrev->getLocation(), diag::note_previous_declaration); 12155 return ExternCPrev; 12156 } 12157 12158 // Extension in C99. Legal in C90, but warn about it. 12159 unsigned diag_id; 12160 if (II.getName().startswith("__builtin_")) 12161 diag_id = diag::warn_builtin_unknown; 12162 else if (getLangOpts().C99) 12163 diag_id = diag::ext_implicit_function_decl; 12164 else 12165 diag_id = diag::warn_implicit_function_decl; 12166 Diag(Loc, diag_id) << &II; 12167 12168 // Because typo correction is expensive, only do it if the implicit 12169 // function declaration is going to be treated as an error. 12170 if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) { 12171 TypoCorrection Corrected; 12172 if (S && 12173 (Corrected = CorrectTypo( 12174 DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr, 12175 llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError))) 12176 diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion), 12177 /*ErrorRecovery*/false); 12178 } 12179 12180 // Set a Declarator for the implicit definition: int foo(); 12181 const char *Dummy; 12182 AttributeFactory attrFactory; 12183 DeclSpec DS(attrFactory); 12184 unsigned DiagID; 12185 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID, 12186 Context.getPrintingPolicy()); 12187 (void)Error; // Silence warning. 12188 assert(!Error && "Error setting up implicit decl!"); 12189 SourceLocation NoLoc; 12190 Declarator D(DS, Declarator::BlockContext); 12191 D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false, 12192 /*IsAmbiguous=*/false, 12193 /*LParenLoc=*/NoLoc, 12194 /*Params=*/nullptr, 12195 /*NumParams=*/0, 12196 /*EllipsisLoc=*/NoLoc, 12197 /*RParenLoc=*/NoLoc, 12198 /*TypeQuals=*/0, 12199 /*RefQualifierIsLvalueRef=*/true, 12200 /*RefQualifierLoc=*/NoLoc, 12201 /*ConstQualifierLoc=*/NoLoc, 12202 /*VolatileQualifierLoc=*/NoLoc, 12203 /*RestrictQualifierLoc=*/NoLoc, 12204 /*MutableLoc=*/NoLoc, 12205 EST_None, 12206 /*ESpecRange=*/SourceRange(), 12207 /*Exceptions=*/nullptr, 12208 /*ExceptionRanges=*/nullptr, 12209 /*NumExceptions=*/0, 12210 /*NoexceptExpr=*/nullptr, 12211 /*ExceptionSpecTokens=*/nullptr, 12212 /*DeclsInPrototype=*/None, 12213 Loc, Loc, D), 12214 DS.getAttributes(), 12215 SourceLocation()); 12216 D.SetIdentifier(&II, Loc); 12217 12218 // Insert this function into translation-unit scope. 12219 12220 DeclContext *PrevDC = CurContext; 12221 CurContext = Context.getTranslationUnitDecl(); 12222 12223 FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(TUScope, D)); 12224 FD->setImplicit(); 12225 12226 CurContext = PrevDC; 12227 12228 AddKnownFunctionAttributes(FD); 12229 12230 return FD; 12231 } 12232 12233 /// \brief Adds any function attributes that we know a priori based on 12234 /// the declaration of this function. 12235 /// 12236 /// These attributes can apply both to implicitly-declared builtins 12237 /// (like __builtin___printf_chk) or to library-declared functions 12238 /// like NSLog or printf. 12239 /// 12240 /// We need to check for duplicate attributes both here and where user-written 12241 /// attributes are applied to declarations. 12242 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) { 12243 if (FD->isInvalidDecl()) 12244 return; 12245 12246 // If this is a built-in function, map its builtin attributes to 12247 // actual attributes. 12248 if (unsigned BuiltinID = FD->getBuiltinID()) { 12249 // Handle printf-formatting attributes. 12250 unsigned FormatIdx; 12251 bool HasVAListArg; 12252 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { 12253 if (!FD->hasAttr<FormatAttr>()) { 12254 const char *fmt = "printf"; 12255 unsigned int NumParams = FD->getNumParams(); 12256 if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf) 12257 FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType()) 12258 fmt = "NSString"; 12259 FD->addAttr(FormatAttr::CreateImplicit(Context, 12260 &Context.Idents.get(fmt), 12261 FormatIdx+1, 12262 HasVAListArg ? 0 : FormatIdx+2, 12263 FD->getLocation())); 12264 } 12265 } 12266 if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx, 12267 HasVAListArg)) { 12268 if (!FD->hasAttr<FormatAttr>()) 12269 FD->addAttr(FormatAttr::CreateImplicit(Context, 12270 &Context.Idents.get("scanf"), 12271 FormatIdx+1, 12272 HasVAListArg ? 0 : FormatIdx+2, 12273 FD->getLocation())); 12274 } 12275 12276 // Mark const if we don't care about errno and that is the only 12277 // thing preventing the function from being const. This allows 12278 // IRgen to use LLVM intrinsics for such functions. 12279 if (!getLangOpts().MathErrno && 12280 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) { 12281 if (!FD->hasAttr<ConstAttr>()) 12282 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 12283 } 12284 12285 if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) && 12286 !FD->hasAttr<ReturnsTwiceAttr>()) 12287 FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context, 12288 FD->getLocation())); 12289 if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>()) 12290 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation())); 12291 if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>()) 12292 FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation())); 12293 if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>()) 12294 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 12295 if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) && 12296 !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) { 12297 // Add the appropriate attribute, depending on the CUDA compilation mode 12298 // and which target the builtin belongs to. For example, during host 12299 // compilation, aux builtins are __device__, while the rest are __host__. 12300 if (getLangOpts().CUDAIsDevice != 12301 Context.BuiltinInfo.isAuxBuiltinID(BuiltinID)) 12302 FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation())); 12303 else 12304 FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation())); 12305 } 12306 } 12307 12308 // If C++ exceptions are enabled but we are told extern "C" functions cannot 12309 // throw, add an implicit nothrow attribute to any extern "C" function we come 12310 // across. 12311 if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind && 12312 FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) { 12313 const auto *FPT = FD->getType()->getAs<FunctionProtoType>(); 12314 if (!FPT || FPT->getExceptionSpecType() == EST_None) 12315 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation())); 12316 } 12317 12318 IdentifierInfo *Name = FD->getIdentifier(); 12319 if (!Name) 12320 return; 12321 if ((!getLangOpts().CPlusPlus && 12322 FD->getDeclContext()->isTranslationUnit()) || 12323 (isa<LinkageSpecDecl>(FD->getDeclContext()) && 12324 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() == 12325 LinkageSpecDecl::lang_c)) { 12326 // Okay: this could be a libc/libm/Objective-C function we know 12327 // about. 12328 } else 12329 return; 12330 12331 if (Name->isStr("asprintf") || Name->isStr("vasprintf")) { 12332 // FIXME: asprintf and vasprintf aren't C99 functions. Should they be 12333 // target-specific builtins, perhaps? 12334 if (!FD->hasAttr<FormatAttr>()) 12335 FD->addAttr(FormatAttr::CreateImplicit(Context, 12336 &Context.Idents.get("printf"), 2, 12337 Name->isStr("vasprintf") ? 0 : 3, 12338 FD->getLocation())); 12339 } 12340 12341 if (Name->isStr("__CFStringMakeConstantString")) { 12342 // We already have a __builtin___CFStringMakeConstantString, 12343 // but builds that use -fno-constant-cfstrings don't go through that. 12344 if (!FD->hasAttr<FormatArgAttr>()) 12345 FD->addAttr(FormatArgAttr::CreateImplicit(Context, 1, 12346 FD->getLocation())); 12347 } 12348 } 12349 12350 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T, 12351 TypeSourceInfo *TInfo) { 12352 assert(D.getIdentifier() && "Wrong callback for declspec without declarator"); 12353 assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); 12354 12355 if (!TInfo) { 12356 assert(D.isInvalidType() && "no declarator info for valid type"); 12357 TInfo = Context.getTrivialTypeSourceInfo(T); 12358 } 12359 12360 // Scope manipulation handled by caller. 12361 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext, 12362 D.getLocStart(), 12363 D.getIdentifierLoc(), 12364 D.getIdentifier(), 12365 TInfo); 12366 12367 // Bail out immediately if we have an invalid declaration. 12368 if (D.isInvalidType()) { 12369 NewTD->setInvalidDecl(); 12370 return NewTD; 12371 } 12372 12373 if (D.getDeclSpec().isModulePrivateSpecified()) { 12374 if (CurContext->isFunctionOrMethod()) 12375 Diag(NewTD->getLocation(), diag::err_module_private_local) 12376 << 2 << NewTD->getDeclName() 12377 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 12378 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 12379 else 12380 NewTD->setModulePrivate(); 12381 } 12382 12383 // C++ [dcl.typedef]p8: 12384 // If the typedef declaration defines an unnamed class (or 12385 // enum), the first typedef-name declared by the declaration 12386 // to be that class type (or enum type) is used to denote the 12387 // class type (or enum type) for linkage purposes only. 12388 // We need to check whether the type was declared in the declaration. 12389 switch (D.getDeclSpec().getTypeSpecType()) { 12390 case TST_enum: 12391 case TST_struct: 12392 case TST_interface: 12393 case TST_union: 12394 case TST_class: { 12395 TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); 12396 setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD); 12397 break; 12398 } 12399 12400 default: 12401 break; 12402 } 12403 12404 return NewTD; 12405 } 12406 12407 /// \brief Check that this is a valid underlying type for an enum declaration. 12408 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) { 12409 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); 12410 QualType T = TI->getType(); 12411 12412 if (T->isDependentType()) 12413 return false; 12414 12415 if (const BuiltinType *BT = T->getAs<BuiltinType>()) 12416 if (BT->isInteger()) 12417 return false; 12418 12419 Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T; 12420 return true; 12421 } 12422 12423 /// Check whether this is a valid redeclaration of a previous enumeration. 12424 /// \return true if the redeclaration was invalid. 12425 bool Sema::CheckEnumRedeclaration( 12426 SourceLocation EnumLoc, bool IsScoped, QualType EnumUnderlyingTy, 12427 bool EnumUnderlyingIsImplicit, const EnumDecl *Prev) { 12428 bool IsFixed = !EnumUnderlyingTy.isNull(); 12429 12430 if (IsScoped != Prev->isScoped()) { 12431 Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch) 12432 << Prev->isScoped(); 12433 Diag(Prev->getLocation(), diag::note_previous_declaration); 12434 return true; 12435 } 12436 12437 if (IsFixed && Prev->isFixed()) { 12438 if (!EnumUnderlyingTy->isDependentType() && 12439 !Prev->getIntegerType()->isDependentType() && 12440 !Context.hasSameUnqualifiedType(EnumUnderlyingTy, 12441 Prev->getIntegerType())) { 12442 // TODO: Highlight the underlying type of the redeclaration. 12443 Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch) 12444 << EnumUnderlyingTy << Prev->getIntegerType(); 12445 Diag(Prev->getLocation(), diag::note_previous_declaration) 12446 << Prev->getIntegerTypeRange(); 12447 return true; 12448 } 12449 } else if (IsFixed && !Prev->isFixed() && EnumUnderlyingIsImplicit) { 12450 ; 12451 } else if (!IsFixed && Prev->isFixed() && !Prev->getIntegerTypeSourceInfo()) { 12452 ; 12453 } else if (IsFixed != Prev->isFixed()) { 12454 Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch) 12455 << Prev->isFixed(); 12456 Diag(Prev->getLocation(), diag::note_previous_declaration); 12457 return true; 12458 } 12459 12460 return false; 12461 } 12462 12463 /// \brief Get diagnostic %select index for tag kind for 12464 /// redeclaration diagnostic message. 12465 /// WARNING: Indexes apply to particular diagnostics only! 12466 /// 12467 /// \returns diagnostic %select index. 12468 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) { 12469 switch (Tag) { 12470 case TTK_Struct: return 0; 12471 case TTK_Interface: return 1; 12472 case TTK_Class: return 2; 12473 default: llvm_unreachable("Invalid tag kind for redecl diagnostic!"); 12474 } 12475 } 12476 12477 /// \brief Determine if tag kind is a class-key compatible with 12478 /// class for redeclaration (class, struct, or __interface). 12479 /// 12480 /// \returns true iff the tag kind is compatible. 12481 static bool isClassCompatTagKind(TagTypeKind Tag) 12482 { 12483 return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface; 12484 } 12485 12486 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl, 12487 TagTypeKind TTK) { 12488 if (isa<TypedefDecl>(PrevDecl)) 12489 return NTK_Typedef; 12490 else if (isa<TypeAliasDecl>(PrevDecl)) 12491 return NTK_TypeAlias; 12492 else if (isa<ClassTemplateDecl>(PrevDecl)) 12493 return NTK_Template; 12494 else if (isa<TypeAliasTemplateDecl>(PrevDecl)) 12495 return NTK_TypeAliasTemplate; 12496 else if (isa<TemplateTemplateParmDecl>(PrevDecl)) 12497 return NTK_TemplateTemplateArgument; 12498 switch (TTK) { 12499 case TTK_Struct: 12500 case TTK_Interface: 12501 case TTK_Class: 12502 return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct; 12503 case TTK_Union: 12504 return NTK_NonUnion; 12505 case TTK_Enum: 12506 return NTK_NonEnum; 12507 } 12508 llvm_unreachable("invalid TTK"); 12509 } 12510 12511 /// \brief Determine whether a tag with a given kind is acceptable 12512 /// as a redeclaration of the given tag declaration. 12513 /// 12514 /// \returns true if the new tag kind is acceptable, false otherwise. 12515 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous, 12516 TagTypeKind NewTag, bool isDefinition, 12517 SourceLocation NewTagLoc, 12518 const IdentifierInfo *Name) { 12519 // C++ [dcl.type.elab]p3: 12520 // The class-key or enum keyword present in the 12521 // elaborated-type-specifier shall agree in kind with the 12522 // declaration to which the name in the elaborated-type-specifier 12523 // refers. This rule also applies to the form of 12524 // elaborated-type-specifier that declares a class-name or 12525 // friend class since it can be construed as referring to the 12526 // definition of the class. Thus, in any 12527 // elaborated-type-specifier, the enum keyword shall be used to 12528 // refer to an enumeration (7.2), the union class-key shall be 12529 // used to refer to a union (clause 9), and either the class or 12530 // struct class-key shall be used to refer to a class (clause 9) 12531 // declared using the class or struct class-key. 12532 TagTypeKind OldTag = Previous->getTagKind(); 12533 if (!isDefinition || !isClassCompatTagKind(NewTag)) 12534 if (OldTag == NewTag) 12535 return true; 12536 12537 if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) { 12538 // Warn about the struct/class tag mismatch. 12539 bool isTemplate = false; 12540 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous)) 12541 isTemplate = Record->getDescribedClassTemplate(); 12542 12543 if (!ActiveTemplateInstantiations.empty()) { 12544 // In a template instantiation, do not offer fix-its for tag mismatches 12545 // since they usually mess up the template instead of fixing the problem. 12546 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 12547 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 12548 << getRedeclDiagFromTagKind(OldTag); 12549 return true; 12550 } 12551 12552 if (isDefinition) { 12553 // On definitions, check previous tags and issue a fix-it for each 12554 // one that doesn't match the current tag. 12555 if (Previous->getDefinition()) { 12556 // Don't suggest fix-its for redefinitions. 12557 return true; 12558 } 12559 12560 bool previousMismatch = false; 12561 for (auto I : Previous->redecls()) { 12562 if (I->getTagKind() != NewTag) { 12563 if (!previousMismatch) { 12564 previousMismatch = true; 12565 Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch) 12566 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 12567 << getRedeclDiagFromTagKind(I->getTagKind()); 12568 } 12569 Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion) 12570 << getRedeclDiagFromTagKind(NewTag) 12571 << FixItHint::CreateReplacement(I->getInnerLocStart(), 12572 TypeWithKeyword::getTagTypeKindName(NewTag)); 12573 } 12574 } 12575 return true; 12576 } 12577 12578 // Check for a previous definition. If current tag and definition 12579 // are same type, do nothing. If no definition, but disagree with 12580 // with previous tag type, give a warning, but no fix-it. 12581 const TagDecl *Redecl = Previous->getDefinition() ? 12582 Previous->getDefinition() : Previous; 12583 if (Redecl->getTagKind() == NewTag) { 12584 return true; 12585 } 12586 12587 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 12588 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 12589 << getRedeclDiagFromTagKind(OldTag); 12590 Diag(Redecl->getLocation(), diag::note_previous_use); 12591 12592 // If there is a previous definition, suggest a fix-it. 12593 if (Previous->getDefinition()) { 12594 Diag(NewTagLoc, diag::note_struct_class_suggestion) 12595 << getRedeclDiagFromTagKind(Redecl->getTagKind()) 12596 << FixItHint::CreateReplacement(SourceRange(NewTagLoc), 12597 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind())); 12598 } 12599 12600 return true; 12601 } 12602 return false; 12603 } 12604 12605 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name 12606 /// from an outer enclosing namespace or file scope inside a friend declaration. 12607 /// This should provide the commented out code in the following snippet: 12608 /// namespace N { 12609 /// struct X; 12610 /// namespace M { 12611 /// struct Y { friend struct /*N::*/ X; }; 12612 /// } 12613 /// } 12614 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S, 12615 SourceLocation NameLoc) { 12616 // While the decl is in a namespace, do repeated lookup of that name and see 12617 // if we get the same namespace back. If we do not, continue until 12618 // translation unit scope, at which point we have a fully qualified NNS. 12619 SmallVector<IdentifierInfo *, 4> Namespaces; 12620 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 12621 for (; !DC->isTranslationUnit(); DC = DC->getParent()) { 12622 // This tag should be declared in a namespace, which can only be enclosed by 12623 // other namespaces. Bail if there's an anonymous namespace in the chain. 12624 NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC); 12625 if (!Namespace || Namespace->isAnonymousNamespace()) 12626 return FixItHint(); 12627 IdentifierInfo *II = Namespace->getIdentifier(); 12628 Namespaces.push_back(II); 12629 NamedDecl *Lookup = SemaRef.LookupSingleName( 12630 S, II, NameLoc, Sema::LookupNestedNameSpecifierName); 12631 if (Lookup == Namespace) 12632 break; 12633 } 12634 12635 // Once we have all the namespaces, reverse them to go outermost first, and 12636 // build an NNS. 12637 SmallString<64> Insertion; 12638 llvm::raw_svector_ostream OS(Insertion); 12639 if (DC->isTranslationUnit()) 12640 OS << "::"; 12641 std::reverse(Namespaces.begin(), Namespaces.end()); 12642 for (auto *II : Namespaces) 12643 OS << II->getName() << "::"; 12644 return FixItHint::CreateInsertion(NameLoc, Insertion); 12645 } 12646 12647 /// \brief Determine whether a tag originally declared in context \p OldDC can 12648 /// be redeclared with an unqualfied name in \p NewDC (assuming name lookup 12649 /// found a declaration in \p OldDC as a previous decl, perhaps through a 12650 /// using-declaration). 12651 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC, 12652 DeclContext *NewDC) { 12653 OldDC = OldDC->getRedeclContext(); 12654 NewDC = NewDC->getRedeclContext(); 12655 12656 if (OldDC->Equals(NewDC)) 12657 return true; 12658 12659 // In MSVC mode, we allow a redeclaration if the contexts are related (either 12660 // encloses the other). 12661 if (S.getLangOpts().MSVCCompat && 12662 (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC))) 12663 return true; 12664 12665 return false; 12666 } 12667 12668 /// \brief This is invoked when we see 'struct foo' or 'struct {'. In the 12669 /// former case, Name will be non-null. In the later case, Name will be null. 12670 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a 12671 /// reference/declaration/definition of a tag. 12672 /// 12673 /// \param IsTypeSpecifier \c true if this is a type-specifier (or 12674 /// trailing-type-specifier) other than one in an alias-declaration. 12675 /// 12676 /// \param SkipBody If non-null, will be set to indicate if the caller should 12677 /// skip the definition of this tag and treat it as if it were a declaration. 12678 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, 12679 SourceLocation KWLoc, CXXScopeSpec &SS, 12680 IdentifierInfo *Name, SourceLocation NameLoc, 12681 AttributeList *Attr, AccessSpecifier AS, 12682 SourceLocation ModulePrivateLoc, 12683 MultiTemplateParamsArg TemplateParameterLists, 12684 bool &OwnedDecl, bool &IsDependent, 12685 SourceLocation ScopedEnumKWLoc, 12686 bool ScopedEnumUsesClassTag, 12687 TypeResult UnderlyingType, 12688 bool IsTypeSpecifier, SkipBodyInfo *SkipBody) { 12689 // If this is not a definition, it must have a name. 12690 IdentifierInfo *OrigName = Name; 12691 assert((Name != nullptr || TUK == TUK_Definition) && 12692 "Nameless record must be a definition!"); 12693 assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference); 12694 12695 OwnedDecl = false; 12696 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 12697 bool ScopedEnum = ScopedEnumKWLoc.isValid(); 12698 12699 // FIXME: Check explicit specializations more carefully. 12700 bool isExplicitSpecialization = false; 12701 bool Invalid = false; 12702 12703 // We only need to do this matching if we have template parameters 12704 // or a scope specifier, which also conveniently avoids this work 12705 // for non-C++ cases. 12706 if (TemplateParameterLists.size() > 0 || 12707 (SS.isNotEmpty() && TUK != TUK_Reference)) { 12708 if (TemplateParameterList *TemplateParams = 12709 MatchTemplateParametersToScopeSpecifier( 12710 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists, 12711 TUK == TUK_Friend, isExplicitSpecialization, Invalid)) { 12712 if (Kind == TTK_Enum) { 12713 Diag(KWLoc, diag::err_enum_template); 12714 return nullptr; 12715 } 12716 12717 if (TemplateParams->size() > 0) { 12718 // This is a declaration or definition of a class template (which may 12719 // be a member of another template). 12720 12721 if (Invalid) 12722 return nullptr; 12723 12724 OwnedDecl = false; 12725 DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc, 12726 SS, Name, NameLoc, Attr, 12727 TemplateParams, AS, 12728 ModulePrivateLoc, 12729 /*FriendLoc*/SourceLocation(), 12730 TemplateParameterLists.size()-1, 12731 TemplateParameterLists.data(), 12732 SkipBody); 12733 return Result.get(); 12734 } else { 12735 // The "template<>" header is extraneous. 12736 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 12737 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 12738 isExplicitSpecialization = true; 12739 } 12740 } 12741 } 12742 12743 // Figure out the underlying type if this a enum declaration. We need to do 12744 // this early, because it's needed to detect if this is an incompatible 12745 // redeclaration. 12746 llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying; 12747 bool EnumUnderlyingIsImplicit = false; 12748 12749 if (Kind == TTK_Enum) { 12750 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) 12751 // No underlying type explicitly specified, or we failed to parse the 12752 // type, default to int. 12753 EnumUnderlying = Context.IntTy.getTypePtr(); 12754 else if (UnderlyingType.get()) { 12755 // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an 12756 // integral type; any cv-qualification is ignored. 12757 TypeSourceInfo *TI = nullptr; 12758 GetTypeFromParser(UnderlyingType.get(), &TI); 12759 EnumUnderlying = TI; 12760 12761 if (CheckEnumUnderlyingType(TI)) 12762 // Recover by falling back to int. 12763 EnumUnderlying = Context.IntTy.getTypePtr(); 12764 12765 if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI, 12766 UPPC_FixedUnderlyingType)) 12767 EnumUnderlying = Context.IntTy.getTypePtr(); 12768 12769 } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 12770 if (getLangOpts().MSVCCompat || TUK == TUK_Definition) { 12771 // Microsoft enums are always of int type. 12772 EnumUnderlying = Context.IntTy.getTypePtr(); 12773 EnumUnderlyingIsImplicit = true; 12774 } 12775 } 12776 } 12777 12778 DeclContext *SearchDC = CurContext; 12779 DeclContext *DC = CurContext; 12780 bool isStdBadAlloc = false; 12781 bool isStdAlignValT = false; 12782 12783 RedeclarationKind Redecl = ForRedeclaration; 12784 if (TUK == TUK_Friend || TUK == TUK_Reference) 12785 Redecl = NotForRedeclaration; 12786 12787 LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl); 12788 if (Name && SS.isNotEmpty()) { 12789 // We have a nested-name tag ('struct foo::bar'). 12790 12791 // Check for invalid 'foo::'. 12792 if (SS.isInvalid()) { 12793 Name = nullptr; 12794 goto CreateNewDecl; 12795 } 12796 12797 // If this is a friend or a reference to a class in a dependent 12798 // context, don't try to make a decl for it. 12799 if (TUK == TUK_Friend || TUK == TUK_Reference) { 12800 DC = computeDeclContext(SS, false); 12801 if (!DC) { 12802 IsDependent = true; 12803 return nullptr; 12804 } 12805 } else { 12806 DC = computeDeclContext(SS, true); 12807 if (!DC) { 12808 Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec) 12809 << SS.getRange(); 12810 return nullptr; 12811 } 12812 } 12813 12814 if (RequireCompleteDeclContext(SS, DC)) 12815 return nullptr; 12816 12817 SearchDC = DC; 12818 // Look-up name inside 'foo::'. 12819 LookupQualifiedName(Previous, DC); 12820 12821 if (Previous.isAmbiguous()) 12822 return nullptr; 12823 12824 if (Previous.empty()) { 12825 // Name lookup did not find anything. However, if the 12826 // nested-name-specifier refers to the current instantiation, 12827 // and that current instantiation has any dependent base 12828 // classes, we might find something at instantiation time: treat 12829 // this as a dependent elaborated-type-specifier. 12830 // But this only makes any sense for reference-like lookups. 12831 if (Previous.wasNotFoundInCurrentInstantiation() && 12832 (TUK == TUK_Reference || TUK == TUK_Friend)) { 12833 IsDependent = true; 12834 return nullptr; 12835 } 12836 12837 // A tag 'foo::bar' must already exist. 12838 Diag(NameLoc, diag::err_not_tag_in_scope) 12839 << Kind << Name << DC << SS.getRange(); 12840 Name = nullptr; 12841 Invalid = true; 12842 goto CreateNewDecl; 12843 } 12844 } else if (Name) { 12845 // C++14 [class.mem]p14: 12846 // If T is the name of a class, then each of the following shall have a 12847 // name different from T: 12848 // -- every member of class T that is itself a type 12849 if (TUK != TUK_Reference && TUK != TUK_Friend && 12850 DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc))) 12851 return nullptr; 12852 12853 // If this is a named struct, check to see if there was a previous forward 12854 // declaration or definition. 12855 // FIXME: We're looking into outer scopes here, even when we 12856 // shouldn't be. Doing so can result in ambiguities that we 12857 // shouldn't be diagnosing. 12858 LookupName(Previous, S); 12859 12860 // When declaring or defining a tag, ignore ambiguities introduced 12861 // by types using'ed into this scope. 12862 if (Previous.isAmbiguous() && 12863 (TUK == TUK_Definition || TUK == TUK_Declaration)) { 12864 LookupResult::Filter F = Previous.makeFilter(); 12865 while (F.hasNext()) { 12866 NamedDecl *ND = F.next(); 12867 if (!ND->getDeclContext()->getRedeclContext()->Equals( 12868 SearchDC->getRedeclContext())) 12869 F.erase(); 12870 } 12871 F.done(); 12872 } 12873 12874 // C++11 [namespace.memdef]p3: 12875 // If the name in a friend declaration is neither qualified nor 12876 // a template-id and the declaration is a function or an 12877 // elaborated-type-specifier, the lookup to determine whether 12878 // the entity has been previously declared shall not consider 12879 // any scopes outside the innermost enclosing namespace. 12880 // 12881 // MSVC doesn't implement the above rule for types, so a friend tag 12882 // declaration may be a redeclaration of a type declared in an enclosing 12883 // scope. They do implement this rule for friend functions. 12884 // 12885 // Does it matter that this should be by scope instead of by 12886 // semantic context? 12887 if (!Previous.empty() && TUK == TUK_Friend) { 12888 DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext(); 12889 LookupResult::Filter F = Previous.makeFilter(); 12890 bool FriendSawTagOutsideEnclosingNamespace = false; 12891 while (F.hasNext()) { 12892 NamedDecl *ND = F.next(); 12893 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 12894 if (DC->isFileContext() && 12895 !EnclosingNS->Encloses(ND->getDeclContext())) { 12896 if (getLangOpts().MSVCCompat) 12897 FriendSawTagOutsideEnclosingNamespace = true; 12898 else 12899 F.erase(); 12900 } 12901 } 12902 F.done(); 12903 12904 // Diagnose this MSVC extension in the easy case where lookup would have 12905 // unambiguously found something outside the enclosing namespace. 12906 if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) { 12907 NamedDecl *ND = Previous.getFoundDecl(); 12908 Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace) 12909 << createFriendTagNNSFixIt(*this, ND, S, NameLoc); 12910 } 12911 } 12912 12913 // Note: there used to be some attempt at recovery here. 12914 if (Previous.isAmbiguous()) 12915 return nullptr; 12916 12917 if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) { 12918 // FIXME: This makes sure that we ignore the contexts associated 12919 // with C structs, unions, and enums when looking for a matching 12920 // tag declaration or definition. See the similar lookup tweak 12921 // in Sema::LookupName; is there a better way to deal with this? 12922 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC)) 12923 SearchDC = SearchDC->getParent(); 12924 } 12925 } 12926 12927 if (Previous.isSingleResult() && 12928 Previous.getFoundDecl()->isTemplateParameter()) { 12929 // Maybe we will complain about the shadowed template parameter. 12930 DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl()); 12931 // Just pretend that we didn't see the previous declaration. 12932 Previous.clear(); 12933 } 12934 12935 if (getLangOpts().CPlusPlus && Name && DC && StdNamespace && 12936 DC->Equals(getStdNamespace())) { 12937 if (Name->isStr("bad_alloc")) { 12938 // This is a declaration of or a reference to "std::bad_alloc". 12939 isStdBadAlloc = true; 12940 12941 // If std::bad_alloc has been implicitly declared (but made invisible to 12942 // name lookup), fill in this implicit declaration as the previous 12943 // declaration, so that the declarations get chained appropriately. 12944 if (Previous.empty() && StdBadAlloc) 12945 Previous.addDecl(getStdBadAlloc()); 12946 } else if (Name->isStr("align_val_t")) { 12947 isStdAlignValT = true; 12948 if (Previous.empty() && StdAlignValT) 12949 Previous.addDecl(getStdAlignValT()); 12950 } 12951 } 12952 12953 // If we didn't find a previous declaration, and this is a reference 12954 // (or friend reference), move to the correct scope. In C++, we 12955 // also need to do a redeclaration lookup there, just in case 12956 // there's a shadow friend decl. 12957 if (Name && Previous.empty() && 12958 (TUK == TUK_Reference || TUK == TUK_Friend)) { 12959 if (Invalid) goto CreateNewDecl; 12960 assert(SS.isEmpty()); 12961 12962 if (TUK == TUK_Reference) { 12963 // C++ [basic.scope.pdecl]p5: 12964 // -- for an elaborated-type-specifier of the form 12965 // 12966 // class-key identifier 12967 // 12968 // if the elaborated-type-specifier is used in the 12969 // decl-specifier-seq or parameter-declaration-clause of a 12970 // function defined in namespace scope, the identifier is 12971 // declared as a class-name in the namespace that contains 12972 // the declaration; otherwise, except as a friend 12973 // declaration, the identifier is declared in the smallest 12974 // non-class, non-function-prototype scope that contains the 12975 // declaration. 12976 // 12977 // C99 6.7.2.3p8 has a similar (but not identical!) provision for 12978 // C structs and unions. 12979 // 12980 // It is an error in C++ to declare (rather than define) an enum 12981 // type, including via an elaborated type specifier. We'll 12982 // diagnose that later; for now, declare the enum in the same 12983 // scope as we would have picked for any other tag type. 12984 // 12985 // GNU C also supports this behavior as part of its incomplete 12986 // enum types extension, while GNU C++ does not. 12987 // 12988 // Find the context where we'll be declaring the tag. 12989 // FIXME: We would like to maintain the current DeclContext as the 12990 // lexical context, 12991 SearchDC = getTagInjectionContext(SearchDC); 12992 12993 // Find the scope where we'll be declaring the tag. 12994 S = getTagInjectionScope(S, getLangOpts()); 12995 } else { 12996 assert(TUK == TUK_Friend); 12997 // C++ [namespace.memdef]p3: 12998 // If a friend declaration in a non-local class first declares a 12999 // class or function, the friend class or function is a member of 13000 // the innermost enclosing namespace. 13001 SearchDC = SearchDC->getEnclosingNamespaceContext(); 13002 } 13003 13004 // In C++, we need to do a redeclaration lookup to properly 13005 // diagnose some problems. 13006 // FIXME: redeclaration lookup is also used (with and without C++) to find a 13007 // hidden declaration so that we don't get ambiguity errors when using a 13008 // type declared by an elaborated-type-specifier. In C that is not correct 13009 // and we should instead merge compatible types found by lookup. 13010 if (getLangOpts().CPlusPlus) { 13011 Previous.setRedeclarationKind(ForRedeclaration); 13012 LookupQualifiedName(Previous, SearchDC); 13013 } else { 13014 Previous.setRedeclarationKind(ForRedeclaration); 13015 LookupName(Previous, S); 13016 } 13017 } 13018 13019 // If we have a known previous declaration to use, then use it. 13020 if (Previous.empty() && SkipBody && SkipBody->Previous) 13021 Previous.addDecl(SkipBody->Previous); 13022 13023 if (!Previous.empty()) { 13024 NamedDecl *PrevDecl = Previous.getFoundDecl(); 13025 NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl(); 13026 13027 // It's okay to have a tag decl in the same scope as a typedef 13028 // which hides a tag decl in the same scope. Finding this 13029 // insanity with a redeclaration lookup can only actually happen 13030 // in C++. 13031 // 13032 // This is also okay for elaborated-type-specifiers, which is 13033 // technically forbidden by the current standard but which is 13034 // okay according to the likely resolution of an open issue; 13035 // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407 13036 if (getLangOpts().CPlusPlus) { 13037 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) { 13038 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) { 13039 TagDecl *Tag = TT->getDecl(); 13040 if (Tag->getDeclName() == Name && 13041 Tag->getDeclContext()->getRedeclContext() 13042 ->Equals(TD->getDeclContext()->getRedeclContext())) { 13043 PrevDecl = Tag; 13044 Previous.clear(); 13045 Previous.addDecl(Tag); 13046 Previous.resolveKind(); 13047 } 13048 } 13049 } 13050 } 13051 13052 // If this is a redeclaration of a using shadow declaration, it must 13053 // declare a tag in the same context. In MSVC mode, we allow a 13054 // redefinition if either context is within the other. 13055 if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) { 13056 auto *OldTag = dyn_cast<TagDecl>(PrevDecl); 13057 if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend && 13058 isDeclInScope(Shadow, SearchDC, S, isExplicitSpecialization) && 13059 !(OldTag && isAcceptableTagRedeclContext( 13060 *this, OldTag->getDeclContext(), SearchDC))) { 13061 Diag(KWLoc, diag::err_using_decl_conflict_reverse); 13062 Diag(Shadow->getTargetDecl()->getLocation(), 13063 diag::note_using_decl_target); 13064 Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) 13065 << 0; 13066 // Recover by ignoring the old declaration. 13067 Previous.clear(); 13068 goto CreateNewDecl; 13069 } 13070 } 13071 13072 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) { 13073 // If this is a use of a previous tag, or if the tag is already declared 13074 // in the same scope (so that the definition/declaration completes or 13075 // rementions the tag), reuse the decl. 13076 if (TUK == TUK_Reference || TUK == TUK_Friend || 13077 isDeclInScope(DirectPrevDecl, SearchDC, S, 13078 SS.isNotEmpty() || isExplicitSpecialization)) { 13079 // Make sure that this wasn't declared as an enum and now used as a 13080 // struct or something similar. 13081 if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind, 13082 TUK == TUK_Definition, KWLoc, 13083 Name)) { 13084 bool SafeToContinue 13085 = (PrevTagDecl->getTagKind() != TTK_Enum && 13086 Kind != TTK_Enum); 13087 if (SafeToContinue) 13088 Diag(KWLoc, diag::err_use_with_wrong_tag) 13089 << Name 13090 << FixItHint::CreateReplacement(SourceRange(KWLoc), 13091 PrevTagDecl->getKindName()); 13092 else 13093 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name; 13094 Diag(PrevTagDecl->getLocation(), diag::note_previous_use); 13095 13096 if (SafeToContinue) 13097 Kind = PrevTagDecl->getTagKind(); 13098 else { 13099 // Recover by making this an anonymous redefinition. 13100 Name = nullptr; 13101 Previous.clear(); 13102 Invalid = true; 13103 } 13104 } 13105 13106 if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) { 13107 const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl); 13108 13109 // If this is an elaborated-type-specifier for a scoped enumeration, 13110 // the 'class' keyword is not necessary and not permitted. 13111 if (TUK == TUK_Reference || TUK == TUK_Friend) { 13112 if (ScopedEnum) 13113 Diag(ScopedEnumKWLoc, diag::err_enum_class_reference) 13114 << PrevEnum->isScoped() 13115 << FixItHint::CreateRemoval(ScopedEnumKWLoc); 13116 return PrevTagDecl; 13117 } 13118 13119 QualType EnumUnderlyingTy; 13120 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 13121 EnumUnderlyingTy = TI->getType().getUnqualifiedType(); 13122 else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>()) 13123 EnumUnderlyingTy = QualType(T, 0); 13124 13125 // All conflicts with previous declarations are recovered by 13126 // returning the previous declaration, unless this is a definition, 13127 // in which case we want the caller to bail out. 13128 if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc, 13129 ScopedEnum, EnumUnderlyingTy, 13130 EnumUnderlyingIsImplicit, PrevEnum)) 13131 return TUK == TUK_Declaration ? PrevTagDecl : nullptr; 13132 } 13133 13134 // C++11 [class.mem]p1: 13135 // A member shall not be declared twice in the member-specification, 13136 // except that a nested class or member class template can be declared 13137 // and then later defined. 13138 if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() && 13139 S->isDeclScope(PrevDecl)) { 13140 Diag(NameLoc, diag::ext_member_redeclared); 13141 Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration); 13142 } 13143 13144 if (!Invalid) { 13145 // If this is a use, just return the declaration we found, unless 13146 // we have attributes. 13147 if (TUK == TUK_Reference || TUK == TUK_Friend) { 13148 if (Attr) { 13149 // FIXME: Diagnose these attributes. For now, we create a new 13150 // declaration to hold them. 13151 } else if (TUK == TUK_Reference && 13152 (PrevTagDecl->getFriendObjectKind() == 13153 Decl::FOK_Undeclared || 13154 PP.getModuleContainingLocation( 13155 PrevDecl->getLocation()) != 13156 PP.getModuleContainingLocation(KWLoc)) && 13157 SS.isEmpty()) { 13158 // This declaration is a reference to an existing entity, but 13159 // has different visibility from that entity: it either makes 13160 // a friend visible or it makes a type visible in a new module. 13161 // In either case, create a new declaration. We only do this if 13162 // the declaration would have meant the same thing if no prior 13163 // declaration were found, that is, if it was found in the same 13164 // scope where we would have injected a declaration. 13165 if (!getTagInjectionContext(CurContext)->getRedeclContext() 13166 ->Equals(PrevDecl->getDeclContext()->getRedeclContext())) 13167 return PrevTagDecl; 13168 // This is in the injected scope, create a new declaration in 13169 // that scope. 13170 S = getTagInjectionScope(S, getLangOpts()); 13171 } else { 13172 return PrevTagDecl; 13173 } 13174 } 13175 13176 // Diagnose attempts to redefine a tag. 13177 if (TUK == TUK_Definition) { 13178 if (NamedDecl *Def = PrevTagDecl->getDefinition()) { 13179 // If we're defining a specialization and the previous definition 13180 // is from an implicit instantiation, don't emit an error 13181 // here; we'll catch this in the general case below. 13182 bool IsExplicitSpecializationAfterInstantiation = false; 13183 if (isExplicitSpecialization) { 13184 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def)) 13185 IsExplicitSpecializationAfterInstantiation = 13186 RD->getTemplateSpecializationKind() != 13187 TSK_ExplicitSpecialization; 13188 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def)) 13189 IsExplicitSpecializationAfterInstantiation = 13190 ED->getTemplateSpecializationKind() != 13191 TSK_ExplicitSpecialization; 13192 } 13193 13194 NamedDecl *Hidden = nullptr; 13195 if (SkipBody && getLangOpts().CPlusPlus && 13196 !hasVisibleDefinition(Def, &Hidden)) { 13197 // There is a definition of this tag, but it is not visible. We 13198 // explicitly make use of C++'s one definition rule here, and 13199 // assume that this definition is identical to the hidden one 13200 // we already have. Make the existing definition visible and 13201 // use it in place of this one. 13202 SkipBody->ShouldSkip = true; 13203 makeMergedDefinitionVisible(Hidden, KWLoc); 13204 return Def; 13205 } else if (!IsExplicitSpecializationAfterInstantiation) { 13206 // A redeclaration in function prototype scope in C isn't 13207 // visible elsewhere, so merely issue a warning. 13208 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope()) 13209 Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name; 13210 else 13211 Diag(NameLoc, diag::err_redefinition) << Name; 13212 Diag(Def->getLocation(), diag::note_previous_definition); 13213 // If this is a redefinition, recover by making this 13214 // struct be anonymous, which will make any later 13215 // references get the previous definition. 13216 Name = nullptr; 13217 Previous.clear(); 13218 Invalid = true; 13219 } 13220 } else { 13221 // If the type is currently being defined, complain 13222 // about a nested redefinition. 13223 auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl(); 13224 if (TD->isBeingDefined()) { 13225 Diag(NameLoc, diag::err_nested_redefinition) << Name; 13226 Diag(PrevTagDecl->getLocation(), 13227 diag::note_previous_definition); 13228 Name = nullptr; 13229 Previous.clear(); 13230 Invalid = true; 13231 } 13232 } 13233 13234 // Okay, this is definition of a previously declared or referenced 13235 // tag. We're going to create a new Decl for it. 13236 } 13237 13238 // Okay, we're going to make a redeclaration. If this is some kind 13239 // of reference, make sure we build the redeclaration in the same DC 13240 // as the original, and ignore the current access specifier. 13241 if (TUK == TUK_Friend || TUK == TUK_Reference) { 13242 SearchDC = PrevTagDecl->getDeclContext(); 13243 AS = AS_none; 13244 } 13245 } 13246 // If we get here we have (another) forward declaration or we 13247 // have a definition. Just create a new decl. 13248 13249 } else { 13250 // If we get here, this is a definition of a new tag type in a nested 13251 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a 13252 // new decl/type. We set PrevDecl to NULL so that the entities 13253 // have distinct types. 13254 Previous.clear(); 13255 } 13256 // If we get here, we're going to create a new Decl. If PrevDecl 13257 // is non-NULL, it's a definition of the tag declared by 13258 // PrevDecl. If it's NULL, we have a new definition. 13259 13260 // Otherwise, PrevDecl is not a tag, but was found with tag 13261 // lookup. This is only actually possible in C++, where a few 13262 // things like templates still live in the tag namespace. 13263 } else { 13264 // Use a better diagnostic if an elaborated-type-specifier 13265 // found the wrong kind of type on the first 13266 // (non-redeclaration) lookup. 13267 if ((TUK == TUK_Reference || TUK == TUK_Friend) && 13268 !Previous.isForRedeclaration()) { 13269 NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind); 13270 Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK 13271 << Kind; 13272 Diag(PrevDecl->getLocation(), diag::note_declared_at); 13273 Invalid = true; 13274 13275 // Otherwise, only diagnose if the declaration is in scope. 13276 } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S, 13277 SS.isNotEmpty() || isExplicitSpecialization)) { 13278 // do nothing 13279 13280 // Diagnose implicit declarations introduced by elaborated types. 13281 } else if (TUK == TUK_Reference || TUK == TUK_Friend) { 13282 NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind); 13283 Diag(NameLoc, diag::err_tag_reference_conflict) << NTK; 13284 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 13285 Invalid = true; 13286 13287 // Otherwise it's a declaration. Call out a particularly common 13288 // case here. 13289 } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) { 13290 unsigned Kind = 0; 13291 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1; 13292 Diag(NameLoc, diag::err_tag_definition_of_typedef) 13293 << Name << Kind << TND->getUnderlyingType(); 13294 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 13295 Invalid = true; 13296 13297 // Otherwise, diagnose. 13298 } else { 13299 // The tag name clashes with something else in the target scope, 13300 // issue an error and recover by making this tag be anonymous. 13301 Diag(NameLoc, diag::err_redefinition_different_kind) << Name; 13302 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 13303 Name = nullptr; 13304 Invalid = true; 13305 } 13306 13307 // The existing declaration isn't relevant to us; we're in a 13308 // new scope, so clear out the previous declaration. 13309 Previous.clear(); 13310 } 13311 } 13312 13313 CreateNewDecl: 13314 13315 TagDecl *PrevDecl = nullptr; 13316 if (Previous.isSingleResult()) 13317 PrevDecl = cast<TagDecl>(Previous.getFoundDecl()); 13318 13319 // If there is an identifier, use the location of the identifier as the 13320 // location of the decl, otherwise use the location of the struct/union 13321 // keyword. 13322 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; 13323 13324 // Otherwise, create a new declaration. If there is a previous 13325 // declaration of the same entity, the two will be linked via 13326 // PrevDecl. 13327 TagDecl *New; 13328 13329 bool IsForwardReference = false; 13330 if (Kind == TTK_Enum) { 13331 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 13332 // enum X { A, B, C } D; D should chain to X. 13333 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, 13334 cast_or_null<EnumDecl>(PrevDecl), ScopedEnum, 13335 ScopedEnumUsesClassTag, !EnumUnderlying.isNull()); 13336 13337 if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit())) 13338 StdAlignValT = cast<EnumDecl>(New); 13339 13340 // If this is an undefined enum, warn. 13341 if (TUK != TUK_Definition && !Invalid) { 13342 TagDecl *Def; 13343 if ((getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) && 13344 cast<EnumDecl>(New)->isFixed()) { 13345 // C++0x: 7.2p2: opaque-enum-declaration. 13346 // Conflicts are diagnosed above. Do nothing. 13347 } 13348 else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) { 13349 Diag(Loc, diag::ext_forward_ref_enum_def) 13350 << New; 13351 Diag(Def->getLocation(), diag::note_previous_definition); 13352 } else { 13353 unsigned DiagID = diag::ext_forward_ref_enum; 13354 if (getLangOpts().MSVCCompat) 13355 DiagID = diag::ext_ms_forward_ref_enum; 13356 else if (getLangOpts().CPlusPlus) 13357 DiagID = diag::err_forward_ref_enum; 13358 Diag(Loc, DiagID); 13359 13360 // If this is a forward-declared reference to an enumeration, make a 13361 // note of it; we won't actually be introducing the declaration into 13362 // the declaration context. 13363 if (TUK == TUK_Reference) 13364 IsForwardReference = true; 13365 } 13366 } 13367 13368 if (EnumUnderlying) { 13369 EnumDecl *ED = cast<EnumDecl>(New); 13370 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 13371 ED->setIntegerTypeSourceInfo(TI); 13372 else 13373 ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0)); 13374 ED->setPromotionType(ED->getIntegerType()); 13375 } 13376 } else { 13377 // struct/union/class 13378 13379 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 13380 // struct X { int A; } D; D should chain to X. 13381 if (getLangOpts().CPlusPlus) { 13382 // FIXME: Look for a way to use RecordDecl for simple structs. 13383 New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 13384 cast_or_null<CXXRecordDecl>(PrevDecl)); 13385 13386 if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit())) 13387 StdBadAlloc = cast<CXXRecordDecl>(New); 13388 } else 13389 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 13390 cast_or_null<RecordDecl>(PrevDecl)); 13391 } 13392 13393 // C++11 [dcl.type]p3: 13394 // A type-specifier-seq shall not define a class or enumeration [...]. 13395 if (getLangOpts().CPlusPlus && IsTypeSpecifier && TUK == TUK_Definition) { 13396 Diag(New->getLocation(), diag::err_type_defined_in_type_specifier) 13397 << Context.getTagDeclType(New); 13398 Invalid = true; 13399 } 13400 13401 // Maybe add qualifier info. 13402 if (SS.isNotEmpty()) { 13403 if (SS.isSet()) { 13404 // If this is either a declaration or a definition, check the 13405 // nested-name-specifier against the current context. We don't do this 13406 // for explicit specializations, because they have similar checking 13407 // (with more specific diagnostics) in the call to 13408 // CheckMemberSpecialization, below. 13409 if (!isExplicitSpecialization && 13410 (TUK == TUK_Definition || TUK == TUK_Declaration) && 13411 diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc)) 13412 Invalid = true; 13413 13414 New->setQualifierInfo(SS.getWithLocInContext(Context)); 13415 if (TemplateParameterLists.size() > 0) { 13416 New->setTemplateParameterListsInfo(Context, TemplateParameterLists); 13417 } 13418 } 13419 else 13420 Invalid = true; 13421 } 13422 13423 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) { 13424 // Add alignment attributes if necessary; these attributes are checked when 13425 // the ASTContext lays out the structure. 13426 // 13427 // It is important for implementing the correct semantics that this 13428 // happen here (in act on tag decl). The #pragma pack stack is 13429 // maintained as a result of parser callbacks which can occur at 13430 // many points during the parsing of a struct declaration (because 13431 // the #pragma tokens are effectively skipped over during the 13432 // parsing of the struct). 13433 if (TUK == TUK_Definition) { 13434 AddAlignmentAttributesForRecord(RD); 13435 AddMsStructLayoutForRecord(RD); 13436 } 13437 } 13438 13439 if (ModulePrivateLoc.isValid()) { 13440 if (isExplicitSpecialization) 13441 Diag(New->getLocation(), diag::err_module_private_specialization) 13442 << 2 13443 << FixItHint::CreateRemoval(ModulePrivateLoc); 13444 // __module_private__ does not apply to local classes. However, we only 13445 // diagnose this as an error when the declaration specifiers are 13446 // freestanding. Here, we just ignore the __module_private__. 13447 else if (!SearchDC->isFunctionOrMethod()) 13448 New->setModulePrivate(); 13449 } 13450 13451 // If this is a specialization of a member class (of a class template), 13452 // check the specialization. 13453 if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous)) 13454 Invalid = true; 13455 13456 // If we're declaring or defining a tag in function prototype scope in C, 13457 // note that this type can only be used within the function and add it to 13458 // the list of decls to inject into the function definition scope. 13459 if ((Name || Kind == TTK_Enum) && 13460 getNonFieldDeclScope(S)->isFunctionPrototypeScope()) { 13461 if (getLangOpts().CPlusPlus) { 13462 // C++ [dcl.fct]p6: 13463 // Types shall not be defined in return or parameter types. 13464 if (TUK == TUK_Definition && !IsTypeSpecifier) { 13465 Diag(Loc, diag::err_type_defined_in_param_type) 13466 << Name; 13467 Invalid = true; 13468 } 13469 } else if (!PrevDecl) { 13470 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New); 13471 } 13472 } 13473 13474 if (Invalid) 13475 New->setInvalidDecl(); 13476 13477 if (Attr) 13478 ProcessDeclAttributeList(S, New, Attr); 13479 13480 // Set the lexical context. If the tag has a C++ scope specifier, the 13481 // lexical context will be different from the semantic context. 13482 New->setLexicalDeclContext(CurContext); 13483 13484 // Mark this as a friend decl if applicable. 13485 // In Microsoft mode, a friend declaration also acts as a forward 13486 // declaration so we always pass true to setObjectOfFriendDecl to make 13487 // the tag name visible. 13488 if (TUK == TUK_Friend) 13489 New->setObjectOfFriendDecl(getLangOpts().MSVCCompat); 13490 13491 // Set the access specifier. 13492 if (!Invalid && SearchDC->isRecord()) 13493 SetMemberAccessSpecifier(New, PrevDecl, AS); 13494 13495 if (TUK == TUK_Definition) 13496 New->startDefinition(); 13497 13498 // If this has an identifier, add it to the scope stack. 13499 if (TUK == TUK_Friend) { 13500 // We might be replacing an existing declaration in the lookup tables; 13501 // if so, borrow its access specifier. 13502 if (PrevDecl) 13503 New->setAccess(PrevDecl->getAccess()); 13504 13505 DeclContext *DC = New->getDeclContext()->getRedeclContext(); 13506 DC->makeDeclVisibleInContext(New); 13507 if (Name) // can be null along some error paths 13508 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 13509 PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false); 13510 } else if (Name) { 13511 S = getNonFieldDeclScope(S); 13512 PushOnScopeChains(New, S, !IsForwardReference); 13513 if (IsForwardReference) 13514 SearchDC->makeDeclVisibleInContext(New); 13515 } else { 13516 CurContext->addDecl(New); 13517 } 13518 13519 // If this is the C FILE type, notify the AST context. 13520 if (IdentifierInfo *II = New->getIdentifier()) 13521 if (!New->isInvalidDecl() && 13522 New->getDeclContext()->getRedeclContext()->isTranslationUnit() && 13523 II->isStr("FILE")) 13524 Context.setFILEDecl(New); 13525 13526 if (PrevDecl) 13527 mergeDeclAttributes(New, PrevDecl); 13528 13529 // If there's a #pragma GCC visibility in scope, set the visibility of this 13530 // record. 13531 AddPushedVisibilityAttribute(New); 13532 13533 OwnedDecl = true; 13534 // In C++, don't return an invalid declaration. We can't recover well from 13535 // the cases where we make the type anonymous. 13536 if (Invalid && getLangOpts().CPlusPlus) { 13537 if (New->isBeingDefined()) 13538 if (auto RD = dyn_cast<RecordDecl>(New)) 13539 RD->completeDefinition(); 13540 return nullptr; 13541 } else { 13542 return New; 13543 } 13544 } 13545 13546 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) { 13547 AdjustDeclIfTemplate(TagD); 13548 TagDecl *Tag = cast<TagDecl>(TagD); 13549 13550 // Enter the tag context. 13551 PushDeclContext(S, Tag); 13552 13553 ActOnDocumentableDecl(TagD); 13554 13555 // If there's a #pragma GCC visibility in scope, set the visibility of this 13556 // record. 13557 AddPushedVisibilityAttribute(Tag); 13558 } 13559 13560 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) { 13561 assert(isa<ObjCContainerDecl>(IDecl) && 13562 "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl"); 13563 DeclContext *OCD = cast<DeclContext>(IDecl); 13564 assert(getContainingDC(OCD) == CurContext && 13565 "The next DeclContext should be lexically contained in the current one."); 13566 CurContext = OCD; 13567 return IDecl; 13568 } 13569 13570 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD, 13571 SourceLocation FinalLoc, 13572 bool IsFinalSpelledSealed, 13573 SourceLocation LBraceLoc) { 13574 AdjustDeclIfTemplate(TagD); 13575 CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD); 13576 13577 FieldCollector->StartClass(); 13578 13579 if (!Record->getIdentifier()) 13580 return; 13581 13582 if (FinalLoc.isValid()) 13583 Record->addAttr(new (Context) 13584 FinalAttr(FinalLoc, Context, IsFinalSpelledSealed)); 13585 13586 // C++ [class]p2: 13587 // [...] The class-name is also inserted into the scope of the 13588 // class itself; this is known as the injected-class-name. For 13589 // purposes of access checking, the injected-class-name is treated 13590 // as if it were a public member name. 13591 CXXRecordDecl *InjectedClassName 13592 = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext, 13593 Record->getLocStart(), Record->getLocation(), 13594 Record->getIdentifier(), 13595 /*PrevDecl=*/nullptr, 13596 /*DelayTypeCreation=*/true); 13597 Context.getTypeDeclType(InjectedClassName, Record); 13598 InjectedClassName->setImplicit(); 13599 InjectedClassName->setAccess(AS_public); 13600 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) 13601 InjectedClassName->setDescribedClassTemplate(Template); 13602 PushOnScopeChains(InjectedClassName, S); 13603 assert(InjectedClassName->isInjectedClassName() && 13604 "Broken injected-class-name"); 13605 } 13606 13607 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD, 13608 SourceRange BraceRange) { 13609 AdjustDeclIfTemplate(TagD); 13610 TagDecl *Tag = cast<TagDecl>(TagD); 13611 Tag->setBraceRange(BraceRange); 13612 13613 // Make sure we "complete" the definition even it is invalid. 13614 if (Tag->isBeingDefined()) { 13615 assert(Tag->isInvalidDecl() && "We should already have completed it"); 13616 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 13617 RD->completeDefinition(); 13618 } 13619 13620 if (isa<CXXRecordDecl>(Tag)) 13621 FieldCollector->FinishClass(); 13622 13623 // Exit this scope of this tag's definition. 13624 PopDeclContext(); 13625 13626 if (getCurLexicalContext()->isObjCContainer() && 13627 Tag->getDeclContext()->isFileContext()) 13628 Tag->setTopLevelDeclInObjCContainer(); 13629 13630 // Notify the consumer that we've defined a tag. 13631 if (!Tag->isInvalidDecl()) 13632 Consumer.HandleTagDeclDefinition(Tag); 13633 } 13634 13635 void Sema::ActOnObjCContainerFinishDefinition() { 13636 // Exit this scope of this interface definition. 13637 PopDeclContext(); 13638 } 13639 13640 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) { 13641 assert(DC == CurContext && "Mismatch of container contexts"); 13642 OriginalLexicalContext = DC; 13643 ActOnObjCContainerFinishDefinition(); 13644 } 13645 13646 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) { 13647 ActOnObjCContainerStartDefinition(cast<Decl>(DC)); 13648 OriginalLexicalContext = nullptr; 13649 } 13650 13651 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) { 13652 AdjustDeclIfTemplate(TagD); 13653 TagDecl *Tag = cast<TagDecl>(TagD); 13654 Tag->setInvalidDecl(); 13655 13656 // Make sure we "complete" the definition even it is invalid. 13657 if (Tag->isBeingDefined()) { 13658 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 13659 RD->completeDefinition(); 13660 } 13661 13662 // We're undoing ActOnTagStartDefinition here, not 13663 // ActOnStartCXXMemberDeclarations, so we don't have to mess with 13664 // the FieldCollector. 13665 13666 PopDeclContext(); 13667 } 13668 13669 // Note that FieldName may be null for anonymous bitfields. 13670 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc, 13671 IdentifierInfo *FieldName, 13672 QualType FieldTy, bool IsMsStruct, 13673 Expr *BitWidth, bool *ZeroWidth) { 13674 // Default to true; that shouldn't confuse checks for emptiness 13675 if (ZeroWidth) 13676 *ZeroWidth = true; 13677 13678 // C99 6.7.2.1p4 - verify the field type. 13679 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 13680 if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) { 13681 // Handle incomplete types with specific error. 13682 if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete)) 13683 return ExprError(); 13684 if (FieldName) 13685 return Diag(FieldLoc, diag::err_not_integral_type_bitfield) 13686 << FieldName << FieldTy << BitWidth->getSourceRange(); 13687 return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield) 13688 << FieldTy << BitWidth->getSourceRange(); 13689 } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth), 13690 UPPC_BitFieldWidth)) 13691 return ExprError(); 13692 13693 // If the bit-width is type- or value-dependent, don't try to check 13694 // it now. 13695 if (BitWidth->isValueDependent() || BitWidth->isTypeDependent()) 13696 return BitWidth; 13697 13698 llvm::APSInt Value; 13699 ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value); 13700 if (ICE.isInvalid()) 13701 return ICE; 13702 BitWidth = ICE.get(); 13703 13704 if (Value != 0 && ZeroWidth) 13705 *ZeroWidth = false; 13706 13707 // Zero-width bitfield is ok for anonymous field. 13708 if (Value == 0 && FieldName) 13709 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName; 13710 13711 if (Value.isSigned() && Value.isNegative()) { 13712 if (FieldName) 13713 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) 13714 << FieldName << Value.toString(10); 13715 return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width) 13716 << Value.toString(10); 13717 } 13718 13719 if (!FieldTy->isDependentType()) { 13720 uint64_t TypeStorageSize = Context.getTypeSize(FieldTy); 13721 uint64_t TypeWidth = Context.getIntWidth(FieldTy); 13722 bool BitfieldIsOverwide = Value.ugt(TypeWidth); 13723 13724 // Over-wide bitfields are an error in C or when using the MSVC bitfield 13725 // ABI. 13726 bool CStdConstraintViolation = 13727 BitfieldIsOverwide && !getLangOpts().CPlusPlus; 13728 bool MSBitfieldViolation = 13729 Value.ugt(TypeStorageSize) && 13730 (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft()); 13731 if (CStdConstraintViolation || MSBitfieldViolation) { 13732 unsigned DiagWidth = 13733 CStdConstraintViolation ? TypeWidth : TypeStorageSize; 13734 if (FieldName) 13735 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width) 13736 << FieldName << (unsigned)Value.getZExtValue() 13737 << !CStdConstraintViolation << DiagWidth; 13738 13739 return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width) 13740 << (unsigned)Value.getZExtValue() << !CStdConstraintViolation 13741 << DiagWidth; 13742 } 13743 13744 // Warn on types where the user might conceivably expect to get all 13745 // specified bits as value bits: that's all integral types other than 13746 // 'bool'. 13747 if (BitfieldIsOverwide && !FieldTy->isBooleanType()) { 13748 if (FieldName) 13749 Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width) 13750 << FieldName << (unsigned)Value.getZExtValue() 13751 << (unsigned)TypeWidth; 13752 else 13753 Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width) 13754 << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth; 13755 } 13756 } 13757 13758 return BitWidth; 13759 } 13760 13761 /// ActOnField - Each field of a C struct/union is passed into this in order 13762 /// to create a FieldDecl object for it. 13763 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart, 13764 Declarator &D, Expr *BitfieldWidth) { 13765 FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD), 13766 DeclStart, D, static_cast<Expr*>(BitfieldWidth), 13767 /*InitStyle=*/ICIS_NoInit, AS_public); 13768 return Res; 13769 } 13770 13771 /// HandleField - Analyze a field of a C struct or a C++ data member. 13772 /// 13773 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record, 13774 SourceLocation DeclStart, 13775 Declarator &D, Expr *BitWidth, 13776 InClassInitStyle InitStyle, 13777 AccessSpecifier AS) { 13778 if (D.isDecompositionDeclarator()) { 13779 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); 13780 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) 13781 << Decomp.getSourceRange(); 13782 return nullptr; 13783 } 13784 13785 IdentifierInfo *II = D.getIdentifier(); 13786 SourceLocation Loc = DeclStart; 13787 if (II) Loc = D.getIdentifierLoc(); 13788 13789 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 13790 QualType T = TInfo->getType(); 13791 if (getLangOpts().CPlusPlus) { 13792 CheckExtraCXXDefaultArguments(D); 13793 13794 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 13795 UPPC_DataMemberType)) { 13796 D.setInvalidType(); 13797 T = Context.IntTy; 13798 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 13799 } 13800 } 13801 13802 // TR 18037 does not allow fields to be declared with address spaces. 13803 if (T.getQualifiers().hasAddressSpace()) { 13804 Diag(Loc, diag::err_field_with_address_space); 13805 D.setInvalidType(); 13806 } 13807 13808 // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be 13809 // used as structure or union field: image, sampler, event or block types. 13810 if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() || 13811 T->isSamplerT() || T->isBlockPointerType())) { 13812 Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T; 13813 D.setInvalidType(); 13814 } 13815 13816 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 13817 13818 if (D.getDeclSpec().isInlineSpecified()) 13819 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 13820 << getLangOpts().CPlusPlus1z; 13821 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 13822 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 13823 diag::err_invalid_thread) 13824 << DeclSpec::getSpecifierName(TSCS); 13825 13826 // Check to see if this name was declared as a member previously 13827 NamedDecl *PrevDecl = nullptr; 13828 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration); 13829 LookupName(Previous, S); 13830 switch (Previous.getResultKind()) { 13831 case LookupResult::Found: 13832 case LookupResult::FoundUnresolvedValue: 13833 PrevDecl = Previous.getAsSingle<NamedDecl>(); 13834 break; 13835 13836 case LookupResult::FoundOverloaded: 13837 PrevDecl = Previous.getRepresentativeDecl(); 13838 break; 13839 13840 case LookupResult::NotFound: 13841 case LookupResult::NotFoundInCurrentInstantiation: 13842 case LookupResult::Ambiguous: 13843 break; 13844 } 13845 Previous.suppressDiagnostics(); 13846 13847 if (PrevDecl && PrevDecl->isTemplateParameter()) { 13848 // Maybe we will complain about the shadowed template parameter. 13849 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 13850 // Just pretend that we didn't see the previous declaration. 13851 PrevDecl = nullptr; 13852 } 13853 13854 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 13855 PrevDecl = nullptr; 13856 13857 bool Mutable 13858 = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable); 13859 SourceLocation TSSL = D.getLocStart(); 13860 FieldDecl *NewFD 13861 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, 13862 TSSL, AS, PrevDecl, &D); 13863 13864 if (NewFD->isInvalidDecl()) 13865 Record->setInvalidDecl(); 13866 13867 if (D.getDeclSpec().isModulePrivateSpecified()) 13868 NewFD->setModulePrivate(); 13869 13870 if (NewFD->isInvalidDecl() && PrevDecl) { 13871 // Don't introduce NewFD into scope; there's already something 13872 // with the same name in the same scope. 13873 } else if (II) { 13874 PushOnScopeChains(NewFD, S); 13875 } else 13876 Record->addDecl(NewFD); 13877 13878 return NewFD; 13879 } 13880 13881 /// \brief Build a new FieldDecl and check its well-formedness. 13882 /// 13883 /// This routine builds a new FieldDecl given the fields name, type, 13884 /// record, etc. \p PrevDecl should refer to any previous declaration 13885 /// with the same name and in the same scope as the field to be 13886 /// created. 13887 /// 13888 /// \returns a new FieldDecl. 13889 /// 13890 /// \todo The Declarator argument is a hack. It will be removed once 13891 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T, 13892 TypeSourceInfo *TInfo, 13893 RecordDecl *Record, SourceLocation Loc, 13894 bool Mutable, Expr *BitWidth, 13895 InClassInitStyle InitStyle, 13896 SourceLocation TSSL, 13897 AccessSpecifier AS, NamedDecl *PrevDecl, 13898 Declarator *D) { 13899 IdentifierInfo *II = Name.getAsIdentifierInfo(); 13900 bool InvalidDecl = false; 13901 if (D) InvalidDecl = D->isInvalidType(); 13902 13903 // If we receive a broken type, recover by assuming 'int' and 13904 // marking this declaration as invalid. 13905 if (T.isNull()) { 13906 InvalidDecl = true; 13907 T = Context.IntTy; 13908 } 13909 13910 QualType EltTy = Context.getBaseElementType(T); 13911 if (!EltTy->isDependentType()) { 13912 if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) { 13913 // Fields of incomplete type force their record to be invalid. 13914 Record->setInvalidDecl(); 13915 InvalidDecl = true; 13916 } else { 13917 NamedDecl *Def; 13918 EltTy->isIncompleteType(&Def); 13919 if (Def && Def->isInvalidDecl()) { 13920 Record->setInvalidDecl(); 13921 InvalidDecl = true; 13922 } 13923 } 13924 } 13925 13926 // OpenCL v1.2 s6.9.c: bitfields are not supported. 13927 if (BitWidth && getLangOpts().OpenCL) { 13928 Diag(Loc, diag::err_opencl_bitfields); 13929 InvalidDecl = true; 13930 } 13931 13932 // C99 6.7.2.1p8: A member of a structure or union may have any type other 13933 // than a variably modified type. 13934 if (!InvalidDecl && T->isVariablyModifiedType()) { 13935 bool SizeIsNegative; 13936 llvm::APSInt Oversized; 13937 13938 TypeSourceInfo *FixedTInfo = 13939 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 13940 SizeIsNegative, 13941 Oversized); 13942 if (FixedTInfo) { 13943 Diag(Loc, diag::warn_illegal_constant_array_size); 13944 TInfo = FixedTInfo; 13945 T = FixedTInfo->getType(); 13946 } else { 13947 if (SizeIsNegative) 13948 Diag(Loc, diag::err_typecheck_negative_array_size); 13949 else if (Oversized.getBoolValue()) 13950 Diag(Loc, diag::err_array_too_large) 13951 << Oversized.toString(10); 13952 else 13953 Diag(Loc, diag::err_typecheck_field_variable_size); 13954 InvalidDecl = true; 13955 } 13956 } 13957 13958 // Fields can not have abstract class types 13959 if (!InvalidDecl && RequireNonAbstractType(Loc, T, 13960 diag::err_abstract_type_in_decl, 13961 AbstractFieldType)) 13962 InvalidDecl = true; 13963 13964 bool ZeroWidth = false; 13965 if (InvalidDecl) 13966 BitWidth = nullptr; 13967 // If this is declared as a bit-field, check the bit-field. 13968 if (BitWidth) { 13969 BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth, 13970 &ZeroWidth).get(); 13971 if (!BitWidth) { 13972 InvalidDecl = true; 13973 BitWidth = nullptr; 13974 ZeroWidth = false; 13975 } 13976 } 13977 13978 // Check that 'mutable' is consistent with the type of the declaration. 13979 if (!InvalidDecl && Mutable) { 13980 unsigned DiagID = 0; 13981 if (T->isReferenceType()) 13982 DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference 13983 : diag::err_mutable_reference; 13984 else if (T.isConstQualified()) 13985 DiagID = diag::err_mutable_const; 13986 13987 if (DiagID) { 13988 SourceLocation ErrLoc = Loc; 13989 if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid()) 13990 ErrLoc = D->getDeclSpec().getStorageClassSpecLoc(); 13991 Diag(ErrLoc, DiagID); 13992 if (DiagID != diag::ext_mutable_reference) { 13993 Mutable = false; 13994 InvalidDecl = true; 13995 } 13996 } 13997 } 13998 13999 // C++11 [class.union]p8 (DR1460): 14000 // At most one variant member of a union may have a 14001 // brace-or-equal-initializer. 14002 if (InitStyle != ICIS_NoInit) 14003 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc); 14004 14005 FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo, 14006 BitWidth, Mutable, InitStyle); 14007 if (InvalidDecl) 14008 NewFD->setInvalidDecl(); 14009 14010 if (PrevDecl && !isa<TagDecl>(PrevDecl)) { 14011 Diag(Loc, diag::err_duplicate_member) << II; 14012 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 14013 NewFD->setInvalidDecl(); 14014 } 14015 14016 if (!InvalidDecl && getLangOpts().CPlusPlus) { 14017 if (Record->isUnion()) { 14018 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 14019 CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl()); 14020 if (RDecl->getDefinition()) { 14021 // C++ [class.union]p1: An object of a class with a non-trivial 14022 // constructor, a non-trivial copy constructor, a non-trivial 14023 // destructor, or a non-trivial copy assignment operator 14024 // cannot be a member of a union, nor can an array of such 14025 // objects. 14026 if (CheckNontrivialField(NewFD)) 14027 NewFD->setInvalidDecl(); 14028 } 14029 } 14030 14031 // C++ [class.union]p1: If a union contains a member of reference type, 14032 // the program is ill-formed, except when compiling with MSVC extensions 14033 // enabled. 14034 if (EltTy->isReferenceType()) { 14035 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 14036 diag::ext_union_member_of_reference_type : 14037 diag::err_union_member_of_reference_type) 14038 << NewFD->getDeclName() << EltTy; 14039 if (!getLangOpts().MicrosoftExt) 14040 NewFD->setInvalidDecl(); 14041 } 14042 } 14043 } 14044 14045 // FIXME: We need to pass in the attributes given an AST 14046 // representation, not a parser representation. 14047 if (D) { 14048 // FIXME: The current scope is almost... but not entirely... correct here. 14049 ProcessDeclAttributes(getCurScope(), NewFD, *D); 14050 14051 if (NewFD->hasAttrs()) 14052 CheckAlignasUnderalignment(NewFD); 14053 } 14054 14055 // In auto-retain/release, infer strong retension for fields of 14056 // retainable type. 14057 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD)) 14058 NewFD->setInvalidDecl(); 14059 14060 if (T.isObjCGCWeak()) 14061 Diag(Loc, diag::warn_attribute_weak_on_field); 14062 14063 NewFD->setAccess(AS); 14064 return NewFD; 14065 } 14066 14067 bool Sema::CheckNontrivialField(FieldDecl *FD) { 14068 assert(FD); 14069 assert(getLangOpts().CPlusPlus && "valid check only for C++"); 14070 14071 if (FD->isInvalidDecl() || FD->getType()->isDependentType()) 14072 return false; 14073 14074 QualType EltTy = Context.getBaseElementType(FD->getType()); 14075 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 14076 CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl()); 14077 if (RDecl->getDefinition()) { 14078 // We check for copy constructors before constructors 14079 // because otherwise we'll never get complaints about 14080 // copy constructors. 14081 14082 CXXSpecialMember member = CXXInvalid; 14083 // We're required to check for any non-trivial constructors. Since the 14084 // implicit default constructor is suppressed if there are any 14085 // user-declared constructors, we just need to check that there is a 14086 // trivial default constructor and a trivial copy constructor. (We don't 14087 // worry about move constructors here, since this is a C++98 check.) 14088 if (RDecl->hasNonTrivialCopyConstructor()) 14089 member = CXXCopyConstructor; 14090 else if (!RDecl->hasTrivialDefaultConstructor()) 14091 member = CXXDefaultConstructor; 14092 else if (RDecl->hasNonTrivialCopyAssignment()) 14093 member = CXXCopyAssignment; 14094 else if (RDecl->hasNonTrivialDestructor()) 14095 member = CXXDestructor; 14096 14097 if (member != CXXInvalid) { 14098 if (!getLangOpts().CPlusPlus11 && 14099 getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) { 14100 // Objective-C++ ARC: it is an error to have a non-trivial field of 14101 // a union. However, system headers in Objective-C programs 14102 // occasionally have Objective-C lifetime objects within unions, 14103 // and rather than cause the program to fail, we make those 14104 // members unavailable. 14105 SourceLocation Loc = FD->getLocation(); 14106 if (getSourceManager().isInSystemHeader(Loc)) { 14107 if (!FD->hasAttr<UnavailableAttr>()) 14108 FD->addAttr(UnavailableAttr::CreateImplicit(Context, "", 14109 UnavailableAttr::IR_ARCFieldWithOwnership, Loc)); 14110 return false; 14111 } 14112 } 14113 14114 Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ? 14115 diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member : 14116 diag::err_illegal_union_or_anon_struct_member) 14117 << FD->getParent()->isUnion() << FD->getDeclName() << member; 14118 DiagnoseNontrivial(RDecl, member); 14119 return !getLangOpts().CPlusPlus11; 14120 } 14121 } 14122 } 14123 14124 return false; 14125 } 14126 14127 /// TranslateIvarVisibility - Translate visibility from a token ID to an 14128 /// AST enum value. 14129 static ObjCIvarDecl::AccessControl 14130 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) { 14131 switch (ivarVisibility) { 14132 default: llvm_unreachable("Unknown visitibility kind"); 14133 case tok::objc_private: return ObjCIvarDecl::Private; 14134 case tok::objc_public: return ObjCIvarDecl::Public; 14135 case tok::objc_protected: return ObjCIvarDecl::Protected; 14136 case tok::objc_package: return ObjCIvarDecl::Package; 14137 } 14138 } 14139 14140 /// ActOnIvar - Each ivar field of an objective-c class is passed into this 14141 /// in order to create an IvarDecl object for it. 14142 Decl *Sema::ActOnIvar(Scope *S, 14143 SourceLocation DeclStart, 14144 Declarator &D, Expr *BitfieldWidth, 14145 tok::ObjCKeywordKind Visibility) { 14146 14147 IdentifierInfo *II = D.getIdentifier(); 14148 Expr *BitWidth = (Expr*)BitfieldWidth; 14149 SourceLocation Loc = DeclStart; 14150 if (II) Loc = D.getIdentifierLoc(); 14151 14152 // FIXME: Unnamed fields can be handled in various different ways, for 14153 // example, unnamed unions inject all members into the struct namespace! 14154 14155 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 14156 QualType T = TInfo->getType(); 14157 14158 if (BitWidth) { 14159 // 6.7.2.1p3, 6.7.2.1p4 14160 BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get(); 14161 if (!BitWidth) 14162 D.setInvalidType(); 14163 } else { 14164 // Not a bitfield. 14165 14166 // validate II. 14167 14168 } 14169 if (T->isReferenceType()) { 14170 Diag(Loc, diag::err_ivar_reference_type); 14171 D.setInvalidType(); 14172 } 14173 // C99 6.7.2.1p8: A member of a structure or union may have any type other 14174 // than a variably modified type. 14175 else if (T->isVariablyModifiedType()) { 14176 Diag(Loc, diag::err_typecheck_ivar_variable_size); 14177 D.setInvalidType(); 14178 } 14179 14180 // Get the visibility (access control) for this ivar. 14181 ObjCIvarDecl::AccessControl ac = 14182 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility) 14183 : ObjCIvarDecl::None; 14184 // Must set ivar's DeclContext to its enclosing interface. 14185 ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext); 14186 if (!EnclosingDecl || EnclosingDecl->isInvalidDecl()) 14187 return nullptr; 14188 ObjCContainerDecl *EnclosingContext; 14189 if (ObjCImplementationDecl *IMPDecl = 14190 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 14191 if (LangOpts.ObjCRuntime.isFragile()) { 14192 // Case of ivar declared in an implementation. Context is that of its class. 14193 EnclosingContext = IMPDecl->getClassInterface(); 14194 assert(EnclosingContext && "Implementation has no class interface!"); 14195 } 14196 else 14197 EnclosingContext = EnclosingDecl; 14198 } else { 14199 if (ObjCCategoryDecl *CDecl = 14200 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 14201 if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) { 14202 Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension(); 14203 return nullptr; 14204 } 14205 } 14206 EnclosingContext = EnclosingDecl; 14207 } 14208 14209 // Construct the decl. 14210 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext, 14211 DeclStart, Loc, II, T, 14212 TInfo, ac, (Expr *)BitfieldWidth); 14213 14214 if (II) { 14215 NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName, 14216 ForRedeclaration); 14217 if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S) 14218 && !isa<TagDecl>(PrevDecl)) { 14219 Diag(Loc, diag::err_duplicate_member) << II; 14220 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 14221 NewID->setInvalidDecl(); 14222 } 14223 } 14224 14225 // Process attributes attached to the ivar. 14226 ProcessDeclAttributes(S, NewID, D); 14227 14228 if (D.isInvalidType()) 14229 NewID->setInvalidDecl(); 14230 14231 // In ARC, infer 'retaining' for ivars of retainable type. 14232 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID)) 14233 NewID->setInvalidDecl(); 14234 14235 if (D.getDeclSpec().isModulePrivateSpecified()) 14236 NewID->setModulePrivate(); 14237 14238 if (II) { 14239 // FIXME: When interfaces are DeclContexts, we'll need to add 14240 // these to the interface. 14241 S->AddDecl(NewID); 14242 IdResolver.AddDecl(NewID); 14243 } 14244 14245 if (LangOpts.ObjCRuntime.isNonFragile() && 14246 !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl)) 14247 Diag(Loc, diag::warn_ivars_in_interface); 14248 14249 return NewID; 14250 } 14251 14252 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for 14253 /// class and class extensions. For every class \@interface and class 14254 /// extension \@interface, if the last ivar is a bitfield of any type, 14255 /// then add an implicit `char :0` ivar to the end of that interface. 14256 void Sema::ActOnLastBitfield(SourceLocation DeclLoc, 14257 SmallVectorImpl<Decl *> &AllIvarDecls) { 14258 if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty()) 14259 return; 14260 14261 Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1]; 14262 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl); 14263 14264 if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0) 14265 return; 14266 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext); 14267 if (!ID) { 14268 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) { 14269 if (!CD->IsClassExtension()) 14270 return; 14271 } 14272 // No need to add this to end of @implementation. 14273 else 14274 return; 14275 } 14276 // All conditions are met. Add a new bitfield to the tail end of ivars. 14277 llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0); 14278 Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc); 14279 14280 Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext), 14281 DeclLoc, DeclLoc, nullptr, 14282 Context.CharTy, 14283 Context.getTrivialTypeSourceInfo(Context.CharTy, 14284 DeclLoc), 14285 ObjCIvarDecl::Private, BW, 14286 true); 14287 AllIvarDecls.push_back(Ivar); 14288 } 14289 14290 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl, 14291 ArrayRef<Decl *> Fields, SourceLocation LBrac, 14292 SourceLocation RBrac, AttributeList *Attr) { 14293 assert(EnclosingDecl && "missing record or interface decl"); 14294 14295 // If this is an Objective-C @implementation or category and we have 14296 // new fields here we should reset the layout of the interface since 14297 // it will now change. 14298 if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) { 14299 ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl); 14300 switch (DC->getKind()) { 14301 default: break; 14302 case Decl::ObjCCategory: 14303 Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface()); 14304 break; 14305 case Decl::ObjCImplementation: 14306 Context. 14307 ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface()); 14308 break; 14309 } 14310 } 14311 14312 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl); 14313 14314 // Start counting up the number of named members; make sure to include 14315 // members of anonymous structs and unions in the total. 14316 unsigned NumNamedMembers = 0; 14317 if (Record) { 14318 for (const auto *I : Record->decls()) { 14319 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) 14320 if (IFD->getDeclName()) 14321 ++NumNamedMembers; 14322 } 14323 } 14324 14325 // Verify that all the fields are okay. 14326 SmallVector<FieldDecl*, 32> RecFields; 14327 14328 bool ARCErrReported = false; 14329 for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end(); 14330 i != end; ++i) { 14331 FieldDecl *FD = cast<FieldDecl>(*i); 14332 14333 // Get the type for the field. 14334 const Type *FDTy = FD->getType().getTypePtr(); 14335 14336 if (!FD->isAnonymousStructOrUnion()) { 14337 // Remember all fields written by the user. 14338 RecFields.push_back(FD); 14339 } 14340 14341 // If the field is already invalid for some reason, don't emit more 14342 // diagnostics about it. 14343 if (FD->isInvalidDecl()) { 14344 EnclosingDecl->setInvalidDecl(); 14345 continue; 14346 } 14347 14348 // C99 6.7.2.1p2: 14349 // A structure or union shall not contain a member with 14350 // incomplete or function type (hence, a structure shall not 14351 // contain an instance of itself, but may contain a pointer to 14352 // an instance of itself), except that the last member of a 14353 // structure with more than one named member may have incomplete 14354 // array type; such a structure (and any union containing, 14355 // possibly recursively, a member that is such a structure) 14356 // shall not be a member of a structure or an element of an 14357 // array. 14358 if (FDTy->isFunctionType()) { 14359 // Field declared as a function. 14360 Diag(FD->getLocation(), diag::err_field_declared_as_function) 14361 << FD->getDeclName(); 14362 FD->setInvalidDecl(); 14363 EnclosingDecl->setInvalidDecl(); 14364 continue; 14365 } else if (FDTy->isIncompleteArrayType() && Record && 14366 ((i + 1 == Fields.end() && !Record->isUnion()) || 14367 ((getLangOpts().MicrosoftExt || 14368 getLangOpts().CPlusPlus) && 14369 (i + 1 == Fields.end() || Record->isUnion())))) { 14370 // Flexible array member. 14371 // Microsoft and g++ is more permissive regarding flexible array. 14372 // It will accept flexible array in union and also 14373 // as the sole element of a struct/class. 14374 unsigned DiagID = 0; 14375 if (Record->isUnion()) 14376 DiagID = getLangOpts().MicrosoftExt 14377 ? diag::ext_flexible_array_union_ms 14378 : getLangOpts().CPlusPlus 14379 ? diag::ext_flexible_array_union_gnu 14380 : diag::err_flexible_array_union; 14381 else if (NumNamedMembers < 1) 14382 DiagID = getLangOpts().MicrosoftExt 14383 ? diag::ext_flexible_array_empty_aggregate_ms 14384 : getLangOpts().CPlusPlus 14385 ? diag::ext_flexible_array_empty_aggregate_gnu 14386 : diag::err_flexible_array_empty_aggregate; 14387 14388 if (DiagID) 14389 Diag(FD->getLocation(), DiagID) << FD->getDeclName() 14390 << Record->getTagKind(); 14391 // While the layout of types that contain virtual bases is not specified 14392 // by the C++ standard, both the Itanium and Microsoft C++ ABIs place 14393 // virtual bases after the derived members. This would make a flexible 14394 // array member declared at the end of an object not adjacent to the end 14395 // of the type. 14396 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record)) 14397 if (RD->getNumVBases() != 0) 14398 Diag(FD->getLocation(), diag::err_flexible_array_virtual_base) 14399 << FD->getDeclName() << Record->getTagKind(); 14400 if (!getLangOpts().C99) 14401 Diag(FD->getLocation(), diag::ext_c99_flexible_array_member) 14402 << FD->getDeclName() << Record->getTagKind(); 14403 14404 // If the element type has a non-trivial destructor, we would not 14405 // implicitly destroy the elements, so disallow it for now. 14406 // 14407 // FIXME: GCC allows this. We should probably either implicitly delete 14408 // the destructor of the containing class, or just allow this. 14409 QualType BaseElem = Context.getBaseElementType(FD->getType()); 14410 if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) { 14411 Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor) 14412 << FD->getDeclName() << FD->getType(); 14413 FD->setInvalidDecl(); 14414 EnclosingDecl->setInvalidDecl(); 14415 continue; 14416 } 14417 // Okay, we have a legal flexible array member at the end of the struct. 14418 Record->setHasFlexibleArrayMember(true); 14419 } else if (!FDTy->isDependentType() && 14420 RequireCompleteType(FD->getLocation(), FD->getType(), 14421 diag::err_field_incomplete)) { 14422 // Incomplete type 14423 FD->setInvalidDecl(); 14424 EnclosingDecl->setInvalidDecl(); 14425 continue; 14426 } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) { 14427 if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) { 14428 // A type which contains a flexible array member is considered to be a 14429 // flexible array member. 14430 Record->setHasFlexibleArrayMember(true); 14431 if (!Record->isUnion()) { 14432 // If this is a struct/class and this is not the last element, reject 14433 // it. Note that GCC supports variable sized arrays in the middle of 14434 // structures. 14435 if (i + 1 != Fields.end()) 14436 Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct) 14437 << FD->getDeclName() << FD->getType(); 14438 else { 14439 // We support flexible arrays at the end of structs in 14440 // other structs as an extension. 14441 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct) 14442 << FD->getDeclName(); 14443 } 14444 } 14445 } 14446 if (isa<ObjCContainerDecl>(EnclosingDecl) && 14447 RequireNonAbstractType(FD->getLocation(), FD->getType(), 14448 diag::err_abstract_type_in_decl, 14449 AbstractIvarType)) { 14450 // Ivars can not have abstract class types 14451 FD->setInvalidDecl(); 14452 } 14453 if (Record && FDTTy->getDecl()->hasObjectMember()) 14454 Record->setHasObjectMember(true); 14455 if (Record && FDTTy->getDecl()->hasVolatileMember()) 14456 Record->setHasVolatileMember(true); 14457 } else if (FDTy->isObjCObjectType()) { 14458 /// A field cannot be an Objective-c object 14459 Diag(FD->getLocation(), diag::err_statically_allocated_object) 14460 << FixItHint::CreateInsertion(FD->getLocation(), "*"); 14461 QualType T = Context.getObjCObjectPointerType(FD->getType()); 14462 FD->setType(T); 14463 } else if (getLangOpts().ObjCAutoRefCount && Record && !ARCErrReported && 14464 (!getLangOpts().CPlusPlus || Record->isUnion())) { 14465 // It's an error in ARC if a field has lifetime. 14466 // We don't want to report this in a system header, though, 14467 // so we just make the field unavailable. 14468 // FIXME: that's really not sufficient; we need to make the type 14469 // itself invalid to, say, initialize or copy. 14470 QualType T = FD->getType(); 14471 Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime(); 14472 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone) { 14473 SourceLocation loc = FD->getLocation(); 14474 if (getSourceManager().isInSystemHeader(loc)) { 14475 if (!FD->hasAttr<UnavailableAttr>()) { 14476 FD->addAttr(UnavailableAttr::CreateImplicit(Context, "", 14477 UnavailableAttr::IR_ARCFieldWithOwnership, loc)); 14478 } 14479 } else { 14480 Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag) 14481 << T->isBlockPointerType() << Record->getTagKind(); 14482 } 14483 ARCErrReported = true; 14484 } 14485 } else if (getLangOpts().ObjC1 && 14486 getLangOpts().getGC() != LangOptions::NonGC && 14487 Record && !Record->hasObjectMember()) { 14488 if (FD->getType()->isObjCObjectPointerType() || 14489 FD->getType().isObjCGCStrong()) 14490 Record->setHasObjectMember(true); 14491 else if (Context.getAsArrayType(FD->getType())) { 14492 QualType BaseType = Context.getBaseElementType(FD->getType()); 14493 if (BaseType->isRecordType() && 14494 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember()) 14495 Record->setHasObjectMember(true); 14496 else if (BaseType->isObjCObjectPointerType() || 14497 BaseType.isObjCGCStrong()) 14498 Record->setHasObjectMember(true); 14499 } 14500 } 14501 if (Record && FD->getType().isVolatileQualified()) 14502 Record->setHasVolatileMember(true); 14503 // Keep track of the number of named members. 14504 if (FD->getIdentifier()) 14505 ++NumNamedMembers; 14506 } 14507 14508 // Okay, we successfully defined 'Record'. 14509 if (Record) { 14510 bool Completed = false; 14511 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) { 14512 if (!CXXRecord->isInvalidDecl()) { 14513 // Set access bits correctly on the directly-declared conversions. 14514 for (CXXRecordDecl::conversion_iterator 14515 I = CXXRecord->conversion_begin(), 14516 E = CXXRecord->conversion_end(); I != E; ++I) 14517 I.setAccess((*I)->getAccess()); 14518 } 14519 14520 if (!CXXRecord->isDependentType()) { 14521 if (CXXRecord->hasUserDeclaredDestructor()) { 14522 // Adjust user-defined destructor exception spec. 14523 if (getLangOpts().CPlusPlus11) 14524 AdjustDestructorExceptionSpec(CXXRecord, 14525 CXXRecord->getDestructor()); 14526 } 14527 14528 if (!CXXRecord->isInvalidDecl()) { 14529 // Add any implicitly-declared members to this class. 14530 AddImplicitlyDeclaredMembersToClass(CXXRecord); 14531 14532 // If we have virtual base classes, we may end up finding multiple 14533 // final overriders for a given virtual function. Check for this 14534 // problem now. 14535 if (CXXRecord->getNumVBases()) { 14536 CXXFinalOverriderMap FinalOverriders; 14537 CXXRecord->getFinalOverriders(FinalOverriders); 14538 14539 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 14540 MEnd = FinalOverriders.end(); 14541 M != MEnd; ++M) { 14542 for (OverridingMethods::iterator SO = M->second.begin(), 14543 SOEnd = M->second.end(); 14544 SO != SOEnd; ++SO) { 14545 assert(SO->second.size() > 0 && 14546 "Virtual function without overridding functions?"); 14547 if (SO->second.size() == 1) 14548 continue; 14549 14550 // C++ [class.virtual]p2: 14551 // In a derived class, if a virtual member function of a base 14552 // class subobject has more than one final overrider the 14553 // program is ill-formed. 14554 Diag(Record->getLocation(), diag::err_multiple_final_overriders) 14555 << (const NamedDecl *)M->first << Record; 14556 Diag(M->first->getLocation(), 14557 diag::note_overridden_virtual_function); 14558 for (OverridingMethods::overriding_iterator 14559 OM = SO->second.begin(), 14560 OMEnd = SO->second.end(); 14561 OM != OMEnd; ++OM) 14562 Diag(OM->Method->getLocation(), diag::note_final_overrider) 14563 << (const NamedDecl *)M->first << OM->Method->getParent(); 14564 14565 Record->setInvalidDecl(); 14566 } 14567 } 14568 CXXRecord->completeDefinition(&FinalOverriders); 14569 Completed = true; 14570 } 14571 } 14572 } 14573 } 14574 14575 if (!Completed) 14576 Record->completeDefinition(); 14577 14578 // We may have deferred checking for a deleted destructor. Check now. 14579 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) { 14580 auto *Dtor = CXXRecord->getDestructor(); 14581 if (Dtor && Dtor->isImplicit() && 14582 ShouldDeleteSpecialMember(Dtor, CXXDestructor)) 14583 SetDeclDeleted(Dtor, CXXRecord->getLocation()); 14584 } 14585 14586 if (Record->hasAttrs()) { 14587 CheckAlignasUnderalignment(Record); 14588 14589 if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>()) 14590 checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record), 14591 IA->getRange(), IA->getBestCase(), 14592 IA->getSemanticSpelling()); 14593 } 14594 14595 // Check if the structure/union declaration is a type that can have zero 14596 // size in C. For C this is a language extension, for C++ it may cause 14597 // compatibility problems. 14598 bool CheckForZeroSize; 14599 if (!getLangOpts().CPlusPlus) { 14600 CheckForZeroSize = true; 14601 } else { 14602 // For C++ filter out types that cannot be referenced in C code. 14603 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record); 14604 CheckForZeroSize = 14605 CXXRecord->getLexicalDeclContext()->isExternCContext() && 14606 !CXXRecord->isDependentType() && 14607 CXXRecord->isCLike(); 14608 } 14609 if (CheckForZeroSize) { 14610 bool ZeroSize = true; 14611 bool IsEmpty = true; 14612 unsigned NonBitFields = 0; 14613 for (RecordDecl::field_iterator I = Record->field_begin(), 14614 E = Record->field_end(); 14615 (NonBitFields == 0 || ZeroSize) && I != E; ++I) { 14616 IsEmpty = false; 14617 if (I->isUnnamedBitfield()) { 14618 if (I->getBitWidthValue(Context) > 0) 14619 ZeroSize = false; 14620 } else { 14621 ++NonBitFields; 14622 QualType FieldType = I->getType(); 14623 if (FieldType->isIncompleteType() || 14624 !Context.getTypeSizeInChars(FieldType).isZero()) 14625 ZeroSize = false; 14626 } 14627 } 14628 14629 // Empty structs are an extension in C (C99 6.7.2.1p7). They are 14630 // allowed in C++, but warn if its declaration is inside 14631 // extern "C" block. 14632 if (ZeroSize) { 14633 Diag(RecLoc, getLangOpts().CPlusPlus ? 14634 diag::warn_zero_size_struct_union_in_extern_c : 14635 diag::warn_zero_size_struct_union_compat) 14636 << IsEmpty << Record->isUnion() << (NonBitFields > 1); 14637 } 14638 14639 // Structs without named members are extension in C (C99 6.7.2.1p7), 14640 // but are accepted by GCC. 14641 if (NonBitFields == 0 && !getLangOpts().CPlusPlus) { 14642 Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union : 14643 diag::ext_no_named_members_in_struct_union) 14644 << Record->isUnion(); 14645 } 14646 } 14647 } else { 14648 ObjCIvarDecl **ClsFields = 14649 reinterpret_cast<ObjCIvarDecl**>(RecFields.data()); 14650 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) { 14651 ID->setEndOfDefinitionLoc(RBrac); 14652 // Add ivar's to class's DeclContext. 14653 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 14654 ClsFields[i]->setLexicalDeclContext(ID); 14655 ID->addDecl(ClsFields[i]); 14656 } 14657 // Must enforce the rule that ivars in the base classes may not be 14658 // duplicates. 14659 if (ID->getSuperClass()) 14660 DiagnoseDuplicateIvars(ID, ID->getSuperClass()); 14661 } else if (ObjCImplementationDecl *IMPDecl = 14662 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 14663 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl"); 14664 for (unsigned I = 0, N = RecFields.size(); I != N; ++I) 14665 // Ivar declared in @implementation never belongs to the implementation. 14666 // Only it is in implementation's lexical context. 14667 ClsFields[I]->setLexicalDeclContext(IMPDecl); 14668 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac); 14669 IMPDecl->setIvarLBraceLoc(LBrac); 14670 IMPDecl->setIvarRBraceLoc(RBrac); 14671 } else if (ObjCCategoryDecl *CDecl = 14672 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 14673 // case of ivars in class extension; all other cases have been 14674 // reported as errors elsewhere. 14675 // FIXME. Class extension does not have a LocEnd field. 14676 // CDecl->setLocEnd(RBrac); 14677 // Add ivar's to class extension's DeclContext. 14678 // Diagnose redeclaration of private ivars. 14679 ObjCInterfaceDecl *IDecl = CDecl->getClassInterface(); 14680 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 14681 if (IDecl) { 14682 if (const ObjCIvarDecl *ClsIvar = 14683 IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) { 14684 Diag(ClsFields[i]->getLocation(), 14685 diag::err_duplicate_ivar_declaration); 14686 Diag(ClsIvar->getLocation(), diag::note_previous_definition); 14687 continue; 14688 } 14689 for (const auto *Ext : IDecl->known_extensions()) { 14690 if (const ObjCIvarDecl *ClsExtIvar 14691 = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) { 14692 Diag(ClsFields[i]->getLocation(), 14693 diag::err_duplicate_ivar_declaration); 14694 Diag(ClsExtIvar->getLocation(), diag::note_previous_definition); 14695 continue; 14696 } 14697 } 14698 } 14699 ClsFields[i]->setLexicalDeclContext(CDecl); 14700 CDecl->addDecl(ClsFields[i]); 14701 } 14702 CDecl->setIvarLBraceLoc(LBrac); 14703 CDecl->setIvarRBraceLoc(RBrac); 14704 } 14705 } 14706 14707 if (Attr) 14708 ProcessDeclAttributeList(S, Record, Attr); 14709 } 14710 14711 /// \brief Determine whether the given integral value is representable within 14712 /// the given type T. 14713 static bool isRepresentableIntegerValue(ASTContext &Context, 14714 llvm::APSInt &Value, 14715 QualType T) { 14716 assert(T->isIntegralType(Context) && "Integral type required!"); 14717 unsigned BitWidth = Context.getIntWidth(T); 14718 14719 if (Value.isUnsigned() || Value.isNonNegative()) { 14720 if (T->isSignedIntegerOrEnumerationType()) 14721 --BitWidth; 14722 return Value.getActiveBits() <= BitWidth; 14723 } 14724 return Value.getMinSignedBits() <= BitWidth; 14725 } 14726 14727 // \brief Given an integral type, return the next larger integral type 14728 // (or a NULL type of no such type exists). 14729 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) { 14730 // FIXME: Int128/UInt128 support, which also needs to be introduced into 14731 // enum checking below. 14732 assert(T->isIntegralType(Context) && "Integral type required!"); 14733 const unsigned NumTypes = 4; 14734 QualType SignedIntegralTypes[NumTypes] = { 14735 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy 14736 }; 14737 QualType UnsignedIntegralTypes[NumTypes] = { 14738 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, 14739 Context.UnsignedLongLongTy 14740 }; 14741 14742 unsigned BitWidth = Context.getTypeSize(T); 14743 QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes 14744 : UnsignedIntegralTypes; 14745 for (unsigned I = 0; I != NumTypes; ++I) 14746 if (Context.getTypeSize(Types[I]) > BitWidth) 14747 return Types[I]; 14748 14749 return QualType(); 14750 } 14751 14752 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum, 14753 EnumConstantDecl *LastEnumConst, 14754 SourceLocation IdLoc, 14755 IdentifierInfo *Id, 14756 Expr *Val) { 14757 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 14758 llvm::APSInt EnumVal(IntWidth); 14759 QualType EltTy; 14760 14761 if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue)) 14762 Val = nullptr; 14763 14764 if (Val) 14765 Val = DefaultLvalueConversion(Val).get(); 14766 14767 if (Val) { 14768 if (Enum->isDependentType() || Val->isTypeDependent()) 14769 EltTy = Context.DependentTy; 14770 else { 14771 SourceLocation ExpLoc; 14772 if (getLangOpts().CPlusPlus11 && Enum->isFixed() && 14773 !getLangOpts().MSVCCompat) { 14774 // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the 14775 // constant-expression in the enumerator-definition shall be a converted 14776 // constant expression of the underlying type. 14777 EltTy = Enum->getIntegerType(); 14778 ExprResult Converted = 14779 CheckConvertedConstantExpression(Val, EltTy, EnumVal, 14780 CCEK_Enumerator); 14781 if (Converted.isInvalid()) 14782 Val = nullptr; 14783 else 14784 Val = Converted.get(); 14785 } else if (!Val->isValueDependent() && 14786 !(Val = VerifyIntegerConstantExpression(Val, 14787 &EnumVal).get())) { 14788 // C99 6.7.2.2p2: Make sure we have an integer constant expression. 14789 } else { 14790 if (Enum->isFixed()) { 14791 EltTy = Enum->getIntegerType(); 14792 14793 // In Obj-C and Microsoft mode, require the enumeration value to be 14794 // representable in the underlying type of the enumeration. In C++11, 14795 // we perform a non-narrowing conversion as part of converted constant 14796 // expression checking. 14797 if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 14798 if (getLangOpts().MSVCCompat) { 14799 Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy; 14800 Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get(); 14801 } else 14802 Diag(IdLoc, diag::err_enumerator_too_large) << EltTy; 14803 } else 14804 Val = ImpCastExprToType(Val, EltTy, 14805 EltTy->isBooleanType() ? 14806 CK_IntegralToBoolean : CK_IntegralCast) 14807 .get(); 14808 } else if (getLangOpts().CPlusPlus) { 14809 // C++11 [dcl.enum]p5: 14810 // If the underlying type is not fixed, the type of each enumerator 14811 // is the type of its initializing value: 14812 // - If an initializer is specified for an enumerator, the 14813 // initializing value has the same type as the expression. 14814 EltTy = Val->getType(); 14815 } else { 14816 // C99 6.7.2.2p2: 14817 // The expression that defines the value of an enumeration constant 14818 // shall be an integer constant expression that has a value 14819 // representable as an int. 14820 14821 // Complain if the value is not representable in an int. 14822 if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy)) 14823 Diag(IdLoc, diag::ext_enum_value_not_int) 14824 << EnumVal.toString(10) << Val->getSourceRange() 14825 << (EnumVal.isUnsigned() || EnumVal.isNonNegative()); 14826 else if (!Context.hasSameType(Val->getType(), Context.IntTy)) { 14827 // Force the type of the expression to 'int'. 14828 Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get(); 14829 } 14830 EltTy = Val->getType(); 14831 } 14832 } 14833 } 14834 } 14835 14836 if (!Val) { 14837 if (Enum->isDependentType()) 14838 EltTy = Context.DependentTy; 14839 else if (!LastEnumConst) { 14840 // C++0x [dcl.enum]p5: 14841 // If the underlying type is not fixed, the type of each enumerator 14842 // is the type of its initializing value: 14843 // - If no initializer is specified for the first enumerator, the 14844 // initializing value has an unspecified integral type. 14845 // 14846 // GCC uses 'int' for its unspecified integral type, as does 14847 // C99 6.7.2.2p3. 14848 if (Enum->isFixed()) { 14849 EltTy = Enum->getIntegerType(); 14850 } 14851 else { 14852 EltTy = Context.IntTy; 14853 } 14854 } else { 14855 // Assign the last value + 1. 14856 EnumVal = LastEnumConst->getInitVal(); 14857 ++EnumVal; 14858 EltTy = LastEnumConst->getType(); 14859 14860 // Check for overflow on increment. 14861 if (EnumVal < LastEnumConst->getInitVal()) { 14862 // C++0x [dcl.enum]p5: 14863 // If the underlying type is not fixed, the type of each enumerator 14864 // is the type of its initializing value: 14865 // 14866 // - Otherwise the type of the initializing value is the same as 14867 // the type of the initializing value of the preceding enumerator 14868 // unless the incremented value is not representable in that type, 14869 // in which case the type is an unspecified integral type 14870 // sufficient to contain the incremented value. If no such type 14871 // exists, the program is ill-formed. 14872 QualType T = getNextLargerIntegralType(Context, EltTy); 14873 if (T.isNull() || Enum->isFixed()) { 14874 // There is no integral type larger enough to represent this 14875 // value. Complain, then allow the value to wrap around. 14876 EnumVal = LastEnumConst->getInitVal(); 14877 EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2); 14878 ++EnumVal; 14879 if (Enum->isFixed()) 14880 // When the underlying type is fixed, this is ill-formed. 14881 Diag(IdLoc, diag::err_enumerator_wrapped) 14882 << EnumVal.toString(10) 14883 << EltTy; 14884 else 14885 Diag(IdLoc, diag::ext_enumerator_increment_too_large) 14886 << EnumVal.toString(10); 14887 } else { 14888 EltTy = T; 14889 } 14890 14891 // Retrieve the last enumerator's value, extent that type to the 14892 // type that is supposed to be large enough to represent the incremented 14893 // value, then increment. 14894 EnumVal = LastEnumConst->getInitVal(); 14895 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 14896 EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy)); 14897 ++EnumVal; 14898 14899 // If we're not in C++, diagnose the overflow of enumerator values, 14900 // which in C99 means that the enumerator value is not representable in 14901 // an int (C99 6.7.2.2p2). However, we support GCC's extension that 14902 // permits enumerator values that are representable in some larger 14903 // integral type. 14904 if (!getLangOpts().CPlusPlus && !T.isNull()) 14905 Diag(IdLoc, diag::warn_enum_value_overflow); 14906 } else if (!getLangOpts().CPlusPlus && 14907 !isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 14908 // Enforce C99 6.7.2.2p2 even when we compute the next value. 14909 Diag(IdLoc, diag::ext_enum_value_not_int) 14910 << EnumVal.toString(10) << 1; 14911 } 14912 } 14913 } 14914 14915 if (!EltTy->isDependentType()) { 14916 // Make the enumerator value match the signedness and size of the 14917 // enumerator's type. 14918 EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy)); 14919 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 14920 } 14921 14922 return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy, 14923 Val, EnumVal); 14924 } 14925 14926 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II, 14927 SourceLocation IILoc) { 14928 if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) || 14929 !getLangOpts().CPlusPlus) 14930 return SkipBodyInfo(); 14931 14932 // We have an anonymous enum definition. Look up the first enumerator to 14933 // determine if we should merge the definition with an existing one and 14934 // skip the body. 14935 NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName, 14936 ForRedeclaration); 14937 auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl); 14938 if (!PrevECD) 14939 return SkipBodyInfo(); 14940 14941 EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext()); 14942 NamedDecl *Hidden; 14943 if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) { 14944 SkipBodyInfo Skip; 14945 Skip.Previous = Hidden; 14946 return Skip; 14947 } 14948 14949 return SkipBodyInfo(); 14950 } 14951 14952 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, 14953 SourceLocation IdLoc, IdentifierInfo *Id, 14954 AttributeList *Attr, 14955 SourceLocation EqualLoc, Expr *Val) { 14956 EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl); 14957 EnumConstantDecl *LastEnumConst = 14958 cast_or_null<EnumConstantDecl>(lastEnumConst); 14959 14960 // The scope passed in may not be a decl scope. Zip up the scope tree until 14961 // we find one that is. 14962 S = getNonFieldDeclScope(S); 14963 14964 // Verify that there isn't already something declared with this name in this 14965 // scope. 14966 NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName, 14967 ForRedeclaration); 14968 if (PrevDecl && PrevDecl->isTemplateParameter()) { 14969 // Maybe we will complain about the shadowed template parameter. 14970 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl); 14971 // Just pretend that we didn't see the previous declaration. 14972 PrevDecl = nullptr; 14973 } 14974 14975 // C++ [class.mem]p15: 14976 // If T is the name of a class, then each of the following shall have a name 14977 // different from T: 14978 // - every enumerator of every member of class T that is an unscoped 14979 // enumerated type 14980 if (!TheEnumDecl->isScoped()) 14981 DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(), 14982 DeclarationNameInfo(Id, IdLoc)); 14983 14984 EnumConstantDecl *New = 14985 CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val); 14986 if (!New) 14987 return nullptr; 14988 14989 if (PrevDecl) { 14990 // When in C++, we may get a TagDecl with the same name; in this case the 14991 // enum constant will 'hide' the tag. 14992 assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) && 14993 "Received TagDecl when not in C++!"); 14994 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S) && 14995 shouldLinkPossiblyHiddenDecl(PrevDecl, New)) { 14996 if (isa<EnumConstantDecl>(PrevDecl)) 14997 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id; 14998 else 14999 Diag(IdLoc, diag::err_redefinition) << Id; 15000 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 15001 return nullptr; 15002 } 15003 } 15004 15005 // Process attributes. 15006 if (Attr) ProcessDeclAttributeList(S, New, Attr); 15007 15008 // Register this decl in the current scope stack. 15009 New->setAccess(TheEnumDecl->getAccess()); 15010 PushOnScopeChains(New, S); 15011 15012 ActOnDocumentableDecl(New); 15013 15014 return New; 15015 } 15016 15017 // Returns true when the enum initial expression does not trigger the 15018 // duplicate enum warning. A few common cases are exempted as follows: 15019 // Element2 = Element1 15020 // Element2 = Element1 + 1 15021 // Element2 = Element1 - 1 15022 // Where Element2 and Element1 are from the same enum. 15023 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) { 15024 Expr *InitExpr = ECD->getInitExpr(); 15025 if (!InitExpr) 15026 return true; 15027 InitExpr = InitExpr->IgnoreImpCasts(); 15028 15029 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) { 15030 if (!BO->isAdditiveOp()) 15031 return true; 15032 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS()); 15033 if (!IL) 15034 return true; 15035 if (IL->getValue() != 1) 15036 return true; 15037 15038 InitExpr = BO->getLHS(); 15039 } 15040 15041 // This checks if the elements are from the same enum. 15042 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr); 15043 if (!DRE) 15044 return true; 15045 15046 EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl()); 15047 if (!EnumConstant) 15048 return true; 15049 15050 if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) != 15051 Enum) 15052 return true; 15053 15054 return false; 15055 } 15056 15057 namespace { 15058 struct DupKey { 15059 int64_t val; 15060 bool isTombstoneOrEmptyKey; 15061 DupKey(int64_t val, bool isTombstoneOrEmptyKey) 15062 : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {} 15063 }; 15064 15065 static DupKey GetDupKey(const llvm::APSInt& Val) { 15066 return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(), 15067 false); 15068 } 15069 15070 struct DenseMapInfoDupKey { 15071 static DupKey getEmptyKey() { return DupKey(0, true); } 15072 static DupKey getTombstoneKey() { return DupKey(1, true); } 15073 static unsigned getHashValue(const DupKey Key) { 15074 return (unsigned)(Key.val * 37); 15075 } 15076 static bool isEqual(const DupKey& LHS, const DupKey& RHS) { 15077 return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey && 15078 LHS.val == RHS.val; 15079 } 15080 }; 15081 } // end anonymous namespace 15082 15083 // Emits a warning when an element is implicitly set a value that 15084 // a previous element has already been set to. 15085 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements, 15086 EnumDecl *Enum, 15087 QualType EnumType) { 15088 if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation())) 15089 return; 15090 // Avoid anonymous enums 15091 if (!Enum->getIdentifier()) 15092 return; 15093 15094 // Only check for small enums. 15095 if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64) 15096 return; 15097 15098 typedef SmallVector<EnumConstantDecl *, 3> ECDVector; 15099 typedef SmallVector<ECDVector *, 3> DuplicatesVector; 15100 15101 typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector; 15102 typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey> 15103 ValueToVectorMap; 15104 15105 DuplicatesVector DupVector; 15106 ValueToVectorMap EnumMap; 15107 15108 // Populate the EnumMap with all values represented by enum constants without 15109 // an initialier. 15110 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 15111 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]); 15112 15113 // Null EnumConstantDecl means a previous diagnostic has been emitted for 15114 // this constant. Skip this enum since it may be ill-formed. 15115 if (!ECD) { 15116 return; 15117 } 15118 15119 if (ECD->getInitExpr()) 15120 continue; 15121 15122 DupKey Key = GetDupKey(ECD->getInitVal()); 15123 DeclOrVector &Entry = EnumMap[Key]; 15124 15125 // First time encountering this value. 15126 if (Entry.isNull()) 15127 Entry = ECD; 15128 } 15129 15130 // Create vectors for any values that has duplicates. 15131 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 15132 EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]); 15133 if (!ValidDuplicateEnum(ECD, Enum)) 15134 continue; 15135 15136 DupKey Key = GetDupKey(ECD->getInitVal()); 15137 15138 DeclOrVector& Entry = EnumMap[Key]; 15139 if (Entry.isNull()) 15140 continue; 15141 15142 if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) { 15143 // Ensure constants are different. 15144 if (D == ECD) 15145 continue; 15146 15147 // Create new vector and push values onto it. 15148 ECDVector *Vec = new ECDVector(); 15149 Vec->push_back(D); 15150 Vec->push_back(ECD); 15151 15152 // Update entry to point to the duplicates vector. 15153 Entry = Vec; 15154 15155 // Store the vector somewhere we can consult later for quick emission of 15156 // diagnostics. 15157 DupVector.push_back(Vec); 15158 continue; 15159 } 15160 15161 ECDVector *Vec = Entry.get<ECDVector*>(); 15162 // Make sure constants are not added more than once. 15163 if (*Vec->begin() == ECD) 15164 continue; 15165 15166 Vec->push_back(ECD); 15167 } 15168 15169 // Emit diagnostics. 15170 for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(), 15171 DupVectorEnd = DupVector.end(); 15172 DupVectorIter != DupVectorEnd; ++DupVectorIter) { 15173 ECDVector *Vec = *DupVectorIter; 15174 assert(Vec->size() > 1 && "ECDVector should have at least 2 elements."); 15175 15176 // Emit warning for one enum constant. 15177 ECDVector::iterator I = Vec->begin(); 15178 S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values) 15179 << (*I)->getName() << (*I)->getInitVal().toString(10) 15180 << (*I)->getSourceRange(); 15181 ++I; 15182 15183 // Emit one note for each of the remaining enum constants with 15184 // the same value. 15185 for (ECDVector::iterator E = Vec->end(); I != E; ++I) 15186 S.Diag((*I)->getLocation(), diag::note_duplicate_element) 15187 << (*I)->getName() << (*I)->getInitVal().toString(10) 15188 << (*I)->getSourceRange(); 15189 delete Vec; 15190 } 15191 } 15192 15193 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val, 15194 bool AllowMask) const { 15195 assert(ED->hasAttr<FlagEnumAttr>() && "looking for value in non-flag enum"); 15196 assert(ED->isCompleteDefinition() && "expected enum definition"); 15197 15198 auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt())); 15199 llvm::APInt &FlagBits = R.first->second; 15200 15201 if (R.second) { 15202 for (auto *E : ED->enumerators()) { 15203 const auto &EVal = E->getInitVal(); 15204 // Only single-bit enumerators introduce new flag values. 15205 if (EVal.isPowerOf2()) 15206 FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal; 15207 } 15208 } 15209 15210 // A value is in a flag enum if either its bits are a subset of the enum's 15211 // flag bits (the first condition) or we are allowing masks and the same is 15212 // true of its complement (the second condition). When masks are allowed, we 15213 // allow the common idiom of ~(enum1 | enum2) to be a valid enum value. 15214 // 15215 // While it's true that any value could be used as a mask, the assumption is 15216 // that a mask will have all of the insignificant bits set. Anything else is 15217 // likely a logic error. 15218 llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth()); 15219 return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val)); 15220 } 15221 15222 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange, 15223 Decl *EnumDeclX, 15224 ArrayRef<Decl *> Elements, 15225 Scope *S, AttributeList *Attr) { 15226 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX); 15227 QualType EnumType = Context.getTypeDeclType(Enum); 15228 15229 if (Attr) 15230 ProcessDeclAttributeList(S, Enum, Attr); 15231 15232 if (Enum->isDependentType()) { 15233 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 15234 EnumConstantDecl *ECD = 15235 cast_or_null<EnumConstantDecl>(Elements[i]); 15236 if (!ECD) continue; 15237 15238 ECD->setType(EnumType); 15239 } 15240 15241 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0); 15242 return; 15243 } 15244 15245 // TODO: If the result value doesn't fit in an int, it must be a long or long 15246 // long value. ISO C does not support this, but GCC does as an extension, 15247 // emit a warning. 15248 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 15249 unsigned CharWidth = Context.getTargetInfo().getCharWidth(); 15250 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); 15251 15252 // Verify that all the values are okay, compute the size of the values, and 15253 // reverse the list. 15254 unsigned NumNegativeBits = 0; 15255 unsigned NumPositiveBits = 0; 15256 15257 // Keep track of whether all elements have type int. 15258 bool AllElementsInt = true; 15259 15260 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 15261 EnumConstantDecl *ECD = 15262 cast_or_null<EnumConstantDecl>(Elements[i]); 15263 if (!ECD) continue; // Already issued a diagnostic. 15264 15265 const llvm::APSInt &InitVal = ECD->getInitVal(); 15266 15267 // Keep track of the size of positive and negative values. 15268 if (InitVal.isUnsigned() || InitVal.isNonNegative()) 15269 NumPositiveBits = std::max(NumPositiveBits, 15270 (unsigned)InitVal.getActiveBits()); 15271 else 15272 NumNegativeBits = std::max(NumNegativeBits, 15273 (unsigned)InitVal.getMinSignedBits()); 15274 15275 // Keep track of whether every enum element has type int (very commmon). 15276 if (AllElementsInt) 15277 AllElementsInt = ECD->getType() == Context.IntTy; 15278 } 15279 15280 // Figure out the type that should be used for this enum. 15281 QualType BestType; 15282 unsigned BestWidth; 15283 15284 // C++0x N3000 [conv.prom]p3: 15285 // An rvalue of an unscoped enumeration type whose underlying 15286 // type is not fixed can be converted to an rvalue of the first 15287 // of the following types that can represent all the values of 15288 // the enumeration: int, unsigned int, long int, unsigned long 15289 // int, long long int, or unsigned long long int. 15290 // C99 6.4.4.3p2: 15291 // An identifier declared as an enumeration constant has type int. 15292 // The C99 rule is modified by a gcc extension 15293 QualType BestPromotionType; 15294 15295 bool Packed = Enum->hasAttr<PackedAttr>(); 15296 // -fshort-enums is the equivalent to specifying the packed attribute on all 15297 // enum definitions. 15298 if (LangOpts.ShortEnums) 15299 Packed = true; 15300 15301 if (Enum->isFixed()) { 15302 BestType = Enum->getIntegerType(); 15303 if (BestType->isPromotableIntegerType()) 15304 BestPromotionType = Context.getPromotedIntegerType(BestType); 15305 else 15306 BestPromotionType = BestType; 15307 15308 BestWidth = Context.getIntWidth(BestType); 15309 } 15310 else if (NumNegativeBits) { 15311 // If there is a negative value, figure out the smallest integer type (of 15312 // int/long/longlong) that fits. 15313 // If it's packed, check also if it fits a char or a short. 15314 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) { 15315 BestType = Context.SignedCharTy; 15316 BestWidth = CharWidth; 15317 } else if (Packed && NumNegativeBits <= ShortWidth && 15318 NumPositiveBits < ShortWidth) { 15319 BestType = Context.ShortTy; 15320 BestWidth = ShortWidth; 15321 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { 15322 BestType = Context.IntTy; 15323 BestWidth = IntWidth; 15324 } else { 15325 BestWidth = Context.getTargetInfo().getLongWidth(); 15326 15327 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { 15328 BestType = Context.LongTy; 15329 } else { 15330 BestWidth = Context.getTargetInfo().getLongLongWidth(); 15331 15332 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) 15333 Diag(Enum->getLocation(), diag::ext_enum_too_large); 15334 BestType = Context.LongLongTy; 15335 } 15336 } 15337 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); 15338 } else { 15339 // If there is no negative value, figure out the smallest type that fits 15340 // all of the enumerator values. 15341 // If it's packed, check also if it fits a char or a short. 15342 if (Packed && NumPositiveBits <= CharWidth) { 15343 BestType = Context.UnsignedCharTy; 15344 BestPromotionType = Context.IntTy; 15345 BestWidth = CharWidth; 15346 } else if (Packed && NumPositiveBits <= ShortWidth) { 15347 BestType = Context.UnsignedShortTy; 15348 BestPromotionType = Context.IntTy; 15349 BestWidth = ShortWidth; 15350 } else if (NumPositiveBits <= IntWidth) { 15351 BestType = Context.UnsignedIntTy; 15352 BestWidth = IntWidth; 15353 BestPromotionType 15354 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 15355 ? Context.UnsignedIntTy : Context.IntTy; 15356 } else if (NumPositiveBits <= 15357 (BestWidth = Context.getTargetInfo().getLongWidth())) { 15358 BestType = Context.UnsignedLongTy; 15359 BestPromotionType 15360 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 15361 ? Context.UnsignedLongTy : Context.LongTy; 15362 } else { 15363 BestWidth = Context.getTargetInfo().getLongLongWidth(); 15364 assert(NumPositiveBits <= BestWidth && 15365 "How could an initializer get larger than ULL?"); 15366 BestType = Context.UnsignedLongLongTy; 15367 BestPromotionType 15368 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 15369 ? Context.UnsignedLongLongTy : Context.LongLongTy; 15370 } 15371 } 15372 15373 // Loop over all of the enumerator constants, changing their types to match 15374 // the type of the enum if needed. 15375 for (auto *D : Elements) { 15376 auto *ECD = cast_or_null<EnumConstantDecl>(D); 15377 if (!ECD) continue; // Already issued a diagnostic. 15378 15379 // Standard C says the enumerators have int type, but we allow, as an 15380 // extension, the enumerators to be larger than int size. If each 15381 // enumerator value fits in an int, type it as an int, otherwise type it the 15382 // same as the enumerator decl itself. This means that in "enum { X = 1U }" 15383 // that X has type 'int', not 'unsigned'. 15384 15385 // Determine whether the value fits into an int. 15386 llvm::APSInt InitVal = ECD->getInitVal(); 15387 15388 // If it fits into an integer type, force it. Otherwise force it to match 15389 // the enum decl type. 15390 QualType NewTy; 15391 unsigned NewWidth; 15392 bool NewSign; 15393 if (!getLangOpts().CPlusPlus && 15394 !Enum->isFixed() && 15395 isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) { 15396 NewTy = Context.IntTy; 15397 NewWidth = IntWidth; 15398 NewSign = true; 15399 } else if (ECD->getType() == BestType) { 15400 // Already the right type! 15401 if (getLangOpts().CPlusPlus) 15402 // C++ [dcl.enum]p4: Following the closing brace of an 15403 // enum-specifier, each enumerator has the type of its 15404 // enumeration. 15405 ECD->setType(EnumType); 15406 continue; 15407 } else { 15408 NewTy = BestType; 15409 NewWidth = BestWidth; 15410 NewSign = BestType->isSignedIntegerOrEnumerationType(); 15411 } 15412 15413 // Adjust the APSInt value. 15414 InitVal = InitVal.extOrTrunc(NewWidth); 15415 InitVal.setIsSigned(NewSign); 15416 ECD->setInitVal(InitVal); 15417 15418 // Adjust the Expr initializer and type. 15419 if (ECD->getInitExpr() && 15420 !Context.hasSameType(NewTy, ECD->getInitExpr()->getType())) 15421 ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy, 15422 CK_IntegralCast, 15423 ECD->getInitExpr(), 15424 /*base paths*/ nullptr, 15425 VK_RValue)); 15426 if (getLangOpts().CPlusPlus) 15427 // C++ [dcl.enum]p4: Following the closing brace of an 15428 // enum-specifier, each enumerator has the type of its 15429 // enumeration. 15430 ECD->setType(EnumType); 15431 else 15432 ECD->setType(NewTy); 15433 } 15434 15435 Enum->completeDefinition(BestType, BestPromotionType, 15436 NumPositiveBits, NumNegativeBits); 15437 15438 CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType); 15439 15440 if (Enum->hasAttr<FlagEnumAttr>()) { 15441 for (Decl *D : Elements) { 15442 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D); 15443 if (!ECD) continue; // Already issued a diagnostic. 15444 15445 llvm::APSInt InitVal = ECD->getInitVal(); 15446 if (InitVal != 0 && !InitVal.isPowerOf2() && 15447 !IsValueInFlagEnum(Enum, InitVal, true)) 15448 Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range) 15449 << ECD << Enum; 15450 } 15451 } 15452 15453 // Now that the enum type is defined, ensure it's not been underaligned. 15454 if (Enum->hasAttrs()) 15455 CheckAlignasUnderalignment(Enum); 15456 } 15457 15458 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr, 15459 SourceLocation StartLoc, 15460 SourceLocation EndLoc) { 15461 StringLiteral *AsmString = cast<StringLiteral>(expr); 15462 15463 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, 15464 AsmString, StartLoc, 15465 EndLoc); 15466 CurContext->addDecl(New); 15467 return New; 15468 } 15469 15470 static void checkModuleImportContext(Sema &S, Module *M, 15471 SourceLocation ImportLoc, DeclContext *DC, 15472 bool FromInclude = false) { 15473 SourceLocation ExternCLoc; 15474 15475 if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) { 15476 switch (LSD->getLanguage()) { 15477 case LinkageSpecDecl::lang_c: 15478 if (ExternCLoc.isInvalid()) 15479 ExternCLoc = LSD->getLocStart(); 15480 break; 15481 case LinkageSpecDecl::lang_cxx: 15482 break; 15483 } 15484 DC = LSD->getParent(); 15485 } 15486 15487 while (isa<LinkageSpecDecl>(DC)) 15488 DC = DC->getParent(); 15489 15490 if (!isa<TranslationUnitDecl>(DC)) { 15491 S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M)) 15492 ? diag::ext_module_import_not_at_top_level_noop 15493 : diag::err_module_import_not_at_top_level_fatal) 15494 << M->getFullModuleName() << DC; 15495 S.Diag(cast<Decl>(DC)->getLocStart(), 15496 diag::note_module_import_not_at_top_level) << DC; 15497 } else if (!M->IsExternC && ExternCLoc.isValid()) { 15498 S.Diag(ImportLoc, diag::ext_module_import_in_extern_c) 15499 << M->getFullModuleName(); 15500 S.Diag(ExternCLoc, diag::note_extern_c_begins_here); 15501 } 15502 } 15503 15504 Sema::DeclGroupPtrTy Sema::ActOnModuleDecl(SourceLocation ModuleLoc, 15505 ModuleDeclKind MDK, 15506 ModuleIdPath Path) { 15507 // 'module implementation' requires that we are not compiling a module of any 15508 // kind. 'module' and 'module partition' require that we are compiling a 15509 // module inteface (not a module map). 15510 auto CMK = getLangOpts().getCompilingModule(); 15511 if (MDK == ModuleDeclKind::Implementation 15512 ? CMK != LangOptions::CMK_None 15513 : CMK != LangOptions::CMK_ModuleInterface) { 15514 Diag(ModuleLoc, diag::err_module_interface_implementation_mismatch) 15515 << (unsigned)MDK; 15516 return nullptr; 15517 } 15518 15519 // FIXME: Create a ModuleDecl and return it. 15520 15521 // FIXME: Most of this work should be done by the preprocessor rather than 15522 // here, in case we look ahead across something where the current 15523 // module matters (eg a #include). 15524 15525 // The dots in a module name in the Modules TS are a lie. Unlike Clang's 15526 // hierarchical module map modules, the dots here are just another character 15527 // that can appear in a module name. Flatten down to the actual module name. 15528 std::string ModuleName; 15529 for (auto &Piece : Path) { 15530 if (!ModuleName.empty()) 15531 ModuleName += "."; 15532 ModuleName += Piece.first->getName(); 15533 } 15534 15535 // If a module name was explicitly specified on the command line, it must be 15536 // correct. 15537 if (!getLangOpts().CurrentModule.empty() && 15538 getLangOpts().CurrentModule != ModuleName) { 15539 Diag(Path.front().second, diag::err_current_module_name_mismatch) 15540 << SourceRange(Path.front().second, Path.back().second) 15541 << getLangOpts().CurrentModule; 15542 return nullptr; 15543 } 15544 const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName; 15545 15546 auto &Map = PP.getHeaderSearchInfo().getModuleMap(); 15547 15548 switch (MDK) { 15549 case ModuleDeclKind::Module: { 15550 // FIXME: Check we're not in a submodule. 15551 15552 // We can't have imported a definition of this module or parsed a module 15553 // map defining it already. 15554 if (auto *M = Map.findModule(ModuleName)) { 15555 Diag(Path[0].second, diag::err_module_redefinition) << ModuleName; 15556 if (M->DefinitionLoc.isValid()) 15557 Diag(M->DefinitionLoc, diag::note_prev_module_definition); 15558 else if (const auto *FE = M->getASTFile()) 15559 Diag(M->DefinitionLoc, diag::note_prev_module_definition_from_ast_file) 15560 << FE->getName(); 15561 return nullptr; 15562 } 15563 15564 // Create a Module for the module that we're defining. 15565 Module *Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName); 15566 assert(Mod && "module creation should not fail"); 15567 15568 // Enter the semantic scope of the module. 15569 ActOnModuleBegin(ModuleLoc, Mod); 15570 return nullptr; 15571 } 15572 15573 case ModuleDeclKind::Partition: 15574 // FIXME: Check we are in a submodule of the named module. 15575 return nullptr; 15576 15577 case ModuleDeclKind::Implementation: 15578 std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc( 15579 PP.getIdentifierInfo(ModuleName), Path[0].second); 15580 15581 DeclResult Import = ActOnModuleImport(ModuleLoc, ModuleLoc, ModuleNameLoc); 15582 if (Import.isInvalid()) 15583 return nullptr; 15584 return ConvertDeclToDeclGroup(Import.get()); 15585 } 15586 15587 llvm_unreachable("unexpected module decl kind"); 15588 } 15589 15590 DeclResult Sema::ActOnModuleImport(SourceLocation StartLoc, 15591 SourceLocation ImportLoc, 15592 ModuleIdPath Path) { 15593 Module *Mod = 15594 getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible, 15595 /*IsIncludeDirective=*/false); 15596 if (!Mod) 15597 return true; 15598 15599 VisibleModules.setVisible(Mod, ImportLoc); 15600 15601 checkModuleImportContext(*this, Mod, ImportLoc, CurContext); 15602 15603 // FIXME: we should support importing a submodule within a different submodule 15604 // of the same top-level module. Until we do, make it an error rather than 15605 // silently ignoring the import. 15606 // Import-from-implementation is valid in the Modules TS. FIXME: Should we 15607 // warn on a redundant import of the current module? 15608 if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule && 15609 (getLangOpts().isCompilingModule() || !getLangOpts().ModulesTS)) 15610 Diag(ImportLoc, getLangOpts().isCompilingModule() 15611 ? diag::err_module_self_import 15612 : diag::err_module_import_in_implementation) 15613 << Mod->getFullModuleName() << getLangOpts().CurrentModule; 15614 15615 SmallVector<SourceLocation, 2> IdentifierLocs; 15616 Module *ModCheck = Mod; 15617 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 15618 // If we've run out of module parents, just drop the remaining identifiers. 15619 // We need the length to be consistent. 15620 if (!ModCheck) 15621 break; 15622 ModCheck = ModCheck->Parent; 15623 15624 IdentifierLocs.push_back(Path[I].second); 15625 } 15626 15627 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); 15628 ImportDecl *Import = ImportDecl::Create(Context, TU, StartLoc, 15629 Mod, IdentifierLocs); 15630 if (!ModuleScopes.empty()) 15631 Context.addModuleInitializer(ModuleScopes.back().Module, Import); 15632 TU->addDecl(Import); 15633 return Import; 15634 } 15635 15636 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) { 15637 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true); 15638 BuildModuleInclude(DirectiveLoc, Mod); 15639 } 15640 15641 void Sema::BuildModuleInclude(SourceLocation DirectiveLoc, Module *Mod) { 15642 // Determine whether we're in the #include buffer for a module. The #includes 15643 // in that buffer do not qualify as module imports; they're just an 15644 // implementation detail of us building the module. 15645 // 15646 // FIXME: Should we even get ActOnModuleInclude calls for those? 15647 bool IsInModuleIncludes = 15648 TUKind == TU_Module && 15649 getSourceManager().isWrittenInMainFile(DirectiveLoc); 15650 15651 bool ShouldAddImport = !IsInModuleIncludes; 15652 15653 // If this module import was due to an inclusion directive, create an 15654 // implicit import declaration to capture it in the AST. 15655 if (ShouldAddImport) { 15656 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); 15657 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU, 15658 DirectiveLoc, Mod, 15659 DirectiveLoc); 15660 if (!ModuleScopes.empty()) 15661 Context.addModuleInitializer(ModuleScopes.back().Module, ImportD); 15662 TU->addDecl(ImportD); 15663 Consumer.HandleImplicitImportDecl(ImportD); 15664 } 15665 15666 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc); 15667 VisibleModules.setVisible(Mod, DirectiveLoc); 15668 } 15669 15670 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) { 15671 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true); 15672 15673 ModuleScopes.push_back({}); 15674 ModuleScopes.back().Module = Mod; 15675 if (getLangOpts().ModulesLocalVisibility) 15676 ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules); 15677 15678 VisibleModules.setVisible(Mod, DirectiveLoc); 15679 } 15680 15681 void Sema::ActOnModuleEnd(SourceLocation EofLoc, Module *Mod) { 15682 if (getLangOpts().ModulesLocalVisibility) { 15683 VisibleModules = std::move(ModuleScopes.back().OuterVisibleModules); 15684 // Leaving a module hides namespace names, so our visible namespace cache 15685 // is now out of date. 15686 VisibleNamespaceCache.clear(); 15687 } 15688 15689 assert(!ModuleScopes.empty() && ModuleScopes.back().Module == Mod && 15690 "left the wrong module scope"); 15691 ModuleScopes.pop_back(); 15692 15693 // We got to the end of processing a #include of a local module. Create an 15694 // ImportDecl as we would for an imported module. 15695 FileID File = getSourceManager().getFileID(EofLoc); 15696 assert(File != getSourceManager().getMainFileID() && 15697 "end of submodule in main source file"); 15698 SourceLocation DirectiveLoc = getSourceManager().getIncludeLoc(File); 15699 BuildModuleInclude(DirectiveLoc, Mod); 15700 } 15701 15702 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc, 15703 Module *Mod) { 15704 // Bail if we're not allowed to implicitly import a module here. 15705 if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery) 15706 return; 15707 15708 // Create the implicit import declaration. 15709 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); 15710 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU, 15711 Loc, Mod, Loc); 15712 TU->addDecl(ImportD); 15713 Consumer.HandleImplicitImportDecl(ImportD); 15714 15715 // Make the module visible. 15716 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc); 15717 VisibleModules.setVisible(Mod, Loc); 15718 } 15719 15720 /// We have parsed the start of an export declaration, including the '{' 15721 /// (if present). 15722 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc, 15723 SourceLocation LBraceLoc) { 15724 ExportDecl *D = ExportDecl::Create(Context, CurContext, ExportLoc); 15725 15726 // C++ Modules TS draft: 15727 // An export-declaration [...] shall not contain more than one 15728 // export keyword. 15729 // 15730 // The intent here is that an export-declaration cannot appear within another 15731 // export-declaration. 15732 if (D->isExported()) 15733 Diag(ExportLoc, diag::err_export_within_export); 15734 15735 CurContext->addDecl(D); 15736 PushDeclContext(S, D); 15737 return D; 15738 } 15739 15740 /// Complete the definition of an export declaration. 15741 Decl *Sema::ActOnFinishExportDecl(Scope *S, Decl *D, SourceLocation RBraceLoc) { 15742 auto *ED = cast<ExportDecl>(D); 15743 if (RBraceLoc.isValid()) 15744 ED->setRBraceLoc(RBraceLoc); 15745 15746 // FIXME: Diagnose export of internal-linkage declaration (including 15747 // anonymous namespace). 15748 15749 PopDeclContext(); 15750 return D; 15751 } 15752 15753 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name, 15754 IdentifierInfo* AliasName, 15755 SourceLocation PragmaLoc, 15756 SourceLocation NameLoc, 15757 SourceLocation AliasNameLoc) { 15758 NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, 15759 LookupOrdinaryName); 15760 AsmLabelAttr *Attr = 15761 AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc); 15762 15763 // If a declaration that: 15764 // 1) declares a function or a variable 15765 // 2) has external linkage 15766 // already exists, add a label attribute to it. 15767 if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) { 15768 if (isDeclExternC(PrevDecl)) 15769 PrevDecl->addAttr(Attr); 15770 else 15771 Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied) 15772 << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl; 15773 // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers. 15774 } else 15775 (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr)); 15776 } 15777 15778 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name, 15779 SourceLocation PragmaLoc, 15780 SourceLocation NameLoc) { 15781 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName); 15782 15783 if (PrevDecl) { 15784 PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc)); 15785 } else { 15786 (void)WeakUndeclaredIdentifiers.insert( 15787 std::pair<IdentifierInfo*,WeakInfo> 15788 (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc))); 15789 } 15790 } 15791 15792 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name, 15793 IdentifierInfo* AliasName, 15794 SourceLocation PragmaLoc, 15795 SourceLocation NameLoc, 15796 SourceLocation AliasNameLoc) { 15797 Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc, 15798 LookupOrdinaryName); 15799 WeakInfo W = WeakInfo(Name, NameLoc); 15800 15801 if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) { 15802 if (!PrevDecl->hasAttr<AliasAttr>()) 15803 if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl)) 15804 DeclApplyPragmaWeak(TUScope, ND, W); 15805 } else { 15806 (void)WeakUndeclaredIdentifiers.insert( 15807 std::pair<IdentifierInfo*,WeakInfo>(AliasName, W)); 15808 } 15809 } 15810 15811 Decl *Sema::getObjCDeclContext() const { 15812 return (dyn_cast_or_null<ObjCContainerDecl>(CurContext)); 15813 } 15814