1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements semantic analysis for declarations. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "TypeLocBuilder.h" 14 #include "clang/AST/ASTConsumer.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/ASTLambda.h" 17 #include "clang/AST/CXXInheritance.h" 18 #include "clang/AST/CharUnits.h" 19 #include "clang/AST/CommentDiagnostic.h" 20 #include "clang/AST/DeclCXX.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/DeclTemplate.h" 23 #include "clang/AST/EvaluatedExprVisitor.h" 24 #include "clang/AST/Expr.h" 25 #include "clang/AST/ExprCXX.h" 26 #include "clang/AST/NonTrivialTypeVisitor.h" 27 #include "clang/AST/StmtCXX.h" 28 #include "clang/Basic/Builtins.h" 29 #include "clang/Basic/PartialDiagnostic.h" 30 #include "clang/Basic/SourceManager.h" 31 #include "clang/Basic/TargetInfo.h" 32 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex 33 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering. 34 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex 35 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled() 36 #include "clang/Sema/CXXFieldCollector.h" 37 #include "clang/Sema/DeclSpec.h" 38 #include "clang/Sema/DelayedDiagnostic.h" 39 #include "clang/Sema/Initialization.h" 40 #include "clang/Sema/Lookup.h" 41 #include "clang/Sema/ParsedTemplate.h" 42 #include "clang/Sema/Scope.h" 43 #include "clang/Sema/ScopeInfo.h" 44 #include "clang/Sema/SemaInternal.h" 45 #include "clang/Sema/Template.h" 46 #include "llvm/ADT/SmallString.h" 47 #include "llvm/ADT/Triple.h" 48 #include <algorithm> 49 #include <cstring> 50 #include <functional> 51 #include <unordered_map> 52 53 using namespace clang; 54 using namespace sema; 55 56 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) { 57 if (OwnedType) { 58 Decl *Group[2] = { OwnedType, Ptr }; 59 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2)); 60 } 61 62 return DeclGroupPtrTy::make(DeclGroupRef(Ptr)); 63 } 64 65 namespace { 66 67 class TypeNameValidatorCCC final : public CorrectionCandidateCallback { 68 public: 69 TypeNameValidatorCCC(bool AllowInvalid, bool WantClass = false, 70 bool AllowTemplates = false, 71 bool AllowNonTemplates = true) 72 : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass), 73 AllowTemplates(AllowTemplates), AllowNonTemplates(AllowNonTemplates) { 74 WantExpressionKeywords = false; 75 WantCXXNamedCasts = false; 76 WantRemainingKeywords = false; 77 } 78 79 bool ValidateCandidate(const TypoCorrection &candidate) override { 80 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 81 if (!AllowInvalidDecl && ND->isInvalidDecl()) 82 return false; 83 84 if (getAsTypeTemplateDecl(ND)) 85 return AllowTemplates; 86 87 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); 88 if (!IsType) 89 return false; 90 91 if (AllowNonTemplates) 92 return true; 93 94 // An injected-class-name of a class template (specialization) is valid 95 // as a template or as a non-template. 96 if (AllowTemplates) { 97 auto *RD = dyn_cast<CXXRecordDecl>(ND); 98 if (!RD || !RD->isInjectedClassName()) 99 return false; 100 RD = cast<CXXRecordDecl>(RD->getDeclContext()); 101 return RD->getDescribedClassTemplate() || 102 isa<ClassTemplateSpecializationDecl>(RD); 103 } 104 105 return false; 106 } 107 108 return !WantClassName && candidate.isKeyword(); 109 } 110 111 std::unique_ptr<CorrectionCandidateCallback> clone() override { 112 return std::make_unique<TypeNameValidatorCCC>(*this); 113 } 114 115 private: 116 bool AllowInvalidDecl; 117 bool WantClassName; 118 bool AllowTemplates; 119 bool AllowNonTemplates; 120 }; 121 122 } // end anonymous namespace 123 124 /// Determine whether the token kind starts a simple-type-specifier. 125 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const { 126 switch (Kind) { 127 // FIXME: Take into account the current language when deciding whether a 128 // token kind is a valid type specifier 129 case tok::kw_short: 130 case tok::kw_long: 131 case tok::kw___int64: 132 case tok::kw___int128: 133 case tok::kw_signed: 134 case tok::kw_unsigned: 135 case tok::kw_void: 136 case tok::kw_char: 137 case tok::kw_int: 138 case tok::kw_half: 139 case tok::kw_float: 140 case tok::kw_double: 141 case tok::kw___bf16: 142 case tok::kw__Float16: 143 case tok::kw___float128: 144 case tok::kw_wchar_t: 145 case tok::kw_bool: 146 case tok::kw___underlying_type: 147 case tok::kw___auto_type: 148 return true; 149 150 case tok::annot_typename: 151 case tok::kw_char16_t: 152 case tok::kw_char32_t: 153 case tok::kw_typeof: 154 case tok::annot_decltype: 155 case tok::kw_decltype: 156 return getLangOpts().CPlusPlus; 157 158 case tok::kw_char8_t: 159 return getLangOpts().Char8; 160 161 default: 162 break; 163 } 164 165 return false; 166 } 167 168 namespace { 169 enum class UnqualifiedTypeNameLookupResult { 170 NotFound, 171 FoundNonType, 172 FoundType 173 }; 174 } // end anonymous namespace 175 176 /// Tries to perform unqualified lookup of the type decls in bases for 177 /// dependent class. 178 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a 179 /// type decl, \a FoundType if only type decls are found. 180 static UnqualifiedTypeNameLookupResult 181 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II, 182 SourceLocation NameLoc, 183 const CXXRecordDecl *RD) { 184 if (!RD->hasDefinition()) 185 return UnqualifiedTypeNameLookupResult::NotFound; 186 // Look for type decls in base classes. 187 UnqualifiedTypeNameLookupResult FoundTypeDecl = 188 UnqualifiedTypeNameLookupResult::NotFound; 189 for (const auto &Base : RD->bases()) { 190 const CXXRecordDecl *BaseRD = nullptr; 191 if (auto *BaseTT = Base.getType()->getAs<TagType>()) 192 BaseRD = BaseTT->getAsCXXRecordDecl(); 193 else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) { 194 // Look for type decls in dependent base classes that have known primary 195 // templates. 196 if (!TST || !TST->isDependentType()) 197 continue; 198 auto *TD = TST->getTemplateName().getAsTemplateDecl(); 199 if (!TD) 200 continue; 201 if (auto *BasePrimaryTemplate = 202 dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl())) { 203 if (BasePrimaryTemplate->getCanonicalDecl() != RD->getCanonicalDecl()) 204 BaseRD = BasePrimaryTemplate; 205 else if (auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) { 206 if (const ClassTemplatePartialSpecializationDecl *PS = 207 CTD->findPartialSpecialization(Base.getType())) 208 if (PS->getCanonicalDecl() != RD->getCanonicalDecl()) 209 BaseRD = PS; 210 } 211 } 212 } 213 if (BaseRD) { 214 for (NamedDecl *ND : BaseRD->lookup(&II)) { 215 if (!isa<TypeDecl>(ND)) 216 return UnqualifiedTypeNameLookupResult::FoundNonType; 217 FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType; 218 } 219 if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) { 220 switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) { 221 case UnqualifiedTypeNameLookupResult::FoundNonType: 222 return UnqualifiedTypeNameLookupResult::FoundNonType; 223 case UnqualifiedTypeNameLookupResult::FoundType: 224 FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType; 225 break; 226 case UnqualifiedTypeNameLookupResult::NotFound: 227 break; 228 } 229 } 230 } 231 } 232 233 return FoundTypeDecl; 234 } 235 236 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S, 237 const IdentifierInfo &II, 238 SourceLocation NameLoc) { 239 // Lookup in the parent class template context, if any. 240 const CXXRecordDecl *RD = nullptr; 241 UnqualifiedTypeNameLookupResult FoundTypeDecl = 242 UnqualifiedTypeNameLookupResult::NotFound; 243 for (DeclContext *DC = S.CurContext; 244 DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound; 245 DC = DC->getParent()) { 246 // Look for type decls in dependent base classes that have known primary 247 // templates. 248 RD = dyn_cast<CXXRecordDecl>(DC); 249 if (RD && RD->getDescribedClassTemplate()) 250 FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD); 251 } 252 if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType) 253 return nullptr; 254 255 // We found some types in dependent base classes. Recover as if the user 256 // wrote 'typename MyClass::II' instead of 'II'. We'll fully resolve the 257 // lookup during template instantiation. 258 S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II; 259 260 ASTContext &Context = S.Context; 261 auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false, 262 cast<Type>(Context.getRecordType(RD))); 263 QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II); 264 265 CXXScopeSpec SS; 266 SS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 267 268 TypeLocBuilder Builder; 269 DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T); 270 DepTL.setNameLoc(NameLoc); 271 DepTL.setElaboratedKeywordLoc(SourceLocation()); 272 DepTL.setQualifierLoc(SS.getWithLocInContext(Context)); 273 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 274 } 275 276 /// If the identifier refers to a type name within this scope, 277 /// return the declaration of that type. 278 /// 279 /// This routine performs ordinary name lookup of the identifier II 280 /// within the given scope, with optional C++ scope specifier SS, to 281 /// determine whether the name refers to a type. If so, returns an 282 /// opaque pointer (actually a QualType) corresponding to that 283 /// type. Otherwise, returns NULL. 284 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, 285 Scope *S, CXXScopeSpec *SS, 286 bool isClassName, bool HasTrailingDot, 287 ParsedType ObjectTypePtr, 288 bool IsCtorOrDtorName, 289 bool WantNontrivialTypeSourceInfo, 290 bool IsClassTemplateDeductionContext, 291 IdentifierInfo **CorrectedII) { 292 // FIXME: Consider allowing this outside C++1z mode as an extension. 293 bool AllowDeducedTemplate = IsClassTemplateDeductionContext && 294 getLangOpts().CPlusPlus17 && !IsCtorOrDtorName && 295 !isClassName && !HasTrailingDot; 296 297 // Determine where we will perform name lookup. 298 DeclContext *LookupCtx = nullptr; 299 if (ObjectTypePtr) { 300 QualType ObjectType = ObjectTypePtr.get(); 301 if (ObjectType->isRecordType()) 302 LookupCtx = computeDeclContext(ObjectType); 303 } else if (SS && SS->isNotEmpty()) { 304 LookupCtx = computeDeclContext(*SS, false); 305 306 if (!LookupCtx) { 307 if (isDependentScopeSpecifier(*SS)) { 308 // C++ [temp.res]p3: 309 // A qualified-id that refers to a type and in which the 310 // nested-name-specifier depends on a template-parameter (14.6.2) 311 // shall be prefixed by the keyword typename to indicate that the 312 // qualified-id denotes a type, forming an 313 // elaborated-type-specifier (7.1.5.3). 314 // 315 // We therefore do not perform any name lookup if the result would 316 // refer to a member of an unknown specialization. 317 if (!isClassName && !IsCtorOrDtorName) 318 return nullptr; 319 320 // We know from the grammar that this name refers to a type, 321 // so build a dependent node to describe the type. 322 if (WantNontrivialTypeSourceInfo) 323 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get(); 324 325 NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context); 326 QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc, 327 II, NameLoc); 328 return ParsedType::make(T); 329 } 330 331 return nullptr; 332 } 333 334 if (!LookupCtx->isDependentContext() && 335 RequireCompleteDeclContext(*SS, LookupCtx)) 336 return nullptr; 337 } 338 339 // FIXME: LookupNestedNameSpecifierName isn't the right kind of 340 // lookup for class-names. 341 LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName : 342 LookupOrdinaryName; 343 LookupResult Result(*this, &II, NameLoc, Kind); 344 if (LookupCtx) { 345 // Perform "qualified" name lookup into the declaration context we 346 // computed, which is either the type of the base of a member access 347 // expression or the declaration context associated with a prior 348 // nested-name-specifier. 349 LookupQualifiedName(Result, LookupCtx); 350 351 if (ObjectTypePtr && Result.empty()) { 352 // C++ [basic.lookup.classref]p3: 353 // If the unqualified-id is ~type-name, the type-name is looked up 354 // in the context of the entire postfix-expression. If the type T of 355 // the object expression is of a class type C, the type-name is also 356 // looked up in the scope of class C. At least one of the lookups shall 357 // find a name that refers to (possibly cv-qualified) T. 358 LookupName(Result, S); 359 } 360 } else { 361 // Perform unqualified name lookup. 362 LookupName(Result, S); 363 364 // For unqualified lookup in a class template in MSVC mode, look into 365 // dependent base classes where the primary class template is known. 366 if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) { 367 if (ParsedType TypeInBase = 368 recoverFromTypeInKnownDependentBase(*this, II, NameLoc)) 369 return TypeInBase; 370 } 371 } 372 373 NamedDecl *IIDecl = nullptr; 374 switch (Result.getResultKind()) { 375 case LookupResult::NotFound: 376 case LookupResult::NotFoundInCurrentInstantiation: 377 if (CorrectedII) { 378 TypeNameValidatorCCC CCC(/*AllowInvalid=*/true, isClassName, 379 AllowDeducedTemplate); 380 TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(), Kind, 381 S, SS, CCC, CTK_ErrorRecovery); 382 IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo(); 383 TemplateTy Template; 384 bool MemberOfUnknownSpecialization; 385 UnqualifiedId TemplateName; 386 TemplateName.setIdentifier(NewII, NameLoc); 387 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier(); 388 CXXScopeSpec NewSS, *NewSSPtr = SS; 389 if (SS && NNS) { 390 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 391 NewSSPtr = &NewSS; 392 } 393 if (Correction && (NNS || NewII != &II) && 394 // Ignore a correction to a template type as the to-be-corrected 395 // identifier is not a template (typo correction for template names 396 // is handled elsewhere). 397 !(getLangOpts().CPlusPlus && NewSSPtr && 398 isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false, 399 Template, MemberOfUnknownSpecialization))) { 400 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr, 401 isClassName, HasTrailingDot, ObjectTypePtr, 402 IsCtorOrDtorName, 403 WantNontrivialTypeSourceInfo, 404 IsClassTemplateDeductionContext); 405 if (Ty) { 406 diagnoseTypo(Correction, 407 PDiag(diag::err_unknown_type_or_class_name_suggest) 408 << Result.getLookupName() << isClassName); 409 if (SS && NNS) 410 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc)); 411 *CorrectedII = NewII; 412 return Ty; 413 } 414 } 415 } 416 // If typo correction failed or was not performed, fall through 417 LLVM_FALLTHROUGH; 418 case LookupResult::FoundOverloaded: 419 case LookupResult::FoundUnresolvedValue: 420 Result.suppressDiagnostics(); 421 return nullptr; 422 423 case LookupResult::Ambiguous: 424 // Recover from type-hiding ambiguities by hiding the type. We'll 425 // do the lookup again when looking for an object, and we can 426 // diagnose the error then. If we don't do this, then the error 427 // about hiding the type will be immediately followed by an error 428 // that only makes sense if the identifier was treated like a type. 429 if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) { 430 Result.suppressDiagnostics(); 431 return nullptr; 432 } 433 434 // Look to see if we have a type anywhere in the list of results. 435 for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end(); 436 Res != ResEnd; ++Res) { 437 if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res) || 438 (AllowDeducedTemplate && getAsTypeTemplateDecl(*Res))) { 439 if (!IIDecl || 440 (*Res)->getLocation().getRawEncoding() < 441 IIDecl->getLocation().getRawEncoding()) 442 IIDecl = *Res; 443 } 444 } 445 446 if (!IIDecl) { 447 // None of the entities we found is a type, so there is no way 448 // to even assume that the result is a type. In this case, don't 449 // complain about the ambiguity. The parser will either try to 450 // perform this lookup again (e.g., as an object name), which 451 // will produce the ambiguity, or will complain that it expected 452 // a type name. 453 Result.suppressDiagnostics(); 454 return nullptr; 455 } 456 457 // We found a type within the ambiguous lookup; diagnose the 458 // ambiguity and then return that type. This might be the right 459 // answer, or it might not be, but it suppresses any attempt to 460 // perform the name lookup again. 461 break; 462 463 case LookupResult::Found: 464 IIDecl = Result.getFoundDecl(); 465 break; 466 } 467 468 assert(IIDecl && "Didn't find decl"); 469 470 QualType T; 471 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) { 472 // C++ [class.qual]p2: A lookup that would find the injected-class-name 473 // instead names the constructors of the class, except when naming a class. 474 // This is ill-formed when we're not actually forming a ctor or dtor name. 475 auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx); 476 auto *FoundRD = dyn_cast<CXXRecordDecl>(TD); 477 if (!isClassName && !IsCtorOrDtorName && LookupRD && FoundRD && 478 FoundRD->isInjectedClassName() && 479 declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent()))) 480 Diag(NameLoc, diag::err_out_of_line_qualified_id_type_names_constructor) 481 << &II << /*Type*/1; 482 483 DiagnoseUseOfDecl(IIDecl, NameLoc); 484 485 T = Context.getTypeDeclType(TD); 486 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false); 487 } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) { 488 (void)DiagnoseUseOfDecl(IDecl, NameLoc); 489 if (!HasTrailingDot) 490 T = Context.getObjCInterfaceType(IDecl); 491 } else if (AllowDeducedTemplate) { 492 if (auto *TD = getAsTypeTemplateDecl(IIDecl)) 493 T = Context.getDeducedTemplateSpecializationType(TemplateName(TD), 494 QualType(), false); 495 } 496 497 if (T.isNull()) { 498 // If it's not plausibly a type, suppress diagnostics. 499 Result.suppressDiagnostics(); 500 return nullptr; 501 } 502 503 // NOTE: avoid constructing an ElaboratedType(Loc) if this is a 504 // constructor or destructor name (in such a case, the scope specifier 505 // will be attached to the enclosing Expr or Decl node). 506 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName && 507 !isa<ObjCInterfaceDecl>(IIDecl)) { 508 if (WantNontrivialTypeSourceInfo) { 509 // Construct a type with type-source information. 510 TypeLocBuilder Builder; 511 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 512 513 T = getElaboratedType(ETK_None, *SS, T); 514 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 515 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 516 ElabTL.setQualifierLoc(SS->getWithLocInContext(Context)); 517 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 518 } else { 519 T = getElaboratedType(ETK_None, *SS, T); 520 } 521 } 522 523 return ParsedType::make(T); 524 } 525 526 // Builds a fake NNS for the given decl context. 527 static NestedNameSpecifier * 528 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) { 529 for (;; DC = DC->getLookupParent()) { 530 DC = DC->getPrimaryContext(); 531 auto *ND = dyn_cast<NamespaceDecl>(DC); 532 if (ND && !ND->isInline() && !ND->isAnonymousNamespace()) 533 return NestedNameSpecifier::Create(Context, nullptr, ND); 534 else if (auto *RD = dyn_cast<CXXRecordDecl>(DC)) 535 return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(), 536 RD->getTypeForDecl()); 537 else if (isa<TranslationUnitDecl>(DC)) 538 return NestedNameSpecifier::GlobalSpecifier(Context); 539 } 540 llvm_unreachable("something isn't in TU scope?"); 541 } 542 543 /// Find the parent class with dependent bases of the innermost enclosing method 544 /// context. Do not look for enclosing CXXRecordDecls directly, or we will end 545 /// up allowing unqualified dependent type names at class-level, which MSVC 546 /// correctly rejects. 547 static const CXXRecordDecl * 548 findRecordWithDependentBasesOfEnclosingMethod(const DeclContext *DC) { 549 for (; DC && DC->isDependentContext(); DC = DC->getLookupParent()) { 550 DC = DC->getPrimaryContext(); 551 if (const auto *MD = dyn_cast<CXXMethodDecl>(DC)) 552 if (MD->getParent()->hasAnyDependentBases()) 553 return MD->getParent(); 554 } 555 return nullptr; 556 } 557 558 ParsedType Sema::ActOnMSVCUnknownTypeName(const IdentifierInfo &II, 559 SourceLocation NameLoc, 560 bool IsTemplateTypeArg) { 561 assert(getLangOpts().MSVCCompat && "shouldn't be called in non-MSVC mode"); 562 563 NestedNameSpecifier *NNS = nullptr; 564 if (IsTemplateTypeArg && getCurScope()->isTemplateParamScope()) { 565 // If we weren't able to parse a default template argument, delay lookup 566 // until instantiation time by making a non-dependent DependentTypeName. We 567 // pretend we saw a NestedNameSpecifier referring to the current scope, and 568 // lookup is retried. 569 // FIXME: This hurts our diagnostic quality, since we get errors like "no 570 // type named 'Foo' in 'current_namespace'" when the user didn't write any 571 // name specifiers. 572 NNS = synthesizeCurrentNestedNameSpecifier(Context, CurContext); 573 Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II; 574 } else if (const CXXRecordDecl *RD = 575 findRecordWithDependentBasesOfEnclosingMethod(CurContext)) { 576 // Build a DependentNameType that will perform lookup into RD at 577 // instantiation time. 578 NNS = NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(), 579 RD->getTypeForDecl()); 580 581 // Diagnose that this identifier was undeclared, and retry the lookup during 582 // template instantiation. 583 Diag(NameLoc, diag::ext_undeclared_unqual_id_with_dependent_base) << &II 584 << RD; 585 } else { 586 // This is not a situation that we should recover from. 587 return ParsedType(); 588 } 589 590 QualType T = Context.getDependentNameType(ETK_None, NNS, &II); 591 592 // Build type location information. We synthesized the qualifier, so we have 593 // to build a fake NestedNameSpecifierLoc. 594 NestedNameSpecifierLocBuilder NNSLocBuilder; 595 NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 596 NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context); 597 598 TypeLocBuilder Builder; 599 DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T); 600 DepTL.setNameLoc(NameLoc); 601 DepTL.setElaboratedKeywordLoc(SourceLocation()); 602 DepTL.setQualifierLoc(QualifierLoc); 603 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 604 } 605 606 /// isTagName() - This method is called *for error recovery purposes only* 607 /// to determine if the specified name is a valid tag name ("struct foo"). If 608 /// so, this returns the TST for the tag corresponding to it (TST_enum, 609 /// TST_union, TST_struct, TST_interface, TST_class). This is used to diagnose 610 /// cases in C where the user forgot to specify the tag. 611 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) { 612 // Do a tag name lookup in this scope. 613 LookupResult R(*this, &II, SourceLocation(), LookupTagName); 614 LookupName(R, S, false); 615 R.suppressDiagnostics(); 616 if (R.getResultKind() == LookupResult::Found) 617 if (const TagDecl *TD = R.getAsSingle<TagDecl>()) { 618 switch (TD->getTagKind()) { 619 case TTK_Struct: return DeclSpec::TST_struct; 620 case TTK_Interface: return DeclSpec::TST_interface; 621 case TTK_Union: return DeclSpec::TST_union; 622 case TTK_Class: return DeclSpec::TST_class; 623 case TTK_Enum: return DeclSpec::TST_enum; 624 } 625 } 626 627 return DeclSpec::TST_unspecified; 628 } 629 630 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope, 631 /// if a CXXScopeSpec's type is equal to the type of one of the base classes 632 /// then downgrade the missing typename error to a warning. 633 /// This is needed for MSVC compatibility; Example: 634 /// @code 635 /// template<class T> class A { 636 /// public: 637 /// typedef int TYPE; 638 /// }; 639 /// template<class T> class B : public A<T> { 640 /// public: 641 /// A<T>::TYPE a; // no typename required because A<T> is a base class. 642 /// }; 643 /// @endcode 644 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) { 645 if (CurContext->isRecord()) { 646 if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super) 647 return true; 648 649 const Type *Ty = SS->getScopeRep()->getAsType(); 650 651 CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext); 652 for (const auto &Base : RD->bases()) 653 if (Ty && Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType())) 654 return true; 655 return S->isFunctionPrototypeScope(); 656 } 657 return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope(); 658 } 659 660 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II, 661 SourceLocation IILoc, 662 Scope *S, 663 CXXScopeSpec *SS, 664 ParsedType &SuggestedType, 665 bool IsTemplateName) { 666 // Don't report typename errors for editor placeholders. 667 if (II->isEditorPlaceholder()) 668 return; 669 // We don't have anything to suggest (yet). 670 SuggestedType = nullptr; 671 672 // There may have been a typo in the name of the type. Look up typo 673 // results, in case we have something that we can suggest. 674 TypeNameValidatorCCC CCC(/*AllowInvalid=*/false, /*WantClass=*/false, 675 /*AllowTemplates=*/IsTemplateName, 676 /*AllowNonTemplates=*/!IsTemplateName); 677 if (TypoCorrection Corrected = 678 CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS, 679 CCC, CTK_ErrorRecovery)) { 680 // FIXME: Support error recovery for the template-name case. 681 bool CanRecover = !IsTemplateName; 682 if (Corrected.isKeyword()) { 683 // We corrected to a keyword. 684 diagnoseTypo(Corrected, 685 PDiag(IsTemplateName ? diag::err_no_template_suggest 686 : diag::err_unknown_typename_suggest) 687 << II); 688 II = Corrected.getCorrectionAsIdentifierInfo(); 689 } else { 690 // We found a similarly-named type or interface; suggest that. 691 if (!SS || !SS->isSet()) { 692 diagnoseTypo(Corrected, 693 PDiag(IsTemplateName ? diag::err_no_template_suggest 694 : diag::err_unknown_typename_suggest) 695 << II, CanRecover); 696 } else if (DeclContext *DC = computeDeclContext(*SS, false)) { 697 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 698 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 699 II->getName().equals(CorrectedStr); 700 diagnoseTypo(Corrected, 701 PDiag(IsTemplateName 702 ? diag::err_no_member_template_suggest 703 : diag::err_unknown_nested_typename_suggest) 704 << II << DC << DroppedSpecifier << SS->getRange(), 705 CanRecover); 706 } else { 707 llvm_unreachable("could not have corrected a typo here"); 708 } 709 710 if (!CanRecover) 711 return; 712 713 CXXScopeSpec tmpSS; 714 if (Corrected.getCorrectionSpecifier()) 715 tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 716 SourceRange(IILoc)); 717 // FIXME: Support class template argument deduction here. 718 SuggestedType = 719 getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S, 720 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr, 721 /*IsCtorOrDtorName=*/false, 722 /*WantNontrivialTypeSourceInfo=*/true); 723 } 724 return; 725 } 726 727 if (getLangOpts().CPlusPlus && !IsTemplateName) { 728 // See if II is a class template that the user forgot to pass arguments to. 729 UnqualifiedId Name; 730 Name.setIdentifier(II, IILoc); 731 CXXScopeSpec EmptySS; 732 TemplateTy TemplateResult; 733 bool MemberOfUnknownSpecialization; 734 if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false, 735 Name, nullptr, true, TemplateResult, 736 MemberOfUnknownSpecialization) == TNK_Type_template) { 737 diagnoseMissingTemplateArguments(TemplateResult.get(), IILoc); 738 return; 739 } 740 } 741 742 // FIXME: Should we move the logic that tries to recover from a missing tag 743 // (struct, union, enum) from Parser::ParseImplicitInt here, instead? 744 745 if (!SS || (!SS->isSet() && !SS->isInvalid())) 746 Diag(IILoc, IsTemplateName ? diag::err_no_template 747 : diag::err_unknown_typename) 748 << II; 749 else if (DeclContext *DC = computeDeclContext(*SS, false)) 750 Diag(IILoc, IsTemplateName ? diag::err_no_member_template 751 : diag::err_typename_nested_not_found) 752 << II << DC << SS->getRange(); 753 else if (SS->isValid() && SS->getScopeRep()->containsErrors()) { 754 SuggestedType = 755 ActOnTypenameType(S, SourceLocation(), *SS, *II, IILoc).get(); 756 } else if (isDependentScopeSpecifier(*SS)) { 757 unsigned DiagID = diag::err_typename_missing; 758 if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S)) 759 DiagID = diag::ext_typename_missing; 760 761 Diag(SS->getRange().getBegin(), DiagID) 762 << SS->getScopeRep() << II->getName() 763 << SourceRange(SS->getRange().getBegin(), IILoc) 764 << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename "); 765 SuggestedType = ActOnTypenameType(S, SourceLocation(), 766 *SS, *II, IILoc).get(); 767 } else { 768 assert(SS && SS->isInvalid() && 769 "Invalid scope specifier has already been diagnosed"); 770 } 771 } 772 773 /// Determine whether the given result set contains either a type name 774 /// or 775 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) { 776 bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus && 777 NextToken.is(tok::less); 778 779 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) { 780 if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I)) 781 return true; 782 783 if (CheckTemplate && isa<TemplateDecl>(*I)) 784 return true; 785 } 786 787 return false; 788 } 789 790 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result, 791 Scope *S, CXXScopeSpec &SS, 792 IdentifierInfo *&Name, 793 SourceLocation NameLoc) { 794 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName); 795 SemaRef.LookupParsedName(R, S, &SS); 796 if (TagDecl *Tag = R.getAsSingle<TagDecl>()) { 797 StringRef FixItTagName; 798 switch (Tag->getTagKind()) { 799 case TTK_Class: 800 FixItTagName = "class "; 801 break; 802 803 case TTK_Enum: 804 FixItTagName = "enum "; 805 break; 806 807 case TTK_Struct: 808 FixItTagName = "struct "; 809 break; 810 811 case TTK_Interface: 812 FixItTagName = "__interface "; 813 break; 814 815 case TTK_Union: 816 FixItTagName = "union "; 817 break; 818 } 819 820 StringRef TagName = FixItTagName.drop_back(); 821 SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag) 822 << Name << TagName << SemaRef.getLangOpts().CPlusPlus 823 << FixItHint::CreateInsertion(NameLoc, FixItTagName); 824 825 for (LookupResult::iterator I = Result.begin(), IEnd = Result.end(); 826 I != IEnd; ++I) 827 SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type) 828 << Name << TagName; 829 830 // Replace lookup results with just the tag decl. 831 Result.clear(Sema::LookupTagName); 832 SemaRef.LookupParsedName(Result, S, &SS); 833 return true; 834 } 835 836 return false; 837 } 838 839 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier. 840 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS, 841 QualType T, SourceLocation NameLoc) { 842 ASTContext &Context = S.Context; 843 844 TypeLocBuilder Builder; 845 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 846 847 T = S.getElaboratedType(ETK_None, SS, T); 848 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 849 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 850 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context)); 851 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 852 } 853 854 Sema::NameClassification Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, 855 IdentifierInfo *&Name, 856 SourceLocation NameLoc, 857 const Token &NextToken, 858 CorrectionCandidateCallback *CCC) { 859 DeclarationNameInfo NameInfo(Name, NameLoc); 860 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 861 862 assert(NextToken.isNot(tok::coloncolon) && 863 "parse nested name specifiers before calling ClassifyName"); 864 if (getLangOpts().CPlusPlus && SS.isSet() && 865 isCurrentClassName(*Name, S, &SS)) { 866 // Per [class.qual]p2, this names the constructors of SS, not the 867 // injected-class-name. We don't have a classification for that. 868 // There's not much point caching this result, since the parser 869 // will reject it later. 870 return NameClassification::Unknown(); 871 } 872 873 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); 874 LookupParsedName(Result, S, &SS, !CurMethod); 875 876 if (SS.isInvalid()) 877 return NameClassification::Error(); 878 879 // For unqualified lookup in a class template in MSVC mode, look into 880 // dependent base classes where the primary class template is known. 881 if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) { 882 if (ParsedType TypeInBase = 883 recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc)) 884 return TypeInBase; 885 } 886 887 // Perform lookup for Objective-C instance variables (including automatically 888 // synthesized instance variables), if we're in an Objective-C method. 889 // FIXME: This lookup really, really needs to be folded in to the normal 890 // unqualified lookup mechanism. 891 if (SS.isEmpty() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) { 892 DeclResult Ivar = LookupIvarInObjCMethod(Result, S, Name); 893 if (Ivar.isInvalid()) 894 return NameClassification::Error(); 895 if (Ivar.isUsable()) 896 return NameClassification::NonType(cast<NamedDecl>(Ivar.get())); 897 898 // We defer builtin creation until after ivar lookup inside ObjC methods. 899 if (Result.empty()) 900 LookupBuiltin(Result); 901 } 902 903 bool SecondTry = false; 904 bool IsFilteredTemplateName = false; 905 906 Corrected: 907 switch (Result.getResultKind()) { 908 case LookupResult::NotFound: 909 // If an unqualified-id is followed by a '(', then we have a function 910 // call. 911 if (SS.isEmpty() && NextToken.is(tok::l_paren)) { 912 // In C++, this is an ADL-only call. 913 // FIXME: Reference? 914 if (getLangOpts().CPlusPlus) 915 return NameClassification::UndeclaredNonType(); 916 917 // C90 6.3.2.2: 918 // If the expression that precedes the parenthesized argument list in a 919 // function call consists solely of an identifier, and if no 920 // declaration is visible for this identifier, the identifier is 921 // implicitly declared exactly as if, in the innermost block containing 922 // the function call, the declaration 923 // 924 // extern int identifier (); 925 // 926 // appeared. 927 // 928 // We also allow this in C99 as an extension. 929 if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) 930 return NameClassification::NonType(D); 931 } 932 933 if (getLangOpts().CPlusPlus20 && SS.isEmpty() && NextToken.is(tok::less)) { 934 // In C++20 onwards, this could be an ADL-only call to a function 935 // template, and we're required to assume that this is a template name. 936 // 937 // FIXME: Find a way to still do typo correction in this case. 938 TemplateName Template = 939 Context.getAssumedTemplateName(NameInfo.getName()); 940 return NameClassification::UndeclaredTemplate(Template); 941 } 942 943 // In C, we first see whether there is a tag type by the same name, in 944 // which case it's likely that the user just forgot to write "enum", 945 // "struct", or "union". 946 if (!getLangOpts().CPlusPlus && !SecondTry && 947 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 948 break; 949 } 950 951 // Perform typo correction to determine if there is another name that is 952 // close to this name. 953 if (!SecondTry && CCC) { 954 SecondTry = true; 955 if (TypoCorrection Corrected = 956 CorrectTypo(Result.getLookupNameInfo(), Result.getLookupKind(), S, 957 &SS, *CCC, CTK_ErrorRecovery)) { 958 unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest; 959 unsigned QualifiedDiag = diag::err_no_member_suggest; 960 961 NamedDecl *FirstDecl = Corrected.getFoundDecl(); 962 NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl(); 963 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 964 UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) { 965 UnqualifiedDiag = diag::err_no_template_suggest; 966 QualifiedDiag = diag::err_no_member_template_suggest; 967 } else if (UnderlyingFirstDecl && 968 (isa<TypeDecl>(UnderlyingFirstDecl) || 969 isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) || 970 isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) { 971 UnqualifiedDiag = diag::err_unknown_typename_suggest; 972 QualifiedDiag = diag::err_unknown_nested_typename_suggest; 973 } 974 975 if (SS.isEmpty()) { 976 diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name); 977 } else {// FIXME: is this even reachable? Test it. 978 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 979 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 980 Name->getName().equals(CorrectedStr); 981 diagnoseTypo(Corrected, PDiag(QualifiedDiag) 982 << Name << computeDeclContext(SS, false) 983 << DroppedSpecifier << SS.getRange()); 984 } 985 986 // Update the name, so that the caller has the new name. 987 Name = Corrected.getCorrectionAsIdentifierInfo(); 988 989 // Typo correction corrected to a keyword. 990 if (Corrected.isKeyword()) 991 return Name; 992 993 // Also update the LookupResult... 994 // FIXME: This should probably go away at some point 995 Result.clear(); 996 Result.setLookupName(Corrected.getCorrection()); 997 if (FirstDecl) 998 Result.addDecl(FirstDecl); 999 1000 // If we found an Objective-C instance variable, let 1001 // LookupInObjCMethod build the appropriate expression to 1002 // reference the ivar. 1003 // FIXME: This is a gross hack. 1004 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) { 1005 DeclResult R = 1006 LookupIvarInObjCMethod(Result, S, Ivar->getIdentifier()); 1007 if (R.isInvalid()) 1008 return NameClassification::Error(); 1009 if (R.isUsable()) 1010 return NameClassification::NonType(Ivar); 1011 } 1012 1013 goto Corrected; 1014 } 1015 } 1016 1017 // We failed to correct; just fall through and let the parser deal with it. 1018 Result.suppressDiagnostics(); 1019 return NameClassification::Unknown(); 1020 1021 case LookupResult::NotFoundInCurrentInstantiation: { 1022 // We performed name lookup into the current instantiation, and there were 1023 // dependent bases, so we treat this result the same way as any other 1024 // dependent nested-name-specifier. 1025 1026 // C++ [temp.res]p2: 1027 // A name used in a template declaration or definition and that is 1028 // dependent on a template-parameter is assumed not to name a type 1029 // unless the applicable name lookup finds a type name or the name is 1030 // qualified by the keyword typename. 1031 // 1032 // FIXME: If the next token is '<', we might want to ask the parser to 1033 // perform some heroics to see if we actually have a 1034 // template-argument-list, which would indicate a missing 'template' 1035 // keyword here. 1036 return NameClassification::DependentNonType(); 1037 } 1038 1039 case LookupResult::Found: 1040 case LookupResult::FoundOverloaded: 1041 case LookupResult::FoundUnresolvedValue: 1042 break; 1043 1044 case LookupResult::Ambiguous: 1045 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 1046 hasAnyAcceptableTemplateNames(Result, /*AllowFunctionTemplates=*/true, 1047 /*AllowDependent=*/false)) { 1048 // C++ [temp.local]p3: 1049 // A lookup that finds an injected-class-name (10.2) can result in an 1050 // ambiguity in certain cases (for example, if it is found in more than 1051 // one base class). If all of the injected-class-names that are found 1052 // refer to specializations of the same class template, and if the name 1053 // is followed by a template-argument-list, the reference refers to the 1054 // class template itself and not a specialization thereof, and is not 1055 // ambiguous. 1056 // 1057 // This filtering can make an ambiguous result into an unambiguous one, 1058 // so try again after filtering out template names. 1059 FilterAcceptableTemplateNames(Result); 1060 if (!Result.isAmbiguous()) { 1061 IsFilteredTemplateName = true; 1062 break; 1063 } 1064 } 1065 1066 // Diagnose the ambiguity and return an error. 1067 return NameClassification::Error(); 1068 } 1069 1070 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 1071 (IsFilteredTemplateName || 1072 hasAnyAcceptableTemplateNames( 1073 Result, /*AllowFunctionTemplates=*/true, 1074 /*AllowDependent=*/false, 1075 /*AllowNonTemplateFunctions*/ SS.isEmpty() && 1076 getLangOpts().CPlusPlus20))) { 1077 // C++ [temp.names]p3: 1078 // After name lookup (3.4) finds that a name is a template-name or that 1079 // an operator-function-id or a literal- operator-id refers to a set of 1080 // overloaded functions any member of which is a function template if 1081 // this is followed by a <, the < is always taken as the delimiter of a 1082 // template-argument-list and never as the less-than operator. 1083 // C++2a [temp.names]p2: 1084 // A name is also considered to refer to a template if it is an 1085 // unqualified-id followed by a < and name lookup finds either one 1086 // or more functions or finds nothing. 1087 if (!IsFilteredTemplateName) 1088 FilterAcceptableTemplateNames(Result); 1089 1090 bool IsFunctionTemplate; 1091 bool IsVarTemplate; 1092 TemplateName Template; 1093 if (Result.end() - Result.begin() > 1) { 1094 IsFunctionTemplate = true; 1095 Template = Context.getOverloadedTemplateName(Result.begin(), 1096 Result.end()); 1097 } else if (!Result.empty()) { 1098 auto *TD = cast<TemplateDecl>(getAsTemplateNameDecl( 1099 *Result.begin(), /*AllowFunctionTemplates=*/true, 1100 /*AllowDependent=*/false)); 1101 IsFunctionTemplate = isa<FunctionTemplateDecl>(TD); 1102 IsVarTemplate = isa<VarTemplateDecl>(TD); 1103 1104 if (SS.isNotEmpty()) 1105 Template = 1106 Context.getQualifiedTemplateName(SS.getScopeRep(), 1107 /*TemplateKeyword=*/false, TD); 1108 else 1109 Template = TemplateName(TD); 1110 } else { 1111 // All results were non-template functions. This is a function template 1112 // name. 1113 IsFunctionTemplate = true; 1114 Template = Context.getAssumedTemplateName(NameInfo.getName()); 1115 } 1116 1117 if (IsFunctionTemplate) { 1118 // Function templates always go through overload resolution, at which 1119 // point we'll perform the various checks (e.g., accessibility) we need 1120 // to based on which function we selected. 1121 Result.suppressDiagnostics(); 1122 1123 return NameClassification::FunctionTemplate(Template); 1124 } 1125 1126 return IsVarTemplate ? NameClassification::VarTemplate(Template) 1127 : NameClassification::TypeTemplate(Template); 1128 } 1129 1130 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl(); 1131 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) { 1132 DiagnoseUseOfDecl(Type, NameLoc); 1133 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false); 1134 QualType T = Context.getTypeDeclType(Type); 1135 if (SS.isNotEmpty()) 1136 return buildNestedType(*this, SS, T, NameLoc); 1137 return ParsedType::make(T); 1138 } 1139 1140 ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl); 1141 if (!Class) { 1142 // FIXME: It's unfortunate that we don't have a Type node for handling this. 1143 if (ObjCCompatibleAliasDecl *Alias = 1144 dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl)) 1145 Class = Alias->getClassInterface(); 1146 } 1147 1148 if (Class) { 1149 DiagnoseUseOfDecl(Class, NameLoc); 1150 1151 if (NextToken.is(tok::period)) { 1152 // Interface. <something> is parsed as a property reference expression. 1153 // Just return "unknown" as a fall-through for now. 1154 Result.suppressDiagnostics(); 1155 return NameClassification::Unknown(); 1156 } 1157 1158 QualType T = Context.getObjCInterfaceType(Class); 1159 return ParsedType::make(T); 1160 } 1161 1162 if (isa<ConceptDecl>(FirstDecl)) 1163 return NameClassification::Concept( 1164 TemplateName(cast<TemplateDecl>(FirstDecl))); 1165 1166 // We can have a type template here if we're classifying a template argument. 1167 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) && 1168 !isa<VarTemplateDecl>(FirstDecl)) 1169 return NameClassification::TypeTemplate( 1170 TemplateName(cast<TemplateDecl>(FirstDecl))); 1171 1172 // Check for a tag type hidden by a non-type decl in a few cases where it 1173 // seems likely a type is wanted instead of the non-type that was found. 1174 bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star); 1175 if ((NextToken.is(tok::identifier) || 1176 (NextIsOp && 1177 FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) && 1178 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 1179 TypeDecl *Type = Result.getAsSingle<TypeDecl>(); 1180 DiagnoseUseOfDecl(Type, NameLoc); 1181 QualType T = Context.getTypeDeclType(Type); 1182 if (SS.isNotEmpty()) 1183 return buildNestedType(*this, SS, T, NameLoc); 1184 return ParsedType::make(T); 1185 } 1186 1187 // If we already know which single declaration is referenced, just annotate 1188 // that declaration directly. Defer resolving even non-overloaded class 1189 // member accesses, as we need to defer certain access checks until we know 1190 // the context. 1191 bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren)); 1192 if (Result.isSingleResult() && !ADL && !FirstDecl->isCXXClassMember()) 1193 return NameClassification::NonType(Result.getRepresentativeDecl()); 1194 1195 // Otherwise, this is an overload set that we will need to resolve later. 1196 Result.suppressDiagnostics(); 1197 return NameClassification::OverloadSet(UnresolvedLookupExpr::Create( 1198 Context, Result.getNamingClass(), SS.getWithLocInContext(Context), 1199 Result.getLookupNameInfo(), ADL, Result.isOverloadedResult(), 1200 Result.begin(), Result.end())); 1201 } 1202 1203 ExprResult 1204 Sema::ActOnNameClassifiedAsUndeclaredNonType(IdentifierInfo *Name, 1205 SourceLocation NameLoc) { 1206 assert(getLangOpts().CPlusPlus && "ADL-only call in C?"); 1207 CXXScopeSpec SS; 1208 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); 1209 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true); 1210 } 1211 1212 ExprResult 1213 Sema::ActOnNameClassifiedAsDependentNonType(const CXXScopeSpec &SS, 1214 IdentifierInfo *Name, 1215 SourceLocation NameLoc, 1216 bool IsAddressOfOperand) { 1217 DeclarationNameInfo NameInfo(Name, NameLoc); 1218 return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(), 1219 NameInfo, IsAddressOfOperand, 1220 /*TemplateArgs=*/nullptr); 1221 } 1222 1223 ExprResult Sema::ActOnNameClassifiedAsNonType(Scope *S, const CXXScopeSpec &SS, 1224 NamedDecl *Found, 1225 SourceLocation NameLoc, 1226 const Token &NextToken) { 1227 if (getCurMethodDecl() && SS.isEmpty()) 1228 if (auto *Ivar = dyn_cast<ObjCIvarDecl>(Found->getUnderlyingDecl())) 1229 return BuildIvarRefExpr(S, NameLoc, Ivar); 1230 1231 // Reconstruct the lookup result. 1232 LookupResult Result(*this, Found->getDeclName(), NameLoc, LookupOrdinaryName); 1233 Result.addDecl(Found); 1234 Result.resolveKind(); 1235 1236 bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren)); 1237 return BuildDeclarationNameExpr(SS, Result, ADL); 1238 } 1239 1240 ExprResult Sema::ActOnNameClassifiedAsOverloadSet(Scope *S, Expr *E) { 1241 // For an implicit class member access, transform the result into a member 1242 // access expression if necessary. 1243 auto *ULE = cast<UnresolvedLookupExpr>(E); 1244 if ((*ULE->decls_begin())->isCXXClassMember()) { 1245 CXXScopeSpec SS; 1246 SS.Adopt(ULE->getQualifierLoc()); 1247 1248 // Reconstruct the lookup result. 1249 LookupResult Result(*this, ULE->getName(), ULE->getNameLoc(), 1250 LookupOrdinaryName); 1251 Result.setNamingClass(ULE->getNamingClass()); 1252 for (auto I = ULE->decls_begin(), E = ULE->decls_end(); I != E; ++I) 1253 Result.addDecl(*I, I.getAccess()); 1254 Result.resolveKind(); 1255 return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result, 1256 nullptr, S); 1257 } 1258 1259 // Otherwise, this is already in the form we needed, and no further checks 1260 // are necessary. 1261 return ULE; 1262 } 1263 1264 Sema::TemplateNameKindForDiagnostics 1265 Sema::getTemplateNameKindForDiagnostics(TemplateName Name) { 1266 auto *TD = Name.getAsTemplateDecl(); 1267 if (!TD) 1268 return TemplateNameKindForDiagnostics::DependentTemplate; 1269 if (isa<ClassTemplateDecl>(TD)) 1270 return TemplateNameKindForDiagnostics::ClassTemplate; 1271 if (isa<FunctionTemplateDecl>(TD)) 1272 return TemplateNameKindForDiagnostics::FunctionTemplate; 1273 if (isa<VarTemplateDecl>(TD)) 1274 return TemplateNameKindForDiagnostics::VarTemplate; 1275 if (isa<TypeAliasTemplateDecl>(TD)) 1276 return TemplateNameKindForDiagnostics::AliasTemplate; 1277 if (isa<TemplateTemplateParmDecl>(TD)) 1278 return TemplateNameKindForDiagnostics::TemplateTemplateParam; 1279 if (isa<ConceptDecl>(TD)) 1280 return TemplateNameKindForDiagnostics::Concept; 1281 return TemplateNameKindForDiagnostics::DependentTemplate; 1282 } 1283 1284 void Sema::PushDeclContext(Scope *S, DeclContext *DC) { 1285 assert(DC->getLexicalParent() == CurContext && 1286 "The next DeclContext should be lexically contained in the current one."); 1287 CurContext = DC; 1288 S->setEntity(DC); 1289 } 1290 1291 void Sema::PopDeclContext() { 1292 assert(CurContext && "DeclContext imbalance!"); 1293 1294 CurContext = CurContext->getLexicalParent(); 1295 assert(CurContext && "Popped translation unit!"); 1296 } 1297 1298 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S, 1299 Decl *D) { 1300 // Unlike PushDeclContext, the context to which we return is not necessarily 1301 // the containing DC of TD, because the new context will be some pre-existing 1302 // TagDecl definition instead of a fresh one. 1303 auto Result = static_cast<SkippedDefinitionContext>(CurContext); 1304 CurContext = cast<TagDecl>(D)->getDefinition(); 1305 assert(CurContext && "skipping definition of undefined tag"); 1306 // Start lookups from the parent of the current context; we don't want to look 1307 // into the pre-existing complete definition. 1308 S->setEntity(CurContext->getLookupParent()); 1309 return Result; 1310 } 1311 1312 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) { 1313 CurContext = static_cast<decltype(CurContext)>(Context); 1314 } 1315 1316 /// EnterDeclaratorContext - Used when we must lookup names in the context 1317 /// of a declarator's nested name specifier. 1318 /// 1319 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) { 1320 // C++0x [basic.lookup.unqual]p13: 1321 // A name used in the definition of a static data member of class 1322 // X (after the qualified-id of the static member) is looked up as 1323 // if the name was used in a member function of X. 1324 // C++0x [basic.lookup.unqual]p14: 1325 // If a variable member of a namespace is defined outside of the 1326 // scope of its namespace then any name used in the definition of 1327 // the variable member (after the declarator-id) is looked up as 1328 // if the definition of the variable member occurred in its 1329 // namespace. 1330 // Both of these imply that we should push a scope whose context 1331 // is the semantic context of the declaration. We can't use 1332 // PushDeclContext here because that context is not necessarily 1333 // lexically contained in the current context. Fortunately, 1334 // the containing scope should have the appropriate information. 1335 1336 assert(!S->getEntity() && "scope already has entity"); 1337 1338 #ifndef NDEBUG 1339 Scope *Ancestor = S->getParent(); 1340 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 1341 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch"); 1342 #endif 1343 1344 CurContext = DC; 1345 S->setEntity(DC); 1346 1347 if (S->getParent()->isTemplateParamScope()) { 1348 // Also set the corresponding entities for all immediately-enclosing 1349 // template parameter scopes. 1350 EnterTemplatedContext(S->getParent(), DC); 1351 } 1352 } 1353 1354 void Sema::ExitDeclaratorContext(Scope *S) { 1355 assert(S->getEntity() == CurContext && "Context imbalance!"); 1356 1357 // Switch back to the lexical context. The safety of this is 1358 // enforced by an assert in EnterDeclaratorContext. 1359 Scope *Ancestor = S->getParent(); 1360 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 1361 CurContext = Ancestor->getEntity(); 1362 1363 // We don't need to do anything with the scope, which is going to 1364 // disappear. 1365 } 1366 1367 void Sema::EnterTemplatedContext(Scope *S, DeclContext *DC) { 1368 assert(S->isTemplateParamScope() && 1369 "expected to be initializing a template parameter scope"); 1370 1371 // C++20 [temp.local]p7: 1372 // In the definition of a member of a class template that appears outside 1373 // of the class template definition, the name of a member of the class 1374 // template hides the name of a template-parameter of any enclosing class 1375 // templates (but not a template-parameter of the member if the member is a 1376 // class or function template). 1377 // C++20 [temp.local]p9: 1378 // In the definition of a class template or in the definition of a member 1379 // of such a template that appears outside of the template definition, for 1380 // each non-dependent base class (13.8.2.1), if the name of the base class 1381 // or the name of a member of the base class is the same as the name of a 1382 // template-parameter, the base class name or member name hides the 1383 // template-parameter name (6.4.10). 1384 // 1385 // This means that a template parameter scope should be searched immediately 1386 // after searching the DeclContext for which it is a template parameter 1387 // scope. For example, for 1388 // template<typename T> template<typename U> template<typename V> 1389 // void N::A<T>::B<U>::f(...) 1390 // we search V then B<U> (and base classes) then U then A<T> (and base 1391 // classes) then T then N then ::. 1392 unsigned ScopeDepth = getTemplateDepth(S); 1393 for (; S && S->isTemplateParamScope(); S = S->getParent(), --ScopeDepth) { 1394 DeclContext *SearchDCAfterScope = DC; 1395 for (; DC; DC = DC->getLookupParent()) { 1396 if (const TemplateParameterList *TPL = 1397 cast<Decl>(DC)->getDescribedTemplateParams()) { 1398 unsigned DCDepth = TPL->getDepth() + 1; 1399 if (DCDepth > ScopeDepth) 1400 continue; 1401 if (ScopeDepth == DCDepth) 1402 SearchDCAfterScope = DC = DC->getLookupParent(); 1403 break; 1404 } 1405 } 1406 S->setLookupEntity(SearchDCAfterScope); 1407 } 1408 } 1409 1410 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) { 1411 // We assume that the caller has already called 1412 // ActOnReenterTemplateScope so getTemplatedDecl() works. 1413 FunctionDecl *FD = D->getAsFunction(); 1414 if (!FD) 1415 return; 1416 1417 // Same implementation as PushDeclContext, but enters the context 1418 // from the lexical parent, rather than the top-level class. 1419 assert(CurContext == FD->getLexicalParent() && 1420 "The next DeclContext should be lexically contained in the current one."); 1421 CurContext = FD; 1422 S->setEntity(CurContext); 1423 1424 for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) { 1425 ParmVarDecl *Param = FD->getParamDecl(P); 1426 // If the parameter has an identifier, then add it to the scope 1427 if (Param->getIdentifier()) { 1428 S->AddDecl(Param); 1429 IdResolver.AddDecl(Param); 1430 } 1431 } 1432 } 1433 1434 void Sema::ActOnExitFunctionContext() { 1435 // Same implementation as PopDeclContext, but returns to the lexical parent, 1436 // rather than the top-level class. 1437 assert(CurContext && "DeclContext imbalance!"); 1438 CurContext = CurContext->getLexicalParent(); 1439 assert(CurContext && "Popped translation unit!"); 1440 } 1441 1442 /// Determine whether we allow overloading of the function 1443 /// PrevDecl with another declaration. 1444 /// 1445 /// This routine determines whether overloading is possible, not 1446 /// whether some new function is actually an overload. It will return 1447 /// true in C++ (where we can always provide overloads) or, as an 1448 /// extension, in C when the previous function is already an 1449 /// overloaded function declaration or has the "overloadable" 1450 /// attribute. 1451 static bool AllowOverloadingOfFunction(LookupResult &Previous, 1452 ASTContext &Context, 1453 const FunctionDecl *New) { 1454 if (Context.getLangOpts().CPlusPlus) 1455 return true; 1456 1457 if (Previous.getResultKind() == LookupResult::FoundOverloaded) 1458 return true; 1459 1460 return Previous.getResultKind() == LookupResult::Found && 1461 (Previous.getFoundDecl()->hasAttr<OverloadableAttr>() || 1462 New->hasAttr<OverloadableAttr>()); 1463 } 1464 1465 /// Add this decl to the scope shadowed decl chains. 1466 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) { 1467 // Move up the scope chain until we find the nearest enclosing 1468 // non-transparent context. The declaration will be introduced into this 1469 // scope. 1470 while (S->getEntity() && S->getEntity()->isTransparentContext()) 1471 S = S->getParent(); 1472 1473 // Add scoped declarations into their context, so that they can be 1474 // found later. Declarations without a context won't be inserted 1475 // into any context. 1476 if (AddToContext) 1477 CurContext->addDecl(D); 1478 1479 // Out-of-line definitions shouldn't be pushed into scope in C++, unless they 1480 // are function-local declarations. 1481 if (getLangOpts().CPlusPlus && D->isOutOfLine() && 1482 !D->getDeclContext()->getRedeclContext()->Equals( 1483 D->getLexicalDeclContext()->getRedeclContext()) && 1484 !D->getLexicalDeclContext()->isFunctionOrMethod()) 1485 return; 1486 1487 // Template instantiations should also not be pushed into scope. 1488 if (isa<FunctionDecl>(D) && 1489 cast<FunctionDecl>(D)->isFunctionTemplateSpecialization()) 1490 return; 1491 1492 // If this replaces anything in the current scope, 1493 IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()), 1494 IEnd = IdResolver.end(); 1495 for (; I != IEnd; ++I) { 1496 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { 1497 S->RemoveDecl(*I); 1498 IdResolver.RemoveDecl(*I); 1499 1500 // Should only need to replace one decl. 1501 break; 1502 } 1503 } 1504 1505 S->AddDecl(D); 1506 1507 if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) { 1508 // Implicitly-generated labels may end up getting generated in an order that 1509 // isn't strictly lexical, which breaks name lookup. Be careful to insert 1510 // the label at the appropriate place in the identifier chain. 1511 for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) { 1512 DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext(); 1513 if (IDC == CurContext) { 1514 if (!S->isDeclScope(*I)) 1515 continue; 1516 } else if (IDC->Encloses(CurContext)) 1517 break; 1518 } 1519 1520 IdResolver.InsertDeclAfter(I, D); 1521 } else { 1522 IdResolver.AddDecl(D); 1523 } 1524 } 1525 1526 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S, 1527 bool AllowInlineNamespace) { 1528 return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace); 1529 } 1530 1531 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) { 1532 DeclContext *TargetDC = DC->getPrimaryContext(); 1533 do { 1534 if (DeclContext *ScopeDC = S->getEntity()) 1535 if (ScopeDC->getPrimaryContext() == TargetDC) 1536 return S; 1537 } while ((S = S->getParent())); 1538 1539 return nullptr; 1540 } 1541 1542 static bool isOutOfScopePreviousDeclaration(NamedDecl *, 1543 DeclContext*, 1544 ASTContext&); 1545 1546 /// Filters out lookup results that don't fall within the given scope 1547 /// as determined by isDeclInScope. 1548 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S, 1549 bool ConsiderLinkage, 1550 bool AllowInlineNamespace) { 1551 LookupResult::Filter F = R.makeFilter(); 1552 while (F.hasNext()) { 1553 NamedDecl *D = F.next(); 1554 1555 if (isDeclInScope(D, Ctx, S, AllowInlineNamespace)) 1556 continue; 1557 1558 if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context)) 1559 continue; 1560 1561 F.erase(); 1562 } 1563 1564 F.done(); 1565 } 1566 1567 /// We've determined that \p New is a redeclaration of \p Old. Check that they 1568 /// have compatible owning modules. 1569 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) { 1570 // FIXME: The Modules TS is not clear about how friend declarations are 1571 // to be treated. It's not meaningful to have different owning modules for 1572 // linkage in redeclarations of the same entity, so for now allow the 1573 // redeclaration and change the owning modules to match. 1574 if (New->getFriendObjectKind() && 1575 Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) { 1576 New->setLocalOwningModule(Old->getOwningModule()); 1577 makeMergedDefinitionVisible(New); 1578 return false; 1579 } 1580 1581 Module *NewM = New->getOwningModule(); 1582 Module *OldM = Old->getOwningModule(); 1583 1584 if (NewM && NewM->Kind == Module::PrivateModuleFragment) 1585 NewM = NewM->Parent; 1586 if (OldM && OldM->Kind == Module::PrivateModuleFragment) 1587 OldM = OldM->Parent; 1588 1589 if (NewM == OldM) 1590 return false; 1591 1592 bool NewIsModuleInterface = NewM && NewM->isModulePurview(); 1593 bool OldIsModuleInterface = OldM && OldM->isModulePurview(); 1594 if (NewIsModuleInterface || OldIsModuleInterface) { 1595 // C++ Modules TS [basic.def.odr] 6.2/6.7 [sic]: 1596 // if a declaration of D [...] appears in the purview of a module, all 1597 // other such declarations shall appear in the purview of the same module 1598 Diag(New->getLocation(), diag::err_mismatched_owning_module) 1599 << New 1600 << NewIsModuleInterface 1601 << (NewIsModuleInterface ? NewM->getFullModuleName() : "") 1602 << OldIsModuleInterface 1603 << (OldIsModuleInterface ? OldM->getFullModuleName() : ""); 1604 Diag(Old->getLocation(), diag::note_previous_declaration); 1605 New->setInvalidDecl(); 1606 return true; 1607 } 1608 1609 return false; 1610 } 1611 1612 static bool isUsingDecl(NamedDecl *D) { 1613 return isa<UsingShadowDecl>(D) || 1614 isa<UnresolvedUsingTypenameDecl>(D) || 1615 isa<UnresolvedUsingValueDecl>(D); 1616 } 1617 1618 /// Removes using shadow declarations from the lookup results. 1619 static void RemoveUsingDecls(LookupResult &R) { 1620 LookupResult::Filter F = R.makeFilter(); 1621 while (F.hasNext()) 1622 if (isUsingDecl(F.next())) 1623 F.erase(); 1624 1625 F.done(); 1626 } 1627 1628 /// Check for this common pattern: 1629 /// @code 1630 /// class S { 1631 /// S(const S&); // DO NOT IMPLEMENT 1632 /// void operator=(const S&); // DO NOT IMPLEMENT 1633 /// }; 1634 /// @endcode 1635 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) { 1636 // FIXME: Should check for private access too but access is set after we get 1637 // the decl here. 1638 if (D->doesThisDeclarationHaveABody()) 1639 return false; 1640 1641 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) 1642 return CD->isCopyConstructor(); 1643 return D->isCopyAssignmentOperator(); 1644 } 1645 1646 // We need this to handle 1647 // 1648 // typedef struct { 1649 // void *foo() { return 0; } 1650 // } A; 1651 // 1652 // When we see foo we don't know if after the typedef we will get 'A' or '*A' 1653 // for example. If 'A', foo will have external linkage. If we have '*A', 1654 // foo will have no linkage. Since we can't know until we get to the end 1655 // of the typedef, this function finds out if D might have non-external linkage. 1656 // Callers should verify at the end of the TU if it D has external linkage or 1657 // not. 1658 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) { 1659 const DeclContext *DC = D->getDeclContext(); 1660 while (!DC->isTranslationUnit()) { 1661 if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){ 1662 if (!RD->hasNameForLinkage()) 1663 return true; 1664 } 1665 DC = DC->getParent(); 1666 } 1667 1668 return !D->isExternallyVisible(); 1669 } 1670 1671 // FIXME: This needs to be refactored; some other isInMainFile users want 1672 // these semantics. 1673 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) { 1674 if (S.TUKind != TU_Complete) 1675 return false; 1676 return S.SourceMgr.isInMainFile(Loc); 1677 } 1678 1679 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const { 1680 assert(D); 1681 1682 if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>()) 1683 return false; 1684 1685 // Ignore all entities declared within templates, and out-of-line definitions 1686 // of members of class templates. 1687 if (D->getDeclContext()->isDependentContext() || 1688 D->getLexicalDeclContext()->isDependentContext()) 1689 return false; 1690 1691 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1692 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1693 return false; 1694 // A non-out-of-line declaration of a member specialization was implicitly 1695 // instantiated; it's the out-of-line declaration that we're interested in. 1696 if (FD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 1697 FD->getMemberSpecializationInfo() && !FD->isOutOfLine()) 1698 return false; 1699 1700 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 1701 if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD)) 1702 return false; 1703 } else { 1704 // 'static inline' functions are defined in headers; don't warn. 1705 if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation())) 1706 return false; 1707 } 1708 1709 if (FD->doesThisDeclarationHaveABody() && 1710 Context.DeclMustBeEmitted(FD)) 1711 return false; 1712 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1713 // Constants and utility variables are defined in headers with internal 1714 // linkage; don't warn. (Unlike functions, there isn't a convenient marker 1715 // like "inline".) 1716 if (!isMainFileLoc(*this, VD->getLocation())) 1717 return false; 1718 1719 if (Context.DeclMustBeEmitted(VD)) 1720 return false; 1721 1722 if (VD->isStaticDataMember() && 1723 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1724 return false; 1725 if (VD->isStaticDataMember() && 1726 VD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 1727 VD->getMemberSpecializationInfo() && !VD->isOutOfLine()) 1728 return false; 1729 1730 if (VD->isInline() && !isMainFileLoc(*this, VD->getLocation())) 1731 return false; 1732 } else { 1733 return false; 1734 } 1735 1736 // Only warn for unused decls internal to the translation unit. 1737 // FIXME: This seems like a bogus check; it suppresses -Wunused-function 1738 // for inline functions defined in the main source file, for instance. 1739 return mightHaveNonExternalLinkage(D); 1740 } 1741 1742 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) { 1743 if (!D) 1744 return; 1745 1746 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1747 const FunctionDecl *First = FD->getFirstDecl(); 1748 if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1749 return; // First should already be in the vector. 1750 } 1751 1752 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1753 const VarDecl *First = VD->getFirstDecl(); 1754 if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1755 return; // First should already be in the vector. 1756 } 1757 1758 if (ShouldWarnIfUnusedFileScopedDecl(D)) 1759 UnusedFileScopedDecls.push_back(D); 1760 } 1761 1762 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) { 1763 if (D->isInvalidDecl()) 1764 return false; 1765 1766 if (auto *DD = dyn_cast<DecompositionDecl>(D)) { 1767 // For a decomposition declaration, warn if none of the bindings are 1768 // referenced, instead of if the variable itself is referenced (which 1769 // it is, by the bindings' expressions). 1770 for (auto *BD : DD->bindings()) 1771 if (BD->isReferenced()) 1772 return false; 1773 } else if (!D->getDeclName()) { 1774 return false; 1775 } else if (D->isReferenced() || D->isUsed()) { 1776 return false; 1777 } 1778 1779 if (D->hasAttr<UnusedAttr>() || D->hasAttr<ObjCPreciseLifetimeAttr>()) 1780 return false; 1781 1782 if (isa<LabelDecl>(D)) 1783 return true; 1784 1785 // Except for labels, we only care about unused decls that are local to 1786 // functions. 1787 bool WithinFunction = D->getDeclContext()->isFunctionOrMethod(); 1788 if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext())) 1789 // For dependent types, the diagnostic is deferred. 1790 WithinFunction = 1791 WithinFunction || (R->isLocalClass() && !R->isDependentType()); 1792 if (!WithinFunction) 1793 return false; 1794 1795 if (isa<TypedefNameDecl>(D)) 1796 return true; 1797 1798 // White-list anything that isn't a local variable. 1799 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) 1800 return false; 1801 1802 // Types of valid local variables should be complete, so this should succeed. 1803 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1804 1805 // White-list anything with an __attribute__((unused)) type. 1806 const auto *Ty = VD->getType().getTypePtr(); 1807 1808 // Only look at the outermost level of typedef. 1809 if (const TypedefType *TT = Ty->getAs<TypedefType>()) { 1810 if (TT->getDecl()->hasAttr<UnusedAttr>()) 1811 return false; 1812 } 1813 1814 // If we failed to complete the type for some reason, or if the type is 1815 // dependent, don't diagnose the variable. 1816 if (Ty->isIncompleteType() || Ty->isDependentType()) 1817 return false; 1818 1819 // Look at the element type to ensure that the warning behaviour is 1820 // consistent for both scalars and arrays. 1821 Ty = Ty->getBaseElementTypeUnsafe(); 1822 1823 if (const TagType *TT = Ty->getAs<TagType>()) { 1824 const TagDecl *Tag = TT->getDecl(); 1825 if (Tag->hasAttr<UnusedAttr>()) 1826 return false; 1827 1828 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) { 1829 if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>()) 1830 return false; 1831 1832 if (const Expr *Init = VD->getInit()) { 1833 if (const ExprWithCleanups *Cleanups = 1834 dyn_cast<ExprWithCleanups>(Init)) 1835 Init = Cleanups->getSubExpr(); 1836 const CXXConstructExpr *Construct = 1837 dyn_cast<CXXConstructExpr>(Init); 1838 if (Construct && !Construct->isElidable()) { 1839 CXXConstructorDecl *CD = Construct->getConstructor(); 1840 if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() && 1841 (VD->getInit()->isValueDependent() || !VD->evaluateValue())) 1842 return false; 1843 } 1844 1845 // Suppress the warning if we don't know how this is constructed, and 1846 // it could possibly be non-trivial constructor. 1847 if (Init->isTypeDependent()) 1848 for (const CXXConstructorDecl *Ctor : RD->ctors()) 1849 if (!Ctor->isTrivial()) 1850 return false; 1851 } 1852 } 1853 } 1854 1855 // TODO: __attribute__((unused)) templates? 1856 } 1857 1858 return true; 1859 } 1860 1861 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx, 1862 FixItHint &Hint) { 1863 if (isa<LabelDecl>(D)) { 1864 SourceLocation AfterColon = Lexer::findLocationAfterToken( 1865 D->getEndLoc(), tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), 1866 true); 1867 if (AfterColon.isInvalid()) 1868 return; 1869 Hint = FixItHint::CreateRemoval( 1870 CharSourceRange::getCharRange(D->getBeginLoc(), AfterColon)); 1871 } 1872 } 1873 1874 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) { 1875 if (D->getTypeForDecl()->isDependentType()) 1876 return; 1877 1878 for (auto *TmpD : D->decls()) { 1879 if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD)) 1880 DiagnoseUnusedDecl(T); 1881 else if(const auto *R = dyn_cast<RecordDecl>(TmpD)) 1882 DiagnoseUnusedNestedTypedefs(R); 1883 } 1884 } 1885 1886 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used 1887 /// unless they are marked attr(unused). 1888 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) { 1889 if (!ShouldDiagnoseUnusedDecl(D)) 1890 return; 1891 1892 if (auto *TD = dyn_cast<TypedefNameDecl>(D)) { 1893 // typedefs can be referenced later on, so the diagnostics are emitted 1894 // at end-of-translation-unit. 1895 UnusedLocalTypedefNameCandidates.insert(TD); 1896 return; 1897 } 1898 1899 FixItHint Hint; 1900 GenerateFixForUnusedDecl(D, Context, Hint); 1901 1902 unsigned DiagID; 1903 if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable()) 1904 DiagID = diag::warn_unused_exception_param; 1905 else if (isa<LabelDecl>(D)) 1906 DiagID = diag::warn_unused_label; 1907 else 1908 DiagID = diag::warn_unused_variable; 1909 1910 Diag(D->getLocation(), DiagID) << D << Hint; 1911 } 1912 1913 static void CheckPoppedLabel(LabelDecl *L, Sema &S) { 1914 // Verify that we have no forward references left. If so, there was a goto 1915 // or address of a label taken, but no definition of it. Label fwd 1916 // definitions are indicated with a null substmt which is also not a resolved 1917 // MS inline assembly label name. 1918 bool Diagnose = false; 1919 if (L->isMSAsmLabel()) 1920 Diagnose = !L->isResolvedMSAsmLabel(); 1921 else 1922 Diagnose = L->getStmt() == nullptr; 1923 if (Diagnose) 1924 S.Diag(L->getLocation(), diag::err_undeclared_label_use) << L; 1925 } 1926 1927 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) { 1928 S->mergeNRVOIntoParent(); 1929 1930 if (S->decl_empty()) return; 1931 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) && 1932 "Scope shouldn't contain decls!"); 1933 1934 for (auto *TmpD : S->decls()) { 1935 assert(TmpD && "This decl didn't get pushed??"); 1936 1937 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?"); 1938 NamedDecl *D = cast<NamedDecl>(TmpD); 1939 1940 // Diagnose unused variables in this scope. 1941 if (!S->hasUnrecoverableErrorOccurred()) { 1942 DiagnoseUnusedDecl(D); 1943 if (const auto *RD = dyn_cast<RecordDecl>(D)) 1944 DiagnoseUnusedNestedTypedefs(RD); 1945 } 1946 1947 if (!D->getDeclName()) continue; 1948 1949 // If this was a forward reference to a label, verify it was defined. 1950 if (LabelDecl *LD = dyn_cast<LabelDecl>(D)) 1951 CheckPoppedLabel(LD, *this); 1952 1953 // Remove this name from our lexical scope, and warn on it if we haven't 1954 // already. 1955 IdResolver.RemoveDecl(D); 1956 auto ShadowI = ShadowingDecls.find(D); 1957 if (ShadowI != ShadowingDecls.end()) { 1958 if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) { 1959 Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field) 1960 << D << FD << FD->getParent(); 1961 Diag(FD->getLocation(), diag::note_previous_declaration); 1962 } 1963 ShadowingDecls.erase(ShadowI); 1964 } 1965 } 1966 } 1967 1968 /// Look for an Objective-C class in the translation unit. 1969 /// 1970 /// \param Id The name of the Objective-C class we're looking for. If 1971 /// typo-correction fixes this name, the Id will be updated 1972 /// to the fixed name. 1973 /// 1974 /// \param IdLoc The location of the name in the translation unit. 1975 /// 1976 /// \param DoTypoCorrection If true, this routine will attempt typo correction 1977 /// if there is no class with the given name. 1978 /// 1979 /// \returns The declaration of the named Objective-C class, or NULL if the 1980 /// class could not be found. 1981 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id, 1982 SourceLocation IdLoc, 1983 bool DoTypoCorrection) { 1984 // The third "scope" argument is 0 since we aren't enabling lazy built-in 1985 // creation from this context. 1986 NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName); 1987 1988 if (!IDecl && DoTypoCorrection) { 1989 // Perform typo correction at the given location, but only if we 1990 // find an Objective-C class name. 1991 DeclFilterCCC<ObjCInterfaceDecl> CCC{}; 1992 if (TypoCorrection C = 1993 CorrectTypo(DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, 1994 TUScope, nullptr, CCC, CTK_ErrorRecovery)) { 1995 diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id); 1996 IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>(); 1997 Id = IDecl->getIdentifier(); 1998 } 1999 } 2000 ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl); 2001 // This routine must always return a class definition, if any. 2002 if (Def && Def->getDefinition()) 2003 Def = Def->getDefinition(); 2004 return Def; 2005 } 2006 2007 /// getNonFieldDeclScope - Retrieves the innermost scope, starting 2008 /// from S, where a non-field would be declared. This routine copes 2009 /// with the difference between C and C++ scoping rules in structs and 2010 /// unions. For example, the following code is well-formed in C but 2011 /// ill-formed in C++: 2012 /// @code 2013 /// struct S6 { 2014 /// enum { BAR } e; 2015 /// }; 2016 /// 2017 /// void test_S6() { 2018 /// struct S6 a; 2019 /// a.e = BAR; 2020 /// } 2021 /// @endcode 2022 /// For the declaration of BAR, this routine will return a different 2023 /// scope. The scope S will be the scope of the unnamed enumeration 2024 /// within S6. In C++, this routine will return the scope associated 2025 /// with S6, because the enumeration's scope is a transparent 2026 /// context but structures can contain non-field names. In C, this 2027 /// routine will return the translation unit scope, since the 2028 /// enumeration's scope is a transparent context and structures cannot 2029 /// contain non-field names. 2030 Scope *Sema::getNonFieldDeclScope(Scope *S) { 2031 while (((S->getFlags() & Scope::DeclScope) == 0) || 2032 (S->getEntity() && S->getEntity()->isTransparentContext()) || 2033 (S->isClassScope() && !getLangOpts().CPlusPlus)) 2034 S = S->getParent(); 2035 return S; 2036 } 2037 2038 static StringRef getHeaderName(Builtin::Context &BuiltinInfo, unsigned ID, 2039 ASTContext::GetBuiltinTypeError Error) { 2040 switch (Error) { 2041 case ASTContext::GE_None: 2042 return ""; 2043 case ASTContext::GE_Missing_type: 2044 return BuiltinInfo.getHeaderName(ID); 2045 case ASTContext::GE_Missing_stdio: 2046 return "stdio.h"; 2047 case ASTContext::GE_Missing_setjmp: 2048 return "setjmp.h"; 2049 case ASTContext::GE_Missing_ucontext: 2050 return "ucontext.h"; 2051 } 2052 llvm_unreachable("unhandled error kind"); 2053 } 2054 2055 FunctionDecl *Sema::CreateBuiltin(IdentifierInfo *II, QualType Type, 2056 unsigned ID, SourceLocation Loc) { 2057 DeclContext *Parent = Context.getTranslationUnitDecl(); 2058 2059 if (getLangOpts().CPlusPlus) { 2060 LinkageSpecDecl *CLinkageDecl = LinkageSpecDecl::Create( 2061 Context, Parent, Loc, Loc, LinkageSpecDecl::lang_c, false); 2062 CLinkageDecl->setImplicit(); 2063 Parent->addDecl(CLinkageDecl); 2064 Parent = CLinkageDecl; 2065 } 2066 2067 FunctionDecl *New = FunctionDecl::Create(Context, Parent, Loc, Loc, II, Type, 2068 /*TInfo=*/nullptr, SC_Extern, false, 2069 Type->isFunctionProtoType()); 2070 New->setImplicit(); 2071 New->addAttr(BuiltinAttr::CreateImplicit(Context, ID)); 2072 2073 // Create Decl objects for each parameter, adding them to the 2074 // FunctionDecl. 2075 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(Type)) { 2076 SmallVector<ParmVarDecl *, 16> Params; 2077 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 2078 ParmVarDecl *parm = ParmVarDecl::Create( 2079 Context, New, SourceLocation(), SourceLocation(), nullptr, 2080 FT->getParamType(i), /*TInfo=*/nullptr, SC_None, nullptr); 2081 parm->setScopeInfo(0, i); 2082 Params.push_back(parm); 2083 } 2084 New->setParams(Params); 2085 } 2086 2087 AddKnownFunctionAttributes(New); 2088 return New; 2089 } 2090 2091 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at 2092 /// file scope. lazily create a decl for it. ForRedeclaration is true 2093 /// if we're creating this built-in in anticipation of redeclaring the 2094 /// built-in. 2095 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID, 2096 Scope *S, bool ForRedeclaration, 2097 SourceLocation Loc) { 2098 LookupNecessaryTypesForBuiltin(S, ID); 2099 2100 ASTContext::GetBuiltinTypeError Error; 2101 QualType R = Context.GetBuiltinType(ID, Error); 2102 if (Error) { 2103 if (!ForRedeclaration) 2104 return nullptr; 2105 2106 // If we have a builtin without an associated type we should not emit a 2107 // warning when we were not able to find a type for it. 2108 if (Error == ASTContext::GE_Missing_type || 2109 Context.BuiltinInfo.allowTypeMismatch(ID)) 2110 return nullptr; 2111 2112 // If we could not find a type for setjmp it is because the jmp_buf type was 2113 // not defined prior to the setjmp declaration. 2114 if (Error == ASTContext::GE_Missing_setjmp) { 2115 Diag(Loc, diag::warn_implicit_decl_no_jmp_buf) 2116 << Context.BuiltinInfo.getName(ID); 2117 return nullptr; 2118 } 2119 2120 // Generally, we emit a warning that the declaration requires the 2121 // appropriate header. 2122 Diag(Loc, diag::warn_implicit_decl_requires_sysheader) 2123 << getHeaderName(Context.BuiltinInfo, ID, Error) 2124 << Context.BuiltinInfo.getName(ID); 2125 return nullptr; 2126 } 2127 2128 if (!ForRedeclaration && 2129 (Context.BuiltinInfo.isPredefinedLibFunction(ID) || 2130 Context.BuiltinInfo.isHeaderDependentFunction(ID))) { 2131 Diag(Loc, diag::ext_implicit_lib_function_decl) 2132 << Context.BuiltinInfo.getName(ID) << R; 2133 if (const char *Header = Context.BuiltinInfo.getHeaderName(ID)) 2134 Diag(Loc, diag::note_include_header_or_declare) 2135 << Header << Context.BuiltinInfo.getName(ID); 2136 } 2137 2138 if (R.isNull()) 2139 return nullptr; 2140 2141 FunctionDecl *New = CreateBuiltin(II, R, ID, Loc); 2142 RegisterLocallyScopedExternCDecl(New, S); 2143 2144 // TUScope is the translation-unit scope to insert this function into. 2145 // FIXME: This is hideous. We need to teach PushOnScopeChains to 2146 // relate Scopes to DeclContexts, and probably eliminate CurContext 2147 // entirely, but we're not there yet. 2148 DeclContext *SavedContext = CurContext; 2149 CurContext = New->getDeclContext(); 2150 PushOnScopeChains(New, TUScope); 2151 CurContext = SavedContext; 2152 return New; 2153 } 2154 2155 /// Typedef declarations don't have linkage, but they still denote the same 2156 /// entity if their types are the same. 2157 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's 2158 /// isSameEntity. 2159 static void filterNonConflictingPreviousTypedefDecls(Sema &S, 2160 TypedefNameDecl *Decl, 2161 LookupResult &Previous) { 2162 // This is only interesting when modules are enabled. 2163 if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility) 2164 return; 2165 2166 // Empty sets are uninteresting. 2167 if (Previous.empty()) 2168 return; 2169 2170 LookupResult::Filter Filter = Previous.makeFilter(); 2171 while (Filter.hasNext()) { 2172 NamedDecl *Old = Filter.next(); 2173 2174 // Non-hidden declarations are never ignored. 2175 if (S.isVisible(Old)) 2176 continue; 2177 2178 // Declarations of the same entity are not ignored, even if they have 2179 // different linkages. 2180 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { 2181 if (S.Context.hasSameType(OldTD->getUnderlyingType(), 2182 Decl->getUnderlyingType())) 2183 continue; 2184 2185 // If both declarations give a tag declaration a typedef name for linkage 2186 // purposes, then they declare the same entity. 2187 if (OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) && 2188 Decl->getAnonDeclWithTypedefName()) 2189 continue; 2190 } 2191 2192 Filter.erase(); 2193 } 2194 2195 Filter.done(); 2196 } 2197 2198 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { 2199 QualType OldType; 2200 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) 2201 OldType = OldTypedef->getUnderlyingType(); 2202 else 2203 OldType = Context.getTypeDeclType(Old); 2204 QualType NewType = New->getUnderlyingType(); 2205 2206 if (NewType->isVariablyModifiedType()) { 2207 // Must not redefine a typedef with a variably-modified type. 2208 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 2209 Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef) 2210 << Kind << NewType; 2211 if (Old->getLocation().isValid()) 2212 notePreviousDefinition(Old, New->getLocation()); 2213 New->setInvalidDecl(); 2214 return true; 2215 } 2216 2217 if (OldType != NewType && 2218 !OldType->isDependentType() && 2219 !NewType->isDependentType() && 2220 !Context.hasSameType(OldType, NewType)) { 2221 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 2222 Diag(New->getLocation(), diag::err_redefinition_different_typedef) 2223 << Kind << NewType << OldType; 2224 if (Old->getLocation().isValid()) 2225 notePreviousDefinition(Old, New->getLocation()); 2226 New->setInvalidDecl(); 2227 return true; 2228 } 2229 return false; 2230 } 2231 2232 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the 2233 /// same name and scope as a previous declaration 'Old'. Figure out 2234 /// how to resolve this situation, merging decls or emitting 2235 /// diagnostics as appropriate. If there was an error, set New to be invalid. 2236 /// 2237 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New, 2238 LookupResult &OldDecls) { 2239 // If the new decl is known invalid already, don't bother doing any 2240 // merging checks. 2241 if (New->isInvalidDecl()) return; 2242 2243 // Allow multiple definitions for ObjC built-in typedefs. 2244 // FIXME: Verify the underlying types are equivalent! 2245 if (getLangOpts().ObjC) { 2246 const IdentifierInfo *TypeID = New->getIdentifier(); 2247 switch (TypeID->getLength()) { 2248 default: break; 2249 case 2: 2250 { 2251 if (!TypeID->isStr("id")) 2252 break; 2253 QualType T = New->getUnderlyingType(); 2254 if (!T->isPointerType()) 2255 break; 2256 if (!T->isVoidPointerType()) { 2257 QualType PT = T->castAs<PointerType>()->getPointeeType(); 2258 if (!PT->isStructureType()) 2259 break; 2260 } 2261 Context.setObjCIdRedefinitionType(T); 2262 // Install the built-in type for 'id', ignoring the current definition. 2263 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); 2264 return; 2265 } 2266 case 5: 2267 if (!TypeID->isStr("Class")) 2268 break; 2269 Context.setObjCClassRedefinitionType(New->getUnderlyingType()); 2270 // Install the built-in type for 'Class', ignoring the current definition. 2271 New->setTypeForDecl(Context.getObjCClassType().getTypePtr()); 2272 return; 2273 case 3: 2274 if (!TypeID->isStr("SEL")) 2275 break; 2276 Context.setObjCSelRedefinitionType(New->getUnderlyingType()); 2277 // Install the built-in type for 'SEL', ignoring the current definition. 2278 New->setTypeForDecl(Context.getObjCSelType().getTypePtr()); 2279 return; 2280 } 2281 // Fall through - the typedef name was not a builtin type. 2282 } 2283 2284 // Verify the old decl was also a type. 2285 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); 2286 if (!Old) { 2287 Diag(New->getLocation(), diag::err_redefinition_different_kind) 2288 << New->getDeclName(); 2289 2290 NamedDecl *OldD = OldDecls.getRepresentativeDecl(); 2291 if (OldD->getLocation().isValid()) 2292 notePreviousDefinition(OldD, New->getLocation()); 2293 2294 return New->setInvalidDecl(); 2295 } 2296 2297 // If the old declaration is invalid, just give up here. 2298 if (Old->isInvalidDecl()) 2299 return New->setInvalidDecl(); 2300 2301 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { 2302 auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true); 2303 auto *NewTag = New->getAnonDeclWithTypedefName(); 2304 NamedDecl *Hidden = nullptr; 2305 if (OldTag && NewTag && 2306 OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() && 2307 !hasVisibleDefinition(OldTag, &Hidden)) { 2308 // There is a definition of this tag, but it is not visible. Use it 2309 // instead of our tag. 2310 New->setTypeForDecl(OldTD->getTypeForDecl()); 2311 if (OldTD->isModed()) 2312 New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(), 2313 OldTD->getUnderlyingType()); 2314 else 2315 New->setTypeSourceInfo(OldTD->getTypeSourceInfo()); 2316 2317 // Make the old tag definition visible. 2318 makeMergedDefinitionVisible(Hidden); 2319 2320 // If this was an unscoped enumeration, yank all of its enumerators 2321 // out of the scope. 2322 if (isa<EnumDecl>(NewTag)) { 2323 Scope *EnumScope = getNonFieldDeclScope(S); 2324 for (auto *D : NewTag->decls()) { 2325 auto *ED = cast<EnumConstantDecl>(D); 2326 assert(EnumScope->isDeclScope(ED)); 2327 EnumScope->RemoveDecl(ED); 2328 IdResolver.RemoveDecl(ED); 2329 ED->getLexicalDeclContext()->removeDecl(ED); 2330 } 2331 } 2332 } 2333 } 2334 2335 // If the typedef types are not identical, reject them in all languages and 2336 // with any extensions enabled. 2337 if (isIncompatibleTypedef(Old, New)) 2338 return; 2339 2340 // The types match. Link up the redeclaration chain and merge attributes if 2341 // the old declaration was a typedef. 2342 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) { 2343 New->setPreviousDecl(Typedef); 2344 mergeDeclAttributes(New, Old); 2345 } 2346 2347 if (getLangOpts().MicrosoftExt) 2348 return; 2349 2350 if (getLangOpts().CPlusPlus) { 2351 // C++ [dcl.typedef]p2: 2352 // In a given non-class scope, a typedef specifier can be used to 2353 // redefine the name of any type declared in that scope to refer 2354 // to the type to which it already refers. 2355 if (!isa<CXXRecordDecl>(CurContext)) 2356 return; 2357 2358 // C++0x [dcl.typedef]p4: 2359 // In a given class scope, a typedef specifier can be used to redefine 2360 // any class-name declared in that scope that is not also a typedef-name 2361 // to refer to the type to which it already refers. 2362 // 2363 // This wording came in via DR424, which was a correction to the 2364 // wording in DR56, which accidentally banned code like: 2365 // 2366 // struct S { 2367 // typedef struct A { } A; 2368 // }; 2369 // 2370 // in the C++03 standard. We implement the C++0x semantics, which 2371 // allow the above but disallow 2372 // 2373 // struct S { 2374 // typedef int I; 2375 // typedef int I; 2376 // }; 2377 // 2378 // since that was the intent of DR56. 2379 if (!isa<TypedefNameDecl>(Old)) 2380 return; 2381 2382 Diag(New->getLocation(), diag::err_redefinition) 2383 << New->getDeclName(); 2384 notePreviousDefinition(Old, New->getLocation()); 2385 return New->setInvalidDecl(); 2386 } 2387 2388 // Modules always permit redefinition of typedefs, as does C11. 2389 if (getLangOpts().Modules || getLangOpts().C11) 2390 return; 2391 2392 // If we have a redefinition of a typedef in C, emit a warning. This warning 2393 // is normally mapped to an error, but can be controlled with 2394 // -Wtypedef-redefinition. If either the original or the redefinition is 2395 // in a system header, don't emit this for compatibility with GCC. 2396 if (getDiagnostics().getSuppressSystemWarnings() && 2397 // Some standard types are defined implicitly in Clang (e.g. OpenCL). 2398 (Old->isImplicit() || 2399 Context.getSourceManager().isInSystemHeader(Old->getLocation()) || 2400 Context.getSourceManager().isInSystemHeader(New->getLocation()))) 2401 return; 2402 2403 Diag(New->getLocation(), diag::ext_redefinition_of_typedef) 2404 << New->getDeclName(); 2405 notePreviousDefinition(Old, New->getLocation()); 2406 } 2407 2408 /// DeclhasAttr - returns true if decl Declaration already has the target 2409 /// attribute. 2410 static bool DeclHasAttr(const Decl *D, const Attr *A) { 2411 const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A); 2412 const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A); 2413 for (const auto *i : D->attrs()) 2414 if (i->getKind() == A->getKind()) { 2415 if (Ann) { 2416 if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation()) 2417 return true; 2418 continue; 2419 } 2420 // FIXME: Don't hardcode this check 2421 if (OA && isa<OwnershipAttr>(i)) 2422 return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind(); 2423 return true; 2424 } 2425 2426 return false; 2427 } 2428 2429 static bool isAttributeTargetADefinition(Decl *D) { 2430 if (VarDecl *VD = dyn_cast<VarDecl>(D)) 2431 return VD->isThisDeclarationADefinition(); 2432 if (TagDecl *TD = dyn_cast<TagDecl>(D)) 2433 return TD->isCompleteDefinition() || TD->isBeingDefined(); 2434 return true; 2435 } 2436 2437 /// Merge alignment attributes from \p Old to \p New, taking into account the 2438 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute. 2439 /// 2440 /// \return \c true if any attributes were added to \p New. 2441 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) { 2442 // Look for alignas attributes on Old, and pick out whichever attribute 2443 // specifies the strictest alignment requirement. 2444 AlignedAttr *OldAlignasAttr = nullptr; 2445 AlignedAttr *OldStrictestAlignAttr = nullptr; 2446 unsigned OldAlign = 0; 2447 for (auto *I : Old->specific_attrs<AlignedAttr>()) { 2448 // FIXME: We have no way of representing inherited dependent alignments 2449 // in a case like: 2450 // template<int A, int B> struct alignas(A) X; 2451 // template<int A, int B> struct alignas(B) X {}; 2452 // For now, we just ignore any alignas attributes which are not on the 2453 // definition in such a case. 2454 if (I->isAlignmentDependent()) 2455 return false; 2456 2457 if (I->isAlignas()) 2458 OldAlignasAttr = I; 2459 2460 unsigned Align = I->getAlignment(S.Context); 2461 if (Align > OldAlign) { 2462 OldAlign = Align; 2463 OldStrictestAlignAttr = I; 2464 } 2465 } 2466 2467 // Look for alignas attributes on New. 2468 AlignedAttr *NewAlignasAttr = nullptr; 2469 unsigned NewAlign = 0; 2470 for (auto *I : New->specific_attrs<AlignedAttr>()) { 2471 if (I->isAlignmentDependent()) 2472 return false; 2473 2474 if (I->isAlignas()) 2475 NewAlignasAttr = I; 2476 2477 unsigned Align = I->getAlignment(S.Context); 2478 if (Align > NewAlign) 2479 NewAlign = Align; 2480 } 2481 2482 if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) { 2483 // Both declarations have 'alignas' attributes. We require them to match. 2484 // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but 2485 // fall short. (If two declarations both have alignas, they must both match 2486 // every definition, and so must match each other if there is a definition.) 2487 2488 // If either declaration only contains 'alignas(0)' specifiers, then it 2489 // specifies the natural alignment for the type. 2490 if (OldAlign == 0 || NewAlign == 0) { 2491 QualType Ty; 2492 if (ValueDecl *VD = dyn_cast<ValueDecl>(New)) 2493 Ty = VD->getType(); 2494 else 2495 Ty = S.Context.getTagDeclType(cast<TagDecl>(New)); 2496 2497 if (OldAlign == 0) 2498 OldAlign = S.Context.getTypeAlign(Ty); 2499 if (NewAlign == 0) 2500 NewAlign = S.Context.getTypeAlign(Ty); 2501 } 2502 2503 if (OldAlign != NewAlign) { 2504 S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch) 2505 << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity() 2506 << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity(); 2507 S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration); 2508 } 2509 } 2510 2511 if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) { 2512 // C++11 [dcl.align]p6: 2513 // if any declaration of an entity has an alignment-specifier, 2514 // every defining declaration of that entity shall specify an 2515 // equivalent alignment. 2516 // C11 6.7.5/7: 2517 // If the definition of an object does not have an alignment 2518 // specifier, any other declaration of that object shall also 2519 // have no alignment specifier. 2520 S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition) 2521 << OldAlignasAttr; 2522 S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration) 2523 << OldAlignasAttr; 2524 } 2525 2526 bool AnyAdded = false; 2527 2528 // Ensure we have an attribute representing the strictest alignment. 2529 if (OldAlign > NewAlign) { 2530 AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context); 2531 Clone->setInherited(true); 2532 New->addAttr(Clone); 2533 AnyAdded = true; 2534 } 2535 2536 // Ensure we have an alignas attribute if the old declaration had one. 2537 if (OldAlignasAttr && !NewAlignasAttr && 2538 !(AnyAdded && OldStrictestAlignAttr->isAlignas())) { 2539 AlignedAttr *Clone = OldAlignasAttr->clone(S.Context); 2540 Clone->setInherited(true); 2541 New->addAttr(Clone); 2542 AnyAdded = true; 2543 } 2544 2545 return AnyAdded; 2546 } 2547 2548 static bool mergeDeclAttribute(Sema &S, NamedDecl *D, 2549 const InheritableAttr *Attr, 2550 Sema::AvailabilityMergeKind AMK) { 2551 // This function copies an attribute Attr from a previous declaration to the 2552 // new declaration D if the new declaration doesn't itself have that attribute 2553 // yet or if that attribute allows duplicates. 2554 // If you're adding a new attribute that requires logic different from 2555 // "use explicit attribute on decl if present, else use attribute from 2556 // previous decl", for example if the attribute needs to be consistent 2557 // between redeclarations, you need to call a custom merge function here. 2558 InheritableAttr *NewAttr = nullptr; 2559 if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr)) 2560 NewAttr = S.mergeAvailabilityAttr( 2561 D, *AA, AA->getPlatform(), AA->isImplicit(), AA->getIntroduced(), 2562 AA->getDeprecated(), AA->getObsoleted(), AA->getUnavailable(), 2563 AA->getMessage(), AA->getStrict(), AA->getReplacement(), AMK, 2564 AA->getPriority()); 2565 else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr)) 2566 NewAttr = S.mergeVisibilityAttr(D, *VA, VA->getVisibility()); 2567 else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr)) 2568 NewAttr = S.mergeTypeVisibilityAttr(D, *VA, VA->getVisibility()); 2569 else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr)) 2570 NewAttr = S.mergeDLLImportAttr(D, *ImportA); 2571 else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr)) 2572 NewAttr = S.mergeDLLExportAttr(D, *ExportA); 2573 else if (const auto *FA = dyn_cast<FormatAttr>(Attr)) 2574 NewAttr = S.mergeFormatAttr(D, *FA, FA->getType(), FA->getFormatIdx(), 2575 FA->getFirstArg()); 2576 else if (const auto *SA = dyn_cast<SectionAttr>(Attr)) 2577 NewAttr = S.mergeSectionAttr(D, *SA, SA->getName()); 2578 else if (const auto *CSA = dyn_cast<CodeSegAttr>(Attr)) 2579 NewAttr = S.mergeCodeSegAttr(D, *CSA, CSA->getName()); 2580 else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr)) 2581 NewAttr = S.mergeMSInheritanceAttr(D, *IA, IA->getBestCase(), 2582 IA->getInheritanceModel()); 2583 else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr)) 2584 NewAttr = S.mergeAlwaysInlineAttr(D, *AA, 2585 &S.Context.Idents.get(AA->getSpelling())); 2586 else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) && 2587 (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) || 2588 isa<CUDAGlobalAttr>(Attr))) { 2589 // CUDA target attributes are part of function signature for 2590 // overloading purposes and must not be merged. 2591 return false; 2592 } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr)) 2593 NewAttr = S.mergeMinSizeAttr(D, *MA); 2594 else if (const auto *SNA = dyn_cast<SwiftNameAttr>(Attr)) 2595 NewAttr = S.mergeSwiftNameAttr(D, *SNA, SNA->getName()); 2596 else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr)) 2597 NewAttr = S.mergeOptimizeNoneAttr(D, *OA); 2598 else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr)) 2599 NewAttr = S.mergeInternalLinkageAttr(D, *InternalLinkageA); 2600 else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr)) 2601 NewAttr = S.mergeCommonAttr(D, *CommonA); 2602 else if (isa<AlignedAttr>(Attr)) 2603 // AlignedAttrs are handled separately, because we need to handle all 2604 // such attributes on a declaration at the same time. 2605 NewAttr = nullptr; 2606 else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) && 2607 (AMK == Sema::AMK_Override || 2608 AMK == Sema::AMK_ProtocolImplementation)) 2609 NewAttr = nullptr; 2610 else if (const auto *UA = dyn_cast<UuidAttr>(Attr)) 2611 NewAttr = S.mergeUuidAttr(D, *UA, UA->getGuid(), UA->getGuidDecl()); 2612 else if (const auto *SLHA = dyn_cast<SpeculativeLoadHardeningAttr>(Attr)) 2613 NewAttr = S.mergeSpeculativeLoadHardeningAttr(D, *SLHA); 2614 else if (const auto *SLHA = dyn_cast<NoSpeculativeLoadHardeningAttr>(Attr)) 2615 NewAttr = S.mergeNoSpeculativeLoadHardeningAttr(D, *SLHA); 2616 else if (const auto *IMA = dyn_cast<WebAssemblyImportModuleAttr>(Attr)) 2617 NewAttr = S.mergeImportModuleAttr(D, *IMA); 2618 else if (const auto *INA = dyn_cast<WebAssemblyImportNameAttr>(Attr)) 2619 NewAttr = S.mergeImportNameAttr(D, *INA); 2620 else if (Attr->shouldInheritEvenIfAlreadyPresent() || !DeclHasAttr(D, Attr)) 2621 NewAttr = cast<InheritableAttr>(Attr->clone(S.Context)); 2622 2623 if (NewAttr) { 2624 NewAttr->setInherited(true); 2625 D->addAttr(NewAttr); 2626 if (isa<MSInheritanceAttr>(NewAttr)) 2627 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D)); 2628 return true; 2629 } 2630 2631 return false; 2632 } 2633 2634 static const NamedDecl *getDefinition(const Decl *D) { 2635 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) 2636 return TD->getDefinition(); 2637 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 2638 const VarDecl *Def = VD->getDefinition(); 2639 if (Def) 2640 return Def; 2641 return VD->getActingDefinition(); 2642 } 2643 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 2644 return FD->getDefinition(); 2645 return nullptr; 2646 } 2647 2648 static bool hasAttribute(const Decl *D, attr::Kind Kind) { 2649 for (const auto *Attribute : D->attrs()) 2650 if (Attribute->getKind() == Kind) 2651 return true; 2652 return false; 2653 } 2654 2655 /// checkNewAttributesAfterDef - If we already have a definition, check that 2656 /// there are no new attributes in this declaration. 2657 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) { 2658 if (!New->hasAttrs()) 2659 return; 2660 2661 const NamedDecl *Def = getDefinition(Old); 2662 if (!Def || Def == New) 2663 return; 2664 2665 AttrVec &NewAttributes = New->getAttrs(); 2666 for (unsigned I = 0, E = NewAttributes.size(); I != E;) { 2667 const Attr *NewAttribute = NewAttributes[I]; 2668 2669 if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) { 2670 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) { 2671 Sema::SkipBodyInfo SkipBody; 2672 S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody); 2673 2674 // If we're skipping this definition, drop the "alias" attribute. 2675 if (SkipBody.ShouldSkip) { 2676 NewAttributes.erase(NewAttributes.begin() + I); 2677 --E; 2678 continue; 2679 } 2680 } else { 2681 VarDecl *VD = cast<VarDecl>(New); 2682 unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() == 2683 VarDecl::TentativeDefinition 2684 ? diag::err_alias_after_tentative 2685 : diag::err_redefinition; 2686 S.Diag(VD->getLocation(), Diag) << VD->getDeclName(); 2687 if (Diag == diag::err_redefinition) 2688 S.notePreviousDefinition(Def, VD->getLocation()); 2689 else 2690 S.Diag(Def->getLocation(), diag::note_previous_definition); 2691 VD->setInvalidDecl(); 2692 } 2693 ++I; 2694 continue; 2695 } 2696 2697 if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) { 2698 // Tentative definitions are only interesting for the alias check above. 2699 if (VD->isThisDeclarationADefinition() != VarDecl::Definition) { 2700 ++I; 2701 continue; 2702 } 2703 } 2704 2705 if (hasAttribute(Def, NewAttribute->getKind())) { 2706 ++I; 2707 continue; // regular attr merging will take care of validating this. 2708 } 2709 2710 if (isa<C11NoReturnAttr>(NewAttribute)) { 2711 // C's _Noreturn is allowed to be added to a function after it is defined. 2712 ++I; 2713 continue; 2714 } else if (isa<UuidAttr>(NewAttribute)) { 2715 // msvc will allow a subsequent definition to add an uuid to a class 2716 ++I; 2717 continue; 2718 } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) { 2719 if (AA->isAlignas()) { 2720 // C++11 [dcl.align]p6: 2721 // if any declaration of an entity has an alignment-specifier, 2722 // every defining declaration of that entity shall specify an 2723 // equivalent alignment. 2724 // C11 6.7.5/7: 2725 // If the definition of an object does not have an alignment 2726 // specifier, any other declaration of that object shall also 2727 // have no alignment specifier. 2728 S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition) 2729 << AA; 2730 S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration) 2731 << AA; 2732 NewAttributes.erase(NewAttributes.begin() + I); 2733 --E; 2734 continue; 2735 } 2736 } else if (isa<LoaderUninitializedAttr>(NewAttribute)) { 2737 // If there is a C definition followed by a redeclaration with this 2738 // attribute then there are two different definitions. In C++, prefer the 2739 // standard diagnostics. 2740 if (!S.getLangOpts().CPlusPlus) { 2741 S.Diag(NewAttribute->getLocation(), 2742 diag::err_loader_uninitialized_redeclaration); 2743 S.Diag(Def->getLocation(), diag::note_previous_definition); 2744 NewAttributes.erase(NewAttributes.begin() + I); 2745 --E; 2746 continue; 2747 } 2748 } else if (isa<SelectAnyAttr>(NewAttribute) && 2749 cast<VarDecl>(New)->isInline() && 2750 !cast<VarDecl>(New)->isInlineSpecified()) { 2751 // Don't warn about applying selectany to implicitly inline variables. 2752 // Older compilers and language modes would require the use of selectany 2753 // to make such variables inline, and it would have no effect if we 2754 // honored it. 2755 ++I; 2756 continue; 2757 } else if (isa<OMPDeclareVariantAttr>(NewAttribute)) { 2758 // We allow to add OMP[Begin]DeclareVariantAttr to be added to 2759 // declarations after defintions. 2760 ++I; 2761 continue; 2762 } 2763 2764 S.Diag(NewAttribute->getLocation(), 2765 diag::warn_attribute_precede_definition); 2766 S.Diag(Def->getLocation(), diag::note_previous_definition); 2767 NewAttributes.erase(NewAttributes.begin() + I); 2768 --E; 2769 } 2770 } 2771 2772 static void diagnoseMissingConstinit(Sema &S, const VarDecl *InitDecl, 2773 const ConstInitAttr *CIAttr, 2774 bool AttrBeforeInit) { 2775 SourceLocation InsertLoc = InitDecl->getInnerLocStart(); 2776 2777 // Figure out a good way to write this specifier on the old declaration. 2778 // FIXME: We should just use the spelling of CIAttr, but we don't preserve 2779 // enough of the attribute list spelling information to extract that without 2780 // heroics. 2781 std::string SuitableSpelling; 2782 if (S.getLangOpts().CPlusPlus20) 2783 SuitableSpelling = std::string( 2784 S.PP.getLastMacroWithSpelling(InsertLoc, {tok::kw_constinit})); 2785 if (SuitableSpelling.empty() && S.getLangOpts().CPlusPlus11) 2786 SuitableSpelling = std::string(S.PP.getLastMacroWithSpelling( 2787 InsertLoc, {tok::l_square, tok::l_square, 2788 S.PP.getIdentifierInfo("clang"), tok::coloncolon, 2789 S.PP.getIdentifierInfo("require_constant_initialization"), 2790 tok::r_square, tok::r_square})); 2791 if (SuitableSpelling.empty()) 2792 SuitableSpelling = std::string(S.PP.getLastMacroWithSpelling( 2793 InsertLoc, {tok::kw___attribute, tok::l_paren, tok::r_paren, 2794 S.PP.getIdentifierInfo("require_constant_initialization"), 2795 tok::r_paren, tok::r_paren})); 2796 if (SuitableSpelling.empty() && S.getLangOpts().CPlusPlus20) 2797 SuitableSpelling = "constinit"; 2798 if (SuitableSpelling.empty() && S.getLangOpts().CPlusPlus11) 2799 SuitableSpelling = "[[clang::require_constant_initialization]]"; 2800 if (SuitableSpelling.empty()) 2801 SuitableSpelling = "__attribute__((require_constant_initialization))"; 2802 SuitableSpelling += " "; 2803 2804 if (AttrBeforeInit) { 2805 // extern constinit int a; 2806 // int a = 0; // error (missing 'constinit'), accepted as extension 2807 assert(CIAttr->isConstinit() && "should not diagnose this for attribute"); 2808 S.Diag(InitDecl->getLocation(), diag::ext_constinit_missing) 2809 << InitDecl << FixItHint::CreateInsertion(InsertLoc, SuitableSpelling); 2810 S.Diag(CIAttr->getLocation(), diag::note_constinit_specified_here); 2811 } else { 2812 // int a = 0; 2813 // constinit extern int a; // error (missing 'constinit') 2814 S.Diag(CIAttr->getLocation(), 2815 CIAttr->isConstinit() ? diag::err_constinit_added_too_late 2816 : diag::warn_require_const_init_added_too_late) 2817 << FixItHint::CreateRemoval(SourceRange(CIAttr->getLocation())); 2818 S.Diag(InitDecl->getLocation(), diag::note_constinit_missing_here) 2819 << CIAttr->isConstinit() 2820 << FixItHint::CreateInsertion(InsertLoc, SuitableSpelling); 2821 } 2822 } 2823 2824 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one. 2825 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old, 2826 AvailabilityMergeKind AMK) { 2827 if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) { 2828 UsedAttr *NewAttr = OldAttr->clone(Context); 2829 NewAttr->setInherited(true); 2830 New->addAttr(NewAttr); 2831 } 2832 2833 if (!Old->hasAttrs() && !New->hasAttrs()) 2834 return; 2835 2836 // [dcl.constinit]p1: 2837 // If the [constinit] specifier is applied to any declaration of a 2838 // variable, it shall be applied to the initializing declaration. 2839 const auto *OldConstInit = Old->getAttr<ConstInitAttr>(); 2840 const auto *NewConstInit = New->getAttr<ConstInitAttr>(); 2841 if (bool(OldConstInit) != bool(NewConstInit)) { 2842 const auto *OldVD = cast<VarDecl>(Old); 2843 auto *NewVD = cast<VarDecl>(New); 2844 2845 // Find the initializing declaration. Note that we might not have linked 2846 // the new declaration into the redeclaration chain yet. 2847 const VarDecl *InitDecl = OldVD->getInitializingDeclaration(); 2848 if (!InitDecl && 2849 (NewVD->hasInit() || NewVD->isThisDeclarationADefinition())) 2850 InitDecl = NewVD; 2851 2852 if (InitDecl == NewVD) { 2853 // This is the initializing declaration. If it would inherit 'constinit', 2854 // that's ill-formed. (Note that we do not apply this to the attribute 2855 // form). 2856 if (OldConstInit && OldConstInit->isConstinit()) 2857 diagnoseMissingConstinit(*this, NewVD, OldConstInit, 2858 /*AttrBeforeInit=*/true); 2859 } else if (NewConstInit) { 2860 // This is the first time we've been told that this declaration should 2861 // have a constant initializer. If we already saw the initializing 2862 // declaration, this is too late. 2863 if (InitDecl && InitDecl != NewVD) { 2864 diagnoseMissingConstinit(*this, InitDecl, NewConstInit, 2865 /*AttrBeforeInit=*/false); 2866 NewVD->dropAttr<ConstInitAttr>(); 2867 } 2868 } 2869 } 2870 2871 // Attributes declared post-definition are currently ignored. 2872 checkNewAttributesAfterDef(*this, New, Old); 2873 2874 if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) { 2875 if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) { 2876 if (!OldA->isEquivalent(NewA)) { 2877 // This redeclaration changes __asm__ label. 2878 Diag(New->getLocation(), diag::err_different_asm_label); 2879 Diag(OldA->getLocation(), diag::note_previous_declaration); 2880 } 2881 } else if (Old->isUsed()) { 2882 // This redeclaration adds an __asm__ label to a declaration that has 2883 // already been ODR-used. 2884 Diag(New->getLocation(), diag::err_late_asm_label_name) 2885 << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange(); 2886 } 2887 } 2888 2889 // Re-declaration cannot add abi_tag's. 2890 if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) { 2891 if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) { 2892 for (const auto &NewTag : NewAbiTagAttr->tags()) { 2893 if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(), 2894 NewTag) == OldAbiTagAttr->tags_end()) { 2895 Diag(NewAbiTagAttr->getLocation(), 2896 diag::err_new_abi_tag_on_redeclaration) 2897 << NewTag; 2898 Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration); 2899 } 2900 } 2901 } else { 2902 Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration); 2903 Diag(Old->getLocation(), diag::note_previous_declaration); 2904 } 2905 } 2906 2907 // This redeclaration adds a section attribute. 2908 if (New->hasAttr<SectionAttr>() && !Old->hasAttr<SectionAttr>()) { 2909 if (auto *VD = dyn_cast<VarDecl>(New)) { 2910 if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly) { 2911 Diag(New->getLocation(), diag::warn_attribute_section_on_redeclaration); 2912 Diag(Old->getLocation(), diag::note_previous_declaration); 2913 } 2914 } 2915 } 2916 2917 // Redeclaration adds code-seg attribute. 2918 const auto *NewCSA = New->getAttr<CodeSegAttr>(); 2919 if (NewCSA && !Old->hasAttr<CodeSegAttr>() && 2920 !NewCSA->isImplicit() && isa<CXXMethodDecl>(New)) { 2921 Diag(New->getLocation(), diag::warn_mismatched_section) 2922 << 0 /*codeseg*/; 2923 Diag(Old->getLocation(), diag::note_previous_declaration); 2924 } 2925 2926 if (!Old->hasAttrs()) 2927 return; 2928 2929 bool foundAny = New->hasAttrs(); 2930 2931 // Ensure that any moving of objects within the allocated map is done before 2932 // we process them. 2933 if (!foundAny) New->setAttrs(AttrVec()); 2934 2935 for (auto *I : Old->specific_attrs<InheritableAttr>()) { 2936 // Ignore deprecated/unavailable/availability attributes if requested. 2937 AvailabilityMergeKind LocalAMK = AMK_None; 2938 if (isa<DeprecatedAttr>(I) || 2939 isa<UnavailableAttr>(I) || 2940 isa<AvailabilityAttr>(I)) { 2941 switch (AMK) { 2942 case AMK_None: 2943 continue; 2944 2945 case AMK_Redeclaration: 2946 case AMK_Override: 2947 case AMK_ProtocolImplementation: 2948 LocalAMK = AMK; 2949 break; 2950 } 2951 } 2952 2953 // Already handled. 2954 if (isa<UsedAttr>(I)) 2955 continue; 2956 2957 if (mergeDeclAttribute(*this, New, I, LocalAMK)) 2958 foundAny = true; 2959 } 2960 2961 if (mergeAlignedAttrs(*this, New, Old)) 2962 foundAny = true; 2963 2964 if (!foundAny) New->dropAttrs(); 2965 } 2966 2967 /// mergeParamDeclAttributes - Copy attributes from the old parameter 2968 /// to the new one. 2969 static void mergeParamDeclAttributes(ParmVarDecl *newDecl, 2970 const ParmVarDecl *oldDecl, 2971 Sema &S) { 2972 // C++11 [dcl.attr.depend]p2: 2973 // The first declaration of a function shall specify the 2974 // carries_dependency attribute for its declarator-id if any declaration 2975 // of the function specifies the carries_dependency attribute. 2976 const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>(); 2977 if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) { 2978 S.Diag(CDA->getLocation(), 2979 diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/; 2980 // Find the first declaration of the parameter. 2981 // FIXME: Should we build redeclaration chains for function parameters? 2982 const FunctionDecl *FirstFD = 2983 cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl(); 2984 const ParmVarDecl *FirstVD = 2985 FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex()); 2986 S.Diag(FirstVD->getLocation(), 2987 diag::note_carries_dependency_missing_first_decl) << 1/*Param*/; 2988 } 2989 2990 if (!oldDecl->hasAttrs()) 2991 return; 2992 2993 bool foundAny = newDecl->hasAttrs(); 2994 2995 // Ensure that any moving of objects within the allocated map is 2996 // done before we process them. 2997 if (!foundAny) newDecl->setAttrs(AttrVec()); 2998 2999 for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) { 3000 if (!DeclHasAttr(newDecl, I)) { 3001 InheritableAttr *newAttr = 3002 cast<InheritableParamAttr>(I->clone(S.Context)); 3003 newAttr->setInherited(true); 3004 newDecl->addAttr(newAttr); 3005 foundAny = true; 3006 } 3007 } 3008 3009 if (!foundAny) newDecl->dropAttrs(); 3010 } 3011 3012 static void mergeParamDeclTypes(ParmVarDecl *NewParam, 3013 const ParmVarDecl *OldParam, 3014 Sema &S) { 3015 if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) { 3016 if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) { 3017 if (*Oldnullability != *Newnullability) { 3018 S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr) 3019 << DiagNullabilityKind( 3020 *Newnullability, 3021 ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) 3022 != 0)) 3023 << DiagNullabilityKind( 3024 *Oldnullability, 3025 ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) 3026 != 0)); 3027 S.Diag(OldParam->getLocation(), diag::note_previous_declaration); 3028 } 3029 } else { 3030 QualType NewT = NewParam->getType(); 3031 NewT = S.Context.getAttributedType( 3032 AttributedType::getNullabilityAttrKind(*Oldnullability), 3033 NewT, NewT); 3034 NewParam->setType(NewT); 3035 } 3036 } 3037 } 3038 3039 namespace { 3040 3041 /// Used in MergeFunctionDecl to keep track of function parameters in 3042 /// C. 3043 struct GNUCompatibleParamWarning { 3044 ParmVarDecl *OldParm; 3045 ParmVarDecl *NewParm; 3046 QualType PromotedType; 3047 }; 3048 3049 } // end anonymous namespace 3050 3051 // Determine whether the previous declaration was a definition, implicit 3052 // declaration, or a declaration. 3053 template <typename T> 3054 static std::pair<diag::kind, SourceLocation> 3055 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) { 3056 diag::kind PrevDiag; 3057 SourceLocation OldLocation = Old->getLocation(); 3058 if (Old->isThisDeclarationADefinition()) 3059 PrevDiag = diag::note_previous_definition; 3060 else if (Old->isImplicit()) { 3061 PrevDiag = diag::note_previous_implicit_declaration; 3062 if (OldLocation.isInvalid()) 3063 OldLocation = New->getLocation(); 3064 } else 3065 PrevDiag = diag::note_previous_declaration; 3066 return std::make_pair(PrevDiag, OldLocation); 3067 } 3068 3069 /// canRedefineFunction - checks if a function can be redefined. Currently, 3070 /// only extern inline functions can be redefined, and even then only in 3071 /// GNU89 mode. 3072 static bool canRedefineFunction(const FunctionDecl *FD, 3073 const LangOptions& LangOpts) { 3074 return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) && 3075 !LangOpts.CPlusPlus && 3076 FD->isInlineSpecified() && 3077 FD->getStorageClass() == SC_Extern); 3078 } 3079 3080 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const { 3081 const AttributedType *AT = T->getAs<AttributedType>(); 3082 while (AT && !AT->isCallingConv()) 3083 AT = AT->getModifiedType()->getAs<AttributedType>(); 3084 return AT; 3085 } 3086 3087 template <typename T> 3088 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) { 3089 const DeclContext *DC = Old->getDeclContext(); 3090 if (DC->isRecord()) 3091 return false; 3092 3093 LanguageLinkage OldLinkage = Old->getLanguageLinkage(); 3094 if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext()) 3095 return true; 3096 if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext()) 3097 return true; 3098 return false; 3099 } 3100 3101 template<typename T> static bool isExternC(T *D) { return D->isExternC(); } 3102 static bool isExternC(VarTemplateDecl *) { return false; } 3103 3104 /// Check whether a redeclaration of an entity introduced by a 3105 /// using-declaration is valid, given that we know it's not an overload 3106 /// (nor a hidden tag declaration). 3107 template<typename ExpectedDecl> 3108 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS, 3109 ExpectedDecl *New) { 3110 // C++11 [basic.scope.declarative]p4: 3111 // Given a set of declarations in a single declarative region, each of 3112 // which specifies the same unqualified name, 3113 // -- they shall all refer to the same entity, or all refer to functions 3114 // and function templates; or 3115 // -- exactly one declaration shall declare a class name or enumeration 3116 // name that is not a typedef name and the other declarations shall all 3117 // refer to the same variable or enumerator, or all refer to functions 3118 // and function templates; in this case the class name or enumeration 3119 // name is hidden (3.3.10). 3120 3121 // C++11 [namespace.udecl]p14: 3122 // If a function declaration in namespace scope or block scope has the 3123 // same name and the same parameter-type-list as a function introduced 3124 // by a using-declaration, and the declarations do not declare the same 3125 // function, the program is ill-formed. 3126 3127 auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl()); 3128 if (Old && 3129 !Old->getDeclContext()->getRedeclContext()->Equals( 3130 New->getDeclContext()->getRedeclContext()) && 3131 !(isExternC(Old) && isExternC(New))) 3132 Old = nullptr; 3133 3134 if (!Old) { 3135 S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse); 3136 S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target); 3137 S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0; 3138 return true; 3139 } 3140 return false; 3141 } 3142 3143 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A, 3144 const FunctionDecl *B) { 3145 assert(A->getNumParams() == B->getNumParams()); 3146 3147 auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) { 3148 const auto *AttrA = A->getAttr<PassObjectSizeAttr>(); 3149 const auto *AttrB = B->getAttr<PassObjectSizeAttr>(); 3150 if (AttrA == AttrB) 3151 return true; 3152 return AttrA && AttrB && AttrA->getType() == AttrB->getType() && 3153 AttrA->isDynamic() == AttrB->isDynamic(); 3154 }; 3155 3156 return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq); 3157 } 3158 3159 /// If necessary, adjust the semantic declaration context for a qualified 3160 /// declaration to name the correct inline namespace within the qualifier. 3161 static void adjustDeclContextForDeclaratorDecl(DeclaratorDecl *NewD, 3162 DeclaratorDecl *OldD) { 3163 // The only case where we need to update the DeclContext is when 3164 // redeclaration lookup for a qualified name finds a declaration 3165 // in an inline namespace within the context named by the qualifier: 3166 // 3167 // inline namespace N { int f(); } 3168 // int ::f(); // Sema DC needs adjusting from :: to N::. 3169 // 3170 // For unqualified declarations, the semantic context *can* change 3171 // along the redeclaration chain (for local extern declarations, 3172 // extern "C" declarations, and friend declarations in particular). 3173 if (!NewD->getQualifier()) 3174 return; 3175 3176 // NewD is probably already in the right context. 3177 auto *NamedDC = NewD->getDeclContext()->getRedeclContext(); 3178 auto *SemaDC = OldD->getDeclContext()->getRedeclContext(); 3179 if (NamedDC->Equals(SemaDC)) 3180 return; 3181 3182 assert((NamedDC->InEnclosingNamespaceSetOf(SemaDC) || 3183 NewD->isInvalidDecl() || OldD->isInvalidDecl()) && 3184 "unexpected context for redeclaration"); 3185 3186 auto *LexDC = NewD->getLexicalDeclContext(); 3187 auto FixSemaDC = [=](NamedDecl *D) { 3188 if (!D) 3189 return; 3190 D->setDeclContext(SemaDC); 3191 D->setLexicalDeclContext(LexDC); 3192 }; 3193 3194 FixSemaDC(NewD); 3195 if (auto *FD = dyn_cast<FunctionDecl>(NewD)) 3196 FixSemaDC(FD->getDescribedFunctionTemplate()); 3197 else if (auto *VD = dyn_cast<VarDecl>(NewD)) 3198 FixSemaDC(VD->getDescribedVarTemplate()); 3199 } 3200 3201 /// MergeFunctionDecl - We just parsed a function 'New' from 3202 /// declarator D which has the same name and scope as a previous 3203 /// declaration 'Old'. Figure out how to resolve this situation, 3204 /// merging decls or emitting diagnostics as appropriate. 3205 /// 3206 /// In C++, New and Old must be declarations that are not 3207 /// overloaded. Use IsOverload to determine whether New and Old are 3208 /// overloaded, and to select the Old declaration that New should be 3209 /// merged with. 3210 /// 3211 /// Returns true if there was an error, false otherwise. 3212 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD, 3213 Scope *S, bool MergeTypeWithOld) { 3214 // Verify the old decl was also a function. 3215 FunctionDecl *Old = OldD->getAsFunction(); 3216 if (!Old) { 3217 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) { 3218 if (New->getFriendObjectKind()) { 3219 Diag(New->getLocation(), diag::err_using_decl_friend); 3220 Diag(Shadow->getTargetDecl()->getLocation(), 3221 diag::note_using_decl_target); 3222 Diag(Shadow->getUsingDecl()->getLocation(), 3223 diag::note_using_decl) << 0; 3224 return true; 3225 } 3226 3227 // Check whether the two declarations might declare the same function. 3228 if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New)) 3229 return true; 3230 OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl()); 3231 } else { 3232 Diag(New->getLocation(), diag::err_redefinition_different_kind) 3233 << New->getDeclName(); 3234 notePreviousDefinition(OldD, New->getLocation()); 3235 return true; 3236 } 3237 } 3238 3239 // If the old declaration is invalid, just give up here. 3240 if (Old->isInvalidDecl()) 3241 return true; 3242 3243 // Disallow redeclaration of some builtins. 3244 if (!getASTContext().canBuiltinBeRedeclared(Old)) { 3245 Diag(New->getLocation(), diag::err_builtin_redeclare) << Old->getDeclName(); 3246 Diag(Old->getLocation(), diag::note_previous_builtin_declaration) 3247 << Old << Old->getType(); 3248 return true; 3249 } 3250 3251 diag::kind PrevDiag; 3252 SourceLocation OldLocation; 3253 std::tie(PrevDiag, OldLocation) = 3254 getNoteDiagForInvalidRedeclaration(Old, New); 3255 3256 // Don't complain about this if we're in GNU89 mode and the old function 3257 // is an extern inline function. 3258 // Don't complain about specializations. They are not supposed to have 3259 // storage classes. 3260 if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) && 3261 New->getStorageClass() == SC_Static && 3262 Old->hasExternalFormalLinkage() && 3263 !New->getTemplateSpecializationInfo() && 3264 !canRedefineFunction(Old, getLangOpts())) { 3265 if (getLangOpts().MicrosoftExt) { 3266 Diag(New->getLocation(), diag::ext_static_non_static) << New; 3267 Diag(OldLocation, PrevDiag); 3268 } else { 3269 Diag(New->getLocation(), diag::err_static_non_static) << New; 3270 Diag(OldLocation, PrevDiag); 3271 return true; 3272 } 3273 } 3274 3275 if (New->hasAttr<InternalLinkageAttr>() && 3276 !Old->hasAttr<InternalLinkageAttr>()) { 3277 Diag(New->getLocation(), diag::err_internal_linkage_redeclaration) 3278 << New->getDeclName(); 3279 notePreviousDefinition(Old, New->getLocation()); 3280 New->dropAttr<InternalLinkageAttr>(); 3281 } 3282 3283 if (CheckRedeclarationModuleOwnership(New, Old)) 3284 return true; 3285 3286 if (!getLangOpts().CPlusPlus) { 3287 bool OldOvl = Old->hasAttr<OverloadableAttr>(); 3288 if (OldOvl != New->hasAttr<OverloadableAttr>() && !Old->isImplicit()) { 3289 Diag(New->getLocation(), diag::err_attribute_overloadable_mismatch) 3290 << New << OldOvl; 3291 3292 // Try our best to find a decl that actually has the overloadable 3293 // attribute for the note. In most cases (e.g. programs with only one 3294 // broken declaration/definition), this won't matter. 3295 // 3296 // FIXME: We could do this if we juggled some extra state in 3297 // OverloadableAttr, rather than just removing it. 3298 const Decl *DiagOld = Old; 3299 if (OldOvl) { 3300 auto OldIter = llvm::find_if(Old->redecls(), [](const Decl *D) { 3301 const auto *A = D->getAttr<OverloadableAttr>(); 3302 return A && !A->isImplicit(); 3303 }); 3304 // If we've implicitly added *all* of the overloadable attrs to this 3305 // chain, emitting a "previous redecl" note is pointless. 3306 DiagOld = OldIter == Old->redecls_end() ? nullptr : *OldIter; 3307 } 3308 3309 if (DiagOld) 3310 Diag(DiagOld->getLocation(), 3311 diag::note_attribute_overloadable_prev_overload) 3312 << OldOvl; 3313 3314 if (OldOvl) 3315 New->addAttr(OverloadableAttr::CreateImplicit(Context)); 3316 else 3317 New->dropAttr<OverloadableAttr>(); 3318 } 3319 } 3320 3321 // If a function is first declared with a calling convention, but is later 3322 // declared or defined without one, all following decls assume the calling 3323 // convention of the first. 3324 // 3325 // It's OK if a function is first declared without a calling convention, 3326 // but is later declared or defined with the default calling convention. 3327 // 3328 // To test if either decl has an explicit calling convention, we look for 3329 // AttributedType sugar nodes on the type as written. If they are missing or 3330 // were canonicalized away, we assume the calling convention was implicit. 3331 // 3332 // Note also that we DO NOT return at this point, because we still have 3333 // other tests to run. 3334 QualType OldQType = Context.getCanonicalType(Old->getType()); 3335 QualType NewQType = Context.getCanonicalType(New->getType()); 3336 const FunctionType *OldType = cast<FunctionType>(OldQType); 3337 const FunctionType *NewType = cast<FunctionType>(NewQType); 3338 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); 3339 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); 3340 bool RequiresAdjustment = false; 3341 3342 if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) { 3343 FunctionDecl *First = Old->getFirstDecl(); 3344 const FunctionType *FT = 3345 First->getType().getCanonicalType()->castAs<FunctionType>(); 3346 FunctionType::ExtInfo FI = FT->getExtInfo(); 3347 bool NewCCExplicit = getCallingConvAttributedType(New->getType()); 3348 if (!NewCCExplicit) { 3349 // Inherit the CC from the previous declaration if it was specified 3350 // there but not here. 3351 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC()); 3352 RequiresAdjustment = true; 3353 } else if (Old->getBuiltinID()) { 3354 // Builtin attribute isn't propagated to the new one yet at this point, 3355 // so we check if the old one is a builtin. 3356 3357 // Calling Conventions on a Builtin aren't really useful and setting a 3358 // default calling convention and cdecl'ing some builtin redeclarations is 3359 // common, so warn and ignore the calling convention on the redeclaration. 3360 Diag(New->getLocation(), diag::warn_cconv_unsupported) 3361 << FunctionType::getNameForCallConv(NewTypeInfo.getCC()) 3362 << (int)CallingConventionIgnoredReason::BuiltinFunction; 3363 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC()); 3364 RequiresAdjustment = true; 3365 } else { 3366 // Calling conventions aren't compatible, so complain. 3367 bool FirstCCExplicit = getCallingConvAttributedType(First->getType()); 3368 Diag(New->getLocation(), diag::err_cconv_change) 3369 << FunctionType::getNameForCallConv(NewTypeInfo.getCC()) 3370 << !FirstCCExplicit 3371 << (!FirstCCExplicit ? "" : 3372 FunctionType::getNameForCallConv(FI.getCC())); 3373 3374 // Put the note on the first decl, since it is the one that matters. 3375 Diag(First->getLocation(), diag::note_previous_declaration); 3376 return true; 3377 } 3378 } 3379 3380 // FIXME: diagnose the other way around? 3381 if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) { 3382 NewTypeInfo = NewTypeInfo.withNoReturn(true); 3383 RequiresAdjustment = true; 3384 } 3385 3386 // Merge regparm attribute. 3387 if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() || 3388 OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) { 3389 if (NewTypeInfo.getHasRegParm()) { 3390 Diag(New->getLocation(), diag::err_regparm_mismatch) 3391 << NewType->getRegParmType() 3392 << OldType->getRegParmType(); 3393 Diag(OldLocation, diag::note_previous_declaration); 3394 return true; 3395 } 3396 3397 NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm()); 3398 RequiresAdjustment = true; 3399 } 3400 3401 // Merge ns_returns_retained attribute. 3402 if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) { 3403 if (NewTypeInfo.getProducesResult()) { 3404 Diag(New->getLocation(), diag::err_function_attribute_mismatch) 3405 << "'ns_returns_retained'"; 3406 Diag(OldLocation, diag::note_previous_declaration); 3407 return true; 3408 } 3409 3410 NewTypeInfo = NewTypeInfo.withProducesResult(true); 3411 RequiresAdjustment = true; 3412 } 3413 3414 if (OldTypeInfo.getNoCallerSavedRegs() != 3415 NewTypeInfo.getNoCallerSavedRegs()) { 3416 if (NewTypeInfo.getNoCallerSavedRegs()) { 3417 AnyX86NoCallerSavedRegistersAttr *Attr = 3418 New->getAttr<AnyX86NoCallerSavedRegistersAttr>(); 3419 Diag(New->getLocation(), diag::err_function_attribute_mismatch) << Attr; 3420 Diag(OldLocation, diag::note_previous_declaration); 3421 return true; 3422 } 3423 3424 NewTypeInfo = NewTypeInfo.withNoCallerSavedRegs(true); 3425 RequiresAdjustment = true; 3426 } 3427 3428 if (RequiresAdjustment) { 3429 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); 3430 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); 3431 New->setType(QualType(AdjustedType, 0)); 3432 NewQType = Context.getCanonicalType(New->getType()); 3433 } 3434 3435 // If this redeclaration makes the function inline, we may need to add it to 3436 // UndefinedButUsed. 3437 if (!Old->isInlined() && New->isInlined() && 3438 !New->hasAttr<GNUInlineAttr>() && 3439 !getLangOpts().GNUInline && 3440 Old->isUsed(false) && 3441 !Old->isDefined() && !New->isThisDeclarationADefinition()) 3442 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 3443 SourceLocation())); 3444 3445 // If this redeclaration makes it newly gnu_inline, we don't want to warn 3446 // about it. 3447 if (New->hasAttr<GNUInlineAttr>() && 3448 Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) { 3449 UndefinedButUsed.erase(Old->getCanonicalDecl()); 3450 } 3451 3452 // If pass_object_size params don't match up perfectly, this isn't a valid 3453 // redeclaration. 3454 if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() && 3455 !hasIdenticalPassObjectSizeAttrs(Old, New)) { 3456 Diag(New->getLocation(), diag::err_different_pass_object_size_params) 3457 << New->getDeclName(); 3458 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3459 return true; 3460 } 3461 3462 if (getLangOpts().CPlusPlus) { 3463 // C++1z [over.load]p2 3464 // Certain function declarations cannot be overloaded: 3465 // -- Function declarations that differ only in the return type, 3466 // the exception specification, or both cannot be overloaded. 3467 3468 // Check the exception specifications match. This may recompute the type of 3469 // both Old and New if it resolved exception specifications, so grab the 3470 // types again after this. Because this updates the type, we do this before 3471 // any of the other checks below, which may update the "de facto" NewQType 3472 // but do not necessarily update the type of New. 3473 if (CheckEquivalentExceptionSpec(Old, New)) 3474 return true; 3475 OldQType = Context.getCanonicalType(Old->getType()); 3476 NewQType = Context.getCanonicalType(New->getType()); 3477 3478 // Go back to the type source info to compare the declared return types, 3479 // per C++1y [dcl.type.auto]p13: 3480 // Redeclarations or specializations of a function or function template 3481 // with a declared return type that uses a placeholder type shall also 3482 // use that placeholder, not a deduced type. 3483 QualType OldDeclaredReturnType = Old->getDeclaredReturnType(); 3484 QualType NewDeclaredReturnType = New->getDeclaredReturnType(); 3485 if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) && 3486 canFullyTypeCheckRedeclaration(New, Old, NewDeclaredReturnType, 3487 OldDeclaredReturnType)) { 3488 QualType ResQT; 3489 if (NewDeclaredReturnType->isObjCObjectPointerType() && 3490 OldDeclaredReturnType->isObjCObjectPointerType()) 3491 // FIXME: This does the wrong thing for a deduced return type. 3492 ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType); 3493 if (ResQT.isNull()) { 3494 if (New->isCXXClassMember() && New->isOutOfLine()) 3495 Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type) 3496 << New << New->getReturnTypeSourceRange(); 3497 else 3498 Diag(New->getLocation(), diag::err_ovl_diff_return_type) 3499 << New->getReturnTypeSourceRange(); 3500 Diag(OldLocation, PrevDiag) << Old << Old->getType() 3501 << Old->getReturnTypeSourceRange(); 3502 return true; 3503 } 3504 else 3505 NewQType = ResQT; 3506 } 3507 3508 QualType OldReturnType = OldType->getReturnType(); 3509 QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType(); 3510 if (OldReturnType != NewReturnType) { 3511 // If this function has a deduced return type and has already been 3512 // defined, copy the deduced value from the old declaration. 3513 AutoType *OldAT = Old->getReturnType()->getContainedAutoType(); 3514 if (OldAT && OldAT->isDeduced()) { 3515 New->setType( 3516 SubstAutoType(New->getType(), 3517 OldAT->isDependentType() ? Context.DependentTy 3518 : OldAT->getDeducedType())); 3519 NewQType = Context.getCanonicalType( 3520 SubstAutoType(NewQType, 3521 OldAT->isDependentType() ? Context.DependentTy 3522 : OldAT->getDeducedType())); 3523 } 3524 } 3525 3526 const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old); 3527 CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New); 3528 if (OldMethod && NewMethod) { 3529 // Preserve triviality. 3530 NewMethod->setTrivial(OldMethod->isTrivial()); 3531 3532 // MSVC allows explicit template specialization at class scope: 3533 // 2 CXXMethodDecls referring to the same function will be injected. 3534 // We don't want a redeclaration error. 3535 bool IsClassScopeExplicitSpecialization = 3536 OldMethod->isFunctionTemplateSpecialization() && 3537 NewMethod->isFunctionTemplateSpecialization(); 3538 bool isFriend = NewMethod->getFriendObjectKind(); 3539 3540 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() && 3541 !IsClassScopeExplicitSpecialization) { 3542 // -- Member function declarations with the same name and the 3543 // same parameter types cannot be overloaded if any of them 3544 // is a static member function declaration. 3545 if (OldMethod->isStatic() != NewMethod->isStatic()) { 3546 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member); 3547 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3548 return true; 3549 } 3550 3551 // C++ [class.mem]p1: 3552 // [...] A member shall not be declared twice in the 3553 // member-specification, except that a nested class or member 3554 // class template can be declared and then later defined. 3555 if (!inTemplateInstantiation()) { 3556 unsigned NewDiag; 3557 if (isa<CXXConstructorDecl>(OldMethod)) 3558 NewDiag = diag::err_constructor_redeclared; 3559 else if (isa<CXXDestructorDecl>(NewMethod)) 3560 NewDiag = diag::err_destructor_redeclared; 3561 else if (isa<CXXConversionDecl>(NewMethod)) 3562 NewDiag = diag::err_conv_function_redeclared; 3563 else 3564 NewDiag = diag::err_member_redeclared; 3565 3566 Diag(New->getLocation(), NewDiag); 3567 } else { 3568 Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation) 3569 << New << New->getType(); 3570 } 3571 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3572 return true; 3573 3574 // Complain if this is an explicit declaration of a special 3575 // member that was initially declared implicitly. 3576 // 3577 // As an exception, it's okay to befriend such methods in order 3578 // to permit the implicit constructor/destructor/operator calls. 3579 } else if (OldMethod->isImplicit()) { 3580 if (isFriend) { 3581 NewMethod->setImplicit(); 3582 } else { 3583 Diag(NewMethod->getLocation(), 3584 diag::err_definition_of_implicitly_declared_member) 3585 << New << getSpecialMember(OldMethod); 3586 return true; 3587 } 3588 } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) { 3589 Diag(NewMethod->getLocation(), 3590 diag::err_definition_of_explicitly_defaulted_member) 3591 << getSpecialMember(OldMethod); 3592 return true; 3593 } 3594 } 3595 3596 // C++11 [dcl.attr.noreturn]p1: 3597 // The first declaration of a function shall specify the noreturn 3598 // attribute if any declaration of that function specifies the noreturn 3599 // attribute. 3600 const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>(); 3601 if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) { 3602 Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl); 3603 Diag(Old->getFirstDecl()->getLocation(), 3604 diag::note_noreturn_missing_first_decl); 3605 } 3606 3607 // C++11 [dcl.attr.depend]p2: 3608 // The first declaration of a function shall specify the 3609 // carries_dependency attribute for its declarator-id if any declaration 3610 // of the function specifies the carries_dependency attribute. 3611 const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>(); 3612 if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) { 3613 Diag(CDA->getLocation(), 3614 diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/; 3615 Diag(Old->getFirstDecl()->getLocation(), 3616 diag::note_carries_dependency_missing_first_decl) << 0/*Function*/; 3617 } 3618 3619 // (C++98 8.3.5p3): 3620 // All declarations for a function shall agree exactly in both the 3621 // return type and the parameter-type-list. 3622 // We also want to respect all the extended bits except noreturn. 3623 3624 // noreturn should now match unless the old type info didn't have it. 3625 QualType OldQTypeForComparison = OldQType; 3626 if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) { 3627 auto *OldType = OldQType->castAs<FunctionProtoType>(); 3628 const FunctionType *OldTypeForComparison 3629 = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true)); 3630 OldQTypeForComparison = QualType(OldTypeForComparison, 0); 3631 assert(OldQTypeForComparison.isCanonical()); 3632 } 3633 3634 if (haveIncompatibleLanguageLinkages(Old, New)) { 3635 // As a special case, retain the language linkage from previous 3636 // declarations of a friend function as an extension. 3637 // 3638 // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC 3639 // and is useful because there's otherwise no way to specify language 3640 // linkage within class scope. 3641 // 3642 // Check cautiously as the friend object kind isn't yet complete. 3643 if (New->getFriendObjectKind() != Decl::FOK_None) { 3644 Diag(New->getLocation(), diag::ext_retained_language_linkage) << New; 3645 Diag(OldLocation, PrevDiag); 3646 } else { 3647 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 3648 Diag(OldLocation, PrevDiag); 3649 return true; 3650 } 3651 } 3652 3653 // If the function types are compatible, merge the declarations. Ignore the 3654 // exception specifier because it was already checked above in 3655 // CheckEquivalentExceptionSpec, and we don't want follow-on diagnostics 3656 // about incompatible types under -fms-compatibility. 3657 if (Context.hasSameFunctionTypeIgnoringExceptionSpec(OldQTypeForComparison, 3658 NewQType)) 3659 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3660 3661 // If the types are imprecise (due to dependent constructs in friends or 3662 // local extern declarations), it's OK if they differ. We'll check again 3663 // during instantiation. 3664 if (!canFullyTypeCheckRedeclaration(New, Old, NewQType, OldQType)) 3665 return false; 3666 3667 // Fall through for conflicting redeclarations and redefinitions. 3668 } 3669 3670 // C: Function types need to be compatible, not identical. This handles 3671 // duplicate function decls like "void f(int); void f(enum X);" properly. 3672 if (!getLangOpts().CPlusPlus && 3673 Context.typesAreCompatible(OldQType, NewQType)) { 3674 const FunctionType *OldFuncType = OldQType->getAs<FunctionType>(); 3675 const FunctionType *NewFuncType = NewQType->getAs<FunctionType>(); 3676 const FunctionProtoType *OldProto = nullptr; 3677 if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) && 3678 (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) { 3679 // The old declaration provided a function prototype, but the 3680 // new declaration does not. Merge in the prototype. 3681 assert(!OldProto->hasExceptionSpec() && "Exception spec in C"); 3682 SmallVector<QualType, 16> ParamTypes(OldProto->param_types()); 3683 NewQType = 3684 Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes, 3685 OldProto->getExtProtoInfo()); 3686 New->setType(NewQType); 3687 New->setHasInheritedPrototype(); 3688 3689 // Synthesize parameters with the same types. 3690 SmallVector<ParmVarDecl*, 16> Params; 3691 for (const auto &ParamType : OldProto->param_types()) { 3692 ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(), 3693 SourceLocation(), nullptr, 3694 ParamType, /*TInfo=*/nullptr, 3695 SC_None, nullptr); 3696 Param->setScopeInfo(0, Params.size()); 3697 Param->setImplicit(); 3698 Params.push_back(Param); 3699 } 3700 3701 New->setParams(Params); 3702 } 3703 3704 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3705 } 3706 3707 // Check if the function types are compatible when pointer size address 3708 // spaces are ignored. 3709 if (Context.hasSameFunctionTypeIgnoringPtrSizes(OldQType, NewQType)) 3710 return false; 3711 3712 // GNU C permits a K&R definition to follow a prototype declaration 3713 // if the declared types of the parameters in the K&R definition 3714 // match the types in the prototype declaration, even when the 3715 // promoted types of the parameters from the K&R definition differ 3716 // from the types in the prototype. GCC then keeps the types from 3717 // the prototype. 3718 // 3719 // If a variadic prototype is followed by a non-variadic K&R definition, 3720 // the K&R definition becomes variadic. This is sort of an edge case, but 3721 // it's legal per the standard depending on how you read C99 6.7.5.3p15 and 3722 // C99 6.9.1p8. 3723 if (!getLangOpts().CPlusPlus && 3724 Old->hasPrototype() && !New->hasPrototype() && 3725 New->getType()->getAs<FunctionProtoType>() && 3726 Old->getNumParams() == New->getNumParams()) { 3727 SmallVector<QualType, 16> ArgTypes; 3728 SmallVector<GNUCompatibleParamWarning, 16> Warnings; 3729 const FunctionProtoType *OldProto 3730 = Old->getType()->getAs<FunctionProtoType>(); 3731 const FunctionProtoType *NewProto 3732 = New->getType()->getAs<FunctionProtoType>(); 3733 3734 // Determine whether this is the GNU C extension. 3735 QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(), 3736 NewProto->getReturnType()); 3737 bool LooseCompatible = !MergedReturn.isNull(); 3738 for (unsigned Idx = 0, End = Old->getNumParams(); 3739 LooseCompatible && Idx != End; ++Idx) { 3740 ParmVarDecl *OldParm = Old->getParamDecl(Idx); 3741 ParmVarDecl *NewParm = New->getParamDecl(Idx); 3742 if (Context.typesAreCompatible(OldParm->getType(), 3743 NewProto->getParamType(Idx))) { 3744 ArgTypes.push_back(NewParm->getType()); 3745 } else if (Context.typesAreCompatible(OldParm->getType(), 3746 NewParm->getType(), 3747 /*CompareUnqualified=*/true)) { 3748 GNUCompatibleParamWarning Warn = { OldParm, NewParm, 3749 NewProto->getParamType(Idx) }; 3750 Warnings.push_back(Warn); 3751 ArgTypes.push_back(NewParm->getType()); 3752 } else 3753 LooseCompatible = false; 3754 } 3755 3756 if (LooseCompatible) { 3757 for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) { 3758 Diag(Warnings[Warn].NewParm->getLocation(), 3759 diag::ext_param_promoted_not_compatible_with_prototype) 3760 << Warnings[Warn].PromotedType 3761 << Warnings[Warn].OldParm->getType(); 3762 if (Warnings[Warn].OldParm->getLocation().isValid()) 3763 Diag(Warnings[Warn].OldParm->getLocation(), 3764 diag::note_previous_declaration); 3765 } 3766 3767 if (MergeTypeWithOld) 3768 New->setType(Context.getFunctionType(MergedReturn, ArgTypes, 3769 OldProto->getExtProtoInfo())); 3770 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3771 } 3772 3773 // Fall through to diagnose conflicting types. 3774 } 3775 3776 // A function that has already been declared has been redeclared or 3777 // defined with a different type; show an appropriate diagnostic. 3778 3779 // If the previous declaration was an implicitly-generated builtin 3780 // declaration, then at the very least we should use a specialized note. 3781 unsigned BuiltinID; 3782 if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) { 3783 // If it's actually a library-defined builtin function like 'malloc' 3784 // or 'printf', just warn about the incompatible redeclaration. 3785 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { 3786 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New; 3787 Diag(OldLocation, diag::note_previous_builtin_declaration) 3788 << Old << Old->getType(); 3789 return false; 3790 } 3791 3792 PrevDiag = diag::note_previous_builtin_declaration; 3793 } 3794 3795 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName(); 3796 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3797 return true; 3798 } 3799 3800 /// Completes the merge of two function declarations that are 3801 /// known to be compatible. 3802 /// 3803 /// This routine handles the merging of attributes and other 3804 /// properties of function declarations from the old declaration to 3805 /// the new declaration, once we know that New is in fact a 3806 /// redeclaration of Old. 3807 /// 3808 /// \returns false 3809 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, 3810 Scope *S, bool MergeTypeWithOld) { 3811 // Merge the attributes 3812 mergeDeclAttributes(New, Old); 3813 3814 // Merge "pure" flag. 3815 if (Old->isPure()) 3816 New->setPure(); 3817 3818 // Merge "used" flag. 3819 if (Old->getMostRecentDecl()->isUsed(false)) 3820 New->setIsUsed(); 3821 3822 // Merge attributes from the parameters. These can mismatch with K&R 3823 // declarations. 3824 if (New->getNumParams() == Old->getNumParams()) 3825 for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) { 3826 ParmVarDecl *NewParam = New->getParamDecl(i); 3827 ParmVarDecl *OldParam = Old->getParamDecl(i); 3828 mergeParamDeclAttributes(NewParam, OldParam, *this); 3829 mergeParamDeclTypes(NewParam, OldParam, *this); 3830 } 3831 3832 if (getLangOpts().CPlusPlus) 3833 return MergeCXXFunctionDecl(New, Old, S); 3834 3835 // Merge the function types so the we get the composite types for the return 3836 // and argument types. Per C11 6.2.7/4, only update the type if the old decl 3837 // was visible. 3838 QualType Merged = Context.mergeTypes(Old->getType(), New->getType()); 3839 if (!Merged.isNull() && MergeTypeWithOld) 3840 New->setType(Merged); 3841 3842 return false; 3843 } 3844 3845 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod, 3846 ObjCMethodDecl *oldMethod) { 3847 // Merge the attributes, including deprecated/unavailable 3848 AvailabilityMergeKind MergeKind = 3849 isa<ObjCProtocolDecl>(oldMethod->getDeclContext()) 3850 ? AMK_ProtocolImplementation 3851 : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration 3852 : AMK_Override; 3853 3854 mergeDeclAttributes(newMethod, oldMethod, MergeKind); 3855 3856 // Merge attributes from the parameters. 3857 ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(), 3858 oe = oldMethod->param_end(); 3859 for (ObjCMethodDecl::param_iterator 3860 ni = newMethod->param_begin(), ne = newMethod->param_end(); 3861 ni != ne && oi != oe; ++ni, ++oi) 3862 mergeParamDeclAttributes(*ni, *oi, *this); 3863 3864 CheckObjCMethodOverride(newMethod, oldMethod); 3865 } 3866 3867 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) { 3868 assert(!S.Context.hasSameType(New->getType(), Old->getType())); 3869 3870 S.Diag(New->getLocation(), New->isThisDeclarationADefinition() 3871 ? diag::err_redefinition_different_type 3872 : diag::err_redeclaration_different_type) 3873 << New->getDeclName() << New->getType() << Old->getType(); 3874 3875 diag::kind PrevDiag; 3876 SourceLocation OldLocation; 3877 std::tie(PrevDiag, OldLocation) 3878 = getNoteDiagForInvalidRedeclaration(Old, New); 3879 S.Diag(OldLocation, PrevDiag); 3880 New->setInvalidDecl(); 3881 } 3882 3883 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and 3884 /// scope as a previous declaration 'Old'. Figure out how to merge their types, 3885 /// emitting diagnostics as appropriate. 3886 /// 3887 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back 3888 /// to here in AddInitializerToDecl. We can't check them before the initializer 3889 /// is attached. 3890 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old, 3891 bool MergeTypeWithOld) { 3892 if (New->isInvalidDecl() || Old->isInvalidDecl()) 3893 return; 3894 3895 QualType MergedT; 3896 if (getLangOpts().CPlusPlus) { 3897 if (New->getType()->isUndeducedType()) { 3898 // We don't know what the new type is until the initializer is attached. 3899 return; 3900 } else if (Context.hasSameType(New->getType(), Old->getType())) { 3901 // These could still be something that needs exception specs checked. 3902 return MergeVarDeclExceptionSpecs(New, Old); 3903 } 3904 // C++ [basic.link]p10: 3905 // [...] the types specified by all declarations referring to a given 3906 // object or function shall be identical, except that declarations for an 3907 // array object can specify array types that differ by the presence or 3908 // absence of a major array bound (8.3.4). 3909 else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) { 3910 const ArrayType *OldArray = Context.getAsArrayType(Old->getType()); 3911 const ArrayType *NewArray = Context.getAsArrayType(New->getType()); 3912 3913 // We are merging a variable declaration New into Old. If it has an array 3914 // bound, and that bound differs from Old's bound, we should diagnose the 3915 // mismatch. 3916 if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) { 3917 for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD; 3918 PrevVD = PrevVD->getPreviousDecl()) { 3919 QualType PrevVDTy = PrevVD->getType(); 3920 if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType()) 3921 continue; 3922 3923 if (!Context.hasSameType(New->getType(), PrevVDTy)) 3924 return diagnoseVarDeclTypeMismatch(*this, New, PrevVD); 3925 } 3926 } 3927 3928 if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) { 3929 if (Context.hasSameType(OldArray->getElementType(), 3930 NewArray->getElementType())) 3931 MergedT = New->getType(); 3932 } 3933 // FIXME: Check visibility. New is hidden but has a complete type. If New 3934 // has no array bound, it should not inherit one from Old, if Old is not 3935 // visible. 3936 else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) { 3937 if (Context.hasSameType(OldArray->getElementType(), 3938 NewArray->getElementType())) 3939 MergedT = Old->getType(); 3940 } 3941 } 3942 else if (New->getType()->isObjCObjectPointerType() && 3943 Old->getType()->isObjCObjectPointerType()) { 3944 MergedT = Context.mergeObjCGCQualifiers(New->getType(), 3945 Old->getType()); 3946 } 3947 } else { 3948 // C 6.2.7p2: 3949 // All declarations that refer to the same object or function shall have 3950 // compatible type. 3951 MergedT = Context.mergeTypes(New->getType(), Old->getType()); 3952 } 3953 if (MergedT.isNull()) { 3954 // It's OK if we couldn't merge types if either type is dependent, for a 3955 // block-scope variable. In other cases (static data members of class 3956 // templates, variable templates, ...), we require the types to be 3957 // equivalent. 3958 // FIXME: The C++ standard doesn't say anything about this. 3959 if ((New->getType()->isDependentType() || 3960 Old->getType()->isDependentType()) && New->isLocalVarDecl()) { 3961 // If the old type was dependent, we can't merge with it, so the new type 3962 // becomes dependent for now. We'll reproduce the original type when we 3963 // instantiate the TypeSourceInfo for the variable. 3964 if (!New->getType()->isDependentType() && MergeTypeWithOld) 3965 New->setType(Context.DependentTy); 3966 return; 3967 } 3968 return diagnoseVarDeclTypeMismatch(*this, New, Old); 3969 } 3970 3971 // Don't actually update the type on the new declaration if the old 3972 // declaration was an extern declaration in a different scope. 3973 if (MergeTypeWithOld) 3974 New->setType(MergedT); 3975 } 3976 3977 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD, 3978 LookupResult &Previous) { 3979 // C11 6.2.7p4: 3980 // For an identifier with internal or external linkage declared 3981 // in a scope in which a prior declaration of that identifier is 3982 // visible, if the prior declaration specifies internal or 3983 // external linkage, the type of the identifier at the later 3984 // declaration becomes the composite type. 3985 // 3986 // If the variable isn't visible, we do not merge with its type. 3987 if (Previous.isShadowed()) 3988 return false; 3989 3990 if (S.getLangOpts().CPlusPlus) { 3991 // C++11 [dcl.array]p3: 3992 // If there is a preceding declaration of the entity in the same 3993 // scope in which the bound was specified, an omitted array bound 3994 // is taken to be the same as in that earlier declaration. 3995 return NewVD->isPreviousDeclInSameBlockScope() || 3996 (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() && 3997 !NewVD->getLexicalDeclContext()->isFunctionOrMethod()); 3998 } else { 3999 // If the old declaration was function-local, don't merge with its 4000 // type unless we're in the same function. 4001 return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() || 4002 OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext(); 4003 } 4004 } 4005 4006 /// MergeVarDecl - We just parsed a variable 'New' which has the same name 4007 /// and scope as a previous declaration 'Old'. Figure out how to resolve this 4008 /// situation, merging decls or emitting diagnostics as appropriate. 4009 /// 4010 /// Tentative definition rules (C99 6.9.2p2) are checked by 4011 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative 4012 /// definitions here, since the initializer hasn't been attached. 4013 /// 4014 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) { 4015 // If the new decl is already invalid, don't do any other checking. 4016 if (New->isInvalidDecl()) 4017 return; 4018 4019 if (!shouldLinkPossiblyHiddenDecl(Previous, New)) 4020 return; 4021 4022 VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate(); 4023 4024 // Verify the old decl was also a variable or variable template. 4025 VarDecl *Old = nullptr; 4026 VarTemplateDecl *OldTemplate = nullptr; 4027 if (Previous.isSingleResult()) { 4028 if (NewTemplate) { 4029 OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl()); 4030 Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr; 4031 4032 if (auto *Shadow = 4033 dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl())) 4034 if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate)) 4035 return New->setInvalidDecl(); 4036 } else { 4037 Old = dyn_cast<VarDecl>(Previous.getFoundDecl()); 4038 4039 if (auto *Shadow = 4040 dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl())) 4041 if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New)) 4042 return New->setInvalidDecl(); 4043 } 4044 } 4045 if (!Old) { 4046 Diag(New->getLocation(), diag::err_redefinition_different_kind) 4047 << New->getDeclName(); 4048 notePreviousDefinition(Previous.getRepresentativeDecl(), 4049 New->getLocation()); 4050 return New->setInvalidDecl(); 4051 } 4052 4053 // Ensure the template parameters are compatible. 4054 if (NewTemplate && 4055 !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(), 4056 OldTemplate->getTemplateParameters(), 4057 /*Complain=*/true, TPL_TemplateMatch)) 4058 return New->setInvalidDecl(); 4059 4060 // C++ [class.mem]p1: 4061 // A member shall not be declared twice in the member-specification [...] 4062 // 4063 // Here, we need only consider static data members. 4064 if (Old->isStaticDataMember() && !New->isOutOfLine()) { 4065 Diag(New->getLocation(), diag::err_duplicate_member) 4066 << New->getIdentifier(); 4067 Diag(Old->getLocation(), diag::note_previous_declaration); 4068 New->setInvalidDecl(); 4069 } 4070 4071 mergeDeclAttributes(New, Old); 4072 // Warn if an already-declared variable is made a weak_import in a subsequent 4073 // declaration 4074 if (New->hasAttr<WeakImportAttr>() && 4075 Old->getStorageClass() == SC_None && 4076 !Old->hasAttr<WeakImportAttr>()) { 4077 Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName(); 4078 notePreviousDefinition(Old, New->getLocation()); 4079 // Remove weak_import attribute on new declaration. 4080 New->dropAttr<WeakImportAttr>(); 4081 } 4082 4083 if (New->hasAttr<InternalLinkageAttr>() && 4084 !Old->hasAttr<InternalLinkageAttr>()) { 4085 Diag(New->getLocation(), diag::err_internal_linkage_redeclaration) 4086 << New->getDeclName(); 4087 notePreviousDefinition(Old, New->getLocation()); 4088 New->dropAttr<InternalLinkageAttr>(); 4089 } 4090 4091 // Merge the types. 4092 VarDecl *MostRecent = Old->getMostRecentDecl(); 4093 if (MostRecent != Old) { 4094 MergeVarDeclTypes(New, MostRecent, 4095 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); 4096 if (New->isInvalidDecl()) 4097 return; 4098 } 4099 4100 MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous)); 4101 if (New->isInvalidDecl()) 4102 return; 4103 4104 diag::kind PrevDiag; 4105 SourceLocation OldLocation; 4106 std::tie(PrevDiag, OldLocation) = 4107 getNoteDiagForInvalidRedeclaration(Old, New); 4108 4109 // [dcl.stc]p8: Check if we have a non-static decl followed by a static. 4110 if (New->getStorageClass() == SC_Static && 4111 !New->isStaticDataMember() && 4112 Old->hasExternalFormalLinkage()) { 4113 if (getLangOpts().MicrosoftExt) { 4114 Diag(New->getLocation(), diag::ext_static_non_static) 4115 << New->getDeclName(); 4116 Diag(OldLocation, PrevDiag); 4117 } else { 4118 Diag(New->getLocation(), diag::err_static_non_static) 4119 << New->getDeclName(); 4120 Diag(OldLocation, PrevDiag); 4121 return New->setInvalidDecl(); 4122 } 4123 } 4124 // C99 6.2.2p4: 4125 // For an identifier declared with the storage-class specifier 4126 // extern in a scope in which a prior declaration of that 4127 // identifier is visible,23) if the prior declaration specifies 4128 // internal or external linkage, the linkage of the identifier at 4129 // the later declaration is the same as the linkage specified at 4130 // the prior declaration. If no prior declaration is visible, or 4131 // if the prior declaration specifies no linkage, then the 4132 // identifier has external linkage. 4133 if (New->hasExternalStorage() && Old->hasLinkage()) 4134 /* Okay */; 4135 else if (New->getCanonicalDecl()->getStorageClass() != SC_Static && 4136 !New->isStaticDataMember() && 4137 Old->getCanonicalDecl()->getStorageClass() == SC_Static) { 4138 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName(); 4139 Diag(OldLocation, PrevDiag); 4140 return New->setInvalidDecl(); 4141 } 4142 4143 // Check if extern is followed by non-extern and vice-versa. 4144 if (New->hasExternalStorage() && 4145 !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) { 4146 Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName(); 4147 Diag(OldLocation, PrevDiag); 4148 return New->setInvalidDecl(); 4149 } 4150 if (Old->hasLinkage() && New->isLocalVarDeclOrParm() && 4151 !New->hasExternalStorage()) { 4152 Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName(); 4153 Diag(OldLocation, PrevDiag); 4154 return New->setInvalidDecl(); 4155 } 4156 4157 if (CheckRedeclarationModuleOwnership(New, Old)) 4158 return; 4159 4160 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup. 4161 4162 // FIXME: The test for external storage here seems wrong? We still 4163 // need to check for mismatches. 4164 if (!New->hasExternalStorage() && !New->isFileVarDecl() && 4165 // Don't complain about out-of-line definitions of static members. 4166 !(Old->getLexicalDeclContext()->isRecord() && 4167 !New->getLexicalDeclContext()->isRecord())) { 4168 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName(); 4169 Diag(OldLocation, PrevDiag); 4170 return New->setInvalidDecl(); 4171 } 4172 4173 if (New->isInline() && !Old->getMostRecentDecl()->isInline()) { 4174 if (VarDecl *Def = Old->getDefinition()) { 4175 // C++1z [dcl.fcn.spec]p4: 4176 // If the definition of a variable appears in a translation unit before 4177 // its first declaration as inline, the program is ill-formed. 4178 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New; 4179 Diag(Def->getLocation(), diag::note_previous_definition); 4180 } 4181 } 4182 4183 // If this redeclaration makes the variable inline, we may need to add it to 4184 // UndefinedButUsed. 4185 if (!Old->isInline() && New->isInline() && Old->isUsed(false) && 4186 !Old->getDefinition() && !New->isThisDeclarationADefinition()) 4187 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 4188 SourceLocation())); 4189 4190 if (New->getTLSKind() != Old->getTLSKind()) { 4191 if (!Old->getTLSKind()) { 4192 Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName(); 4193 Diag(OldLocation, PrevDiag); 4194 } else if (!New->getTLSKind()) { 4195 Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName(); 4196 Diag(OldLocation, PrevDiag); 4197 } else { 4198 // Do not allow redeclaration to change the variable between requiring 4199 // static and dynamic initialization. 4200 // FIXME: GCC allows this, but uses the TLS keyword on the first 4201 // declaration to determine the kind. Do we need to be compatible here? 4202 Diag(New->getLocation(), diag::err_thread_thread_different_kind) 4203 << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic); 4204 Diag(OldLocation, PrevDiag); 4205 } 4206 } 4207 4208 // C++ doesn't have tentative definitions, so go right ahead and check here. 4209 if (getLangOpts().CPlusPlus && 4210 New->isThisDeclarationADefinition() == VarDecl::Definition) { 4211 if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() && 4212 Old->getCanonicalDecl()->isConstexpr()) { 4213 // This definition won't be a definition any more once it's been merged. 4214 Diag(New->getLocation(), 4215 diag::warn_deprecated_redundant_constexpr_static_def); 4216 } else if (VarDecl *Def = Old->getDefinition()) { 4217 if (checkVarDeclRedefinition(Def, New)) 4218 return; 4219 } 4220 } 4221 4222 if (haveIncompatibleLanguageLinkages(Old, New)) { 4223 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 4224 Diag(OldLocation, PrevDiag); 4225 New->setInvalidDecl(); 4226 return; 4227 } 4228 4229 // Merge "used" flag. 4230 if (Old->getMostRecentDecl()->isUsed(false)) 4231 New->setIsUsed(); 4232 4233 // Keep a chain of previous declarations. 4234 New->setPreviousDecl(Old); 4235 if (NewTemplate) 4236 NewTemplate->setPreviousDecl(OldTemplate); 4237 adjustDeclContextForDeclaratorDecl(New, Old); 4238 4239 // Inherit access appropriately. 4240 New->setAccess(Old->getAccess()); 4241 if (NewTemplate) 4242 NewTemplate->setAccess(New->getAccess()); 4243 4244 if (Old->isInline()) 4245 New->setImplicitlyInline(); 4246 } 4247 4248 void Sema::notePreviousDefinition(const NamedDecl *Old, SourceLocation New) { 4249 SourceManager &SrcMgr = getSourceManager(); 4250 auto FNewDecLoc = SrcMgr.getDecomposedLoc(New); 4251 auto FOldDecLoc = SrcMgr.getDecomposedLoc(Old->getLocation()); 4252 auto *FNew = SrcMgr.getFileEntryForID(FNewDecLoc.first); 4253 auto *FOld = SrcMgr.getFileEntryForID(FOldDecLoc.first); 4254 auto &HSI = PP.getHeaderSearchInfo(); 4255 StringRef HdrFilename = 4256 SrcMgr.getFilename(SrcMgr.getSpellingLoc(Old->getLocation())); 4257 4258 auto noteFromModuleOrInclude = [&](Module *Mod, 4259 SourceLocation IncLoc) -> bool { 4260 // Redefinition errors with modules are common with non modular mapped 4261 // headers, example: a non-modular header H in module A that also gets 4262 // included directly in a TU. Pointing twice to the same header/definition 4263 // is confusing, try to get better diagnostics when modules is on. 4264 if (IncLoc.isValid()) { 4265 if (Mod) { 4266 Diag(IncLoc, diag::note_redefinition_modules_same_file) 4267 << HdrFilename.str() << Mod->getFullModuleName(); 4268 if (!Mod->DefinitionLoc.isInvalid()) 4269 Diag(Mod->DefinitionLoc, diag::note_defined_here) 4270 << Mod->getFullModuleName(); 4271 } else { 4272 Diag(IncLoc, diag::note_redefinition_include_same_file) 4273 << HdrFilename.str(); 4274 } 4275 return true; 4276 } 4277 4278 return false; 4279 }; 4280 4281 // Is it the same file and same offset? Provide more information on why 4282 // this leads to a redefinition error. 4283 if (FNew == FOld && FNewDecLoc.second == FOldDecLoc.second) { 4284 SourceLocation OldIncLoc = SrcMgr.getIncludeLoc(FOldDecLoc.first); 4285 SourceLocation NewIncLoc = SrcMgr.getIncludeLoc(FNewDecLoc.first); 4286 bool EmittedDiag = 4287 noteFromModuleOrInclude(Old->getOwningModule(), OldIncLoc); 4288 EmittedDiag |= noteFromModuleOrInclude(getCurrentModule(), NewIncLoc); 4289 4290 // If the header has no guards, emit a note suggesting one. 4291 if (FOld && !HSI.isFileMultipleIncludeGuarded(FOld)) 4292 Diag(Old->getLocation(), diag::note_use_ifdef_guards); 4293 4294 if (EmittedDiag) 4295 return; 4296 } 4297 4298 // Redefinition coming from different files or couldn't do better above. 4299 if (Old->getLocation().isValid()) 4300 Diag(Old->getLocation(), diag::note_previous_definition); 4301 } 4302 4303 /// We've just determined that \p Old and \p New both appear to be definitions 4304 /// of the same variable. Either diagnose or fix the problem. 4305 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) { 4306 if (!hasVisibleDefinition(Old) && 4307 (New->getFormalLinkage() == InternalLinkage || 4308 New->isInline() || 4309 New->getDescribedVarTemplate() || 4310 New->getNumTemplateParameterLists() || 4311 New->getDeclContext()->isDependentContext())) { 4312 // The previous definition is hidden, and multiple definitions are 4313 // permitted (in separate TUs). Demote this to a declaration. 4314 New->demoteThisDefinitionToDeclaration(); 4315 4316 // Make the canonical definition visible. 4317 if (auto *OldTD = Old->getDescribedVarTemplate()) 4318 makeMergedDefinitionVisible(OldTD); 4319 makeMergedDefinitionVisible(Old); 4320 return false; 4321 } else { 4322 Diag(New->getLocation(), diag::err_redefinition) << New; 4323 notePreviousDefinition(Old, New->getLocation()); 4324 New->setInvalidDecl(); 4325 return true; 4326 } 4327 } 4328 4329 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 4330 /// no declarator (e.g. "struct foo;") is parsed. 4331 Decl * 4332 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, 4333 RecordDecl *&AnonRecord) { 4334 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false, 4335 AnonRecord); 4336 } 4337 4338 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to 4339 // disambiguate entities defined in different scopes. 4340 // While the VS2015 ABI fixes potential miscompiles, it is also breaks 4341 // compatibility. 4342 // We will pick our mangling number depending on which version of MSVC is being 4343 // targeted. 4344 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) { 4345 return LO.isCompatibleWithMSVC(LangOptions::MSVC2015) 4346 ? S->getMSCurManglingNumber() 4347 : S->getMSLastManglingNumber(); 4348 } 4349 4350 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) { 4351 if (!Context.getLangOpts().CPlusPlus) 4352 return; 4353 4354 if (isa<CXXRecordDecl>(Tag->getParent())) { 4355 // If this tag is the direct child of a class, number it if 4356 // it is anonymous. 4357 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl()) 4358 return; 4359 MangleNumberingContext &MCtx = 4360 Context.getManglingNumberContext(Tag->getParent()); 4361 Context.setManglingNumber( 4362 Tag, MCtx.getManglingNumber( 4363 Tag, getMSManglingNumber(getLangOpts(), TagScope))); 4364 return; 4365 } 4366 4367 // If this tag isn't a direct child of a class, number it if it is local. 4368 MangleNumberingContext *MCtx; 4369 Decl *ManglingContextDecl; 4370 std::tie(MCtx, ManglingContextDecl) = 4371 getCurrentMangleNumberContext(Tag->getDeclContext()); 4372 if (MCtx) { 4373 Context.setManglingNumber( 4374 Tag, MCtx->getManglingNumber( 4375 Tag, getMSManglingNumber(getLangOpts(), TagScope))); 4376 } 4377 } 4378 4379 namespace { 4380 struct NonCLikeKind { 4381 enum { 4382 None, 4383 BaseClass, 4384 DefaultMemberInit, 4385 Lambda, 4386 Friend, 4387 OtherMember, 4388 Invalid, 4389 } Kind = None; 4390 SourceRange Range; 4391 4392 explicit operator bool() { return Kind != None; } 4393 }; 4394 } 4395 4396 /// Determine whether a class is C-like, according to the rules of C++ 4397 /// [dcl.typedef] for anonymous classes with typedef names for linkage. 4398 static NonCLikeKind getNonCLikeKindForAnonymousStruct(const CXXRecordDecl *RD) { 4399 if (RD->isInvalidDecl()) 4400 return {NonCLikeKind::Invalid, {}}; 4401 4402 // C++ [dcl.typedef]p9: [P1766R1] 4403 // An unnamed class with a typedef name for linkage purposes shall not 4404 // 4405 // -- have any base classes 4406 if (RD->getNumBases()) 4407 return {NonCLikeKind::BaseClass, 4408 SourceRange(RD->bases_begin()->getBeginLoc(), 4409 RD->bases_end()[-1].getEndLoc())}; 4410 bool Invalid = false; 4411 for (Decl *D : RD->decls()) { 4412 // Don't complain about things we already diagnosed. 4413 if (D->isInvalidDecl()) { 4414 Invalid = true; 4415 continue; 4416 } 4417 4418 // -- have any [...] default member initializers 4419 if (auto *FD = dyn_cast<FieldDecl>(D)) { 4420 if (FD->hasInClassInitializer()) { 4421 auto *Init = FD->getInClassInitializer(); 4422 return {NonCLikeKind::DefaultMemberInit, 4423 Init ? Init->getSourceRange() : D->getSourceRange()}; 4424 } 4425 continue; 4426 } 4427 4428 // FIXME: We don't allow friend declarations. This violates the wording of 4429 // P1766, but not the intent. 4430 if (isa<FriendDecl>(D)) 4431 return {NonCLikeKind::Friend, D->getSourceRange()}; 4432 4433 // -- declare any members other than non-static data members, member 4434 // enumerations, or member classes, 4435 if (isa<StaticAssertDecl>(D) || isa<IndirectFieldDecl>(D) || 4436 isa<EnumDecl>(D)) 4437 continue; 4438 auto *MemberRD = dyn_cast<CXXRecordDecl>(D); 4439 if (!MemberRD) { 4440 if (D->isImplicit()) 4441 continue; 4442 return {NonCLikeKind::OtherMember, D->getSourceRange()}; 4443 } 4444 4445 // -- contain a lambda-expression, 4446 if (MemberRD->isLambda()) 4447 return {NonCLikeKind::Lambda, MemberRD->getSourceRange()}; 4448 4449 // and all member classes shall also satisfy these requirements 4450 // (recursively). 4451 if (MemberRD->isThisDeclarationADefinition()) { 4452 if (auto Kind = getNonCLikeKindForAnonymousStruct(MemberRD)) 4453 return Kind; 4454 } 4455 } 4456 4457 return {Invalid ? NonCLikeKind::Invalid : NonCLikeKind::None, {}}; 4458 } 4459 4460 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec, 4461 TypedefNameDecl *NewTD) { 4462 if (TagFromDeclSpec->isInvalidDecl()) 4463 return; 4464 4465 // Do nothing if the tag already has a name for linkage purposes. 4466 if (TagFromDeclSpec->hasNameForLinkage()) 4467 return; 4468 4469 // A well-formed anonymous tag must always be a TUK_Definition. 4470 assert(TagFromDeclSpec->isThisDeclarationADefinition()); 4471 4472 // The type must match the tag exactly; no qualifiers allowed. 4473 if (!Context.hasSameType(NewTD->getUnderlyingType(), 4474 Context.getTagDeclType(TagFromDeclSpec))) { 4475 if (getLangOpts().CPlusPlus) 4476 Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD); 4477 return; 4478 } 4479 4480 // C++ [dcl.typedef]p9: [P1766R1, applied as DR] 4481 // An unnamed class with a typedef name for linkage purposes shall [be 4482 // C-like]. 4483 // 4484 // FIXME: Also diagnose if we've already computed the linkage. That ideally 4485 // shouldn't happen, but there are constructs that the language rule doesn't 4486 // disallow for which we can't reasonably avoid computing linkage early. 4487 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TagFromDeclSpec); 4488 NonCLikeKind NonCLike = RD ? getNonCLikeKindForAnonymousStruct(RD) 4489 : NonCLikeKind(); 4490 bool ChangesLinkage = TagFromDeclSpec->hasLinkageBeenComputed(); 4491 if (NonCLike || ChangesLinkage) { 4492 if (NonCLike.Kind == NonCLikeKind::Invalid) 4493 return; 4494 4495 unsigned DiagID = diag::ext_non_c_like_anon_struct_in_typedef; 4496 if (ChangesLinkage) { 4497 // If the linkage changes, we can't accept this as an extension. 4498 if (NonCLike.Kind == NonCLikeKind::None) 4499 DiagID = diag::err_typedef_changes_linkage; 4500 else 4501 DiagID = diag::err_non_c_like_anon_struct_in_typedef; 4502 } 4503 4504 SourceLocation FixitLoc = 4505 getLocForEndOfToken(TagFromDeclSpec->getInnerLocStart()); 4506 llvm::SmallString<40> TextToInsert; 4507 TextToInsert += ' '; 4508 TextToInsert += NewTD->getIdentifier()->getName(); 4509 4510 Diag(FixitLoc, DiagID) 4511 << isa<TypeAliasDecl>(NewTD) 4512 << FixItHint::CreateInsertion(FixitLoc, TextToInsert); 4513 if (NonCLike.Kind != NonCLikeKind::None) { 4514 Diag(NonCLike.Range.getBegin(), diag::note_non_c_like_anon_struct) 4515 << NonCLike.Kind - 1 << NonCLike.Range; 4516 } 4517 Diag(NewTD->getLocation(), diag::note_typedef_for_linkage_here) 4518 << NewTD << isa<TypeAliasDecl>(NewTD); 4519 4520 if (ChangesLinkage) 4521 return; 4522 } 4523 4524 // Otherwise, set this as the anon-decl typedef for the tag. 4525 TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD); 4526 } 4527 4528 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) { 4529 switch (T) { 4530 case DeclSpec::TST_class: 4531 return 0; 4532 case DeclSpec::TST_struct: 4533 return 1; 4534 case DeclSpec::TST_interface: 4535 return 2; 4536 case DeclSpec::TST_union: 4537 return 3; 4538 case DeclSpec::TST_enum: 4539 return 4; 4540 default: 4541 llvm_unreachable("unexpected type specifier"); 4542 } 4543 } 4544 4545 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 4546 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template 4547 /// parameters to cope with template friend declarations. 4548 Decl * 4549 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, 4550 MultiTemplateParamsArg TemplateParams, 4551 bool IsExplicitInstantiation, 4552 RecordDecl *&AnonRecord) { 4553 Decl *TagD = nullptr; 4554 TagDecl *Tag = nullptr; 4555 if (DS.getTypeSpecType() == DeclSpec::TST_class || 4556 DS.getTypeSpecType() == DeclSpec::TST_struct || 4557 DS.getTypeSpecType() == DeclSpec::TST_interface || 4558 DS.getTypeSpecType() == DeclSpec::TST_union || 4559 DS.getTypeSpecType() == DeclSpec::TST_enum) { 4560 TagD = DS.getRepAsDecl(); 4561 4562 if (!TagD) // We probably had an error 4563 return nullptr; 4564 4565 // Note that the above type specs guarantee that the 4566 // type rep is a Decl, whereas in many of the others 4567 // it's a Type. 4568 if (isa<TagDecl>(TagD)) 4569 Tag = cast<TagDecl>(TagD); 4570 else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD)) 4571 Tag = CTD->getTemplatedDecl(); 4572 } 4573 4574 if (Tag) { 4575 handleTagNumbering(Tag, S); 4576 Tag->setFreeStanding(); 4577 if (Tag->isInvalidDecl()) 4578 return Tag; 4579 } 4580 4581 if (unsigned TypeQuals = DS.getTypeQualifiers()) { 4582 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object 4583 // or incomplete types shall not be restrict-qualified." 4584 if (TypeQuals & DeclSpec::TQ_restrict) 4585 Diag(DS.getRestrictSpecLoc(), 4586 diag::err_typecheck_invalid_restrict_not_pointer_noarg) 4587 << DS.getSourceRange(); 4588 } 4589 4590 if (DS.isInlineSpecified()) 4591 Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function) 4592 << getLangOpts().CPlusPlus17; 4593 4594 if (DS.hasConstexprSpecifier()) { 4595 // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations 4596 // and definitions of functions and variables. 4597 // C++2a [dcl.constexpr]p1: The consteval specifier shall be applied only to 4598 // the declaration of a function or function template 4599 if (Tag) 4600 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag) 4601 << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) 4602 << DS.getConstexprSpecifier(); 4603 else 4604 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_wrong_decl_kind) 4605 << DS.getConstexprSpecifier(); 4606 // Don't emit warnings after this error. 4607 return TagD; 4608 } 4609 4610 DiagnoseFunctionSpecifiers(DS); 4611 4612 if (DS.isFriendSpecified()) { 4613 // If we're dealing with a decl but not a TagDecl, assume that 4614 // whatever routines created it handled the friendship aspect. 4615 if (TagD && !Tag) 4616 return nullptr; 4617 return ActOnFriendTypeDecl(S, DS, TemplateParams); 4618 } 4619 4620 const CXXScopeSpec &SS = DS.getTypeSpecScope(); 4621 bool IsExplicitSpecialization = 4622 !TemplateParams.empty() && TemplateParams.back()->size() == 0; 4623 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() && 4624 !IsExplicitInstantiation && !IsExplicitSpecialization && 4625 !isa<ClassTemplatePartialSpecializationDecl>(Tag)) { 4626 // Per C++ [dcl.type.elab]p1, a class declaration cannot have a 4627 // nested-name-specifier unless it is an explicit instantiation 4628 // or an explicit specialization. 4629 // 4630 // FIXME: We allow class template partial specializations here too, per the 4631 // obvious intent of DR1819. 4632 // 4633 // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either. 4634 Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier) 4635 << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange(); 4636 return nullptr; 4637 } 4638 4639 // Track whether this decl-specifier declares anything. 4640 bool DeclaresAnything = true; 4641 4642 // Handle anonymous struct definitions. 4643 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) { 4644 if (!Record->getDeclName() && Record->isCompleteDefinition() && 4645 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) { 4646 if (getLangOpts().CPlusPlus || 4647 Record->getDeclContext()->isRecord()) { 4648 // If CurContext is a DeclContext that can contain statements, 4649 // RecursiveASTVisitor won't visit the decls that 4650 // BuildAnonymousStructOrUnion() will put into CurContext. 4651 // Also store them here so that they can be part of the 4652 // DeclStmt that gets created in this case. 4653 // FIXME: Also return the IndirectFieldDecls created by 4654 // BuildAnonymousStructOr union, for the same reason? 4655 if (CurContext->isFunctionOrMethod()) 4656 AnonRecord = Record; 4657 return BuildAnonymousStructOrUnion(S, DS, AS, Record, 4658 Context.getPrintingPolicy()); 4659 } 4660 4661 DeclaresAnything = false; 4662 } 4663 } 4664 4665 // C11 6.7.2.1p2: 4666 // A struct-declaration that does not declare an anonymous structure or 4667 // anonymous union shall contain a struct-declarator-list. 4668 // 4669 // This rule also existed in C89 and C99; the grammar for struct-declaration 4670 // did not permit a struct-declaration without a struct-declarator-list. 4671 if (!getLangOpts().CPlusPlus && CurContext->isRecord() && 4672 DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) { 4673 // Check for Microsoft C extension: anonymous struct/union member. 4674 // Handle 2 kinds of anonymous struct/union: 4675 // struct STRUCT; 4676 // union UNION; 4677 // and 4678 // STRUCT_TYPE; <- where STRUCT_TYPE is a typedef struct. 4679 // UNION_TYPE; <- where UNION_TYPE is a typedef union. 4680 if ((Tag && Tag->getDeclName()) || 4681 DS.getTypeSpecType() == DeclSpec::TST_typename) { 4682 RecordDecl *Record = nullptr; 4683 if (Tag) 4684 Record = dyn_cast<RecordDecl>(Tag); 4685 else if (const RecordType *RT = 4686 DS.getRepAsType().get()->getAsStructureType()) 4687 Record = RT->getDecl(); 4688 else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType()) 4689 Record = UT->getDecl(); 4690 4691 if (Record && getLangOpts().MicrosoftExt) { 4692 Diag(DS.getBeginLoc(), diag::ext_ms_anonymous_record) 4693 << Record->isUnion() << DS.getSourceRange(); 4694 return BuildMicrosoftCAnonymousStruct(S, DS, Record); 4695 } 4696 4697 DeclaresAnything = false; 4698 } 4699 } 4700 4701 // Skip all the checks below if we have a type error. 4702 if (DS.getTypeSpecType() == DeclSpec::TST_error || 4703 (TagD && TagD->isInvalidDecl())) 4704 return TagD; 4705 4706 if (getLangOpts().CPlusPlus && 4707 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) 4708 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag)) 4709 if (Enum->enumerator_begin() == Enum->enumerator_end() && 4710 !Enum->getIdentifier() && !Enum->isInvalidDecl()) 4711 DeclaresAnything = false; 4712 4713 if (!DS.isMissingDeclaratorOk()) { 4714 // Customize diagnostic for a typedef missing a name. 4715 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) 4716 Diag(DS.getBeginLoc(), diag::ext_typedef_without_a_name) 4717 << DS.getSourceRange(); 4718 else 4719 DeclaresAnything = false; 4720 } 4721 4722 if (DS.isModulePrivateSpecified() && 4723 Tag && Tag->getDeclContext()->isFunctionOrMethod()) 4724 Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class) 4725 << Tag->getTagKind() 4726 << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc()); 4727 4728 ActOnDocumentableDecl(TagD); 4729 4730 // C 6.7/2: 4731 // A declaration [...] shall declare at least a declarator [...], a tag, 4732 // or the members of an enumeration. 4733 // C++ [dcl.dcl]p3: 4734 // [If there are no declarators], and except for the declaration of an 4735 // unnamed bit-field, the decl-specifier-seq shall introduce one or more 4736 // names into the program, or shall redeclare a name introduced by a 4737 // previous declaration. 4738 if (!DeclaresAnything) { 4739 // In C, we allow this as a (popular) extension / bug. Don't bother 4740 // producing further diagnostics for redundant qualifiers after this. 4741 Diag(DS.getBeginLoc(), (IsExplicitInstantiation || !TemplateParams.empty()) 4742 ? diag::err_no_declarators 4743 : diag::ext_no_declarators) 4744 << DS.getSourceRange(); 4745 return TagD; 4746 } 4747 4748 // C++ [dcl.stc]p1: 4749 // If a storage-class-specifier appears in a decl-specifier-seq, [...] the 4750 // init-declarator-list of the declaration shall not be empty. 4751 // C++ [dcl.fct.spec]p1: 4752 // If a cv-qualifier appears in a decl-specifier-seq, the 4753 // init-declarator-list of the declaration shall not be empty. 4754 // 4755 // Spurious qualifiers here appear to be valid in C. 4756 unsigned DiagID = diag::warn_standalone_specifier; 4757 if (getLangOpts().CPlusPlus) 4758 DiagID = diag::ext_standalone_specifier; 4759 4760 // Note that a linkage-specification sets a storage class, but 4761 // 'extern "C" struct foo;' is actually valid and not theoretically 4762 // useless. 4763 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { 4764 if (SCS == DeclSpec::SCS_mutable) 4765 // Since mutable is not a viable storage class specifier in C, there is 4766 // no reason to treat it as an extension. Instead, diagnose as an error. 4767 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember); 4768 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef) 4769 Diag(DS.getStorageClassSpecLoc(), DiagID) 4770 << DeclSpec::getSpecifierName(SCS); 4771 } 4772 4773 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 4774 Diag(DS.getThreadStorageClassSpecLoc(), DiagID) 4775 << DeclSpec::getSpecifierName(TSCS); 4776 if (DS.getTypeQualifiers()) { 4777 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 4778 Diag(DS.getConstSpecLoc(), DiagID) << "const"; 4779 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 4780 Diag(DS.getConstSpecLoc(), DiagID) << "volatile"; 4781 // Restrict is covered above. 4782 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 4783 Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic"; 4784 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 4785 Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned"; 4786 } 4787 4788 // Warn about ignored type attributes, for example: 4789 // __attribute__((aligned)) struct A; 4790 // Attributes should be placed after tag to apply to type declaration. 4791 if (!DS.getAttributes().empty()) { 4792 DeclSpec::TST TypeSpecType = DS.getTypeSpecType(); 4793 if (TypeSpecType == DeclSpec::TST_class || 4794 TypeSpecType == DeclSpec::TST_struct || 4795 TypeSpecType == DeclSpec::TST_interface || 4796 TypeSpecType == DeclSpec::TST_union || 4797 TypeSpecType == DeclSpec::TST_enum) { 4798 for (const ParsedAttr &AL : DS.getAttributes()) 4799 Diag(AL.getLoc(), diag::warn_declspec_attribute_ignored) 4800 << AL << GetDiagnosticTypeSpecifierID(TypeSpecType); 4801 } 4802 } 4803 4804 return TagD; 4805 } 4806 4807 /// We are trying to inject an anonymous member into the given scope; 4808 /// check if there's an existing declaration that can't be overloaded. 4809 /// 4810 /// \return true if this is a forbidden redeclaration 4811 static bool CheckAnonMemberRedeclaration(Sema &SemaRef, 4812 Scope *S, 4813 DeclContext *Owner, 4814 DeclarationName Name, 4815 SourceLocation NameLoc, 4816 bool IsUnion) { 4817 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName, 4818 Sema::ForVisibleRedeclaration); 4819 if (!SemaRef.LookupName(R, S)) return false; 4820 4821 // Pick a representative declaration. 4822 NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl(); 4823 assert(PrevDecl && "Expected a non-null Decl"); 4824 4825 if (!SemaRef.isDeclInScope(PrevDecl, Owner, S)) 4826 return false; 4827 4828 SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl) 4829 << IsUnion << Name; 4830 SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 4831 4832 return true; 4833 } 4834 4835 /// InjectAnonymousStructOrUnionMembers - Inject the members of the 4836 /// anonymous struct or union AnonRecord into the owning context Owner 4837 /// and scope S. This routine will be invoked just after we realize 4838 /// that an unnamed union or struct is actually an anonymous union or 4839 /// struct, e.g., 4840 /// 4841 /// @code 4842 /// union { 4843 /// int i; 4844 /// float f; 4845 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and 4846 /// // f into the surrounding scope.x 4847 /// @endcode 4848 /// 4849 /// This routine is recursive, injecting the names of nested anonymous 4850 /// structs/unions into the owning context and scope as well. 4851 static bool 4852 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner, 4853 RecordDecl *AnonRecord, AccessSpecifier AS, 4854 SmallVectorImpl<NamedDecl *> &Chaining) { 4855 bool Invalid = false; 4856 4857 // Look every FieldDecl and IndirectFieldDecl with a name. 4858 for (auto *D : AnonRecord->decls()) { 4859 if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) && 4860 cast<NamedDecl>(D)->getDeclName()) { 4861 ValueDecl *VD = cast<ValueDecl>(D); 4862 if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(), 4863 VD->getLocation(), 4864 AnonRecord->isUnion())) { 4865 // C++ [class.union]p2: 4866 // The names of the members of an anonymous union shall be 4867 // distinct from the names of any other entity in the 4868 // scope in which the anonymous union is declared. 4869 Invalid = true; 4870 } else { 4871 // C++ [class.union]p2: 4872 // For the purpose of name lookup, after the anonymous union 4873 // definition, the members of the anonymous union are 4874 // considered to have been defined in the scope in which the 4875 // anonymous union is declared. 4876 unsigned OldChainingSize = Chaining.size(); 4877 if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD)) 4878 Chaining.append(IF->chain_begin(), IF->chain_end()); 4879 else 4880 Chaining.push_back(VD); 4881 4882 assert(Chaining.size() >= 2); 4883 NamedDecl **NamedChain = 4884 new (SemaRef.Context)NamedDecl*[Chaining.size()]; 4885 for (unsigned i = 0; i < Chaining.size(); i++) 4886 NamedChain[i] = Chaining[i]; 4887 4888 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create( 4889 SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(), 4890 VD->getType(), {NamedChain, Chaining.size()}); 4891 4892 for (const auto *Attr : VD->attrs()) 4893 IndirectField->addAttr(Attr->clone(SemaRef.Context)); 4894 4895 IndirectField->setAccess(AS); 4896 IndirectField->setImplicit(); 4897 SemaRef.PushOnScopeChains(IndirectField, S); 4898 4899 // That includes picking up the appropriate access specifier. 4900 if (AS != AS_none) IndirectField->setAccess(AS); 4901 4902 Chaining.resize(OldChainingSize); 4903 } 4904 } 4905 } 4906 4907 return Invalid; 4908 } 4909 4910 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to 4911 /// a VarDecl::StorageClass. Any error reporting is up to the caller: 4912 /// illegal input values are mapped to SC_None. 4913 static StorageClass 4914 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) { 4915 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec(); 4916 assert(StorageClassSpec != DeclSpec::SCS_typedef && 4917 "Parser allowed 'typedef' as storage class VarDecl."); 4918 switch (StorageClassSpec) { 4919 case DeclSpec::SCS_unspecified: return SC_None; 4920 case DeclSpec::SCS_extern: 4921 if (DS.isExternInLinkageSpec()) 4922 return SC_None; 4923 return SC_Extern; 4924 case DeclSpec::SCS_static: return SC_Static; 4925 case DeclSpec::SCS_auto: return SC_Auto; 4926 case DeclSpec::SCS_register: return SC_Register; 4927 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 4928 // Illegal SCSs map to None: error reporting is up to the caller. 4929 case DeclSpec::SCS_mutable: // Fall through. 4930 case DeclSpec::SCS_typedef: return SC_None; 4931 } 4932 llvm_unreachable("unknown storage class specifier"); 4933 } 4934 4935 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) { 4936 assert(Record->hasInClassInitializer()); 4937 4938 for (const auto *I : Record->decls()) { 4939 const auto *FD = dyn_cast<FieldDecl>(I); 4940 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) 4941 FD = IFD->getAnonField(); 4942 if (FD && FD->hasInClassInitializer()) 4943 return FD->getLocation(); 4944 } 4945 4946 llvm_unreachable("couldn't find in-class initializer"); 4947 } 4948 4949 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent, 4950 SourceLocation DefaultInitLoc) { 4951 if (!Parent->isUnion() || !Parent->hasInClassInitializer()) 4952 return; 4953 4954 S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization); 4955 S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0; 4956 } 4957 4958 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent, 4959 CXXRecordDecl *AnonUnion) { 4960 if (!Parent->isUnion() || !Parent->hasInClassInitializer()) 4961 return; 4962 4963 checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion)); 4964 } 4965 4966 /// BuildAnonymousStructOrUnion - Handle the declaration of an 4967 /// anonymous structure or union. Anonymous unions are a C++ feature 4968 /// (C++ [class.union]) and a C11 feature; anonymous structures 4969 /// are a C11 feature and GNU C++ extension. 4970 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, 4971 AccessSpecifier AS, 4972 RecordDecl *Record, 4973 const PrintingPolicy &Policy) { 4974 DeclContext *Owner = Record->getDeclContext(); 4975 4976 // Diagnose whether this anonymous struct/union is an extension. 4977 if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11) 4978 Diag(Record->getLocation(), diag::ext_anonymous_union); 4979 else if (!Record->isUnion() && getLangOpts().CPlusPlus) 4980 Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct); 4981 else if (!Record->isUnion() && !getLangOpts().C11) 4982 Diag(Record->getLocation(), diag::ext_c11_anonymous_struct); 4983 4984 // C and C++ require different kinds of checks for anonymous 4985 // structs/unions. 4986 bool Invalid = false; 4987 if (getLangOpts().CPlusPlus) { 4988 const char *PrevSpec = nullptr; 4989 if (Record->isUnion()) { 4990 // C++ [class.union]p6: 4991 // C++17 [class.union.anon]p2: 4992 // Anonymous unions declared in a named namespace or in the 4993 // global namespace shall be declared static. 4994 unsigned DiagID; 4995 DeclContext *OwnerScope = Owner->getRedeclContext(); 4996 if (DS.getStorageClassSpec() != DeclSpec::SCS_static && 4997 (OwnerScope->isTranslationUnit() || 4998 (OwnerScope->isNamespace() && 4999 !cast<NamespaceDecl>(OwnerScope)->isAnonymousNamespace()))) { 5000 Diag(Record->getLocation(), diag::err_anonymous_union_not_static) 5001 << FixItHint::CreateInsertion(Record->getLocation(), "static "); 5002 5003 // Recover by adding 'static'. 5004 DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(), 5005 PrevSpec, DiagID, Policy); 5006 } 5007 // C++ [class.union]p6: 5008 // A storage class is not allowed in a declaration of an 5009 // anonymous union in a class scope. 5010 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && 5011 isa<RecordDecl>(Owner)) { 5012 Diag(DS.getStorageClassSpecLoc(), 5013 diag::err_anonymous_union_with_storage_spec) 5014 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 5015 5016 // Recover by removing the storage specifier. 5017 DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified, 5018 SourceLocation(), 5019 PrevSpec, DiagID, Context.getPrintingPolicy()); 5020 } 5021 } 5022 5023 // Ignore const/volatile/restrict qualifiers. 5024 if (DS.getTypeQualifiers()) { 5025 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 5026 Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified) 5027 << Record->isUnion() << "const" 5028 << FixItHint::CreateRemoval(DS.getConstSpecLoc()); 5029 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 5030 Diag(DS.getVolatileSpecLoc(), 5031 diag::ext_anonymous_struct_union_qualified) 5032 << Record->isUnion() << "volatile" 5033 << FixItHint::CreateRemoval(DS.getVolatileSpecLoc()); 5034 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) 5035 Diag(DS.getRestrictSpecLoc(), 5036 diag::ext_anonymous_struct_union_qualified) 5037 << Record->isUnion() << "restrict" 5038 << FixItHint::CreateRemoval(DS.getRestrictSpecLoc()); 5039 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 5040 Diag(DS.getAtomicSpecLoc(), 5041 diag::ext_anonymous_struct_union_qualified) 5042 << Record->isUnion() << "_Atomic" 5043 << FixItHint::CreateRemoval(DS.getAtomicSpecLoc()); 5044 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 5045 Diag(DS.getUnalignedSpecLoc(), 5046 diag::ext_anonymous_struct_union_qualified) 5047 << Record->isUnion() << "__unaligned" 5048 << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc()); 5049 5050 DS.ClearTypeQualifiers(); 5051 } 5052 5053 // C++ [class.union]p2: 5054 // The member-specification of an anonymous union shall only 5055 // define non-static data members. [Note: nested types and 5056 // functions cannot be declared within an anonymous union. ] 5057 for (auto *Mem : Record->decls()) { 5058 // Ignore invalid declarations; we already diagnosed them. 5059 if (Mem->isInvalidDecl()) 5060 continue; 5061 5062 if (auto *FD = dyn_cast<FieldDecl>(Mem)) { 5063 // C++ [class.union]p3: 5064 // An anonymous union shall not have private or protected 5065 // members (clause 11). 5066 assert(FD->getAccess() != AS_none); 5067 if (FD->getAccess() != AS_public) { 5068 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member) 5069 << Record->isUnion() << (FD->getAccess() == AS_protected); 5070 Invalid = true; 5071 } 5072 5073 // C++ [class.union]p1 5074 // An object of a class with a non-trivial constructor, a non-trivial 5075 // copy constructor, a non-trivial destructor, or a non-trivial copy 5076 // assignment operator cannot be a member of a union, nor can an 5077 // array of such objects. 5078 if (CheckNontrivialField(FD)) 5079 Invalid = true; 5080 } else if (Mem->isImplicit()) { 5081 // Any implicit members are fine. 5082 } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) { 5083 // This is a type that showed up in an 5084 // elaborated-type-specifier inside the anonymous struct or 5085 // union, but which actually declares a type outside of the 5086 // anonymous struct or union. It's okay. 5087 } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) { 5088 if (!MemRecord->isAnonymousStructOrUnion() && 5089 MemRecord->getDeclName()) { 5090 // Visual C++ allows type definition in anonymous struct or union. 5091 if (getLangOpts().MicrosoftExt) 5092 Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type) 5093 << Record->isUnion(); 5094 else { 5095 // This is a nested type declaration. 5096 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type) 5097 << Record->isUnion(); 5098 Invalid = true; 5099 } 5100 } else { 5101 // This is an anonymous type definition within another anonymous type. 5102 // This is a popular extension, provided by Plan9, MSVC and GCC, but 5103 // not part of standard C++. 5104 Diag(MemRecord->getLocation(), 5105 diag::ext_anonymous_record_with_anonymous_type) 5106 << Record->isUnion(); 5107 } 5108 } else if (isa<AccessSpecDecl>(Mem)) { 5109 // Any access specifier is fine. 5110 } else if (isa<StaticAssertDecl>(Mem)) { 5111 // In C++1z, static_assert declarations are also fine. 5112 } else { 5113 // We have something that isn't a non-static data 5114 // member. Complain about it. 5115 unsigned DK = diag::err_anonymous_record_bad_member; 5116 if (isa<TypeDecl>(Mem)) 5117 DK = diag::err_anonymous_record_with_type; 5118 else if (isa<FunctionDecl>(Mem)) 5119 DK = diag::err_anonymous_record_with_function; 5120 else if (isa<VarDecl>(Mem)) 5121 DK = diag::err_anonymous_record_with_static; 5122 5123 // Visual C++ allows type definition in anonymous struct or union. 5124 if (getLangOpts().MicrosoftExt && 5125 DK == diag::err_anonymous_record_with_type) 5126 Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type) 5127 << Record->isUnion(); 5128 else { 5129 Diag(Mem->getLocation(), DK) << Record->isUnion(); 5130 Invalid = true; 5131 } 5132 } 5133 } 5134 5135 // C++11 [class.union]p8 (DR1460): 5136 // At most one variant member of a union may have a 5137 // brace-or-equal-initializer. 5138 if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() && 5139 Owner->isRecord()) 5140 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner), 5141 cast<CXXRecordDecl>(Record)); 5142 } 5143 5144 if (!Record->isUnion() && !Owner->isRecord()) { 5145 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member) 5146 << getLangOpts().CPlusPlus; 5147 Invalid = true; 5148 } 5149 5150 // C++ [dcl.dcl]p3: 5151 // [If there are no declarators], and except for the declaration of an 5152 // unnamed bit-field, the decl-specifier-seq shall introduce one or more 5153 // names into the program 5154 // C++ [class.mem]p2: 5155 // each such member-declaration shall either declare at least one member 5156 // name of the class or declare at least one unnamed bit-field 5157 // 5158 // For C this is an error even for a named struct, and is diagnosed elsewhere. 5159 if (getLangOpts().CPlusPlus && Record->field_empty()) 5160 Diag(DS.getBeginLoc(), diag::ext_no_declarators) << DS.getSourceRange(); 5161 5162 // Mock up a declarator. 5163 Declarator Dc(DS, DeclaratorContext::MemberContext); 5164 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 5165 assert(TInfo && "couldn't build declarator info for anonymous struct/union"); 5166 5167 // Create a declaration for this anonymous struct/union. 5168 NamedDecl *Anon = nullptr; 5169 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) { 5170 Anon = FieldDecl::Create( 5171 Context, OwningClass, DS.getBeginLoc(), Record->getLocation(), 5172 /*IdentifierInfo=*/nullptr, Context.getTypeDeclType(Record), TInfo, 5173 /*BitWidth=*/nullptr, /*Mutable=*/false, 5174 /*InitStyle=*/ICIS_NoInit); 5175 Anon->setAccess(AS); 5176 ProcessDeclAttributes(S, Anon, Dc); 5177 5178 if (getLangOpts().CPlusPlus) 5179 FieldCollector->Add(cast<FieldDecl>(Anon)); 5180 } else { 5181 DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); 5182 StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS); 5183 if (SCSpec == DeclSpec::SCS_mutable) { 5184 // mutable can only appear on non-static class members, so it's always 5185 // an error here 5186 Diag(Record->getLocation(), diag::err_mutable_nonmember); 5187 Invalid = true; 5188 SC = SC_None; 5189 } 5190 5191 assert(DS.getAttributes().empty() && "No attribute expected"); 5192 Anon = VarDecl::Create(Context, Owner, DS.getBeginLoc(), 5193 Record->getLocation(), /*IdentifierInfo=*/nullptr, 5194 Context.getTypeDeclType(Record), TInfo, SC); 5195 5196 // Default-initialize the implicit variable. This initialization will be 5197 // trivial in almost all cases, except if a union member has an in-class 5198 // initializer: 5199 // union { int n = 0; }; 5200 ActOnUninitializedDecl(Anon); 5201 } 5202 Anon->setImplicit(); 5203 5204 // Mark this as an anonymous struct/union type. 5205 Record->setAnonymousStructOrUnion(true); 5206 5207 // Add the anonymous struct/union object to the current 5208 // context. We'll be referencing this object when we refer to one of 5209 // its members. 5210 Owner->addDecl(Anon); 5211 5212 // Inject the members of the anonymous struct/union into the owning 5213 // context and into the identifier resolver chain for name lookup 5214 // purposes. 5215 SmallVector<NamedDecl*, 2> Chain; 5216 Chain.push_back(Anon); 5217 5218 if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain)) 5219 Invalid = true; 5220 5221 if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) { 5222 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) { 5223 MangleNumberingContext *MCtx; 5224 Decl *ManglingContextDecl; 5225 std::tie(MCtx, ManglingContextDecl) = 5226 getCurrentMangleNumberContext(NewVD->getDeclContext()); 5227 if (MCtx) { 5228 Context.setManglingNumber( 5229 NewVD, MCtx->getManglingNumber( 5230 NewVD, getMSManglingNumber(getLangOpts(), S))); 5231 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD)); 5232 } 5233 } 5234 } 5235 5236 if (Invalid) 5237 Anon->setInvalidDecl(); 5238 5239 return Anon; 5240 } 5241 5242 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an 5243 /// Microsoft C anonymous structure. 5244 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx 5245 /// Example: 5246 /// 5247 /// struct A { int a; }; 5248 /// struct B { struct A; int b; }; 5249 /// 5250 /// void foo() { 5251 /// B var; 5252 /// var.a = 3; 5253 /// } 5254 /// 5255 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS, 5256 RecordDecl *Record) { 5257 assert(Record && "expected a record!"); 5258 5259 // Mock up a declarator. 5260 Declarator Dc(DS, DeclaratorContext::TypeNameContext); 5261 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 5262 assert(TInfo && "couldn't build declarator info for anonymous struct"); 5263 5264 auto *ParentDecl = cast<RecordDecl>(CurContext); 5265 QualType RecTy = Context.getTypeDeclType(Record); 5266 5267 // Create a declaration for this anonymous struct. 5268 NamedDecl *Anon = 5269 FieldDecl::Create(Context, ParentDecl, DS.getBeginLoc(), DS.getBeginLoc(), 5270 /*IdentifierInfo=*/nullptr, RecTy, TInfo, 5271 /*BitWidth=*/nullptr, /*Mutable=*/false, 5272 /*InitStyle=*/ICIS_NoInit); 5273 Anon->setImplicit(); 5274 5275 // Add the anonymous struct object to the current context. 5276 CurContext->addDecl(Anon); 5277 5278 // Inject the members of the anonymous struct into the current 5279 // context and into the identifier resolver chain for name lookup 5280 // purposes. 5281 SmallVector<NamedDecl*, 2> Chain; 5282 Chain.push_back(Anon); 5283 5284 RecordDecl *RecordDef = Record->getDefinition(); 5285 if (RequireCompleteSizedType(Anon->getLocation(), RecTy, 5286 diag::err_field_incomplete_or_sizeless) || 5287 InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef, 5288 AS_none, Chain)) { 5289 Anon->setInvalidDecl(); 5290 ParentDecl->setInvalidDecl(); 5291 } 5292 5293 return Anon; 5294 } 5295 5296 /// GetNameForDeclarator - Determine the full declaration name for the 5297 /// given Declarator. 5298 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) { 5299 return GetNameFromUnqualifiedId(D.getName()); 5300 } 5301 5302 /// Retrieves the declaration name from a parsed unqualified-id. 5303 DeclarationNameInfo 5304 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) { 5305 DeclarationNameInfo NameInfo; 5306 NameInfo.setLoc(Name.StartLocation); 5307 5308 switch (Name.getKind()) { 5309 5310 case UnqualifiedIdKind::IK_ImplicitSelfParam: 5311 case UnqualifiedIdKind::IK_Identifier: 5312 NameInfo.setName(Name.Identifier); 5313 return NameInfo; 5314 5315 case UnqualifiedIdKind::IK_DeductionGuideName: { 5316 // C++ [temp.deduct.guide]p3: 5317 // The simple-template-id shall name a class template specialization. 5318 // The template-name shall be the same identifier as the template-name 5319 // of the simple-template-id. 5320 // These together intend to imply that the template-name shall name a 5321 // class template. 5322 // FIXME: template<typename T> struct X {}; 5323 // template<typename T> using Y = X<T>; 5324 // Y(int) -> Y<int>; 5325 // satisfies these rules but does not name a class template. 5326 TemplateName TN = Name.TemplateName.get().get(); 5327 auto *Template = TN.getAsTemplateDecl(); 5328 if (!Template || !isa<ClassTemplateDecl>(Template)) { 5329 Diag(Name.StartLocation, 5330 diag::err_deduction_guide_name_not_class_template) 5331 << (int)getTemplateNameKindForDiagnostics(TN) << TN; 5332 if (Template) 5333 Diag(Template->getLocation(), diag::note_template_decl_here); 5334 return DeclarationNameInfo(); 5335 } 5336 5337 NameInfo.setName( 5338 Context.DeclarationNames.getCXXDeductionGuideName(Template)); 5339 return NameInfo; 5340 } 5341 5342 case UnqualifiedIdKind::IK_OperatorFunctionId: 5343 NameInfo.setName(Context.DeclarationNames.getCXXOperatorName( 5344 Name.OperatorFunctionId.Operator)); 5345 NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc 5346 = Name.OperatorFunctionId.SymbolLocations[0]; 5347 NameInfo.getInfo().CXXOperatorName.EndOpNameLoc 5348 = Name.EndLocation.getRawEncoding(); 5349 return NameInfo; 5350 5351 case UnqualifiedIdKind::IK_LiteralOperatorId: 5352 NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName( 5353 Name.Identifier)); 5354 NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation); 5355 return NameInfo; 5356 5357 case UnqualifiedIdKind::IK_ConversionFunctionId: { 5358 TypeSourceInfo *TInfo; 5359 QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo); 5360 if (Ty.isNull()) 5361 return DeclarationNameInfo(); 5362 NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName( 5363 Context.getCanonicalType(Ty))); 5364 NameInfo.setNamedTypeInfo(TInfo); 5365 return NameInfo; 5366 } 5367 5368 case UnqualifiedIdKind::IK_ConstructorName: { 5369 TypeSourceInfo *TInfo; 5370 QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo); 5371 if (Ty.isNull()) 5372 return DeclarationNameInfo(); 5373 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 5374 Context.getCanonicalType(Ty))); 5375 NameInfo.setNamedTypeInfo(TInfo); 5376 return NameInfo; 5377 } 5378 5379 case UnqualifiedIdKind::IK_ConstructorTemplateId: { 5380 // In well-formed code, we can only have a constructor 5381 // template-id that refers to the current context, so go there 5382 // to find the actual type being constructed. 5383 CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext); 5384 if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name) 5385 return DeclarationNameInfo(); 5386 5387 // Determine the type of the class being constructed. 5388 QualType CurClassType = Context.getTypeDeclType(CurClass); 5389 5390 // FIXME: Check two things: that the template-id names the same type as 5391 // CurClassType, and that the template-id does not occur when the name 5392 // was qualified. 5393 5394 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 5395 Context.getCanonicalType(CurClassType))); 5396 // FIXME: should we retrieve TypeSourceInfo? 5397 NameInfo.setNamedTypeInfo(nullptr); 5398 return NameInfo; 5399 } 5400 5401 case UnqualifiedIdKind::IK_DestructorName: { 5402 TypeSourceInfo *TInfo; 5403 QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo); 5404 if (Ty.isNull()) 5405 return DeclarationNameInfo(); 5406 NameInfo.setName(Context.DeclarationNames.getCXXDestructorName( 5407 Context.getCanonicalType(Ty))); 5408 NameInfo.setNamedTypeInfo(TInfo); 5409 return NameInfo; 5410 } 5411 5412 case UnqualifiedIdKind::IK_TemplateId: { 5413 TemplateName TName = Name.TemplateId->Template.get(); 5414 SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc; 5415 return Context.getNameForTemplate(TName, TNameLoc); 5416 } 5417 5418 } // switch (Name.getKind()) 5419 5420 llvm_unreachable("Unknown name kind"); 5421 } 5422 5423 static QualType getCoreType(QualType Ty) { 5424 do { 5425 if (Ty->isPointerType() || Ty->isReferenceType()) 5426 Ty = Ty->getPointeeType(); 5427 else if (Ty->isArrayType()) 5428 Ty = Ty->castAsArrayTypeUnsafe()->getElementType(); 5429 else 5430 return Ty.withoutLocalFastQualifiers(); 5431 } while (true); 5432 } 5433 5434 /// hasSimilarParameters - Determine whether the C++ functions Declaration 5435 /// and Definition have "nearly" matching parameters. This heuristic is 5436 /// used to improve diagnostics in the case where an out-of-line function 5437 /// definition doesn't match any declaration within the class or namespace. 5438 /// Also sets Params to the list of indices to the parameters that differ 5439 /// between the declaration and the definition. If hasSimilarParameters 5440 /// returns true and Params is empty, then all of the parameters match. 5441 static bool hasSimilarParameters(ASTContext &Context, 5442 FunctionDecl *Declaration, 5443 FunctionDecl *Definition, 5444 SmallVectorImpl<unsigned> &Params) { 5445 Params.clear(); 5446 if (Declaration->param_size() != Definition->param_size()) 5447 return false; 5448 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) { 5449 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType(); 5450 QualType DefParamTy = Definition->getParamDecl(Idx)->getType(); 5451 5452 // The parameter types are identical 5453 if (Context.hasSameUnqualifiedType(DefParamTy, DeclParamTy)) 5454 continue; 5455 5456 QualType DeclParamBaseTy = getCoreType(DeclParamTy); 5457 QualType DefParamBaseTy = getCoreType(DefParamTy); 5458 const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier(); 5459 const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier(); 5460 5461 if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) || 5462 (DeclTyName && DeclTyName == DefTyName)) 5463 Params.push_back(Idx); 5464 else // The two parameters aren't even close 5465 return false; 5466 } 5467 5468 return true; 5469 } 5470 5471 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given 5472 /// declarator needs to be rebuilt in the current instantiation. 5473 /// Any bits of declarator which appear before the name are valid for 5474 /// consideration here. That's specifically the type in the decl spec 5475 /// and the base type in any member-pointer chunks. 5476 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D, 5477 DeclarationName Name) { 5478 // The types we specifically need to rebuild are: 5479 // - typenames, typeofs, and decltypes 5480 // - types which will become injected class names 5481 // Of course, we also need to rebuild any type referencing such a 5482 // type. It's safest to just say "dependent", but we call out a 5483 // few cases here. 5484 5485 DeclSpec &DS = D.getMutableDeclSpec(); 5486 switch (DS.getTypeSpecType()) { 5487 case DeclSpec::TST_typename: 5488 case DeclSpec::TST_typeofType: 5489 case DeclSpec::TST_underlyingType: 5490 case DeclSpec::TST_atomic: { 5491 // Grab the type from the parser. 5492 TypeSourceInfo *TSI = nullptr; 5493 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI); 5494 if (T.isNull() || !T->isDependentType()) break; 5495 5496 // Make sure there's a type source info. This isn't really much 5497 // of a waste; most dependent types should have type source info 5498 // attached already. 5499 if (!TSI) 5500 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc()); 5501 5502 // Rebuild the type in the current instantiation. 5503 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name); 5504 if (!TSI) return true; 5505 5506 // Store the new type back in the decl spec. 5507 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI); 5508 DS.UpdateTypeRep(LocType); 5509 break; 5510 } 5511 5512 case DeclSpec::TST_decltype: 5513 case DeclSpec::TST_typeofExpr: { 5514 Expr *E = DS.getRepAsExpr(); 5515 ExprResult Result = S.RebuildExprInCurrentInstantiation(E); 5516 if (Result.isInvalid()) return true; 5517 DS.UpdateExprRep(Result.get()); 5518 break; 5519 } 5520 5521 default: 5522 // Nothing to do for these decl specs. 5523 break; 5524 } 5525 5526 // It doesn't matter what order we do this in. 5527 for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) { 5528 DeclaratorChunk &Chunk = D.getTypeObject(I); 5529 5530 // The only type information in the declarator which can come 5531 // before the declaration name is the base type of a member 5532 // pointer. 5533 if (Chunk.Kind != DeclaratorChunk::MemberPointer) 5534 continue; 5535 5536 // Rebuild the scope specifier in-place. 5537 CXXScopeSpec &SS = Chunk.Mem.Scope(); 5538 if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS)) 5539 return true; 5540 } 5541 5542 return false; 5543 } 5544 5545 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) { 5546 D.setFunctionDefinitionKind(FDK_Declaration); 5547 Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg()); 5548 5549 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() && 5550 Dcl && Dcl->getDeclContext()->isFileContext()) 5551 Dcl->setTopLevelDeclInObjCContainer(); 5552 5553 if (getLangOpts().OpenCL) 5554 setCurrentOpenCLExtensionForDecl(Dcl); 5555 5556 return Dcl; 5557 } 5558 5559 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13: 5560 /// If T is the name of a class, then each of the following shall have a 5561 /// name different from T: 5562 /// - every static data member of class T; 5563 /// - every member function of class T 5564 /// - every member of class T that is itself a type; 5565 /// \returns true if the declaration name violates these rules. 5566 bool Sema::DiagnoseClassNameShadow(DeclContext *DC, 5567 DeclarationNameInfo NameInfo) { 5568 DeclarationName Name = NameInfo.getName(); 5569 5570 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC); 5571 while (Record && Record->isAnonymousStructOrUnion()) 5572 Record = dyn_cast<CXXRecordDecl>(Record->getParent()); 5573 if (Record && Record->getIdentifier() && Record->getDeclName() == Name) { 5574 Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name; 5575 return true; 5576 } 5577 5578 return false; 5579 } 5580 5581 /// Diagnose a declaration whose declarator-id has the given 5582 /// nested-name-specifier. 5583 /// 5584 /// \param SS The nested-name-specifier of the declarator-id. 5585 /// 5586 /// \param DC The declaration context to which the nested-name-specifier 5587 /// resolves. 5588 /// 5589 /// \param Name The name of the entity being declared. 5590 /// 5591 /// \param Loc The location of the name of the entity being declared. 5592 /// 5593 /// \param IsTemplateId Whether the name is a (simple-)template-id, and thus 5594 /// we're declaring an explicit / partial specialization / instantiation. 5595 /// 5596 /// \returns true if we cannot safely recover from this error, false otherwise. 5597 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC, 5598 DeclarationName Name, 5599 SourceLocation Loc, bool IsTemplateId) { 5600 DeclContext *Cur = CurContext; 5601 while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur)) 5602 Cur = Cur->getParent(); 5603 5604 // If the user provided a superfluous scope specifier that refers back to the 5605 // class in which the entity is already declared, diagnose and ignore it. 5606 // 5607 // class X { 5608 // void X::f(); 5609 // }; 5610 // 5611 // Note, it was once ill-formed to give redundant qualification in all 5612 // contexts, but that rule was removed by DR482. 5613 if (Cur->Equals(DC)) { 5614 if (Cur->isRecord()) { 5615 Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification 5616 : diag::err_member_extra_qualification) 5617 << Name << FixItHint::CreateRemoval(SS.getRange()); 5618 SS.clear(); 5619 } else { 5620 Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name; 5621 } 5622 return false; 5623 } 5624 5625 // Check whether the qualifying scope encloses the scope of the original 5626 // declaration. For a template-id, we perform the checks in 5627 // CheckTemplateSpecializationScope. 5628 if (!Cur->Encloses(DC) && !IsTemplateId) { 5629 if (Cur->isRecord()) 5630 Diag(Loc, diag::err_member_qualification) 5631 << Name << SS.getRange(); 5632 else if (isa<TranslationUnitDecl>(DC)) 5633 Diag(Loc, diag::err_invalid_declarator_global_scope) 5634 << Name << SS.getRange(); 5635 else if (isa<FunctionDecl>(Cur)) 5636 Diag(Loc, diag::err_invalid_declarator_in_function) 5637 << Name << SS.getRange(); 5638 else if (isa<BlockDecl>(Cur)) 5639 Diag(Loc, diag::err_invalid_declarator_in_block) 5640 << Name << SS.getRange(); 5641 else 5642 Diag(Loc, diag::err_invalid_declarator_scope) 5643 << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange(); 5644 5645 return true; 5646 } 5647 5648 if (Cur->isRecord()) { 5649 // Cannot qualify members within a class. 5650 Diag(Loc, diag::err_member_qualification) 5651 << Name << SS.getRange(); 5652 SS.clear(); 5653 5654 // C++ constructors and destructors with incorrect scopes can break 5655 // our AST invariants by having the wrong underlying types. If 5656 // that's the case, then drop this declaration entirely. 5657 if ((Name.getNameKind() == DeclarationName::CXXConstructorName || 5658 Name.getNameKind() == DeclarationName::CXXDestructorName) && 5659 !Context.hasSameType(Name.getCXXNameType(), 5660 Context.getTypeDeclType(cast<CXXRecordDecl>(Cur)))) 5661 return true; 5662 5663 return false; 5664 } 5665 5666 // C++11 [dcl.meaning]p1: 5667 // [...] "The nested-name-specifier of the qualified declarator-id shall 5668 // not begin with a decltype-specifer" 5669 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data()); 5670 while (SpecLoc.getPrefix()) 5671 SpecLoc = SpecLoc.getPrefix(); 5672 if (dyn_cast_or_null<DecltypeType>( 5673 SpecLoc.getNestedNameSpecifier()->getAsType())) 5674 Diag(Loc, diag::err_decltype_in_declarator) 5675 << SpecLoc.getTypeLoc().getSourceRange(); 5676 5677 return false; 5678 } 5679 5680 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D, 5681 MultiTemplateParamsArg TemplateParamLists) { 5682 // TODO: consider using NameInfo for diagnostic. 5683 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 5684 DeclarationName Name = NameInfo.getName(); 5685 5686 // All of these full declarators require an identifier. If it doesn't have 5687 // one, the ParsedFreeStandingDeclSpec action should be used. 5688 if (D.isDecompositionDeclarator()) { 5689 return ActOnDecompositionDeclarator(S, D, TemplateParamLists); 5690 } else if (!Name) { 5691 if (!D.isInvalidType()) // Reject this if we think it is valid. 5692 Diag(D.getDeclSpec().getBeginLoc(), diag::err_declarator_need_ident) 5693 << D.getDeclSpec().getSourceRange() << D.getSourceRange(); 5694 return nullptr; 5695 } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType)) 5696 return nullptr; 5697 5698 // The scope passed in may not be a decl scope. Zip up the scope tree until 5699 // we find one that is. 5700 while ((S->getFlags() & Scope::DeclScope) == 0 || 5701 (S->getFlags() & Scope::TemplateParamScope) != 0) 5702 S = S->getParent(); 5703 5704 DeclContext *DC = CurContext; 5705 if (D.getCXXScopeSpec().isInvalid()) 5706 D.setInvalidType(); 5707 else if (D.getCXXScopeSpec().isSet()) { 5708 if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(), 5709 UPPC_DeclarationQualifier)) 5710 return nullptr; 5711 5712 bool EnteringContext = !D.getDeclSpec().isFriendSpecified(); 5713 DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext); 5714 if (!DC || isa<EnumDecl>(DC)) { 5715 // If we could not compute the declaration context, it's because the 5716 // declaration context is dependent but does not refer to a class, 5717 // class template, or class template partial specialization. Complain 5718 // and return early, to avoid the coming semantic disaster. 5719 Diag(D.getIdentifierLoc(), 5720 diag::err_template_qualified_declarator_no_match) 5721 << D.getCXXScopeSpec().getScopeRep() 5722 << D.getCXXScopeSpec().getRange(); 5723 return nullptr; 5724 } 5725 bool IsDependentContext = DC->isDependentContext(); 5726 5727 if (!IsDependentContext && 5728 RequireCompleteDeclContext(D.getCXXScopeSpec(), DC)) 5729 return nullptr; 5730 5731 // If a class is incomplete, do not parse entities inside it. 5732 if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) { 5733 Diag(D.getIdentifierLoc(), 5734 diag::err_member_def_undefined_record) 5735 << Name << DC << D.getCXXScopeSpec().getRange(); 5736 return nullptr; 5737 } 5738 if (!D.getDeclSpec().isFriendSpecified()) { 5739 if (diagnoseQualifiedDeclaration( 5740 D.getCXXScopeSpec(), DC, Name, D.getIdentifierLoc(), 5741 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId)) { 5742 if (DC->isRecord()) 5743 return nullptr; 5744 5745 D.setInvalidType(); 5746 } 5747 } 5748 5749 // Check whether we need to rebuild the type of the given 5750 // declaration in the current instantiation. 5751 if (EnteringContext && IsDependentContext && 5752 TemplateParamLists.size() != 0) { 5753 ContextRAII SavedContext(*this, DC); 5754 if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name)) 5755 D.setInvalidType(); 5756 } 5757 } 5758 5759 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 5760 QualType R = TInfo->getType(); 5761 5762 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 5763 UPPC_DeclarationType)) 5764 D.setInvalidType(); 5765 5766 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 5767 forRedeclarationInCurContext()); 5768 5769 // See if this is a redefinition of a variable in the same scope. 5770 if (!D.getCXXScopeSpec().isSet()) { 5771 bool IsLinkageLookup = false; 5772 bool CreateBuiltins = false; 5773 5774 // If the declaration we're planning to build will be a function 5775 // or object with linkage, then look for another declaration with 5776 // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6). 5777 // 5778 // If the declaration we're planning to build will be declared with 5779 // external linkage in the translation unit, create any builtin with 5780 // the same name. 5781 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) 5782 /* Do nothing*/; 5783 else if (CurContext->isFunctionOrMethod() && 5784 (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern || 5785 R->isFunctionType())) { 5786 IsLinkageLookup = true; 5787 CreateBuiltins = 5788 CurContext->getEnclosingNamespaceContext()->isTranslationUnit(); 5789 } else if (CurContext->getRedeclContext()->isTranslationUnit() && 5790 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static) 5791 CreateBuiltins = true; 5792 5793 if (IsLinkageLookup) { 5794 Previous.clear(LookupRedeclarationWithLinkage); 5795 Previous.setRedeclarationKind(ForExternalRedeclaration); 5796 } 5797 5798 LookupName(Previous, S, CreateBuiltins); 5799 } else { // Something like "int foo::x;" 5800 LookupQualifiedName(Previous, DC); 5801 5802 // C++ [dcl.meaning]p1: 5803 // When the declarator-id is qualified, the declaration shall refer to a 5804 // previously declared member of the class or namespace to which the 5805 // qualifier refers (or, in the case of a namespace, of an element of the 5806 // inline namespace set of that namespace (7.3.1)) or to a specialization 5807 // thereof; [...] 5808 // 5809 // Note that we already checked the context above, and that we do not have 5810 // enough information to make sure that Previous contains the declaration 5811 // we want to match. For example, given: 5812 // 5813 // class X { 5814 // void f(); 5815 // void f(float); 5816 // }; 5817 // 5818 // void X::f(int) { } // ill-formed 5819 // 5820 // In this case, Previous will point to the overload set 5821 // containing the two f's declared in X, but neither of them 5822 // matches. 5823 5824 // C++ [dcl.meaning]p1: 5825 // [...] the member shall not merely have been introduced by a 5826 // using-declaration in the scope of the class or namespace nominated by 5827 // the nested-name-specifier of the declarator-id. 5828 RemoveUsingDecls(Previous); 5829 } 5830 5831 if (Previous.isSingleResult() && 5832 Previous.getFoundDecl()->isTemplateParameter()) { 5833 // Maybe we will complain about the shadowed template parameter. 5834 if (!D.isInvalidType()) 5835 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), 5836 Previous.getFoundDecl()); 5837 5838 // Just pretend that we didn't see the previous declaration. 5839 Previous.clear(); 5840 } 5841 5842 if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo)) 5843 // Forget that the previous declaration is the injected-class-name. 5844 Previous.clear(); 5845 5846 // In C++, the previous declaration we find might be a tag type 5847 // (class or enum). In this case, the new declaration will hide the 5848 // tag type. Note that this applies to functions, function templates, and 5849 // variables, but not to typedefs (C++ [dcl.typedef]p4) or variable templates. 5850 if (Previous.isSingleTagDecl() && 5851 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 5852 (TemplateParamLists.size() == 0 || R->isFunctionType())) 5853 Previous.clear(); 5854 5855 // Check that there are no default arguments other than in the parameters 5856 // of a function declaration (C++ only). 5857 if (getLangOpts().CPlusPlus) 5858 CheckExtraCXXDefaultArguments(D); 5859 5860 NamedDecl *New; 5861 5862 bool AddToScope = true; 5863 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { 5864 if (TemplateParamLists.size()) { 5865 Diag(D.getIdentifierLoc(), diag::err_template_typedef); 5866 return nullptr; 5867 } 5868 5869 New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous); 5870 } else if (R->isFunctionType()) { 5871 New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous, 5872 TemplateParamLists, 5873 AddToScope); 5874 } else { 5875 New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists, 5876 AddToScope); 5877 } 5878 5879 if (!New) 5880 return nullptr; 5881 5882 // If this has an identifier and is not a function template specialization, 5883 // add it to the scope stack. 5884 if (New->getDeclName() && AddToScope) 5885 PushOnScopeChains(New, S); 5886 5887 if (isInOpenMPDeclareTargetContext()) 5888 checkDeclIsAllowedInOpenMPTarget(nullptr, New); 5889 5890 return New; 5891 } 5892 5893 /// Helper method to turn variable array types into constant array 5894 /// types in certain situations which would otherwise be errors (for 5895 /// GCC compatibility). 5896 static QualType TryToFixInvalidVariablyModifiedType(QualType T, 5897 ASTContext &Context, 5898 bool &SizeIsNegative, 5899 llvm::APSInt &Oversized) { 5900 // This method tries to turn a variable array into a constant 5901 // array even when the size isn't an ICE. This is necessary 5902 // for compatibility with code that depends on gcc's buggy 5903 // constant expression folding, like struct {char x[(int)(char*)2];} 5904 SizeIsNegative = false; 5905 Oversized = 0; 5906 5907 if (T->isDependentType()) 5908 return QualType(); 5909 5910 QualifierCollector Qs; 5911 const Type *Ty = Qs.strip(T); 5912 5913 if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) { 5914 QualType Pointee = PTy->getPointeeType(); 5915 QualType FixedType = 5916 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative, 5917 Oversized); 5918 if (FixedType.isNull()) return FixedType; 5919 FixedType = Context.getPointerType(FixedType); 5920 return Qs.apply(Context, FixedType); 5921 } 5922 if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) { 5923 QualType Inner = PTy->getInnerType(); 5924 QualType FixedType = 5925 TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative, 5926 Oversized); 5927 if (FixedType.isNull()) return FixedType; 5928 FixedType = Context.getParenType(FixedType); 5929 return Qs.apply(Context, FixedType); 5930 } 5931 5932 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T); 5933 if (!VLATy) 5934 return QualType(); 5935 5936 QualType ElemTy = VLATy->getElementType(); 5937 if (ElemTy->isVariablyModifiedType()) { 5938 ElemTy = TryToFixInvalidVariablyModifiedType(ElemTy, Context, 5939 SizeIsNegative, Oversized); 5940 if (ElemTy.isNull()) 5941 return QualType(); 5942 } 5943 5944 Expr::EvalResult Result; 5945 if (!VLATy->getSizeExpr() || 5946 !VLATy->getSizeExpr()->EvaluateAsInt(Result, Context)) 5947 return QualType(); 5948 5949 llvm::APSInt Res = Result.Val.getInt(); 5950 5951 // Check whether the array size is negative. 5952 if (Res.isSigned() && Res.isNegative()) { 5953 SizeIsNegative = true; 5954 return QualType(); 5955 } 5956 5957 // Check whether the array is too large to be addressed. 5958 unsigned ActiveSizeBits = 5959 (!ElemTy->isDependentType() && !ElemTy->isVariablyModifiedType() && 5960 !ElemTy->isIncompleteType() && !ElemTy->isUndeducedType()) 5961 ? ConstantArrayType::getNumAddressingBits(Context, ElemTy, Res) 5962 : Res.getActiveBits(); 5963 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) { 5964 Oversized = Res; 5965 return QualType(); 5966 } 5967 5968 return Context.getConstantArrayType(ElemTy, Res, VLATy->getSizeExpr(), 5969 ArrayType::Normal, 0); 5970 } 5971 5972 static void 5973 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) { 5974 SrcTL = SrcTL.getUnqualifiedLoc(); 5975 DstTL = DstTL.getUnqualifiedLoc(); 5976 if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) { 5977 PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>(); 5978 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(), 5979 DstPTL.getPointeeLoc()); 5980 DstPTL.setStarLoc(SrcPTL.getStarLoc()); 5981 return; 5982 } 5983 if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) { 5984 ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>(); 5985 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(), 5986 DstPTL.getInnerLoc()); 5987 DstPTL.setLParenLoc(SrcPTL.getLParenLoc()); 5988 DstPTL.setRParenLoc(SrcPTL.getRParenLoc()); 5989 return; 5990 } 5991 ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>(); 5992 ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>(); 5993 TypeLoc SrcElemTL = SrcATL.getElementLoc(); 5994 TypeLoc DstElemTL = DstATL.getElementLoc(); 5995 if (VariableArrayTypeLoc SrcElemATL = 5996 SrcElemTL.getAs<VariableArrayTypeLoc>()) { 5997 ConstantArrayTypeLoc DstElemATL = DstElemTL.castAs<ConstantArrayTypeLoc>(); 5998 FixInvalidVariablyModifiedTypeLoc(SrcElemATL, DstElemATL); 5999 } else { 6000 DstElemTL.initializeFullCopy(SrcElemTL); 6001 } 6002 DstATL.setLBracketLoc(SrcATL.getLBracketLoc()); 6003 DstATL.setSizeExpr(SrcATL.getSizeExpr()); 6004 DstATL.setRBracketLoc(SrcATL.getRBracketLoc()); 6005 } 6006 6007 /// Helper method to turn variable array types into constant array 6008 /// types in certain situations which would otherwise be errors (for 6009 /// GCC compatibility). 6010 static TypeSourceInfo* 6011 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo, 6012 ASTContext &Context, 6013 bool &SizeIsNegative, 6014 llvm::APSInt &Oversized) { 6015 QualType FixedTy 6016 = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context, 6017 SizeIsNegative, Oversized); 6018 if (FixedTy.isNull()) 6019 return nullptr; 6020 TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy); 6021 FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(), 6022 FixedTInfo->getTypeLoc()); 6023 return FixedTInfo; 6024 } 6025 6026 /// Register the given locally-scoped extern "C" declaration so 6027 /// that it can be found later for redeclarations. We include any extern "C" 6028 /// declaration that is not visible in the translation unit here, not just 6029 /// function-scope declarations. 6030 void 6031 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) { 6032 if (!getLangOpts().CPlusPlus && 6033 ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit()) 6034 // Don't need to track declarations in the TU in C. 6035 return; 6036 6037 // Note that we have a locally-scoped external with this name. 6038 Context.getExternCContextDecl()->makeDeclVisibleInContext(ND); 6039 } 6040 6041 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) { 6042 // FIXME: We can have multiple results via __attribute__((overloadable)). 6043 auto Result = Context.getExternCContextDecl()->lookup(Name); 6044 return Result.empty() ? nullptr : *Result.begin(); 6045 } 6046 6047 /// Diagnose function specifiers on a declaration of an identifier that 6048 /// does not identify a function. 6049 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) { 6050 // FIXME: We should probably indicate the identifier in question to avoid 6051 // confusion for constructs like "virtual int a(), b;" 6052 if (DS.isVirtualSpecified()) 6053 Diag(DS.getVirtualSpecLoc(), 6054 diag::err_virtual_non_function); 6055 6056 if (DS.hasExplicitSpecifier()) 6057 Diag(DS.getExplicitSpecLoc(), 6058 diag::err_explicit_non_function); 6059 6060 if (DS.isNoreturnSpecified()) 6061 Diag(DS.getNoreturnSpecLoc(), 6062 diag::err_noreturn_non_function); 6063 } 6064 6065 NamedDecl* 6066 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, 6067 TypeSourceInfo *TInfo, LookupResult &Previous) { 6068 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1). 6069 if (D.getCXXScopeSpec().isSet()) { 6070 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator) 6071 << D.getCXXScopeSpec().getRange(); 6072 D.setInvalidType(); 6073 // Pretend we didn't see the scope specifier. 6074 DC = CurContext; 6075 Previous.clear(); 6076 } 6077 6078 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 6079 6080 if (D.getDeclSpec().isInlineSpecified()) 6081 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 6082 << getLangOpts().CPlusPlus17; 6083 if (D.getDeclSpec().hasConstexprSpecifier()) 6084 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr) 6085 << 1 << D.getDeclSpec().getConstexprSpecifier(); 6086 6087 if (D.getName().Kind != UnqualifiedIdKind::IK_Identifier) { 6088 if (D.getName().Kind == UnqualifiedIdKind::IK_DeductionGuideName) 6089 Diag(D.getName().StartLocation, 6090 diag::err_deduction_guide_invalid_specifier) 6091 << "typedef"; 6092 else 6093 Diag(D.getName().StartLocation, diag::err_typedef_not_identifier) 6094 << D.getName().getSourceRange(); 6095 return nullptr; 6096 } 6097 6098 TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo); 6099 if (!NewTD) return nullptr; 6100 6101 // Handle attributes prior to checking for duplicates in MergeVarDecl 6102 ProcessDeclAttributes(S, NewTD, D); 6103 6104 CheckTypedefForVariablyModifiedType(S, NewTD); 6105 6106 bool Redeclaration = D.isRedeclaration(); 6107 NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration); 6108 D.setRedeclaration(Redeclaration); 6109 return ND; 6110 } 6111 6112 void 6113 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) { 6114 // C99 6.7.7p2: If a typedef name specifies a variably modified type 6115 // then it shall have block scope. 6116 // Note that variably modified types must be fixed before merging the decl so 6117 // that redeclarations will match. 6118 TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo(); 6119 QualType T = TInfo->getType(); 6120 if (T->isVariablyModifiedType()) { 6121 setFunctionHasBranchProtectedScope(); 6122 6123 if (S->getFnParent() == nullptr) { 6124 bool SizeIsNegative; 6125 llvm::APSInt Oversized; 6126 TypeSourceInfo *FixedTInfo = 6127 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 6128 SizeIsNegative, 6129 Oversized); 6130 if (FixedTInfo) { 6131 Diag(NewTD->getLocation(), diag::ext_vla_folded_to_constant); 6132 NewTD->setTypeSourceInfo(FixedTInfo); 6133 } else { 6134 if (SizeIsNegative) 6135 Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size); 6136 else if (T->isVariableArrayType()) 6137 Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope); 6138 else if (Oversized.getBoolValue()) 6139 Diag(NewTD->getLocation(), diag::err_array_too_large) 6140 << Oversized.toString(10); 6141 else 6142 Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope); 6143 NewTD->setInvalidDecl(); 6144 } 6145 } 6146 } 6147 } 6148 6149 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which 6150 /// declares a typedef-name, either using the 'typedef' type specifier or via 6151 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'. 6152 NamedDecl* 6153 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD, 6154 LookupResult &Previous, bool &Redeclaration) { 6155 6156 // Find the shadowed declaration before filtering for scope. 6157 NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous); 6158 6159 // Merge the decl with the existing one if appropriate. If the decl is 6160 // in an outer scope, it isn't the same thing. 6161 FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false, 6162 /*AllowInlineNamespace*/false); 6163 filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous); 6164 if (!Previous.empty()) { 6165 Redeclaration = true; 6166 MergeTypedefNameDecl(S, NewTD, Previous); 6167 } else { 6168 inferGslPointerAttribute(NewTD); 6169 } 6170 6171 if (ShadowedDecl && !Redeclaration) 6172 CheckShadow(NewTD, ShadowedDecl, Previous); 6173 6174 // If this is the C FILE type, notify the AST context. 6175 if (IdentifierInfo *II = NewTD->getIdentifier()) 6176 if (!NewTD->isInvalidDecl() && 6177 NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 6178 if (II->isStr("FILE")) 6179 Context.setFILEDecl(NewTD); 6180 else if (II->isStr("jmp_buf")) 6181 Context.setjmp_bufDecl(NewTD); 6182 else if (II->isStr("sigjmp_buf")) 6183 Context.setsigjmp_bufDecl(NewTD); 6184 else if (II->isStr("ucontext_t")) 6185 Context.setucontext_tDecl(NewTD); 6186 } 6187 6188 return NewTD; 6189 } 6190 6191 /// Determines whether the given declaration is an out-of-scope 6192 /// previous declaration. 6193 /// 6194 /// This routine should be invoked when name lookup has found a 6195 /// previous declaration (PrevDecl) that is not in the scope where a 6196 /// new declaration by the same name is being introduced. If the new 6197 /// declaration occurs in a local scope, previous declarations with 6198 /// linkage may still be considered previous declarations (C99 6199 /// 6.2.2p4-5, C++ [basic.link]p6). 6200 /// 6201 /// \param PrevDecl the previous declaration found by name 6202 /// lookup 6203 /// 6204 /// \param DC the context in which the new declaration is being 6205 /// declared. 6206 /// 6207 /// \returns true if PrevDecl is an out-of-scope previous declaration 6208 /// for a new delcaration with the same name. 6209 static bool 6210 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC, 6211 ASTContext &Context) { 6212 if (!PrevDecl) 6213 return false; 6214 6215 if (!PrevDecl->hasLinkage()) 6216 return false; 6217 6218 if (Context.getLangOpts().CPlusPlus) { 6219 // C++ [basic.link]p6: 6220 // If there is a visible declaration of an entity with linkage 6221 // having the same name and type, ignoring entities declared 6222 // outside the innermost enclosing namespace scope, the block 6223 // scope declaration declares that same entity and receives the 6224 // linkage of the previous declaration. 6225 DeclContext *OuterContext = DC->getRedeclContext(); 6226 if (!OuterContext->isFunctionOrMethod()) 6227 // This rule only applies to block-scope declarations. 6228 return false; 6229 6230 DeclContext *PrevOuterContext = PrevDecl->getDeclContext(); 6231 if (PrevOuterContext->isRecord()) 6232 // We found a member function: ignore it. 6233 return false; 6234 6235 // Find the innermost enclosing namespace for the new and 6236 // previous declarations. 6237 OuterContext = OuterContext->getEnclosingNamespaceContext(); 6238 PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext(); 6239 6240 // The previous declaration is in a different namespace, so it 6241 // isn't the same function. 6242 if (!OuterContext->Equals(PrevOuterContext)) 6243 return false; 6244 } 6245 6246 return true; 6247 } 6248 6249 static void SetNestedNameSpecifier(Sema &S, DeclaratorDecl *DD, Declarator &D) { 6250 CXXScopeSpec &SS = D.getCXXScopeSpec(); 6251 if (!SS.isSet()) return; 6252 DD->setQualifierInfo(SS.getWithLocInContext(S.Context)); 6253 } 6254 6255 bool Sema::inferObjCARCLifetime(ValueDecl *decl) { 6256 QualType type = decl->getType(); 6257 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); 6258 if (lifetime == Qualifiers::OCL_Autoreleasing) { 6259 // Various kinds of declaration aren't allowed to be __autoreleasing. 6260 unsigned kind = -1U; 6261 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 6262 if (var->hasAttr<BlocksAttr>()) 6263 kind = 0; // __block 6264 else if (!var->hasLocalStorage()) 6265 kind = 1; // global 6266 } else if (isa<ObjCIvarDecl>(decl)) { 6267 kind = 3; // ivar 6268 } else if (isa<FieldDecl>(decl)) { 6269 kind = 2; // field 6270 } 6271 6272 if (kind != -1U) { 6273 Diag(decl->getLocation(), diag::err_arc_autoreleasing_var) 6274 << kind; 6275 } 6276 } else if (lifetime == Qualifiers::OCL_None) { 6277 // Try to infer lifetime. 6278 if (!type->isObjCLifetimeType()) 6279 return false; 6280 6281 lifetime = type->getObjCARCImplicitLifetime(); 6282 type = Context.getLifetimeQualifiedType(type, lifetime); 6283 decl->setType(type); 6284 } 6285 6286 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 6287 // Thread-local variables cannot have lifetime. 6288 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone && 6289 var->getTLSKind()) { 6290 Diag(var->getLocation(), diag::err_arc_thread_ownership) 6291 << var->getType(); 6292 return true; 6293 } 6294 } 6295 6296 return false; 6297 } 6298 6299 void Sema::deduceOpenCLAddressSpace(ValueDecl *Decl) { 6300 if (Decl->getType().hasAddressSpace()) 6301 return; 6302 if (Decl->getType()->isDependentType()) 6303 return; 6304 if (VarDecl *Var = dyn_cast<VarDecl>(Decl)) { 6305 QualType Type = Var->getType(); 6306 if (Type->isSamplerT() || Type->isVoidType()) 6307 return; 6308 LangAS ImplAS = LangAS::opencl_private; 6309 if ((getLangOpts().OpenCLCPlusPlus || getLangOpts().OpenCLVersion >= 200) && 6310 Var->hasGlobalStorage()) 6311 ImplAS = LangAS::opencl_global; 6312 // If the original type from a decayed type is an array type and that array 6313 // type has no address space yet, deduce it now. 6314 if (auto DT = dyn_cast<DecayedType>(Type)) { 6315 auto OrigTy = DT->getOriginalType(); 6316 if (!OrigTy.hasAddressSpace() && OrigTy->isArrayType()) { 6317 // Add the address space to the original array type and then propagate 6318 // that to the element type through `getAsArrayType`. 6319 OrigTy = Context.getAddrSpaceQualType(OrigTy, ImplAS); 6320 OrigTy = QualType(Context.getAsArrayType(OrigTy), 0); 6321 // Re-generate the decayed type. 6322 Type = Context.getDecayedType(OrigTy); 6323 } 6324 } 6325 Type = Context.getAddrSpaceQualType(Type, ImplAS); 6326 // Apply any qualifiers (including address space) from the array type to 6327 // the element type. This implements C99 6.7.3p8: "If the specification of 6328 // an array type includes any type qualifiers, the element type is so 6329 // qualified, not the array type." 6330 if (Type->isArrayType()) 6331 Type = QualType(Context.getAsArrayType(Type), 0); 6332 Decl->setType(Type); 6333 } 6334 } 6335 6336 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) { 6337 // Ensure that an auto decl is deduced otherwise the checks below might cache 6338 // the wrong linkage. 6339 assert(S.ParsingInitForAutoVars.count(&ND) == 0); 6340 6341 // 'weak' only applies to declarations with external linkage. 6342 if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) { 6343 if (!ND.isExternallyVisible()) { 6344 S.Diag(Attr->getLocation(), diag::err_attribute_weak_static); 6345 ND.dropAttr<WeakAttr>(); 6346 } 6347 } 6348 if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) { 6349 if (ND.isExternallyVisible()) { 6350 S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static); 6351 ND.dropAttr<WeakRefAttr>(); 6352 ND.dropAttr<AliasAttr>(); 6353 } 6354 } 6355 6356 if (auto *VD = dyn_cast<VarDecl>(&ND)) { 6357 if (VD->hasInit()) { 6358 if (const auto *Attr = VD->getAttr<AliasAttr>()) { 6359 assert(VD->isThisDeclarationADefinition() && 6360 !VD->isExternallyVisible() && "Broken AliasAttr handled late!"); 6361 S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0; 6362 VD->dropAttr<AliasAttr>(); 6363 } 6364 } 6365 } 6366 6367 // 'selectany' only applies to externally visible variable declarations. 6368 // It does not apply to functions. 6369 if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) { 6370 if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) { 6371 S.Diag(Attr->getLocation(), 6372 diag::err_attribute_selectany_non_extern_data); 6373 ND.dropAttr<SelectAnyAttr>(); 6374 } 6375 } 6376 6377 if (const InheritableAttr *Attr = getDLLAttr(&ND)) { 6378 auto *VD = dyn_cast<VarDecl>(&ND); 6379 bool IsAnonymousNS = false; 6380 bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft(); 6381 if (VD) { 6382 const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(VD->getDeclContext()); 6383 while (NS && !IsAnonymousNS) { 6384 IsAnonymousNS = NS->isAnonymousNamespace(); 6385 NS = dyn_cast<NamespaceDecl>(NS->getParent()); 6386 } 6387 } 6388 // dll attributes require external linkage. Static locals may have external 6389 // linkage but still cannot be explicitly imported or exported. 6390 // In Microsoft mode, a variable defined in anonymous namespace must have 6391 // external linkage in order to be exported. 6392 bool AnonNSInMicrosoftMode = IsAnonymousNS && IsMicrosoft; 6393 if ((ND.isExternallyVisible() && AnonNSInMicrosoftMode) || 6394 (!AnonNSInMicrosoftMode && 6395 (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())))) { 6396 S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern) 6397 << &ND << Attr; 6398 ND.setInvalidDecl(); 6399 } 6400 } 6401 6402 // Virtual functions cannot be marked as 'notail'. 6403 if (auto *Attr = ND.getAttr<NotTailCalledAttr>()) 6404 if (auto *MD = dyn_cast<CXXMethodDecl>(&ND)) 6405 if (MD->isVirtual()) { 6406 S.Diag(ND.getLocation(), 6407 diag::err_invalid_attribute_on_virtual_function) 6408 << Attr; 6409 ND.dropAttr<NotTailCalledAttr>(); 6410 } 6411 6412 // Check the attributes on the function type, if any. 6413 if (const auto *FD = dyn_cast<FunctionDecl>(&ND)) { 6414 // Don't declare this variable in the second operand of the for-statement; 6415 // GCC miscompiles that by ending its lifetime before evaluating the 6416 // third operand. See gcc.gnu.org/PR86769. 6417 AttributedTypeLoc ATL; 6418 for (TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc(); 6419 (ATL = TL.getAsAdjusted<AttributedTypeLoc>()); 6420 TL = ATL.getModifiedLoc()) { 6421 // The [[lifetimebound]] attribute can be applied to the implicit object 6422 // parameter of a non-static member function (other than a ctor or dtor) 6423 // by applying it to the function type. 6424 if (const auto *A = ATL.getAttrAs<LifetimeBoundAttr>()) { 6425 const auto *MD = dyn_cast<CXXMethodDecl>(FD); 6426 if (!MD || MD->isStatic()) { 6427 S.Diag(A->getLocation(), diag::err_lifetimebound_no_object_param) 6428 << !MD << A->getRange(); 6429 } else if (isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD)) { 6430 S.Diag(A->getLocation(), diag::err_lifetimebound_ctor_dtor) 6431 << isa<CXXDestructorDecl>(MD) << A->getRange(); 6432 } 6433 } 6434 } 6435 } 6436 } 6437 6438 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl, 6439 NamedDecl *NewDecl, 6440 bool IsSpecialization, 6441 bool IsDefinition) { 6442 if (OldDecl->isInvalidDecl() || NewDecl->isInvalidDecl()) 6443 return; 6444 6445 bool IsTemplate = false; 6446 if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) { 6447 OldDecl = OldTD->getTemplatedDecl(); 6448 IsTemplate = true; 6449 if (!IsSpecialization) 6450 IsDefinition = false; 6451 } 6452 if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) { 6453 NewDecl = NewTD->getTemplatedDecl(); 6454 IsTemplate = true; 6455 } 6456 6457 if (!OldDecl || !NewDecl) 6458 return; 6459 6460 const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>(); 6461 const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>(); 6462 const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>(); 6463 const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>(); 6464 6465 // dllimport and dllexport are inheritable attributes so we have to exclude 6466 // inherited attribute instances. 6467 bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) || 6468 (NewExportAttr && !NewExportAttr->isInherited()); 6469 6470 // A redeclaration is not allowed to add a dllimport or dllexport attribute, 6471 // the only exception being explicit specializations. 6472 // Implicitly generated declarations are also excluded for now because there 6473 // is no other way to switch these to use dllimport or dllexport. 6474 bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr; 6475 6476 if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) { 6477 // Allow with a warning for free functions and global variables. 6478 bool JustWarn = false; 6479 if (!OldDecl->isCXXClassMember()) { 6480 auto *VD = dyn_cast<VarDecl>(OldDecl); 6481 if (VD && !VD->getDescribedVarTemplate()) 6482 JustWarn = true; 6483 auto *FD = dyn_cast<FunctionDecl>(OldDecl); 6484 if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) 6485 JustWarn = true; 6486 } 6487 6488 // We cannot change a declaration that's been used because IR has already 6489 // been emitted. Dllimported functions will still work though (modulo 6490 // address equality) as they can use the thunk. 6491 if (OldDecl->isUsed()) 6492 if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr) 6493 JustWarn = false; 6494 6495 unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration 6496 : diag::err_attribute_dll_redeclaration; 6497 S.Diag(NewDecl->getLocation(), DiagID) 6498 << NewDecl 6499 << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr); 6500 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 6501 if (!JustWarn) { 6502 NewDecl->setInvalidDecl(); 6503 return; 6504 } 6505 } 6506 6507 // A redeclaration is not allowed to drop a dllimport attribute, the only 6508 // exceptions being inline function definitions (except for function 6509 // templates), local extern declarations, qualified friend declarations or 6510 // special MSVC extension: in the last case, the declaration is treated as if 6511 // it were marked dllexport. 6512 bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false; 6513 bool IsMicrosoft = 6514 S.Context.getTargetInfo().getCXXABI().isMicrosoft() || 6515 S.Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment(); 6516 if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) { 6517 // Ignore static data because out-of-line definitions are diagnosed 6518 // separately. 6519 IsStaticDataMember = VD->isStaticDataMember(); 6520 IsDefinition = VD->isThisDeclarationADefinition(S.Context) != 6521 VarDecl::DeclarationOnly; 6522 } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) { 6523 IsInline = FD->isInlined(); 6524 IsQualifiedFriend = FD->getQualifier() && 6525 FD->getFriendObjectKind() == Decl::FOK_Declared; 6526 } 6527 6528 if (OldImportAttr && !HasNewAttr && 6529 (!IsInline || (IsMicrosoft && IsTemplate)) && !IsStaticDataMember && 6530 !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) { 6531 if (IsMicrosoft && IsDefinition) { 6532 S.Diag(NewDecl->getLocation(), 6533 diag::warn_redeclaration_without_import_attribute) 6534 << NewDecl; 6535 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 6536 NewDecl->dropAttr<DLLImportAttr>(); 6537 NewDecl->addAttr( 6538 DLLExportAttr::CreateImplicit(S.Context, NewImportAttr->getRange())); 6539 } else { 6540 S.Diag(NewDecl->getLocation(), 6541 diag::warn_redeclaration_without_attribute_prev_attribute_ignored) 6542 << NewDecl << OldImportAttr; 6543 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 6544 S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute); 6545 OldDecl->dropAttr<DLLImportAttr>(); 6546 NewDecl->dropAttr<DLLImportAttr>(); 6547 } 6548 } else if (IsInline && OldImportAttr && !IsMicrosoft) { 6549 // In MinGW, seeing a function declared inline drops the dllimport 6550 // attribute. 6551 OldDecl->dropAttr<DLLImportAttr>(); 6552 NewDecl->dropAttr<DLLImportAttr>(); 6553 S.Diag(NewDecl->getLocation(), 6554 diag::warn_dllimport_dropped_from_inline_function) 6555 << NewDecl << OldImportAttr; 6556 } 6557 6558 // A specialization of a class template member function is processed here 6559 // since it's a redeclaration. If the parent class is dllexport, the 6560 // specialization inherits that attribute. This doesn't happen automatically 6561 // since the parent class isn't instantiated until later. 6562 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDecl)) { 6563 if (MD->getTemplatedKind() == FunctionDecl::TK_MemberSpecialization && 6564 !NewImportAttr && !NewExportAttr) { 6565 if (const DLLExportAttr *ParentExportAttr = 6566 MD->getParent()->getAttr<DLLExportAttr>()) { 6567 DLLExportAttr *NewAttr = ParentExportAttr->clone(S.Context); 6568 NewAttr->setInherited(true); 6569 NewDecl->addAttr(NewAttr); 6570 } 6571 } 6572 } 6573 } 6574 6575 /// Given that we are within the definition of the given function, 6576 /// will that definition behave like C99's 'inline', where the 6577 /// definition is discarded except for optimization purposes? 6578 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) { 6579 // Try to avoid calling GetGVALinkageForFunction. 6580 6581 // All cases of this require the 'inline' keyword. 6582 if (!FD->isInlined()) return false; 6583 6584 // This is only possible in C++ with the gnu_inline attribute. 6585 if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>()) 6586 return false; 6587 6588 // Okay, go ahead and call the relatively-more-expensive function. 6589 return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally; 6590 } 6591 6592 /// Determine whether a variable is extern "C" prior to attaching 6593 /// an initializer. We can't just call isExternC() here, because that 6594 /// will also compute and cache whether the declaration is externally 6595 /// visible, which might change when we attach the initializer. 6596 /// 6597 /// This can only be used if the declaration is known to not be a 6598 /// redeclaration of an internal linkage declaration. 6599 /// 6600 /// For instance: 6601 /// 6602 /// auto x = []{}; 6603 /// 6604 /// Attaching the initializer here makes this declaration not externally 6605 /// visible, because its type has internal linkage. 6606 /// 6607 /// FIXME: This is a hack. 6608 template<typename T> 6609 static bool isIncompleteDeclExternC(Sema &S, const T *D) { 6610 if (S.getLangOpts().CPlusPlus) { 6611 // In C++, the overloadable attribute negates the effects of extern "C". 6612 if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>()) 6613 return false; 6614 6615 // So do CUDA's host/device attributes. 6616 if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() || 6617 D->template hasAttr<CUDAHostAttr>())) 6618 return false; 6619 } 6620 return D->isExternC(); 6621 } 6622 6623 static bool shouldConsiderLinkage(const VarDecl *VD) { 6624 const DeclContext *DC = VD->getDeclContext()->getRedeclContext(); 6625 if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC) || 6626 isa<OMPDeclareMapperDecl>(DC)) 6627 return VD->hasExternalStorage(); 6628 if (DC->isFileContext()) 6629 return true; 6630 if (DC->isRecord()) 6631 return false; 6632 if (isa<RequiresExprBodyDecl>(DC)) 6633 return false; 6634 llvm_unreachable("Unexpected context"); 6635 } 6636 6637 static bool shouldConsiderLinkage(const FunctionDecl *FD) { 6638 const DeclContext *DC = FD->getDeclContext()->getRedeclContext(); 6639 if (DC->isFileContext() || DC->isFunctionOrMethod() || 6640 isa<OMPDeclareReductionDecl>(DC) || isa<OMPDeclareMapperDecl>(DC)) 6641 return true; 6642 if (DC->isRecord()) 6643 return false; 6644 llvm_unreachable("Unexpected context"); 6645 } 6646 6647 static bool hasParsedAttr(Scope *S, const Declarator &PD, 6648 ParsedAttr::Kind Kind) { 6649 // Check decl attributes on the DeclSpec. 6650 if (PD.getDeclSpec().getAttributes().hasAttribute(Kind)) 6651 return true; 6652 6653 // Walk the declarator structure, checking decl attributes that were in a type 6654 // position to the decl itself. 6655 for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) { 6656 if (PD.getTypeObject(I).getAttrs().hasAttribute(Kind)) 6657 return true; 6658 } 6659 6660 // Finally, check attributes on the decl itself. 6661 return PD.getAttributes().hasAttribute(Kind); 6662 } 6663 6664 /// Adjust the \c DeclContext for a function or variable that might be a 6665 /// function-local external declaration. 6666 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) { 6667 if (!DC->isFunctionOrMethod()) 6668 return false; 6669 6670 // If this is a local extern function or variable declared within a function 6671 // template, don't add it into the enclosing namespace scope until it is 6672 // instantiated; it might have a dependent type right now. 6673 if (DC->isDependentContext()) 6674 return true; 6675 6676 // C++11 [basic.link]p7: 6677 // When a block scope declaration of an entity with linkage is not found to 6678 // refer to some other declaration, then that entity is a member of the 6679 // innermost enclosing namespace. 6680 // 6681 // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a 6682 // semantically-enclosing namespace, not a lexically-enclosing one. 6683 while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC)) 6684 DC = DC->getParent(); 6685 return true; 6686 } 6687 6688 /// Returns true if given declaration has external C language linkage. 6689 static bool isDeclExternC(const Decl *D) { 6690 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 6691 return FD->isExternC(); 6692 if (const auto *VD = dyn_cast<VarDecl>(D)) 6693 return VD->isExternC(); 6694 6695 llvm_unreachable("Unknown type of decl!"); 6696 } 6697 /// Returns true if there hasn't been any invalid type diagnosed. 6698 static bool diagnoseOpenCLTypes(Scope *S, Sema &Se, Declarator &D, 6699 DeclContext *DC, QualType R) { 6700 // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument. 6701 // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function 6702 // argument. 6703 if (R->isImageType() || R->isPipeType()) { 6704 Se.Diag(D.getIdentifierLoc(), 6705 diag::err_opencl_type_can_only_be_used_as_function_parameter) 6706 << R; 6707 D.setInvalidType(); 6708 return false; 6709 } 6710 6711 // OpenCL v1.2 s6.9.r: 6712 // The event type cannot be used to declare a program scope variable. 6713 // OpenCL v2.0 s6.9.q: 6714 // The clk_event_t and reserve_id_t types cannot be declared in program 6715 // scope. 6716 if (NULL == S->getParent()) { 6717 if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) { 6718 Se.Diag(D.getIdentifierLoc(), 6719 diag::err_invalid_type_for_program_scope_var) 6720 << R; 6721 D.setInvalidType(); 6722 return false; 6723 } 6724 } 6725 6726 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed. 6727 QualType NR = R; 6728 while (NR->isPointerType()) { 6729 if (NR->isFunctionPointerType()) { 6730 Se.Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer); 6731 D.setInvalidType(); 6732 return false; 6733 } 6734 NR = NR->getPointeeType(); 6735 } 6736 6737 if (!Se.getOpenCLOptions().isEnabled("cl_khr_fp16")) { 6738 // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and 6739 // half array type (unless the cl_khr_fp16 extension is enabled). 6740 if (Se.Context.getBaseElementType(R)->isHalfType()) { 6741 Se.Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R; 6742 D.setInvalidType(); 6743 return false; 6744 } 6745 } 6746 6747 // OpenCL v1.2 s6.9.r: 6748 // The event type cannot be used with the __local, __constant and __global 6749 // address space qualifiers. 6750 if (R->isEventT()) { 6751 if (R.getAddressSpace() != LangAS::opencl_private) { 6752 Se.Diag(D.getBeginLoc(), diag::err_event_t_addr_space_qual); 6753 D.setInvalidType(); 6754 return false; 6755 } 6756 } 6757 6758 // C++ for OpenCL does not allow the thread_local storage qualifier. 6759 // OpenCL C does not support thread_local either, and 6760 // also reject all other thread storage class specifiers. 6761 DeclSpec::TSCS TSC = D.getDeclSpec().getThreadStorageClassSpec(); 6762 if (TSC != TSCS_unspecified) { 6763 bool IsCXX = Se.getLangOpts().OpenCLCPlusPlus; 6764 Se.Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6765 diag::err_opencl_unknown_type_specifier) 6766 << IsCXX << Se.getLangOpts().getOpenCLVersionTuple().getAsString() 6767 << DeclSpec::getSpecifierName(TSC) << 1; 6768 D.setInvalidType(); 6769 return false; 6770 } 6771 6772 if (R->isSamplerT()) { 6773 // OpenCL v1.2 s6.9.b p4: 6774 // The sampler type cannot be used with the __local and __global address 6775 // space qualifiers. 6776 if (R.getAddressSpace() == LangAS::opencl_local || 6777 R.getAddressSpace() == LangAS::opencl_global) { 6778 Se.Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace); 6779 D.setInvalidType(); 6780 } 6781 6782 // OpenCL v1.2 s6.12.14.1: 6783 // A global sampler must be declared with either the constant address 6784 // space qualifier or with the const qualifier. 6785 if (DC->isTranslationUnit() && 6786 !(R.getAddressSpace() == LangAS::opencl_constant || 6787 R.isConstQualified())) { 6788 Se.Diag(D.getIdentifierLoc(), diag::err_opencl_nonconst_global_sampler); 6789 D.setInvalidType(); 6790 } 6791 if (D.isInvalidType()) 6792 return false; 6793 } 6794 return true; 6795 } 6796 6797 NamedDecl *Sema::ActOnVariableDeclarator( 6798 Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo, 6799 LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists, 6800 bool &AddToScope, ArrayRef<BindingDecl *> Bindings) { 6801 QualType R = TInfo->getType(); 6802 DeclarationName Name = GetNameForDeclarator(D).getName(); 6803 6804 IdentifierInfo *II = Name.getAsIdentifierInfo(); 6805 6806 if (D.isDecompositionDeclarator()) { 6807 // Take the name of the first declarator as our name for diagnostic 6808 // purposes. 6809 auto &Decomp = D.getDecompositionDeclarator(); 6810 if (!Decomp.bindings().empty()) { 6811 II = Decomp.bindings()[0].Name; 6812 Name = II; 6813 } 6814 } else if (!II) { 6815 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) << Name; 6816 return nullptr; 6817 } 6818 6819 6820 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec(); 6821 StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec()); 6822 6823 // dllimport globals without explicit storage class are treated as extern. We 6824 // have to change the storage class this early to get the right DeclContext. 6825 if (SC == SC_None && !DC->isRecord() && 6826 hasParsedAttr(S, D, ParsedAttr::AT_DLLImport) && 6827 !hasParsedAttr(S, D, ParsedAttr::AT_DLLExport)) 6828 SC = SC_Extern; 6829 6830 DeclContext *OriginalDC = DC; 6831 bool IsLocalExternDecl = SC == SC_Extern && 6832 adjustContextForLocalExternDecl(DC); 6833 6834 if (SCSpec == DeclSpec::SCS_mutable) { 6835 // mutable can only appear on non-static class members, so it's always 6836 // an error here 6837 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember); 6838 D.setInvalidType(); 6839 SC = SC_None; 6840 } 6841 6842 if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register && 6843 !D.getAsmLabel() && !getSourceManager().isInSystemMacro( 6844 D.getDeclSpec().getStorageClassSpecLoc())) { 6845 // In C++11, the 'register' storage class specifier is deprecated. 6846 // Suppress the warning in system macros, it's used in macros in some 6847 // popular C system headers, such as in glibc's htonl() macro. 6848 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6849 getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class 6850 : diag::warn_deprecated_register) 6851 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6852 } 6853 6854 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 6855 6856 if (!DC->isRecord() && S->getFnParent() == nullptr) { 6857 // C99 6.9p2: The storage-class specifiers auto and register shall not 6858 // appear in the declaration specifiers in an external declaration. 6859 // Global Register+Asm is a GNU extension we support. 6860 if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) { 6861 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope); 6862 D.setInvalidType(); 6863 } 6864 } 6865 6866 bool IsMemberSpecialization = false; 6867 bool IsVariableTemplateSpecialization = false; 6868 bool IsPartialSpecialization = false; 6869 bool IsVariableTemplate = false; 6870 VarDecl *NewVD = nullptr; 6871 VarTemplateDecl *NewTemplate = nullptr; 6872 TemplateParameterList *TemplateParams = nullptr; 6873 if (!getLangOpts().CPlusPlus) { 6874 NewVD = VarDecl::Create(Context, DC, D.getBeginLoc(), D.getIdentifierLoc(), 6875 II, R, TInfo, SC); 6876 6877 if (R->getContainedDeducedType()) 6878 ParsingInitForAutoVars.insert(NewVD); 6879 6880 if (D.isInvalidType()) 6881 NewVD->setInvalidDecl(); 6882 6883 if (NewVD->getType().hasNonTrivialToPrimitiveDestructCUnion() && 6884 NewVD->hasLocalStorage()) 6885 checkNonTrivialCUnion(NewVD->getType(), NewVD->getLocation(), 6886 NTCUC_AutoVar, NTCUK_Destruct); 6887 } else { 6888 bool Invalid = false; 6889 6890 if (DC->isRecord() && !CurContext->isRecord()) { 6891 // This is an out-of-line definition of a static data member. 6892 switch (SC) { 6893 case SC_None: 6894 break; 6895 case SC_Static: 6896 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6897 diag::err_static_out_of_line) 6898 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6899 break; 6900 case SC_Auto: 6901 case SC_Register: 6902 case SC_Extern: 6903 // [dcl.stc] p2: The auto or register specifiers shall be applied only 6904 // to names of variables declared in a block or to function parameters. 6905 // [dcl.stc] p6: The extern specifier cannot be used in the declaration 6906 // of class members 6907 6908 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6909 diag::err_storage_class_for_static_member) 6910 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6911 break; 6912 case SC_PrivateExtern: 6913 llvm_unreachable("C storage class in c++!"); 6914 } 6915 } 6916 6917 if (SC == SC_Static && CurContext->isRecord()) { 6918 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) { 6919 // Walk up the enclosing DeclContexts to check for any that are 6920 // incompatible with static data members. 6921 const DeclContext *FunctionOrMethod = nullptr; 6922 const CXXRecordDecl *AnonStruct = nullptr; 6923 for (DeclContext *Ctxt = DC; Ctxt; Ctxt = Ctxt->getParent()) { 6924 if (Ctxt->isFunctionOrMethod()) { 6925 FunctionOrMethod = Ctxt; 6926 break; 6927 } 6928 const CXXRecordDecl *ParentDecl = dyn_cast<CXXRecordDecl>(Ctxt); 6929 if (ParentDecl && !ParentDecl->getDeclName()) { 6930 AnonStruct = ParentDecl; 6931 break; 6932 } 6933 } 6934 if (FunctionOrMethod) { 6935 // C++ [class.static.data]p5: A local class shall not have static data 6936 // members. 6937 Diag(D.getIdentifierLoc(), 6938 diag::err_static_data_member_not_allowed_in_local_class) 6939 << Name << RD->getDeclName() << RD->getTagKind(); 6940 } else if (AnonStruct) { 6941 // C++ [class.static.data]p4: Unnamed classes and classes contained 6942 // directly or indirectly within unnamed classes shall not contain 6943 // static data members. 6944 Diag(D.getIdentifierLoc(), 6945 diag::err_static_data_member_not_allowed_in_anon_struct) 6946 << Name << AnonStruct->getTagKind(); 6947 Invalid = true; 6948 } else if (RD->isUnion()) { 6949 // C++98 [class.union]p1: If a union contains a static data member, 6950 // the program is ill-formed. C++11 drops this restriction. 6951 Diag(D.getIdentifierLoc(), 6952 getLangOpts().CPlusPlus11 6953 ? diag::warn_cxx98_compat_static_data_member_in_union 6954 : diag::ext_static_data_member_in_union) << Name; 6955 } 6956 } 6957 } 6958 6959 // Match up the template parameter lists with the scope specifier, then 6960 // determine whether we have a template or a template specialization. 6961 bool InvalidScope = false; 6962 TemplateParams = MatchTemplateParametersToScopeSpecifier( 6963 D.getDeclSpec().getBeginLoc(), D.getIdentifierLoc(), 6964 D.getCXXScopeSpec(), 6965 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId 6966 ? D.getName().TemplateId 6967 : nullptr, 6968 TemplateParamLists, 6969 /*never a friend*/ false, IsMemberSpecialization, InvalidScope); 6970 Invalid |= InvalidScope; 6971 6972 if (TemplateParams) { 6973 if (!TemplateParams->size() && 6974 D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) { 6975 // There is an extraneous 'template<>' for this variable. Complain 6976 // about it, but allow the declaration of the variable. 6977 Diag(TemplateParams->getTemplateLoc(), 6978 diag::err_template_variable_noparams) 6979 << II 6980 << SourceRange(TemplateParams->getTemplateLoc(), 6981 TemplateParams->getRAngleLoc()); 6982 TemplateParams = nullptr; 6983 } else { 6984 // Check that we can declare a template here. 6985 if (CheckTemplateDeclScope(S, TemplateParams)) 6986 return nullptr; 6987 6988 if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) { 6989 // This is an explicit specialization or a partial specialization. 6990 IsVariableTemplateSpecialization = true; 6991 IsPartialSpecialization = TemplateParams->size() > 0; 6992 } else { // if (TemplateParams->size() > 0) 6993 // This is a template declaration. 6994 IsVariableTemplate = true; 6995 6996 // Only C++1y supports variable templates (N3651). 6997 Diag(D.getIdentifierLoc(), 6998 getLangOpts().CPlusPlus14 6999 ? diag::warn_cxx11_compat_variable_template 7000 : diag::ext_variable_template); 7001 } 7002 } 7003 } else { 7004 // Check that we can declare a member specialization here. 7005 if (!TemplateParamLists.empty() && IsMemberSpecialization && 7006 CheckTemplateDeclScope(S, TemplateParamLists.back())) 7007 return nullptr; 7008 assert((Invalid || 7009 D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) && 7010 "should have a 'template<>' for this decl"); 7011 } 7012 7013 if (IsVariableTemplateSpecialization) { 7014 SourceLocation TemplateKWLoc = 7015 TemplateParamLists.size() > 0 7016 ? TemplateParamLists[0]->getTemplateLoc() 7017 : SourceLocation(); 7018 DeclResult Res = ActOnVarTemplateSpecialization( 7019 S, D, TInfo, TemplateKWLoc, TemplateParams, SC, 7020 IsPartialSpecialization); 7021 if (Res.isInvalid()) 7022 return nullptr; 7023 NewVD = cast<VarDecl>(Res.get()); 7024 AddToScope = false; 7025 } else if (D.isDecompositionDeclarator()) { 7026 NewVD = DecompositionDecl::Create(Context, DC, D.getBeginLoc(), 7027 D.getIdentifierLoc(), R, TInfo, SC, 7028 Bindings); 7029 } else 7030 NewVD = VarDecl::Create(Context, DC, D.getBeginLoc(), 7031 D.getIdentifierLoc(), II, R, TInfo, SC); 7032 7033 // If this is supposed to be a variable template, create it as such. 7034 if (IsVariableTemplate) { 7035 NewTemplate = 7036 VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name, 7037 TemplateParams, NewVD); 7038 NewVD->setDescribedVarTemplate(NewTemplate); 7039 } 7040 7041 // If this decl has an auto type in need of deduction, make a note of the 7042 // Decl so we can diagnose uses of it in its own initializer. 7043 if (R->getContainedDeducedType()) 7044 ParsingInitForAutoVars.insert(NewVD); 7045 7046 if (D.isInvalidType() || Invalid) { 7047 NewVD->setInvalidDecl(); 7048 if (NewTemplate) 7049 NewTemplate->setInvalidDecl(); 7050 } 7051 7052 SetNestedNameSpecifier(*this, NewVD, D); 7053 7054 // If we have any template parameter lists that don't directly belong to 7055 // the variable (matching the scope specifier), store them. 7056 unsigned VDTemplateParamLists = TemplateParams ? 1 : 0; 7057 if (TemplateParamLists.size() > VDTemplateParamLists) 7058 NewVD->setTemplateParameterListsInfo( 7059 Context, TemplateParamLists.drop_back(VDTemplateParamLists)); 7060 } 7061 7062 if (D.getDeclSpec().isInlineSpecified()) { 7063 if (!getLangOpts().CPlusPlus) { 7064 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 7065 << 0; 7066 } else if (CurContext->isFunctionOrMethod()) { 7067 // 'inline' is not allowed on block scope variable declaration. 7068 Diag(D.getDeclSpec().getInlineSpecLoc(), 7069 diag::err_inline_declaration_block_scope) << Name 7070 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 7071 } else { 7072 Diag(D.getDeclSpec().getInlineSpecLoc(), 7073 getLangOpts().CPlusPlus17 ? diag::warn_cxx14_compat_inline_variable 7074 : diag::ext_inline_variable); 7075 NewVD->setInlineSpecified(); 7076 } 7077 } 7078 7079 // Set the lexical context. If the declarator has a C++ scope specifier, the 7080 // lexical context will be different from the semantic context. 7081 NewVD->setLexicalDeclContext(CurContext); 7082 if (NewTemplate) 7083 NewTemplate->setLexicalDeclContext(CurContext); 7084 7085 if (IsLocalExternDecl) { 7086 if (D.isDecompositionDeclarator()) 7087 for (auto *B : Bindings) 7088 B->setLocalExternDecl(); 7089 else 7090 NewVD->setLocalExternDecl(); 7091 } 7092 7093 bool EmitTLSUnsupportedError = false; 7094 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) { 7095 // C++11 [dcl.stc]p4: 7096 // When thread_local is applied to a variable of block scope the 7097 // storage-class-specifier static is implied if it does not appear 7098 // explicitly. 7099 // Core issue: 'static' is not implied if the variable is declared 7100 // 'extern'. 7101 if (NewVD->hasLocalStorage() && 7102 (SCSpec != DeclSpec::SCS_unspecified || 7103 TSCS != DeclSpec::TSCS_thread_local || 7104 !DC->isFunctionOrMethod())) 7105 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 7106 diag::err_thread_non_global) 7107 << DeclSpec::getSpecifierName(TSCS); 7108 else if (!Context.getTargetInfo().isTLSSupported()) { 7109 if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice || 7110 getLangOpts().SYCLIsDevice) { 7111 // Postpone error emission until we've collected attributes required to 7112 // figure out whether it's a host or device variable and whether the 7113 // error should be ignored. 7114 EmitTLSUnsupportedError = true; 7115 // We still need to mark the variable as TLS so it shows up in AST with 7116 // proper storage class for other tools to use even if we're not going 7117 // to emit any code for it. 7118 NewVD->setTSCSpec(TSCS); 7119 } else 7120 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 7121 diag::err_thread_unsupported); 7122 } else 7123 NewVD->setTSCSpec(TSCS); 7124 } 7125 7126 switch (D.getDeclSpec().getConstexprSpecifier()) { 7127 case CSK_unspecified: 7128 break; 7129 7130 case CSK_consteval: 7131 Diag(D.getDeclSpec().getConstexprSpecLoc(), 7132 diag::err_constexpr_wrong_decl_kind) 7133 << D.getDeclSpec().getConstexprSpecifier(); 7134 LLVM_FALLTHROUGH; 7135 7136 case CSK_constexpr: 7137 NewVD->setConstexpr(true); 7138 MaybeAddCUDAConstantAttr(NewVD); 7139 // C++1z [dcl.spec.constexpr]p1: 7140 // A static data member declared with the constexpr specifier is 7141 // implicitly an inline variable. 7142 if (NewVD->isStaticDataMember() && 7143 (getLangOpts().CPlusPlus17 || 7144 Context.getTargetInfo().getCXXABI().isMicrosoft())) 7145 NewVD->setImplicitlyInline(); 7146 break; 7147 7148 case CSK_constinit: 7149 if (!NewVD->hasGlobalStorage()) 7150 Diag(D.getDeclSpec().getConstexprSpecLoc(), 7151 diag::err_constinit_local_variable); 7152 else 7153 NewVD->addAttr(ConstInitAttr::Create( 7154 Context, D.getDeclSpec().getConstexprSpecLoc(), 7155 AttributeCommonInfo::AS_Keyword, ConstInitAttr::Keyword_constinit)); 7156 break; 7157 } 7158 7159 // C99 6.7.4p3 7160 // An inline definition of a function with external linkage shall 7161 // not contain a definition of a modifiable object with static or 7162 // thread storage duration... 7163 // We only apply this when the function is required to be defined 7164 // elsewhere, i.e. when the function is not 'extern inline'. Note 7165 // that a local variable with thread storage duration still has to 7166 // be marked 'static'. Also note that it's possible to get these 7167 // semantics in C++ using __attribute__((gnu_inline)). 7168 if (SC == SC_Static && S->getFnParent() != nullptr && 7169 !NewVD->getType().isConstQualified()) { 7170 FunctionDecl *CurFD = getCurFunctionDecl(); 7171 if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) { 7172 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 7173 diag::warn_static_local_in_extern_inline); 7174 MaybeSuggestAddingStaticToDecl(CurFD); 7175 } 7176 } 7177 7178 if (D.getDeclSpec().isModulePrivateSpecified()) { 7179 if (IsVariableTemplateSpecialization) 7180 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 7181 << (IsPartialSpecialization ? 1 : 0) 7182 << FixItHint::CreateRemoval( 7183 D.getDeclSpec().getModulePrivateSpecLoc()); 7184 else if (IsMemberSpecialization) 7185 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 7186 << 2 7187 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 7188 else if (NewVD->hasLocalStorage()) 7189 Diag(NewVD->getLocation(), diag::err_module_private_local) 7190 << 0 << NewVD 7191 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 7192 << FixItHint::CreateRemoval( 7193 D.getDeclSpec().getModulePrivateSpecLoc()); 7194 else { 7195 NewVD->setModulePrivate(); 7196 if (NewTemplate) 7197 NewTemplate->setModulePrivate(); 7198 for (auto *B : Bindings) 7199 B->setModulePrivate(); 7200 } 7201 } 7202 7203 if (getLangOpts().OpenCL) { 7204 7205 deduceOpenCLAddressSpace(NewVD); 7206 7207 diagnoseOpenCLTypes(S, *this, D, DC, NewVD->getType()); 7208 } 7209 7210 // Handle attributes prior to checking for duplicates in MergeVarDecl 7211 ProcessDeclAttributes(S, NewVD, D); 7212 7213 if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice || 7214 getLangOpts().SYCLIsDevice) { 7215 if (EmitTLSUnsupportedError && 7216 ((getLangOpts().CUDA && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) || 7217 (getLangOpts().OpenMPIsDevice && 7218 OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(NewVD)))) 7219 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 7220 diag::err_thread_unsupported); 7221 7222 if (EmitTLSUnsupportedError && 7223 (LangOpts.SYCLIsDevice || (LangOpts.OpenMP && LangOpts.OpenMPIsDevice))) 7224 targetDiag(D.getIdentifierLoc(), diag::err_thread_unsupported); 7225 // CUDA B.2.5: "__shared__ and __constant__ variables have implied static 7226 // storage [duration]." 7227 if (SC == SC_None && S->getFnParent() != nullptr && 7228 (NewVD->hasAttr<CUDASharedAttr>() || 7229 NewVD->hasAttr<CUDAConstantAttr>())) { 7230 NewVD->setStorageClass(SC_Static); 7231 } 7232 } 7233 7234 // Ensure that dllimport globals without explicit storage class are treated as 7235 // extern. The storage class is set above using parsed attributes. Now we can 7236 // check the VarDecl itself. 7237 assert(!NewVD->hasAttr<DLLImportAttr>() || 7238 NewVD->getAttr<DLLImportAttr>()->isInherited() || 7239 NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None); 7240 7241 // In auto-retain/release, infer strong retension for variables of 7242 // retainable type. 7243 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD)) 7244 NewVD->setInvalidDecl(); 7245 7246 // Handle GNU asm-label extension (encoded as an attribute). 7247 if (Expr *E = (Expr*)D.getAsmLabel()) { 7248 // The parser guarantees this is a string. 7249 StringLiteral *SE = cast<StringLiteral>(E); 7250 StringRef Label = SE->getString(); 7251 if (S->getFnParent() != nullptr) { 7252 switch (SC) { 7253 case SC_None: 7254 case SC_Auto: 7255 Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label; 7256 break; 7257 case SC_Register: 7258 // Local Named register 7259 if (!Context.getTargetInfo().isValidGCCRegisterName(Label) && 7260 DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) 7261 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 7262 break; 7263 case SC_Static: 7264 case SC_Extern: 7265 case SC_PrivateExtern: 7266 break; 7267 } 7268 } else if (SC == SC_Register) { 7269 // Global Named register 7270 if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) { 7271 const auto &TI = Context.getTargetInfo(); 7272 bool HasSizeMismatch; 7273 7274 if (!TI.isValidGCCRegisterName(Label)) 7275 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 7276 else if (!TI.validateGlobalRegisterVariable(Label, 7277 Context.getTypeSize(R), 7278 HasSizeMismatch)) 7279 Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label; 7280 else if (HasSizeMismatch) 7281 Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label; 7282 } 7283 7284 if (!R->isIntegralType(Context) && !R->isPointerType()) { 7285 Diag(D.getBeginLoc(), diag::err_asm_bad_register_type); 7286 NewVD->setInvalidDecl(true); 7287 } 7288 } 7289 7290 NewVD->addAttr(AsmLabelAttr::Create(Context, Label, 7291 /*IsLiteralLabel=*/true, 7292 SE->getStrTokenLoc(0))); 7293 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 7294 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 7295 ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier()); 7296 if (I != ExtnameUndeclaredIdentifiers.end()) { 7297 if (isDeclExternC(NewVD)) { 7298 NewVD->addAttr(I->second); 7299 ExtnameUndeclaredIdentifiers.erase(I); 7300 } else 7301 Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied) 7302 << /*Variable*/1 << NewVD; 7303 } 7304 } 7305 7306 // Find the shadowed declaration before filtering for scope. 7307 NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty() 7308 ? getShadowedDeclaration(NewVD, Previous) 7309 : nullptr; 7310 7311 // Don't consider existing declarations that are in a different 7312 // scope and are out-of-semantic-context declarations (if the new 7313 // declaration has linkage). 7314 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD), 7315 D.getCXXScopeSpec().isNotEmpty() || 7316 IsMemberSpecialization || 7317 IsVariableTemplateSpecialization); 7318 7319 // Check whether the previous declaration is in the same block scope. This 7320 // affects whether we merge types with it, per C++11 [dcl.array]p3. 7321 if (getLangOpts().CPlusPlus && 7322 NewVD->isLocalVarDecl() && NewVD->hasExternalStorage()) 7323 NewVD->setPreviousDeclInSameBlockScope( 7324 Previous.isSingleResult() && !Previous.isShadowed() && 7325 isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false)); 7326 7327 if (!getLangOpts().CPlusPlus) { 7328 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 7329 } else { 7330 // If this is an explicit specialization of a static data member, check it. 7331 if (IsMemberSpecialization && !NewVD->isInvalidDecl() && 7332 CheckMemberSpecialization(NewVD, Previous)) 7333 NewVD->setInvalidDecl(); 7334 7335 // Merge the decl with the existing one if appropriate. 7336 if (!Previous.empty()) { 7337 if (Previous.isSingleResult() && 7338 isa<FieldDecl>(Previous.getFoundDecl()) && 7339 D.getCXXScopeSpec().isSet()) { 7340 // The user tried to define a non-static data member 7341 // out-of-line (C++ [dcl.meaning]p1). 7342 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line) 7343 << D.getCXXScopeSpec().getRange(); 7344 Previous.clear(); 7345 NewVD->setInvalidDecl(); 7346 } 7347 } else if (D.getCXXScopeSpec().isSet()) { 7348 // No previous declaration in the qualifying scope. 7349 Diag(D.getIdentifierLoc(), diag::err_no_member) 7350 << Name << computeDeclContext(D.getCXXScopeSpec(), true) 7351 << D.getCXXScopeSpec().getRange(); 7352 NewVD->setInvalidDecl(); 7353 } 7354 7355 if (!IsVariableTemplateSpecialization) 7356 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 7357 7358 if (NewTemplate) { 7359 VarTemplateDecl *PrevVarTemplate = 7360 NewVD->getPreviousDecl() 7361 ? NewVD->getPreviousDecl()->getDescribedVarTemplate() 7362 : nullptr; 7363 7364 // Check the template parameter list of this declaration, possibly 7365 // merging in the template parameter list from the previous variable 7366 // template declaration. 7367 if (CheckTemplateParameterList( 7368 TemplateParams, 7369 PrevVarTemplate ? PrevVarTemplate->getTemplateParameters() 7370 : nullptr, 7371 (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() && 7372 DC->isDependentContext()) 7373 ? TPC_ClassTemplateMember 7374 : TPC_VarTemplate)) 7375 NewVD->setInvalidDecl(); 7376 7377 // If we are providing an explicit specialization of a static variable 7378 // template, make a note of that. 7379 if (PrevVarTemplate && 7380 PrevVarTemplate->getInstantiatedFromMemberTemplate()) 7381 PrevVarTemplate->setMemberSpecialization(); 7382 } 7383 } 7384 7385 // Diagnose shadowed variables iff this isn't a redeclaration. 7386 if (ShadowedDecl && !D.isRedeclaration()) 7387 CheckShadow(NewVD, ShadowedDecl, Previous); 7388 7389 ProcessPragmaWeak(S, NewVD); 7390 7391 // If this is the first declaration of an extern C variable, update 7392 // the map of such variables. 7393 if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() && 7394 isIncompleteDeclExternC(*this, NewVD)) 7395 RegisterLocallyScopedExternCDecl(NewVD, S); 7396 7397 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) { 7398 MangleNumberingContext *MCtx; 7399 Decl *ManglingContextDecl; 7400 std::tie(MCtx, ManglingContextDecl) = 7401 getCurrentMangleNumberContext(NewVD->getDeclContext()); 7402 if (MCtx) { 7403 Context.setManglingNumber( 7404 NewVD, MCtx->getManglingNumber( 7405 NewVD, getMSManglingNumber(getLangOpts(), S))); 7406 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD)); 7407 } 7408 } 7409 7410 // Special handling of variable named 'main'. 7411 if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") && 7412 NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() && 7413 !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) { 7414 7415 // C++ [basic.start.main]p3 7416 // A program that declares a variable main at global scope is ill-formed. 7417 if (getLangOpts().CPlusPlus) 7418 Diag(D.getBeginLoc(), diag::err_main_global_variable); 7419 7420 // In C, and external-linkage variable named main results in undefined 7421 // behavior. 7422 else if (NewVD->hasExternalFormalLinkage()) 7423 Diag(D.getBeginLoc(), diag::warn_main_redefined); 7424 } 7425 7426 if (D.isRedeclaration() && !Previous.empty()) { 7427 NamedDecl *Prev = Previous.getRepresentativeDecl(); 7428 checkDLLAttributeRedeclaration(*this, Prev, NewVD, IsMemberSpecialization, 7429 D.isFunctionDefinition()); 7430 } 7431 7432 if (NewTemplate) { 7433 if (NewVD->isInvalidDecl()) 7434 NewTemplate->setInvalidDecl(); 7435 ActOnDocumentableDecl(NewTemplate); 7436 return NewTemplate; 7437 } 7438 7439 if (IsMemberSpecialization && !NewVD->isInvalidDecl()) 7440 CompleteMemberSpecialization(NewVD, Previous); 7441 7442 return NewVD; 7443 } 7444 7445 /// Enum describing the %select options in diag::warn_decl_shadow. 7446 enum ShadowedDeclKind { 7447 SDK_Local, 7448 SDK_Global, 7449 SDK_StaticMember, 7450 SDK_Field, 7451 SDK_Typedef, 7452 SDK_Using 7453 }; 7454 7455 /// Determine what kind of declaration we're shadowing. 7456 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl, 7457 const DeclContext *OldDC) { 7458 if (isa<TypeAliasDecl>(ShadowedDecl)) 7459 return SDK_Using; 7460 else if (isa<TypedefDecl>(ShadowedDecl)) 7461 return SDK_Typedef; 7462 else if (isa<RecordDecl>(OldDC)) 7463 return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember; 7464 7465 return OldDC->isFileContext() ? SDK_Global : SDK_Local; 7466 } 7467 7468 /// Return the location of the capture if the given lambda captures the given 7469 /// variable \p VD, or an invalid source location otherwise. 7470 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI, 7471 const VarDecl *VD) { 7472 for (const Capture &Capture : LSI->Captures) { 7473 if (Capture.isVariableCapture() && Capture.getVariable() == VD) 7474 return Capture.getLocation(); 7475 } 7476 return SourceLocation(); 7477 } 7478 7479 static bool shouldWarnIfShadowedDecl(const DiagnosticsEngine &Diags, 7480 const LookupResult &R) { 7481 // Only diagnose if we're shadowing an unambiguous field or variable. 7482 if (R.getResultKind() != LookupResult::Found) 7483 return false; 7484 7485 // Return false if warning is ignored. 7486 return !Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc()); 7487 } 7488 7489 /// Return the declaration shadowed by the given variable \p D, or null 7490 /// if it doesn't shadow any declaration or shadowing warnings are disabled. 7491 NamedDecl *Sema::getShadowedDeclaration(const VarDecl *D, 7492 const LookupResult &R) { 7493 if (!shouldWarnIfShadowedDecl(Diags, R)) 7494 return nullptr; 7495 7496 // Don't diagnose declarations at file scope. 7497 if (D->hasGlobalStorage()) 7498 return nullptr; 7499 7500 NamedDecl *ShadowedDecl = R.getFoundDecl(); 7501 return isa<VarDecl>(ShadowedDecl) || isa<FieldDecl>(ShadowedDecl) 7502 ? ShadowedDecl 7503 : nullptr; 7504 } 7505 7506 /// Return the declaration shadowed by the given typedef \p D, or null 7507 /// if it doesn't shadow any declaration or shadowing warnings are disabled. 7508 NamedDecl *Sema::getShadowedDeclaration(const TypedefNameDecl *D, 7509 const LookupResult &R) { 7510 // Don't warn if typedef declaration is part of a class 7511 if (D->getDeclContext()->isRecord()) 7512 return nullptr; 7513 7514 if (!shouldWarnIfShadowedDecl(Diags, R)) 7515 return nullptr; 7516 7517 NamedDecl *ShadowedDecl = R.getFoundDecl(); 7518 return isa<TypedefNameDecl>(ShadowedDecl) ? ShadowedDecl : nullptr; 7519 } 7520 7521 /// Diagnose variable or built-in function shadowing. Implements 7522 /// -Wshadow. 7523 /// 7524 /// This method is called whenever a VarDecl is added to a "useful" 7525 /// scope. 7526 /// 7527 /// \param ShadowedDecl the declaration that is shadowed by the given variable 7528 /// \param R the lookup of the name 7529 /// 7530 void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl, 7531 const LookupResult &R) { 7532 DeclContext *NewDC = D->getDeclContext(); 7533 7534 if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) { 7535 // Fields are not shadowed by variables in C++ static methods. 7536 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC)) 7537 if (MD->isStatic()) 7538 return; 7539 7540 // Fields shadowed by constructor parameters are a special case. Usually 7541 // the constructor initializes the field with the parameter. 7542 if (isa<CXXConstructorDecl>(NewDC)) 7543 if (const auto PVD = dyn_cast<ParmVarDecl>(D)) { 7544 // Remember that this was shadowed so we can either warn about its 7545 // modification or its existence depending on warning settings. 7546 ShadowingDecls.insert({PVD->getCanonicalDecl(), FD}); 7547 return; 7548 } 7549 } 7550 7551 if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl)) 7552 if (shadowedVar->isExternC()) { 7553 // For shadowing external vars, make sure that we point to the global 7554 // declaration, not a locally scoped extern declaration. 7555 for (auto I : shadowedVar->redecls()) 7556 if (I->isFileVarDecl()) { 7557 ShadowedDecl = I; 7558 break; 7559 } 7560 } 7561 7562 DeclContext *OldDC = ShadowedDecl->getDeclContext()->getRedeclContext(); 7563 7564 unsigned WarningDiag = diag::warn_decl_shadow; 7565 SourceLocation CaptureLoc; 7566 if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC && 7567 isa<CXXMethodDecl>(NewDC)) { 7568 if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) { 7569 if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) { 7570 if (RD->getLambdaCaptureDefault() == LCD_None) { 7571 // Try to avoid warnings for lambdas with an explicit capture list. 7572 const auto *LSI = cast<LambdaScopeInfo>(getCurFunction()); 7573 // Warn only when the lambda captures the shadowed decl explicitly. 7574 CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl)); 7575 if (CaptureLoc.isInvalid()) 7576 WarningDiag = diag::warn_decl_shadow_uncaptured_local; 7577 } else { 7578 // Remember that this was shadowed so we can avoid the warning if the 7579 // shadowed decl isn't captured and the warning settings allow it. 7580 cast<LambdaScopeInfo>(getCurFunction()) 7581 ->ShadowingDecls.push_back( 7582 {cast<VarDecl>(D), cast<VarDecl>(ShadowedDecl)}); 7583 return; 7584 } 7585 } 7586 7587 if (cast<VarDecl>(ShadowedDecl)->hasLocalStorage()) { 7588 // A variable can't shadow a local variable in an enclosing scope, if 7589 // they are separated by a non-capturing declaration context. 7590 for (DeclContext *ParentDC = NewDC; 7591 ParentDC && !ParentDC->Equals(OldDC); 7592 ParentDC = getLambdaAwareParentOfDeclContext(ParentDC)) { 7593 // Only block literals, captured statements, and lambda expressions 7594 // can capture; other scopes don't. 7595 if (!isa<BlockDecl>(ParentDC) && !isa<CapturedDecl>(ParentDC) && 7596 !isLambdaCallOperator(ParentDC)) { 7597 return; 7598 } 7599 } 7600 } 7601 } 7602 } 7603 7604 // Only warn about certain kinds of shadowing for class members. 7605 if (NewDC && NewDC->isRecord()) { 7606 // In particular, don't warn about shadowing non-class members. 7607 if (!OldDC->isRecord()) 7608 return; 7609 7610 // TODO: should we warn about static data members shadowing 7611 // static data members from base classes? 7612 7613 // TODO: don't diagnose for inaccessible shadowed members. 7614 // This is hard to do perfectly because we might friend the 7615 // shadowing context, but that's just a false negative. 7616 } 7617 7618 7619 DeclarationName Name = R.getLookupName(); 7620 7621 // Emit warning and note. 7622 if (getSourceManager().isInSystemMacro(R.getNameLoc())) 7623 return; 7624 ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC); 7625 Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC; 7626 if (!CaptureLoc.isInvalid()) 7627 Diag(CaptureLoc, diag::note_var_explicitly_captured_here) 7628 << Name << /*explicitly*/ 1; 7629 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 7630 } 7631 7632 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD 7633 /// when these variables are captured by the lambda. 7634 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) { 7635 for (const auto &Shadow : LSI->ShadowingDecls) { 7636 const VarDecl *ShadowedDecl = Shadow.ShadowedDecl; 7637 // Try to avoid the warning when the shadowed decl isn't captured. 7638 SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl); 7639 const DeclContext *OldDC = ShadowedDecl->getDeclContext(); 7640 Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid() 7641 ? diag::warn_decl_shadow_uncaptured_local 7642 : diag::warn_decl_shadow) 7643 << Shadow.VD->getDeclName() 7644 << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC; 7645 if (!CaptureLoc.isInvalid()) 7646 Diag(CaptureLoc, diag::note_var_explicitly_captured_here) 7647 << Shadow.VD->getDeclName() << /*explicitly*/ 0; 7648 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 7649 } 7650 } 7651 7652 /// Check -Wshadow without the advantage of a previous lookup. 7653 void Sema::CheckShadow(Scope *S, VarDecl *D) { 7654 if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation())) 7655 return; 7656 7657 LookupResult R(*this, D->getDeclName(), D->getLocation(), 7658 Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration); 7659 LookupName(R, S); 7660 if (NamedDecl *ShadowedDecl = getShadowedDeclaration(D, R)) 7661 CheckShadow(D, ShadowedDecl, R); 7662 } 7663 7664 /// Check if 'E', which is an expression that is about to be modified, refers 7665 /// to a constructor parameter that shadows a field. 7666 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) { 7667 // Quickly ignore expressions that can't be shadowing ctor parameters. 7668 if (!getLangOpts().CPlusPlus || ShadowingDecls.empty()) 7669 return; 7670 E = E->IgnoreParenImpCasts(); 7671 auto *DRE = dyn_cast<DeclRefExpr>(E); 7672 if (!DRE) 7673 return; 7674 const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl()); 7675 auto I = ShadowingDecls.find(D); 7676 if (I == ShadowingDecls.end()) 7677 return; 7678 const NamedDecl *ShadowedDecl = I->second; 7679 const DeclContext *OldDC = ShadowedDecl->getDeclContext(); 7680 Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC; 7681 Diag(D->getLocation(), diag::note_var_declared_here) << D; 7682 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 7683 7684 // Avoid issuing multiple warnings about the same decl. 7685 ShadowingDecls.erase(I); 7686 } 7687 7688 /// Check for conflict between this global or extern "C" declaration and 7689 /// previous global or extern "C" declarations. This is only used in C++. 7690 template<typename T> 7691 static bool checkGlobalOrExternCConflict( 7692 Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) { 7693 assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\""); 7694 NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName()); 7695 7696 if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) { 7697 // The common case: this global doesn't conflict with any extern "C" 7698 // declaration. 7699 return false; 7700 } 7701 7702 if (Prev) { 7703 if (!IsGlobal || isIncompleteDeclExternC(S, ND)) { 7704 // Both the old and new declarations have C language linkage. This is a 7705 // redeclaration. 7706 Previous.clear(); 7707 Previous.addDecl(Prev); 7708 return true; 7709 } 7710 7711 // This is a global, non-extern "C" declaration, and there is a previous 7712 // non-global extern "C" declaration. Diagnose if this is a variable 7713 // declaration. 7714 if (!isa<VarDecl>(ND)) 7715 return false; 7716 } else { 7717 // The declaration is extern "C". Check for any declaration in the 7718 // translation unit which might conflict. 7719 if (IsGlobal) { 7720 // We have already performed the lookup into the translation unit. 7721 IsGlobal = false; 7722 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7723 I != E; ++I) { 7724 if (isa<VarDecl>(*I)) { 7725 Prev = *I; 7726 break; 7727 } 7728 } 7729 } else { 7730 DeclContext::lookup_result R = 7731 S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName()); 7732 for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end(); 7733 I != E; ++I) { 7734 if (isa<VarDecl>(*I)) { 7735 Prev = *I; 7736 break; 7737 } 7738 // FIXME: If we have any other entity with this name in global scope, 7739 // the declaration is ill-formed, but that is a defect: it breaks the 7740 // 'stat' hack, for instance. Only variables can have mangled name 7741 // clashes with extern "C" declarations, so only they deserve a 7742 // diagnostic. 7743 } 7744 } 7745 7746 if (!Prev) 7747 return false; 7748 } 7749 7750 // Use the first declaration's location to ensure we point at something which 7751 // is lexically inside an extern "C" linkage-spec. 7752 assert(Prev && "should have found a previous declaration to diagnose"); 7753 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev)) 7754 Prev = FD->getFirstDecl(); 7755 else 7756 Prev = cast<VarDecl>(Prev)->getFirstDecl(); 7757 7758 S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict) 7759 << IsGlobal << ND; 7760 S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict) 7761 << IsGlobal; 7762 return false; 7763 } 7764 7765 /// Apply special rules for handling extern "C" declarations. Returns \c true 7766 /// if we have found that this is a redeclaration of some prior entity. 7767 /// 7768 /// Per C++ [dcl.link]p6: 7769 /// Two declarations [for a function or variable] with C language linkage 7770 /// with the same name that appear in different scopes refer to the same 7771 /// [entity]. An entity with C language linkage shall not be declared with 7772 /// the same name as an entity in global scope. 7773 template<typename T> 7774 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND, 7775 LookupResult &Previous) { 7776 if (!S.getLangOpts().CPlusPlus) { 7777 // In C, when declaring a global variable, look for a corresponding 'extern' 7778 // variable declared in function scope. We don't need this in C++, because 7779 // we find local extern decls in the surrounding file-scope DeclContext. 7780 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 7781 if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) { 7782 Previous.clear(); 7783 Previous.addDecl(Prev); 7784 return true; 7785 } 7786 } 7787 return false; 7788 } 7789 7790 // A declaration in the translation unit can conflict with an extern "C" 7791 // declaration. 7792 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) 7793 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous); 7794 7795 // An extern "C" declaration can conflict with a declaration in the 7796 // translation unit or can be a redeclaration of an extern "C" declaration 7797 // in another scope. 7798 if (isIncompleteDeclExternC(S,ND)) 7799 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous); 7800 7801 // Neither global nor extern "C": nothing to do. 7802 return false; 7803 } 7804 7805 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) { 7806 // If the decl is already known invalid, don't check it. 7807 if (NewVD->isInvalidDecl()) 7808 return; 7809 7810 QualType T = NewVD->getType(); 7811 7812 // Defer checking an 'auto' type until its initializer is attached. 7813 if (T->isUndeducedType()) 7814 return; 7815 7816 if (NewVD->hasAttrs()) 7817 CheckAlignasUnderalignment(NewVD); 7818 7819 if (T->isObjCObjectType()) { 7820 Diag(NewVD->getLocation(), diag::err_statically_allocated_object) 7821 << FixItHint::CreateInsertion(NewVD->getLocation(), "*"); 7822 T = Context.getObjCObjectPointerType(T); 7823 NewVD->setType(T); 7824 } 7825 7826 // Emit an error if an address space was applied to decl with local storage. 7827 // This includes arrays of objects with address space qualifiers, but not 7828 // automatic variables that point to other address spaces. 7829 // ISO/IEC TR 18037 S5.1.2 7830 if (!getLangOpts().OpenCL && NewVD->hasLocalStorage() && 7831 T.getAddressSpace() != LangAS::Default) { 7832 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 0; 7833 NewVD->setInvalidDecl(); 7834 return; 7835 } 7836 7837 // OpenCL v1.2 s6.8 - The static qualifier is valid only in program 7838 // scope. 7839 if (getLangOpts().OpenCLVersion == 120 && 7840 !getOpenCLOptions().isEnabled("cl_clang_storage_class_specifiers") && 7841 NewVD->isStaticLocal()) { 7842 Diag(NewVD->getLocation(), diag::err_static_function_scope); 7843 NewVD->setInvalidDecl(); 7844 return; 7845 } 7846 7847 if (getLangOpts().OpenCL) { 7848 // OpenCL v2.0 s6.12.5 - The __block storage type is not supported. 7849 if (NewVD->hasAttr<BlocksAttr>()) { 7850 Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type); 7851 return; 7852 } 7853 7854 if (T->isBlockPointerType()) { 7855 // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and 7856 // can't use 'extern' storage class. 7857 if (!T.isConstQualified()) { 7858 Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration) 7859 << 0 /*const*/; 7860 NewVD->setInvalidDecl(); 7861 return; 7862 } 7863 if (NewVD->hasExternalStorage()) { 7864 Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration); 7865 NewVD->setInvalidDecl(); 7866 return; 7867 } 7868 } 7869 // OpenCL C v1.2 s6.5 - All program scope variables must be declared in the 7870 // __constant address space. 7871 // OpenCL C v2.0 s6.5.1 - Variables defined at program scope and static 7872 // variables inside a function can also be declared in the global 7873 // address space. 7874 // C++ for OpenCL inherits rule from OpenCL C v2.0. 7875 // FIXME: Adding local AS in C++ for OpenCL might make sense. 7876 if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() || 7877 NewVD->hasExternalStorage()) { 7878 if (!T->isSamplerT() && 7879 !T->isDependentType() && 7880 !(T.getAddressSpace() == LangAS::opencl_constant || 7881 (T.getAddressSpace() == LangAS::opencl_global && 7882 (getLangOpts().OpenCLVersion == 200 || 7883 getLangOpts().OpenCLCPlusPlus)))) { 7884 int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1; 7885 if (getLangOpts().OpenCLVersion == 200 || getLangOpts().OpenCLCPlusPlus) 7886 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space) 7887 << Scope << "global or constant"; 7888 else 7889 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space) 7890 << Scope << "constant"; 7891 NewVD->setInvalidDecl(); 7892 return; 7893 } 7894 } else { 7895 if (T.getAddressSpace() == LangAS::opencl_global) { 7896 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 7897 << 1 /*is any function*/ << "global"; 7898 NewVD->setInvalidDecl(); 7899 return; 7900 } 7901 if (T.getAddressSpace() == LangAS::opencl_constant || 7902 T.getAddressSpace() == LangAS::opencl_local) { 7903 FunctionDecl *FD = getCurFunctionDecl(); 7904 // OpenCL v1.1 s6.5.2 and s6.5.3: no local or constant variables 7905 // in functions. 7906 if (FD && !FD->hasAttr<OpenCLKernelAttr>()) { 7907 if (T.getAddressSpace() == LangAS::opencl_constant) 7908 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 7909 << 0 /*non-kernel only*/ << "constant"; 7910 else 7911 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 7912 << 0 /*non-kernel only*/ << "local"; 7913 NewVD->setInvalidDecl(); 7914 return; 7915 } 7916 // OpenCL v2.0 s6.5.2 and s6.5.3: local and constant variables must be 7917 // in the outermost scope of a kernel function. 7918 if (FD && FD->hasAttr<OpenCLKernelAttr>()) { 7919 if (!getCurScope()->isFunctionScope()) { 7920 if (T.getAddressSpace() == LangAS::opencl_constant) 7921 Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope) 7922 << "constant"; 7923 else 7924 Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope) 7925 << "local"; 7926 NewVD->setInvalidDecl(); 7927 return; 7928 } 7929 } 7930 } else if (T.getAddressSpace() != LangAS::opencl_private && 7931 // If we are parsing a template we didn't deduce an addr 7932 // space yet. 7933 T.getAddressSpace() != LangAS::Default) { 7934 // Do not allow other address spaces on automatic variable. 7935 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 1; 7936 NewVD->setInvalidDecl(); 7937 return; 7938 } 7939 } 7940 } 7941 7942 if (NewVD->hasLocalStorage() && T.isObjCGCWeak() 7943 && !NewVD->hasAttr<BlocksAttr>()) { 7944 if (getLangOpts().getGC() != LangOptions::NonGC) 7945 Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local); 7946 else { 7947 assert(!getLangOpts().ObjCAutoRefCount); 7948 Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local); 7949 } 7950 } 7951 7952 bool isVM = T->isVariablyModifiedType(); 7953 if (isVM || NewVD->hasAttr<CleanupAttr>() || 7954 NewVD->hasAttr<BlocksAttr>()) 7955 setFunctionHasBranchProtectedScope(); 7956 7957 if ((isVM && NewVD->hasLinkage()) || 7958 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { 7959 bool SizeIsNegative; 7960 llvm::APSInt Oversized; 7961 TypeSourceInfo *FixedTInfo = TryToFixInvalidVariablyModifiedTypeSourceInfo( 7962 NewVD->getTypeSourceInfo(), Context, SizeIsNegative, Oversized); 7963 QualType FixedT; 7964 if (FixedTInfo && T == NewVD->getTypeSourceInfo()->getType()) 7965 FixedT = FixedTInfo->getType(); 7966 else if (FixedTInfo) { 7967 // Type and type-as-written are canonically different. We need to fix up 7968 // both types separately. 7969 FixedT = TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative, 7970 Oversized); 7971 } 7972 if ((!FixedTInfo || FixedT.isNull()) && T->isVariableArrayType()) { 7973 const VariableArrayType *VAT = Context.getAsVariableArrayType(T); 7974 // FIXME: This won't give the correct result for 7975 // int a[10][n]; 7976 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange(); 7977 7978 if (NewVD->isFileVarDecl()) 7979 Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope) 7980 << SizeRange; 7981 else if (NewVD->isStaticLocal()) 7982 Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage) 7983 << SizeRange; 7984 else 7985 Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage) 7986 << SizeRange; 7987 NewVD->setInvalidDecl(); 7988 return; 7989 } 7990 7991 if (!FixedTInfo) { 7992 if (NewVD->isFileVarDecl()) 7993 Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope); 7994 else 7995 Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage); 7996 NewVD->setInvalidDecl(); 7997 return; 7998 } 7999 8000 Diag(NewVD->getLocation(), diag::ext_vla_folded_to_constant); 8001 NewVD->setType(FixedT); 8002 NewVD->setTypeSourceInfo(FixedTInfo); 8003 } 8004 8005 if (T->isVoidType()) { 8006 // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names 8007 // of objects and functions. 8008 if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) { 8009 Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type) 8010 << T; 8011 NewVD->setInvalidDecl(); 8012 return; 8013 } 8014 } 8015 8016 if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) { 8017 Diag(NewVD->getLocation(), diag::err_block_on_nonlocal); 8018 NewVD->setInvalidDecl(); 8019 return; 8020 } 8021 8022 if (!NewVD->hasLocalStorage() && T->isSizelessType()) { 8023 Diag(NewVD->getLocation(), diag::err_sizeless_nonlocal) << T; 8024 NewVD->setInvalidDecl(); 8025 return; 8026 } 8027 8028 if (isVM && NewVD->hasAttr<BlocksAttr>()) { 8029 Diag(NewVD->getLocation(), diag::err_block_on_vm); 8030 NewVD->setInvalidDecl(); 8031 return; 8032 } 8033 8034 if (NewVD->isConstexpr() && !T->isDependentType() && 8035 RequireLiteralType(NewVD->getLocation(), T, 8036 diag::err_constexpr_var_non_literal)) { 8037 NewVD->setInvalidDecl(); 8038 return; 8039 } 8040 } 8041 8042 /// Perform semantic checking on a newly-created variable 8043 /// declaration. 8044 /// 8045 /// This routine performs all of the type-checking required for a 8046 /// variable declaration once it has been built. It is used both to 8047 /// check variables after they have been parsed and their declarators 8048 /// have been translated into a declaration, and to check variables 8049 /// that have been instantiated from a template. 8050 /// 8051 /// Sets NewVD->isInvalidDecl() if an error was encountered. 8052 /// 8053 /// Returns true if the variable declaration is a redeclaration. 8054 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) { 8055 CheckVariableDeclarationType(NewVD); 8056 8057 // If the decl is already known invalid, don't check it. 8058 if (NewVD->isInvalidDecl()) 8059 return false; 8060 8061 // If we did not find anything by this name, look for a non-visible 8062 // extern "C" declaration with the same name. 8063 if (Previous.empty() && 8064 checkForConflictWithNonVisibleExternC(*this, NewVD, Previous)) 8065 Previous.setShadowed(); 8066 8067 if (!Previous.empty()) { 8068 MergeVarDecl(NewVD, Previous); 8069 return true; 8070 } 8071 return false; 8072 } 8073 8074 namespace { 8075 struct FindOverriddenMethod { 8076 Sema *S; 8077 CXXMethodDecl *Method; 8078 8079 /// Member lookup function that determines whether a given C++ 8080 /// method overrides a method in a base class, to be used with 8081 /// CXXRecordDecl::lookupInBases(). 8082 bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 8083 RecordDecl *BaseRecord = 8084 Specifier->getType()->castAs<RecordType>()->getDecl(); 8085 8086 DeclarationName Name = Method->getDeclName(); 8087 8088 // FIXME: Do we care about other names here too? 8089 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 8090 // We really want to find the base class destructor here. 8091 QualType T = S->Context.getTypeDeclType(BaseRecord); 8092 CanQualType CT = S->Context.getCanonicalType(T); 8093 8094 Name = S->Context.DeclarationNames.getCXXDestructorName(CT); 8095 } 8096 8097 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); 8098 Path.Decls = Path.Decls.slice(1)) { 8099 NamedDecl *D = Path.Decls.front(); 8100 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 8101 if (MD->isVirtual() && 8102 !S->IsOverload( 8103 Method, MD, /*UseMemberUsingDeclRules=*/false, 8104 /*ConsiderCudaAttrs=*/true, 8105 // C++2a [class.virtual]p2 does not consider requires clauses 8106 // when overriding. 8107 /*ConsiderRequiresClauses=*/false)) 8108 return true; 8109 } 8110 } 8111 8112 return false; 8113 } 8114 }; 8115 } // end anonymous namespace 8116 8117 /// AddOverriddenMethods - See if a method overrides any in the base classes, 8118 /// and if so, check that it's a valid override and remember it. 8119 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) { 8120 // Look for methods in base classes that this method might override. 8121 CXXBasePaths Paths; 8122 FindOverriddenMethod FOM; 8123 FOM.Method = MD; 8124 FOM.S = this; 8125 bool AddedAny = false; 8126 if (DC->lookupInBases(FOM, Paths)) { 8127 for (auto *I : Paths.found_decls()) { 8128 if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) { 8129 MD->addOverriddenMethod(OldMD->getCanonicalDecl()); 8130 if (!CheckOverridingFunctionReturnType(MD, OldMD) && 8131 !CheckOverridingFunctionAttributes(MD, OldMD) && 8132 !CheckOverridingFunctionExceptionSpec(MD, OldMD) && 8133 !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) { 8134 AddedAny = true; 8135 } 8136 } 8137 } 8138 } 8139 8140 return AddedAny; 8141 } 8142 8143 namespace { 8144 // Struct for holding all of the extra arguments needed by 8145 // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator. 8146 struct ActOnFDArgs { 8147 Scope *S; 8148 Declarator &D; 8149 MultiTemplateParamsArg TemplateParamLists; 8150 bool AddToScope; 8151 }; 8152 } // end anonymous namespace 8153 8154 namespace { 8155 8156 // Callback to only accept typo corrections that have a non-zero edit distance. 8157 // Also only accept corrections that have the same parent decl. 8158 class DifferentNameValidatorCCC final : public CorrectionCandidateCallback { 8159 public: 8160 DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD, 8161 CXXRecordDecl *Parent) 8162 : Context(Context), OriginalFD(TypoFD), 8163 ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {} 8164 8165 bool ValidateCandidate(const TypoCorrection &candidate) override { 8166 if (candidate.getEditDistance() == 0) 8167 return false; 8168 8169 SmallVector<unsigned, 1> MismatchedParams; 8170 for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(), 8171 CDeclEnd = candidate.end(); 8172 CDecl != CDeclEnd; ++CDecl) { 8173 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 8174 8175 if (FD && !FD->hasBody() && 8176 hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) { 8177 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 8178 CXXRecordDecl *Parent = MD->getParent(); 8179 if (Parent && Parent->getCanonicalDecl() == ExpectedParent) 8180 return true; 8181 } else if (!ExpectedParent) { 8182 return true; 8183 } 8184 } 8185 } 8186 8187 return false; 8188 } 8189 8190 std::unique_ptr<CorrectionCandidateCallback> clone() override { 8191 return std::make_unique<DifferentNameValidatorCCC>(*this); 8192 } 8193 8194 private: 8195 ASTContext &Context; 8196 FunctionDecl *OriginalFD; 8197 CXXRecordDecl *ExpectedParent; 8198 }; 8199 8200 } // end anonymous namespace 8201 8202 void Sema::MarkTypoCorrectedFunctionDefinition(const NamedDecl *F) { 8203 TypoCorrectedFunctionDefinitions.insert(F); 8204 } 8205 8206 /// Generate diagnostics for an invalid function redeclaration. 8207 /// 8208 /// This routine handles generating the diagnostic messages for an invalid 8209 /// function redeclaration, including finding possible similar declarations 8210 /// or performing typo correction if there are no previous declarations with 8211 /// the same name. 8212 /// 8213 /// Returns a NamedDecl iff typo correction was performed and substituting in 8214 /// the new declaration name does not cause new errors. 8215 static NamedDecl *DiagnoseInvalidRedeclaration( 8216 Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD, 8217 ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) { 8218 DeclarationName Name = NewFD->getDeclName(); 8219 DeclContext *NewDC = NewFD->getDeclContext(); 8220 SmallVector<unsigned, 1> MismatchedParams; 8221 SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches; 8222 TypoCorrection Correction; 8223 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); 8224 unsigned DiagMsg = 8225 IsLocalFriend ? diag::err_no_matching_local_friend : 8226 NewFD->getFriendObjectKind() ? diag::err_qualified_friend_no_match : 8227 diag::err_member_decl_does_not_match; 8228 LookupResult Prev(SemaRef, Name, NewFD->getLocation(), 8229 IsLocalFriend ? Sema::LookupLocalFriendName 8230 : Sema::LookupOrdinaryName, 8231 Sema::ForVisibleRedeclaration); 8232 8233 NewFD->setInvalidDecl(); 8234 if (IsLocalFriend) 8235 SemaRef.LookupName(Prev, S); 8236 else 8237 SemaRef.LookupQualifiedName(Prev, NewDC); 8238 assert(!Prev.isAmbiguous() && 8239 "Cannot have an ambiguity in previous-declaration lookup"); 8240 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 8241 DifferentNameValidatorCCC CCC(SemaRef.Context, NewFD, 8242 MD ? MD->getParent() : nullptr); 8243 if (!Prev.empty()) { 8244 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end(); 8245 Func != FuncEnd; ++Func) { 8246 FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func); 8247 if (FD && 8248 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 8249 // Add 1 to the index so that 0 can mean the mismatch didn't 8250 // involve a parameter 8251 unsigned ParamNum = 8252 MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1; 8253 NearMatches.push_back(std::make_pair(FD, ParamNum)); 8254 } 8255 } 8256 // If the qualified name lookup yielded nothing, try typo correction 8257 } else if ((Correction = SemaRef.CorrectTypo( 8258 Prev.getLookupNameInfo(), Prev.getLookupKind(), S, 8259 &ExtraArgs.D.getCXXScopeSpec(), CCC, Sema::CTK_ErrorRecovery, 8260 IsLocalFriend ? nullptr : NewDC))) { 8261 // Set up everything for the call to ActOnFunctionDeclarator 8262 ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(), 8263 ExtraArgs.D.getIdentifierLoc()); 8264 Previous.clear(); 8265 Previous.setLookupName(Correction.getCorrection()); 8266 for (TypoCorrection::decl_iterator CDecl = Correction.begin(), 8267 CDeclEnd = Correction.end(); 8268 CDecl != CDeclEnd; ++CDecl) { 8269 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 8270 if (FD && !FD->hasBody() && 8271 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 8272 Previous.addDecl(FD); 8273 } 8274 } 8275 bool wasRedeclaration = ExtraArgs.D.isRedeclaration(); 8276 8277 NamedDecl *Result; 8278 // Retry building the function declaration with the new previous 8279 // declarations, and with errors suppressed. 8280 { 8281 // Trap errors. 8282 Sema::SFINAETrap Trap(SemaRef); 8283 8284 // TODO: Refactor ActOnFunctionDeclarator so that we can call only the 8285 // pieces need to verify the typo-corrected C++ declaration and hopefully 8286 // eliminate the need for the parameter pack ExtraArgs. 8287 Result = SemaRef.ActOnFunctionDeclarator( 8288 ExtraArgs.S, ExtraArgs.D, 8289 Correction.getCorrectionDecl()->getDeclContext(), 8290 NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists, 8291 ExtraArgs.AddToScope); 8292 8293 if (Trap.hasErrorOccurred()) 8294 Result = nullptr; 8295 } 8296 8297 if (Result) { 8298 // Determine which correction we picked. 8299 Decl *Canonical = Result->getCanonicalDecl(); 8300 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 8301 I != E; ++I) 8302 if ((*I)->getCanonicalDecl() == Canonical) 8303 Correction.setCorrectionDecl(*I); 8304 8305 // Let Sema know about the correction. 8306 SemaRef.MarkTypoCorrectedFunctionDefinition(Result); 8307 SemaRef.diagnoseTypo( 8308 Correction, 8309 SemaRef.PDiag(IsLocalFriend 8310 ? diag::err_no_matching_local_friend_suggest 8311 : diag::err_member_decl_does_not_match_suggest) 8312 << Name << NewDC << IsDefinition); 8313 return Result; 8314 } 8315 8316 // Pretend the typo correction never occurred 8317 ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(), 8318 ExtraArgs.D.getIdentifierLoc()); 8319 ExtraArgs.D.setRedeclaration(wasRedeclaration); 8320 Previous.clear(); 8321 Previous.setLookupName(Name); 8322 } 8323 8324 SemaRef.Diag(NewFD->getLocation(), DiagMsg) 8325 << Name << NewDC << IsDefinition << NewFD->getLocation(); 8326 8327 bool NewFDisConst = false; 8328 if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD)) 8329 NewFDisConst = NewMD->isConst(); 8330 8331 for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator 8332 NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end(); 8333 NearMatch != NearMatchEnd; ++NearMatch) { 8334 FunctionDecl *FD = NearMatch->first; 8335 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 8336 bool FDisConst = MD && MD->isConst(); 8337 bool IsMember = MD || !IsLocalFriend; 8338 8339 // FIXME: These notes are poorly worded for the local friend case. 8340 if (unsigned Idx = NearMatch->second) { 8341 ParmVarDecl *FDParam = FD->getParamDecl(Idx-1); 8342 SourceLocation Loc = FDParam->getTypeSpecStartLoc(); 8343 if (Loc.isInvalid()) Loc = FD->getLocation(); 8344 SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match 8345 : diag::note_local_decl_close_param_match) 8346 << Idx << FDParam->getType() 8347 << NewFD->getParamDecl(Idx - 1)->getType(); 8348 } else if (FDisConst != NewFDisConst) { 8349 SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match) 8350 << NewFDisConst << FD->getSourceRange().getEnd(); 8351 } else 8352 SemaRef.Diag(FD->getLocation(), 8353 IsMember ? diag::note_member_def_close_match 8354 : diag::note_local_decl_close_match); 8355 } 8356 return nullptr; 8357 } 8358 8359 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) { 8360 switch (D.getDeclSpec().getStorageClassSpec()) { 8361 default: llvm_unreachable("Unknown storage class!"); 8362 case DeclSpec::SCS_auto: 8363 case DeclSpec::SCS_register: 8364 case DeclSpec::SCS_mutable: 8365 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 8366 diag::err_typecheck_sclass_func); 8367 D.getMutableDeclSpec().ClearStorageClassSpecs(); 8368 D.setInvalidType(); 8369 break; 8370 case DeclSpec::SCS_unspecified: break; 8371 case DeclSpec::SCS_extern: 8372 if (D.getDeclSpec().isExternInLinkageSpec()) 8373 return SC_None; 8374 return SC_Extern; 8375 case DeclSpec::SCS_static: { 8376 if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) { 8377 // C99 6.7.1p5: 8378 // The declaration of an identifier for a function that has 8379 // block scope shall have no explicit storage-class specifier 8380 // other than extern 8381 // See also (C++ [dcl.stc]p4). 8382 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 8383 diag::err_static_block_func); 8384 break; 8385 } else 8386 return SC_Static; 8387 } 8388 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 8389 } 8390 8391 // No explicit storage class has already been returned 8392 return SC_None; 8393 } 8394 8395 static FunctionDecl *CreateNewFunctionDecl(Sema &SemaRef, Declarator &D, 8396 DeclContext *DC, QualType &R, 8397 TypeSourceInfo *TInfo, 8398 StorageClass SC, 8399 bool &IsVirtualOkay) { 8400 DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D); 8401 DeclarationName Name = NameInfo.getName(); 8402 8403 FunctionDecl *NewFD = nullptr; 8404 bool isInline = D.getDeclSpec().isInlineSpecified(); 8405 8406 if (!SemaRef.getLangOpts().CPlusPlus) { 8407 // Determine whether the function was written with a 8408 // prototype. This true when: 8409 // - there is a prototype in the declarator, or 8410 // - the type R of the function is some kind of typedef or other non- 8411 // attributed reference to a type name (which eventually refers to a 8412 // function type). 8413 bool HasPrototype = 8414 (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) || 8415 (!R->getAsAdjusted<FunctionType>() && R->isFunctionProtoType()); 8416 8417 NewFD = FunctionDecl::Create(SemaRef.Context, DC, D.getBeginLoc(), NameInfo, 8418 R, TInfo, SC, isInline, HasPrototype, 8419 CSK_unspecified, 8420 /*TrailingRequiresClause=*/nullptr); 8421 if (D.isInvalidType()) 8422 NewFD->setInvalidDecl(); 8423 8424 return NewFD; 8425 } 8426 8427 ExplicitSpecifier ExplicitSpecifier = D.getDeclSpec().getExplicitSpecifier(); 8428 8429 ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier(); 8430 if (ConstexprKind == CSK_constinit) { 8431 SemaRef.Diag(D.getDeclSpec().getConstexprSpecLoc(), 8432 diag::err_constexpr_wrong_decl_kind) 8433 << ConstexprKind; 8434 ConstexprKind = CSK_unspecified; 8435 D.getMutableDeclSpec().ClearConstexprSpec(); 8436 } 8437 Expr *TrailingRequiresClause = D.getTrailingRequiresClause(); 8438 8439 // Check that the return type is not an abstract class type. 8440 // For record types, this is done by the AbstractClassUsageDiagnoser once 8441 // the class has been completely parsed. 8442 if (!DC->isRecord() && 8443 SemaRef.RequireNonAbstractType( 8444 D.getIdentifierLoc(), R->castAs<FunctionType>()->getReturnType(), 8445 diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType)) 8446 D.setInvalidType(); 8447 8448 if (Name.getNameKind() == DeclarationName::CXXConstructorName) { 8449 // This is a C++ constructor declaration. 8450 assert(DC->isRecord() && 8451 "Constructors can only be declared in a member context"); 8452 8453 R = SemaRef.CheckConstructorDeclarator(D, R, SC); 8454 return CXXConstructorDecl::Create( 8455 SemaRef.Context, cast<CXXRecordDecl>(DC), D.getBeginLoc(), NameInfo, R, 8456 TInfo, ExplicitSpecifier, isInline, 8457 /*isImplicitlyDeclared=*/false, ConstexprKind, InheritedConstructor(), 8458 TrailingRequiresClause); 8459 8460 } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 8461 // This is a C++ destructor declaration. 8462 if (DC->isRecord()) { 8463 R = SemaRef.CheckDestructorDeclarator(D, R, SC); 8464 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); 8465 CXXDestructorDecl *NewDD = CXXDestructorDecl::Create( 8466 SemaRef.Context, Record, D.getBeginLoc(), NameInfo, R, TInfo, 8467 isInline, /*isImplicitlyDeclared=*/false, ConstexprKind, 8468 TrailingRequiresClause); 8469 8470 // If the destructor needs an implicit exception specification, set it 8471 // now. FIXME: It'd be nice to be able to create the right type to start 8472 // with, but the type needs to reference the destructor declaration. 8473 if (SemaRef.getLangOpts().CPlusPlus11) 8474 SemaRef.AdjustDestructorExceptionSpec(NewDD); 8475 8476 IsVirtualOkay = true; 8477 return NewDD; 8478 8479 } else { 8480 SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member); 8481 D.setInvalidType(); 8482 8483 // Create a FunctionDecl to satisfy the function definition parsing 8484 // code path. 8485 return FunctionDecl::Create(SemaRef.Context, DC, D.getBeginLoc(), 8486 D.getIdentifierLoc(), Name, R, TInfo, SC, 8487 isInline, 8488 /*hasPrototype=*/true, ConstexprKind, 8489 TrailingRequiresClause); 8490 } 8491 8492 } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 8493 if (!DC->isRecord()) { 8494 SemaRef.Diag(D.getIdentifierLoc(), 8495 diag::err_conv_function_not_member); 8496 return nullptr; 8497 } 8498 8499 SemaRef.CheckConversionDeclarator(D, R, SC); 8500 if (D.isInvalidType()) 8501 return nullptr; 8502 8503 IsVirtualOkay = true; 8504 return CXXConversionDecl::Create( 8505 SemaRef.Context, cast<CXXRecordDecl>(DC), D.getBeginLoc(), NameInfo, R, 8506 TInfo, isInline, ExplicitSpecifier, ConstexprKind, SourceLocation(), 8507 TrailingRequiresClause); 8508 8509 } else if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) { 8510 if (TrailingRequiresClause) 8511 SemaRef.Diag(TrailingRequiresClause->getBeginLoc(), 8512 diag::err_trailing_requires_clause_on_deduction_guide) 8513 << TrailingRequiresClause->getSourceRange(); 8514 SemaRef.CheckDeductionGuideDeclarator(D, R, SC); 8515 8516 return CXXDeductionGuideDecl::Create(SemaRef.Context, DC, D.getBeginLoc(), 8517 ExplicitSpecifier, NameInfo, R, TInfo, 8518 D.getEndLoc()); 8519 } else if (DC->isRecord()) { 8520 // If the name of the function is the same as the name of the record, 8521 // then this must be an invalid constructor that has a return type. 8522 // (The parser checks for a return type and makes the declarator a 8523 // constructor if it has no return type). 8524 if (Name.getAsIdentifierInfo() && 8525 Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){ 8526 SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type) 8527 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 8528 << SourceRange(D.getIdentifierLoc()); 8529 return nullptr; 8530 } 8531 8532 // This is a C++ method declaration. 8533 CXXMethodDecl *Ret = CXXMethodDecl::Create( 8534 SemaRef.Context, cast<CXXRecordDecl>(DC), D.getBeginLoc(), NameInfo, R, 8535 TInfo, SC, isInline, ConstexprKind, SourceLocation(), 8536 TrailingRequiresClause); 8537 IsVirtualOkay = !Ret->isStatic(); 8538 return Ret; 8539 } else { 8540 bool isFriend = 8541 SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified(); 8542 if (!isFriend && SemaRef.CurContext->isRecord()) 8543 return nullptr; 8544 8545 // Determine whether the function was written with a 8546 // prototype. This true when: 8547 // - we're in C++ (where every function has a prototype), 8548 return FunctionDecl::Create(SemaRef.Context, DC, D.getBeginLoc(), NameInfo, 8549 R, TInfo, SC, isInline, true /*HasPrototype*/, 8550 ConstexprKind, TrailingRequiresClause); 8551 } 8552 } 8553 8554 enum OpenCLParamType { 8555 ValidKernelParam, 8556 PtrPtrKernelParam, 8557 PtrKernelParam, 8558 InvalidAddrSpacePtrKernelParam, 8559 InvalidKernelParam, 8560 RecordKernelParam 8561 }; 8562 8563 static bool isOpenCLSizeDependentType(ASTContext &C, QualType Ty) { 8564 // Size dependent types are just typedefs to normal integer types 8565 // (e.g. unsigned long), so we cannot distinguish them from other typedefs to 8566 // integers other than by their names. 8567 StringRef SizeTypeNames[] = {"size_t", "intptr_t", "uintptr_t", "ptrdiff_t"}; 8568 8569 // Remove typedefs one by one until we reach a typedef 8570 // for a size dependent type. 8571 QualType DesugaredTy = Ty; 8572 do { 8573 ArrayRef<StringRef> Names(SizeTypeNames); 8574 auto Match = llvm::find(Names, DesugaredTy.getUnqualifiedType().getAsString()); 8575 if (Names.end() != Match) 8576 return true; 8577 8578 Ty = DesugaredTy; 8579 DesugaredTy = Ty.getSingleStepDesugaredType(C); 8580 } while (DesugaredTy != Ty); 8581 8582 return false; 8583 } 8584 8585 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) { 8586 if (PT->isPointerType()) { 8587 QualType PointeeType = PT->getPointeeType(); 8588 if (PointeeType->isPointerType()) 8589 return PtrPtrKernelParam; 8590 if (PointeeType.getAddressSpace() == LangAS::opencl_generic || 8591 PointeeType.getAddressSpace() == LangAS::opencl_private || 8592 PointeeType.getAddressSpace() == LangAS::Default) 8593 return InvalidAddrSpacePtrKernelParam; 8594 return PtrKernelParam; 8595 } 8596 8597 // OpenCL v1.2 s6.9.k: 8598 // Arguments to kernel functions in a program cannot be declared with the 8599 // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and 8600 // uintptr_t or a struct and/or union that contain fields declared to be one 8601 // of these built-in scalar types. 8602 if (isOpenCLSizeDependentType(S.getASTContext(), PT)) 8603 return InvalidKernelParam; 8604 8605 if (PT->isImageType()) 8606 return PtrKernelParam; 8607 8608 if (PT->isBooleanType() || PT->isEventT() || PT->isReserveIDT()) 8609 return InvalidKernelParam; 8610 8611 // OpenCL extension spec v1.2 s9.5: 8612 // This extension adds support for half scalar and vector types as built-in 8613 // types that can be used for arithmetic operations, conversions etc. 8614 if (!S.getOpenCLOptions().isEnabled("cl_khr_fp16") && PT->isHalfType()) 8615 return InvalidKernelParam; 8616 8617 if (PT->isRecordType()) 8618 return RecordKernelParam; 8619 8620 // Look into an array argument to check if it has a forbidden type. 8621 if (PT->isArrayType()) { 8622 const Type *UnderlyingTy = PT->getPointeeOrArrayElementType(); 8623 // Call ourself to check an underlying type of an array. Since the 8624 // getPointeeOrArrayElementType returns an innermost type which is not an 8625 // array, this recursive call only happens once. 8626 return getOpenCLKernelParameterType(S, QualType(UnderlyingTy, 0)); 8627 } 8628 8629 return ValidKernelParam; 8630 } 8631 8632 static void checkIsValidOpenCLKernelParameter( 8633 Sema &S, 8634 Declarator &D, 8635 ParmVarDecl *Param, 8636 llvm::SmallPtrSetImpl<const Type *> &ValidTypes) { 8637 QualType PT = Param->getType(); 8638 8639 // Cache the valid types we encounter to avoid rechecking structs that are 8640 // used again 8641 if (ValidTypes.count(PT.getTypePtr())) 8642 return; 8643 8644 switch (getOpenCLKernelParameterType(S, PT)) { 8645 case PtrPtrKernelParam: 8646 // OpenCL v1.2 s6.9.a: 8647 // A kernel function argument cannot be declared as a 8648 // pointer to a pointer type. 8649 S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param); 8650 D.setInvalidType(); 8651 return; 8652 8653 case InvalidAddrSpacePtrKernelParam: 8654 // OpenCL v1.0 s6.5: 8655 // __kernel function arguments declared to be a pointer of a type can point 8656 // to one of the following address spaces only : __global, __local or 8657 // __constant. 8658 S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space); 8659 D.setInvalidType(); 8660 return; 8661 8662 // OpenCL v1.2 s6.9.k: 8663 // Arguments to kernel functions in a program cannot be declared with the 8664 // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and 8665 // uintptr_t or a struct and/or union that contain fields declared to be 8666 // one of these built-in scalar types. 8667 8668 case InvalidKernelParam: 8669 // OpenCL v1.2 s6.8 n: 8670 // A kernel function argument cannot be declared 8671 // of event_t type. 8672 // Do not diagnose half type since it is diagnosed as invalid argument 8673 // type for any function elsewhere. 8674 if (!PT->isHalfType()) { 8675 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT; 8676 8677 // Explain what typedefs are involved. 8678 const TypedefType *Typedef = nullptr; 8679 while ((Typedef = PT->getAs<TypedefType>())) { 8680 SourceLocation Loc = Typedef->getDecl()->getLocation(); 8681 // SourceLocation may be invalid for a built-in type. 8682 if (Loc.isValid()) 8683 S.Diag(Loc, diag::note_entity_declared_at) << PT; 8684 PT = Typedef->desugar(); 8685 } 8686 } 8687 8688 D.setInvalidType(); 8689 return; 8690 8691 case PtrKernelParam: 8692 case ValidKernelParam: 8693 ValidTypes.insert(PT.getTypePtr()); 8694 return; 8695 8696 case RecordKernelParam: 8697 break; 8698 } 8699 8700 // Track nested structs we will inspect 8701 SmallVector<const Decl *, 4> VisitStack; 8702 8703 // Track where we are in the nested structs. Items will migrate from 8704 // VisitStack to HistoryStack as we do the DFS for bad field. 8705 SmallVector<const FieldDecl *, 4> HistoryStack; 8706 HistoryStack.push_back(nullptr); 8707 8708 // At this point we already handled everything except of a RecordType or 8709 // an ArrayType of a RecordType. 8710 assert((PT->isArrayType() || PT->isRecordType()) && "Unexpected type."); 8711 const RecordType *RecTy = 8712 PT->getPointeeOrArrayElementType()->getAs<RecordType>(); 8713 const RecordDecl *OrigRecDecl = RecTy->getDecl(); 8714 8715 VisitStack.push_back(RecTy->getDecl()); 8716 assert(VisitStack.back() && "First decl null?"); 8717 8718 do { 8719 const Decl *Next = VisitStack.pop_back_val(); 8720 if (!Next) { 8721 assert(!HistoryStack.empty()); 8722 // Found a marker, we have gone up a level 8723 if (const FieldDecl *Hist = HistoryStack.pop_back_val()) 8724 ValidTypes.insert(Hist->getType().getTypePtr()); 8725 8726 continue; 8727 } 8728 8729 // Adds everything except the original parameter declaration (which is not a 8730 // field itself) to the history stack. 8731 const RecordDecl *RD; 8732 if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) { 8733 HistoryStack.push_back(Field); 8734 8735 QualType FieldTy = Field->getType(); 8736 // Other field types (known to be valid or invalid) are handled while we 8737 // walk around RecordDecl::fields(). 8738 assert((FieldTy->isArrayType() || FieldTy->isRecordType()) && 8739 "Unexpected type."); 8740 const Type *FieldRecTy = FieldTy->getPointeeOrArrayElementType(); 8741 8742 RD = FieldRecTy->castAs<RecordType>()->getDecl(); 8743 } else { 8744 RD = cast<RecordDecl>(Next); 8745 } 8746 8747 // Add a null marker so we know when we've gone back up a level 8748 VisitStack.push_back(nullptr); 8749 8750 for (const auto *FD : RD->fields()) { 8751 QualType QT = FD->getType(); 8752 8753 if (ValidTypes.count(QT.getTypePtr())) 8754 continue; 8755 8756 OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT); 8757 if (ParamType == ValidKernelParam) 8758 continue; 8759 8760 if (ParamType == RecordKernelParam) { 8761 VisitStack.push_back(FD); 8762 continue; 8763 } 8764 8765 // OpenCL v1.2 s6.9.p: 8766 // Arguments to kernel functions that are declared to be a struct or union 8767 // do not allow OpenCL objects to be passed as elements of the struct or 8768 // union. 8769 if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam || 8770 ParamType == InvalidAddrSpacePtrKernelParam) { 8771 S.Diag(Param->getLocation(), 8772 diag::err_record_with_pointers_kernel_param) 8773 << PT->isUnionType() 8774 << PT; 8775 } else { 8776 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT; 8777 } 8778 8779 S.Diag(OrigRecDecl->getLocation(), diag::note_within_field_of_type) 8780 << OrigRecDecl->getDeclName(); 8781 8782 // We have an error, now let's go back up through history and show where 8783 // the offending field came from 8784 for (ArrayRef<const FieldDecl *>::const_iterator 8785 I = HistoryStack.begin() + 1, 8786 E = HistoryStack.end(); 8787 I != E; ++I) { 8788 const FieldDecl *OuterField = *I; 8789 S.Diag(OuterField->getLocation(), diag::note_within_field_of_type) 8790 << OuterField->getType(); 8791 } 8792 8793 S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here) 8794 << QT->isPointerType() 8795 << QT; 8796 D.setInvalidType(); 8797 return; 8798 } 8799 } while (!VisitStack.empty()); 8800 } 8801 8802 /// Find the DeclContext in which a tag is implicitly declared if we see an 8803 /// elaborated type specifier in the specified context, and lookup finds 8804 /// nothing. 8805 static DeclContext *getTagInjectionContext(DeclContext *DC) { 8806 while (!DC->isFileContext() && !DC->isFunctionOrMethod()) 8807 DC = DC->getParent(); 8808 return DC; 8809 } 8810 8811 /// Find the Scope in which a tag is implicitly declared if we see an 8812 /// elaborated type specifier in the specified context, and lookup finds 8813 /// nothing. 8814 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) { 8815 while (S->isClassScope() || 8816 (LangOpts.CPlusPlus && 8817 S->isFunctionPrototypeScope()) || 8818 ((S->getFlags() & Scope::DeclScope) == 0) || 8819 (S->getEntity() && S->getEntity()->isTransparentContext())) 8820 S = S->getParent(); 8821 return S; 8822 } 8823 8824 NamedDecl* 8825 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC, 8826 TypeSourceInfo *TInfo, LookupResult &Previous, 8827 MultiTemplateParamsArg TemplateParamListsRef, 8828 bool &AddToScope) { 8829 QualType R = TInfo->getType(); 8830 8831 assert(R->isFunctionType()); 8832 if (R.getCanonicalType()->castAs<FunctionType>()->getCmseNSCallAttr()) 8833 Diag(D.getIdentifierLoc(), diag::err_function_decl_cmse_ns_call); 8834 8835 SmallVector<TemplateParameterList *, 4> TemplateParamLists; 8836 for (TemplateParameterList *TPL : TemplateParamListsRef) 8837 TemplateParamLists.push_back(TPL); 8838 if (TemplateParameterList *Invented = D.getInventedTemplateParameterList()) { 8839 if (!TemplateParamLists.empty() && 8840 Invented->getDepth() == TemplateParamLists.back()->getDepth()) 8841 TemplateParamLists.back() = Invented; 8842 else 8843 TemplateParamLists.push_back(Invented); 8844 } 8845 8846 // TODO: consider using NameInfo for diagnostic. 8847 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 8848 DeclarationName Name = NameInfo.getName(); 8849 StorageClass SC = getFunctionStorageClass(*this, D); 8850 8851 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 8852 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 8853 diag::err_invalid_thread) 8854 << DeclSpec::getSpecifierName(TSCS); 8855 8856 if (D.isFirstDeclarationOfMember()) 8857 adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(), 8858 D.getIdentifierLoc()); 8859 8860 bool isFriend = false; 8861 FunctionTemplateDecl *FunctionTemplate = nullptr; 8862 bool isMemberSpecialization = false; 8863 bool isFunctionTemplateSpecialization = false; 8864 8865 bool isDependentClassScopeExplicitSpecialization = false; 8866 bool HasExplicitTemplateArgs = false; 8867 TemplateArgumentListInfo TemplateArgs; 8868 8869 bool isVirtualOkay = false; 8870 8871 DeclContext *OriginalDC = DC; 8872 bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC); 8873 8874 FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC, 8875 isVirtualOkay); 8876 if (!NewFD) return nullptr; 8877 8878 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer()) 8879 NewFD->setTopLevelDeclInObjCContainer(); 8880 8881 // Set the lexical context. If this is a function-scope declaration, or has a 8882 // C++ scope specifier, or is the object of a friend declaration, the lexical 8883 // context will be different from the semantic context. 8884 NewFD->setLexicalDeclContext(CurContext); 8885 8886 if (IsLocalExternDecl) 8887 NewFD->setLocalExternDecl(); 8888 8889 if (getLangOpts().CPlusPlus) { 8890 bool isInline = D.getDeclSpec().isInlineSpecified(); 8891 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 8892 bool hasExplicit = D.getDeclSpec().hasExplicitSpecifier(); 8893 isFriend = D.getDeclSpec().isFriendSpecified(); 8894 if (isFriend && !isInline && D.isFunctionDefinition()) { 8895 // C++ [class.friend]p5 8896 // A function can be defined in a friend declaration of a 8897 // class . . . . Such a function is implicitly inline. 8898 NewFD->setImplicitlyInline(); 8899 } 8900 8901 // If this is a method defined in an __interface, and is not a constructor 8902 // or an overloaded operator, then set the pure flag (isVirtual will already 8903 // return true). 8904 if (const CXXRecordDecl *Parent = 8905 dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) { 8906 if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided()) 8907 NewFD->setPure(true); 8908 8909 // C++ [class.union]p2 8910 // A union can have member functions, but not virtual functions. 8911 if (isVirtual && Parent->isUnion()) 8912 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union); 8913 } 8914 8915 SetNestedNameSpecifier(*this, NewFD, D); 8916 isMemberSpecialization = false; 8917 isFunctionTemplateSpecialization = false; 8918 if (D.isInvalidType()) 8919 NewFD->setInvalidDecl(); 8920 8921 // Match up the template parameter lists with the scope specifier, then 8922 // determine whether we have a template or a template specialization. 8923 bool Invalid = false; 8924 TemplateParameterList *TemplateParams = 8925 MatchTemplateParametersToScopeSpecifier( 8926 D.getDeclSpec().getBeginLoc(), D.getIdentifierLoc(), 8927 D.getCXXScopeSpec(), 8928 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId 8929 ? D.getName().TemplateId 8930 : nullptr, 8931 TemplateParamLists, isFriend, isMemberSpecialization, 8932 Invalid); 8933 if (TemplateParams) { 8934 // Check that we can declare a template here. 8935 if (CheckTemplateDeclScope(S, TemplateParams)) 8936 NewFD->setInvalidDecl(); 8937 8938 if (TemplateParams->size() > 0) { 8939 // This is a function template 8940 8941 // A destructor cannot be a template. 8942 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 8943 Diag(NewFD->getLocation(), diag::err_destructor_template); 8944 NewFD->setInvalidDecl(); 8945 } 8946 8947 // If we're adding a template to a dependent context, we may need to 8948 // rebuilding some of the types used within the template parameter list, 8949 // now that we know what the current instantiation is. 8950 if (DC->isDependentContext()) { 8951 ContextRAII SavedContext(*this, DC); 8952 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams)) 8953 Invalid = true; 8954 } 8955 8956 FunctionTemplate = FunctionTemplateDecl::Create(Context, DC, 8957 NewFD->getLocation(), 8958 Name, TemplateParams, 8959 NewFD); 8960 FunctionTemplate->setLexicalDeclContext(CurContext); 8961 NewFD->setDescribedFunctionTemplate(FunctionTemplate); 8962 8963 // For source fidelity, store the other template param lists. 8964 if (TemplateParamLists.size() > 1) { 8965 NewFD->setTemplateParameterListsInfo(Context, 8966 ArrayRef<TemplateParameterList *>(TemplateParamLists) 8967 .drop_back(1)); 8968 } 8969 } else { 8970 // This is a function template specialization. 8971 isFunctionTemplateSpecialization = true; 8972 // For source fidelity, store all the template param lists. 8973 if (TemplateParamLists.size() > 0) 8974 NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists); 8975 8976 // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);". 8977 if (isFriend) { 8978 // We want to remove the "template<>", found here. 8979 SourceRange RemoveRange = TemplateParams->getSourceRange(); 8980 8981 // If we remove the template<> and the name is not a 8982 // template-id, we're actually silently creating a problem: 8983 // the friend declaration will refer to an untemplated decl, 8984 // and clearly the user wants a template specialization. So 8985 // we need to insert '<>' after the name. 8986 SourceLocation InsertLoc; 8987 if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) { 8988 InsertLoc = D.getName().getSourceRange().getEnd(); 8989 InsertLoc = getLocForEndOfToken(InsertLoc); 8990 } 8991 8992 Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend) 8993 << Name << RemoveRange 8994 << FixItHint::CreateRemoval(RemoveRange) 8995 << FixItHint::CreateInsertion(InsertLoc, "<>"); 8996 } 8997 } 8998 } else { 8999 // Check that we can declare a template here. 9000 if (!TemplateParamLists.empty() && isMemberSpecialization && 9001 CheckTemplateDeclScope(S, TemplateParamLists.back())) 9002 NewFD->setInvalidDecl(); 9003 9004 // All template param lists were matched against the scope specifier: 9005 // this is NOT (an explicit specialization of) a template. 9006 if (TemplateParamLists.size() > 0) 9007 // For source fidelity, store all the template param lists. 9008 NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists); 9009 } 9010 9011 if (Invalid) { 9012 NewFD->setInvalidDecl(); 9013 if (FunctionTemplate) 9014 FunctionTemplate->setInvalidDecl(); 9015 } 9016 9017 // C++ [dcl.fct.spec]p5: 9018 // The virtual specifier shall only be used in declarations of 9019 // nonstatic class member functions that appear within a 9020 // member-specification of a class declaration; see 10.3. 9021 // 9022 if (isVirtual && !NewFD->isInvalidDecl()) { 9023 if (!isVirtualOkay) { 9024 Diag(D.getDeclSpec().getVirtualSpecLoc(), 9025 diag::err_virtual_non_function); 9026 } else if (!CurContext->isRecord()) { 9027 // 'virtual' was specified outside of the class. 9028 Diag(D.getDeclSpec().getVirtualSpecLoc(), 9029 diag::err_virtual_out_of_class) 9030 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 9031 } else if (NewFD->getDescribedFunctionTemplate()) { 9032 // C++ [temp.mem]p3: 9033 // A member function template shall not be virtual. 9034 Diag(D.getDeclSpec().getVirtualSpecLoc(), 9035 diag::err_virtual_member_function_template) 9036 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 9037 } else { 9038 // Okay: Add virtual to the method. 9039 NewFD->setVirtualAsWritten(true); 9040 } 9041 9042 if (getLangOpts().CPlusPlus14 && 9043 NewFD->getReturnType()->isUndeducedType()) 9044 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual); 9045 } 9046 9047 if (getLangOpts().CPlusPlus14 && 9048 (NewFD->isDependentContext() || 9049 (isFriend && CurContext->isDependentContext())) && 9050 NewFD->getReturnType()->isUndeducedType()) { 9051 // If the function template is referenced directly (for instance, as a 9052 // member of the current instantiation), pretend it has a dependent type. 9053 // This is not really justified by the standard, but is the only sane 9054 // thing to do. 9055 // FIXME: For a friend function, we have not marked the function as being 9056 // a friend yet, so 'isDependentContext' on the FD doesn't work. 9057 const FunctionProtoType *FPT = 9058 NewFD->getType()->castAs<FunctionProtoType>(); 9059 QualType Result = 9060 SubstAutoType(FPT->getReturnType(), Context.DependentTy); 9061 NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(), 9062 FPT->getExtProtoInfo())); 9063 } 9064 9065 // C++ [dcl.fct.spec]p3: 9066 // The inline specifier shall not appear on a block scope function 9067 // declaration. 9068 if (isInline && !NewFD->isInvalidDecl()) { 9069 if (CurContext->isFunctionOrMethod()) { 9070 // 'inline' is not allowed on block scope function declaration. 9071 Diag(D.getDeclSpec().getInlineSpecLoc(), 9072 diag::err_inline_declaration_block_scope) << Name 9073 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 9074 } 9075 } 9076 9077 // C++ [dcl.fct.spec]p6: 9078 // The explicit specifier shall be used only in the declaration of a 9079 // constructor or conversion function within its class definition; 9080 // see 12.3.1 and 12.3.2. 9081 if (hasExplicit && !NewFD->isInvalidDecl() && 9082 !isa<CXXDeductionGuideDecl>(NewFD)) { 9083 if (!CurContext->isRecord()) { 9084 // 'explicit' was specified outside of the class. 9085 Diag(D.getDeclSpec().getExplicitSpecLoc(), 9086 diag::err_explicit_out_of_class) 9087 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecRange()); 9088 } else if (!isa<CXXConstructorDecl>(NewFD) && 9089 !isa<CXXConversionDecl>(NewFD)) { 9090 // 'explicit' was specified on a function that wasn't a constructor 9091 // or conversion function. 9092 Diag(D.getDeclSpec().getExplicitSpecLoc(), 9093 diag::err_explicit_non_ctor_or_conv_function) 9094 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecRange()); 9095 } 9096 } 9097 9098 if (ConstexprSpecKind ConstexprKind = 9099 D.getDeclSpec().getConstexprSpecifier()) { 9100 // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors 9101 // are implicitly inline. 9102 NewFD->setImplicitlyInline(); 9103 9104 // C++11 [dcl.constexpr]p3: functions declared constexpr are required to 9105 // be either constructors or to return a literal type. Therefore, 9106 // destructors cannot be declared constexpr. 9107 if (isa<CXXDestructorDecl>(NewFD) && 9108 (!getLangOpts().CPlusPlus20 || ConstexprKind == CSK_consteval)) { 9109 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor) 9110 << ConstexprKind; 9111 NewFD->setConstexprKind(getLangOpts().CPlusPlus20 ? CSK_unspecified : CSK_constexpr); 9112 } 9113 // C++20 [dcl.constexpr]p2: An allocation function, or a 9114 // deallocation function shall not be declared with the consteval 9115 // specifier. 9116 if (ConstexprKind == CSK_consteval && 9117 (NewFD->getOverloadedOperator() == OO_New || 9118 NewFD->getOverloadedOperator() == OO_Array_New || 9119 NewFD->getOverloadedOperator() == OO_Delete || 9120 NewFD->getOverloadedOperator() == OO_Array_Delete)) { 9121 Diag(D.getDeclSpec().getConstexprSpecLoc(), 9122 diag::err_invalid_consteval_decl_kind) 9123 << NewFD; 9124 NewFD->setConstexprKind(CSK_constexpr); 9125 } 9126 } 9127 9128 // If __module_private__ was specified, mark the function accordingly. 9129 if (D.getDeclSpec().isModulePrivateSpecified()) { 9130 if (isFunctionTemplateSpecialization) { 9131 SourceLocation ModulePrivateLoc 9132 = D.getDeclSpec().getModulePrivateSpecLoc(); 9133 Diag(ModulePrivateLoc, diag::err_module_private_specialization) 9134 << 0 9135 << FixItHint::CreateRemoval(ModulePrivateLoc); 9136 } else { 9137 NewFD->setModulePrivate(); 9138 if (FunctionTemplate) 9139 FunctionTemplate->setModulePrivate(); 9140 } 9141 } 9142 9143 if (isFriend) { 9144 if (FunctionTemplate) { 9145 FunctionTemplate->setObjectOfFriendDecl(); 9146 FunctionTemplate->setAccess(AS_public); 9147 } 9148 NewFD->setObjectOfFriendDecl(); 9149 NewFD->setAccess(AS_public); 9150 } 9151 9152 // If a function is defined as defaulted or deleted, mark it as such now. 9153 // We'll do the relevant checks on defaulted / deleted functions later. 9154 switch (D.getFunctionDefinitionKind()) { 9155 case FDK_Declaration: 9156 case FDK_Definition: 9157 break; 9158 9159 case FDK_Defaulted: 9160 NewFD->setDefaulted(); 9161 break; 9162 9163 case FDK_Deleted: 9164 NewFD->setDeletedAsWritten(); 9165 break; 9166 } 9167 9168 if (isa<CXXMethodDecl>(NewFD) && DC == CurContext && 9169 D.isFunctionDefinition()) { 9170 // C++ [class.mfct]p2: 9171 // A member function may be defined (8.4) in its class definition, in 9172 // which case it is an inline member function (7.1.2) 9173 NewFD->setImplicitlyInline(); 9174 } 9175 9176 if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) && 9177 !CurContext->isRecord()) { 9178 // C++ [class.static]p1: 9179 // A data or function member of a class may be declared static 9180 // in a class definition, in which case it is a static member of 9181 // the class. 9182 9183 // Complain about the 'static' specifier if it's on an out-of-line 9184 // member function definition. 9185 9186 // MSVC permits the use of a 'static' storage specifier on an out-of-line 9187 // member function template declaration and class member template 9188 // declaration (MSVC versions before 2015), warn about this. 9189 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 9190 ((!getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) && 9191 cast<CXXRecordDecl>(DC)->getDescribedClassTemplate()) || 9192 (getLangOpts().MSVCCompat && NewFD->getDescribedFunctionTemplate())) 9193 ? diag::ext_static_out_of_line : diag::err_static_out_of_line) 9194 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 9195 } 9196 9197 // C++11 [except.spec]p15: 9198 // A deallocation function with no exception-specification is treated 9199 // as if it were specified with noexcept(true). 9200 const FunctionProtoType *FPT = R->getAs<FunctionProtoType>(); 9201 if ((Name.getCXXOverloadedOperator() == OO_Delete || 9202 Name.getCXXOverloadedOperator() == OO_Array_Delete) && 9203 getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec()) 9204 NewFD->setType(Context.getFunctionType( 9205 FPT->getReturnType(), FPT->getParamTypes(), 9206 FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept))); 9207 } 9208 9209 // Filter out previous declarations that don't match the scope. 9210 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD), 9211 D.getCXXScopeSpec().isNotEmpty() || 9212 isMemberSpecialization || 9213 isFunctionTemplateSpecialization); 9214 9215 // Handle GNU asm-label extension (encoded as an attribute). 9216 if (Expr *E = (Expr*) D.getAsmLabel()) { 9217 // The parser guarantees this is a string. 9218 StringLiteral *SE = cast<StringLiteral>(E); 9219 NewFD->addAttr(AsmLabelAttr::Create(Context, SE->getString(), 9220 /*IsLiteralLabel=*/true, 9221 SE->getStrTokenLoc(0))); 9222 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 9223 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 9224 ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier()); 9225 if (I != ExtnameUndeclaredIdentifiers.end()) { 9226 if (isDeclExternC(NewFD)) { 9227 NewFD->addAttr(I->second); 9228 ExtnameUndeclaredIdentifiers.erase(I); 9229 } else 9230 Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied) 9231 << /*Variable*/0 << NewFD; 9232 } 9233 } 9234 9235 // Copy the parameter declarations from the declarator D to the function 9236 // declaration NewFD, if they are available. First scavenge them into Params. 9237 SmallVector<ParmVarDecl*, 16> Params; 9238 unsigned FTIIdx; 9239 if (D.isFunctionDeclarator(FTIIdx)) { 9240 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun; 9241 9242 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs 9243 // function that takes no arguments, not a function that takes a 9244 // single void argument. 9245 // We let through "const void" here because Sema::GetTypeForDeclarator 9246 // already checks for that case. 9247 if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) { 9248 for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) { 9249 ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param); 9250 assert(Param->getDeclContext() != NewFD && "Was set before ?"); 9251 Param->setDeclContext(NewFD); 9252 Params.push_back(Param); 9253 9254 if (Param->isInvalidDecl()) 9255 NewFD->setInvalidDecl(); 9256 } 9257 } 9258 9259 if (!getLangOpts().CPlusPlus) { 9260 // In C, find all the tag declarations from the prototype and move them 9261 // into the function DeclContext. Remove them from the surrounding tag 9262 // injection context of the function, which is typically but not always 9263 // the TU. 9264 DeclContext *PrototypeTagContext = 9265 getTagInjectionContext(NewFD->getLexicalDeclContext()); 9266 for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) { 9267 auto *TD = dyn_cast<TagDecl>(NonParmDecl); 9268 9269 // We don't want to reparent enumerators. Look at their parent enum 9270 // instead. 9271 if (!TD) { 9272 if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl)) 9273 TD = cast<EnumDecl>(ECD->getDeclContext()); 9274 } 9275 if (!TD) 9276 continue; 9277 DeclContext *TagDC = TD->getLexicalDeclContext(); 9278 if (!TagDC->containsDecl(TD)) 9279 continue; 9280 TagDC->removeDecl(TD); 9281 TD->setDeclContext(NewFD); 9282 NewFD->addDecl(TD); 9283 9284 // Preserve the lexical DeclContext if it is not the surrounding tag 9285 // injection context of the FD. In this example, the semantic context of 9286 // E will be f and the lexical context will be S, while both the 9287 // semantic and lexical contexts of S will be f: 9288 // void f(struct S { enum E { a } f; } s); 9289 if (TagDC != PrototypeTagContext) 9290 TD->setLexicalDeclContext(TagDC); 9291 } 9292 } 9293 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) { 9294 // When we're declaring a function with a typedef, typeof, etc as in the 9295 // following example, we'll need to synthesize (unnamed) 9296 // parameters for use in the declaration. 9297 // 9298 // @code 9299 // typedef void fn(int); 9300 // fn f; 9301 // @endcode 9302 9303 // Synthesize a parameter for each argument type. 9304 for (const auto &AI : FT->param_types()) { 9305 ParmVarDecl *Param = 9306 BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI); 9307 Param->setScopeInfo(0, Params.size()); 9308 Params.push_back(Param); 9309 } 9310 } else { 9311 assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 && 9312 "Should not need args for typedef of non-prototype fn"); 9313 } 9314 9315 // Finally, we know we have the right number of parameters, install them. 9316 NewFD->setParams(Params); 9317 9318 if (D.getDeclSpec().isNoreturnSpecified()) 9319 NewFD->addAttr(C11NoReturnAttr::Create(Context, 9320 D.getDeclSpec().getNoreturnSpecLoc(), 9321 AttributeCommonInfo::AS_Keyword)); 9322 9323 // Functions returning a variably modified type violate C99 6.7.5.2p2 9324 // because all functions have linkage. 9325 if (!NewFD->isInvalidDecl() && 9326 NewFD->getReturnType()->isVariablyModifiedType()) { 9327 Diag(NewFD->getLocation(), diag::err_vm_func_decl); 9328 NewFD->setInvalidDecl(); 9329 } 9330 9331 // Apply an implicit SectionAttr if '#pragma clang section text' is active 9332 if (PragmaClangTextSection.Valid && D.isFunctionDefinition() && 9333 !NewFD->hasAttr<SectionAttr>()) 9334 NewFD->addAttr(PragmaClangTextSectionAttr::CreateImplicit( 9335 Context, PragmaClangTextSection.SectionName, 9336 PragmaClangTextSection.PragmaLocation, AttributeCommonInfo::AS_Pragma)); 9337 9338 // Apply an implicit SectionAttr if #pragma code_seg is active. 9339 if (CodeSegStack.CurrentValue && D.isFunctionDefinition() && 9340 !NewFD->hasAttr<SectionAttr>()) { 9341 NewFD->addAttr(SectionAttr::CreateImplicit( 9342 Context, CodeSegStack.CurrentValue->getString(), 9343 CodeSegStack.CurrentPragmaLocation, AttributeCommonInfo::AS_Pragma, 9344 SectionAttr::Declspec_allocate)); 9345 if (UnifySection(CodeSegStack.CurrentValue->getString(), 9346 ASTContext::PSF_Implicit | ASTContext::PSF_Execute | 9347 ASTContext::PSF_Read, 9348 NewFD)) 9349 NewFD->dropAttr<SectionAttr>(); 9350 } 9351 9352 // Apply an implicit CodeSegAttr from class declspec or 9353 // apply an implicit SectionAttr from #pragma code_seg if active. 9354 if (!NewFD->hasAttr<CodeSegAttr>()) { 9355 if (Attr *SAttr = getImplicitCodeSegOrSectionAttrForFunction(NewFD, 9356 D.isFunctionDefinition())) { 9357 NewFD->addAttr(SAttr); 9358 } 9359 } 9360 9361 // Handle attributes. 9362 ProcessDeclAttributes(S, NewFD, D); 9363 9364 if (getLangOpts().OpenCL) { 9365 // OpenCL v1.1 s6.5: Using an address space qualifier in a function return 9366 // type declaration will generate a compilation error. 9367 LangAS AddressSpace = NewFD->getReturnType().getAddressSpace(); 9368 if (AddressSpace != LangAS::Default) { 9369 Diag(NewFD->getLocation(), 9370 diag::err_opencl_return_value_with_address_space); 9371 NewFD->setInvalidDecl(); 9372 } 9373 } 9374 9375 if (!getLangOpts().CPlusPlus) { 9376 // Perform semantic checking on the function declaration. 9377 if (!NewFD->isInvalidDecl() && NewFD->isMain()) 9378 CheckMain(NewFD, D.getDeclSpec()); 9379 9380 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint()) 9381 CheckMSVCRTEntryPoint(NewFD); 9382 9383 if (!NewFD->isInvalidDecl()) 9384 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 9385 isMemberSpecialization)); 9386 else if (!Previous.empty()) 9387 // Recover gracefully from an invalid redeclaration. 9388 D.setRedeclaration(true); 9389 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 9390 Previous.getResultKind() != LookupResult::FoundOverloaded) && 9391 "previous declaration set still overloaded"); 9392 9393 // Diagnose no-prototype function declarations with calling conventions that 9394 // don't support variadic calls. Only do this in C and do it after merging 9395 // possibly prototyped redeclarations. 9396 const FunctionType *FT = NewFD->getType()->castAs<FunctionType>(); 9397 if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) { 9398 CallingConv CC = FT->getExtInfo().getCC(); 9399 if (!supportsVariadicCall(CC)) { 9400 // Windows system headers sometimes accidentally use stdcall without 9401 // (void) parameters, so we relax this to a warning. 9402 int DiagID = 9403 CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr; 9404 Diag(NewFD->getLocation(), DiagID) 9405 << FunctionType::getNameForCallConv(CC); 9406 } 9407 } 9408 9409 if (NewFD->getReturnType().hasNonTrivialToPrimitiveDestructCUnion() || 9410 NewFD->getReturnType().hasNonTrivialToPrimitiveCopyCUnion()) 9411 checkNonTrivialCUnion(NewFD->getReturnType(), 9412 NewFD->getReturnTypeSourceRange().getBegin(), 9413 NTCUC_FunctionReturn, NTCUK_Destruct|NTCUK_Copy); 9414 } else { 9415 // C++11 [replacement.functions]p3: 9416 // The program's definitions shall not be specified as inline. 9417 // 9418 // N.B. We diagnose declarations instead of definitions per LWG issue 2340. 9419 // 9420 // Suppress the diagnostic if the function is __attribute__((used)), since 9421 // that forces an external definition to be emitted. 9422 if (D.getDeclSpec().isInlineSpecified() && 9423 NewFD->isReplaceableGlobalAllocationFunction() && 9424 !NewFD->hasAttr<UsedAttr>()) 9425 Diag(D.getDeclSpec().getInlineSpecLoc(), 9426 diag::ext_operator_new_delete_declared_inline) 9427 << NewFD->getDeclName(); 9428 9429 // If the declarator is a template-id, translate the parser's template 9430 // argument list into our AST format. 9431 if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) { 9432 TemplateIdAnnotation *TemplateId = D.getName().TemplateId; 9433 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc); 9434 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc); 9435 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 9436 TemplateId->NumArgs); 9437 translateTemplateArguments(TemplateArgsPtr, 9438 TemplateArgs); 9439 9440 HasExplicitTemplateArgs = true; 9441 9442 if (NewFD->isInvalidDecl()) { 9443 HasExplicitTemplateArgs = false; 9444 } else if (FunctionTemplate) { 9445 // Function template with explicit template arguments. 9446 Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec) 9447 << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc); 9448 9449 HasExplicitTemplateArgs = false; 9450 } else { 9451 assert((isFunctionTemplateSpecialization || 9452 D.getDeclSpec().isFriendSpecified()) && 9453 "should have a 'template<>' for this decl"); 9454 // "friend void foo<>(int);" is an implicit specialization decl. 9455 isFunctionTemplateSpecialization = true; 9456 } 9457 } else if (isFriend && isFunctionTemplateSpecialization) { 9458 // This combination is only possible in a recovery case; the user 9459 // wrote something like: 9460 // template <> friend void foo(int); 9461 // which we're recovering from as if the user had written: 9462 // friend void foo<>(int); 9463 // Go ahead and fake up a template id. 9464 HasExplicitTemplateArgs = true; 9465 TemplateArgs.setLAngleLoc(D.getIdentifierLoc()); 9466 TemplateArgs.setRAngleLoc(D.getIdentifierLoc()); 9467 } 9468 9469 // We do not add HD attributes to specializations here because 9470 // they may have different constexpr-ness compared to their 9471 // templates and, after maybeAddCUDAHostDeviceAttrs() is applied, 9472 // may end up with different effective targets. Instead, a 9473 // specialization inherits its target attributes from its template 9474 // in the CheckFunctionTemplateSpecialization() call below. 9475 if (getLangOpts().CUDA && !isFunctionTemplateSpecialization) 9476 maybeAddCUDAHostDeviceAttrs(NewFD, Previous); 9477 9478 // If it's a friend (and only if it's a friend), it's possible 9479 // that either the specialized function type or the specialized 9480 // template is dependent, and therefore matching will fail. In 9481 // this case, don't check the specialization yet. 9482 bool InstantiationDependent = false; 9483 if (isFunctionTemplateSpecialization && isFriend && 9484 (NewFD->getType()->isDependentType() || DC->isDependentContext() || 9485 TemplateSpecializationType::anyDependentTemplateArguments( 9486 TemplateArgs, 9487 InstantiationDependent))) { 9488 assert(HasExplicitTemplateArgs && 9489 "friend function specialization without template args"); 9490 if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs, 9491 Previous)) 9492 NewFD->setInvalidDecl(); 9493 } else if (isFunctionTemplateSpecialization) { 9494 if (CurContext->isDependentContext() && CurContext->isRecord() 9495 && !isFriend) { 9496 isDependentClassScopeExplicitSpecialization = true; 9497 } else if (!NewFD->isInvalidDecl() && 9498 CheckFunctionTemplateSpecialization( 9499 NewFD, (HasExplicitTemplateArgs ? &TemplateArgs : nullptr), 9500 Previous)) 9501 NewFD->setInvalidDecl(); 9502 9503 // C++ [dcl.stc]p1: 9504 // A storage-class-specifier shall not be specified in an explicit 9505 // specialization (14.7.3) 9506 FunctionTemplateSpecializationInfo *Info = 9507 NewFD->getTemplateSpecializationInfo(); 9508 if (Info && SC != SC_None) { 9509 if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass()) 9510 Diag(NewFD->getLocation(), 9511 diag::err_explicit_specialization_inconsistent_storage_class) 9512 << SC 9513 << FixItHint::CreateRemoval( 9514 D.getDeclSpec().getStorageClassSpecLoc()); 9515 9516 else 9517 Diag(NewFD->getLocation(), 9518 diag::ext_explicit_specialization_storage_class) 9519 << FixItHint::CreateRemoval( 9520 D.getDeclSpec().getStorageClassSpecLoc()); 9521 } 9522 } else if (isMemberSpecialization && isa<CXXMethodDecl>(NewFD)) { 9523 if (CheckMemberSpecialization(NewFD, Previous)) 9524 NewFD->setInvalidDecl(); 9525 } 9526 9527 // Perform semantic checking on the function declaration. 9528 if (!isDependentClassScopeExplicitSpecialization) { 9529 if (!NewFD->isInvalidDecl() && NewFD->isMain()) 9530 CheckMain(NewFD, D.getDeclSpec()); 9531 9532 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint()) 9533 CheckMSVCRTEntryPoint(NewFD); 9534 9535 if (!NewFD->isInvalidDecl()) 9536 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 9537 isMemberSpecialization)); 9538 else if (!Previous.empty()) 9539 // Recover gracefully from an invalid redeclaration. 9540 D.setRedeclaration(true); 9541 } 9542 9543 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 9544 Previous.getResultKind() != LookupResult::FoundOverloaded) && 9545 "previous declaration set still overloaded"); 9546 9547 NamedDecl *PrincipalDecl = (FunctionTemplate 9548 ? cast<NamedDecl>(FunctionTemplate) 9549 : NewFD); 9550 9551 if (isFriend && NewFD->getPreviousDecl()) { 9552 AccessSpecifier Access = AS_public; 9553 if (!NewFD->isInvalidDecl()) 9554 Access = NewFD->getPreviousDecl()->getAccess(); 9555 9556 NewFD->setAccess(Access); 9557 if (FunctionTemplate) FunctionTemplate->setAccess(Access); 9558 } 9559 9560 if (NewFD->isOverloadedOperator() && !DC->isRecord() && 9561 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary)) 9562 PrincipalDecl->setNonMemberOperator(); 9563 9564 // If we have a function template, check the template parameter 9565 // list. This will check and merge default template arguments. 9566 if (FunctionTemplate) { 9567 FunctionTemplateDecl *PrevTemplate = 9568 FunctionTemplate->getPreviousDecl(); 9569 CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(), 9570 PrevTemplate ? PrevTemplate->getTemplateParameters() 9571 : nullptr, 9572 D.getDeclSpec().isFriendSpecified() 9573 ? (D.isFunctionDefinition() 9574 ? TPC_FriendFunctionTemplateDefinition 9575 : TPC_FriendFunctionTemplate) 9576 : (D.getCXXScopeSpec().isSet() && 9577 DC && DC->isRecord() && 9578 DC->isDependentContext()) 9579 ? TPC_ClassTemplateMember 9580 : TPC_FunctionTemplate); 9581 } 9582 9583 if (NewFD->isInvalidDecl()) { 9584 // Ignore all the rest of this. 9585 } else if (!D.isRedeclaration()) { 9586 struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists, 9587 AddToScope }; 9588 // Fake up an access specifier if it's supposed to be a class member. 9589 if (isa<CXXRecordDecl>(NewFD->getDeclContext())) 9590 NewFD->setAccess(AS_public); 9591 9592 // Qualified decls generally require a previous declaration. 9593 if (D.getCXXScopeSpec().isSet()) { 9594 // ...with the major exception of templated-scope or 9595 // dependent-scope friend declarations. 9596 9597 // TODO: we currently also suppress this check in dependent 9598 // contexts because (1) the parameter depth will be off when 9599 // matching friend templates and (2) we might actually be 9600 // selecting a friend based on a dependent factor. But there 9601 // are situations where these conditions don't apply and we 9602 // can actually do this check immediately. 9603 // 9604 // Unless the scope is dependent, it's always an error if qualified 9605 // redeclaration lookup found nothing at all. Diagnose that now; 9606 // nothing will diagnose that error later. 9607 if (isFriend && 9608 (D.getCXXScopeSpec().getScopeRep()->isDependent() || 9609 (!Previous.empty() && CurContext->isDependentContext()))) { 9610 // ignore these 9611 } else { 9612 // The user tried to provide an out-of-line definition for a 9613 // function that is a member of a class or namespace, but there 9614 // was no such member function declared (C++ [class.mfct]p2, 9615 // C++ [namespace.memdef]p2). For example: 9616 // 9617 // class X { 9618 // void f() const; 9619 // }; 9620 // 9621 // void X::f() { } // ill-formed 9622 // 9623 // Complain about this problem, and attempt to suggest close 9624 // matches (e.g., those that differ only in cv-qualifiers and 9625 // whether the parameter types are references). 9626 9627 if (NamedDecl *Result = DiagnoseInvalidRedeclaration( 9628 *this, Previous, NewFD, ExtraArgs, false, nullptr)) { 9629 AddToScope = ExtraArgs.AddToScope; 9630 return Result; 9631 } 9632 } 9633 9634 // Unqualified local friend declarations are required to resolve 9635 // to something. 9636 } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) { 9637 if (NamedDecl *Result = DiagnoseInvalidRedeclaration( 9638 *this, Previous, NewFD, ExtraArgs, true, S)) { 9639 AddToScope = ExtraArgs.AddToScope; 9640 return Result; 9641 } 9642 } 9643 } else if (!D.isFunctionDefinition() && 9644 isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() && 9645 !isFriend && !isFunctionTemplateSpecialization && 9646 !isMemberSpecialization) { 9647 // An out-of-line member function declaration must also be a 9648 // definition (C++ [class.mfct]p2). 9649 // Note that this is not the case for explicit specializations of 9650 // function templates or member functions of class templates, per 9651 // C++ [temp.expl.spec]p2. We also allow these declarations as an 9652 // extension for compatibility with old SWIG code which likes to 9653 // generate them. 9654 Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration) 9655 << D.getCXXScopeSpec().getRange(); 9656 } 9657 } 9658 9659 // If this is the first declaration of a library builtin function, add 9660 // attributes as appropriate. 9661 if (!D.isRedeclaration() && 9662 NewFD->getDeclContext()->getRedeclContext()->isFileContext()) { 9663 if (IdentifierInfo *II = Previous.getLookupName().getAsIdentifierInfo()) { 9664 if (unsigned BuiltinID = II->getBuiltinID()) { 9665 if (NewFD->getLanguageLinkage() == CLanguageLinkage) { 9666 // Validate the type matches unless this builtin is specified as 9667 // matching regardless of its declared type. 9668 if (Context.BuiltinInfo.allowTypeMismatch(BuiltinID)) { 9669 NewFD->addAttr(BuiltinAttr::CreateImplicit(Context, BuiltinID)); 9670 } else { 9671 ASTContext::GetBuiltinTypeError Error; 9672 LookupNecessaryTypesForBuiltin(S, BuiltinID); 9673 QualType BuiltinType = Context.GetBuiltinType(BuiltinID, Error); 9674 9675 if (!Error && !BuiltinType.isNull() && 9676 Context.hasSameFunctionTypeIgnoringExceptionSpec( 9677 NewFD->getType(), BuiltinType)) 9678 NewFD->addAttr(BuiltinAttr::CreateImplicit(Context, BuiltinID)); 9679 } 9680 } else if (BuiltinID == Builtin::BI__GetExceptionInfo && 9681 Context.getTargetInfo().getCXXABI().isMicrosoft()) { 9682 // FIXME: We should consider this a builtin only in the std namespace. 9683 NewFD->addAttr(BuiltinAttr::CreateImplicit(Context, BuiltinID)); 9684 } 9685 } 9686 } 9687 } 9688 9689 ProcessPragmaWeak(S, NewFD); 9690 checkAttributesAfterMerging(*this, *NewFD); 9691 9692 AddKnownFunctionAttributes(NewFD); 9693 9694 if (NewFD->hasAttr<OverloadableAttr>() && 9695 !NewFD->getType()->getAs<FunctionProtoType>()) { 9696 Diag(NewFD->getLocation(), 9697 diag::err_attribute_overloadable_no_prototype) 9698 << NewFD; 9699 9700 // Turn this into a variadic function with no parameters. 9701 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>(); 9702 FunctionProtoType::ExtProtoInfo EPI( 9703 Context.getDefaultCallingConvention(true, false)); 9704 EPI.Variadic = true; 9705 EPI.ExtInfo = FT->getExtInfo(); 9706 9707 QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI); 9708 NewFD->setType(R); 9709 } 9710 9711 // If there's a #pragma GCC visibility in scope, and this isn't a class 9712 // member, set the visibility of this function. 9713 if (!DC->isRecord() && NewFD->isExternallyVisible()) 9714 AddPushedVisibilityAttribute(NewFD); 9715 9716 // If there's a #pragma clang arc_cf_code_audited in scope, consider 9717 // marking the function. 9718 AddCFAuditedAttribute(NewFD); 9719 9720 // If this is a function definition, check if we have to apply optnone due to 9721 // a pragma. 9722 if(D.isFunctionDefinition()) 9723 AddRangeBasedOptnone(NewFD); 9724 9725 // If this is the first declaration of an extern C variable, update 9726 // the map of such variables. 9727 if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() && 9728 isIncompleteDeclExternC(*this, NewFD)) 9729 RegisterLocallyScopedExternCDecl(NewFD, S); 9730 9731 // Set this FunctionDecl's range up to the right paren. 9732 NewFD->setRangeEnd(D.getSourceRange().getEnd()); 9733 9734 if (D.isRedeclaration() && !Previous.empty()) { 9735 NamedDecl *Prev = Previous.getRepresentativeDecl(); 9736 checkDLLAttributeRedeclaration(*this, Prev, NewFD, 9737 isMemberSpecialization || 9738 isFunctionTemplateSpecialization, 9739 D.isFunctionDefinition()); 9740 } 9741 9742 if (getLangOpts().CUDA) { 9743 IdentifierInfo *II = NewFD->getIdentifier(); 9744 if (II && II->isStr(getCudaConfigureFuncName()) && 9745 !NewFD->isInvalidDecl() && 9746 NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 9747 if (!R->getAs<FunctionType>()->getReturnType()->isScalarType()) 9748 Diag(NewFD->getLocation(), diag::err_config_scalar_return) 9749 << getCudaConfigureFuncName(); 9750 Context.setcudaConfigureCallDecl(NewFD); 9751 } 9752 9753 // Variadic functions, other than a *declaration* of printf, are not allowed 9754 // in device-side CUDA code, unless someone passed 9755 // -fcuda-allow-variadic-functions. 9756 if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() && 9757 (NewFD->hasAttr<CUDADeviceAttr>() || 9758 NewFD->hasAttr<CUDAGlobalAttr>()) && 9759 !(II && II->isStr("printf") && NewFD->isExternC() && 9760 !D.isFunctionDefinition())) { 9761 Diag(NewFD->getLocation(), diag::err_variadic_device_fn); 9762 } 9763 } 9764 9765 MarkUnusedFileScopedDecl(NewFD); 9766 9767 9768 9769 if (getLangOpts().OpenCL && NewFD->hasAttr<OpenCLKernelAttr>()) { 9770 // OpenCL v1.2 s6.8 static is invalid for kernel functions. 9771 if ((getLangOpts().OpenCLVersion >= 120) 9772 && (SC == SC_Static)) { 9773 Diag(D.getIdentifierLoc(), diag::err_static_kernel); 9774 D.setInvalidType(); 9775 } 9776 9777 // OpenCL v1.2, s6.9 -- Kernels can only have return type void. 9778 if (!NewFD->getReturnType()->isVoidType()) { 9779 SourceRange RTRange = NewFD->getReturnTypeSourceRange(); 9780 Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type) 9781 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void") 9782 : FixItHint()); 9783 D.setInvalidType(); 9784 } 9785 9786 llvm::SmallPtrSet<const Type *, 16> ValidTypes; 9787 for (auto Param : NewFD->parameters()) 9788 checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes); 9789 9790 if (getLangOpts().OpenCLCPlusPlus) { 9791 if (DC->isRecord()) { 9792 Diag(D.getIdentifierLoc(), diag::err_method_kernel); 9793 D.setInvalidType(); 9794 } 9795 if (FunctionTemplate) { 9796 Diag(D.getIdentifierLoc(), diag::err_template_kernel); 9797 D.setInvalidType(); 9798 } 9799 } 9800 } 9801 9802 if (getLangOpts().CPlusPlus) { 9803 if (FunctionTemplate) { 9804 if (NewFD->isInvalidDecl()) 9805 FunctionTemplate->setInvalidDecl(); 9806 return FunctionTemplate; 9807 } 9808 9809 if (isMemberSpecialization && !NewFD->isInvalidDecl()) 9810 CompleteMemberSpecialization(NewFD, Previous); 9811 } 9812 9813 for (const ParmVarDecl *Param : NewFD->parameters()) { 9814 QualType PT = Param->getType(); 9815 9816 // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value 9817 // types. 9818 if (getLangOpts().OpenCLVersion >= 200 || getLangOpts().OpenCLCPlusPlus) { 9819 if(const PipeType *PipeTy = PT->getAs<PipeType>()) { 9820 QualType ElemTy = PipeTy->getElementType(); 9821 if (ElemTy->isReferenceType() || ElemTy->isPointerType()) { 9822 Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type ); 9823 D.setInvalidType(); 9824 } 9825 } 9826 } 9827 } 9828 9829 // Here we have an function template explicit specialization at class scope. 9830 // The actual specialization will be postponed to template instatiation 9831 // time via the ClassScopeFunctionSpecializationDecl node. 9832 if (isDependentClassScopeExplicitSpecialization) { 9833 ClassScopeFunctionSpecializationDecl *NewSpec = 9834 ClassScopeFunctionSpecializationDecl::Create( 9835 Context, CurContext, NewFD->getLocation(), 9836 cast<CXXMethodDecl>(NewFD), 9837 HasExplicitTemplateArgs, TemplateArgs); 9838 CurContext->addDecl(NewSpec); 9839 AddToScope = false; 9840 } 9841 9842 // Diagnose availability attributes. Availability cannot be used on functions 9843 // that are run during load/unload. 9844 if (const auto *attr = NewFD->getAttr<AvailabilityAttr>()) { 9845 if (NewFD->hasAttr<ConstructorAttr>()) { 9846 Diag(attr->getLocation(), diag::warn_availability_on_static_initializer) 9847 << 1; 9848 NewFD->dropAttr<AvailabilityAttr>(); 9849 } 9850 if (NewFD->hasAttr<DestructorAttr>()) { 9851 Diag(attr->getLocation(), diag::warn_availability_on_static_initializer) 9852 << 2; 9853 NewFD->dropAttr<AvailabilityAttr>(); 9854 } 9855 } 9856 9857 // Diagnose no_builtin attribute on function declaration that are not a 9858 // definition. 9859 // FIXME: We should really be doing this in 9860 // SemaDeclAttr.cpp::handleNoBuiltinAttr, unfortunately we only have access to 9861 // the FunctionDecl and at this point of the code 9862 // FunctionDecl::isThisDeclarationADefinition() which always returns `false` 9863 // because Sema::ActOnStartOfFunctionDef has not been called yet. 9864 if (const auto *NBA = NewFD->getAttr<NoBuiltinAttr>()) 9865 switch (D.getFunctionDefinitionKind()) { 9866 case FDK_Defaulted: 9867 case FDK_Deleted: 9868 Diag(NBA->getLocation(), 9869 diag::err_attribute_no_builtin_on_defaulted_deleted_function) 9870 << NBA->getSpelling(); 9871 break; 9872 case FDK_Declaration: 9873 Diag(NBA->getLocation(), diag::err_attribute_no_builtin_on_non_definition) 9874 << NBA->getSpelling(); 9875 break; 9876 case FDK_Definition: 9877 break; 9878 } 9879 9880 return NewFD; 9881 } 9882 9883 /// Return a CodeSegAttr from a containing class. The Microsoft docs say 9884 /// when __declspec(code_seg) "is applied to a class, all member functions of 9885 /// the class and nested classes -- this includes compiler-generated special 9886 /// member functions -- are put in the specified segment." 9887 /// The actual behavior is a little more complicated. The Microsoft compiler 9888 /// won't check outer classes if there is an active value from #pragma code_seg. 9889 /// The CodeSeg is always applied from the direct parent but only from outer 9890 /// classes when the #pragma code_seg stack is empty. See: 9891 /// https://reviews.llvm.org/D22931, the Microsoft feedback page is no longer 9892 /// available since MS has removed the page. 9893 static Attr *getImplicitCodeSegAttrFromClass(Sema &S, const FunctionDecl *FD) { 9894 const auto *Method = dyn_cast<CXXMethodDecl>(FD); 9895 if (!Method) 9896 return nullptr; 9897 const CXXRecordDecl *Parent = Method->getParent(); 9898 if (const auto *SAttr = Parent->getAttr<CodeSegAttr>()) { 9899 Attr *NewAttr = SAttr->clone(S.getASTContext()); 9900 NewAttr->setImplicit(true); 9901 return NewAttr; 9902 } 9903 9904 // The Microsoft compiler won't check outer classes for the CodeSeg 9905 // when the #pragma code_seg stack is active. 9906 if (S.CodeSegStack.CurrentValue) 9907 return nullptr; 9908 9909 while ((Parent = dyn_cast<CXXRecordDecl>(Parent->getParent()))) { 9910 if (const auto *SAttr = Parent->getAttr<CodeSegAttr>()) { 9911 Attr *NewAttr = SAttr->clone(S.getASTContext()); 9912 NewAttr->setImplicit(true); 9913 return NewAttr; 9914 } 9915 } 9916 return nullptr; 9917 } 9918 9919 /// Returns an implicit CodeSegAttr if a __declspec(code_seg) is found on a 9920 /// containing class. Otherwise it will return implicit SectionAttr if the 9921 /// function is a definition and there is an active value on CodeSegStack 9922 /// (from the current #pragma code-seg value). 9923 /// 9924 /// \param FD Function being declared. 9925 /// \param IsDefinition Whether it is a definition or just a declarartion. 9926 /// \returns A CodeSegAttr or SectionAttr to apply to the function or 9927 /// nullptr if no attribute should be added. 9928 Attr *Sema::getImplicitCodeSegOrSectionAttrForFunction(const FunctionDecl *FD, 9929 bool IsDefinition) { 9930 if (Attr *A = getImplicitCodeSegAttrFromClass(*this, FD)) 9931 return A; 9932 if (!FD->hasAttr<SectionAttr>() && IsDefinition && 9933 CodeSegStack.CurrentValue) 9934 return SectionAttr::CreateImplicit( 9935 getASTContext(), CodeSegStack.CurrentValue->getString(), 9936 CodeSegStack.CurrentPragmaLocation, AttributeCommonInfo::AS_Pragma, 9937 SectionAttr::Declspec_allocate); 9938 return nullptr; 9939 } 9940 9941 /// Determines if we can perform a correct type check for \p D as a 9942 /// redeclaration of \p PrevDecl. If not, we can generally still perform a 9943 /// best-effort check. 9944 /// 9945 /// \param NewD The new declaration. 9946 /// \param OldD The old declaration. 9947 /// \param NewT The portion of the type of the new declaration to check. 9948 /// \param OldT The portion of the type of the old declaration to check. 9949 bool Sema::canFullyTypeCheckRedeclaration(ValueDecl *NewD, ValueDecl *OldD, 9950 QualType NewT, QualType OldT) { 9951 if (!NewD->getLexicalDeclContext()->isDependentContext()) 9952 return true; 9953 9954 // For dependently-typed local extern declarations and friends, we can't 9955 // perform a correct type check in general until instantiation: 9956 // 9957 // int f(); 9958 // template<typename T> void g() { T f(); } 9959 // 9960 // (valid if g() is only instantiated with T = int). 9961 if (NewT->isDependentType() && 9962 (NewD->isLocalExternDecl() || NewD->getFriendObjectKind())) 9963 return false; 9964 9965 // Similarly, if the previous declaration was a dependent local extern 9966 // declaration, we don't really know its type yet. 9967 if (OldT->isDependentType() && OldD->isLocalExternDecl()) 9968 return false; 9969 9970 return true; 9971 } 9972 9973 /// Checks if the new declaration declared in dependent context must be 9974 /// put in the same redeclaration chain as the specified declaration. 9975 /// 9976 /// \param D Declaration that is checked. 9977 /// \param PrevDecl Previous declaration found with proper lookup method for the 9978 /// same declaration name. 9979 /// \returns True if D must be added to the redeclaration chain which PrevDecl 9980 /// belongs to. 9981 /// 9982 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) { 9983 if (!D->getLexicalDeclContext()->isDependentContext()) 9984 return true; 9985 9986 // Don't chain dependent friend function definitions until instantiation, to 9987 // permit cases like 9988 // 9989 // void func(); 9990 // template<typename T> class C1 { friend void func() {} }; 9991 // template<typename T> class C2 { friend void func() {} }; 9992 // 9993 // ... which is valid if only one of C1 and C2 is ever instantiated. 9994 // 9995 // FIXME: This need only apply to function definitions. For now, we proxy 9996 // this by checking for a file-scope function. We do not want this to apply 9997 // to friend declarations nominating member functions, because that gets in 9998 // the way of access checks. 9999 if (D->getFriendObjectKind() && D->getDeclContext()->isFileContext()) 10000 return false; 10001 10002 auto *VD = dyn_cast<ValueDecl>(D); 10003 auto *PrevVD = dyn_cast<ValueDecl>(PrevDecl); 10004 return !VD || !PrevVD || 10005 canFullyTypeCheckRedeclaration(VD, PrevVD, VD->getType(), 10006 PrevVD->getType()); 10007 } 10008 10009 /// Check the target attribute of the function for MultiVersion 10010 /// validity. 10011 /// 10012 /// Returns true if there was an error, false otherwise. 10013 static bool CheckMultiVersionValue(Sema &S, const FunctionDecl *FD) { 10014 const auto *TA = FD->getAttr<TargetAttr>(); 10015 assert(TA && "MultiVersion Candidate requires a target attribute"); 10016 ParsedTargetAttr ParseInfo = TA->parse(); 10017 const TargetInfo &TargetInfo = S.Context.getTargetInfo(); 10018 enum ErrType { Feature = 0, Architecture = 1 }; 10019 10020 if (!ParseInfo.Architecture.empty() && 10021 !TargetInfo.validateCpuIs(ParseInfo.Architecture)) { 10022 S.Diag(FD->getLocation(), diag::err_bad_multiversion_option) 10023 << Architecture << ParseInfo.Architecture; 10024 return true; 10025 } 10026 10027 for (const auto &Feat : ParseInfo.Features) { 10028 auto BareFeat = StringRef{Feat}.substr(1); 10029 if (Feat[0] == '-') { 10030 S.Diag(FD->getLocation(), diag::err_bad_multiversion_option) 10031 << Feature << ("no-" + BareFeat).str(); 10032 return true; 10033 } 10034 10035 if (!TargetInfo.validateCpuSupports(BareFeat) || 10036 !TargetInfo.isValidFeatureName(BareFeat)) { 10037 S.Diag(FD->getLocation(), diag::err_bad_multiversion_option) 10038 << Feature << BareFeat; 10039 return true; 10040 } 10041 } 10042 return false; 10043 } 10044 10045 // Provide a white-list of attributes that are allowed to be combined with 10046 // multiversion functions. 10047 static bool AttrCompatibleWithMultiVersion(attr::Kind Kind, 10048 MultiVersionKind MVType) { 10049 // Note: this list/diagnosis must match the list in 10050 // checkMultiversionAttributesAllSame. 10051 switch (Kind) { 10052 default: 10053 return false; 10054 case attr::Used: 10055 return MVType == MultiVersionKind::Target; 10056 case attr::NonNull: 10057 case attr::NoThrow: 10058 return true; 10059 } 10060 } 10061 10062 static bool checkNonMultiVersionCompatAttributes(Sema &S, 10063 const FunctionDecl *FD, 10064 const FunctionDecl *CausedFD, 10065 MultiVersionKind MVType) { 10066 bool IsCPUSpecificCPUDispatchMVType = 10067 MVType == MultiVersionKind::CPUDispatch || 10068 MVType == MultiVersionKind::CPUSpecific; 10069 const auto Diagnose = [FD, CausedFD, IsCPUSpecificCPUDispatchMVType]( 10070 Sema &S, const Attr *A) { 10071 S.Diag(FD->getLocation(), diag::err_multiversion_disallowed_other_attr) 10072 << IsCPUSpecificCPUDispatchMVType << A; 10073 if (CausedFD) 10074 S.Diag(CausedFD->getLocation(), diag::note_multiversioning_caused_here); 10075 return true; 10076 }; 10077 10078 for (const Attr *A : FD->attrs()) { 10079 switch (A->getKind()) { 10080 case attr::CPUDispatch: 10081 case attr::CPUSpecific: 10082 if (MVType != MultiVersionKind::CPUDispatch && 10083 MVType != MultiVersionKind::CPUSpecific) 10084 return Diagnose(S, A); 10085 break; 10086 case attr::Target: 10087 if (MVType != MultiVersionKind::Target) 10088 return Diagnose(S, A); 10089 break; 10090 default: 10091 if (!AttrCompatibleWithMultiVersion(A->getKind(), MVType)) 10092 return Diagnose(S, A); 10093 break; 10094 } 10095 } 10096 return false; 10097 } 10098 10099 bool Sema::areMultiversionVariantFunctionsCompatible( 10100 const FunctionDecl *OldFD, const FunctionDecl *NewFD, 10101 const PartialDiagnostic &NoProtoDiagID, 10102 const PartialDiagnosticAt &NoteCausedDiagIDAt, 10103 const PartialDiagnosticAt &NoSupportDiagIDAt, 10104 const PartialDiagnosticAt &DiffDiagIDAt, bool TemplatesSupported, 10105 bool ConstexprSupported, bool CLinkageMayDiffer) { 10106 enum DoesntSupport { 10107 FuncTemplates = 0, 10108 VirtFuncs = 1, 10109 DeducedReturn = 2, 10110 Constructors = 3, 10111 Destructors = 4, 10112 DeletedFuncs = 5, 10113 DefaultedFuncs = 6, 10114 ConstexprFuncs = 7, 10115 ConstevalFuncs = 8, 10116 }; 10117 enum Different { 10118 CallingConv = 0, 10119 ReturnType = 1, 10120 ConstexprSpec = 2, 10121 InlineSpec = 3, 10122 StorageClass = 4, 10123 Linkage = 5, 10124 }; 10125 10126 if (NoProtoDiagID.getDiagID() != 0 && OldFD && 10127 !OldFD->getType()->getAs<FunctionProtoType>()) { 10128 Diag(OldFD->getLocation(), NoProtoDiagID); 10129 Diag(NoteCausedDiagIDAt.first, NoteCausedDiagIDAt.second); 10130 return true; 10131 } 10132 10133 if (NoProtoDiagID.getDiagID() != 0 && 10134 !NewFD->getType()->getAs<FunctionProtoType>()) 10135 return Diag(NewFD->getLocation(), NoProtoDiagID); 10136 10137 if (!TemplatesSupported && 10138 NewFD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate) 10139 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10140 << FuncTemplates; 10141 10142 if (const auto *NewCXXFD = dyn_cast<CXXMethodDecl>(NewFD)) { 10143 if (NewCXXFD->isVirtual()) 10144 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10145 << VirtFuncs; 10146 10147 if (isa<CXXConstructorDecl>(NewCXXFD)) 10148 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10149 << Constructors; 10150 10151 if (isa<CXXDestructorDecl>(NewCXXFD)) 10152 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10153 << Destructors; 10154 } 10155 10156 if (NewFD->isDeleted()) 10157 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10158 << DeletedFuncs; 10159 10160 if (NewFD->isDefaulted()) 10161 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10162 << DefaultedFuncs; 10163 10164 if (!ConstexprSupported && NewFD->isConstexpr()) 10165 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10166 << (NewFD->isConsteval() ? ConstevalFuncs : ConstexprFuncs); 10167 10168 QualType NewQType = Context.getCanonicalType(NewFD->getType()); 10169 const auto *NewType = cast<FunctionType>(NewQType); 10170 QualType NewReturnType = NewType->getReturnType(); 10171 10172 if (NewReturnType->isUndeducedType()) 10173 return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second) 10174 << DeducedReturn; 10175 10176 // Ensure the return type is identical. 10177 if (OldFD) { 10178 QualType OldQType = Context.getCanonicalType(OldFD->getType()); 10179 const auto *OldType = cast<FunctionType>(OldQType); 10180 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); 10181 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); 10182 10183 if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) 10184 return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << CallingConv; 10185 10186 QualType OldReturnType = OldType->getReturnType(); 10187 10188 if (OldReturnType != NewReturnType) 10189 return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << ReturnType; 10190 10191 if (OldFD->getConstexprKind() != NewFD->getConstexprKind()) 10192 return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << ConstexprSpec; 10193 10194 if (OldFD->isInlineSpecified() != NewFD->isInlineSpecified()) 10195 return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << InlineSpec; 10196 10197 if (OldFD->getStorageClass() != NewFD->getStorageClass()) 10198 return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << StorageClass; 10199 10200 if (!CLinkageMayDiffer && OldFD->isExternC() != NewFD->isExternC()) 10201 return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << Linkage; 10202 10203 if (CheckEquivalentExceptionSpec( 10204 OldFD->getType()->getAs<FunctionProtoType>(), OldFD->getLocation(), 10205 NewFD->getType()->getAs<FunctionProtoType>(), NewFD->getLocation())) 10206 return true; 10207 } 10208 return false; 10209 } 10210 10211 static bool CheckMultiVersionAdditionalRules(Sema &S, const FunctionDecl *OldFD, 10212 const FunctionDecl *NewFD, 10213 bool CausesMV, 10214 MultiVersionKind MVType) { 10215 if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) { 10216 S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported); 10217 if (OldFD) 10218 S.Diag(OldFD->getLocation(), diag::note_previous_declaration); 10219 return true; 10220 } 10221 10222 bool IsCPUSpecificCPUDispatchMVType = 10223 MVType == MultiVersionKind::CPUDispatch || 10224 MVType == MultiVersionKind::CPUSpecific; 10225 10226 if (CausesMV && OldFD && 10227 checkNonMultiVersionCompatAttributes(S, OldFD, NewFD, MVType)) 10228 return true; 10229 10230 if (checkNonMultiVersionCompatAttributes(S, NewFD, nullptr, MVType)) 10231 return true; 10232 10233 // Only allow transition to MultiVersion if it hasn't been used. 10234 if (OldFD && CausesMV && OldFD->isUsed(false)) 10235 return S.Diag(NewFD->getLocation(), diag::err_multiversion_after_used); 10236 10237 return S.areMultiversionVariantFunctionsCompatible( 10238 OldFD, NewFD, S.PDiag(diag::err_multiversion_noproto), 10239 PartialDiagnosticAt(NewFD->getLocation(), 10240 S.PDiag(diag::note_multiversioning_caused_here)), 10241 PartialDiagnosticAt(NewFD->getLocation(), 10242 S.PDiag(diag::err_multiversion_doesnt_support) 10243 << IsCPUSpecificCPUDispatchMVType), 10244 PartialDiagnosticAt(NewFD->getLocation(), 10245 S.PDiag(diag::err_multiversion_diff)), 10246 /*TemplatesSupported=*/false, 10247 /*ConstexprSupported=*/!IsCPUSpecificCPUDispatchMVType, 10248 /*CLinkageMayDiffer=*/false); 10249 } 10250 10251 /// Check the validity of a multiversion function declaration that is the 10252 /// first of its kind. Also sets the multiversion'ness' of the function itself. 10253 /// 10254 /// This sets NewFD->isInvalidDecl() to true if there was an error. 10255 /// 10256 /// Returns true if there was an error, false otherwise. 10257 static bool CheckMultiVersionFirstFunction(Sema &S, FunctionDecl *FD, 10258 MultiVersionKind MVType, 10259 const TargetAttr *TA) { 10260 assert(MVType != MultiVersionKind::None && 10261 "Function lacks multiversion attribute"); 10262 10263 // Target only causes MV if it is default, otherwise this is a normal 10264 // function. 10265 if (MVType == MultiVersionKind::Target && !TA->isDefaultVersion()) 10266 return false; 10267 10268 if (MVType == MultiVersionKind::Target && CheckMultiVersionValue(S, FD)) { 10269 FD->setInvalidDecl(); 10270 return true; 10271 } 10272 10273 if (CheckMultiVersionAdditionalRules(S, nullptr, FD, true, MVType)) { 10274 FD->setInvalidDecl(); 10275 return true; 10276 } 10277 10278 FD->setIsMultiVersion(); 10279 return false; 10280 } 10281 10282 static bool PreviousDeclsHaveMultiVersionAttribute(const FunctionDecl *FD) { 10283 for (const Decl *D = FD->getPreviousDecl(); D; D = D->getPreviousDecl()) { 10284 if (D->getAsFunction()->getMultiVersionKind() != MultiVersionKind::None) 10285 return true; 10286 } 10287 10288 return false; 10289 } 10290 10291 static bool CheckTargetCausesMultiVersioning( 10292 Sema &S, FunctionDecl *OldFD, FunctionDecl *NewFD, const TargetAttr *NewTA, 10293 bool &Redeclaration, NamedDecl *&OldDecl, bool &MergeTypeWithPrevious, 10294 LookupResult &Previous) { 10295 const auto *OldTA = OldFD->getAttr<TargetAttr>(); 10296 ParsedTargetAttr NewParsed = NewTA->parse(); 10297 // Sort order doesn't matter, it just needs to be consistent. 10298 llvm::sort(NewParsed.Features); 10299 10300 // If the old decl is NOT MultiVersioned yet, and we don't cause that 10301 // to change, this is a simple redeclaration. 10302 if (!NewTA->isDefaultVersion() && 10303 (!OldTA || OldTA->getFeaturesStr() == NewTA->getFeaturesStr())) 10304 return false; 10305 10306 // Otherwise, this decl causes MultiVersioning. 10307 if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) { 10308 S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported); 10309 S.Diag(OldFD->getLocation(), diag::note_previous_declaration); 10310 NewFD->setInvalidDecl(); 10311 return true; 10312 } 10313 10314 if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, true, 10315 MultiVersionKind::Target)) { 10316 NewFD->setInvalidDecl(); 10317 return true; 10318 } 10319 10320 if (CheckMultiVersionValue(S, NewFD)) { 10321 NewFD->setInvalidDecl(); 10322 return true; 10323 } 10324 10325 // If this is 'default', permit the forward declaration. 10326 if (!OldFD->isMultiVersion() && !OldTA && NewTA->isDefaultVersion()) { 10327 Redeclaration = true; 10328 OldDecl = OldFD; 10329 OldFD->setIsMultiVersion(); 10330 NewFD->setIsMultiVersion(); 10331 return false; 10332 } 10333 10334 if (CheckMultiVersionValue(S, OldFD)) { 10335 S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here); 10336 NewFD->setInvalidDecl(); 10337 return true; 10338 } 10339 10340 ParsedTargetAttr OldParsed = OldTA->parse(std::less<std::string>()); 10341 10342 if (OldParsed == NewParsed) { 10343 S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate); 10344 S.Diag(OldFD->getLocation(), diag::note_previous_declaration); 10345 NewFD->setInvalidDecl(); 10346 return true; 10347 } 10348 10349 for (const auto *FD : OldFD->redecls()) { 10350 const auto *CurTA = FD->getAttr<TargetAttr>(); 10351 // We allow forward declarations before ANY multiversioning attributes, but 10352 // nothing after the fact. 10353 if (PreviousDeclsHaveMultiVersionAttribute(FD) && 10354 (!CurTA || CurTA->isInherited())) { 10355 S.Diag(FD->getLocation(), diag::err_multiversion_required_in_redecl) 10356 << 0; 10357 S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here); 10358 NewFD->setInvalidDecl(); 10359 return true; 10360 } 10361 } 10362 10363 OldFD->setIsMultiVersion(); 10364 NewFD->setIsMultiVersion(); 10365 Redeclaration = false; 10366 MergeTypeWithPrevious = false; 10367 OldDecl = nullptr; 10368 Previous.clear(); 10369 return false; 10370 } 10371 10372 /// Check the validity of a new function declaration being added to an existing 10373 /// multiversioned declaration collection. 10374 static bool CheckMultiVersionAdditionalDecl( 10375 Sema &S, FunctionDecl *OldFD, FunctionDecl *NewFD, 10376 MultiVersionKind NewMVType, const TargetAttr *NewTA, 10377 const CPUDispatchAttr *NewCPUDisp, const CPUSpecificAttr *NewCPUSpec, 10378 bool &Redeclaration, NamedDecl *&OldDecl, bool &MergeTypeWithPrevious, 10379 LookupResult &Previous) { 10380 10381 MultiVersionKind OldMVType = OldFD->getMultiVersionKind(); 10382 // Disallow mixing of multiversioning types. 10383 if ((OldMVType == MultiVersionKind::Target && 10384 NewMVType != MultiVersionKind::Target) || 10385 (NewMVType == MultiVersionKind::Target && 10386 OldMVType != MultiVersionKind::Target)) { 10387 S.Diag(NewFD->getLocation(), diag::err_multiversion_types_mixed); 10388 S.Diag(OldFD->getLocation(), diag::note_previous_declaration); 10389 NewFD->setInvalidDecl(); 10390 return true; 10391 } 10392 10393 ParsedTargetAttr NewParsed; 10394 if (NewTA) { 10395 NewParsed = NewTA->parse(); 10396 llvm::sort(NewParsed.Features); 10397 } 10398 10399 bool UseMemberUsingDeclRules = 10400 S.CurContext->isRecord() && !NewFD->getFriendObjectKind(); 10401 10402 // Next, check ALL non-overloads to see if this is a redeclaration of a 10403 // previous member of the MultiVersion set. 10404 for (NamedDecl *ND : Previous) { 10405 FunctionDecl *CurFD = ND->getAsFunction(); 10406 if (!CurFD) 10407 continue; 10408 if (S.IsOverload(NewFD, CurFD, UseMemberUsingDeclRules)) 10409 continue; 10410 10411 if (NewMVType == MultiVersionKind::Target) { 10412 const auto *CurTA = CurFD->getAttr<TargetAttr>(); 10413 if (CurTA->getFeaturesStr() == NewTA->getFeaturesStr()) { 10414 NewFD->setIsMultiVersion(); 10415 Redeclaration = true; 10416 OldDecl = ND; 10417 return false; 10418 } 10419 10420 ParsedTargetAttr CurParsed = CurTA->parse(std::less<std::string>()); 10421 if (CurParsed == NewParsed) { 10422 S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate); 10423 S.Diag(CurFD->getLocation(), diag::note_previous_declaration); 10424 NewFD->setInvalidDecl(); 10425 return true; 10426 } 10427 } else { 10428 const auto *CurCPUSpec = CurFD->getAttr<CPUSpecificAttr>(); 10429 const auto *CurCPUDisp = CurFD->getAttr<CPUDispatchAttr>(); 10430 // Handle CPUDispatch/CPUSpecific versions. 10431 // Only 1 CPUDispatch function is allowed, this will make it go through 10432 // the redeclaration errors. 10433 if (NewMVType == MultiVersionKind::CPUDispatch && 10434 CurFD->hasAttr<CPUDispatchAttr>()) { 10435 if (CurCPUDisp->cpus_size() == NewCPUDisp->cpus_size() && 10436 std::equal( 10437 CurCPUDisp->cpus_begin(), CurCPUDisp->cpus_end(), 10438 NewCPUDisp->cpus_begin(), 10439 [](const IdentifierInfo *Cur, const IdentifierInfo *New) { 10440 return Cur->getName() == New->getName(); 10441 })) { 10442 NewFD->setIsMultiVersion(); 10443 Redeclaration = true; 10444 OldDecl = ND; 10445 return false; 10446 } 10447 10448 // If the declarations don't match, this is an error condition. 10449 S.Diag(NewFD->getLocation(), diag::err_cpu_dispatch_mismatch); 10450 S.Diag(CurFD->getLocation(), diag::note_previous_declaration); 10451 NewFD->setInvalidDecl(); 10452 return true; 10453 } 10454 if (NewMVType == MultiVersionKind::CPUSpecific && CurCPUSpec) { 10455 10456 if (CurCPUSpec->cpus_size() == NewCPUSpec->cpus_size() && 10457 std::equal( 10458 CurCPUSpec->cpus_begin(), CurCPUSpec->cpus_end(), 10459 NewCPUSpec->cpus_begin(), 10460 [](const IdentifierInfo *Cur, const IdentifierInfo *New) { 10461 return Cur->getName() == New->getName(); 10462 })) { 10463 NewFD->setIsMultiVersion(); 10464 Redeclaration = true; 10465 OldDecl = ND; 10466 return false; 10467 } 10468 10469 // Only 1 version of CPUSpecific is allowed for each CPU. 10470 for (const IdentifierInfo *CurII : CurCPUSpec->cpus()) { 10471 for (const IdentifierInfo *NewII : NewCPUSpec->cpus()) { 10472 if (CurII == NewII) { 10473 S.Diag(NewFD->getLocation(), diag::err_cpu_specific_multiple_defs) 10474 << NewII; 10475 S.Diag(CurFD->getLocation(), diag::note_previous_declaration); 10476 NewFD->setInvalidDecl(); 10477 return true; 10478 } 10479 } 10480 } 10481 } 10482 // If the two decls aren't the same MVType, there is no possible error 10483 // condition. 10484 } 10485 } 10486 10487 // Else, this is simply a non-redecl case. Checking the 'value' is only 10488 // necessary in the Target case, since The CPUSpecific/Dispatch cases are 10489 // handled in the attribute adding step. 10490 if (NewMVType == MultiVersionKind::Target && 10491 CheckMultiVersionValue(S, NewFD)) { 10492 NewFD->setInvalidDecl(); 10493 return true; 10494 } 10495 10496 if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, 10497 !OldFD->isMultiVersion(), NewMVType)) { 10498 NewFD->setInvalidDecl(); 10499 return true; 10500 } 10501 10502 // Permit forward declarations in the case where these two are compatible. 10503 if (!OldFD->isMultiVersion()) { 10504 OldFD->setIsMultiVersion(); 10505 NewFD->setIsMultiVersion(); 10506 Redeclaration = true; 10507 OldDecl = OldFD; 10508 return false; 10509 } 10510 10511 NewFD->setIsMultiVersion(); 10512 Redeclaration = false; 10513 MergeTypeWithPrevious = false; 10514 OldDecl = nullptr; 10515 Previous.clear(); 10516 return false; 10517 } 10518 10519 10520 /// Check the validity of a mulitversion function declaration. 10521 /// Also sets the multiversion'ness' of the function itself. 10522 /// 10523 /// This sets NewFD->isInvalidDecl() to true if there was an error. 10524 /// 10525 /// Returns true if there was an error, false otherwise. 10526 static bool CheckMultiVersionFunction(Sema &S, FunctionDecl *NewFD, 10527 bool &Redeclaration, NamedDecl *&OldDecl, 10528 bool &MergeTypeWithPrevious, 10529 LookupResult &Previous) { 10530 const auto *NewTA = NewFD->getAttr<TargetAttr>(); 10531 const auto *NewCPUDisp = NewFD->getAttr<CPUDispatchAttr>(); 10532 const auto *NewCPUSpec = NewFD->getAttr<CPUSpecificAttr>(); 10533 10534 // Mixing Multiversioning types is prohibited. 10535 if ((NewTA && NewCPUDisp) || (NewTA && NewCPUSpec) || 10536 (NewCPUDisp && NewCPUSpec)) { 10537 S.Diag(NewFD->getLocation(), diag::err_multiversion_types_mixed); 10538 NewFD->setInvalidDecl(); 10539 return true; 10540 } 10541 10542 MultiVersionKind MVType = NewFD->getMultiVersionKind(); 10543 10544 // Main isn't allowed to become a multiversion function, however it IS 10545 // permitted to have 'main' be marked with the 'target' optimization hint. 10546 if (NewFD->isMain()) { 10547 if ((MVType == MultiVersionKind::Target && NewTA->isDefaultVersion()) || 10548 MVType == MultiVersionKind::CPUDispatch || 10549 MVType == MultiVersionKind::CPUSpecific) { 10550 S.Diag(NewFD->getLocation(), diag::err_multiversion_not_allowed_on_main); 10551 NewFD->setInvalidDecl(); 10552 return true; 10553 } 10554 return false; 10555 } 10556 10557 if (!OldDecl || !OldDecl->getAsFunction() || 10558 OldDecl->getDeclContext()->getRedeclContext() != 10559 NewFD->getDeclContext()->getRedeclContext()) { 10560 // If there's no previous declaration, AND this isn't attempting to cause 10561 // multiversioning, this isn't an error condition. 10562 if (MVType == MultiVersionKind::None) 10563 return false; 10564 return CheckMultiVersionFirstFunction(S, NewFD, MVType, NewTA); 10565 } 10566 10567 FunctionDecl *OldFD = OldDecl->getAsFunction(); 10568 10569 if (!OldFD->isMultiVersion() && MVType == MultiVersionKind::None) 10570 return false; 10571 10572 if (OldFD->isMultiVersion() && MVType == MultiVersionKind::None) { 10573 S.Diag(NewFD->getLocation(), diag::err_multiversion_required_in_redecl) 10574 << (OldFD->getMultiVersionKind() != MultiVersionKind::Target); 10575 NewFD->setInvalidDecl(); 10576 return true; 10577 } 10578 10579 // Handle the target potentially causes multiversioning case. 10580 if (!OldFD->isMultiVersion() && MVType == MultiVersionKind::Target) 10581 return CheckTargetCausesMultiVersioning(S, OldFD, NewFD, NewTA, 10582 Redeclaration, OldDecl, 10583 MergeTypeWithPrevious, Previous); 10584 10585 // At this point, we have a multiversion function decl (in OldFD) AND an 10586 // appropriate attribute in the current function decl. Resolve that these are 10587 // still compatible with previous declarations. 10588 return CheckMultiVersionAdditionalDecl( 10589 S, OldFD, NewFD, MVType, NewTA, NewCPUDisp, NewCPUSpec, Redeclaration, 10590 OldDecl, MergeTypeWithPrevious, Previous); 10591 } 10592 10593 /// Perform semantic checking of a new function declaration. 10594 /// 10595 /// Performs semantic analysis of the new function declaration 10596 /// NewFD. This routine performs all semantic checking that does not 10597 /// require the actual declarator involved in the declaration, and is 10598 /// used both for the declaration of functions as they are parsed 10599 /// (called via ActOnDeclarator) and for the declaration of functions 10600 /// that have been instantiated via C++ template instantiation (called 10601 /// via InstantiateDecl). 10602 /// 10603 /// \param IsMemberSpecialization whether this new function declaration is 10604 /// a member specialization (that replaces any definition provided by the 10605 /// previous declaration). 10606 /// 10607 /// This sets NewFD->isInvalidDecl() to true if there was an error. 10608 /// 10609 /// \returns true if the function declaration is a redeclaration. 10610 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD, 10611 LookupResult &Previous, 10612 bool IsMemberSpecialization) { 10613 assert(!NewFD->getReturnType()->isVariablyModifiedType() && 10614 "Variably modified return types are not handled here"); 10615 10616 // Determine whether the type of this function should be merged with 10617 // a previous visible declaration. This never happens for functions in C++, 10618 // and always happens in C if the previous declaration was visible. 10619 bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus && 10620 !Previous.isShadowed(); 10621 10622 bool Redeclaration = false; 10623 NamedDecl *OldDecl = nullptr; 10624 bool MayNeedOverloadableChecks = false; 10625 10626 // Merge or overload the declaration with an existing declaration of 10627 // the same name, if appropriate. 10628 if (!Previous.empty()) { 10629 // Determine whether NewFD is an overload of PrevDecl or 10630 // a declaration that requires merging. If it's an overload, 10631 // there's no more work to do here; we'll just add the new 10632 // function to the scope. 10633 if (!AllowOverloadingOfFunction(Previous, Context, NewFD)) { 10634 NamedDecl *Candidate = Previous.getRepresentativeDecl(); 10635 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) { 10636 Redeclaration = true; 10637 OldDecl = Candidate; 10638 } 10639 } else { 10640 MayNeedOverloadableChecks = true; 10641 switch (CheckOverload(S, NewFD, Previous, OldDecl, 10642 /*NewIsUsingDecl*/ false)) { 10643 case Ovl_Match: 10644 Redeclaration = true; 10645 break; 10646 10647 case Ovl_NonFunction: 10648 Redeclaration = true; 10649 break; 10650 10651 case Ovl_Overload: 10652 Redeclaration = false; 10653 break; 10654 } 10655 } 10656 } 10657 10658 // Check for a previous extern "C" declaration with this name. 10659 if (!Redeclaration && 10660 checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) { 10661 if (!Previous.empty()) { 10662 // This is an extern "C" declaration with the same name as a previous 10663 // declaration, and thus redeclares that entity... 10664 Redeclaration = true; 10665 OldDecl = Previous.getFoundDecl(); 10666 MergeTypeWithPrevious = false; 10667 10668 // ... except in the presence of __attribute__((overloadable)). 10669 if (OldDecl->hasAttr<OverloadableAttr>() || 10670 NewFD->hasAttr<OverloadableAttr>()) { 10671 if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) { 10672 MayNeedOverloadableChecks = true; 10673 Redeclaration = false; 10674 OldDecl = nullptr; 10675 } 10676 } 10677 } 10678 } 10679 10680 if (CheckMultiVersionFunction(*this, NewFD, Redeclaration, OldDecl, 10681 MergeTypeWithPrevious, Previous)) 10682 return Redeclaration; 10683 10684 // C++11 [dcl.constexpr]p8: 10685 // A constexpr specifier for a non-static member function that is not 10686 // a constructor declares that member function to be const. 10687 // 10688 // This needs to be delayed until we know whether this is an out-of-line 10689 // definition of a static member function. 10690 // 10691 // This rule is not present in C++1y, so we produce a backwards 10692 // compatibility warning whenever it happens in C++11. 10693 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 10694 if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() && 10695 !MD->isStatic() && !isa<CXXConstructorDecl>(MD) && 10696 !isa<CXXDestructorDecl>(MD) && !MD->getMethodQualifiers().hasConst()) { 10697 CXXMethodDecl *OldMD = nullptr; 10698 if (OldDecl) 10699 OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction()); 10700 if (!OldMD || !OldMD->isStatic()) { 10701 const FunctionProtoType *FPT = 10702 MD->getType()->castAs<FunctionProtoType>(); 10703 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 10704 EPI.TypeQuals.addConst(); 10705 MD->setType(Context.getFunctionType(FPT->getReturnType(), 10706 FPT->getParamTypes(), EPI)); 10707 10708 // Warn that we did this, if we're not performing template instantiation. 10709 // In that case, we'll have warned already when the template was defined. 10710 if (!inTemplateInstantiation()) { 10711 SourceLocation AddConstLoc; 10712 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc() 10713 .IgnoreParens().getAs<FunctionTypeLoc>()) 10714 AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc()); 10715 10716 Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const) 10717 << FixItHint::CreateInsertion(AddConstLoc, " const"); 10718 } 10719 } 10720 } 10721 10722 if (Redeclaration) { 10723 // NewFD and OldDecl represent declarations that need to be 10724 // merged. 10725 if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) { 10726 NewFD->setInvalidDecl(); 10727 return Redeclaration; 10728 } 10729 10730 Previous.clear(); 10731 Previous.addDecl(OldDecl); 10732 10733 if (FunctionTemplateDecl *OldTemplateDecl = 10734 dyn_cast<FunctionTemplateDecl>(OldDecl)) { 10735 auto *OldFD = OldTemplateDecl->getTemplatedDecl(); 10736 FunctionTemplateDecl *NewTemplateDecl 10737 = NewFD->getDescribedFunctionTemplate(); 10738 assert(NewTemplateDecl && "Template/non-template mismatch"); 10739 10740 // The call to MergeFunctionDecl above may have created some state in 10741 // NewTemplateDecl that needs to be merged with OldTemplateDecl before we 10742 // can add it as a redeclaration. 10743 NewTemplateDecl->mergePrevDecl(OldTemplateDecl); 10744 10745 NewFD->setPreviousDeclaration(OldFD); 10746 adjustDeclContextForDeclaratorDecl(NewFD, OldFD); 10747 if (NewFD->isCXXClassMember()) { 10748 NewFD->setAccess(OldTemplateDecl->getAccess()); 10749 NewTemplateDecl->setAccess(OldTemplateDecl->getAccess()); 10750 } 10751 10752 // If this is an explicit specialization of a member that is a function 10753 // template, mark it as a member specialization. 10754 if (IsMemberSpecialization && 10755 NewTemplateDecl->getInstantiatedFromMemberTemplate()) { 10756 NewTemplateDecl->setMemberSpecialization(); 10757 assert(OldTemplateDecl->isMemberSpecialization()); 10758 // Explicit specializations of a member template do not inherit deleted 10759 // status from the parent member template that they are specializing. 10760 if (OldFD->isDeleted()) { 10761 // FIXME: This assert will not hold in the presence of modules. 10762 assert(OldFD->getCanonicalDecl() == OldFD); 10763 // FIXME: We need an update record for this AST mutation. 10764 OldFD->setDeletedAsWritten(false); 10765 } 10766 } 10767 10768 } else { 10769 if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) { 10770 auto *OldFD = cast<FunctionDecl>(OldDecl); 10771 // This needs to happen first so that 'inline' propagates. 10772 NewFD->setPreviousDeclaration(OldFD); 10773 adjustDeclContextForDeclaratorDecl(NewFD, OldFD); 10774 if (NewFD->isCXXClassMember()) 10775 NewFD->setAccess(OldFD->getAccess()); 10776 } 10777 } 10778 } else if (!getLangOpts().CPlusPlus && MayNeedOverloadableChecks && 10779 !NewFD->getAttr<OverloadableAttr>()) { 10780 assert((Previous.empty() || 10781 llvm::any_of(Previous, 10782 [](const NamedDecl *ND) { 10783 return ND->hasAttr<OverloadableAttr>(); 10784 })) && 10785 "Non-redecls shouldn't happen without overloadable present"); 10786 10787 auto OtherUnmarkedIter = llvm::find_if(Previous, [](const NamedDecl *ND) { 10788 const auto *FD = dyn_cast<FunctionDecl>(ND); 10789 return FD && !FD->hasAttr<OverloadableAttr>(); 10790 }); 10791 10792 if (OtherUnmarkedIter != Previous.end()) { 10793 Diag(NewFD->getLocation(), 10794 diag::err_attribute_overloadable_multiple_unmarked_overloads); 10795 Diag((*OtherUnmarkedIter)->getLocation(), 10796 diag::note_attribute_overloadable_prev_overload) 10797 << false; 10798 10799 NewFD->addAttr(OverloadableAttr::CreateImplicit(Context)); 10800 } 10801 } 10802 10803 // Semantic checking for this function declaration (in isolation). 10804 10805 if (getLangOpts().CPlusPlus) { 10806 // C++-specific checks. 10807 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) { 10808 CheckConstructor(Constructor); 10809 } else if (CXXDestructorDecl *Destructor = 10810 dyn_cast<CXXDestructorDecl>(NewFD)) { 10811 CXXRecordDecl *Record = Destructor->getParent(); 10812 QualType ClassType = Context.getTypeDeclType(Record); 10813 10814 // FIXME: Shouldn't we be able to perform this check even when the class 10815 // type is dependent? Both gcc and edg can handle that. 10816 if (!ClassType->isDependentType()) { 10817 DeclarationName Name 10818 = Context.DeclarationNames.getCXXDestructorName( 10819 Context.getCanonicalType(ClassType)); 10820 if (NewFD->getDeclName() != Name) { 10821 Diag(NewFD->getLocation(), diag::err_destructor_name); 10822 NewFD->setInvalidDecl(); 10823 return Redeclaration; 10824 } 10825 } 10826 } else if (auto *Guide = dyn_cast<CXXDeductionGuideDecl>(NewFD)) { 10827 if (auto *TD = Guide->getDescribedFunctionTemplate()) 10828 CheckDeductionGuideTemplate(TD); 10829 10830 // A deduction guide is not on the list of entities that can be 10831 // explicitly specialized. 10832 if (Guide->getTemplateSpecializationKind() == TSK_ExplicitSpecialization) 10833 Diag(Guide->getBeginLoc(), diag::err_deduction_guide_specialized) 10834 << /*explicit specialization*/ 1; 10835 } 10836 10837 // Find any virtual functions that this function overrides. 10838 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) { 10839 if (!Method->isFunctionTemplateSpecialization() && 10840 !Method->getDescribedFunctionTemplate() && 10841 Method->isCanonicalDecl()) { 10842 AddOverriddenMethods(Method->getParent(), Method); 10843 } 10844 if (Method->isVirtual() && NewFD->getTrailingRequiresClause()) 10845 // C++2a [class.virtual]p6 10846 // A virtual method shall not have a requires-clause. 10847 Diag(NewFD->getTrailingRequiresClause()->getBeginLoc(), 10848 diag::err_constrained_virtual_method); 10849 10850 if (Method->isStatic()) 10851 checkThisInStaticMemberFunctionType(Method); 10852 } 10853 10854 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(NewFD)) 10855 ActOnConversionDeclarator(Conversion); 10856 10857 // Extra checking for C++ overloaded operators (C++ [over.oper]). 10858 if (NewFD->isOverloadedOperator() && 10859 CheckOverloadedOperatorDeclaration(NewFD)) { 10860 NewFD->setInvalidDecl(); 10861 return Redeclaration; 10862 } 10863 10864 // Extra checking for C++0x literal operators (C++0x [over.literal]). 10865 if (NewFD->getLiteralIdentifier() && 10866 CheckLiteralOperatorDeclaration(NewFD)) { 10867 NewFD->setInvalidDecl(); 10868 return Redeclaration; 10869 } 10870 10871 // In C++, check default arguments now that we have merged decls. Unless 10872 // the lexical context is the class, because in this case this is done 10873 // during delayed parsing anyway. 10874 if (!CurContext->isRecord()) 10875 CheckCXXDefaultArguments(NewFD); 10876 10877 // If this function declares a builtin function, check the type of this 10878 // declaration against the expected type for the builtin. 10879 if (unsigned BuiltinID = NewFD->getBuiltinID()) { 10880 ASTContext::GetBuiltinTypeError Error; 10881 LookupNecessaryTypesForBuiltin(S, BuiltinID); 10882 QualType T = Context.GetBuiltinType(BuiltinID, Error); 10883 // If the type of the builtin differs only in its exception 10884 // specification, that's OK. 10885 // FIXME: If the types do differ in this way, it would be better to 10886 // retain the 'noexcept' form of the type. 10887 if (!T.isNull() && 10888 !Context.hasSameFunctionTypeIgnoringExceptionSpec(T, 10889 NewFD->getType())) 10890 // The type of this function differs from the type of the builtin, 10891 // so forget about the builtin entirely. 10892 Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents); 10893 } 10894 10895 // If this function is declared as being extern "C", then check to see if 10896 // the function returns a UDT (class, struct, or union type) that is not C 10897 // compatible, and if it does, warn the user. 10898 // But, issue any diagnostic on the first declaration only. 10899 if (Previous.empty() && NewFD->isExternC()) { 10900 QualType R = NewFD->getReturnType(); 10901 if (R->isIncompleteType() && !R->isVoidType()) 10902 Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete) 10903 << NewFD << R; 10904 else if (!R.isPODType(Context) && !R->isVoidType() && 10905 !R->isObjCObjectPointerType()) 10906 Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R; 10907 } 10908 10909 // C++1z [dcl.fct]p6: 10910 // [...] whether the function has a non-throwing exception-specification 10911 // [is] part of the function type 10912 // 10913 // This results in an ABI break between C++14 and C++17 for functions whose 10914 // declared type includes an exception-specification in a parameter or 10915 // return type. (Exception specifications on the function itself are OK in 10916 // most cases, and exception specifications are not permitted in most other 10917 // contexts where they could make it into a mangling.) 10918 if (!getLangOpts().CPlusPlus17 && !NewFD->getPrimaryTemplate()) { 10919 auto HasNoexcept = [&](QualType T) -> bool { 10920 // Strip off declarator chunks that could be between us and a function 10921 // type. We don't need to look far, exception specifications are very 10922 // restricted prior to C++17. 10923 if (auto *RT = T->getAs<ReferenceType>()) 10924 T = RT->getPointeeType(); 10925 else if (T->isAnyPointerType()) 10926 T = T->getPointeeType(); 10927 else if (auto *MPT = T->getAs<MemberPointerType>()) 10928 T = MPT->getPointeeType(); 10929 if (auto *FPT = T->getAs<FunctionProtoType>()) 10930 if (FPT->isNothrow()) 10931 return true; 10932 return false; 10933 }; 10934 10935 auto *FPT = NewFD->getType()->castAs<FunctionProtoType>(); 10936 bool AnyNoexcept = HasNoexcept(FPT->getReturnType()); 10937 for (QualType T : FPT->param_types()) 10938 AnyNoexcept |= HasNoexcept(T); 10939 if (AnyNoexcept) 10940 Diag(NewFD->getLocation(), 10941 diag::warn_cxx17_compat_exception_spec_in_signature) 10942 << NewFD; 10943 } 10944 10945 if (!Redeclaration && LangOpts.CUDA) 10946 checkCUDATargetOverload(NewFD, Previous); 10947 } 10948 return Redeclaration; 10949 } 10950 10951 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) { 10952 // C++11 [basic.start.main]p3: 10953 // A program that [...] declares main to be inline, static or 10954 // constexpr is ill-formed. 10955 // C11 6.7.4p4: In a hosted environment, no function specifier(s) shall 10956 // appear in a declaration of main. 10957 // static main is not an error under C99, but we should warn about it. 10958 // We accept _Noreturn main as an extension. 10959 if (FD->getStorageClass() == SC_Static) 10960 Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus 10961 ? diag::err_static_main : diag::warn_static_main) 10962 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 10963 if (FD->isInlineSpecified()) 10964 Diag(DS.getInlineSpecLoc(), diag::err_inline_main) 10965 << FixItHint::CreateRemoval(DS.getInlineSpecLoc()); 10966 if (DS.isNoreturnSpecified()) { 10967 SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc(); 10968 SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc)); 10969 Diag(NoreturnLoc, diag::ext_noreturn_main); 10970 Diag(NoreturnLoc, diag::note_main_remove_noreturn) 10971 << FixItHint::CreateRemoval(NoreturnRange); 10972 } 10973 if (FD->isConstexpr()) { 10974 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main) 10975 << FD->isConsteval() 10976 << FixItHint::CreateRemoval(DS.getConstexprSpecLoc()); 10977 FD->setConstexprKind(CSK_unspecified); 10978 } 10979 10980 if (getLangOpts().OpenCL) { 10981 Diag(FD->getLocation(), diag::err_opencl_no_main) 10982 << FD->hasAttr<OpenCLKernelAttr>(); 10983 FD->setInvalidDecl(); 10984 return; 10985 } 10986 10987 QualType T = FD->getType(); 10988 assert(T->isFunctionType() && "function decl is not of function type"); 10989 const FunctionType* FT = T->castAs<FunctionType>(); 10990 10991 // Set default calling convention for main() 10992 if (FT->getCallConv() != CC_C) { 10993 FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(CC_C)); 10994 FD->setType(QualType(FT, 0)); 10995 T = Context.getCanonicalType(FD->getType()); 10996 } 10997 10998 if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) { 10999 // In C with GNU extensions we allow main() to have non-integer return 11000 // type, but we should warn about the extension, and we disable the 11001 // implicit-return-zero rule. 11002 11003 // GCC in C mode accepts qualified 'int'. 11004 if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy)) 11005 FD->setHasImplicitReturnZero(true); 11006 else { 11007 Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint); 11008 SourceRange RTRange = FD->getReturnTypeSourceRange(); 11009 if (RTRange.isValid()) 11010 Diag(RTRange.getBegin(), diag::note_main_change_return_type) 11011 << FixItHint::CreateReplacement(RTRange, "int"); 11012 } 11013 } else { 11014 // In C and C++, main magically returns 0 if you fall off the end; 11015 // set the flag which tells us that. 11016 // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3. 11017 11018 // All the standards say that main() should return 'int'. 11019 if (Context.hasSameType(FT->getReturnType(), Context.IntTy)) 11020 FD->setHasImplicitReturnZero(true); 11021 else { 11022 // Otherwise, this is just a flat-out error. 11023 SourceRange RTRange = FD->getReturnTypeSourceRange(); 11024 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint) 11025 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int") 11026 : FixItHint()); 11027 FD->setInvalidDecl(true); 11028 } 11029 } 11030 11031 // Treat protoless main() as nullary. 11032 if (isa<FunctionNoProtoType>(FT)) return; 11033 11034 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); 11035 unsigned nparams = FTP->getNumParams(); 11036 assert(FD->getNumParams() == nparams); 11037 11038 bool HasExtraParameters = (nparams > 3); 11039 11040 if (FTP->isVariadic()) { 11041 Diag(FD->getLocation(), diag::ext_variadic_main); 11042 // FIXME: if we had information about the location of the ellipsis, we 11043 // could add a FixIt hint to remove it as a parameter. 11044 } 11045 11046 // Darwin passes an undocumented fourth argument of type char**. If 11047 // other platforms start sprouting these, the logic below will start 11048 // getting shifty. 11049 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin()) 11050 HasExtraParameters = false; 11051 11052 if (HasExtraParameters) { 11053 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams; 11054 FD->setInvalidDecl(true); 11055 nparams = 3; 11056 } 11057 11058 // FIXME: a lot of the following diagnostics would be improved 11059 // if we had some location information about types. 11060 11061 QualType CharPP = 11062 Context.getPointerType(Context.getPointerType(Context.CharTy)); 11063 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP }; 11064 11065 for (unsigned i = 0; i < nparams; ++i) { 11066 QualType AT = FTP->getParamType(i); 11067 11068 bool mismatch = true; 11069 11070 if (Context.hasSameUnqualifiedType(AT, Expected[i])) 11071 mismatch = false; 11072 else if (Expected[i] == CharPP) { 11073 // As an extension, the following forms are okay: 11074 // char const ** 11075 // char const * const * 11076 // char * const * 11077 11078 QualifierCollector qs; 11079 const PointerType* PT; 11080 if ((PT = qs.strip(AT)->getAs<PointerType>()) && 11081 (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) && 11082 Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0), 11083 Context.CharTy)) { 11084 qs.removeConst(); 11085 mismatch = !qs.empty(); 11086 } 11087 } 11088 11089 if (mismatch) { 11090 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i]; 11091 // TODO: suggest replacing given type with expected type 11092 FD->setInvalidDecl(true); 11093 } 11094 } 11095 11096 if (nparams == 1 && !FD->isInvalidDecl()) { 11097 Diag(FD->getLocation(), diag::warn_main_one_arg); 11098 } 11099 11100 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 11101 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD; 11102 FD->setInvalidDecl(); 11103 } 11104 } 11105 11106 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) { 11107 QualType T = FD->getType(); 11108 assert(T->isFunctionType() && "function decl is not of function type"); 11109 const FunctionType *FT = T->castAs<FunctionType>(); 11110 11111 // Set an implicit return of 'zero' if the function can return some integral, 11112 // enumeration, pointer or nullptr type. 11113 if (FT->getReturnType()->isIntegralOrEnumerationType() || 11114 FT->getReturnType()->isAnyPointerType() || 11115 FT->getReturnType()->isNullPtrType()) 11116 // DllMain is exempt because a return value of zero means it failed. 11117 if (FD->getName() != "DllMain") 11118 FD->setHasImplicitReturnZero(true); 11119 11120 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 11121 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD; 11122 FD->setInvalidDecl(); 11123 } 11124 } 11125 11126 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) { 11127 // FIXME: Need strict checking. In C89, we need to check for 11128 // any assignment, increment, decrement, function-calls, or 11129 // commas outside of a sizeof. In C99, it's the same list, 11130 // except that the aforementioned are allowed in unevaluated 11131 // expressions. Everything else falls under the 11132 // "may accept other forms of constant expressions" exception. 11133 // 11134 // Regular C++ code will not end up here (exceptions: language extensions, 11135 // OpenCL C++ etc), so the constant expression rules there don't matter. 11136 if (Init->isValueDependent()) { 11137 assert(Init->containsErrors() && 11138 "Dependent code should only occur in error-recovery path."); 11139 return true; 11140 } 11141 const Expr *Culprit; 11142 if (Init->isConstantInitializer(Context, false, &Culprit)) 11143 return false; 11144 Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant) 11145 << Culprit->getSourceRange(); 11146 return true; 11147 } 11148 11149 namespace { 11150 // Visits an initialization expression to see if OrigDecl is evaluated in 11151 // its own initialization and throws a warning if it does. 11152 class SelfReferenceChecker 11153 : public EvaluatedExprVisitor<SelfReferenceChecker> { 11154 Sema &S; 11155 Decl *OrigDecl; 11156 bool isRecordType; 11157 bool isPODType; 11158 bool isReferenceType; 11159 11160 bool isInitList; 11161 llvm::SmallVector<unsigned, 4> InitFieldIndex; 11162 11163 public: 11164 typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited; 11165 11166 SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context), 11167 S(S), OrigDecl(OrigDecl) { 11168 isPODType = false; 11169 isRecordType = false; 11170 isReferenceType = false; 11171 isInitList = false; 11172 if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) { 11173 isPODType = VD->getType().isPODType(S.Context); 11174 isRecordType = VD->getType()->isRecordType(); 11175 isReferenceType = VD->getType()->isReferenceType(); 11176 } 11177 } 11178 11179 // For most expressions, just call the visitor. For initializer lists, 11180 // track the index of the field being initialized since fields are 11181 // initialized in order allowing use of previously initialized fields. 11182 void CheckExpr(Expr *E) { 11183 InitListExpr *InitList = dyn_cast<InitListExpr>(E); 11184 if (!InitList) { 11185 Visit(E); 11186 return; 11187 } 11188 11189 // Track and increment the index here. 11190 isInitList = true; 11191 InitFieldIndex.push_back(0); 11192 for (auto Child : InitList->children()) { 11193 CheckExpr(cast<Expr>(Child)); 11194 ++InitFieldIndex.back(); 11195 } 11196 InitFieldIndex.pop_back(); 11197 } 11198 11199 // Returns true if MemberExpr is checked and no further checking is needed. 11200 // Returns false if additional checking is required. 11201 bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) { 11202 llvm::SmallVector<FieldDecl*, 4> Fields; 11203 Expr *Base = E; 11204 bool ReferenceField = false; 11205 11206 // Get the field members used. 11207 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 11208 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 11209 if (!FD) 11210 return false; 11211 Fields.push_back(FD); 11212 if (FD->getType()->isReferenceType()) 11213 ReferenceField = true; 11214 Base = ME->getBase()->IgnoreParenImpCasts(); 11215 } 11216 11217 // Keep checking only if the base Decl is the same. 11218 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base); 11219 if (!DRE || DRE->getDecl() != OrigDecl) 11220 return false; 11221 11222 // A reference field can be bound to an unininitialized field. 11223 if (CheckReference && !ReferenceField) 11224 return true; 11225 11226 // Convert FieldDecls to their index number. 11227 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 11228 for (const FieldDecl *I : llvm::reverse(Fields)) 11229 UsedFieldIndex.push_back(I->getFieldIndex()); 11230 11231 // See if a warning is needed by checking the first difference in index 11232 // numbers. If field being used has index less than the field being 11233 // initialized, then the use is safe. 11234 for (auto UsedIter = UsedFieldIndex.begin(), 11235 UsedEnd = UsedFieldIndex.end(), 11236 OrigIter = InitFieldIndex.begin(), 11237 OrigEnd = InitFieldIndex.end(); 11238 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 11239 if (*UsedIter < *OrigIter) 11240 return true; 11241 if (*UsedIter > *OrigIter) 11242 break; 11243 } 11244 11245 // TODO: Add a different warning which will print the field names. 11246 HandleDeclRefExpr(DRE); 11247 return true; 11248 } 11249 11250 // For most expressions, the cast is directly above the DeclRefExpr. 11251 // For conditional operators, the cast can be outside the conditional 11252 // operator if both expressions are DeclRefExpr's. 11253 void HandleValue(Expr *E) { 11254 E = E->IgnoreParens(); 11255 if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) { 11256 HandleDeclRefExpr(DRE); 11257 return; 11258 } 11259 11260 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 11261 Visit(CO->getCond()); 11262 HandleValue(CO->getTrueExpr()); 11263 HandleValue(CO->getFalseExpr()); 11264 return; 11265 } 11266 11267 if (BinaryConditionalOperator *BCO = 11268 dyn_cast<BinaryConditionalOperator>(E)) { 11269 Visit(BCO->getCond()); 11270 HandleValue(BCO->getFalseExpr()); 11271 return; 11272 } 11273 11274 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 11275 HandleValue(OVE->getSourceExpr()); 11276 return; 11277 } 11278 11279 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 11280 if (BO->getOpcode() == BO_Comma) { 11281 Visit(BO->getLHS()); 11282 HandleValue(BO->getRHS()); 11283 return; 11284 } 11285 } 11286 11287 if (isa<MemberExpr>(E)) { 11288 if (isInitList) { 11289 if (CheckInitListMemberExpr(cast<MemberExpr>(E), 11290 false /*CheckReference*/)) 11291 return; 11292 } 11293 11294 Expr *Base = E->IgnoreParenImpCasts(); 11295 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 11296 // Check for static member variables and don't warn on them. 11297 if (!isa<FieldDecl>(ME->getMemberDecl())) 11298 return; 11299 Base = ME->getBase()->IgnoreParenImpCasts(); 11300 } 11301 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) 11302 HandleDeclRefExpr(DRE); 11303 return; 11304 } 11305 11306 Visit(E); 11307 } 11308 11309 // Reference types not handled in HandleValue are handled here since all 11310 // uses of references are bad, not just r-value uses. 11311 void VisitDeclRefExpr(DeclRefExpr *E) { 11312 if (isReferenceType) 11313 HandleDeclRefExpr(E); 11314 } 11315 11316 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 11317 if (E->getCastKind() == CK_LValueToRValue) { 11318 HandleValue(E->getSubExpr()); 11319 return; 11320 } 11321 11322 Inherited::VisitImplicitCastExpr(E); 11323 } 11324 11325 void VisitMemberExpr(MemberExpr *E) { 11326 if (isInitList) { 11327 if (CheckInitListMemberExpr(E, true /*CheckReference*/)) 11328 return; 11329 } 11330 11331 // Don't warn on arrays since they can be treated as pointers. 11332 if (E->getType()->canDecayToPointerType()) return; 11333 11334 // Warn when a non-static method call is followed by non-static member 11335 // field accesses, which is followed by a DeclRefExpr. 11336 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl()); 11337 bool Warn = (MD && !MD->isStatic()); 11338 Expr *Base = E->getBase()->IgnoreParenImpCasts(); 11339 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 11340 if (!isa<FieldDecl>(ME->getMemberDecl())) 11341 Warn = false; 11342 Base = ME->getBase()->IgnoreParenImpCasts(); 11343 } 11344 11345 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) { 11346 if (Warn) 11347 HandleDeclRefExpr(DRE); 11348 return; 11349 } 11350 11351 // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr. 11352 // Visit that expression. 11353 Visit(Base); 11354 } 11355 11356 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 11357 Expr *Callee = E->getCallee(); 11358 11359 if (isa<UnresolvedLookupExpr>(Callee)) 11360 return Inherited::VisitCXXOperatorCallExpr(E); 11361 11362 Visit(Callee); 11363 for (auto Arg: E->arguments()) 11364 HandleValue(Arg->IgnoreParenImpCasts()); 11365 } 11366 11367 void VisitUnaryOperator(UnaryOperator *E) { 11368 // For POD record types, addresses of its own members are well-defined. 11369 if (E->getOpcode() == UO_AddrOf && isRecordType && 11370 isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) { 11371 if (!isPODType) 11372 HandleValue(E->getSubExpr()); 11373 return; 11374 } 11375 11376 if (E->isIncrementDecrementOp()) { 11377 HandleValue(E->getSubExpr()); 11378 return; 11379 } 11380 11381 Inherited::VisitUnaryOperator(E); 11382 } 11383 11384 void VisitObjCMessageExpr(ObjCMessageExpr *E) {} 11385 11386 void VisitCXXConstructExpr(CXXConstructExpr *E) { 11387 if (E->getConstructor()->isCopyConstructor()) { 11388 Expr *ArgExpr = E->getArg(0); 11389 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 11390 if (ILE->getNumInits() == 1) 11391 ArgExpr = ILE->getInit(0); 11392 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 11393 if (ICE->getCastKind() == CK_NoOp) 11394 ArgExpr = ICE->getSubExpr(); 11395 HandleValue(ArgExpr); 11396 return; 11397 } 11398 Inherited::VisitCXXConstructExpr(E); 11399 } 11400 11401 void VisitCallExpr(CallExpr *E) { 11402 // Treat std::move as a use. 11403 if (E->isCallToStdMove()) { 11404 HandleValue(E->getArg(0)); 11405 return; 11406 } 11407 11408 Inherited::VisitCallExpr(E); 11409 } 11410 11411 void VisitBinaryOperator(BinaryOperator *E) { 11412 if (E->isCompoundAssignmentOp()) { 11413 HandleValue(E->getLHS()); 11414 Visit(E->getRHS()); 11415 return; 11416 } 11417 11418 Inherited::VisitBinaryOperator(E); 11419 } 11420 11421 // A custom visitor for BinaryConditionalOperator is needed because the 11422 // regular visitor would check the condition and true expression separately 11423 // but both point to the same place giving duplicate diagnostics. 11424 void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) { 11425 Visit(E->getCond()); 11426 Visit(E->getFalseExpr()); 11427 } 11428 11429 void HandleDeclRefExpr(DeclRefExpr *DRE) { 11430 Decl* ReferenceDecl = DRE->getDecl(); 11431 if (OrigDecl != ReferenceDecl) return; 11432 unsigned diag; 11433 if (isReferenceType) { 11434 diag = diag::warn_uninit_self_reference_in_reference_init; 11435 } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) { 11436 diag = diag::warn_static_self_reference_in_init; 11437 } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) || 11438 isa<NamespaceDecl>(OrigDecl->getDeclContext()) || 11439 DRE->getDecl()->getType()->isRecordType()) { 11440 diag = diag::warn_uninit_self_reference_in_init; 11441 } else { 11442 // Local variables will be handled by the CFG analysis. 11443 return; 11444 } 11445 11446 S.DiagRuntimeBehavior(DRE->getBeginLoc(), DRE, 11447 S.PDiag(diag) 11448 << DRE->getDecl() << OrigDecl->getLocation() 11449 << DRE->getSourceRange()); 11450 } 11451 }; 11452 11453 /// CheckSelfReference - Warns if OrigDecl is used in expression E. 11454 static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E, 11455 bool DirectInit) { 11456 // Parameters arguments are occassionially constructed with itself, 11457 // for instance, in recursive functions. Skip them. 11458 if (isa<ParmVarDecl>(OrigDecl)) 11459 return; 11460 11461 E = E->IgnoreParens(); 11462 11463 // Skip checking T a = a where T is not a record or reference type. 11464 // Doing so is a way to silence uninitialized warnings. 11465 if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType()) 11466 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) 11467 if (ICE->getCastKind() == CK_LValueToRValue) 11468 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) 11469 if (DRE->getDecl() == OrigDecl) 11470 return; 11471 11472 SelfReferenceChecker(S, OrigDecl).CheckExpr(E); 11473 } 11474 } // end anonymous namespace 11475 11476 namespace { 11477 // Simple wrapper to add the name of a variable or (if no variable is 11478 // available) a DeclarationName into a diagnostic. 11479 struct VarDeclOrName { 11480 VarDecl *VDecl; 11481 DeclarationName Name; 11482 11483 friend const Sema::SemaDiagnosticBuilder & 11484 operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) { 11485 return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name; 11486 } 11487 }; 11488 } // end anonymous namespace 11489 11490 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl, 11491 DeclarationName Name, QualType Type, 11492 TypeSourceInfo *TSI, 11493 SourceRange Range, bool DirectInit, 11494 Expr *Init) { 11495 bool IsInitCapture = !VDecl; 11496 assert((!VDecl || !VDecl->isInitCapture()) && 11497 "init captures are expected to be deduced prior to initialization"); 11498 11499 VarDeclOrName VN{VDecl, Name}; 11500 11501 DeducedType *Deduced = Type->getContainedDeducedType(); 11502 assert(Deduced && "deduceVarTypeFromInitializer for non-deduced type"); 11503 11504 // C++11 [dcl.spec.auto]p3 11505 if (!Init) { 11506 assert(VDecl && "no init for init capture deduction?"); 11507 11508 // Except for class argument deduction, and then for an initializing 11509 // declaration only, i.e. no static at class scope or extern. 11510 if (!isa<DeducedTemplateSpecializationType>(Deduced) || 11511 VDecl->hasExternalStorage() || 11512 VDecl->isStaticDataMember()) { 11513 Diag(VDecl->getLocation(), diag::err_auto_var_requires_init) 11514 << VDecl->getDeclName() << Type; 11515 return QualType(); 11516 } 11517 } 11518 11519 ArrayRef<Expr*> DeduceInits; 11520 if (Init) 11521 DeduceInits = Init; 11522 11523 if (DirectInit) { 11524 if (auto *PL = dyn_cast_or_null<ParenListExpr>(Init)) 11525 DeduceInits = PL->exprs(); 11526 } 11527 11528 if (isa<DeducedTemplateSpecializationType>(Deduced)) { 11529 assert(VDecl && "non-auto type for init capture deduction?"); 11530 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); 11531 InitializationKind Kind = InitializationKind::CreateForInit( 11532 VDecl->getLocation(), DirectInit, Init); 11533 // FIXME: Initialization should not be taking a mutable list of inits. 11534 SmallVector<Expr*, 8> InitsCopy(DeduceInits.begin(), DeduceInits.end()); 11535 return DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind, 11536 InitsCopy); 11537 } 11538 11539 if (DirectInit) { 11540 if (auto *IL = dyn_cast<InitListExpr>(Init)) 11541 DeduceInits = IL->inits(); 11542 } 11543 11544 // Deduction only works if we have exactly one source expression. 11545 if (DeduceInits.empty()) { 11546 // It isn't possible to write this directly, but it is possible to 11547 // end up in this situation with "auto x(some_pack...);" 11548 Diag(Init->getBeginLoc(), IsInitCapture 11549 ? diag::err_init_capture_no_expression 11550 : diag::err_auto_var_init_no_expression) 11551 << VN << Type << Range; 11552 return QualType(); 11553 } 11554 11555 if (DeduceInits.size() > 1) { 11556 Diag(DeduceInits[1]->getBeginLoc(), 11557 IsInitCapture ? diag::err_init_capture_multiple_expressions 11558 : diag::err_auto_var_init_multiple_expressions) 11559 << VN << Type << Range; 11560 return QualType(); 11561 } 11562 11563 Expr *DeduceInit = DeduceInits[0]; 11564 if (DirectInit && isa<InitListExpr>(DeduceInit)) { 11565 Diag(Init->getBeginLoc(), IsInitCapture 11566 ? diag::err_init_capture_paren_braces 11567 : diag::err_auto_var_init_paren_braces) 11568 << isa<InitListExpr>(Init) << VN << Type << Range; 11569 return QualType(); 11570 } 11571 11572 // Expressions default to 'id' when we're in a debugger. 11573 bool DefaultedAnyToId = false; 11574 if (getLangOpts().DebuggerCastResultToId && 11575 Init->getType() == Context.UnknownAnyTy && !IsInitCapture) { 11576 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 11577 if (Result.isInvalid()) { 11578 return QualType(); 11579 } 11580 Init = Result.get(); 11581 DefaultedAnyToId = true; 11582 } 11583 11584 // C++ [dcl.decomp]p1: 11585 // If the assignment-expression [...] has array type A and no ref-qualifier 11586 // is present, e has type cv A 11587 if (VDecl && isa<DecompositionDecl>(VDecl) && 11588 Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) && 11589 DeduceInit->getType()->isConstantArrayType()) 11590 return Context.getQualifiedType(DeduceInit->getType(), 11591 Type.getQualifiers()); 11592 11593 QualType DeducedType; 11594 if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) { 11595 if (!IsInitCapture) 11596 DiagnoseAutoDeductionFailure(VDecl, DeduceInit); 11597 else if (isa<InitListExpr>(Init)) 11598 Diag(Range.getBegin(), 11599 diag::err_init_capture_deduction_failure_from_init_list) 11600 << VN 11601 << (DeduceInit->getType().isNull() ? TSI->getType() 11602 : DeduceInit->getType()) 11603 << DeduceInit->getSourceRange(); 11604 else 11605 Diag(Range.getBegin(), diag::err_init_capture_deduction_failure) 11606 << VN << TSI->getType() 11607 << (DeduceInit->getType().isNull() ? TSI->getType() 11608 : DeduceInit->getType()) 11609 << DeduceInit->getSourceRange(); 11610 } 11611 11612 // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using 11613 // 'id' instead of a specific object type prevents most of our usual 11614 // checks. 11615 // We only want to warn outside of template instantiations, though: 11616 // inside a template, the 'id' could have come from a parameter. 11617 if (!inTemplateInstantiation() && !DefaultedAnyToId && !IsInitCapture && 11618 !DeducedType.isNull() && DeducedType->isObjCIdType()) { 11619 SourceLocation Loc = TSI->getTypeLoc().getBeginLoc(); 11620 Diag(Loc, diag::warn_auto_var_is_id) << VN << Range; 11621 } 11622 11623 return DeducedType; 11624 } 11625 11626 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit, 11627 Expr *Init) { 11628 assert(!Init || !Init->containsErrors()); 11629 QualType DeducedType = deduceVarTypeFromInitializer( 11630 VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(), 11631 VDecl->getSourceRange(), DirectInit, Init); 11632 if (DeducedType.isNull()) { 11633 VDecl->setInvalidDecl(); 11634 return true; 11635 } 11636 11637 VDecl->setType(DeducedType); 11638 assert(VDecl->isLinkageValid()); 11639 11640 // In ARC, infer lifetime. 11641 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl)) 11642 VDecl->setInvalidDecl(); 11643 11644 if (getLangOpts().OpenCL) 11645 deduceOpenCLAddressSpace(VDecl); 11646 11647 // If this is a redeclaration, check that the type we just deduced matches 11648 // the previously declared type. 11649 if (VarDecl *Old = VDecl->getPreviousDecl()) { 11650 // We never need to merge the type, because we cannot form an incomplete 11651 // array of auto, nor deduce such a type. 11652 MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false); 11653 } 11654 11655 // Check the deduced type is valid for a variable declaration. 11656 CheckVariableDeclarationType(VDecl); 11657 return VDecl->isInvalidDecl(); 11658 } 11659 11660 void Sema::checkNonTrivialCUnionInInitializer(const Expr *Init, 11661 SourceLocation Loc) { 11662 if (auto *EWC = dyn_cast<ExprWithCleanups>(Init)) 11663 Init = EWC->getSubExpr(); 11664 11665 if (auto *CE = dyn_cast<ConstantExpr>(Init)) 11666 Init = CE->getSubExpr(); 11667 11668 QualType InitType = Init->getType(); 11669 assert((InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion() || 11670 InitType.hasNonTrivialToPrimitiveCopyCUnion()) && 11671 "shouldn't be called if type doesn't have a non-trivial C struct"); 11672 if (auto *ILE = dyn_cast<InitListExpr>(Init)) { 11673 for (auto I : ILE->inits()) { 11674 if (!I->getType().hasNonTrivialToPrimitiveDefaultInitializeCUnion() && 11675 !I->getType().hasNonTrivialToPrimitiveCopyCUnion()) 11676 continue; 11677 SourceLocation SL = I->getExprLoc(); 11678 checkNonTrivialCUnionInInitializer(I, SL.isValid() ? SL : Loc); 11679 } 11680 return; 11681 } 11682 11683 if (isa<ImplicitValueInitExpr>(Init)) { 11684 if (InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion()) 11685 checkNonTrivialCUnion(InitType, Loc, NTCUC_DefaultInitializedObject, 11686 NTCUK_Init); 11687 } else { 11688 // Assume all other explicit initializers involving copying some existing 11689 // object. 11690 // TODO: ignore any explicit initializers where we can guarantee 11691 // copy-elision. 11692 if (InitType.hasNonTrivialToPrimitiveCopyCUnion()) 11693 checkNonTrivialCUnion(InitType, Loc, NTCUC_CopyInit, NTCUK_Copy); 11694 } 11695 } 11696 11697 namespace { 11698 11699 bool shouldIgnoreForRecordTriviality(const FieldDecl *FD) { 11700 // Ignore unavailable fields. A field can be marked as unavailable explicitly 11701 // in the source code or implicitly by the compiler if it is in a union 11702 // defined in a system header and has non-trivial ObjC ownership 11703 // qualifications. We don't want those fields to participate in determining 11704 // whether the containing union is non-trivial. 11705 return FD->hasAttr<UnavailableAttr>(); 11706 } 11707 11708 struct DiagNonTrivalCUnionDefaultInitializeVisitor 11709 : DefaultInitializedTypeVisitor<DiagNonTrivalCUnionDefaultInitializeVisitor, 11710 void> { 11711 using Super = 11712 DefaultInitializedTypeVisitor<DiagNonTrivalCUnionDefaultInitializeVisitor, 11713 void>; 11714 11715 DiagNonTrivalCUnionDefaultInitializeVisitor( 11716 QualType OrigTy, SourceLocation OrigLoc, 11717 Sema::NonTrivialCUnionContext UseContext, Sema &S) 11718 : OrigTy(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {} 11719 11720 void visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType QT, 11721 const FieldDecl *FD, bool InNonTrivialUnion) { 11722 if (const auto *AT = S.Context.getAsArrayType(QT)) 11723 return this->asDerived().visit(S.Context.getBaseElementType(AT), FD, 11724 InNonTrivialUnion); 11725 return Super::visitWithKind(PDIK, QT, FD, InNonTrivialUnion); 11726 } 11727 11728 void visitARCStrong(QualType QT, const FieldDecl *FD, 11729 bool InNonTrivialUnion) { 11730 if (InNonTrivialUnion) 11731 S.Diag(FD->getLocation(), diag::note_non_trivial_c_union) 11732 << 1 << 0 << QT << FD->getName(); 11733 } 11734 11735 void visitARCWeak(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) { 11736 if (InNonTrivialUnion) 11737 S.Diag(FD->getLocation(), diag::note_non_trivial_c_union) 11738 << 1 << 0 << QT << FD->getName(); 11739 } 11740 11741 void visitStruct(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) { 11742 const RecordDecl *RD = QT->castAs<RecordType>()->getDecl(); 11743 if (RD->isUnion()) { 11744 if (OrigLoc.isValid()) { 11745 bool IsUnion = false; 11746 if (auto *OrigRD = OrigTy->getAsRecordDecl()) 11747 IsUnion = OrigRD->isUnion(); 11748 S.Diag(OrigLoc, diag::err_non_trivial_c_union_in_invalid_context) 11749 << 0 << OrigTy << IsUnion << UseContext; 11750 // Reset OrigLoc so that this diagnostic is emitted only once. 11751 OrigLoc = SourceLocation(); 11752 } 11753 InNonTrivialUnion = true; 11754 } 11755 11756 if (InNonTrivialUnion) 11757 S.Diag(RD->getLocation(), diag::note_non_trivial_c_union) 11758 << 0 << 0 << QT.getUnqualifiedType() << ""; 11759 11760 for (const FieldDecl *FD : RD->fields()) 11761 if (!shouldIgnoreForRecordTriviality(FD)) 11762 asDerived().visit(FD->getType(), FD, InNonTrivialUnion); 11763 } 11764 11765 void visitTrivial(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {} 11766 11767 // The non-trivial C union type or the struct/union type that contains a 11768 // non-trivial C union. 11769 QualType OrigTy; 11770 SourceLocation OrigLoc; 11771 Sema::NonTrivialCUnionContext UseContext; 11772 Sema &S; 11773 }; 11774 11775 struct DiagNonTrivalCUnionDestructedTypeVisitor 11776 : DestructedTypeVisitor<DiagNonTrivalCUnionDestructedTypeVisitor, void> { 11777 using Super = 11778 DestructedTypeVisitor<DiagNonTrivalCUnionDestructedTypeVisitor, void>; 11779 11780 DiagNonTrivalCUnionDestructedTypeVisitor( 11781 QualType OrigTy, SourceLocation OrigLoc, 11782 Sema::NonTrivialCUnionContext UseContext, Sema &S) 11783 : OrigTy(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {} 11784 11785 void visitWithKind(QualType::DestructionKind DK, QualType QT, 11786 const FieldDecl *FD, bool InNonTrivialUnion) { 11787 if (const auto *AT = S.Context.getAsArrayType(QT)) 11788 return this->asDerived().visit(S.Context.getBaseElementType(AT), FD, 11789 InNonTrivialUnion); 11790 return Super::visitWithKind(DK, QT, FD, InNonTrivialUnion); 11791 } 11792 11793 void visitARCStrong(QualType QT, const FieldDecl *FD, 11794 bool InNonTrivialUnion) { 11795 if (InNonTrivialUnion) 11796 S.Diag(FD->getLocation(), diag::note_non_trivial_c_union) 11797 << 1 << 1 << QT << FD->getName(); 11798 } 11799 11800 void visitARCWeak(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) { 11801 if (InNonTrivialUnion) 11802 S.Diag(FD->getLocation(), diag::note_non_trivial_c_union) 11803 << 1 << 1 << QT << FD->getName(); 11804 } 11805 11806 void visitStruct(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) { 11807 const RecordDecl *RD = QT->castAs<RecordType>()->getDecl(); 11808 if (RD->isUnion()) { 11809 if (OrigLoc.isValid()) { 11810 bool IsUnion = false; 11811 if (auto *OrigRD = OrigTy->getAsRecordDecl()) 11812 IsUnion = OrigRD->isUnion(); 11813 S.Diag(OrigLoc, diag::err_non_trivial_c_union_in_invalid_context) 11814 << 1 << OrigTy << IsUnion << UseContext; 11815 // Reset OrigLoc so that this diagnostic is emitted only once. 11816 OrigLoc = SourceLocation(); 11817 } 11818 InNonTrivialUnion = true; 11819 } 11820 11821 if (InNonTrivialUnion) 11822 S.Diag(RD->getLocation(), diag::note_non_trivial_c_union) 11823 << 0 << 1 << QT.getUnqualifiedType() << ""; 11824 11825 for (const FieldDecl *FD : RD->fields()) 11826 if (!shouldIgnoreForRecordTriviality(FD)) 11827 asDerived().visit(FD->getType(), FD, InNonTrivialUnion); 11828 } 11829 11830 void visitTrivial(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {} 11831 void visitCXXDestructor(QualType QT, const FieldDecl *FD, 11832 bool InNonTrivialUnion) {} 11833 11834 // The non-trivial C union type or the struct/union type that contains a 11835 // non-trivial C union. 11836 QualType OrigTy; 11837 SourceLocation OrigLoc; 11838 Sema::NonTrivialCUnionContext UseContext; 11839 Sema &S; 11840 }; 11841 11842 struct DiagNonTrivalCUnionCopyVisitor 11843 : CopiedTypeVisitor<DiagNonTrivalCUnionCopyVisitor, false, void> { 11844 using Super = CopiedTypeVisitor<DiagNonTrivalCUnionCopyVisitor, false, void>; 11845 11846 DiagNonTrivalCUnionCopyVisitor(QualType OrigTy, SourceLocation OrigLoc, 11847 Sema::NonTrivialCUnionContext UseContext, 11848 Sema &S) 11849 : OrigTy(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {} 11850 11851 void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType QT, 11852 const FieldDecl *FD, bool InNonTrivialUnion) { 11853 if (const auto *AT = S.Context.getAsArrayType(QT)) 11854 return this->asDerived().visit(S.Context.getBaseElementType(AT), FD, 11855 InNonTrivialUnion); 11856 return Super::visitWithKind(PCK, QT, FD, InNonTrivialUnion); 11857 } 11858 11859 void visitARCStrong(QualType QT, const FieldDecl *FD, 11860 bool InNonTrivialUnion) { 11861 if (InNonTrivialUnion) 11862 S.Diag(FD->getLocation(), diag::note_non_trivial_c_union) 11863 << 1 << 2 << QT << FD->getName(); 11864 } 11865 11866 void visitARCWeak(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) { 11867 if (InNonTrivialUnion) 11868 S.Diag(FD->getLocation(), diag::note_non_trivial_c_union) 11869 << 1 << 2 << QT << FD->getName(); 11870 } 11871 11872 void visitStruct(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) { 11873 const RecordDecl *RD = QT->castAs<RecordType>()->getDecl(); 11874 if (RD->isUnion()) { 11875 if (OrigLoc.isValid()) { 11876 bool IsUnion = false; 11877 if (auto *OrigRD = OrigTy->getAsRecordDecl()) 11878 IsUnion = OrigRD->isUnion(); 11879 S.Diag(OrigLoc, diag::err_non_trivial_c_union_in_invalid_context) 11880 << 2 << OrigTy << IsUnion << UseContext; 11881 // Reset OrigLoc so that this diagnostic is emitted only once. 11882 OrigLoc = SourceLocation(); 11883 } 11884 InNonTrivialUnion = true; 11885 } 11886 11887 if (InNonTrivialUnion) 11888 S.Diag(RD->getLocation(), diag::note_non_trivial_c_union) 11889 << 0 << 2 << QT.getUnqualifiedType() << ""; 11890 11891 for (const FieldDecl *FD : RD->fields()) 11892 if (!shouldIgnoreForRecordTriviality(FD)) 11893 asDerived().visit(FD->getType(), FD, InNonTrivialUnion); 11894 } 11895 11896 void preVisit(QualType::PrimitiveCopyKind PCK, QualType QT, 11897 const FieldDecl *FD, bool InNonTrivialUnion) {} 11898 void visitTrivial(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {} 11899 void visitVolatileTrivial(QualType QT, const FieldDecl *FD, 11900 bool InNonTrivialUnion) {} 11901 11902 // The non-trivial C union type or the struct/union type that contains a 11903 // non-trivial C union. 11904 QualType OrigTy; 11905 SourceLocation OrigLoc; 11906 Sema::NonTrivialCUnionContext UseContext; 11907 Sema &S; 11908 }; 11909 11910 } // namespace 11911 11912 void Sema::checkNonTrivialCUnion(QualType QT, SourceLocation Loc, 11913 NonTrivialCUnionContext UseContext, 11914 unsigned NonTrivialKind) { 11915 assert((QT.hasNonTrivialToPrimitiveDefaultInitializeCUnion() || 11916 QT.hasNonTrivialToPrimitiveDestructCUnion() || 11917 QT.hasNonTrivialToPrimitiveCopyCUnion()) && 11918 "shouldn't be called if type doesn't have a non-trivial C union"); 11919 11920 if ((NonTrivialKind & NTCUK_Init) && 11921 QT.hasNonTrivialToPrimitiveDefaultInitializeCUnion()) 11922 DiagNonTrivalCUnionDefaultInitializeVisitor(QT, Loc, UseContext, *this) 11923 .visit(QT, nullptr, false); 11924 if ((NonTrivialKind & NTCUK_Destruct) && 11925 QT.hasNonTrivialToPrimitiveDestructCUnion()) 11926 DiagNonTrivalCUnionDestructedTypeVisitor(QT, Loc, UseContext, *this) 11927 .visit(QT, nullptr, false); 11928 if ((NonTrivialKind & NTCUK_Copy) && QT.hasNonTrivialToPrimitiveCopyCUnion()) 11929 DiagNonTrivalCUnionCopyVisitor(QT, Loc, UseContext, *this) 11930 .visit(QT, nullptr, false); 11931 } 11932 11933 /// AddInitializerToDecl - Adds the initializer Init to the 11934 /// declaration dcl. If DirectInit is true, this is C++ direct 11935 /// initialization rather than copy initialization. 11936 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) { 11937 // If there is no declaration, there was an error parsing it. Just ignore 11938 // the initializer. 11939 if (!RealDecl || RealDecl->isInvalidDecl()) { 11940 CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl)); 11941 return; 11942 } 11943 11944 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) { 11945 // Pure-specifiers are handled in ActOnPureSpecifier. 11946 Diag(Method->getLocation(), diag::err_member_function_initialization) 11947 << Method->getDeclName() << Init->getSourceRange(); 11948 Method->setInvalidDecl(); 11949 return; 11950 } 11951 11952 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); 11953 if (!VDecl) { 11954 assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here"); 11955 Diag(RealDecl->getLocation(), diag::err_illegal_initializer); 11956 RealDecl->setInvalidDecl(); 11957 return; 11958 } 11959 11960 // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for. 11961 if (VDecl->getType()->isUndeducedType()) { 11962 // Attempt typo correction early so that the type of the init expression can 11963 // be deduced based on the chosen correction if the original init contains a 11964 // TypoExpr. 11965 ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl); 11966 if (!Res.isUsable()) { 11967 // There are unresolved typos in Init, just drop them. 11968 // FIXME: improve the recovery strategy to preserve the Init. 11969 RealDecl->setInvalidDecl(); 11970 return; 11971 } 11972 if (Res.get()->containsErrors()) { 11973 // Invalidate the decl as we don't know the type for recovery-expr yet. 11974 RealDecl->setInvalidDecl(); 11975 VDecl->setInit(Res.get()); 11976 return; 11977 } 11978 Init = Res.get(); 11979 11980 if (DeduceVariableDeclarationType(VDecl, DirectInit, Init)) 11981 return; 11982 } 11983 11984 // dllimport cannot be used on variable definitions. 11985 if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) { 11986 Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition); 11987 VDecl->setInvalidDecl(); 11988 return; 11989 } 11990 11991 if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) { 11992 // C99 6.7.8p5. C++ has no such restriction, but that is a defect. 11993 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init); 11994 VDecl->setInvalidDecl(); 11995 return; 11996 } 11997 11998 if (!VDecl->getType()->isDependentType()) { 11999 // A definition must end up with a complete type, which means it must be 12000 // complete with the restriction that an array type might be completed by 12001 // the initializer; note that later code assumes this restriction. 12002 QualType BaseDeclType = VDecl->getType(); 12003 if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType)) 12004 BaseDeclType = Array->getElementType(); 12005 if (RequireCompleteType(VDecl->getLocation(), BaseDeclType, 12006 diag::err_typecheck_decl_incomplete_type)) { 12007 RealDecl->setInvalidDecl(); 12008 return; 12009 } 12010 12011 // The variable can not have an abstract class type. 12012 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(), 12013 diag::err_abstract_type_in_decl, 12014 AbstractVariableType)) 12015 VDecl->setInvalidDecl(); 12016 } 12017 12018 // If adding the initializer will turn this declaration into a definition, 12019 // and we already have a definition for this variable, diagnose or otherwise 12020 // handle the situation. 12021 VarDecl *Def; 12022 if ((Def = VDecl->getDefinition()) && Def != VDecl && 12023 (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) && 12024 !VDecl->isThisDeclarationADemotedDefinition() && 12025 checkVarDeclRedefinition(Def, VDecl)) 12026 return; 12027 12028 if (getLangOpts().CPlusPlus) { 12029 // C++ [class.static.data]p4 12030 // If a static data member is of const integral or const 12031 // enumeration type, its declaration in the class definition can 12032 // specify a constant-initializer which shall be an integral 12033 // constant expression (5.19). In that case, the member can appear 12034 // in integral constant expressions. The member shall still be 12035 // defined in a namespace scope if it is used in the program and the 12036 // namespace scope definition shall not contain an initializer. 12037 // 12038 // We already performed a redefinition check above, but for static 12039 // data members we also need to check whether there was an in-class 12040 // declaration with an initializer. 12041 if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) { 12042 Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization) 12043 << VDecl->getDeclName(); 12044 Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(), 12045 diag::note_previous_initializer) 12046 << 0; 12047 return; 12048 } 12049 12050 if (VDecl->hasLocalStorage()) 12051 setFunctionHasBranchProtectedScope(); 12052 12053 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) { 12054 VDecl->setInvalidDecl(); 12055 return; 12056 } 12057 } 12058 12059 // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside 12060 // a kernel function cannot be initialized." 12061 if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) { 12062 Diag(VDecl->getLocation(), diag::err_local_cant_init); 12063 VDecl->setInvalidDecl(); 12064 return; 12065 } 12066 12067 // The LoaderUninitialized attribute acts as a definition (of undef). 12068 if (VDecl->hasAttr<LoaderUninitializedAttr>()) { 12069 Diag(VDecl->getLocation(), diag::err_loader_uninitialized_cant_init); 12070 VDecl->setInvalidDecl(); 12071 return; 12072 } 12073 12074 // Get the decls type and save a reference for later, since 12075 // CheckInitializerTypes may change it. 12076 QualType DclT = VDecl->getType(), SavT = DclT; 12077 12078 // Expressions default to 'id' when we're in a debugger 12079 // and we are assigning it to a variable of Objective-C pointer type. 12080 if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() && 12081 Init->getType() == Context.UnknownAnyTy) { 12082 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 12083 if (Result.isInvalid()) { 12084 VDecl->setInvalidDecl(); 12085 return; 12086 } 12087 Init = Result.get(); 12088 } 12089 12090 // Perform the initialization. 12091 ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init); 12092 if (!VDecl->isInvalidDecl()) { 12093 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); 12094 InitializationKind Kind = InitializationKind::CreateForInit( 12095 VDecl->getLocation(), DirectInit, Init); 12096 12097 MultiExprArg Args = Init; 12098 if (CXXDirectInit) 12099 Args = MultiExprArg(CXXDirectInit->getExprs(), 12100 CXXDirectInit->getNumExprs()); 12101 12102 // Try to correct any TypoExprs in the initialization arguments. 12103 for (size_t Idx = 0; Idx < Args.size(); ++Idx) { 12104 ExprResult Res = CorrectDelayedTyposInExpr( 12105 Args[Idx], VDecl, /*RecoverUncorrectedTypos=*/true, 12106 [this, Entity, Kind](Expr *E) { 12107 InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E)); 12108 return Init.Failed() ? ExprError() : E; 12109 }); 12110 if (Res.isInvalid()) { 12111 VDecl->setInvalidDecl(); 12112 } else if (Res.get() != Args[Idx]) { 12113 Args[Idx] = Res.get(); 12114 } 12115 } 12116 if (VDecl->isInvalidDecl()) 12117 return; 12118 12119 InitializationSequence InitSeq(*this, Entity, Kind, Args, 12120 /*TopLevelOfInitList=*/false, 12121 /*TreatUnavailableAsInvalid=*/false); 12122 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT); 12123 if (Result.isInvalid()) { 12124 // If the provied initializer fails to initialize the var decl, 12125 // we attach a recovery expr for better recovery. 12126 auto RecoveryExpr = 12127 CreateRecoveryExpr(Init->getBeginLoc(), Init->getEndLoc(), Args); 12128 if (RecoveryExpr.get()) 12129 VDecl->setInit(RecoveryExpr.get()); 12130 return; 12131 } 12132 12133 Init = Result.getAs<Expr>(); 12134 } 12135 12136 // Check for self-references within variable initializers. 12137 // Variables declared within a function/method body (except for references) 12138 // are handled by a dataflow analysis. 12139 // This is undefined behavior in C++, but valid in C. 12140 if (getLangOpts().CPlusPlus) { 12141 if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() || 12142 VDecl->getType()->isReferenceType()) { 12143 CheckSelfReference(*this, RealDecl, Init, DirectInit); 12144 } 12145 } 12146 12147 // If the type changed, it means we had an incomplete type that was 12148 // completed by the initializer. For example: 12149 // int ary[] = { 1, 3, 5 }; 12150 // "ary" transitions from an IncompleteArrayType to a ConstantArrayType. 12151 if (!VDecl->isInvalidDecl() && (DclT != SavT)) 12152 VDecl->setType(DclT); 12153 12154 if (!VDecl->isInvalidDecl()) { 12155 checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init); 12156 12157 if (VDecl->hasAttr<BlocksAttr>()) 12158 checkRetainCycles(VDecl, Init); 12159 12160 // It is safe to assign a weak reference into a strong variable. 12161 // Although this code can still have problems: 12162 // id x = self.weakProp; 12163 // id y = self.weakProp; 12164 // we do not warn to warn spuriously when 'x' and 'y' are on separate 12165 // paths through the function. This should be revisited if 12166 // -Wrepeated-use-of-weak is made flow-sensitive. 12167 if (FunctionScopeInfo *FSI = getCurFunction()) 12168 if ((VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong || 12169 VDecl->getType().isNonWeakInMRRWithObjCWeak(Context)) && 12170 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 12171 Init->getBeginLoc())) 12172 FSI->markSafeWeakUse(Init); 12173 } 12174 12175 // The initialization is usually a full-expression. 12176 // 12177 // FIXME: If this is a braced initialization of an aggregate, it is not 12178 // an expression, and each individual field initializer is a separate 12179 // full-expression. For instance, in: 12180 // 12181 // struct Temp { ~Temp(); }; 12182 // struct S { S(Temp); }; 12183 // struct T { S a, b; } t = { Temp(), Temp() } 12184 // 12185 // we should destroy the first Temp before constructing the second. 12186 ExprResult Result = 12187 ActOnFinishFullExpr(Init, VDecl->getLocation(), 12188 /*DiscardedValue*/ false, VDecl->isConstexpr()); 12189 if (Result.isInvalid()) { 12190 VDecl->setInvalidDecl(); 12191 return; 12192 } 12193 Init = Result.get(); 12194 12195 // Attach the initializer to the decl. 12196 VDecl->setInit(Init); 12197 12198 if (VDecl->isLocalVarDecl()) { 12199 // Don't check the initializer if the declaration is malformed. 12200 if (VDecl->isInvalidDecl()) { 12201 // do nothing 12202 12203 // OpenCL v1.2 s6.5.3: __constant locals must be constant-initialized. 12204 // This is true even in C++ for OpenCL. 12205 } else if (VDecl->getType().getAddressSpace() == LangAS::opencl_constant) { 12206 CheckForConstantInitializer(Init, DclT); 12207 12208 // Otherwise, C++ does not restrict the initializer. 12209 } else if (getLangOpts().CPlusPlus) { 12210 // do nothing 12211 12212 // C99 6.7.8p4: All the expressions in an initializer for an object that has 12213 // static storage duration shall be constant expressions or string literals. 12214 } else if (VDecl->getStorageClass() == SC_Static) { 12215 CheckForConstantInitializer(Init, DclT); 12216 12217 // C89 is stricter than C99 for aggregate initializers. 12218 // C89 6.5.7p3: All the expressions [...] in an initializer list 12219 // for an object that has aggregate or union type shall be 12220 // constant expressions. 12221 } else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() && 12222 isa<InitListExpr>(Init)) { 12223 const Expr *Culprit; 12224 if (!Init->isConstantInitializer(Context, false, &Culprit)) { 12225 Diag(Culprit->getExprLoc(), 12226 diag::ext_aggregate_init_not_constant) 12227 << Culprit->getSourceRange(); 12228 } 12229 } 12230 12231 if (auto *E = dyn_cast<ExprWithCleanups>(Init)) 12232 if (auto *BE = dyn_cast<BlockExpr>(E->getSubExpr()->IgnoreParens())) 12233 if (VDecl->hasLocalStorage()) 12234 BE->getBlockDecl()->setCanAvoidCopyToHeap(); 12235 } else if (VDecl->isStaticDataMember() && !VDecl->isInline() && 12236 VDecl->getLexicalDeclContext()->isRecord()) { 12237 // This is an in-class initialization for a static data member, e.g., 12238 // 12239 // struct S { 12240 // static const int value = 17; 12241 // }; 12242 12243 // C++ [class.mem]p4: 12244 // A member-declarator can contain a constant-initializer only 12245 // if it declares a static member (9.4) of const integral or 12246 // const enumeration type, see 9.4.2. 12247 // 12248 // C++11 [class.static.data]p3: 12249 // If a non-volatile non-inline const static data member is of integral 12250 // or enumeration type, its declaration in the class definition can 12251 // specify a brace-or-equal-initializer in which every initializer-clause 12252 // that is an assignment-expression is a constant expression. A static 12253 // data member of literal type can be declared in the class definition 12254 // with the constexpr specifier; if so, its declaration shall specify a 12255 // brace-or-equal-initializer in which every initializer-clause that is 12256 // an assignment-expression is a constant expression. 12257 12258 // Do nothing on dependent types. 12259 if (DclT->isDependentType()) { 12260 12261 // Allow any 'static constexpr' members, whether or not they are of literal 12262 // type. We separately check that every constexpr variable is of literal 12263 // type. 12264 } else if (VDecl->isConstexpr()) { 12265 12266 // Require constness. 12267 } else if (!DclT.isConstQualified()) { 12268 Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const) 12269 << Init->getSourceRange(); 12270 VDecl->setInvalidDecl(); 12271 12272 // We allow integer constant expressions in all cases. 12273 } else if (DclT->isIntegralOrEnumerationType()) { 12274 // Check whether the expression is a constant expression. 12275 SourceLocation Loc; 12276 if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified()) 12277 // In C++11, a non-constexpr const static data member with an 12278 // in-class initializer cannot be volatile. 12279 Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile); 12280 else if (Init->isValueDependent()) 12281 ; // Nothing to check. 12282 else if (Init->isIntegerConstantExpr(Context, &Loc)) 12283 ; // Ok, it's an ICE! 12284 else if (Init->getType()->isScopedEnumeralType() && 12285 Init->isCXX11ConstantExpr(Context)) 12286 ; // Ok, it is a scoped-enum constant expression. 12287 else if (Init->isEvaluatable(Context)) { 12288 // If we can constant fold the initializer through heroics, accept it, 12289 // but report this as a use of an extension for -pedantic. 12290 Diag(Loc, diag::ext_in_class_initializer_non_constant) 12291 << Init->getSourceRange(); 12292 } else { 12293 // Otherwise, this is some crazy unknown case. Report the issue at the 12294 // location provided by the isIntegerConstantExpr failed check. 12295 Diag(Loc, diag::err_in_class_initializer_non_constant) 12296 << Init->getSourceRange(); 12297 VDecl->setInvalidDecl(); 12298 } 12299 12300 // We allow foldable floating-point constants as an extension. 12301 } else if (DclT->isFloatingType()) { // also permits complex, which is ok 12302 // In C++98, this is a GNU extension. In C++11, it is not, but we support 12303 // it anyway and provide a fixit to add the 'constexpr'. 12304 if (getLangOpts().CPlusPlus11) { 12305 Diag(VDecl->getLocation(), 12306 diag::ext_in_class_initializer_float_type_cxx11) 12307 << DclT << Init->getSourceRange(); 12308 Diag(VDecl->getBeginLoc(), 12309 diag::note_in_class_initializer_float_type_cxx11) 12310 << FixItHint::CreateInsertion(VDecl->getBeginLoc(), "constexpr "); 12311 } else { 12312 Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type) 12313 << DclT << Init->getSourceRange(); 12314 12315 if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) { 12316 Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant) 12317 << Init->getSourceRange(); 12318 VDecl->setInvalidDecl(); 12319 } 12320 } 12321 12322 // Suggest adding 'constexpr' in C++11 for literal types. 12323 } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) { 12324 Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type) 12325 << DclT << Init->getSourceRange() 12326 << FixItHint::CreateInsertion(VDecl->getBeginLoc(), "constexpr "); 12327 VDecl->setConstexpr(true); 12328 12329 } else { 12330 Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type) 12331 << DclT << Init->getSourceRange(); 12332 VDecl->setInvalidDecl(); 12333 } 12334 } else if (VDecl->isFileVarDecl()) { 12335 // In C, extern is typically used to avoid tentative definitions when 12336 // declaring variables in headers, but adding an intializer makes it a 12337 // definition. This is somewhat confusing, so GCC and Clang both warn on it. 12338 // In C++, extern is often used to give implictly static const variables 12339 // external linkage, so don't warn in that case. If selectany is present, 12340 // this might be header code intended for C and C++ inclusion, so apply the 12341 // C++ rules. 12342 if (VDecl->getStorageClass() == SC_Extern && 12343 ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) || 12344 !Context.getBaseElementType(VDecl->getType()).isConstQualified()) && 12345 !(getLangOpts().CPlusPlus && VDecl->isExternC()) && 12346 !isTemplateInstantiation(VDecl->getTemplateSpecializationKind())) 12347 Diag(VDecl->getLocation(), diag::warn_extern_init); 12348 12349 // In Microsoft C++ mode, a const variable defined in namespace scope has 12350 // external linkage by default if the variable is declared with 12351 // __declspec(dllexport). 12352 if (Context.getTargetInfo().getCXXABI().isMicrosoft() && 12353 getLangOpts().CPlusPlus && VDecl->getType().isConstQualified() && 12354 VDecl->hasAttr<DLLExportAttr>() && VDecl->getDefinition()) 12355 VDecl->setStorageClass(SC_Extern); 12356 12357 // C99 6.7.8p4. All file scoped initializers need to be constant. 12358 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) 12359 CheckForConstantInitializer(Init, DclT); 12360 } 12361 12362 QualType InitType = Init->getType(); 12363 if (!InitType.isNull() && 12364 (InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion() || 12365 InitType.hasNonTrivialToPrimitiveCopyCUnion())) 12366 checkNonTrivialCUnionInInitializer(Init, Init->getExprLoc()); 12367 12368 // We will represent direct-initialization similarly to copy-initialization: 12369 // int x(1); -as-> int x = 1; 12370 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c); 12371 // 12372 // Clients that want to distinguish between the two forms, can check for 12373 // direct initializer using VarDecl::getInitStyle(). 12374 // A major benefit is that clients that don't particularly care about which 12375 // exactly form was it (like the CodeGen) can handle both cases without 12376 // special case code. 12377 12378 // C++ 8.5p11: 12379 // The form of initialization (using parentheses or '=') is generally 12380 // insignificant, but does matter when the entity being initialized has a 12381 // class type. 12382 if (CXXDirectInit) { 12383 assert(DirectInit && "Call-style initializer must be direct init."); 12384 VDecl->setInitStyle(VarDecl::CallInit); 12385 } else if (DirectInit) { 12386 // This must be list-initialization. No other way is direct-initialization. 12387 VDecl->setInitStyle(VarDecl::ListInit); 12388 } 12389 12390 if (LangOpts.OpenMP && VDecl->isFileVarDecl()) 12391 DeclsToCheckForDeferredDiags.push_back(VDecl); 12392 CheckCompleteVariableDeclaration(VDecl); 12393 } 12394 12395 /// ActOnInitializerError - Given that there was an error parsing an 12396 /// initializer for the given declaration, try to return to some form 12397 /// of sanity. 12398 void Sema::ActOnInitializerError(Decl *D) { 12399 // Our main concern here is re-establishing invariants like "a 12400 // variable's type is either dependent or complete". 12401 if (!D || D->isInvalidDecl()) return; 12402 12403 VarDecl *VD = dyn_cast<VarDecl>(D); 12404 if (!VD) return; 12405 12406 // Bindings are not usable if we can't make sense of the initializer. 12407 if (auto *DD = dyn_cast<DecompositionDecl>(D)) 12408 for (auto *BD : DD->bindings()) 12409 BD->setInvalidDecl(); 12410 12411 // Auto types are meaningless if we can't make sense of the initializer. 12412 if (VD->getType()->isUndeducedType()) { 12413 D->setInvalidDecl(); 12414 return; 12415 } 12416 12417 QualType Ty = VD->getType(); 12418 if (Ty->isDependentType()) return; 12419 12420 // Require a complete type. 12421 if (RequireCompleteType(VD->getLocation(), 12422 Context.getBaseElementType(Ty), 12423 diag::err_typecheck_decl_incomplete_type)) { 12424 VD->setInvalidDecl(); 12425 return; 12426 } 12427 12428 // Require a non-abstract type. 12429 if (RequireNonAbstractType(VD->getLocation(), Ty, 12430 diag::err_abstract_type_in_decl, 12431 AbstractVariableType)) { 12432 VD->setInvalidDecl(); 12433 return; 12434 } 12435 12436 // Don't bother complaining about constructors or destructors, 12437 // though. 12438 } 12439 12440 void Sema::ActOnUninitializedDecl(Decl *RealDecl) { 12441 // If there is no declaration, there was an error parsing it. Just ignore it. 12442 if (!RealDecl) 12443 return; 12444 12445 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) { 12446 QualType Type = Var->getType(); 12447 12448 // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory. 12449 if (isa<DecompositionDecl>(RealDecl)) { 12450 Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var; 12451 Var->setInvalidDecl(); 12452 return; 12453 } 12454 12455 if (Type->isUndeducedType() && 12456 DeduceVariableDeclarationType(Var, false, nullptr)) 12457 return; 12458 12459 // C++11 [class.static.data]p3: A static data member can be declared with 12460 // the constexpr specifier; if so, its declaration shall specify 12461 // a brace-or-equal-initializer. 12462 // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to 12463 // the definition of a variable [...] or the declaration of a static data 12464 // member. 12465 if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() && 12466 !Var->isThisDeclarationADemotedDefinition()) { 12467 if (Var->isStaticDataMember()) { 12468 // C++1z removes the relevant rule; the in-class declaration is always 12469 // a definition there. 12470 if (!getLangOpts().CPlusPlus17 && 12471 !Context.getTargetInfo().getCXXABI().isMicrosoft()) { 12472 Diag(Var->getLocation(), 12473 diag::err_constexpr_static_mem_var_requires_init) 12474 << Var; 12475 Var->setInvalidDecl(); 12476 return; 12477 } 12478 } else { 12479 Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl); 12480 Var->setInvalidDecl(); 12481 return; 12482 } 12483 } 12484 12485 // OpenCL v1.1 s6.5.3: variables declared in the constant address space must 12486 // be initialized. 12487 if (!Var->isInvalidDecl() && 12488 Var->getType().getAddressSpace() == LangAS::opencl_constant && 12489 Var->getStorageClass() != SC_Extern && !Var->getInit()) { 12490 Diag(Var->getLocation(), diag::err_opencl_constant_no_init); 12491 Var->setInvalidDecl(); 12492 return; 12493 } 12494 12495 if (!Var->isInvalidDecl() && RealDecl->hasAttr<LoaderUninitializedAttr>()) { 12496 if (Var->getStorageClass() == SC_Extern) { 12497 Diag(Var->getLocation(), diag::err_loader_uninitialized_extern_decl) 12498 << Var; 12499 Var->setInvalidDecl(); 12500 return; 12501 } 12502 if (RequireCompleteType(Var->getLocation(), Var->getType(), 12503 diag::err_typecheck_decl_incomplete_type)) { 12504 Var->setInvalidDecl(); 12505 return; 12506 } 12507 if (CXXRecordDecl *RD = Var->getType()->getAsCXXRecordDecl()) { 12508 if (!RD->hasTrivialDefaultConstructor()) { 12509 Diag(Var->getLocation(), diag::err_loader_uninitialized_trivial_ctor); 12510 Var->setInvalidDecl(); 12511 return; 12512 } 12513 } 12514 } 12515 12516 VarDecl::DefinitionKind DefKind = Var->isThisDeclarationADefinition(); 12517 if (!Var->isInvalidDecl() && DefKind != VarDecl::DeclarationOnly && 12518 Var->getType().hasNonTrivialToPrimitiveDefaultInitializeCUnion()) 12519 checkNonTrivialCUnion(Var->getType(), Var->getLocation(), 12520 NTCUC_DefaultInitializedObject, NTCUK_Init); 12521 12522 12523 switch (DefKind) { 12524 case VarDecl::Definition: 12525 if (!Var->isStaticDataMember() || !Var->getAnyInitializer()) 12526 break; 12527 12528 // We have an out-of-line definition of a static data member 12529 // that has an in-class initializer, so we type-check this like 12530 // a declaration. 12531 // 12532 LLVM_FALLTHROUGH; 12533 12534 case VarDecl::DeclarationOnly: 12535 // It's only a declaration. 12536 12537 // Block scope. C99 6.7p7: If an identifier for an object is 12538 // declared with no linkage (C99 6.2.2p6), the type for the 12539 // object shall be complete. 12540 if (!Type->isDependentType() && Var->isLocalVarDecl() && 12541 !Var->hasLinkage() && !Var->isInvalidDecl() && 12542 RequireCompleteType(Var->getLocation(), Type, 12543 diag::err_typecheck_decl_incomplete_type)) 12544 Var->setInvalidDecl(); 12545 12546 // Make sure that the type is not abstract. 12547 if (!Type->isDependentType() && !Var->isInvalidDecl() && 12548 RequireNonAbstractType(Var->getLocation(), Type, 12549 diag::err_abstract_type_in_decl, 12550 AbstractVariableType)) 12551 Var->setInvalidDecl(); 12552 if (!Type->isDependentType() && !Var->isInvalidDecl() && 12553 Var->getStorageClass() == SC_PrivateExtern) { 12554 Diag(Var->getLocation(), diag::warn_private_extern); 12555 Diag(Var->getLocation(), diag::note_private_extern); 12556 } 12557 12558 if (Context.getTargetInfo().allowDebugInfoForExternalVar() && 12559 !Var->isInvalidDecl() && !getLangOpts().CPlusPlus) 12560 ExternalDeclarations.push_back(Var); 12561 12562 return; 12563 12564 case VarDecl::TentativeDefinition: 12565 // File scope. C99 6.9.2p2: A declaration of an identifier for an 12566 // object that has file scope without an initializer, and without a 12567 // storage-class specifier or with the storage-class specifier "static", 12568 // constitutes a tentative definition. Note: A tentative definition with 12569 // external linkage is valid (C99 6.2.2p5). 12570 if (!Var->isInvalidDecl()) { 12571 if (const IncompleteArrayType *ArrayT 12572 = Context.getAsIncompleteArrayType(Type)) { 12573 if (RequireCompleteSizedType( 12574 Var->getLocation(), ArrayT->getElementType(), 12575 diag::err_array_incomplete_or_sizeless_type)) 12576 Var->setInvalidDecl(); 12577 } else if (Var->getStorageClass() == SC_Static) { 12578 // C99 6.9.2p3: If the declaration of an identifier for an object is 12579 // a tentative definition and has internal linkage (C99 6.2.2p3), the 12580 // declared type shall not be an incomplete type. 12581 // NOTE: code such as the following 12582 // static struct s; 12583 // struct s { int a; }; 12584 // is accepted by gcc. Hence here we issue a warning instead of 12585 // an error and we do not invalidate the static declaration. 12586 // NOTE: to avoid multiple warnings, only check the first declaration. 12587 if (Var->isFirstDecl()) 12588 RequireCompleteType(Var->getLocation(), Type, 12589 diag::ext_typecheck_decl_incomplete_type); 12590 } 12591 } 12592 12593 // Record the tentative definition; we're done. 12594 if (!Var->isInvalidDecl()) 12595 TentativeDefinitions.push_back(Var); 12596 return; 12597 } 12598 12599 // Provide a specific diagnostic for uninitialized variable 12600 // definitions with incomplete array type. 12601 if (Type->isIncompleteArrayType()) { 12602 Diag(Var->getLocation(), 12603 diag::err_typecheck_incomplete_array_needs_initializer); 12604 Var->setInvalidDecl(); 12605 return; 12606 } 12607 12608 // Provide a specific diagnostic for uninitialized variable 12609 // definitions with reference type. 12610 if (Type->isReferenceType()) { 12611 Diag(Var->getLocation(), diag::err_reference_var_requires_init) 12612 << Var << SourceRange(Var->getLocation(), Var->getLocation()); 12613 Var->setInvalidDecl(); 12614 return; 12615 } 12616 12617 // Do not attempt to type-check the default initializer for a 12618 // variable with dependent type. 12619 if (Type->isDependentType()) 12620 return; 12621 12622 if (Var->isInvalidDecl()) 12623 return; 12624 12625 if (!Var->hasAttr<AliasAttr>()) { 12626 if (RequireCompleteType(Var->getLocation(), 12627 Context.getBaseElementType(Type), 12628 diag::err_typecheck_decl_incomplete_type)) { 12629 Var->setInvalidDecl(); 12630 return; 12631 } 12632 } else { 12633 return; 12634 } 12635 12636 // The variable can not have an abstract class type. 12637 if (RequireNonAbstractType(Var->getLocation(), Type, 12638 diag::err_abstract_type_in_decl, 12639 AbstractVariableType)) { 12640 Var->setInvalidDecl(); 12641 return; 12642 } 12643 12644 // Check for jumps past the implicit initializer. C++0x 12645 // clarifies that this applies to a "variable with automatic 12646 // storage duration", not a "local variable". 12647 // C++11 [stmt.dcl]p3 12648 // A program that jumps from a point where a variable with automatic 12649 // storage duration is not in scope to a point where it is in scope is 12650 // ill-formed unless the variable has scalar type, class type with a 12651 // trivial default constructor and a trivial destructor, a cv-qualified 12652 // version of one of these types, or an array of one of the preceding 12653 // types and is declared without an initializer. 12654 if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) { 12655 if (const RecordType *Record 12656 = Context.getBaseElementType(Type)->getAs<RecordType>()) { 12657 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl()); 12658 // Mark the function (if we're in one) for further checking even if the 12659 // looser rules of C++11 do not require such checks, so that we can 12660 // diagnose incompatibilities with C++98. 12661 if (!CXXRecord->isPOD()) 12662 setFunctionHasBranchProtectedScope(); 12663 } 12664 } 12665 // In OpenCL, we can't initialize objects in the __local address space, 12666 // even implicitly, so don't synthesize an implicit initializer. 12667 if (getLangOpts().OpenCL && 12668 Var->getType().getAddressSpace() == LangAS::opencl_local) 12669 return; 12670 // C++03 [dcl.init]p9: 12671 // If no initializer is specified for an object, and the 12672 // object is of (possibly cv-qualified) non-POD class type (or 12673 // array thereof), the object shall be default-initialized; if 12674 // the object is of const-qualified type, the underlying class 12675 // type shall have a user-declared default 12676 // constructor. Otherwise, if no initializer is specified for 12677 // a non- static object, the object and its subobjects, if 12678 // any, have an indeterminate initial value); if the object 12679 // or any of its subobjects are of const-qualified type, the 12680 // program is ill-formed. 12681 // C++0x [dcl.init]p11: 12682 // If no initializer is specified for an object, the object is 12683 // default-initialized; [...]. 12684 InitializedEntity Entity = InitializedEntity::InitializeVariable(Var); 12685 InitializationKind Kind 12686 = InitializationKind::CreateDefault(Var->getLocation()); 12687 12688 InitializationSequence InitSeq(*this, Entity, Kind, None); 12689 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None); 12690 12691 if (Init.get()) { 12692 Var->setInit(MaybeCreateExprWithCleanups(Init.get())); 12693 // This is important for template substitution. 12694 Var->setInitStyle(VarDecl::CallInit); 12695 } else if (Init.isInvalid()) { 12696 // If default-init fails, attach a recovery-expr initializer to track 12697 // that initialization was attempted and failed. 12698 auto RecoveryExpr = 12699 CreateRecoveryExpr(Var->getLocation(), Var->getLocation(), {}); 12700 if (RecoveryExpr.get()) 12701 Var->setInit(RecoveryExpr.get()); 12702 } 12703 12704 CheckCompleteVariableDeclaration(Var); 12705 } 12706 } 12707 12708 void Sema::ActOnCXXForRangeDecl(Decl *D) { 12709 // If there is no declaration, there was an error parsing it. Ignore it. 12710 if (!D) 12711 return; 12712 12713 VarDecl *VD = dyn_cast<VarDecl>(D); 12714 if (!VD) { 12715 Diag(D->getLocation(), diag::err_for_range_decl_must_be_var); 12716 D->setInvalidDecl(); 12717 return; 12718 } 12719 12720 VD->setCXXForRangeDecl(true); 12721 12722 // for-range-declaration cannot be given a storage class specifier. 12723 int Error = -1; 12724 switch (VD->getStorageClass()) { 12725 case SC_None: 12726 break; 12727 case SC_Extern: 12728 Error = 0; 12729 break; 12730 case SC_Static: 12731 Error = 1; 12732 break; 12733 case SC_PrivateExtern: 12734 Error = 2; 12735 break; 12736 case SC_Auto: 12737 Error = 3; 12738 break; 12739 case SC_Register: 12740 Error = 4; 12741 break; 12742 } 12743 if (Error != -1) { 12744 Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class) 12745 << VD << Error; 12746 D->setInvalidDecl(); 12747 } 12748 } 12749 12750 StmtResult 12751 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc, 12752 IdentifierInfo *Ident, 12753 ParsedAttributes &Attrs, 12754 SourceLocation AttrEnd) { 12755 // C++1y [stmt.iter]p1: 12756 // A range-based for statement of the form 12757 // for ( for-range-identifier : for-range-initializer ) statement 12758 // is equivalent to 12759 // for ( auto&& for-range-identifier : for-range-initializer ) statement 12760 DeclSpec DS(Attrs.getPool().getFactory()); 12761 12762 const char *PrevSpec; 12763 unsigned DiagID; 12764 DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID, 12765 getPrintingPolicy()); 12766 12767 Declarator D(DS, DeclaratorContext::ForContext); 12768 D.SetIdentifier(Ident, IdentLoc); 12769 D.takeAttributes(Attrs, AttrEnd); 12770 12771 D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/ false), 12772 IdentLoc); 12773 Decl *Var = ActOnDeclarator(S, D); 12774 cast<VarDecl>(Var)->setCXXForRangeDecl(true); 12775 FinalizeDeclaration(Var); 12776 return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc, 12777 AttrEnd.isValid() ? AttrEnd : IdentLoc); 12778 } 12779 12780 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) { 12781 if (var->isInvalidDecl()) return; 12782 12783 if (getLangOpts().OpenCL) { 12784 // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an 12785 // initialiser 12786 if (var->getTypeSourceInfo()->getType()->isBlockPointerType() && 12787 !var->hasInit()) { 12788 Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration) 12789 << 1 /*Init*/; 12790 var->setInvalidDecl(); 12791 return; 12792 } 12793 } 12794 12795 // In Objective-C, don't allow jumps past the implicit initialization of a 12796 // local retaining variable. 12797 if (getLangOpts().ObjC && 12798 var->hasLocalStorage()) { 12799 switch (var->getType().getObjCLifetime()) { 12800 case Qualifiers::OCL_None: 12801 case Qualifiers::OCL_ExplicitNone: 12802 case Qualifiers::OCL_Autoreleasing: 12803 break; 12804 12805 case Qualifiers::OCL_Weak: 12806 case Qualifiers::OCL_Strong: 12807 setFunctionHasBranchProtectedScope(); 12808 break; 12809 } 12810 } 12811 12812 if (var->hasLocalStorage() && 12813 var->getType().isDestructedType() == QualType::DK_nontrivial_c_struct) 12814 setFunctionHasBranchProtectedScope(); 12815 12816 // Warn about externally-visible variables being defined without a 12817 // prior declaration. We only want to do this for global 12818 // declarations, but we also specifically need to avoid doing it for 12819 // class members because the linkage of an anonymous class can 12820 // change if it's later given a typedef name. 12821 if (var->isThisDeclarationADefinition() && 12822 var->getDeclContext()->getRedeclContext()->isFileContext() && 12823 var->isExternallyVisible() && var->hasLinkage() && 12824 !var->isInline() && !var->getDescribedVarTemplate() && 12825 !isa<VarTemplatePartialSpecializationDecl>(var) && 12826 !isTemplateInstantiation(var->getTemplateSpecializationKind()) && 12827 !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations, 12828 var->getLocation())) { 12829 // Find a previous declaration that's not a definition. 12830 VarDecl *prev = var->getPreviousDecl(); 12831 while (prev && prev->isThisDeclarationADefinition()) 12832 prev = prev->getPreviousDecl(); 12833 12834 if (!prev) { 12835 Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var; 12836 Diag(var->getTypeSpecStartLoc(), diag::note_static_for_internal_linkage) 12837 << /* variable */ 0; 12838 } 12839 } 12840 12841 // Cache the result of checking for constant initialization. 12842 Optional<bool> CacheHasConstInit; 12843 const Expr *CacheCulprit = nullptr; 12844 auto checkConstInit = [&]() mutable { 12845 if (!CacheHasConstInit) 12846 CacheHasConstInit = var->getInit()->isConstantInitializer( 12847 Context, var->getType()->isReferenceType(), &CacheCulprit); 12848 return *CacheHasConstInit; 12849 }; 12850 12851 if (var->getTLSKind() == VarDecl::TLS_Static) { 12852 if (var->getType().isDestructedType()) { 12853 // GNU C++98 edits for __thread, [basic.start.term]p3: 12854 // The type of an object with thread storage duration shall not 12855 // have a non-trivial destructor. 12856 Diag(var->getLocation(), diag::err_thread_nontrivial_dtor); 12857 if (getLangOpts().CPlusPlus11) 12858 Diag(var->getLocation(), diag::note_use_thread_local); 12859 } else if (getLangOpts().CPlusPlus && var->hasInit()) { 12860 if (!checkConstInit()) { 12861 // GNU C++98 edits for __thread, [basic.start.init]p4: 12862 // An object of thread storage duration shall not require dynamic 12863 // initialization. 12864 // FIXME: Need strict checking here. 12865 Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init) 12866 << CacheCulprit->getSourceRange(); 12867 if (getLangOpts().CPlusPlus11) 12868 Diag(var->getLocation(), diag::note_use_thread_local); 12869 } 12870 } 12871 } 12872 12873 // Apply section attributes and pragmas to global variables. 12874 bool GlobalStorage = var->hasGlobalStorage(); 12875 if (GlobalStorage && var->isThisDeclarationADefinition() && 12876 !inTemplateInstantiation()) { 12877 PragmaStack<StringLiteral *> *Stack = nullptr; 12878 int SectionFlags = ASTContext::PSF_Read; 12879 if (var->getType().isConstQualified()) 12880 Stack = &ConstSegStack; 12881 else if (!var->getInit()) { 12882 Stack = &BSSSegStack; 12883 SectionFlags |= ASTContext::PSF_Write; 12884 } else { 12885 Stack = &DataSegStack; 12886 SectionFlags |= ASTContext::PSF_Write; 12887 } 12888 if (const SectionAttr *SA = var->getAttr<SectionAttr>()) { 12889 if (SA->getSyntax() == AttributeCommonInfo::AS_Declspec) 12890 SectionFlags |= ASTContext::PSF_Implicit; 12891 UnifySection(SA->getName(), SectionFlags, var); 12892 } else if (Stack->CurrentValue) { 12893 SectionFlags |= ASTContext::PSF_Implicit; 12894 auto SectionName = Stack->CurrentValue->getString(); 12895 var->addAttr(SectionAttr::CreateImplicit( 12896 Context, SectionName, Stack->CurrentPragmaLocation, 12897 AttributeCommonInfo::AS_Pragma, SectionAttr::Declspec_allocate)); 12898 if (UnifySection(SectionName, SectionFlags, var)) 12899 var->dropAttr<SectionAttr>(); 12900 } 12901 12902 // Apply the init_seg attribute if this has an initializer. If the 12903 // initializer turns out to not be dynamic, we'll end up ignoring this 12904 // attribute. 12905 if (CurInitSeg && var->getInit()) 12906 var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(), 12907 CurInitSegLoc, 12908 AttributeCommonInfo::AS_Pragma)); 12909 } 12910 12911 if (!var->getType()->isStructureType() && var->hasInit() && 12912 isa<InitListExpr>(var->getInit())) { 12913 const auto *ILE = cast<InitListExpr>(var->getInit()); 12914 unsigned NumInits = ILE->getNumInits(); 12915 if (NumInits > 2) 12916 for (unsigned I = 0; I < NumInits; ++I) { 12917 const auto *Init = ILE->getInit(I); 12918 if (!Init) 12919 break; 12920 const auto *SL = dyn_cast<StringLiteral>(Init->IgnoreImpCasts()); 12921 if (!SL) 12922 break; 12923 12924 unsigned NumConcat = SL->getNumConcatenated(); 12925 // Diagnose missing comma in string array initialization. 12926 // Do not warn when all the elements in the initializer are concatenated 12927 // together. Do not warn for macros too. 12928 if (NumConcat == 2 && !SL->getBeginLoc().isMacroID()) { 12929 bool OnlyOneMissingComma = true; 12930 for (unsigned J = I + 1; J < NumInits; ++J) { 12931 const auto *Init = ILE->getInit(J); 12932 if (!Init) 12933 break; 12934 const auto *SLJ = dyn_cast<StringLiteral>(Init->IgnoreImpCasts()); 12935 if (!SLJ || SLJ->getNumConcatenated() > 1) { 12936 OnlyOneMissingComma = false; 12937 break; 12938 } 12939 } 12940 12941 if (OnlyOneMissingComma) { 12942 SmallVector<FixItHint, 1> Hints; 12943 for (unsigned i = 0; i < NumConcat - 1; ++i) 12944 Hints.push_back(FixItHint::CreateInsertion( 12945 PP.getLocForEndOfToken(SL->getStrTokenLoc(i)), ",")); 12946 12947 Diag(SL->getStrTokenLoc(1), 12948 diag::warn_concatenated_literal_array_init) 12949 << Hints; 12950 Diag(SL->getBeginLoc(), 12951 diag::note_concatenated_string_literal_silence); 12952 } 12953 // In any case, stop now. 12954 break; 12955 } 12956 } 12957 } 12958 12959 // All the following checks are C++ only. 12960 if (!getLangOpts().CPlusPlus) { 12961 // If this variable must be emitted, add it as an initializer for the 12962 // current module. 12963 if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty()) 12964 Context.addModuleInitializer(ModuleScopes.back().Module, var); 12965 return; 12966 } 12967 12968 QualType type = var->getType(); 12969 12970 if (var->hasAttr<BlocksAttr>()) 12971 getCurFunction()->addByrefBlockVar(var); 12972 12973 Expr *Init = var->getInit(); 12974 bool IsGlobal = GlobalStorage && !var->isStaticLocal(); 12975 QualType baseType = Context.getBaseElementType(type); 12976 12977 // Check whether the initializer is sufficiently constant. 12978 if (!type->isDependentType() && Init && !Init->isValueDependent() && 12979 (GlobalStorage || var->isConstexpr() || 12980 var->mightBeUsableInConstantExpressions(Context))) { 12981 // If this variable might have a constant initializer or might be usable in 12982 // constant expressions, check whether or not it actually is now. We can't 12983 // do this lazily, because the result might depend on things that change 12984 // later, such as which constexpr functions happen to be defined. 12985 SmallVector<PartialDiagnosticAt, 8> Notes; 12986 bool HasConstInit; 12987 if (!getLangOpts().CPlusPlus11) { 12988 // Prior to C++11, in contexts where a constant initializer is required, 12989 // the set of valid constant initializers is described by syntactic rules 12990 // in [expr.const]p2-6. 12991 // FIXME: Stricter checking for these rules would be useful for constinit / 12992 // -Wglobal-constructors. 12993 HasConstInit = checkConstInit(); 12994 12995 // Compute and cache the constant value, and remember that we have a 12996 // constant initializer. 12997 if (HasConstInit) { 12998 (void)var->checkForConstantInitialization(Notes); 12999 Notes.clear(); 13000 } else if (CacheCulprit) { 13001 Notes.emplace_back(CacheCulprit->getExprLoc(), 13002 PDiag(diag::note_invalid_subexpr_in_const_expr)); 13003 Notes.back().second << CacheCulprit->getSourceRange(); 13004 } 13005 } else { 13006 // Evaluate the initializer to see if it's a constant initializer. 13007 HasConstInit = var->checkForConstantInitialization(Notes); 13008 } 13009 13010 if (HasConstInit) { 13011 // FIXME: Consider replacing the initializer with a ConstantExpr. 13012 } else if (var->isConstexpr()) { 13013 SourceLocation DiagLoc = var->getLocation(); 13014 // If the note doesn't add any useful information other than a source 13015 // location, fold it into the primary diagnostic. 13016 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 13017 diag::note_invalid_subexpr_in_const_expr) { 13018 DiagLoc = Notes[0].first; 13019 Notes.clear(); 13020 } 13021 Diag(DiagLoc, diag::err_constexpr_var_requires_const_init) 13022 << var << Init->getSourceRange(); 13023 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 13024 Diag(Notes[I].first, Notes[I].second); 13025 } else if (GlobalStorage && var->hasAttr<ConstInitAttr>()) { 13026 auto *Attr = var->getAttr<ConstInitAttr>(); 13027 Diag(var->getLocation(), diag::err_require_constant_init_failed) 13028 << Init->getSourceRange(); 13029 Diag(Attr->getLocation(), diag::note_declared_required_constant_init_here) 13030 << Attr->getRange() << Attr->isConstinit(); 13031 for (auto &it : Notes) 13032 Diag(it.first, it.second); 13033 } else if (IsGlobal && 13034 !getDiagnostics().isIgnored(diag::warn_global_constructor, 13035 var->getLocation())) { 13036 // Warn about globals which don't have a constant initializer. Don't 13037 // warn about globals with a non-trivial destructor because we already 13038 // warned about them. 13039 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); 13040 if (!(RD && !RD->hasTrivialDestructor())) { 13041 // checkConstInit() here permits trivial default initialization even in 13042 // C++11 onwards, where such an initializer is not a constant initializer 13043 // but nonetheless doesn't require a global constructor. 13044 if (!checkConstInit()) 13045 Diag(var->getLocation(), diag::warn_global_constructor) 13046 << Init->getSourceRange(); 13047 } 13048 } 13049 } 13050 13051 // Require the destructor. 13052 if (!type->isDependentType()) 13053 if (const RecordType *recordType = baseType->getAs<RecordType>()) 13054 FinalizeVarWithDestructor(var, recordType); 13055 13056 // If this variable must be emitted, add it as an initializer for the current 13057 // module. 13058 if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty()) 13059 Context.addModuleInitializer(ModuleScopes.back().Module, var); 13060 13061 // Build the bindings if this is a structured binding declaration. 13062 if (auto *DD = dyn_cast<DecompositionDecl>(var)) 13063 CheckCompleteDecompositionDeclaration(DD); 13064 } 13065 13066 /// Determines if a variable's alignment is dependent. 13067 static bool hasDependentAlignment(VarDecl *VD) { 13068 if (VD->getType()->isDependentType()) 13069 return true; 13070 for (auto *I : VD->specific_attrs<AlignedAttr>()) 13071 if (I->isAlignmentDependent()) 13072 return true; 13073 return false; 13074 } 13075 13076 /// Check if VD needs to be dllexport/dllimport due to being in a 13077 /// dllexport/import function. 13078 void Sema::CheckStaticLocalForDllExport(VarDecl *VD) { 13079 assert(VD->isStaticLocal()); 13080 13081 auto *FD = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod()); 13082 13083 // Find outermost function when VD is in lambda function. 13084 while (FD && !getDLLAttr(FD) && 13085 !FD->hasAttr<DLLExportStaticLocalAttr>() && 13086 !FD->hasAttr<DLLImportStaticLocalAttr>()) { 13087 FD = dyn_cast_or_null<FunctionDecl>(FD->getParentFunctionOrMethod()); 13088 } 13089 13090 if (!FD) 13091 return; 13092 13093 // Static locals inherit dll attributes from their function. 13094 if (Attr *A = getDLLAttr(FD)) { 13095 auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext())); 13096 NewAttr->setInherited(true); 13097 VD->addAttr(NewAttr); 13098 } else if (Attr *A = FD->getAttr<DLLExportStaticLocalAttr>()) { 13099 auto *NewAttr = DLLExportAttr::CreateImplicit(getASTContext(), *A); 13100 NewAttr->setInherited(true); 13101 VD->addAttr(NewAttr); 13102 13103 // Export this function to enforce exporting this static variable even 13104 // if it is not used in this compilation unit. 13105 if (!FD->hasAttr<DLLExportAttr>()) 13106 FD->addAttr(NewAttr); 13107 13108 } else if (Attr *A = FD->getAttr<DLLImportStaticLocalAttr>()) { 13109 auto *NewAttr = DLLImportAttr::CreateImplicit(getASTContext(), *A); 13110 NewAttr->setInherited(true); 13111 VD->addAttr(NewAttr); 13112 } 13113 } 13114 13115 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform 13116 /// any semantic actions necessary after any initializer has been attached. 13117 void Sema::FinalizeDeclaration(Decl *ThisDecl) { 13118 // Note that we are no longer parsing the initializer for this declaration. 13119 ParsingInitForAutoVars.erase(ThisDecl); 13120 13121 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl); 13122 if (!VD) 13123 return; 13124 13125 // Apply an implicit SectionAttr if '#pragma clang section bss|data|rodata' is active 13126 if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() && 13127 !inTemplateInstantiation() && !VD->hasAttr<SectionAttr>()) { 13128 if (PragmaClangBSSSection.Valid) 13129 VD->addAttr(PragmaClangBSSSectionAttr::CreateImplicit( 13130 Context, PragmaClangBSSSection.SectionName, 13131 PragmaClangBSSSection.PragmaLocation, 13132 AttributeCommonInfo::AS_Pragma)); 13133 if (PragmaClangDataSection.Valid) 13134 VD->addAttr(PragmaClangDataSectionAttr::CreateImplicit( 13135 Context, PragmaClangDataSection.SectionName, 13136 PragmaClangDataSection.PragmaLocation, 13137 AttributeCommonInfo::AS_Pragma)); 13138 if (PragmaClangRodataSection.Valid) 13139 VD->addAttr(PragmaClangRodataSectionAttr::CreateImplicit( 13140 Context, PragmaClangRodataSection.SectionName, 13141 PragmaClangRodataSection.PragmaLocation, 13142 AttributeCommonInfo::AS_Pragma)); 13143 if (PragmaClangRelroSection.Valid) 13144 VD->addAttr(PragmaClangRelroSectionAttr::CreateImplicit( 13145 Context, PragmaClangRelroSection.SectionName, 13146 PragmaClangRelroSection.PragmaLocation, 13147 AttributeCommonInfo::AS_Pragma)); 13148 } 13149 13150 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { 13151 for (auto *BD : DD->bindings()) { 13152 FinalizeDeclaration(BD); 13153 } 13154 } 13155 13156 checkAttributesAfterMerging(*this, *VD); 13157 13158 // Perform TLS alignment check here after attributes attached to the variable 13159 // which may affect the alignment have been processed. Only perform the check 13160 // if the target has a maximum TLS alignment (zero means no constraints). 13161 if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) { 13162 // Protect the check so that it's not performed on dependent types and 13163 // dependent alignments (we can't determine the alignment in that case). 13164 if (VD->getTLSKind() && !hasDependentAlignment(VD) && 13165 !VD->isInvalidDecl()) { 13166 CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign); 13167 if (Context.getDeclAlign(VD) > MaxAlignChars) { 13168 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum) 13169 << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD 13170 << (unsigned)MaxAlignChars.getQuantity(); 13171 } 13172 } 13173 } 13174 13175 if (VD->isStaticLocal()) { 13176 CheckStaticLocalForDllExport(VD); 13177 13178 if (dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) { 13179 // CUDA 8.0 E.3.9.4: Within the body of a __device__ or __global__ 13180 // function, only __shared__ variables or variables without any device 13181 // memory qualifiers may be declared with static storage class. 13182 // Note: It is unclear how a function-scope non-const static variable 13183 // without device memory qualifier is implemented, therefore only static 13184 // const variable without device memory qualifier is allowed. 13185 [&]() { 13186 if (!getLangOpts().CUDA) 13187 return; 13188 if (VD->hasAttr<CUDASharedAttr>()) 13189 return; 13190 if (VD->getType().isConstQualified() && 13191 !(VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>())) 13192 return; 13193 if (CUDADiagIfDeviceCode(VD->getLocation(), 13194 diag::err_device_static_local_var) 13195 << CurrentCUDATarget()) 13196 VD->setInvalidDecl(); 13197 }(); 13198 } 13199 } 13200 13201 // Perform check for initializers of device-side global variables. 13202 // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA 13203 // 7.5). We must also apply the same checks to all __shared__ 13204 // variables whether they are local or not. CUDA also allows 13205 // constant initializers for __constant__ and __device__ variables. 13206 if (getLangOpts().CUDA) 13207 checkAllowedCUDAInitializer(VD); 13208 13209 // Grab the dllimport or dllexport attribute off of the VarDecl. 13210 const InheritableAttr *DLLAttr = getDLLAttr(VD); 13211 13212 // Imported static data members cannot be defined out-of-line. 13213 if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) { 13214 if (VD->isStaticDataMember() && VD->isOutOfLine() && 13215 VD->isThisDeclarationADefinition()) { 13216 // We allow definitions of dllimport class template static data members 13217 // with a warning. 13218 CXXRecordDecl *Context = 13219 cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext()); 13220 bool IsClassTemplateMember = 13221 isa<ClassTemplatePartialSpecializationDecl>(Context) || 13222 Context->getDescribedClassTemplate(); 13223 13224 Diag(VD->getLocation(), 13225 IsClassTemplateMember 13226 ? diag::warn_attribute_dllimport_static_field_definition 13227 : diag::err_attribute_dllimport_static_field_definition); 13228 Diag(IA->getLocation(), diag::note_attribute); 13229 if (!IsClassTemplateMember) 13230 VD->setInvalidDecl(); 13231 } 13232 } 13233 13234 // dllimport/dllexport variables cannot be thread local, their TLS index 13235 // isn't exported with the variable. 13236 if (DLLAttr && VD->getTLSKind()) { 13237 auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod()); 13238 if (F && getDLLAttr(F)) { 13239 assert(VD->isStaticLocal()); 13240 // But if this is a static local in a dlimport/dllexport function, the 13241 // function will never be inlined, which means the var would never be 13242 // imported, so having it marked import/export is safe. 13243 } else { 13244 Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD 13245 << DLLAttr; 13246 VD->setInvalidDecl(); 13247 } 13248 } 13249 13250 if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) { 13251 if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) { 13252 Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr; 13253 VD->dropAttr<UsedAttr>(); 13254 } 13255 } 13256 13257 const DeclContext *DC = VD->getDeclContext(); 13258 // If there's a #pragma GCC visibility in scope, and this isn't a class 13259 // member, set the visibility of this variable. 13260 if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible()) 13261 AddPushedVisibilityAttribute(VD); 13262 13263 // FIXME: Warn on unused var template partial specializations. 13264 if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD)) 13265 MarkUnusedFileScopedDecl(VD); 13266 13267 // Now we have parsed the initializer and can update the table of magic 13268 // tag values. 13269 if (!VD->hasAttr<TypeTagForDatatypeAttr>() || 13270 !VD->getType()->isIntegralOrEnumerationType()) 13271 return; 13272 13273 for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) { 13274 const Expr *MagicValueExpr = VD->getInit(); 13275 if (!MagicValueExpr) { 13276 continue; 13277 } 13278 Optional<llvm::APSInt> MagicValueInt; 13279 if (!(MagicValueInt = MagicValueExpr->getIntegerConstantExpr(Context))) { 13280 Diag(I->getRange().getBegin(), 13281 diag::err_type_tag_for_datatype_not_ice) 13282 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 13283 continue; 13284 } 13285 if (MagicValueInt->getActiveBits() > 64) { 13286 Diag(I->getRange().getBegin(), 13287 diag::err_type_tag_for_datatype_too_large) 13288 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 13289 continue; 13290 } 13291 uint64_t MagicValue = MagicValueInt->getZExtValue(); 13292 RegisterTypeTagForDatatype(I->getArgumentKind(), 13293 MagicValue, 13294 I->getMatchingCType(), 13295 I->getLayoutCompatible(), 13296 I->getMustBeNull()); 13297 } 13298 } 13299 13300 static bool hasDeducedAuto(DeclaratorDecl *DD) { 13301 auto *VD = dyn_cast<VarDecl>(DD); 13302 return VD && !VD->getType()->hasAutoForTrailingReturnType(); 13303 } 13304 13305 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS, 13306 ArrayRef<Decl *> Group) { 13307 SmallVector<Decl*, 8> Decls; 13308 13309 if (DS.isTypeSpecOwned()) 13310 Decls.push_back(DS.getRepAsDecl()); 13311 13312 DeclaratorDecl *FirstDeclaratorInGroup = nullptr; 13313 DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr; 13314 bool DiagnosedMultipleDecomps = false; 13315 DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr; 13316 bool DiagnosedNonDeducedAuto = false; 13317 13318 for (unsigned i = 0, e = Group.size(); i != e; ++i) { 13319 if (Decl *D = Group[i]) { 13320 // For declarators, there are some additional syntactic-ish checks we need 13321 // to perform. 13322 if (auto *DD = dyn_cast<DeclaratorDecl>(D)) { 13323 if (!FirstDeclaratorInGroup) 13324 FirstDeclaratorInGroup = DD; 13325 if (!FirstDecompDeclaratorInGroup) 13326 FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D); 13327 if (!FirstNonDeducedAutoInGroup && DS.hasAutoTypeSpec() && 13328 !hasDeducedAuto(DD)) 13329 FirstNonDeducedAutoInGroup = DD; 13330 13331 if (FirstDeclaratorInGroup != DD) { 13332 // A decomposition declaration cannot be combined with any other 13333 // declaration in the same group. 13334 if (FirstDecompDeclaratorInGroup && !DiagnosedMultipleDecomps) { 13335 Diag(FirstDecompDeclaratorInGroup->getLocation(), 13336 diag::err_decomp_decl_not_alone) 13337 << FirstDeclaratorInGroup->getSourceRange() 13338 << DD->getSourceRange(); 13339 DiagnosedMultipleDecomps = true; 13340 } 13341 13342 // A declarator that uses 'auto' in any way other than to declare a 13343 // variable with a deduced type cannot be combined with any other 13344 // declarator in the same group. 13345 if (FirstNonDeducedAutoInGroup && !DiagnosedNonDeducedAuto) { 13346 Diag(FirstNonDeducedAutoInGroup->getLocation(), 13347 diag::err_auto_non_deduced_not_alone) 13348 << FirstNonDeducedAutoInGroup->getType() 13349 ->hasAutoForTrailingReturnType() 13350 << FirstDeclaratorInGroup->getSourceRange() 13351 << DD->getSourceRange(); 13352 DiagnosedNonDeducedAuto = true; 13353 } 13354 } 13355 } 13356 13357 Decls.push_back(D); 13358 } 13359 } 13360 13361 if (DeclSpec::isDeclRep(DS.getTypeSpecType())) { 13362 if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) { 13363 handleTagNumbering(Tag, S); 13364 if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() && 13365 getLangOpts().CPlusPlus) 13366 Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup); 13367 } 13368 } 13369 13370 return BuildDeclaratorGroup(Decls); 13371 } 13372 13373 /// BuildDeclaratorGroup - convert a list of declarations into a declaration 13374 /// group, performing any necessary semantic checking. 13375 Sema::DeclGroupPtrTy 13376 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group) { 13377 // C++14 [dcl.spec.auto]p7: (DR1347) 13378 // If the type that replaces the placeholder type is not the same in each 13379 // deduction, the program is ill-formed. 13380 if (Group.size() > 1) { 13381 QualType Deduced; 13382 VarDecl *DeducedDecl = nullptr; 13383 for (unsigned i = 0, e = Group.size(); i != e; ++i) { 13384 VarDecl *D = dyn_cast<VarDecl>(Group[i]); 13385 if (!D || D->isInvalidDecl()) 13386 break; 13387 DeducedType *DT = D->getType()->getContainedDeducedType(); 13388 if (!DT || DT->getDeducedType().isNull()) 13389 continue; 13390 if (Deduced.isNull()) { 13391 Deduced = DT->getDeducedType(); 13392 DeducedDecl = D; 13393 } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) { 13394 auto *AT = dyn_cast<AutoType>(DT); 13395 auto Dia = Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(), 13396 diag::err_auto_different_deductions) 13397 << (AT ? (unsigned)AT->getKeyword() : 3) << Deduced 13398 << DeducedDecl->getDeclName() << DT->getDeducedType() 13399 << D->getDeclName(); 13400 if (DeducedDecl->hasInit()) 13401 Dia << DeducedDecl->getInit()->getSourceRange(); 13402 if (D->getInit()) 13403 Dia << D->getInit()->getSourceRange(); 13404 D->setInvalidDecl(); 13405 break; 13406 } 13407 } 13408 } 13409 13410 ActOnDocumentableDecls(Group); 13411 13412 return DeclGroupPtrTy::make( 13413 DeclGroupRef::Create(Context, Group.data(), Group.size())); 13414 } 13415 13416 void Sema::ActOnDocumentableDecl(Decl *D) { 13417 ActOnDocumentableDecls(D); 13418 } 13419 13420 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) { 13421 // Don't parse the comment if Doxygen diagnostics are ignored. 13422 if (Group.empty() || !Group[0]) 13423 return; 13424 13425 if (Diags.isIgnored(diag::warn_doc_param_not_found, 13426 Group[0]->getLocation()) && 13427 Diags.isIgnored(diag::warn_unknown_comment_command_name, 13428 Group[0]->getLocation())) 13429 return; 13430 13431 if (Group.size() >= 2) { 13432 // This is a decl group. Normally it will contain only declarations 13433 // produced from declarator list. But in case we have any definitions or 13434 // additional declaration references: 13435 // 'typedef struct S {} S;' 13436 // 'typedef struct S *S;' 13437 // 'struct S *pS;' 13438 // FinalizeDeclaratorGroup adds these as separate declarations. 13439 Decl *MaybeTagDecl = Group[0]; 13440 if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) { 13441 Group = Group.slice(1); 13442 } 13443 } 13444 13445 // FIMXE: We assume every Decl in the group is in the same file. 13446 // This is false when preprocessor constructs the group from decls in 13447 // different files (e. g. macros or #include). 13448 Context.attachCommentsToJustParsedDecls(Group, &getPreprocessor()); 13449 } 13450 13451 /// Common checks for a parameter-declaration that should apply to both function 13452 /// parameters and non-type template parameters. 13453 void Sema::CheckFunctionOrTemplateParamDeclarator(Scope *S, Declarator &D) { 13454 // Check that there are no default arguments inside the type of this 13455 // parameter. 13456 if (getLangOpts().CPlusPlus) 13457 CheckExtraCXXDefaultArguments(D); 13458 13459 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1). 13460 if (D.getCXXScopeSpec().isSet()) { 13461 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator) 13462 << D.getCXXScopeSpec().getRange(); 13463 } 13464 13465 // [dcl.meaning]p1: An unqualified-id occurring in a declarator-id shall be a 13466 // simple identifier except [...irrelevant cases...]. 13467 switch (D.getName().getKind()) { 13468 case UnqualifiedIdKind::IK_Identifier: 13469 break; 13470 13471 case UnqualifiedIdKind::IK_OperatorFunctionId: 13472 case UnqualifiedIdKind::IK_ConversionFunctionId: 13473 case UnqualifiedIdKind::IK_LiteralOperatorId: 13474 case UnqualifiedIdKind::IK_ConstructorName: 13475 case UnqualifiedIdKind::IK_DestructorName: 13476 case UnqualifiedIdKind::IK_ImplicitSelfParam: 13477 case UnqualifiedIdKind::IK_DeductionGuideName: 13478 Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name) 13479 << GetNameForDeclarator(D).getName(); 13480 break; 13481 13482 case UnqualifiedIdKind::IK_TemplateId: 13483 case UnqualifiedIdKind::IK_ConstructorTemplateId: 13484 // GetNameForDeclarator would not produce a useful name in this case. 13485 Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name_template_id); 13486 break; 13487 } 13488 } 13489 13490 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator() 13491 /// to introduce parameters into function prototype scope. 13492 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) { 13493 const DeclSpec &DS = D.getDeclSpec(); 13494 13495 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'. 13496 13497 // C++03 [dcl.stc]p2 also permits 'auto'. 13498 StorageClass SC = SC_None; 13499 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) { 13500 SC = SC_Register; 13501 // In C++11, the 'register' storage class specifier is deprecated. 13502 // In C++17, it is not allowed, but we tolerate it as an extension. 13503 if (getLangOpts().CPlusPlus11) { 13504 Diag(DS.getStorageClassSpecLoc(), 13505 getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class 13506 : diag::warn_deprecated_register) 13507 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 13508 } 13509 } else if (getLangOpts().CPlusPlus && 13510 DS.getStorageClassSpec() == DeclSpec::SCS_auto) { 13511 SC = SC_Auto; 13512 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) { 13513 Diag(DS.getStorageClassSpecLoc(), 13514 diag::err_invalid_storage_class_in_func_decl); 13515 D.getMutableDeclSpec().ClearStorageClassSpecs(); 13516 } 13517 13518 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 13519 Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread) 13520 << DeclSpec::getSpecifierName(TSCS); 13521 if (DS.isInlineSpecified()) 13522 Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function) 13523 << getLangOpts().CPlusPlus17; 13524 if (DS.hasConstexprSpecifier()) 13525 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr) 13526 << 0 << D.getDeclSpec().getConstexprSpecifier(); 13527 13528 DiagnoseFunctionSpecifiers(DS); 13529 13530 CheckFunctionOrTemplateParamDeclarator(S, D); 13531 13532 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 13533 QualType parmDeclType = TInfo->getType(); 13534 13535 // Check for redeclaration of parameters, e.g. int foo(int x, int x); 13536 IdentifierInfo *II = D.getIdentifier(); 13537 if (II) { 13538 LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName, 13539 ForVisibleRedeclaration); 13540 LookupName(R, S); 13541 if (R.isSingleResult()) { 13542 NamedDecl *PrevDecl = R.getFoundDecl(); 13543 if (PrevDecl->isTemplateParameter()) { 13544 // Maybe we will complain about the shadowed template parameter. 13545 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 13546 // Just pretend that we didn't see the previous declaration. 13547 PrevDecl = nullptr; 13548 } else if (S->isDeclScope(PrevDecl)) { 13549 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II; 13550 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 13551 13552 // Recover by removing the name 13553 II = nullptr; 13554 D.SetIdentifier(nullptr, D.getIdentifierLoc()); 13555 D.setInvalidType(true); 13556 } 13557 } 13558 } 13559 13560 // Temporarily put parameter variables in the translation unit, not 13561 // the enclosing context. This prevents them from accidentally 13562 // looking like class members in C++. 13563 ParmVarDecl *New = 13564 CheckParameter(Context.getTranslationUnitDecl(), D.getBeginLoc(), 13565 D.getIdentifierLoc(), II, parmDeclType, TInfo, SC); 13566 13567 if (D.isInvalidType()) 13568 New->setInvalidDecl(); 13569 13570 assert(S->isFunctionPrototypeScope()); 13571 assert(S->getFunctionPrototypeDepth() >= 1); 13572 New->setScopeInfo(S->getFunctionPrototypeDepth() - 1, 13573 S->getNextFunctionPrototypeIndex()); 13574 13575 // Add the parameter declaration into this scope. 13576 S->AddDecl(New); 13577 if (II) 13578 IdResolver.AddDecl(New); 13579 13580 ProcessDeclAttributes(S, New, D); 13581 13582 if (D.getDeclSpec().isModulePrivateSpecified()) 13583 Diag(New->getLocation(), diag::err_module_private_local) 13584 << 1 << New << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 13585 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 13586 13587 if (New->hasAttr<BlocksAttr>()) { 13588 Diag(New->getLocation(), diag::err_block_on_nonlocal); 13589 } 13590 13591 if (getLangOpts().OpenCL) 13592 deduceOpenCLAddressSpace(New); 13593 13594 return New; 13595 } 13596 13597 /// Synthesizes a variable for a parameter arising from a 13598 /// typedef. 13599 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC, 13600 SourceLocation Loc, 13601 QualType T) { 13602 /* FIXME: setting StartLoc == Loc. 13603 Would it be worth to modify callers so as to provide proper source 13604 location for the unnamed parameters, embedding the parameter's type? */ 13605 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr, 13606 T, Context.getTrivialTypeSourceInfo(T, Loc), 13607 SC_None, nullptr); 13608 Param->setImplicit(); 13609 return Param; 13610 } 13611 13612 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) { 13613 // Don't diagnose unused-parameter errors in template instantiations; we 13614 // will already have done so in the template itself. 13615 if (inTemplateInstantiation()) 13616 return; 13617 13618 for (const ParmVarDecl *Parameter : Parameters) { 13619 if (!Parameter->isReferenced() && Parameter->getDeclName() && 13620 !Parameter->hasAttr<UnusedAttr>()) { 13621 Diag(Parameter->getLocation(), diag::warn_unused_parameter) 13622 << Parameter->getDeclName(); 13623 } 13624 } 13625 } 13626 13627 void Sema::DiagnoseSizeOfParametersAndReturnValue( 13628 ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) { 13629 if (LangOpts.NumLargeByValueCopy == 0) // No check. 13630 return; 13631 13632 // Warn if the return value is pass-by-value and larger than the specified 13633 // threshold. 13634 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) { 13635 unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity(); 13636 if (Size > LangOpts.NumLargeByValueCopy) 13637 Diag(D->getLocation(), diag::warn_return_value_size) << D << Size; 13638 } 13639 13640 // Warn if any parameter is pass-by-value and larger than the specified 13641 // threshold. 13642 for (const ParmVarDecl *Parameter : Parameters) { 13643 QualType T = Parameter->getType(); 13644 if (T->isDependentType() || !T.isPODType(Context)) 13645 continue; 13646 unsigned Size = Context.getTypeSizeInChars(T).getQuantity(); 13647 if (Size > LangOpts.NumLargeByValueCopy) 13648 Diag(Parameter->getLocation(), diag::warn_parameter_size) 13649 << Parameter << Size; 13650 } 13651 } 13652 13653 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc, 13654 SourceLocation NameLoc, IdentifierInfo *Name, 13655 QualType T, TypeSourceInfo *TSInfo, 13656 StorageClass SC) { 13657 // In ARC, infer a lifetime qualifier for appropriate parameter types. 13658 if (getLangOpts().ObjCAutoRefCount && 13659 T.getObjCLifetime() == Qualifiers::OCL_None && 13660 T->isObjCLifetimeType()) { 13661 13662 Qualifiers::ObjCLifetime lifetime; 13663 13664 // Special cases for arrays: 13665 // - if it's const, use __unsafe_unretained 13666 // - otherwise, it's an error 13667 if (T->isArrayType()) { 13668 if (!T.isConstQualified()) { 13669 if (DelayedDiagnostics.shouldDelayDiagnostics()) 13670 DelayedDiagnostics.add( 13671 sema::DelayedDiagnostic::makeForbiddenType( 13672 NameLoc, diag::err_arc_array_param_no_ownership, T, false)); 13673 else 13674 Diag(NameLoc, diag::err_arc_array_param_no_ownership) 13675 << TSInfo->getTypeLoc().getSourceRange(); 13676 } 13677 lifetime = Qualifiers::OCL_ExplicitNone; 13678 } else { 13679 lifetime = T->getObjCARCImplicitLifetime(); 13680 } 13681 T = Context.getLifetimeQualifiedType(T, lifetime); 13682 } 13683 13684 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, 13685 Context.getAdjustedParameterType(T), 13686 TSInfo, SC, nullptr); 13687 13688 // Make a note if we created a new pack in the scope of a lambda, so that 13689 // we know that references to that pack must also be expanded within the 13690 // lambda scope. 13691 if (New->isParameterPack()) 13692 if (auto *LSI = getEnclosingLambda()) 13693 LSI->LocalPacks.push_back(New); 13694 13695 if (New->getType().hasNonTrivialToPrimitiveDestructCUnion() || 13696 New->getType().hasNonTrivialToPrimitiveCopyCUnion()) 13697 checkNonTrivialCUnion(New->getType(), New->getLocation(), 13698 NTCUC_FunctionParam, NTCUK_Destruct|NTCUK_Copy); 13699 13700 // Parameters can not be abstract class types. 13701 // For record types, this is done by the AbstractClassUsageDiagnoser once 13702 // the class has been completely parsed. 13703 if (!CurContext->isRecord() && 13704 RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl, 13705 AbstractParamType)) 13706 New->setInvalidDecl(); 13707 13708 // Parameter declarators cannot be interface types. All ObjC objects are 13709 // passed by reference. 13710 if (T->isObjCObjectType()) { 13711 SourceLocation TypeEndLoc = 13712 getLocForEndOfToken(TSInfo->getTypeLoc().getEndLoc()); 13713 Diag(NameLoc, 13714 diag::err_object_cannot_be_passed_returned_by_value) << 1 << T 13715 << FixItHint::CreateInsertion(TypeEndLoc, "*"); 13716 T = Context.getObjCObjectPointerType(T); 13717 New->setType(T); 13718 } 13719 13720 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage 13721 // duration shall not be qualified by an address-space qualifier." 13722 // Since all parameters have automatic store duration, they can not have 13723 // an address space. 13724 if (T.getAddressSpace() != LangAS::Default && 13725 // OpenCL allows function arguments declared to be an array of a type 13726 // to be qualified with an address space. 13727 !(getLangOpts().OpenCL && 13728 (T->isArrayType() || T.getAddressSpace() == LangAS::opencl_private))) { 13729 Diag(NameLoc, diag::err_arg_with_address_space); 13730 New->setInvalidDecl(); 13731 } 13732 13733 return New; 13734 } 13735 13736 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D, 13737 SourceLocation LocAfterDecls) { 13738 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 13739 13740 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared' 13741 // for a K&R function. 13742 if (!FTI.hasPrototype) { 13743 for (int i = FTI.NumParams; i != 0; /* decrement in loop */) { 13744 --i; 13745 if (FTI.Params[i].Param == nullptr) { 13746 SmallString<256> Code; 13747 llvm::raw_svector_ostream(Code) 13748 << " int " << FTI.Params[i].Ident->getName() << ";\n"; 13749 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared) 13750 << FTI.Params[i].Ident 13751 << FixItHint::CreateInsertion(LocAfterDecls, Code); 13752 13753 // Implicitly declare the argument as type 'int' for lack of a better 13754 // type. 13755 AttributeFactory attrs; 13756 DeclSpec DS(attrs); 13757 const char* PrevSpec; // unused 13758 unsigned DiagID; // unused 13759 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec, 13760 DiagID, Context.getPrintingPolicy()); 13761 // Use the identifier location for the type source range. 13762 DS.SetRangeStart(FTI.Params[i].IdentLoc); 13763 DS.SetRangeEnd(FTI.Params[i].IdentLoc); 13764 Declarator ParamD(DS, DeclaratorContext::KNRTypeListContext); 13765 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); 13766 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); 13767 } 13768 } 13769 } 13770 } 13771 13772 Decl * 13773 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D, 13774 MultiTemplateParamsArg TemplateParameterLists, 13775 SkipBodyInfo *SkipBody) { 13776 assert(getCurFunctionDecl() == nullptr && "Function parsing confused"); 13777 assert(D.isFunctionDeclarator() && "Not a function declarator!"); 13778 Scope *ParentScope = FnBodyScope->getParent(); 13779 13780 // Check if we are in an `omp begin/end declare variant` scope. If we are, and 13781 // we define a non-templated function definition, we will create a declaration 13782 // instead (=BaseFD), and emit the definition with a mangled name afterwards. 13783 // The base function declaration will have the equivalent of an `omp declare 13784 // variant` annotation which specifies the mangled definition as a 13785 // specialization function under the OpenMP context defined as part of the 13786 // `omp begin declare variant`. 13787 SmallVector<FunctionDecl *, 4> Bases; 13788 if (LangOpts.OpenMP && isInOpenMPDeclareVariantScope()) 13789 ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope( 13790 ParentScope, D, TemplateParameterLists, Bases); 13791 13792 D.setFunctionDefinitionKind(FDK_Definition); 13793 Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists); 13794 Decl *Dcl = ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody); 13795 13796 if (!Bases.empty()) 13797 ActOnFinishedFunctionDefinitionInOpenMPDeclareVariantScope(Dcl, Bases); 13798 13799 return Dcl; 13800 } 13801 13802 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) { 13803 Consumer.HandleInlineFunctionDefinition(D); 13804 } 13805 13806 static bool 13807 ShouldWarnAboutMissingPrototype(const FunctionDecl *FD, 13808 const FunctionDecl *&PossiblePrototype) { 13809 // Don't warn about invalid declarations. 13810 if (FD->isInvalidDecl()) 13811 return false; 13812 13813 // Or declarations that aren't global. 13814 if (!FD->isGlobal()) 13815 return false; 13816 13817 // Don't warn about C++ member functions. 13818 if (isa<CXXMethodDecl>(FD)) 13819 return false; 13820 13821 // Don't warn about 'main'. 13822 if (isa<TranslationUnitDecl>(FD->getDeclContext()->getRedeclContext())) 13823 if (IdentifierInfo *II = FD->getIdentifier()) 13824 if (II->isStr("main")) 13825 return false; 13826 13827 // Don't warn about inline functions. 13828 if (FD->isInlined()) 13829 return false; 13830 13831 // Don't warn about function templates. 13832 if (FD->getDescribedFunctionTemplate()) 13833 return false; 13834 13835 // Don't warn about function template specializations. 13836 if (FD->isFunctionTemplateSpecialization()) 13837 return false; 13838 13839 // Don't warn for OpenCL kernels. 13840 if (FD->hasAttr<OpenCLKernelAttr>()) 13841 return false; 13842 13843 // Don't warn on explicitly deleted functions. 13844 if (FD->isDeleted()) 13845 return false; 13846 13847 for (const FunctionDecl *Prev = FD->getPreviousDecl(); 13848 Prev; Prev = Prev->getPreviousDecl()) { 13849 // Ignore any declarations that occur in function or method 13850 // scope, because they aren't visible from the header. 13851 if (Prev->getLexicalDeclContext()->isFunctionOrMethod()) 13852 continue; 13853 13854 PossiblePrototype = Prev; 13855 return Prev->getType()->isFunctionNoProtoType(); 13856 } 13857 13858 return true; 13859 } 13860 13861 void 13862 Sema::CheckForFunctionRedefinition(FunctionDecl *FD, 13863 const FunctionDecl *EffectiveDefinition, 13864 SkipBodyInfo *SkipBody) { 13865 const FunctionDecl *Definition = EffectiveDefinition; 13866 if (!Definition && !FD->isDefined(Definition) && !FD->isCXXClassMember()) { 13867 // If this is a friend function defined in a class template, it does not 13868 // have a body until it is used, nevertheless it is a definition, see 13869 // [temp.inst]p2: 13870 // 13871 // ... for the purpose of determining whether an instantiated redeclaration 13872 // is valid according to [basic.def.odr] and [class.mem], a declaration that 13873 // corresponds to a definition in the template is considered to be a 13874 // definition. 13875 // 13876 // The following code must produce redefinition error: 13877 // 13878 // template<typename T> struct C20 { friend void func_20() {} }; 13879 // C20<int> c20i; 13880 // void func_20() {} 13881 // 13882 for (auto I : FD->redecls()) { 13883 if (I != FD && !I->isInvalidDecl() && 13884 I->getFriendObjectKind() != Decl::FOK_None) { 13885 if (FunctionDecl *Original = I->getInstantiatedFromMemberFunction()) { 13886 if (FunctionDecl *OrigFD = FD->getInstantiatedFromMemberFunction()) { 13887 // A merged copy of the same function, instantiated as a member of 13888 // the same class, is OK. 13889 if (declaresSameEntity(OrigFD, Original) && 13890 declaresSameEntity(cast<Decl>(I->getLexicalDeclContext()), 13891 cast<Decl>(FD->getLexicalDeclContext()))) 13892 continue; 13893 } 13894 13895 if (Original->isThisDeclarationADefinition()) { 13896 Definition = I; 13897 break; 13898 } 13899 } 13900 } 13901 } 13902 } 13903 13904 if (!Definition) 13905 // Similar to friend functions a friend function template may be a 13906 // definition and do not have a body if it is instantiated in a class 13907 // template. 13908 if (FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) { 13909 for (auto I : FTD->redecls()) { 13910 auto D = cast<FunctionTemplateDecl>(I); 13911 if (D != FTD) { 13912 assert(!D->isThisDeclarationADefinition() && 13913 "More than one definition in redeclaration chain"); 13914 if (D->getFriendObjectKind() != Decl::FOK_None) 13915 if (FunctionTemplateDecl *FT = 13916 D->getInstantiatedFromMemberTemplate()) { 13917 if (FT->isThisDeclarationADefinition()) { 13918 Definition = D->getTemplatedDecl(); 13919 break; 13920 } 13921 } 13922 } 13923 } 13924 } 13925 13926 if (!Definition) 13927 return; 13928 13929 if (canRedefineFunction(Definition, getLangOpts())) 13930 return; 13931 13932 // Don't emit an error when this is redefinition of a typo-corrected 13933 // definition. 13934 if (TypoCorrectedFunctionDefinitions.count(Definition)) 13935 return; 13936 13937 // If we don't have a visible definition of the function, and it's inline or 13938 // a template, skip the new definition. 13939 if (SkipBody && !hasVisibleDefinition(Definition) && 13940 (Definition->getFormalLinkage() == InternalLinkage || 13941 Definition->isInlined() || 13942 Definition->getDescribedFunctionTemplate() || 13943 Definition->getNumTemplateParameterLists())) { 13944 SkipBody->ShouldSkip = true; 13945 SkipBody->Previous = const_cast<FunctionDecl*>(Definition); 13946 if (auto *TD = Definition->getDescribedFunctionTemplate()) 13947 makeMergedDefinitionVisible(TD); 13948 makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition)); 13949 return; 13950 } 13951 13952 if (getLangOpts().GNUMode && Definition->isInlineSpecified() && 13953 Definition->getStorageClass() == SC_Extern) 13954 Diag(FD->getLocation(), diag::err_redefinition_extern_inline) 13955 << FD << getLangOpts().CPlusPlus; 13956 else 13957 Diag(FD->getLocation(), diag::err_redefinition) << FD; 13958 13959 Diag(Definition->getLocation(), diag::note_previous_definition); 13960 FD->setInvalidDecl(); 13961 } 13962 13963 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator, 13964 Sema &S) { 13965 CXXRecordDecl *const LambdaClass = CallOperator->getParent(); 13966 13967 LambdaScopeInfo *LSI = S.PushLambdaScope(); 13968 LSI->CallOperator = CallOperator; 13969 LSI->Lambda = LambdaClass; 13970 LSI->ReturnType = CallOperator->getReturnType(); 13971 const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault(); 13972 13973 if (LCD == LCD_None) 13974 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None; 13975 else if (LCD == LCD_ByCopy) 13976 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval; 13977 else if (LCD == LCD_ByRef) 13978 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref; 13979 DeclarationNameInfo DNI = CallOperator->getNameInfo(); 13980 13981 LSI->IntroducerRange = DNI.getCXXOperatorNameRange(); 13982 LSI->Mutable = !CallOperator->isConst(); 13983 13984 // Add the captures to the LSI so they can be noted as already 13985 // captured within tryCaptureVar. 13986 auto I = LambdaClass->field_begin(); 13987 for (const auto &C : LambdaClass->captures()) { 13988 if (C.capturesVariable()) { 13989 VarDecl *VD = C.getCapturedVar(); 13990 if (VD->isInitCapture()) 13991 S.CurrentInstantiationScope->InstantiatedLocal(VD, VD); 13992 const bool ByRef = C.getCaptureKind() == LCK_ByRef; 13993 LSI->addCapture(VD, /*IsBlock*/false, ByRef, 13994 /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(), 13995 /*EllipsisLoc*/C.isPackExpansion() 13996 ? C.getEllipsisLoc() : SourceLocation(), 13997 I->getType(), /*Invalid*/false); 13998 13999 } else if (C.capturesThis()) { 14000 LSI->addThisCapture(/*Nested*/ false, C.getLocation(), I->getType(), 14001 C.getCaptureKind() == LCK_StarThis); 14002 } else { 14003 LSI->addVLATypeCapture(C.getLocation(), I->getCapturedVLAType(), 14004 I->getType()); 14005 } 14006 ++I; 14007 } 14008 } 14009 14010 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, 14011 SkipBodyInfo *SkipBody) { 14012 if (!D) { 14013 // Parsing the function declaration failed in some way. Push on a fake scope 14014 // anyway so we can try to parse the function body. 14015 PushFunctionScope(); 14016 PushExpressionEvaluationContext(ExprEvalContexts.back().Context); 14017 return D; 14018 } 14019 14020 FunctionDecl *FD = nullptr; 14021 14022 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) 14023 FD = FunTmpl->getTemplatedDecl(); 14024 else 14025 FD = cast<FunctionDecl>(D); 14026 14027 // Do not push if it is a lambda because one is already pushed when building 14028 // the lambda in ActOnStartOfLambdaDefinition(). 14029 if (!isLambdaCallOperator(FD)) 14030 PushExpressionEvaluationContext( 14031 FD->isConsteval() ? ExpressionEvaluationContext::ConstantEvaluated 14032 : ExprEvalContexts.back().Context); 14033 14034 // Check for defining attributes before the check for redefinition. 14035 if (const auto *Attr = FD->getAttr<AliasAttr>()) { 14036 Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0; 14037 FD->dropAttr<AliasAttr>(); 14038 FD->setInvalidDecl(); 14039 } 14040 if (const auto *Attr = FD->getAttr<IFuncAttr>()) { 14041 Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1; 14042 FD->dropAttr<IFuncAttr>(); 14043 FD->setInvalidDecl(); 14044 } 14045 14046 // See if this is a redefinition. If 'will have body' is already set, then 14047 // these checks were already performed when it was set. 14048 if (!FD->willHaveBody() && !FD->isLateTemplateParsed()) { 14049 CheckForFunctionRedefinition(FD, nullptr, SkipBody); 14050 14051 // If we're skipping the body, we're done. Don't enter the scope. 14052 if (SkipBody && SkipBody->ShouldSkip) 14053 return D; 14054 } 14055 14056 // Mark this function as "will have a body eventually". This lets users to 14057 // call e.g. isInlineDefinitionExternallyVisible while we're still parsing 14058 // this function. 14059 FD->setWillHaveBody(); 14060 14061 // If we are instantiating a generic lambda call operator, push 14062 // a LambdaScopeInfo onto the function stack. But use the information 14063 // that's already been calculated (ActOnLambdaExpr) to prime the current 14064 // LambdaScopeInfo. 14065 // When the template operator is being specialized, the LambdaScopeInfo, 14066 // has to be properly restored so that tryCaptureVariable doesn't try 14067 // and capture any new variables. In addition when calculating potential 14068 // captures during transformation of nested lambdas, it is necessary to 14069 // have the LSI properly restored. 14070 if (isGenericLambdaCallOperatorSpecialization(FD)) { 14071 assert(inTemplateInstantiation() && 14072 "There should be an active template instantiation on the stack " 14073 "when instantiating a generic lambda!"); 14074 RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this); 14075 } else { 14076 // Enter a new function scope 14077 PushFunctionScope(); 14078 } 14079 14080 // Builtin functions cannot be defined. 14081 if (unsigned BuiltinID = FD->getBuiltinID()) { 14082 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) && 14083 !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) { 14084 Diag(FD->getLocation(), diag::err_builtin_definition) << FD; 14085 FD->setInvalidDecl(); 14086 } 14087 } 14088 14089 // The return type of a function definition must be complete 14090 // (C99 6.9.1p3, C++ [dcl.fct]p6). 14091 QualType ResultType = FD->getReturnType(); 14092 if (!ResultType->isDependentType() && !ResultType->isVoidType() && 14093 !FD->isInvalidDecl() && 14094 RequireCompleteType(FD->getLocation(), ResultType, 14095 diag::err_func_def_incomplete_result)) 14096 FD->setInvalidDecl(); 14097 14098 if (FnBodyScope) 14099 PushDeclContext(FnBodyScope, FD); 14100 14101 // Check the validity of our function parameters 14102 CheckParmsForFunctionDef(FD->parameters(), 14103 /*CheckParameterNames=*/true); 14104 14105 // Add non-parameter declarations already in the function to the current 14106 // scope. 14107 if (FnBodyScope) { 14108 for (Decl *NPD : FD->decls()) { 14109 auto *NonParmDecl = dyn_cast<NamedDecl>(NPD); 14110 if (!NonParmDecl) 14111 continue; 14112 assert(!isa<ParmVarDecl>(NonParmDecl) && 14113 "parameters should not be in newly created FD yet"); 14114 14115 // If the decl has a name, make it accessible in the current scope. 14116 if (NonParmDecl->getDeclName()) 14117 PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false); 14118 14119 // Similarly, dive into enums and fish their constants out, making them 14120 // accessible in this scope. 14121 if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) { 14122 for (auto *EI : ED->enumerators()) 14123 PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false); 14124 } 14125 } 14126 } 14127 14128 // Introduce our parameters into the function scope 14129 for (auto Param : FD->parameters()) { 14130 Param->setOwningFunction(FD); 14131 14132 // If this has an identifier, add it to the scope stack. 14133 if (Param->getIdentifier() && FnBodyScope) { 14134 CheckShadow(FnBodyScope, Param); 14135 14136 PushOnScopeChains(Param, FnBodyScope); 14137 } 14138 } 14139 14140 // Ensure that the function's exception specification is instantiated. 14141 if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>()) 14142 ResolveExceptionSpec(D->getLocation(), FPT); 14143 14144 // dllimport cannot be applied to non-inline function definitions. 14145 if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() && 14146 !FD->isTemplateInstantiation()) { 14147 assert(!FD->hasAttr<DLLExportAttr>()); 14148 Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition); 14149 FD->setInvalidDecl(); 14150 return D; 14151 } 14152 // We want to attach documentation to original Decl (which might be 14153 // a function template). 14154 ActOnDocumentableDecl(D); 14155 if (getCurLexicalContext()->isObjCContainer() && 14156 getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl && 14157 getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation) 14158 Diag(FD->getLocation(), diag::warn_function_def_in_objc_container); 14159 14160 return D; 14161 } 14162 14163 /// Given the set of return statements within a function body, 14164 /// compute the variables that are subject to the named return value 14165 /// optimization. 14166 /// 14167 /// Each of the variables that is subject to the named return value 14168 /// optimization will be marked as NRVO variables in the AST, and any 14169 /// return statement that has a marked NRVO variable as its NRVO candidate can 14170 /// use the named return value optimization. 14171 /// 14172 /// This function applies a very simplistic algorithm for NRVO: if every return 14173 /// statement in the scope of a variable has the same NRVO candidate, that 14174 /// candidate is an NRVO variable. 14175 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) { 14176 ReturnStmt **Returns = Scope->Returns.data(); 14177 14178 for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) { 14179 if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) { 14180 if (!NRVOCandidate->isNRVOVariable()) 14181 Returns[I]->setNRVOCandidate(nullptr); 14182 } 14183 } 14184 } 14185 14186 bool Sema::canDelayFunctionBody(const Declarator &D) { 14187 // We can't delay parsing the body of a constexpr function template (yet). 14188 if (D.getDeclSpec().hasConstexprSpecifier()) 14189 return false; 14190 14191 // We can't delay parsing the body of a function template with a deduced 14192 // return type (yet). 14193 if (D.getDeclSpec().hasAutoTypeSpec()) { 14194 // If the placeholder introduces a non-deduced trailing return type, 14195 // we can still delay parsing it. 14196 if (D.getNumTypeObjects()) { 14197 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1); 14198 if (Outer.Kind == DeclaratorChunk::Function && 14199 Outer.Fun.hasTrailingReturnType()) { 14200 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType()); 14201 return Ty.isNull() || !Ty->isUndeducedType(); 14202 } 14203 } 14204 return false; 14205 } 14206 14207 return true; 14208 } 14209 14210 bool Sema::canSkipFunctionBody(Decl *D) { 14211 // We cannot skip the body of a function (or function template) which is 14212 // constexpr, since we may need to evaluate its body in order to parse the 14213 // rest of the file. 14214 // We cannot skip the body of a function with an undeduced return type, 14215 // because any callers of that function need to know the type. 14216 if (const FunctionDecl *FD = D->getAsFunction()) { 14217 if (FD->isConstexpr()) 14218 return false; 14219 // We can't simply call Type::isUndeducedType here, because inside template 14220 // auto can be deduced to a dependent type, which is not considered 14221 // "undeduced". 14222 if (FD->getReturnType()->getContainedDeducedType()) 14223 return false; 14224 } 14225 return Consumer.shouldSkipFunctionBody(D); 14226 } 14227 14228 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) { 14229 if (!Decl) 14230 return nullptr; 14231 if (FunctionDecl *FD = Decl->getAsFunction()) 14232 FD->setHasSkippedBody(); 14233 else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(Decl)) 14234 MD->setHasSkippedBody(); 14235 return Decl; 14236 } 14237 14238 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) { 14239 return ActOnFinishFunctionBody(D, BodyArg, false); 14240 } 14241 14242 /// RAII object that pops an ExpressionEvaluationContext when exiting a function 14243 /// body. 14244 class ExitFunctionBodyRAII { 14245 public: 14246 ExitFunctionBodyRAII(Sema &S, bool IsLambda) : S(S), IsLambda(IsLambda) {} 14247 ~ExitFunctionBodyRAII() { 14248 if (!IsLambda) 14249 S.PopExpressionEvaluationContext(); 14250 } 14251 14252 private: 14253 Sema &S; 14254 bool IsLambda = false; 14255 }; 14256 14257 static void diagnoseImplicitlyRetainedSelf(Sema &S) { 14258 llvm::DenseMap<const BlockDecl *, bool> EscapeInfo; 14259 14260 auto IsOrNestedInEscapingBlock = [&](const BlockDecl *BD) { 14261 if (EscapeInfo.count(BD)) 14262 return EscapeInfo[BD]; 14263 14264 bool R = false; 14265 const BlockDecl *CurBD = BD; 14266 14267 do { 14268 R = !CurBD->doesNotEscape(); 14269 if (R) 14270 break; 14271 CurBD = CurBD->getParent()->getInnermostBlockDecl(); 14272 } while (CurBD); 14273 14274 return EscapeInfo[BD] = R; 14275 }; 14276 14277 // If the location where 'self' is implicitly retained is inside a escaping 14278 // block, emit a diagnostic. 14279 for (const std::pair<SourceLocation, const BlockDecl *> &P : 14280 S.ImplicitlyRetainedSelfLocs) 14281 if (IsOrNestedInEscapingBlock(P.second)) 14282 S.Diag(P.first, diag::warn_implicitly_retains_self) 14283 << FixItHint::CreateInsertion(P.first, "self->"); 14284 } 14285 14286 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body, 14287 bool IsInstantiation) { 14288 FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr; 14289 14290 sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 14291 sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr; 14292 14293 if (getLangOpts().Coroutines && getCurFunction()->isCoroutine()) 14294 CheckCompletedCoroutineBody(FD, Body); 14295 14296 // Do not call PopExpressionEvaluationContext() if it is a lambda because one 14297 // is already popped when finishing the lambda in BuildLambdaExpr(). This is 14298 // meant to pop the context added in ActOnStartOfFunctionDef(). 14299 ExitFunctionBodyRAII ExitRAII(*this, isLambdaCallOperator(FD)); 14300 14301 if (FD) { 14302 FD->setBody(Body); 14303 FD->setWillHaveBody(false); 14304 14305 if (getLangOpts().CPlusPlus14) { 14306 if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() && 14307 FD->getReturnType()->isUndeducedType()) { 14308 // If the function has a deduced result type but contains no 'return' 14309 // statements, the result type as written must be exactly 'auto', and 14310 // the deduced result type is 'void'. 14311 if (!FD->getReturnType()->getAs<AutoType>()) { 14312 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto) 14313 << FD->getReturnType(); 14314 FD->setInvalidDecl(); 14315 } else { 14316 // Substitute 'void' for the 'auto' in the type. 14317 TypeLoc ResultType = getReturnTypeLoc(FD); 14318 Context.adjustDeducedFunctionResultType( 14319 FD, SubstAutoType(ResultType.getType(), Context.VoidTy)); 14320 } 14321 } 14322 } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) { 14323 // In C++11, we don't use 'auto' deduction rules for lambda call 14324 // operators because we don't support return type deduction. 14325 auto *LSI = getCurLambda(); 14326 if (LSI->HasImplicitReturnType) { 14327 deduceClosureReturnType(*LSI); 14328 14329 // C++11 [expr.prim.lambda]p4: 14330 // [...] if there are no return statements in the compound-statement 14331 // [the deduced type is] the type void 14332 QualType RetType = 14333 LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType; 14334 14335 // Update the return type to the deduced type. 14336 const auto *Proto = FD->getType()->castAs<FunctionProtoType>(); 14337 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(), 14338 Proto->getExtProtoInfo())); 14339 } 14340 } 14341 14342 // If the function implicitly returns zero (like 'main') or is naked, 14343 // don't complain about missing return statements. 14344 if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>()) 14345 WP.disableCheckFallThrough(); 14346 14347 // MSVC permits the use of pure specifier (=0) on function definition, 14348 // defined at class scope, warn about this non-standard construct. 14349 if (getLangOpts().MicrosoftExt && FD->isPure() && !FD->isOutOfLine()) 14350 Diag(FD->getLocation(), diag::ext_pure_function_definition); 14351 14352 if (!FD->isInvalidDecl()) { 14353 // Don't diagnose unused parameters of defaulted or deleted functions. 14354 if (!FD->isDeleted() && !FD->isDefaulted() && !FD->hasSkippedBody()) 14355 DiagnoseUnusedParameters(FD->parameters()); 14356 DiagnoseSizeOfParametersAndReturnValue(FD->parameters(), 14357 FD->getReturnType(), FD); 14358 14359 // If this is a structor, we need a vtable. 14360 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD)) 14361 MarkVTableUsed(FD->getLocation(), Constructor->getParent()); 14362 else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD)) 14363 MarkVTableUsed(FD->getLocation(), Destructor->getParent()); 14364 14365 // Try to apply the named return value optimization. We have to check 14366 // if we can do this here because lambdas keep return statements around 14367 // to deduce an implicit return type. 14368 if (FD->getReturnType()->isRecordType() && 14369 (!getLangOpts().CPlusPlus || !FD->isDependentContext())) 14370 computeNRVO(Body, getCurFunction()); 14371 } 14372 14373 // GNU warning -Wmissing-prototypes: 14374 // Warn if a global function is defined without a previous 14375 // prototype declaration. This warning is issued even if the 14376 // definition itself provides a prototype. The aim is to detect 14377 // global functions that fail to be declared in header files. 14378 const FunctionDecl *PossiblePrototype = nullptr; 14379 if (ShouldWarnAboutMissingPrototype(FD, PossiblePrototype)) { 14380 Diag(FD->getLocation(), diag::warn_missing_prototype) << FD; 14381 14382 if (PossiblePrototype) { 14383 // We found a declaration that is not a prototype, 14384 // but that could be a zero-parameter prototype 14385 if (TypeSourceInfo *TI = PossiblePrototype->getTypeSourceInfo()) { 14386 TypeLoc TL = TI->getTypeLoc(); 14387 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>()) 14388 Diag(PossiblePrototype->getLocation(), 14389 diag::note_declaration_not_a_prototype) 14390 << (FD->getNumParams() != 0) 14391 << (FD->getNumParams() == 0 14392 ? FixItHint::CreateInsertion(FTL.getRParenLoc(), "void") 14393 : FixItHint{}); 14394 } 14395 } else { 14396 // Returns true if the token beginning at this Loc is `const`. 14397 auto isLocAtConst = [&](SourceLocation Loc, const SourceManager &SM, 14398 const LangOptions &LangOpts) { 14399 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc); 14400 if (LocInfo.first.isInvalid()) 14401 return false; 14402 14403 bool Invalid = false; 14404 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid); 14405 if (Invalid) 14406 return false; 14407 14408 if (LocInfo.second > Buffer.size()) 14409 return false; 14410 14411 const char *LexStart = Buffer.data() + LocInfo.second; 14412 StringRef StartTok(LexStart, Buffer.size() - LocInfo.second); 14413 14414 return StartTok.consume_front("const") && 14415 (StartTok.empty() || isWhitespace(StartTok[0]) || 14416 StartTok.startswith("/*") || StartTok.startswith("//")); 14417 }; 14418 14419 auto findBeginLoc = [&]() { 14420 // If the return type has `const` qualifier, we want to insert 14421 // `static` before `const` (and not before the typename). 14422 if ((FD->getReturnType()->isAnyPointerType() && 14423 FD->getReturnType()->getPointeeType().isConstQualified()) || 14424 FD->getReturnType().isConstQualified()) { 14425 // But only do this if we can determine where the `const` is. 14426 14427 if (isLocAtConst(FD->getBeginLoc(), getSourceManager(), 14428 getLangOpts())) 14429 14430 return FD->getBeginLoc(); 14431 } 14432 return FD->getTypeSpecStartLoc(); 14433 }; 14434 Diag(FD->getTypeSpecStartLoc(), diag::note_static_for_internal_linkage) 14435 << /* function */ 1 14436 << (FD->getStorageClass() == SC_None 14437 ? FixItHint::CreateInsertion(findBeginLoc(), "static ") 14438 : FixItHint{}); 14439 } 14440 14441 // GNU warning -Wstrict-prototypes 14442 // Warn if K&R function is defined without a previous declaration. 14443 // This warning is issued only if the definition itself does not provide 14444 // a prototype. Only K&R definitions do not provide a prototype. 14445 if (!FD->hasWrittenPrototype()) { 14446 TypeSourceInfo *TI = FD->getTypeSourceInfo(); 14447 TypeLoc TL = TI->getTypeLoc(); 14448 FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>(); 14449 Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2; 14450 } 14451 } 14452 14453 // Warn on CPUDispatch with an actual body. 14454 if (FD->isMultiVersion() && FD->hasAttr<CPUDispatchAttr>() && Body) 14455 if (const auto *CmpndBody = dyn_cast<CompoundStmt>(Body)) 14456 if (!CmpndBody->body_empty()) 14457 Diag(CmpndBody->body_front()->getBeginLoc(), 14458 diag::warn_dispatch_body_ignored); 14459 14460 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 14461 const CXXMethodDecl *KeyFunction; 14462 if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) && 14463 MD->isVirtual() && 14464 (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) && 14465 MD == KeyFunction->getCanonicalDecl()) { 14466 // Update the key-function state if necessary for this ABI. 14467 if (FD->isInlined() && 14468 !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) { 14469 Context.setNonKeyFunction(MD); 14470 14471 // If the newly-chosen key function is already defined, then we 14472 // need to mark the vtable as used retroactively. 14473 KeyFunction = Context.getCurrentKeyFunction(MD->getParent()); 14474 const FunctionDecl *Definition; 14475 if (KeyFunction && KeyFunction->isDefined(Definition)) 14476 MarkVTableUsed(Definition->getLocation(), MD->getParent(), true); 14477 } else { 14478 // We just defined they key function; mark the vtable as used. 14479 MarkVTableUsed(FD->getLocation(), MD->getParent(), true); 14480 } 14481 } 14482 } 14483 14484 assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) && 14485 "Function parsing confused"); 14486 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { 14487 assert(MD == getCurMethodDecl() && "Method parsing confused"); 14488 MD->setBody(Body); 14489 if (!MD->isInvalidDecl()) { 14490 DiagnoseSizeOfParametersAndReturnValue(MD->parameters(), 14491 MD->getReturnType(), MD); 14492 14493 if (Body) 14494 computeNRVO(Body, getCurFunction()); 14495 } 14496 if (getCurFunction()->ObjCShouldCallSuper) { 14497 Diag(MD->getEndLoc(), diag::warn_objc_missing_super_call) 14498 << MD->getSelector().getAsString(); 14499 getCurFunction()->ObjCShouldCallSuper = false; 14500 } 14501 if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) { 14502 const ObjCMethodDecl *InitMethod = nullptr; 14503 bool isDesignated = 14504 MD->isDesignatedInitializerForTheInterface(&InitMethod); 14505 assert(isDesignated && InitMethod); 14506 (void)isDesignated; 14507 14508 auto superIsNSObject = [&](const ObjCMethodDecl *MD) { 14509 auto IFace = MD->getClassInterface(); 14510 if (!IFace) 14511 return false; 14512 auto SuperD = IFace->getSuperClass(); 14513 if (!SuperD) 14514 return false; 14515 return SuperD->getIdentifier() == 14516 NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject); 14517 }; 14518 // Don't issue this warning for unavailable inits or direct subclasses 14519 // of NSObject. 14520 if (!MD->isUnavailable() && !superIsNSObject(MD)) { 14521 Diag(MD->getLocation(), 14522 diag::warn_objc_designated_init_missing_super_call); 14523 Diag(InitMethod->getLocation(), 14524 diag::note_objc_designated_init_marked_here); 14525 } 14526 getCurFunction()->ObjCWarnForNoDesignatedInitChain = false; 14527 } 14528 if (getCurFunction()->ObjCWarnForNoInitDelegation) { 14529 // Don't issue this warning for unavaialable inits. 14530 if (!MD->isUnavailable()) 14531 Diag(MD->getLocation(), 14532 diag::warn_objc_secondary_init_missing_init_call); 14533 getCurFunction()->ObjCWarnForNoInitDelegation = false; 14534 } 14535 14536 diagnoseImplicitlyRetainedSelf(*this); 14537 } else { 14538 // Parsing the function declaration failed in some way. Pop the fake scope 14539 // we pushed on. 14540 PopFunctionScopeInfo(ActivePolicy, dcl); 14541 return nullptr; 14542 } 14543 14544 if (Body && getCurFunction()->HasPotentialAvailabilityViolations) 14545 DiagnoseUnguardedAvailabilityViolations(dcl); 14546 14547 assert(!getCurFunction()->ObjCShouldCallSuper && 14548 "This should only be set for ObjC methods, which should have been " 14549 "handled in the block above."); 14550 14551 // Verify and clean out per-function state. 14552 if (Body && (!FD || !FD->isDefaulted())) { 14553 // C++ constructors that have function-try-blocks can't have return 14554 // statements in the handlers of that block. (C++ [except.handle]p14) 14555 // Verify this. 14556 if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body)) 14557 DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body)); 14558 14559 // Verify that gotos and switch cases don't jump into scopes illegally. 14560 if (getCurFunction()->NeedsScopeChecking() && 14561 !PP.isCodeCompletionEnabled()) 14562 DiagnoseInvalidJumps(Body); 14563 14564 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) { 14565 if (!Destructor->getParent()->isDependentType()) 14566 CheckDestructor(Destructor); 14567 14568 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 14569 Destructor->getParent()); 14570 } 14571 14572 // If any errors have occurred, clear out any temporaries that may have 14573 // been leftover. This ensures that these temporaries won't be picked up for 14574 // deletion in some later function. 14575 if (hasUncompilableErrorOccurred() || 14576 getDiagnostics().getSuppressAllDiagnostics()) { 14577 DiscardCleanupsInEvaluationContext(); 14578 } 14579 if (!hasUncompilableErrorOccurred() && 14580 !isa<FunctionTemplateDecl>(dcl)) { 14581 // Since the body is valid, issue any analysis-based warnings that are 14582 // enabled. 14583 ActivePolicy = &WP; 14584 } 14585 14586 if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() && 14587 !CheckConstexprFunctionDefinition(FD, CheckConstexprKind::Diagnose)) 14588 FD->setInvalidDecl(); 14589 14590 if (FD && FD->hasAttr<NakedAttr>()) { 14591 for (const Stmt *S : Body->children()) { 14592 // Allow local register variables without initializer as they don't 14593 // require prologue. 14594 bool RegisterVariables = false; 14595 if (auto *DS = dyn_cast<DeclStmt>(S)) { 14596 for (const auto *Decl : DS->decls()) { 14597 if (const auto *Var = dyn_cast<VarDecl>(Decl)) { 14598 RegisterVariables = 14599 Var->hasAttr<AsmLabelAttr>() && !Var->hasInit(); 14600 if (!RegisterVariables) 14601 break; 14602 } 14603 } 14604 } 14605 if (RegisterVariables) 14606 continue; 14607 if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) { 14608 Diag(S->getBeginLoc(), diag::err_non_asm_stmt_in_naked_function); 14609 Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute); 14610 FD->setInvalidDecl(); 14611 break; 14612 } 14613 } 14614 } 14615 14616 assert(ExprCleanupObjects.size() == 14617 ExprEvalContexts.back().NumCleanupObjects && 14618 "Leftover temporaries in function"); 14619 assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function"); 14620 assert(MaybeODRUseExprs.empty() && 14621 "Leftover expressions for odr-use checking"); 14622 } 14623 14624 if (!IsInstantiation) 14625 PopDeclContext(); 14626 14627 PopFunctionScopeInfo(ActivePolicy, dcl); 14628 // If any errors have occurred, clear out any temporaries that may have 14629 // been leftover. This ensures that these temporaries won't be picked up for 14630 // deletion in some later function. 14631 if (hasUncompilableErrorOccurred()) { 14632 DiscardCleanupsInEvaluationContext(); 14633 } 14634 14635 if (LangOpts.OpenMP || LangOpts.CUDA || LangOpts.SYCLIsDevice) { 14636 auto ES = getEmissionStatus(FD); 14637 if (ES == Sema::FunctionEmissionStatus::Emitted || 14638 ES == Sema::FunctionEmissionStatus::Unknown) 14639 DeclsToCheckForDeferredDiags.push_back(FD); 14640 } 14641 14642 return dcl; 14643 } 14644 14645 /// When we finish delayed parsing of an attribute, we must attach it to the 14646 /// relevant Decl. 14647 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D, 14648 ParsedAttributes &Attrs) { 14649 // Always attach attributes to the underlying decl. 14650 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 14651 D = TD->getTemplatedDecl(); 14652 ProcessDeclAttributeList(S, D, Attrs); 14653 14654 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D)) 14655 if (Method->isStatic()) 14656 checkThisInStaticMemberFunctionAttributes(Method); 14657 } 14658 14659 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function 14660 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2). 14661 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, 14662 IdentifierInfo &II, Scope *S) { 14663 // Find the scope in which the identifier is injected and the corresponding 14664 // DeclContext. 14665 // FIXME: C89 does not say what happens if there is no enclosing block scope. 14666 // In that case, we inject the declaration into the translation unit scope 14667 // instead. 14668 Scope *BlockScope = S; 14669 while (!BlockScope->isCompoundStmtScope() && BlockScope->getParent()) 14670 BlockScope = BlockScope->getParent(); 14671 14672 Scope *ContextScope = BlockScope; 14673 while (!ContextScope->getEntity()) 14674 ContextScope = ContextScope->getParent(); 14675 ContextRAII SavedContext(*this, ContextScope->getEntity()); 14676 14677 // Before we produce a declaration for an implicitly defined 14678 // function, see whether there was a locally-scoped declaration of 14679 // this name as a function or variable. If so, use that 14680 // (non-visible) declaration, and complain about it. 14681 NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II); 14682 if (ExternCPrev) { 14683 // We still need to inject the function into the enclosing block scope so 14684 // that later (non-call) uses can see it. 14685 PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false); 14686 14687 // C89 footnote 38: 14688 // If in fact it is not defined as having type "function returning int", 14689 // the behavior is undefined. 14690 if (!isa<FunctionDecl>(ExternCPrev) || 14691 !Context.typesAreCompatible( 14692 cast<FunctionDecl>(ExternCPrev)->getType(), 14693 Context.getFunctionNoProtoType(Context.IntTy))) { 14694 Diag(Loc, diag::ext_use_out_of_scope_declaration) 14695 << ExternCPrev << !getLangOpts().C99; 14696 Diag(ExternCPrev->getLocation(), diag::note_previous_declaration); 14697 return ExternCPrev; 14698 } 14699 } 14700 14701 // Extension in C99. Legal in C90, but warn about it. 14702 unsigned diag_id; 14703 if (II.getName().startswith("__builtin_")) 14704 diag_id = diag::warn_builtin_unknown; 14705 // OpenCL v2.0 s6.9.u - Implicit function declaration is not supported. 14706 else if (getLangOpts().OpenCL) 14707 diag_id = diag::err_opencl_implicit_function_decl; 14708 else if (getLangOpts().C99) 14709 diag_id = diag::ext_implicit_function_decl; 14710 else 14711 diag_id = diag::warn_implicit_function_decl; 14712 Diag(Loc, diag_id) << &II; 14713 14714 // If we found a prior declaration of this function, don't bother building 14715 // another one. We've already pushed that one into scope, so there's nothing 14716 // more to do. 14717 if (ExternCPrev) 14718 return ExternCPrev; 14719 14720 // Because typo correction is expensive, only do it if the implicit 14721 // function declaration is going to be treated as an error. 14722 if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) { 14723 TypoCorrection Corrected; 14724 DeclFilterCCC<FunctionDecl> CCC{}; 14725 if (S && (Corrected = 14726 CorrectTypo(DeclarationNameInfo(&II, Loc), LookupOrdinaryName, 14727 S, nullptr, CCC, CTK_NonError))) 14728 diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion), 14729 /*ErrorRecovery*/false); 14730 } 14731 14732 // Set a Declarator for the implicit definition: int foo(); 14733 const char *Dummy; 14734 AttributeFactory attrFactory; 14735 DeclSpec DS(attrFactory); 14736 unsigned DiagID; 14737 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID, 14738 Context.getPrintingPolicy()); 14739 (void)Error; // Silence warning. 14740 assert(!Error && "Error setting up implicit decl!"); 14741 SourceLocation NoLoc; 14742 Declarator D(DS, DeclaratorContext::BlockContext); 14743 D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false, 14744 /*IsAmbiguous=*/false, 14745 /*LParenLoc=*/NoLoc, 14746 /*Params=*/nullptr, 14747 /*NumParams=*/0, 14748 /*EllipsisLoc=*/NoLoc, 14749 /*RParenLoc=*/NoLoc, 14750 /*RefQualifierIsLvalueRef=*/true, 14751 /*RefQualifierLoc=*/NoLoc, 14752 /*MutableLoc=*/NoLoc, EST_None, 14753 /*ESpecRange=*/SourceRange(), 14754 /*Exceptions=*/nullptr, 14755 /*ExceptionRanges=*/nullptr, 14756 /*NumExceptions=*/0, 14757 /*NoexceptExpr=*/nullptr, 14758 /*ExceptionSpecTokens=*/nullptr, 14759 /*DeclsInPrototype=*/None, Loc, 14760 Loc, D), 14761 std::move(DS.getAttributes()), SourceLocation()); 14762 D.SetIdentifier(&II, Loc); 14763 14764 // Insert this function into the enclosing block scope. 14765 FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(BlockScope, D)); 14766 FD->setImplicit(); 14767 14768 AddKnownFunctionAttributes(FD); 14769 14770 return FD; 14771 } 14772 14773 /// If this function is a C++ replaceable global allocation function 14774 /// (C++2a [basic.stc.dynamic.allocation], C++2a [new.delete]), 14775 /// adds any function attributes that we know a priori based on the standard. 14776 /// 14777 /// We need to check for duplicate attributes both here and where user-written 14778 /// attributes are applied to declarations. 14779 void Sema::AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction( 14780 FunctionDecl *FD) { 14781 if (FD->isInvalidDecl()) 14782 return; 14783 14784 if (FD->getDeclName().getCXXOverloadedOperator() != OO_New && 14785 FD->getDeclName().getCXXOverloadedOperator() != OO_Array_New) 14786 return; 14787 14788 Optional<unsigned> AlignmentParam; 14789 bool IsNothrow = false; 14790 if (!FD->isReplaceableGlobalAllocationFunction(&AlignmentParam, &IsNothrow)) 14791 return; 14792 14793 // C++2a [basic.stc.dynamic.allocation]p4: 14794 // An allocation function that has a non-throwing exception specification 14795 // indicates failure by returning a null pointer value. Any other allocation 14796 // function never returns a null pointer value and indicates failure only by 14797 // throwing an exception [...] 14798 if (!IsNothrow && !FD->hasAttr<ReturnsNonNullAttr>()) 14799 FD->addAttr(ReturnsNonNullAttr::CreateImplicit(Context, FD->getLocation())); 14800 14801 // C++2a [basic.stc.dynamic.allocation]p2: 14802 // An allocation function attempts to allocate the requested amount of 14803 // storage. [...] If the request succeeds, the value returned by a 14804 // replaceable allocation function is a [...] pointer value p0 different 14805 // from any previously returned value p1 [...] 14806 // 14807 // However, this particular information is being added in codegen, 14808 // because there is an opt-out switch for it (-fno-assume-sane-operator-new) 14809 14810 // C++2a [basic.stc.dynamic.allocation]p2: 14811 // An allocation function attempts to allocate the requested amount of 14812 // storage. If it is successful, it returns the address of the start of a 14813 // block of storage whose length in bytes is at least as large as the 14814 // requested size. 14815 if (!FD->hasAttr<AllocSizeAttr>()) { 14816 FD->addAttr(AllocSizeAttr::CreateImplicit( 14817 Context, /*ElemSizeParam=*/ParamIdx(1, FD), 14818 /*NumElemsParam=*/ParamIdx(), FD->getLocation())); 14819 } 14820 14821 // C++2a [basic.stc.dynamic.allocation]p3: 14822 // For an allocation function [...], the pointer returned on a successful 14823 // call shall represent the address of storage that is aligned as follows: 14824 // (3.1) If the allocation function takes an argument of type 14825 // std::align_val_t, the storage will have the alignment 14826 // specified by the value of this argument. 14827 if (AlignmentParam.hasValue() && !FD->hasAttr<AllocAlignAttr>()) { 14828 FD->addAttr(AllocAlignAttr::CreateImplicit( 14829 Context, ParamIdx(AlignmentParam.getValue(), FD), FD->getLocation())); 14830 } 14831 14832 // FIXME: 14833 // C++2a [basic.stc.dynamic.allocation]p3: 14834 // For an allocation function [...], the pointer returned on a successful 14835 // call shall represent the address of storage that is aligned as follows: 14836 // (3.2) Otherwise, if the allocation function is named operator new[], 14837 // the storage is aligned for any object that does not have 14838 // new-extended alignment ([basic.align]) and is no larger than the 14839 // requested size. 14840 // (3.3) Otherwise, the storage is aligned for any object that does not 14841 // have new-extended alignment and is of the requested size. 14842 } 14843 14844 /// Adds any function attributes that we know a priori based on 14845 /// the declaration of this function. 14846 /// 14847 /// These attributes can apply both to implicitly-declared builtins 14848 /// (like __builtin___printf_chk) or to library-declared functions 14849 /// like NSLog or printf. 14850 /// 14851 /// We need to check for duplicate attributes both here and where user-written 14852 /// attributes are applied to declarations. 14853 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) { 14854 if (FD->isInvalidDecl()) 14855 return; 14856 14857 // If this is a built-in function, map its builtin attributes to 14858 // actual attributes. 14859 if (unsigned BuiltinID = FD->getBuiltinID()) { 14860 // Handle printf-formatting attributes. 14861 unsigned FormatIdx; 14862 bool HasVAListArg; 14863 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { 14864 if (!FD->hasAttr<FormatAttr>()) { 14865 const char *fmt = "printf"; 14866 unsigned int NumParams = FD->getNumParams(); 14867 if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf) 14868 FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType()) 14869 fmt = "NSString"; 14870 FD->addAttr(FormatAttr::CreateImplicit(Context, 14871 &Context.Idents.get(fmt), 14872 FormatIdx+1, 14873 HasVAListArg ? 0 : FormatIdx+2, 14874 FD->getLocation())); 14875 } 14876 } 14877 if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx, 14878 HasVAListArg)) { 14879 if (!FD->hasAttr<FormatAttr>()) 14880 FD->addAttr(FormatAttr::CreateImplicit(Context, 14881 &Context.Idents.get("scanf"), 14882 FormatIdx+1, 14883 HasVAListArg ? 0 : FormatIdx+2, 14884 FD->getLocation())); 14885 } 14886 14887 // Handle automatically recognized callbacks. 14888 SmallVector<int, 4> Encoding; 14889 if (!FD->hasAttr<CallbackAttr>() && 14890 Context.BuiltinInfo.performsCallback(BuiltinID, Encoding)) 14891 FD->addAttr(CallbackAttr::CreateImplicit( 14892 Context, Encoding.data(), Encoding.size(), FD->getLocation())); 14893 14894 // Mark const if we don't care about errno and that is the only thing 14895 // preventing the function from being const. This allows IRgen to use LLVM 14896 // intrinsics for such functions. 14897 if (!getLangOpts().MathErrno && !FD->hasAttr<ConstAttr>() && 14898 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) 14899 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 14900 14901 // We make "fma" on some platforms const because we know it does not set 14902 // errno in those environments even though it could set errno based on the 14903 // C standard. 14904 const llvm::Triple &Trip = Context.getTargetInfo().getTriple(); 14905 if ((Trip.isGNUEnvironment() || Trip.isAndroid() || Trip.isOSMSVCRT()) && 14906 !FD->hasAttr<ConstAttr>()) { 14907 switch (BuiltinID) { 14908 case Builtin::BI__builtin_fma: 14909 case Builtin::BI__builtin_fmaf: 14910 case Builtin::BI__builtin_fmal: 14911 case Builtin::BIfma: 14912 case Builtin::BIfmaf: 14913 case Builtin::BIfmal: 14914 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 14915 break; 14916 default: 14917 break; 14918 } 14919 } 14920 14921 if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) && 14922 !FD->hasAttr<ReturnsTwiceAttr>()) 14923 FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context, 14924 FD->getLocation())); 14925 if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>()) 14926 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation())); 14927 if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>()) 14928 FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation())); 14929 if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>()) 14930 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 14931 if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) && 14932 !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) { 14933 // Add the appropriate attribute, depending on the CUDA compilation mode 14934 // and which target the builtin belongs to. For example, during host 14935 // compilation, aux builtins are __device__, while the rest are __host__. 14936 if (getLangOpts().CUDAIsDevice != 14937 Context.BuiltinInfo.isAuxBuiltinID(BuiltinID)) 14938 FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation())); 14939 else 14940 FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation())); 14941 } 14942 } 14943 14944 AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(FD); 14945 14946 // If C++ exceptions are enabled but we are told extern "C" functions cannot 14947 // throw, add an implicit nothrow attribute to any extern "C" function we come 14948 // across. 14949 if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind && 14950 FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) { 14951 const auto *FPT = FD->getType()->getAs<FunctionProtoType>(); 14952 if (!FPT || FPT->getExceptionSpecType() == EST_None) 14953 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation())); 14954 } 14955 14956 IdentifierInfo *Name = FD->getIdentifier(); 14957 if (!Name) 14958 return; 14959 if ((!getLangOpts().CPlusPlus && 14960 FD->getDeclContext()->isTranslationUnit()) || 14961 (isa<LinkageSpecDecl>(FD->getDeclContext()) && 14962 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() == 14963 LinkageSpecDecl::lang_c)) { 14964 // Okay: this could be a libc/libm/Objective-C function we know 14965 // about. 14966 } else 14967 return; 14968 14969 if (Name->isStr("asprintf") || Name->isStr("vasprintf")) { 14970 // FIXME: asprintf and vasprintf aren't C99 functions. Should they be 14971 // target-specific builtins, perhaps? 14972 if (!FD->hasAttr<FormatAttr>()) 14973 FD->addAttr(FormatAttr::CreateImplicit(Context, 14974 &Context.Idents.get("printf"), 2, 14975 Name->isStr("vasprintf") ? 0 : 3, 14976 FD->getLocation())); 14977 } 14978 14979 if (Name->isStr("__CFStringMakeConstantString")) { 14980 // We already have a __builtin___CFStringMakeConstantString, 14981 // but builds that use -fno-constant-cfstrings don't go through that. 14982 if (!FD->hasAttr<FormatArgAttr>()) 14983 FD->addAttr(FormatArgAttr::CreateImplicit(Context, ParamIdx(1, FD), 14984 FD->getLocation())); 14985 } 14986 } 14987 14988 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T, 14989 TypeSourceInfo *TInfo) { 14990 assert(D.getIdentifier() && "Wrong callback for declspec without declarator"); 14991 assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); 14992 14993 if (!TInfo) { 14994 assert(D.isInvalidType() && "no declarator info for valid type"); 14995 TInfo = Context.getTrivialTypeSourceInfo(T); 14996 } 14997 14998 // Scope manipulation handled by caller. 14999 TypedefDecl *NewTD = 15000 TypedefDecl::Create(Context, CurContext, D.getBeginLoc(), 15001 D.getIdentifierLoc(), D.getIdentifier(), TInfo); 15002 15003 // Bail out immediately if we have an invalid declaration. 15004 if (D.isInvalidType()) { 15005 NewTD->setInvalidDecl(); 15006 return NewTD; 15007 } 15008 15009 if (D.getDeclSpec().isModulePrivateSpecified()) { 15010 if (CurContext->isFunctionOrMethod()) 15011 Diag(NewTD->getLocation(), diag::err_module_private_local) 15012 << 2 << NewTD 15013 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 15014 << FixItHint::CreateRemoval( 15015 D.getDeclSpec().getModulePrivateSpecLoc()); 15016 else 15017 NewTD->setModulePrivate(); 15018 } 15019 15020 // C++ [dcl.typedef]p8: 15021 // If the typedef declaration defines an unnamed class (or 15022 // enum), the first typedef-name declared by the declaration 15023 // to be that class type (or enum type) is used to denote the 15024 // class type (or enum type) for linkage purposes only. 15025 // We need to check whether the type was declared in the declaration. 15026 switch (D.getDeclSpec().getTypeSpecType()) { 15027 case TST_enum: 15028 case TST_struct: 15029 case TST_interface: 15030 case TST_union: 15031 case TST_class: { 15032 TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); 15033 setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD); 15034 break; 15035 } 15036 15037 default: 15038 break; 15039 } 15040 15041 return NewTD; 15042 } 15043 15044 /// Check that this is a valid underlying type for an enum declaration. 15045 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) { 15046 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); 15047 QualType T = TI->getType(); 15048 15049 if (T->isDependentType()) 15050 return false; 15051 15052 // This doesn't use 'isIntegralType' despite the error message mentioning 15053 // integral type because isIntegralType would also allow enum types in C. 15054 if (const BuiltinType *BT = T->getAs<BuiltinType>()) 15055 if (BT->isInteger()) 15056 return false; 15057 15058 if (T->isExtIntType()) 15059 return false; 15060 15061 return Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T; 15062 } 15063 15064 /// Check whether this is a valid redeclaration of a previous enumeration. 15065 /// \return true if the redeclaration was invalid. 15066 bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped, 15067 QualType EnumUnderlyingTy, bool IsFixed, 15068 const EnumDecl *Prev) { 15069 if (IsScoped != Prev->isScoped()) { 15070 Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch) 15071 << Prev->isScoped(); 15072 Diag(Prev->getLocation(), diag::note_previous_declaration); 15073 return true; 15074 } 15075 15076 if (IsFixed && Prev->isFixed()) { 15077 if (!EnumUnderlyingTy->isDependentType() && 15078 !Prev->getIntegerType()->isDependentType() && 15079 !Context.hasSameUnqualifiedType(EnumUnderlyingTy, 15080 Prev->getIntegerType())) { 15081 // TODO: Highlight the underlying type of the redeclaration. 15082 Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch) 15083 << EnumUnderlyingTy << Prev->getIntegerType(); 15084 Diag(Prev->getLocation(), diag::note_previous_declaration) 15085 << Prev->getIntegerTypeRange(); 15086 return true; 15087 } 15088 } else if (IsFixed != Prev->isFixed()) { 15089 Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch) 15090 << Prev->isFixed(); 15091 Diag(Prev->getLocation(), diag::note_previous_declaration); 15092 return true; 15093 } 15094 15095 return false; 15096 } 15097 15098 /// Get diagnostic %select index for tag kind for 15099 /// redeclaration diagnostic message. 15100 /// WARNING: Indexes apply to particular diagnostics only! 15101 /// 15102 /// \returns diagnostic %select index. 15103 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) { 15104 switch (Tag) { 15105 case TTK_Struct: return 0; 15106 case TTK_Interface: return 1; 15107 case TTK_Class: return 2; 15108 default: llvm_unreachable("Invalid tag kind for redecl diagnostic!"); 15109 } 15110 } 15111 15112 /// Determine if tag kind is a class-key compatible with 15113 /// class for redeclaration (class, struct, or __interface). 15114 /// 15115 /// \returns true iff the tag kind is compatible. 15116 static bool isClassCompatTagKind(TagTypeKind Tag) 15117 { 15118 return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface; 15119 } 15120 15121 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl, 15122 TagTypeKind TTK) { 15123 if (isa<TypedefDecl>(PrevDecl)) 15124 return NTK_Typedef; 15125 else if (isa<TypeAliasDecl>(PrevDecl)) 15126 return NTK_TypeAlias; 15127 else if (isa<ClassTemplateDecl>(PrevDecl)) 15128 return NTK_Template; 15129 else if (isa<TypeAliasTemplateDecl>(PrevDecl)) 15130 return NTK_TypeAliasTemplate; 15131 else if (isa<TemplateTemplateParmDecl>(PrevDecl)) 15132 return NTK_TemplateTemplateArgument; 15133 switch (TTK) { 15134 case TTK_Struct: 15135 case TTK_Interface: 15136 case TTK_Class: 15137 return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct; 15138 case TTK_Union: 15139 return NTK_NonUnion; 15140 case TTK_Enum: 15141 return NTK_NonEnum; 15142 } 15143 llvm_unreachable("invalid TTK"); 15144 } 15145 15146 /// Determine whether a tag with a given kind is acceptable 15147 /// as a redeclaration of the given tag declaration. 15148 /// 15149 /// \returns true if the new tag kind is acceptable, false otherwise. 15150 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous, 15151 TagTypeKind NewTag, bool isDefinition, 15152 SourceLocation NewTagLoc, 15153 const IdentifierInfo *Name) { 15154 // C++ [dcl.type.elab]p3: 15155 // The class-key or enum keyword present in the 15156 // elaborated-type-specifier shall agree in kind with the 15157 // declaration to which the name in the elaborated-type-specifier 15158 // refers. This rule also applies to the form of 15159 // elaborated-type-specifier that declares a class-name or 15160 // friend class since it can be construed as referring to the 15161 // definition of the class. Thus, in any 15162 // elaborated-type-specifier, the enum keyword shall be used to 15163 // refer to an enumeration (7.2), the union class-key shall be 15164 // used to refer to a union (clause 9), and either the class or 15165 // struct class-key shall be used to refer to a class (clause 9) 15166 // declared using the class or struct class-key. 15167 TagTypeKind OldTag = Previous->getTagKind(); 15168 if (OldTag != NewTag && 15169 !(isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag))) 15170 return false; 15171 15172 // Tags are compatible, but we might still want to warn on mismatched tags. 15173 // Non-class tags can't be mismatched at this point. 15174 if (!isClassCompatTagKind(NewTag)) 15175 return true; 15176 15177 // Declarations for which -Wmismatched-tags is disabled are entirely ignored 15178 // by our warning analysis. We don't want to warn about mismatches with (eg) 15179 // declarations in system headers that are designed to be specialized, but if 15180 // a user asks us to warn, we should warn if their code contains mismatched 15181 // declarations. 15182 auto IsIgnoredLoc = [&](SourceLocation Loc) { 15183 return getDiagnostics().isIgnored(diag::warn_struct_class_tag_mismatch, 15184 Loc); 15185 }; 15186 if (IsIgnoredLoc(NewTagLoc)) 15187 return true; 15188 15189 auto IsIgnored = [&](const TagDecl *Tag) { 15190 return IsIgnoredLoc(Tag->getLocation()); 15191 }; 15192 while (IsIgnored(Previous)) { 15193 Previous = Previous->getPreviousDecl(); 15194 if (!Previous) 15195 return true; 15196 OldTag = Previous->getTagKind(); 15197 } 15198 15199 bool isTemplate = false; 15200 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous)) 15201 isTemplate = Record->getDescribedClassTemplate(); 15202 15203 if (inTemplateInstantiation()) { 15204 if (OldTag != NewTag) { 15205 // In a template instantiation, do not offer fix-its for tag mismatches 15206 // since they usually mess up the template instead of fixing the problem. 15207 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 15208 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 15209 << getRedeclDiagFromTagKind(OldTag); 15210 // FIXME: Note previous location? 15211 } 15212 return true; 15213 } 15214 15215 if (isDefinition) { 15216 // On definitions, check all previous tags and issue a fix-it for each 15217 // one that doesn't match the current tag. 15218 if (Previous->getDefinition()) { 15219 // Don't suggest fix-its for redefinitions. 15220 return true; 15221 } 15222 15223 bool previousMismatch = false; 15224 for (const TagDecl *I : Previous->redecls()) { 15225 if (I->getTagKind() != NewTag) { 15226 // Ignore previous declarations for which the warning was disabled. 15227 if (IsIgnored(I)) 15228 continue; 15229 15230 if (!previousMismatch) { 15231 previousMismatch = true; 15232 Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch) 15233 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 15234 << getRedeclDiagFromTagKind(I->getTagKind()); 15235 } 15236 Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion) 15237 << getRedeclDiagFromTagKind(NewTag) 15238 << FixItHint::CreateReplacement(I->getInnerLocStart(), 15239 TypeWithKeyword::getTagTypeKindName(NewTag)); 15240 } 15241 } 15242 return true; 15243 } 15244 15245 // Identify the prevailing tag kind: this is the kind of the definition (if 15246 // there is a non-ignored definition), or otherwise the kind of the prior 15247 // (non-ignored) declaration. 15248 const TagDecl *PrevDef = Previous->getDefinition(); 15249 if (PrevDef && IsIgnored(PrevDef)) 15250 PrevDef = nullptr; 15251 const TagDecl *Redecl = PrevDef ? PrevDef : Previous; 15252 if (Redecl->getTagKind() != NewTag) { 15253 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 15254 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 15255 << getRedeclDiagFromTagKind(OldTag); 15256 Diag(Redecl->getLocation(), diag::note_previous_use); 15257 15258 // If there is a previous definition, suggest a fix-it. 15259 if (PrevDef) { 15260 Diag(NewTagLoc, diag::note_struct_class_suggestion) 15261 << getRedeclDiagFromTagKind(Redecl->getTagKind()) 15262 << FixItHint::CreateReplacement(SourceRange(NewTagLoc), 15263 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind())); 15264 } 15265 } 15266 15267 return true; 15268 } 15269 15270 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name 15271 /// from an outer enclosing namespace or file scope inside a friend declaration. 15272 /// This should provide the commented out code in the following snippet: 15273 /// namespace N { 15274 /// struct X; 15275 /// namespace M { 15276 /// struct Y { friend struct /*N::*/ X; }; 15277 /// } 15278 /// } 15279 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S, 15280 SourceLocation NameLoc) { 15281 // While the decl is in a namespace, do repeated lookup of that name and see 15282 // if we get the same namespace back. If we do not, continue until 15283 // translation unit scope, at which point we have a fully qualified NNS. 15284 SmallVector<IdentifierInfo *, 4> Namespaces; 15285 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 15286 for (; !DC->isTranslationUnit(); DC = DC->getParent()) { 15287 // This tag should be declared in a namespace, which can only be enclosed by 15288 // other namespaces. Bail if there's an anonymous namespace in the chain. 15289 NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC); 15290 if (!Namespace || Namespace->isAnonymousNamespace()) 15291 return FixItHint(); 15292 IdentifierInfo *II = Namespace->getIdentifier(); 15293 Namespaces.push_back(II); 15294 NamedDecl *Lookup = SemaRef.LookupSingleName( 15295 S, II, NameLoc, Sema::LookupNestedNameSpecifierName); 15296 if (Lookup == Namespace) 15297 break; 15298 } 15299 15300 // Once we have all the namespaces, reverse them to go outermost first, and 15301 // build an NNS. 15302 SmallString<64> Insertion; 15303 llvm::raw_svector_ostream OS(Insertion); 15304 if (DC->isTranslationUnit()) 15305 OS << "::"; 15306 std::reverse(Namespaces.begin(), Namespaces.end()); 15307 for (auto *II : Namespaces) 15308 OS << II->getName() << "::"; 15309 return FixItHint::CreateInsertion(NameLoc, Insertion); 15310 } 15311 15312 /// Determine whether a tag originally declared in context \p OldDC can 15313 /// be redeclared with an unqualified name in \p NewDC (assuming name lookup 15314 /// found a declaration in \p OldDC as a previous decl, perhaps through a 15315 /// using-declaration). 15316 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC, 15317 DeclContext *NewDC) { 15318 OldDC = OldDC->getRedeclContext(); 15319 NewDC = NewDC->getRedeclContext(); 15320 15321 if (OldDC->Equals(NewDC)) 15322 return true; 15323 15324 // In MSVC mode, we allow a redeclaration if the contexts are related (either 15325 // encloses the other). 15326 if (S.getLangOpts().MSVCCompat && 15327 (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC))) 15328 return true; 15329 15330 return false; 15331 } 15332 15333 /// This is invoked when we see 'struct foo' or 'struct {'. In the 15334 /// former case, Name will be non-null. In the later case, Name will be null. 15335 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a 15336 /// reference/declaration/definition of a tag. 15337 /// 15338 /// \param IsTypeSpecifier \c true if this is a type-specifier (or 15339 /// trailing-type-specifier) other than one in an alias-declaration. 15340 /// 15341 /// \param SkipBody If non-null, will be set to indicate if the caller should 15342 /// skip the definition of this tag and treat it as if it were a declaration. 15343 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, 15344 SourceLocation KWLoc, CXXScopeSpec &SS, 15345 IdentifierInfo *Name, SourceLocation NameLoc, 15346 const ParsedAttributesView &Attrs, AccessSpecifier AS, 15347 SourceLocation ModulePrivateLoc, 15348 MultiTemplateParamsArg TemplateParameterLists, 15349 bool &OwnedDecl, bool &IsDependent, 15350 SourceLocation ScopedEnumKWLoc, 15351 bool ScopedEnumUsesClassTag, TypeResult UnderlyingType, 15352 bool IsTypeSpecifier, bool IsTemplateParamOrArg, 15353 SkipBodyInfo *SkipBody) { 15354 // If this is not a definition, it must have a name. 15355 IdentifierInfo *OrigName = Name; 15356 assert((Name != nullptr || TUK == TUK_Definition) && 15357 "Nameless record must be a definition!"); 15358 assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference); 15359 15360 OwnedDecl = false; 15361 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 15362 bool ScopedEnum = ScopedEnumKWLoc.isValid(); 15363 15364 // FIXME: Check member specializations more carefully. 15365 bool isMemberSpecialization = false; 15366 bool Invalid = false; 15367 15368 // We only need to do this matching if we have template parameters 15369 // or a scope specifier, which also conveniently avoids this work 15370 // for non-C++ cases. 15371 if (TemplateParameterLists.size() > 0 || 15372 (SS.isNotEmpty() && TUK != TUK_Reference)) { 15373 if (TemplateParameterList *TemplateParams = 15374 MatchTemplateParametersToScopeSpecifier( 15375 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists, 15376 TUK == TUK_Friend, isMemberSpecialization, Invalid)) { 15377 if (Kind == TTK_Enum) { 15378 Diag(KWLoc, diag::err_enum_template); 15379 return nullptr; 15380 } 15381 15382 if (TemplateParams->size() > 0) { 15383 // This is a declaration or definition of a class template (which may 15384 // be a member of another template). 15385 15386 if (Invalid) 15387 return nullptr; 15388 15389 OwnedDecl = false; 15390 DeclResult Result = CheckClassTemplate( 15391 S, TagSpec, TUK, KWLoc, SS, Name, NameLoc, Attrs, TemplateParams, 15392 AS, ModulePrivateLoc, 15393 /*FriendLoc*/ SourceLocation(), TemplateParameterLists.size() - 1, 15394 TemplateParameterLists.data(), SkipBody); 15395 return Result.get(); 15396 } else { 15397 // The "template<>" header is extraneous. 15398 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 15399 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 15400 isMemberSpecialization = true; 15401 } 15402 } 15403 15404 if (!TemplateParameterLists.empty() && isMemberSpecialization && 15405 CheckTemplateDeclScope(S, TemplateParameterLists.back())) 15406 return nullptr; 15407 } 15408 15409 // Figure out the underlying type if this a enum declaration. We need to do 15410 // this early, because it's needed to detect if this is an incompatible 15411 // redeclaration. 15412 llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying; 15413 bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum; 15414 15415 if (Kind == TTK_Enum) { 15416 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) { 15417 // No underlying type explicitly specified, or we failed to parse the 15418 // type, default to int. 15419 EnumUnderlying = Context.IntTy.getTypePtr(); 15420 } else if (UnderlyingType.get()) { 15421 // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an 15422 // integral type; any cv-qualification is ignored. 15423 TypeSourceInfo *TI = nullptr; 15424 GetTypeFromParser(UnderlyingType.get(), &TI); 15425 EnumUnderlying = TI; 15426 15427 if (CheckEnumUnderlyingType(TI)) 15428 // Recover by falling back to int. 15429 EnumUnderlying = Context.IntTy.getTypePtr(); 15430 15431 if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI, 15432 UPPC_FixedUnderlyingType)) 15433 EnumUnderlying = Context.IntTy.getTypePtr(); 15434 15435 } else if (Context.getTargetInfo().getTriple().isWindowsMSVCEnvironment()) { 15436 // For MSVC ABI compatibility, unfixed enums must use an underlying type 15437 // of 'int'. However, if this is an unfixed forward declaration, don't set 15438 // the underlying type unless the user enables -fms-compatibility. This 15439 // makes unfixed forward declared enums incomplete and is more conforming. 15440 if (TUK == TUK_Definition || getLangOpts().MSVCCompat) 15441 EnumUnderlying = Context.IntTy.getTypePtr(); 15442 } 15443 } 15444 15445 DeclContext *SearchDC = CurContext; 15446 DeclContext *DC = CurContext; 15447 bool isStdBadAlloc = false; 15448 bool isStdAlignValT = false; 15449 15450 RedeclarationKind Redecl = forRedeclarationInCurContext(); 15451 if (TUK == TUK_Friend || TUK == TUK_Reference) 15452 Redecl = NotForRedeclaration; 15453 15454 /// Create a new tag decl in C/ObjC. Since the ODR-like semantics for ObjC/C 15455 /// implemented asks for structural equivalence checking, the returned decl 15456 /// here is passed back to the parser, allowing the tag body to be parsed. 15457 auto createTagFromNewDecl = [&]() -> TagDecl * { 15458 assert(!getLangOpts().CPlusPlus && "not meant for C++ usage"); 15459 // If there is an identifier, use the location of the identifier as the 15460 // location of the decl, otherwise use the location of the struct/union 15461 // keyword. 15462 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; 15463 TagDecl *New = nullptr; 15464 15465 if (Kind == TTK_Enum) { 15466 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, nullptr, 15467 ScopedEnum, ScopedEnumUsesClassTag, IsFixed); 15468 // If this is an undefined enum, bail. 15469 if (TUK != TUK_Definition && !Invalid) 15470 return nullptr; 15471 if (EnumUnderlying) { 15472 EnumDecl *ED = cast<EnumDecl>(New); 15473 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo *>()) 15474 ED->setIntegerTypeSourceInfo(TI); 15475 else 15476 ED->setIntegerType(QualType(EnumUnderlying.get<const Type *>(), 0)); 15477 ED->setPromotionType(ED->getIntegerType()); 15478 } 15479 } else { // struct/union 15480 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 15481 nullptr); 15482 } 15483 15484 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) { 15485 // Add alignment attributes if necessary; these attributes are checked 15486 // when the ASTContext lays out the structure. 15487 // 15488 // It is important for implementing the correct semantics that this 15489 // happen here (in ActOnTag). The #pragma pack stack is 15490 // maintained as a result of parser callbacks which can occur at 15491 // many points during the parsing of a struct declaration (because 15492 // the #pragma tokens are effectively skipped over during the 15493 // parsing of the struct). 15494 if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) { 15495 AddAlignmentAttributesForRecord(RD); 15496 AddMsStructLayoutForRecord(RD); 15497 } 15498 } 15499 New->setLexicalDeclContext(CurContext); 15500 return New; 15501 }; 15502 15503 LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl); 15504 if (Name && SS.isNotEmpty()) { 15505 // We have a nested-name tag ('struct foo::bar'). 15506 15507 // Check for invalid 'foo::'. 15508 if (SS.isInvalid()) { 15509 Name = nullptr; 15510 goto CreateNewDecl; 15511 } 15512 15513 // If this is a friend or a reference to a class in a dependent 15514 // context, don't try to make a decl for it. 15515 if (TUK == TUK_Friend || TUK == TUK_Reference) { 15516 DC = computeDeclContext(SS, false); 15517 if (!DC) { 15518 IsDependent = true; 15519 return nullptr; 15520 } 15521 } else { 15522 DC = computeDeclContext(SS, true); 15523 if (!DC) { 15524 Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec) 15525 << SS.getRange(); 15526 return nullptr; 15527 } 15528 } 15529 15530 if (RequireCompleteDeclContext(SS, DC)) 15531 return nullptr; 15532 15533 SearchDC = DC; 15534 // Look-up name inside 'foo::'. 15535 LookupQualifiedName(Previous, DC); 15536 15537 if (Previous.isAmbiguous()) 15538 return nullptr; 15539 15540 if (Previous.empty()) { 15541 // Name lookup did not find anything. However, if the 15542 // nested-name-specifier refers to the current instantiation, 15543 // and that current instantiation has any dependent base 15544 // classes, we might find something at instantiation time: treat 15545 // this as a dependent elaborated-type-specifier. 15546 // But this only makes any sense for reference-like lookups. 15547 if (Previous.wasNotFoundInCurrentInstantiation() && 15548 (TUK == TUK_Reference || TUK == TUK_Friend)) { 15549 IsDependent = true; 15550 return nullptr; 15551 } 15552 15553 // A tag 'foo::bar' must already exist. 15554 Diag(NameLoc, diag::err_not_tag_in_scope) 15555 << Kind << Name << DC << SS.getRange(); 15556 Name = nullptr; 15557 Invalid = true; 15558 goto CreateNewDecl; 15559 } 15560 } else if (Name) { 15561 // C++14 [class.mem]p14: 15562 // If T is the name of a class, then each of the following shall have a 15563 // name different from T: 15564 // -- every member of class T that is itself a type 15565 if (TUK != TUK_Reference && TUK != TUK_Friend && 15566 DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc))) 15567 return nullptr; 15568 15569 // If this is a named struct, check to see if there was a previous forward 15570 // declaration or definition. 15571 // FIXME: We're looking into outer scopes here, even when we 15572 // shouldn't be. Doing so can result in ambiguities that we 15573 // shouldn't be diagnosing. 15574 LookupName(Previous, S); 15575 15576 // When declaring or defining a tag, ignore ambiguities introduced 15577 // by types using'ed into this scope. 15578 if (Previous.isAmbiguous() && 15579 (TUK == TUK_Definition || TUK == TUK_Declaration)) { 15580 LookupResult::Filter F = Previous.makeFilter(); 15581 while (F.hasNext()) { 15582 NamedDecl *ND = F.next(); 15583 if (!ND->getDeclContext()->getRedeclContext()->Equals( 15584 SearchDC->getRedeclContext())) 15585 F.erase(); 15586 } 15587 F.done(); 15588 } 15589 15590 // C++11 [namespace.memdef]p3: 15591 // If the name in a friend declaration is neither qualified nor 15592 // a template-id and the declaration is a function or an 15593 // elaborated-type-specifier, the lookup to determine whether 15594 // the entity has been previously declared shall not consider 15595 // any scopes outside the innermost enclosing namespace. 15596 // 15597 // MSVC doesn't implement the above rule for types, so a friend tag 15598 // declaration may be a redeclaration of a type declared in an enclosing 15599 // scope. They do implement this rule for friend functions. 15600 // 15601 // Does it matter that this should be by scope instead of by 15602 // semantic context? 15603 if (!Previous.empty() && TUK == TUK_Friend) { 15604 DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext(); 15605 LookupResult::Filter F = Previous.makeFilter(); 15606 bool FriendSawTagOutsideEnclosingNamespace = false; 15607 while (F.hasNext()) { 15608 NamedDecl *ND = F.next(); 15609 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 15610 if (DC->isFileContext() && 15611 !EnclosingNS->Encloses(ND->getDeclContext())) { 15612 if (getLangOpts().MSVCCompat) 15613 FriendSawTagOutsideEnclosingNamespace = true; 15614 else 15615 F.erase(); 15616 } 15617 } 15618 F.done(); 15619 15620 // Diagnose this MSVC extension in the easy case where lookup would have 15621 // unambiguously found something outside the enclosing namespace. 15622 if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) { 15623 NamedDecl *ND = Previous.getFoundDecl(); 15624 Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace) 15625 << createFriendTagNNSFixIt(*this, ND, S, NameLoc); 15626 } 15627 } 15628 15629 // Note: there used to be some attempt at recovery here. 15630 if (Previous.isAmbiguous()) 15631 return nullptr; 15632 15633 if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) { 15634 // FIXME: This makes sure that we ignore the contexts associated 15635 // with C structs, unions, and enums when looking for a matching 15636 // tag declaration or definition. See the similar lookup tweak 15637 // in Sema::LookupName; is there a better way to deal with this? 15638 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC)) 15639 SearchDC = SearchDC->getParent(); 15640 } 15641 } 15642 15643 if (Previous.isSingleResult() && 15644 Previous.getFoundDecl()->isTemplateParameter()) { 15645 // Maybe we will complain about the shadowed template parameter. 15646 DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl()); 15647 // Just pretend that we didn't see the previous declaration. 15648 Previous.clear(); 15649 } 15650 15651 if (getLangOpts().CPlusPlus && Name && DC && StdNamespace && 15652 DC->Equals(getStdNamespace())) { 15653 if (Name->isStr("bad_alloc")) { 15654 // This is a declaration of or a reference to "std::bad_alloc". 15655 isStdBadAlloc = true; 15656 15657 // If std::bad_alloc has been implicitly declared (but made invisible to 15658 // name lookup), fill in this implicit declaration as the previous 15659 // declaration, so that the declarations get chained appropriately. 15660 if (Previous.empty() && StdBadAlloc) 15661 Previous.addDecl(getStdBadAlloc()); 15662 } else if (Name->isStr("align_val_t")) { 15663 isStdAlignValT = true; 15664 if (Previous.empty() && StdAlignValT) 15665 Previous.addDecl(getStdAlignValT()); 15666 } 15667 } 15668 15669 // If we didn't find a previous declaration, and this is a reference 15670 // (or friend reference), move to the correct scope. In C++, we 15671 // also need to do a redeclaration lookup there, just in case 15672 // there's a shadow friend decl. 15673 if (Name && Previous.empty() && 15674 (TUK == TUK_Reference || TUK == TUK_Friend || IsTemplateParamOrArg)) { 15675 if (Invalid) goto CreateNewDecl; 15676 assert(SS.isEmpty()); 15677 15678 if (TUK == TUK_Reference || IsTemplateParamOrArg) { 15679 // C++ [basic.scope.pdecl]p5: 15680 // -- for an elaborated-type-specifier of the form 15681 // 15682 // class-key identifier 15683 // 15684 // if the elaborated-type-specifier is used in the 15685 // decl-specifier-seq or parameter-declaration-clause of a 15686 // function defined in namespace scope, the identifier is 15687 // declared as a class-name in the namespace that contains 15688 // the declaration; otherwise, except as a friend 15689 // declaration, the identifier is declared in the smallest 15690 // non-class, non-function-prototype scope that contains the 15691 // declaration. 15692 // 15693 // C99 6.7.2.3p8 has a similar (but not identical!) provision for 15694 // C structs and unions. 15695 // 15696 // It is an error in C++ to declare (rather than define) an enum 15697 // type, including via an elaborated type specifier. We'll 15698 // diagnose that later; for now, declare the enum in the same 15699 // scope as we would have picked for any other tag type. 15700 // 15701 // GNU C also supports this behavior as part of its incomplete 15702 // enum types extension, while GNU C++ does not. 15703 // 15704 // Find the context where we'll be declaring the tag. 15705 // FIXME: We would like to maintain the current DeclContext as the 15706 // lexical context, 15707 SearchDC = getTagInjectionContext(SearchDC); 15708 15709 // Find the scope where we'll be declaring the tag. 15710 S = getTagInjectionScope(S, getLangOpts()); 15711 } else { 15712 assert(TUK == TUK_Friend); 15713 // C++ [namespace.memdef]p3: 15714 // If a friend declaration in a non-local class first declares a 15715 // class or function, the friend class or function is a member of 15716 // the innermost enclosing namespace. 15717 SearchDC = SearchDC->getEnclosingNamespaceContext(); 15718 } 15719 15720 // In C++, we need to do a redeclaration lookup to properly 15721 // diagnose some problems. 15722 // FIXME: redeclaration lookup is also used (with and without C++) to find a 15723 // hidden declaration so that we don't get ambiguity errors when using a 15724 // type declared by an elaborated-type-specifier. In C that is not correct 15725 // and we should instead merge compatible types found by lookup. 15726 if (getLangOpts().CPlusPlus) { 15727 Previous.setRedeclarationKind(forRedeclarationInCurContext()); 15728 LookupQualifiedName(Previous, SearchDC); 15729 } else { 15730 Previous.setRedeclarationKind(forRedeclarationInCurContext()); 15731 LookupName(Previous, S); 15732 } 15733 } 15734 15735 // If we have a known previous declaration to use, then use it. 15736 if (Previous.empty() && SkipBody && SkipBody->Previous) 15737 Previous.addDecl(SkipBody->Previous); 15738 15739 if (!Previous.empty()) { 15740 NamedDecl *PrevDecl = Previous.getFoundDecl(); 15741 NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl(); 15742 15743 // It's okay to have a tag decl in the same scope as a typedef 15744 // which hides a tag decl in the same scope. Finding this 15745 // insanity with a redeclaration lookup can only actually happen 15746 // in C++. 15747 // 15748 // This is also okay for elaborated-type-specifiers, which is 15749 // technically forbidden by the current standard but which is 15750 // okay according to the likely resolution of an open issue; 15751 // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407 15752 if (getLangOpts().CPlusPlus) { 15753 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) { 15754 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) { 15755 TagDecl *Tag = TT->getDecl(); 15756 if (Tag->getDeclName() == Name && 15757 Tag->getDeclContext()->getRedeclContext() 15758 ->Equals(TD->getDeclContext()->getRedeclContext())) { 15759 PrevDecl = Tag; 15760 Previous.clear(); 15761 Previous.addDecl(Tag); 15762 Previous.resolveKind(); 15763 } 15764 } 15765 } 15766 } 15767 15768 // If this is a redeclaration of a using shadow declaration, it must 15769 // declare a tag in the same context. In MSVC mode, we allow a 15770 // redefinition if either context is within the other. 15771 if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) { 15772 auto *OldTag = dyn_cast<TagDecl>(PrevDecl); 15773 if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend && 15774 isDeclInScope(Shadow, SearchDC, S, isMemberSpecialization) && 15775 !(OldTag && isAcceptableTagRedeclContext( 15776 *this, OldTag->getDeclContext(), SearchDC))) { 15777 Diag(KWLoc, diag::err_using_decl_conflict_reverse); 15778 Diag(Shadow->getTargetDecl()->getLocation(), 15779 diag::note_using_decl_target); 15780 Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) 15781 << 0; 15782 // Recover by ignoring the old declaration. 15783 Previous.clear(); 15784 goto CreateNewDecl; 15785 } 15786 } 15787 15788 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) { 15789 // If this is a use of a previous tag, or if the tag is already declared 15790 // in the same scope (so that the definition/declaration completes or 15791 // rementions the tag), reuse the decl. 15792 if (TUK == TUK_Reference || TUK == TUK_Friend || 15793 isDeclInScope(DirectPrevDecl, SearchDC, S, 15794 SS.isNotEmpty() || isMemberSpecialization)) { 15795 // Make sure that this wasn't declared as an enum and now used as a 15796 // struct or something similar. 15797 if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind, 15798 TUK == TUK_Definition, KWLoc, 15799 Name)) { 15800 bool SafeToContinue 15801 = (PrevTagDecl->getTagKind() != TTK_Enum && 15802 Kind != TTK_Enum); 15803 if (SafeToContinue) 15804 Diag(KWLoc, diag::err_use_with_wrong_tag) 15805 << Name 15806 << FixItHint::CreateReplacement(SourceRange(KWLoc), 15807 PrevTagDecl->getKindName()); 15808 else 15809 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name; 15810 Diag(PrevTagDecl->getLocation(), diag::note_previous_use); 15811 15812 if (SafeToContinue) 15813 Kind = PrevTagDecl->getTagKind(); 15814 else { 15815 // Recover by making this an anonymous redefinition. 15816 Name = nullptr; 15817 Previous.clear(); 15818 Invalid = true; 15819 } 15820 } 15821 15822 if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) { 15823 const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl); 15824 if (TUK == TUK_Reference || TUK == TUK_Friend) 15825 return PrevTagDecl; 15826 15827 QualType EnumUnderlyingTy; 15828 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 15829 EnumUnderlyingTy = TI->getType().getUnqualifiedType(); 15830 else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>()) 15831 EnumUnderlyingTy = QualType(T, 0); 15832 15833 // All conflicts with previous declarations are recovered by 15834 // returning the previous declaration, unless this is a definition, 15835 // in which case we want the caller to bail out. 15836 if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc, 15837 ScopedEnum, EnumUnderlyingTy, 15838 IsFixed, PrevEnum)) 15839 return TUK == TUK_Declaration ? PrevTagDecl : nullptr; 15840 } 15841 15842 // C++11 [class.mem]p1: 15843 // A member shall not be declared twice in the member-specification, 15844 // except that a nested class or member class template can be declared 15845 // and then later defined. 15846 if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() && 15847 S->isDeclScope(PrevDecl)) { 15848 Diag(NameLoc, diag::ext_member_redeclared); 15849 Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration); 15850 } 15851 15852 if (!Invalid) { 15853 // If this is a use, just return the declaration we found, unless 15854 // we have attributes. 15855 if (TUK == TUK_Reference || TUK == TUK_Friend) { 15856 if (!Attrs.empty()) { 15857 // FIXME: Diagnose these attributes. For now, we create a new 15858 // declaration to hold them. 15859 } else if (TUK == TUK_Reference && 15860 (PrevTagDecl->getFriendObjectKind() == 15861 Decl::FOK_Undeclared || 15862 PrevDecl->getOwningModule() != getCurrentModule()) && 15863 SS.isEmpty()) { 15864 // This declaration is a reference to an existing entity, but 15865 // has different visibility from that entity: it either makes 15866 // a friend visible or it makes a type visible in a new module. 15867 // In either case, create a new declaration. We only do this if 15868 // the declaration would have meant the same thing if no prior 15869 // declaration were found, that is, if it was found in the same 15870 // scope where we would have injected a declaration. 15871 if (!getTagInjectionContext(CurContext)->getRedeclContext() 15872 ->Equals(PrevDecl->getDeclContext()->getRedeclContext())) 15873 return PrevTagDecl; 15874 // This is in the injected scope, create a new declaration in 15875 // that scope. 15876 S = getTagInjectionScope(S, getLangOpts()); 15877 } else { 15878 return PrevTagDecl; 15879 } 15880 } 15881 15882 // Diagnose attempts to redefine a tag. 15883 if (TUK == TUK_Definition) { 15884 if (NamedDecl *Def = PrevTagDecl->getDefinition()) { 15885 // If we're defining a specialization and the previous definition 15886 // is from an implicit instantiation, don't emit an error 15887 // here; we'll catch this in the general case below. 15888 bool IsExplicitSpecializationAfterInstantiation = false; 15889 if (isMemberSpecialization) { 15890 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def)) 15891 IsExplicitSpecializationAfterInstantiation = 15892 RD->getTemplateSpecializationKind() != 15893 TSK_ExplicitSpecialization; 15894 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def)) 15895 IsExplicitSpecializationAfterInstantiation = 15896 ED->getTemplateSpecializationKind() != 15897 TSK_ExplicitSpecialization; 15898 } 15899 15900 // Note that clang allows ODR-like semantics for ObjC/C, i.e., do 15901 // not keep more that one definition around (merge them). However, 15902 // ensure the decl passes the structural compatibility check in 15903 // C11 6.2.7/1 (or 6.1.2.6/1 in C89). 15904 NamedDecl *Hidden = nullptr; 15905 if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) { 15906 // There is a definition of this tag, but it is not visible. We 15907 // explicitly make use of C++'s one definition rule here, and 15908 // assume that this definition is identical to the hidden one 15909 // we already have. Make the existing definition visible and 15910 // use it in place of this one. 15911 if (!getLangOpts().CPlusPlus) { 15912 // Postpone making the old definition visible until after we 15913 // complete parsing the new one and do the structural 15914 // comparison. 15915 SkipBody->CheckSameAsPrevious = true; 15916 SkipBody->New = createTagFromNewDecl(); 15917 SkipBody->Previous = Def; 15918 return Def; 15919 } else { 15920 SkipBody->ShouldSkip = true; 15921 SkipBody->Previous = Def; 15922 makeMergedDefinitionVisible(Hidden); 15923 // Carry on and handle it like a normal definition. We'll 15924 // skip starting the definitiion later. 15925 } 15926 } else if (!IsExplicitSpecializationAfterInstantiation) { 15927 // A redeclaration in function prototype scope in C isn't 15928 // visible elsewhere, so merely issue a warning. 15929 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope()) 15930 Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name; 15931 else 15932 Diag(NameLoc, diag::err_redefinition) << Name; 15933 notePreviousDefinition(Def, 15934 NameLoc.isValid() ? NameLoc : KWLoc); 15935 // If this is a redefinition, recover by making this 15936 // struct be anonymous, which will make any later 15937 // references get the previous definition. 15938 Name = nullptr; 15939 Previous.clear(); 15940 Invalid = true; 15941 } 15942 } else { 15943 // If the type is currently being defined, complain 15944 // about a nested redefinition. 15945 auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl(); 15946 if (TD->isBeingDefined()) { 15947 Diag(NameLoc, diag::err_nested_redefinition) << Name; 15948 Diag(PrevTagDecl->getLocation(), 15949 diag::note_previous_definition); 15950 Name = nullptr; 15951 Previous.clear(); 15952 Invalid = true; 15953 } 15954 } 15955 15956 // Okay, this is definition of a previously declared or referenced 15957 // tag. We're going to create a new Decl for it. 15958 } 15959 15960 // Okay, we're going to make a redeclaration. If this is some kind 15961 // of reference, make sure we build the redeclaration in the same DC 15962 // as the original, and ignore the current access specifier. 15963 if (TUK == TUK_Friend || TUK == TUK_Reference) { 15964 SearchDC = PrevTagDecl->getDeclContext(); 15965 AS = AS_none; 15966 } 15967 } 15968 // If we get here we have (another) forward declaration or we 15969 // have a definition. Just create a new decl. 15970 15971 } else { 15972 // If we get here, this is a definition of a new tag type in a nested 15973 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a 15974 // new decl/type. We set PrevDecl to NULL so that the entities 15975 // have distinct types. 15976 Previous.clear(); 15977 } 15978 // If we get here, we're going to create a new Decl. If PrevDecl 15979 // is non-NULL, it's a definition of the tag declared by 15980 // PrevDecl. If it's NULL, we have a new definition. 15981 15982 // Otherwise, PrevDecl is not a tag, but was found with tag 15983 // lookup. This is only actually possible in C++, where a few 15984 // things like templates still live in the tag namespace. 15985 } else { 15986 // Use a better diagnostic if an elaborated-type-specifier 15987 // found the wrong kind of type on the first 15988 // (non-redeclaration) lookup. 15989 if ((TUK == TUK_Reference || TUK == TUK_Friend) && 15990 !Previous.isForRedeclaration()) { 15991 NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind); 15992 Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK 15993 << Kind; 15994 Diag(PrevDecl->getLocation(), diag::note_declared_at); 15995 Invalid = true; 15996 15997 // Otherwise, only diagnose if the declaration is in scope. 15998 } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S, 15999 SS.isNotEmpty() || isMemberSpecialization)) { 16000 // do nothing 16001 16002 // Diagnose implicit declarations introduced by elaborated types. 16003 } else if (TUK == TUK_Reference || TUK == TUK_Friend) { 16004 NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind); 16005 Diag(NameLoc, diag::err_tag_reference_conflict) << NTK; 16006 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 16007 Invalid = true; 16008 16009 // Otherwise it's a declaration. Call out a particularly common 16010 // case here. 16011 } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) { 16012 unsigned Kind = 0; 16013 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1; 16014 Diag(NameLoc, diag::err_tag_definition_of_typedef) 16015 << Name << Kind << TND->getUnderlyingType(); 16016 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 16017 Invalid = true; 16018 16019 // Otherwise, diagnose. 16020 } else { 16021 // The tag name clashes with something else in the target scope, 16022 // issue an error and recover by making this tag be anonymous. 16023 Diag(NameLoc, diag::err_redefinition_different_kind) << Name; 16024 notePreviousDefinition(PrevDecl, NameLoc); 16025 Name = nullptr; 16026 Invalid = true; 16027 } 16028 16029 // The existing declaration isn't relevant to us; we're in a 16030 // new scope, so clear out the previous declaration. 16031 Previous.clear(); 16032 } 16033 } 16034 16035 CreateNewDecl: 16036 16037 TagDecl *PrevDecl = nullptr; 16038 if (Previous.isSingleResult()) 16039 PrevDecl = cast<TagDecl>(Previous.getFoundDecl()); 16040 16041 // If there is an identifier, use the location of the identifier as the 16042 // location of the decl, otherwise use the location of the struct/union 16043 // keyword. 16044 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; 16045 16046 // Otherwise, create a new declaration. If there is a previous 16047 // declaration of the same entity, the two will be linked via 16048 // PrevDecl. 16049 TagDecl *New; 16050 16051 if (Kind == TTK_Enum) { 16052 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 16053 // enum X { A, B, C } D; D should chain to X. 16054 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, 16055 cast_or_null<EnumDecl>(PrevDecl), ScopedEnum, 16056 ScopedEnumUsesClassTag, IsFixed); 16057 16058 if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit())) 16059 StdAlignValT = cast<EnumDecl>(New); 16060 16061 // If this is an undefined enum, warn. 16062 if (TUK != TUK_Definition && !Invalid) { 16063 TagDecl *Def; 16064 if (IsFixed && cast<EnumDecl>(New)->isFixed()) { 16065 // C++0x: 7.2p2: opaque-enum-declaration. 16066 // Conflicts are diagnosed above. Do nothing. 16067 } 16068 else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) { 16069 Diag(Loc, diag::ext_forward_ref_enum_def) 16070 << New; 16071 Diag(Def->getLocation(), diag::note_previous_definition); 16072 } else { 16073 unsigned DiagID = diag::ext_forward_ref_enum; 16074 if (getLangOpts().MSVCCompat) 16075 DiagID = diag::ext_ms_forward_ref_enum; 16076 else if (getLangOpts().CPlusPlus) 16077 DiagID = diag::err_forward_ref_enum; 16078 Diag(Loc, DiagID); 16079 } 16080 } 16081 16082 if (EnumUnderlying) { 16083 EnumDecl *ED = cast<EnumDecl>(New); 16084 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 16085 ED->setIntegerTypeSourceInfo(TI); 16086 else 16087 ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0)); 16088 ED->setPromotionType(ED->getIntegerType()); 16089 assert(ED->isComplete() && "enum with type should be complete"); 16090 } 16091 } else { 16092 // struct/union/class 16093 16094 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 16095 // struct X { int A; } D; D should chain to X. 16096 if (getLangOpts().CPlusPlus) { 16097 // FIXME: Look for a way to use RecordDecl for simple structs. 16098 New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 16099 cast_or_null<CXXRecordDecl>(PrevDecl)); 16100 16101 if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit())) 16102 StdBadAlloc = cast<CXXRecordDecl>(New); 16103 } else 16104 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 16105 cast_or_null<RecordDecl>(PrevDecl)); 16106 } 16107 16108 // C++11 [dcl.type]p3: 16109 // A type-specifier-seq shall not define a class or enumeration [...]. 16110 if (getLangOpts().CPlusPlus && (IsTypeSpecifier || IsTemplateParamOrArg) && 16111 TUK == TUK_Definition) { 16112 Diag(New->getLocation(), diag::err_type_defined_in_type_specifier) 16113 << Context.getTagDeclType(New); 16114 Invalid = true; 16115 } 16116 16117 if (!Invalid && getLangOpts().CPlusPlus && TUK == TUK_Definition && 16118 DC->getDeclKind() == Decl::Enum) { 16119 Diag(New->getLocation(), diag::err_type_defined_in_enum) 16120 << Context.getTagDeclType(New); 16121 Invalid = true; 16122 } 16123 16124 // Maybe add qualifier info. 16125 if (SS.isNotEmpty()) { 16126 if (SS.isSet()) { 16127 // If this is either a declaration or a definition, check the 16128 // nested-name-specifier against the current context. 16129 if ((TUK == TUK_Definition || TUK == TUK_Declaration) && 16130 diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc, 16131 isMemberSpecialization)) 16132 Invalid = true; 16133 16134 New->setQualifierInfo(SS.getWithLocInContext(Context)); 16135 if (TemplateParameterLists.size() > 0) { 16136 New->setTemplateParameterListsInfo(Context, TemplateParameterLists); 16137 } 16138 } 16139 else 16140 Invalid = true; 16141 } 16142 16143 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) { 16144 // Add alignment attributes if necessary; these attributes are checked when 16145 // the ASTContext lays out the structure. 16146 // 16147 // It is important for implementing the correct semantics that this 16148 // happen here (in ActOnTag). The #pragma pack stack is 16149 // maintained as a result of parser callbacks which can occur at 16150 // many points during the parsing of a struct declaration (because 16151 // the #pragma tokens are effectively skipped over during the 16152 // parsing of the struct). 16153 if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) { 16154 AddAlignmentAttributesForRecord(RD); 16155 AddMsStructLayoutForRecord(RD); 16156 } 16157 } 16158 16159 if (ModulePrivateLoc.isValid()) { 16160 if (isMemberSpecialization) 16161 Diag(New->getLocation(), diag::err_module_private_specialization) 16162 << 2 16163 << FixItHint::CreateRemoval(ModulePrivateLoc); 16164 // __module_private__ does not apply to local classes. However, we only 16165 // diagnose this as an error when the declaration specifiers are 16166 // freestanding. Here, we just ignore the __module_private__. 16167 else if (!SearchDC->isFunctionOrMethod()) 16168 New->setModulePrivate(); 16169 } 16170 16171 // If this is a specialization of a member class (of a class template), 16172 // check the specialization. 16173 if (isMemberSpecialization && CheckMemberSpecialization(New, Previous)) 16174 Invalid = true; 16175 16176 // If we're declaring or defining a tag in function prototype scope in C, 16177 // note that this type can only be used within the function and add it to 16178 // the list of decls to inject into the function definition scope. 16179 if ((Name || Kind == TTK_Enum) && 16180 getNonFieldDeclScope(S)->isFunctionPrototypeScope()) { 16181 if (getLangOpts().CPlusPlus) { 16182 // C++ [dcl.fct]p6: 16183 // Types shall not be defined in return or parameter types. 16184 if (TUK == TUK_Definition && !IsTypeSpecifier) { 16185 Diag(Loc, diag::err_type_defined_in_param_type) 16186 << Name; 16187 Invalid = true; 16188 } 16189 } else if (!PrevDecl) { 16190 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New); 16191 } 16192 } 16193 16194 if (Invalid) 16195 New->setInvalidDecl(); 16196 16197 // Set the lexical context. If the tag has a C++ scope specifier, the 16198 // lexical context will be different from the semantic context. 16199 New->setLexicalDeclContext(CurContext); 16200 16201 // Mark this as a friend decl if applicable. 16202 // In Microsoft mode, a friend declaration also acts as a forward 16203 // declaration so we always pass true to setObjectOfFriendDecl to make 16204 // the tag name visible. 16205 if (TUK == TUK_Friend) 16206 New->setObjectOfFriendDecl(getLangOpts().MSVCCompat); 16207 16208 // Set the access specifier. 16209 if (!Invalid && SearchDC->isRecord()) 16210 SetMemberAccessSpecifier(New, PrevDecl, AS); 16211 16212 if (PrevDecl) 16213 CheckRedeclarationModuleOwnership(New, PrevDecl); 16214 16215 if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) 16216 New->startDefinition(); 16217 16218 ProcessDeclAttributeList(S, New, Attrs); 16219 AddPragmaAttributes(S, New); 16220 16221 // If this has an identifier, add it to the scope stack. 16222 if (TUK == TUK_Friend) { 16223 // We might be replacing an existing declaration in the lookup tables; 16224 // if so, borrow its access specifier. 16225 if (PrevDecl) 16226 New->setAccess(PrevDecl->getAccess()); 16227 16228 DeclContext *DC = New->getDeclContext()->getRedeclContext(); 16229 DC->makeDeclVisibleInContext(New); 16230 if (Name) // can be null along some error paths 16231 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 16232 PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false); 16233 } else if (Name) { 16234 S = getNonFieldDeclScope(S); 16235 PushOnScopeChains(New, S, true); 16236 } else { 16237 CurContext->addDecl(New); 16238 } 16239 16240 // If this is the C FILE type, notify the AST context. 16241 if (IdentifierInfo *II = New->getIdentifier()) 16242 if (!New->isInvalidDecl() && 16243 New->getDeclContext()->getRedeclContext()->isTranslationUnit() && 16244 II->isStr("FILE")) 16245 Context.setFILEDecl(New); 16246 16247 if (PrevDecl) 16248 mergeDeclAttributes(New, PrevDecl); 16249 16250 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(New)) 16251 inferGslOwnerPointerAttribute(CXXRD); 16252 16253 // If there's a #pragma GCC visibility in scope, set the visibility of this 16254 // record. 16255 AddPushedVisibilityAttribute(New); 16256 16257 if (isMemberSpecialization && !New->isInvalidDecl()) 16258 CompleteMemberSpecialization(New, Previous); 16259 16260 OwnedDecl = true; 16261 // In C++, don't return an invalid declaration. We can't recover well from 16262 // the cases where we make the type anonymous. 16263 if (Invalid && getLangOpts().CPlusPlus) { 16264 if (New->isBeingDefined()) 16265 if (auto RD = dyn_cast<RecordDecl>(New)) 16266 RD->completeDefinition(); 16267 return nullptr; 16268 } else if (SkipBody && SkipBody->ShouldSkip) { 16269 return SkipBody->Previous; 16270 } else { 16271 return New; 16272 } 16273 } 16274 16275 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) { 16276 AdjustDeclIfTemplate(TagD); 16277 TagDecl *Tag = cast<TagDecl>(TagD); 16278 16279 // Enter the tag context. 16280 PushDeclContext(S, Tag); 16281 16282 ActOnDocumentableDecl(TagD); 16283 16284 // If there's a #pragma GCC visibility in scope, set the visibility of this 16285 // record. 16286 AddPushedVisibilityAttribute(Tag); 16287 } 16288 16289 bool Sema::ActOnDuplicateDefinition(DeclSpec &DS, Decl *Prev, 16290 SkipBodyInfo &SkipBody) { 16291 if (!hasStructuralCompatLayout(Prev, SkipBody.New)) 16292 return false; 16293 16294 // Make the previous decl visible. 16295 makeMergedDefinitionVisible(SkipBody.Previous); 16296 return true; 16297 } 16298 16299 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) { 16300 assert(isa<ObjCContainerDecl>(IDecl) && 16301 "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl"); 16302 DeclContext *OCD = cast<DeclContext>(IDecl); 16303 assert(OCD->getLexicalParent() == CurContext && 16304 "The next DeclContext should be lexically contained in the current one."); 16305 CurContext = OCD; 16306 return IDecl; 16307 } 16308 16309 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD, 16310 SourceLocation FinalLoc, 16311 bool IsFinalSpelledSealed, 16312 SourceLocation LBraceLoc) { 16313 AdjustDeclIfTemplate(TagD); 16314 CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD); 16315 16316 FieldCollector->StartClass(); 16317 16318 if (!Record->getIdentifier()) 16319 return; 16320 16321 if (FinalLoc.isValid()) 16322 Record->addAttr(FinalAttr::Create( 16323 Context, FinalLoc, AttributeCommonInfo::AS_Keyword, 16324 static_cast<FinalAttr::Spelling>(IsFinalSpelledSealed))); 16325 16326 // C++ [class]p2: 16327 // [...] The class-name is also inserted into the scope of the 16328 // class itself; this is known as the injected-class-name. For 16329 // purposes of access checking, the injected-class-name is treated 16330 // as if it were a public member name. 16331 CXXRecordDecl *InjectedClassName = CXXRecordDecl::Create( 16332 Context, Record->getTagKind(), CurContext, Record->getBeginLoc(), 16333 Record->getLocation(), Record->getIdentifier(), 16334 /*PrevDecl=*/nullptr, 16335 /*DelayTypeCreation=*/true); 16336 Context.getTypeDeclType(InjectedClassName, Record); 16337 InjectedClassName->setImplicit(); 16338 InjectedClassName->setAccess(AS_public); 16339 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) 16340 InjectedClassName->setDescribedClassTemplate(Template); 16341 PushOnScopeChains(InjectedClassName, S); 16342 assert(InjectedClassName->isInjectedClassName() && 16343 "Broken injected-class-name"); 16344 } 16345 16346 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD, 16347 SourceRange BraceRange) { 16348 AdjustDeclIfTemplate(TagD); 16349 TagDecl *Tag = cast<TagDecl>(TagD); 16350 Tag->setBraceRange(BraceRange); 16351 16352 // Make sure we "complete" the definition even it is invalid. 16353 if (Tag->isBeingDefined()) { 16354 assert(Tag->isInvalidDecl() && "We should already have completed it"); 16355 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 16356 RD->completeDefinition(); 16357 } 16358 16359 if (isa<CXXRecordDecl>(Tag)) { 16360 FieldCollector->FinishClass(); 16361 } 16362 16363 // Exit this scope of this tag's definition. 16364 PopDeclContext(); 16365 16366 if (getCurLexicalContext()->isObjCContainer() && 16367 Tag->getDeclContext()->isFileContext()) 16368 Tag->setTopLevelDeclInObjCContainer(); 16369 16370 // Notify the consumer that we've defined a tag. 16371 if (!Tag->isInvalidDecl()) 16372 Consumer.HandleTagDeclDefinition(Tag); 16373 } 16374 16375 void Sema::ActOnObjCContainerFinishDefinition() { 16376 // Exit this scope of this interface definition. 16377 PopDeclContext(); 16378 } 16379 16380 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) { 16381 assert(DC == CurContext && "Mismatch of container contexts"); 16382 OriginalLexicalContext = DC; 16383 ActOnObjCContainerFinishDefinition(); 16384 } 16385 16386 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) { 16387 ActOnObjCContainerStartDefinition(cast<Decl>(DC)); 16388 OriginalLexicalContext = nullptr; 16389 } 16390 16391 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) { 16392 AdjustDeclIfTemplate(TagD); 16393 TagDecl *Tag = cast<TagDecl>(TagD); 16394 Tag->setInvalidDecl(); 16395 16396 // Make sure we "complete" the definition even it is invalid. 16397 if (Tag->isBeingDefined()) { 16398 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 16399 RD->completeDefinition(); 16400 } 16401 16402 // We're undoing ActOnTagStartDefinition here, not 16403 // ActOnStartCXXMemberDeclarations, so we don't have to mess with 16404 // the FieldCollector. 16405 16406 PopDeclContext(); 16407 } 16408 16409 // Note that FieldName may be null for anonymous bitfields. 16410 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc, 16411 IdentifierInfo *FieldName, 16412 QualType FieldTy, bool IsMsStruct, 16413 Expr *BitWidth, bool *ZeroWidth) { 16414 assert(BitWidth); 16415 if (BitWidth->containsErrors()) 16416 return ExprError(); 16417 16418 // Default to true; that shouldn't confuse checks for emptiness 16419 if (ZeroWidth) 16420 *ZeroWidth = true; 16421 16422 // C99 6.7.2.1p4 - verify the field type. 16423 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 16424 if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) { 16425 // Handle incomplete and sizeless types with a specific error. 16426 if (RequireCompleteSizedType(FieldLoc, FieldTy, 16427 diag::err_field_incomplete_or_sizeless)) 16428 return ExprError(); 16429 if (FieldName) 16430 return Diag(FieldLoc, diag::err_not_integral_type_bitfield) 16431 << FieldName << FieldTy << BitWidth->getSourceRange(); 16432 return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield) 16433 << FieldTy << BitWidth->getSourceRange(); 16434 } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth), 16435 UPPC_BitFieldWidth)) 16436 return ExprError(); 16437 16438 // If the bit-width is type- or value-dependent, don't try to check 16439 // it now. 16440 if (BitWidth->isValueDependent() || BitWidth->isTypeDependent()) 16441 return BitWidth; 16442 16443 llvm::APSInt Value; 16444 ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value, AllowFold); 16445 if (ICE.isInvalid()) 16446 return ICE; 16447 BitWidth = ICE.get(); 16448 16449 if (Value != 0 && ZeroWidth) 16450 *ZeroWidth = false; 16451 16452 // Zero-width bitfield is ok for anonymous field. 16453 if (Value == 0 && FieldName) 16454 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName; 16455 16456 if (Value.isSigned() && Value.isNegative()) { 16457 if (FieldName) 16458 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) 16459 << FieldName << Value.toString(10); 16460 return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width) 16461 << Value.toString(10); 16462 } 16463 16464 if (!FieldTy->isDependentType()) { 16465 uint64_t TypeStorageSize = Context.getTypeSize(FieldTy); 16466 uint64_t TypeWidth = Context.getIntWidth(FieldTy); 16467 bool BitfieldIsOverwide = Value.ugt(TypeWidth); 16468 16469 // Over-wide bitfields are an error in C or when using the MSVC bitfield 16470 // ABI. 16471 bool CStdConstraintViolation = 16472 BitfieldIsOverwide && !getLangOpts().CPlusPlus; 16473 bool MSBitfieldViolation = 16474 Value.ugt(TypeStorageSize) && 16475 (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft()); 16476 if (CStdConstraintViolation || MSBitfieldViolation) { 16477 unsigned DiagWidth = 16478 CStdConstraintViolation ? TypeWidth : TypeStorageSize; 16479 if (FieldName) 16480 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width) 16481 << FieldName << (unsigned)Value.getZExtValue() 16482 << !CStdConstraintViolation << DiagWidth; 16483 16484 return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width) 16485 << (unsigned)Value.getZExtValue() << !CStdConstraintViolation 16486 << DiagWidth; 16487 } 16488 16489 // Warn on types where the user might conceivably expect to get all 16490 // specified bits as value bits: that's all integral types other than 16491 // 'bool'. 16492 if (BitfieldIsOverwide && !FieldTy->isBooleanType()) { 16493 if (FieldName) 16494 Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width) 16495 << FieldName << (unsigned)Value.getZExtValue() 16496 << (unsigned)TypeWidth; 16497 else 16498 Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width) 16499 << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth; 16500 } 16501 } 16502 16503 return BitWidth; 16504 } 16505 16506 /// ActOnField - Each field of a C struct/union is passed into this in order 16507 /// to create a FieldDecl object for it. 16508 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart, 16509 Declarator &D, Expr *BitfieldWidth) { 16510 FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD), 16511 DeclStart, D, static_cast<Expr*>(BitfieldWidth), 16512 /*InitStyle=*/ICIS_NoInit, AS_public); 16513 return Res; 16514 } 16515 16516 /// HandleField - Analyze a field of a C struct or a C++ data member. 16517 /// 16518 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record, 16519 SourceLocation DeclStart, 16520 Declarator &D, Expr *BitWidth, 16521 InClassInitStyle InitStyle, 16522 AccessSpecifier AS) { 16523 if (D.isDecompositionDeclarator()) { 16524 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); 16525 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) 16526 << Decomp.getSourceRange(); 16527 return nullptr; 16528 } 16529 16530 IdentifierInfo *II = D.getIdentifier(); 16531 SourceLocation Loc = DeclStart; 16532 if (II) Loc = D.getIdentifierLoc(); 16533 16534 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 16535 QualType T = TInfo->getType(); 16536 if (getLangOpts().CPlusPlus) { 16537 CheckExtraCXXDefaultArguments(D); 16538 16539 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 16540 UPPC_DataMemberType)) { 16541 D.setInvalidType(); 16542 T = Context.IntTy; 16543 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 16544 } 16545 } 16546 16547 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 16548 16549 if (D.getDeclSpec().isInlineSpecified()) 16550 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 16551 << getLangOpts().CPlusPlus17; 16552 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 16553 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 16554 diag::err_invalid_thread) 16555 << DeclSpec::getSpecifierName(TSCS); 16556 16557 // Check to see if this name was declared as a member previously 16558 NamedDecl *PrevDecl = nullptr; 16559 LookupResult Previous(*this, II, Loc, LookupMemberName, 16560 ForVisibleRedeclaration); 16561 LookupName(Previous, S); 16562 switch (Previous.getResultKind()) { 16563 case LookupResult::Found: 16564 case LookupResult::FoundUnresolvedValue: 16565 PrevDecl = Previous.getAsSingle<NamedDecl>(); 16566 break; 16567 16568 case LookupResult::FoundOverloaded: 16569 PrevDecl = Previous.getRepresentativeDecl(); 16570 break; 16571 16572 case LookupResult::NotFound: 16573 case LookupResult::NotFoundInCurrentInstantiation: 16574 case LookupResult::Ambiguous: 16575 break; 16576 } 16577 Previous.suppressDiagnostics(); 16578 16579 if (PrevDecl && PrevDecl->isTemplateParameter()) { 16580 // Maybe we will complain about the shadowed template parameter. 16581 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 16582 // Just pretend that we didn't see the previous declaration. 16583 PrevDecl = nullptr; 16584 } 16585 16586 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 16587 PrevDecl = nullptr; 16588 16589 bool Mutable 16590 = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable); 16591 SourceLocation TSSL = D.getBeginLoc(); 16592 FieldDecl *NewFD 16593 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, 16594 TSSL, AS, PrevDecl, &D); 16595 16596 if (NewFD->isInvalidDecl()) 16597 Record->setInvalidDecl(); 16598 16599 if (D.getDeclSpec().isModulePrivateSpecified()) 16600 NewFD->setModulePrivate(); 16601 16602 if (NewFD->isInvalidDecl() && PrevDecl) { 16603 // Don't introduce NewFD into scope; there's already something 16604 // with the same name in the same scope. 16605 } else if (II) { 16606 PushOnScopeChains(NewFD, S); 16607 } else 16608 Record->addDecl(NewFD); 16609 16610 return NewFD; 16611 } 16612 16613 /// Build a new FieldDecl and check its well-formedness. 16614 /// 16615 /// This routine builds a new FieldDecl given the fields name, type, 16616 /// record, etc. \p PrevDecl should refer to any previous declaration 16617 /// with the same name and in the same scope as the field to be 16618 /// created. 16619 /// 16620 /// \returns a new FieldDecl. 16621 /// 16622 /// \todo The Declarator argument is a hack. It will be removed once 16623 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T, 16624 TypeSourceInfo *TInfo, 16625 RecordDecl *Record, SourceLocation Loc, 16626 bool Mutable, Expr *BitWidth, 16627 InClassInitStyle InitStyle, 16628 SourceLocation TSSL, 16629 AccessSpecifier AS, NamedDecl *PrevDecl, 16630 Declarator *D) { 16631 IdentifierInfo *II = Name.getAsIdentifierInfo(); 16632 bool InvalidDecl = false; 16633 if (D) InvalidDecl = D->isInvalidType(); 16634 16635 // If we receive a broken type, recover by assuming 'int' and 16636 // marking this declaration as invalid. 16637 if (T.isNull() || T->containsErrors()) { 16638 InvalidDecl = true; 16639 T = Context.IntTy; 16640 } 16641 16642 QualType EltTy = Context.getBaseElementType(T); 16643 if (!EltTy->isDependentType() && !EltTy->containsErrors()) { 16644 if (RequireCompleteSizedType(Loc, EltTy, 16645 diag::err_field_incomplete_or_sizeless)) { 16646 // Fields of incomplete type force their record to be invalid. 16647 Record->setInvalidDecl(); 16648 InvalidDecl = true; 16649 } else { 16650 NamedDecl *Def; 16651 EltTy->isIncompleteType(&Def); 16652 if (Def && Def->isInvalidDecl()) { 16653 Record->setInvalidDecl(); 16654 InvalidDecl = true; 16655 } 16656 } 16657 } 16658 16659 // TR 18037 does not allow fields to be declared with address space 16660 if (T.hasAddressSpace() || T->isDependentAddressSpaceType() || 16661 T->getBaseElementTypeUnsafe()->isDependentAddressSpaceType()) { 16662 Diag(Loc, diag::err_field_with_address_space); 16663 Record->setInvalidDecl(); 16664 InvalidDecl = true; 16665 } 16666 16667 if (LangOpts.OpenCL) { 16668 // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be 16669 // used as structure or union field: image, sampler, event or block types. 16670 if (T->isEventT() || T->isImageType() || T->isSamplerT() || 16671 T->isBlockPointerType()) { 16672 Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T; 16673 Record->setInvalidDecl(); 16674 InvalidDecl = true; 16675 } 16676 // OpenCL v1.2 s6.9.c: bitfields are not supported. 16677 if (BitWidth) { 16678 Diag(Loc, diag::err_opencl_bitfields); 16679 InvalidDecl = true; 16680 } 16681 } 16682 16683 // Anonymous bit-fields cannot be cv-qualified (CWG 2229). 16684 if (!InvalidDecl && getLangOpts().CPlusPlus && !II && BitWidth && 16685 T.hasQualifiers()) { 16686 InvalidDecl = true; 16687 Diag(Loc, diag::err_anon_bitfield_qualifiers); 16688 } 16689 16690 // C99 6.7.2.1p8: A member of a structure or union may have any type other 16691 // than a variably modified type. 16692 if (!InvalidDecl && T->isVariablyModifiedType()) { 16693 bool SizeIsNegative; 16694 llvm::APSInt Oversized; 16695 16696 TypeSourceInfo *FixedTInfo = 16697 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 16698 SizeIsNegative, 16699 Oversized); 16700 if (FixedTInfo) { 16701 Diag(Loc, diag::ext_vla_folded_to_constant); 16702 TInfo = FixedTInfo; 16703 T = FixedTInfo->getType(); 16704 } else { 16705 if (SizeIsNegative) 16706 Diag(Loc, diag::err_typecheck_negative_array_size); 16707 else if (Oversized.getBoolValue()) 16708 Diag(Loc, diag::err_array_too_large) 16709 << Oversized.toString(10); 16710 else 16711 Diag(Loc, diag::err_typecheck_field_variable_size); 16712 InvalidDecl = true; 16713 } 16714 } 16715 16716 // Fields can not have abstract class types 16717 if (!InvalidDecl && RequireNonAbstractType(Loc, T, 16718 diag::err_abstract_type_in_decl, 16719 AbstractFieldType)) 16720 InvalidDecl = true; 16721 16722 bool ZeroWidth = false; 16723 if (InvalidDecl) 16724 BitWidth = nullptr; 16725 // If this is declared as a bit-field, check the bit-field. 16726 if (BitWidth) { 16727 BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth, 16728 &ZeroWidth).get(); 16729 if (!BitWidth) { 16730 InvalidDecl = true; 16731 BitWidth = nullptr; 16732 ZeroWidth = false; 16733 } 16734 } 16735 16736 // Check that 'mutable' is consistent with the type of the declaration. 16737 if (!InvalidDecl && Mutable) { 16738 unsigned DiagID = 0; 16739 if (T->isReferenceType()) 16740 DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference 16741 : diag::err_mutable_reference; 16742 else if (T.isConstQualified()) 16743 DiagID = diag::err_mutable_const; 16744 16745 if (DiagID) { 16746 SourceLocation ErrLoc = Loc; 16747 if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid()) 16748 ErrLoc = D->getDeclSpec().getStorageClassSpecLoc(); 16749 Diag(ErrLoc, DiagID); 16750 if (DiagID != diag::ext_mutable_reference) { 16751 Mutable = false; 16752 InvalidDecl = true; 16753 } 16754 } 16755 } 16756 16757 // C++11 [class.union]p8 (DR1460): 16758 // At most one variant member of a union may have a 16759 // brace-or-equal-initializer. 16760 if (InitStyle != ICIS_NoInit) 16761 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc); 16762 16763 FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo, 16764 BitWidth, Mutable, InitStyle); 16765 if (InvalidDecl) 16766 NewFD->setInvalidDecl(); 16767 16768 if (PrevDecl && !isa<TagDecl>(PrevDecl)) { 16769 Diag(Loc, diag::err_duplicate_member) << II; 16770 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 16771 NewFD->setInvalidDecl(); 16772 } 16773 16774 if (!InvalidDecl && getLangOpts().CPlusPlus) { 16775 if (Record->isUnion()) { 16776 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 16777 CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl()); 16778 if (RDecl->getDefinition()) { 16779 // C++ [class.union]p1: An object of a class with a non-trivial 16780 // constructor, a non-trivial copy constructor, a non-trivial 16781 // destructor, or a non-trivial copy assignment operator 16782 // cannot be a member of a union, nor can an array of such 16783 // objects. 16784 if (CheckNontrivialField(NewFD)) 16785 NewFD->setInvalidDecl(); 16786 } 16787 } 16788 16789 // C++ [class.union]p1: If a union contains a member of reference type, 16790 // the program is ill-formed, except when compiling with MSVC extensions 16791 // enabled. 16792 if (EltTy->isReferenceType()) { 16793 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 16794 diag::ext_union_member_of_reference_type : 16795 diag::err_union_member_of_reference_type) 16796 << NewFD->getDeclName() << EltTy; 16797 if (!getLangOpts().MicrosoftExt) 16798 NewFD->setInvalidDecl(); 16799 } 16800 } 16801 } 16802 16803 // FIXME: We need to pass in the attributes given an AST 16804 // representation, not a parser representation. 16805 if (D) { 16806 // FIXME: The current scope is almost... but not entirely... correct here. 16807 ProcessDeclAttributes(getCurScope(), NewFD, *D); 16808 16809 if (NewFD->hasAttrs()) 16810 CheckAlignasUnderalignment(NewFD); 16811 } 16812 16813 // In auto-retain/release, infer strong retension for fields of 16814 // retainable type. 16815 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD)) 16816 NewFD->setInvalidDecl(); 16817 16818 if (T.isObjCGCWeak()) 16819 Diag(Loc, diag::warn_attribute_weak_on_field); 16820 16821 NewFD->setAccess(AS); 16822 return NewFD; 16823 } 16824 16825 bool Sema::CheckNontrivialField(FieldDecl *FD) { 16826 assert(FD); 16827 assert(getLangOpts().CPlusPlus && "valid check only for C++"); 16828 16829 if (FD->isInvalidDecl() || FD->getType()->isDependentType()) 16830 return false; 16831 16832 QualType EltTy = Context.getBaseElementType(FD->getType()); 16833 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 16834 CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl()); 16835 if (RDecl->getDefinition()) { 16836 // We check for copy constructors before constructors 16837 // because otherwise we'll never get complaints about 16838 // copy constructors. 16839 16840 CXXSpecialMember member = CXXInvalid; 16841 // We're required to check for any non-trivial constructors. Since the 16842 // implicit default constructor is suppressed if there are any 16843 // user-declared constructors, we just need to check that there is a 16844 // trivial default constructor and a trivial copy constructor. (We don't 16845 // worry about move constructors here, since this is a C++98 check.) 16846 if (RDecl->hasNonTrivialCopyConstructor()) 16847 member = CXXCopyConstructor; 16848 else if (!RDecl->hasTrivialDefaultConstructor()) 16849 member = CXXDefaultConstructor; 16850 else if (RDecl->hasNonTrivialCopyAssignment()) 16851 member = CXXCopyAssignment; 16852 else if (RDecl->hasNonTrivialDestructor()) 16853 member = CXXDestructor; 16854 16855 if (member != CXXInvalid) { 16856 if (!getLangOpts().CPlusPlus11 && 16857 getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) { 16858 // Objective-C++ ARC: it is an error to have a non-trivial field of 16859 // a union. However, system headers in Objective-C programs 16860 // occasionally have Objective-C lifetime objects within unions, 16861 // and rather than cause the program to fail, we make those 16862 // members unavailable. 16863 SourceLocation Loc = FD->getLocation(); 16864 if (getSourceManager().isInSystemHeader(Loc)) { 16865 if (!FD->hasAttr<UnavailableAttr>()) 16866 FD->addAttr(UnavailableAttr::CreateImplicit(Context, "", 16867 UnavailableAttr::IR_ARCFieldWithOwnership, Loc)); 16868 return false; 16869 } 16870 } 16871 16872 Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ? 16873 diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member : 16874 diag::err_illegal_union_or_anon_struct_member) 16875 << FD->getParent()->isUnion() << FD->getDeclName() << member; 16876 DiagnoseNontrivial(RDecl, member); 16877 return !getLangOpts().CPlusPlus11; 16878 } 16879 } 16880 } 16881 16882 return false; 16883 } 16884 16885 /// TranslateIvarVisibility - Translate visibility from a token ID to an 16886 /// AST enum value. 16887 static ObjCIvarDecl::AccessControl 16888 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) { 16889 switch (ivarVisibility) { 16890 default: llvm_unreachable("Unknown visitibility kind"); 16891 case tok::objc_private: return ObjCIvarDecl::Private; 16892 case tok::objc_public: return ObjCIvarDecl::Public; 16893 case tok::objc_protected: return ObjCIvarDecl::Protected; 16894 case tok::objc_package: return ObjCIvarDecl::Package; 16895 } 16896 } 16897 16898 /// ActOnIvar - Each ivar field of an objective-c class is passed into this 16899 /// in order to create an IvarDecl object for it. 16900 Decl *Sema::ActOnIvar(Scope *S, 16901 SourceLocation DeclStart, 16902 Declarator &D, Expr *BitfieldWidth, 16903 tok::ObjCKeywordKind Visibility) { 16904 16905 IdentifierInfo *II = D.getIdentifier(); 16906 Expr *BitWidth = (Expr*)BitfieldWidth; 16907 SourceLocation Loc = DeclStart; 16908 if (II) Loc = D.getIdentifierLoc(); 16909 16910 // FIXME: Unnamed fields can be handled in various different ways, for 16911 // example, unnamed unions inject all members into the struct namespace! 16912 16913 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 16914 QualType T = TInfo->getType(); 16915 16916 if (BitWidth) { 16917 // 6.7.2.1p3, 6.7.2.1p4 16918 BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get(); 16919 if (!BitWidth) 16920 D.setInvalidType(); 16921 } else { 16922 // Not a bitfield. 16923 16924 // validate II. 16925 16926 } 16927 if (T->isReferenceType()) { 16928 Diag(Loc, diag::err_ivar_reference_type); 16929 D.setInvalidType(); 16930 } 16931 // C99 6.7.2.1p8: A member of a structure or union may have any type other 16932 // than a variably modified type. 16933 else if (T->isVariablyModifiedType()) { 16934 Diag(Loc, diag::err_typecheck_ivar_variable_size); 16935 D.setInvalidType(); 16936 } 16937 16938 // Get the visibility (access control) for this ivar. 16939 ObjCIvarDecl::AccessControl ac = 16940 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility) 16941 : ObjCIvarDecl::None; 16942 // Must set ivar's DeclContext to its enclosing interface. 16943 ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext); 16944 if (!EnclosingDecl || EnclosingDecl->isInvalidDecl()) 16945 return nullptr; 16946 ObjCContainerDecl *EnclosingContext; 16947 if (ObjCImplementationDecl *IMPDecl = 16948 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 16949 if (LangOpts.ObjCRuntime.isFragile()) { 16950 // Case of ivar declared in an implementation. Context is that of its class. 16951 EnclosingContext = IMPDecl->getClassInterface(); 16952 assert(EnclosingContext && "Implementation has no class interface!"); 16953 } 16954 else 16955 EnclosingContext = EnclosingDecl; 16956 } else { 16957 if (ObjCCategoryDecl *CDecl = 16958 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 16959 if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) { 16960 Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension(); 16961 return nullptr; 16962 } 16963 } 16964 EnclosingContext = EnclosingDecl; 16965 } 16966 16967 // Construct the decl. 16968 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext, 16969 DeclStart, Loc, II, T, 16970 TInfo, ac, (Expr *)BitfieldWidth); 16971 16972 if (II) { 16973 NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName, 16974 ForVisibleRedeclaration); 16975 if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S) 16976 && !isa<TagDecl>(PrevDecl)) { 16977 Diag(Loc, diag::err_duplicate_member) << II; 16978 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 16979 NewID->setInvalidDecl(); 16980 } 16981 } 16982 16983 // Process attributes attached to the ivar. 16984 ProcessDeclAttributes(S, NewID, D); 16985 16986 if (D.isInvalidType()) 16987 NewID->setInvalidDecl(); 16988 16989 // In ARC, infer 'retaining' for ivars of retainable type. 16990 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID)) 16991 NewID->setInvalidDecl(); 16992 16993 if (D.getDeclSpec().isModulePrivateSpecified()) 16994 NewID->setModulePrivate(); 16995 16996 if (II) { 16997 // FIXME: When interfaces are DeclContexts, we'll need to add 16998 // these to the interface. 16999 S->AddDecl(NewID); 17000 IdResolver.AddDecl(NewID); 17001 } 17002 17003 if (LangOpts.ObjCRuntime.isNonFragile() && 17004 !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl)) 17005 Diag(Loc, diag::warn_ivars_in_interface); 17006 17007 return NewID; 17008 } 17009 17010 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for 17011 /// class and class extensions. For every class \@interface and class 17012 /// extension \@interface, if the last ivar is a bitfield of any type, 17013 /// then add an implicit `char :0` ivar to the end of that interface. 17014 void Sema::ActOnLastBitfield(SourceLocation DeclLoc, 17015 SmallVectorImpl<Decl *> &AllIvarDecls) { 17016 if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty()) 17017 return; 17018 17019 Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1]; 17020 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl); 17021 17022 if (!Ivar->isBitField() || Ivar->isZeroLengthBitField(Context)) 17023 return; 17024 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext); 17025 if (!ID) { 17026 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) { 17027 if (!CD->IsClassExtension()) 17028 return; 17029 } 17030 // No need to add this to end of @implementation. 17031 else 17032 return; 17033 } 17034 // All conditions are met. Add a new bitfield to the tail end of ivars. 17035 llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0); 17036 Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc); 17037 17038 Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext), 17039 DeclLoc, DeclLoc, nullptr, 17040 Context.CharTy, 17041 Context.getTrivialTypeSourceInfo(Context.CharTy, 17042 DeclLoc), 17043 ObjCIvarDecl::Private, BW, 17044 true); 17045 AllIvarDecls.push_back(Ivar); 17046 } 17047 17048 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl, 17049 ArrayRef<Decl *> Fields, SourceLocation LBrac, 17050 SourceLocation RBrac, 17051 const ParsedAttributesView &Attrs) { 17052 assert(EnclosingDecl && "missing record or interface decl"); 17053 17054 // If this is an Objective-C @implementation or category and we have 17055 // new fields here we should reset the layout of the interface since 17056 // it will now change. 17057 if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) { 17058 ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl); 17059 switch (DC->getKind()) { 17060 default: break; 17061 case Decl::ObjCCategory: 17062 Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface()); 17063 break; 17064 case Decl::ObjCImplementation: 17065 Context. 17066 ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface()); 17067 break; 17068 } 17069 } 17070 17071 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl); 17072 CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(EnclosingDecl); 17073 17074 // Start counting up the number of named members; make sure to include 17075 // members of anonymous structs and unions in the total. 17076 unsigned NumNamedMembers = 0; 17077 if (Record) { 17078 for (const auto *I : Record->decls()) { 17079 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) 17080 if (IFD->getDeclName()) 17081 ++NumNamedMembers; 17082 } 17083 } 17084 17085 // Verify that all the fields are okay. 17086 SmallVector<FieldDecl*, 32> RecFields; 17087 17088 for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end(); 17089 i != end; ++i) { 17090 FieldDecl *FD = cast<FieldDecl>(*i); 17091 17092 // Get the type for the field. 17093 const Type *FDTy = FD->getType().getTypePtr(); 17094 17095 if (!FD->isAnonymousStructOrUnion()) { 17096 // Remember all fields written by the user. 17097 RecFields.push_back(FD); 17098 } 17099 17100 // If the field is already invalid for some reason, don't emit more 17101 // diagnostics about it. 17102 if (FD->isInvalidDecl()) { 17103 EnclosingDecl->setInvalidDecl(); 17104 continue; 17105 } 17106 17107 // C99 6.7.2.1p2: 17108 // A structure or union shall not contain a member with 17109 // incomplete or function type (hence, a structure shall not 17110 // contain an instance of itself, but may contain a pointer to 17111 // an instance of itself), except that the last member of a 17112 // structure with more than one named member may have incomplete 17113 // array type; such a structure (and any union containing, 17114 // possibly recursively, a member that is such a structure) 17115 // shall not be a member of a structure or an element of an 17116 // array. 17117 bool IsLastField = (i + 1 == Fields.end()); 17118 if (FDTy->isFunctionType()) { 17119 // Field declared as a function. 17120 Diag(FD->getLocation(), diag::err_field_declared_as_function) 17121 << FD->getDeclName(); 17122 FD->setInvalidDecl(); 17123 EnclosingDecl->setInvalidDecl(); 17124 continue; 17125 } else if (FDTy->isIncompleteArrayType() && 17126 (Record || isa<ObjCContainerDecl>(EnclosingDecl))) { 17127 if (Record) { 17128 // Flexible array member. 17129 // Microsoft and g++ is more permissive regarding flexible array. 17130 // It will accept flexible array in union and also 17131 // as the sole element of a struct/class. 17132 unsigned DiagID = 0; 17133 if (!Record->isUnion() && !IsLastField) { 17134 Diag(FD->getLocation(), diag::err_flexible_array_not_at_end) 17135 << FD->getDeclName() << FD->getType() << Record->getTagKind(); 17136 Diag((*(i + 1))->getLocation(), diag::note_next_field_declaration); 17137 FD->setInvalidDecl(); 17138 EnclosingDecl->setInvalidDecl(); 17139 continue; 17140 } else if (Record->isUnion()) 17141 DiagID = getLangOpts().MicrosoftExt 17142 ? diag::ext_flexible_array_union_ms 17143 : getLangOpts().CPlusPlus 17144 ? diag::ext_flexible_array_union_gnu 17145 : diag::err_flexible_array_union; 17146 else if (NumNamedMembers < 1) 17147 DiagID = getLangOpts().MicrosoftExt 17148 ? diag::ext_flexible_array_empty_aggregate_ms 17149 : getLangOpts().CPlusPlus 17150 ? diag::ext_flexible_array_empty_aggregate_gnu 17151 : diag::err_flexible_array_empty_aggregate; 17152 17153 if (DiagID) 17154 Diag(FD->getLocation(), DiagID) << FD->getDeclName() 17155 << Record->getTagKind(); 17156 // While the layout of types that contain virtual bases is not specified 17157 // by the C++ standard, both the Itanium and Microsoft C++ ABIs place 17158 // virtual bases after the derived members. This would make a flexible 17159 // array member declared at the end of an object not adjacent to the end 17160 // of the type. 17161 if (CXXRecord && CXXRecord->getNumVBases() != 0) 17162 Diag(FD->getLocation(), diag::err_flexible_array_virtual_base) 17163 << FD->getDeclName() << Record->getTagKind(); 17164 if (!getLangOpts().C99) 17165 Diag(FD->getLocation(), diag::ext_c99_flexible_array_member) 17166 << FD->getDeclName() << Record->getTagKind(); 17167 17168 // If the element type has a non-trivial destructor, we would not 17169 // implicitly destroy the elements, so disallow it for now. 17170 // 17171 // FIXME: GCC allows this. We should probably either implicitly delete 17172 // the destructor of the containing class, or just allow this. 17173 QualType BaseElem = Context.getBaseElementType(FD->getType()); 17174 if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) { 17175 Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor) 17176 << FD->getDeclName() << FD->getType(); 17177 FD->setInvalidDecl(); 17178 EnclosingDecl->setInvalidDecl(); 17179 continue; 17180 } 17181 // Okay, we have a legal flexible array member at the end of the struct. 17182 Record->setHasFlexibleArrayMember(true); 17183 } else { 17184 // In ObjCContainerDecl ivars with incomplete array type are accepted, 17185 // unless they are followed by another ivar. That check is done 17186 // elsewhere, after synthesized ivars are known. 17187 } 17188 } else if (!FDTy->isDependentType() && 17189 RequireCompleteSizedType( 17190 FD->getLocation(), FD->getType(), 17191 diag::err_field_incomplete_or_sizeless)) { 17192 // Incomplete type 17193 FD->setInvalidDecl(); 17194 EnclosingDecl->setInvalidDecl(); 17195 continue; 17196 } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) { 17197 if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) { 17198 // A type which contains a flexible array member is considered to be a 17199 // flexible array member. 17200 Record->setHasFlexibleArrayMember(true); 17201 if (!Record->isUnion()) { 17202 // If this is a struct/class and this is not the last element, reject 17203 // it. Note that GCC supports variable sized arrays in the middle of 17204 // structures. 17205 if (!IsLastField) 17206 Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct) 17207 << FD->getDeclName() << FD->getType(); 17208 else { 17209 // We support flexible arrays at the end of structs in 17210 // other structs as an extension. 17211 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct) 17212 << FD->getDeclName(); 17213 } 17214 } 17215 } 17216 if (isa<ObjCContainerDecl>(EnclosingDecl) && 17217 RequireNonAbstractType(FD->getLocation(), FD->getType(), 17218 diag::err_abstract_type_in_decl, 17219 AbstractIvarType)) { 17220 // Ivars can not have abstract class types 17221 FD->setInvalidDecl(); 17222 } 17223 if (Record && FDTTy->getDecl()->hasObjectMember()) 17224 Record->setHasObjectMember(true); 17225 if (Record && FDTTy->getDecl()->hasVolatileMember()) 17226 Record->setHasVolatileMember(true); 17227 } else if (FDTy->isObjCObjectType()) { 17228 /// A field cannot be an Objective-c object 17229 Diag(FD->getLocation(), diag::err_statically_allocated_object) 17230 << FixItHint::CreateInsertion(FD->getLocation(), "*"); 17231 QualType T = Context.getObjCObjectPointerType(FD->getType()); 17232 FD->setType(T); 17233 } else if (Record && Record->isUnion() && 17234 FD->getType().hasNonTrivialObjCLifetime() && 17235 getSourceManager().isInSystemHeader(FD->getLocation()) && 17236 !getLangOpts().CPlusPlus && !FD->hasAttr<UnavailableAttr>() && 17237 (FD->getType().getObjCLifetime() != Qualifiers::OCL_Strong || 17238 !Context.hasDirectOwnershipQualifier(FD->getType()))) { 17239 // For backward compatibility, fields of C unions declared in system 17240 // headers that have non-trivial ObjC ownership qualifications are marked 17241 // as unavailable unless the qualifier is explicit and __strong. This can 17242 // break ABI compatibility between programs compiled with ARC and MRR, but 17243 // is a better option than rejecting programs using those unions under 17244 // ARC. 17245 FD->addAttr(UnavailableAttr::CreateImplicit( 17246 Context, "", UnavailableAttr::IR_ARCFieldWithOwnership, 17247 FD->getLocation())); 17248 } else if (getLangOpts().ObjC && 17249 getLangOpts().getGC() != LangOptions::NonGC && Record && 17250 !Record->hasObjectMember()) { 17251 if (FD->getType()->isObjCObjectPointerType() || 17252 FD->getType().isObjCGCStrong()) 17253 Record->setHasObjectMember(true); 17254 else if (Context.getAsArrayType(FD->getType())) { 17255 QualType BaseType = Context.getBaseElementType(FD->getType()); 17256 if (BaseType->isRecordType() && 17257 BaseType->castAs<RecordType>()->getDecl()->hasObjectMember()) 17258 Record->setHasObjectMember(true); 17259 else if (BaseType->isObjCObjectPointerType() || 17260 BaseType.isObjCGCStrong()) 17261 Record->setHasObjectMember(true); 17262 } 17263 } 17264 17265 if (Record && !getLangOpts().CPlusPlus && 17266 !shouldIgnoreForRecordTriviality(FD)) { 17267 QualType FT = FD->getType(); 17268 if (FT.isNonTrivialToPrimitiveDefaultInitialize()) { 17269 Record->setNonTrivialToPrimitiveDefaultInitialize(true); 17270 if (FT.hasNonTrivialToPrimitiveDefaultInitializeCUnion() || 17271 Record->isUnion()) 17272 Record->setHasNonTrivialToPrimitiveDefaultInitializeCUnion(true); 17273 } 17274 QualType::PrimitiveCopyKind PCK = FT.isNonTrivialToPrimitiveCopy(); 17275 if (PCK != QualType::PCK_Trivial && PCK != QualType::PCK_VolatileTrivial) { 17276 Record->setNonTrivialToPrimitiveCopy(true); 17277 if (FT.hasNonTrivialToPrimitiveCopyCUnion() || Record->isUnion()) 17278 Record->setHasNonTrivialToPrimitiveCopyCUnion(true); 17279 } 17280 if (FT.isDestructedType()) { 17281 Record->setNonTrivialToPrimitiveDestroy(true); 17282 Record->setParamDestroyedInCallee(true); 17283 if (FT.hasNonTrivialToPrimitiveDestructCUnion() || Record->isUnion()) 17284 Record->setHasNonTrivialToPrimitiveDestructCUnion(true); 17285 } 17286 17287 if (const auto *RT = FT->getAs<RecordType>()) { 17288 if (RT->getDecl()->getArgPassingRestrictions() == 17289 RecordDecl::APK_CanNeverPassInRegs) 17290 Record->setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs); 17291 } else if (FT.getQualifiers().getObjCLifetime() == Qualifiers::OCL_Weak) 17292 Record->setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs); 17293 } 17294 17295 if (Record && FD->getType().isVolatileQualified()) 17296 Record->setHasVolatileMember(true); 17297 // Keep track of the number of named members. 17298 if (FD->getIdentifier()) 17299 ++NumNamedMembers; 17300 } 17301 17302 // Okay, we successfully defined 'Record'. 17303 if (Record) { 17304 bool Completed = false; 17305 if (CXXRecord) { 17306 if (!CXXRecord->isInvalidDecl()) { 17307 // Set access bits correctly on the directly-declared conversions. 17308 for (CXXRecordDecl::conversion_iterator 17309 I = CXXRecord->conversion_begin(), 17310 E = CXXRecord->conversion_end(); I != E; ++I) 17311 I.setAccess((*I)->getAccess()); 17312 } 17313 17314 // Add any implicitly-declared members to this class. 17315 AddImplicitlyDeclaredMembersToClass(CXXRecord); 17316 17317 if (!CXXRecord->isDependentType()) { 17318 if (!CXXRecord->isInvalidDecl()) { 17319 // If we have virtual base classes, we may end up finding multiple 17320 // final overriders for a given virtual function. Check for this 17321 // problem now. 17322 if (CXXRecord->getNumVBases()) { 17323 CXXFinalOverriderMap FinalOverriders; 17324 CXXRecord->getFinalOverriders(FinalOverriders); 17325 17326 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 17327 MEnd = FinalOverriders.end(); 17328 M != MEnd; ++M) { 17329 for (OverridingMethods::iterator SO = M->second.begin(), 17330 SOEnd = M->second.end(); 17331 SO != SOEnd; ++SO) { 17332 assert(SO->second.size() > 0 && 17333 "Virtual function without overriding functions?"); 17334 if (SO->second.size() == 1) 17335 continue; 17336 17337 // C++ [class.virtual]p2: 17338 // In a derived class, if a virtual member function of a base 17339 // class subobject has more than one final overrider the 17340 // program is ill-formed. 17341 Diag(Record->getLocation(), diag::err_multiple_final_overriders) 17342 << (const NamedDecl *)M->first << Record; 17343 Diag(M->first->getLocation(), 17344 diag::note_overridden_virtual_function); 17345 for (OverridingMethods::overriding_iterator 17346 OM = SO->second.begin(), 17347 OMEnd = SO->second.end(); 17348 OM != OMEnd; ++OM) 17349 Diag(OM->Method->getLocation(), diag::note_final_overrider) 17350 << (const NamedDecl *)M->first << OM->Method->getParent(); 17351 17352 Record->setInvalidDecl(); 17353 } 17354 } 17355 CXXRecord->completeDefinition(&FinalOverriders); 17356 Completed = true; 17357 } 17358 } 17359 } 17360 } 17361 17362 if (!Completed) 17363 Record->completeDefinition(); 17364 17365 // Handle attributes before checking the layout. 17366 ProcessDeclAttributeList(S, Record, Attrs); 17367 17368 // We may have deferred checking for a deleted destructor. Check now. 17369 if (CXXRecord) { 17370 auto *Dtor = CXXRecord->getDestructor(); 17371 if (Dtor && Dtor->isImplicit() && 17372 ShouldDeleteSpecialMember(Dtor, CXXDestructor)) { 17373 CXXRecord->setImplicitDestructorIsDeleted(); 17374 SetDeclDeleted(Dtor, CXXRecord->getLocation()); 17375 } 17376 } 17377 17378 if (Record->hasAttrs()) { 17379 CheckAlignasUnderalignment(Record); 17380 17381 if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>()) 17382 checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record), 17383 IA->getRange(), IA->getBestCase(), 17384 IA->getInheritanceModel()); 17385 } 17386 17387 // Check if the structure/union declaration is a type that can have zero 17388 // size in C. For C this is a language extension, for C++ it may cause 17389 // compatibility problems. 17390 bool CheckForZeroSize; 17391 if (!getLangOpts().CPlusPlus) { 17392 CheckForZeroSize = true; 17393 } else { 17394 // For C++ filter out types that cannot be referenced in C code. 17395 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record); 17396 CheckForZeroSize = 17397 CXXRecord->getLexicalDeclContext()->isExternCContext() && 17398 !CXXRecord->isDependentType() && !inTemplateInstantiation() && 17399 CXXRecord->isCLike(); 17400 } 17401 if (CheckForZeroSize) { 17402 bool ZeroSize = true; 17403 bool IsEmpty = true; 17404 unsigned NonBitFields = 0; 17405 for (RecordDecl::field_iterator I = Record->field_begin(), 17406 E = Record->field_end(); 17407 (NonBitFields == 0 || ZeroSize) && I != E; ++I) { 17408 IsEmpty = false; 17409 if (I->isUnnamedBitfield()) { 17410 if (!I->isZeroLengthBitField(Context)) 17411 ZeroSize = false; 17412 } else { 17413 ++NonBitFields; 17414 QualType FieldType = I->getType(); 17415 if (FieldType->isIncompleteType() || 17416 !Context.getTypeSizeInChars(FieldType).isZero()) 17417 ZeroSize = false; 17418 } 17419 } 17420 17421 // Empty structs are an extension in C (C99 6.7.2.1p7). They are 17422 // allowed in C++, but warn if its declaration is inside 17423 // extern "C" block. 17424 if (ZeroSize) { 17425 Diag(RecLoc, getLangOpts().CPlusPlus ? 17426 diag::warn_zero_size_struct_union_in_extern_c : 17427 diag::warn_zero_size_struct_union_compat) 17428 << IsEmpty << Record->isUnion() << (NonBitFields > 1); 17429 } 17430 17431 // Structs without named members are extension in C (C99 6.7.2.1p7), 17432 // but are accepted by GCC. 17433 if (NonBitFields == 0 && !getLangOpts().CPlusPlus) { 17434 Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union : 17435 diag::ext_no_named_members_in_struct_union) 17436 << Record->isUnion(); 17437 } 17438 } 17439 } else { 17440 ObjCIvarDecl **ClsFields = 17441 reinterpret_cast<ObjCIvarDecl**>(RecFields.data()); 17442 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) { 17443 ID->setEndOfDefinitionLoc(RBrac); 17444 // Add ivar's to class's DeclContext. 17445 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 17446 ClsFields[i]->setLexicalDeclContext(ID); 17447 ID->addDecl(ClsFields[i]); 17448 } 17449 // Must enforce the rule that ivars in the base classes may not be 17450 // duplicates. 17451 if (ID->getSuperClass()) 17452 DiagnoseDuplicateIvars(ID, ID->getSuperClass()); 17453 } else if (ObjCImplementationDecl *IMPDecl = 17454 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 17455 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl"); 17456 for (unsigned I = 0, N = RecFields.size(); I != N; ++I) 17457 // Ivar declared in @implementation never belongs to the implementation. 17458 // Only it is in implementation's lexical context. 17459 ClsFields[I]->setLexicalDeclContext(IMPDecl); 17460 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac); 17461 IMPDecl->setIvarLBraceLoc(LBrac); 17462 IMPDecl->setIvarRBraceLoc(RBrac); 17463 } else if (ObjCCategoryDecl *CDecl = 17464 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 17465 // case of ivars in class extension; all other cases have been 17466 // reported as errors elsewhere. 17467 // FIXME. Class extension does not have a LocEnd field. 17468 // CDecl->setLocEnd(RBrac); 17469 // Add ivar's to class extension's DeclContext. 17470 // Diagnose redeclaration of private ivars. 17471 ObjCInterfaceDecl *IDecl = CDecl->getClassInterface(); 17472 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 17473 if (IDecl) { 17474 if (const ObjCIvarDecl *ClsIvar = 17475 IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) { 17476 Diag(ClsFields[i]->getLocation(), 17477 diag::err_duplicate_ivar_declaration); 17478 Diag(ClsIvar->getLocation(), diag::note_previous_definition); 17479 continue; 17480 } 17481 for (const auto *Ext : IDecl->known_extensions()) { 17482 if (const ObjCIvarDecl *ClsExtIvar 17483 = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) { 17484 Diag(ClsFields[i]->getLocation(), 17485 diag::err_duplicate_ivar_declaration); 17486 Diag(ClsExtIvar->getLocation(), diag::note_previous_definition); 17487 continue; 17488 } 17489 } 17490 } 17491 ClsFields[i]->setLexicalDeclContext(CDecl); 17492 CDecl->addDecl(ClsFields[i]); 17493 } 17494 CDecl->setIvarLBraceLoc(LBrac); 17495 CDecl->setIvarRBraceLoc(RBrac); 17496 } 17497 } 17498 } 17499 17500 /// Determine whether the given integral value is representable within 17501 /// the given type T. 17502 static bool isRepresentableIntegerValue(ASTContext &Context, 17503 llvm::APSInt &Value, 17504 QualType T) { 17505 assert((T->isIntegralType(Context) || T->isEnumeralType()) && 17506 "Integral type required!"); 17507 unsigned BitWidth = Context.getIntWidth(T); 17508 17509 if (Value.isUnsigned() || Value.isNonNegative()) { 17510 if (T->isSignedIntegerOrEnumerationType()) 17511 --BitWidth; 17512 return Value.getActiveBits() <= BitWidth; 17513 } 17514 return Value.getMinSignedBits() <= BitWidth; 17515 } 17516 17517 // Given an integral type, return the next larger integral type 17518 // (or a NULL type of no such type exists). 17519 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) { 17520 // FIXME: Int128/UInt128 support, which also needs to be introduced into 17521 // enum checking below. 17522 assert((T->isIntegralType(Context) || 17523 T->isEnumeralType()) && "Integral type required!"); 17524 const unsigned NumTypes = 4; 17525 QualType SignedIntegralTypes[NumTypes] = { 17526 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy 17527 }; 17528 QualType UnsignedIntegralTypes[NumTypes] = { 17529 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, 17530 Context.UnsignedLongLongTy 17531 }; 17532 17533 unsigned BitWidth = Context.getTypeSize(T); 17534 QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes 17535 : UnsignedIntegralTypes; 17536 for (unsigned I = 0; I != NumTypes; ++I) 17537 if (Context.getTypeSize(Types[I]) > BitWidth) 17538 return Types[I]; 17539 17540 return QualType(); 17541 } 17542 17543 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum, 17544 EnumConstantDecl *LastEnumConst, 17545 SourceLocation IdLoc, 17546 IdentifierInfo *Id, 17547 Expr *Val) { 17548 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 17549 llvm::APSInt EnumVal(IntWidth); 17550 QualType EltTy; 17551 17552 if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue)) 17553 Val = nullptr; 17554 17555 if (Val) 17556 Val = DefaultLvalueConversion(Val).get(); 17557 17558 if (Val) { 17559 if (Enum->isDependentType() || Val->isTypeDependent()) 17560 EltTy = Context.DependentTy; 17561 else { 17562 // FIXME: We don't allow folding in C++11 mode for an enum with a fixed 17563 // underlying type, but do allow it in all other contexts. 17564 if (getLangOpts().CPlusPlus11 && Enum->isFixed()) { 17565 // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the 17566 // constant-expression in the enumerator-definition shall be a converted 17567 // constant expression of the underlying type. 17568 EltTy = Enum->getIntegerType(); 17569 ExprResult Converted = 17570 CheckConvertedConstantExpression(Val, EltTy, EnumVal, 17571 CCEK_Enumerator); 17572 if (Converted.isInvalid()) 17573 Val = nullptr; 17574 else 17575 Val = Converted.get(); 17576 } else if (!Val->isValueDependent() && 17577 !(Val = 17578 VerifyIntegerConstantExpression(Val, &EnumVal, AllowFold) 17579 .get())) { 17580 // C99 6.7.2.2p2: Make sure we have an integer constant expression. 17581 } else { 17582 if (Enum->isComplete()) { 17583 EltTy = Enum->getIntegerType(); 17584 17585 // In Obj-C and Microsoft mode, require the enumeration value to be 17586 // representable in the underlying type of the enumeration. In C++11, 17587 // we perform a non-narrowing conversion as part of converted constant 17588 // expression checking. 17589 if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 17590 if (Context.getTargetInfo() 17591 .getTriple() 17592 .isWindowsMSVCEnvironment()) { 17593 Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy; 17594 } else { 17595 Diag(IdLoc, diag::err_enumerator_too_large) << EltTy; 17596 } 17597 } 17598 17599 // Cast to the underlying type. 17600 Val = ImpCastExprToType(Val, EltTy, 17601 EltTy->isBooleanType() ? CK_IntegralToBoolean 17602 : CK_IntegralCast) 17603 .get(); 17604 } else if (getLangOpts().CPlusPlus) { 17605 // C++11 [dcl.enum]p5: 17606 // If the underlying type is not fixed, the type of each enumerator 17607 // is the type of its initializing value: 17608 // - If an initializer is specified for an enumerator, the 17609 // initializing value has the same type as the expression. 17610 EltTy = Val->getType(); 17611 } else { 17612 // C99 6.7.2.2p2: 17613 // The expression that defines the value of an enumeration constant 17614 // shall be an integer constant expression that has a value 17615 // representable as an int. 17616 17617 // Complain if the value is not representable in an int. 17618 if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy)) 17619 Diag(IdLoc, diag::ext_enum_value_not_int) 17620 << EnumVal.toString(10) << Val->getSourceRange() 17621 << (EnumVal.isUnsigned() || EnumVal.isNonNegative()); 17622 else if (!Context.hasSameType(Val->getType(), Context.IntTy)) { 17623 // Force the type of the expression to 'int'. 17624 Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get(); 17625 } 17626 EltTy = Val->getType(); 17627 } 17628 } 17629 } 17630 } 17631 17632 if (!Val) { 17633 if (Enum->isDependentType()) 17634 EltTy = Context.DependentTy; 17635 else if (!LastEnumConst) { 17636 // C++0x [dcl.enum]p5: 17637 // If the underlying type is not fixed, the type of each enumerator 17638 // is the type of its initializing value: 17639 // - If no initializer is specified for the first enumerator, the 17640 // initializing value has an unspecified integral type. 17641 // 17642 // GCC uses 'int' for its unspecified integral type, as does 17643 // C99 6.7.2.2p3. 17644 if (Enum->isFixed()) { 17645 EltTy = Enum->getIntegerType(); 17646 } 17647 else { 17648 EltTy = Context.IntTy; 17649 } 17650 } else { 17651 // Assign the last value + 1. 17652 EnumVal = LastEnumConst->getInitVal(); 17653 ++EnumVal; 17654 EltTy = LastEnumConst->getType(); 17655 17656 // Check for overflow on increment. 17657 if (EnumVal < LastEnumConst->getInitVal()) { 17658 // C++0x [dcl.enum]p5: 17659 // If the underlying type is not fixed, the type of each enumerator 17660 // is the type of its initializing value: 17661 // 17662 // - Otherwise the type of the initializing value is the same as 17663 // the type of the initializing value of the preceding enumerator 17664 // unless the incremented value is not representable in that type, 17665 // in which case the type is an unspecified integral type 17666 // sufficient to contain the incremented value. If no such type 17667 // exists, the program is ill-formed. 17668 QualType T = getNextLargerIntegralType(Context, EltTy); 17669 if (T.isNull() || Enum->isFixed()) { 17670 // There is no integral type larger enough to represent this 17671 // value. Complain, then allow the value to wrap around. 17672 EnumVal = LastEnumConst->getInitVal(); 17673 EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2); 17674 ++EnumVal; 17675 if (Enum->isFixed()) 17676 // When the underlying type is fixed, this is ill-formed. 17677 Diag(IdLoc, diag::err_enumerator_wrapped) 17678 << EnumVal.toString(10) 17679 << EltTy; 17680 else 17681 Diag(IdLoc, diag::ext_enumerator_increment_too_large) 17682 << EnumVal.toString(10); 17683 } else { 17684 EltTy = T; 17685 } 17686 17687 // Retrieve the last enumerator's value, extent that type to the 17688 // type that is supposed to be large enough to represent the incremented 17689 // value, then increment. 17690 EnumVal = LastEnumConst->getInitVal(); 17691 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 17692 EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy)); 17693 ++EnumVal; 17694 17695 // If we're not in C++, diagnose the overflow of enumerator values, 17696 // which in C99 means that the enumerator value is not representable in 17697 // an int (C99 6.7.2.2p2). However, we support GCC's extension that 17698 // permits enumerator values that are representable in some larger 17699 // integral type. 17700 if (!getLangOpts().CPlusPlus && !T.isNull()) 17701 Diag(IdLoc, diag::warn_enum_value_overflow); 17702 } else if (!getLangOpts().CPlusPlus && 17703 !isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 17704 // Enforce C99 6.7.2.2p2 even when we compute the next value. 17705 Diag(IdLoc, diag::ext_enum_value_not_int) 17706 << EnumVal.toString(10) << 1; 17707 } 17708 } 17709 } 17710 17711 if (!EltTy->isDependentType()) { 17712 // Make the enumerator value match the signedness and size of the 17713 // enumerator's type. 17714 EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy)); 17715 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 17716 } 17717 17718 return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy, 17719 Val, EnumVal); 17720 } 17721 17722 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II, 17723 SourceLocation IILoc) { 17724 if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) || 17725 !getLangOpts().CPlusPlus) 17726 return SkipBodyInfo(); 17727 17728 // We have an anonymous enum definition. Look up the first enumerator to 17729 // determine if we should merge the definition with an existing one and 17730 // skip the body. 17731 NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName, 17732 forRedeclarationInCurContext()); 17733 auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl); 17734 if (!PrevECD) 17735 return SkipBodyInfo(); 17736 17737 EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext()); 17738 NamedDecl *Hidden; 17739 if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) { 17740 SkipBodyInfo Skip; 17741 Skip.Previous = Hidden; 17742 return Skip; 17743 } 17744 17745 return SkipBodyInfo(); 17746 } 17747 17748 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, 17749 SourceLocation IdLoc, IdentifierInfo *Id, 17750 const ParsedAttributesView &Attrs, 17751 SourceLocation EqualLoc, Expr *Val) { 17752 EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl); 17753 EnumConstantDecl *LastEnumConst = 17754 cast_or_null<EnumConstantDecl>(lastEnumConst); 17755 17756 // The scope passed in may not be a decl scope. Zip up the scope tree until 17757 // we find one that is. 17758 S = getNonFieldDeclScope(S); 17759 17760 // Verify that there isn't already something declared with this name in this 17761 // scope. 17762 LookupResult R(*this, Id, IdLoc, LookupOrdinaryName, ForVisibleRedeclaration); 17763 LookupName(R, S); 17764 NamedDecl *PrevDecl = R.getAsSingle<NamedDecl>(); 17765 17766 if (PrevDecl && PrevDecl->isTemplateParameter()) { 17767 // Maybe we will complain about the shadowed template parameter. 17768 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl); 17769 // Just pretend that we didn't see the previous declaration. 17770 PrevDecl = nullptr; 17771 } 17772 17773 // C++ [class.mem]p15: 17774 // If T is the name of a class, then each of the following shall have a name 17775 // different from T: 17776 // - every enumerator of every member of class T that is an unscoped 17777 // enumerated type 17778 if (getLangOpts().CPlusPlus && !TheEnumDecl->isScoped()) 17779 DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(), 17780 DeclarationNameInfo(Id, IdLoc)); 17781 17782 EnumConstantDecl *New = 17783 CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val); 17784 if (!New) 17785 return nullptr; 17786 17787 if (PrevDecl) { 17788 if (!TheEnumDecl->isScoped() && isa<ValueDecl>(PrevDecl)) { 17789 // Check for other kinds of shadowing not already handled. 17790 CheckShadow(New, PrevDecl, R); 17791 } 17792 17793 // When in C++, we may get a TagDecl with the same name; in this case the 17794 // enum constant will 'hide' the tag. 17795 assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) && 17796 "Received TagDecl when not in C++!"); 17797 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) { 17798 if (isa<EnumConstantDecl>(PrevDecl)) 17799 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id; 17800 else 17801 Diag(IdLoc, diag::err_redefinition) << Id; 17802 notePreviousDefinition(PrevDecl, IdLoc); 17803 return nullptr; 17804 } 17805 } 17806 17807 // Process attributes. 17808 ProcessDeclAttributeList(S, New, Attrs); 17809 AddPragmaAttributes(S, New); 17810 17811 // Register this decl in the current scope stack. 17812 New->setAccess(TheEnumDecl->getAccess()); 17813 PushOnScopeChains(New, S); 17814 17815 ActOnDocumentableDecl(New); 17816 17817 return New; 17818 } 17819 17820 // Returns true when the enum initial expression does not trigger the 17821 // duplicate enum warning. A few common cases are exempted as follows: 17822 // Element2 = Element1 17823 // Element2 = Element1 + 1 17824 // Element2 = Element1 - 1 17825 // Where Element2 and Element1 are from the same enum. 17826 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) { 17827 Expr *InitExpr = ECD->getInitExpr(); 17828 if (!InitExpr) 17829 return true; 17830 InitExpr = InitExpr->IgnoreImpCasts(); 17831 17832 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) { 17833 if (!BO->isAdditiveOp()) 17834 return true; 17835 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS()); 17836 if (!IL) 17837 return true; 17838 if (IL->getValue() != 1) 17839 return true; 17840 17841 InitExpr = BO->getLHS(); 17842 } 17843 17844 // This checks if the elements are from the same enum. 17845 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr); 17846 if (!DRE) 17847 return true; 17848 17849 EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl()); 17850 if (!EnumConstant) 17851 return true; 17852 17853 if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) != 17854 Enum) 17855 return true; 17856 17857 return false; 17858 } 17859 17860 // Emits a warning when an element is implicitly set a value that 17861 // a previous element has already been set to. 17862 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements, 17863 EnumDecl *Enum, QualType EnumType) { 17864 // Avoid anonymous enums 17865 if (!Enum->getIdentifier()) 17866 return; 17867 17868 // Only check for small enums. 17869 if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64) 17870 return; 17871 17872 if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation())) 17873 return; 17874 17875 typedef SmallVector<EnumConstantDecl *, 3> ECDVector; 17876 typedef SmallVector<std::unique_ptr<ECDVector>, 3> DuplicatesVector; 17877 17878 typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector; 17879 17880 // DenseMaps cannot contain the all ones int64_t value, so use unordered_map. 17881 typedef std::unordered_map<int64_t, DeclOrVector> ValueToVectorMap; 17882 17883 // Use int64_t as a key to avoid needing special handling for map keys. 17884 auto EnumConstantToKey = [](const EnumConstantDecl *D) { 17885 llvm::APSInt Val = D->getInitVal(); 17886 return Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(); 17887 }; 17888 17889 DuplicatesVector DupVector; 17890 ValueToVectorMap EnumMap; 17891 17892 // Populate the EnumMap with all values represented by enum constants without 17893 // an initializer. 17894 for (auto *Element : Elements) { 17895 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Element); 17896 17897 // Null EnumConstantDecl means a previous diagnostic has been emitted for 17898 // this constant. Skip this enum since it may be ill-formed. 17899 if (!ECD) { 17900 return; 17901 } 17902 17903 // Constants with initalizers are handled in the next loop. 17904 if (ECD->getInitExpr()) 17905 continue; 17906 17907 // Duplicate values are handled in the next loop. 17908 EnumMap.insert({EnumConstantToKey(ECD), ECD}); 17909 } 17910 17911 if (EnumMap.size() == 0) 17912 return; 17913 17914 // Create vectors for any values that has duplicates. 17915 for (auto *Element : Elements) { 17916 // The last loop returned if any constant was null. 17917 EnumConstantDecl *ECD = cast<EnumConstantDecl>(Element); 17918 if (!ValidDuplicateEnum(ECD, Enum)) 17919 continue; 17920 17921 auto Iter = EnumMap.find(EnumConstantToKey(ECD)); 17922 if (Iter == EnumMap.end()) 17923 continue; 17924 17925 DeclOrVector& Entry = Iter->second; 17926 if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) { 17927 // Ensure constants are different. 17928 if (D == ECD) 17929 continue; 17930 17931 // Create new vector and push values onto it. 17932 auto Vec = std::make_unique<ECDVector>(); 17933 Vec->push_back(D); 17934 Vec->push_back(ECD); 17935 17936 // Update entry to point to the duplicates vector. 17937 Entry = Vec.get(); 17938 17939 // Store the vector somewhere we can consult later for quick emission of 17940 // diagnostics. 17941 DupVector.emplace_back(std::move(Vec)); 17942 continue; 17943 } 17944 17945 ECDVector *Vec = Entry.get<ECDVector*>(); 17946 // Make sure constants are not added more than once. 17947 if (*Vec->begin() == ECD) 17948 continue; 17949 17950 Vec->push_back(ECD); 17951 } 17952 17953 // Emit diagnostics. 17954 for (const auto &Vec : DupVector) { 17955 assert(Vec->size() > 1 && "ECDVector should have at least 2 elements."); 17956 17957 // Emit warning for one enum constant. 17958 auto *FirstECD = Vec->front(); 17959 S.Diag(FirstECD->getLocation(), diag::warn_duplicate_enum_values) 17960 << FirstECD << FirstECD->getInitVal().toString(10) 17961 << FirstECD->getSourceRange(); 17962 17963 // Emit one note for each of the remaining enum constants with 17964 // the same value. 17965 for (auto *ECD : llvm::make_range(Vec->begin() + 1, Vec->end())) 17966 S.Diag(ECD->getLocation(), diag::note_duplicate_element) 17967 << ECD << ECD->getInitVal().toString(10) 17968 << ECD->getSourceRange(); 17969 } 17970 } 17971 17972 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val, 17973 bool AllowMask) const { 17974 assert(ED->isClosedFlag() && "looking for value in non-flag or open enum"); 17975 assert(ED->isCompleteDefinition() && "expected enum definition"); 17976 17977 auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt())); 17978 llvm::APInt &FlagBits = R.first->second; 17979 17980 if (R.second) { 17981 for (auto *E : ED->enumerators()) { 17982 const auto &EVal = E->getInitVal(); 17983 // Only single-bit enumerators introduce new flag values. 17984 if (EVal.isPowerOf2()) 17985 FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal; 17986 } 17987 } 17988 17989 // A value is in a flag enum if either its bits are a subset of the enum's 17990 // flag bits (the first condition) or we are allowing masks and the same is 17991 // true of its complement (the second condition). When masks are allowed, we 17992 // allow the common idiom of ~(enum1 | enum2) to be a valid enum value. 17993 // 17994 // While it's true that any value could be used as a mask, the assumption is 17995 // that a mask will have all of the insignificant bits set. Anything else is 17996 // likely a logic error. 17997 llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth()); 17998 return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val)); 17999 } 18000 18001 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange, 18002 Decl *EnumDeclX, ArrayRef<Decl *> Elements, Scope *S, 18003 const ParsedAttributesView &Attrs) { 18004 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX); 18005 QualType EnumType = Context.getTypeDeclType(Enum); 18006 18007 ProcessDeclAttributeList(S, Enum, Attrs); 18008 18009 if (Enum->isDependentType()) { 18010 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 18011 EnumConstantDecl *ECD = 18012 cast_or_null<EnumConstantDecl>(Elements[i]); 18013 if (!ECD) continue; 18014 18015 ECD->setType(EnumType); 18016 } 18017 18018 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0); 18019 return; 18020 } 18021 18022 // TODO: If the result value doesn't fit in an int, it must be a long or long 18023 // long value. ISO C does not support this, but GCC does as an extension, 18024 // emit a warning. 18025 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 18026 unsigned CharWidth = Context.getTargetInfo().getCharWidth(); 18027 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); 18028 18029 // Verify that all the values are okay, compute the size of the values, and 18030 // reverse the list. 18031 unsigned NumNegativeBits = 0; 18032 unsigned NumPositiveBits = 0; 18033 18034 // Keep track of whether all elements have type int. 18035 bool AllElementsInt = true; 18036 18037 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 18038 EnumConstantDecl *ECD = 18039 cast_or_null<EnumConstantDecl>(Elements[i]); 18040 if (!ECD) continue; // Already issued a diagnostic. 18041 18042 const llvm::APSInt &InitVal = ECD->getInitVal(); 18043 18044 // Keep track of the size of positive and negative values. 18045 if (InitVal.isUnsigned() || InitVal.isNonNegative()) 18046 NumPositiveBits = std::max(NumPositiveBits, 18047 (unsigned)InitVal.getActiveBits()); 18048 else 18049 NumNegativeBits = std::max(NumNegativeBits, 18050 (unsigned)InitVal.getMinSignedBits()); 18051 18052 // Keep track of whether every enum element has type int (very common). 18053 if (AllElementsInt) 18054 AllElementsInt = ECD->getType() == Context.IntTy; 18055 } 18056 18057 // Figure out the type that should be used for this enum. 18058 QualType BestType; 18059 unsigned BestWidth; 18060 18061 // C++0x N3000 [conv.prom]p3: 18062 // An rvalue of an unscoped enumeration type whose underlying 18063 // type is not fixed can be converted to an rvalue of the first 18064 // of the following types that can represent all the values of 18065 // the enumeration: int, unsigned int, long int, unsigned long 18066 // int, long long int, or unsigned long long int. 18067 // C99 6.4.4.3p2: 18068 // An identifier declared as an enumeration constant has type int. 18069 // The C99 rule is modified by a gcc extension 18070 QualType BestPromotionType; 18071 18072 bool Packed = Enum->hasAttr<PackedAttr>(); 18073 // -fshort-enums is the equivalent to specifying the packed attribute on all 18074 // enum definitions. 18075 if (LangOpts.ShortEnums) 18076 Packed = true; 18077 18078 // If the enum already has a type because it is fixed or dictated by the 18079 // target, promote that type instead of analyzing the enumerators. 18080 if (Enum->isComplete()) { 18081 BestType = Enum->getIntegerType(); 18082 if (BestType->isPromotableIntegerType()) 18083 BestPromotionType = Context.getPromotedIntegerType(BestType); 18084 else 18085 BestPromotionType = BestType; 18086 18087 BestWidth = Context.getIntWidth(BestType); 18088 } 18089 else if (NumNegativeBits) { 18090 // If there is a negative value, figure out the smallest integer type (of 18091 // int/long/longlong) that fits. 18092 // If it's packed, check also if it fits a char or a short. 18093 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) { 18094 BestType = Context.SignedCharTy; 18095 BestWidth = CharWidth; 18096 } else if (Packed && NumNegativeBits <= ShortWidth && 18097 NumPositiveBits < ShortWidth) { 18098 BestType = Context.ShortTy; 18099 BestWidth = ShortWidth; 18100 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { 18101 BestType = Context.IntTy; 18102 BestWidth = IntWidth; 18103 } else { 18104 BestWidth = Context.getTargetInfo().getLongWidth(); 18105 18106 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { 18107 BestType = Context.LongTy; 18108 } else { 18109 BestWidth = Context.getTargetInfo().getLongLongWidth(); 18110 18111 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) 18112 Diag(Enum->getLocation(), diag::ext_enum_too_large); 18113 BestType = Context.LongLongTy; 18114 } 18115 } 18116 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); 18117 } else { 18118 // If there is no negative value, figure out the smallest type that fits 18119 // all of the enumerator values. 18120 // If it's packed, check also if it fits a char or a short. 18121 if (Packed && NumPositiveBits <= CharWidth) { 18122 BestType = Context.UnsignedCharTy; 18123 BestPromotionType = Context.IntTy; 18124 BestWidth = CharWidth; 18125 } else if (Packed && NumPositiveBits <= ShortWidth) { 18126 BestType = Context.UnsignedShortTy; 18127 BestPromotionType = Context.IntTy; 18128 BestWidth = ShortWidth; 18129 } else if (NumPositiveBits <= IntWidth) { 18130 BestType = Context.UnsignedIntTy; 18131 BestWidth = IntWidth; 18132 BestPromotionType 18133 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 18134 ? Context.UnsignedIntTy : Context.IntTy; 18135 } else if (NumPositiveBits <= 18136 (BestWidth = Context.getTargetInfo().getLongWidth())) { 18137 BestType = Context.UnsignedLongTy; 18138 BestPromotionType 18139 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 18140 ? Context.UnsignedLongTy : Context.LongTy; 18141 } else { 18142 BestWidth = Context.getTargetInfo().getLongLongWidth(); 18143 assert(NumPositiveBits <= BestWidth && 18144 "How could an initializer get larger than ULL?"); 18145 BestType = Context.UnsignedLongLongTy; 18146 BestPromotionType 18147 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 18148 ? Context.UnsignedLongLongTy : Context.LongLongTy; 18149 } 18150 } 18151 18152 // Loop over all of the enumerator constants, changing their types to match 18153 // the type of the enum if needed. 18154 for (auto *D : Elements) { 18155 auto *ECD = cast_or_null<EnumConstantDecl>(D); 18156 if (!ECD) continue; // Already issued a diagnostic. 18157 18158 // Standard C says the enumerators have int type, but we allow, as an 18159 // extension, the enumerators to be larger than int size. If each 18160 // enumerator value fits in an int, type it as an int, otherwise type it the 18161 // same as the enumerator decl itself. This means that in "enum { X = 1U }" 18162 // that X has type 'int', not 'unsigned'. 18163 18164 // Determine whether the value fits into an int. 18165 llvm::APSInt InitVal = ECD->getInitVal(); 18166 18167 // If it fits into an integer type, force it. Otherwise force it to match 18168 // the enum decl type. 18169 QualType NewTy; 18170 unsigned NewWidth; 18171 bool NewSign; 18172 if (!getLangOpts().CPlusPlus && 18173 !Enum->isFixed() && 18174 isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) { 18175 NewTy = Context.IntTy; 18176 NewWidth = IntWidth; 18177 NewSign = true; 18178 } else if (ECD->getType() == BestType) { 18179 // Already the right type! 18180 if (getLangOpts().CPlusPlus) 18181 // C++ [dcl.enum]p4: Following the closing brace of an 18182 // enum-specifier, each enumerator has the type of its 18183 // enumeration. 18184 ECD->setType(EnumType); 18185 continue; 18186 } else { 18187 NewTy = BestType; 18188 NewWidth = BestWidth; 18189 NewSign = BestType->isSignedIntegerOrEnumerationType(); 18190 } 18191 18192 // Adjust the APSInt value. 18193 InitVal = InitVal.extOrTrunc(NewWidth); 18194 InitVal.setIsSigned(NewSign); 18195 ECD->setInitVal(InitVal); 18196 18197 // Adjust the Expr initializer and type. 18198 if (ECD->getInitExpr() && 18199 !Context.hasSameType(NewTy, ECD->getInitExpr()->getType())) 18200 ECD->setInitExpr(ImplicitCastExpr::Create( 18201 Context, NewTy, CK_IntegralCast, ECD->getInitExpr(), 18202 /*base paths*/ nullptr, VK_RValue, FPOptionsOverride())); 18203 if (getLangOpts().CPlusPlus) 18204 // C++ [dcl.enum]p4: Following the closing brace of an 18205 // enum-specifier, each enumerator has the type of its 18206 // enumeration. 18207 ECD->setType(EnumType); 18208 else 18209 ECD->setType(NewTy); 18210 } 18211 18212 Enum->completeDefinition(BestType, BestPromotionType, 18213 NumPositiveBits, NumNegativeBits); 18214 18215 CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType); 18216 18217 if (Enum->isClosedFlag()) { 18218 for (Decl *D : Elements) { 18219 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D); 18220 if (!ECD) continue; // Already issued a diagnostic. 18221 18222 llvm::APSInt InitVal = ECD->getInitVal(); 18223 if (InitVal != 0 && !InitVal.isPowerOf2() && 18224 !IsValueInFlagEnum(Enum, InitVal, true)) 18225 Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range) 18226 << ECD << Enum; 18227 } 18228 } 18229 18230 // Now that the enum type is defined, ensure it's not been underaligned. 18231 if (Enum->hasAttrs()) 18232 CheckAlignasUnderalignment(Enum); 18233 } 18234 18235 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr, 18236 SourceLocation StartLoc, 18237 SourceLocation EndLoc) { 18238 StringLiteral *AsmString = cast<StringLiteral>(expr); 18239 18240 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, 18241 AsmString, StartLoc, 18242 EndLoc); 18243 CurContext->addDecl(New); 18244 return New; 18245 } 18246 18247 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name, 18248 IdentifierInfo* AliasName, 18249 SourceLocation PragmaLoc, 18250 SourceLocation NameLoc, 18251 SourceLocation AliasNameLoc) { 18252 NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, 18253 LookupOrdinaryName); 18254 AttributeCommonInfo Info(AliasName, SourceRange(AliasNameLoc), 18255 AttributeCommonInfo::AS_Pragma); 18256 AsmLabelAttr *Attr = AsmLabelAttr::CreateImplicit( 18257 Context, AliasName->getName(), /*LiteralLabel=*/true, Info); 18258 18259 // If a declaration that: 18260 // 1) declares a function or a variable 18261 // 2) has external linkage 18262 // already exists, add a label attribute to it. 18263 if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) { 18264 if (isDeclExternC(PrevDecl)) 18265 PrevDecl->addAttr(Attr); 18266 else 18267 Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied) 18268 << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl; 18269 // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers. 18270 } else 18271 (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr)); 18272 } 18273 18274 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name, 18275 SourceLocation PragmaLoc, 18276 SourceLocation NameLoc) { 18277 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName); 18278 18279 if (PrevDecl) { 18280 PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc, AttributeCommonInfo::AS_Pragma)); 18281 } else { 18282 (void)WeakUndeclaredIdentifiers.insert( 18283 std::pair<IdentifierInfo*,WeakInfo> 18284 (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc))); 18285 } 18286 } 18287 18288 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name, 18289 IdentifierInfo* AliasName, 18290 SourceLocation PragmaLoc, 18291 SourceLocation NameLoc, 18292 SourceLocation AliasNameLoc) { 18293 Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc, 18294 LookupOrdinaryName); 18295 WeakInfo W = WeakInfo(Name, NameLoc); 18296 18297 if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) { 18298 if (!PrevDecl->hasAttr<AliasAttr>()) 18299 if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl)) 18300 DeclApplyPragmaWeak(TUScope, ND, W); 18301 } else { 18302 (void)WeakUndeclaredIdentifiers.insert( 18303 std::pair<IdentifierInfo*,WeakInfo>(AliasName, W)); 18304 } 18305 } 18306 18307 Decl *Sema::getObjCDeclContext() const { 18308 return (dyn_cast_or_null<ObjCContainerDecl>(CurContext)); 18309 } 18310 18311 Sema::FunctionEmissionStatus Sema::getEmissionStatus(FunctionDecl *FD, 18312 bool Final) { 18313 // SYCL functions can be template, so we check if they have appropriate 18314 // attribute prior to checking if it is a template. 18315 if (LangOpts.SYCLIsDevice && FD->hasAttr<SYCLKernelAttr>()) 18316 return FunctionEmissionStatus::Emitted; 18317 18318 // Templates are emitted when they're instantiated. 18319 if (FD->isDependentContext()) 18320 return FunctionEmissionStatus::TemplateDiscarded; 18321 18322 FunctionEmissionStatus OMPES = FunctionEmissionStatus::Unknown; 18323 if (LangOpts.OpenMPIsDevice) { 18324 Optional<OMPDeclareTargetDeclAttr::DevTypeTy> DevTy = 18325 OMPDeclareTargetDeclAttr::getDeviceType(FD->getCanonicalDecl()); 18326 if (DevTy.hasValue()) { 18327 if (*DevTy == OMPDeclareTargetDeclAttr::DT_Host) 18328 OMPES = FunctionEmissionStatus::OMPDiscarded; 18329 else if (*DevTy == OMPDeclareTargetDeclAttr::DT_NoHost || 18330 *DevTy == OMPDeclareTargetDeclAttr::DT_Any) { 18331 OMPES = FunctionEmissionStatus::Emitted; 18332 } 18333 } 18334 } else if (LangOpts.OpenMP) { 18335 // In OpenMP 4.5 all the functions are host functions. 18336 if (LangOpts.OpenMP <= 45) { 18337 OMPES = FunctionEmissionStatus::Emitted; 18338 } else { 18339 Optional<OMPDeclareTargetDeclAttr::DevTypeTy> DevTy = 18340 OMPDeclareTargetDeclAttr::getDeviceType(FD->getCanonicalDecl()); 18341 // In OpenMP 5.0 or above, DevTy may be changed later by 18342 // #pragma omp declare target to(*) device_type(*). Therefore DevTy 18343 // having no value does not imply host. The emission status will be 18344 // checked again at the end of compilation unit. 18345 if (DevTy.hasValue()) { 18346 if (*DevTy == OMPDeclareTargetDeclAttr::DT_NoHost) { 18347 OMPES = FunctionEmissionStatus::OMPDiscarded; 18348 } else if (*DevTy == OMPDeclareTargetDeclAttr::DT_Host || 18349 *DevTy == OMPDeclareTargetDeclAttr::DT_Any) 18350 OMPES = FunctionEmissionStatus::Emitted; 18351 } else if (Final) 18352 OMPES = FunctionEmissionStatus::Emitted; 18353 } 18354 } 18355 if (OMPES == FunctionEmissionStatus::OMPDiscarded || 18356 (OMPES == FunctionEmissionStatus::Emitted && !LangOpts.CUDA)) 18357 return OMPES; 18358 18359 if (LangOpts.CUDA) { 18360 // When compiling for device, host functions are never emitted. Similarly, 18361 // when compiling for host, device and global functions are never emitted. 18362 // (Technically, we do emit a host-side stub for global functions, but this 18363 // doesn't count for our purposes here.) 18364 Sema::CUDAFunctionTarget T = IdentifyCUDATarget(FD); 18365 if (LangOpts.CUDAIsDevice && T == Sema::CFT_Host) 18366 return FunctionEmissionStatus::CUDADiscarded; 18367 if (!LangOpts.CUDAIsDevice && 18368 (T == Sema::CFT_Device || T == Sema::CFT_Global)) 18369 return FunctionEmissionStatus::CUDADiscarded; 18370 18371 // Check whether this function is externally visible -- if so, it's 18372 // known-emitted. 18373 // 18374 // We have to check the GVA linkage of the function's *definition* -- if we 18375 // only have a declaration, we don't know whether or not the function will 18376 // be emitted, because (say) the definition could include "inline". 18377 FunctionDecl *Def = FD->getDefinition(); 18378 18379 if (Def && 18380 !isDiscardableGVALinkage(getASTContext().GetGVALinkageForFunction(Def)) 18381 && (!LangOpts.OpenMP || OMPES == FunctionEmissionStatus::Emitted)) 18382 return FunctionEmissionStatus::Emitted; 18383 } 18384 18385 // Otherwise, the function is known-emitted if it's in our set of 18386 // known-emitted functions. 18387 return FunctionEmissionStatus::Unknown; 18388 } 18389 18390 bool Sema::shouldIgnoreInHostDeviceCheck(FunctionDecl *Callee) { 18391 // Host-side references to a __global__ function refer to the stub, so the 18392 // function itself is never emitted and therefore should not be marked. 18393 // If we have host fn calls kernel fn calls host+device, the HD function 18394 // does not get instantiated on the host. We model this by omitting at the 18395 // call to the kernel from the callgraph. This ensures that, when compiling 18396 // for host, only HD functions actually called from the host get marked as 18397 // known-emitted. 18398 return LangOpts.CUDA && !LangOpts.CUDAIsDevice && 18399 IdentifyCUDATarget(Callee) == CFT_Global; 18400 } 18401