1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements semantic analysis for declarations. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "TypeLocBuilder.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/ASTLambda.h" 18 #include "clang/AST/CXXInheritance.h" 19 #include "clang/AST/CharUnits.h" 20 #include "clang/AST/CommentDiagnostic.h" 21 #include "clang/AST/DeclCXX.h" 22 #include "clang/AST/DeclObjC.h" 23 #include "clang/AST/DeclTemplate.h" 24 #include "clang/AST/EvaluatedExprVisitor.h" 25 #include "clang/AST/ExprCXX.h" 26 #include "clang/AST/StmtCXX.h" 27 #include "clang/Basic/Builtins.h" 28 #include "clang/Basic/PartialDiagnostic.h" 29 #include "clang/Basic/SourceManager.h" 30 #include "clang/Basic/TargetInfo.h" 31 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex 32 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering. 33 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex 34 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled() 35 #include "clang/Sema/CXXFieldCollector.h" 36 #include "clang/Sema/DeclSpec.h" 37 #include "clang/Sema/DelayedDiagnostic.h" 38 #include "clang/Sema/Initialization.h" 39 #include "clang/Sema/Lookup.h" 40 #include "clang/Sema/ParsedTemplate.h" 41 #include "clang/Sema/Scope.h" 42 #include "clang/Sema/ScopeInfo.h" 43 #include "clang/Sema/SemaInternal.h" 44 #include "clang/Sema/Template.h" 45 #include "llvm/ADT/SmallString.h" 46 #include "llvm/ADT/Triple.h" 47 #include <algorithm> 48 #include <cstring> 49 #include <functional> 50 51 using namespace clang; 52 using namespace sema; 53 54 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) { 55 if (OwnedType) { 56 Decl *Group[2] = { OwnedType, Ptr }; 57 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2)); 58 } 59 60 return DeclGroupPtrTy::make(DeclGroupRef(Ptr)); 61 } 62 63 namespace { 64 65 class TypeNameValidatorCCC : public CorrectionCandidateCallback { 66 public: 67 TypeNameValidatorCCC(bool AllowInvalid, bool WantClass = false, 68 bool AllowTemplates = false, 69 bool AllowNonTemplates = true) 70 : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass), 71 AllowTemplates(AllowTemplates), AllowNonTemplates(AllowNonTemplates) { 72 WantExpressionKeywords = false; 73 WantCXXNamedCasts = false; 74 WantRemainingKeywords = false; 75 } 76 77 bool ValidateCandidate(const TypoCorrection &candidate) override { 78 if (NamedDecl *ND = candidate.getCorrectionDecl()) { 79 if (!AllowInvalidDecl && ND->isInvalidDecl()) 80 return false; 81 82 if (getAsTypeTemplateDecl(ND)) 83 return AllowTemplates; 84 85 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND); 86 if (!IsType) 87 return false; 88 89 if (AllowNonTemplates) 90 return true; 91 92 // An injected-class-name of a class template (specialization) is valid 93 // as a template or as a non-template. 94 if (AllowTemplates) { 95 auto *RD = dyn_cast<CXXRecordDecl>(ND); 96 if (!RD || !RD->isInjectedClassName()) 97 return false; 98 RD = cast<CXXRecordDecl>(RD->getDeclContext()); 99 return RD->getDescribedClassTemplate() || 100 isa<ClassTemplateSpecializationDecl>(RD); 101 } 102 103 return false; 104 } 105 106 return !WantClassName && candidate.isKeyword(); 107 } 108 109 private: 110 bool AllowInvalidDecl; 111 bool WantClassName; 112 bool AllowTemplates; 113 bool AllowNonTemplates; 114 }; 115 116 } // end anonymous namespace 117 118 /// \brief Determine whether the token kind starts a simple-type-specifier. 119 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const { 120 switch (Kind) { 121 // FIXME: Take into account the current language when deciding whether a 122 // token kind is a valid type specifier 123 case tok::kw_short: 124 case tok::kw_long: 125 case tok::kw___int64: 126 case tok::kw___int128: 127 case tok::kw_signed: 128 case tok::kw_unsigned: 129 case tok::kw_void: 130 case tok::kw_char: 131 case tok::kw_int: 132 case tok::kw_half: 133 case tok::kw_float: 134 case tok::kw_double: 135 case tok::kw__Float16: 136 case tok::kw___float128: 137 case tok::kw_wchar_t: 138 case tok::kw_bool: 139 case tok::kw___underlying_type: 140 case tok::kw___auto_type: 141 return true; 142 143 case tok::annot_typename: 144 case tok::kw_char16_t: 145 case tok::kw_char32_t: 146 case tok::kw_typeof: 147 case tok::annot_decltype: 148 case tok::kw_decltype: 149 return getLangOpts().CPlusPlus; 150 151 default: 152 break; 153 } 154 155 return false; 156 } 157 158 namespace { 159 enum class UnqualifiedTypeNameLookupResult { 160 NotFound, 161 FoundNonType, 162 FoundType 163 }; 164 } // end anonymous namespace 165 166 /// \brief Tries to perform unqualified lookup of the type decls in bases for 167 /// dependent class. 168 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a 169 /// type decl, \a FoundType if only type decls are found. 170 static UnqualifiedTypeNameLookupResult 171 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II, 172 SourceLocation NameLoc, 173 const CXXRecordDecl *RD) { 174 if (!RD->hasDefinition()) 175 return UnqualifiedTypeNameLookupResult::NotFound; 176 // Look for type decls in base classes. 177 UnqualifiedTypeNameLookupResult FoundTypeDecl = 178 UnqualifiedTypeNameLookupResult::NotFound; 179 for (const auto &Base : RD->bases()) { 180 const CXXRecordDecl *BaseRD = nullptr; 181 if (auto *BaseTT = Base.getType()->getAs<TagType>()) 182 BaseRD = BaseTT->getAsCXXRecordDecl(); 183 else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) { 184 // Look for type decls in dependent base classes that have known primary 185 // templates. 186 if (!TST || !TST->isDependentType()) 187 continue; 188 auto *TD = TST->getTemplateName().getAsTemplateDecl(); 189 if (!TD) 190 continue; 191 if (auto *BasePrimaryTemplate = 192 dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl())) { 193 if (BasePrimaryTemplate->getCanonicalDecl() != RD->getCanonicalDecl()) 194 BaseRD = BasePrimaryTemplate; 195 else if (auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) { 196 if (const ClassTemplatePartialSpecializationDecl *PS = 197 CTD->findPartialSpecialization(Base.getType())) 198 if (PS->getCanonicalDecl() != RD->getCanonicalDecl()) 199 BaseRD = PS; 200 } 201 } 202 } 203 if (BaseRD) { 204 for (NamedDecl *ND : BaseRD->lookup(&II)) { 205 if (!isa<TypeDecl>(ND)) 206 return UnqualifiedTypeNameLookupResult::FoundNonType; 207 FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType; 208 } 209 if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) { 210 switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) { 211 case UnqualifiedTypeNameLookupResult::FoundNonType: 212 return UnqualifiedTypeNameLookupResult::FoundNonType; 213 case UnqualifiedTypeNameLookupResult::FoundType: 214 FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType; 215 break; 216 case UnqualifiedTypeNameLookupResult::NotFound: 217 break; 218 } 219 } 220 } 221 } 222 223 return FoundTypeDecl; 224 } 225 226 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S, 227 const IdentifierInfo &II, 228 SourceLocation NameLoc) { 229 // Lookup in the parent class template context, if any. 230 const CXXRecordDecl *RD = nullptr; 231 UnqualifiedTypeNameLookupResult FoundTypeDecl = 232 UnqualifiedTypeNameLookupResult::NotFound; 233 for (DeclContext *DC = S.CurContext; 234 DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound; 235 DC = DC->getParent()) { 236 // Look for type decls in dependent base classes that have known primary 237 // templates. 238 RD = dyn_cast<CXXRecordDecl>(DC); 239 if (RD && RD->getDescribedClassTemplate()) 240 FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD); 241 } 242 if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType) 243 return nullptr; 244 245 // We found some types in dependent base classes. Recover as if the user 246 // wrote 'typename MyClass::II' instead of 'II'. We'll fully resolve the 247 // lookup during template instantiation. 248 S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II; 249 250 ASTContext &Context = S.Context; 251 auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false, 252 cast<Type>(Context.getRecordType(RD))); 253 QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II); 254 255 CXXScopeSpec SS; 256 SS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 257 258 TypeLocBuilder Builder; 259 DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T); 260 DepTL.setNameLoc(NameLoc); 261 DepTL.setElaboratedKeywordLoc(SourceLocation()); 262 DepTL.setQualifierLoc(SS.getWithLocInContext(Context)); 263 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 264 } 265 266 /// \brief If the identifier refers to a type name within this scope, 267 /// return the declaration of that type. 268 /// 269 /// This routine performs ordinary name lookup of the identifier II 270 /// within the given scope, with optional C++ scope specifier SS, to 271 /// determine whether the name refers to a type. If so, returns an 272 /// opaque pointer (actually a QualType) corresponding to that 273 /// type. Otherwise, returns NULL. 274 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, 275 Scope *S, CXXScopeSpec *SS, 276 bool isClassName, bool HasTrailingDot, 277 ParsedType ObjectTypePtr, 278 bool IsCtorOrDtorName, 279 bool WantNontrivialTypeSourceInfo, 280 bool IsClassTemplateDeductionContext, 281 IdentifierInfo **CorrectedII) { 282 // FIXME: Consider allowing this outside C++1z mode as an extension. 283 bool AllowDeducedTemplate = IsClassTemplateDeductionContext && 284 getLangOpts().CPlusPlus17 && !IsCtorOrDtorName && 285 !isClassName && !HasTrailingDot; 286 287 // Determine where we will perform name lookup. 288 DeclContext *LookupCtx = nullptr; 289 if (ObjectTypePtr) { 290 QualType ObjectType = ObjectTypePtr.get(); 291 if (ObjectType->isRecordType()) 292 LookupCtx = computeDeclContext(ObjectType); 293 } else if (SS && SS->isNotEmpty()) { 294 LookupCtx = computeDeclContext(*SS, false); 295 296 if (!LookupCtx) { 297 if (isDependentScopeSpecifier(*SS)) { 298 // C++ [temp.res]p3: 299 // A qualified-id that refers to a type and in which the 300 // nested-name-specifier depends on a template-parameter (14.6.2) 301 // shall be prefixed by the keyword typename to indicate that the 302 // qualified-id denotes a type, forming an 303 // elaborated-type-specifier (7.1.5.3). 304 // 305 // We therefore do not perform any name lookup if the result would 306 // refer to a member of an unknown specialization. 307 if (!isClassName && !IsCtorOrDtorName) 308 return nullptr; 309 310 // We know from the grammar that this name refers to a type, 311 // so build a dependent node to describe the type. 312 if (WantNontrivialTypeSourceInfo) 313 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get(); 314 315 NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context); 316 QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc, 317 II, NameLoc); 318 return ParsedType::make(T); 319 } 320 321 return nullptr; 322 } 323 324 if (!LookupCtx->isDependentContext() && 325 RequireCompleteDeclContext(*SS, LookupCtx)) 326 return nullptr; 327 } 328 329 // FIXME: LookupNestedNameSpecifierName isn't the right kind of 330 // lookup for class-names. 331 LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName : 332 LookupOrdinaryName; 333 LookupResult Result(*this, &II, NameLoc, Kind); 334 if (LookupCtx) { 335 // Perform "qualified" name lookup into the declaration context we 336 // computed, which is either the type of the base of a member access 337 // expression or the declaration context associated with a prior 338 // nested-name-specifier. 339 LookupQualifiedName(Result, LookupCtx); 340 341 if (ObjectTypePtr && Result.empty()) { 342 // C++ [basic.lookup.classref]p3: 343 // If the unqualified-id is ~type-name, the type-name is looked up 344 // in the context of the entire postfix-expression. If the type T of 345 // the object expression is of a class type C, the type-name is also 346 // looked up in the scope of class C. At least one of the lookups shall 347 // find a name that refers to (possibly cv-qualified) T. 348 LookupName(Result, S); 349 } 350 } else { 351 // Perform unqualified name lookup. 352 LookupName(Result, S); 353 354 // For unqualified lookup in a class template in MSVC mode, look into 355 // dependent base classes where the primary class template is known. 356 if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) { 357 if (ParsedType TypeInBase = 358 recoverFromTypeInKnownDependentBase(*this, II, NameLoc)) 359 return TypeInBase; 360 } 361 } 362 363 NamedDecl *IIDecl = nullptr; 364 switch (Result.getResultKind()) { 365 case LookupResult::NotFound: 366 case LookupResult::NotFoundInCurrentInstantiation: 367 if (CorrectedII) { 368 TypoCorrection Correction = 369 CorrectTypo(Result.getLookupNameInfo(), Kind, S, SS, 370 llvm::make_unique<TypeNameValidatorCCC>( 371 true, isClassName, AllowDeducedTemplate), 372 CTK_ErrorRecovery); 373 IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo(); 374 TemplateTy Template; 375 bool MemberOfUnknownSpecialization; 376 UnqualifiedId TemplateName; 377 TemplateName.setIdentifier(NewII, NameLoc); 378 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier(); 379 CXXScopeSpec NewSS, *NewSSPtr = SS; 380 if (SS && NNS) { 381 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 382 NewSSPtr = &NewSS; 383 } 384 if (Correction && (NNS || NewII != &II) && 385 // Ignore a correction to a template type as the to-be-corrected 386 // identifier is not a template (typo correction for template names 387 // is handled elsewhere). 388 !(getLangOpts().CPlusPlus && NewSSPtr && 389 isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false, 390 Template, MemberOfUnknownSpecialization))) { 391 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr, 392 isClassName, HasTrailingDot, ObjectTypePtr, 393 IsCtorOrDtorName, 394 WantNontrivialTypeSourceInfo, 395 IsClassTemplateDeductionContext); 396 if (Ty) { 397 diagnoseTypo(Correction, 398 PDiag(diag::err_unknown_type_or_class_name_suggest) 399 << Result.getLookupName() << isClassName); 400 if (SS && NNS) 401 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc)); 402 *CorrectedII = NewII; 403 return Ty; 404 } 405 } 406 } 407 // If typo correction failed or was not performed, fall through 408 LLVM_FALLTHROUGH; 409 case LookupResult::FoundOverloaded: 410 case LookupResult::FoundUnresolvedValue: 411 Result.suppressDiagnostics(); 412 return nullptr; 413 414 case LookupResult::Ambiguous: 415 // Recover from type-hiding ambiguities by hiding the type. We'll 416 // do the lookup again when looking for an object, and we can 417 // diagnose the error then. If we don't do this, then the error 418 // about hiding the type will be immediately followed by an error 419 // that only makes sense if the identifier was treated like a type. 420 if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) { 421 Result.suppressDiagnostics(); 422 return nullptr; 423 } 424 425 // Look to see if we have a type anywhere in the list of results. 426 for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end(); 427 Res != ResEnd; ++Res) { 428 if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res) || 429 (AllowDeducedTemplate && getAsTypeTemplateDecl(*Res))) { 430 if (!IIDecl || 431 (*Res)->getLocation().getRawEncoding() < 432 IIDecl->getLocation().getRawEncoding()) 433 IIDecl = *Res; 434 } 435 } 436 437 if (!IIDecl) { 438 // None of the entities we found is a type, so there is no way 439 // to even assume that the result is a type. In this case, don't 440 // complain about the ambiguity. The parser will either try to 441 // perform this lookup again (e.g., as an object name), which 442 // will produce the ambiguity, or will complain that it expected 443 // a type name. 444 Result.suppressDiagnostics(); 445 return nullptr; 446 } 447 448 // We found a type within the ambiguous lookup; diagnose the 449 // ambiguity and then return that type. This might be the right 450 // answer, or it might not be, but it suppresses any attempt to 451 // perform the name lookup again. 452 break; 453 454 case LookupResult::Found: 455 IIDecl = Result.getFoundDecl(); 456 break; 457 } 458 459 assert(IIDecl && "Didn't find decl"); 460 461 QualType T; 462 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) { 463 // C++ [class.qual]p2: A lookup that would find the injected-class-name 464 // instead names the constructors of the class, except when naming a class. 465 // This is ill-formed when we're not actually forming a ctor or dtor name. 466 auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx); 467 auto *FoundRD = dyn_cast<CXXRecordDecl>(TD); 468 if (!isClassName && !IsCtorOrDtorName && LookupRD && FoundRD && 469 FoundRD->isInjectedClassName() && 470 declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent()))) 471 Diag(NameLoc, diag::err_out_of_line_qualified_id_type_names_constructor) 472 << &II << /*Type*/1; 473 474 DiagnoseUseOfDecl(IIDecl, NameLoc); 475 476 T = Context.getTypeDeclType(TD); 477 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false); 478 } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) { 479 (void)DiagnoseUseOfDecl(IDecl, NameLoc); 480 if (!HasTrailingDot) 481 T = Context.getObjCInterfaceType(IDecl); 482 } else if (AllowDeducedTemplate) { 483 if (auto *TD = getAsTypeTemplateDecl(IIDecl)) 484 T = Context.getDeducedTemplateSpecializationType(TemplateName(TD), 485 QualType(), false); 486 } 487 488 if (T.isNull()) { 489 // If it's not plausibly a type, suppress diagnostics. 490 Result.suppressDiagnostics(); 491 return nullptr; 492 } 493 494 // NOTE: avoid constructing an ElaboratedType(Loc) if this is a 495 // constructor or destructor name (in such a case, the scope specifier 496 // will be attached to the enclosing Expr or Decl node). 497 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName && 498 !isa<ObjCInterfaceDecl>(IIDecl)) { 499 if (WantNontrivialTypeSourceInfo) { 500 // Construct a type with type-source information. 501 TypeLocBuilder Builder; 502 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 503 504 T = getElaboratedType(ETK_None, *SS, T); 505 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 506 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 507 ElabTL.setQualifierLoc(SS->getWithLocInContext(Context)); 508 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 509 } else { 510 T = getElaboratedType(ETK_None, *SS, T); 511 } 512 } 513 514 return ParsedType::make(T); 515 } 516 517 // Builds a fake NNS for the given decl context. 518 static NestedNameSpecifier * 519 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) { 520 for (;; DC = DC->getLookupParent()) { 521 DC = DC->getPrimaryContext(); 522 auto *ND = dyn_cast<NamespaceDecl>(DC); 523 if (ND && !ND->isInline() && !ND->isAnonymousNamespace()) 524 return NestedNameSpecifier::Create(Context, nullptr, ND); 525 else if (auto *RD = dyn_cast<CXXRecordDecl>(DC)) 526 return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(), 527 RD->getTypeForDecl()); 528 else if (isa<TranslationUnitDecl>(DC)) 529 return NestedNameSpecifier::GlobalSpecifier(Context); 530 } 531 llvm_unreachable("something isn't in TU scope?"); 532 } 533 534 /// Find the parent class with dependent bases of the innermost enclosing method 535 /// context. Do not look for enclosing CXXRecordDecls directly, or we will end 536 /// up allowing unqualified dependent type names at class-level, which MSVC 537 /// correctly rejects. 538 static const CXXRecordDecl * 539 findRecordWithDependentBasesOfEnclosingMethod(const DeclContext *DC) { 540 for (; DC && DC->isDependentContext(); DC = DC->getLookupParent()) { 541 DC = DC->getPrimaryContext(); 542 if (const auto *MD = dyn_cast<CXXMethodDecl>(DC)) 543 if (MD->getParent()->hasAnyDependentBases()) 544 return MD->getParent(); 545 } 546 return nullptr; 547 } 548 549 ParsedType Sema::ActOnMSVCUnknownTypeName(const IdentifierInfo &II, 550 SourceLocation NameLoc, 551 bool IsTemplateTypeArg) { 552 assert(getLangOpts().MSVCCompat && "shouldn't be called in non-MSVC mode"); 553 554 NestedNameSpecifier *NNS = nullptr; 555 if (IsTemplateTypeArg && getCurScope()->isTemplateParamScope()) { 556 // If we weren't able to parse a default template argument, delay lookup 557 // until instantiation time by making a non-dependent DependentTypeName. We 558 // pretend we saw a NestedNameSpecifier referring to the current scope, and 559 // lookup is retried. 560 // FIXME: This hurts our diagnostic quality, since we get errors like "no 561 // type named 'Foo' in 'current_namespace'" when the user didn't write any 562 // name specifiers. 563 NNS = synthesizeCurrentNestedNameSpecifier(Context, CurContext); 564 Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II; 565 } else if (const CXXRecordDecl *RD = 566 findRecordWithDependentBasesOfEnclosingMethod(CurContext)) { 567 // Build a DependentNameType that will perform lookup into RD at 568 // instantiation time. 569 NNS = NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(), 570 RD->getTypeForDecl()); 571 572 // Diagnose that this identifier was undeclared, and retry the lookup during 573 // template instantiation. 574 Diag(NameLoc, diag::ext_undeclared_unqual_id_with_dependent_base) << &II 575 << RD; 576 } else { 577 // This is not a situation that we should recover from. 578 return ParsedType(); 579 } 580 581 QualType T = Context.getDependentNameType(ETK_None, NNS, &II); 582 583 // Build type location information. We synthesized the qualifier, so we have 584 // to build a fake NestedNameSpecifierLoc. 585 NestedNameSpecifierLocBuilder NNSLocBuilder; 586 NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 587 NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context); 588 589 TypeLocBuilder Builder; 590 DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T); 591 DepTL.setNameLoc(NameLoc); 592 DepTL.setElaboratedKeywordLoc(SourceLocation()); 593 DepTL.setQualifierLoc(QualifierLoc); 594 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 595 } 596 597 /// isTagName() - This method is called *for error recovery purposes only* 598 /// to determine if the specified name is a valid tag name ("struct foo"). If 599 /// so, this returns the TST for the tag corresponding to it (TST_enum, 600 /// TST_union, TST_struct, TST_interface, TST_class). This is used to diagnose 601 /// cases in C where the user forgot to specify the tag. 602 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) { 603 // Do a tag name lookup in this scope. 604 LookupResult R(*this, &II, SourceLocation(), LookupTagName); 605 LookupName(R, S, false); 606 R.suppressDiagnostics(); 607 if (R.getResultKind() == LookupResult::Found) 608 if (const TagDecl *TD = R.getAsSingle<TagDecl>()) { 609 switch (TD->getTagKind()) { 610 case TTK_Struct: return DeclSpec::TST_struct; 611 case TTK_Interface: return DeclSpec::TST_interface; 612 case TTK_Union: return DeclSpec::TST_union; 613 case TTK_Class: return DeclSpec::TST_class; 614 case TTK_Enum: return DeclSpec::TST_enum; 615 } 616 } 617 618 return DeclSpec::TST_unspecified; 619 } 620 621 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope, 622 /// if a CXXScopeSpec's type is equal to the type of one of the base classes 623 /// then downgrade the missing typename error to a warning. 624 /// This is needed for MSVC compatibility; Example: 625 /// @code 626 /// template<class T> class A { 627 /// public: 628 /// typedef int TYPE; 629 /// }; 630 /// template<class T> class B : public A<T> { 631 /// public: 632 /// A<T>::TYPE a; // no typename required because A<T> is a base class. 633 /// }; 634 /// @endcode 635 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) { 636 if (CurContext->isRecord()) { 637 if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super) 638 return true; 639 640 const Type *Ty = SS->getScopeRep()->getAsType(); 641 642 CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext); 643 for (const auto &Base : RD->bases()) 644 if (Ty && Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType())) 645 return true; 646 return S->isFunctionPrototypeScope(); 647 } 648 return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope(); 649 } 650 651 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II, 652 SourceLocation IILoc, 653 Scope *S, 654 CXXScopeSpec *SS, 655 ParsedType &SuggestedType, 656 bool IsTemplateName) { 657 // Don't report typename errors for editor placeholders. 658 if (II->isEditorPlaceholder()) 659 return; 660 // We don't have anything to suggest (yet). 661 SuggestedType = nullptr; 662 663 // There may have been a typo in the name of the type. Look up typo 664 // results, in case we have something that we can suggest. 665 if (TypoCorrection Corrected = 666 CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS, 667 llvm::make_unique<TypeNameValidatorCCC>( 668 false, false, IsTemplateName, !IsTemplateName), 669 CTK_ErrorRecovery)) { 670 // FIXME: Support error recovery for the template-name case. 671 bool CanRecover = !IsTemplateName; 672 if (Corrected.isKeyword()) { 673 // We corrected to a keyword. 674 diagnoseTypo(Corrected, 675 PDiag(IsTemplateName ? diag::err_no_template_suggest 676 : diag::err_unknown_typename_suggest) 677 << II); 678 II = Corrected.getCorrectionAsIdentifierInfo(); 679 } else { 680 // We found a similarly-named type or interface; suggest that. 681 if (!SS || !SS->isSet()) { 682 diagnoseTypo(Corrected, 683 PDiag(IsTemplateName ? diag::err_no_template_suggest 684 : diag::err_unknown_typename_suggest) 685 << II, CanRecover); 686 } else if (DeclContext *DC = computeDeclContext(*SS, false)) { 687 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 688 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 689 II->getName().equals(CorrectedStr); 690 diagnoseTypo(Corrected, 691 PDiag(IsTemplateName 692 ? diag::err_no_member_template_suggest 693 : diag::err_unknown_nested_typename_suggest) 694 << II << DC << DroppedSpecifier << SS->getRange(), 695 CanRecover); 696 } else { 697 llvm_unreachable("could not have corrected a typo here"); 698 } 699 700 if (!CanRecover) 701 return; 702 703 CXXScopeSpec tmpSS; 704 if (Corrected.getCorrectionSpecifier()) 705 tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(), 706 SourceRange(IILoc)); 707 // FIXME: Support class template argument deduction here. 708 SuggestedType = 709 getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S, 710 tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr, 711 /*IsCtorOrDtorName=*/false, 712 /*NonTrivialTypeSourceInfo=*/true); 713 } 714 return; 715 } 716 717 if (getLangOpts().CPlusPlus && !IsTemplateName) { 718 // See if II is a class template that the user forgot to pass arguments to. 719 UnqualifiedId Name; 720 Name.setIdentifier(II, IILoc); 721 CXXScopeSpec EmptySS; 722 TemplateTy TemplateResult; 723 bool MemberOfUnknownSpecialization; 724 if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false, 725 Name, nullptr, true, TemplateResult, 726 MemberOfUnknownSpecialization) == TNK_Type_template) { 727 TemplateName TplName = TemplateResult.get(); 728 Diag(IILoc, diag::err_template_missing_args) 729 << (int)getTemplateNameKindForDiagnostics(TplName) << TplName; 730 if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) { 731 Diag(TplDecl->getLocation(), diag::note_template_decl_here) 732 << TplDecl->getTemplateParameters()->getSourceRange(); 733 } 734 return; 735 } 736 } 737 738 // FIXME: Should we move the logic that tries to recover from a missing tag 739 // (struct, union, enum) from Parser::ParseImplicitInt here, instead? 740 741 if (!SS || (!SS->isSet() && !SS->isInvalid())) 742 Diag(IILoc, IsTemplateName ? diag::err_no_template 743 : diag::err_unknown_typename) 744 << II; 745 else if (DeclContext *DC = computeDeclContext(*SS, false)) 746 Diag(IILoc, IsTemplateName ? diag::err_no_member_template 747 : diag::err_typename_nested_not_found) 748 << II << DC << SS->getRange(); 749 else if (isDependentScopeSpecifier(*SS)) { 750 unsigned DiagID = diag::err_typename_missing; 751 if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S)) 752 DiagID = diag::ext_typename_missing; 753 754 Diag(SS->getRange().getBegin(), DiagID) 755 << SS->getScopeRep() << II->getName() 756 << SourceRange(SS->getRange().getBegin(), IILoc) 757 << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename "); 758 SuggestedType = ActOnTypenameType(S, SourceLocation(), 759 *SS, *II, IILoc).get(); 760 } else { 761 assert(SS && SS->isInvalid() && 762 "Invalid scope specifier has already been diagnosed"); 763 } 764 } 765 766 /// \brief Determine whether the given result set contains either a type name 767 /// or 768 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) { 769 bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus && 770 NextToken.is(tok::less); 771 772 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) { 773 if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I)) 774 return true; 775 776 if (CheckTemplate && isa<TemplateDecl>(*I)) 777 return true; 778 } 779 780 return false; 781 } 782 783 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result, 784 Scope *S, CXXScopeSpec &SS, 785 IdentifierInfo *&Name, 786 SourceLocation NameLoc) { 787 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName); 788 SemaRef.LookupParsedName(R, S, &SS); 789 if (TagDecl *Tag = R.getAsSingle<TagDecl>()) { 790 StringRef FixItTagName; 791 switch (Tag->getTagKind()) { 792 case TTK_Class: 793 FixItTagName = "class "; 794 break; 795 796 case TTK_Enum: 797 FixItTagName = "enum "; 798 break; 799 800 case TTK_Struct: 801 FixItTagName = "struct "; 802 break; 803 804 case TTK_Interface: 805 FixItTagName = "__interface "; 806 break; 807 808 case TTK_Union: 809 FixItTagName = "union "; 810 break; 811 } 812 813 StringRef TagName = FixItTagName.drop_back(); 814 SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag) 815 << Name << TagName << SemaRef.getLangOpts().CPlusPlus 816 << FixItHint::CreateInsertion(NameLoc, FixItTagName); 817 818 for (LookupResult::iterator I = Result.begin(), IEnd = Result.end(); 819 I != IEnd; ++I) 820 SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type) 821 << Name << TagName; 822 823 // Replace lookup results with just the tag decl. 824 Result.clear(Sema::LookupTagName); 825 SemaRef.LookupParsedName(Result, S, &SS); 826 return true; 827 } 828 829 return false; 830 } 831 832 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier. 833 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS, 834 QualType T, SourceLocation NameLoc) { 835 ASTContext &Context = S.Context; 836 837 TypeLocBuilder Builder; 838 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 839 840 T = S.getElaboratedType(ETK_None, SS, T); 841 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 842 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 843 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context)); 844 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 845 } 846 847 Sema::NameClassification 848 Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name, 849 SourceLocation NameLoc, const Token &NextToken, 850 bool IsAddressOfOperand, 851 std::unique_ptr<CorrectionCandidateCallback> CCC) { 852 DeclarationNameInfo NameInfo(Name, NameLoc); 853 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 854 855 if (NextToken.is(tok::coloncolon)) { 856 NestedNameSpecInfo IdInfo(Name, NameLoc, NextToken.getLocation()); 857 BuildCXXNestedNameSpecifier(S, IdInfo, false, SS, nullptr, false); 858 } else if (getLangOpts().CPlusPlus && SS.isSet() && 859 isCurrentClassName(*Name, S, &SS)) { 860 // Per [class.qual]p2, this names the constructors of SS, not the 861 // injected-class-name. We don't have a classification for that. 862 // There's not much point caching this result, since the parser 863 // will reject it later. 864 return NameClassification::Unknown(); 865 } 866 867 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); 868 LookupParsedName(Result, S, &SS, !CurMethod); 869 870 // For unqualified lookup in a class template in MSVC mode, look into 871 // dependent base classes where the primary class template is known. 872 if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) { 873 if (ParsedType TypeInBase = 874 recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc)) 875 return TypeInBase; 876 } 877 878 // Perform lookup for Objective-C instance variables (including automatically 879 // synthesized instance variables), if we're in an Objective-C method. 880 // FIXME: This lookup really, really needs to be folded in to the normal 881 // unqualified lookup mechanism. 882 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) { 883 ExprResult E = LookupInObjCMethod(Result, S, Name, true); 884 if (E.get() || E.isInvalid()) 885 return E; 886 } 887 888 bool SecondTry = false; 889 bool IsFilteredTemplateName = false; 890 891 Corrected: 892 switch (Result.getResultKind()) { 893 case LookupResult::NotFound: 894 // If an unqualified-id is followed by a '(', then we have a function 895 // call. 896 if (!SS.isSet() && NextToken.is(tok::l_paren)) { 897 // In C++, this is an ADL-only call. 898 // FIXME: Reference? 899 if (getLangOpts().CPlusPlus) 900 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true); 901 902 // C90 6.3.2.2: 903 // If the expression that precedes the parenthesized argument list in a 904 // function call consists solely of an identifier, and if no 905 // declaration is visible for this identifier, the identifier is 906 // implicitly declared exactly as if, in the innermost block containing 907 // the function call, the declaration 908 // 909 // extern int identifier (); 910 // 911 // appeared. 912 // 913 // We also allow this in C99 as an extension. 914 if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) { 915 Result.addDecl(D); 916 Result.resolveKind(); 917 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false); 918 } 919 } 920 921 // In C, we first see whether there is a tag type by the same name, in 922 // which case it's likely that the user just forgot to write "enum", 923 // "struct", or "union". 924 if (!getLangOpts().CPlusPlus && !SecondTry && 925 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 926 break; 927 } 928 929 // Perform typo correction to determine if there is another name that is 930 // close to this name. 931 if (!SecondTry && CCC) { 932 SecondTry = true; 933 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(), 934 Result.getLookupKind(), S, 935 &SS, std::move(CCC), 936 CTK_ErrorRecovery)) { 937 unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest; 938 unsigned QualifiedDiag = diag::err_no_member_suggest; 939 940 NamedDecl *FirstDecl = Corrected.getFoundDecl(); 941 NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl(); 942 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 943 UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) { 944 UnqualifiedDiag = diag::err_no_template_suggest; 945 QualifiedDiag = diag::err_no_member_template_suggest; 946 } else if (UnderlyingFirstDecl && 947 (isa<TypeDecl>(UnderlyingFirstDecl) || 948 isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) || 949 isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) { 950 UnqualifiedDiag = diag::err_unknown_typename_suggest; 951 QualifiedDiag = diag::err_unknown_nested_typename_suggest; 952 } 953 954 if (SS.isEmpty()) { 955 diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name); 956 } else {// FIXME: is this even reachable? Test it. 957 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 958 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() && 959 Name->getName().equals(CorrectedStr); 960 diagnoseTypo(Corrected, PDiag(QualifiedDiag) 961 << Name << computeDeclContext(SS, false) 962 << DroppedSpecifier << SS.getRange()); 963 } 964 965 // Update the name, so that the caller has the new name. 966 Name = Corrected.getCorrectionAsIdentifierInfo(); 967 968 // Typo correction corrected to a keyword. 969 if (Corrected.isKeyword()) 970 return Name; 971 972 // Also update the LookupResult... 973 // FIXME: This should probably go away at some point 974 Result.clear(); 975 Result.setLookupName(Corrected.getCorrection()); 976 if (FirstDecl) 977 Result.addDecl(FirstDecl); 978 979 // If we found an Objective-C instance variable, let 980 // LookupInObjCMethod build the appropriate expression to 981 // reference the ivar. 982 // FIXME: This is a gross hack. 983 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) { 984 Result.clear(); 985 ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier())); 986 return E; 987 } 988 989 goto Corrected; 990 } 991 } 992 993 // We failed to correct; just fall through and let the parser deal with it. 994 Result.suppressDiagnostics(); 995 return NameClassification::Unknown(); 996 997 case LookupResult::NotFoundInCurrentInstantiation: { 998 // We performed name lookup into the current instantiation, and there were 999 // dependent bases, so we treat this result the same way as any other 1000 // dependent nested-name-specifier. 1001 1002 // C++ [temp.res]p2: 1003 // A name used in a template declaration or definition and that is 1004 // dependent on a template-parameter is assumed not to name a type 1005 // unless the applicable name lookup finds a type name or the name is 1006 // qualified by the keyword typename. 1007 // 1008 // FIXME: If the next token is '<', we might want to ask the parser to 1009 // perform some heroics to see if we actually have a 1010 // template-argument-list, which would indicate a missing 'template' 1011 // keyword here. 1012 return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(), 1013 NameInfo, IsAddressOfOperand, 1014 /*TemplateArgs=*/nullptr); 1015 } 1016 1017 case LookupResult::Found: 1018 case LookupResult::FoundOverloaded: 1019 case LookupResult::FoundUnresolvedValue: 1020 break; 1021 1022 case LookupResult::Ambiguous: 1023 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 1024 hasAnyAcceptableTemplateNames(Result)) { 1025 // C++ [temp.local]p3: 1026 // A lookup that finds an injected-class-name (10.2) can result in an 1027 // ambiguity in certain cases (for example, if it is found in more than 1028 // one base class). If all of the injected-class-names that are found 1029 // refer to specializations of the same class template, and if the name 1030 // is followed by a template-argument-list, the reference refers to the 1031 // class template itself and not a specialization thereof, and is not 1032 // ambiguous. 1033 // 1034 // This filtering can make an ambiguous result into an unambiguous one, 1035 // so try again after filtering out template names. 1036 FilterAcceptableTemplateNames(Result); 1037 if (!Result.isAmbiguous()) { 1038 IsFilteredTemplateName = true; 1039 break; 1040 } 1041 } 1042 1043 // Diagnose the ambiguity and return an error. 1044 return NameClassification::Error(); 1045 } 1046 1047 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 1048 (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) { 1049 // C++ [temp.names]p3: 1050 // After name lookup (3.4) finds that a name is a template-name or that 1051 // an operator-function-id or a literal- operator-id refers to a set of 1052 // overloaded functions any member of which is a function template if 1053 // this is followed by a <, the < is always taken as the delimiter of a 1054 // template-argument-list and never as the less-than operator. 1055 if (!IsFilteredTemplateName) 1056 FilterAcceptableTemplateNames(Result); 1057 1058 if (!Result.empty()) { 1059 bool IsFunctionTemplate; 1060 bool IsVarTemplate; 1061 TemplateName Template; 1062 if (Result.end() - Result.begin() > 1) { 1063 IsFunctionTemplate = true; 1064 Template = Context.getOverloadedTemplateName(Result.begin(), 1065 Result.end()); 1066 } else { 1067 TemplateDecl *TD 1068 = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl()); 1069 IsFunctionTemplate = isa<FunctionTemplateDecl>(TD); 1070 IsVarTemplate = isa<VarTemplateDecl>(TD); 1071 1072 if (SS.isSet() && !SS.isInvalid()) 1073 Template = Context.getQualifiedTemplateName(SS.getScopeRep(), 1074 /*TemplateKeyword=*/false, 1075 TD); 1076 else 1077 Template = TemplateName(TD); 1078 } 1079 1080 if (IsFunctionTemplate) { 1081 // Function templates always go through overload resolution, at which 1082 // point we'll perform the various checks (e.g., accessibility) we need 1083 // to based on which function we selected. 1084 Result.suppressDiagnostics(); 1085 1086 return NameClassification::FunctionTemplate(Template); 1087 } 1088 1089 return IsVarTemplate ? NameClassification::VarTemplate(Template) 1090 : NameClassification::TypeTemplate(Template); 1091 } 1092 } 1093 1094 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl(); 1095 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) { 1096 DiagnoseUseOfDecl(Type, NameLoc); 1097 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false); 1098 QualType T = Context.getTypeDeclType(Type); 1099 if (SS.isNotEmpty()) 1100 return buildNestedType(*this, SS, T, NameLoc); 1101 return ParsedType::make(T); 1102 } 1103 1104 ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl); 1105 if (!Class) { 1106 // FIXME: It's unfortunate that we don't have a Type node for handling this. 1107 if (ObjCCompatibleAliasDecl *Alias = 1108 dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl)) 1109 Class = Alias->getClassInterface(); 1110 } 1111 1112 if (Class) { 1113 DiagnoseUseOfDecl(Class, NameLoc); 1114 1115 if (NextToken.is(tok::period)) { 1116 // Interface. <something> is parsed as a property reference expression. 1117 // Just return "unknown" as a fall-through for now. 1118 Result.suppressDiagnostics(); 1119 return NameClassification::Unknown(); 1120 } 1121 1122 QualType T = Context.getObjCInterfaceType(Class); 1123 return ParsedType::make(T); 1124 } 1125 1126 // We can have a type template here if we're classifying a template argument. 1127 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) && 1128 !isa<VarTemplateDecl>(FirstDecl)) 1129 return NameClassification::TypeTemplate( 1130 TemplateName(cast<TemplateDecl>(FirstDecl))); 1131 1132 // Check for a tag type hidden by a non-type decl in a few cases where it 1133 // seems likely a type is wanted instead of the non-type that was found. 1134 bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star); 1135 if ((NextToken.is(tok::identifier) || 1136 (NextIsOp && 1137 FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) && 1138 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 1139 TypeDecl *Type = Result.getAsSingle<TypeDecl>(); 1140 DiagnoseUseOfDecl(Type, NameLoc); 1141 QualType T = Context.getTypeDeclType(Type); 1142 if (SS.isNotEmpty()) 1143 return buildNestedType(*this, SS, T, NameLoc); 1144 return ParsedType::make(T); 1145 } 1146 1147 if (FirstDecl->isCXXClassMember()) 1148 return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result, 1149 nullptr, S); 1150 1151 bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren)); 1152 return BuildDeclarationNameExpr(SS, Result, ADL); 1153 } 1154 1155 Sema::TemplateNameKindForDiagnostics 1156 Sema::getTemplateNameKindForDiagnostics(TemplateName Name) { 1157 auto *TD = Name.getAsTemplateDecl(); 1158 if (!TD) 1159 return TemplateNameKindForDiagnostics::DependentTemplate; 1160 if (isa<ClassTemplateDecl>(TD)) 1161 return TemplateNameKindForDiagnostics::ClassTemplate; 1162 if (isa<FunctionTemplateDecl>(TD)) 1163 return TemplateNameKindForDiagnostics::FunctionTemplate; 1164 if (isa<VarTemplateDecl>(TD)) 1165 return TemplateNameKindForDiagnostics::VarTemplate; 1166 if (isa<TypeAliasTemplateDecl>(TD)) 1167 return TemplateNameKindForDiagnostics::AliasTemplate; 1168 if (isa<TemplateTemplateParmDecl>(TD)) 1169 return TemplateNameKindForDiagnostics::TemplateTemplateParam; 1170 return TemplateNameKindForDiagnostics::DependentTemplate; 1171 } 1172 1173 // Determines the context to return to after temporarily entering a 1174 // context. This depends in an unnecessarily complicated way on the 1175 // exact ordering of callbacks from the parser. 1176 DeclContext *Sema::getContainingDC(DeclContext *DC) { 1177 1178 // Functions defined inline within classes aren't parsed until we've 1179 // finished parsing the top-level class, so the top-level class is 1180 // the context we'll need to return to. 1181 // A Lambda call operator whose parent is a class must not be treated 1182 // as an inline member function. A Lambda can be used legally 1183 // either as an in-class member initializer or a default argument. These 1184 // are parsed once the class has been marked complete and so the containing 1185 // context would be the nested class (when the lambda is defined in one); 1186 // If the class is not complete, then the lambda is being used in an 1187 // ill-formed fashion (such as to specify the width of a bit-field, or 1188 // in an array-bound) - in which case we still want to return the 1189 // lexically containing DC (which could be a nested class). 1190 if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) { 1191 DC = DC->getLexicalParent(); 1192 1193 // A function not defined within a class will always return to its 1194 // lexical context. 1195 if (!isa<CXXRecordDecl>(DC)) 1196 return DC; 1197 1198 // A C++ inline method/friend is parsed *after* the topmost class 1199 // it was declared in is fully parsed ("complete"); the topmost 1200 // class is the context we need to return to. 1201 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent())) 1202 DC = RD; 1203 1204 // Return the declaration context of the topmost class the inline method is 1205 // declared in. 1206 return DC; 1207 } 1208 1209 return DC->getLexicalParent(); 1210 } 1211 1212 void Sema::PushDeclContext(Scope *S, DeclContext *DC) { 1213 assert(getContainingDC(DC) == CurContext && 1214 "The next DeclContext should be lexically contained in the current one."); 1215 CurContext = DC; 1216 S->setEntity(DC); 1217 } 1218 1219 void Sema::PopDeclContext() { 1220 assert(CurContext && "DeclContext imbalance!"); 1221 1222 CurContext = getContainingDC(CurContext); 1223 assert(CurContext && "Popped translation unit!"); 1224 } 1225 1226 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S, 1227 Decl *D) { 1228 // Unlike PushDeclContext, the context to which we return is not necessarily 1229 // the containing DC of TD, because the new context will be some pre-existing 1230 // TagDecl definition instead of a fresh one. 1231 auto Result = static_cast<SkippedDefinitionContext>(CurContext); 1232 CurContext = cast<TagDecl>(D)->getDefinition(); 1233 assert(CurContext && "skipping definition of undefined tag"); 1234 // Start lookups from the parent of the current context; we don't want to look 1235 // into the pre-existing complete definition. 1236 S->setEntity(CurContext->getLookupParent()); 1237 return Result; 1238 } 1239 1240 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) { 1241 CurContext = static_cast<decltype(CurContext)>(Context); 1242 } 1243 1244 /// EnterDeclaratorContext - Used when we must lookup names in the context 1245 /// of a declarator's nested name specifier. 1246 /// 1247 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) { 1248 // C++0x [basic.lookup.unqual]p13: 1249 // A name used in the definition of a static data member of class 1250 // X (after the qualified-id of the static member) is looked up as 1251 // if the name was used in a member function of X. 1252 // C++0x [basic.lookup.unqual]p14: 1253 // If a variable member of a namespace is defined outside of the 1254 // scope of its namespace then any name used in the definition of 1255 // the variable member (after the declarator-id) is looked up as 1256 // if the definition of the variable member occurred in its 1257 // namespace. 1258 // Both of these imply that we should push a scope whose context 1259 // is the semantic context of the declaration. We can't use 1260 // PushDeclContext here because that context is not necessarily 1261 // lexically contained in the current context. Fortunately, 1262 // the containing scope should have the appropriate information. 1263 1264 assert(!S->getEntity() && "scope already has entity"); 1265 1266 #ifndef NDEBUG 1267 Scope *Ancestor = S->getParent(); 1268 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 1269 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch"); 1270 #endif 1271 1272 CurContext = DC; 1273 S->setEntity(DC); 1274 } 1275 1276 void Sema::ExitDeclaratorContext(Scope *S) { 1277 assert(S->getEntity() == CurContext && "Context imbalance!"); 1278 1279 // Switch back to the lexical context. The safety of this is 1280 // enforced by an assert in EnterDeclaratorContext. 1281 Scope *Ancestor = S->getParent(); 1282 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 1283 CurContext = Ancestor->getEntity(); 1284 1285 // We don't need to do anything with the scope, which is going to 1286 // disappear. 1287 } 1288 1289 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) { 1290 // We assume that the caller has already called 1291 // ActOnReenterTemplateScope so getTemplatedDecl() works. 1292 FunctionDecl *FD = D->getAsFunction(); 1293 if (!FD) 1294 return; 1295 1296 // Same implementation as PushDeclContext, but enters the context 1297 // from the lexical parent, rather than the top-level class. 1298 assert(CurContext == FD->getLexicalParent() && 1299 "The next DeclContext should be lexically contained in the current one."); 1300 CurContext = FD; 1301 S->setEntity(CurContext); 1302 1303 for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) { 1304 ParmVarDecl *Param = FD->getParamDecl(P); 1305 // If the parameter has an identifier, then add it to the scope 1306 if (Param->getIdentifier()) { 1307 S->AddDecl(Param); 1308 IdResolver.AddDecl(Param); 1309 } 1310 } 1311 } 1312 1313 void Sema::ActOnExitFunctionContext() { 1314 // Same implementation as PopDeclContext, but returns to the lexical parent, 1315 // rather than the top-level class. 1316 assert(CurContext && "DeclContext imbalance!"); 1317 CurContext = CurContext->getLexicalParent(); 1318 assert(CurContext && "Popped translation unit!"); 1319 } 1320 1321 /// \brief Determine whether we allow overloading of the function 1322 /// PrevDecl with another declaration. 1323 /// 1324 /// This routine determines whether overloading is possible, not 1325 /// whether some new function is actually an overload. It will return 1326 /// true in C++ (where we can always provide overloads) or, as an 1327 /// extension, in C when the previous function is already an 1328 /// overloaded function declaration or has the "overloadable" 1329 /// attribute. 1330 static bool AllowOverloadingOfFunction(LookupResult &Previous, 1331 ASTContext &Context, 1332 const FunctionDecl *New) { 1333 if (Context.getLangOpts().CPlusPlus) 1334 return true; 1335 1336 if (Previous.getResultKind() == LookupResult::FoundOverloaded) 1337 return true; 1338 1339 return Previous.getResultKind() == LookupResult::Found && 1340 (Previous.getFoundDecl()->hasAttr<OverloadableAttr>() || 1341 New->hasAttr<OverloadableAttr>()); 1342 } 1343 1344 /// Add this decl to the scope shadowed decl chains. 1345 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) { 1346 // Move up the scope chain until we find the nearest enclosing 1347 // non-transparent context. The declaration will be introduced into this 1348 // scope. 1349 while (S->getEntity() && S->getEntity()->isTransparentContext()) 1350 S = S->getParent(); 1351 1352 // Add scoped declarations into their context, so that they can be 1353 // found later. Declarations without a context won't be inserted 1354 // into any context. 1355 if (AddToContext) 1356 CurContext->addDecl(D); 1357 1358 // Out-of-line definitions shouldn't be pushed into scope in C++, unless they 1359 // are function-local declarations. 1360 if (getLangOpts().CPlusPlus && D->isOutOfLine() && 1361 !D->getDeclContext()->getRedeclContext()->Equals( 1362 D->getLexicalDeclContext()->getRedeclContext()) && 1363 !D->getLexicalDeclContext()->isFunctionOrMethod()) 1364 return; 1365 1366 // Template instantiations should also not be pushed into scope. 1367 if (isa<FunctionDecl>(D) && 1368 cast<FunctionDecl>(D)->isFunctionTemplateSpecialization()) 1369 return; 1370 1371 // If this replaces anything in the current scope, 1372 IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()), 1373 IEnd = IdResolver.end(); 1374 for (; I != IEnd; ++I) { 1375 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { 1376 S->RemoveDecl(*I); 1377 IdResolver.RemoveDecl(*I); 1378 1379 // Should only need to replace one decl. 1380 break; 1381 } 1382 } 1383 1384 S->AddDecl(D); 1385 1386 if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) { 1387 // Implicitly-generated labels may end up getting generated in an order that 1388 // isn't strictly lexical, which breaks name lookup. Be careful to insert 1389 // the label at the appropriate place in the identifier chain. 1390 for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) { 1391 DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext(); 1392 if (IDC == CurContext) { 1393 if (!S->isDeclScope(*I)) 1394 continue; 1395 } else if (IDC->Encloses(CurContext)) 1396 break; 1397 } 1398 1399 IdResolver.InsertDeclAfter(I, D); 1400 } else { 1401 IdResolver.AddDecl(D); 1402 } 1403 } 1404 1405 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) { 1406 if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope) 1407 TUScope->AddDecl(D); 1408 } 1409 1410 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S, 1411 bool AllowInlineNamespace) { 1412 return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace); 1413 } 1414 1415 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) { 1416 DeclContext *TargetDC = DC->getPrimaryContext(); 1417 do { 1418 if (DeclContext *ScopeDC = S->getEntity()) 1419 if (ScopeDC->getPrimaryContext() == TargetDC) 1420 return S; 1421 } while ((S = S->getParent())); 1422 1423 return nullptr; 1424 } 1425 1426 static bool isOutOfScopePreviousDeclaration(NamedDecl *, 1427 DeclContext*, 1428 ASTContext&); 1429 1430 /// Filters out lookup results that don't fall within the given scope 1431 /// as determined by isDeclInScope. 1432 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S, 1433 bool ConsiderLinkage, 1434 bool AllowInlineNamespace) { 1435 LookupResult::Filter F = R.makeFilter(); 1436 while (F.hasNext()) { 1437 NamedDecl *D = F.next(); 1438 1439 if (isDeclInScope(D, Ctx, S, AllowInlineNamespace)) 1440 continue; 1441 1442 if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context)) 1443 continue; 1444 1445 F.erase(); 1446 } 1447 1448 F.done(); 1449 } 1450 1451 /// We've determined that \p New is a redeclaration of \p Old. Check that they 1452 /// have compatible owning modules. 1453 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) { 1454 // FIXME: The Modules TS is not clear about how friend declarations are 1455 // to be treated. It's not meaningful to have different owning modules for 1456 // linkage in redeclarations of the same entity, so for now allow the 1457 // redeclaration and change the owning modules to match. 1458 if (New->getFriendObjectKind() && 1459 Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) { 1460 New->setLocalOwningModule(Old->getOwningModule()); 1461 makeMergedDefinitionVisible(New); 1462 return false; 1463 } 1464 1465 Module *NewM = New->getOwningModule(); 1466 Module *OldM = Old->getOwningModule(); 1467 if (NewM == OldM) 1468 return false; 1469 1470 // FIXME: Check proclaimed-ownership-declarations here too. 1471 bool NewIsModuleInterface = NewM && NewM->Kind == Module::ModuleInterfaceUnit; 1472 bool OldIsModuleInterface = OldM && OldM->Kind == Module::ModuleInterfaceUnit; 1473 if (NewIsModuleInterface || OldIsModuleInterface) { 1474 // C++ Modules TS [basic.def.odr] 6.2/6.7 [sic]: 1475 // if a declaration of D [...] appears in the purview of a module, all 1476 // other such declarations shall appear in the purview of the same module 1477 Diag(New->getLocation(), diag::err_mismatched_owning_module) 1478 << New 1479 << NewIsModuleInterface 1480 << (NewIsModuleInterface ? NewM->getFullModuleName() : "") 1481 << OldIsModuleInterface 1482 << (OldIsModuleInterface ? OldM->getFullModuleName() : ""); 1483 Diag(Old->getLocation(), diag::note_previous_declaration); 1484 New->setInvalidDecl(); 1485 return true; 1486 } 1487 1488 return false; 1489 } 1490 1491 static bool isUsingDecl(NamedDecl *D) { 1492 return isa<UsingShadowDecl>(D) || 1493 isa<UnresolvedUsingTypenameDecl>(D) || 1494 isa<UnresolvedUsingValueDecl>(D); 1495 } 1496 1497 /// Removes using shadow declarations from the lookup results. 1498 static void RemoveUsingDecls(LookupResult &R) { 1499 LookupResult::Filter F = R.makeFilter(); 1500 while (F.hasNext()) 1501 if (isUsingDecl(F.next())) 1502 F.erase(); 1503 1504 F.done(); 1505 } 1506 1507 /// \brief Check for this common pattern: 1508 /// @code 1509 /// class S { 1510 /// S(const S&); // DO NOT IMPLEMENT 1511 /// void operator=(const S&); // DO NOT IMPLEMENT 1512 /// }; 1513 /// @endcode 1514 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) { 1515 // FIXME: Should check for private access too but access is set after we get 1516 // the decl here. 1517 if (D->doesThisDeclarationHaveABody()) 1518 return false; 1519 1520 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) 1521 return CD->isCopyConstructor(); 1522 return D->isCopyAssignmentOperator(); 1523 } 1524 1525 // We need this to handle 1526 // 1527 // typedef struct { 1528 // void *foo() { return 0; } 1529 // } A; 1530 // 1531 // When we see foo we don't know if after the typedef we will get 'A' or '*A' 1532 // for example. If 'A', foo will have external linkage. If we have '*A', 1533 // foo will have no linkage. Since we can't know until we get to the end 1534 // of the typedef, this function finds out if D might have non-external linkage. 1535 // Callers should verify at the end of the TU if it D has external linkage or 1536 // not. 1537 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) { 1538 const DeclContext *DC = D->getDeclContext(); 1539 while (!DC->isTranslationUnit()) { 1540 if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){ 1541 if (!RD->hasNameForLinkage()) 1542 return true; 1543 } 1544 DC = DC->getParent(); 1545 } 1546 1547 return !D->isExternallyVisible(); 1548 } 1549 1550 // FIXME: This needs to be refactored; some other isInMainFile users want 1551 // these semantics. 1552 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) { 1553 if (S.TUKind != TU_Complete) 1554 return false; 1555 return S.SourceMgr.isInMainFile(Loc); 1556 } 1557 1558 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const { 1559 assert(D); 1560 1561 if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>()) 1562 return false; 1563 1564 // Ignore all entities declared within templates, and out-of-line definitions 1565 // of members of class templates. 1566 if (D->getDeclContext()->isDependentContext() || 1567 D->getLexicalDeclContext()->isDependentContext()) 1568 return false; 1569 1570 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1571 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1572 return false; 1573 // A non-out-of-line declaration of a member specialization was implicitly 1574 // instantiated; it's the out-of-line declaration that we're interested in. 1575 if (FD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 1576 FD->getMemberSpecializationInfo() && !FD->isOutOfLine()) 1577 return false; 1578 1579 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 1580 if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD)) 1581 return false; 1582 } else { 1583 // 'static inline' functions are defined in headers; don't warn. 1584 if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation())) 1585 return false; 1586 } 1587 1588 if (FD->doesThisDeclarationHaveABody() && 1589 Context.DeclMustBeEmitted(FD)) 1590 return false; 1591 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1592 // Constants and utility variables are defined in headers with internal 1593 // linkage; don't warn. (Unlike functions, there isn't a convenient marker 1594 // like "inline".) 1595 if (!isMainFileLoc(*this, VD->getLocation())) 1596 return false; 1597 1598 if (Context.DeclMustBeEmitted(VD)) 1599 return false; 1600 1601 if (VD->isStaticDataMember() && 1602 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1603 return false; 1604 if (VD->isStaticDataMember() && 1605 VD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization && 1606 VD->getMemberSpecializationInfo() && !VD->isOutOfLine()) 1607 return false; 1608 1609 if (VD->isInline() && !isMainFileLoc(*this, VD->getLocation())) 1610 return false; 1611 } else { 1612 return false; 1613 } 1614 1615 // Only warn for unused decls internal to the translation unit. 1616 // FIXME: This seems like a bogus check; it suppresses -Wunused-function 1617 // for inline functions defined in the main source file, for instance. 1618 return mightHaveNonExternalLinkage(D); 1619 } 1620 1621 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) { 1622 if (!D) 1623 return; 1624 1625 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1626 const FunctionDecl *First = FD->getFirstDecl(); 1627 if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1628 return; // First should already be in the vector. 1629 } 1630 1631 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1632 const VarDecl *First = VD->getFirstDecl(); 1633 if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1634 return; // First should already be in the vector. 1635 } 1636 1637 if (ShouldWarnIfUnusedFileScopedDecl(D)) 1638 UnusedFileScopedDecls.push_back(D); 1639 } 1640 1641 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) { 1642 if (D->isInvalidDecl()) 1643 return false; 1644 1645 bool Referenced = false; 1646 if (auto *DD = dyn_cast<DecompositionDecl>(D)) { 1647 // For a decomposition declaration, warn if none of the bindings are 1648 // referenced, instead of if the variable itself is referenced (which 1649 // it is, by the bindings' expressions). 1650 for (auto *BD : DD->bindings()) { 1651 if (BD->isReferenced()) { 1652 Referenced = true; 1653 break; 1654 } 1655 } 1656 } else if (!D->getDeclName()) { 1657 return false; 1658 } else if (D->isReferenced() || D->isUsed()) { 1659 Referenced = true; 1660 } 1661 1662 if (Referenced || D->hasAttr<UnusedAttr>() || 1663 D->hasAttr<ObjCPreciseLifetimeAttr>()) 1664 return false; 1665 1666 if (isa<LabelDecl>(D)) 1667 return true; 1668 1669 // Except for labels, we only care about unused decls that are local to 1670 // functions. 1671 bool WithinFunction = D->getDeclContext()->isFunctionOrMethod(); 1672 if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext())) 1673 // For dependent types, the diagnostic is deferred. 1674 WithinFunction = 1675 WithinFunction || (R->isLocalClass() && !R->isDependentType()); 1676 if (!WithinFunction) 1677 return false; 1678 1679 if (isa<TypedefNameDecl>(D)) 1680 return true; 1681 1682 // White-list anything that isn't a local variable. 1683 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) 1684 return false; 1685 1686 // Types of valid local variables should be complete, so this should succeed. 1687 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1688 1689 // White-list anything with an __attribute__((unused)) type. 1690 const auto *Ty = VD->getType().getTypePtr(); 1691 1692 // Only look at the outermost level of typedef. 1693 if (const TypedefType *TT = Ty->getAs<TypedefType>()) { 1694 if (TT->getDecl()->hasAttr<UnusedAttr>()) 1695 return false; 1696 } 1697 1698 // If we failed to complete the type for some reason, or if the type is 1699 // dependent, don't diagnose the variable. 1700 if (Ty->isIncompleteType() || Ty->isDependentType()) 1701 return false; 1702 1703 // Look at the element type to ensure that the warning behaviour is 1704 // consistent for both scalars and arrays. 1705 Ty = Ty->getBaseElementTypeUnsafe(); 1706 1707 if (const TagType *TT = Ty->getAs<TagType>()) { 1708 const TagDecl *Tag = TT->getDecl(); 1709 if (Tag->hasAttr<UnusedAttr>()) 1710 return false; 1711 1712 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) { 1713 if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>()) 1714 return false; 1715 1716 if (const Expr *Init = VD->getInit()) { 1717 if (const ExprWithCleanups *Cleanups = 1718 dyn_cast<ExprWithCleanups>(Init)) 1719 Init = Cleanups->getSubExpr(); 1720 const CXXConstructExpr *Construct = 1721 dyn_cast<CXXConstructExpr>(Init); 1722 if (Construct && !Construct->isElidable()) { 1723 CXXConstructorDecl *CD = Construct->getConstructor(); 1724 if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() && 1725 (VD->getInit()->isValueDependent() || !VD->evaluateValue())) 1726 return false; 1727 } 1728 } 1729 } 1730 } 1731 1732 // TODO: __attribute__((unused)) templates? 1733 } 1734 1735 return true; 1736 } 1737 1738 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx, 1739 FixItHint &Hint) { 1740 if (isa<LabelDecl>(D)) { 1741 SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(), 1742 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true); 1743 if (AfterColon.isInvalid()) 1744 return; 1745 Hint = FixItHint::CreateRemoval(CharSourceRange:: 1746 getCharRange(D->getLocStart(), AfterColon)); 1747 } 1748 } 1749 1750 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) { 1751 if (D->getTypeForDecl()->isDependentType()) 1752 return; 1753 1754 for (auto *TmpD : D->decls()) { 1755 if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD)) 1756 DiagnoseUnusedDecl(T); 1757 else if(const auto *R = dyn_cast<RecordDecl>(TmpD)) 1758 DiagnoseUnusedNestedTypedefs(R); 1759 } 1760 } 1761 1762 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used 1763 /// unless they are marked attr(unused). 1764 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) { 1765 if (!ShouldDiagnoseUnusedDecl(D)) 1766 return; 1767 1768 if (auto *TD = dyn_cast<TypedefNameDecl>(D)) { 1769 // typedefs can be referenced later on, so the diagnostics are emitted 1770 // at end-of-translation-unit. 1771 UnusedLocalTypedefNameCandidates.insert(TD); 1772 return; 1773 } 1774 1775 FixItHint Hint; 1776 GenerateFixForUnusedDecl(D, Context, Hint); 1777 1778 unsigned DiagID; 1779 if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable()) 1780 DiagID = diag::warn_unused_exception_param; 1781 else if (isa<LabelDecl>(D)) 1782 DiagID = diag::warn_unused_label; 1783 else 1784 DiagID = diag::warn_unused_variable; 1785 1786 Diag(D->getLocation(), DiagID) << D << Hint; 1787 } 1788 1789 static void CheckPoppedLabel(LabelDecl *L, Sema &S) { 1790 // Verify that we have no forward references left. If so, there was a goto 1791 // or address of a label taken, but no definition of it. Label fwd 1792 // definitions are indicated with a null substmt which is also not a resolved 1793 // MS inline assembly label name. 1794 bool Diagnose = false; 1795 if (L->isMSAsmLabel()) 1796 Diagnose = !L->isResolvedMSAsmLabel(); 1797 else 1798 Diagnose = L->getStmt() == nullptr; 1799 if (Diagnose) 1800 S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName(); 1801 } 1802 1803 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) { 1804 S->mergeNRVOIntoParent(); 1805 1806 if (S->decl_empty()) return; 1807 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) && 1808 "Scope shouldn't contain decls!"); 1809 1810 for (auto *TmpD : S->decls()) { 1811 assert(TmpD && "This decl didn't get pushed??"); 1812 1813 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?"); 1814 NamedDecl *D = cast<NamedDecl>(TmpD); 1815 1816 // Diagnose unused variables in this scope. 1817 if (!S->hasUnrecoverableErrorOccurred()) { 1818 DiagnoseUnusedDecl(D); 1819 if (const auto *RD = dyn_cast<RecordDecl>(D)) 1820 DiagnoseUnusedNestedTypedefs(RD); 1821 } 1822 1823 if (!D->getDeclName()) continue; 1824 1825 // If this was a forward reference to a label, verify it was defined. 1826 if (LabelDecl *LD = dyn_cast<LabelDecl>(D)) 1827 CheckPoppedLabel(LD, *this); 1828 1829 // Remove this name from our lexical scope, and warn on it if we haven't 1830 // already. 1831 IdResolver.RemoveDecl(D); 1832 auto ShadowI = ShadowingDecls.find(D); 1833 if (ShadowI != ShadowingDecls.end()) { 1834 if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) { 1835 Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field) 1836 << D << FD << FD->getParent(); 1837 Diag(FD->getLocation(), diag::note_previous_declaration); 1838 } 1839 ShadowingDecls.erase(ShadowI); 1840 } 1841 } 1842 } 1843 1844 /// \brief Look for an Objective-C class in the translation unit. 1845 /// 1846 /// \param Id The name of the Objective-C class we're looking for. If 1847 /// typo-correction fixes this name, the Id will be updated 1848 /// to the fixed name. 1849 /// 1850 /// \param IdLoc The location of the name in the translation unit. 1851 /// 1852 /// \param DoTypoCorrection If true, this routine will attempt typo correction 1853 /// if there is no class with the given name. 1854 /// 1855 /// \returns The declaration of the named Objective-C class, or NULL if the 1856 /// class could not be found. 1857 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id, 1858 SourceLocation IdLoc, 1859 bool DoTypoCorrection) { 1860 // The third "scope" argument is 0 since we aren't enabling lazy built-in 1861 // creation from this context. 1862 NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName); 1863 1864 if (!IDecl && DoTypoCorrection) { 1865 // Perform typo correction at the given location, but only if we 1866 // find an Objective-C class name. 1867 if (TypoCorrection C = CorrectTypo( 1868 DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr, 1869 llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(), 1870 CTK_ErrorRecovery)) { 1871 diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id); 1872 IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>(); 1873 Id = IDecl->getIdentifier(); 1874 } 1875 } 1876 ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl); 1877 // This routine must always return a class definition, if any. 1878 if (Def && Def->getDefinition()) 1879 Def = Def->getDefinition(); 1880 return Def; 1881 } 1882 1883 /// getNonFieldDeclScope - Retrieves the innermost scope, starting 1884 /// from S, where a non-field would be declared. This routine copes 1885 /// with the difference between C and C++ scoping rules in structs and 1886 /// unions. For example, the following code is well-formed in C but 1887 /// ill-formed in C++: 1888 /// @code 1889 /// struct S6 { 1890 /// enum { BAR } e; 1891 /// }; 1892 /// 1893 /// void test_S6() { 1894 /// struct S6 a; 1895 /// a.e = BAR; 1896 /// } 1897 /// @endcode 1898 /// For the declaration of BAR, this routine will return a different 1899 /// scope. The scope S will be the scope of the unnamed enumeration 1900 /// within S6. In C++, this routine will return the scope associated 1901 /// with S6, because the enumeration's scope is a transparent 1902 /// context but structures can contain non-field names. In C, this 1903 /// routine will return the translation unit scope, since the 1904 /// enumeration's scope is a transparent context and structures cannot 1905 /// contain non-field names. 1906 Scope *Sema::getNonFieldDeclScope(Scope *S) { 1907 while (((S->getFlags() & Scope::DeclScope) == 0) || 1908 (S->getEntity() && S->getEntity()->isTransparentContext()) || 1909 (S->isClassScope() && !getLangOpts().CPlusPlus)) 1910 S = S->getParent(); 1911 return S; 1912 } 1913 1914 /// \brief Looks up the declaration of "struct objc_super" and 1915 /// saves it for later use in building builtin declaration of 1916 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such 1917 /// pre-existing declaration exists no action takes place. 1918 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S, 1919 IdentifierInfo *II) { 1920 if (!II->isStr("objc_msgSendSuper")) 1921 return; 1922 ASTContext &Context = ThisSema.Context; 1923 1924 LookupResult Result(ThisSema, &Context.Idents.get("objc_super"), 1925 SourceLocation(), Sema::LookupTagName); 1926 ThisSema.LookupName(Result, S); 1927 if (Result.getResultKind() == LookupResult::Found) 1928 if (const TagDecl *TD = Result.getAsSingle<TagDecl>()) 1929 Context.setObjCSuperType(Context.getTagDeclType(TD)); 1930 } 1931 1932 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) { 1933 switch (Error) { 1934 case ASTContext::GE_None: 1935 return ""; 1936 case ASTContext::GE_Missing_stdio: 1937 return "stdio.h"; 1938 case ASTContext::GE_Missing_setjmp: 1939 return "setjmp.h"; 1940 case ASTContext::GE_Missing_ucontext: 1941 return "ucontext.h"; 1942 } 1943 llvm_unreachable("unhandled error kind"); 1944 } 1945 1946 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at 1947 /// file scope. lazily create a decl for it. ForRedeclaration is true 1948 /// if we're creating this built-in in anticipation of redeclaring the 1949 /// built-in. 1950 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID, 1951 Scope *S, bool ForRedeclaration, 1952 SourceLocation Loc) { 1953 LookupPredefedObjCSuperType(*this, S, II); 1954 1955 ASTContext::GetBuiltinTypeError Error; 1956 QualType R = Context.GetBuiltinType(ID, Error); 1957 if (Error) { 1958 if (ForRedeclaration) 1959 Diag(Loc, diag::warn_implicit_decl_requires_sysheader) 1960 << getHeaderName(Error) << Context.BuiltinInfo.getName(ID); 1961 return nullptr; 1962 } 1963 1964 if (!ForRedeclaration && 1965 (Context.BuiltinInfo.isPredefinedLibFunction(ID) || 1966 Context.BuiltinInfo.isHeaderDependentFunction(ID))) { 1967 Diag(Loc, diag::ext_implicit_lib_function_decl) 1968 << Context.BuiltinInfo.getName(ID) << R; 1969 if (Context.BuiltinInfo.getHeaderName(ID) && 1970 !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc)) 1971 Diag(Loc, diag::note_include_header_or_declare) 1972 << Context.BuiltinInfo.getHeaderName(ID) 1973 << Context.BuiltinInfo.getName(ID); 1974 } 1975 1976 if (R.isNull()) 1977 return nullptr; 1978 1979 DeclContext *Parent = Context.getTranslationUnitDecl(); 1980 if (getLangOpts().CPlusPlus) { 1981 LinkageSpecDecl *CLinkageDecl = 1982 LinkageSpecDecl::Create(Context, Parent, Loc, Loc, 1983 LinkageSpecDecl::lang_c, false); 1984 CLinkageDecl->setImplicit(); 1985 Parent->addDecl(CLinkageDecl); 1986 Parent = CLinkageDecl; 1987 } 1988 1989 FunctionDecl *New = FunctionDecl::Create(Context, 1990 Parent, 1991 Loc, Loc, II, R, /*TInfo=*/nullptr, 1992 SC_Extern, 1993 false, 1994 R->isFunctionProtoType()); 1995 New->setImplicit(); 1996 1997 // Create Decl objects for each parameter, adding them to the 1998 // FunctionDecl. 1999 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) { 2000 SmallVector<ParmVarDecl*, 16> Params; 2001 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) { 2002 ParmVarDecl *parm = 2003 ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(), 2004 nullptr, FT->getParamType(i), /*TInfo=*/nullptr, 2005 SC_None, nullptr); 2006 parm->setScopeInfo(0, i); 2007 Params.push_back(parm); 2008 } 2009 New->setParams(Params); 2010 } 2011 2012 AddKnownFunctionAttributes(New); 2013 RegisterLocallyScopedExternCDecl(New, S); 2014 2015 // TUScope is the translation-unit scope to insert this function into. 2016 // FIXME: This is hideous. We need to teach PushOnScopeChains to 2017 // relate Scopes to DeclContexts, and probably eliminate CurContext 2018 // entirely, but we're not there yet. 2019 DeclContext *SavedContext = CurContext; 2020 CurContext = Parent; 2021 PushOnScopeChains(New, TUScope); 2022 CurContext = SavedContext; 2023 return New; 2024 } 2025 2026 /// Typedef declarations don't have linkage, but they still denote the same 2027 /// entity if their types are the same. 2028 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's 2029 /// isSameEntity. 2030 static void filterNonConflictingPreviousTypedefDecls(Sema &S, 2031 TypedefNameDecl *Decl, 2032 LookupResult &Previous) { 2033 // This is only interesting when modules are enabled. 2034 if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility) 2035 return; 2036 2037 // Empty sets are uninteresting. 2038 if (Previous.empty()) 2039 return; 2040 2041 LookupResult::Filter Filter = Previous.makeFilter(); 2042 while (Filter.hasNext()) { 2043 NamedDecl *Old = Filter.next(); 2044 2045 // Non-hidden declarations are never ignored. 2046 if (S.isVisible(Old)) 2047 continue; 2048 2049 // Declarations of the same entity are not ignored, even if they have 2050 // different linkages. 2051 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { 2052 if (S.Context.hasSameType(OldTD->getUnderlyingType(), 2053 Decl->getUnderlyingType())) 2054 continue; 2055 2056 // If both declarations give a tag declaration a typedef name for linkage 2057 // purposes, then they declare the same entity. 2058 if (OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) && 2059 Decl->getAnonDeclWithTypedefName()) 2060 continue; 2061 } 2062 2063 Filter.erase(); 2064 } 2065 2066 Filter.done(); 2067 } 2068 2069 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { 2070 QualType OldType; 2071 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) 2072 OldType = OldTypedef->getUnderlyingType(); 2073 else 2074 OldType = Context.getTypeDeclType(Old); 2075 QualType NewType = New->getUnderlyingType(); 2076 2077 if (NewType->isVariablyModifiedType()) { 2078 // Must not redefine a typedef with a variably-modified type. 2079 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 2080 Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef) 2081 << Kind << NewType; 2082 if (Old->getLocation().isValid()) 2083 notePreviousDefinition(Old, New->getLocation()); 2084 New->setInvalidDecl(); 2085 return true; 2086 } 2087 2088 if (OldType != NewType && 2089 !OldType->isDependentType() && 2090 !NewType->isDependentType() && 2091 !Context.hasSameType(OldType, NewType)) { 2092 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 2093 Diag(New->getLocation(), diag::err_redefinition_different_typedef) 2094 << Kind << NewType << OldType; 2095 if (Old->getLocation().isValid()) 2096 notePreviousDefinition(Old, New->getLocation()); 2097 New->setInvalidDecl(); 2098 return true; 2099 } 2100 return false; 2101 } 2102 2103 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the 2104 /// same name and scope as a previous declaration 'Old'. Figure out 2105 /// how to resolve this situation, merging decls or emitting 2106 /// diagnostics as appropriate. If there was an error, set New to be invalid. 2107 /// 2108 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New, 2109 LookupResult &OldDecls) { 2110 // If the new decl is known invalid already, don't bother doing any 2111 // merging checks. 2112 if (New->isInvalidDecl()) return; 2113 2114 // Allow multiple definitions for ObjC built-in typedefs. 2115 // FIXME: Verify the underlying types are equivalent! 2116 if (getLangOpts().ObjC1) { 2117 const IdentifierInfo *TypeID = New->getIdentifier(); 2118 switch (TypeID->getLength()) { 2119 default: break; 2120 case 2: 2121 { 2122 if (!TypeID->isStr("id")) 2123 break; 2124 QualType T = New->getUnderlyingType(); 2125 if (!T->isPointerType()) 2126 break; 2127 if (!T->isVoidPointerType()) { 2128 QualType PT = T->getAs<PointerType>()->getPointeeType(); 2129 if (!PT->isStructureType()) 2130 break; 2131 } 2132 Context.setObjCIdRedefinitionType(T); 2133 // Install the built-in type for 'id', ignoring the current definition. 2134 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); 2135 return; 2136 } 2137 case 5: 2138 if (!TypeID->isStr("Class")) 2139 break; 2140 Context.setObjCClassRedefinitionType(New->getUnderlyingType()); 2141 // Install the built-in type for 'Class', ignoring the current definition. 2142 New->setTypeForDecl(Context.getObjCClassType().getTypePtr()); 2143 return; 2144 case 3: 2145 if (!TypeID->isStr("SEL")) 2146 break; 2147 Context.setObjCSelRedefinitionType(New->getUnderlyingType()); 2148 // Install the built-in type for 'SEL', ignoring the current definition. 2149 New->setTypeForDecl(Context.getObjCSelType().getTypePtr()); 2150 return; 2151 } 2152 // Fall through - the typedef name was not a builtin type. 2153 } 2154 2155 // Verify the old decl was also a type. 2156 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); 2157 if (!Old) { 2158 Diag(New->getLocation(), diag::err_redefinition_different_kind) 2159 << New->getDeclName(); 2160 2161 NamedDecl *OldD = OldDecls.getRepresentativeDecl(); 2162 if (OldD->getLocation().isValid()) 2163 notePreviousDefinition(OldD, New->getLocation()); 2164 2165 return New->setInvalidDecl(); 2166 } 2167 2168 // If the old declaration is invalid, just give up here. 2169 if (Old->isInvalidDecl()) 2170 return New->setInvalidDecl(); 2171 2172 if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) { 2173 auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true); 2174 auto *NewTag = New->getAnonDeclWithTypedefName(); 2175 NamedDecl *Hidden = nullptr; 2176 if (OldTag && NewTag && 2177 OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() && 2178 !hasVisibleDefinition(OldTag, &Hidden)) { 2179 // There is a definition of this tag, but it is not visible. Use it 2180 // instead of our tag. 2181 New->setTypeForDecl(OldTD->getTypeForDecl()); 2182 if (OldTD->isModed()) 2183 New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(), 2184 OldTD->getUnderlyingType()); 2185 else 2186 New->setTypeSourceInfo(OldTD->getTypeSourceInfo()); 2187 2188 // Make the old tag definition visible. 2189 makeMergedDefinitionVisible(Hidden); 2190 2191 // If this was an unscoped enumeration, yank all of its enumerators 2192 // out of the scope. 2193 if (isa<EnumDecl>(NewTag)) { 2194 Scope *EnumScope = getNonFieldDeclScope(S); 2195 for (auto *D : NewTag->decls()) { 2196 auto *ED = cast<EnumConstantDecl>(D); 2197 assert(EnumScope->isDeclScope(ED)); 2198 EnumScope->RemoveDecl(ED); 2199 IdResolver.RemoveDecl(ED); 2200 ED->getLexicalDeclContext()->removeDecl(ED); 2201 } 2202 } 2203 } 2204 } 2205 2206 // If the typedef types are not identical, reject them in all languages and 2207 // with any extensions enabled. 2208 if (isIncompatibleTypedef(Old, New)) 2209 return; 2210 2211 // The types match. Link up the redeclaration chain and merge attributes if 2212 // the old declaration was a typedef. 2213 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) { 2214 New->setPreviousDecl(Typedef); 2215 mergeDeclAttributes(New, Old); 2216 } 2217 2218 if (getLangOpts().MicrosoftExt) 2219 return; 2220 2221 if (getLangOpts().CPlusPlus) { 2222 // C++ [dcl.typedef]p2: 2223 // In a given non-class scope, a typedef specifier can be used to 2224 // redefine the name of any type declared in that scope to refer 2225 // to the type to which it already refers. 2226 if (!isa<CXXRecordDecl>(CurContext)) 2227 return; 2228 2229 // C++0x [dcl.typedef]p4: 2230 // In a given class scope, a typedef specifier can be used to redefine 2231 // any class-name declared in that scope that is not also a typedef-name 2232 // to refer to the type to which it already refers. 2233 // 2234 // This wording came in via DR424, which was a correction to the 2235 // wording in DR56, which accidentally banned code like: 2236 // 2237 // struct S { 2238 // typedef struct A { } A; 2239 // }; 2240 // 2241 // in the C++03 standard. We implement the C++0x semantics, which 2242 // allow the above but disallow 2243 // 2244 // struct S { 2245 // typedef int I; 2246 // typedef int I; 2247 // }; 2248 // 2249 // since that was the intent of DR56. 2250 if (!isa<TypedefNameDecl>(Old)) 2251 return; 2252 2253 Diag(New->getLocation(), diag::err_redefinition) 2254 << New->getDeclName(); 2255 notePreviousDefinition(Old, New->getLocation()); 2256 return New->setInvalidDecl(); 2257 } 2258 2259 // Modules always permit redefinition of typedefs, as does C11. 2260 if (getLangOpts().Modules || getLangOpts().C11) 2261 return; 2262 2263 // If we have a redefinition of a typedef in C, emit a warning. This warning 2264 // is normally mapped to an error, but can be controlled with 2265 // -Wtypedef-redefinition. If either the original or the redefinition is 2266 // in a system header, don't emit this for compatibility with GCC. 2267 if (getDiagnostics().getSuppressSystemWarnings() && 2268 // Some standard types are defined implicitly in Clang (e.g. OpenCL). 2269 (Old->isImplicit() || 2270 Context.getSourceManager().isInSystemHeader(Old->getLocation()) || 2271 Context.getSourceManager().isInSystemHeader(New->getLocation()))) 2272 return; 2273 2274 Diag(New->getLocation(), diag::ext_redefinition_of_typedef) 2275 << New->getDeclName(); 2276 notePreviousDefinition(Old, New->getLocation()); 2277 } 2278 2279 /// DeclhasAttr - returns true if decl Declaration already has the target 2280 /// attribute. 2281 static bool DeclHasAttr(const Decl *D, const Attr *A) { 2282 const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A); 2283 const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A); 2284 for (const auto *i : D->attrs()) 2285 if (i->getKind() == A->getKind()) { 2286 if (Ann) { 2287 if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation()) 2288 return true; 2289 continue; 2290 } 2291 // FIXME: Don't hardcode this check 2292 if (OA && isa<OwnershipAttr>(i)) 2293 return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind(); 2294 return true; 2295 } 2296 2297 return false; 2298 } 2299 2300 static bool isAttributeTargetADefinition(Decl *D) { 2301 if (VarDecl *VD = dyn_cast<VarDecl>(D)) 2302 return VD->isThisDeclarationADefinition(); 2303 if (TagDecl *TD = dyn_cast<TagDecl>(D)) 2304 return TD->isCompleteDefinition() || TD->isBeingDefined(); 2305 return true; 2306 } 2307 2308 /// Merge alignment attributes from \p Old to \p New, taking into account the 2309 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute. 2310 /// 2311 /// \return \c true if any attributes were added to \p New. 2312 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) { 2313 // Look for alignas attributes on Old, and pick out whichever attribute 2314 // specifies the strictest alignment requirement. 2315 AlignedAttr *OldAlignasAttr = nullptr; 2316 AlignedAttr *OldStrictestAlignAttr = nullptr; 2317 unsigned OldAlign = 0; 2318 for (auto *I : Old->specific_attrs<AlignedAttr>()) { 2319 // FIXME: We have no way of representing inherited dependent alignments 2320 // in a case like: 2321 // template<int A, int B> struct alignas(A) X; 2322 // template<int A, int B> struct alignas(B) X {}; 2323 // For now, we just ignore any alignas attributes which are not on the 2324 // definition in such a case. 2325 if (I->isAlignmentDependent()) 2326 return false; 2327 2328 if (I->isAlignas()) 2329 OldAlignasAttr = I; 2330 2331 unsigned Align = I->getAlignment(S.Context); 2332 if (Align > OldAlign) { 2333 OldAlign = Align; 2334 OldStrictestAlignAttr = I; 2335 } 2336 } 2337 2338 // Look for alignas attributes on New. 2339 AlignedAttr *NewAlignasAttr = nullptr; 2340 unsigned NewAlign = 0; 2341 for (auto *I : New->specific_attrs<AlignedAttr>()) { 2342 if (I->isAlignmentDependent()) 2343 return false; 2344 2345 if (I->isAlignas()) 2346 NewAlignasAttr = I; 2347 2348 unsigned Align = I->getAlignment(S.Context); 2349 if (Align > NewAlign) 2350 NewAlign = Align; 2351 } 2352 2353 if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) { 2354 // Both declarations have 'alignas' attributes. We require them to match. 2355 // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but 2356 // fall short. (If two declarations both have alignas, they must both match 2357 // every definition, and so must match each other if there is a definition.) 2358 2359 // If either declaration only contains 'alignas(0)' specifiers, then it 2360 // specifies the natural alignment for the type. 2361 if (OldAlign == 0 || NewAlign == 0) { 2362 QualType Ty; 2363 if (ValueDecl *VD = dyn_cast<ValueDecl>(New)) 2364 Ty = VD->getType(); 2365 else 2366 Ty = S.Context.getTagDeclType(cast<TagDecl>(New)); 2367 2368 if (OldAlign == 0) 2369 OldAlign = S.Context.getTypeAlign(Ty); 2370 if (NewAlign == 0) 2371 NewAlign = S.Context.getTypeAlign(Ty); 2372 } 2373 2374 if (OldAlign != NewAlign) { 2375 S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch) 2376 << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity() 2377 << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity(); 2378 S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration); 2379 } 2380 } 2381 2382 if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) { 2383 // C++11 [dcl.align]p6: 2384 // if any declaration of an entity has an alignment-specifier, 2385 // every defining declaration of that entity shall specify an 2386 // equivalent alignment. 2387 // C11 6.7.5/7: 2388 // If the definition of an object does not have an alignment 2389 // specifier, any other declaration of that object shall also 2390 // have no alignment specifier. 2391 S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition) 2392 << OldAlignasAttr; 2393 S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration) 2394 << OldAlignasAttr; 2395 } 2396 2397 bool AnyAdded = false; 2398 2399 // Ensure we have an attribute representing the strictest alignment. 2400 if (OldAlign > NewAlign) { 2401 AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context); 2402 Clone->setInherited(true); 2403 New->addAttr(Clone); 2404 AnyAdded = true; 2405 } 2406 2407 // Ensure we have an alignas attribute if the old declaration had one. 2408 if (OldAlignasAttr && !NewAlignasAttr && 2409 !(AnyAdded && OldStrictestAlignAttr->isAlignas())) { 2410 AlignedAttr *Clone = OldAlignasAttr->clone(S.Context); 2411 Clone->setInherited(true); 2412 New->addAttr(Clone); 2413 AnyAdded = true; 2414 } 2415 2416 return AnyAdded; 2417 } 2418 2419 static bool mergeDeclAttribute(Sema &S, NamedDecl *D, 2420 const InheritableAttr *Attr, 2421 Sema::AvailabilityMergeKind AMK) { 2422 // This function copies an attribute Attr from a previous declaration to the 2423 // new declaration D if the new declaration doesn't itself have that attribute 2424 // yet or if that attribute allows duplicates. 2425 // If you're adding a new attribute that requires logic different from 2426 // "use explicit attribute on decl if present, else use attribute from 2427 // previous decl", for example if the attribute needs to be consistent 2428 // between redeclarations, you need to call a custom merge function here. 2429 InheritableAttr *NewAttr = nullptr; 2430 unsigned AttrSpellingListIndex = Attr->getSpellingListIndex(); 2431 if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr)) 2432 NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(), 2433 AA->isImplicit(), AA->getIntroduced(), 2434 AA->getDeprecated(), 2435 AA->getObsoleted(), AA->getUnavailable(), 2436 AA->getMessage(), AA->getStrict(), 2437 AA->getReplacement(), AMK, 2438 AttrSpellingListIndex); 2439 else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr)) 2440 NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(), 2441 AttrSpellingListIndex); 2442 else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr)) 2443 NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(), 2444 AttrSpellingListIndex); 2445 else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr)) 2446 NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(), 2447 AttrSpellingListIndex); 2448 else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr)) 2449 NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(), 2450 AttrSpellingListIndex); 2451 else if (const auto *FA = dyn_cast<FormatAttr>(Attr)) 2452 NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(), 2453 FA->getFormatIdx(), FA->getFirstArg(), 2454 AttrSpellingListIndex); 2455 else if (const auto *SA = dyn_cast<SectionAttr>(Attr)) 2456 NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(), 2457 AttrSpellingListIndex); 2458 else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr)) 2459 NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(), 2460 AttrSpellingListIndex, 2461 IA->getSemanticSpelling()); 2462 else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr)) 2463 NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(), 2464 &S.Context.Idents.get(AA->getSpelling()), 2465 AttrSpellingListIndex); 2466 else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) && 2467 (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) || 2468 isa<CUDAGlobalAttr>(Attr))) { 2469 // CUDA target attributes are part of function signature for 2470 // overloading purposes and must not be merged. 2471 return false; 2472 } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr)) 2473 NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex); 2474 else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr)) 2475 NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex); 2476 else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr)) 2477 NewAttr = S.mergeInternalLinkageAttr( 2478 D, InternalLinkageA->getRange(), 2479 &S.Context.Idents.get(InternalLinkageA->getSpelling()), 2480 AttrSpellingListIndex); 2481 else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr)) 2482 NewAttr = S.mergeCommonAttr(D, CommonA->getRange(), 2483 &S.Context.Idents.get(CommonA->getSpelling()), 2484 AttrSpellingListIndex); 2485 else if (isa<AlignedAttr>(Attr)) 2486 // AlignedAttrs are handled separately, because we need to handle all 2487 // such attributes on a declaration at the same time. 2488 NewAttr = nullptr; 2489 else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) && 2490 (AMK == Sema::AMK_Override || 2491 AMK == Sema::AMK_ProtocolImplementation)) 2492 NewAttr = nullptr; 2493 else if (const auto *UA = dyn_cast<UuidAttr>(Attr)) 2494 NewAttr = S.mergeUuidAttr(D, UA->getRange(), AttrSpellingListIndex, 2495 UA->getGuid()); 2496 else if (Attr->shouldInheritEvenIfAlreadyPresent() || !DeclHasAttr(D, Attr)) 2497 NewAttr = cast<InheritableAttr>(Attr->clone(S.Context)); 2498 2499 if (NewAttr) { 2500 NewAttr->setInherited(true); 2501 D->addAttr(NewAttr); 2502 if (isa<MSInheritanceAttr>(NewAttr)) 2503 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D)); 2504 return true; 2505 } 2506 2507 return false; 2508 } 2509 2510 static const NamedDecl *getDefinition(const Decl *D) { 2511 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) 2512 return TD->getDefinition(); 2513 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 2514 const VarDecl *Def = VD->getDefinition(); 2515 if (Def) 2516 return Def; 2517 return VD->getActingDefinition(); 2518 } 2519 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 2520 return FD->getDefinition(); 2521 return nullptr; 2522 } 2523 2524 static bool hasAttribute(const Decl *D, attr::Kind Kind) { 2525 for (const auto *Attribute : D->attrs()) 2526 if (Attribute->getKind() == Kind) 2527 return true; 2528 return false; 2529 } 2530 2531 /// checkNewAttributesAfterDef - If we already have a definition, check that 2532 /// there are no new attributes in this declaration. 2533 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) { 2534 if (!New->hasAttrs()) 2535 return; 2536 2537 const NamedDecl *Def = getDefinition(Old); 2538 if (!Def || Def == New) 2539 return; 2540 2541 AttrVec &NewAttributes = New->getAttrs(); 2542 for (unsigned I = 0, E = NewAttributes.size(); I != E;) { 2543 const Attr *NewAttribute = NewAttributes[I]; 2544 2545 if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) { 2546 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) { 2547 Sema::SkipBodyInfo SkipBody; 2548 S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody); 2549 2550 // If we're skipping this definition, drop the "alias" attribute. 2551 if (SkipBody.ShouldSkip) { 2552 NewAttributes.erase(NewAttributes.begin() + I); 2553 --E; 2554 continue; 2555 } 2556 } else { 2557 VarDecl *VD = cast<VarDecl>(New); 2558 unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() == 2559 VarDecl::TentativeDefinition 2560 ? diag::err_alias_after_tentative 2561 : diag::err_redefinition; 2562 S.Diag(VD->getLocation(), Diag) << VD->getDeclName(); 2563 if (Diag == diag::err_redefinition) 2564 S.notePreviousDefinition(Def, VD->getLocation()); 2565 else 2566 S.Diag(Def->getLocation(), diag::note_previous_definition); 2567 VD->setInvalidDecl(); 2568 } 2569 ++I; 2570 continue; 2571 } 2572 2573 if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) { 2574 // Tentative definitions are only interesting for the alias check above. 2575 if (VD->isThisDeclarationADefinition() != VarDecl::Definition) { 2576 ++I; 2577 continue; 2578 } 2579 } 2580 2581 if (hasAttribute(Def, NewAttribute->getKind())) { 2582 ++I; 2583 continue; // regular attr merging will take care of validating this. 2584 } 2585 2586 if (isa<C11NoReturnAttr>(NewAttribute)) { 2587 // C's _Noreturn is allowed to be added to a function after it is defined. 2588 ++I; 2589 continue; 2590 } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) { 2591 if (AA->isAlignas()) { 2592 // C++11 [dcl.align]p6: 2593 // if any declaration of an entity has an alignment-specifier, 2594 // every defining declaration of that entity shall specify an 2595 // equivalent alignment. 2596 // C11 6.7.5/7: 2597 // If the definition of an object does not have an alignment 2598 // specifier, any other declaration of that object shall also 2599 // have no alignment specifier. 2600 S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition) 2601 << AA; 2602 S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration) 2603 << AA; 2604 NewAttributes.erase(NewAttributes.begin() + I); 2605 --E; 2606 continue; 2607 } 2608 } 2609 2610 S.Diag(NewAttribute->getLocation(), 2611 diag::warn_attribute_precede_definition); 2612 S.Diag(Def->getLocation(), diag::note_previous_definition); 2613 NewAttributes.erase(NewAttributes.begin() + I); 2614 --E; 2615 } 2616 } 2617 2618 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one. 2619 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old, 2620 AvailabilityMergeKind AMK) { 2621 if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) { 2622 UsedAttr *NewAttr = OldAttr->clone(Context); 2623 NewAttr->setInherited(true); 2624 New->addAttr(NewAttr); 2625 } 2626 2627 if (!Old->hasAttrs() && !New->hasAttrs()) 2628 return; 2629 2630 // Attributes declared post-definition are currently ignored. 2631 checkNewAttributesAfterDef(*this, New, Old); 2632 2633 if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) { 2634 if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) { 2635 if (OldA->getLabel() != NewA->getLabel()) { 2636 // This redeclaration changes __asm__ label. 2637 Diag(New->getLocation(), diag::err_different_asm_label); 2638 Diag(OldA->getLocation(), diag::note_previous_declaration); 2639 } 2640 } else if (Old->isUsed()) { 2641 // This redeclaration adds an __asm__ label to a declaration that has 2642 // already been ODR-used. 2643 Diag(New->getLocation(), diag::err_late_asm_label_name) 2644 << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange(); 2645 } 2646 } 2647 2648 // Re-declaration cannot add abi_tag's. 2649 if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) { 2650 if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) { 2651 for (const auto &NewTag : NewAbiTagAttr->tags()) { 2652 if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(), 2653 NewTag) == OldAbiTagAttr->tags_end()) { 2654 Diag(NewAbiTagAttr->getLocation(), 2655 diag::err_new_abi_tag_on_redeclaration) 2656 << NewTag; 2657 Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration); 2658 } 2659 } 2660 } else { 2661 Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration); 2662 Diag(Old->getLocation(), diag::note_previous_declaration); 2663 } 2664 } 2665 2666 // This redeclaration adds a section attribute. 2667 if (New->hasAttr<SectionAttr>() && !Old->hasAttr<SectionAttr>()) { 2668 if (auto *VD = dyn_cast<VarDecl>(New)) { 2669 if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly) { 2670 Diag(New->getLocation(), diag::warn_attribute_section_on_redeclaration); 2671 Diag(Old->getLocation(), diag::note_previous_declaration); 2672 } 2673 } 2674 } 2675 2676 if (!Old->hasAttrs()) 2677 return; 2678 2679 bool foundAny = New->hasAttrs(); 2680 2681 // Ensure that any moving of objects within the allocated map is done before 2682 // we process them. 2683 if (!foundAny) New->setAttrs(AttrVec()); 2684 2685 for (auto *I : Old->specific_attrs<InheritableAttr>()) { 2686 // Ignore deprecated/unavailable/availability attributes if requested. 2687 AvailabilityMergeKind LocalAMK = AMK_None; 2688 if (isa<DeprecatedAttr>(I) || 2689 isa<UnavailableAttr>(I) || 2690 isa<AvailabilityAttr>(I)) { 2691 switch (AMK) { 2692 case AMK_None: 2693 continue; 2694 2695 case AMK_Redeclaration: 2696 case AMK_Override: 2697 case AMK_ProtocolImplementation: 2698 LocalAMK = AMK; 2699 break; 2700 } 2701 } 2702 2703 // Already handled. 2704 if (isa<UsedAttr>(I)) 2705 continue; 2706 2707 if (mergeDeclAttribute(*this, New, I, LocalAMK)) 2708 foundAny = true; 2709 } 2710 2711 if (mergeAlignedAttrs(*this, New, Old)) 2712 foundAny = true; 2713 2714 if (!foundAny) New->dropAttrs(); 2715 } 2716 2717 /// mergeParamDeclAttributes - Copy attributes from the old parameter 2718 /// to the new one. 2719 static void mergeParamDeclAttributes(ParmVarDecl *newDecl, 2720 const ParmVarDecl *oldDecl, 2721 Sema &S) { 2722 // C++11 [dcl.attr.depend]p2: 2723 // The first declaration of a function shall specify the 2724 // carries_dependency attribute for its declarator-id if any declaration 2725 // of the function specifies the carries_dependency attribute. 2726 const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>(); 2727 if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) { 2728 S.Diag(CDA->getLocation(), 2729 diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/; 2730 // Find the first declaration of the parameter. 2731 // FIXME: Should we build redeclaration chains for function parameters? 2732 const FunctionDecl *FirstFD = 2733 cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl(); 2734 const ParmVarDecl *FirstVD = 2735 FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex()); 2736 S.Diag(FirstVD->getLocation(), 2737 diag::note_carries_dependency_missing_first_decl) << 1/*Param*/; 2738 } 2739 2740 if (!oldDecl->hasAttrs()) 2741 return; 2742 2743 bool foundAny = newDecl->hasAttrs(); 2744 2745 // Ensure that any moving of objects within the allocated map is 2746 // done before we process them. 2747 if (!foundAny) newDecl->setAttrs(AttrVec()); 2748 2749 for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) { 2750 if (!DeclHasAttr(newDecl, I)) { 2751 InheritableAttr *newAttr = 2752 cast<InheritableParamAttr>(I->clone(S.Context)); 2753 newAttr->setInherited(true); 2754 newDecl->addAttr(newAttr); 2755 foundAny = true; 2756 } 2757 } 2758 2759 if (!foundAny) newDecl->dropAttrs(); 2760 } 2761 2762 static void mergeParamDeclTypes(ParmVarDecl *NewParam, 2763 const ParmVarDecl *OldParam, 2764 Sema &S) { 2765 if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) { 2766 if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) { 2767 if (*Oldnullability != *Newnullability) { 2768 S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr) 2769 << DiagNullabilityKind( 2770 *Newnullability, 2771 ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) 2772 != 0)) 2773 << DiagNullabilityKind( 2774 *Oldnullability, 2775 ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability) 2776 != 0)); 2777 S.Diag(OldParam->getLocation(), diag::note_previous_declaration); 2778 } 2779 } else { 2780 QualType NewT = NewParam->getType(); 2781 NewT = S.Context.getAttributedType( 2782 AttributedType::getNullabilityAttrKind(*Oldnullability), 2783 NewT, NewT); 2784 NewParam->setType(NewT); 2785 } 2786 } 2787 } 2788 2789 namespace { 2790 2791 /// Used in MergeFunctionDecl to keep track of function parameters in 2792 /// C. 2793 struct GNUCompatibleParamWarning { 2794 ParmVarDecl *OldParm; 2795 ParmVarDecl *NewParm; 2796 QualType PromotedType; 2797 }; 2798 2799 } // end anonymous namespace 2800 2801 /// getSpecialMember - get the special member enum for a method. 2802 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) { 2803 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) { 2804 if (Ctor->isDefaultConstructor()) 2805 return Sema::CXXDefaultConstructor; 2806 2807 if (Ctor->isCopyConstructor()) 2808 return Sema::CXXCopyConstructor; 2809 2810 if (Ctor->isMoveConstructor()) 2811 return Sema::CXXMoveConstructor; 2812 } else if (isa<CXXDestructorDecl>(MD)) { 2813 return Sema::CXXDestructor; 2814 } else if (MD->isCopyAssignmentOperator()) { 2815 return Sema::CXXCopyAssignment; 2816 } else if (MD->isMoveAssignmentOperator()) { 2817 return Sema::CXXMoveAssignment; 2818 } 2819 2820 return Sema::CXXInvalid; 2821 } 2822 2823 // Determine whether the previous declaration was a definition, implicit 2824 // declaration, or a declaration. 2825 template <typename T> 2826 static std::pair<diag::kind, SourceLocation> 2827 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) { 2828 diag::kind PrevDiag; 2829 SourceLocation OldLocation = Old->getLocation(); 2830 if (Old->isThisDeclarationADefinition()) 2831 PrevDiag = diag::note_previous_definition; 2832 else if (Old->isImplicit()) { 2833 PrevDiag = diag::note_previous_implicit_declaration; 2834 if (OldLocation.isInvalid()) 2835 OldLocation = New->getLocation(); 2836 } else 2837 PrevDiag = diag::note_previous_declaration; 2838 return std::make_pair(PrevDiag, OldLocation); 2839 } 2840 2841 /// canRedefineFunction - checks if a function can be redefined. Currently, 2842 /// only extern inline functions can be redefined, and even then only in 2843 /// GNU89 mode. 2844 static bool canRedefineFunction(const FunctionDecl *FD, 2845 const LangOptions& LangOpts) { 2846 return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) && 2847 !LangOpts.CPlusPlus && 2848 FD->isInlineSpecified() && 2849 FD->getStorageClass() == SC_Extern); 2850 } 2851 2852 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const { 2853 const AttributedType *AT = T->getAs<AttributedType>(); 2854 while (AT && !AT->isCallingConv()) 2855 AT = AT->getModifiedType()->getAs<AttributedType>(); 2856 return AT; 2857 } 2858 2859 template <typename T> 2860 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) { 2861 const DeclContext *DC = Old->getDeclContext(); 2862 if (DC->isRecord()) 2863 return false; 2864 2865 LanguageLinkage OldLinkage = Old->getLanguageLinkage(); 2866 if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext()) 2867 return true; 2868 if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext()) 2869 return true; 2870 return false; 2871 } 2872 2873 template<typename T> static bool isExternC(T *D) { return D->isExternC(); } 2874 static bool isExternC(VarTemplateDecl *) { return false; } 2875 2876 /// \brief Check whether a redeclaration of an entity introduced by a 2877 /// using-declaration is valid, given that we know it's not an overload 2878 /// (nor a hidden tag declaration). 2879 template<typename ExpectedDecl> 2880 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS, 2881 ExpectedDecl *New) { 2882 // C++11 [basic.scope.declarative]p4: 2883 // Given a set of declarations in a single declarative region, each of 2884 // which specifies the same unqualified name, 2885 // -- they shall all refer to the same entity, or all refer to functions 2886 // and function templates; or 2887 // -- exactly one declaration shall declare a class name or enumeration 2888 // name that is not a typedef name and the other declarations shall all 2889 // refer to the same variable or enumerator, or all refer to functions 2890 // and function templates; in this case the class name or enumeration 2891 // name is hidden (3.3.10). 2892 2893 // C++11 [namespace.udecl]p14: 2894 // If a function declaration in namespace scope or block scope has the 2895 // same name and the same parameter-type-list as a function introduced 2896 // by a using-declaration, and the declarations do not declare the same 2897 // function, the program is ill-formed. 2898 2899 auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl()); 2900 if (Old && 2901 !Old->getDeclContext()->getRedeclContext()->Equals( 2902 New->getDeclContext()->getRedeclContext()) && 2903 !(isExternC(Old) && isExternC(New))) 2904 Old = nullptr; 2905 2906 if (!Old) { 2907 S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse); 2908 S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target); 2909 S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0; 2910 return true; 2911 } 2912 return false; 2913 } 2914 2915 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A, 2916 const FunctionDecl *B) { 2917 assert(A->getNumParams() == B->getNumParams()); 2918 2919 auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) { 2920 const auto *AttrA = A->getAttr<PassObjectSizeAttr>(); 2921 const auto *AttrB = B->getAttr<PassObjectSizeAttr>(); 2922 if (AttrA == AttrB) 2923 return true; 2924 return AttrA && AttrB && AttrA->getType() == AttrB->getType(); 2925 }; 2926 2927 return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq); 2928 } 2929 2930 /// If necessary, adjust the semantic declaration context for a qualified 2931 /// declaration to name the correct inline namespace within the qualifier. 2932 static void adjustDeclContextForDeclaratorDecl(DeclaratorDecl *NewD, 2933 DeclaratorDecl *OldD) { 2934 // The only case where we need to update the DeclContext is when 2935 // redeclaration lookup for a qualified name finds a declaration 2936 // in an inline namespace within the context named by the qualifier: 2937 // 2938 // inline namespace N { int f(); } 2939 // int ::f(); // Sema DC needs adjusting from :: to N::. 2940 // 2941 // For unqualified declarations, the semantic context *can* change 2942 // along the redeclaration chain (for local extern declarations, 2943 // extern "C" declarations, and friend declarations in particular). 2944 if (!NewD->getQualifier()) 2945 return; 2946 2947 // NewD is probably already in the right context. 2948 auto *NamedDC = NewD->getDeclContext()->getRedeclContext(); 2949 auto *SemaDC = OldD->getDeclContext()->getRedeclContext(); 2950 if (NamedDC->Equals(SemaDC)) 2951 return; 2952 2953 assert((NamedDC->InEnclosingNamespaceSetOf(SemaDC) || 2954 NewD->isInvalidDecl() || OldD->isInvalidDecl()) && 2955 "unexpected context for redeclaration"); 2956 2957 auto *LexDC = NewD->getLexicalDeclContext(); 2958 auto FixSemaDC = [=](NamedDecl *D) { 2959 if (!D) 2960 return; 2961 D->setDeclContext(SemaDC); 2962 D->setLexicalDeclContext(LexDC); 2963 }; 2964 2965 FixSemaDC(NewD); 2966 if (auto *FD = dyn_cast<FunctionDecl>(NewD)) 2967 FixSemaDC(FD->getDescribedFunctionTemplate()); 2968 else if (auto *VD = dyn_cast<VarDecl>(NewD)) 2969 FixSemaDC(VD->getDescribedVarTemplate()); 2970 } 2971 2972 /// MergeFunctionDecl - We just parsed a function 'New' from 2973 /// declarator D which has the same name and scope as a previous 2974 /// declaration 'Old'. Figure out how to resolve this situation, 2975 /// merging decls or emitting diagnostics as appropriate. 2976 /// 2977 /// In C++, New and Old must be declarations that are not 2978 /// overloaded. Use IsOverload to determine whether New and Old are 2979 /// overloaded, and to select the Old declaration that New should be 2980 /// merged with. 2981 /// 2982 /// Returns true if there was an error, false otherwise. 2983 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD, 2984 Scope *S, bool MergeTypeWithOld) { 2985 // Verify the old decl was also a function. 2986 FunctionDecl *Old = OldD->getAsFunction(); 2987 if (!Old) { 2988 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) { 2989 if (New->getFriendObjectKind()) { 2990 Diag(New->getLocation(), diag::err_using_decl_friend); 2991 Diag(Shadow->getTargetDecl()->getLocation(), 2992 diag::note_using_decl_target); 2993 Diag(Shadow->getUsingDecl()->getLocation(), 2994 diag::note_using_decl) << 0; 2995 return true; 2996 } 2997 2998 // Check whether the two declarations might declare the same function. 2999 if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New)) 3000 return true; 3001 OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl()); 3002 } else { 3003 Diag(New->getLocation(), diag::err_redefinition_different_kind) 3004 << New->getDeclName(); 3005 notePreviousDefinition(OldD, New->getLocation()); 3006 return true; 3007 } 3008 } 3009 3010 // If the old declaration is invalid, just give up here. 3011 if (Old->isInvalidDecl()) 3012 return true; 3013 3014 diag::kind PrevDiag; 3015 SourceLocation OldLocation; 3016 std::tie(PrevDiag, OldLocation) = 3017 getNoteDiagForInvalidRedeclaration(Old, New); 3018 3019 // Don't complain about this if we're in GNU89 mode and the old function 3020 // is an extern inline function. 3021 // Don't complain about specializations. They are not supposed to have 3022 // storage classes. 3023 if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) && 3024 New->getStorageClass() == SC_Static && 3025 Old->hasExternalFormalLinkage() && 3026 !New->getTemplateSpecializationInfo() && 3027 !canRedefineFunction(Old, getLangOpts())) { 3028 if (getLangOpts().MicrosoftExt) { 3029 Diag(New->getLocation(), diag::ext_static_non_static) << New; 3030 Diag(OldLocation, PrevDiag); 3031 } else { 3032 Diag(New->getLocation(), diag::err_static_non_static) << New; 3033 Diag(OldLocation, PrevDiag); 3034 return true; 3035 } 3036 } 3037 3038 if (New->hasAttr<InternalLinkageAttr>() && 3039 !Old->hasAttr<InternalLinkageAttr>()) { 3040 Diag(New->getLocation(), diag::err_internal_linkage_redeclaration) 3041 << New->getDeclName(); 3042 notePreviousDefinition(Old, New->getLocation()); 3043 New->dropAttr<InternalLinkageAttr>(); 3044 } 3045 3046 if (CheckRedeclarationModuleOwnership(New, Old)) 3047 return true; 3048 3049 if (!getLangOpts().CPlusPlus) { 3050 bool OldOvl = Old->hasAttr<OverloadableAttr>(); 3051 if (OldOvl != New->hasAttr<OverloadableAttr>() && !Old->isImplicit()) { 3052 Diag(New->getLocation(), diag::err_attribute_overloadable_mismatch) 3053 << New << OldOvl; 3054 3055 // Try our best to find a decl that actually has the overloadable 3056 // attribute for the note. In most cases (e.g. programs with only one 3057 // broken declaration/definition), this won't matter. 3058 // 3059 // FIXME: We could do this if we juggled some extra state in 3060 // OverloadableAttr, rather than just removing it. 3061 const Decl *DiagOld = Old; 3062 if (OldOvl) { 3063 auto OldIter = llvm::find_if(Old->redecls(), [](const Decl *D) { 3064 const auto *A = D->getAttr<OverloadableAttr>(); 3065 return A && !A->isImplicit(); 3066 }); 3067 // If we've implicitly added *all* of the overloadable attrs to this 3068 // chain, emitting a "previous redecl" note is pointless. 3069 DiagOld = OldIter == Old->redecls_end() ? nullptr : *OldIter; 3070 } 3071 3072 if (DiagOld) 3073 Diag(DiagOld->getLocation(), 3074 diag::note_attribute_overloadable_prev_overload) 3075 << OldOvl; 3076 3077 if (OldOvl) 3078 New->addAttr(OverloadableAttr::CreateImplicit(Context)); 3079 else 3080 New->dropAttr<OverloadableAttr>(); 3081 } 3082 } 3083 3084 // If a function is first declared with a calling convention, but is later 3085 // declared or defined without one, all following decls assume the calling 3086 // convention of the first. 3087 // 3088 // It's OK if a function is first declared without a calling convention, 3089 // but is later declared or defined with the default calling convention. 3090 // 3091 // To test if either decl has an explicit calling convention, we look for 3092 // AttributedType sugar nodes on the type as written. If they are missing or 3093 // were canonicalized away, we assume the calling convention was implicit. 3094 // 3095 // Note also that we DO NOT return at this point, because we still have 3096 // other tests to run. 3097 QualType OldQType = Context.getCanonicalType(Old->getType()); 3098 QualType NewQType = Context.getCanonicalType(New->getType()); 3099 const FunctionType *OldType = cast<FunctionType>(OldQType); 3100 const FunctionType *NewType = cast<FunctionType>(NewQType); 3101 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); 3102 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); 3103 bool RequiresAdjustment = false; 3104 3105 if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) { 3106 FunctionDecl *First = Old->getFirstDecl(); 3107 const FunctionType *FT = 3108 First->getType().getCanonicalType()->castAs<FunctionType>(); 3109 FunctionType::ExtInfo FI = FT->getExtInfo(); 3110 bool NewCCExplicit = getCallingConvAttributedType(New->getType()); 3111 if (!NewCCExplicit) { 3112 // Inherit the CC from the previous declaration if it was specified 3113 // there but not here. 3114 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC()); 3115 RequiresAdjustment = true; 3116 } else { 3117 // Calling conventions aren't compatible, so complain. 3118 bool FirstCCExplicit = getCallingConvAttributedType(First->getType()); 3119 Diag(New->getLocation(), diag::err_cconv_change) 3120 << FunctionType::getNameForCallConv(NewTypeInfo.getCC()) 3121 << !FirstCCExplicit 3122 << (!FirstCCExplicit ? "" : 3123 FunctionType::getNameForCallConv(FI.getCC())); 3124 3125 // Put the note on the first decl, since it is the one that matters. 3126 Diag(First->getLocation(), diag::note_previous_declaration); 3127 return true; 3128 } 3129 } 3130 3131 // FIXME: diagnose the other way around? 3132 if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) { 3133 NewTypeInfo = NewTypeInfo.withNoReturn(true); 3134 RequiresAdjustment = true; 3135 } 3136 3137 // Merge regparm attribute. 3138 if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() || 3139 OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) { 3140 if (NewTypeInfo.getHasRegParm()) { 3141 Diag(New->getLocation(), diag::err_regparm_mismatch) 3142 << NewType->getRegParmType() 3143 << OldType->getRegParmType(); 3144 Diag(OldLocation, diag::note_previous_declaration); 3145 return true; 3146 } 3147 3148 NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm()); 3149 RequiresAdjustment = true; 3150 } 3151 3152 // Merge ns_returns_retained attribute. 3153 if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) { 3154 if (NewTypeInfo.getProducesResult()) { 3155 Diag(New->getLocation(), diag::err_function_attribute_mismatch) 3156 << "'ns_returns_retained'"; 3157 Diag(OldLocation, diag::note_previous_declaration); 3158 return true; 3159 } 3160 3161 NewTypeInfo = NewTypeInfo.withProducesResult(true); 3162 RequiresAdjustment = true; 3163 } 3164 3165 if (OldTypeInfo.getNoCallerSavedRegs() != 3166 NewTypeInfo.getNoCallerSavedRegs()) { 3167 if (NewTypeInfo.getNoCallerSavedRegs()) { 3168 AnyX86NoCallerSavedRegistersAttr *Attr = 3169 New->getAttr<AnyX86NoCallerSavedRegistersAttr>(); 3170 Diag(New->getLocation(), diag::err_function_attribute_mismatch) << Attr; 3171 Diag(OldLocation, diag::note_previous_declaration); 3172 return true; 3173 } 3174 3175 NewTypeInfo = NewTypeInfo.withNoCallerSavedRegs(true); 3176 RequiresAdjustment = true; 3177 } 3178 3179 if (RequiresAdjustment) { 3180 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); 3181 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); 3182 New->setType(QualType(AdjustedType, 0)); 3183 NewQType = Context.getCanonicalType(New->getType()); 3184 NewType = cast<FunctionType>(NewQType); 3185 } 3186 3187 // If this redeclaration makes the function inline, we may need to add it to 3188 // UndefinedButUsed. 3189 if (!Old->isInlined() && New->isInlined() && 3190 !New->hasAttr<GNUInlineAttr>() && 3191 !getLangOpts().GNUInline && 3192 Old->isUsed(false) && 3193 !Old->isDefined() && !New->isThisDeclarationADefinition()) 3194 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 3195 SourceLocation())); 3196 3197 // If this redeclaration makes it newly gnu_inline, we don't want to warn 3198 // about it. 3199 if (New->hasAttr<GNUInlineAttr>() && 3200 Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) { 3201 UndefinedButUsed.erase(Old->getCanonicalDecl()); 3202 } 3203 3204 // If pass_object_size params don't match up perfectly, this isn't a valid 3205 // redeclaration. 3206 if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() && 3207 !hasIdenticalPassObjectSizeAttrs(Old, New)) { 3208 Diag(New->getLocation(), diag::err_different_pass_object_size_params) 3209 << New->getDeclName(); 3210 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3211 return true; 3212 } 3213 3214 if (getLangOpts().CPlusPlus) { 3215 // C++1z [over.load]p2 3216 // Certain function declarations cannot be overloaded: 3217 // -- Function declarations that differ only in the return type, 3218 // the exception specification, or both cannot be overloaded. 3219 3220 // Check the exception specifications match. This may recompute the type of 3221 // both Old and New if it resolved exception specifications, so grab the 3222 // types again after this. Because this updates the type, we do this before 3223 // any of the other checks below, which may update the "de facto" NewQType 3224 // but do not necessarily update the type of New. 3225 if (CheckEquivalentExceptionSpec(Old, New)) 3226 return true; 3227 OldQType = Context.getCanonicalType(Old->getType()); 3228 NewQType = Context.getCanonicalType(New->getType()); 3229 3230 // Go back to the type source info to compare the declared return types, 3231 // per C++1y [dcl.type.auto]p13: 3232 // Redeclarations or specializations of a function or function template 3233 // with a declared return type that uses a placeholder type shall also 3234 // use that placeholder, not a deduced type. 3235 QualType OldDeclaredReturnType = 3236 (Old->getTypeSourceInfo() 3237 ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>() 3238 : OldType)->getReturnType(); 3239 QualType NewDeclaredReturnType = 3240 (New->getTypeSourceInfo() 3241 ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>() 3242 : NewType)->getReturnType(); 3243 if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) && 3244 !((NewQType->isDependentType() || OldQType->isDependentType()) && 3245 New->isLocalExternDecl())) { 3246 QualType ResQT; 3247 if (NewDeclaredReturnType->isObjCObjectPointerType() && 3248 OldDeclaredReturnType->isObjCObjectPointerType()) 3249 ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType); 3250 if (ResQT.isNull()) { 3251 if (New->isCXXClassMember() && New->isOutOfLine()) 3252 Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type) 3253 << New << New->getReturnTypeSourceRange(); 3254 else 3255 Diag(New->getLocation(), diag::err_ovl_diff_return_type) 3256 << New->getReturnTypeSourceRange(); 3257 Diag(OldLocation, PrevDiag) << Old << Old->getType() 3258 << Old->getReturnTypeSourceRange(); 3259 return true; 3260 } 3261 else 3262 NewQType = ResQT; 3263 } 3264 3265 QualType OldReturnType = OldType->getReturnType(); 3266 QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType(); 3267 if (OldReturnType != NewReturnType) { 3268 // If this function has a deduced return type and has already been 3269 // defined, copy the deduced value from the old declaration. 3270 AutoType *OldAT = Old->getReturnType()->getContainedAutoType(); 3271 if (OldAT && OldAT->isDeduced()) { 3272 New->setType( 3273 SubstAutoType(New->getType(), 3274 OldAT->isDependentType() ? Context.DependentTy 3275 : OldAT->getDeducedType())); 3276 NewQType = Context.getCanonicalType( 3277 SubstAutoType(NewQType, 3278 OldAT->isDependentType() ? Context.DependentTy 3279 : OldAT->getDeducedType())); 3280 } 3281 } 3282 3283 const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old); 3284 CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New); 3285 if (OldMethod && NewMethod) { 3286 // Preserve triviality. 3287 NewMethod->setTrivial(OldMethod->isTrivial()); 3288 3289 // MSVC allows explicit template specialization at class scope: 3290 // 2 CXXMethodDecls referring to the same function will be injected. 3291 // We don't want a redeclaration error. 3292 bool IsClassScopeExplicitSpecialization = 3293 OldMethod->isFunctionTemplateSpecialization() && 3294 NewMethod->isFunctionTemplateSpecialization(); 3295 bool isFriend = NewMethod->getFriendObjectKind(); 3296 3297 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() && 3298 !IsClassScopeExplicitSpecialization) { 3299 // -- Member function declarations with the same name and the 3300 // same parameter types cannot be overloaded if any of them 3301 // is a static member function declaration. 3302 if (OldMethod->isStatic() != NewMethod->isStatic()) { 3303 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member); 3304 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3305 return true; 3306 } 3307 3308 // C++ [class.mem]p1: 3309 // [...] A member shall not be declared twice in the 3310 // member-specification, except that a nested class or member 3311 // class template can be declared and then later defined. 3312 if (!inTemplateInstantiation()) { 3313 unsigned NewDiag; 3314 if (isa<CXXConstructorDecl>(OldMethod)) 3315 NewDiag = diag::err_constructor_redeclared; 3316 else if (isa<CXXDestructorDecl>(NewMethod)) 3317 NewDiag = diag::err_destructor_redeclared; 3318 else if (isa<CXXConversionDecl>(NewMethod)) 3319 NewDiag = diag::err_conv_function_redeclared; 3320 else 3321 NewDiag = diag::err_member_redeclared; 3322 3323 Diag(New->getLocation(), NewDiag); 3324 } else { 3325 Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation) 3326 << New << New->getType(); 3327 } 3328 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3329 return true; 3330 3331 // Complain if this is an explicit declaration of a special 3332 // member that was initially declared implicitly. 3333 // 3334 // As an exception, it's okay to befriend such methods in order 3335 // to permit the implicit constructor/destructor/operator calls. 3336 } else if (OldMethod->isImplicit()) { 3337 if (isFriend) { 3338 NewMethod->setImplicit(); 3339 } else { 3340 Diag(NewMethod->getLocation(), 3341 diag::err_definition_of_implicitly_declared_member) 3342 << New << getSpecialMember(OldMethod); 3343 return true; 3344 } 3345 } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) { 3346 Diag(NewMethod->getLocation(), 3347 diag::err_definition_of_explicitly_defaulted_member) 3348 << getSpecialMember(OldMethod); 3349 return true; 3350 } 3351 } 3352 3353 // C++11 [dcl.attr.noreturn]p1: 3354 // The first declaration of a function shall specify the noreturn 3355 // attribute if any declaration of that function specifies the noreturn 3356 // attribute. 3357 const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>(); 3358 if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) { 3359 Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl); 3360 Diag(Old->getFirstDecl()->getLocation(), 3361 diag::note_noreturn_missing_first_decl); 3362 } 3363 3364 // C++11 [dcl.attr.depend]p2: 3365 // The first declaration of a function shall specify the 3366 // carries_dependency attribute for its declarator-id if any declaration 3367 // of the function specifies the carries_dependency attribute. 3368 const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>(); 3369 if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) { 3370 Diag(CDA->getLocation(), 3371 diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/; 3372 Diag(Old->getFirstDecl()->getLocation(), 3373 diag::note_carries_dependency_missing_first_decl) << 0/*Function*/; 3374 } 3375 3376 // (C++98 8.3.5p3): 3377 // All declarations for a function shall agree exactly in both the 3378 // return type and the parameter-type-list. 3379 // We also want to respect all the extended bits except noreturn. 3380 3381 // noreturn should now match unless the old type info didn't have it. 3382 QualType OldQTypeForComparison = OldQType; 3383 if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) { 3384 auto *OldType = OldQType->castAs<FunctionProtoType>(); 3385 const FunctionType *OldTypeForComparison 3386 = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true)); 3387 OldQTypeForComparison = QualType(OldTypeForComparison, 0); 3388 assert(OldQTypeForComparison.isCanonical()); 3389 } 3390 3391 if (haveIncompatibleLanguageLinkages(Old, New)) { 3392 // As a special case, retain the language linkage from previous 3393 // declarations of a friend function as an extension. 3394 // 3395 // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC 3396 // and is useful because there's otherwise no way to specify language 3397 // linkage within class scope. 3398 // 3399 // Check cautiously as the friend object kind isn't yet complete. 3400 if (New->getFriendObjectKind() != Decl::FOK_None) { 3401 Diag(New->getLocation(), diag::ext_retained_language_linkage) << New; 3402 Diag(OldLocation, PrevDiag); 3403 } else { 3404 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 3405 Diag(OldLocation, PrevDiag); 3406 return true; 3407 } 3408 } 3409 3410 if (OldQTypeForComparison == NewQType) 3411 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3412 3413 if ((NewQType->isDependentType() || OldQType->isDependentType()) && 3414 New->isLocalExternDecl()) { 3415 // It's OK if we couldn't merge types for a local function declaraton 3416 // if either the old or new type is dependent. We'll merge the types 3417 // when we instantiate the function. 3418 return false; 3419 } 3420 3421 // Fall through for conflicting redeclarations and redefinitions. 3422 } 3423 3424 // C: Function types need to be compatible, not identical. This handles 3425 // duplicate function decls like "void f(int); void f(enum X);" properly. 3426 if (!getLangOpts().CPlusPlus && 3427 Context.typesAreCompatible(OldQType, NewQType)) { 3428 const FunctionType *OldFuncType = OldQType->getAs<FunctionType>(); 3429 const FunctionType *NewFuncType = NewQType->getAs<FunctionType>(); 3430 const FunctionProtoType *OldProto = nullptr; 3431 if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) && 3432 (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) { 3433 // The old declaration provided a function prototype, but the 3434 // new declaration does not. Merge in the prototype. 3435 assert(!OldProto->hasExceptionSpec() && "Exception spec in C"); 3436 SmallVector<QualType, 16> ParamTypes(OldProto->param_types()); 3437 NewQType = 3438 Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes, 3439 OldProto->getExtProtoInfo()); 3440 New->setType(NewQType); 3441 New->setHasInheritedPrototype(); 3442 3443 // Synthesize parameters with the same types. 3444 SmallVector<ParmVarDecl*, 16> Params; 3445 for (const auto &ParamType : OldProto->param_types()) { 3446 ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(), 3447 SourceLocation(), nullptr, 3448 ParamType, /*TInfo=*/nullptr, 3449 SC_None, nullptr); 3450 Param->setScopeInfo(0, Params.size()); 3451 Param->setImplicit(); 3452 Params.push_back(Param); 3453 } 3454 3455 New->setParams(Params); 3456 } 3457 3458 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3459 } 3460 3461 // GNU C permits a K&R definition to follow a prototype declaration 3462 // if the declared types of the parameters in the K&R definition 3463 // match the types in the prototype declaration, even when the 3464 // promoted types of the parameters from the K&R definition differ 3465 // from the types in the prototype. GCC then keeps the types from 3466 // the prototype. 3467 // 3468 // If a variadic prototype is followed by a non-variadic K&R definition, 3469 // the K&R definition becomes variadic. This is sort of an edge case, but 3470 // it's legal per the standard depending on how you read C99 6.7.5.3p15 and 3471 // C99 6.9.1p8. 3472 if (!getLangOpts().CPlusPlus && 3473 Old->hasPrototype() && !New->hasPrototype() && 3474 New->getType()->getAs<FunctionProtoType>() && 3475 Old->getNumParams() == New->getNumParams()) { 3476 SmallVector<QualType, 16> ArgTypes; 3477 SmallVector<GNUCompatibleParamWarning, 16> Warnings; 3478 const FunctionProtoType *OldProto 3479 = Old->getType()->getAs<FunctionProtoType>(); 3480 const FunctionProtoType *NewProto 3481 = New->getType()->getAs<FunctionProtoType>(); 3482 3483 // Determine whether this is the GNU C extension. 3484 QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(), 3485 NewProto->getReturnType()); 3486 bool LooseCompatible = !MergedReturn.isNull(); 3487 for (unsigned Idx = 0, End = Old->getNumParams(); 3488 LooseCompatible && Idx != End; ++Idx) { 3489 ParmVarDecl *OldParm = Old->getParamDecl(Idx); 3490 ParmVarDecl *NewParm = New->getParamDecl(Idx); 3491 if (Context.typesAreCompatible(OldParm->getType(), 3492 NewProto->getParamType(Idx))) { 3493 ArgTypes.push_back(NewParm->getType()); 3494 } else if (Context.typesAreCompatible(OldParm->getType(), 3495 NewParm->getType(), 3496 /*CompareUnqualified=*/true)) { 3497 GNUCompatibleParamWarning Warn = { OldParm, NewParm, 3498 NewProto->getParamType(Idx) }; 3499 Warnings.push_back(Warn); 3500 ArgTypes.push_back(NewParm->getType()); 3501 } else 3502 LooseCompatible = false; 3503 } 3504 3505 if (LooseCompatible) { 3506 for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) { 3507 Diag(Warnings[Warn].NewParm->getLocation(), 3508 diag::ext_param_promoted_not_compatible_with_prototype) 3509 << Warnings[Warn].PromotedType 3510 << Warnings[Warn].OldParm->getType(); 3511 if (Warnings[Warn].OldParm->getLocation().isValid()) 3512 Diag(Warnings[Warn].OldParm->getLocation(), 3513 diag::note_previous_declaration); 3514 } 3515 3516 if (MergeTypeWithOld) 3517 New->setType(Context.getFunctionType(MergedReturn, ArgTypes, 3518 OldProto->getExtProtoInfo())); 3519 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld); 3520 } 3521 3522 // Fall through to diagnose conflicting types. 3523 } 3524 3525 // A function that has already been declared has been redeclared or 3526 // defined with a different type; show an appropriate diagnostic. 3527 3528 // If the previous declaration was an implicitly-generated builtin 3529 // declaration, then at the very least we should use a specialized note. 3530 unsigned BuiltinID; 3531 if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) { 3532 // If it's actually a library-defined builtin function like 'malloc' 3533 // or 'printf', just warn about the incompatible redeclaration. 3534 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { 3535 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New; 3536 Diag(OldLocation, diag::note_previous_builtin_declaration) 3537 << Old << Old->getType(); 3538 3539 // If this is a global redeclaration, just forget hereafter 3540 // about the "builtin-ness" of the function. 3541 // 3542 // Doing this for local extern declarations is problematic. If 3543 // the builtin declaration remains visible, a second invalid 3544 // local declaration will produce a hard error; if it doesn't 3545 // remain visible, a single bogus local redeclaration (which is 3546 // actually only a warning) could break all the downstream code. 3547 if (!New->getLexicalDeclContext()->isFunctionOrMethod()) 3548 New->getIdentifier()->revertBuiltin(); 3549 3550 return false; 3551 } 3552 3553 PrevDiag = diag::note_previous_builtin_declaration; 3554 } 3555 3556 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName(); 3557 Diag(OldLocation, PrevDiag) << Old << Old->getType(); 3558 return true; 3559 } 3560 3561 /// \brief Completes the merge of two function declarations that are 3562 /// known to be compatible. 3563 /// 3564 /// This routine handles the merging of attributes and other 3565 /// properties of function declarations from the old declaration to 3566 /// the new declaration, once we know that New is in fact a 3567 /// redeclaration of Old. 3568 /// 3569 /// \returns false 3570 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, 3571 Scope *S, bool MergeTypeWithOld) { 3572 // Merge the attributes 3573 mergeDeclAttributes(New, Old); 3574 3575 // Merge "pure" flag. 3576 if (Old->isPure()) 3577 New->setPure(); 3578 3579 // Merge "used" flag. 3580 if (Old->getMostRecentDecl()->isUsed(false)) 3581 New->setIsUsed(); 3582 3583 // Merge attributes from the parameters. These can mismatch with K&R 3584 // declarations. 3585 if (New->getNumParams() == Old->getNumParams()) 3586 for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) { 3587 ParmVarDecl *NewParam = New->getParamDecl(i); 3588 ParmVarDecl *OldParam = Old->getParamDecl(i); 3589 mergeParamDeclAttributes(NewParam, OldParam, *this); 3590 mergeParamDeclTypes(NewParam, OldParam, *this); 3591 } 3592 3593 if (getLangOpts().CPlusPlus) 3594 return MergeCXXFunctionDecl(New, Old, S); 3595 3596 // Merge the function types so the we get the composite types for the return 3597 // and argument types. Per C11 6.2.7/4, only update the type if the old decl 3598 // was visible. 3599 QualType Merged = Context.mergeTypes(Old->getType(), New->getType()); 3600 if (!Merged.isNull() && MergeTypeWithOld) 3601 New->setType(Merged); 3602 3603 return false; 3604 } 3605 3606 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod, 3607 ObjCMethodDecl *oldMethod) { 3608 // Merge the attributes, including deprecated/unavailable 3609 AvailabilityMergeKind MergeKind = 3610 isa<ObjCProtocolDecl>(oldMethod->getDeclContext()) 3611 ? AMK_ProtocolImplementation 3612 : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration 3613 : AMK_Override; 3614 3615 mergeDeclAttributes(newMethod, oldMethod, MergeKind); 3616 3617 // Merge attributes from the parameters. 3618 ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(), 3619 oe = oldMethod->param_end(); 3620 for (ObjCMethodDecl::param_iterator 3621 ni = newMethod->param_begin(), ne = newMethod->param_end(); 3622 ni != ne && oi != oe; ++ni, ++oi) 3623 mergeParamDeclAttributes(*ni, *oi, *this); 3624 3625 CheckObjCMethodOverride(newMethod, oldMethod); 3626 } 3627 3628 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) { 3629 assert(!S.Context.hasSameType(New->getType(), Old->getType())); 3630 3631 S.Diag(New->getLocation(), New->isThisDeclarationADefinition() 3632 ? diag::err_redefinition_different_type 3633 : diag::err_redeclaration_different_type) 3634 << New->getDeclName() << New->getType() << Old->getType(); 3635 3636 diag::kind PrevDiag; 3637 SourceLocation OldLocation; 3638 std::tie(PrevDiag, OldLocation) 3639 = getNoteDiagForInvalidRedeclaration(Old, New); 3640 S.Diag(OldLocation, PrevDiag); 3641 New->setInvalidDecl(); 3642 } 3643 3644 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and 3645 /// scope as a previous declaration 'Old'. Figure out how to merge their types, 3646 /// emitting diagnostics as appropriate. 3647 /// 3648 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back 3649 /// to here in AddInitializerToDecl. We can't check them before the initializer 3650 /// is attached. 3651 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old, 3652 bool MergeTypeWithOld) { 3653 if (New->isInvalidDecl() || Old->isInvalidDecl()) 3654 return; 3655 3656 QualType MergedT; 3657 if (getLangOpts().CPlusPlus) { 3658 if (New->getType()->isUndeducedType()) { 3659 // We don't know what the new type is until the initializer is attached. 3660 return; 3661 } else if (Context.hasSameType(New->getType(), Old->getType())) { 3662 // These could still be something that needs exception specs checked. 3663 return MergeVarDeclExceptionSpecs(New, Old); 3664 } 3665 // C++ [basic.link]p10: 3666 // [...] the types specified by all declarations referring to a given 3667 // object or function shall be identical, except that declarations for an 3668 // array object can specify array types that differ by the presence or 3669 // absence of a major array bound (8.3.4). 3670 else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) { 3671 const ArrayType *OldArray = Context.getAsArrayType(Old->getType()); 3672 const ArrayType *NewArray = Context.getAsArrayType(New->getType()); 3673 3674 // We are merging a variable declaration New into Old. If it has an array 3675 // bound, and that bound differs from Old's bound, we should diagnose the 3676 // mismatch. 3677 if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) { 3678 for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD; 3679 PrevVD = PrevVD->getPreviousDecl()) { 3680 const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType()); 3681 if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType()) 3682 continue; 3683 3684 if (!Context.hasSameType(NewArray, PrevVDTy)) 3685 return diagnoseVarDeclTypeMismatch(*this, New, PrevVD); 3686 } 3687 } 3688 3689 if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) { 3690 if (Context.hasSameType(OldArray->getElementType(), 3691 NewArray->getElementType())) 3692 MergedT = New->getType(); 3693 } 3694 // FIXME: Check visibility. New is hidden but has a complete type. If New 3695 // has no array bound, it should not inherit one from Old, if Old is not 3696 // visible. 3697 else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) { 3698 if (Context.hasSameType(OldArray->getElementType(), 3699 NewArray->getElementType())) 3700 MergedT = Old->getType(); 3701 } 3702 } 3703 else if (New->getType()->isObjCObjectPointerType() && 3704 Old->getType()->isObjCObjectPointerType()) { 3705 MergedT = Context.mergeObjCGCQualifiers(New->getType(), 3706 Old->getType()); 3707 } 3708 } else { 3709 // C 6.2.7p2: 3710 // All declarations that refer to the same object or function shall have 3711 // compatible type. 3712 MergedT = Context.mergeTypes(New->getType(), Old->getType()); 3713 } 3714 if (MergedT.isNull()) { 3715 // It's OK if we couldn't merge types if either type is dependent, for a 3716 // block-scope variable. In other cases (static data members of class 3717 // templates, variable templates, ...), we require the types to be 3718 // equivalent. 3719 // FIXME: The C++ standard doesn't say anything about this. 3720 if ((New->getType()->isDependentType() || 3721 Old->getType()->isDependentType()) && New->isLocalVarDecl()) { 3722 // If the old type was dependent, we can't merge with it, so the new type 3723 // becomes dependent for now. We'll reproduce the original type when we 3724 // instantiate the TypeSourceInfo for the variable. 3725 if (!New->getType()->isDependentType() && MergeTypeWithOld) 3726 New->setType(Context.DependentTy); 3727 return; 3728 } 3729 return diagnoseVarDeclTypeMismatch(*this, New, Old); 3730 } 3731 3732 // Don't actually update the type on the new declaration if the old 3733 // declaration was an extern declaration in a different scope. 3734 if (MergeTypeWithOld) 3735 New->setType(MergedT); 3736 } 3737 3738 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD, 3739 LookupResult &Previous) { 3740 // C11 6.2.7p4: 3741 // For an identifier with internal or external linkage declared 3742 // in a scope in which a prior declaration of that identifier is 3743 // visible, if the prior declaration specifies internal or 3744 // external linkage, the type of the identifier at the later 3745 // declaration becomes the composite type. 3746 // 3747 // If the variable isn't visible, we do not merge with its type. 3748 if (Previous.isShadowed()) 3749 return false; 3750 3751 if (S.getLangOpts().CPlusPlus) { 3752 // C++11 [dcl.array]p3: 3753 // If there is a preceding declaration of the entity in the same 3754 // scope in which the bound was specified, an omitted array bound 3755 // is taken to be the same as in that earlier declaration. 3756 return NewVD->isPreviousDeclInSameBlockScope() || 3757 (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() && 3758 !NewVD->getLexicalDeclContext()->isFunctionOrMethod()); 3759 } else { 3760 // If the old declaration was function-local, don't merge with its 3761 // type unless we're in the same function. 3762 return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() || 3763 OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext(); 3764 } 3765 } 3766 3767 /// MergeVarDecl - We just parsed a variable 'New' which has the same name 3768 /// and scope as a previous declaration 'Old'. Figure out how to resolve this 3769 /// situation, merging decls or emitting diagnostics as appropriate. 3770 /// 3771 /// Tentative definition rules (C99 6.9.2p2) are checked by 3772 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative 3773 /// definitions here, since the initializer hasn't been attached. 3774 /// 3775 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) { 3776 // If the new decl is already invalid, don't do any other checking. 3777 if (New->isInvalidDecl()) 3778 return; 3779 3780 if (!shouldLinkPossiblyHiddenDecl(Previous, New)) 3781 return; 3782 3783 VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate(); 3784 3785 // Verify the old decl was also a variable or variable template. 3786 VarDecl *Old = nullptr; 3787 VarTemplateDecl *OldTemplate = nullptr; 3788 if (Previous.isSingleResult()) { 3789 if (NewTemplate) { 3790 OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl()); 3791 Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr; 3792 3793 if (auto *Shadow = 3794 dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl())) 3795 if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate)) 3796 return New->setInvalidDecl(); 3797 } else { 3798 Old = dyn_cast<VarDecl>(Previous.getFoundDecl()); 3799 3800 if (auto *Shadow = 3801 dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl())) 3802 if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New)) 3803 return New->setInvalidDecl(); 3804 } 3805 } 3806 if (!Old) { 3807 Diag(New->getLocation(), diag::err_redefinition_different_kind) 3808 << New->getDeclName(); 3809 notePreviousDefinition(Previous.getRepresentativeDecl(), 3810 New->getLocation()); 3811 return New->setInvalidDecl(); 3812 } 3813 3814 // Ensure the template parameters are compatible. 3815 if (NewTemplate && 3816 !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(), 3817 OldTemplate->getTemplateParameters(), 3818 /*Complain=*/true, TPL_TemplateMatch)) 3819 return New->setInvalidDecl(); 3820 3821 // C++ [class.mem]p1: 3822 // A member shall not be declared twice in the member-specification [...] 3823 // 3824 // Here, we need only consider static data members. 3825 if (Old->isStaticDataMember() && !New->isOutOfLine()) { 3826 Diag(New->getLocation(), diag::err_duplicate_member) 3827 << New->getIdentifier(); 3828 Diag(Old->getLocation(), diag::note_previous_declaration); 3829 New->setInvalidDecl(); 3830 } 3831 3832 mergeDeclAttributes(New, Old); 3833 // Warn if an already-declared variable is made a weak_import in a subsequent 3834 // declaration 3835 if (New->hasAttr<WeakImportAttr>() && 3836 Old->getStorageClass() == SC_None && 3837 !Old->hasAttr<WeakImportAttr>()) { 3838 Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName(); 3839 notePreviousDefinition(Old, New->getLocation()); 3840 // Remove weak_import attribute on new declaration. 3841 New->dropAttr<WeakImportAttr>(); 3842 } 3843 3844 if (New->hasAttr<InternalLinkageAttr>() && 3845 !Old->hasAttr<InternalLinkageAttr>()) { 3846 Diag(New->getLocation(), diag::err_internal_linkage_redeclaration) 3847 << New->getDeclName(); 3848 notePreviousDefinition(Old, New->getLocation()); 3849 New->dropAttr<InternalLinkageAttr>(); 3850 } 3851 3852 // Merge the types. 3853 VarDecl *MostRecent = Old->getMostRecentDecl(); 3854 if (MostRecent != Old) { 3855 MergeVarDeclTypes(New, MostRecent, 3856 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); 3857 if (New->isInvalidDecl()) 3858 return; 3859 } 3860 3861 MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous)); 3862 if (New->isInvalidDecl()) 3863 return; 3864 3865 diag::kind PrevDiag; 3866 SourceLocation OldLocation; 3867 std::tie(PrevDiag, OldLocation) = 3868 getNoteDiagForInvalidRedeclaration(Old, New); 3869 3870 // [dcl.stc]p8: Check if we have a non-static decl followed by a static. 3871 if (New->getStorageClass() == SC_Static && 3872 !New->isStaticDataMember() && 3873 Old->hasExternalFormalLinkage()) { 3874 if (getLangOpts().MicrosoftExt) { 3875 Diag(New->getLocation(), diag::ext_static_non_static) 3876 << New->getDeclName(); 3877 Diag(OldLocation, PrevDiag); 3878 } else { 3879 Diag(New->getLocation(), diag::err_static_non_static) 3880 << New->getDeclName(); 3881 Diag(OldLocation, PrevDiag); 3882 return New->setInvalidDecl(); 3883 } 3884 } 3885 // C99 6.2.2p4: 3886 // For an identifier declared with the storage-class specifier 3887 // extern in a scope in which a prior declaration of that 3888 // identifier is visible,23) if the prior declaration specifies 3889 // internal or external linkage, the linkage of the identifier at 3890 // the later declaration is the same as the linkage specified at 3891 // the prior declaration. If no prior declaration is visible, or 3892 // if the prior declaration specifies no linkage, then the 3893 // identifier has external linkage. 3894 if (New->hasExternalStorage() && Old->hasLinkage()) 3895 /* Okay */; 3896 else if (New->getCanonicalDecl()->getStorageClass() != SC_Static && 3897 !New->isStaticDataMember() && 3898 Old->getCanonicalDecl()->getStorageClass() == SC_Static) { 3899 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName(); 3900 Diag(OldLocation, PrevDiag); 3901 return New->setInvalidDecl(); 3902 } 3903 3904 // Check if extern is followed by non-extern and vice-versa. 3905 if (New->hasExternalStorage() && 3906 !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) { 3907 Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName(); 3908 Diag(OldLocation, PrevDiag); 3909 return New->setInvalidDecl(); 3910 } 3911 if (Old->hasLinkage() && New->isLocalVarDeclOrParm() && 3912 !New->hasExternalStorage()) { 3913 Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName(); 3914 Diag(OldLocation, PrevDiag); 3915 return New->setInvalidDecl(); 3916 } 3917 3918 if (CheckRedeclarationModuleOwnership(New, Old)) 3919 return; 3920 3921 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup. 3922 3923 // FIXME: The test for external storage here seems wrong? We still 3924 // need to check for mismatches. 3925 if (!New->hasExternalStorage() && !New->isFileVarDecl() && 3926 // Don't complain about out-of-line definitions of static members. 3927 !(Old->getLexicalDeclContext()->isRecord() && 3928 !New->getLexicalDeclContext()->isRecord())) { 3929 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName(); 3930 Diag(OldLocation, PrevDiag); 3931 return New->setInvalidDecl(); 3932 } 3933 3934 if (New->isInline() && !Old->getMostRecentDecl()->isInline()) { 3935 if (VarDecl *Def = Old->getDefinition()) { 3936 // C++1z [dcl.fcn.spec]p4: 3937 // If the definition of a variable appears in a translation unit before 3938 // its first declaration as inline, the program is ill-formed. 3939 Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New; 3940 Diag(Def->getLocation(), diag::note_previous_definition); 3941 } 3942 } 3943 3944 // If this redeclaration makes the variable inline, we may need to add it to 3945 // UndefinedButUsed. 3946 if (!Old->isInline() && New->isInline() && Old->isUsed(false) && 3947 !Old->getDefinition() && !New->isThisDeclarationADefinition()) 3948 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 3949 SourceLocation())); 3950 3951 if (New->getTLSKind() != Old->getTLSKind()) { 3952 if (!Old->getTLSKind()) { 3953 Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName(); 3954 Diag(OldLocation, PrevDiag); 3955 } else if (!New->getTLSKind()) { 3956 Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName(); 3957 Diag(OldLocation, PrevDiag); 3958 } else { 3959 // Do not allow redeclaration to change the variable between requiring 3960 // static and dynamic initialization. 3961 // FIXME: GCC allows this, but uses the TLS keyword on the first 3962 // declaration to determine the kind. Do we need to be compatible here? 3963 Diag(New->getLocation(), diag::err_thread_thread_different_kind) 3964 << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic); 3965 Diag(OldLocation, PrevDiag); 3966 } 3967 } 3968 3969 // C++ doesn't have tentative definitions, so go right ahead and check here. 3970 if (getLangOpts().CPlusPlus && 3971 New->isThisDeclarationADefinition() == VarDecl::Definition) { 3972 if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() && 3973 Old->getCanonicalDecl()->isConstexpr()) { 3974 // This definition won't be a definition any more once it's been merged. 3975 Diag(New->getLocation(), 3976 diag::warn_deprecated_redundant_constexpr_static_def); 3977 } else if (VarDecl *Def = Old->getDefinition()) { 3978 if (checkVarDeclRedefinition(Def, New)) 3979 return; 3980 } 3981 } 3982 3983 if (haveIncompatibleLanguageLinkages(Old, New)) { 3984 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 3985 Diag(OldLocation, PrevDiag); 3986 New->setInvalidDecl(); 3987 return; 3988 } 3989 3990 // Merge "used" flag. 3991 if (Old->getMostRecentDecl()->isUsed(false)) 3992 New->setIsUsed(); 3993 3994 // Keep a chain of previous declarations. 3995 New->setPreviousDecl(Old); 3996 if (NewTemplate) 3997 NewTemplate->setPreviousDecl(OldTemplate); 3998 adjustDeclContextForDeclaratorDecl(New, Old); 3999 4000 // Inherit access appropriately. 4001 New->setAccess(Old->getAccess()); 4002 if (NewTemplate) 4003 NewTemplate->setAccess(New->getAccess()); 4004 4005 if (Old->isInline()) 4006 New->setImplicitlyInline(); 4007 } 4008 4009 void Sema::notePreviousDefinition(const NamedDecl *Old, SourceLocation New) { 4010 SourceManager &SrcMgr = getSourceManager(); 4011 auto FNewDecLoc = SrcMgr.getDecomposedLoc(New); 4012 auto FOldDecLoc = SrcMgr.getDecomposedLoc(Old->getLocation()); 4013 auto *FNew = SrcMgr.getFileEntryForID(FNewDecLoc.first); 4014 auto *FOld = SrcMgr.getFileEntryForID(FOldDecLoc.first); 4015 auto &HSI = PP.getHeaderSearchInfo(); 4016 StringRef HdrFilename = 4017 SrcMgr.getFilename(SrcMgr.getSpellingLoc(Old->getLocation())); 4018 4019 auto noteFromModuleOrInclude = [&](Module *Mod, 4020 SourceLocation IncLoc) -> bool { 4021 // Redefinition errors with modules are common with non modular mapped 4022 // headers, example: a non-modular header H in module A that also gets 4023 // included directly in a TU. Pointing twice to the same header/definition 4024 // is confusing, try to get better diagnostics when modules is on. 4025 if (IncLoc.isValid()) { 4026 if (Mod) { 4027 Diag(IncLoc, diag::note_redefinition_modules_same_file) 4028 << HdrFilename.str() << Mod->getFullModuleName(); 4029 if (!Mod->DefinitionLoc.isInvalid()) 4030 Diag(Mod->DefinitionLoc, diag::note_defined_here) 4031 << Mod->getFullModuleName(); 4032 } else { 4033 Diag(IncLoc, diag::note_redefinition_include_same_file) 4034 << HdrFilename.str(); 4035 } 4036 return true; 4037 } 4038 4039 return false; 4040 }; 4041 4042 // Is it the same file and same offset? Provide more information on why 4043 // this leads to a redefinition error. 4044 bool EmittedDiag = false; 4045 if (FNew == FOld && FNewDecLoc.second == FOldDecLoc.second) { 4046 SourceLocation OldIncLoc = SrcMgr.getIncludeLoc(FOldDecLoc.first); 4047 SourceLocation NewIncLoc = SrcMgr.getIncludeLoc(FNewDecLoc.first); 4048 EmittedDiag = noteFromModuleOrInclude(Old->getOwningModule(), OldIncLoc); 4049 EmittedDiag |= noteFromModuleOrInclude(getCurrentModule(), NewIncLoc); 4050 4051 // If the header has no guards, emit a note suggesting one. 4052 if (FOld && !HSI.isFileMultipleIncludeGuarded(FOld)) 4053 Diag(Old->getLocation(), diag::note_use_ifdef_guards); 4054 4055 if (EmittedDiag) 4056 return; 4057 } 4058 4059 // Redefinition coming from different files or couldn't do better above. 4060 Diag(Old->getLocation(), diag::note_previous_definition); 4061 } 4062 4063 /// We've just determined that \p Old and \p New both appear to be definitions 4064 /// of the same variable. Either diagnose or fix the problem. 4065 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) { 4066 if (!hasVisibleDefinition(Old) && 4067 (New->getFormalLinkage() == InternalLinkage || 4068 New->isInline() || 4069 New->getDescribedVarTemplate() || 4070 New->getNumTemplateParameterLists() || 4071 New->getDeclContext()->isDependentContext())) { 4072 // The previous definition is hidden, and multiple definitions are 4073 // permitted (in separate TUs). Demote this to a declaration. 4074 New->demoteThisDefinitionToDeclaration(); 4075 4076 // Make the canonical definition visible. 4077 if (auto *OldTD = Old->getDescribedVarTemplate()) 4078 makeMergedDefinitionVisible(OldTD); 4079 makeMergedDefinitionVisible(Old); 4080 return false; 4081 } else { 4082 Diag(New->getLocation(), diag::err_redefinition) << New; 4083 notePreviousDefinition(Old, New->getLocation()); 4084 New->setInvalidDecl(); 4085 return true; 4086 } 4087 } 4088 4089 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 4090 /// no declarator (e.g. "struct foo;") is parsed. 4091 Decl * 4092 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, 4093 RecordDecl *&AnonRecord) { 4094 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false, 4095 AnonRecord); 4096 } 4097 4098 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to 4099 // disambiguate entities defined in different scopes. 4100 // While the VS2015 ABI fixes potential miscompiles, it is also breaks 4101 // compatibility. 4102 // We will pick our mangling number depending on which version of MSVC is being 4103 // targeted. 4104 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) { 4105 return LO.isCompatibleWithMSVC(LangOptions::MSVC2015) 4106 ? S->getMSCurManglingNumber() 4107 : S->getMSLastManglingNumber(); 4108 } 4109 4110 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) { 4111 if (!Context.getLangOpts().CPlusPlus) 4112 return; 4113 4114 if (isa<CXXRecordDecl>(Tag->getParent())) { 4115 // If this tag is the direct child of a class, number it if 4116 // it is anonymous. 4117 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl()) 4118 return; 4119 MangleNumberingContext &MCtx = 4120 Context.getManglingNumberContext(Tag->getParent()); 4121 Context.setManglingNumber( 4122 Tag, MCtx.getManglingNumber( 4123 Tag, getMSManglingNumber(getLangOpts(), TagScope))); 4124 return; 4125 } 4126 4127 // If this tag isn't a direct child of a class, number it if it is local. 4128 Decl *ManglingContextDecl; 4129 if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext( 4130 Tag->getDeclContext(), ManglingContextDecl)) { 4131 Context.setManglingNumber( 4132 Tag, MCtx->getManglingNumber( 4133 Tag, getMSManglingNumber(getLangOpts(), TagScope))); 4134 } 4135 } 4136 4137 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec, 4138 TypedefNameDecl *NewTD) { 4139 if (TagFromDeclSpec->isInvalidDecl()) 4140 return; 4141 4142 // Do nothing if the tag already has a name for linkage purposes. 4143 if (TagFromDeclSpec->hasNameForLinkage()) 4144 return; 4145 4146 // A well-formed anonymous tag must always be a TUK_Definition. 4147 assert(TagFromDeclSpec->isThisDeclarationADefinition()); 4148 4149 // The type must match the tag exactly; no qualifiers allowed. 4150 if (!Context.hasSameType(NewTD->getUnderlyingType(), 4151 Context.getTagDeclType(TagFromDeclSpec))) { 4152 if (getLangOpts().CPlusPlus) 4153 Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD); 4154 return; 4155 } 4156 4157 // If we've already computed linkage for the anonymous tag, then 4158 // adding a typedef name for the anonymous decl can change that 4159 // linkage, which might be a serious problem. Diagnose this as 4160 // unsupported and ignore the typedef name. TODO: we should 4161 // pursue this as a language defect and establish a formal rule 4162 // for how to handle it. 4163 if (TagFromDeclSpec->hasLinkageBeenComputed()) { 4164 Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage); 4165 4166 SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart(); 4167 tagLoc = getLocForEndOfToken(tagLoc); 4168 4169 llvm::SmallString<40> textToInsert; 4170 textToInsert += ' '; 4171 textToInsert += NewTD->getIdentifier()->getName(); 4172 Diag(tagLoc, diag::note_typedef_changes_linkage) 4173 << FixItHint::CreateInsertion(tagLoc, textToInsert); 4174 return; 4175 } 4176 4177 // Otherwise, set this is the anon-decl typedef for the tag. 4178 TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD); 4179 } 4180 4181 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) { 4182 switch (T) { 4183 case DeclSpec::TST_class: 4184 return 0; 4185 case DeclSpec::TST_struct: 4186 return 1; 4187 case DeclSpec::TST_interface: 4188 return 2; 4189 case DeclSpec::TST_union: 4190 return 3; 4191 case DeclSpec::TST_enum: 4192 return 4; 4193 default: 4194 llvm_unreachable("unexpected type specifier"); 4195 } 4196 } 4197 4198 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 4199 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template 4200 /// parameters to cope with template friend declarations. 4201 Decl * 4202 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS, 4203 MultiTemplateParamsArg TemplateParams, 4204 bool IsExplicitInstantiation, 4205 RecordDecl *&AnonRecord) { 4206 Decl *TagD = nullptr; 4207 TagDecl *Tag = nullptr; 4208 if (DS.getTypeSpecType() == DeclSpec::TST_class || 4209 DS.getTypeSpecType() == DeclSpec::TST_struct || 4210 DS.getTypeSpecType() == DeclSpec::TST_interface || 4211 DS.getTypeSpecType() == DeclSpec::TST_union || 4212 DS.getTypeSpecType() == DeclSpec::TST_enum) { 4213 TagD = DS.getRepAsDecl(); 4214 4215 if (!TagD) // We probably had an error 4216 return nullptr; 4217 4218 // Note that the above type specs guarantee that the 4219 // type rep is a Decl, whereas in many of the others 4220 // it's a Type. 4221 if (isa<TagDecl>(TagD)) 4222 Tag = cast<TagDecl>(TagD); 4223 else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD)) 4224 Tag = CTD->getTemplatedDecl(); 4225 } 4226 4227 if (Tag) { 4228 handleTagNumbering(Tag, S); 4229 Tag->setFreeStanding(); 4230 if (Tag->isInvalidDecl()) 4231 return Tag; 4232 } 4233 4234 if (unsigned TypeQuals = DS.getTypeQualifiers()) { 4235 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object 4236 // or incomplete types shall not be restrict-qualified." 4237 if (TypeQuals & DeclSpec::TQ_restrict) 4238 Diag(DS.getRestrictSpecLoc(), 4239 diag::err_typecheck_invalid_restrict_not_pointer_noarg) 4240 << DS.getSourceRange(); 4241 } 4242 4243 if (DS.isInlineSpecified()) 4244 Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function) 4245 << getLangOpts().CPlusPlus17; 4246 4247 if (DS.isConstexprSpecified()) { 4248 // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations 4249 // and definitions of functions and variables. 4250 if (Tag) 4251 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag) 4252 << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()); 4253 else 4254 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators); 4255 // Don't emit warnings after this error. 4256 return TagD; 4257 } 4258 4259 DiagnoseFunctionSpecifiers(DS); 4260 4261 if (DS.isFriendSpecified()) { 4262 // If we're dealing with a decl but not a TagDecl, assume that 4263 // whatever routines created it handled the friendship aspect. 4264 if (TagD && !Tag) 4265 return nullptr; 4266 return ActOnFriendTypeDecl(S, DS, TemplateParams); 4267 } 4268 4269 const CXXScopeSpec &SS = DS.getTypeSpecScope(); 4270 bool IsExplicitSpecialization = 4271 !TemplateParams.empty() && TemplateParams.back()->size() == 0; 4272 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() && 4273 !IsExplicitInstantiation && !IsExplicitSpecialization && 4274 !isa<ClassTemplatePartialSpecializationDecl>(Tag)) { 4275 // Per C++ [dcl.type.elab]p1, a class declaration cannot have a 4276 // nested-name-specifier unless it is an explicit instantiation 4277 // or an explicit specialization. 4278 // 4279 // FIXME: We allow class template partial specializations here too, per the 4280 // obvious intent of DR1819. 4281 // 4282 // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either. 4283 Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier) 4284 << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange(); 4285 return nullptr; 4286 } 4287 4288 // Track whether this decl-specifier declares anything. 4289 bool DeclaresAnything = true; 4290 4291 // Handle anonymous struct definitions. 4292 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) { 4293 if (!Record->getDeclName() && Record->isCompleteDefinition() && 4294 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) { 4295 if (getLangOpts().CPlusPlus || 4296 Record->getDeclContext()->isRecord()) { 4297 // If CurContext is a DeclContext that can contain statements, 4298 // RecursiveASTVisitor won't visit the decls that 4299 // BuildAnonymousStructOrUnion() will put into CurContext. 4300 // Also store them here so that they can be part of the 4301 // DeclStmt that gets created in this case. 4302 // FIXME: Also return the IndirectFieldDecls created by 4303 // BuildAnonymousStructOr union, for the same reason? 4304 if (CurContext->isFunctionOrMethod()) 4305 AnonRecord = Record; 4306 return BuildAnonymousStructOrUnion(S, DS, AS, Record, 4307 Context.getPrintingPolicy()); 4308 } 4309 4310 DeclaresAnything = false; 4311 } 4312 } 4313 4314 // C11 6.7.2.1p2: 4315 // A struct-declaration that does not declare an anonymous structure or 4316 // anonymous union shall contain a struct-declarator-list. 4317 // 4318 // This rule also existed in C89 and C99; the grammar for struct-declaration 4319 // did not permit a struct-declaration without a struct-declarator-list. 4320 if (!getLangOpts().CPlusPlus && CurContext->isRecord() && 4321 DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) { 4322 // Check for Microsoft C extension: anonymous struct/union member. 4323 // Handle 2 kinds of anonymous struct/union: 4324 // struct STRUCT; 4325 // union UNION; 4326 // and 4327 // STRUCT_TYPE; <- where STRUCT_TYPE is a typedef struct. 4328 // UNION_TYPE; <- where UNION_TYPE is a typedef union. 4329 if ((Tag && Tag->getDeclName()) || 4330 DS.getTypeSpecType() == DeclSpec::TST_typename) { 4331 RecordDecl *Record = nullptr; 4332 if (Tag) 4333 Record = dyn_cast<RecordDecl>(Tag); 4334 else if (const RecordType *RT = 4335 DS.getRepAsType().get()->getAsStructureType()) 4336 Record = RT->getDecl(); 4337 else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType()) 4338 Record = UT->getDecl(); 4339 4340 if (Record && getLangOpts().MicrosoftExt) { 4341 Diag(DS.getLocStart(), diag::ext_ms_anonymous_record) 4342 << Record->isUnion() << DS.getSourceRange(); 4343 return BuildMicrosoftCAnonymousStruct(S, DS, Record); 4344 } 4345 4346 DeclaresAnything = false; 4347 } 4348 } 4349 4350 // Skip all the checks below if we have a type error. 4351 if (DS.getTypeSpecType() == DeclSpec::TST_error || 4352 (TagD && TagD->isInvalidDecl())) 4353 return TagD; 4354 4355 if (getLangOpts().CPlusPlus && 4356 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) 4357 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag)) 4358 if (Enum->enumerator_begin() == Enum->enumerator_end() && 4359 !Enum->getIdentifier() && !Enum->isInvalidDecl()) 4360 DeclaresAnything = false; 4361 4362 if (!DS.isMissingDeclaratorOk()) { 4363 // Customize diagnostic for a typedef missing a name. 4364 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) 4365 Diag(DS.getLocStart(), diag::ext_typedef_without_a_name) 4366 << DS.getSourceRange(); 4367 else 4368 DeclaresAnything = false; 4369 } 4370 4371 if (DS.isModulePrivateSpecified() && 4372 Tag && Tag->getDeclContext()->isFunctionOrMethod()) 4373 Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class) 4374 << Tag->getTagKind() 4375 << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc()); 4376 4377 ActOnDocumentableDecl(TagD); 4378 4379 // C 6.7/2: 4380 // A declaration [...] shall declare at least a declarator [...], a tag, 4381 // or the members of an enumeration. 4382 // C++ [dcl.dcl]p3: 4383 // [If there are no declarators], and except for the declaration of an 4384 // unnamed bit-field, the decl-specifier-seq shall introduce one or more 4385 // names into the program, or shall redeclare a name introduced by a 4386 // previous declaration. 4387 if (!DeclaresAnything) { 4388 // In C, we allow this as a (popular) extension / bug. Don't bother 4389 // producing further diagnostics for redundant qualifiers after this. 4390 Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange(); 4391 return TagD; 4392 } 4393 4394 // C++ [dcl.stc]p1: 4395 // If a storage-class-specifier appears in a decl-specifier-seq, [...] the 4396 // init-declarator-list of the declaration shall not be empty. 4397 // C++ [dcl.fct.spec]p1: 4398 // If a cv-qualifier appears in a decl-specifier-seq, the 4399 // init-declarator-list of the declaration shall not be empty. 4400 // 4401 // Spurious qualifiers here appear to be valid in C. 4402 unsigned DiagID = diag::warn_standalone_specifier; 4403 if (getLangOpts().CPlusPlus) 4404 DiagID = diag::ext_standalone_specifier; 4405 4406 // Note that a linkage-specification sets a storage class, but 4407 // 'extern "C" struct foo;' is actually valid and not theoretically 4408 // useless. 4409 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) { 4410 if (SCS == DeclSpec::SCS_mutable) 4411 // Since mutable is not a viable storage class specifier in C, there is 4412 // no reason to treat it as an extension. Instead, diagnose as an error. 4413 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember); 4414 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef) 4415 Diag(DS.getStorageClassSpecLoc(), DiagID) 4416 << DeclSpec::getSpecifierName(SCS); 4417 } 4418 4419 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 4420 Diag(DS.getThreadStorageClassSpecLoc(), DiagID) 4421 << DeclSpec::getSpecifierName(TSCS); 4422 if (DS.getTypeQualifiers()) { 4423 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 4424 Diag(DS.getConstSpecLoc(), DiagID) << "const"; 4425 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 4426 Diag(DS.getConstSpecLoc(), DiagID) << "volatile"; 4427 // Restrict is covered above. 4428 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 4429 Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic"; 4430 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 4431 Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned"; 4432 } 4433 4434 // Warn about ignored type attributes, for example: 4435 // __attribute__((aligned)) struct A; 4436 // Attributes should be placed after tag to apply to type declaration. 4437 if (!DS.getAttributes().empty()) { 4438 DeclSpec::TST TypeSpecType = DS.getTypeSpecType(); 4439 if (TypeSpecType == DeclSpec::TST_class || 4440 TypeSpecType == DeclSpec::TST_struct || 4441 TypeSpecType == DeclSpec::TST_interface || 4442 TypeSpecType == DeclSpec::TST_union || 4443 TypeSpecType == DeclSpec::TST_enum) { 4444 for (AttributeList* attrs = DS.getAttributes().getList(); attrs; 4445 attrs = attrs->getNext()) 4446 Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored) 4447 << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType); 4448 } 4449 } 4450 4451 return TagD; 4452 } 4453 4454 /// We are trying to inject an anonymous member into the given scope; 4455 /// check if there's an existing declaration that can't be overloaded. 4456 /// 4457 /// \return true if this is a forbidden redeclaration 4458 static bool CheckAnonMemberRedeclaration(Sema &SemaRef, 4459 Scope *S, 4460 DeclContext *Owner, 4461 DeclarationName Name, 4462 SourceLocation NameLoc, 4463 bool IsUnion) { 4464 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName, 4465 Sema::ForVisibleRedeclaration); 4466 if (!SemaRef.LookupName(R, S)) return false; 4467 4468 // Pick a representative declaration. 4469 NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl(); 4470 assert(PrevDecl && "Expected a non-null Decl"); 4471 4472 if (!SemaRef.isDeclInScope(PrevDecl, Owner, S)) 4473 return false; 4474 4475 SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl) 4476 << IsUnion << Name; 4477 SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 4478 4479 return true; 4480 } 4481 4482 /// InjectAnonymousStructOrUnionMembers - Inject the members of the 4483 /// anonymous struct or union AnonRecord into the owning context Owner 4484 /// and scope S. This routine will be invoked just after we realize 4485 /// that an unnamed union or struct is actually an anonymous union or 4486 /// struct, e.g., 4487 /// 4488 /// @code 4489 /// union { 4490 /// int i; 4491 /// float f; 4492 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and 4493 /// // f into the surrounding scope.x 4494 /// @endcode 4495 /// 4496 /// This routine is recursive, injecting the names of nested anonymous 4497 /// structs/unions into the owning context and scope as well. 4498 static bool 4499 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner, 4500 RecordDecl *AnonRecord, AccessSpecifier AS, 4501 SmallVectorImpl<NamedDecl *> &Chaining) { 4502 bool Invalid = false; 4503 4504 // Look every FieldDecl and IndirectFieldDecl with a name. 4505 for (auto *D : AnonRecord->decls()) { 4506 if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) && 4507 cast<NamedDecl>(D)->getDeclName()) { 4508 ValueDecl *VD = cast<ValueDecl>(D); 4509 if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(), 4510 VD->getLocation(), 4511 AnonRecord->isUnion())) { 4512 // C++ [class.union]p2: 4513 // The names of the members of an anonymous union shall be 4514 // distinct from the names of any other entity in the 4515 // scope in which the anonymous union is declared. 4516 Invalid = true; 4517 } else { 4518 // C++ [class.union]p2: 4519 // For the purpose of name lookup, after the anonymous union 4520 // definition, the members of the anonymous union are 4521 // considered to have been defined in the scope in which the 4522 // anonymous union is declared. 4523 unsigned OldChainingSize = Chaining.size(); 4524 if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD)) 4525 Chaining.append(IF->chain_begin(), IF->chain_end()); 4526 else 4527 Chaining.push_back(VD); 4528 4529 assert(Chaining.size() >= 2); 4530 NamedDecl **NamedChain = 4531 new (SemaRef.Context)NamedDecl*[Chaining.size()]; 4532 for (unsigned i = 0; i < Chaining.size(); i++) 4533 NamedChain[i] = Chaining[i]; 4534 4535 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create( 4536 SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(), 4537 VD->getType(), {NamedChain, Chaining.size()}); 4538 4539 for (const auto *Attr : VD->attrs()) 4540 IndirectField->addAttr(Attr->clone(SemaRef.Context)); 4541 4542 IndirectField->setAccess(AS); 4543 IndirectField->setImplicit(); 4544 SemaRef.PushOnScopeChains(IndirectField, S); 4545 4546 // That includes picking up the appropriate access specifier. 4547 if (AS != AS_none) IndirectField->setAccess(AS); 4548 4549 Chaining.resize(OldChainingSize); 4550 } 4551 } 4552 } 4553 4554 return Invalid; 4555 } 4556 4557 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to 4558 /// a VarDecl::StorageClass. Any error reporting is up to the caller: 4559 /// illegal input values are mapped to SC_None. 4560 static StorageClass 4561 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) { 4562 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec(); 4563 assert(StorageClassSpec != DeclSpec::SCS_typedef && 4564 "Parser allowed 'typedef' as storage class VarDecl."); 4565 switch (StorageClassSpec) { 4566 case DeclSpec::SCS_unspecified: return SC_None; 4567 case DeclSpec::SCS_extern: 4568 if (DS.isExternInLinkageSpec()) 4569 return SC_None; 4570 return SC_Extern; 4571 case DeclSpec::SCS_static: return SC_Static; 4572 case DeclSpec::SCS_auto: return SC_Auto; 4573 case DeclSpec::SCS_register: return SC_Register; 4574 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 4575 // Illegal SCSs map to None: error reporting is up to the caller. 4576 case DeclSpec::SCS_mutable: // Fall through. 4577 case DeclSpec::SCS_typedef: return SC_None; 4578 } 4579 llvm_unreachable("unknown storage class specifier"); 4580 } 4581 4582 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) { 4583 assert(Record->hasInClassInitializer()); 4584 4585 for (const auto *I : Record->decls()) { 4586 const auto *FD = dyn_cast<FieldDecl>(I); 4587 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) 4588 FD = IFD->getAnonField(); 4589 if (FD && FD->hasInClassInitializer()) 4590 return FD->getLocation(); 4591 } 4592 4593 llvm_unreachable("couldn't find in-class initializer"); 4594 } 4595 4596 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent, 4597 SourceLocation DefaultInitLoc) { 4598 if (!Parent->isUnion() || !Parent->hasInClassInitializer()) 4599 return; 4600 4601 S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization); 4602 S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0; 4603 } 4604 4605 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent, 4606 CXXRecordDecl *AnonUnion) { 4607 if (!Parent->isUnion() || !Parent->hasInClassInitializer()) 4608 return; 4609 4610 checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion)); 4611 } 4612 4613 /// BuildAnonymousStructOrUnion - Handle the declaration of an 4614 /// anonymous structure or union. Anonymous unions are a C++ feature 4615 /// (C++ [class.union]) and a C11 feature; anonymous structures 4616 /// are a C11 feature and GNU C++ extension. 4617 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, 4618 AccessSpecifier AS, 4619 RecordDecl *Record, 4620 const PrintingPolicy &Policy) { 4621 DeclContext *Owner = Record->getDeclContext(); 4622 4623 // Diagnose whether this anonymous struct/union is an extension. 4624 if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11) 4625 Diag(Record->getLocation(), diag::ext_anonymous_union); 4626 else if (!Record->isUnion() && getLangOpts().CPlusPlus) 4627 Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct); 4628 else if (!Record->isUnion() && !getLangOpts().C11) 4629 Diag(Record->getLocation(), diag::ext_c11_anonymous_struct); 4630 4631 // C and C++ require different kinds of checks for anonymous 4632 // structs/unions. 4633 bool Invalid = false; 4634 if (getLangOpts().CPlusPlus) { 4635 const char *PrevSpec = nullptr; 4636 unsigned DiagID; 4637 if (Record->isUnion()) { 4638 // C++ [class.union]p6: 4639 // Anonymous unions declared in a named namespace or in the 4640 // global namespace shall be declared static. 4641 if (DS.getStorageClassSpec() != DeclSpec::SCS_static && 4642 (isa<TranslationUnitDecl>(Owner) || 4643 (isa<NamespaceDecl>(Owner) && 4644 cast<NamespaceDecl>(Owner)->getDeclName()))) { 4645 Diag(Record->getLocation(), diag::err_anonymous_union_not_static) 4646 << FixItHint::CreateInsertion(Record->getLocation(), "static "); 4647 4648 // Recover by adding 'static'. 4649 DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(), 4650 PrevSpec, DiagID, Policy); 4651 } 4652 // C++ [class.union]p6: 4653 // A storage class is not allowed in a declaration of an 4654 // anonymous union in a class scope. 4655 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && 4656 isa<RecordDecl>(Owner)) { 4657 Diag(DS.getStorageClassSpecLoc(), 4658 diag::err_anonymous_union_with_storage_spec) 4659 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 4660 4661 // Recover by removing the storage specifier. 4662 DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified, 4663 SourceLocation(), 4664 PrevSpec, DiagID, Context.getPrintingPolicy()); 4665 } 4666 } 4667 4668 // Ignore const/volatile/restrict qualifiers. 4669 if (DS.getTypeQualifiers()) { 4670 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 4671 Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified) 4672 << Record->isUnion() << "const" 4673 << FixItHint::CreateRemoval(DS.getConstSpecLoc()); 4674 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 4675 Diag(DS.getVolatileSpecLoc(), 4676 diag::ext_anonymous_struct_union_qualified) 4677 << Record->isUnion() << "volatile" 4678 << FixItHint::CreateRemoval(DS.getVolatileSpecLoc()); 4679 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) 4680 Diag(DS.getRestrictSpecLoc(), 4681 diag::ext_anonymous_struct_union_qualified) 4682 << Record->isUnion() << "restrict" 4683 << FixItHint::CreateRemoval(DS.getRestrictSpecLoc()); 4684 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 4685 Diag(DS.getAtomicSpecLoc(), 4686 diag::ext_anonymous_struct_union_qualified) 4687 << Record->isUnion() << "_Atomic" 4688 << FixItHint::CreateRemoval(DS.getAtomicSpecLoc()); 4689 if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned) 4690 Diag(DS.getUnalignedSpecLoc(), 4691 diag::ext_anonymous_struct_union_qualified) 4692 << Record->isUnion() << "__unaligned" 4693 << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc()); 4694 4695 DS.ClearTypeQualifiers(); 4696 } 4697 4698 // C++ [class.union]p2: 4699 // The member-specification of an anonymous union shall only 4700 // define non-static data members. [Note: nested types and 4701 // functions cannot be declared within an anonymous union. ] 4702 for (auto *Mem : Record->decls()) { 4703 if (auto *FD = dyn_cast<FieldDecl>(Mem)) { 4704 // C++ [class.union]p3: 4705 // An anonymous union shall not have private or protected 4706 // members (clause 11). 4707 assert(FD->getAccess() != AS_none); 4708 if (FD->getAccess() != AS_public) { 4709 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member) 4710 << Record->isUnion() << (FD->getAccess() == AS_protected); 4711 Invalid = true; 4712 } 4713 4714 // C++ [class.union]p1 4715 // An object of a class with a non-trivial constructor, a non-trivial 4716 // copy constructor, a non-trivial destructor, or a non-trivial copy 4717 // assignment operator cannot be a member of a union, nor can an 4718 // array of such objects. 4719 if (CheckNontrivialField(FD)) 4720 Invalid = true; 4721 } else if (Mem->isImplicit()) { 4722 // Any implicit members are fine. 4723 } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) { 4724 // This is a type that showed up in an 4725 // elaborated-type-specifier inside the anonymous struct or 4726 // union, but which actually declares a type outside of the 4727 // anonymous struct or union. It's okay. 4728 } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) { 4729 if (!MemRecord->isAnonymousStructOrUnion() && 4730 MemRecord->getDeclName()) { 4731 // Visual C++ allows type definition in anonymous struct or union. 4732 if (getLangOpts().MicrosoftExt) 4733 Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type) 4734 << Record->isUnion(); 4735 else { 4736 // This is a nested type declaration. 4737 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type) 4738 << Record->isUnion(); 4739 Invalid = true; 4740 } 4741 } else { 4742 // This is an anonymous type definition within another anonymous type. 4743 // This is a popular extension, provided by Plan9, MSVC and GCC, but 4744 // not part of standard C++. 4745 Diag(MemRecord->getLocation(), 4746 diag::ext_anonymous_record_with_anonymous_type) 4747 << Record->isUnion(); 4748 } 4749 } else if (isa<AccessSpecDecl>(Mem)) { 4750 // Any access specifier is fine. 4751 } else if (isa<StaticAssertDecl>(Mem)) { 4752 // In C++1z, static_assert declarations are also fine. 4753 } else { 4754 // We have something that isn't a non-static data 4755 // member. Complain about it. 4756 unsigned DK = diag::err_anonymous_record_bad_member; 4757 if (isa<TypeDecl>(Mem)) 4758 DK = diag::err_anonymous_record_with_type; 4759 else if (isa<FunctionDecl>(Mem)) 4760 DK = diag::err_anonymous_record_with_function; 4761 else if (isa<VarDecl>(Mem)) 4762 DK = diag::err_anonymous_record_with_static; 4763 4764 // Visual C++ allows type definition in anonymous struct or union. 4765 if (getLangOpts().MicrosoftExt && 4766 DK == diag::err_anonymous_record_with_type) 4767 Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type) 4768 << Record->isUnion(); 4769 else { 4770 Diag(Mem->getLocation(), DK) << Record->isUnion(); 4771 Invalid = true; 4772 } 4773 } 4774 } 4775 4776 // C++11 [class.union]p8 (DR1460): 4777 // At most one variant member of a union may have a 4778 // brace-or-equal-initializer. 4779 if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() && 4780 Owner->isRecord()) 4781 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner), 4782 cast<CXXRecordDecl>(Record)); 4783 } 4784 4785 if (!Record->isUnion() && !Owner->isRecord()) { 4786 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member) 4787 << getLangOpts().CPlusPlus; 4788 Invalid = true; 4789 } 4790 4791 // Mock up a declarator. 4792 Declarator Dc(DS, DeclaratorContext::MemberContext); 4793 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 4794 assert(TInfo && "couldn't build declarator info for anonymous struct/union"); 4795 4796 // Create a declaration for this anonymous struct/union. 4797 NamedDecl *Anon = nullptr; 4798 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) { 4799 Anon = FieldDecl::Create(Context, OwningClass, 4800 DS.getLocStart(), 4801 Record->getLocation(), 4802 /*IdentifierInfo=*/nullptr, 4803 Context.getTypeDeclType(Record), 4804 TInfo, 4805 /*BitWidth=*/nullptr, /*Mutable=*/false, 4806 /*InitStyle=*/ICIS_NoInit); 4807 Anon->setAccess(AS); 4808 if (getLangOpts().CPlusPlus) 4809 FieldCollector->Add(cast<FieldDecl>(Anon)); 4810 } else { 4811 DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); 4812 StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS); 4813 if (SCSpec == DeclSpec::SCS_mutable) { 4814 // mutable can only appear on non-static class members, so it's always 4815 // an error here 4816 Diag(Record->getLocation(), diag::err_mutable_nonmember); 4817 Invalid = true; 4818 SC = SC_None; 4819 } 4820 4821 Anon = VarDecl::Create(Context, Owner, 4822 DS.getLocStart(), 4823 Record->getLocation(), /*IdentifierInfo=*/nullptr, 4824 Context.getTypeDeclType(Record), 4825 TInfo, SC); 4826 4827 // Default-initialize the implicit variable. This initialization will be 4828 // trivial in almost all cases, except if a union member has an in-class 4829 // initializer: 4830 // union { int n = 0; }; 4831 ActOnUninitializedDecl(Anon); 4832 } 4833 Anon->setImplicit(); 4834 4835 // Mark this as an anonymous struct/union type. 4836 Record->setAnonymousStructOrUnion(true); 4837 4838 // Add the anonymous struct/union object to the current 4839 // context. We'll be referencing this object when we refer to one of 4840 // its members. 4841 Owner->addDecl(Anon); 4842 4843 // Inject the members of the anonymous struct/union into the owning 4844 // context and into the identifier resolver chain for name lookup 4845 // purposes. 4846 SmallVector<NamedDecl*, 2> Chain; 4847 Chain.push_back(Anon); 4848 4849 if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain)) 4850 Invalid = true; 4851 4852 if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) { 4853 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) { 4854 Decl *ManglingContextDecl; 4855 if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext( 4856 NewVD->getDeclContext(), ManglingContextDecl)) { 4857 Context.setManglingNumber( 4858 NewVD, MCtx->getManglingNumber( 4859 NewVD, getMSManglingNumber(getLangOpts(), S))); 4860 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD)); 4861 } 4862 } 4863 } 4864 4865 if (Invalid) 4866 Anon->setInvalidDecl(); 4867 4868 return Anon; 4869 } 4870 4871 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an 4872 /// Microsoft C anonymous structure. 4873 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx 4874 /// Example: 4875 /// 4876 /// struct A { int a; }; 4877 /// struct B { struct A; int b; }; 4878 /// 4879 /// void foo() { 4880 /// B var; 4881 /// var.a = 3; 4882 /// } 4883 /// 4884 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS, 4885 RecordDecl *Record) { 4886 assert(Record && "expected a record!"); 4887 4888 // Mock up a declarator. 4889 Declarator Dc(DS, DeclaratorContext::TypeNameContext); 4890 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 4891 assert(TInfo && "couldn't build declarator info for anonymous struct"); 4892 4893 auto *ParentDecl = cast<RecordDecl>(CurContext); 4894 QualType RecTy = Context.getTypeDeclType(Record); 4895 4896 // Create a declaration for this anonymous struct. 4897 NamedDecl *Anon = FieldDecl::Create(Context, 4898 ParentDecl, 4899 DS.getLocStart(), 4900 DS.getLocStart(), 4901 /*IdentifierInfo=*/nullptr, 4902 RecTy, 4903 TInfo, 4904 /*BitWidth=*/nullptr, /*Mutable=*/false, 4905 /*InitStyle=*/ICIS_NoInit); 4906 Anon->setImplicit(); 4907 4908 // Add the anonymous struct object to the current context. 4909 CurContext->addDecl(Anon); 4910 4911 // Inject the members of the anonymous struct into the current 4912 // context and into the identifier resolver chain for name lookup 4913 // purposes. 4914 SmallVector<NamedDecl*, 2> Chain; 4915 Chain.push_back(Anon); 4916 4917 RecordDecl *RecordDef = Record->getDefinition(); 4918 if (RequireCompleteType(Anon->getLocation(), RecTy, 4919 diag::err_field_incomplete) || 4920 InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef, 4921 AS_none, Chain)) { 4922 Anon->setInvalidDecl(); 4923 ParentDecl->setInvalidDecl(); 4924 } 4925 4926 return Anon; 4927 } 4928 4929 /// GetNameForDeclarator - Determine the full declaration name for the 4930 /// given Declarator. 4931 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) { 4932 return GetNameFromUnqualifiedId(D.getName()); 4933 } 4934 4935 /// \brief Retrieves the declaration name from a parsed unqualified-id. 4936 DeclarationNameInfo 4937 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) { 4938 DeclarationNameInfo NameInfo; 4939 NameInfo.setLoc(Name.StartLocation); 4940 4941 switch (Name.getKind()) { 4942 4943 case UnqualifiedIdKind::IK_ImplicitSelfParam: 4944 case UnqualifiedIdKind::IK_Identifier: 4945 NameInfo.setName(Name.Identifier); 4946 NameInfo.setLoc(Name.StartLocation); 4947 return NameInfo; 4948 4949 case UnqualifiedIdKind::IK_DeductionGuideName: { 4950 // C++ [temp.deduct.guide]p3: 4951 // The simple-template-id shall name a class template specialization. 4952 // The template-name shall be the same identifier as the template-name 4953 // of the simple-template-id. 4954 // These together intend to imply that the template-name shall name a 4955 // class template. 4956 // FIXME: template<typename T> struct X {}; 4957 // template<typename T> using Y = X<T>; 4958 // Y(int) -> Y<int>; 4959 // satisfies these rules but does not name a class template. 4960 TemplateName TN = Name.TemplateName.get().get(); 4961 auto *Template = TN.getAsTemplateDecl(); 4962 if (!Template || !isa<ClassTemplateDecl>(Template)) { 4963 Diag(Name.StartLocation, 4964 diag::err_deduction_guide_name_not_class_template) 4965 << (int)getTemplateNameKindForDiagnostics(TN) << TN; 4966 if (Template) 4967 Diag(Template->getLocation(), diag::note_template_decl_here); 4968 return DeclarationNameInfo(); 4969 } 4970 4971 NameInfo.setName( 4972 Context.DeclarationNames.getCXXDeductionGuideName(Template)); 4973 NameInfo.setLoc(Name.StartLocation); 4974 return NameInfo; 4975 } 4976 4977 case UnqualifiedIdKind::IK_OperatorFunctionId: 4978 NameInfo.setName(Context.DeclarationNames.getCXXOperatorName( 4979 Name.OperatorFunctionId.Operator)); 4980 NameInfo.setLoc(Name.StartLocation); 4981 NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc 4982 = Name.OperatorFunctionId.SymbolLocations[0]; 4983 NameInfo.getInfo().CXXOperatorName.EndOpNameLoc 4984 = Name.EndLocation.getRawEncoding(); 4985 return NameInfo; 4986 4987 case UnqualifiedIdKind::IK_LiteralOperatorId: 4988 NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName( 4989 Name.Identifier)); 4990 NameInfo.setLoc(Name.StartLocation); 4991 NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation); 4992 return NameInfo; 4993 4994 case UnqualifiedIdKind::IK_ConversionFunctionId: { 4995 TypeSourceInfo *TInfo; 4996 QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo); 4997 if (Ty.isNull()) 4998 return DeclarationNameInfo(); 4999 NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName( 5000 Context.getCanonicalType(Ty))); 5001 NameInfo.setLoc(Name.StartLocation); 5002 NameInfo.setNamedTypeInfo(TInfo); 5003 return NameInfo; 5004 } 5005 5006 case UnqualifiedIdKind::IK_ConstructorName: { 5007 TypeSourceInfo *TInfo; 5008 QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo); 5009 if (Ty.isNull()) 5010 return DeclarationNameInfo(); 5011 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 5012 Context.getCanonicalType(Ty))); 5013 NameInfo.setLoc(Name.StartLocation); 5014 NameInfo.setNamedTypeInfo(TInfo); 5015 return NameInfo; 5016 } 5017 5018 case UnqualifiedIdKind::IK_ConstructorTemplateId: { 5019 // In well-formed code, we can only have a constructor 5020 // template-id that refers to the current context, so go there 5021 // to find the actual type being constructed. 5022 CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext); 5023 if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name) 5024 return DeclarationNameInfo(); 5025 5026 // Determine the type of the class being constructed. 5027 QualType CurClassType = Context.getTypeDeclType(CurClass); 5028 5029 // FIXME: Check two things: that the template-id names the same type as 5030 // CurClassType, and that the template-id does not occur when the name 5031 // was qualified. 5032 5033 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 5034 Context.getCanonicalType(CurClassType))); 5035 NameInfo.setLoc(Name.StartLocation); 5036 // FIXME: should we retrieve TypeSourceInfo? 5037 NameInfo.setNamedTypeInfo(nullptr); 5038 return NameInfo; 5039 } 5040 5041 case UnqualifiedIdKind::IK_DestructorName: { 5042 TypeSourceInfo *TInfo; 5043 QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo); 5044 if (Ty.isNull()) 5045 return DeclarationNameInfo(); 5046 NameInfo.setName(Context.DeclarationNames.getCXXDestructorName( 5047 Context.getCanonicalType(Ty))); 5048 NameInfo.setLoc(Name.StartLocation); 5049 NameInfo.setNamedTypeInfo(TInfo); 5050 return NameInfo; 5051 } 5052 5053 case UnqualifiedIdKind::IK_TemplateId: { 5054 TemplateName TName = Name.TemplateId->Template.get(); 5055 SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc; 5056 return Context.getNameForTemplate(TName, TNameLoc); 5057 } 5058 5059 } // switch (Name.getKind()) 5060 5061 llvm_unreachable("Unknown name kind"); 5062 } 5063 5064 static QualType getCoreType(QualType Ty) { 5065 do { 5066 if (Ty->isPointerType() || Ty->isReferenceType()) 5067 Ty = Ty->getPointeeType(); 5068 else if (Ty->isArrayType()) 5069 Ty = Ty->castAsArrayTypeUnsafe()->getElementType(); 5070 else 5071 return Ty.withoutLocalFastQualifiers(); 5072 } while (true); 5073 } 5074 5075 /// hasSimilarParameters - Determine whether the C++ functions Declaration 5076 /// and Definition have "nearly" matching parameters. This heuristic is 5077 /// used to improve diagnostics in the case where an out-of-line function 5078 /// definition doesn't match any declaration within the class or namespace. 5079 /// Also sets Params to the list of indices to the parameters that differ 5080 /// between the declaration and the definition. If hasSimilarParameters 5081 /// returns true and Params is empty, then all of the parameters match. 5082 static bool hasSimilarParameters(ASTContext &Context, 5083 FunctionDecl *Declaration, 5084 FunctionDecl *Definition, 5085 SmallVectorImpl<unsigned> &Params) { 5086 Params.clear(); 5087 if (Declaration->param_size() != Definition->param_size()) 5088 return false; 5089 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) { 5090 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType(); 5091 QualType DefParamTy = Definition->getParamDecl(Idx)->getType(); 5092 5093 // The parameter types are identical 5094 if (Context.hasSameType(DefParamTy, DeclParamTy)) 5095 continue; 5096 5097 QualType DeclParamBaseTy = getCoreType(DeclParamTy); 5098 QualType DefParamBaseTy = getCoreType(DefParamTy); 5099 const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier(); 5100 const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier(); 5101 5102 if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) || 5103 (DeclTyName && DeclTyName == DefTyName)) 5104 Params.push_back(Idx); 5105 else // The two parameters aren't even close 5106 return false; 5107 } 5108 5109 return true; 5110 } 5111 5112 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given 5113 /// declarator needs to be rebuilt in the current instantiation. 5114 /// Any bits of declarator which appear before the name are valid for 5115 /// consideration here. That's specifically the type in the decl spec 5116 /// and the base type in any member-pointer chunks. 5117 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D, 5118 DeclarationName Name) { 5119 // The types we specifically need to rebuild are: 5120 // - typenames, typeofs, and decltypes 5121 // - types which will become injected class names 5122 // Of course, we also need to rebuild any type referencing such a 5123 // type. It's safest to just say "dependent", but we call out a 5124 // few cases here. 5125 5126 DeclSpec &DS = D.getMutableDeclSpec(); 5127 switch (DS.getTypeSpecType()) { 5128 case DeclSpec::TST_typename: 5129 case DeclSpec::TST_typeofType: 5130 case DeclSpec::TST_underlyingType: 5131 case DeclSpec::TST_atomic: { 5132 // Grab the type from the parser. 5133 TypeSourceInfo *TSI = nullptr; 5134 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI); 5135 if (T.isNull() || !T->isDependentType()) break; 5136 5137 // Make sure there's a type source info. This isn't really much 5138 // of a waste; most dependent types should have type source info 5139 // attached already. 5140 if (!TSI) 5141 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc()); 5142 5143 // Rebuild the type in the current instantiation. 5144 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name); 5145 if (!TSI) return true; 5146 5147 // Store the new type back in the decl spec. 5148 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI); 5149 DS.UpdateTypeRep(LocType); 5150 break; 5151 } 5152 5153 case DeclSpec::TST_decltype: 5154 case DeclSpec::TST_typeofExpr: { 5155 Expr *E = DS.getRepAsExpr(); 5156 ExprResult Result = S.RebuildExprInCurrentInstantiation(E); 5157 if (Result.isInvalid()) return true; 5158 DS.UpdateExprRep(Result.get()); 5159 break; 5160 } 5161 5162 default: 5163 // Nothing to do for these decl specs. 5164 break; 5165 } 5166 5167 // It doesn't matter what order we do this in. 5168 for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) { 5169 DeclaratorChunk &Chunk = D.getTypeObject(I); 5170 5171 // The only type information in the declarator which can come 5172 // before the declaration name is the base type of a member 5173 // pointer. 5174 if (Chunk.Kind != DeclaratorChunk::MemberPointer) 5175 continue; 5176 5177 // Rebuild the scope specifier in-place. 5178 CXXScopeSpec &SS = Chunk.Mem.Scope(); 5179 if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS)) 5180 return true; 5181 } 5182 5183 return false; 5184 } 5185 5186 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) { 5187 D.setFunctionDefinitionKind(FDK_Declaration); 5188 Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg()); 5189 5190 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() && 5191 Dcl && Dcl->getDeclContext()->isFileContext()) 5192 Dcl->setTopLevelDeclInObjCContainer(); 5193 5194 if (getLangOpts().OpenCL) 5195 setCurrentOpenCLExtensionForDecl(Dcl); 5196 5197 return Dcl; 5198 } 5199 5200 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13: 5201 /// If T is the name of a class, then each of the following shall have a 5202 /// name different from T: 5203 /// - every static data member of class T; 5204 /// - every member function of class T 5205 /// - every member of class T that is itself a type; 5206 /// \returns true if the declaration name violates these rules. 5207 bool Sema::DiagnoseClassNameShadow(DeclContext *DC, 5208 DeclarationNameInfo NameInfo) { 5209 DeclarationName Name = NameInfo.getName(); 5210 5211 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC); 5212 while (Record && Record->isAnonymousStructOrUnion()) 5213 Record = dyn_cast<CXXRecordDecl>(Record->getParent()); 5214 if (Record && Record->getIdentifier() && Record->getDeclName() == Name) { 5215 Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name; 5216 return true; 5217 } 5218 5219 return false; 5220 } 5221 5222 /// \brief Diagnose a declaration whose declarator-id has the given 5223 /// nested-name-specifier. 5224 /// 5225 /// \param SS The nested-name-specifier of the declarator-id. 5226 /// 5227 /// \param DC The declaration context to which the nested-name-specifier 5228 /// resolves. 5229 /// 5230 /// \param Name The name of the entity being declared. 5231 /// 5232 /// \param Loc The location of the name of the entity being declared. 5233 /// 5234 /// \returns true if we cannot safely recover from this error, false otherwise. 5235 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC, 5236 DeclarationName Name, 5237 SourceLocation Loc) { 5238 DeclContext *Cur = CurContext; 5239 while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur)) 5240 Cur = Cur->getParent(); 5241 5242 // If the user provided a superfluous scope specifier that refers back to the 5243 // class in which the entity is already declared, diagnose and ignore it. 5244 // 5245 // class X { 5246 // void X::f(); 5247 // }; 5248 // 5249 // Note, it was once ill-formed to give redundant qualification in all 5250 // contexts, but that rule was removed by DR482. 5251 if (Cur->Equals(DC)) { 5252 if (Cur->isRecord()) { 5253 Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification 5254 : diag::err_member_extra_qualification) 5255 << Name << FixItHint::CreateRemoval(SS.getRange()); 5256 SS.clear(); 5257 } else { 5258 Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name; 5259 } 5260 return false; 5261 } 5262 5263 // Check whether the qualifying scope encloses the scope of the original 5264 // declaration. 5265 if (!Cur->Encloses(DC)) { 5266 if (Cur->isRecord()) 5267 Diag(Loc, diag::err_member_qualification) 5268 << Name << SS.getRange(); 5269 else if (isa<TranslationUnitDecl>(DC)) 5270 Diag(Loc, diag::err_invalid_declarator_global_scope) 5271 << Name << SS.getRange(); 5272 else if (isa<FunctionDecl>(Cur)) 5273 Diag(Loc, diag::err_invalid_declarator_in_function) 5274 << Name << SS.getRange(); 5275 else if (isa<BlockDecl>(Cur)) 5276 Diag(Loc, diag::err_invalid_declarator_in_block) 5277 << Name << SS.getRange(); 5278 else 5279 Diag(Loc, diag::err_invalid_declarator_scope) 5280 << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange(); 5281 5282 return true; 5283 } 5284 5285 if (Cur->isRecord()) { 5286 // Cannot qualify members within a class. 5287 Diag(Loc, diag::err_member_qualification) 5288 << Name << SS.getRange(); 5289 SS.clear(); 5290 5291 // C++ constructors and destructors with incorrect scopes can break 5292 // our AST invariants by having the wrong underlying types. If 5293 // that's the case, then drop this declaration entirely. 5294 if ((Name.getNameKind() == DeclarationName::CXXConstructorName || 5295 Name.getNameKind() == DeclarationName::CXXDestructorName) && 5296 !Context.hasSameType(Name.getCXXNameType(), 5297 Context.getTypeDeclType(cast<CXXRecordDecl>(Cur)))) 5298 return true; 5299 5300 return false; 5301 } 5302 5303 // C++11 [dcl.meaning]p1: 5304 // [...] "The nested-name-specifier of the qualified declarator-id shall 5305 // not begin with a decltype-specifer" 5306 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data()); 5307 while (SpecLoc.getPrefix()) 5308 SpecLoc = SpecLoc.getPrefix(); 5309 if (dyn_cast_or_null<DecltypeType>( 5310 SpecLoc.getNestedNameSpecifier()->getAsType())) 5311 Diag(Loc, diag::err_decltype_in_declarator) 5312 << SpecLoc.getTypeLoc().getSourceRange(); 5313 5314 return false; 5315 } 5316 5317 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D, 5318 MultiTemplateParamsArg TemplateParamLists) { 5319 // TODO: consider using NameInfo for diagnostic. 5320 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 5321 DeclarationName Name = NameInfo.getName(); 5322 5323 // All of these full declarators require an identifier. If it doesn't have 5324 // one, the ParsedFreeStandingDeclSpec action should be used. 5325 if (D.isDecompositionDeclarator()) { 5326 return ActOnDecompositionDeclarator(S, D, TemplateParamLists); 5327 } else if (!Name) { 5328 if (!D.isInvalidType()) // Reject this if we think it is valid. 5329 Diag(D.getDeclSpec().getLocStart(), 5330 diag::err_declarator_need_ident) 5331 << D.getDeclSpec().getSourceRange() << D.getSourceRange(); 5332 return nullptr; 5333 } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType)) 5334 return nullptr; 5335 5336 // The scope passed in may not be a decl scope. Zip up the scope tree until 5337 // we find one that is. 5338 while ((S->getFlags() & Scope::DeclScope) == 0 || 5339 (S->getFlags() & Scope::TemplateParamScope) != 0) 5340 S = S->getParent(); 5341 5342 DeclContext *DC = CurContext; 5343 if (D.getCXXScopeSpec().isInvalid()) 5344 D.setInvalidType(); 5345 else if (D.getCXXScopeSpec().isSet()) { 5346 if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(), 5347 UPPC_DeclarationQualifier)) 5348 return nullptr; 5349 5350 bool EnteringContext = !D.getDeclSpec().isFriendSpecified(); 5351 DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext); 5352 if (!DC || isa<EnumDecl>(DC)) { 5353 // If we could not compute the declaration context, it's because the 5354 // declaration context is dependent but does not refer to a class, 5355 // class template, or class template partial specialization. Complain 5356 // and return early, to avoid the coming semantic disaster. 5357 Diag(D.getIdentifierLoc(), 5358 diag::err_template_qualified_declarator_no_match) 5359 << D.getCXXScopeSpec().getScopeRep() 5360 << D.getCXXScopeSpec().getRange(); 5361 return nullptr; 5362 } 5363 bool IsDependentContext = DC->isDependentContext(); 5364 5365 if (!IsDependentContext && 5366 RequireCompleteDeclContext(D.getCXXScopeSpec(), DC)) 5367 return nullptr; 5368 5369 // If a class is incomplete, do not parse entities inside it. 5370 if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) { 5371 Diag(D.getIdentifierLoc(), 5372 diag::err_member_def_undefined_record) 5373 << Name << DC << D.getCXXScopeSpec().getRange(); 5374 return nullptr; 5375 } 5376 if (!D.getDeclSpec().isFriendSpecified()) { 5377 if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC, 5378 Name, D.getIdentifierLoc())) { 5379 if (DC->isRecord()) 5380 return nullptr; 5381 5382 D.setInvalidType(); 5383 } 5384 } 5385 5386 // Check whether we need to rebuild the type of the given 5387 // declaration in the current instantiation. 5388 if (EnteringContext && IsDependentContext && 5389 TemplateParamLists.size() != 0) { 5390 ContextRAII SavedContext(*this, DC); 5391 if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name)) 5392 D.setInvalidType(); 5393 } 5394 } 5395 5396 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 5397 QualType R = TInfo->getType(); 5398 5399 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 5400 UPPC_DeclarationType)) 5401 D.setInvalidType(); 5402 5403 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 5404 forRedeclarationInCurContext()); 5405 5406 // See if this is a redefinition of a variable in the same scope. 5407 if (!D.getCXXScopeSpec().isSet()) { 5408 bool IsLinkageLookup = false; 5409 bool CreateBuiltins = false; 5410 5411 // If the declaration we're planning to build will be a function 5412 // or object with linkage, then look for another declaration with 5413 // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6). 5414 // 5415 // If the declaration we're planning to build will be declared with 5416 // external linkage in the translation unit, create any builtin with 5417 // the same name. 5418 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) 5419 /* Do nothing*/; 5420 else if (CurContext->isFunctionOrMethod() && 5421 (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern || 5422 R->isFunctionType())) { 5423 IsLinkageLookup = true; 5424 CreateBuiltins = 5425 CurContext->getEnclosingNamespaceContext()->isTranslationUnit(); 5426 } else if (CurContext->getRedeclContext()->isTranslationUnit() && 5427 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static) 5428 CreateBuiltins = true; 5429 5430 if (IsLinkageLookup) { 5431 Previous.clear(LookupRedeclarationWithLinkage); 5432 Previous.setRedeclarationKind(ForExternalRedeclaration); 5433 } 5434 5435 LookupName(Previous, S, CreateBuiltins); 5436 } else { // Something like "int foo::x;" 5437 LookupQualifiedName(Previous, DC); 5438 5439 // C++ [dcl.meaning]p1: 5440 // When the declarator-id is qualified, the declaration shall refer to a 5441 // previously declared member of the class or namespace to which the 5442 // qualifier refers (or, in the case of a namespace, of an element of the 5443 // inline namespace set of that namespace (7.3.1)) or to a specialization 5444 // thereof; [...] 5445 // 5446 // Note that we already checked the context above, and that we do not have 5447 // enough information to make sure that Previous contains the declaration 5448 // we want to match. For example, given: 5449 // 5450 // class X { 5451 // void f(); 5452 // void f(float); 5453 // }; 5454 // 5455 // void X::f(int) { } // ill-formed 5456 // 5457 // In this case, Previous will point to the overload set 5458 // containing the two f's declared in X, but neither of them 5459 // matches. 5460 5461 // C++ [dcl.meaning]p1: 5462 // [...] the member shall not merely have been introduced by a 5463 // using-declaration in the scope of the class or namespace nominated by 5464 // the nested-name-specifier of the declarator-id. 5465 RemoveUsingDecls(Previous); 5466 } 5467 5468 if (Previous.isSingleResult() && 5469 Previous.getFoundDecl()->isTemplateParameter()) { 5470 // Maybe we will complain about the shadowed template parameter. 5471 if (!D.isInvalidType()) 5472 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), 5473 Previous.getFoundDecl()); 5474 5475 // Just pretend that we didn't see the previous declaration. 5476 Previous.clear(); 5477 } 5478 5479 if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo)) 5480 // Forget that the previous declaration is the injected-class-name. 5481 Previous.clear(); 5482 5483 // In C++, the previous declaration we find might be a tag type 5484 // (class or enum). In this case, the new declaration will hide the 5485 // tag type. Note that this applies to functions, function templates, and 5486 // variables, but not to typedefs (C++ [dcl.typedef]p4) or variable templates. 5487 if (Previous.isSingleTagDecl() && 5488 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && 5489 (TemplateParamLists.size() == 0 || R->isFunctionType())) 5490 Previous.clear(); 5491 5492 // Check that there are no default arguments other than in the parameters 5493 // of a function declaration (C++ only). 5494 if (getLangOpts().CPlusPlus) 5495 CheckExtraCXXDefaultArguments(D); 5496 5497 NamedDecl *New; 5498 5499 bool AddToScope = true; 5500 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { 5501 if (TemplateParamLists.size()) { 5502 Diag(D.getIdentifierLoc(), diag::err_template_typedef); 5503 return nullptr; 5504 } 5505 5506 New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous); 5507 } else if (R->isFunctionType()) { 5508 New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous, 5509 TemplateParamLists, 5510 AddToScope); 5511 } else { 5512 New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists, 5513 AddToScope); 5514 } 5515 5516 if (!New) 5517 return nullptr; 5518 5519 // If this has an identifier and is not a function template specialization, 5520 // add it to the scope stack. 5521 if (New->getDeclName() && AddToScope) { 5522 // Only make a locally-scoped extern declaration visible if it is the first 5523 // declaration of this entity. Qualified lookup for such an entity should 5524 // only find this declaration if there is no visible declaration of it. 5525 bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl(); 5526 PushOnScopeChains(New, S, AddToContext); 5527 if (!AddToContext) 5528 CurContext->addHiddenDecl(New); 5529 } 5530 5531 if (isInOpenMPDeclareTargetContext()) 5532 checkDeclIsAllowedInOpenMPTarget(nullptr, New); 5533 5534 return New; 5535 } 5536 5537 /// Helper method to turn variable array types into constant array 5538 /// types in certain situations which would otherwise be errors (for 5539 /// GCC compatibility). 5540 static QualType TryToFixInvalidVariablyModifiedType(QualType T, 5541 ASTContext &Context, 5542 bool &SizeIsNegative, 5543 llvm::APSInt &Oversized) { 5544 // This method tries to turn a variable array into a constant 5545 // array even when the size isn't an ICE. This is necessary 5546 // for compatibility with code that depends on gcc's buggy 5547 // constant expression folding, like struct {char x[(int)(char*)2];} 5548 SizeIsNegative = false; 5549 Oversized = 0; 5550 5551 if (T->isDependentType()) 5552 return QualType(); 5553 5554 QualifierCollector Qs; 5555 const Type *Ty = Qs.strip(T); 5556 5557 if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) { 5558 QualType Pointee = PTy->getPointeeType(); 5559 QualType FixedType = 5560 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative, 5561 Oversized); 5562 if (FixedType.isNull()) return FixedType; 5563 FixedType = Context.getPointerType(FixedType); 5564 return Qs.apply(Context, FixedType); 5565 } 5566 if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) { 5567 QualType Inner = PTy->getInnerType(); 5568 QualType FixedType = 5569 TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative, 5570 Oversized); 5571 if (FixedType.isNull()) return FixedType; 5572 FixedType = Context.getParenType(FixedType); 5573 return Qs.apply(Context, FixedType); 5574 } 5575 5576 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T); 5577 if (!VLATy) 5578 return QualType(); 5579 // FIXME: We should probably handle this case 5580 if (VLATy->getElementType()->isVariablyModifiedType()) 5581 return QualType(); 5582 5583 llvm::APSInt Res; 5584 if (!VLATy->getSizeExpr() || 5585 !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context)) 5586 return QualType(); 5587 5588 // Check whether the array size is negative. 5589 if (Res.isSigned() && Res.isNegative()) { 5590 SizeIsNegative = true; 5591 return QualType(); 5592 } 5593 5594 // Check whether the array is too large to be addressed. 5595 unsigned ActiveSizeBits 5596 = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(), 5597 Res); 5598 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) { 5599 Oversized = Res; 5600 return QualType(); 5601 } 5602 5603 return Context.getConstantArrayType(VLATy->getElementType(), 5604 Res, ArrayType::Normal, 0); 5605 } 5606 5607 static void 5608 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) { 5609 SrcTL = SrcTL.getUnqualifiedLoc(); 5610 DstTL = DstTL.getUnqualifiedLoc(); 5611 if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) { 5612 PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>(); 5613 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(), 5614 DstPTL.getPointeeLoc()); 5615 DstPTL.setStarLoc(SrcPTL.getStarLoc()); 5616 return; 5617 } 5618 if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) { 5619 ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>(); 5620 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(), 5621 DstPTL.getInnerLoc()); 5622 DstPTL.setLParenLoc(SrcPTL.getLParenLoc()); 5623 DstPTL.setRParenLoc(SrcPTL.getRParenLoc()); 5624 return; 5625 } 5626 ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>(); 5627 ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>(); 5628 TypeLoc SrcElemTL = SrcATL.getElementLoc(); 5629 TypeLoc DstElemTL = DstATL.getElementLoc(); 5630 DstElemTL.initializeFullCopy(SrcElemTL); 5631 DstATL.setLBracketLoc(SrcATL.getLBracketLoc()); 5632 DstATL.setSizeExpr(SrcATL.getSizeExpr()); 5633 DstATL.setRBracketLoc(SrcATL.getRBracketLoc()); 5634 } 5635 5636 /// Helper method to turn variable array types into constant array 5637 /// types in certain situations which would otherwise be errors (for 5638 /// GCC compatibility). 5639 static TypeSourceInfo* 5640 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo, 5641 ASTContext &Context, 5642 bool &SizeIsNegative, 5643 llvm::APSInt &Oversized) { 5644 QualType FixedTy 5645 = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context, 5646 SizeIsNegative, Oversized); 5647 if (FixedTy.isNull()) 5648 return nullptr; 5649 TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy); 5650 FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(), 5651 FixedTInfo->getTypeLoc()); 5652 return FixedTInfo; 5653 } 5654 5655 /// \brief Register the given locally-scoped extern "C" declaration so 5656 /// that it can be found later for redeclarations. We include any extern "C" 5657 /// declaration that is not visible in the translation unit here, not just 5658 /// function-scope declarations. 5659 void 5660 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) { 5661 if (!getLangOpts().CPlusPlus && 5662 ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit()) 5663 // Don't need to track declarations in the TU in C. 5664 return; 5665 5666 // Note that we have a locally-scoped external with this name. 5667 Context.getExternCContextDecl()->makeDeclVisibleInContext(ND); 5668 } 5669 5670 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) { 5671 // FIXME: We can have multiple results via __attribute__((overloadable)). 5672 auto Result = Context.getExternCContextDecl()->lookup(Name); 5673 return Result.empty() ? nullptr : *Result.begin(); 5674 } 5675 5676 /// \brief Diagnose function specifiers on a declaration of an identifier that 5677 /// does not identify a function. 5678 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) { 5679 // FIXME: We should probably indicate the identifier in question to avoid 5680 // confusion for constructs like "virtual int a(), b;" 5681 if (DS.isVirtualSpecified()) 5682 Diag(DS.getVirtualSpecLoc(), 5683 diag::err_virtual_non_function); 5684 5685 if (DS.isExplicitSpecified()) 5686 Diag(DS.getExplicitSpecLoc(), 5687 diag::err_explicit_non_function); 5688 5689 if (DS.isNoreturnSpecified()) 5690 Diag(DS.getNoreturnSpecLoc(), 5691 diag::err_noreturn_non_function); 5692 } 5693 5694 NamedDecl* 5695 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, 5696 TypeSourceInfo *TInfo, LookupResult &Previous) { 5697 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1). 5698 if (D.getCXXScopeSpec().isSet()) { 5699 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator) 5700 << D.getCXXScopeSpec().getRange(); 5701 D.setInvalidType(); 5702 // Pretend we didn't see the scope specifier. 5703 DC = CurContext; 5704 Previous.clear(); 5705 } 5706 5707 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 5708 5709 if (D.getDeclSpec().isInlineSpecified()) 5710 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 5711 << getLangOpts().CPlusPlus17; 5712 if (D.getDeclSpec().isConstexprSpecified()) 5713 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr) 5714 << 1; 5715 5716 if (D.getName().Kind != UnqualifiedIdKind::IK_Identifier) { 5717 if (D.getName().Kind == UnqualifiedIdKind::IK_DeductionGuideName) 5718 Diag(D.getName().StartLocation, 5719 diag::err_deduction_guide_invalid_specifier) 5720 << "typedef"; 5721 else 5722 Diag(D.getName().StartLocation, diag::err_typedef_not_identifier) 5723 << D.getName().getSourceRange(); 5724 return nullptr; 5725 } 5726 5727 TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo); 5728 if (!NewTD) return nullptr; 5729 5730 // Handle attributes prior to checking for duplicates in MergeVarDecl 5731 ProcessDeclAttributes(S, NewTD, D); 5732 5733 CheckTypedefForVariablyModifiedType(S, NewTD); 5734 5735 bool Redeclaration = D.isRedeclaration(); 5736 NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration); 5737 D.setRedeclaration(Redeclaration); 5738 return ND; 5739 } 5740 5741 void 5742 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) { 5743 // C99 6.7.7p2: If a typedef name specifies a variably modified type 5744 // then it shall have block scope. 5745 // Note that variably modified types must be fixed before merging the decl so 5746 // that redeclarations will match. 5747 TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo(); 5748 QualType T = TInfo->getType(); 5749 if (T->isVariablyModifiedType()) { 5750 getCurFunction()->setHasBranchProtectedScope(); 5751 5752 if (S->getFnParent() == nullptr) { 5753 bool SizeIsNegative; 5754 llvm::APSInt Oversized; 5755 TypeSourceInfo *FixedTInfo = 5756 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 5757 SizeIsNegative, 5758 Oversized); 5759 if (FixedTInfo) { 5760 Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size); 5761 NewTD->setTypeSourceInfo(FixedTInfo); 5762 } else { 5763 if (SizeIsNegative) 5764 Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size); 5765 else if (T->isVariableArrayType()) 5766 Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope); 5767 else if (Oversized.getBoolValue()) 5768 Diag(NewTD->getLocation(), diag::err_array_too_large) 5769 << Oversized.toString(10); 5770 else 5771 Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope); 5772 NewTD->setInvalidDecl(); 5773 } 5774 } 5775 } 5776 } 5777 5778 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which 5779 /// declares a typedef-name, either using the 'typedef' type specifier or via 5780 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'. 5781 NamedDecl* 5782 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD, 5783 LookupResult &Previous, bool &Redeclaration) { 5784 5785 // Find the shadowed declaration before filtering for scope. 5786 NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous); 5787 5788 // Merge the decl with the existing one if appropriate. If the decl is 5789 // in an outer scope, it isn't the same thing. 5790 FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false, 5791 /*AllowInlineNamespace*/false); 5792 filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous); 5793 if (!Previous.empty()) { 5794 Redeclaration = true; 5795 MergeTypedefNameDecl(S, NewTD, Previous); 5796 } 5797 5798 if (ShadowedDecl && !Redeclaration) 5799 CheckShadow(NewTD, ShadowedDecl, Previous); 5800 5801 // If this is the C FILE type, notify the AST context. 5802 if (IdentifierInfo *II = NewTD->getIdentifier()) 5803 if (!NewTD->isInvalidDecl() && 5804 NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 5805 if (II->isStr("FILE")) 5806 Context.setFILEDecl(NewTD); 5807 else if (II->isStr("jmp_buf")) 5808 Context.setjmp_bufDecl(NewTD); 5809 else if (II->isStr("sigjmp_buf")) 5810 Context.setsigjmp_bufDecl(NewTD); 5811 else if (II->isStr("ucontext_t")) 5812 Context.setucontext_tDecl(NewTD); 5813 } 5814 5815 return NewTD; 5816 } 5817 5818 /// \brief Determines whether the given declaration is an out-of-scope 5819 /// previous declaration. 5820 /// 5821 /// This routine should be invoked when name lookup has found a 5822 /// previous declaration (PrevDecl) that is not in the scope where a 5823 /// new declaration by the same name is being introduced. If the new 5824 /// declaration occurs in a local scope, previous declarations with 5825 /// linkage may still be considered previous declarations (C99 5826 /// 6.2.2p4-5, C++ [basic.link]p6). 5827 /// 5828 /// \param PrevDecl the previous declaration found by name 5829 /// lookup 5830 /// 5831 /// \param DC the context in which the new declaration is being 5832 /// declared. 5833 /// 5834 /// \returns true if PrevDecl is an out-of-scope previous declaration 5835 /// for a new delcaration with the same name. 5836 static bool 5837 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC, 5838 ASTContext &Context) { 5839 if (!PrevDecl) 5840 return false; 5841 5842 if (!PrevDecl->hasLinkage()) 5843 return false; 5844 5845 if (Context.getLangOpts().CPlusPlus) { 5846 // C++ [basic.link]p6: 5847 // If there is a visible declaration of an entity with linkage 5848 // having the same name and type, ignoring entities declared 5849 // outside the innermost enclosing namespace scope, the block 5850 // scope declaration declares that same entity and receives the 5851 // linkage of the previous declaration. 5852 DeclContext *OuterContext = DC->getRedeclContext(); 5853 if (!OuterContext->isFunctionOrMethod()) 5854 // This rule only applies to block-scope declarations. 5855 return false; 5856 5857 DeclContext *PrevOuterContext = PrevDecl->getDeclContext(); 5858 if (PrevOuterContext->isRecord()) 5859 // We found a member function: ignore it. 5860 return false; 5861 5862 // Find the innermost enclosing namespace for the new and 5863 // previous declarations. 5864 OuterContext = OuterContext->getEnclosingNamespaceContext(); 5865 PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext(); 5866 5867 // The previous declaration is in a different namespace, so it 5868 // isn't the same function. 5869 if (!OuterContext->Equals(PrevOuterContext)) 5870 return false; 5871 } 5872 5873 return true; 5874 } 5875 5876 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) { 5877 CXXScopeSpec &SS = D.getCXXScopeSpec(); 5878 if (!SS.isSet()) return; 5879 DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext())); 5880 } 5881 5882 bool Sema::inferObjCARCLifetime(ValueDecl *decl) { 5883 QualType type = decl->getType(); 5884 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); 5885 if (lifetime == Qualifiers::OCL_Autoreleasing) { 5886 // Various kinds of declaration aren't allowed to be __autoreleasing. 5887 unsigned kind = -1U; 5888 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 5889 if (var->hasAttr<BlocksAttr>()) 5890 kind = 0; // __block 5891 else if (!var->hasLocalStorage()) 5892 kind = 1; // global 5893 } else if (isa<ObjCIvarDecl>(decl)) { 5894 kind = 3; // ivar 5895 } else if (isa<FieldDecl>(decl)) { 5896 kind = 2; // field 5897 } 5898 5899 if (kind != -1U) { 5900 Diag(decl->getLocation(), diag::err_arc_autoreleasing_var) 5901 << kind; 5902 } 5903 } else if (lifetime == Qualifiers::OCL_None) { 5904 // Try to infer lifetime. 5905 if (!type->isObjCLifetimeType()) 5906 return false; 5907 5908 lifetime = type->getObjCARCImplicitLifetime(); 5909 type = Context.getLifetimeQualifiedType(type, lifetime); 5910 decl->setType(type); 5911 } 5912 5913 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 5914 // Thread-local variables cannot have lifetime. 5915 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone && 5916 var->getTLSKind()) { 5917 Diag(var->getLocation(), diag::err_arc_thread_ownership) 5918 << var->getType(); 5919 return true; 5920 } 5921 } 5922 5923 return false; 5924 } 5925 5926 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) { 5927 // Ensure that an auto decl is deduced otherwise the checks below might cache 5928 // the wrong linkage. 5929 assert(S.ParsingInitForAutoVars.count(&ND) == 0); 5930 5931 // 'weak' only applies to declarations with external linkage. 5932 if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) { 5933 if (!ND.isExternallyVisible()) { 5934 S.Diag(Attr->getLocation(), diag::err_attribute_weak_static); 5935 ND.dropAttr<WeakAttr>(); 5936 } 5937 } 5938 if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) { 5939 if (ND.isExternallyVisible()) { 5940 S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static); 5941 ND.dropAttr<WeakRefAttr>(); 5942 ND.dropAttr<AliasAttr>(); 5943 } 5944 } 5945 5946 if (auto *VD = dyn_cast<VarDecl>(&ND)) { 5947 if (VD->hasInit()) { 5948 if (const auto *Attr = VD->getAttr<AliasAttr>()) { 5949 assert(VD->isThisDeclarationADefinition() && 5950 !VD->isExternallyVisible() && "Broken AliasAttr handled late!"); 5951 S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0; 5952 VD->dropAttr<AliasAttr>(); 5953 } 5954 } 5955 } 5956 5957 // 'selectany' only applies to externally visible variable declarations. 5958 // It does not apply to functions. 5959 if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) { 5960 if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) { 5961 S.Diag(Attr->getLocation(), 5962 diag::err_attribute_selectany_non_extern_data); 5963 ND.dropAttr<SelectAnyAttr>(); 5964 } 5965 } 5966 5967 if (const InheritableAttr *Attr = getDLLAttr(&ND)) { 5968 // dll attributes require external linkage. Static locals may have external 5969 // linkage but still cannot be explicitly imported or exported. 5970 auto *VD = dyn_cast<VarDecl>(&ND); 5971 if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) { 5972 S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern) 5973 << &ND << Attr; 5974 ND.setInvalidDecl(); 5975 } 5976 } 5977 5978 // Virtual functions cannot be marked as 'notail'. 5979 if (auto *Attr = ND.getAttr<NotTailCalledAttr>()) 5980 if (auto *MD = dyn_cast<CXXMethodDecl>(&ND)) 5981 if (MD->isVirtual()) { 5982 S.Diag(ND.getLocation(), 5983 diag::err_invalid_attribute_on_virtual_function) 5984 << Attr; 5985 ND.dropAttr<NotTailCalledAttr>(); 5986 } 5987 } 5988 5989 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl, 5990 NamedDecl *NewDecl, 5991 bool IsSpecialization, 5992 bool IsDefinition) { 5993 if (OldDecl->isInvalidDecl() || NewDecl->isInvalidDecl()) 5994 return; 5995 5996 bool IsTemplate = false; 5997 if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) { 5998 OldDecl = OldTD->getTemplatedDecl(); 5999 IsTemplate = true; 6000 if (!IsSpecialization) 6001 IsDefinition = false; 6002 } 6003 if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) { 6004 NewDecl = NewTD->getTemplatedDecl(); 6005 IsTemplate = true; 6006 } 6007 6008 if (!OldDecl || !NewDecl) 6009 return; 6010 6011 const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>(); 6012 const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>(); 6013 const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>(); 6014 const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>(); 6015 6016 // dllimport and dllexport are inheritable attributes so we have to exclude 6017 // inherited attribute instances. 6018 bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) || 6019 (NewExportAttr && !NewExportAttr->isInherited()); 6020 6021 // A redeclaration is not allowed to add a dllimport or dllexport attribute, 6022 // the only exception being explicit specializations. 6023 // Implicitly generated declarations are also excluded for now because there 6024 // is no other way to switch these to use dllimport or dllexport. 6025 bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr; 6026 6027 if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) { 6028 // Allow with a warning for free functions and global variables. 6029 bool JustWarn = false; 6030 if (!OldDecl->isCXXClassMember()) { 6031 auto *VD = dyn_cast<VarDecl>(OldDecl); 6032 if (VD && !VD->getDescribedVarTemplate()) 6033 JustWarn = true; 6034 auto *FD = dyn_cast<FunctionDecl>(OldDecl); 6035 if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate) 6036 JustWarn = true; 6037 } 6038 6039 // We cannot change a declaration that's been used because IR has already 6040 // been emitted. Dllimported functions will still work though (modulo 6041 // address equality) as they can use the thunk. 6042 if (OldDecl->isUsed()) 6043 if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr) 6044 JustWarn = false; 6045 6046 unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration 6047 : diag::err_attribute_dll_redeclaration; 6048 S.Diag(NewDecl->getLocation(), DiagID) 6049 << NewDecl 6050 << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr); 6051 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 6052 if (!JustWarn) { 6053 NewDecl->setInvalidDecl(); 6054 return; 6055 } 6056 } 6057 6058 // A redeclaration is not allowed to drop a dllimport attribute, the only 6059 // exceptions being inline function definitions (except for function 6060 // templates), local extern declarations, qualified friend declarations or 6061 // special MSVC extension: in the last case, the declaration is treated as if 6062 // it were marked dllexport. 6063 bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false; 6064 bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft(); 6065 if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) { 6066 // Ignore static data because out-of-line definitions are diagnosed 6067 // separately. 6068 IsStaticDataMember = VD->isStaticDataMember(); 6069 IsDefinition = VD->isThisDeclarationADefinition(S.Context) != 6070 VarDecl::DeclarationOnly; 6071 } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) { 6072 IsInline = FD->isInlined(); 6073 IsQualifiedFriend = FD->getQualifier() && 6074 FD->getFriendObjectKind() == Decl::FOK_Declared; 6075 } 6076 6077 if (OldImportAttr && !HasNewAttr && 6078 (!IsInline || (IsMicrosoft && IsTemplate)) && !IsStaticDataMember && 6079 !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) { 6080 if (IsMicrosoft && IsDefinition) { 6081 S.Diag(NewDecl->getLocation(), 6082 diag::warn_redeclaration_without_import_attribute) 6083 << NewDecl; 6084 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 6085 NewDecl->dropAttr<DLLImportAttr>(); 6086 NewDecl->addAttr(::new (S.Context) DLLExportAttr( 6087 NewImportAttr->getRange(), S.Context, 6088 NewImportAttr->getSpellingListIndex())); 6089 } else { 6090 S.Diag(NewDecl->getLocation(), 6091 diag::warn_redeclaration_without_attribute_prev_attribute_ignored) 6092 << NewDecl << OldImportAttr; 6093 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration); 6094 S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute); 6095 OldDecl->dropAttr<DLLImportAttr>(); 6096 NewDecl->dropAttr<DLLImportAttr>(); 6097 } 6098 } else if (IsInline && OldImportAttr && !IsMicrosoft) { 6099 // In MinGW, seeing a function declared inline drops the dllimport 6100 // attribute. 6101 OldDecl->dropAttr<DLLImportAttr>(); 6102 NewDecl->dropAttr<DLLImportAttr>(); 6103 S.Diag(NewDecl->getLocation(), 6104 diag::warn_dllimport_dropped_from_inline_function) 6105 << NewDecl << OldImportAttr; 6106 } 6107 6108 // A specialization of a class template member function is processed here 6109 // since it's a redeclaration. If the parent class is dllexport, the 6110 // specialization inherits that attribute. This doesn't happen automatically 6111 // since the parent class isn't instantiated until later. 6112 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDecl)) { 6113 if (MD->getTemplatedKind() == FunctionDecl::TK_MemberSpecialization && 6114 !NewImportAttr && !NewExportAttr) { 6115 if (const DLLExportAttr *ParentExportAttr = 6116 MD->getParent()->getAttr<DLLExportAttr>()) { 6117 DLLExportAttr *NewAttr = ParentExportAttr->clone(S.Context); 6118 NewAttr->setInherited(true); 6119 NewDecl->addAttr(NewAttr); 6120 } 6121 } 6122 } 6123 } 6124 6125 /// Given that we are within the definition of the given function, 6126 /// will that definition behave like C99's 'inline', where the 6127 /// definition is discarded except for optimization purposes? 6128 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) { 6129 // Try to avoid calling GetGVALinkageForFunction. 6130 6131 // All cases of this require the 'inline' keyword. 6132 if (!FD->isInlined()) return false; 6133 6134 // This is only possible in C++ with the gnu_inline attribute. 6135 if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>()) 6136 return false; 6137 6138 // Okay, go ahead and call the relatively-more-expensive function. 6139 return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally; 6140 } 6141 6142 /// Determine whether a variable is extern "C" prior to attaching 6143 /// an initializer. We can't just call isExternC() here, because that 6144 /// will also compute and cache whether the declaration is externally 6145 /// visible, which might change when we attach the initializer. 6146 /// 6147 /// This can only be used if the declaration is known to not be a 6148 /// redeclaration of an internal linkage declaration. 6149 /// 6150 /// For instance: 6151 /// 6152 /// auto x = []{}; 6153 /// 6154 /// Attaching the initializer here makes this declaration not externally 6155 /// visible, because its type has internal linkage. 6156 /// 6157 /// FIXME: This is a hack. 6158 template<typename T> 6159 static bool isIncompleteDeclExternC(Sema &S, const T *D) { 6160 if (S.getLangOpts().CPlusPlus) { 6161 // In C++, the overloadable attribute negates the effects of extern "C". 6162 if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>()) 6163 return false; 6164 6165 // So do CUDA's host/device attributes. 6166 if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() || 6167 D->template hasAttr<CUDAHostAttr>())) 6168 return false; 6169 } 6170 return D->isExternC(); 6171 } 6172 6173 static bool shouldConsiderLinkage(const VarDecl *VD) { 6174 const DeclContext *DC = VD->getDeclContext()->getRedeclContext(); 6175 if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC)) 6176 return VD->hasExternalStorage(); 6177 if (DC->isFileContext()) 6178 return true; 6179 if (DC->isRecord()) 6180 return false; 6181 llvm_unreachable("Unexpected context"); 6182 } 6183 6184 static bool shouldConsiderLinkage(const FunctionDecl *FD) { 6185 const DeclContext *DC = FD->getDeclContext()->getRedeclContext(); 6186 if (DC->isFileContext() || DC->isFunctionOrMethod() || 6187 isa<OMPDeclareReductionDecl>(DC)) 6188 return true; 6189 if (DC->isRecord()) 6190 return false; 6191 llvm_unreachable("Unexpected context"); 6192 } 6193 6194 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList, 6195 AttributeList::Kind Kind) { 6196 for (const AttributeList *L = AttrList; L; L = L->getNext()) 6197 if (L->getKind() == Kind) 6198 return true; 6199 return false; 6200 } 6201 6202 static bool hasParsedAttr(Scope *S, const Declarator &PD, 6203 AttributeList::Kind Kind) { 6204 // Check decl attributes on the DeclSpec. 6205 if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind)) 6206 return true; 6207 6208 // Walk the declarator structure, checking decl attributes that were in a type 6209 // position to the decl itself. 6210 for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) { 6211 if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind)) 6212 return true; 6213 } 6214 6215 // Finally, check attributes on the decl itself. 6216 return hasParsedAttr(S, PD.getAttributes(), Kind); 6217 } 6218 6219 /// Adjust the \c DeclContext for a function or variable that might be a 6220 /// function-local external declaration. 6221 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) { 6222 if (!DC->isFunctionOrMethod()) 6223 return false; 6224 6225 // If this is a local extern function or variable declared within a function 6226 // template, don't add it into the enclosing namespace scope until it is 6227 // instantiated; it might have a dependent type right now. 6228 if (DC->isDependentContext()) 6229 return true; 6230 6231 // C++11 [basic.link]p7: 6232 // When a block scope declaration of an entity with linkage is not found to 6233 // refer to some other declaration, then that entity is a member of the 6234 // innermost enclosing namespace. 6235 // 6236 // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a 6237 // semantically-enclosing namespace, not a lexically-enclosing one. 6238 while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC)) 6239 DC = DC->getParent(); 6240 return true; 6241 } 6242 6243 /// \brief Returns true if given declaration has external C language linkage. 6244 static bool isDeclExternC(const Decl *D) { 6245 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 6246 return FD->isExternC(); 6247 if (const auto *VD = dyn_cast<VarDecl>(D)) 6248 return VD->isExternC(); 6249 6250 llvm_unreachable("Unknown type of decl!"); 6251 } 6252 6253 NamedDecl *Sema::ActOnVariableDeclarator( 6254 Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo, 6255 LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists, 6256 bool &AddToScope, ArrayRef<BindingDecl *> Bindings) { 6257 QualType R = TInfo->getType(); 6258 DeclarationName Name = GetNameForDeclarator(D).getName(); 6259 6260 IdentifierInfo *II = Name.getAsIdentifierInfo(); 6261 6262 if (D.isDecompositionDeclarator()) { 6263 // Take the name of the first declarator as our name for diagnostic 6264 // purposes. 6265 auto &Decomp = D.getDecompositionDeclarator(); 6266 if (!Decomp.bindings().empty()) { 6267 II = Decomp.bindings()[0].Name; 6268 Name = II; 6269 } 6270 } else if (!II) { 6271 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) << Name; 6272 return nullptr; 6273 } 6274 6275 if (getLangOpts().OpenCL) { 6276 // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument. 6277 // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function 6278 // argument. 6279 if (R->isImageType() || R->isPipeType()) { 6280 Diag(D.getIdentifierLoc(), 6281 diag::err_opencl_type_can_only_be_used_as_function_parameter) 6282 << R; 6283 D.setInvalidType(); 6284 return nullptr; 6285 } 6286 6287 // OpenCL v1.2 s6.9.r: 6288 // The event type cannot be used to declare a program scope variable. 6289 // OpenCL v2.0 s6.9.q: 6290 // The clk_event_t and reserve_id_t types cannot be declared in program scope. 6291 if (NULL == S->getParent()) { 6292 if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) { 6293 Diag(D.getIdentifierLoc(), 6294 diag::err_invalid_type_for_program_scope_var) << R; 6295 D.setInvalidType(); 6296 return nullptr; 6297 } 6298 } 6299 6300 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed. 6301 QualType NR = R; 6302 while (NR->isPointerType()) { 6303 if (NR->isFunctionPointerType()) { 6304 Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer); 6305 D.setInvalidType(); 6306 break; 6307 } 6308 NR = NR->getPointeeType(); 6309 } 6310 6311 if (!getOpenCLOptions().isEnabled("cl_khr_fp16")) { 6312 // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and 6313 // half array type (unless the cl_khr_fp16 extension is enabled). 6314 if (Context.getBaseElementType(R)->isHalfType()) { 6315 Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R; 6316 D.setInvalidType(); 6317 } 6318 } 6319 6320 if (R->isSamplerT()) { 6321 // OpenCL v1.2 s6.9.b p4: 6322 // The sampler type cannot be used with the __local and __global address 6323 // space qualifiers. 6324 if (R.getAddressSpace() == LangAS::opencl_local || 6325 R.getAddressSpace() == LangAS::opencl_global) { 6326 Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace); 6327 } 6328 6329 // OpenCL v1.2 s6.12.14.1: 6330 // A global sampler must be declared with either the constant address 6331 // space qualifier or with the const qualifier. 6332 if (DC->isTranslationUnit() && 6333 !(R.getAddressSpace() == LangAS::opencl_constant || 6334 R.isConstQualified())) { 6335 Diag(D.getIdentifierLoc(), diag::err_opencl_nonconst_global_sampler); 6336 D.setInvalidType(); 6337 } 6338 } 6339 6340 // OpenCL v1.2 s6.9.r: 6341 // The event type cannot be used with the __local, __constant and __global 6342 // address space qualifiers. 6343 if (R->isEventT()) { 6344 if (R.getAddressSpace() != LangAS::opencl_private) { 6345 Diag(D.getLocStart(), diag::err_event_t_addr_space_qual); 6346 D.setInvalidType(); 6347 } 6348 } 6349 } 6350 6351 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec(); 6352 StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec()); 6353 6354 // dllimport globals without explicit storage class are treated as extern. We 6355 // have to change the storage class this early to get the right DeclContext. 6356 if (SC == SC_None && !DC->isRecord() && 6357 hasParsedAttr(S, D, AttributeList::AT_DLLImport) && 6358 !hasParsedAttr(S, D, AttributeList::AT_DLLExport)) 6359 SC = SC_Extern; 6360 6361 DeclContext *OriginalDC = DC; 6362 bool IsLocalExternDecl = SC == SC_Extern && 6363 adjustContextForLocalExternDecl(DC); 6364 6365 if (SCSpec == DeclSpec::SCS_mutable) { 6366 // mutable can only appear on non-static class members, so it's always 6367 // an error here 6368 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember); 6369 D.setInvalidType(); 6370 SC = SC_None; 6371 } 6372 6373 if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register && 6374 !D.getAsmLabel() && !getSourceManager().isInSystemMacro( 6375 D.getDeclSpec().getStorageClassSpecLoc())) { 6376 // In C++11, the 'register' storage class specifier is deprecated. 6377 // Suppress the warning in system macros, it's used in macros in some 6378 // popular C system headers, such as in glibc's htonl() macro. 6379 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6380 getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class 6381 : diag::warn_deprecated_register) 6382 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6383 } 6384 6385 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 6386 6387 if (!DC->isRecord() && S->getFnParent() == nullptr) { 6388 // C99 6.9p2: The storage-class specifiers auto and register shall not 6389 // appear in the declaration specifiers in an external declaration. 6390 // Global Register+Asm is a GNU extension we support. 6391 if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) { 6392 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope); 6393 D.setInvalidType(); 6394 } 6395 } 6396 6397 bool IsMemberSpecialization = false; 6398 bool IsVariableTemplateSpecialization = false; 6399 bool IsPartialSpecialization = false; 6400 bool IsVariableTemplate = false; 6401 VarDecl *NewVD = nullptr; 6402 VarTemplateDecl *NewTemplate = nullptr; 6403 TemplateParameterList *TemplateParams = nullptr; 6404 if (!getLangOpts().CPlusPlus) { 6405 NewVD = VarDecl::Create(Context, DC, D.getLocStart(), 6406 D.getIdentifierLoc(), II, 6407 R, TInfo, SC); 6408 6409 if (R->getContainedDeducedType()) 6410 ParsingInitForAutoVars.insert(NewVD); 6411 6412 if (D.isInvalidType()) 6413 NewVD->setInvalidDecl(); 6414 } else { 6415 bool Invalid = false; 6416 6417 if (DC->isRecord() && !CurContext->isRecord()) { 6418 // This is an out-of-line definition of a static data member. 6419 switch (SC) { 6420 case SC_None: 6421 break; 6422 case SC_Static: 6423 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6424 diag::err_static_out_of_line) 6425 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6426 break; 6427 case SC_Auto: 6428 case SC_Register: 6429 case SC_Extern: 6430 // [dcl.stc] p2: The auto or register specifiers shall be applied only 6431 // to names of variables declared in a block or to function parameters. 6432 // [dcl.stc] p6: The extern specifier cannot be used in the declaration 6433 // of class members 6434 6435 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6436 diag::err_storage_class_for_static_member) 6437 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6438 break; 6439 case SC_PrivateExtern: 6440 llvm_unreachable("C storage class in c++!"); 6441 } 6442 } 6443 6444 if (SC == SC_Static && CurContext->isRecord()) { 6445 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) { 6446 if (RD->isLocalClass()) 6447 Diag(D.getIdentifierLoc(), 6448 diag::err_static_data_member_not_allowed_in_local_class) 6449 << Name << RD->getDeclName(); 6450 6451 // C++98 [class.union]p1: If a union contains a static data member, 6452 // the program is ill-formed. C++11 drops this restriction. 6453 if (RD->isUnion()) 6454 Diag(D.getIdentifierLoc(), 6455 getLangOpts().CPlusPlus11 6456 ? diag::warn_cxx98_compat_static_data_member_in_union 6457 : diag::ext_static_data_member_in_union) << Name; 6458 // We conservatively disallow static data members in anonymous structs. 6459 else if (!RD->getDeclName()) 6460 Diag(D.getIdentifierLoc(), 6461 diag::err_static_data_member_not_allowed_in_anon_struct) 6462 << Name << RD->isUnion(); 6463 } 6464 } 6465 6466 // Match up the template parameter lists with the scope specifier, then 6467 // determine whether we have a template or a template specialization. 6468 TemplateParams = MatchTemplateParametersToScopeSpecifier( 6469 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(), 6470 D.getCXXScopeSpec(), 6471 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId 6472 ? D.getName().TemplateId 6473 : nullptr, 6474 TemplateParamLists, 6475 /*never a friend*/ false, IsMemberSpecialization, Invalid); 6476 6477 if (TemplateParams) { 6478 if (!TemplateParams->size() && 6479 D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) { 6480 // There is an extraneous 'template<>' for this variable. Complain 6481 // about it, but allow the declaration of the variable. 6482 Diag(TemplateParams->getTemplateLoc(), 6483 diag::err_template_variable_noparams) 6484 << II 6485 << SourceRange(TemplateParams->getTemplateLoc(), 6486 TemplateParams->getRAngleLoc()); 6487 TemplateParams = nullptr; 6488 } else { 6489 if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) { 6490 // This is an explicit specialization or a partial specialization. 6491 // FIXME: Check that we can declare a specialization here. 6492 IsVariableTemplateSpecialization = true; 6493 IsPartialSpecialization = TemplateParams->size() > 0; 6494 } else { // if (TemplateParams->size() > 0) 6495 // This is a template declaration. 6496 IsVariableTemplate = true; 6497 6498 // Check that we can declare a template here. 6499 if (CheckTemplateDeclScope(S, TemplateParams)) 6500 return nullptr; 6501 6502 // Only C++1y supports variable templates (N3651). 6503 Diag(D.getIdentifierLoc(), 6504 getLangOpts().CPlusPlus14 6505 ? diag::warn_cxx11_compat_variable_template 6506 : diag::ext_variable_template); 6507 } 6508 } 6509 } else { 6510 assert((Invalid || 6511 D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) && 6512 "should have a 'template<>' for this decl"); 6513 } 6514 6515 if (IsVariableTemplateSpecialization) { 6516 SourceLocation TemplateKWLoc = 6517 TemplateParamLists.size() > 0 6518 ? TemplateParamLists[0]->getTemplateLoc() 6519 : SourceLocation(); 6520 DeclResult Res = ActOnVarTemplateSpecialization( 6521 S, D, TInfo, TemplateKWLoc, TemplateParams, SC, 6522 IsPartialSpecialization); 6523 if (Res.isInvalid()) 6524 return nullptr; 6525 NewVD = cast<VarDecl>(Res.get()); 6526 AddToScope = false; 6527 } else if (D.isDecompositionDeclarator()) { 6528 NewVD = DecompositionDecl::Create(Context, DC, D.getLocStart(), 6529 D.getIdentifierLoc(), R, TInfo, SC, 6530 Bindings); 6531 } else 6532 NewVD = VarDecl::Create(Context, DC, D.getLocStart(), 6533 D.getIdentifierLoc(), II, R, TInfo, SC); 6534 6535 // If this is supposed to be a variable template, create it as such. 6536 if (IsVariableTemplate) { 6537 NewTemplate = 6538 VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name, 6539 TemplateParams, NewVD); 6540 NewVD->setDescribedVarTemplate(NewTemplate); 6541 } 6542 6543 // If this decl has an auto type in need of deduction, make a note of the 6544 // Decl so we can diagnose uses of it in its own initializer. 6545 if (R->getContainedDeducedType()) 6546 ParsingInitForAutoVars.insert(NewVD); 6547 6548 if (D.isInvalidType() || Invalid) { 6549 NewVD->setInvalidDecl(); 6550 if (NewTemplate) 6551 NewTemplate->setInvalidDecl(); 6552 } 6553 6554 SetNestedNameSpecifier(NewVD, D); 6555 6556 // If we have any template parameter lists that don't directly belong to 6557 // the variable (matching the scope specifier), store them. 6558 unsigned VDTemplateParamLists = TemplateParams ? 1 : 0; 6559 if (TemplateParamLists.size() > VDTemplateParamLists) 6560 NewVD->setTemplateParameterListsInfo( 6561 Context, TemplateParamLists.drop_back(VDTemplateParamLists)); 6562 6563 if (D.getDeclSpec().isConstexprSpecified()) { 6564 NewVD->setConstexpr(true); 6565 // C++1z [dcl.spec.constexpr]p1: 6566 // A static data member declared with the constexpr specifier is 6567 // implicitly an inline variable. 6568 if (NewVD->isStaticDataMember() && getLangOpts().CPlusPlus17) 6569 NewVD->setImplicitlyInline(); 6570 } 6571 } 6572 6573 if (D.getDeclSpec().isInlineSpecified()) { 6574 if (!getLangOpts().CPlusPlus) { 6575 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 6576 << 0; 6577 } else if (CurContext->isFunctionOrMethod()) { 6578 // 'inline' is not allowed on block scope variable declaration. 6579 Diag(D.getDeclSpec().getInlineSpecLoc(), 6580 diag::err_inline_declaration_block_scope) << Name 6581 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 6582 } else { 6583 Diag(D.getDeclSpec().getInlineSpecLoc(), 6584 getLangOpts().CPlusPlus17 ? diag::warn_cxx14_compat_inline_variable 6585 : diag::ext_inline_variable); 6586 NewVD->setInlineSpecified(); 6587 } 6588 } 6589 6590 // Set the lexical context. If the declarator has a C++ scope specifier, the 6591 // lexical context will be different from the semantic context. 6592 NewVD->setLexicalDeclContext(CurContext); 6593 if (NewTemplate) 6594 NewTemplate->setLexicalDeclContext(CurContext); 6595 6596 if (IsLocalExternDecl) { 6597 if (D.isDecompositionDeclarator()) 6598 for (auto *B : Bindings) 6599 B->setLocalExternDecl(); 6600 else 6601 NewVD->setLocalExternDecl(); 6602 } 6603 6604 bool EmitTLSUnsupportedError = false; 6605 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) { 6606 // C++11 [dcl.stc]p4: 6607 // When thread_local is applied to a variable of block scope the 6608 // storage-class-specifier static is implied if it does not appear 6609 // explicitly. 6610 // Core issue: 'static' is not implied if the variable is declared 6611 // 'extern'. 6612 if (NewVD->hasLocalStorage() && 6613 (SCSpec != DeclSpec::SCS_unspecified || 6614 TSCS != DeclSpec::TSCS_thread_local || 6615 !DC->isFunctionOrMethod())) 6616 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6617 diag::err_thread_non_global) 6618 << DeclSpec::getSpecifierName(TSCS); 6619 else if (!Context.getTargetInfo().isTLSSupported()) { 6620 if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) { 6621 // Postpone error emission until we've collected attributes required to 6622 // figure out whether it's a host or device variable and whether the 6623 // error should be ignored. 6624 EmitTLSUnsupportedError = true; 6625 // We still need to mark the variable as TLS so it shows up in AST with 6626 // proper storage class for other tools to use even if we're not going 6627 // to emit any code for it. 6628 NewVD->setTSCSpec(TSCS); 6629 } else 6630 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6631 diag::err_thread_unsupported); 6632 } else 6633 NewVD->setTSCSpec(TSCS); 6634 } 6635 6636 // C99 6.7.4p3 6637 // An inline definition of a function with external linkage shall 6638 // not contain a definition of a modifiable object with static or 6639 // thread storage duration... 6640 // We only apply this when the function is required to be defined 6641 // elsewhere, i.e. when the function is not 'extern inline'. Note 6642 // that a local variable with thread storage duration still has to 6643 // be marked 'static'. Also note that it's possible to get these 6644 // semantics in C++ using __attribute__((gnu_inline)). 6645 if (SC == SC_Static && S->getFnParent() != nullptr && 6646 !NewVD->getType().isConstQualified()) { 6647 FunctionDecl *CurFD = getCurFunctionDecl(); 6648 if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) { 6649 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6650 diag::warn_static_local_in_extern_inline); 6651 MaybeSuggestAddingStaticToDecl(CurFD); 6652 } 6653 } 6654 6655 if (D.getDeclSpec().isModulePrivateSpecified()) { 6656 if (IsVariableTemplateSpecialization) 6657 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 6658 << (IsPartialSpecialization ? 1 : 0) 6659 << FixItHint::CreateRemoval( 6660 D.getDeclSpec().getModulePrivateSpecLoc()); 6661 else if (IsMemberSpecialization) 6662 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 6663 << 2 6664 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 6665 else if (NewVD->hasLocalStorage()) 6666 Diag(NewVD->getLocation(), diag::err_module_private_local) 6667 << 0 << NewVD->getDeclName() 6668 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 6669 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 6670 else { 6671 NewVD->setModulePrivate(); 6672 if (NewTemplate) 6673 NewTemplate->setModulePrivate(); 6674 for (auto *B : Bindings) 6675 B->setModulePrivate(); 6676 } 6677 } 6678 6679 // Handle attributes prior to checking for duplicates in MergeVarDecl 6680 ProcessDeclAttributes(S, NewVD, D); 6681 6682 if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) { 6683 if (EmitTLSUnsupportedError && 6684 ((getLangOpts().CUDA && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) || 6685 (getLangOpts().OpenMPIsDevice && 6686 NewVD->hasAttr<OMPDeclareTargetDeclAttr>()))) 6687 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 6688 diag::err_thread_unsupported); 6689 // CUDA B.2.5: "__shared__ and __constant__ variables have implied static 6690 // storage [duration]." 6691 if (SC == SC_None && S->getFnParent() != nullptr && 6692 (NewVD->hasAttr<CUDASharedAttr>() || 6693 NewVD->hasAttr<CUDAConstantAttr>())) { 6694 NewVD->setStorageClass(SC_Static); 6695 } 6696 } 6697 6698 // Ensure that dllimport globals without explicit storage class are treated as 6699 // extern. The storage class is set above using parsed attributes. Now we can 6700 // check the VarDecl itself. 6701 assert(!NewVD->hasAttr<DLLImportAttr>() || 6702 NewVD->getAttr<DLLImportAttr>()->isInherited() || 6703 NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None); 6704 6705 // In auto-retain/release, infer strong retension for variables of 6706 // retainable type. 6707 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD)) 6708 NewVD->setInvalidDecl(); 6709 6710 // Handle GNU asm-label extension (encoded as an attribute). 6711 if (Expr *E = (Expr*)D.getAsmLabel()) { 6712 // The parser guarantees this is a string. 6713 StringLiteral *SE = cast<StringLiteral>(E); 6714 StringRef Label = SE->getString(); 6715 if (S->getFnParent() != nullptr) { 6716 switch (SC) { 6717 case SC_None: 6718 case SC_Auto: 6719 Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label; 6720 break; 6721 case SC_Register: 6722 // Local Named register 6723 if (!Context.getTargetInfo().isValidGCCRegisterName(Label) && 6724 DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) 6725 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 6726 break; 6727 case SC_Static: 6728 case SC_Extern: 6729 case SC_PrivateExtern: 6730 break; 6731 } 6732 } else if (SC == SC_Register) { 6733 // Global Named register 6734 if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) { 6735 const auto &TI = Context.getTargetInfo(); 6736 bool HasSizeMismatch; 6737 6738 if (!TI.isValidGCCRegisterName(Label)) 6739 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 6740 else if (!TI.validateGlobalRegisterVariable(Label, 6741 Context.getTypeSize(R), 6742 HasSizeMismatch)) 6743 Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label; 6744 else if (HasSizeMismatch) 6745 Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label; 6746 } 6747 6748 if (!R->isIntegralType(Context) && !R->isPointerType()) { 6749 Diag(D.getLocStart(), diag::err_asm_bad_register_type); 6750 NewVD->setInvalidDecl(true); 6751 } 6752 } 6753 6754 NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), 6755 Context, Label, 0)); 6756 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 6757 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 6758 ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier()); 6759 if (I != ExtnameUndeclaredIdentifiers.end()) { 6760 if (isDeclExternC(NewVD)) { 6761 NewVD->addAttr(I->second); 6762 ExtnameUndeclaredIdentifiers.erase(I); 6763 } else 6764 Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied) 6765 << /*Variable*/1 << NewVD; 6766 } 6767 } 6768 6769 // Find the shadowed declaration before filtering for scope. 6770 NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty() 6771 ? getShadowedDeclaration(NewVD, Previous) 6772 : nullptr; 6773 6774 // Don't consider existing declarations that are in a different 6775 // scope and are out-of-semantic-context declarations (if the new 6776 // declaration has linkage). 6777 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD), 6778 D.getCXXScopeSpec().isNotEmpty() || 6779 IsMemberSpecialization || 6780 IsVariableTemplateSpecialization); 6781 6782 // Check whether the previous declaration is in the same block scope. This 6783 // affects whether we merge types with it, per C++11 [dcl.array]p3. 6784 if (getLangOpts().CPlusPlus && 6785 NewVD->isLocalVarDecl() && NewVD->hasExternalStorage()) 6786 NewVD->setPreviousDeclInSameBlockScope( 6787 Previous.isSingleResult() && !Previous.isShadowed() && 6788 isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false)); 6789 6790 if (!getLangOpts().CPlusPlus) { 6791 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 6792 } else { 6793 // If this is an explicit specialization of a static data member, check it. 6794 if (IsMemberSpecialization && !NewVD->isInvalidDecl() && 6795 CheckMemberSpecialization(NewVD, Previous)) 6796 NewVD->setInvalidDecl(); 6797 6798 // Merge the decl with the existing one if appropriate. 6799 if (!Previous.empty()) { 6800 if (Previous.isSingleResult() && 6801 isa<FieldDecl>(Previous.getFoundDecl()) && 6802 D.getCXXScopeSpec().isSet()) { 6803 // The user tried to define a non-static data member 6804 // out-of-line (C++ [dcl.meaning]p1). 6805 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line) 6806 << D.getCXXScopeSpec().getRange(); 6807 Previous.clear(); 6808 NewVD->setInvalidDecl(); 6809 } 6810 } else if (D.getCXXScopeSpec().isSet()) { 6811 // No previous declaration in the qualifying scope. 6812 Diag(D.getIdentifierLoc(), diag::err_no_member) 6813 << Name << computeDeclContext(D.getCXXScopeSpec(), true) 6814 << D.getCXXScopeSpec().getRange(); 6815 NewVD->setInvalidDecl(); 6816 } 6817 6818 if (!IsVariableTemplateSpecialization) 6819 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 6820 6821 if (NewTemplate) { 6822 VarTemplateDecl *PrevVarTemplate = 6823 NewVD->getPreviousDecl() 6824 ? NewVD->getPreviousDecl()->getDescribedVarTemplate() 6825 : nullptr; 6826 6827 // Check the template parameter list of this declaration, possibly 6828 // merging in the template parameter list from the previous variable 6829 // template declaration. 6830 if (CheckTemplateParameterList( 6831 TemplateParams, 6832 PrevVarTemplate ? PrevVarTemplate->getTemplateParameters() 6833 : nullptr, 6834 (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() && 6835 DC->isDependentContext()) 6836 ? TPC_ClassTemplateMember 6837 : TPC_VarTemplate)) 6838 NewVD->setInvalidDecl(); 6839 6840 // If we are providing an explicit specialization of a static variable 6841 // template, make a note of that. 6842 if (PrevVarTemplate && 6843 PrevVarTemplate->getInstantiatedFromMemberTemplate()) 6844 PrevVarTemplate->setMemberSpecialization(); 6845 } 6846 } 6847 6848 // Diagnose shadowed variables iff this isn't a redeclaration. 6849 if (ShadowedDecl && !D.isRedeclaration()) 6850 CheckShadow(NewVD, ShadowedDecl, Previous); 6851 6852 ProcessPragmaWeak(S, NewVD); 6853 6854 // If this is the first declaration of an extern C variable, update 6855 // the map of such variables. 6856 if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() && 6857 isIncompleteDeclExternC(*this, NewVD)) 6858 RegisterLocallyScopedExternCDecl(NewVD, S); 6859 6860 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) { 6861 Decl *ManglingContextDecl; 6862 if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext( 6863 NewVD->getDeclContext(), ManglingContextDecl)) { 6864 Context.setManglingNumber( 6865 NewVD, MCtx->getManglingNumber( 6866 NewVD, getMSManglingNumber(getLangOpts(), S))); 6867 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD)); 6868 } 6869 } 6870 6871 // Special handling of variable named 'main'. 6872 if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") && 6873 NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() && 6874 !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) { 6875 6876 // C++ [basic.start.main]p3 6877 // A program that declares a variable main at global scope is ill-formed. 6878 if (getLangOpts().CPlusPlus) 6879 Diag(D.getLocStart(), diag::err_main_global_variable); 6880 6881 // In C, and external-linkage variable named main results in undefined 6882 // behavior. 6883 else if (NewVD->hasExternalFormalLinkage()) 6884 Diag(D.getLocStart(), diag::warn_main_redefined); 6885 } 6886 6887 if (D.isRedeclaration() && !Previous.empty()) { 6888 NamedDecl *Prev = Previous.getRepresentativeDecl(); 6889 checkDLLAttributeRedeclaration(*this, Prev, NewVD, IsMemberSpecialization, 6890 D.isFunctionDefinition()); 6891 } 6892 6893 if (NewTemplate) { 6894 if (NewVD->isInvalidDecl()) 6895 NewTemplate->setInvalidDecl(); 6896 ActOnDocumentableDecl(NewTemplate); 6897 return NewTemplate; 6898 } 6899 6900 if (IsMemberSpecialization && !NewVD->isInvalidDecl()) 6901 CompleteMemberSpecialization(NewVD, Previous); 6902 6903 return NewVD; 6904 } 6905 6906 /// Enum describing the %select options in diag::warn_decl_shadow. 6907 enum ShadowedDeclKind { 6908 SDK_Local, 6909 SDK_Global, 6910 SDK_StaticMember, 6911 SDK_Field, 6912 SDK_Typedef, 6913 SDK_Using 6914 }; 6915 6916 /// Determine what kind of declaration we're shadowing. 6917 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl, 6918 const DeclContext *OldDC) { 6919 if (isa<TypeAliasDecl>(ShadowedDecl)) 6920 return SDK_Using; 6921 else if (isa<TypedefDecl>(ShadowedDecl)) 6922 return SDK_Typedef; 6923 else if (isa<RecordDecl>(OldDC)) 6924 return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember; 6925 6926 return OldDC->isFileContext() ? SDK_Global : SDK_Local; 6927 } 6928 6929 /// Return the location of the capture if the given lambda captures the given 6930 /// variable \p VD, or an invalid source location otherwise. 6931 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI, 6932 const VarDecl *VD) { 6933 for (const LambdaScopeInfo::Capture &Capture : LSI->Captures) { 6934 if (Capture.isVariableCapture() && Capture.getVariable() == VD) 6935 return Capture.getLocation(); 6936 } 6937 return SourceLocation(); 6938 } 6939 6940 static bool shouldWarnIfShadowedDecl(const DiagnosticsEngine &Diags, 6941 const LookupResult &R) { 6942 // Only diagnose if we're shadowing an unambiguous field or variable. 6943 if (R.getResultKind() != LookupResult::Found) 6944 return false; 6945 6946 // Return false if warning is ignored. 6947 return !Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc()); 6948 } 6949 6950 /// \brief Return the declaration shadowed by the given variable \p D, or null 6951 /// if it doesn't shadow any declaration or shadowing warnings are disabled. 6952 NamedDecl *Sema::getShadowedDeclaration(const VarDecl *D, 6953 const LookupResult &R) { 6954 if (!shouldWarnIfShadowedDecl(Diags, R)) 6955 return nullptr; 6956 6957 // Don't diagnose declarations at file scope. 6958 if (D->hasGlobalStorage()) 6959 return nullptr; 6960 6961 NamedDecl *ShadowedDecl = R.getFoundDecl(); 6962 return isa<VarDecl>(ShadowedDecl) || isa<FieldDecl>(ShadowedDecl) 6963 ? ShadowedDecl 6964 : nullptr; 6965 } 6966 6967 /// \brief Return the declaration shadowed by the given typedef \p D, or null 6968 /// if it doesn't shadow any declaration or shadowing warnings are disabled. 6969 NamedDecl *Sema::getShadowedDeclaration(const TypedefNameDecl *D, 6970 const LookupResult &R) { 6971 // Don't warn if typedef declaration is part of a class 6972 if (D->getDeclContext()->isRecord()) 6973 return nullptr; 6974 6975 if (!shouldWarnIfShadowedDecl(Diags, R)) 6976 return nullptr; 6977 6978 NamedDecl *ShadowedDecl = R.getFoundDecl(); 6979 return isa<TypedefNameDecl>(ShadowedDecl) ? ShadowedDecl : nullptr; 6980 } 6981 6982 /// \brief Diagnose variable or built-in function shadowing. Implements 6983 /// -Wshadow. 6984 /// 6985 /// This method is called whenever a VarDecl is added to a "useful" 6986 /// scope. 6987 /// 6988 /// \param ShadowedDecl the declaration that is shadowed by the given variable 6989 /// \param R the lookup of the name 6990 /// 6991 void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl, 6992 const LookupResult &R) { 6993 DeclContext *NewDC = D->getDeclContext(); 6994 6995 if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) { 6996 // Fields are not shadowed by variables in C++ static methods. 6997 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC)) 6998 if (MD->isStatic()) 6999 return; 7000 7001 // Fields shadowed by constructor parameters are a special case. Usually 7002 // the constructor initializes the field with the parameter. 7003 if (isa<CXXConstructorDecl>(NewDC)) 7004 if (const auto PVD = dyn_cast<ParmVarDecl>(D)) { 7005 // Remember that this was shadowed so we can either warn about its 7006 // modification or its existence depending on warning settings. 7007 ShadowingDecls.insert({PVD->getCanonicalDecl(), FD}); 7008 return; 7009 } 7010 } 7011 7012 if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl)) 7013 if (shadowedVar->isExternC()) { 7014 // For shadowing external vars, make sure that we point to the global 7015 // declaration, not a locally scoped extern declaration. 7016 for (auto I : shadowedVar->redecls()) 7017 if (I->isFileVarDecl()) { 7018 ShadowedDecl = I; 7019 break; 7020 } 7021 } 7022 7023 DeclContext *OldDC = ShadowedDecl->getDeclContext()->getRedeclContext(); 7024 7025 unsigned WarningDiag = diag::warn_decl_shadow; 7026 SourceLocation CaptureLoc; 7027 if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC && 7028 isa<CXXMethodDecl>(NewDC)) { 7029 if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) { 7030 if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) { 7031 if (RD->getLambdaCaptureDefault() == LCD_None) { 7032 // Try to avoid warnings for lambdas with an explicit capture list. 7033 const auto *LSI = cast<LambdaScopeInfo>(getCurFunction()); 7034 // Warn only when the lambda captures the shadowed decl explicitly. 7035 CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl)); 7036 if (CaptureLoc.isInvalid()) 7037 WarningDiag = diag::warn_decl_shadow_uncaptured_local; 7038 } else { 7039 // Remember that this was shadowed so we can avoid the warning if the 7040 // shadowed decl isn't captured and the warning settings allow it. 7041 cast<LambdaScopeInfo>(getCurFunction()) 7042 ->ShadowingDecls.push_back( 7043 {cast<VarDecl>(D), cast<VarDecl>(ShadowedDecl)}); 7044 return; 7045 } 7046 } 7047 7048 if (cast<VarDecl>(ShadowedDecl)->hasLocalStorage()) { 7049 // A variable can't shadow a local variable in an enclosing scope, if 7050 // they are separated by a non-capturing declaration context. 7051 for (DeclContext *ParentDC = NewDC; 7052 ParentDC && !ParentDC->Equals(OldDC); 7053 ParentDC = getLambdaAwareParentOfDeclContext(ParentDC)) { 7054 // Only block literals, captured statements, and lambda expressions 7055 // can capture; other scopes don't. 7056 if (!isa<BlockDecl>(ParentDC) && !isa<CapturedDecl>(ParentDC) && 7057 !isLambdaCallOperator(ParentDC)) { 7058 return; 7059 } 7060 } 7061 } 7062 } 7063 } 7064 7065 // Only warn about certain kinds of shadowing for class members. 7066 if (NewDC && NewDC->isRecord()) { 7067 // In particular, don't warn about shadowing non-class members. 7068 if (!OldDC->isRecord()) 7069 return; 7070 7071 // TODO: should we warn about static data members shadowing 7072 // static data members from base classes? 7073 7074 // TODO: don't diagnose for inaccessible shadowed members. 7075 // This is hard to do perfectly because we might friend the 7076 // shadowing context, but that's just a false negative. 7077 } 7078 7079 7080 DeclarationName Name = R.getLookupName(); 7081 7082 // Emit warning and note. 7083 if (getSourceManager().isInSystemMacro(R.getNameLoc())) 7084 return; 7085 ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC); 7086 Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC; 7087 if (!CaptureLoc.isInvalid()) 7088 Diag(CaptureLoc, diag::note_var_explicitly_captured_here) 7089 << Name << /*explicitly*/ 1; 7090 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 7091 } 7092 7093 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD 7094 /// when these variables are captured by the lambda. 7095 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) { 7096 for (const auto &Shadow : LSI->ShadowingDecls) { 7097 const VarDecl *ShadowedDecl = Shadow.ShadowedDecl; 7098 // Try to avoid the warning when the shadowed decl isn't captured. 7099 SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl); 7100 const DeclContext *OldDC = ShadowedDecl->getDeclContext(); 7101 Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid() 7102 ? diag::warn_decl_shadow_uncaptured_local 7103 : diag::warn_decl_shadow) 7104 << Shadow.VD->getDeclName() 7105 << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC; 7106 if (!CaptureLoc.isInvalid()) 7107 Diag(CaptureLoc, diag::note_var_explicitly_captured_here) 7108 << Shadow.VD->getDeclName() << /*explicitly*/ 0; 7109 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 7110 } 7111 } 7112 7113 /// \brief Check -Wshadow without the advantage of a previous lookup. 7114 void Sema::CheckShadow(Scope *S, VarDecl *D) { 7115 if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation())) 7116 return; 7117 7118 LookupResult R(*this, D->getDeclName(), D->getLocation(), 7119 Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration); 7120 LookupName(R, S); 7121 if (NamedDecl *ShadowedDecl = getShadowedDeclaration(D, R)) 7122 CheckShadow(D, ShadowedDecl, R); 7123 } 7124 7125 /// Check if 'E', which is an expression that is about to be modified, refers 7126 /// to a constructor parameter that shadows a field. 7127 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) { 7128 // Quickly ignore expressions that can't be shadowing ctor parameters. 7129 if (!getLangOpts().CPlusPlus || ShadowingDecls.empty()) 7130 return; 7131 E = E->IgnoreParenImpCasts(); 7132 auto *DRE = dyn_cast<DeclRefExpr>(E); 7133 if (!DRE) 7134 return; 7135 const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl()); 7136 auto I = ShadowingDecls.find(D); 7137 if (I == ShadowingDecls.end()) 7138 return; 7139 const NamedDecl *ShadowedDecl = I->second; 7140 const DeclContext *OldDC = ShadowedDecl->getDeclContext(); 7141 Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC; 7142 Diag(D->getLocation(), diag::note_var_declared_here) << D; 7143 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 7144 7145 // Avoid issuing multiple warnings about the same decl. 7146 ShadowingDecls.erase(I); 7147 } 7148 7149 /// Check for conflict between this global or extern "C" declaration and 7150 /// previous global or extern "C" declarations. This is only used in C++. 7151 template<typename T> 7152 static bool checkGlobalOrExternCConflict( 7153 Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) { 7154 assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\""); 7155 NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName()); 7156 7157 if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) { 7158 // The common case: this global doesn't conflict with any extern "C" 7159 // declaration. 7160 return false; 7161 } 7162 7163 if (Prev) { 7164 if (!IsGlobal || isIncompleteDeclExternC(S, ND)) { 7165 // Both the old and new declarations have C language linkage. This is a 7166 // redeclaration. 7167 Previous.clear(); 7168 Previous.addDecl(Prev); 7169 return true; 7170 } 7171 7172 // This is a global, non-extern "C" declaration, and there is a previous 7173 // non-global extern "C" declaration. Diagnose if this is a variable 7174 // declaration. 7175 if (!isa<VarDecl>(ND)) 7176 return false; 7177 } else { 7178 // The declaration is extern "C". Check for any declaration in the 7179 // translation unit which might conflict. 7180 if (IsGlobal) { 7181 // We have already performed the lookup into the translation unit. 7182 IsGlobal = false; 7183 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7184 I != E; ++I) { 7185 if (isa<VarDecl>(*I)) { 7186 Prev = *I; 7187 break; 7188 } 7189 } 7190 } else { 7191 DeclContext::lookup_result R = 7192 S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName()); 7193 for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end(); 7194 I != E; ++I) { 7195 if (isa<VarDecl>(*I)) { 7196 Prev = *I; 7197 break; 7198 } 7199 // FIXME: If we have any other entity with this name in global scope, 7200 // the declaration is ill-formed, but that is a defect: it breaks the 7201 // 'stat' hack, for instance. Only variables can have mangled name 7202 // clashes with extern "C" declarations, so only they deserve a 7203 // diagnostic. 7204 } 7205 } 7206 7207 if (!Prev) 7208 return false; 7209 } 7210 7211 // Use the first declaration's location to ensure we point at something which 7212 // is lexically inside an extern "C" linkage-spec. 7213 assert(Prev && "should have found a previous declaration to diagnose"); 7214 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev)) 7215 Prev = FD->getFirstDecl(); 7216 else 7217 Prev = cast<VarDecl>(Prev)->getFirstDecl(); 7218 7219 S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict) 7220 << IsGlobal << ND; 7221 S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict) 7222 << IsGlobal; 7223 return false; 7224 } 7225 7226 /// Apply special rules for handling extern "C" declarations. Returns \c true 7227 /// if we have found that this is a redeclaration of some prior entity. 7228 /// 7229 /// Per C++ [dcl.link]p6: 7230 /// Two declarations [for a function or variable] with C language linkage 7231 /// with the same name that appear in different scopes refer to the same 7232 /// [entity]. An entity with C language linkage shall not be declared with 7233 /// the same name as an entity in global scope. 7234 template<typename T> 7235 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND, 7236 LookupResult &Previous) { 7237 if (!S.getLangOpts().CPlusPlus) { 7238 // In C, when declaring a global variable, look for a corresponding 'extern' 7239 // variable declared in function scope. We don't need this in C++, because 7240 // we find local extern decls in the surrounding file-scope DeclContext. 7241 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 7242 if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) { 7243 Previous.clear(); 7244 Previous.addDecl(Prev); 7245 return true; 7246 } 7247 } 7248 return false; 7249 } 7250 7251 // A declaration in the translation unit can conflict with an extern "C" 7252 // declaration. 7253 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) 7254 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous); 7255 7256 // An extern "C" declaration can conflict with a declaration in the 7257 // translation unit or can be a redeclaration of an extern "C" declaration 7258 // in another scope. 7259 if (isIncompleteDeclExternC(S,ND)) 7260 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous); 7261 7262 // Neither global nor extern "C": nothing to do. 7263 return false; 7264 } 7265 7266 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) { 7267 // If the decl is already known invalid, don't check it. 7268 if (NewVD->isInvalidDecl()) 7269 return; 7270 7271 TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo(); 7272 QualType T = TInfo->getType(); 7273 7274 // Defer checking an 'auto' type until its initializer is attached. 7275 if (T->isUndeducedType()) 7276 return; 7277 7278 if (NewVD->hasAttrs()) 7279 CheckAlignasUnderalignment(NewVD); 7280 7281 if (T->isObjCObjectType()) { 7282 Diag(NewVD->getLocation(), diag::err_statically_allocated_object) 7283 << FixItHint::CreateInsertion(NewVD->getLocation(), "*"); 7284 T = Context.getObjCObjectPointerType(T); 7285 NewVD->setType(T); 7286 } 7287 7288 // Emit an error if an address space was applied to decl with local storage. 7289 // This includes arrays of objects with address space qualifiers, but not 7290 // automatic variables that point to other address spaces. 7291 // ISO/IEC TR 18037 S5.1.2 7292 if (!getLangOpts().OpenCL && NewVD->hasLocalStorage() && 7293 T.getAddressSpace() != LangAS::Default) { 7294 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 0; 7295 NewVD->setInvalidDecl(); 7296 return; 7297 } 7298 7299 // OpenCL v1.2 s6.8 - The static qualifier is valid only in program 7300 // scope. 7301 if (getLangOpts().OpenCLVersion == 120 && 7302 !getOpenCLOptions().isEnabled("cl_clang_storage_class_specifiers") && 7303 NewVD->isStaticLocal()) { 7304 Diag(NewVD->getLocation(), diag::err_static_function_scope); 7305 NewVD->setInvalidDecl(); 7306 return; 7307 } 7308 7309 if (getLangOpts().OpenCL) { 7310 // OpenCL v2.0 s6.12.5 - The __block storage type is not supported. 7311 if (NewVD->hasAttr<BlocksAttr>()) { 7312 Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type); 7313 return; 7314 } 7315 7316 if (T->isBlockPointerType()) { 7317 // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and 7318 // can't use 'extern' storage class. 7319 if (!T.isConstQualified()) { 7320 Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration) 7321 << 0 /*const*/; 7322 NewVD->setInvalidDecl(); 7323 return; 7324 } 7325 if (NewVD->hasExternalStorage()) { 7326 Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration); 7327 NewVD->setInvalidDecl(); 7328 return; 7329 } 7330 } 7331 // OpenCL v1.2 s6.5 - All program scope variables must be declared in the 7332 // __constant address space. 7333 // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static 7334 // variables inside a function can also be declared in the global 7335 // address space. 7336 if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() || 7337 NewVD->hasExternalStorage()) { 7338 if (!T->isSamplerT() && 7339 !(T.getAddressSpace() == LangAS::opencl_constant || 7340 (T.getAddressSpace() == LangAS::opencl_global && 7341 getLangOpts().OpenCLVersion == 200))) { 7342 int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1; 7343 if (getLangOpts().OpenCLVersion == 200) 7344 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space) 7345 << Scope << "global or constant"; 7346 else 7347 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space) 7348 << Scope << "constant"; 7349 NewVD->setInvalidDecl(); 7350 return; 7351 } 7352 } else { 7353 if (T.getAddressSpace() == LangAS::opencl_global) { 7354 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 7355 << 1 /*is any function*/ << "global"; 7356 NewVD->setInvalidDecl(); 7357 return; 7358 } 7359 if (T.getAddressSpace() == LangAS::opencl_constant || 7360 T.getAddressSpace() == LangAS::opencl_local) { 7361 FunctionDecl *FD = getCurFunctionDecl(); 7362 // OpenCL v1.1 s6.5.2 and s6.5.3: no local or constant variables 7363 // in functions. 7364 if (FD && !FD->hasAttr<OpenCLKernelAttr>()) { 7365 if (T.getAddressSpace() == LangAS::opencl_constant) 7366 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 7367 << 0 /*non-kernel only*/ << "constant"; 7368 else 7369 Diag(NewVD->getLocation(), diag::err_opencl_function_variable) 7370 << 0 /*non-kernel only*/ << "local"; 7371 NewVD->setInvalidDecl(); 7372 return; 7373 } 7374 // OpenCL v2.0 s6.5.2 and s6.5.3: local and constant variables must be 7375 // in the outermost scope of a kernel function. 7376 if (FD && FD->hasAttr<OpenCLKernelAttr>()) { 7377 if (!getCurScope()->isFunctionScope()) { 7378 if (T.getAddressSpace() == LangAS::opencl_constant) 7379 Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope) 7380 << "constant"; 7381 else 7382 Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope) 7383 << "local"; 7384 NewVD->setInvalidDecl(); 7385 return; 7386 } 7387 } 7388 } else if (T.getAddressSpace() != LangAS::opencl_private) { 7389 // Do not allow other address spaces on automatic variable. 7390 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 1; 7391 NewVD->setInvalidDecl(); 7392 return; 7393 } 7394 } 7395 } 7396 7397 if (NewVD->hasLocalStorage() && T.isObjCGCWeak() 7398 && !NewVD->hasAttr<BlocksAttr>()) { 7399 if (getLangOpts().getGC() != LangOptions::NonGC) 7400 Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local); 7401 else { 7402 assert(!getLangOpts().ObjCAutoRefCount); 7403 Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local); 7404 } 7405 } 7406 7407 bool isVM = T->isVariablyModifiedType(); 7408 if (isVM || NewVD->hasAttr<CleanupAttr>() || 7409 NewVD->hasAttr<BlocksAttr>()) 7410 getCurFunction()->setHasBranchProtectedScope(); 7411 7412 if ((isVM && NewVD->hasLinkage()) || 7413 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { 7414 bool SizeIsNegative; 7415 llvm::APSInt Oversized; 7416 TypeSourceInfo *FixedTInfo = 7417 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 7418 SizeIsNegative, Oversized); 7419 if (!FixedTInfo && T->isVariableArrayType()) { 7420 const VariableArrayType *VAT = Context.getAsVariableArrayType(T); 7421 // FIXME: This won't give the correct result for 7422 // int a[10][n]; 7423 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange(); 7424 7425 if (NewVD->isFileVarDecl()) 7426 Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope) 7427 << SizeRange; 7428 else if (NewVD->isStaticLocal()) 7429 Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage) 7430 << SizeRange; 7431 else 7432 Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage) 7433 << SizeRange; 7434 NewVD->setInvalidDecl(); 7435 return; 7436 } 7437 7438 if (!FixedTInfo) { 7439 if (NewVD->isFileVarDecl()) 7440 Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope); 7441 else 7442 Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage); 7443 NewVD->setInvalidDecl(); 7444 return; 7445 } 7446 7447 Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size); 7448 NewVD->setType(FixedTInfo->getType()); 7449 NewVD->setTypeSourceInfo(FixedTInfo); 7450 } 7451 7452 if (T->isVoidType()) { 7453 // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names 7454 // of objects and functions. 7455 if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) { 7456 Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type) 7457 << T; 7458 NewVD->setInvalidDecl(); 7459 return; 7460 } 7461 } 7462 7463 if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) { 7464 Diag(NewVD->getLocation(), diag::err_block_on_nonlocal); 7465 NewVD->setInvalidDecl(); 7466 return; 7467 } 7468 7469 if (isVM && NewVD->hasAttr<BlocksAttr>()) { 7470 Diag(NewVD->getLocation(), diag::err_block_on_vm); 7471 NewVD->setInvalidDecl(); 7472 return; 7473 } 7474 7475 if (NewVD->isConstexpr() && !T->isDependentType() && 7476 RequireLiteralType(NewVD->getLocation(), T, 7477 diag::err_constexpr_var_non_literal)) { 7478 NewVD->setInvalidDecl(); 7479 return; 7480 } 7481 } 7482 7483 /// \brief Perform semantic checking on a newly-created variable 7484 /// declaration. 7485 /// 7486 /// This routine performs all of the type-checking required for a 7487 /// variable declaration once it has been built. It is used both to 7488 /// check variables after they have been parsed and their declarators 7489 /// have been translated into a declaration, and to check variables 7490 /// that have been instantiated from a template. 7491 /// 7492 /// Sets NewVD->isInvalidDecl() if an error was encountered. 7493 /// 7494 /// Returns true if the variable declaration is a redeclaration. 7495 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) { 7496 CheckVariableDeclarationType(NewVD); 7497 7498 // If the decl is already known invalid, don't check it. 7499 if (NewVD->isInvalidDecl()) 7500 return false; 7501 7502 // If we did not find anything by this name, look for a non-visible 7503 // extern "C" declaration with the same name. 7504 if (Previous.empty() && 7505 checkForConflictWithNonVisibleExternC(*this, NewVD, Previous)) 7506 Previous.setShadowed(); 7507 7508 if (!Previous.empty()) { 7509 MergeVarDecl(NewVD, Previous); 7510 return true; 7511 } 7512 return false; 7513 } 7514 7515 namespace { 7516 struct FindOverriddenMethod { 7517 Sema *S; 7518 CXXMethodDecl *Method; 7519 7520 /// Member lookup function that determines whether a given C++ 7521 /// method overrides a method in a base class, to be used with 7522 /// CXXRecordDecl::lookupInBases(). 7523 bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 7524 RecordDecl *BaseRecord = 7525 Specifier->getType()->getAs<RecordType>()->getDecl(); 7526 7527 DeclarationName Name = Method->getDeclName(); 7528 7529 // FIXME: Do we care about other names here too? 7530 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 7531 // We really want to find the base class destructor here. 7532 QualType T = S->Context.getTypeDeclType(BaseRecord); 7533 CanQualType CT = S->Context.getCanonicalType(T); 7534 7535 Name = S->Context.DeclarationNames.getCXXDestructorName(CT); 7536 } 7537 7538 for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty(); 7539 Path.Decls = Path.Decls.slice(1)) { 7540 NamedDecl *D = Path.Decls.front(); 7541 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 7542 if (MD->isVirtual() && !S->IsOverload(Method, MD, false)) 7543 return true; 7544 } 7545 } 7546 7547 return false; 7548 } 7549 }; 7550 7551 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted }; 7552 } // end anonymous namespace 7553 7554 /// \brief Report an error regarding overriding, along with any relevant 7555 /// overriden methods. 7556 /// 7557 /// \param DiagID the primary error to report. 7558 /// \param MD the overriding method. 7559 /// \param OEK which overrides to include as notes. 7560 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD, 7561 OverrideErrorKind OEK = OEK_All) { 7562 S.Diag(MD->getLocation(), DiagID) << MD->getDeclName(); 7563 for (const CXXMethodDecl *O : MD->overridden_methods()) { 7564 // This check (& the OEK parameter) could be replaced by a predicate, but 7565 // without lambdas that would be overkill. This is still nicer than writing 7566 // out the diag loop 3 times. 7567 if ((OEK == OEK_All) || 7568 (OEK == OEK_NonDeleted && !O->isDeleted()) || 7569 (OEK == OEK_Deleted && O->isDeleted())) 7570 S.Diag(O->getLocation(), diag::note_overridden_virtual_function); 7571 } 7572 } 7573 7574 /// AddOverriddenMethods - See if a method overrides any in the base classes, 7575 /// and if so, check that it's a valid override and remember it. 7576 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) { 7577 // Look for methods in base classes that this method might override. 7578 CXXBasePaths Paths; 7579 FindOverriddenMethod FOM; 7580 FOM.Method = MD; 7581 FOM.S = this; 7582 bool hasDeletedOverridenMethods = false; 7583 bool hasNonDeletedOverridenMethods = false; 7584 bool AddedAny = false; 7585 if (DC->lookupInBases(FOM, Paths)) { 7586 for (auto *I : Paths.found_decls()) { 7587 if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) { 7588 MD->addOverriddenMethod(OldMD->getCanonicalDecl()); 7589 if (!CheckOverridingFunctionReturnType(MD, OldMD) && 7590 !CheckOverridingFunctionAttributes(MD, OldMD) && 7591 !CheckOverridingFunctionExceptionSpec(MD, OldMD) && 7592 !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) { 7593 hasDeletedOverridenMethods |= OldMD->isDeleted(); 7594 hasNonDeletedOverridenMethods |= !OldMD->isDeleted(); 7595 AddedAny = true; 7596 } 7597 } 7598 } 7599 } 7600 7601 if (hasDeletedOverridenMethods && !MD->isDeleted()) { 7602 ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted); 7603 } 7604 if (hasNonDeletedOverridenMethods && MD->isDeleted()) { 7605 ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted); 7606 } 7607 7608 return AddedAny; 7609 } 7610 7611 namespace { 7612 // Struct for holding all of the extra arguments needed by 7613 // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator. 7614 struct ActOnFDArgs { 7615 Scope *S; 7616 Declarator &D; 7617 MultiTemplateParamsArg TemplateParamLists; 7618 bool AddToScope; 7619 }; 7620 } // end anonymous namespace 7621 7622 namespace { 7623 7624 // Callback to only accept typo corrections that have a non-zero edit distance. 7625 // Also only accept corrections that have the same parent decl. 7626 class DifferentNameValidatorCCC : public CorrectionCandidateCallback { 7627 public: 7628 DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD, 7629 CXXRecordDecl *Parent) 7630 : Context(Context), OriginalFD(TypoFD), 7631 ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {} 7632 7633 bool ValidateCandidate(const TypoCorrection &candidate) override { 7634 if (candidate.getEditDistance() == 0) 7635 return false; 7636 7637 SmallVector<unsigned, 1> MismatchedParams; 7638 for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(), 7639 CDeclEnd = candidate.end(); 7640 CDecl != CDeclEnd; ++CDecl) { 7641 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 7642 7643 if (FD && !FD->hasBody() && 7644 hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) { 7645 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 7646 CXXRecordDecl *Parent = MD->getParent(); 7647 if (Parent && Parent->getCanonicalDecl() == ExpectedParent) 7648 return true; 7649 } else if (!ExpectedParent) { 7650 return true; 7651 } 7652 } 7653 } 7654 7655 return false; 7656 } 7657 7658 private: 7659 ASTContext &Context; 7660 FunctionDecl *OriginalFD; 7661 CXXRecordDecl *ExpectedParent; 7662 }; 7663 7664 } // end anonymous namespace 7665 7666 void Sema::MarkTypoCorrectedFunctionDefinition(const NamedDecl *F) { 7667 TypoCorrectedFunctionDefinitions.insert(F); 7668 } 7669 7670 /// \brief Generate diagnostics for an invalid function redeclaration. 7671 /// 7672 /// This routine handles generating the diagnostic messages for an invalid 7673 /// function redeclaration, including finding possible similar declarations 7674 /// or performing typo correction if there are no previous declarations with 7675 /// the same name. 7676 /// 7677 /// Returns a NamedDecl iff typo correction was performed and substituting in 7678 /// the new declaration name does not cause new errors. 7679 static NamedDecl *DiagnoseInvalidRedeclaration( 7680 Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD, 7681 ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) { 7682 DeclarationName Name = NewFD->getDeclName(); 7683 DeclContext *NewDC = NewFD->getDeclContext(); 7684 SmallVector<unsigned, 1> MismatchedParams; 7685 SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches; 7686 TypoCorrection Correction; 7687 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); 7688 unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend 7689 : diag::err_member_decl_does_not_match; 7690 LookupResult Prev(SemaRef, Name, NewFD->getLocation(), 7691 IsLocalFriend ? Sema::LookupLocalFriendName 7692 : Sema::LookupOrdinaryName, 7693 Sema::ForVisibleRedeclaration); 7694 7695 NewFD->setInvalidDecl(); 7696 if (IsLocalFriend) 7697 SemaRef.LookupName(Prev, S); 7698 else 7699 SemaRef.LookupQualifiedName(Prev, NewDC); 7700 assert(!Prev.isAmbiguous() && 7701 "Cannot have an ambiguity in previous-declaration lookup"); 7702 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 7703 if (!Prev.empty()) { 7704 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end(); 7705 Func != FuncEnd; ++Func) { 7706 FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func); 7707 if (FD && 7708 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 7709 // Add 1 to the index so that 0 can mean the mismatch didn't 7710 // involve a parameter 7711 unsigned ParamNum = 7712 MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1; 7713 NearMatches.push_back(std::make_pair(FD, ParamNum)); 7714 } 7715 } 7716 // If the qualified name lookup yielded nothing, try typo correction 7717 } else if ((Correction = SemaRef.CorrectTypo( 7718 Prev.getLookupNameInfo(), Prev.getLookupKind(), S, 7719 &ExtraArgs.D.getCXXScopeSpec(), 7720 llvm::make_unique<DifferentNameValidatorCCC>( 7721 SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr), 7722 Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) { 7723 // Set up everything for the call to ActOnFunctionDeclarator 7724 ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(), 7725 ExtraArgs.D.getIdentifierLoc()); 7726 Previous.clear(); 7727 Previous.setLookupName(Correction.getCorrection()); 7728 for (TypoCorrection::decl_iterator CDecl = Correction.begin(), 7729 CDeclEnd = Correction.end(); 7730 CDecl != CDeclEnd; ++CDecl) { 7731 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 7732 if (FD && !FD->hasBody() && 7733 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 7734 Previous.addDecl(FD); 7735 } 7736 } 7737 bool wasRedeclaration = ExtraArgs.D.isRedeclaration(); 7738 7739 NamedDecl *Result; 7740 // Retry building the function declaration with the new previous 7741 // declarations, and with errors suppressed. 7742 { 7743 // Trap errors. 7744 Sema::SFINAETrap Trap(SemaRef); 7745 7746 // TODO: Refactor ActOnFunctionDeclarator so that we can call only the 7747 // pieces need to verify the typo-corrected C++ declaration and hopefully 7748 // eliminate the need for the parameter pack ExtraArgs. 7749 Result = SemaRef.ActOnFunctionDeclarator( 7750 ExtraArgs.S, ExtraArgs.D, 7751 Correction.getCorrectionDecl()->getDeclContext(), 7752 NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists, 7753 ExtraArgs.AddToScope); 7754 7755 if (Trap.hasErrorOccurred()) 7756 Result = nullptr; 7757 } 7758 7759 if (Result) { 7760 // Determine which correction we picked. 7761 Decl *Canonical = Result->getCanonicalDecl(); 7762 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); 7763 I != E; ++I) 7764 if ((*I)->getCanonicalDecl() == Canonical) 7765 Correction.setCorrectionDecl(*I); 7766 7767 // Let Sema know about the correction. 7768 SemaRef.MarkTypoCorrectedFunctionDefinition(Result); 7769 SemaRef.diagnoseTypo( 7770 Correction, 7771 SemaRef.PDiag(IsLocalFriend 7772 ? diag::err_no_matching_local_friend_suggest 7773 : diag::err_member_decl_does_not_match_suggest) 7774 << Name << NewDC << IsDefinition); 7775 return Result; 7776 } 7777 7778 // Pretend the typo correction never occurred 7779 ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(), 7780 ExtraArgs.D.getIdentifierLoc()); 7781 ExtraArgs.D.setRedeclaration(wasRedeclaration); 7782 Previous.clear(); 7783 Previous.setLookupName(Name); 7784 } 7785 7786 SemaRef.Diag(NewFD->getLocation(), DiagMsg) 7787 << Name << NewDC << IsDefinition << NewFD->getLocation(); 7788 7789 bool NewFDisConst = false; 7790 if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD)) 7791 NewFDisConst = NewMD->isConst(); 7792 7793 for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator 7794 NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end(); 7795 NearMatch != NearMatchEnd; ++NearMatch) { 7796 FunctionDecl *FD = NearMatch->first; 7797 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 7798 bool FDisConst = MD && MD->isConst(); 7799 bool IsMember = MD || !IsLocalFriend; 7800 7801 // FIXME: These notes are poorly worded for the local friend case. 7802 if (unsigned Idx = NearMatch->second) { 7803 ParmVarDecl *FDParam = FD->getParamDecl(Idx-1); 7804 SourceLocation Loc = FDParam->getTypeSpecStartLoc(); 7805 if (Loc.isInvalid()) Loc = FD->getLocation(); 7806 SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match 7807 : diag::note_local_decl_close_param_match) 7808 << Idx << FDParam->getType() 7809 << NewFD->getParamDecl(Idx - 1)->getType(); 7810 } else if (FDisConst != NewFDisConst) { 7811 SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match) 7812 << NewFDisConst << FD->getSourceRange().getEnd(); 7813 } else 7814 SemaRef.Diag(FD->getLocation(), 7815 IsMember ? diag::note_member_def_close_match 7816 : diag::note_local_decl_close_match); 7817 } 7818 return nullptr; 7819 } 7820 7821 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) { 7822 switch (D.getDeclSpec().getStorageClassSpec()) { 7823 default: llvm_unreachable("Unknown storage class!"); 7824 case DeclSpec::SCS_auto: 7825 case DeclSpec::SCS_register: 7826 case DeclSpec::SCS_mutable: 7827 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 7828 diag::err_typecheck_sclass_func); 7829 D.getMutableDeclSpec().ClearStorageClassSpecs(); 7830 D.setInvalidType(); 7831 break; 7832 case DeclSpec::SCS_unspecified: break; 7833 case DeclSpec::SCS_extern: 7834 if (D.getDeclSpec().isExternInLinkageSpec()) 7835 return SC_None; 7836 return SC_Extern; 7837 case DeclSpec::SCS_static: { 7838 if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) { 7839 // C99 6.7.1p5: 7840 // The declaration of an identifier for a function that has 7841 // block scope shall have no explicit storage-class specifier 7842 // other than extern 7843 // See also (C++ [dcl.stc]p4). 7844 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 7845 diag::err_static_block_func); 7846 break; 7847 } else 7848 return SC_Static; 7849 } 7850 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 7851 } 7852 7853 // No explicit storage class has already been returned 7854 return SC_None; 7855 } 7856 7857 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D, 7858 DeclContext *DC, QualType &R, 7859 TypeSourceInfo *TInfo, 7860 StorageClass SC, 7861 bool &IsVirtualOkay) { 7862 DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D); 7863 DeclarationName Name = NameInfo.getName(); 7864 7865 FunctionDecl *NewFD = nullptr; 7866 bool isInline = D.getDeclSpec().isInlineSpecified(); 7867 7868 if (!SemaRef.getLangOpts().CPlusPlus) { 7869 // Determine whether the function was written with a 7870 // prototype. This true when: 7871 // - there is a prototype in the declarator, or 7872 // - the type R of the function is some kind of typedef or other non- 7873 // attributed reference to a type name (which eventually refers to a 7874 // function type). 7875 bool HasPrototype = 7876 (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) || 7877 (!R->getAsAdjusted<FunctionType>() && R->isFunctionProtoType()); 7878 7879 NewFD = FunctionDecl::Create(SemaRef.Context, DC, 7880 D.getLocStart(), NameInfo, R, 7881 TInfo, SC, isInline, 7882 HasPrototype, false); 7883 if (D.isInvalidType()) 7884 NewFD->setInvalidDecl(); 7885 7886 return NewFD; 7887 } 7888 7889 bool isExplicit = D.getDeclSpec().isExplicitSpecified(); 7890 bool isConstexpr = D.getDeclSpec().isConstexprSpecified(); 7891 7892 // Check that the return type is not an abstract class type. 7893 // For record types, this is done by the AbstractClassUsageDiagnoser once 7894 // the class has been completely parsed. 7895 if (!DC->isRecord() && 7896 SemaRef.RequireNonAbstractType( 7897 D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(), 7898 diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType)) 7899 D.setInvalidType(); 7900 7901 if (Name.getNameKind() == DeclarationName::CXXConstructorName) { 7902 // This is a C++ constructor declaration. 7903 assert(DC->isRecord() && 7904 "Constructors can only be declared in a member context"); 7905 7906 R = SemaRef.CheckConstructorDeclarator(D, R, SC); 7907 return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC), 7908 D.getLocStart(), NameInfo, 7909 R, TInfo, isExplicit, isInline, 7910 /*isImplicitlyDeclared=*/false, 7911 isConstexpr); 7912 7913 } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 7914 // This is a C++ destructor declaration. 7915 if (DC->isRecord()) { 7916 R = SemaRef.CheckDestructorDeclarator(D, R, SC); 7917 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); 7918 CXXDestructorDecl *NewDD = CXXDestructorDecl::Create( 7919 SemaRef.Context, Record, 7920 D.getLocStart(), 7921 NameInfo, R, TInfo, isInline, 7922 /*isImplicitlyDeclared=*/false); 7923 7924 // If the class is complete, then we now create the implicit exception 7925 // specification. If the class is incomplete or dependent, we can't do 7926 // it yet. 7927 if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() && 7928 Record->getDefinition() && !Record->isBeingDefined() && 7929 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { 7930 SemaRef.AdjustDestructorExceptionSpec(Record, NewDD); 7931 } 7932 7933 IsVirtualOkay = true; 7934 return NewDD; 7935 7936 } else { 7937 SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member); 7938 D.setInvalidType(); 7939 7940 // Create a FunctionDecl to satisfy the function definition parsing 7941 // code path. 7942 return FunctionDecl::Create(SemaRef.Context, DC, 7943 D.getLocStart(), 7944 D.getIdentifierLoc(), Name, R, TInfo, 7945 SC, isInline, 7946 /*hasPrototype=*/true, isConstexpr); 7947 } 7948 7949 } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 7950 if (!DC->isRecord()) { 7951 SemaRef.Diag(D.getIdentifierLoc(), 7952 diag::err_conv_function_not_member); 7953 return nullptr; 7954 } 7955 7956 SemaRef.CheckConversionDeclarator(D, R, SC); 7957 IsVirtualOkay = true; 7958 return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC), 7959 D.getLocStart(), NameInfo, 7960 R, TInfo, isInline, isExplicit, 7961 isConstexpr, SourceLocation()); 7962 7963 } else if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) { 7964 SemaRef.CheckDeductionGuideDeclarator(D, R, SC); 7965 7966 return CXXDeductionGuideDecl::Create(SemaRef.Context, DC, D.getLocStart(), 7967 isExplicit, NameInfo, R, TInfo, 7968 D.getLocEnd()); 7969 } else if (DC->isRecord()) { 7970 // If the name of the function is the same as the name of the record, 7971 // then this must be an invalid constructor that has a return type. 7972 // (The parser checks for a return type and makes the declarator a 7973 // constructor if it has no return type). 7974 if (Name.getAsIdentifierInfo() && 7975 Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){ 7976 SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type) 7977 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 7978 << SourceRange(D.getIdentifierLoc()); 7979 return nullptr; 7980 } 7981 7982 // This is a C++ method declaration. 7983 CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context, 7984 cast<CXXRecordDecl>(DC), 7985 D.getLocStart(), NameInfo, R, 7986 TInfo, SC, isInline, 7987 isConstexpr, SourceLocation()); 7988 IsVirtualOkay = !Ret->isStatic(); 7989 return Ret; 7990 } else { 7991 bool isFriend = 7992 SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified(); 7993 if (!isFriend && SemaRef.CurContext->isRecord()) 7994 return nullptr; 7995 7996 // Determine whether the function was written with a 7997 // prototype. This true when: 7998 // - we're in C++ (where every function has a prototype), 7999 return FunctionDecl::Create(SemaRef.Context, DC, 8000 D.getLocStart(), 8001 NameInfo, R, TInfo, SC, isInline, 8002 true/*HasPrototype*/, isConstexpr); 8003 } 8004 } 8005 8006 enum OpenCLParamType { 8007 ValidKernelParam, 8008 PtrPtrKernelParam, 8009 PtrKernelParam, 8010 InvalidAddrSpacePtrKernelParam, 8011 InvalidKernelParam, 8012 RecordKernelParam 8013 }; 8014 8015 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) { 8016 if (PT->isPointerType()) { 8017 QualType PointeeType = PT->getPointeeType(); 8018 if (PointeeType->isPointerType()) 8019 return PtrPtrKernelParam; 8020 if (PointeeType.getAddressSpace() == LangAS::opencl_generic || 8021 PointeeType.getAddressSpace() == LangAS::opencl_private || 8022 PointeeType.getAddressSpace() == LangAS::Default) 8023 return InvalidAddrSpacePtrKernelParam; 8024 return PtrKernelParam; 8025 } 8026 8027 // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can 8028 // be used as builtin types. 8029 8030 if (PT->isImageType()) 8031 return PtrKernelParam; 8032 8033 if (PT->isBooleanType() || PT->isEventT() || PT->isReserveIDT()) 8034 return InvalidKernelParam; 8035 8036 // OpenCL extension spec v1.2 s9.5: 8037 // This extension adds support for half scalar and vector types as built-in 8038 // types that can be used for arithmetic operations, conversions etc. 8039 if (!S.getOpenCLOptions().isEnabled("cl_khr_fp16") && PT->isHalfType()) 8040 return InvalidKernelParam; 8041 8042 if (PT->isRecordType()) 8043 return RecordKernelParam; 8044 8045 return ValidKernelParam; 8046 } 8047 8048 static void checkIsValidOpenCLKernelParameter( 8049 Sema &S, 8050 Declarator &D, 8051 ParmVarDecl *Param, 8052 llvm::SmallPtrSetImpl<const Type *> &ValidTypes) { 8053 QualType PT = Param->getType(); 8054 8055 // Cache the valid types we encounter to avoid rechecking structs that are 8056 // used again 8057 if (ValidTypes.count(PT.getTypePtr())) 8058 return; 8059 8060 switch (getOpenCLKernelParameterType(S, PT)) { 8061 case PtrPtrKernelParam: 8062 // OpenCL v1.2 s6.9.a: 8063 // A kernel function argument cannot be declared as a 8064 // pointer to a pointer type. 8065 S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param); 8066 D.setInvalidType(); 8067 return; 8068 8069 case InvalidAddrSpacePtrKernelParam: 8070 // OpenCL v1.0 s6.5: 8071 // __kernel function arguments declared to be a pointer of a type can point 8072 // to one of the following address spaces only : __global, __local or 8073 // __constant. 8074 S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space); 8075 D.setInvalidType(); 8076 return; 8077 8078 // OpenCL v1.2 s6.9.k: 8079 // Arguments to kernel functions in a program cannot be declared with the 8080 // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and 8081 // uintptr_t or a struct and/or union that contain fields declared to be 8082 // one of these built-in scalar types. 8083 8084 case InvalidKernelParam: 8085 // OpenCL v1.2 s6.8 n: 8086 // A kernel function argument cannot be declared 8087 // of event_t type. 8088 // Do not diagnose half type since it is diagnosed as invalid argument 8089 // type for any function elsewhere. 8090 if (!PT->isHalfType()) 8091 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT; 8092 D.setInvalidType(); 8093 return; 8094 8095 case PtrKernelParam: 8096 case ValidKernelParam: 8097 ValidTypes.insert(PT.getTypePtr()); 8098 return; 8099 8100 case RecordKernelParam: 8101 break; 8102 } 8103 8104 // Track nested structs we will inspect 8105 SmallVector<const Decl *, 4> VisitStack; 8106 8107 // Track where we are in the nested structs. Items will migrate from 8108 // VisitStack to HistoryStack as we do the DFS for bad field. 8109 SmallVector<const FieldDecl *, 4> HistoryStack; 8110 HistoryStack.push_back(nullptr); 8111 8112 const RecordDecl *PD = PT->castAs<RecordType>()->getDecl(); 8113 VisitStack.push_back(PD); 8114 8115 assert(VisitStack.back() && "First decl null?"); 8116 8117 do { 8118 const Decl *Next = VisitStack.pop_back_val(); 8119 if (!Next) { 8120 assert(!HistoryStack.empty()); 8121 // Found a marker, we have gone up a level 8122 if (const FieldDecl *Hist = HistoryStack.pop_back_val()) 8123 ValidTypes.insert(Hist->getType().getTypePtr()); 8124 8125 continue; 8126 } 8127 8128 // Adds everything except the original parameter declaration (which is not a 8129 // field itself) to the history stack. 8130 const RecordDecl *RD; 8131 if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) { 8132 HistoryStack.push_back(Field); 8133 RD = Field->getType()->castAs<RecordType>()->getDecl(); 8134 } else { 8135 RD = cast<RecordDecl>(Next); 8136 } 8137 8138 // Add a null marker so we know when we've gone back up a level 8139 VisitStack.push_back(nullptr); 8140 8141 for (const auto *FD : RD->fields()) { 8142 QualType QT = FD->getType(); 8143 8144 if (ValidTypes.count(QT.getTypePtr())) 8145 continue; 8146 8147 OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT); 8148 if (ParamType == ValidKernelParam) 8149 continue; 8150 8151 if (ParamType == RecordKernelParam) { 8152 VisitStack.push_back(FD); 8153 continue; 8154 } 8155 8156 // OpenCL v1.2 s6.9.p: 8157 // Arguments to kernel functions that are declared to be a struct or union 8158 // do not allow OpenCL objects to be passed as elements of the struct or 8159 // union. 8160 if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam || 8161 ParamType == InvalidAddrSpacePtrKernelParam) { 8162 S.Diag(Param->getLocation(), 8163 diag::err_record_with_pointers_kernel_param) 8164 << PT->isUnionType() 8165 << PT; 8166 } else { 8167 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT; 8168 } 8169 8170 S.Diag(PD->getLocation(), diag::note_within_field_of_type) 8171 << PD->getDeclName(); 8172 8173 // We have an error, now let's go back up through history and show where 8174 // the offending field came from 8175 for (ArrayRef<const FieldDecl *>::const_iterator 8176 I = HistoryStack.begin() + 1, 8177 E = HistoryStack.end(); 8178 I != E; ++I) { 8179 const FieldDecl *OuterField = *I; 8180 S.Diag(OuterField->getLocation(), diag::note_within_field_of_type) 8181 << OuterField->getType(); 8182 } 8183 8184 S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here) 8185 << QT->isPointerType() 8186 << QT; 8187 D.setInvalidType(); 8188 return; 8189 } 8190 } while (!VisitStack.empty()); 8191 } 8192 8193 /// Find the DeclContext in which a tag is implicitly declared if we see an 8194 /// elaborated type specifier in the specified context, and lookup finds 8195 /// nothing. 8196 static DeclContext *getTagInjectionContext(DeclContext *DC) { 8197 while (!DC->isFileContext() && !DC->isFunctionOrMethod()) 8198 DC = DC->getParent(); 8199 return DC; 8200 } 8201 8202 /// Find the Scope in which a tag is implicitly declared if we see an 8203 /// elaborated type specifier in the specified context, and lookup finds 8204 /// nothing. 8205 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) { 8206 while (S->isClassScope() || 8207 (LangOpts.CPlusPlus && 8208 S->isFunctionPrototypeScope()) || 8209 ((S->getFlags() & Scope::DeclScope) == 0) || 8210 (S->getEntity() && S->getEntity()->isTransparentContext())) 8211 S = S->getParent(); 8212 return S; 8213 } 8214 8215 NamedDecl* 8216 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC, 8217 TypeSourceInfo *TInfo, LookupResult &Previous, 8218 MultiTemplateParamsArg TemplateParamLists, 8219 bool &AddToScope) { 8220 QualType R = TInfo->getType(); 8221 8222 assert(R.getTypePtr()->isFunctionType()); 8223 8224 // TODO: consider using NameInfo for diagnostic. 8225 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 8226 DeclarationName Name = NameInfo.getName(); 8227 StorageClass SC = getFunctionStorageClass(*this, D); 8228 8229 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 8230 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 8231 diag::err_invalid_thread) 8232 << DeclSpec::getSpecifierName(TSCS); 8233 8234 if (D.isFirstDeclarationOfMember()) 8235 adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(), 8236 D.getIdentifierLoc()); 8237 8238 bool isFriend = false; 8239 FunctionTemplateDecl *FunctionTemplate = nullptr; 8240 bool isMemberSpecialization = false; 8241 bool isFunctionTemplateSpecialization = false; 8242 8243 bool isDependentClassScopeExplicitSpecialization = false; 8244 bool HasExplicitTemplateArgs = false; 8245 TemplateArgumentListInfo TemplateArgs; 8246 8247 bool isVirtualOkay = false; 8248 8249 DeclContext *OriginalDC = DC; 8250 bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC); 8251 8252 FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC, 8253 isVirtualOkay); 8254 if (!NewFD) return nullptr; 8255 8256 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer()) 8257 NewFD->setTopLevelDeclInObjCContainer(); 8258 8259 // Set the lexical context. If this is a function-scope declaration, or has a 8260 // C++ scope specifier, or is the object of a friend declaration, the lexical 8261 // context will be different from the semantic context. 8262 NewFD->setLexicalDeclContext(CurContext); 8263 8264 if (IsLocalExternDecl) 8265 NewFD->setLocalExternDecl(); 8266 8267 if (getLangOpts().CPlusPlus) { 8268 bool isInline = D.getDeclSpec().isInlineSpecified(); 8269 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 8270 bool isExplicit = D.getDeclSpec().isExplicitSpecified(); 8271 bool isConstexpr = D.getDeclSpec().isConstexprSpecified(); 8272 isFriend = D.getDeclSpec().isFriendSpecified(); 8273 if (isFriend && !isInline && D.isFunctionDefinition()) { 8274 // C++ [class.friend]p5 8275 // A function can be defined in a friend declaration of a 8276 // class . . . . Such a function is implicitly inline. 8277 NewFD->setImplicitlyInline(); 8278 } 8279 8280 // If this is a method defined in an __interface, and is not a constructor 8281 // or an overloaded operator, then set the pure flag (isVirtual will already 8282 // return true). 8283 if (const CXXRecordDecl *Parent = 8284 dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) { 8285 if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided()) 8286 NewFD->setPure(true); 8287 8288 // C++ [class.union]p2 8289 // A union can have member functions, but not virtual functions. 8290 if (isVirtual && Parent->isUnion()) 8291 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union); 8292 } 8293 8294 SetNestedNameSpecifier(NewFD, D); 8295 isMemberSpecialization = false; 8296 isFunctionTemplateSpecialization = false; 8297 if (D.isInvalidType()) 8298 NewFD->setInvalidDecl(); 8299 8300 // Match up the template parameter lists with the scope specifier, then 8301 // determine whether we have a template or a template specialization. 8302 bool Invalid = false; 8303 if (TemplateParameterList *TemplateParams = 8304 MatchTemplateParametersToScopeSpecifier( 8305 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(), 8306 D.getCXXScopeSpec(), 8307 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId 8308 ? D.getName().TemplateId 8309 : nullptr, 8310 TemplateParamLists, isFriend, isMemberSpecialization, 8311 Invalid)) { 8312 if (TemplateParams->size() > 0) { 8313 // This is a function template 8314 8315 // Check that we can declare a template here. 8316 if (CheckTemplateDeclScope(S, TemplateParams)) 8317 NewFD->setInvalidDecl(); 8318 8319 // A destructor cannot be a template. 8320 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 8321 Diag(NewFD->getLocation(), diag::err_destructor_template); 8322 NewFD->setInvalidDecl(); 8323 } 8324 8325 // If we're adding a template to a dependent context, we may need to 8326 // rebuilding some of the types used within the template parameter list, 8327 // now that we know what the current instantiation is. 8328 if (DC->isDependentContext()) { 8329 ContextRAII SavedContext(*this, DC); 8330 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams)) 8331 Invalid = true; 8332 } 8333 8334 FunctionTemplate = FunctionTemplateDecl::Create(Context, DC, 8335 NewFD->getLocation(), 8336 Name, TemplateParams, 8337 NewFD); 8338 FunctionTemplate->setLexicalDeclContext(CurContext); 8339 NewFD->setDescribedFunctionTemplate(FunctionTemplate); 8340 8341 // For source fidelity, store the other template param lists. 8342 if (TemplateParamLists.size() > 1) { 8343 NewFD->setTemplateParameterListsInfo(Context, 8344 TemplateParamLists.drop_back(1)); 8345 } 8346 } else { 8347 // This is a function template specialization. 8348 isFunctionTemplateSpecialization = true; 8349 // For source fidelity, store all the template param lists. 8350 if (TemplateParamLists.size() > 0) 8351 NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists); 8352 8353 // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);". 8354 if (isFriend) { 8355 // We want to remove the "template<>", found here. 8356 SourceRange RemoveRange = TemplateParams->getSourceRange(); 8357 8358 // If we remove the template<> and the name is not a 8359 // template-id, we're actually silently creating a problem: 8360 // the friend declaration will refer to an untemplated decl, 8361 // and clearly the user wants a template specialization. So 8362 // we need to insert '<>' after the name. 8363 SourceLocation InsertLoc; 8364 if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) { 8365 InsertLoc = D.getName().getSourceRange().getEnd(); 8366 InsertLoc = getLocForEndOfToken(InsertLoc); 8367 } 8368 8369 Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend) 8370 << Name << RemoveRange 8371 << FixItHint::CreateRemoval(RemoveRange) 8372 << FixItHint::CreateInsertion(InsertLoc, "<>"); 8373 } 8374 } 8375 } 8376 else { 8377 // All template param lists were matched against the scope specifier: 8378 // this is NOT (an explicit specialization of) a template. 8379 if (TemplateParamLists.size() > 0) 8380 // For source fidelity, store all the template param lists. 8381 NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists); 8382 } 8383 8384 if (Invalid) { 8385 NewFD->setInvalidDecl(); 8386 if (FunctionTemplate) 8387 FunctionTemplate->setInvalidDecl(); 8388 } 8389 8390 // C++ [dcl.fct.spec]p5: 8391 // The virtual specifier shall only be used in declarations of 8392 // nonstatic class member functions that appear within a 8393 // member-specification of a class declaration; see 10.3. 8394 // 8395 if (isVirtual && !NewFD->isInvalidDecl()) { 8396 if (!isVirtualOkay) { 8397 Diag(D.getDeclSpec().getVirtualSpecLoc(), 8398 diag::err_virtual_non_function); 8399 } else if (!CurContext->isRecord()) { 8400 // 'virtual' was specified outside of the class. 8401 Diag(D.getDeclSpec().getVirtualSpecLoc(), 8402 diag::err_virtual_out_of_class) 8403 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 8404 } else if (NewFD->getDescribedFunctionTemplate()) { 8405 // C++ [temp.mem]p3: 8406 // A member function template shall not be virtual. 8407 Diag(D.getDeclSpec().getVirtualSpecLoc(), 8408 diag::err_virtual_member_function_template) 8409 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 8410 } else { 8411 // Okay: Add virtual to the method. 8412 NewFD->setVirtualAsWritten(true); 8413 } 8414 8415 if (getLangOpts().CPlusPlus14 && 8416 NewFD->getReturnType()->isUndeducedType()) 8417 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual); 8418 } 8419 8420 if (getLangOpts().CPlusPlus14 && 8421 (NewFD->isDependentContext() || 8422 (isFriend && CurContext->isDependentContext())) && 8423 NewFD->getReturnType()->isUndeducedType()) { 8424 // If the function template is referenced directly (for instance, as a 8425 // member of the current instantiation), pretend it has a dependent type. 8426 // This is not really justified by the standard, but is the only sane 8427 // thing to do. 8428 // FIXME: For a friend function, we have not marked the function as being 8429 // a friend yet, so 'isDependentContext' on the FD doesn't work. 8430 const FunctionProtoType *FPT = 8431 NewFD->getType()->castAs<FunctionProtoType>(); 8432 QualType Result = 8433 SubstAutoType(FPT->getReturnType(), Context.DependentTy); 8434 NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(), 8435 FPT->getExtProtoInfo())); 8436 } 8437 8438 // C++ [dcl.fct.spec]p3: 8439 // The inline specifier shall not appear on a block scope function 8440 // declaration. 8441 if (isInline && !NewFD->isInvalidDecl()) { 8442 if (CurContext->isFunctionOrMethod()) { 8443 // 'inline' is not allowed on block scope function declaration. 8444 Diag(D.getDeclSpec().getInlineSpecLoc(), 8445 diag::err_inline_declaration_block_scope) << Name 8446 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 8447 } 8448 } 8449 8450 // C++ [dcl.fct.spec]p6: 8451 // The explicit specifier shall be used only in the declaration of a 8452 // constructor or conversion function within its class definition; 8453 // see 12.3.1 and 12.3.2. 8454 if (isExplicit && !NewFD->isInvalidDecl() && 8455 !isa<CXXDeductionGuideDecl>(NewFD)) { 8456 if (!CurContext->isRecord()) { 8457 // 'explicit' was specified outside of the class. 8458 Diag(D.getDeclSpec().getExplicitSpecLoc(), 8459 diag::err_explicit_out_of_class) 8460 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc()); 8461 } else if (!isa<CXXConstructorDecl>(NewFD) && 8462 !isa<CXXConversionDecl>(NewFD)) { 8463 // 'explicit' was specified on a function that wasn't a constructor 8464 // or conversion function. 8465 Diag(D.getDeclSpec().getExplicitSpecLoc(), 8466 diag::err_explicit_non_ctor_or_conv_function) 8467 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc()); 8468 } 8469 } 8470 8471 if (isConstexpr) { 8472 // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors 8473 // are implicitly inline. 8474 NewFD->setImplicitlyInline(); 8475 8476 // C++11 [dcl.constexpr]p3: functions declared constexpr are required to 8477 // be either constructors or to return a literal type. Therefore, 8478 // destructors cannot be declared constexpr. 8479 if (isa<CXXDestructorDecl>(NewFD)) 8480 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor); 8481 } 8482 8483 // If __module_private__ was specified, mark the function accordingly. 8484 if (D.getDeclSpec().isModulePrivateSpecified()) { 8485 if (isFunctionTemplateSpecialization) { 8486 SourceLocation ModulePrivateLoc 8487 = D.getDeclSpec().getModulePrivateSpecLoc(); 8488 Diag(ModulePrivateLoc, diag::err_module_private_specialization) 8489 << 0 8490 << FixItHint::CreateRemoval(ModulePrivateLoc); 8491 } else { 8492 NewFD->setModulePrivate(); 8493 if (FunctionTemplate) 8494 FunctionTemplate->setModulePrivate(); 8495 } 8496 } 8497 8498 if (isFriend) { 8499 if (FunctionTemplate) { 8500 FunctionTemplate->setObjectOfFriendDecl(); 8501 FunctionTemplate->setAccess(AS_public); 8502 } 8503 NewFD->setObjectOfFriendDecl(); 8504 NewFD->setAccess(AS_public); 8505 } 8506 8507 // If a function is defined as defaulted or deleted, mark it as such now. 8508 // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function 8509 // definition kind to FDK_Definition. 8510 switch (D.getFunctionDefinitionKind()) { 8511 case FDK_Declaration: 8512 case FDK_Definition: 8513 break; 8514 8515 case FDK_Defaulted: 8516 NewFD->setDefaulted(); 8517 break; 8518 8519 case FDK_Deleted: 8520 NewFD->setDeletedAsWritten(); 8521 break; 8522 } 8523 8524 if (isa<CXXMethodDecl>(NewFD) && DC == CurContext && 8525 D.isFunctionDefinition()) { 8526 // C++ [class.mfct]p2: 8527 // A member function may be defined (8.4) in its class definition, in 8528 // which case it is an inline member function (7.1.2) 8529 NewFD->setImplicitlyInline(); 8530 } 8531 8532 if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) && 8533 !CurContext->isRecord()) { 8534 // C++ [class.static]p1: 8535 // A data or function member of a class may be declared static 8536 // in a class definition, in which case it is a static member of 8537 // the class. 8538 8539 // Complain about the 'static' specifier if it's on an out-of-line 8540 // member function definition. 8541 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 8542 diag::err_static_out_of_line) 8543 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 8544 } 8545 8546 // C++11 [except.spec]p15: 8547 // A deallocation function with no exception-specification is treated 8548 // as if it were specified with noexcept(true). 8549 const FunctionProtoType *FPT = R->getAs<FunctionProtoType>(); 8550 if ((Name.getCXXOverloadedOperator() == OO_Delete || 8551 Name.getCXXOverloadedOperator() == OO_Array_Delete) && 8552 getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec()) 8553 NewFD->setType(Context.getFunctionType( 8554 FPT->getReturnType(), FPT->getParamTypes(), 8555 FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept))); 8556 } 8557 8558 // Filter out previous declarations that don't match the scope. 8559 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD), 8560 D.getCXXScopeSpec().isNotEmpty() || 8561 isMemberSpecialization || 8562 isFunctionTemplateSpecialization); 8563 8564 // Handle GNU asm-label extension (encoded as an attribute). 8565 if (Expr *E = (Expr*) D.getAsmLabel()) { 8566 // The parser guarantees this is a string. 8567 StringLiteral *SE = cast<StringLiteral>(E); 8568 NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context, 8569 SE->getString(), 0)); 8570 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 8571 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 8572 ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier()); 8573 if (I != ExtnameUndeclaredIdentifiers.end()) { 8574 if (isDeclExternC(NewFD)) { 8575 NewFD->addAttr(I->second); 8576 ExtnameUndeclaredIdentifiers.erase(I); 8577 } else 8578 Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied) 8579 << /*Variable*/0 << NewFD; 8580 } 8581 } 8582 8583 // Copy the parameter declarations from the declarator D to the function 8584 // declaration NewFD, if they are available. First scavenge them into Params. 8585 SmallVector<ParmVarDecl*, 16> Params; 8586 unsigned FTIIdx; 8587 if (D.isFunctionDeclarator(FTIIdx)) { 8588 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun; 8589 8590 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs 8591 // function that takes no arguments, not a function that takes a 8592 // single void argument. 8593 // We let through "const void" here because Sema::GetTypeForDeclarator 8594 // already checks for that case. 8595 if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) { 8596 for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) { 8597 ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param); 8598 assert(Param->getDeclContext() != NewFD && "Was set before ?"); 8599 Param->setDeclContext(NewFD); 8600 Params.push_back(Param); 8601 8602 if (Param->isInvalidDecl()) 8603 NewFD->setInvalidDecl(); 8604 } 8605 } 8606 8607 if (!getLangOpts().CPlusPlus) { 8608 // In C, find all the tag declarations from the prototype and move them 8609 // into the function DeclContext. Remove them from the surrounding tag 8610 // injection context of the function, which is typically but not always 8611 // the TU. 8612 DeclContext *PrototypeTagContext = 8613 getTagInjectionContext(NewFD->getLexicalDeclContext()); 8614 for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) { 8615 auto *TD = dyn_cast<TagDecl>(NonParmDecl); 8616 8617 // We don't want to reparent enumerators. Look at their parent enum 8618 // instead. 8619 if (!TD) { 8620 if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl)) 8621 TD = cast<EnumDecl>(ECD->getDeclContext()); 8622 } 8623 if (!TD) 8624 continue; 8625 DeclContext *TagDC = TD->getLexicalDeclContext(); 8626 if (!TagDC->containsDecl(TD)) 8627 continue; 8628 TagDC->removeDecl(TD); 8629 TD->setDeclContext(NewFD); 8630 NewFD->addDecl(TD); 8631 8632 // Preserve the lexical DeclContext if it is not the surrounding tag 8633 // injection context of the FD. In this example, the semantic context of 8634 // E will be f and the lexical context will be S, while both the 8635 // semantic and lexical contexts of S will be f: 8636 // void f(struct S { enum E { a } f; } s); 8637 if (TagDC != PrototypeTagContext) 8638 TD->setLexicalDeclContext(TagDC); 8639 } 8640 } 8641 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) { 8642 // When we're declaring a function with a typedef, typeof, etc as in the 8643 // following example, we'll need to synthesize (unnamed) 8644 // parameters for use in the declaration. 8645 // 8646 // @code 8647 // typedef void fn(int); 8648 // fn f; 8649 // @endcode 8650 8651 // Synthesize a parameter for each argument type. 8652 for (const auto &AI : FT->param_types()) { 8653 ParmVarDecl *Param = 8654 BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI); 8655 Param->setScopeInfo(0, Params.size()); 8656 Params.push_back(Param); 8657 } 8658 } else { 8659 assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 && 8660 "Should not need args for typedef of non-prototype fn"); 8661 } 8662 8663 // Finally, we know we have the right number of parameters, install them. 8664 NewFD->setParams(Params); 8665 8666 if (D.getDeclSpec().isNoreturnSpecified()) 8667 NewFD->addAttr( 8668 ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(), 8669 Context, 0)); 8670 8671 // Functions returning a variably modified type violate C99 6.7.5.2p2 8672 // because all functions have linkage. 8673 if (!NewFD->isInvalidDecl() && 8674 NewFD->getReturnType()->isVariablyModifiedType()) { 8675 Diag(NewFD->getLocation(), diag::err_vm_func_decl); 8676 NewFD->setInvalidDecl(); 8677 } 8678 8679 // Apply an implicit SectionAttr if '#pragma clang section text' is active 8680 if (PragmaClangTextSection.Valid && D.isFunctionDefinition() && 8681 !NewFD->hasAttr<SectionAttr>()) { 8682 NewFD->addAttr(PragmaClangTextSectionAttr::CreateImplicit(Context, 8683 PragmaClangTextSection.SectionName, 8684 PragmaClangTextSection.PragmaLocation)); 8685 } 8686 8687 // Apply an implicit SectionAttr if #pragma code_seg is active. 8688 if (CodeSegStack.CurrentValue && D.isFunctionDefinition() && 8689 !NewFD->hasAttr<SectionAttr>()) { 8690 NewFD->addAttr( 8691 SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate, 8692 CodeSegStack.CurrentValue->getString(), 8693 CodeSegStack.CurrentPragmaLocation)); 8694 if (UnifySection(CodeSegStack.CurrentValue->getString(), 8695 ASTContext::PSF_Implicit | ASTContext::PSF_Execute | 8696 ASTContext::PSF_Read, 8697 NewFD)) 8698 NewFD->dropAttr<SectionAttr>(); 8699 } 8700 8701 // Handle attributes. 8702 ProcessDeclAttributes(S, NewFD, D); 8703 8704 if (getLangOpts().OpenCL) { 8705 // OpenCL v1.1 s6.5: Using an address space qualifier in a function return 8706 // type declaration will generate a compilation error. 8707 LangAS AddressSpace = NewFD->getReturnType().getAddressSpace(); 8708 if (AddressSpace != LangAS::Default) { 8709 Diag(NewFD->getLocation(), 8710 diag::err_opencl_return_value_with_address_space); 8711 NewFD->setInvalidDecl(); 8712 } 8713 } 8714 8715 if (!getLangOpts().CPlusPlus) { 8716 // Perform semantic checking on the function declaration. 8717 if (!NewFD->isInvalidDecl() && NewFD->isMain()) 8718 CheckMain(NewFD, D.getDeclSpec()); 8719 8720 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint()) 8721 CheckMSVCRTEntryPoint(NewFD); 8722 8723 if (!NewFD->isInvalidDecl()) 8724 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 8725 isMemberSpecialization)); 8726 else if (!Previous.empty()) 8727 // Recover gracefully from an invalid redeclaration. 8728 D.setRedeclaration(true); 8729 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 8730 Previous.getResultKind() != LookupResult::FoundOverloaded) && 8731 "previous declaration set still overloaded"); 8732 8733 // Diagnose no-prototype function declarations with calling conventions that 8734 // don't support variadic calls. Only do this in C and do it after merging 8735 // possibly prototyped redeclarations. 8736 const FunctionType *FT = NewFD->getType()->castAs<FunctionType>(); 8737 if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) { 8738 CallingConv CC = FT->getExtInfo().getCC(); 8739 if (!supportsVariadicCall(CC)) { 8740 // Windows system headers sometimes accidentally use stdcall without 8741 // (void) parameters, so we relax this to a warning. 8742 int DiagID = 8743 CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr; 8744 Diag(NewFD->getLocation(), DiagID) 8745 << FunctionType::getNameForCallConv(CC); 8746 } 8747 } 8748 } else { 8749 // C++11 [replacement.functions]p3: 8750 // The program's definitions shall not be specified as inline. 8751 // 8752 // N.B. We diagnose declarations instead of definitions per LWG issue 2340. 8753 // 8754 // Suppress the diagnostic if the function is __attribute__((used)), since 8755 // that forces an external definition to be emitted. 8756 if (D.getDeclSpec().isInlineSpecified() && 8757 NewFD->isReplaceableGlobalAllocationFunction() && 8758 !NewFD->hasAttr<UsedAttr>()) 8759 Diag(D.getDeclSpec().getInlineSpecLoc(), 8760 diag::ext_operator_new_delete_declared_inline) 8761 << NewFD->getDeclName(); 8762 8763 // If the declarator is a template-id, translate the parser's template 8764 // argument list into our AST format. 8765 if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) { 8766 TemplateIdAnnotation *TemplateId = D.getName().TemplateId; 8767 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc); 8768 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc); 8769 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 8770 TemplateId->NumArgs); 8771 translateTemplateArguments(TemplateArgsPtr, 8772 TemplateArgs); 8773 8774 HasExplicitTemplateArgs = true; 8775 8776 if (NewFD->isInvalidDecl()) { 8777 HasExplicitTemplateArgs = false; 8778 } else if (FunctionTemplate) { 8779 // Function template with explicit template arguments. 8780 Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec) 8781 << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc); 8782 8783 HasExplicitTemplateArgs = false; 8784 } else { 8785 assert((isFunctionTemplateSpecialization || 8786 D.getDeclSpec().isFriendSpecified()) && 8787 "should have a 'template<>' for this decl"); 8788 // "friend void foo<>(int);" is an implicit specialization decl. 8789 isFunctionTemplateSpecialization = true; 8790 } 8791 } else if (isFriend && isFunctionTemplateSpecialization) { 8792 // This combination is only possible in a recovery case; the user 8793 // wrote something like: 8794 // template <> friend void foo(int); 8795 // which we're recovering from as if the user had written: 8796 // friend void foo<>(int); 8797 // Go ahead and fake up a template id. 8798 HasExplicitTemplateArgs = true; 8799 TemplateArgs.setLAngleLoc(D.getIdentifierLoc()); 8800 TemplateArgs.setRAngleLoc(D.getIdentifierLoc()); 8801 } 8802 8803 // We do not add HD attributes to specializations here because 8804 // they may have different constexpr-ness compared to their 8805 // templates and, after maybeAddCUDAHostDeviceAttrs() is applied, 8806 // may end up with different effective targets. Instead, a 8807 // specialization inherits its target attributes from its template 8808 // in the CheckFunctionTemplateSpecialization() call below. 8809 if (getLangOpts().CUDA & !isFunctionTemplateSpecialization) 8810 maybeAddCUDAHostDeviceAttrs(NewFD, Previous); 8811 8812 // If it's a friend (and only if it's a friend), it's possible 8813 // that either the specialized function type or the specialized 8814 // template is dependent, and therefore matching will fail. In 8815 // this case, don't check the specialization yet. 8816 bool InstantiationDependent = false; 8817 if (isFunctionTemplateSpecialization && isFriend && 8818 (NewFD->getType()->isDependentType() || DC->isDependentContext() || 8819 TemplateSpecializationType::anyDependentTemplateArguments( 8820 TemplateArgs, 8821 InstantiationDependent))) { 8822 assert(HasExplicitTemplateArgs && 8823 "friend function specialization without template args"); 8824 if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs, 8825 Previous)) 8826 NewFD->setInvalidDecl(); 8827 } else if (isFunctionTemplateSpecialization) { 8828 if (CurContext->isDependentContext() && CurContext->isRecord() 8829 && !isFriend) { 8830 isDependentClassScopeExplicitSpecialization = true; 8831 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 8832 diag::ext_function_specialization_in_class : 8833 diag::err_function_specialization_in_class) 8834 << NewFD->getDeclName(); 8835 } else if (!NewFD->isInvalidDecl() && 8836 CheckFunctionTemplateSpecialization( 8837 NewFD, (HasExplicitTemplateArgs ? &TemplateArgs : nullptr), 8838 Previous)) 8839 NewFD->setInvalidDecl(); 8840 8841 // C++ [dcl.stc]p1: 8842 // A storage-class-specifier shall not be specified in an explicit 8843 // specialization (14.7.3) 8844 FunctionTemplateSpecializationInfo *Info = 8845 NewFD->getTemplateSpecializationInfo(); 8846 if (Info && SC != SC_None) { 8847 if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass()) 8848 Diag(NewFD->getLocation(), 8849 diag::err_explicit_specialization_inconsistent_storage_class) 8850 << SC 8851 << FixItHint::CreateRemoval( 8852 D.getDeclSpec().getStorageClassSpecLoc()); 8853 8854 else 8855 Diag(NewFD->getLocation(), 8856 diag::ext_explicit_specialization_storage_class) 8857 << FixItHint::CreateRemoval( 8858 D.getDeclSpec().getStorageClassSpecLoc()); 8859 } 8860 } else if (isMemberSpecialization && isa<CXXMethodDecl>(NewFD)) { 8861 if (CheckMemberSpecialization(NewFD, Previous)) 8862 NewFD->setInvalidDecl(); 8863 } 8864 8865 // Perform semantic checking on the function declaration. 8866 if (!isDependentClassScopeExplicitSpecialization) { 8867 if (!NewFD->isInvalidDecl() && NewFD->isMain()) 8868 CheckMain(NewFD, D.getDeclSpec()); 8869 8870 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint()) 8871 CheckMSVCRTEntryPoint(NewFD); 8872 8873 if (!NewFD->isInvalidDecl()) 8874 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 8875 isMemberSpecialization)); 8876 else if (!Previous.empty()) 8877 // Recover gracefully from an invalid redeclaration. 8878 D.setRedeclaration(true); 8879 } 8880 8881 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 8882 Previous.getResultKind() != LookupResult::FoundOverloaded) && 8883 "previous declaration set still overloaded"); 8884 8885 NamedDecl *PrincipalDecl = (FunctionTemplate 8886 ? cast<NamedDecl>(FunctionTemplate) 8887 : NewFD); 8888 8889 if (isFriend && NewFD->getPreviousDecl()) { 8890 AccessSpecifier Access = AS_public; 8891 if (!NewFD->isInvalidDecl()) 8892 Access = NewFD->getPreviousDecl()->getAccess(); 8893 8894 NewFD->setAccess(Access); 8895 if (FunctionTemplate) FunctionTemplate->setAccess(Access); 8896 } 8897 8898 if (NewFD->isOverloadedOperator() && !DC->isRecord() && 8899 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary)) 8900 PrincipalDecl->setNonMemberOperator(); 8901 8902 // If we have a function template, check the template parameter 8903 // list. This will check and merge default template arguments. 8904 if (FunctionTemplate) { 8905 FunctionTemplateDecl *PrevTemplate = 8906 FunctionTemplate->getPreviousDecl(); 8907 CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(), 8908 PrevTemplate ? PrevTemplate->getTemplateParameters() 8909 : nullptr, 8910 D.getDeclSpec().isFriendSpecified() 8911 ? (D.isFunctionDefinition() 8912 ? TPC_FriendFunctionTemplateDefinition 8913 : TPC_FriendFunctionTemplate) 8914 : (D.getCXXScopeSpec().isSet() && 8915 DC && DC->isRecord() && 8916 DC->isDependentContext()) 8917 ? TPC_ClassTemplateMember 8918 : TPC_FunctionTemplate); 8919 } 8920 8921 if (NewFD->isInvalidDecl()) { 8922 // Ignore all the rest of this. 8923 } else if (!D.isRedeclaration()) { 8924 struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists, 8925 AddToScope }; 8926 // Fake up an access specifier if it's supposed to be a class member. 8927 if (isa<CXXRecordDecl>(NewFD->getDeclContext())) 8928 NewFD->setAccess(AS_public); 8929 8930 // Qualified decls generally require a previous declaration. 8931 if (D.getCXXScopeSpec().isSet()) { 8932 // ...with the major exception of templated-scope or 8933 // dependent-scope friend declarations. 8934 8935 // TODO: we currently also suppress this check in dependent 8936 // contexts because (1) the parameter depth will be off when 8937 // matching friend templates and (2) we might actually be 8938 // selecting a friend based on a dependent factor. But there 8939 // are situations where these conditions don't apply and we 8940 // can actually do this check immediately. 8941 if (isFriend && 8942 (TemplateParamLists.size() || 8943 D.getCXXScopeSpec().getScopeRep()->isDependent() || 8944 CurContext->isDependentContext())) { 8945 // ignore these 8946 } else { 8947 // The user tried to provide an out-of-line definition for a 8948 // function that is a member of a class or namespace, but there 8949 // was no such member function declared (C++ [class.mfct]p2, 8950 // C++ [namespace.memdef]p2). For example: 8951 // 8952 // class X { 8953 // void f() const; 8954 // }; 8955 // 8956 // void X::f() { } // ill-formed 8957 // 8958 // Complain about this problem, and attempt to suggest close 8959 // matches (e.g., those that differ only in cv-qualifiers and 8960 // whether the parameter types are references). 8961 8962 if (NamedDecl *Result = DiagnoseInvalidRedeclaration( 8963 *this, Previous, NewFD, ExtraArgs, false, nullptr)) { 8964 AddToScope = ExtraArgs.AddToScope; 8965 return Result; 8966 } 8967 } 8968 8969 // Unqualified local friend declarations are required to resolve 8970 // to something. 8971 } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) { 8972 if (NamedDecl *Result = DiagnoseInvalidRedeclaration( 8973 *this, Previous, NewFD, ExtraArgs, true, S)) { 8974 AddToScope = ExtraArgs.AddToScope; 8975 return Result; 8976 } 8977 } 8978 } else if (!D.isFunctionDefinition() && 8979 isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() && 8980 !isFriend && !isFunctionTemplateSpecialization && 8981 !isMemberSpecialization) { 8982 // An out-of-line member function declaration must also be a 8983 // definition (C++ [class.mfct]p2). 8984 // Note that this is not the case for explicit specializations of 8985 // function templates or member functions of class templates, per 8986 // C++ [temp.expl.spec]p2. We also allow these declarations as an 8987 // extension for compatibility with old SWIG code which likes to 8988 // generate them. 8989 Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration) 8990 << D.getCXXScopeSpec().getRange(); 8991 } 8992 } 8993 8994 ProcessPragmaWeak(S, NewFD); 8995 checkAttributesAfterMerging(*this, *NewFD); 8996 8997 AddKnownFunctionAttributes(NewFD); 8998 8999 if (NewFD->hasAttr<OverloadableAttr>() && 9000 !NewFD->getType()->getAs<FunctionProtoType>()) { 9001 Diag(NewFD->getLocation(), 9002 diag::err_attribute_overloadable_no_prototype) 9003 << NewFD; 9004 9005 // Turn this into a variadic function with no parameters. 9006 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>(); 9007 FunctionProtoType::ExtProtoInfo EPI( 9008 Context.getDefaultCallingConvention(true, false)); 9009 EPI.Variadic = true; 9010 EPI.ExtInfo = FT->getExtInfo(); 9011 9012 QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI); 9013 NewFD->setType(R); 9014 } 9015 9016 // If there's a #pragma GCC visibility in scope, and this isn't a class 9017 // member, set the visibility of this function. 9018 if (!DC->isRecord() && NewFD->isExternallyVisible()) 9019 AddPushedVisibilityAttribute(NewFD); 9020 9021 // If there's a #pragma clang arc_cf_code_audited in scope, consider 9022 // marking the function. 9023 AddCFAuditedAttribute(NewFD); 9024 9025 // If this is a function definition, check if we have to apply optnone due to 9026 // a pragma. 9027 if(D.isFunctionDefinition()) 9028 AddRangeBasedOptnone(NewFD); 9029 9030 // If this is the first declaration of an extern C variable, update 9031 // the map of such variables. 9032 if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() && 9033 isIncompleteDeclExternC(*this, NewFD)) 9034 RegisterLocallyScopedExternCDecl(NewFD, S); 9035 9036 // Set this FunctionDecl's range up to the right paren. 9037 NewFD->setRangeEnd(D.getSourceRange().getEnd()); 9038 9039 if (D.isRedeclaration() && !Previous.empty()) { 9040 NamedDecl *Prev = Previous.getRepresentativeDecl(); 9041 checkDLLAttributeRedeclaration(*this, Prev, NewFD, 9042 isMemberSpecialization || 9043 isFunctionTemplateSpecialization, 9044 D.isFunctionDefinition()); 9045 } 9046 9047 if (getLangOpts().CUDA) { 9048 IdentifierInfo *II = NewFD->getIdentifier(); 9049 if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() && 9050 NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 9051 if (!R->getAs<FunctionType>()->getReturnType()->isScalarType()) 9052 Diag(NewFD->getLocation(), diag::err_config_scalar_return); 9053 9054 Context.setcudaConfigureCallDecl(NewFD); 9055 } 9056 9057 // Variadic functions, other than a *declaration* of printf, are not allowed 9058 // in device-side CUDA code, unless someone passed 9059 // -fcuda-allow-variadic-functions. 9060 if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() && 9061 (NewFD->hasAttr<CUDADeviceAttr>() || 9062 NewFD->hasAttr<CUDAGlobalAttr>()) && 9063 !(II && II->isStr("printf") && NewFD->isExternC() && 9064 !D.isFunctionDefinition())) { 9065 Diag(NewFD->getLocation(), diag::err_variadic_device_fn); 9066 } 9067 } 9068 9069 MarkUnusedFileScopedDecl(NewFD); 9070 9071 if (getLangOpts().CPlusPlus) { 9072 if (FunctionTemplate) { 9073 if (NewFD->isInvalidDecl()) 9074 FunctionTemplate->setInvalidDecl(); 9075 return FunctionTemplate; 9076 } 9077 9078 if (isMemberSpecialization && !NewFD->isInvalidDecl()) 9079 CompleteMemberSpecialization(NewFD, Previous); 9080 } 9081 9082 if (NewFD->hasAttr<OpenCLKernelAttr>()) { 9083 // OpenCL v1.2 s6.8 static is invalid for kernel functions. 9084 if ((getLangOpts().OpenCLVersion >= 120) 9085 && (SC == SC_Static)) { 9086 Diag(D.getIdentifierLoc(), diag::err_static_kernel); 9087 D.setInvalidType(); 9088 } 9089 9090 // OpenCL v1.2, s6.9 -- Kernels can only have return type void. 9091 if (!NewFD->getReturnType()->isVoidType()) { 9092 SourceRange RTRange = NewFD->getReturnTypeSourceRange(); 9093 Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type) 9094 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void") 9095 : FixItHint()); 9096 D.setInvalidType(); 9097 } 9098 9099 llvm::SmallPtrSet<const Type *, 16> ValidTypes; 9100 for (auto Param : NewFD->parameters()) 9101 checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes); 9102 } 9103 for (const ParmVarDecl *Param : NewFD->parameters()) { 9104 QualType PT = Param->getType(); 9105 9106 // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value 9107 // types. 9108 if (getLangOpts().OpenCLVersion >= 200) { 9109 if(const PipeType *PipeTy = PT->getAs<PipeType>()) { 9110 QualType ElemTy = PipeTy->getElementType(); 9111 if (ElemTy->isReferenceType() || ElemTy->isPointerType()) { 9112 Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type ); 9113 D.setInvalidType(); 9114 } 9115 } 9116 } 9117 } 9118 9119 // Here we have an function template explicit specialization at class scope. 9120 // The actually specialization will be postponed to template instatiation 9121 // time via the ClassScopeFunctionSpecializationDecl node. 9122 if (isDependentClassScopeExplicitSpecialization) { 9123 ClassScopeFunctionSpecializationDecl *NewSpec = 9124 ClassScopeFunctionSpecializationDecl::Create( 9125 Context, CurContext, SourceLocation(), 9126 cast<CXXMethodDecl>(NewFD), 9127 HasExplicitTemplateArgs, TemplateArgs); 9128 CurContext->addDecl(NewSpec); 9129 AddToScope = false; 9130 } 9131 9132 return NewFD; 9133 } 9134 9135 /// \brief Checks if the new declaration declared in dependent context must be 9136 /// put in the same redeclaration chain as the specified declaration. 9137 /// 9138 /// \param D Declaration that is checked. 9139 /// \param PrevDecl Previous declaration found with proper lookup method for the 9140 /// same declaration name. 9141 /// \returns True if D must be added to the redeclaration chain which PrevDecl 9142 /// belongs to. 9143 /// 9144 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) { 9145 // Any declarations should be put into redeclaration chains except for 9146 // friend declaration in a dependent context that names a function in 9147 // namespace scope. 9148 // 9149 // This allows to compile code like: 9150 // 9151 // void func(); 9152 // template<typename T> class C1 { friend void func() { } }; 9153 // template<typename T> class C2 { friend void func() { } }; 9154 // 9155 // This code snippet is a valid code unless both templates are instantiated. 9156 return !(D->getLexicalDeclContext()->isDependentContext() && 9157 D->getDeclContext()->isFileContext() && 9158 D->getFriendObjectKind() != Decl::FOK_None); 9159 } 9160 9161 /// \brief Check the target attribute of the function for MultiVersion 9162 /// validity. 9163 /// 9164 /// Returns true if there was an error, false otherwise. 9165 static bool CheckMultiVersionValue(Sema &S, const FunctionDecl *FD) { 9166 const auto *TA = FD->getAttr<TargetAttr>(); 9167 assert(TA && "MultiVersion Candidate requires a target attribute"); 9168 TargetAttr::ParsedTargetAttr ParseInfo = TA->parse(); 9169 const TargetInfo &TargetInfo = S.Context.getTargetInfo(); 9170 enum ErrType { Feature = 0, Architecture = 1 }; 9171 9172 if (!ParseInfo.Architecture.empty() && 9173 !TargetInfo.validateCpuIs(ParseInfo.Architecture)) { 9174 S.Diag(FD->getLocation(), diag::err_bad_multiversion_option) 9175 << Architecture << ParseInfo.Architecture; 9176 return true; 9177 } 9178 9179 for (const auto &Feat : ParseInfo.Features) { 9180 auto BareFeat = StringRef{Feat}.substr(1); 9181 if (Feat[0] == '-') { 9182 S.Diag(FD->getLocation(), diag::err_bad_multiversion_option) 9183 << Feature << ("no-" + BareFeat).str(); 9184 return true; 9185 } 9186 9187 if (!TargetInfo.validateCpuSupports(BareFeat) || 9188 !TargetInfo.isValidFeatureName(BareFeat)) { 9189 S.Diag(FD->getLocation(), diag::err_bad_multiversion_option) 9190 << Feature << BareFeat; 9191 return true; 9192 } 9193 } 9194 return false; 9195 } 9196 9197 static bool CheckMultiVersionAdditionalRules(Sema &S, const FunctionDecl *OldFD, 9198 const FunctionDecl *NewFD, 9199 bool CausesMV) { 9200 enum DoesntSupport { 9201 FuncTemplates = 0, 9202 VirtFuncs = 1, 9203 DeducedReturn = 2, 9204 Constructors = 3, 9205 Destructors = 4, 9206 DeletedFuncs = 5, 9207 DefaultedFuncs = 6 9208 }; 9209 enum Different { 9210 CallingConv = 0, 9211 ReturnType = 1, 9212 ConstexprSpec = 2, 9213 InlineSpec = 3, 9214 StorageClass = 4, 9215 Linkage = 5 9216 }; 9217 9218 // For now, disallow all other attributes. These should be opt-in, but 9219 // an analysis of all of them is a future FIXME. 9220 if (CausesMV && OldFD && 9221 std::distance(OldFD->attr_begin(), OldFD->attr_end()) != 1) { 9222 S.Diag(OldFD->getLocation(), diag::err_multiversion_no_other_attrs); 9223 S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here); 9224 return true; 9225 } 9226 9227 if (std::distance(NewFD->attr_begin(), NewFD->attr_end()) != 1) 9228 return S.Diag(NewFD->getLocation(), diag::err_multiversion_no_other_attrs); 9229 9230 if (NewFD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate) 9231 return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support) 9232 << FuncTemplates; 9233 9234 if (const auto *NewCXXFD = dyn_cast<CXXMethodDecl>(NewFD)) { 9235 if (NewCXXFD->isVirtual()) 9236 return S.Diag(NewCXXFD->getLocation(), 9237 diag::err_multiversion_doesnt_support) 9238 << VirtFuncs; 9239 9240 if (const auto *NewCXXCtor = dyn_cast<CXXConstructorDecl>(NewFD)) 9241 return S.Diag(NewCXXCtor->getLocation(), 9242 diag::err_multiversion_doesnt_support) 9243 << Constructors; 9244 9245 if (const auto *NewCXXDtor = dyn_cast<CXXDestructorDecl>(NewFD)) 9246 return S.Diag(NewCXXDtor->getLocation(), 9247 diag::err_multiversion_doesnt_support) 9248 << Destructors; 9249 } 9250 9251 if (NewFD->isDeleted()) 9252 return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support) 9253 << DeletedFuncs; 9254 9255 if (NewFD->isDefaulted()) 9256 return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support) 9257 << DefaultedFuncs; 9258 9259 QualType NewQType = S.getASTContext().getCanonicalType(NewFD->getType()); 9260 const auto *NewType = cast<FunctionType>(NewQType); 9261 QualType NewReturnType = NewType->getReturnType(); 9262 9263 if (NewReturnType->isUndeducedType()) 9264 return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support) 9265 << DeducedReturn; 9266 9267 // Only allow transition to MultiVersion if it hasn't been used. 9268 if (OldFD && CausesMV && OldFD->isUsed(false)) 9269 return S.Diag(NewFD->getLocation(), diag::err_multiversion_after_used); 9270 9271 // Ensure the return type is identical. 9272 if (OldFD) { 9273 QualType OldQType = S.getASTContext().getCanonicalType(OldFD->getType()); 9274 const auto *OldType = cast<FunctionType>(OldQType); 9275 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); 9276 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); 9277 9278 if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) 9279 return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff) 9280 << CallingConv; 9281 9282 QualType OldReturnType = OldType->getReturnType(); 9283 9284 if (OldReturnType != NewReturnType) 9285 return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff) 9286 << ReturnType; 9287 9288 if (OldFD->isConstexpr() != NewFD->isConstexpr()) 9289 return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff) 9290 << ConstexprSpec; 9291 9292 if (OldFD->isInlineSpecified() != NewFD->isInlineSpecified()) 9293 return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff) 9294 << InlineSpec; 9295 9296 if (OldFD->getStorageClass() != NewFD->getStorageClass()) 9297 return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff) 9298 << StorageClass; 9299 9300 if (OldFD->isExternC() != NewFD->isExternC()) 9301 return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff) 9302 << Linkage; 9303 9304 if (S.CheckEquivalentExceptionSpec( 9305 OldFD->getType()->getAs<FunctionProtoType>(), OldFD->getLocation(), 9306 NewFD->getType()->getAs<FunctionProtoType>(), NewFD->getLocation())) 9307 return true; 9308 } 9309 return false; 9310 } 9311 9312 /// \brief Check the validity of a mulitversion function declaration. 9313 /// Also sets the multiversion'ness' of the function itself. 9314 /// 9315 /// This sets NewFD->isInvalidDecl() to true if there was an error. 9316 /// 9317 /// Returns true if there was an error, false otherwise. 9318 static bool CheckMultiVersionFunction(Sema &S, FunctionDecl *NewFD, 9319 bool &Redeclaration, NamedDecl *&OldDecl, 9320 bool &MergeTypeWithPrevious, 9321 LookupResult &Previous) { 9322 const auto *NewTA = NewFD->getAttr<TargetAttr>(); 9323 if (NewFD->isMain()) { 9324 if (NewTA && NewTA->isDefaultVersion()) { 9325 S.Diag(NewFD->getLocation(), diag::err_multiversion_not_allowed_on_main); 9326 NewFD->setInvalidDecl(); 9327 return true; 9328 } 9329 return false; 9330 } 9331 9332 // If there is no matching previous decl, only 'default' can 9333 // cause MultiVersioning. 9334 if (!OldDecl) { 9335 if (NewTA && NewTA->isDefaultVersion()) { 9336 if (!NewFD->getType()->getAs<FunctionProtoType>()) { 9337 S.Diag(NewFD->getLocation(), diag::err_multiversion_noproto); 9338 NewFD->setInvalidDecl(); 9339 return true; 9340 } 9341 if (CheckMultiVersionAdditionalRules(S, nullptr, NewFD, true)) { 9342 NewFD->setInvalidDecl(); 9343 return true; 9344 } 9345 if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) { 9346 S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported); 9347 NewFD->setInvalidDecl(); 9348 return true; 9349 } 9350 9351 NewFD->setIsMultiVersion(); 9352 } 9353 return false; 9354 } 9355 9356 if (OldDecl->getDeclContext()->getRedeclContext() != 9357 NewFD->getDeclContext()->getRedeclContext()) 9358 return false; 9359 9360 FunctionDecl *OldFD = OldDecl->getAsFunction(); 9361 // Unresolved 'using' statements (the other way OldDecl can be not a function) 9362 // likely cannot cause a problem here. 9363 if (!OldFD) 9364 return false; 9365 9366 if (!OldFD->isMultiVersion() && !NewTA) 9367 return false; 9368 9369 if (OldFD->isMultiVersion() && !NewTA) { 9370 S.Diag(NewFD->getLocation(), diag::err_target_required_in_redecl); 9371 NewFD->setInvalidDecl(); 9372 return true; 9373 } 9374 9375 TargetAttr::ParsedTargetAttr NewParsed = NewTA->parse(); 9376 // Sort order doesn't matter, it just needs to be consistent. 9377 std::sort(NewParsed.Features.begin(), NewParsed.Features.end()); 9378 9379 const auto *OldTA = OldFD->getAttr<TargetAttr>(); 9380 if (!OldFD->isMultiVersion()) { 9381 // If the old decl is NOT MultiVersioned yet, and we don't cause that 9382 // to change, this is a simple redeclaration. 9383 if (!OldTA || OldTA->getFeaturesStr() == NewTA->getFeaturesStr()) 9384 return false; 9385 9386 // Otherwise, this decl causes MultiVersioning. 9387 if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) { 9388 S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported); 9389 S.Diag(OldFD->getLocation(), diag::note_previous_declaration); 9390 NewFD->setInvalidDecl(); 9391 return true; 9392 } 9393 9394 if (!OldFD->getType()->getAs<FunctionProtoType>()) { 9395 S.Diag(OldFD->getLocation(), diag::err_multiversion_noproto); 9396 S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here); 9397 NewFD->setInvalidDecl(); 9398 return true; 9399 } 9400 9401 if (CheckMultiVersionValue(S, NewFD)) { 9402 NewFD->setInvalidDecl(); 9403 return true; 9404 } 9405 9406 if (CheckMultiVersionValue(S, OldFD)) { 9407 S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here); 9408 NewFD->setInvalidDecl(); 9409 return true; 9410 } 9411 9412 TargetAttr::ParsedTargetAttr OldParsed = 9413 OldTA->parse(std::less<std::string>()); 9414 9415 if (OldParsed == NewParsed) { 9416 S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate); 9417 S.Diag(OldFD->getLocation(), diag::note_previous_declaration); 9418 NewFD->setInvalidDecl(); 9419 return true; 9420 } 9421 9422 for (const auto *FD : OldFD->redecls()) { 9423 const auto *CurTA = FD->getAttr<TargetAttr>(); 9424 if (!CurTA || CurTA->isInherited()) { 9425 S.Diag(FD->getLocation(), diag::err_target_required_in_redecl); 9426 S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here); 9427 NewFD->setInvalidDecl(); 9428 return true; 9429 } 9430 } 9431 9432 if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, true)) { 9433 NewFD->setInvalidDecl(); 9434 return true; 9435 } 9436 9437 OldFD->setIsMultiVersion(); 9438 NewFD->setIsMultiVersion(); 9439 Redeclaration = false; 9440 MergeTypeWithPrevious = false; 9441 OldDecl = nullptr; 9442 Previous.clear(); 9443 return false; 9444 } 9445 9446 bool UseMemberUsingDeclRules = 9447 S.CurContext->isRecord() && !NewFD->getFriendObjectKind(); 9448 9449 // Next, check ALL non-overloads to see if this is a redeclaration of a 9450 // previous member of the MultiVersion set. 9451 for (NamedDecl *ND : Previous) { 9452 FunctionDecl *CurFD = ND->getAsFunction(); 9453 if (!CurFD) 9454 continue; 9455 if (S.IsOverload(NewFD, CurFD, UseMemberUsingDeclRules)) 9456 continue; 9457 9458 const auto *CurTA = CurFD->getAttr<TargetAttr>(); 9459 if (CurTA->getFeaturesStr() == NewTA->getFeaturesStr()) { 9460 NewFD->setIsMultiVersion(); 9461 Redeclaration = true; 9462 OldDecl = ND; 9463 return false; 9464 } 9465 9466 TargetAttr::ParsedTargetAttr CurParsed = 9467 CurTA->parse(std::less<std::string>()); 9468 9469 if (CurParsed == NewParsed) { 9470 S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate); 9471 S.Diag(CurFD->getLocation(), diag::note_previous_declaration); 9472 NewFD->setInvalidDecl(); 9473 return true; 9474 } 9475 } 9476 9477 // Else, this is simply a non-redecl case. 9478 if (CheckMultiVersionValue(S, NewFD)) { 9479 NewFD->setInvalidDecl(); 9480 return true; 9481 } 9482 9483 if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, false)) { 9484 NewFD->setInvalidDecl(); 9485 return true; 9486 } 9487 9488 NewFD->setIsMultiVersion(); 9489 Redeclaration = false; 9490 MergeTypeWithPrevious = false; 9491 OldDecl = nullptr; 9492 Previous.clear(); 9493 return false; 9494 } 9495 9496 /// \brief Perform semantic checking of a new function declaration. 9497 /// 9498 /// Performs semantic analysis of the new function declaration 9499 /// NewFD. This routine performs all semantic checking that does not 9500 /// require the actual declarator involved in the declaration, and is 9501 /// used both for the declaration of functions as they are parsed 9502 /// (called via ActOnDeclarator) and for the declaration of functions 9503 /// that have been instantiated via C++ template instantiation (called 9504 /// via InstantiateDecl). 9505 /// 9506 /// \param IsMemberSpecialization whether this new function declaration is 9507 /// a member specialization (that replaces any definition provided by the 9508 /// previous declaration). 9509 /// 9510 /// This sets NewFD->isInvalidDecl() to true if there was an error. 9511 /// 9512 /// \returns true if the function declaration is a redeclaration. 9513 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD, 9514 LookupResult &Previous, 9515 bool IsMemberSpecialization) { 9516 assert(!NewFD->getReturnType()->isVariablyModifiedType() && 9517 "Variably modified return types are not handled here"); 9518 9519 // Determine whether the type of this function should be merged with 9520 // a previous visible declaration. This never happens for functions in C++, 9521 // and always happens in C if the previous declaration was visible. 9522 bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus && 9523 !Previous.isShadowed(); 9524 9525 bool Redeclaration = false; 9526 NamedDecl *OldDecl = nullptr; 9527 bool MayNeedOverloadableChecks = false; 9528 9529 // Merge or overload the declaration with an existing declaration of 9530 // the same name, if appropriate. 9531 if (!Previous.empty()) { 9532 // Determine whether NewFD is an overload of PrevDecl or 9533 // a declaration that requires merging. If it's an overload, 9534 // there's no more work to do here; we'll just add the new 9535 // function to the scope. 9536 if (!AllowOverloadingOfFunction(Previous, Context, NewFD)) { 9537 NamedDecl *Candidate = Previous.getRepresentativeDecl(); 9538 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) { 9539 Redeclaration = true; 9540 OldDecl = Candidate; 9541 } 9542 } else { 9543 MayNeedOverloadableChecks = true; 9544 switch (CheckOverload(S, NewFD, Previous, OldDecl, 9545 /*NewIsUsingDecl*/ false)) { 9546 case Ovl_Match: 9547 Redeclaration = true; 9548 break; 9549 9550 case Ovl_NonFunction: 9551 Redeclaration = true; 9552 break; 9553 9554 case Ovl_Overload: 9555 Redeclaration = false; 9556 break; 9557 } 9558 } 9559 } 9560 9561 // Check for a previous extern "C" declaration with this name. 9562 if (!Redeclaration && 9563 checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) { 9564 if (!Previous.empty()) { 9565 // This is an extern "C" declaration with the same name as a previous 9566 // declaration, and thus redeclares that entity... 9567 Redeclaration = true; 9568 OldDecl = Previous.getFoundDecl(); 9569 MergeTypeWithPrevious = false; 9570 9571 // ... except in the presence of __attribute__((overloadable)). 9572 if (OldDecl->hasAttr<OverloadableAttr>() || 9573 NewFD->hasAttr<OverloadableAttr>()) { 9574 if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) { 9575 MayNeedOverloadableChecks = true; 9576 Redeclaration = false; 9577 OldDecl = nullptr; 9578 } 9579 } 9580 } 9581 } 9582 9583 if (CheckMultiVersionFunction(*this, NewFD, Redeclaration, OldDecl, 9584 MergeTypeWithPrevious, Previous)) 9585 return Redeclaration; 9586 9587 // C++11 [dcl.constexpr]p8: 9588 // A constexpr specifier for a non-static member function that is not 9589 // a constructor declares that member function to be const. 9590 // 9591 // This needs to be delayed until we know whether this is an out-of-line 9592 // definition of a static member function. 9593 // 9594 // This rule is not present in C++1y, so we produce a backwards 9595 // compatibility warning whenever it happens in C++11. 9596 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 9597 if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() && 9598 !MD->isStatic() && !isa<CXXConstructorDecl>(MD) && 9599 (MD->getTypeQualifiers() & Qualifiers::Const) == 0) { 9600 CXXMethodDecl *OldMD = nullptr; 9601 if (OldDecl) 9602 OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction()); 9603 if (!OldMD || !OldMD->isStatic()) { 9604 const FunctionProtoType *FPT = 9605 MD->getType()->castAs<FunctionProtoType>(); 9606 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 9607 EPI.TypeQuals |= Qualifiers::Const; 9608 MD->setType(Context.getFunctionType(FPT->getReturnType(), 9609 FPT->getParamTypes(), EPI)); 9610 9611 // Warn that we did this, if we're not performing template instantiation. 9612 // In that case, we'll have warned already when the template was defined. 9613 if (!inTemplateInstantiation()) { 9614 SourceLocation AddConstLoc; 9615 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc() 9616 .IgnoreParens().getAs<FunctionTypeLoc>()) 9617 AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc()); 9618 9619 Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const) 9620 << FixItHint::CreateInsertion(AddConstLoc, " const"); 9621 } 9622 } 9623 } 9624 9625 if (Redeclaration) { 9626 // NewFD and OldDecl represent declarations that need to be 9627 // merged. 9628 if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) { 9629 NewFD->setInvalidDecl(); 9630 return Redeclaration; 9631 } 9632 9633 Previous.clear(); 9634 Previous.addDecl(OldDecl); 9635 9636 if (FunctionTemplateDecl *OldTemplateDecl 9637 = dyn_cast<FunctionTemplateDecl>(OldDecl)) { 9638 auto *OldFD = OldTemplateDecl->getTemplatedDecl(); 9639 NewFD->setPreviousDeclaration(OldFD); 9640 adjustDeclContextForDeclaratorDecl(NewFD, OldFD); 9641 FunctionTemplateDecl *NewTemplateDecl 9642 = NewFD->getDescribedFunctionTemplate(); 9643 assert(NewTemplateDecl && "Template/non-template mismatch"); 9644 if (auto *Method = dyn_cast<CXXMethodDecl>(NewFD)) { 9645 Method->setAccess(OldTemplateDecl->getAccess()); 9646 NewTemplateDecl->setAccess(OldTemplateDecl->getAccess()); 9647 } 9648 9649 // If this is an explicit specialization of a member that is a function 9650 // template, mark it as a member specialization. 9651 if (IsMemberSpecialization && 9652 NewTemplateDecl->getInstantiatedFromMemberTemplate()) { 9653 NewTemplateDecl->setMemberSpecialization(); 9654 assert(OldTemplateDecl->isMemberSpecialization()); 9655 // Explicit specializations of a member template do not inherit deleted 9656 // status from the parent member template that they are specializing. 9657 if (OldFD->isDeleted()) { 9658 // FIXME: This assert will not hold in the presence of modules. 9659 assert(OldFD->getCanonicalDecl() == OldFD); 9660 // FIXME: We need an update record for this AST mutation. 9661 OldFD->setDeletedAsWritten(false); 9662 } 9663 } 9664 9665 } else { 9666 if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) { 9667 auto *OldFD = cast<FunctionDecl>(OldDecl); 9668 // This needs to happen first so that 'inline' propagates. 9669 NewFD->setPreviousDeclaration(OldFD); 9670 adjustDeclContextForDeclaratorDecl(NewFD, OldFD); 9671 if (isa<CXXMethodDecl>(NewFD)) 9672 NewFD->setAccess(OldFD->getAccess()); 9673 } 9674 } 9675 } else if (!getLangOpts().CPlusPlus && MayNeedOverloadableChecks && 9676 !NewFD->getAttr<OverloadableAttr>()) { 9677 assert((Previous.empty() || 9678 llvm::any_of(Previous, 9679 [](const NamedDecl *ND) { 9680 return ND->hasAttr<OverloadableAttr>(); 9681 })) && 9682 "Non-redecls shouldn't happen without overloadable present"); 9683 9684 auto OtherUnmarkedIter = llvm::find_if(Previous, [](const NamedDecl *ND) { 9685 const auto *FD = dyn_cast<FunctionDecl>(ND); 9686 return FD && !FD->hasAttr<OverloadableAttr>(); 9687 }); 9688 9689 if (OtherUnmarkedIter != Previous.end()) { 9690 Diag(NewFD->getLocation(), 9691 diag::err_attribute_overloadable_multiple_unmarked_overloads); 9692 Diag((*OtherUnmarkedIter)->getLocation(), 9693 diag::note_attribute_overloadable_prev_overload) 9694 << false; 9695 9696 NewFD->addAttr(OverloadableAttr::CreateImplicit(Context)); 9697 } 9698 } 9699 9700 // Semantic checking for this function declaration (in isolation). 9701 9702 if (getLangOpts().CPlusPlus) { 9703 // C++-specific checks. 9704 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) { 9705 CheckConstructor(Constructor); 9706 } else if (CXXDestructorDecl *Destructor = 9707 dyn_cast<CXXDestructorDecl>(NewFD)) { 9708 CXXRecordDecl *Record = Destructor->getParent(); 9709 QualType ClassType = Context.getTypeDeclType(Record); 9710 9711 // FIXME: Shouldn't we be able to perform this check even when the class 9712 // type is dependent? Both gcc and edg can handle that. 9713 if (!ClassType->isDependentType()) { 9714 DeclarationName Name 9715 = Context.DeclarationNames.getCXXDestructorName( 9716 Context.getCanonicalType(ClassType)); 9717 if (NewFD->getDeclName() != Name) { 9718 Diag(NewFD->getLocation(), diag::err_destructor_name); 9719 NewFD->setInvalidDecl(); 9720 return Redeclaration; 9721 } 9722 } 9723 } else if (CXXConversionDecl *Conversion 9724 = dyn_cast<CXXConversionDecl>(NewFD)) { 9725 ActOnConversionDeclarator(Conversion); 9726 } else if (auto *Guide = dyn_cast<CXXDeductionGuideDecl>(NewFD)) { 9727 if (auto *TD = Guide->getDescribedFunctionTemplate()) 9728 CheckDeductionGuideTemplate(TD); 9729 9730 // A deduction guide is not on the list of entities that can be 9731 // explicitly specialized. 9732 if (Guide->getTemplateSpecializationKind() == TSK_ExplicitSpecialization) 9733 Diag(Guide->getLocStart(), diag::err_deduction_guide_specialized) 9734 << /*explicit specialization*/ 1; 9735 } 9736 9737 // Find any virtual functions that this function overrides. 9738 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) { 9739 if (!Method->isFunctionTemplateSpecialization() && 9740 !Method->getDescribedFunctionTemplate() && 9741 Method->isCanonicalDecl()) { 9742 if (AddOverriddenMethods(Method->getParent(), Method)) { 9743 // If the function was marked as "static", we have a problem. 9744 if (NewFD->getStorageClass() == SC_Static) { 9745 ReportOverrides(*this, diag::err_static_overrides_virtual, Method); 9746 } 9747 } 9748 } 9749 9750 if (Method->isStatic()) 9751 checkThisInStaticMemberFunctionType(Method); 9752 } 9753 9754 // Extra checking for C++ overloaded operators (C++ [over.oper]). 9755 if (NewFD->isOverloadedOperator() && 9756 CheckOverloadedOperatorDeclaration(NewFD)) { 9757 NewFD->setInvalidDecl(); 9758 return Redeclaration; 9759 } 9760 9761 // Extra checking for C++0x literal operators (C++0x [over.literal]). 9762 if (NewFD->getLiteralIdentifier() && 9763 CheckLiteralOperatorDeclaration(NewFD)) { 9764 NewFD->setInvalidDecl(); 9765 return Redeclaration; 9766 } 9767 9768 // In C++, check default arguments now that we have merged decls. Unless 9769 // the lexical context is the class, because in this case this is done 9770 // during delayed parsing anyway. 9771 if (!CurContext->isRecord()) 9772 CheckCXXDefaultArguments(NewFD); 9773 9774 // If this function declares a builtin function, check the type of this 9775 // declaration against the expected type for the builtin. 9776 if (unsigned BuiltinID = NewFD->getBuiltinID()) { 9777 ASTContext::GetBuiltinTypeError Error; 9778 LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier()); 9779 QualType T = Context.GetBuiltinType(BuiltinID, Error); 9780 // If the type of the builtin differs only in its exception 9781 // specification, that's OK. 9782 // FIXME: If the types do differ in this way, it would be better to 9783 // retain the 'noexcept' form of the type. 9784 if (!T.isNull() && 9785 !Context.hasSameFunctionTypeIgnoringExceptionSpec(T, 9786 NewFD->getType())) 9787 // The type of this function differs from the type of the builtin, 9788 // so forget about the builtin entirely. 9789 Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents); 9790 } 9791 9792 // If this function is declared as being extern "C", then check to see if 9793 // the function returns a UDT (class, struct, or union type) that is not C 9794 // compatible, and if it does, warn the user. 9795 // But, issue any diagnostic on the first declaration only. 9796 if (Previous.empty() && NewFD->isExternC()) { 9797 QualType R = NewFD->getReturnType(); 9798 if (R->isIncompleteType() && !R->isVoidType()) 9799 Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete) 9800 << NewFD << R; 9801 else if (!R.isPODType(Context) && !R->isVoidType() && 9802 !R->isObjCObjectPointerType()) 9803 Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R; 9804 } 9805 9806 // C++1z [dcl.fct]p6: 9807 // [...] whether the function has a non-throwing exception-specification 9808 // [is] part of the function type 9809 // 9810 // This results in an ABI break between C++14 and C++17 for functions whose 9811 // declared type includes an exception-specification in a parameter or 9812 // return type. (Exception specifications on the function itself are OK in 9813 // most cases, and exception specifications are not permitted in most other 9814 // contexts where they could make it into a mangling.) 9815 if (!getLangOpts().CPlusPlus17 && !NewFD->getPrimaryTemplate()) { 9816 auto HasNoexcept = [&](QualType T) -> bool { 9817 // Strip off declarator chunks that could be between us and a function 9818 // type. We don't need to look far, exception specifications are very 9819 // restricted prior to C++17. 9820 if (auto *RT = T->getAs<ReferenceType>()) 9821 T = RT->getPointeeType(); 9822 else if (T->isAnyPointerType()) 9823 T = T->getPointeeType(); 9824 else if (auto *MPT = T->getAs<MemberPointerType>()) 9825 T = MPT->getPointeeType(); 9826 if (auto *FPT = T->getAs<FunctionProtoType>()) 9827 if (FPT->isNothrow(Context)) 9828 return true; 9829 return false; 9830 }; 9831 9832 auto *FPT = NewFD->getType()->castAs<FunctionProtoType>(); 9833 bool AnyNoexcept = HasNoexcept(FPT->getReturnType()); 9834 for (QualType T : FPT->param_types()) 9835 AnyNoexcept |= HasNoexcept(T); 9836 if (AnyNoexcept) 9837 Diag(NewFD->getLocation(), 9838 diag::warn_cxx17_compat_exception_spec_in_signature) 9839 << NewFD; 9840 } 9841 9842 if (!Redeclaration && LangOpts.CUDA) 9843 checkCUDATargetOverload(NewFD, Previous); 9844 } 9845 return Redeclaration; 9846 } 9847 9848 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) { 9849 // C++11 [basic.start.main]p3: 9850 // A program that [...] declares main to be inline, static or 9851 // constexpr is ill-formed. 9852 // C11 6.7.4p4: In a hosted environment, no function specifier(s) shall 9853 // appear in a declaration of main. 9854 // static main is not an error under C99, but we should warn about it. 9855 // We accept _Noreturn main as an extension. 9856 if (FD->getStorageClass() == SC_Static) 9857 Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus 9858 ? diag::err_static_main : diag::warn_static_main) 9859 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 9860 if (FD->isInlineSpecified()) 9861 Diag(DS.getInlineSpecLoc(), diag::err_inline_main) 9862 << FixItHint::CreateRemoval(DS.getInlineSpecLoc()); 9863 if (DS.isNoreturnSpecified()) { 9864 SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc(); 9865 SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc)); 9866 Diag(NoreturnLoc, diag::ext_noreturn_main); 9867 Diag(NoreturnLoc, diag::note_main_remove_noreturn) 9868 << FixItHint::CreateRemoval(NoreturnRange); 9869 } 9870 if (FD->isConstexpr()) { 9871 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main) 9872 << FixItHint::CreateRemoval(DS.getConstexprSpecLoc()); 9873 FD->setConstexpr(false); 9874 } 9875 9876 if (getLangOpts().OpenCL) { 9877 Diag(FD->getLocation(), diag::err_opencl_no_main) 9878 << FD->hasAttr<OpenCLKernelAttr>(); 9879 FD->setInvalidDecl(); 9880 return; 9881 } 9882 9883 QualType T = FD->getType(); 9884 assert(T->isFunctionType() && "function decl is not of function type"); 9885 const FunctionType* FT = T->castAs<FunctionType>(); 9886 9887 // Set default calling convention for main() 9888 if (FT->getCallConv() != CC_C) { 9889 FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(CC_C)); 9890 FD->setType(QualType(FT, 0)); 9891 T = Context.getCanonicalType(FD->getType()); 9892 } 9893 9894 if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) { 9895 // In C with GNU extensions we allow main() to have non-integer return 9896 // type, but we should warn about the extension, and we disable the 9897 // implicit-return-zero rule. 9898 9899 // GCC in C mode accepts qualified 'int'. 9900 if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy)) 9901 FD->setHasImplicitReturnZero(true); 9902 else { 9903 Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint); 9904 SourceRange RTRange = FD->getReturnTypeSourceRange(); 9905 if (RTRange.isValid()) 9906 Diag(RTRange.getBegin(), diag::note_main_change_return_type) 9907 << FixItHint::CreateReplacement(RTRange, "int"); 9908 } 9909 } else { 9910 // In C and C++, main magically returns 0 if you fall off the end; 9911 // set the flag which tells us that. 9912 // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3. 9913 9914 // All the standards say that main() should return 'int'. 9915 if (Context.hasSameType(FT->getReturnType(), Context.IntTy)) 9916 FD->setHasImplicitReturnZero(true); 9917 else { 9918 // Otherwise, this is just a flat-out error. 9919 SourceRange RTRange = FD->getReturnTypeSourceRange(); 9920 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint) 9921 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int") 9922 : FixItHint()); 9923 FD->setInvalidDecl(true); 9924 } 9925 } 9926 9927 // Treat protoless main() as nullary. 9928 if (isa<FunctionNoProtoType>(FT)) return; 9929 9930 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); 9931 unsigned nparams = FTP->getNumParams(); 9932 assert(FD->getNumParams() == nparams); 9933 9934 bool HasExtraParameters = (nparams > 3); 9935 9936 if (FTP->isVariadic()) { 9937 Diag(FD->getLocation(), diag::ext_variadic_main); 9938 // FIXME: if we had information about the location of the ellipsis, we 9939 // could add a FixIt hint to remove it as a parameter. 9940 } 9941 9942 // Darwin passes an undocumented fourth argument of type char**. If 9943 // other platforms start sprouting these, the logic below will start 9944 // getting shifty. 9945 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin()) 9946 HasExtraParameters = false; 9947 9948 if (HasExtraParameters) { 9949 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams; 9950 FD->setInvalidDecl(true); 9951 nparams = 3; 9952 } 9953 9954 // FIXME: a lot of the following diagnostics would be improved 9955 // if we had some location information about types. 9956 9957 QualType CharPP = 9958 Context.getPointerType(Context.getPointerType(Context.CharTy)); 9959 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP }; 9960 9961 for (unsigned i = 0; i < nparams; ++i) { 9962 QualType AT = FTP->getParamType(i); 9963 9964 bool mismatch = true; 9965 9966 if (Context.hasSameUnqualifiedType(AT, Expected[i])) 9967 mismatch = false; 9968 else if (Expected[i] == CharPP) { 9969 // As an extension, the following forms are okay: 9970 // char const ** 9971 // char const * const * 9972 // char * const * 9973 9974 QualifierCollector qs; 9975 const PointerType* PT; 9976 if ((PT = qs.strip(AT)->getAs<PointerType>()) && 9977 (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) && 9978 Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0), 9979 Context.CharTy)) { 9980 qs.removeConst(); 9981 mismatch = !qs.empty(); 9982 } 9983 } 9984 9985 if (mismatch) { 9986 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i]; 9987 // TODO: suggest replacing given type with expected type 9988 FD->setInvalidDecl(true); 9989 } 9990 } 9991 9992 if (nparams == 1 && !FD->isInvalidDecl()) { 9993 Diag(FD->getLocation(), diag::warn_main_one_arg); 9994 } 9995 9996 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 9997 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD; 9998 FD->setInvalidDecl(); 9999 } 10000 } 10001 10002 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) { 10003 QualType T = FD->getType(); 10004 assert(T->isFunctionType() && "function decl is not of function type"); 10005 const FunctionType *FT = T->castAs<FunctionType>(); 10006 10007 // Set an implicit return of 'zero' if the function can return some integral, 10008 // enumeration, pointer or nullptr type. 10009 if (FT->getReturnType()->isIntegralOrEnumerationType() || 10010 FT->getReturnType()->isAnyPointerType() || 10011 FT->getReturnType()->isNullPtrType()) 10012 // DllMain is exempt because a return value of zero means it failed. 10013 if (FD->getName() != "DllMain") 10014 FD->setHasImplicitReturnZero(true); 10015 10016 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 10017 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD; 10018 FD->setInvalidDecl(); 10019 } 10020 } 10021 10022 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) { 10023 // FIXME: Need strict checking. In C89, we need to check for 10024 // any assignment, increment, decrement, function-calls, or 10025 // commas outside of a sizeof. In C99, it's the same list, 10026 // except that the aforementioned are allowed in unevaluated 10027 // expressions. Everything else falls under the 10028 // "may accept other forms of constant expressions" exception. 10029 // (We never end up here for C++, so the constant expression 10030 // rules there don't matter.) 10031 const Expr *Culprit; 10032 if (Init->isConstantInitializer(Context, false, &Culprit)) 10033 return false; 10034 Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant) 10035 << Culprit->getSourceRange(); 10036 return true; 10037 } 10038 10039 namespace { 10040 // Visits an initialization expression to see if OrigDecl is evaluated in 10041 // its own initialization and throws a warning if it does. 10042 class SelfReferenceChecker 10043 : public EvaluatedExprVisitor<SelfReferenceChecker> { 10044 Sema &S; 10045 Decl *OrigDecl; 10046 bool isRecordType; 10047 bool isPODType; 10048 bool isReferenceType; 10049 10050 bool isInitList; 10051 llvm::SmallVector<unsigned, 4> InitFieldIndex; 10052 10053 public: 10054 typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited; 10055 10056 SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context), 10057 S(S), OrigDecl(OrigDecl) { 10058 isPODType = false; 10059 isRecordType = false; 10060 isReferenceType = false; 10061 isInitList = false; 10062 if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) { 10063 isPODType = VD->getType().isPODType(S.Context); 10064 isRecordType = VD->getType()->isRecordType(); 10065 isReferenceType = VD->getType()->isReferenceType(); 10066 } 10067 } 10068 10069 // For most expressions, just call the visitor. For initializer lists, 10070 // track the index of the field being initialized since fields are 10071 // initialized in order allowing use of previously initialized fields. 10072 void CheckExpr(Expr *E) { 10073 InitListExpr *InitList = dyn_cast<InitListExpr>(E); 10074 if (!InitList) { 10075 Visit(E); 10076 return; 10077 } 10078 10079 // Track and increment the index here. 10080 isInitList = true; 10081 InitFieldIndex.push_back(0); 10082 for (auto Child : InitList->children()) { 10083 CheckExpr(cast<Expr>(Child)); 10084 ++InitFieldIndex.back(); 10085 } 10086 InitFieldIndex.pop_back(); 10087 } 10088 10089 // Returns true if MemberExpr is checked and no further checking is needed. 10090 // Returns false if additional checking is required. 10091 bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) { 10092 llvm::SmallVector<FieldDecl*, 4> Fields; 10093 Expr *Base = E; 10094 bool ReferenceField = false; 10095 10096 // Get the field memebers used. 10097 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 10098 FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 10099 if (!FD) 10100 return false; 10101 Fields.push_back(FD); 10102 if (FD->getType()->isReferenceType()) 10103 ReferenceField = true; 10104 Base = ME->getBase()->IgnoreParenImpCasts(); 10105 } 10106 10107 // Keep checking only if the base Decl is the same. 10108 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base); 10109 if (!DRE || DRE->getDecl() != OrigDecl) 10110 return false; 10111 10112 // A reference field can be bound to an unininitialized field. 10113 if (CheckReference && !ReferenceField) 10114 return true; 10115 10116 // Convert FieldDecls to their index number. 10117 llvm::SmallVector<unsigned, 4> UsedFieldIndex; 10118 for (const FieldDecl *I : llvm::reverse(Fields)) 10119 UsedFieldIndex.push_back(I->getFieldIndex()); 10120 10121 // See if a warning is needed by checking the first difference in index 10122 // numbers. If field being used has index less than the field being 10123 // initialized, then the use is safe. 10124 for (auto UsedIter = UsedFieldIndex.begin(), 10125 UsedEnd = UsedFieldIndex.end(), 10126 OrigIter = InitFieldIndex.begin(), 10127 OrigEnd = InitFieldIndex.end(); 10128 UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) { 10129 if (*UsedIter < *OrigIter) 10130 return true; 10131 if (*UsedIter > *OrigIter) 10132 break; 10133 } 10134 10135 // TODO: Add a different warning which will print the field names. 10136 HandleDeclRefExpr(DRE); 10137 return true; 10138 } 10139 10140 // For most expressions, the cast is directly above the DeclRefExpr. 10141 // For conditional operators, the cast can be outside the conditional 10142 // operator if both expressions are DeclRefExpr's. 10143 void HandleValue(Expr *E) { 10144 E = E->IgnoreParens(); 10145 if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) { 10146 HandleDeclRefExpr(DRE); 10147 return; 10148 } 10149 10150 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 10151 Visit(CO->getCond()); 10152 HandleValue(CO->getTrueExpr()); 10153 HandleValue(CO->getFalseExpr()); 10154 return; 10155 } 10156 10157 if (BinaryConditionalOperator *BCO = 10158 dyn_cast<BinaryConditionalOperator>(E)) { 10159 Visit(BCO->getCond()); 10160 HandleValue(BCO->getFalseExpr()); 10161 return; 10162 } 10163 10164 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { 10165 HandleValue(OVE->getSourceExpr()); 10166 return; 10167 } 10168 10169 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 10170 if (BO->getOpcode() == BO_Comma) { 10171 Visit(BO->getLHS()); 10172 HandleValue(BO->getRHS()); 10173 return; 10174 } 10175 } 10176 10177 if (isa<MemberExpr>(E)) { 10178 if (isInitList) { 10179 if (CheckInitListMemberExpr(cast<MemberExpr>(E), 10180 false /*CheckReference*/)) 10181 return; 10182 } 10183 10184 Expr *Base = E->IgnoreParenImpCasts(); 10185 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 10186 // Check for static member variables and don't warn on them. 10187 if (!isa<FieldDecl>(ME->getMemberDecl())) 10188 return; 10189 Base = ME->getBase()->IgnoreParenImpCasts(); 10190 } 10191 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) 10192 HandleDeclRefExpr(DRE); 10193 return; 10194 } 10195 10196 Visit(E); 10197 } 10198 10199 // Reference types not handled in HandleValue are handled here since all 10200 // uses of references are bad, not just r-value uses. 10201 void VisitDeclRefExpr(DeclRefExpr *E) { 10202 if (isReferenceType) 10203 HandleDeclRefExpr(E); 10204 } 10205 10206 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 10207 if (E->getCastKind() == CK_LValueToRValue) { 10208 HandleValue(E->getSubExpr()); 10209 return; 10210 } 10211 10212 Inherited::VisitImplicitCastExpr(E); 10213 } 10214 10215 void VisitMemberExpr(MemberExpr *E) { 10216 if (isInitList) { 10217 if (CheckInitListMemberExpr(E, true /*CheckReference*/)) 10218 return; 10219 } 10220 10221 // Don't warn on arrays since they can be treated as pointers. 10222 if (E->getType()->canDecayToPointerType()) return; 10223 10224 // Warn when a non-static method call is followed by non-static member 10225 // field accesses, which is followed by a DeclRefExpr. 10226 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl()); 10227 bool Warn = (MD && !MD->isStatic()); 10228 Expr *Base = E->getBase()->IgnoreParenImpCasts(); 10229 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 10230 if (!isa<FieldDecl>(ME->getMemberDecl())) 10231 Warn = false; 10232 Base = ME->getBase()->IgnoreParenImpCasts(); 10233 } 10234 10235 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) { 10236 if (Warn) 10237 HandleDeclRefExpr(DRE); 10238 return; 10239 } 10240 10241 // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr. 10242 // Visit that expression. 10243 Visit(Base); 10244 } 10245 10246 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 10247 Expr *Callee = E->getCallee(); 10248 10249 if (isa<UnresolvedLookupExpr>(Callee)) 10250 return Inherited::VisitCXXOperatorCallExpr(E); 10251 10252 Visit(Callee); 10253 for (auto Arg: E->arguments()) 10254 HandleValue(Arg->IgnoreParenImpCasts()); 10255 } 10256 10257 void VisitUnaryOperator(UnaryOperator *E) { 10258 // For POD record types, addresses of its own members are well-defined. 10259 if (E->getOpcode() == UO_AddrOf && isRecordType && 10260 isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) { 10261 if (!isPODType) 10262 HandleValue(E->getSubExpr()); 10263 return; 10264 } 10265 10266 if (E->isIncrementDecrementOp()) { 10267 HandleValue(E->getSubExpr()); 10268 return; 10269 } 10270 10271 Inherited::VisitUnaryOperator(E); 10272 } 10273 10274 void VisitObjCMessageExpr(ObjCMessageExpr *E) {} 10275 10276 void VisitCXXConstructExpr(CXXConstructExpr *E) { 10277 if (E->getConstructor()->isCopyConstructor()) { 10278 Expr *ArgExpr = E->getArg(0); 10279 if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr)) 10280 if (ILE->getNumInits() == 1) 10281 ArgExpr = ILE->getInit(0); 10282 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr)) 10283 if (ICE->getCastKind() == CK_NoOp) 10284 ArgExpr = ICE->getSubExpr(); 10285 HandleValue(ArgExpr); 10286 return; 10287 } 10288 Inherited::VisitCXXConstructExpr(E); 10289 } 10290 10291 void VisitCallExpr(CallExpr *E) { 10292 // Treat std::move as a use. 10293 if (E->isCallToStdMove()) { 10294 HandleValue(E->getArg(0)); 10295 return; 10296 } 10297 10298 Inherited::VisitCallExpr(E); 10299 } 10300 10301 void VisitBinaryOperator(BinaryOperator *E) { 10302 if (E->isCompoundAssignmentOp()) { 10303 HandleValue(E->getLHS()); 10304 Visit(E->getRHS()); 10305 return; 10306 } 10307 10308 Inherited::VisitBinaryOperator(E); 10309 } 10310 10311 // A custom visitor for BinaryConditionalOperator is needed because the 10312 // regular visitor would check the condition and true expression separately 10313 // but both point to the same place giving duplicate diagnostics. 10314 void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) { 10315 Visit(E->getCond()); 10316 Visit(E->getFalseExpr()); 10317 } 10318 10319 void HandleDeclRefExpr(DeclRefExpr *DRE) { 10320 Decl* ReferenceDecl = DRE->getDecl(); 10321 if (OrigDecl != ReferenceDecl) return; 10322 unsigned diag; 10323 if (isReferenceType) { 10324 diag = diag::warn_uninit_self_reference_in_reference_init; 10325 } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) { 10326 diag = diag::warn_static_self_reference_in_init; 10327 } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) || 10328 isa<NamespaceDecl>(OrigDecl->getDeclContext()) || 10329 DRE->getDecl()->getType()->isRecordType()) { 10330 diag = diag::warn_uninit_self_reference_in_init; 10331 } else { 10332 // Local variables will be handled by the CFG analysis. 10333 return; 10334 } 10335 10336 S.DiagRuntimeBehavior(DRE->getLocStart(), DRE, 10337 S.PDiag(diag) 10338 << DRE->getNameInfo().getName() 10339 << OrigDecl->getLocation() 10340 << DRE->getSourceRange()); 10341 } 10342 }; 10343 10344 /// CheckSelfReference - Warns if OrigDecl is used in expression E. 10345 static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E, 10346 bool DirectInit) { 10347 // Parameters arguments are occassionially constructed with itself, 10348 // for instance, in recursive functions. Skip them. 10349 if (isa<ParmVarDecl>(OrigDecl)) 10350 return; 10351 10352 E = E->IgnoreParens(); 10353 10354 // Skip checking T a = a where T is not a record or reference type. 10355 // Doing so is a way to silence uninitialized warnings. 10356 if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType()) 10357 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) 10358 if (ICE->getCastKind() == CK_LValueToRValue) 10359 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) 10360 if (DRE->getDecl() == OrigDecl) 10361 return; 10362 10363 SelfReferenceChecker(S, OrigDecl).CheckExpr(E); 10364 } 10365 } // end anonymous namespace 10366 10367 namespace { 10368 // Simple wrapper to add the name of a variable or (if no variable is 10369 // available) a DeclarationName into a diagnostic. 10370 struct VarDeclOrName { 10371 VarDecl *VDecl; 10372 DeclarationName Name; 10373 10374 friend const Sema::SemaDiagnosticBuilder & 10375 operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) { 10376 return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name; 10377 } 10378 }; 10379 } // end anonymous namespace 10380 10381 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl, 10382 DeclarationName Name, QualType Type, 10383 TypeSourceInfo *TSI, 10384 SourceRange Range, bool DirectInit, 10385 Expr *Init) { 10386 bool IsInitCapture = !VDecl; 10387 assert((!VDecl || !VDecl->isInitCapture()) && 10388 "init captures are expected to be deduced prior to initialization"); 10389 10390 VarDeclOrName VN{VDecl, Name}; 10391 10392 DeducedType *Deduced = Type->getContainedDeducedType(); 10393 assert(Deduced && "deduceVarTypeFromInitializer for non-deduced type"); 10394 10395 // C++11 [dcl.spec.auto]p3 10396 if (!Init) { 10397 assert(VDecl && "no init for init capture deduction?"); 10398 Diag(VDecl->getLocation(), diag::err_auto_var_requires_init) 10399 << VDecl->getDeclName() << Type; 10400 return QualType(); 10401 } 10402 10403 ArrayRef<Expr*> DeduceInits = Init; 10404 if (DirectInit) { 10405 if (auto *PL = dyn_cast_or_null<ParenListExpr>(Init)) 10406 DeduceInits = PL->exprs(); 10407 } 10408 10409 if (isa<DeducedTemplateSpecializationType>(Deduced)) { 10410 assert(VDecl && "non-auto type for init capture deduction?"); 10411 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); 10412 InitializationKind Kind = InitializationKind::CreateForInit( 10413 VDecl->getLocation(), DirectInit, Init); 10414 // FIXME: Initialization should not be taking a mutable list of inits. 10415 SmallVector<Expr*, 8> InitsCopy(DeduceInits.begin(), DeduceInits.end()); 10416 return DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind, 10417 InitsCopy); 10418 } 10419 10420 if (DirectInit) { 10421 if (auto *IL = dyn_cast<InitListExpr>(Init)) 10422 DeduceInits = IL->inits(); 10423 } 10424 10425 // Deduction only works if we have exactly one source expression. 10426 if (DeduceInits.empty()) { 10427 // It isn't possible to write this directly, but it is possible to 10428 // end up in this situation with "auto x(some_pack...);" 10429 Diag(Init->getLocStart(), IsInitCapture 10430 ? diag::err_init_capture_no_expression 10431 : diag::err_auto_var_init_no_expression) 10432 << VN << Type << Range; 10433 return QualType(); 10434 } 10435 10436 if (DeduceInits.size() > 1) { 10437 Diag(DeduceInits[1]->getLocStart(), 10438 IsInitCapture ? diag::err_init_capture_multiple_expressions 10439 : diag::err_auto_var_init_multiple_expressions) 10440 << VN << Type << Range; 10441 return QualType(); 10442 } 10443 10444 Expr *DeduceInit = DeduceInits[0]; 10445 if (DirectInit && isa<InitListExpr>(DeduceInit)) { 10446 Diag(Init->getLocStart(), IsInitCapture 10447 ? diag::err_init_capture_paren_braces 10448 : diag::err_auto_var_init_paren_braces) 10449 << isa<InitListExpr>(Init) << VN << Type << Range; 10450 return QualType(); 10451 } 10452 10453 // Expressions default to 'id' when we're in a debugger. 10454 bool DefaultedAnyToId = false; 10455 if (getLangOpts().DebuggerCastResultToId && 10456 Init->getType() == Context.UnknownAnyTy && !IsInitCapture) { 10457 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 10458 if (Result.isInvalid()) { 10459 return QualType(); 10460 } 10461 Init = Result.get(); 10462 DefaultedAnyToId = true; 10463 } 10464 10465 // C++ [dcl.decomp]p1: 10466 // If the assignment-expression [...] has array type A and no ref-qualifier 10467 // is present, e has type cv A 10468 if (VDecl && isa<DecompositionDecl>(VDecl) && 10469 Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) && 10470 DeduceInit->getType()->isConstantArrayType()) 10471 return Context.getQualifiedType(DeduceInit->getType(), 10472 Type.getQualifiers()); 10473 10474 QualType DeducedType; 10475 if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) { 10476 if (!IsInitCapture) 10477 DiagnoseAutoDeductionFailure(VDecl, DeduceInit); 10478 else if (isa<InitListExpr>(Init)) 10479 Diag(Range.getBegin(), 10480 diag::err_init_capture_deduction_failure_from_init_list) 10481 << VN 10482 << (DeduceInit->getType().isNull() ? TSI->getType() 10483 : DeduceInit->getType()) 10484 << DeduceInit->getSourceRange(); 10485 else 10486 Diag(Range.getBegin(), diag::err_init_capture_deduction_failure) 10487 << VN << TSI->getType() 10488 << (DeduceInit->getType().isNull() ? TSI->getType() 10489 : DeduceInit->getType()) 10490 << DeduceInit->getSourceRange(); 10491 } 10492 10493 // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using 10494 // 'id' instead of a specific object type prevents most of our usual 10495 // checks. 10496 // We only want to warn outside of template instantiations, though: 10497 // inside a template, the 'id' could have come from a parameter. 10498 if (!inTemplateInstantiation() && !DefaultedAnyToId && !IsInitCapture && 10499 !DeducedType.isNull() && DeducedType->isObjCIdType()) { 10500 SourceLocation Loc = TSI->getTypeLoc().getBeginLoc(); 10501 Diag(Loc, diag::warn_auto_var_is_id) << VN << Range; 10502 } 10503 10504 return DeducedType; 10505 } 10506 10507 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit, 10508 Expr *Init) { 10509 QualType DeducedType = deduceVarTypeFromInitializer( 10510 VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(), 10511 VDecl->getSourceRange(), DirectInit, Init); 10512 if (DeducedType.isNull()) { 10513 VDecl->setInvalidDecl(); 10514 return true; 10515 } 10516 10517 VDecl->setType(DeducedType); 10518 assert(VDecl->isLinkageValid()); 10519 10520 // In ARC, infer lifetime. 10521 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl)) 10522 VDecl->setInvalidDecl(); 10523 10524 // If this is a redeclaration, check that the type we just deduced matches 10525 // the previously declared type. 10526 if (VarDecl *Old = VDecl->getPreviousDecl()) { 10527 // We never need to merge the type, because we cannot form an incomplete 10528 // array of auto, nor deduce such a type. 10529 MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false); 10530 } 10531 10532 // Check the deduced type is valid for a variable declaration. 10533 CheckVariableDeclarationType(VDecl); 10534 return VDecl->isInvalidDecl(); 10535 } 10536 10537 /// AddInitializerToDecl - Adds the initializer Init to the 10538 /// declaration dcl. If DirectInit is true, this is C++ direct 10539 /// initialization rather than copy initialization. 10540 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) { 10541 // If there is no declaration, there was an error parsing it. Just ignore 10542 // the initializer. 10543 if (!RealDecl || RealDecl->isInvalidDecl()) { 10544 CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl)); 10545 return; 10546 } 10547 10548 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) { 10549 // Pure-specifiers are handled in ActOnPureSpecifier. 10550 Diag(Method->getLocation(), diag::err_member_function_initialization) 10551 << Method->getDeclName() << Init->getSourceRange(); 10552 Method->setInvalidDecl(); 10553 return; 10554 } 10555 10556 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); 10557 if (!VDecl) { 10558 assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here"); 10559 Diag(RealDecl->getLocation(), diag::err_illegal_initializer); 10560 RealDecl->setInvalidDecl(); 10561 return; 10562 } 10563 10564 // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for. 10565 if (VDecl->getType()->isUndeducedType()) { 10566 // Attempt typo correction early so that the type of the init expression can 10567 // be deduced based on the chosen correction if the original init contains a 10568 // TypoExpr. 10569 ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl); 10570 if (!Res.isUsable()) { 10571 RealDecl->setInvalidDecl(); 10572 return; 10573 } 10574 Init = Res.get(); 10575 10576 if (DeduceVariableDeclarationType(VDecl, DirectInit, Init)) 10577 return; 10578 } 10579 10580 // dllimport cannot be used on variable definitions. 10581 if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) { 10582 Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition); 10583 VDecl->setInvalidDecl(); 10584 return; 10585 } 10586 10587 if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) { 10588 // C99 6.7.8p5. C++ has no such restriction, but that is a defect. 10589 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init); 10590 VDecl->setInvalidDecl(); 10591 return; 10592 } 10593 10594 if (!VDecl->getType()->isDependentType()) { 10595 // A definition must end up with a complete type, which means it must be 10596 // complete with the restriction that an array type might be completed by 10597 // the initializer; note that later code assumes this restriction. 10598 QualType BaseDeclType = VDecl->getType(); 10599 if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType)) 10600 BaseDeclType = Array->getElementType(); 10601 if (RequireCompleteType(VDecl->getLocation(), BaseDeclType, 10602 diag::err_typecheck_decl_incomplete_type)) { 10603 RealDecl->setInvalidDecl(); 10604 return; 10605 } 10606 10607 // The variable can not have an abstract class type. 10608 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(), 10609 diag::err_abstract_type_in_decl, 10610 AbstractVariableType)) 10611 VDecl->setInvalidDecl(); 10612 } 10613 10614 // If adding the initializer will turn this declaration into a definition, 10615 // and we already have a definition for this variable, diagnose or otherwise 10616 // handle the situation. 10617 VarDecl *Def; 10618 if ((Def = VDecl->getDefinition()) && Def != VDecl && 10619 (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) && 10620 !VDecl->isThisDeclarationADemotedDefinition() && 10621 checkVarDeclRedefinition(Def, VDecl)) 10622 return; 10623 10624 if (getLangOpts().CPlusPlus) { 10625 // C++ [class.static.data]p4 10626 // If a static data member is of const integral or const 10627 // enumeration type, its declaration in the class definition can 10628 // specify a constant-initializer which shall be an integral 10629 // constant expression (5.19). In that case, the member can appear 10630 // in integral constant expressions. The member shall still be 10631 // defined in a namespace scope if it is used in the program and the 10632 // namespace scope definition shall not contain an initializer. 10633 // 10634 // We already performed a redefinition check above, but for static 10635 // data members we also need to check whether there was an in-class 10636 // declaration with an initializer. 10637 if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) { 10638 Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization) 10639 << VDecl->getDeclName(); 10640 Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(), 10641 diag::note_previous_initializer) 10642 << 0; 10643 return; 10644 } 10645 10646 if (VDecl->hasLocalStorage()) 10647 getCurFunction()->setHasBranchProtectedScope(); 10648 10649 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) { 10650 VDecl->setInvalidDecl(); 10651 return; 10652 } 10653 } 10654 10655 // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside 10656 // a kernel function cannot be initialized." 10657 if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) { 10658 Diag(VDecl->getLocation(), diag::err_local_cant_init); 10659 VDecl->setInvalidDecl(); 10660 return; 10661 } 10662 10663 // Get the decls type and save a reference for later, since 10664 // CheckInitializerTypes may change it. 10665 QualType DclT = VDecl->getType(), SavT = DclT; 10666 10667 // Expressions default to 'id' when we're in a debugger 10668 // and we are assigning it to a variable of Objective-C pointer type. 10669 if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() && 10670 Init->getType() == Context.UnknownAnyTy) { 10671 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 10672 if (Result.isInvalid()) { 10673 VDecl->setInvalidDecl(); 10674 return; 10675 } 10676 Init = Result.get(); 10677 } 10678 10679 // Perform the initialization. 10680 ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init); 10681 if (!VDecl->isInvalidDecl()) { 10682 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); 10683 InitializationKind Kind = InitializationKind::CreateForInit( 10684 VDecl->getLocation(), DirectInit, Init); 10685 10686 MultiExprArg Args = Init; 10687 if (CXXDirectInit) 10688 Args = MultiExprArg(CXXDirectInit->getExprs(), 10689 CXXDirectInit->getNumExprs()); 10690 10691 // Try to correct any TypoExprs in the initialization arguments. 10692 for (size_t Idx = 0; Idx < Args.size(); ++Idx) { 10693 ExprResult Res = CorrectDelayedTyposInExpr( 10694 Args[Idx], VDecl, [this, Entity, Kind](Expr *E) { 10695 InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E)); 10696 return Init.Failed() ? ExprError() : E; 10697 }); 10698 if (Res.isInvalid()) { 10699 VDecl->setInvalidDecl(); 10700 } else if (Res.get() != Args[Idx]) { 10701 Args[Idx] = Res.get(); 10702 } 10703 } 10704 if (VDecl->isInvalidDecl()) 10705 return; 10706 10707 InitializationSequence InitSeq(*this, Entity, Kind, Args, 10708 /*TopLevelOfInitList=*/false, 10709 /*TreatUnavailableAsInvalid=*/false); 10710 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT); 10711 if (Result.isInvalid()) { 10712 VDecl->setInvalidDecl(); 10713 return; 10714 } 10715 10716 Init = Result.getAs<Expr>(); 10717 } 10718 10719 // Check for self-references within variable initializers. 10720 // Variables declared within a function/method body (except for references) 10721 // are handled by a dataflow analysis. 10722 if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() || 10723 VDecl->getType()->isReferenceType()) { 10724 CheckSelfReference(*this, RealDecl, Init, DirectInit); 10725 } 10726 10727 // If the type changed, it means we had an incomplete type that was 10728 // completed by the initializer. For example: 10729 // int ary[] = { 1, 3, 5 }; 10730 // "ary" transitions from an IncompleteArrayType to a ConstantArrayType. 10731 if (!VDecl->isInvalidDecl() && (DclT != SavT)) 10732 VDecl->setType(DclT); 10733 10734 if (!VDecl->isInvalidDecl()) { 10735 checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init); 10736 10737 if (VDecl->hasAttr<BlocksAttr>()) 10738 checkRetainCycles(VDecl, Init); 10739 10740 // It is safe to assign a weak reference into a strong variable. 10741 // Although this code can still have problems: 10742 // id x = self.weakProp; 10743 // id y = self.weakProp; 10744 // we do not warn to warn spuriously when 'x' and 'y' are on separate 10745 // paths through the function. This should be revisited if 10746 // -Wrepeated-use-of-weak is made flow-sensitive. 10747 if ((VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong || 10748 VDecl->getType().isNonWeakInMRRWithObjCWeak(Context)) && 10749 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, 10750 Init->getLocStart())) 10751 getCurFunction()->markSafeWeakUse(Init); 10752 } 10753 10754 // The initialization is usually a full-expression. 10755 // 10756 // FIXME: If this is a braced initialization of an aggregate, it is not 10757 // an expression, and each individual field initializer is a separate 10758 // full-expression. For instance, in: 10759 // 10760 // struct Temp { ~Temp(); }; 10761 // struct S { S(Temp); }; 10762 // struct T { S a, b; } t = { Temp(), Temp() } 10763 // 10764 // we should destroy the first Temp before constructing the second. 10765 ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(), 10766 false, 10767 VDecl->isConstexpr()); 10768 if (Result.isInvalid()) { 10769 VDecl->setInvalidDecl(); 10770 return; 10771 } 10772 Init = Result.get(); 10773 10774 // Attach the initializer to the decl. 10775 VDecl->setInit(Init); 10776 10777 if (VDecl->isLocalVarDecl()) { 10778 // Don't check the initializer if the declaration is malformed. 10779 if (VDecl->isInvalidDecl()) { 10780 // do nothing 10781 10782 // OpenCL v1.2 s6.5.3: __constant locals must be constant-initialized. 10783 // This is true even in OpenCL C++. 10784 } else if (VDecl->getType().getAddressSpace() == LangAS::opencl_constant) { 10785 CheckForConstantInitializer(Init, DclT); 10786 10787 // Otherwise, C++ does not restrict the initializer. 10788 } else if (getLangOpts().CPlusPlus) { 10789 // do nothing 10790 10791 // C99 6.7.8p4: All the expressions in an initializer for an object that has 10792 // static storage duration shall be constant expressions or string literals. 10793 } else if (VDecl->getStorageClass() == SC_Static) { 10794 CheckForConstantInitializer(Init, DclT); 10795 10796 // C89 is stricter than C99 for aggregate initializers. 10797 // C89 6.5.7p3: All the expressions [...] in an initializer list 10798 // for an object that has aggregate or union type shall be 10799 // constant expressions. 10800 } else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() && 10801 isa<InitListExpr>(Init)) { 10802 const Expr *Culprit; 10803 if (!Init->isConstantInitializer(Context, false, &Culprit)) { 10804 Diag(Culprit->getExprLoc(), 10805 diag::ext_aggregate_init_not_constant) 10806 << Culprit->getSourceRange(); 10807 } 10808 } 10809 } else if (VDecl->isStaticDataMember() && !VDecl->isInline() && 10810 VDecl->getLexicalDeclContext()->isRecord()) { 10811 // This is an in-class initialization for a static data member, e.g., 10812 // 10813 // struct S { 10814 // static const int value = 17; 10815 // }; 10816 10817 // C++ [class.mem]p4: 10818 // A member-declarator can contain a constant-initializer only 10819 // if it declares a static member (9.4) of const integral or 10820 // const enumeration type, see 9.4.2. 10821 // 10822 // C++11 [class.static.data]p3: 10823 // If a non-volatile non-inline const static data member is of integral 10824 // or enumeration type, its declaration in the class definition can 10825 // specify a brace-or-equal-initializer in which every initializer-clause 10826 // that is an assignment-expression is a constant expression. A static 10827 // data member of literal type can be declared in the class definition 10828 // with the constexpr specifier; if so, its declaration shall specify a 10829 // brace-or-equal-initializer in which every initializer-clause that is 10830 // an assignment-expression is a constant expression. 10831 10832 // Do nothing on dependent types. 10833 if (DclT->isDependentType()) { 10834 10835 // Allow any 'static constexpr' members, whether or not they are of literal 10836 // type. We separately check that every constexpr variable is of literal 10837 // type. 10838 } else if (VDecl->isConstexpr()) { 10839 10840 // Require constness. 10841 } else if (!DclT.isConstQualified()) { 10842 Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const) 10843 << Init->getSourceRange(); 10844 VDecl->setInvalidDecl(); 10845 10846 // We allow integer constant expressions in all cases. 10847 } else if (DclT->isIntegralOrEnumerationType()) { 10848 // Check whether the expression is a constant expression. 10849 SourceLocation Loc; 10850 if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified()) 10851 // In C++11, a non-constexpr const static data member with an 10852 // in-class initializer cannot be volatile. 10853 Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile); 10854 else if (Init->isValueDependent()) 10855 ; // Nothing to check. 10856 else if (Init->isIntegerConstantExpr(Context, &Loc)) 10857 ; // Ok, it's an ICE! 10858 else if (Init->isEvaluatable(Context)) { 10859 // If we can constant fold the initializer through heroics, accept it, 10860 // but report this as a use of an extension for -pedantic. 10861 Diag(Loc, diag::ext_in_class_initializer_non_constant) 10862 << Init->getSourceRange(); 10863 } else { 10864 // Otherwise, this is some crazy unknown case. Report the issue at the 10865 // location provided by the isIntegerConstantExpr failed check. 10866 Diag(Loc, diag::err_in_class_initializer_non_constant) 10867 << Init->getSourceRange(); 10868 VDecl->setInvalidDecl(); 10869 } 10870 10871 // We allow foldable floating-point constants as an extension. 10872 } else if (DclT->isFloatingType()) { // also permits complex, which is ok 10873 // In C++98, this is a GNU extension. In C++11, it is not, but we support 10874 // it anyway and provide a fixit to add the 'constexpr'. 10875 if (getLangOpts().CPlusPlus11) { 10876 Diag(VDecl->getLocation(), 10877 diag::ext_in_class_initializer_float_type_cxx11) 10878 << DclT << Init->getSourceRange(); 10879 Diag(VDecl->getLocStart(), 10880 diag::note_in_class_initializer_float_type_cxx11) 10881 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr "); 10882 } else { 10883 Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type) 10884 << DclT << Init->getSourceRange(); 10885 10886 if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) { 10887 Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant) 10888 << Init->getSourceRange(); 10889 VDecl->setInvalidDecl(); 10890 } 10891 } 10892 10893 // Suggest adding 'constexpr' in C++11 for literal types. 10894 } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) { 10895 Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type) 10896 << DclT << Init->getSourceRange() 10897 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr "); 10898 VDecl->setConstexpr(true); 10899 10900 } else { 10901 Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type) 10902 << DclT << Init->getSourceRange(); 10903 VDecl->setInvalidDecl(); 10904 } 10905 } else if (VDecl->isFileVarDecl()) { 10906 // In C, extern is typically used to avoid tentative definitions when 10907 // declaring variables in headers, but adding an intializer makes it a 10908 // defintion. This is somewhat confusing, so GCC and Clang both warn on it. 10909 // In C++, extern is often used to give implictly static const variables 10910 // external linkage, so don't warn in that case. If selectany is present, 10911 // this might be header code intended for C and C++ inclusion, so apply the 10912 // C++ rules. 10913 if (VDecl->getStorageClass() == SC_Extern && 10914 ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) || 10915 !Context.getBaseElementType(VDecl->getType()).isConstQualified()) && 10916 !(getLangOpts().CPlusPlus && VDecl->isExternC()) && 10917 !isTemplateInstantiation(VDecl->getTemplateSpecializationKind())) 10918 Diag(VDecl->getLocation(), diag::warn_extern_init); 10919 10920 // C99 6.7.8p4. All file scoped initializers need to be constant. 10921 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) 10922 CheckForConstantInitializer(Init, DclT); 10923 } 10924 10925 // We will represent direct-initialization similarly to copy-initialization: 10926 // int x(1); -as-> int x = 1; 10927 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c); 10928 // 10929 // Clients that want to distinguish between the two forms, can check for 10930 // direct initializer using VarDecl::getInitStyle(). 10931 // A major benefit is that clients that don't particularly care about which 10932 // exactly form was it (like the CodeGen) can handle both cases without 10933 // special case code. 10934 10935 // C++ 8.5p11: 10936 // The form of initialization (using parentheses or '=') is generally 10937 // insignificant, but does matter when the entity being initialized has a 10938 // class type. 10939 if (CXXDirectInit) { 10940 assert(DirectInit && "Call-style initializer must be direct init."); 10941 VDecl->setInitStyle(VarDecl::CallInit); 10942 } else if (DirectInit) { 10943 // This must be list-initialization. No other way is direct-initialization. 10944 VDecl->setInitStyle(VarDecl::ListInit); 10945 } 10946 10947 CheckCompleteVariableDeclaration(VDecl); 10948 } 10949 10950 /// ActOnInitializerError - Given that there was an error parsing an 10951 /// initializer for the given declaration, try to return to some form 10952 /// of sanity. 10953 void Sema::ActOnInitializerError(Decl *D) { 10954 // Our main concern here is re-establishing invariants like "a 10955 // variable's type is either dependent or complete". 10956 if (!D || D->isInvalidDecl()) return; 10957 10958 VarDecl *VD = dyn_cast<VarDecl>(D); 10959 if (!VD) return; 10960 10961 // Bindings are not usable if we can't make sense of the initializer. 10962 if (auto *DD = dyn_cast<DecompositionDecl>(D)) 10963 for (auto *BD : DD->bindings()) 10964 BD->setInvalidDecl(); 10965 10966 // Auto types are meaningless if we can't make sense of the initializer. 10967 if (ParsingInitForAutoVars.count(D)) { 10968 D->setInvalidDecl(); 10969 return; 10970 } 10971 10972 QualType Ty = VD->getType(); 10973 if (Ty->isDependentType()) return; 10974 10975 // Require a complete type. 10976 if (RequireCompleteType(VD->getLocation(), 10977 Context.getBaseElementType(Ty), 10978 diag::err_typecheck_decl_incomplete_type)) { 10979 VD->setInvalidDecl(); 10980 return; 10981 } 10982 10983 // Require a non-abstract type. 10984 if (RequireNonAbstractType(VD->getLocation(), Ty, 10985 diag::err_abstract_type_in_decl, 10986 AbstractVariableType)) { 10987 VD->setInvalidDecl(); 10988 return; 10989 } 10990 10991 // Don't bother complaining about constructors or destructors, 10992 // though. 10993 } 10994 10995 void Sema::ActOnUninitializedDecl(Decl *RealDecl) { 10996 // If there is no declaration, there was an error parsing it. Just ignore it. 10997 if (!RealDecl) 10998 return; 10999 11000 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) { 11001 QualType Type = Var->getType(); 11002 11003 // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory. 11004 if (isa<DecompositionDecl>(RealDecl)) { 11005 Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var; 11006 Var->setInvalidDecl(); 11007 return; 11008 } 11009 11010 if (Type->isUndeducedType() && 11011 DeduceVariableDeclarationType(Var, false, nullptr)) 11012 return; 11013 11014 // C++11 [class.static.data]p3: A static data member can be declared with 11015 // the constexpr specifier; if so, its declaration shall specify 11016 // a brace-or-equal-initializer. 11017 // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to 11018 // the definition of a variable [...] or the declaration of a static data 11019 // member. 11020 if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() && 11021 !Var->isThisDeclarationADemotedDefinition()) { 11022 if (Var->isStaticDataMember()) { 11023 // C++1z removes the relevant rule; the in-class declaration is always 11024 // a definition there. 11025 if (!getLangOpts().CPlusPlus17) { 11026 Diag(Var->getLocation(), 11027 diag::err_constexpr_static_mem_var_requires_init) 11028 << Var->getDeclName(); 11029 Var->setInvalidDecl(); 11030 return; 11031 } 11032 } else { 11033 Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl); 11034 Var->setInvalidDecl(); 11035 return; 11036 } 11037 } 11038 11039 // OpenCL v1.1 s6.5.3: variables declared in the constant address space must 11040 // be initialized. 11041 if (!Var->isInvalidDecl() && 11042 Var->getType().getAddressSpace() == LangAS::opencl_constant && 11043 Var->getStorageClass() != SC_Extern && !Var->getInit()) { 11044 Diag(Var->getLocation(), diag::err_opencl_constant_no_init); 11045 Var->setInvalidDecl(); 11046 return; 11047 } 11048 11049 switch (Var->isThisDeclarationADefinition()) { 11050 case VarDecl::Definition: 11051 if (!Var->isStaticDataMember() || !Var->getAnyInitializer()) 11052 break; 11053 11054 // We have an out-of-line definition of a static data member 11055 // that has an in-class initializer, so we type-check this like 11056 // a declaration. 11057 // 11058 LLVM_FALLTHROUGH; 11059 11060 case VarDecl::DeclarationOnly: 11061 // It's only a declaration. 11062 11063 // Block scope. C99 6.7p7: If an identifier for an object is 11064 // declared with no linkage (C99 6.2.2p6), the type for the 11065 // object shall be complete. 11066 if (!Type->isDependentType() && Var->isLocalVarDecl() && 11067 !Var->hasLinkage() && !Var->isInvalidDecl() && 11068 RequireCompleteType(Var->getLocation(), Type, 11069 diag::err_typecheck_decl_incomplete_type)) 11070 Var->setInvalidDecl(); 11071 11072 // Make sure that the type is not abstract. 11073 if (!Type->isDependentType() && !Var->isInvalidDecl() && 11074 RequireNonAbstractType(Var->getLocation(), Type, 11075 diag::err_abstract_type_in_decl, 11076 AbstractVariableType)) 11077 Var->setInvalidDecl(); 11078 if (!Type->isDependentType() && !Var->isInvalidDecl() && 11079 Var->getStorageClass() == SC_PrivateExtern) { 11080 Diag(Var->getLocation(), diag::warn_private_extern); 11081 Diag(Var->getLocation(), diag::note_private_extern); 11082 } 11083 11084 return; 11085 11086 case VarDecl::TentativeDefinition: 11087 // File scope. C99 6.9.2p2: A declaration of an identifier for an 11088 // object that has file scope without an initializer, and without a 11089 // storage-class specifier or with the storage-class specifier "static", 11090 // constitutes a tentative definition. Note: A tentative definition with 11091 // external linkage is valid (C99 6.2.2p5). 11092 if (!Var->isInvalidDecl()) { 11093 if (const IncompleteArrayType *ArrayT 11094 = Context.getAsIncompleteArrayType(Type)) { 11095 if (RequireCompleteType(Var->getLocation(), 11096 ArrayT->getElementType(), 11097 diag::err_illegal_decl_array_incomplete_type)) 11098 Var->setInvalidDecl(); 11099 } else if (Var->getStorageClass() == SC_Static) { 11100 // C99 6.9.2p3: If the declaration of an identifier for an object is 11101 // a tentative definition and has internal linkage (C99 6.2.2p3), the 11102 // declared type shall not be an incomplete type. 11103 // NOTE: code such as the following 11104 // static struct s; 11105 // struct s { int a; }; 11106 // is accepted by gcc. Hence here we issue a warning instead of 11107 // an error and we do not invalidate the static declaration. 11108 // NOTE: to avoid multiple warnings, only check the first declaration. 11109 if (Var->isFirstDecl()) 11110 RequireCompleteType(Var->getLocation(), Type, 11111 diag::ext_typecheck_decl_incomplete_type); 11112 } 11113 } 11114 11115 // Record the tentative definition; we're done. 11116 if (!Var->isInvalidDecl()) 11117 TentativeDefinitions.push_back(Var); 11118 return; 11119 } 11120 11121 // Provide a specific diagnostic for uninitialized variable 11122 // definitions with incomplete array type. 11123 if (Type->isIncompleteArrayType()) { 11124 Diag(Var->getLocation(), 11125 diag::err_typecheck_incomplete_array_needs_initializer); 11126 Var->setInvalidDecl(); 11127 return; 11128 } 11129 11130 // Provide a specific diagnostic for uninitialized variable 11131 // definitions with reference type. 11132 if (Type->isReferenceType()) { 11133 Diag(Var->getLocation(), diag::err_reference_var_requires_init) 11134 << Var->getDeclName() 11135 << SourceRange(Var->getLocation(), Var->getLocation()); 11136 Var->setInvalidDecl(); 11137 return; 11138 } 11139 11140 // Do not attempt to type-check the default initializer for a 11141 // variable with dependent type. 11142 if (Type->isDependentType()) 11143 return; 11144 11145 if (Var->isInvalidDecl()) 11146 return; 11147 11148 if (!Var->hasAttr<AliasAttr>()) { 11149 if (RequireCompleteType(Var->getLocation(), 11150 Context.getBaseElementType(Type), 11151 diag::err_typecheck_decl_incomplete_type)) { 11152 Var->setInvalidDecl(); 11153 return; 11154 } 11155 } else { 11156 return; 11157 } 11158 11159 // The variable can not have an abstract class type. 11160 if (RequireNonAbstractType(Var->getLocation(), Type, 11161 diag::err_abstract_type_in_decl, 11162 AbstractVariableType)) { 11163 Var->setInvalidDecl(); 11164 return; 11165 } 11166 11167 // Check for jumps past the implicit initializer. C++0x 11168 // clarifies that this applies to a "variable with automatic 11169 // storage duration", not a "local variable". 11170 // C++11 [stmt.dcl]p3 11171 // A program that jumps from a point where a variable with automatic 11172 // storage duration is not in scope to a point where it is in scope is 11173 // ill-formed unless the variable has scalar type, class type with a 11174 // trivial default constructor and a trivial destructor, a cv-qualified 11175 // version of one of these types, or an array of one of the preceding 11176 // types and is declared without an initializer. 11177 if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) { 11178 if (const RecordType *Record 11179 = Context.getBaseElementType(Type)->getAs<RecordType>()) { 11180 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl()); 11181 // Mark the function for further checking even if the looser rules of 11182 // C++11 do not require such checks, so that we can diagnose 11183 // incompatibilities with C++98. 11184 if (!CXXRecord->isPOD()) 11185 getCurFunction()->setHasBranchProtectedScope(); 11186 } 11187 } 11188 11189 // C++03 [dcl.init]p9: 11190 // If no initializer is specified for an object, and the 11191 // object is of (possibly cv-qualified) non-POD class type (or 11192 // array thereof), the object shall be default-initialized; if 11193 // the object is of const-qualified type, the underlying class 11194 // type shall have a user-declared default 11195 // constructor. Otherwise, if no initializer is specified for 11196 // a non- static object, the object and its subobjects, if 11197 // any, have an indeterminate initial value); if the object 11198 // or any of its subobjects are of const-qualified type, the 11199 // program is ill-formed. 11200 // C++0x [dcl.init]p11: 11201 // If no initializer is specified for an object, the object is 11202 // default-initialized; [...]. 11203 InitializedEntity Entity = InitializedEntity::InitializeVariable(Var); 11204 InitializationKind Kind 11205 = InitializationKind::CreateDefault(Var->getLocation()); 11206 11207 InitializationSequence InitSeq(*this, Entity, Kind, None); 11208 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None); 11209 if (Init.isInvalid()) 11210 Var->setInvalidDecl(); 11211 else if (Init.get()) { 11212 Var->setInit(MaybeCreateExprWithCleanups(Init.get())); 11213 // This is important for template substitution. 11214 Var->setInitStyle(VarDecl::CallInit); 11215 } 11216 11217 CheckCompleteVariableDeclaration(Var); 11218 } 11219 } 11220 11221 void Sema::ActOnCXXForRangeDecl(Decl *D) { 11222 // If there is no declaration, there was an error parsing it. Ignore it. 11223 if (!D) 11224 return; 11225 11226 VarDecl *VD = dyn_cast<VarDecl>(D); 11227 if (!VD) { 11228 Diag(D->getLocation(), diag::err_for_range_decl_must_be_var); 11229 D->setInvalidDecl(); 11230 return; 11231 } 11232 11233 VD->setCXXForRangeDecl(true); 11234 11235 // for-range-declaration cannot be given a storage class specifier. 11236 int Error = -1; 11237 switch (VD->getStorageClass()) { 11238 case SC_None: 11239 break; 11240 case SC_Extern: 11241 Error = 0; 11242 break; 11243 case SC_Static: 11244 Error = 1; 11245 break; 11246 case SC_PrivateExtern: 11247 Error = 2; 11248 break; 11249 case SC_Auto: 11250 Error = 3; 11251 break; 11252 case SC_Register: 11253 Error = 4; 11254 break; 11255 } 11256 if (Error != -1) { 11257 Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class) 11258 << VD->getDeclName() << Error; 11259 D->setInvalidDecl(); 11260 } 11261 } 11262 11263 StmtResult 11264 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc, 11265 IdentifierInfo *Ident, 11266 ParsedAttributes &Attrs, 11267 SourceLocation AttrEnd) { 11268 // C++1y [stmt.iter]p1: 11269 // A range-based for statement of the form 11270 // for ( for-range-identifier : for-range-initializer ) statement 11271 // is equivalent to 11272 // for ( auto&& for-range-identifier : for-range-initializer ) statement 11273 DeclSpec DS(Attrs.getPool().getFactory()); 11274 11275 const char *PrevSpec; 11276 unsigned DiagID; 11277 DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID, 11278 getPrintingPolicy()); 11279 11280 Declarator D(DS, DeclaratorContext::ForContext); 11281 D.SetIdentifier(Ident, IdentLoc); 11282 D.takeAttributes(Attrs, AttrEnd); 11283 11284 ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory()); 11285 D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false), 11286 EmptyAttrs, IdentLoc); 11287 Decl *Var = ActOnDeclarator(S, D); 11288 cast<VarDecl>(Var)->setCXXForRangeDecl(true); 11289 FinalizeDeclaration(Var); 11290 return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc, 11291 AttrEnd.isValid() ? AttrEnd : IdentLoc); 11292 } 11293 11294 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) { 11295 if (var->isInvalidDecl()) return; 11296 11297 if (getLangOpts().OpenCL) { 11298 // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an 11299 // initialiser 11300 if (var->getTypeSourceInfo()->getType()->isBlockPointerType() && 11301 !var->hasInit()) { 11302 Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration) 11303 << 1 /*Init*/; 11304 var->setInvalidDecl(); 11305 return; 11306 } 11307 } 11308 11309 // In Objective-C, don't allow jumps past the implicit initialization of a 11310 // local retaining variable. 11311 if (getLangOpts().ObjC1 && 11312 var->hasLocalStorage()) { 11313 switch (var->getType().getObjCLifetime()) { 11314 case Qualifiers::OCL_None: 11315 case Qualifiers::OCL_ExplicitNone: 11316 case Qualifiers::OCL_Autoreleasing: 11317 break; 11318 11319 case Qualifiers::OCL_Weak: 11320 case Qualifiers::OCL_Strong: 11321 getCurFunction()->setHasBranchProtectedScope(); 11322 break; 11323 } 11324 } 11325 11326 if (var->getType().isDestructedType() == QualType::DK_nontrivial_c_struct) 11327 getCurFunction()->setHasBranchProtectedScope(); 11328 11329 // Warn about externally-visible variables being defined without a 11330 // prior declaration. We only want to do this for global 11331 // declarations, but we also specifically need to avoid doing it for 11332 // class members because the linkage of an anonymous class can 11333 // change if it's later given a typedef name. 11334 if (var->isThisDeclarationADefinition() && 11335 var->getDeclContext()->getRedeclContext()->isFileContext() && 11336 var->isExternallyVisible() && var->hasLinkage() && 11337 !var->isInline() && !var->getDescribedVarTemplate() && 11338 !isTemplateInstantiation(var->getTemplateSpecializationKind()) && 11339 !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations, 11340 var->getLocation())) { 11341 // Find a previous declaration that's not a definition. 11342 VarDecl *prev = var->getPreviousDecl(); 11343 while (prev && prev->isThisDeclarationADefinition()) 11344 prev = prev->getPreviousDecl(); 11345 11346 if (!prev) 11347 Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var; 11348 } 11349 11350 // Cache the result of checking for constant initialization. 11351 Optional<bool> CacheHasConstInit; 11352 const Expr *CacheCulprit; 11353 auto checkConstInit = [&]() mutable { 11354 if (!CacheHasConstInit) 11355 CacheHasConstInit = var->getInit()->isConstantInitializer( 11356 Context, var->getType()->isReferenceType(), &CacheCulprit); 11357 return *CacheHasConstInit; 11358 }; 11359 11360 if (var->getTLSKind() == VarDecl::TLS_Static) { 11361 if (var->getType().isDestructedType()) { 11362 // GNU C++98 edits for __thread, [basic.start.term]p3: 11363 // The type of an object with thread storage duration shall not 11364 // have a non-trivial destructor. 11365 Diag(var->getLocation(), diag::err_thread_nontrivial_dtor); 11366 if (getLangOpts().CPlusPlus11) 11367 Diag(var->getLocation(), diag::note_use_thread_local); 11368 } else if (getLangOpts().CPlusPlus && var->hasInit()) { 11369 if (!checkConstInit()) { 11370 // GNU C++98 edits for __thread, [basic.start.init]p4: 11371 // An object of thread storage duration shall not require dynamic 11372 // initialization. 11373 // FIXME: Need strict checking here. 11374 Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init) 11375 << CacheCulprit->getSourceRange(); 11376 if (getLangOpts().CPlusPlus11) 11377 Diag(var->getLocation(), diag::note_use_thread_local); 11378 } 11379 } 11380 } 11381 11382 // Apply section attributes and pragmas to global variables. 11383 bool GlobalStorage = var->hasGlobalStorage(); 11384 if (GlobalStorage && var->isThisDeclarationADefinition() && 11385 !inTemplateInstantiation()) { 11386 PragmaStack<StringLiteral *> *Stack = nullptr; 11387 int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read; 11388 if (var->getType().isConstQualified()) 11389 Stack = &ConstSegStack; 11390 else if (!var->getInit()) { 11391 Stack = &BSSSegStack; 11392 SectionFlags |= ASTContext::PSF_Write; 11393 } else { 11394 Stack = &DataSegStack; 11395 SectionFlags |= ASTContext::PSF_Write; 11396 } 11397 if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) { 11398 var->addAttr(SectionAttr::CreateImplicit( 11399 Context, SectionAttr::Declspec_allocate, 11400 Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation)); 11401 } 11402 if (const SectionAttr *SA = var->getAttr<SectionAttr>()) 11403 if (UnifySection(SA->getName(), SectionFlags, var)) 11404 var->dropAttr<SectionAttr>(); 11405 11406 // Apply the init_seg attribute if this has an initializer. If the 11407 // initializer turns out to not be dynamic, we'll end up ignoring this 11408 // attribute. 11409 if (CurInitSeg && var->getInit()) 11410 var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(), 11411 CurInitSegLoc)); 11412 } 11413 11414 // All the following checks are C++ only. 11415 if (!getLangOpts().CPlusPlus) { 11416 // If this variable must be emitted, add it as an initializer for the 11417 // current module. 11418 if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty()) 11419 Context.addModuleInitializer(ModuleScopes.back().Module, var); 11420 return; 11421 } 11422 11423 if (auto *DD = dyn_cast<DecompositionDecl>(var)) 11424 CheckCompleteDecompositionDeclaration(DD); 11425 11426 QualType type = var->getType(); 11427 if (type->isDependentType()) return; 11428 11429 // __block variables might require us to capture a copy-initializer. 11430 if (var->hasAttr<BlocksAttr>()) { 11431 // It's currently invalid to ever have a __block variable with an 11432 // array type; should we diagnose that here? 11433 11434 // Regardless, we don't want to ignore array nesting when 11435 // constructing this copy. 11436 if (type->isStructureOrClassType()) { 11437 EnterExpressionEvaluationContext scope( 11438 *this, ExpressionEvaluationContext::PotentiallyEvaluated); 11439 SourceLocation poi = var->getLocation(); 11440 Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi); 11441 ExprResult result 11442 = PerformMoveOrCopyInitialization( 11443 InitializedEntity::InitializeBlock(poi, type, false), 11444 var, var->getType(), varRef, /*AllowNRVO=*/true); 11445 if (!result.isInvalid()) { 11446 result = MaybeCreateExprWithCleanups(result); 11447 Expr *init = result.getAs<Expr>(); 11448 Context.setBlockVarCopyInits(var, init); 11449 } 11450 } 11451 } 11452 11453 Expr *Init = var->getInit(); 11454 bool IsGlobal = GlobalStorage && !var->isStaticLocal(); 11455 QualType baseType = Context.getBaseElementType(type); 11456 11457 if (Init && !Init->isValueDependent()) { 11458 if (var->isConstexpr()) { 11459 SmallVector<PartialDiagnosticAt, 8> Notes; 11460 if (!var->evaluateValue(Notes) || !var->isInitICE()) { 11461 SourceLocation DiagLoc = var->getLocation(); 11462 // If the note doesn't add any useful information other than a source 11463 // location, fold it into the primary diagnostic. 11464 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 11465 diag::note_invalid_subexpr_in_const_expr) { 11466 DiagLoc = Notes[0].first; 11467 Notes.clear(); 11468 } 11469 Diag(DiagLoc, diag::err_constexpr_var_requires_const_init) 11470 << var << Init->getSourceRange(); 11471 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 11472 Diag(Notes[I].first, Notes[I].second); 11473 } 11474 } else if (var->isUsableInConstantExpressions(Context)) { 11475 // Check whether the initializer of a const variable of integral or 11476 // enumeration type is an ICE now, since we can't tell whether it was 11477 // initialized by a constant expression if we check later. 11478 var->checkInitIsICE(); 11479 } 11480 11481 // Don't emit further diagnostics about constexpr globals since they 11482 // were just diagnosed. 11483 if (!var->isConstexpr() && GlobalStorage && 11484 var->hasAttr<RequireConstantInitAttr>()) { 11485 // FIXME: Need strict checking in C++03 here. 11486 bool DiagErr = getLangOpts().CPlusPlus11 11487 ? !var->checkInitIsICE() : !checkConstInit(); 11488 if (DiagErr) { 11489 auto attr = var->getAttr<RequireConstantInitAttr>(); 11490 Diag(var->getLocation(), diag::err_require_constant_init_failed) 11491 << Init->getSourceRange(); 11492 Diag(attr->getLocation(), diag::note_declared_required_constant_init_here) 11493 << attr->getRange(); 11494 if (getLangOpts().CPlusPlus11) { 11495 APValue Value; 11496 SmallVector<PartialDiagnosticAt, 8> Notes; 11497 Init->EvaluateAsInitializer(Value, getASTContext(), var, Notes); 11498 for (auto &it : Notes) 11499 Diag(it.first, it.second); 11500 } else { 11501 Diag(CacheCulprit->getExprLoc(), 11502 diag::note_invalid_subexpr_in_const_expr) 11503 << CacheCulprit->getSourceRange(); 11504 } 11505 } 11506 } 11507 else if (!var->isConstexpr() && IsGlobal && 11508 !getDiagnostics().isIgnored(diag::warn_global_constructor, 11509 var->getLocation())) { 11510 // Warn about globals which don't have a constant initializer. Don't 11511 // warn about globals with a non-trivial destructor because we already 11512 // warned about them. 11513 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); 11514 if (!(RD && !RD->hasTrivialDestructor())) { 11515 if (!checkConstInit()) 11516 Diag(var->getLocation(), diag::warn_global_constructor) 11517 << Init->getSourceRange(); 11518 } 11519 } 11520 } 11521 11522 // Require the destructor. 11523 if (const RecordType *recordType = baseType->getAs<RecordType>()) 11524 FinalizeVarWithDestructor(var, recordType); 11525 11526 // If this variable must be emitted, add it as an initializer for the current 11527 // module. 11528 if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty()) 11529 Context.addModuleInitializer(ModuleScopes.back().Module, var); 11530 } 11531 11532 /// \brief Determines if a variable's alignment is dependent. 11533 static bool hasDependentAlignment(VarDecl *VD) { 11534 if (VD->getType()->isDependentType()) 11535 return true; 11536 for (auto *I : VD->specific_attrs<AlignedAttr>()) 11537 if (I->isAlignmentDependent()) 11538 return true; 11539 return false; 11540 } 11541 11542 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform 11543 /// any semantic actions necessary after any initializer has been attached. 11544 void Sema::FinalizeDeclaration(Decl *ThisDecl) { 11545 // Note that we are no longer parsing the initializer for this declaration. 11546 ParsingInitForAutoVars.erase(ThisDecl); 11547 11548 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl); 11549 if (!VD) 11550 return; 11551 11552 // Apply an implicit SectionAttr if '#pragma clang section bss|data|rodata' is active 11553 if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() && 11554 !inTemplateInstantiation() && !VD->hasAttr<SectionAttr>()) { 11555 if (PragmaClangBSSSection.Valid) 11556 VD->addAttr(PragmaClangBSSSectionAttr::CreateImplicit(Context, 11557 PragmaClangBSSSection.SectionName, 11558 PragmaClangBSSSection.PragmaLocation)); 11559 if (PragmaClangDataSection.Valid) 11560 VD->addAttr(PragmaClangDataSectionAttr::CreateImplicit(Context, 11561 PragmaClangDataSection.SectionName, 11562 PragmaClangDataSection.PragmaLocation)); 11563 if (PragmaClangRodataSection.Valid) 11564 VD->addAttr(PragmaClangRodataSectionAttr::CreateImplicit(Context, 11565 PragmaClangRodataSection.SectionName, 11566 PragmaClangRodataSection.PragmaLocation)); 11567 } 11568 11569 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { 11570 for (auto *BD : DD->bindings()) { 11571 FinalizeDeclaration(BD); 11572 } 11573 } 11574 11575 checkAttributesAfterMerging(*this, *VD); 11576 11577 // Perform TLS alignment check here after attributes attached to the variable 11578 // which may affect the alignment have been processed. Only perform the check 11579 // if the target has a maximum TLS alignment (zero means no constraints). 11580 if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) { 11581 // Protect the check so that it's not performed on dependent types and 11582 // dependent alignments (we can't determine the alignment in that case). 11583 if (VD->getTLSKind() && !hasDependentAlignment(VD) && 11584 !VD->isInvalidDecl()) { 11585 CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign); 11586 if (Context.getDeclAlign(VD) > MaxAlignChars) { 11587 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum) 11588 << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD 11589 << (unsigned)MaxAlignChars.getQuantity(); 11590 } 11591 } 11592 } 11593 11594 if (VD->isStaticLocal()) { 11595 if (FunctionDecl *FD = 11596 dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) { 11597 // Static locals inherit dll attributes from their function. 11598 if (Attr *A = getDLLAttr(FD)) { 11599 auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext())); 11600 NewAttr->setInherited(true); 11601 VD->addAttr(NewAttr); 11602 } 11603 // CUDA E.2.9.4: Within the body of a __device__ or __global__ 11604 // function, only __shared__ variables may be declared with 11605 // static storage class. 11606 if (getLangOpts().CUDA && !VD->hasAttr<CUDASharedAttr>() && 11607 CUDADiagIfDeviceCode(VD->getLocation(), 11608 diag::err_device_static_local_var) 11609 << CurrentCUDATarget()) 11610 VD->setInvalidDecl(); 11611 } 11612 } 11613 11614 // Perform check for initializers of device-side global variables. 11615 // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA 11616 // 7.5). We must also apply the same checks to all __shared__ 11617 // variables whether they are local or not. CUDA also allows 11618 // constant initializers for __constant__ and __device__ variables. 11619 if (getLangOpts().CUDA) { 11620 const Expr *Init = VD->getInit(); 11621 if (Init && VD->hasGlobalStorage()) { 11622 if (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() || 11623 VD->hasAttr<CUDASharedAttr>()) { 11624 assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>()); 11625 bool AllowedInit = false; 11626 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) 11627 AllowedInit = 11628 isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor()); 11629 // We'll allow constant initializers even if it's a non-empty 11630 // constructor according to CUDA rules. This deviates from NVCC, 11631 // but allows us to handle things like constexpr constructors. 11632 if (!AllowedInit && 11633 (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>())) 11634 AllowedInit = VD->getInit()->isConstantInitializer( 11635 Context, VD->getType()->isReferenceType()); 11636 11637 // Also make sure that destructor, if there is one, is empty. 11638 if (AllowedInit) 11639 if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl()) 11640 AllowedInit = 11641 isEmptyCudaDestructor(VD->getLocation(), RD->getDestructor()); 11642 11643 if (!AllowedInit) { 11644 Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>() 11645 ? diag::err_shared_var_init 11646 : diag::err_dynamic_var_init) 11647 << Init->getSourceRange(); 11648 VD->setInvalidDecl(); 11649 } 11650 } else { 11651 // This is a host-side global variable. Check that the initializer is 11652 // callable from the host side. 11653 const FunctionDecl *InitFn = nullptr; 11654 if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) { 11655 InitFn = CE->getConstructor(); 11656 } else if (const CallExpr *CE = dyn_cast<CallExpr>(Init)) { 11657 InitFn = CE->getDirectCallee(); 11658 } 11659 if (InitFn) { 11660 CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn); 11661 if (InitFnTarget != CFT_Host && InitFnTarget != CFT_HostDevice) { 11662 Diag(VD->getLocation(), diag::err_ref_bad_target_global_initializer) 11663 << InitFnTarget << InitFn; 11664 Diag(InitFn->getLocation(), diag::note_previous_decl) << InitFn; 11665 VD->setInvalidDecl(); 11666 } 11667 } 11668 } 11669 } 11670 } 11671 11672 // Grab the dllimport or dllexport attribute off of the VarDecl. 11673 const InheritableAttr *DLLAttr = getDLLAttr(VD); 11674 11675 // Imported static data members cannot be defined out-of-line. 11676 if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) { 11677 if (VD->isStaticDataMember() && VD->isOutOfLine() && 11678 VD->isThisDeclarationADefinition()) { 11679 // We allow definitions of dllimport class template static data members 11680 // with a warning. 11681 CXXRecordDecl *Context = 11682 cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext()); 11683 bool IsClassTemplateMember = 11684 isa<ClassTemplatePartialSpecializationDecl>(Context) || 11685 Context->getDescribedClassTemplate(); 11686 11687 Diag(VD->getLocation(), 11688 IsClassTemplateMember 11689 ? diag::warn_attribute_dllimport_static_field_definition 11690 : diag::err_attribute_dllimport_static_field_definition); 11691 Diag(IA->getLocation(), diag::note_attribute); 11692 if (!IsClassTemplateMember) 11693 VD->setInvalidDecl(); 11694 } 11695 } 11696 11697 // dllimport/dllexport variables cannot be thread local, their TLS index 11698 // isn't exported with the variable. 11699 if (DLLAttr && VD->getTLSKind()) { 11700 auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod()); 11701 if (F && getDLLAttr(F)) { 11702 assert(VD->isStaticLocal()); 11703 // But if this is a static local in a dlimport/dllexport function, the 11704 // function will never be inlined, which means the var would never be 11705 // imported, so having it marked import/export is safe. 11706 } else { 11707 Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD 11708 << DLLAttr; 11709 VD->setInvalidDecl(); 11710 } 11711 } 11712 11713 if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) { 11714 if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) { 11715 Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr; 11716 VD->dropAttr<UsedAttr>(); 11717 } 11718 } 11719 11720 const DeclContext *DC = VD->getDeclContext(); 11721 // If there's a #pragma GCC visibility in scope, and this isn't a class 11722 // member, set the visibility of this variable. 11723 if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible()) 11724 AddPushedVisibilityAttribute(VD); 11725 11726 // FIXME: Warn on unused var template partial specializations. 11727 if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD)) 11728 MarkUnusedFileScopedDecl(VD); 11729 11730 // Now we have parsed the initializer and can update the table of magic 11731 // tag values. 11732 if (!VD->hasAttr<TypeTagForDatatypeAttr>() || 11733 !VD->getType()->isIntegralOrEnumerationType()) 11734 return; 11735 11736 for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) { 11737 const Expr *MagicValueExpr = VD->getInit(); 11738 if (!MagicValueExpr) { 11739 continue; 11740 } 11741 llvm::APSInt MagicValueInt; 11742 if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) { 11743 Diag(I->getRange().getBegin(), 11744 diag::err_type_tag_for_datatype_not_ice) 11745 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 11746 continue; 11747 } 11748 if (MagicValueInt.getActiveBits() > 64) { 11749 Diag(I->getRange().getBegin(), 11750 diag::err_type_tag_for_datatype_too_large) 11751 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 11752 continue; 11753 } 11754 uint64_t MagicValue = MagicValueInt.getZExtValue(); 11755 RegisterTypeTagForDatatype(I->getArgumentKind(), 11756 MagicValue, 11757 I->getMatchingCType(), 11758 I->getLayoutCompatible(), 11759 I->getMustBeNull()); 11760 } 11761 } 11762 11763 static bool hasDeducedAuto(DeclaratorDecl *DD) { 11764 auto *VD = dyn_cast<VarDecl>(DD); 11765 return VD && !VD->getType()->hasAutoForTrailingReturnType(); 11766 } 11767 11768 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS, 11769 ArrayRef<Decl *> Group) { 11770 SmallVector<Decl*, 8> Decls; 11771 11772 if (DS.isTypeSpecOwned()) 11773 Decls.push_back(DS.getRepAsDecl()); 11774 11775 DeclaratorDecl *FirstDeclaratorInGroup = nullptr; 11776 DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr; 11777 bool DiagnosedMultipleDecomps = false; 11778 DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr; 11779 bool DiagnosedNonDeducedAuto = false; 11780 11781 for (unsigned i = 0, e = Group.size(); i != e; ++i) { 11782 if (Decl *D = Group[i]) { 11783 // For declarators, there are some additional syntactic-ish checks we need 11784 // to perform. 11785 if (auto *DD = dyn_cast<DeclaratorDecl>(D)) { 11786 if (!FirstDeclaratorInGroup) 11787 FirstDeclaratorInGroup = DD; 11788 if (!FirstDecompDeclaratorInGroup) 11789 FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D); 11790 if (!FirstNonDeducedAutoInGroup && DS.hasAutoTypeSpec() && 11791 !hasDeducedAuto(DD)) 11792 FirstNonDeducedAutoInGroup = DD; 11793 11794 if (FirstDeclaratorInGroup != DD) { 11795 // A decomposition declaration cannot be combined with any other 11796 // declaration in the same group. 11797 if (FirstDecompDeclaratorInGroup && !DiagnosedMultipleDecomps) { 11798 Diag(FirstDecompDeclaratorInGroup->getLocation(), 11799 diag::err_decomp_decl_not_alone) 11800 << FirstDeclaratorInGroup->getSourceRange() 11801 << DD->getSourceRange(); 11802 DiagnosedMultipleDecomps = true; 11803 } 11804 11805 // A declarator that uses 'auto' in any way other than to declare a 11806 // variable with a deduced type cannot be combined with any other 11807 // declarator in the same group. 11808 if (FirstNonDeducedAutoInGroup && !DiagnosedNonDeducedAuto) { 11809 Diag(FirstNonDeducedAutoInGroup->getLocation(), 11810 diag::err_auto_non_deduced_not_alone) 11811 << FirstNonDeducedAutoInGroup->getType() 11812 ->hasAutoForTrailingReturnType() 11813 << FirstDeclaratorInGroup->getSourceRange() 11814 << DD->getSourceRange(); 11815 DiagnosedNonDeducedAuto = true; 11816 } 11817 } 11818 } 11819 11820 Decls.push_back(D); 11821 } 11822 } 11823 11824 if (DeclSpec::isDeclRep(DS.getTypeSpecType())) { 11825 if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) { 11826 handleTagNumbering(Tag, S); 11827 if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() && 11828 getLangOpts().CPlusPlus) 11829 Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup); 11830 } 11831 } 11832 11833 return BuildDeclaratorGroup(Decls); 11834 } 11835 11836 /// BuildDeclaratorGroup - convert a list of declarations into a declaration 11837 /// group, performing any necessary semantic checking. 11838 Sema::DeclGroupPtrTy 11839 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group) { 11840 // C++14 [dcl.spec.auto]p7: (DR1347) 11841 // If the type that replaces the placeholder type is not the same in each 11842 // deduction, the program is ill-formed. 11843 if (Group.size() > 1) { 11844 QualType Deduced; 11845 VarDecl *DeducedDecl = nullptr; 11846 for (unsigned i = 0, e = Group.size(); i != e; ++i) { 11847 VarDecl *D = dyn_cast<VarDecl>(Group[i]); 11848 if (!D || D->isInvalidDecl()) 11849 break; 11850 DeducedType *DT = D->getType()->getContainedDeducedType(); 11851 if (!DT || DT->getDeducedType().isNull()) 11852 continue; 11853 if (Deduced.isNull()) { 11854 Deduced = DT->getDeducedType(); 11855 DeducedDecl = D; 11856 } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) { 11857 auto *AT = dyn_cast<AutoType>(DT); 11858 Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(), 11859 diag::err_auto_different_deductions) 11860 << (AT ? (unsigned)AT->getKeyword() : 3) 11861 << Deduced << DeducedDecl->getDeclName() 11862 << DT->getDeducedType() << D->getDeclName() 11863 << DeducedDecl->getInit()->getSourceRange() 11864 << D->getInit()->getSourceRange(); 11865 D->setInvalidDecl(); 11866 break; 11867 } 11868 } 11869 } 11870 11871 ActOnDocumentableDecls(Group); 11872 11873 return DeclGroupPtrTy::make( 11874 DeclGroupRef::Create(Context, Group.data(), Group.size())); 11875 } 11876 11877 void Sema::ActOnDocumentableDecl(Decl *D) { 11878 ActOnDocumentableDecls(D); 11879 } 11880 11881 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) { 11882 // Don't parse the comment if Doxygen diagnostics are ignored. 11883 if (Group.empty() || !Group[0]) 11884 return; 11885 11886 if (Diags.isIgnored(diag::warn_doc_param_not_found, 11887 Group[0]->getLocation()) && 11888 Diags.isIgnored(diag::warn_unknown_comment_command_name, 11889 Group[0]->getLocation())) 11890 return; 11891 11892 if (Group.size() >= 2) { 11893 // This is a decl group. Normally it will contain only declarations 11894 // produced from declarator list. But in case we have any definitions or 11895 // additional declaration references: 11896 // 'typedef struct S {} S;' 11897 // 'typedef struct S *S;' 11898 // 'struct S *pS;' 11899 // FinalizeDeclaratorGroup adds these as separate declarations. 11900 Decl *MaybeTagDecl = Group[0]; 11901 if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) { 11902 Group = Group.slice(1); 11903 } 11904 } 11905 11906 // See if there are any new comments that are not attached to a decl. 11907 ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments(); 11908 if (!Comments.empty() && 11909 !Comments.back()->isAttached()) { 11910 // There is at least one comment that not attached to a decl. 11911 // Maybe it should be attached to one of these decls? 11912 // 11913 // Note that this way we pick up not only comments that precede the 11914 // declaration, but also comments that *follow* the declaration -- thanks to 11915 // the lookahead in the lexer: we've consumed the semicolon and looked 11916 // ahead through comments. 11917 for (unsigned i = 0, e = Group.size(); i != e; ++i) 11918 Context.getCommentForDecl(Group[i], &PP); 11919 } 11920 } 11921 11922 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator() 11923 /// to introduce parameters into function prototype scope. 11924 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) { 11925 const DeclSpec &DS = D.getDeclSpec(); 11926 11927 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'. 11928 11929 // C++03 [dcl.stc]p2 also permits 'auto'. 11930 StorageClass SC = SC_None; 11931 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) { 11932 SC = SC_Register; 11933 // In C++11, the 'register' storage class specifier is deprecated. 11934 // In C++17, it is not allowed, but we tolerate it as an extension. 11935 if (getLangOpts().CPlusPlus11) { 11936 Diag(DS.getStorageClassSpecLoc(), 11937 getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class 11938 : diag::warn_deprecated_register) 11939 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 11940 } 11941 } else if (getLangOpts().CPlusPlus && 11942 DS.getStorageClassSpec() == DeclSpec::SCS_auto) { 11943 SC = SC_Auto; 11944 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) { 11945 Diag(DS.getStorageClassSpecLoc(), 11946 diag::err_invalid_storage_class_in_func_decl); 11947 D.getMutableDeclSpec().ClearStorageClassSpecs(); 11948 } 11949 11950 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 11951 Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread) 11952 << DeclSpec::getSpecifierName(TSCS); 11953 if (DS.isInlineSpecified()) 11954 Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function) 11955 << getLangOpts().CPlusPlus17; 11956 if (DS.isConstexprSpecified()) 11957 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr) 11958 << 0; 11959 11960 DiagnoseFunctionSpecifiers(DS); 11961 11962 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 11963 QualType parmDeclType = TInfo->getType(); 11964 11965 if (getLangOpts().CPlusPlus) { 11966 // Check that there are no default arguments inside the type of this 11967 // parameter. 11968 CheckExtraCXXDefaultArguments(D); 11969 11970 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1). 11971 if (D.getCXXScopeSpec().isSet()) { 11972 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator) 11973 << D.getCXXScopeSpec().getRange(); 11974 D.getCXXScopeSpec().clear(); 11975 } 11976 } 11977 11978 // Ensure we have a valid name 11979 IdentifierInfo *II = nullptr; 11980 if (D.hasName()) { 11981 II = D.getIdentifier(); 11982 if (!II) { 11983 Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name) 11984 << GetNameForDeclarator(D).getName(); 11985 D.setInvalidType(true); 11986 } 11987 } 11988 11989 // Check for redeclaration of parameters, e.g. int foo(int x, int x); 11990 if (II) { 11991 LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName, 11992 ForVisibleRedeclaration); 11993 LookupName(R, S); 11994 if (R.isSingleResult()) { 11995 NamedDecl *PrevDecl = R.getFoundDecl(); 11996 if (PrevDecl->isTemplateParameter()) { 11997 // Maybe we will complain about the shadowed template parameter. 11998 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 11999 // Just pretend that we didn't see the previous declaration. 12000 PrevDecl = nullptr; 12001 } else if (S->isDeclScope(PrevDecl)) { 12002 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II; 12003 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 12004 12005 // Recover by removing the name 12006 II = nullptr; 12007 D.SetIdentifier(nullptr, D.getIdentifierLoc()); 12008 D.setInvalidType(true); 12009 } 12010 } 12011 } 12012 12013 // Temporarily put parameter variables in the translation unit, not 12014 // the enclosing context. This prevents them from accidentally 12015 // looking like class members in C++. 12016 ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(), 12017 D.getLocStart(), 12018 D.getIdentifierLoc(), II, 12019 parmDeclType, TInfo, 12020 SC); 12021 12022 if (D.isInvalidType()) 12023 New->setInvalidDecl(); 12024 12025 assert(S->isFunctionPrototypeScope()); 12026 assert(S->getFunctionPrototypeDepth() >= 1); 12027 New->setScopeInfo(S->getFunctionPrototypeDepth() - 1, 12028 S->getNextFunctionPrototypeIndex()); 12029 12030 // Add the parameter declaration into this scope. 12031 S->AddDecl(New); 12032 if (II) 12033 IdResolver.AddDecl(New); 12034 12035 ProcessDeclAttributes(S, New, D); 12036 12037 if (D.getDeclSpec().isModulePrivateSpecified()) 12038 Diag(New->getLocation(), diag::err_module_private_local) 12039 << 1 << New->getDeclName() 12040 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 12041 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 12042 12043 if (New->hasAttr<BlocksAttr>()) { 12044 Diag(New->getLocation(), diag::err_block_on_nonlocal); 12045 } 12046 return New; 12047 } 12048 12049 /// \brief Synthesizes a variable for a parameter arising from a 12050 /// typedef. 12051 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC, 12052 SourceLocation Loc, 12053 QualType T) { 12054 /* FIXME: setting StartLoc == Loc. 12055 Would it be worth to modify callers so as to provide proper source 12056 location for the unnamed parameters, embedding the parameter's type? */ 12057 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr, 12058 T, Context.getTrivialTypeSourceInfo(T, Loc), 12059 SC_None, nullptr); 12060 Param->setImplicit(); 12061 return Param; 12062 } 12063 12064 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) { 12065 // Don't diagnose unused-parameter errors in template instantiations; we 12066 // will already have done so in the template itself. 12067 if (inTemplateInstantiation()) 12068 return; 12069 12070 for (const ParmVarDecl *Parameter : Parameters) { 12071 if (!Parameter->isReferenced() && Parameter->getDeclName() && 12072 !Parameter->hasAttr<UnusedAttr>()) { 12073 Diag(Parameter->getLocation(), diag::warn_unused_parameter) 12074 << Parameter->getDeclName(); 12075 } 12076 } 12077 } 12078 12079 void Sema::DiagnoseSizeOfParametersAndReturnValue( 12080 ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) { 12081 if (LangOpts.NumLargeByValueCopy == 0) // No check. 12082 return; 12083 12084 // Warn if the return value is pass-by-value and larger than the specified 12085 // threshold. 12086 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) { 12087 unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity(); 12088 if (Size > LangOpts.NumLargeByValueCopy) 12089 Diag(D->getLocation(), diag::warn_return_value_size) 12090 << D->getDeclName() << Size; 12091 } 12092 12093 // Warn if any parameter is pass-by-value and larger than the specified 12094 // threshold. 12095 for (const ParmVarDecl *Parameter : Parameters) { 12096 QualType T = Parameter->getType(); 12097 if (T->isDependentType() || !T.isPODType(Context)) 12098 continue; 12099 unsigned Size = Context.getTypeSizeInChars(T).getQuantity(); 12100 if (Size > LangOpts.NumLargeByValueCopy) 12101 Diag(Parameter->getLocation(), diag::warn_parameter_size) 12102 << Parameter->getDeclName() << Size; 12103 } 12104 } 12105 12106 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc, 12107 SourceLocation NameLoc, IdentifierInfo *Name, 12108 QualType T, TypeSourceInfo *TSInfo, 12109 StorageClass SC) { 12110 // In ARC, infer a lifetime qualifier for appropriate parameter types. 12111 if (getLangOpts().ObjCAutoRefCount && 12112 T.getObjCLifetime() == Qualifiers::OCL_None && 12113 T->isObjCLifetimeType()) { 12114 12115 Qualifiers::ObjCLifetime lifetime; 12116 12117 // Special cases for arrays: 12118 // - if it's const, use __unsafe_unretained 12119 // - otherwise, it's an error 12120 if (T->isArrayType()) { 12121 if (!T.isConstQualified()) { 12122 DelayedDiagnostics.add( 12123 sema::DelayedDiagnostic::makeForbiddenType( 12124 NameLoc, diag::err_arc_array_param_no_ownership, T, false)); 12125 } 12126 lifetime = Qualifiers::OCL_ExplicitNone; 12127 } else { 12128 lifetime = T->getObjCARCImplicitLifetime(); 12129 } 12130 T = Context.getLifetimeQualifiedType(T, lifetime); 12131 } 12132 12133 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, 12134 Context.getAdjustedParameterType(T), 12135 TSInfo, SC, nullptr); 12136 12137 // Parameters can not be abstract class types. 12138 // For record types, this is done by the AbstractClassUsageDiagnoser once 12139 // the class has been completely parsed. 12140 if (!CurContext->isRecord() && 12141 RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl, 12142 AbstractParamType)) 12143 New->setInvalidDecl(); 12144 12145 // Parameter declarators cannot be interface types. All ObjC objects are 12146 // passed by reference. 12147 if (T->isObjCObjectType()) { 12148 SourceLocation TypeEndLoc = 12149 getLocForEndOfToken(TSInfo->getTypeLoc().getLocEnd()); 12150 Diag(NameLoc, 12151 diag::err_object_cannot_be_passed_returned_by_value) << 1 << T 12152 << FixItHint::CreateInsertion(TypeEndLoc, "*"); 12153 T = Context.getObjCObjectPointerType(T); 12154 New->setType(T); 12155 } 12156 12157 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage 12158 // duration shall not be qualified by an address-space qualifier." 12159 // Since all parameters have automatic store duration, they can not have 12160 // an address space. 12161 if (T.getAddressSpace() != LangAS::Default && 12162 // OpenCL allows function arguments declared to be an array of a type 12163 // to be qualified with an address space. 12164 !(getLangOpts().OpenCL && 12165 (T->isArrayType() || T.getAddressSpace() == LangAS::opencl_private))) { 12166 Diag(NameLoc, diag::err_arg_with_address_space); 12167 New->setInvalidDecl(); 12168 } 12169 12170 return New; 12171 } 12172 12173 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D, 12174 SourceLocation LocAfterDecls) { 12175 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 12176 12177 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared' 12178 // for a K&R function. 12179 if (!FTI.hasPrototype) { 12180 for (int i = FTI.NumParams; i != 0; /* decrement in loop */) { 12181 --i; 12182 if (FTI.Params[i].Param == nullptr) { 12183 SmallString<256> Code; 12184 llvm::raw_svector_ostream(Code) 12185 << " int " << FTI.Params[i].Ident->getName() << ";\n"; 12186 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared) 12187 << FTI.Params[i].Ident 12188 << FixItHint::CreateInsertion(LocAfterDecls, Code); 12189 12190 // Implicitly declare the argument as type 'int' for lack of a better 12191 // type. 12192 AttributeFactory attrs; 12193 DeclSpec DS(attrs); 12194 const char* PrevSpec; // unused 12195 unsigned DiagID; // unused 12196 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec, 12197 DiagID, Context.getPrintingPolicy()); 12198 // Use the identifier location for the type source range. 12199 DS.SetRangeStart(FTI.Params[i].IdentLoc); 12200 DS.SetRangeEnd(FTI.Params[i].IdentLoc); 12201 Declarator ParamD(DS, DeclaratorContext::KNRTypeListContext); 12202 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); 12203 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); 12204 } 12205 } 12206 } 12207 } 12208 12209 Decl * 12210 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D, 12211 MultiTemplateParamsArg TemplateParameterLists, 12212 SkipBodyInfo *SkipBody) { 12213 assert(getCurFunctionDecl() == nullptr && "Function parsing confused"); 12214 assert(D.isFunctionDeclarator() && "Not a function declarator!"); 12215 Scope *ParentScope = FnBodyScope->getParent(); 12216 12217 D.setFunctionDefinitionKind(FDK_Definition); 12218 Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists); 12219 return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody); 12220 } 12221 12222 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) { 12223 Consumer.HandleInlineFunctionDefinition(D); 12224 } 12225 12226 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD, 12227 const FunctionDecl*& PossibleZeroParamPrototype) { 12228 // Don't warn about invalid declarations. 12229 if (FD->isInvalidDecl()) 12230 return false; 12231 12232 // Or declarations that aren't global. 12233 if (!FD->isGlobal()) 12234 return false; 12235 12236 // Don't warn about C++ member functions. 12237 if (isa<CXXMethodDecl>(FD)) 12238 return false; 12239 12240 // Don't warn about 'main'. 12241 if (FD->isMain()) 12242 return false; 12243 12244 // Don't warn about inline functions. 12245 if (FD->isInlined()) 12246 return false; 12247 12248 // Don't warn about function templates. 12249 if (FD->getDescribedFunctionTemplate()) 12250 return false; 12251 12252 // Don't warn about function template specializations. 12253 if (FD->isFunctionTemplateSpecialization()) 12254 return false; 12255 12256 // Don't warn for OpenCL kernels. 12257 if (FD->hasAttr<OpenCLKernelAttr>()) 12258 return false; 12259 12260 // Don't warn on explicitly deleted functions. 12261 if (FD->isDeleted()) 12262 return false; 12263 12264 bool MissingPrototype = true; 12265 for (const FunctionDecl *Prev = FD->getPreviousDecl(); 12266 Prev; Prev = Prev->getPreviousDecl()) { 12267 // Ignore any declarations that occur in function or method 12268 // scope, because they aren't visible from the header. 12269 if (Prev->getLexicalDeclContext()->isFunctionOrMethod()) 12270 continue; 12271 12272 MissingPrototype = !Prev->getType()->isFunctionProtoType(); 12273 if (FD->getNumParams() == 0) 12274 PossibleZeroParamPrototype = Prev; 12275 break; 12276 } 12277 12278 return MissingPrototype; 12279 } 12280 12281 void 12282 Sema::CheckForFunctionRedefinition(FunctionDecl *FD, 12283 const FunctionDecl *EffectiveDefinition, 12284 SkipBodyInfo *SkipBody) { 12285 const FunctionDecl *Definition = EffectiveDefinition; 12286 if (!Definition && !FD->isDefined(Definition) && !FD->isCXXClassMember()) { 12287 // If this is a friend function defined in a class template, it does not 12288 // have a body until it is used, nevertheless it is a definition, see 12289 // [temp.inst]p2: 12290 // 12291 // ... for the purpose of determining whether an instantiated redeclaration 12292 // is valid according to [basic.def.odr] and [class.mem], a declaration that 12293 // corresponds to a definition in the template is considered to be a 12294 // definition. 12295 // 12296 // The following code must produce redefinition error: 12297 // 12298 // template<typename T> struct C20 { friend void func_20() {} }; 12299 // C20<int> c20i; 12300 // void func_20() {} 12301 // 12302 for (auto I : FD->redecls()) { 12303 if (I != FD && !I->isInvalidDecl() && 12304 I->getFriendObjectKind() != Decl::FOK_None) { 12305 if (FunctionDecl *Original = I->getInstantiatedFromMemberFunction()) { 12306 if (FunctionDecl *OrigFD = FD->getInstantiatedFromMemberFunction()) { 12307 // A merged copy of the same function, instantiated as a member of 12308 // the same class, is OK. 12309 if (declaresSameEntity(OrigFD, Original) && 12310 declaresSameEntity(cast<Decl>(I->getLexicalDeclContext()), 12311 cast<Decl>(FD->getLexicalDeclContext()))) 12312 continue; 12313 } 12314 12315 if (Original->isThisDeclarationADefinition()) { 12316 Definition = I; 12317 break; 12318 } 12319 } 12320 } 12321 } 12322 } 12323 if (!Definition) 12324 return; 12325 12326 if (canRedefineFunction(Definition, getLangOpts())) 12327 return; 12328 12329 // Don't emit an error when this is redefinition of a typo-corrected 12330 // definition. 12331 if (TypoCorrectedFunctionDefinitions.count(Definition)) 12332 return; 12333 12334 // If we don't have a visible definition of the function, and it's inline or 12335 // a template, skip the new definition. 12336 if (SkipBody && !hasVisibleDefinition(Definition) && 12337 (Definition->getFormalLinkage() == InternalLinkage || 12338 Definition->isInlined() || 12339 Definition->getDescribedFunctionTemplate() || 12340 Definition->getNumTemplateParameterLists())) { 12341 SkipBody->ShouldSkip = true; 12342 if (auto *TD = Definition->getDescribedFunctionTemplate()) 12343 makeMergedDefinitionVisible(TD); 12344 makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition)); 12345 return; 12346 } 12347 12348 if (getLangOpts().GNUMode && Definition->isInlineSpecified() && 12349 Definition->getStorageClass() == SC_Extern) 12350 Diag(FD->getLocation(), diag::err_redefinition_extern_inline) 12351 << FD->getDeclName() << getLangOpts().CPlusPlus; 12352 else 12353 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName(); 12354 12355 Diag(Definition->getLocation(), diag::note_previous_definition); 12356 FD->setInvalidDecl(); 12357 } 12358 12359 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator, 12360 Sema &S) { 12361 CXXRecordDecl *const LambdaClass = CallOperator->getParent(); 12362 12363 LambdaScopeInfo *LSI = S.PushLambdaScope(); 12364 LSI->CallOperator = CallOperator; 12365 LSI->Lambda = LambdaClass; 12366 LSI->ReturnType = CallOperator->getReturnType(); 12367 const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault(); 12368 12369 if (LCD == LCD_None) 12370 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None; 12371 else if (LCD == LCD_ByCopy) 12372 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval; 12373 else if (LCD == LCD_ByRef) 12374 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref; 12375 DeclarationNameInfo DNI = CallOperator->getNameInfo(); 12376 12377 LSI->IntroducerRange = DNI.getCXXOperatorNameRange(); 12378 LSI->Mutable = !CallOperator->isConst(); 12379 12380 // Add the captures to the LSI so they can be noted as already 12381 // captured within tryCaptureVar. 12382 auto I = LambdaClass->field_begin(); 12383 for (const auto &C : LambdaClass->captures()) { 12384 if (C.capturesVariable()) { 12385 VarDecl *VD = C.getCapturedVar(); 12386 if (VD->isInitCapture()) 12387 S.CurrentInstantiationScope->InstantiatedLocal(VD, VD); 12388 QualType CaptureType = VD->getType(); 12389 const bool ByRef = C.getCaptureKind() == LCK_ByRef; 12390 LSI->addCapture(VD, /*IsBlock*/false, ByRef, 12391 /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(), 12392 /*EllipsisLoc*/C.isPackExpansion() 12393 ? C.getEllipsisLoc() : SourceLocation(), 12394 CaptureType, /*Expr*/ nullptr); 12395 12396 } else if (C.capturesThis()) { 12397 LSI->addThisCapture(/*Nested*/ false, C.getLocation(), 12398 /*Expr*/ nullptr, 12399 C.getCaptureKind() == LCK_StarThis); 12400 } else { 12401 LSI->addVLATypeCapture(C.getLocation(), I->getType()); 12402 } 12403 ++I; 12404 } 12405 } 12406 12407 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D, 12408 SkipBodyInfo *SkipBody) { 12409 if (!D) 12410 return D; 12411 FunctionDecl *FD = nullptr; 12412 12413 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) 12414 FD = FunTmpl->getTemplatedDecl(); 12415 else 12416 FD = cast<FunctionDecl>(D); 12417 12418 // Check for defining attributes before the check for redefinition. 12419 if (const auto *Attr = FD->getAttr<AliasAttr>()) { 12420 Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0; 12421 FD->dropAttr<AliasAttr>(); 12422 FD->setInvalidDecl(); 12423 } 12424 if (const auto *Attr = FD->getAttr<IFuncAttr>()) { 12425 Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1; 12426 FD->dropAttr<IFuncAttr>(); 12427 FD->setInvalidDecl(); 12428 } 12429 12430 // See if this is a redefinition. If 'will have body' is already set, then 12431 // these checks were already performed when it was set. 12432 if (!FD->willHaveBody() && !FD->isLateTemplateParsed()) { 12433 CheckForFunctionRedefinition(FD, nullptr, SkipBody); 12434 12435 // If we're skipping the body, we're done. Don't enter the scope. 12436 if (SkipBody && SkipBody->ShouldSkip) 12437 return D; 12438 } 12439 12440 // Mark this function as "will have a body eventually". This lets users to 12441 // call e.g. isInlineDefinitionExternallyVisible while we're still parsing 12442 // this function. 12443 FD->setWillHaveBody(); 12444 12445 // If we are instantiating a generic lambda call operator, push 12446 // a LambdaScopeInfo onto the function stack. But use the information 12447 // that's already been calculated (ActOnLambdaExpr) to prime the current 12448 // LambdaScopeInfo. 12449 // When the template operator is being specialized, the LambdaScopeInfo, 12450 // has to be properly restored so that tryCaptureVariable doesn't try 12451 // and capture any new variables. In addition when calculating potential 12452 // captures during transformation of nested lambdas, it is necessary to 12453 // have the LSI properly restored. 12454 if (isGenericLambdaCallOperatorSpecialization(FD)) { 12455 assert(inTemplateInstantiation() && 12456 "There should be an active template instantiation on the stack " 12457 "when instantiating a generic lambda!"); 12458 RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this); 12459 } else { 12460 // Enter a new function scope 12461 PushFunctionScope(); 12462 } 12463 12464 // Builtin functions cannot be defined. 12465 if (unsigned BuiltinID = FD->getBuiltinID()) { 12466 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) && 12467 !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) { 12468 Diag(FD->getLocation(), diag::err_builtin_definition) << FD; 12469 FD->setInvalidDecl(); 12470 } 12471 } 12472 12473 // The return type of a function definition must be complete 12474 // (C99 6.9.1p3, C++ [dcl.fct]p6). 12475 QualType ResultType = FD->getReturnType(); 12476 if (!ResultType->isDependentType() && !ResultType->isVoidType() && 12477 !FD->isInvalidDecl() && 12478 RequireCompleteType(FD->getLocation(), ResultType, 12479 diag::err_func_def_incomplete_result)) 12480 FD->setInvalidDecl(); 12481 12482 if (FnBodyScope) 12483 PushDeclContext(FnBodyScope, FD); 12484 12485 // Check the validity of our function parameters 12486 CheckParmsForFunctionDef(FD->parameters(), 12487 /*CheckParameterNames=*/true); 12488 12489 // Add non-parameter declarations already in the function to the current 12490 // scope. 12491 if (FnBodyScope) { 12492 for (Decl *NPD : FD->decls()) { 12493 auto *NonParmDecl = dyn_cast<NamedDecl>(NPD); 12494 if (!NonParmDecl) 12495 continue; 12496 assert(!isa<ParmVarDecl>(NonParmDecl) && 12497 "parameters should not be in newly created FD yet"); 12498 12499 // If the decl has a name, make it accessible in the current scope. 12500 if (NonParmDecl->getDeclName()) 12501 PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false); 12502 12503 // Similarly, dive into enums and fish their constants out, making them 12504 // accessible in this scope. 12505 if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) { 12506 for (auto *EI : ED->enumerators()) 12507 PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false); 12508 } 12509 } 12510 } 12511 12512 // Introduce our parameters into the function scope 12513 for (auto Param : FD->parameters()) { 12514 Param->setOwningFunction(FD); 12515 12516 // If this has an identifier, add it to the scope stack. 12517 if (Param->getIdentifier() && FnBodyScope) { 12518 CheckShadow(FnBodyScope, Param); 12519 12520 PushOnScopeChains(Param, FnBodyScope); 12521 } 12522 } 12523 12524 // Ensure that the function's exception specification is instantiated. 12525 if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>()) 12526 ResolveExceptionSpec(D->getLocation(), FPT); 12527 12528 // dllimport cannot be applied to non-inline function definitions. 12529 if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() && 12530 !FD->isTemplateInstantiation()) { 12531 assert(!FD->hasAttr<DLLExportAttr>()); 12532 Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition); 12533 FD->setInvalidDecl(); 12534 return D; 12535 } 12536 // We want to attach documentation to original Decl (which might be 12537 // a function template). 12538 ActOnDocumentableDecl(D); 12539 if (getCurLexicalContext()->isObjCContainer() && 12540 getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl && 12541 getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation) 12542 Diag(FD->getLocation(), diag::warn_function_def_in_objc_container); 12543 12544 return D; 12545 } 12546 12547 /// \brief Given the set of return statements within a function body, 12548 /// compute the variables that are subject to the named return value 12549 /// optimization. 12550 /// 12551 /// Each of the variables that is subject to the named return value 12552 /// optimization will be marked as NRVO variables in the AST, and any 12553 /// return statement that has a marked NRVO variable as its NRVO candidate can 12554 /// use the named return value optimization. 12555 /// 12556 /// This function applies a very simplistic algorithm for NRVO: if every return 12557 /// statement in the scope of a variable has the same NRVO candidate, that 12558 /// candidate is an NRVO variable. 12559 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) { 12560 ReturnStmt **Returns = Scope->Returns.data(); 12561 12562 for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) { 12563 if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) { 12564 if (!NRVOCandidate->isNRVOVariable()) 12565 Returns[I]->setNRVOCandidate(nullptr); 12566 } 12567 } 12568 } 12569 12570 bool Sema::canDelayFunctionBody(const Declarator &D) { 12571 // We can't delay parsing the body of a constexpr function template (yet). 12572 if (D.getDeclSpec().isConstexprSpecified()) 12573 return false; 12574 12575 // We can't delay parsing the body of a function template with a deduced 12576 // return type (yet). 12577 if (D.getDeclSpec().hasAutoTypeSpec()) { 12578 // If the placeholder introduces a non-deduced trailing return type, 12579 // we can still delay parsing it. 12580 if (D.getNumTypeObjects()) { 12581 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1); 12582 if (Outer.Kind == DeclaratorChunk::Function && 12583 Outer.Fun.hasTrailingReturnType()) { 12584 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType()); 12585 return Ty.isNull() || !Ty->isUndeducedType(); 12586 } 12587 } 12588 return false; 12589 } 12590 12591 return true; 12592 } 12593 12594 bool Sema::canSkipFunctionBody(Decl *D) { 12595 // We cannot skip the body of a function (or function template) which is 12596 // constexpr, since we may need to evaluate its body in order to parse the 12597 // rest of the file. 12598 // We cannot skip the body of a function with an undeduced return type, 12599 // because any callers of that function need to know the type. 12600 if (const FunctionDecl *FD = D->getAsFunction()) 12601 if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType()) 12602 return false; 12603 return Consumer.shouldSkipFunctionBody(D); 12604 } 12605 12606 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) { 12607 if (!Decl) 12608 return nullptr; 12609 if (FunctionDecl *FD = Decl->getAsFunction()) 12610 FD->setHasSkippedBody(); 12611 else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(Decl)) 12612 MD->setHasSkippedBody(); 12613 return Decl; 12614 } 12615 12616 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) { 12617 return ActOnFinishFunctionBody(D, BodyArg, false); 12618 } 12619 12620 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body, 12621 bool IsInstantiation) { 12622 FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr; 12623 12624 sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 12625 sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr; 12626 12627 if (getLangOpts().CoroutinesTS && getCurFunction()->isCoroutine()) 12628 CheckCompletedCoroutineBody(FD, Body); 12629 12630 if (FD) { 12631 FD->setBody(Body); 12632 FD->setWillHaveBody(false); 12633 12634 if (getLangOpts().CPlusPlus14) { 12635 if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() && 12636 FD->getReturnType()->isUndeducedType()) { 12637 // If the function has a deduced result type but contains no 'return' 12638 // statements, the result type as written must be exactly 'auto', and 12639 // the deduced result type is 'void'. 12640 if (!FD->getReturnType()->getAs<AutoType>()) { 12641 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto) 12642 << FD->getReturnType(); 12643 FD->setInvalidDecl(); 12644 } else { 12645 // Substitute 'void' for the 'auto' in the type. 12646 TypeLoc ResultType = getReturnTypeLoc(FD); 12647 Context.adjustDeducedFunctionResultType( 12648 FD, SubstAutoType(ResultType.getType(), Context.VoidTy)); 12649 } 12650 } 12651 } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) { 12652 // In C++11, we don't use 'auto' deduction rules for lambda call 12653 // operators because we don't support return type deduction. 12654 auto *LSI = getCurLambda(); 12655 if (LSI->HasImplicitReturnType) { 12656 deduceClosureReturnType(*LSI); 12657 12658 // C++11 [expr.prim.lambda]p4: 12659 // [...] if there are no return statements in the compound-statement 12660 // [the deduced type is] the type void 12661 QualType RetType = 12662 LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType; 12663 12664 // Update the return type to the deduced type. 12665 const FunctionProtoType *Proto = 12666 FD->getType()->getAs<FunctionProtoType>(); 12667 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(), 12668 Proto->getExtProtoInfo())); 12669 } 12670 } 12671 12672 // If the function implicitly returns zero (like 'main') or is naked, 12673 // don't complain about missing return statements. 12674 if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>()) 12675 WP.disableCheckFallThrough(); 12676 12677 // MSVC permits the use of pure specifier (=0) on function definition, 12678 // defined at class scope, warn about this non-standard construct. 12679 if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl()) 12680 Diag(FD->getLocation(), diag::ext_pure_function_definition); 12681 12682 if (!FD->isInvalidDecl()) { 12683 // Don't diagnose unused parameters of defaulted or deleted functions. 12684 if (!FD->isDeleted() && !FD->isDefaulted()) 12685 DiagnoseUnusedParameters(FD->parameters()); 12686 DiagnoseSizeOfParametersAndReturnValue(FD->parameters(), 12687 FD->getReturnType(), FD); 12688 12689 // If this is a structor, we need a vtable. 12690 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD)) 12691 MarkVTableUsed(FD->getLocation(), Constructor->getParent()); 12692 else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD)) 12693 MarkVTableUsed(FD->getLocation(), Destructor->getParent()); 12694 12695 // Try to apply the named return value optimization. We have to check 12696 // if we can do this here because lambdas keep return statements around 12697 // to deduce an implicit return type. 12698 if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() && 12699 !FD->isDependentContext()) 12700 computeNRVO(Body, getCurFunction()); 12701 } 12702 12703 // GNU warning -Wmissing-prototypes: 12704 // Warn if a global function is defined without a previous 12705 // prototype declaration. This warning is issued even if the 12706 // definition itself provides a prototype. The aim is to detect 12707 // global functions that fail to be declared in header files. 12708 const FunctionDecl *PossibleZeroParamPrototype = nullptr; 12709 if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) { 12710 Diag(FD->getLocation(), diag::warn_missing_prototype) << FD; 12711 12712 if (PossibleZeroParamPrototype) { 12713 // We found a declaration that is not a prototype, 12714 // but that could be a zero-parameter prototype 12715 if (TypeSourceInfo *TI = 12716 PossibleZeroParamPrototype->getTypeSourceInfo()) { 12717 TypeLoc TL = TI->getTypeLoc(); 12718 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>()) 12719 Diag(PossibleZeroParamPrototype->getLocation(), 12720 diag::note_declaration_not_a_prototype) 12721 << PossibleZeroParamPrototype 12722 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void"); 12723 } 12724 } 12725 12726 // GNU warning -Wstrict-prototypes 12727 // Warn if K&R function is defined without a previous declaration. 12728 // This warning is issued only if the definition itself does not provide 12729 // a prototype. Only K&R definitions do not provide a prototype. 12730 // An empty list in a function declarator that is part of a definition 12731 // of that function specifies that the function has no parameters 12732 // (C99 6.7.5.3p14) 12733 if (!FD->hasWrittenPrototype() && FD->getNumParams() > 0 && 12734 !LangOpts.CPlusPlus) { 12735 TypeSourceInfo *TI = FD->getTypeSourceInfo(); 12736 TypeLoc TL = TI->getTypeLoc(); 12737 FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>(); 12738 Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2; 12739 } 12740 } 12741 12742 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 12743 const CXXMethodDecl *KeyFunction; 12744 if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) && 12745 MD->isVirtual() && 12746 (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) && 12747 MD == KeyFunction->getCanonicalDecl()) { 12748 // Update the key-function state if necessary for this ABI. 12749 if (FD->isInlined() && 12750 !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) { 12751 Context.setNonKeyFunction(MD); 12752 12753 // If the newly-chosen key function is already defined, then we 12754 // need to mark the vtable as used retroactively. 12755 KeyFunction = Context.getCurrentKeyFunction(MD->getParent()); 12756 const FunctionDecl *Definition; 12757 if (KeyFunction && KeyFunction->isDefined(Definition)) 12758 MarkVTableUsed(Definition->getLocation(), MD->getParent(), true); 12759 } else { 12760 // We just defined they key function; mark the vtable as used. 12761 MarkVTableUsed(FD->getLocation(), MD->getParent(), true); 12762 } 12763 } 12764 } 12765 12766 assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) && 12767 "Function parsing confused"); 12768 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { 12769 assert(MD == getCurMethodDecl() && "Method parsing confused"); 12770 MD->setBody(Body); 12771 if (!MD->isInvalidDecl()) { 12772 DiagnoseUnusedParameters(MD->parameters()); 12773 DiagnoseSizeOfParametersAndReturnValue(MD->parameters(), 12774 MD->getReturnType(), MD); 12775 12776 if (Body) 12777 computeNRVO(Body, getCurFunction()); 12778 } 12779 if (getCurFunction()->ObjCShouldCallSuper) { 12780 Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call) 12781 << MD->getSelector().getAsString(); 12782 getCurFunction()->ObjCShouldCallSuper = false; 12783 } 12784 if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) { 12785 const ObjCMethodDecl *InitMethod = nullptr; 12786 bool isDesignated = 12787 MD->isDesignatedInitializerForTheInterface(&InitMethod); 12788 assert(isDesignated && InitMethod); 12789 (void)isDesignated; 12790 12791 auto superIsNSObject = [&](const ObjCMethodDecl *MD) { 12792 auto IFace = MD->getClassInterface(); 12793 if (!IFace) 12794 return false; 12795 auto SuperD = IFace->getSuperClass(); 12796 if (!SuperD) 12797 return false; 12798 return SuperD->getIdentifier() == 12799 NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject); 12800 }; 12801 // Don't issue this warning for unavailable inits or direct subclasses 12802 // of NSObject. 12803 if (!MD->isUnavailable() && !superIsNSObject(MD)) { 12804 Diag(MD->getLocation(), 12805 diag::warn_objc_designated_init_missing_super_call); 12806 Diag(InitMethod->getLocation(), 12807 diag::note_objc_designated_init_marked_here); 12808 } 12809 getCurFunction()->ObjCWarnForNoDesignatedInitChain = false; 12810 } 12811 if (getCurFunction()->ObjCWarnForNoInitDelegation) { 12812 // Don't issue this warning for unavaialable inits. 12813 if (!MD->isUnavailable()) 12814 Diag(MD->getLocation(), 12815 diag::warn_objc_secondary_init_missing_init_call); 12816 getCurFunction()->ObjCWarnForNoInitDelegation = false; 12817 } 12818 } else { 12819 return nullptr; 12820 } 12821 12822 if (Body && getCurFunction()->HasPotentialAvailabilityViolations) 12823 DiagnoseUnguardedAvailabilityViolations(dcl); 12824 12825 assert(!getCurFunction()->ObjCShouldCallSuper && 12826 "This should only be set for ObjC methods, which should have been " 12827 "handled in the block above."); 12828 12829 // Verify and clean out per-function state. 12830 if (Body && (!FD || !FD->isDefaulted())) { 12831 // C++ constructors that have function-try-blocks can't have return 12832 // statements in the handlers of that block. (C++ [except.handle]p14) 12833 // Verify this. 12834 if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body)) 12835 DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body)); 12836 12837 // Verify that gotos and switch cases don't jump into scopes illegally. 12838 if (getCurFunction()->NeedsScopeChecking() && 12839 !PP.isCodeCompletionEnabled()) 12840 DiagnoseInvalidJumps(Body); 12841 12842 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) { 12843 if (!Destructor->getParent()->isDependentType()) 12844 CheckDestructor(Destructor); 12845 12846 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 12847 Destructor->getParent()); 12848 } 12849 12850 // If any errors have occurred, clear out any temporaries that may have 12851 // been leftover. This ensures that these temporaries won't be picked up for 12852 // deletion in some later function. 12853 if (getDiagnostics().hasErrorOccurred() || 12854 getDiagnostics().getSuppressAllDiagnostics()) { 12855 DiscardCleanupsInEvaluationContext(); 12856 } 12857 if (!getDiagnostics().hasUncompilableErrorOccurred() && 12858 !isa<FunctionTemplateDecl>(dcl)) { 12859 // Since the body is valid, issue any analysis-based warnings that are 12860 // enabled. 12861 ActivePolicy = &WP; 12862 } 12863 12864 if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() && 12865 (!CheckConstexprFunctionDecl(FD) || 12866 !CheckConstexprFunctionBody(FD, Body))) 12867 FD->setInvalidDecl(); 12868 12869 if (FD && FD->hasAttr<NakedAttr>()) { 12870 for (const Stmt *S : Body->children()) { 12871 // Allow local register variables without initializer as they don't 12872 // require prologue. 12873 bool RegisterVariables = false; 12874 if (auto *DS = dyn_cast<DeclStmt>(S)) { 12875 for (const auto *Decl : DS->decls()) { 12876 if (const auto *Var = dyn_cast<VarDecl>(Decl)) { 12877 RegisterVariables = 12878 Var->hasAttr<AsmLabelAttr>() && !Var->hasInit(); 12879 if (!RegisterVariables) 12880 break; 12881 } 12882 } 12883 } 12884 if (RegisterVariables) 12885 continue; 12886 if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) { 12887 Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function); 12888 Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute); 12889 FD->setInvalidDecl(); 12890 break; 12891 } 12892 } 12893 } 12894 12895 assert(ExprCleanupObjects.size() == 12896 ExprEvalContexts.back().NumCleanupObjects && 12897 "Leftover temporaries in function"); 12898 assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function"); 12899 assert(MaybeODRUseExprs.empty() && 12900 "Leftover expressions for odr-use checking"); 12901 } 12902 12903 if (!IsInstantiation) 12904 PopDeclContext(); 12905 12906 PopFunctionScopeInfo(ActivePolicy, dcl); 12907 // If any errors have occurred, clear out any temporaries that may have 12908 // been leftover. This ensures that these temporaries won't be picked up for 12909 // deletion in some later function. 12910 if (getDiagnostics().hasErrorOccurred()) { 12911 DiscardCleanupsInEvaluationContext(); 12912 } 12913 12914 return dcl; 12915 } 12916 12917 /// When we finish delayed parsing of an attribute, we must attach it to the 12918 /// relevant Decl. 12919 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D, 12920 ParsedAttributes &Attrs) { 12921 // Always attach attributes to the underlying decl. 12922 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 12923 D = TD->getTemplatedDecl(); 12924 ProcessDeclAttributeList(S, D, Attrs.getList()); 12925 12926 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D)) 12927 if (Method->isStatic()) 12928 checkThisInStaticMemberFunctionAttributes(Method); 12929 } 12930 12931 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function 12932 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2). 12933 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, 12934 IdentifierInfo &II, Scope *S) { 12935 // Find the scope in which the identifier is injected and the corresponding 12936 // DeclContext. 12937 // FIXME: C89 does not say what happens if there is no enclosing block scope. 12938 // In that case, we inject the declaration into the translation unit scope 12939 // instead. 12940 Scope *BlockScope = S; 12941 while (!BlockScope->isCompoundStmtScope() && BlockScope->getParent()) 12942 BlockScope = BlockScope->getParent(); 12943 12944 Scope *ContextScope = BlockScope; 12945 while (!ContextScope->getEntity()) 12946 ContextScope = ContextScope->getParent(); 12947 ContextRAII SavedContext(*this, ContextScope->getEntity()); 12948 12949 // Before we produce a declaration for an implicitly defined 12950 // function, see whether there was a locally-scoped declaration of 12951 // this name as a function or variable. If so, use that 12952 // (non-visible) declaration, and complain about it. 12953 NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II); 12954 if (ExternCPrev) { 12955 // We still need to inject the function into the enclosing block scope so 12956 // that later (non-call) uses can see it. 12957 PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false); 12958 12959 // C89 footnote 38: 12960 // If in fact it is not defined as having type "function returning int", 12961 // the behavior is undefined. 12962 if (!isa<FunctionDecl>(ExternCPrev) || 12963 !Context.typesAreCompatible( 12964 cast<FunctionDecl>(ExternCPrev)->getType(), 12965 Context.getFunctionNoProtoType(Context.IntTy))) { 12966 Diag(Loc, diag::ext_use_out_of_scope_declaration) 12967 << ExternCPrev << !getLangOpts().C99; 12968 Diag(ExternCPrev->getLocation(), diag::note_previous_declaration); 12969 return ExternCPrev; 12970 } 12971 } 12972 12973 // Extension in C99. Legal in C90, but warn about it. 12974 // OpenCL v2.0 s6.9.u - Implicit function declaration is not supported. 12975 unsigned diag_id; 12976 if (II.getName().startswith("__builtin_")) 12977 diag_id = diag::warn_builtin_unknown; 12978 else if (getLangOpts().C99 || getLangOpts().OpenCL) 12979 diag_id = diag::ext_implicit_function_decl; 12980 else 12981 diag_id = diag::warn_implicit_function_decl; 12982 Diag(Loc, diag_id) << &II << getLangOpts().OpenCL; 12983 12984 // If we found a prior declaration of this function, don't bother building 12985 // another one. We've already pushed that one into scope, so there's nothing 12986 // more to do. 12987 if (ExternCPrev) 12988 return ExternCPrev; 12989 12990 // Because typo correction is expensive, only do it if the implicit 12991 // function declaration is going to be treated as an error. 12992 if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) { 12993 TypoCorrection Corrected; 12994 if (S && 12995 (Corrected = CorrectTypo( 12996 DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr, 12997 llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError))) 12998 diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion), 12999 /*ErrorRecovery*/false); 13000 } 13001 13002 // Set a Declarator for the implicit definition: int foo(); 13003 const char *Dummy; 13004 AttributeFactory attrFactory; 13005 DeclSpec DS(attrFactory); 13006 unsigned DiagID; 13007 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID, 13008 Context.getPrintingPolicy()); 13009 (void)Error; // Silence warning. 13010 assert(!Error && "Error setting up implicit decl!"); 13011 SourceLocation NoLoc; 13012 Declarator D(DS, DeclaratorContext::BlockContext); 13013 D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false, 13014 /*IsAmbiguous=*/false, 13015 /*LParenLoc=*/NoLoc, 13016 /*Params=*/nullptr, 13017 /*NumParams=*/0, 13018 /*EllipsisLoc=*/NoLoc, 13019 /*RParenLoc=*/NoLoc, 13020 /*TypeQuals=*/0, 13021 /*RefQualifierIsLvalueRef=*/true, 13022 /*RefQualifierLoc=*/NoLoc, 13023 /*ConstQualifierLoc=*/NoLoc, 13024 /*VolatileQualifierLoc=*/NoLoc, 13025 /*RestrictQualifierLoc=*/NoLoc, 13026 /*MutableLoc=*/NoLoc, 13027 EST_None, 13028 /*ESpecRange=*/SourceRange(), 13029 /*Exceptions=*/nullptr, 13030 /*ExceptionRanges=*/nullptr, 13031 /*NumExceptions=*/0, 13032 /*NoexceptExpr=*/nullptr, 13033 /*ExceptionSpecTokens=*/nullptr, 13034 /*DeclsInPrototype=*/None, 13035 Loc, Loc, D), 13036 DS.getAttributes(), 13037 SourceLocation()); 13038 D.SetIdentifier(&II, Loc); 13039 13040 // Insert this function into the enclosing block scope. 13041 FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(BlockScope, D)); 13042 FD->setImplicit(); 13043 13044 AddKnownFunctionAttributes(FD); 13045 13046 return FD; 13047 } 13048 13049 /// \brief Adds any function attributes that we know a priori based on 13050 /// the declaration of this function. 13051 /// 13052 /// These attributes can apply both to implicitly-declared builtins 13053 /// (like __builtin___printf_chk) or to library-declared functions 13054 /// like NSLog or printf. 13055 /// 13056 /// We need to check for duplicate attributes both here and where user-written 13057 /// attributes are applied to declarations. 13058 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) { 13059 if (FD->isInvalidDecl()) 13060 return; 13061 13062 // If this is a built-in function, map its builtin attributes to 13063 // actual attributes. 13064 if (unsigned BuiltinID = FD->getBuiltinID()) { 13065 // Handle printf-formatting attributes. 13066 unsigned FormatIdx; 13067 bool HasVAListArg; 13068 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { 13069 if (!FD->hasAttr<FormatAttr>()) { 13070 const char *fmt = "printf"; 13071 unsigned int NumParams = FD->getNumParams(); 13072 if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf) 13073 FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType()) 13074 fmt = "NSString"; 13075 FD->addAttr(FormatAttr::CreateImplicit(Context, 13076 &Context.Idents.get(fmt), 13077 FormatIdx+1, 13078 HasVAListArg ? 0 : FormatIdx+2, 13079 FD->getLocation())); 13080 } 13081 } 13082 if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx, 13083 HasVAListArg)) { 13084 if (!FD->hasAttr<FormatAttr>()) 13085 FD->addAttr(FormatAttr::CreateImplicit(Context, 13086 &Context.Idents.get("scanf"), 13087 FormatIdx+1, 13088 HasVAListArg ? 0 : FormatIdx+2, 13089 FD->getLocation())); 13090 } 13091 13092 // Mark const if we don't care about errno and that is the only thing 13093 // preventing the function from being const. This allows IRgen to use LLVM 13094 // intrinsics for such functions. 13095 if (!getLangOpts().MathErrno && !FD->hasAttr<ConstAttr>() && 13096 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) 13097 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 13098 13099 // We make "fma" on GNU or Windows const because we know it does not set 13100 // errno in those environments even though it could set errno based on the 13101 // C standard. 13102 const llvm::Triple &Trip = Context.getTargetInfo().getTriple(); 13103 if ((Trip.isGNUEnvironment() || Trip.isOSMSVCRT()) && 13104 !FD->hasAttr<ConstAttr>()) { 13105 switch (BuiltinID) { 13106 case Builtin::BI__builtin_fma: 13107 case Builtin::BI__builtin_fmaf: 13108 case Builtin::BI__builtin_fmal: 13109 case Builtin::BIfma: 13110 case Builtin::BIfmaf: 13111 case Builtin::BIfmal: 13112 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 13113 break; 13114 default: 13115 break; 13116 } 13117 } 13118 13119 if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) && 13120 !FD->hasAttr<ReturnsTwiceAttr>()) 13121 FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context, 13122 FD->getLocation())); 13123 if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>()) 13124 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation())); 13125 if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>()) 13126 FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation())); 13127 if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>()) 13128 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation())); 13129 if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) && 13130 !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) { 13131 // Add the appropriate attribute, depending on the CUDA compilation mode 13132 // and which target the builtin belongs to. For example, during host 13133 // compilation, aux builtins are __device__, while the rest are __host__. 13134 if (getLangOpts().CUDAIsDevice != 13135 Context.BuiltinInfo.isAuxBuiltinID(BuiltinID)) 13136 FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation())); 13137 else 13138 FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation())); 13139 } 13140 } 13141 13142 // If C++ exceptions are enabled but we are told extern "C" functions cannot 13143 // throw, add an implicit nothrow attribute to any extern "C" function we come 13144 // across. 13145 if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind && 13146 FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) { 13147 const auto *FPT = FD->getType()->getAs<FunctionProtoType>(); 13148 if (!FPT || FPT->getExceptionSpecType() == EST_None) 13149 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation())); 13150 } 13151 13152 IdentifierInfo *Name = FD->getIdentifier(); 13153 if (!Name) 13154 return; 13155 if ((!getLangOpts().CPlusPlus && 13156 FD->getDeclContext()->isTranslationUnit()) || 13157 (isa<LinkageSpecDecl>(FD->getDeclContext()) && 13158 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() == 13159 LinkageSpecDecl::lang_c)) { 13160 // Okay: this could be a libc/libm/Objective-C function we know 13161 // about. 13162 } else 13163 return; 13164 13165 if (Name->isStr("asprintf") || Name->isStr("vasprintf")) { 13166 // FIXME: asprintf and vasprintf aren't C99 functions. Should they be 13167 // target-specific builtins, perhaps? 13168 if (!FD->hasAttr<FormatAttr>()) 13169 FD->addAttr(FormatAttr::CreateImplicit(Context, 13170 &Context.Idents.get("printf"), 2, 13171 Name->isStr("vasprintf") ? 0 : 3, 13172 FD->getLocation())); 13173 } 13174 13175 if (Name->isStr("__CFStringMakeConstantString")) { 13176 // We already have a __builtin___CFStringMakeConstantString, 13177 // but builds that use -fno-constant-cfstrings don't go through that. 13178 if (!FD->hasAttr<FormatArgAttr>()) 13179 FD->addAttr(FormatArgAttr::CreateImplicit(Context, ParamIdx(1, FD), 13180 FD->getLocation())); 13181 } 13182 } 13183 13184 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T, 13185 TypeSourceInfo *TInfo) { 13186 assert(D.getIdentifier() && "Wrong callback for declspec without declarator"); 13187 assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); 13188 13189 if (!TInfo) { 13190 assert(D.isInvalidType() && "no declarator info for valid type"); 13191 TInfo = Context.getTrivialTypeSourceInfo(T); 13192 } 13193 13194 // Scope manipulation handled by caller. 13195 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext, 13196 D.getLocStart(), 13197 D.getIdentifierLoc(), 13198 D.getIdentifier(), 13199 TInfo); 13200 13201 // Bail out immediately if we have an invalid declaration. 13202 if (D.isInvalidType()) { 13203 NewTD->setInvalidDecl(); 13204 return NewTD; 13205 } 13206 13207 if (D.getDeclSpec().isModulePrivateSpecified()) { 13208 if (CurContext->isFunctionOrMethod()) 13209 Diag(NewTD->getLocation(), diag::err_module_private_local) 13210 << 2 << NewTD->getDeclName() 13211 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 13212 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 13213 else 13214 NewTD->setModulePrivate(); 13215 } 13216 13217 // C++ [dcl.typedef]p8: 13218 // If the typedef declaration defines an unnamed class (or 13219 // enum), the first typedef-name declared by the declaration 13220 // to be that class type (or enum type) is used to denote the 13221 // class type (or enum type) for linkage purposes only. 13222 // We need to check whether the type was declared in the declaration. 13223 switch (D.getDeclSpec().getTypeSpecType()) { 13224 case TST_enum: 13225 case TST_struct: 13226 case TST_interface: 13227 case TST_union: 13228 case TST_class: { 13229 TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); 13230 setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD); 13231 break; 13232 } 13233 13234 default: 13235 break; 13236 } 13237 13238 return NewTD; 13239 } 13240 13241 /// \brief Check that this is a valid underlying type for an enum declaration. 13242 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) { 13243 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); 13244 QualType T = TI->getType(); 13245 13246 if (T->isDependentType()) 13247 return false; 13248 13249 if (const BuiltinType *BT = T->getAs<BuiltinType>()) 13250 if (BT->isInteger()) 13251 return false; 13252 13253 Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T; 13254 return true; 13255 } 13256 13257 /// Check whether this is a valid redeclaration of a previous enumeration. 13258 /// \return true if the redeclaration was invalid. 13259 bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped, 13260 QualType EnumUnderlyingTy, bool IsFixed, 13261 const EnumDecl *Prev) { 13262 if (IsScoped != Prev->isScoped()) { 13263 Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch) 13264 << Prev->isScoped(); 13265 Diag(Prev->getLocation(), diag::note_previous_declaration); 13266 return true; 13267 } 13268 13269 if (IsFixed && Prev->isFixed()) { 13270 if (!EnumUnderlyingTy->isDependentType() && 13271 !Prev->getIntegerType()->isDependentType() && 13272 !Context.hasSameUnqualifiedType(EnumUnderlyingTy, 13273 Prev->getIntegerType())) { 13274 // TODO: Highlight the underlying type of the redeclaration. 13275 Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch) 13276 << EnumUnderlyingTy << Prev->getIntegerType(); 13277 Diag(Prev->getLocation(), diag::note_previous_declaration) 13278 << Prev->getIntegerTypeRange(); 13279 return true; 13280 } 13281 } else if (IsFixed != Prev->isFixed()) { 13282 Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch) 13283 << Prev->isFixed(); 13284 Diag(Prev->getLocation(), diag::note_previous_declaration); 13285 return true; 13286 } 13287 13288 return false; 13289 } 13290 13291 /// \brief Get diagnostic %select index for tag kind for 13292 /// redeclaration diagnostic message. 13293 /// WARNING: Indexes apply to particular diagnostics only! 13294 /// 13295 /// \returns diagnostic %select index. 13296 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) { 13297 switch (Tag) { 13298 case TTK_Struct: return 0; 13299 case TTK_Interface: return 1; 13300 case TTK_Class: return 2; 13301 default: llvm_unreachable("Invalid tag kind for redecl diagnostic!"); 13302 } 13303 } 13304 13305 /// \brief Determine if tag kind is a class-key compatible with 13306 /// class for redeclaration (class, struct, or __interface). 13307 /// 13308 /// \returns true iff the tag kind is compatible. 13309 static bool isClassCompatTagKind(TagTypeKind Tag) 13310 { 13311 return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface; 13312 } 13313 13314 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl, 13315 TagTypeKind TTK) { 13316 if (isa<TypedefDecl>(PrevDecl)) 13317 return NTK_Typedef; 13318 else if (isa<TypeAliasDecl>(PrevDecl)) 13319 return NTK_TypeAlias; 13320 else if (isa<ClassTemplateDecl>(PrevDecl)) 13321 return NTK_Template; 13322 else if (isa<TypeAliasTemplateDecl>(PrevDecl)) 13323 return NTK_TypeAliasTemplate; 13324 else if (isa<TemplateTemplateParmDecl>(PrevDecl)) 13325 return NTK_TemplateTemplateArgument; 13326 switch (TTK) { 13327 case TTK_Struct: 13328 case TTK_Interface: 13329 case TTK_Class: 13330 return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct; 13331 case TTK_Union: 13332 return NTK_NonUnion; 13333 case TTK_Enum: 13334 return NTK_NonEnum; 13335 } 13336 llvm_unreachable("invalid TTK"); 13337 } 13338 13339 /// \brief Determine whether a tag with a given kind is acceptable 13340 /// as a redeclaration of the given tag declaration. 13341 /// 13342 /// \returns true if the new tag kind is acceptable, false otherwise. 13343 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous, 13344 TagTypeKind NewTag, bool isDefinition, 13345 SourceLocation NewTagLoc, 13346 const IdentifierInfo *Name) { 13347 // C++ [dcl.type.elab]p3: 13348 // The class-key or enum keyword present in the 13349 // elaborated-type-specifier shall agree in kind with the 13350 // declaration to which the name in the elaborated-type-specifier 13351 // refers. This rule also applies to the form of 13352 // elaborated-type-specifier that declares a class-name or 13353 // friend class since it can be construed as referring to the 13354 // definition of the class. Thus, in any 13355 // elaborated-type-specifier, the enum keyword shall be used to 13356 // refer to an enumeration (7.2), the union class-key shall be 13357 // used to refer to a union (clause 9), and either the class or 13358 // struct class-key shall be used to refer to a class (clause 9) 13359 // declared using the class or struct class-key. 13360 TagTypeKind OldTag = Previous->getTagKind(); 13361 if (!isDefinition || !isClassCompatTagKind(NewTag)) 13362 if (OldTag == NewTag) 13363 return true; 13364 13365 if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) { 13366 // Warn about the struct/class tag mismatch. 13367 bool isTemplate = false; 13368 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous)) 13369 isTemplate = Record->getDescribedClassTemplate(); 13370 13371 if (inTemplateInstantiation()) { 13372 // In a template instantiation, do not offer fix-its for tag mismatches 13373 // since they usually mess up the template instead of fixing the problem. 13374 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 13375 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 13376 << getRedeclDiagFromTagKind(OldTag); 13377 return true; 13378 } 13379 13380 if (isDefinition) { 13381 // On definitions, check previous tags and issue a fix-it for each 13382 // one that doesn't match the current tag. 13383 if (Previous->getDefinition()) { 13384 // Don't suggest fix-its for redefinitions. 13385 return true; 13386 } 13387 13388 bool previousMismatch = false; 13389 for (auto I : Previous->redecls()) { 13390 if (I->getTagKind() != NewTag) { 13391 if (!previousMismatch) { 13392 previousMismatch = true; 13393 Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch) 13394 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 13395 << getRedeclDiagFromTagKind(I->getTagKind()); 13396 } 13397 Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion) 13398 << getRedeclDiagFromTagKind(NewTag) 13399 << FixItHint::CreateReplacement(I->getInnerLocStart(), 13400 TypeWithKeyword::getTagTypeKindName(NewTag)); 13401 } 13402 } 13403 return true; 13404 } 13405 13406 // Check for a previous definition. If current tag and definition 13407 // are same type, do nothing. If no definition, but disagree with 13408 // with previous tag type, give a warning, but no fix-it. 13409 const TagDecl *Redecl = Previous->getDefinition() ? 13410 Previous->getDefinition() : Previous; 13411 if (Redecl->getTagKind() == NewTag) { 13412 return true; 13413 } 13414 13415 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 13416 << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name 13417 << getRedeclDiagFromTagKind(OldTag); 13418 Diag(Redecl->getLocation(), diag::note_previous_use); 13419 13420 // If there is a previous definition, suggest a fix-it. 13421 if (Previous->getDefinition()) { 13422 Diag(NewTagLoc, diag::note_struct_class_suggestion) 13423 << getRedeclDiagFromTagKind(Redecl->getTagKind()) 13424 << FixItHint::CreateReplacement(SourceRange(NewTagLoc), 13425 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind())); 13426 } 13427 13428 return true; 13429 } 13430 return false; 13431 } 13432 13433 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name 13434 /// from an outer enclosing namespace or file scope inside a friend declaration. 13435 /// This should provide the commented out code in the following snippet: 13436 /// namespace N { 13437 /// struct X; 13438 /// namespace M { 13439 /// struct Y { friend struct /*N::*/ X; }; 13440 /// } 13441 /// } 13442 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S, 13443 SourceLocation NameLoc) { 13444 // While the decl is in a namespace, do repeated lookup of that name and see 13445 // if we get the same namespace back. If we do not, continue until 13446 // translation unit scope, at which point we have a fully qualified NNS. 13447 SmallVector<IdentifierInfo *, 4> Namespaces; 13448 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 13449 for (; !DC->isTranslationUnit(); DC = DC->getParent()) { 13450 // This tag should be declared in a namespace, which can only be enclosed by 13451 // other namespaces. Bail if there's an anonymous namespace in the chain. 13452 NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC); 13453 if (!Namespace || Namespace->isAnonymousNamespace()) 13454 return FixItHint(); 13455 IdentifierInfo *II = Namespace->getIdentifier(); 13456 Namespaces.push_back(II); 13457 NamedDecl *Lookup = SemaRef.LookupSingleName( 13458 S, II, NameLoc, Sema::LookupNestedNameSpecifierName); 13459 if (Lookup == Namespace) 13460 break; 13461 } 13462 13463 // Once we have all the namespaces, reverse them to go outermost first, and 13464 // build an NNS. 13465 SmallString<64> Insertion; 13466 llvm::raw_svector_ostream OS(Insertion); 13467 if (DC->isTranslationUnit()) 13468 OS << "::"; 13469 std::reverse(Namespaces.begin(), Namespaces.end()); 13470 for (auto *II : Namespaces) 13471 OS << II->getName() << "::"; 13472 return FixItHint::CreateInsertion(NameLoc, Insertion); 13473 } 13474 13475 /// \brief Determine whether a tag originally declared in context \p OldDC can 13476 /// be redeclared with an unqualified name in \p NewDC (assuming name lookup 13477 /// found a declaration in \p OldDC as a previous decl, perhaps through a 13478 /// using-declaration). 13479 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC, 13480 DeclContext *NewDC) { 13481 OldDC = OldDC->getRedeclContext(); 13482 NewDC = NewDC->getRedeclContext(); 13483 13484 if (OldDC->Equals(NewDC)) 13485 return true; 13486 13487 // In MSVC mode, we allow a redeclaration if the contexts are related (either 13488 // encloses the other). 13489 if (S.getLangOpts().MSVCCompat && 13490 (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC))) 13491 return true; 13492 13493 return false; 13494 } 13495 13496 /// \brief This is invoked when we see 'struct foo' or 'struct {'. In the 13497 /// former case, Name will be non-null. In the later case, Name will be null. 13498 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a 13499 /// reference/declaration/definition of a tag. 13500 /// 13501 /// \param IsTypeSpecifier \c true if this is a type-specifier (or 13502 /// trailing-type-specifier) other than one in an alias-declaration. 13503 /// 13504 /// \param SkipBody If non-null, will be set to indicate if the caller should 13505 /// skip the definition of this tag and treat it as if it were a declaration. 13506 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, 13507 SourceLocation KWLoc, CXXScopeSpec &SS, 13508 IdentifierInfo *Name, SourceLocation NameLoc, 13509 AttributeList *Attr, AccessSpecifier AS, 13510 SourceLocation ModulePrivateLoc, 13511 MultiTemplateParamsArg TemplateParameterLists, 13512 bool &OwnedDecl, bool &IsDependent, 13513 SourceLocation ScopedEnumKWLoc, 13514 bool ScopedEnumUsesClassTag, 13515 TypeResult UnderlyingType, 13516 bool IsTypeSpecifier, bool IsTemplateParamOrArg, 13517 SkipBodyInfo *SkipBody) { 13518 // If this is not a definition, it must have a name. 13519 IdentifierInfo *OrigName = Name; 13520 assert((Name != nullptr || TUK == TUK_Definition) && 13521 "Nameless record must be a definition!"); 13522 assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference); 13523 13524 OwnedDecl = false; 13525 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 13526 bool ScopedEnum = ScopedEnumKWLoc.isValid(); 13527 13528 // FIXME: Check member specializations more carefully. 13529 bool isMemberSpecialization = false; 13530 bool Invalid = false; 13531 13532 // We only need to do this matching if we have template parameters 13533 // or a scope specifier, which also conveniently avoids this work 13534 // for non-C++ cases. 13535 if (TemplateParameterLists.size() > 0 || 13536 (SS.isNotEmpty() && TUK != TUK_Reference)) { 13537 if (TemplateParameterList *TemplateParams = 13538 MatchTemplateParametersToScopeSpecifier( 13539 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists, 13540 TUK == TUK_Friend, isMemberSpecialization, Invalid)) { 13541 if (Kind == TTK_Enum) { 13542 Diag(KWLoc, diag::err_enum_template); 13543 return nullptr; 13544 } 13545 13546 if (TemplateParams->size() > 0) { 13547 // This is a declaration or definition of a class template (which may 13548 // be a member of another template). 13549 13550 if (Invalid) 13551 return nullptr; 13552 13553 OwnedDecl = false; 13554 DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc, 13555 SS, Name, NameLoc, Attr, 13556 TemplateParams, AS, 13557 ModulePrivateLoc, 13558 /*FriendLoc*/SourceLocation(), 13559 TemplateParameterLists.size()-1, 13560 TemplateParameterLists.data(), 13561 SkipBody); 13562 return Result.get(); 13563 } else { 13564 // The "template<>" header is extraneous. 13565 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 13566 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 13567 isMemberSpecialization = true; 13568 } 13569 } 13570 } 13571 13572 // Figure out the underlying type if this a enum declaration. We need to do 13573 // this early, because it's needed to detect if this is an incompatible 13574 // redeclaration. 13575 llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying; 13576 bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum; 13577 13578 if (Kind == TTK_Enum) { 13579 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) { 13580 // No underlying type explicitly specified, or we failed to parse the 13581 // type, default to int. 13582 EnumUnderlying = Context.IntTy.getTypePtr(); 13583 } else if (UnderlyingType.get()) { 13584 // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an 13585 // integral type; any cv-qualification is ignored. 13586 TypeSourceInfo *TI = nullptr; 13587 GetTypeFromParser(UnderlyingType.get(), &TI); 13588 EnumUnderlying = TI; 13589 13590 if (CheckEnumUnderlyingType(TI)) 13591 // Recover by falling back to int. 13592 EnumUnderlying = Context.IntTy.getTypePtr(); 13593 13594 if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI, 13595 UPPC_FixedUnderlyingType)) 13596 EnumUnderlying = Context.IntTy.getTypePtr(); 13597 13598 } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 13599 // For MSVC ABI compatibility, unfixed enums must use an underlying type 13600 // of 'int'. However, if this is an unfixed forward declaration, don't set 13601 // the underlying type unless the user enables -fms-compatibility. This 13602 // makes unfixed forward declared enums incomplete and is more conforming. 13603 if (TUK == TUK_Definition || getLangOpts().MSVCCompat) 13604 EnumUnderlying = Context.IntTy.getTypePtr(); 13605 } 13606 } 13607 13608 DeclContext *SearchDC = CurContext; 13609 DeclContext *DC = CurContext; 13610 bool isStdBadAlloc = false; 13611 bool isStdAlignValT = false; 13612 13613 RedeclarationKind Redecl = forRedeclarationInCurContext(); 13614 if (TUK == TUK_Friend || TUK == TUK_Reference) 13615 Redecl = NotForRedeclaration; 13616 13617 /// Create a new tag decl in C/ObjC. Since the ODR-like semantics for ObjC/C 13618 /// implemented asks for structural equivalence checking, the returned decl 13619 /// here is passed back to the parser, allowing the tag body to be parsed. 13620 auto createTagFromNewDecl = [&]() -> TagDecl * { 13621 assert(!getLangOpts().CPlusPlus && "not meant for C++ usage"); 13622 // If there is an identifier, use the location of the identifier as the 13623 // location of the decl, otherwise use the location of the struct/union 13624 // keyword. 13625 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; 13626 TagDecl *New = nullptr; 13627 13628 if (Kind == TTK_Enum) { 13629 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, nullptr, 13630 ScopedEnum, ScopedEnumUsesClassTag, IsFixed); 13631 // If this is an undefined enum, bail. 13632 if (TUK != TUK_Definition && !Invalid) 13633 return nullptr; 13634 if (EnumUnderlying) { 13635 EnumDecl *ED = cast<EnumDecl>(New); 13636 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo *>()) 13637 ED->setIntegerTypeSourceInfo(TI); 13638 else 13639 ED->setIntegerType(QualType(EnumUnderlying.get<const Type *>(), 0)); 13640 ED->setPromotionType(ED->getIntegerType()); 13641 } 13642 } else { // struct/union 13643 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 13644 nullptr); 13645 } 13646 13647 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) { 13648 // Add alignment attributes if necessary; these attributes are checked 13649 // when the ASTContext lays out the structure. 13650 // 13651 // It is important for implementing the correct semantics that this 13652 // happen here (in ActOnTag). The #pragma pack stack is 13653 // maintained as a result of parser callbacks which can occur at 13654 // many points during the parsing of a struct declaration (because 13655 // the #pragma tokens are effectively skipped over during the 13656 // parsing of the struct). 13657 if (TUK == TUK_Definition) { 13658 AddAlignmentAttributesForRecord(RD); 13659 AddMsStructLayoutForRecord(RD); 13660 } 13661 } 13662 New->setLexicalDeclContext(CurContext); 13663 return New; 13664 }; 13665 13666 LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl); 13667 if (Name && SS.isNotEmpty()) { 13668 // We have a nested-name tag ('struct foo::bar'). 13669 13670 // Check for invalid 'foo::'. 13671 if (SS.isInvalid()) { 13672 Name = nullptr; 13673 goto CreateNewDecl; 13674 } 13675 13676 // If this is a friend or a reference to a class in a dependent 13677 // context, don't try to make a decl for it. 13678 if (TUK == TUK_Friend || TUK == TUK_Reference) { 13679 DC = computeDeclContext(SS, false); 13680 if (!DC) { 13681 IsDependent = true; 13682 return nullptr; 13683 } 13684 } else { 13685 DC = computeDeclContext(SS, true); 13686 if (!DC) { 13687 Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec) 13688 << SS.getRange(); 13689 return nullptr; 13690 } 13691 } 13692 13693 if (RequireCompleteDeclContext(SS, DC)) 13694 return nullptr; 13695 13696 SearchDC = DC; 13697 // Look-up name inside 'foo::'. 13698 LookupQualifiedName(Previous, DC); 13699 13700 if (Previous.isAmbiguous()) 13701 return nullptr; 13702 13703 if (Previous.empty()) { 13704 // Name lookup did not find anything. However, if the 13705 // nested-name-specifier refers to the current instantiation, 13706 // and that current instantiation has any dependent base 13707 // classes, we might find something at instantiation time: treat 13708 // this as a dependent elaborated-type-specifier. 13709 // But this only makes any sense for reference-like lookups. 13710 if (Previous.wasNotFoundInCurrentInstantiation() && 13711 (TUK == TUK_Reference || TUK == TUK_Friend)) { 13712 IsDependent = true; 13713 return nullptr; 13714 } 13715 13716 // A tag 'foo::bar' must already exist. 13717 Diag(NameLoc, diag::err_not_tag_in_scope) 13718 << Kind << Name << DC << SS.getRange(); 13719 Name = nullptr; 13720 Invalid = true; 13721 goto CreateNewDecl; 13722 } 13723 } else if (Name) { 13724 // C++14 [class.mem]p14: 13725 // If T is the name of a class, then each of the following shall have a 13726 // name different from T: 13727 // -- every member of class T that is itself a type 13728 if (TUK != TUK_Reference && TUK != TUK_Friend && 13729 DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc))) 13730 return nullptr; 13731 13732 // If this is a named struct, check to see if there was a previous forward 13733 // declaration or definition. 13734 // FIXME: We're looking into outer scopes here, even when we 13735 // shouldn't be. Doing so can result in ambiguities that we 13736 // shouldn't be diagnosing. 13737 LookupName(Previous, S); 13738 13739 // When declaring or defining a tag, ignore ambiguities introduced 13740 // by types using'ed into this scope. 13741 if (Previous.isAmbiguous() && 13742 (TUK == TUK_Definition || TUK == TUK_Declaration)) { 13743 LookupResult::Filter F = Previous.makeFilter(); 13744 while (F.hasNext()) { 13745 NamedDecl *ND = F.next(); 13746 if (!ND->getDeclContext()->getRedeclContext()->Equals( 13747 SearchDC->getRedeclContext())) 13748 F.erase(); 13749 } 13750 F.done(); 13751 } 13752 13753 // C++11 [namespace.memdef]p3: 13754 // If the name in a friend declaration is neither qualified nor 13755 // a template-id and the declaration is a function or an 13756 // elaborated-type-specifier, the lookup to determine whether 13757 // the entity has been previously declared shall not consider 13758 // any scopes outside the innermost enclosing namespace. 13759 // 13760 // MSVC doesn't implement the above rule for types, so a friend tag 13761 // declaration may be a redeclaration of a type declared in an enclosing 13762 // scope. They do implement this rule for friend functions. 13763 // 13764 // Does it matter that this should be by scope instead of by 13765 // semantic context? 13766 if (!Previous.empty() && TUK == TUK_Friend) { 13767 DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext(); 13768 LookupResult::Filter F = Previous.makeFilter(); 13769 bool FriendSawTagOutsideEnclosingNamespace = false; 13770 while (F.hasNext()) { 13771 NamedDecl *ND = F.next(); 13772 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 13773 if (DC->isFileContext() && 13774 !EnclosingNS->Encloses(ND->getDeclContext())) { 13775 if (getLangOpts().MSVCCompat) 13776 FriendSawTagOutsideEnclosingNamespace = true; 13777 else 13778 F.erase(); 13779 } 13780 } 13781 F.done(); 13782 13783 // Diagnose this MSVC extension in the easy case where lookup would have 13784 // unambiguously found something outside the enclosing namespace. 13785 if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) { 13786 NamedDecl *ND = Previous.getFoundDecl(); 13787 Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace) 13788 << createFriendTagNNSFixIt(*this, ND, S, NameLoc); 13789 } 13790 } 13791 13792 // Note: there used to be some attempt at recovery here. 13793 if (Previous.isAmbiguous()) 13794 return nullptr; 13795 13796 if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) { 13797 // FIXME: This makes sure that we ignore the contexts associated 13798 // with C structs, unions, and enums when looking for a matching 13799 // tag declaration or definition. See the similar lookup tweak 13800 // in Sema::LookupName; is there a better way to deal with this? 13801 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC)) 13802 SearchDC = SearchDC->getParent(); 13803 } 13804 } 13805 13806 if (Previous.isSingleResult() && 13807 Previous.getFoundDecl()->isTemplateParameter()) { 13808 // Maybe we will complain about the shadowed template parameter. 13809 DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl()); 13810 // Just pretend that we didn't see the previous declaration. 13811 Previous.clear(); 13812 } 13813 13814 if (getLangOpts().CPlusPlus && Name && DC && StdNamespace && 13815 DC->Equals(getStdNamespace())) { 13816 if (Name->isStr("bad_alloc")) { 13817 // This is a declaration of or a reference to "std::bad_alloc". 13818 isStdBadAlloc = true; 13819 13820 // If std::bad_alloc has been implicitly declared (but made invisible to 13821 // name lookup), fill in this implicit declaration as the previous 13822 // declaration, so that the declarations get chained appropriately. 13823 if (Previous.empty() && StdBadAlloc) 13824 Previous.addDecl(getStdBadAlloc()); 13825 } else if (Name->isStr("align_val_t")) { 13826 isStdAlignValT = true; 13827 if (Previous.empty() && StdAlignValT) 13828 Previous.addDecl(getStdAlignValT()); 13829 } 13830 } 13831 13832 // If we didn't find a previous declaration, and this is a reference 13833 // (or friend reference), move to the correct scope. In C++, we 13834 // also need to do a redeclaration lookup there, just in case 13835 // there's a shadow friend decl. 13836 if (Name && Previous.empty() && 13837 (TUK == TUK_Reference || TUK == TUK_Friend || IsTemplateParamOrArg)) { 13838 if (Invalid) goto CreateNewDecl; 13839 assert(SS.isEmpty()); 13840 13841 if (TUK == TUK_Reference || IsTemplateParamOrArg) { 13842 // C++ [basic.scope.pdecl]p5: 13843 // -- for an elaborated-type-specifier of the form 13844 // 13845 // class-key identifier 13846 // 13847 // if the elaborated-type-specifier is used in the 13848 // decl-specifier-seq or parameter-declaration-clause of a 13849 // function defined in namespace scope, the identifier is 13850 // declared as a class-name in the namespace that contains 13851 // the declaration; otherwise, except as a friend 13852 // declaration, the identifier is declared in the smallest 13853 // non-class, non-function-prototype scope that contains the 13854 // declaration. 13855 // 13856 // C99 6.7.2.3p8 has a similar (but not identical!) provision for 13857 // C structs and unions. 13858 // 13859 // It is an error in C++ to declare (rather than define) an enum 13860 // type, including via an elaborated type specifier. We'll 13861 // diagnose that later; for now, declare the enum in the same 13862 // scope as we would have picked for any other tag type. 13863 // 13864 // GNU C also supports this behavior as part of its incomplete 13865 // enum types extension, while GNU C++ does not. 13866 // 13867 // Find the context where we'll be declaring the tag. 13868 // FIXME: We would like to maintain the current DeclContext as the 13869 // lexical context, 13870 SearchDC = getTagInjectionContext(SearchDC); 13871 13872 // Find the scope where we'll be declaring the tag. 13873 S = getTagInjectionScope(S, getLangOpts()); 13874 } else { 13875 assert(TUK == TUK_Friend); 13876 // C++ [namespace.memdef]p3: 13877 // If a friend declaration in a non-local class first declares a 13878 // class or function, the friend class or function is a member of 13879 // the innermost enclosing namespace. 13880 SearchDC = SearchDC->getEnclosingNamespaceContext(); 13881 } 13882 13883 // In C++, we need to do a redeclaration lookup to properly 13884 // diagnose some problems. 13885 // FIXME: redeclaration lookup is also used (with and without C++) to find a 13886 // hidden declaration so that we don't get ambiguity errors when using a 13887 // type declared by an elaborated-type-specifier. In C that is not correct 13888 // and we should instead merge compatible types found by lookup. 13889 if (getLangOpts().CPlusPlus) { 13890 Previous.setRedeclarationKind(forRedeclarationInCurContext()); 13891 LookupQualifiedName(Previous, SearchDC); 13892 } else { 13893 Previous.setRedeclarationKind(forRedeclarationInCurContext()); 13894 LookupName(Previous, S); 13895 } 13896 } 13897 13898 // If we have a known previous declaration to use, then use it. 13899 if (Previous.empty() && SkipBody && SkipBody->Previous) 13900 Previous.addDecl(SkipBody->Previous); 13901 13902 if (!Previous.empty()) { 13903 NamedDecl *PrevDecl = Previous.getFoundDecl(); 13904 NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl(); 13905 13906 // It's okay to have a tag decl in the same scope as a typedef 13907 // which hides a tag decl in the same scope. Finding this 13908 // insanity with a redeclaration lookup can only actually happen 13909 // in C++. 13910 // 13911 // This is also okay for elaborated-type-specifiers, which is 13912 // technically forbidden by the current standard but which is 13913 // okay according to the likely resolution of an open issue; 13914 // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407 13915 if (getLangOpts().CPlusPlus) { 13916 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) { 13917 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) { 13918 TagDecl *Tag = TT->getDecl(); 13919 if (Tag->getDeclName() == Name && 13920 Tag->getDeclContext()->getRedeclContext() 13921 ->Equals(TD->getDeclContext()->getRedeclContext())) { 13922 PrevDecl = Tag; 13923 Previous.clear(); 13924 Previous.addDecl(Tag); 13925 Previous.resolveKind(); 13926 } 13927 } 13928 } 13929 } 13930 13931 // If this is a redeclaration of a using shadow declaration, it must 13932 // declare a tag in the same context. In MSVC mode, we allow a 13933 // redefinition if either context is within the other. 13934 if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) { 13935 auto *OldTag = dyn_cast<TagDecl>(PrevDecl); 13936 if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend && 13937 isDeclInScope(Shadow, SearchDC, S, isMemberSpecialization) && 13938 !(OldTag && isAcceptableTagRedeclContext( 13939 *this, OldTag->getDeclContext(), SearchDC))) { 13940 Diag(KWLoc, diag::err_using_decl_conflict_reverse); 13941 Diag(Shadow->getTargetDecl()->getLocation(), 13942 diag::note_using_decl_target); 13943 Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) 13944 << 0; 13945 // Recover by ignoring the old declaration. 13946 Previous.clear(); 13947 goto CreateNewDecl; 13948 } 13949 } 13950 13951 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) { 13952 // If this is a use of a previous tag, or if the tag is already declared 13953 // in the same scope (so that the definition/declaration completes or 13954 // rementions the tag), reuse the decl. 13955 if (TUK == TUK_Reference || TUK == TUK_Friend || 13956 isDeclInScope(DirectPrevDecl, SearchDC, S, 13957 SS.isNotEmpty() || isMemberSpecialization)) { 13958 // Make sure that this wasn't declared as an enum and now used as a 13959 // struct or something similar. 13960 if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind, 13961 TUK == TUK_Definition, KWLoc, 13962 Name)) { 13963 bool SafeToContinue 13964 = (PrevTagDecl->getTagKind() != TTK_Enum && 13965 Kind != TTK_Enum); 13966 if (SafeToContinue) 13967 Diag(KWLoc, diag::err_use_with_wrong_tag) 13968 << Name 13969 << FixItHint::CreateReplacement(SourceRange(KWLoc), 13970 PrevTagDecl->getKindName()); 13971 else 13972 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name; 13973 Diag(PrevTagDecl->getLocation(), diag::note_previous_use); 13974 13975 if (SafeToContinue) 13976 Kind = PrevTagDecl->getTagKind(); 13977 else { 13978 // Recover by making this an anonymous redefinition. 13979 Name = nullptr; 13980 Previous.clear(); 13981 Invalid = true; 13982 } 13983 } 13984 13985 if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) { 13986 const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl); 13987 13988 // If this is an elaborated-type-specifier for a scoped enumeration, 13989 // the 'class' keyword is not necessary and not permitted. 13990 if (TUK == TUK_Reference || TUK == TUK_Friend) { 13991 if (ScopedEnum) 13992 Diag(ScopedEnumKWLoc, diag::err_enum_class_reference) 13993 << PrevEnum->isScoped() 13994 << FixItHint::CreateRemoval(ScopedEnumKWLoc); 13995 return PrevTagDecl; 13996 } 13997 13998 QualType EnumUnderlyingTy; 13999 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 14000 EnumUnderlyingTy = TI->getType().getUnqualifiedType(); 14001 else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>()) 14002 EnumUnderlyingTy = QualType(T, 0); 14003 14004 // All conflicts with previous declarations are recovered by 14005 // returning the previous declaration, unless this is a definition, 14006 // in which case we want the caller to bail out. 14007 if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc, 14008 ScopedEnum, EnumUnderlyingTy, 14009 IsFixed, PrevEnum)) 14010 return TUK == TUK_Declaration ? PrevTagDecl : nullptr; 14011 } 14012 14013 // C++11 [class.mem]p1: 14014 // A member shall not be declared twice in the member-specification, 14015 // except that a nested class or member class template can be declared 14016 // and then later defined. 14017 if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() && 14018 S->isDeclScope(PrevDecl)) { 14019 Diag(NameLoc, diag::ext_member_redeclared); 14020 Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration); 14021 } 14022 14023 if (!Invalid) { 14024 // If this is a use, just return the declaration we found, unless 14025 // we have attributes. 14026 if (TUK == TUK_Reference || TUK == TUK_Friend) { 14027 if (Attr) { 14028 // FIXME: Diagnose these attributes. For now, we create a new 14029 // declaration to hold them. 14030 } else if (TUK == TUK_Reference && 14031 (PrevTagDecl->getFriendObjectKind() == 14032 Decl::FOK_Undeclared || 14033 PrevDecl->getOwningModule() != getCurrentModule()) && 14034 SS.isEmpty()) { 14035 // This declaration is a reference to an existing entity, but 14036 // has different visibility from that entity: it either makes 14037 // a friend visible or it makes a type visible in a new module. 14038 // In either case, create a new declaration. We only do this if 14039 // the declaration would have meant the same thing if no prior 14040 // declaration were found, that is, if it was found in the same 14041 // scope where we would have injected a declaration. 14042 if (!getTagInjectionContext(CurContext)->getRedeclContext() 14043 ->Equals(PrevDecl->getDeclContext()->getRedeclContext())) 14044 return PrevTagDecl; 14045 // This is in the injected scope, create a new declaration in 14046 // that scope. 14047 S = getTagInjectionScope(S, getLangOpts()); 14048 } else { 14049 return PrevTagDecl; 14050 } 14051 } 14052 14053 // Diagnose attempts to redefine a tag. 14054 if (TUK == TUK_Definition) { 14055 if (NamedDecl *Def = PrevTagDecl->getDefinition()) { 14056 // If we're defining a specialization and the previous definition 14057 // is from an implicit instantiation, don't emit an error 14058 // here; we'll catch this in the general case below. 14059 bool IsExplicitSpecializationAfterInstantiation = false; 14060 if (isMemberSpecialization) { 14061 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def)) 14062 IsExplicitSpecializationAfterInstantiation = 14063 RD->getTemplateSpecializationKind() != 14064 TSK_ExplicitSpecialization; 14065 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def)) 14066 IsExplicitSpecializationAfterInstantiation = 14067 ED->getTemplateSpecializationKind() != 14068 TSK_ExplicitSpecialization; 14069 } 14070 14071 // Note that clang allows ODR-like semantics for ObjC/C, i.e., do 14072 // not keep more that one definition around (merge them). However, 14073 // ensure the decl passes the structural compatibility check in 14074 // C11 6.2.7/1 (or 6.1.2.6/1 in C89). 14075 NamedDecl *Hidden = nullptr; 14076 if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) { 14077 // There is a definition of this tag, but it is not visible. We 14078 // explicitly make use of C++'s one definition rule here, and 14079 // assume that this definition is identical to the hidden one 14080 // we already have. Make the existing definition visible and 14081 // use it in place of this one. 14082 if (!getLangOpts().CPlusPlus) { 14083 // Postpone making the old definition visible until after we 14084 // complete parsing the new one and do the structural 14085 // comparison. 14086 SkipBody->CheckSameAsPrevious = true; 14087 SkipBody->New = createTagFromNewDecl(); 14088 SkipBody->Previous = Hidden; 14089 } else { 14090 SkipBody->ShouldSkip = true; 14091 makeMergedDefinitionVisible(Hidden); 14092 } 14093 return Def; 14094 } else if (!IsExplicitSpecializationAfterInstantiation) { 14095 // A redeclaration in function prototype scope in C isn't 14096 // visible elsewhere, so merely issue a warning. 14097 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope()) 14098 Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name; 14099 else 14100 Diag(NameLoc, diag::err_redefinition) << Name; 14101 notePreviousDefinition(Def, 14102 NameLoc.isValid() ? NameLoc : KWLoc); 14103 // If this is a redefinition, recover by making this 14104 // struct be anonymous, which will make any later 14105 // references get the previous definition. 14106 Name = nullptr; 14107 Previous.clear(); 14108 Invalid = true; 14109 } 14110 } else { 14111 // If the type is currently being defined, complain 14112 // about a nested redefinition. 14113 auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl(); 14114 if (TD->isBeingDefined()) { 14115 Diag(NameLoc, diag::err_nested_redefinition) << Name; 14116 Diag(PrevTagDecl->getLocation(), 14117 diag::note_previous_definition); 14118 Name = nullptr; 14119 Previous.clear(); 14120 Invalid = true; 14121 } 14122 } 14123 14124 // Okay, this is definition of a previously declared or referenced 14125 // tag. We're going to create a new Decl for it. 14126 } 14127 14128 // Okay, we're going to make a redeclaration. If this is some kind 14129 // of reference, make sure we build the redeclaration in the same DC 14130 // as the original, and ignore the current access specifier. 14131 if (TUK == TUK_Friend || TUK == TUK_Reference) { 14132 SearchDC = PrevTagDecl->getDeclContext(); 14133 AS = AS_none; 14134 } 14135 } 14136 // If we get here we have (another) forward declaration or we 14137 // have a definition. Just create a new decl. 14138 14139 } else { 14140 // If we get here, this is a definition of a new tag type in a nested 14141 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a 14142 // new decl/type. We set PrevDecl to NULL so that the entities 14143 // have distinct types. 14144 Previous.clear(); 14145 } 14146 // If we get here, we're going to create a new Decl. If PrevDecl 14147 // is non-NULL, it's a definition of the tag declared by 14148 // PrevDecl. If it's NULL, we have a new definition. 14149 14150 // Otherwise, PrevDecl is not a tag, but was found with tag 14151 // lookup. This is only actually possible in C++, where a few 14152 // things like templates still live in the tag namespace. 14153 } else { 14154 // Use a better diagnostic if an elaborated-type-specifier 14155 // found the wrong kind of type on the first 14156 // (non-redeclaration) lookup. 14157 if ((TUK == TUK_Reference || TUK == TUK_Friend) && 14158 !Previous.isForRedeclaration()) { 14159 NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind); 14160 Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK 14161 << Kind; 14162 Diag(PrevDecl->getLocation(), diag::note_declared_at); 14163 Invalid = true; 14164 14165 // Otherwise, only diagnose if the declaration is in scope. 14166 } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S, 14167 SS.isNotEmpty() || isMemberSpecialization)) { 14168 // do nothing 14169 14170 // Diagnose implicit declarations introduced by elaborated types. 14171 } else if (TUK == TUK_Reference || TUK == TUK_Friend) { 14172 NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind); 14173 Diag(NameLoc, diag::err_tag_reference_conflict) << NTK; 14174 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 14175 Invalid = true; 14176 14177 // Otherwise it's a declaration. Call out a particularly common 14178 // case here. 14179 } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) { 14180 unsigned Kind = 0; 14181 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1; 14182 Diag(NameLoc, diag::err_tag_definition_of_typedef) 14183 << Name << Kind << TND->getUnderlyingType(); 14184 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 14185 Invalid = true; 14186 14187 // Otherwise, diagnose. 14188 } else { 14189 // The tag name clashes with something else in the target scope, 14190 // issue an error and recover by making this tag be anonymous. 14191 Diag(NameLoc, diag::err_redefinition_different_kind) << Name; 14192 notePreviousDefinition(PrevDecl, NameLoc); 14193 Name = nullptr; 14194 Invalid = true; 14195 } 14196 14197 // The existing declaration isn't relevant to us; we're in a 14198 // new scope, so clear out the previous declaration. 14199 Previous.clear(); 14200 } 14201 } 14202 14203 CreateNewDecl: 14204 14205 TagDecl *PrevDecl = nullptr; 14206 if (Previous.isSingleResult()) 14207 PrevDecl = cast<TagDecl>(Previous.getFoundDecl()); 14208 14209 // If there is an identifier, use the location of the identifier as the 14210 // location of the decl, otherwise use the location of the struct/union 14211 // keyword. 14212 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; 14213 14214 // Otherwise, create a new declaration. If there is a previous 14215 // declaration of the same entity, the two will be linked via 14216 // PrevDecl. 14217 TagDecl *New; 14218 14219 bool IsForwardReference = false; 14220 if (Kind == TTK_Enum) { 14221 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 14222 // enum X { A, B, C } D; D should chain to X. 14223 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, 14224 cast_or_null<EnumDecl>(PrevDecl), ScopedEnum, 14225 ScopedEnumUsesClassTag, IsFixed); 14226 14227 if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit())) 14228 StdAlignValT = cast<EnumDecl>(New); 14229 14230 // If this is an undefined enum, warn. 14231 if (TUK != TUK_Definition && !Invalid) { 14232 TagDecl *Def; 14233 if (IsFixed && (getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) && 14234 cast<EnumDecl>(New)->isFixed()) { 14235 // C++0x: 7.2p2: opaque-enum-declaration. 14236 // Conflicts are diagnosed above. Do nothing. 14237 } 14238 else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) { 14239 Diag(Loc, diag::ext_forward_ref_enum_def) 14240 << New; 14241 Diag(Def->getLocation(), diag::note_previous_definition); 14242 } else { 14243 unsigned DiagID = diag::ext_forward_ref_enum; 14244 if (getLangOpts().MSVCCompat) 14245 DiagID = diag::ext_ms_forward_ref_enum; 14246 else if (getLangOpts().CPlusPlus) 14247 DiagID = diag::err_forward_ref_enum; 14248 Diag(Loc, DiagID); 14249 14250 // If this is a forward-declared reference to an enumeration, make a 14251 // note of it; we won't actually be introducing the declaration into 14252 // the declaration context. 14253 if (TUK == TUK_Reference) 14254 IsForwardReference = true; 14255 } 14256 } 14257 14258 if (EnumUnderlying) { 14259 EnumDecl *ED = cast<EnumDecl>(New); 14260 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 14261 ED->setIntegerTypeSourceInfo(TI); 14262 else 14263 ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0)); 14264 ED->setPromotionType(ED->getIntegerType()); 14265 assert(ED->isComplete() && "enum with type should be complete"); 14266 } 14267 } else { 14268 // struct/union/class 14269 14270 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 14271 // struct X { int A; } D; D should chain to X. 14272 if (getLangOpts().CPlusPlus) { 14273 // FIXME: Look for a way to use RecordDecl for simple structs. 14274 New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 14275 cast_or_null<CXXRecordDecl>(PrevDecl)); 14276 14277 if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit())) 14278 StdBadAlloc = cast<CXXRecordDecl>(New); 14279 } else 14280 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 14281 cast_or_null<RecordDecl>(PrevDecl)); 14282 } 14283 14284 // C++11 [dcl.type]p3: 14285 // A type-specifier-seq shall not define a class or enumeration [...]. 14286 if (getLangOpts().CPlusPlus && (IsTypeSpecifier || IsTemplateParamOrArg) && 14287 TUK == TUK_Definition) { 14288 Diag(New->getLocation(), diag::err_type_defined_in_type_specifier) 14289 << Context.getTagDeclType(New); 14290 Invalid = true; 14291 } 14292 14293 if (!Invalid && getLangOpts().CPlusPlus && TUK == TUK_Definition && 14294 DC->getDeclKind() == Decl::Enum) { 14295 Diag(New->getLocation(), diag::err_type_defined_in_enum) 14296 << Context.getTagDeclType(New); 14297 Invalid = true; 14298 } 14299 14300 // Maybe add qualifier info. 14301 if (SS.isNotEmpty()) { 14302 if (SS.isSet()) { 14303 // If this is either a declaration or a definition, check the 14304 // nested-name-specifier against the current context. We don't do this 14305 // for explicit specializations, because they have similar checking 14306 // (with more specific diagnostics) in the call to 14307 // CheckMemberSpecialization, below. 14308 if (!isMemberSpecialization && 14309 (TUK == TUK_Definition || TUK == TUK_Declaration) && 14310 diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc)) 14311 Invalid = true; 14312 14313 New->setQualifierInfo(SS.getWithLocInContext(Context)); 14314 if (TemplateParameterLists.size() > 0) { 14315 New->setTemplateParameterListsInfo(Context, TemplateParameterLists); 14316 } 14317 } 14318 else 14319 Invalid = true; 14320 } 14321 14322 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) { 14323 // Add alignment attributes if necessary; these attributes are checked when 14324 // the ASTContext lays out the structure. 14325 // 14326 // It is important for implementing the correct semantics that this 14327 // happen here (in ActOnTag). The #pragma pack stack is 14328 // maintained as a result of parser callbacks which can occur at 14329 // many points during the parsing of a struct declaration (because 14330 // the #pragma tokens are effectively skipped over during the 14331 // parsing of the struct). 14332 if (TUK == TUK_Definition) { 14333 AddAlignmentAttributesForRecord(RD); 14334 AddMsStructLayoutForRecord(RD); 14335 } 14336 } 14337 14338 if (ModulePrivateLoc.isValid()) { 14339 if (isMemberSpecialization) 14340 Diag(New->getLocation(), diag::err_module_private_specialization) 14341 << 2 14342 << FixItHint::CreateRemoval(ModulePrivateLoc); 14343 // __module_private__ does not apply to local classes. However, we only 14344 // diagnose this as an error when the declaration specifiers are 14345 // freestanding. Here, we just ignore the __module_private__. 14346 else if (!SearchDC->isFunctionOrMethod()) 14347 New->setModulePrivate(); 14348 } 14349 14350 // If this is a specialization of a member class (of a class template), 14351 // check the specialization. 14352 if (isMemberSpecialization && CheckMemberSpecialization(New, Previous)) 14353 Invalid = true; 14354 14355 // If we're declaring or defining a tag in function prototype scope in C, 14356 // note that this type can only be used within the function and add it to 14357 // the list of decls to inject into the function definition scope. 14358 if ((Name || Kind == TTK_Enum) && 14359 getNonFieldDeclScope(S)->isFunctionPrototypeScope()) { 14360 if (getLangOpts().CPlusPlus) { 14361 // C++ [dcl.fct]p6: 14362 // Types shall not be defined in return or parameter types. 14363 if (TUK == TUK_Definition && !IsTypeSpecifier) { 14364 Diag(Loc, diag::err_type_defined_in_param_type) 14365 << Name; 14366 Invalid = true; 14367 } 14368 } else if (!PrevDecl) { 14369 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New); 14370 } 14371 } 14372 14373 if (Invalid) 14374 New->setInvalidDecl(); 14375 14376 // Set the lexical context. If the tag has a C++ scope specifier, the 14377 // lexical context will be different from the semantic context. 14378 New->setLexicalDeclContext(CurContext); 14379 14380 // Mark this as a friend decl if applicable. 14381 // In Microsoft mode, a friend declaration also acts as a forward 14382 // declaration so we always pass true to setObjectOfFriendDecl to make 14383 // the tag name visible. 14384 if (TUK == TUK_Friend) 14385 New->setObjectOfFriendDecl(getLangOpts().MSVCCompat); 14386 14387 // Set the access specifier. 14388 if (!Invalid && SearchDC->isRecord()) 14389 SetMemberAccessSpecifier(New, PrevDecl, AS); 14390 14391 if (PrevDecl) 14392 CheckRedeclarationModuleOwnership(New, PrevDecl); 14393 14394 if (TUK == TUK_Definition) 14395 New->startDefinition(); 14396 14397 if (Attr) 14398 ProcessDeclAttributeList(S, New, Attr); 14399 AddPragmaAttributes(S, New); 14400 14401 // If this has an identifier, add it to the scope stack. 14402 if (TUK == TUK_Friend) { 14403 // We might be replacing an existing declaration in the lookup tables; 14404 // if so, borrow its access specifier. 14405 if (PrevDecl) 14406 New->setAccess(PrevDecl->getAccess()); 14407 14408 DeclContext *DC = New->getDeclContext()->getRedeclContext(); 14409 DC->makeDeclVisibleInContext(New); 14410 if (Name) // can be null along some error paths 14411 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 14412 PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false); 14413 } else if (Name) { 14414 S = getNonFieldDeclScope(S); 14415 PushOnScopeChains(New, S, !IsForwardReference); 14416 if (IsForwardReference) 14417 SearchDC->makeDeclVisibleInContext(New); 14418 } else { 14419 CurContext->addDecl(New); 14420 } 14421 14422 // If this is the C FILE type, notify the AST context. 14423 if (IdentifierInfo *II = New->getIdentifier()) 14424 if (!New->isInvalidDecl() && 14425 New->getDeclContext()->getRedeclContext()->isTranslationUnit() && 14426 II->isStr("FILE")) 14427 Context.setFILEDecl(New); 14428 14429 if (PrevDecl) 14430 mergeDeclAttributes(New, PrevDecl); 14431 14432 // If there's a #pragma GCC visibility in scope, set the visibility of this 14433 // record. 14434 AddPushedVisibilityAttribute(New); 14435 14436 if (isMemberSpecialization && !New->isInvalidDecl()) 14437 CompleteMemberSpecialization(New, Previous); 14438 14439 OwnedDecl = true; 14440 // In C++, don't return an invalid declaration. We can't recover well from 14441 // the cases where we make the type anonymous. 14442 if (Invalid && getLangOpts().CPlusPlus) { 14443 if (New->isBeingDefined()) 14444 if (auto RD = dyn_cast<RecordDecl>(New)) 14445 RD->completeDefinition(); 14446 return nullptr; 14447 } else { 14448 return New; 14449 } 14450 } 14451 14452 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) { 14453 AdjustDeclIfTemplate(TagD); 14454 TagDecl *Tag = cast<TagDecl>(TagD); 14455 14456 // Enter the tag context. 14457 PushDeclContext(S, Tag); 14458 14459 ActOnDocumentableDecl(TagD); 14460 14461 // If there's a #pragma GCC visibility in scope, set the visibility of this 14462 // record. 14463 AddPushedVisibilityAttribute(Tag); 14464 } 14465 14466 bool Sema::ActOnDuplicateDefinition(DeclSpec &DS, Decl *Prev, 14467 SkipBodyInfo &SkipBody) { 14468 if (!hasStructuralCompatLayout(Prev, SkipBody.New)) 14469 return false; 14470 14471 // Make the previous decl visible. 14472 makeMergedDefinitionVisible(SkipBody.Previous); 14473 return true; 14474 } 14475 14476 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) { 14477 assert(isa<ObjCContainerDecl>(IDecl) && 14478 "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl"); 14479 DeclContext *OCD = cast<DeclContext>(IDecl); 14480 assert(getContainingDC(OCD) == CurContext && 14481 "The next DeclContext should be lexically contained in the current one."); 14482 CurContext = OCD; 14483 return IDecl; 14484 } 14485 14486 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD, 14487 SourceLocation FinalLoc, 14488 bool IsFinalSpelledSealed, 14489 SourceLocation LBraceLoc) { 14490 AdjustDeclIfTemplate(TagD); 14491 CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD); 14492 14493 FieldCollector->StartClass(); 14494 14495 if (!Record->getIdentifier()) 14496 return; 14497 14498 if (FinalLoc.isValid()) 14499 Record->addAttr(new (Context) 14500 FinalAttr(FinalLoc, Context, IsFinalSpelledSealed)); 14501 14502 // C++ [class]p2: 14503 // [...] The class-name is also inserted into the scope of the 14504 // class itself; this is known as the injected-class-name. For 14505 // purposes of access checking, the injected-class-name is treated 14506 // as if it were a public member name. 14507 CXXRecordDecl *InjectedClassName 14508 = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext, 14509 Record->getLocStart(), Record->getLocation(), 14510 Record->getIdentifier(), 14511 /*PrevDecl=*/nullptr, 14512 /*DelayTypeCreation=*/true); 14513 Context.getTypeDeclType(InjectedClassName, Record); 14514 InjectedClassName->setImplicit(); 14515 InjectedClassName->setAccess(AS_public); 14516 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) 14517 InjectedClassName->setDescribedClassTemplate(Template); 14518 PushOnScopeChains(InjectedClassName, S); 14519 assert(InjectedClassName->isInjectedClassName() && 14520 "Broken injected-class-name"); 14521 } 14522 14523 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD, 14524 SourceRange BraceRange) { 14525 AdjustDeclIfTemplate(TagD); 14526 TagDecl *Tag = cast<TagDecl>(TagD); 14527 Tag->setBraceRange(BraceRange); 14528 14529 // Make sure we "complete" the definition even it is invalid. 14530 if (Tag->isBeingDefined()) { 14531 assert(Tag->isInvalidDecl() && "We should already have completed it"); 14532 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 14533 RD->completeDefinition(); 14534 } 14535 14536 if (isa<CXXRecordDecl>(Tag)) { 14537 FieldCollector->FinishClass(); 14538 } 14539 14540 // Exit this scope of this tag's definition. 14541 PopDeclContext(); 14542 14543 if (getCurLexicalContext()->isObjCContainer() && 14544 Tag->getDeclContext()->isFileContext()) 14545 Tag->setTopLevelDeclInObjCContainer(); 14546 14547 // Notify the consumer that we've defined a tag. 14548 if (!Tag->isInvalidDecl()) 14549 Consumer.HandleTagDeclDefinition(Tag); 14550 } 14551 14552 void Sema::ActOnObjCContainerFinishDefinition() { 14553 // Exit this scope of this interface definition. 14554 PopDeclContext(); 14555 } 14556 14557 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) { 14558 assert(DC == CurContext && "Mismatch of container contexts"); 14559 OriginalLexicalContext = DC; 14560 ActOnObjCContainerFinishDefinition(); 14561 } 14562 14563 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) { 14564 ActOnObjCContainerStartDefinition(cast<Decl>(DC)); 14565 OriginalLexicalContext = nullptr; 14566 } 14567 14568 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) { 14569 AdjustDeclIfTemplate(TagD); 14570 TagDecl *Tag = cast<TagDecl>(TagD); 14571 Tag->setInvalidDecl(); 14572 14573 // Make sure we "complete" the definition even it is invalid. 14574 if (Tag->isBeingDefined()) { 14575 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 14576 RD->completeDefinition(); 14577 } 14578 14579 // We're undoing ActOnTagStartDefinition here, not 14580 // ActOnStartCXXMemberDeclarations, so we don't have to mess with 14581 // the FieldCollector. 14582 14583 PopDeclContext(); 14584 } 14585 14586 // Note that FieldName may be null for anonymous bitfields. 14587 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc, 14588 IdentifierInfo *FieldName, 14589 QualType FieldTy, bool IsMsStruct, 14590 Expr *BitWidth, bool *ZeroWidth) { 14591 // Default to true; that shouldn't confuse checks for emptiness 14592 if (ZeroWidth) 14593 *ZeroWidth = true; 14594 14595 // C99 6.7.2.1p4 - verify the field type. 14596 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 14597 if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) { 14598 // Handle incomplete types with specific error. 14599 if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete)) 14600 return ExprError(); 14601 if (FieldName) 14602 return Diag(FieldLoc, diag::err_not_integral_type_bitfield) 14603 << FieldName << FieldTy << BitWidth->getSourceRange(); 14604 return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield) 14605 << FieldTy << BitWidth->getSourceRange(); 14606 } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth), 14607 UPPC_BitFieldWidth)) 14608 return ExprError(); 14609 14610 // If the bit-width is type- or value-dependent, don't try to check 14611 // it now. 14612 if (BitWidth->isValueDependent() || BitWidth->isTypeDependent()) 14613 return BitWidth; 14614 14615 llvm::APSInt Value; 14616 ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value); 14617 if (ICE.isInvalid()) 14618 return ICE; 14619 BitWidth = ICE.get(); 14620 14621 if (Value != 0 && ZeroWidth) 14622 *ZeroWidth = false; 14623 14624 // Zero-width bitfield is ok for anonymous field. 14625 if (Value == 0 && FieldName) 14626 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName; 14627 14628 if (Value.isSigned() && Value.isNegative()) { 14629 if (FieldName) 14630 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) 14631 << FieldName << Value.toString(10); 14632 return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width) 14633 << Value.toString(10); 14634 } 14635 14636 if (!FieldTy->isDependentType()) { 14637 uint64_t TypeStorageSize = Context.getTypeSize(FieldTy); 14638 uint64_t TypeWidth = Context.getIntWidth(FieldTy); 14639 bool BitfieldIsOverwide = Value.ugt(TypeWidth); 14640 14641 // Over-wide bitfields are an error in C or when using the MSVC bitfield 14642 // ABI. 14643 bool CStdConstraintViolation = 14644 BitfieldIsOverwide && !getLangOpts().CPlusPlus; 14645 bool MSBitfieldViolation = 14646 Value.ugt(TypeStorageSize) && 14647 (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft()); 14648 if (CStdConstraintViolation || MSBitfieldViolation) { 14649 unsigned DiagWidth = 14650 CStdConstraintViolation ? TypeWidth : TypeStorageSize; 14651 if (FieldName) 14652 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width) 14653 << FieldName << (unsigned)Value.getZExtValue() 14654 << !CStdConstraintViolation << DiagWidth; 14655 14656 return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width) 14657 << (unsigned)Value.getZExtValue() << !CStdConstraintViolation 14658 << DiagWidth; 14659 } 14660 14661 // Warn on types where the user might conceivably expect to get all 14662 // specified bits as value bits: that's all integral types other than 14663 // 'bool'. 14664 if (BitfieldIsOverwide && !FieldTy->isBooleanType()) { 14665 if (FieldName) 14666 Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width) 14667 << FieldName << (unsigned)Value.getZExtValue() 14668 << (unsigned)TypeWidth; 14669 else 14670 Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width) 14671 << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth; 14672 } 14673 } 14674 14675 return BitWidth; 14676 } 14677 14678 /// ActOnField - Each field of a C struct/union is passed into this in order 14679 /// to create a FieldDecl object for it. 14680 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart, 14681 Declarator &D, Expr *BitfieldWidth) { 14682 FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD), 14683 DeclStart, D, static_cast<Expr*>(BitfieldWidth), 14684 /*InitStyle=*/ICIS_NoInit, AS_public); 14685 return Res; 14686 } 14687 14688 /// HandleField - Analyze a field of a C struct or a C++ data member. 14689 /// 14690 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record, 14691 SourceLocation DeclStart, 14692 Declarator &D, Expr *BitWidth, 14693 InClassInitStyle InitStyle, 14694 AccessSpecifier AS) { 14695 if (D.isDecompositionDeclarator()) { 14696 const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator(); 14697 Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context) 14698 << Decomp.getSourceRange(); 14699 return nullptr; 14700 } 14701 14702 IdentifierInfo *II = D.getIdentifier(); 14703 SourceLocation Loc = DeclStart; 14704 if (II) Loc = D.getIdentifierLoc(); 14705 14706 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 14707 QualType T = TInfo->getType(); 14708 if (getLangOpts().CPlusPlus) { 14709 CheckExtraCXXDefaultArguments(D); 14710 14711 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 14712 UPPC_DataMemberType)) { 14713 D.setInvalidType(); 14714 T = Context.IntTy; 14715 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 14716 } 14717 } 14718 14719 // TR 18037 does not allow fields to be declared with address spaces. 14720 if (T.getQualifiers().hasAddressSpace() || 14721 T->isDependentAddressSpaceType() || 14722 T->getBaseElementTypeUnsafe()->isDependentAddressSpaceType()) { 14723 Diag(Loc, diag::err_field_with_address_space); 14724 D.setInvalidType(); 14725 } 14726 14727 // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be 14728 // used as structure or union field: image, sampler, event or block types. 14729 if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() || 14730 T->isSamplerT() || T->isBlockPointerType())) { 14731 Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T; 14732 D.setInvalidType(); 14733 } 14734 14735 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 14736 14737 if (D.getDeclSpec().isInlineSpecified()) 14738 Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function) 14739 << getLangOpts().CPlusPlus17; 14740 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 14741 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 14742 diag::err_invalid_thread) 14743 << DeclSpec::getSpecifierName(TSCS); 14744 14745 // Check to see if this name was declared as a member previously 14746 NamedDecl *PrevDecl = nullptr; 14747 LookupResult Previous(*this, II, Loc, LookupMemberName, 14748 ForVisibleRedeclaration); 14749 LookupName(Previous, S); 14750 switch (Previous.getResultKind()) { 14751 case LookupResult::Found: 14752 case LookupResult::FoundUnresolvedValue: 14753 PrevDecl = Previous.getAsSingle<NamedDecl>(); 14754 break; 14755 14756 case LookupResult::FoundOverloaded: 14757 PrevDecl = Previous.getRepresentativeDecl(); 14758 break; 14759 14760 case LookupResult::NotFound: 14761 case LookupResult::NotFoundInCurrentInstantiation: 14762 case LookupResult::Ambiguous: 14763 break; 14764 } 14765 Previous.suppressDiagnostics(); 14766 14767 if (PrevDecl && PrevDecl->isTemplateParameter()) { 14768 // Maybe we will complain about the shadowed template parameter. 14769 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 14770 // Just pretend that we didn't see the previous declaration. 14771 PrevDecl = nullptr; 14772 } 14773 14774 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 14775 PrevDecl = nullptr; 14776 14777 bool Mutable 14778 = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable); 14779 SourceLocation TSSL = D.getLocStart(); 14780 FieldDecl *NewFD 14781 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, 14782 TSSL, AS, PrevDecl, &D); 14783 14784 if (NewFD->isInvalidDecl()) 14785 Record->setInvalidDecl(); 14786 14787 if (D.getDeclSpec().isModulePrivateSpecified()) 14788 NewFD->setModulePrivate(); 14789 14790 if (NewFD->isInvalidDecl() && PrevDecl) { 14791 // Don't introduce NewFD into scope; there's already something 14792 // with the same name in the same scope. 14793 } else if (II) { 14794 PushOnScopeChains(NewFD, S); 14795 } else 14796 Record->addDecl(NewFD); 14797 14798 return NewFD; 14799 } 14800 14801 /// \brief Build a new FieldDecl and check its well-formedness. 14802 /// 14803 /// This routine builds a new FieldDecl given the fields name, type, 14804 /// record, etc. \p PrevDecl should refer to any previous declaration 14805 /// with the same name and in the same scope as the field to be 14806 /// created. 14807 /// 14808 /// \returns a new FieldDecl. 14809 /// 14810 /// \todo The Declarator argument is a hack. It will be removed once 14811 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T, 14812 TypeSourceInfo *TInfo, 14813 RecordDecl *Record, SourceLocation Loc, 14814 bool Mutable, Expr *BitWidth, 14815 InClassInitStyle InitStyle, 14816 SourceLocation TSSL, 14817 AccessSpecifier AS, NamedDecl *PrevDecl, 14818 Declarator *D) { 14819 IdentifierInfo *II = Name.getAsIdentifierInfo(); 14820 bool InvalidDecl = false; 14821 if (D) InvalidDecl = D->isInvalidType(); 14822 14823 // If we receive a broken type, recover by assuming 'int' and 14824 // marking this declaration as invalid. 14825 if (T.isNull()) { 14826 InvalidDecl = true; 14827 T = Context.IntTy; 14828 } 14829 14830 QualType EltTy = Context.getBaseElementType(T); 14831 if (!EltTy->isDependentType()) { 14832 if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) { 14833 // Fields of incomplete type force their record to be invalid. 14834 Record->setInvalidDecl(); 14835 InvalidDecl = true; 14836 } else { 14837 NamedDecl *Def; 14838 EltTy->isIncompleteType(&Def); 14839 if (Def && Def->isInvalidDecl()) { 14840 Record->setInvalidDecl(); 14841 InvalidDecl = true; 14842 } 14843 } 14844 } 14845 14846 // OpenCL v1.2 s6.9.c: bitfields are not supported. 14847 if (BitWidth && getLangOpts().OpenCL) { 14848 Diag(Loc, diag::err_opencl_bitfields); 14849 InvalidDecl = true; 14850 } 14851 14852 // C99 6.7.2.1p8: A member of a structure or union may have any type other 14853 // than a variably modified type. 14854 if (!InvalidDecl && T->isVariablyModifiedType()) { 14855 bool SizeIsNegative; 14856 llvm::APSInt Oversized; 14857 14858 TypeSourceInfo *FixedTInfo = 14859 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 14860 SizeIsNegative, 14861 Oversized); 14862 if (FixedTInfo) { 14863 Diag(Loc, diag::warn_illegal_constant_array_size); 14864 TInfo = FixedTInfo; 14865 T = FixedTInfo->getType(); 14866 } else { 14867 if (SizeIsNegative) 14868 Diag(Loc, diag::err_typecheck_negative_array_size); 14869 else if (Oversized.getBoolValue()) 14870 Diag(Loc, diag::err_array_too_large) 14871 << Oversized.toString(10); 14872 else 14873 Diag(Loc, diag::err_typecheck_field_variable_size); 14874 InvalidDecl = true; 14875 } 14876 } 14877 14878 // Fields can not have abstract class types 14879 if (!InvalidDecl && RequireNonAbstractType(Loc, T, 14880 diag::err_abstract_type_in_decl, 14881 AbstractFieldType)) 14882 InvalidDecl = true; 14883 14884 bool ZeroWidth = false; 14885 if (InvalidDecl) 14886 BitWidth = nullptr; 14887 // If this is declared as a bit-field, check the bit-field. 14888 if (BitWidth) { 14889 BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth, 14890 &ZeroWidth).get(); 14891 if (!BitWidth) { 14892 InvalidDecl = true; 14893 BitWidth = nullptr; 14894 ZeroWidth = false; 14895 } 14896 } 14897 14898 // Check that 'mutable' is consistent with the type of the declaration. 14899 if (!InvalidDecl && Mutable) { 14900 unsigned DiagID = 0; 14901 if (T->isReferenceType()) 14902 DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference 14903 : diag::err_mutable_reference; 14904 else if (T.isConstQualified()) 14905 DiagID = diag::err_mutable_const; 14906 14907 if (DiagID) { 14908 SourceLocation ErrLoc = Loc; 14909 if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid()) 14910 ErrLoc = D->getDeclSpec().getStorageClassSpecLoc(); 14911 Diag(ErrLoc, DiagID); 14912 if (DiagID != diag::ext_mutable_reference) { 14913 Mutable = false; 14914 InvalidDecl = true; 14915 } 14916 } 14917 } 14918 14919 // C++11 [class.union]p8 (DR1460): 14920 // At most one variant member of a union may have a 14921 // brace-or-equal-initializer. 14922 if (InitStyle != ICIS_NoInit) 14923 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc); 14924 14925 FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo, 14926 BitWidth, Mutable, InitStyle); 14927 if (InvalidDecl) 14928 NewFD->setInvalidDecl(); 14929 14930 if (PrevDecl && !isa<TagDecl>(PrevDecl)) { 14931 Diag(Loc, diag::err_duplicate_member) << II; 14932 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 14933 NewFD->setInvalidDecl(); 14934 } 14935 14936 if (!InvalidDecl && getLangOpts().CPlusPlus) { 14937 if (Record->isUnion()) { 14938 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 14939 CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl()); 14940 if (RDecl->getDefinition()) { 14941 // C++ [class.union]p1: An object of a class with a non-trivial 14942 // constructor, a non-trivial copy constructor, a non-trivial 14943 // destructor, or a non-trivial copy assignment operator 14944 // cannot be a member of a union, nor can an array of such 14945 // objects. 14946 if (CheckNontrivialField(NewFD)) 14947 NewFD->setInvalidDecl(); 14948 } 14949 } 14950 14951 // C++ [class.union]p1: If a union contains a member of reference type, 14952 // the program is ill-formed, except when compiling with MSVC extensions 14953 // enabled. 14954 if (EltTy->isReferenceType()) { 14955 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 14956 diag::ext_union_member_of_reference_type : 14957 diag::err_union_member_of_reference_type) 14958 << NewFD->getDeclName() << EltTy; 14959 if (!getLangOpts().MicrosoftExt) 14960 NewFD->setInvalidDecl(); 14961 } 14962 } 14963 } 14964 14965 // FIXME: We need to pass in the attributes given an AST 14966 // representation, not a parser representation. 14967 if (D) { 14968 // FIXME: The current scope is almost... but not entirely... correct here. 14969 ProcessDeclAttributes(getCurScope(), NewFD, *D); 14970 14971 if (NewFD->hasAttrs()) 14972 CheckAlignasUnderalignment(NewFD); 14973 } 14974 14975 // In auto-retain/release, infer strong retension for fields of 14976 // retainable type. 14977 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD)) 14978 NewFD->setInvalidDecl(); 14979 14980 if (T.isObjCGCWeak()) 14981 Diag(Loc, diag::warn_attribute_weak_on_field); 14982 14983 NewFD->setAccess(AS); 14984 return NewFD; 14985 } 14986 14987 bool Sema::CheckNontrivialField(FieldDecl *FD) { 14988 assert(FD); 14989 assert(getLangOpts().CPlusPlus && "valid check only for C++"); 14990 14991 if (FD->isInvalidDecl() || FD->getType()->isDependentType()) 14992 return false; 14993 14994 QualType EltTy = Context.getBaseElementType(FD->getType()); 14995 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 14996 CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl()); 14997 if (RDecl->getDefinition()) { 14998 // We check for copy constructors before constructors 14999 // because otherwise we'll never get complaints about 15000 // copy constructors. 15001 15002 CXXSpecialMember member = CXXInvalid; 15003 // We're required to check for any non-trivial constructors. Since the 15004 // implicit default constructor is suppressed if there are any 15005 // user-declared constructors, we just need to check that there is a 15006 // trivial default constructor and a trivial copy constructor. (We don't 15007 // worry about move constructors here, since this is a C++98 check.) 15008 if (RDecl->hasNonTrivialCopyConstructor()) 15009 member = CXXCopyConstructor; 15010 else if (!RDecl->hasTrivialDefaultConstructor()) 15011 member = CXXDefaultConstructor; 15012 else if (RDecl->hasNonTrivialCopyAssignment()) 15013 member = CXXCopyAssignment; 15014 else if (RDecl->hasNonTrivialDestructor()) 15015 member = CXXDestructor; 15016 15017 if (member != CXXInvalid) { 15018 if (!getLangOpts().CPlusPlus11 && 15019 getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) { 15020 // Objective-C++ ARC: it is an error to have a non-trivial field of 15021 // a union. However, system headers in Objective-C programs 15022 // occasionally have Objective-C lifetime objects within unions, 15023 // and rather than cause the program to fail, we make those 15024 // members unavailable. 15025 SourceLocation Loc = FD->getLocation(); 15026 if (getSourceManager().isInSystemHeader(Loc)) { 15027 if (!FD->hasAttr<UnavailableAttr>()) 15028 FD->addAttr(UnavailableAttr::CreateImplicit(Context, "", 15029 UnavailableAttr::IR_ARCFieldWithOwnership, Loc)); 15030 return false; 15031 } 15032 } 15033 15034 Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ? 15035 diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member : 15036 diag::err_illegal_union_or_anon_struct_member) 15037 << FD->getParent()->isUnion() << FD->getDeclName() << member; 15038 DiagnoseNontrivial(RDecl, member); 15039 return !getLangOpts().CPlusPlus11; 15040 } 15041 } 15042 } 15043 15044 return false; 15045 } 15046 15047 /// TranslateIvarVisibility - Translate visibility from a token ID to an 15048 /// AST enum value. 15049 static ObjCIvarDecl::AccessControl 15050 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) { 15051 switch (ivarVisibility) { 15052 default: llvm_unreachable("Unknown visitibility kind"); 15053 case tok::objc_private: return ObjCIvarDecl::Private; 15054 case tok::objc_public: return ObjCIvarDecl::Public; 15055 case tok::objc_protected: return ObjCIvarDecl::Protected; 15056 case tok::objc_package: return ObjCIvarDecl::Package; 15057 } 15058 } 15059 15060 /// ActOnIvar - Each ivar field of an objective-c class is passed into this 15061 /// in order to create an IvarDecl object for it. 15062 Decl *Sema::ActOnIvar(Scope *S, 15063 SourceLocation DeclStart, 15064 Declarator &D, Expr *BitfieldWidth, 15065 tok::ObjCKeywordKind Visibility) { 15066 15067 IdentifierInfo *II = D.getIdentifier(); 15068 Expr *BitWidth = (Expr*)BitfieldWidth; 15069 SourceLocation Loc = DeclStart; 15070 if (II) Loc = D.getIdentifierLoc(); 15071 15072 // FIXME: Unnamed fields can be handled in various different ways, for 15073 // example, unnamed unions inject all members into the struct namespace! 15074 15075 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 15076 QualType T = TInfo->getType(); 15077 15078 if (BitWidth) { 15079 // 6.7.2.1p3, 6.7.2.1p4 15080 BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get(); 15081 if (!BitWidth) 15082 D.setInvalidType(); 15083 } else { 15084 // Not a bitfield. 15085 15086 // validate II. 15087 15088 } 15089 if (T->isReferenceType()) { 15090 Diag(Loc, diag::err_ivar_reference_type); 15091 D.setInvalidType(); 15092 } 15093 // C99 6.7.2.1p8: A member of a structure or union may have any type other 15094 // than a variably modified type. 15095 else if (T->isVariablyModifiedType()) { 15096 Diag(Loc, diag::err_typecheck_ivar_variable_size); 15097 D.setInvalidType(); 15098 } 15099 15100 // Get the visibility (access control) for this ivar. 15101 ObjCIvarDecl::AccessControl ac = 15102 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility) 15103 : ObjCIvarDecl::None; 15104 // Must set ivar's DeclContext to its enclosing interface. 15105 ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext); 15106 if (!EnclosingDecl || EnclosingDecl->isInvalidDecl()) 15107 return nullptr; 15108 ObjCContainerDecl *EnclosingContext; 15109 if (ObjCImplementationDecl *IMPDecl = 15110 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 15111 if (LangOpts.ObjCRuntime.isFragile()) { 15112 // Case of ivar declared in an implementation. Context is that of its class. 15113 EnclosingContext = IMPDecl->getClassInterface(); 15114 assert(EnclosingContext && "Implementation has no class interface!"); 15115 } 15116 else 15117 EnclosingContext = EnclosingDecl; 15118 } else { 15119 if (ObjCCategoryDecl *CDecl = 15120 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 15121 if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) { 15122 Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension(); 15123 return nullptr; 15124 } 15125 } 15126 EnclosingContext = EnclosingDecl; 15127 } 15128 15129 // Construct the decl. 15130 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext, 15131 DeclStart, Loc, II, T, 15132 TInfo, ac, (Expr *)BitfieldWidth); 15133 15134 if (II) { 15135 NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName, 15136 ForVisibleRedeclaration); 15137 if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S) 15138 && !isa<TagDecl>(PrevDecl)) { 15139 Diag(Loc, diag::err_duplicate_member) << II; 15140 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 15141 NewID->setInvalidDecl(); 15142 } 15143 } 15144 15145 // Process attributes attached to the ivar. 15146 ProcessDeclAttributes(S, NewID, D); 15147 15148 if (D.isInvalidType()) 15149 NewID->setInvalidDecl(); 15150 15151 // In ARC, infer 'retaining' for ivars of retainable type. 15152 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID)) 15153 NewID->setInvalidDecl(); 15154 15155 if (D.getDeclSpec().isModulePrivateSpecified()) 15156 NewID->setModulePrivate(); 15157 15158 if (II) { 15159 // FIXME: When interfaces are DeclContexts, we'll need to add 15160 // these to the interface. 15161 S->AddDecl(NewID); 15162 IdResolver.AddDecl(NewID); 15163 } 15164 15165 if (LangOpts.ObjCRuntime.isNonFragile() && 15166 !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl)) 15167 Diag(Loc, diag::warn_ivars_in_interface); 15168 15169 return NewID; 15170 } 15171 15172 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for 15173 /// class and class extensions. For every class \@interface and class 15174 /// extension \@interface, if the last ivar is a bitfield of any type, 15175 /// then add an implicit `char :0` ivar to the end of that interface. 15176 void Sema::ActOnLastBitfield(SourceLocation DeclLoc, 15177 SmallVectorImpl<Decl *> &AllIvarDecls) { 15178 if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty()) 15179 return; 15180 15181 Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1]; 15182 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl); 15183 15184 if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0) 15185 return; 15186 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext); 15187 if (!ID) { 15188 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) { 15189 if (!CD->IsClassExtension()) 15190 return; 15191 } 15192 // No need to add this to end of @implementation. 15193 else 15194 return; 15195 } 15196 // All conditions are met. Add a new bitfield to the tail end of ivars. 15197 llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0); 15198 Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc); 15199 15200 Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext), 15201 DeclLoc, DeclLoc, nullptr, 15202 Context.CharTy, 15203 Context.getTrivialTypeSourceInfo(Context.CharTy, 15204 DeclLoc), 15205 ObjCIvarDecl::Private, BW, 15206 true); 15207 AllIvarDecls.push_back(Ivar); 15208 } 15209 15210 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl, 15211 ArrayRef<Decl *> Fields, SourceLocation LBrac, 15212 SourceLocation RBrac, AttributeList *Attr) { 15213 assert(EnclosingDecl && "missing record or interface decl"); 15214 15215 // If this is an Objective-C @implementation or category and we have 15216 // new fields here we should reset the layout of the interface since 15217 // it will now change. 15218 if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) { 15219 ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl); 15220 switch (DC->getKind()) { 15221 default: break; 15222 case Decl::ObjCCategory: 15223 Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface()); 15224 break; 15225 case Decl::ObjCImplementation: 15226 Context. 15227 ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface()); 15228 break; 15229 } 15230 } 15231 15232 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl); 15233 15234 // Start counting up the number of named members; make sure to include 15235 // members of anonymous structs and unions in the total. 15236 unsigned NumNamedMembers = 0; 15237 if (Record) { 15238 for (const auto *I : Record->decls()) { 15239 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I)) 15240 if (IFD->getDeclName()) 15241 ++NumNamedMembers; 15242 } 15243 } 15244 15245 // Verify that all the fields are okay. 15246 SmallVector<FieldDecl*, 32> RecFields; 15247 15248 bool ObjCFieldLifetimeErrReported = false; 15249 for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end(); 15250 i != end; ++i) { 15251 FieldDecl *FD = cast<FieldDecl>(*i); 15252 15253 // Get the type for the field. 15254 const Type *FDTy = FD->getType().getTypePtr(); 15255 Qualifiers QS = FD->getType().getQualifiers(); 15256 15257 if (!FD->isAnonymousStructOrUnion()) { 15258 // Remember all fields written by the user. 15259 RecFields.push_back(FD); 15260 } 15261 15262 // If the field is already invalid for some reason, don't emit more 15263 // diagnostics about it. 15264 if (FD->isInvalidDecl()) { 15265 EnclosingDecl->setInvalidDecl(); 15266 continue; 15267 } 15268 15269 // C99 6.7.2.1p2: 15270 // A structure or union shall not contain a member with 15271 // incomplete or function type (hence, a structure shall not 15272 // contain an instance of itself, but may contain a pointer to 15273 // an instance of itself), except that the last member of a 15274 // structure with more than one named member may have incomplete 15275 // array type; such a structure (and any union containing, 15276 // possibly recursively, a member that is such a structure) 15277 // shall not be a member of a structure or an element of an 15278 // array. 15279 bool IsLastField = (i + 1 == Fields.end()); 15280 if (FDTy->isFunctionType()) { 15281 // Field declared as a function. 15282 Diag(FD->getLocation(), diag::err_field_declared_as_function) 15283 << FD->getDeclName(); 15284 FD->setInvalidDecl(); 15285 EnclosingDecl->setInvalidDecl(); 15286 continue; 15287 } else if (FDTy->isIncompleteArrayType() && 15288 (Record || isa<ObjCContainerDecl>(EnclosingDecl))) { 15289 if (Record) { 15290 // Flexible array member. 15291 // Microsoft and g++ is more permissive regarding flexible array. 15292 // It will accept flexible array in union and also 15293 // as the sole element of a struct/class. 15294 unsigned DiagID = 0; 15295 if (!Record->isUnion() && !IsLastField) { 15296 Diag(FD->getLocation(), diag::err_flexible_array_not_at_end) 15297 << FD->getDeclName() << FD->getType() << Record->getTagKind(); 15298 Diag((*(i + 1))->getLocation(), diag::note_next_field_declaration); 15299 FD->setInvalidDecl(); 15300 EnclosingDecl->setInvalidDecl(); 15301 continue; 15302 } else if (Record->isUnion()) 15303 DiagID = getLangOpts().MicrosoftExt 15304 ? diag::ext_flexible_array_union_ms 15305 : getLangOpts().CPlusPlus 15306 ? diag::ext_flexible_array_union_gnu 15307 : diag::err_flexible_array_union; 15308 else if (NumNamedMembers < 1) 15309 DiagID = getLangOpts().MicrosoftExt 15310 ? diag::ext_flexible_array_empty_aggregate_ms 15311 : getLangOpts().CPlusPlus 15312 ? diag::ext_flexible_array_empty_aggregate_gnu 15313 : diag::err_flexible_array_empty_aggregate; 15314 15315 if (DiagID) 15316 Diag(FD->getLocation(), DiagID) << FD->getDeclName() 15317 << Record->getTagKind(); 15318 // While the layout of types that contain virtual bases is not specified 15319 // by the C++ standard, both the Itanium and Microsoft C++ ABIs place 15320 // virtual bases after the derived members. This would make a flexible 15321 // array member declared at the end of an object not adjacent to the end 15322 // of the type. 15323 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record)) 15324 if (RD->getNumVBases() != 0) 15325 Diag(FD->getLocation(), diag::err_flexible_array_virtual_base) 15326 << FD->getDeclName() << Record->getTagKind(); 15327 if (!getLangOpts().C99) 15328 Diag(FD->getLocation(), diag::ext_c99_flexible_array_member) 15329 << FD->getDeclName() << Record->getTagKind(); 15330 15331 // If the element type has a non-trivial destructor, we would not 15332 // implicitly destroy the elements, so disallow it for now. 15333 // 15334 // FIXME: GCC allows this. We should probably either implicitly delete 15335 // the destructor of the containing class, or just allow this. 15336 QualType BaseElem = Context.getBaseElementType(FD->getType()); 15337 if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) { 15338 Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor) 15339 << FD->getDeclName() << FD->getType(); 15340 FD->setInvalidDecl(); 15341 EnclosingDecl->setInvalidDecl(); 15342 continue; 15343 } 15344 // Okay, we have a legal flexible array member at the end of the struct. 15345 Record->setHasFlexibleArrayMember(true); 15346 } else { 15347 // In ObjCContainerDecl ivars with incomplete array type are accepted, 15348 // unless they are followed by another ivar. That check is done 15349 // elsewhere, after synthesized ivars are known. 15350 } 15351 } else if (!FDTy->isDependentType() && 15352 RequireCompleteType(FD->getLocation(), FD->getType(), 15353 diag::err_field_incomplete)) { 15354 // Incomplete type 15355 FD->setInvalidDecl(); 15356 EnclosingDecl->setInvalidDecl(); 15357 continue; 15358 } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) { 15359 if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) { 15360 // A type which contains a flexible array member is considered to be a 15361 // flexible array member. 15362 Record->setHasFlexibleArrayMember(true); 15363 if (!Record->isUnion()) { 15364 // If this is a struct/class and this is not the last element, reject 15365 // it. Note that GCC supports variable sized arrays in the middle of 15366 // structures. 15367 if (!IsLastField) 15368 Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct) 15369 << FD->getDeclName() << FD->getType(); 15370 else { 15371 // We support flexible arrays at the end of structs in 15372 // other structs as an extension. 15373 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct) 15374 << FD->getDeclName(); 15375 } 15376 } 15377 } 15378 if (isa<ObjCContainerDecl>(EnclosingDecl) && 15379 RequireNonAbstractType(FD->getLocation(), FD->getType(), 15380 diag::err_abstract_type_in_decl, 15381 AbstractIvarType)) { 15382 // Ivars can not have abstract class types 15383 FD->setInvalidDecl(); 15384 } 15385 if (Record && FDTTy->getDecl()->hasObjectMember()) 15386 Record->setHasObjectMember(true); 15387 if (Record && FDTTy->getDecl()->hasVolatileMember()) 15388 Record->setHasVolatileMember(true); 15389 } else if (FDTy->isObjCObjectType()) { 15390 /// A field cannot be an Objective-c object 15391 Diag(FD->getLocation(), diag::err_statically_allocated_object) 15392 << FixItHint::CreateInsertion(FD->getLocation(), "*"); 15393 QualType T = Context.getObjCObjectPointerType(FD->getType()); 15394 FD->setType(T); 15395 } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() && 15396 Record && !ObjCFieldLifetimeErrReported && 15397 ((!getLangOpts().CPlusPlus && 15398 QS.getObjCLifetime() == Qualifiers::OCL_Weak) || 15399 Record->isUnion())) { 15400 // It's an error in ARC or Weak if a field has lifetime. 15401 // We don't want to report this in a system header, though, 15402 // so we just make the field unavailable. 15403 // FIXME: that's really not sufficient; we need to make the type 15404 // itself invalid to, say, initialize or copy. 15405 QualType T = FD->getType(); 15406 if (T.hasNonTrivialObjCLifetime()) { 15407 SourceLocation loc = FD->getLocation(); 15408 if (getSourceManager().isInSystemHeader(loc)) { 15409 if (!FD->hasAttr<UnavailableAttr>()) { 15410 FD->addAttr(UnavailableAttr::CreateImplicit(Context, "", 15411 UnavailableAttr::IR_ARCFieldWithOwnership, loc)); 15412 } 15413 } else { 15414 Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag) 15415 << T->isBlockPointerType() << Record->getTagKind(); 15416 } 15417 ObjCFieldLifetimeErrReported = true; 15418 } 15419 } else if (getLangOpts().ObjC1 && 15420 getLangOpts().getGC() != LangOptions::NonGC && 15421 Record && !Record->hasObjectMember()) { 15422 if (FD->getType()->isObjCObjectPointerType() || 15423 FD->getType().isObjCGCStrong()) 15424 Record->setHasObjectMember(true); 15425 else if (Context.getAsArrayType(FD->getType())) { 15426 QualType BaseType = Context.getBaseElementType(FD->getType()); 15427 if (BaseType->isRecordType() && 15428 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember()) 15429 Record->setHasObjectMember(true); 15430 else if (BaseType->isObjCObjectPointerType() || 15431 BaseType.isObjCGCStrong()) 15432 Record->setHasObjectMember(true); 15433 } 15434 } 15435 15436 if (Record && !getLangOpts().CPlusPlus) { 15437 QualType FT = FD->getType(); 15438 if (FT.isNonTrivialToPrimitiveDefaultInitialize()) 15439 Record->setNonTrivialToPrimitiveDefaultInitialize(); 15440 QualType::PrimitiveCopyKind PCK = FT.isNonTrivialToPrimitiveCopy(); 15441 if (PCK != QualType::PCK_Trivial && PCK != QualType::PCK_VolatileTrivial) 15442 Record->setNonTrivialToPrimitiveCopy(); 15443 if (FT.isDestructedType()) 15444 Record->setNonTrivialToPrimitiveDestroy(); 15445 } 15446 15447 if (Record && FD->getType().isVolatileQualified()) 15448 Record->setHasVolatileMember(true); 15449 // Keep track of the number of named members. 15450 if (FD->getIdentifier()) 15451 ++NumNamedMembers; 15452 } 15453 15454 // Okay, we successfully defined 'Record'. 15455 if (Record) { 15456 bool Completed = false; 15457 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) { 15458 if (!CXXRecord->isInvalidDecl()) { 15459 // Set access bits correctly on the directly-declared conversions. 15460 for (CXXRecordDecl::conversion_iterator 15461 I = CXXRecord->conversion_begin(), 15462 E = CXXRecord->conversion_end(); I != E; ++I) 15463 I.setAccess((*I)->getAccess()); 15464 } 15465 15466 if (!CXXRecord->isDependentType()) { 15467 if (CXXRecord->hasUserDeclaredDestructor()) { 15468 // Adjust user-defined destructor exception spec. 15469 if (getLangOpts().CPlusPlus11) 15470 AdjustDestructorExceptionSpec(CXXRecord, 15471 CXXRecord->getDestructor()); 15472 } 15473 15474 // Add any implicitly-declared members to this class. 15475 AddImplicitlyDeclaredMembersToClass(CXXRecord); 15476 15477 if (!CXXRecord->isInvalidDecl()) { 15478 // If we have virtual base classes, we may end up finding multiple 15479 // final overriders for a given virtual function. Check for this 15480 // problem now. 15481 if (CXXRecord->getNumVBases()) { 15482 CXXFinalOverriderMap FinalOverriders; 15483 CXXRecord->getFinalOverriders(FinalOverriders); 15484 15485 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 15486 MEnd = FinalOverriders.end(); 15487 M != MEnd; ++M) { 15488 for (OverridingMethods::iterator SO = M->second.begin(), 15489 SOEnd = M->second.end(); 15490 SO != SOEnd; ++SO) { 15491 assert(SO->second.size() > 0 && 15492 "Virtual function without overridding functions?"); 15493 if (SO->second.size() == 1) 15494 continue; 15495 15496 // C++ [class.virtual]p2: 15497 // In a derived class, if a virtual member function of a base 15498 // class subobject has more than one final overrider the 15499 // program is ill-formed. 15500 Diag(Record->getLocation(), diag::err_multiple_final_overriders) 15501 << (const NamedDecl *)M->first << Record; 15502 Diag(M->first->getLocation(), 15503 diag::note_overridden_virtual_function); 15504 for (OverridingMethods::overriding_iterator 15505 OM = SO->second.begin(), 15506 OMEnd = SO->second.end(); 15507 OM != OMEnd; ++OM) 15508 Diag(OM->Method->getLocation(), diag::note_final_overrider) 15509 << (const NamedDecl *)M->first << OM->Method->getParent(); 15510 15511 Record->setInvalidDecl(); 15512 } 15513 } 15514 CXXRecord->completeDefinition(&FinalOverriders); 15515 Completed = true; 15516 } 15517 } 15518 } 15519 } 15520 15521 if (!Completed) 15522 Record->completeDefinition(); 15523 15524 // We may have deferred checking for a deleted destructor. Check now. 15525 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) { 15526 auto *Dtor = CXXRecord->getDestructor(); 15527 if (Dtor && Dtor->isImplicit() && 15528 ShouldDeleteSpecialMember(Dtor, CXXDestructor)) { 15529 CXXRecord->setImplicitDestructorIsDeleted(); 15530 SetDeclDeleted(Dtor, CXXRecord->getLocation()); 15531 } 15532 } 15533 15534 if (Record->hasAttrs()) { 15535 CheckAlignasUnderalignment(Record); 15536 15537 if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>()) 15538 checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record), 15539 IA->getRange(), IA->getBestCase(), 15540 IA->getSemanticSpelling()); 15541 } 15542 15543 // Check if the structure/union declaration is a type that can have zero 15544 // size in C. For C this is a language extension, for C++ it may cause 15545 // compatibility problems. 15546 bool CheckForZeroSize; 15547 if (!getLangOpts().CPlusPlus) { 15548 CheckForZeroSize = true; 15549 } else { 15550 // For C++ filter out types that cannot be referenced in C code. 15551 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record); 15552 CheckForZeroSize = 15553 CXXRecord->getLexicalDeclContext()->isExternCContext() && 15554 !CXXRecord->isDependentType() && 15555 CXXRecord->isCLike(); 15556 } 15557 if (CheckForZeroSize) { 15558 bool ZeroSize = true; 15559 bool IsEmpty = true; 15560 unsigned NonBitFields = 0; 15561 for (RecordDecl::field_iterator I = Record->field_begin(), 15562 E = Record->field_end(); 15563 (NonBitFields == 0 || ZeroSize) && I != E; ++I) { 15564 IsEmpty = false; 15565 if (I->isUnnamedBitfield()) { 15566 if (I->getBitWidthValue(Context) > 0) 15567 ZeroSize = false; 15568 } else { 15569 ++NonBitFields; 15570 QualType FieldType = I->getType(); 15571 if (FieldType->isIncompleteType() || 15572 !Context.getTypeSizeInChars(FieldType).isZero()) 15573 ZeroSize = false; 15574 } 15575 } 15576 15577 // Empty structs are an extension in C (C99 6.7.2.1p7). They are 15578 // allowed in C++, but warn if its declaration is inside 15579 // extern "C" block. 15580 if (ZeroSize) { 15581 Diag(RecLoc, getLangOpts().CPlusPlus ? 15582 diag::warn_zero_size_struct_union_in_extern_c : 15583 diag::warn_zero_size_struct_union_compat) 15584 << IsEmpty << Record->isUnion() << (NonBitFields > 1); 15585 } 15586 15587 // Structs without named members are extension in C (C99 6.7.2.1p7), 15588 // but are accepted by GCC. 15589 if (NonBitFields == 0 && !getLangOpts().CPlusPlus) { 15590 Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union : 15591 diag::ext_no_named_members_in_struct_union) 15592 << Record->isUnion(); 15593 } 15594 } 15595 } else { 15596 ObjCIvarDecl **ClsFields = 15597 reinterpret_cast<ObjCIvarDecl**>(RecFields.data()); 15598 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) { 15599 ID->setEndOfDefinitionLoc(RBrac); 15600 // Add ivar's to class's DeclContext. 15601 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 15602 ClsFields[i]->setLexicalDeclContext(ID); 15603 ID->addDecl(ClsFields[i]); 15604 } 15605 // Must enforce the rule that ivars in the base classes may not be 15606 // duplicates. 15607 if (ID->getSuperClass()) 15608 DiagnoseDuplicateIvars(ID, ID->getSuperClass()); 15609 } else if (ObjCImplementationDecl *IMPDecl = 15610 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 15611 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl"); 15612 for (unsigned I = 0, N = RecFields.size(); I != N; ++I) 15613 // Ivar declared in @implementation never belongs to the implementation. 15614 // Only it is in implementation's lexical context. 15615 ClsFields[I]->setLexicalDeclContext(IMPDecl); 15616 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac); 15617 IMPDecl->setIvarLBraceLoc(LBrac); 15618 IMPDecl->setIvarRBraceLoc(RBrac); 15619 } else if (ObjCCategoryDecl *CDecl = 15620 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 15621 // case of ivars in class extension; all other cases have been 15622 // reported as errors elsewhere. 15623 // FIXME. Class extension does not have a LocEnd field. 15624 // CDecl->setLocEnd(RBrac); 15625 // Add ivar's to class extension's DeclContext. 15626 // Diagnose redeclaration of private ivars. 15627 ObjCInterfaceDecl *IDecl = CDecl->getClassInterface(); 15628 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 15629 if (IDecl) { 15630 if (const ObjCIvarDecl *ClsIvar = 15631 IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) { 15632 Diag(ClsFields[i]->getLocation(), 15633 diag::err_duplicate_ivar_declaration); 15634 Diag(ClsIvar->getLocation(), diag::note_previous_definition); 15635 continue; 15636 } 15637 for (const auto *Ext : IDecl->known_extensions()) { 15638 if (const ObjCIvarDecl *ClsExtIvar 15639 = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) { 15640 Diag(ClsFields[i]->getLocation(), 15641 diag::err_duplicate_ivar_declaration); 15642 Diag(ClsExtIvar->getLocation(), diag::note_previous_definition); 15643 continue; 15644 } 15645 } 15646 } 15647 ClsFields[i]->setLexicalDeclContext(CDecl); 15648 CDecl->addDecl(ClsFields[i]); 15649 } 15650 CDecl->setIvarLBraceLoc(LBrac); 15651 CDecl->setIvarRBraceLoc(RBrac); 15652 } 15653 } 15654 15655 if (Attr) 15656 ProcessDeclAttributeList(S, Record, Attr); 15657 } 15658 15659 /// \brief Determine whether the given integral value is representable within 15660 /// the given type T. 15661 static bool isRepresentableIntegerValue(ASTContext &Context, 15662 llvm::APSInt &Value, 15663 QualType T) { 15664 assert((T->isIntegralType(Context) || T->isEnumeralType()) && 15665 "Integral type required!"); 15666 unsigned BitWidth = Context.getIntWidth(T); 15667 15668 if (Value.isUnsigned() || Value.isNonNegative()) { 15669 if (T->isSignedIntegerOrEnumerationType()) 15670 --BitWidth; 15671 return Value.getActiveBits() <= BitWidth; 15672 } 15673 return Value.getMinSignedBits() <= BitWidth; 15674 } 15675 15676 // \brief Given an integral type, return the next larger integral type 15677 // (or a NULL type of no such type exists). 15678 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) { 15679 // FIXME: Int128/UInt128 support, which also needs to be introduced into 15680 // enum checking below. 15681 assert((T->isIntegralType(Context) || 15682 T->isEnumeralType()) && "Integral type required!"); 15683 const unsigned NumTypes = 4; 15684 QualType SignedIntegralTypes[NumTypes] = { 15685 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy 15686 }; 15687 QualType UnsignedIntegralTypes[NumTypes] = { 15688 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, 15689 Context.UnsignedLongLongTy 15690 }; 15691 15692 unsigned BitWidth = Context.getTypeSize(T); 15693 QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes 15694 : UnsignedIntegralTypes; 15695 for (unsigned I = 0; I != NumTypes; ++I) 15696 if (Context.getTypeSize(Types[I]) > BitWidth) 15697 return Types[I]; 15698 15699 return QualType(); 15700 } 15701 15702 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum, 15703 EnumConstantDecl *LastEnumConst, 15704 SourceLocation IdLoc, 15705 IdentifierInfo *Id, 15706 Expr *Val) { 15707 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 15708 llvm::APSInt EnumVal(IntWidth); 15709 QualType EltTy; 15710 15711 if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue)) 15712 Val = nullptr; 15713 15714 if (Val) 15715 Val = DefaultLvalueConversion(Val).get(); 15716 15717 if (Val) { 15718 if (Enum->isDependentType() || Val->isTypeDependent()) 15719 EltTy = Context.DependentTy; 15720 else { 15721 if (getLangOpts().CPlusPlus11 && Enum->isFixed() && 15722 !getLangOpts().MSVCCompat) { 15723 // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the 15724 // constant-expression in the enumerator-definition shall be a converted 15725 // constant expression of the underlying type. 15726 EltTy = Enum->getIntegerType(); 15727 ExprResult Converted = 15728 CheckConvertedConstantExpression(Val, EltTy, EnumVal, 15729 CCEK_Enumerator); 15730 if (Converted.isInvalid()) 15731 Val = nullptr; 15732 else 15733 Val = Converted.get(); 15734 } else if (!Val->isValueDependent() && 15735 !(Val = VerifyIntegerConstantExpression(Val, 15736 &EnumVal).get())) { 15737 // C99 6.7.2.2p2: Make sure we have an integer constant expression. 15738 } else { 15739 if (Enum->isComplete()) { 15740 EltTy = Enum->getIntegerType(); 15741 15742 // In Obj-C and Microsoft mode, require the enumeration value to be 15743 // representable in the underlying type of the enumeration. In C++11, 15744 // we perform a non-narrowing conversion as part of converted constant 15745 // expression checking. 15746 if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 15747 if (getLangOpts().MSVCCompat) { 15748 Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy; 15749 Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get(); 15750 } else 15751 Diag(IdLoc, diag::err_enumerator_too_large) << EltTy; 15752 } else 15753 Val = ImpCastExprToType(Val, EltTy, 15754 EltTy->isBooleanType() ? 15755 CK_IntegralToBoolean : CK_IntegralCast) 15756 .get(); 15757 } else if (getLangOpts().CPlusPlus) { 15758 // C++11 [dcl.enum]p5: 15759 // If the underlying type is not fixed, the type of each enumerator 15760 // is the type of its initializing value: 15761 // - If an initializer is specified for an enumerator, the 15762 // initializing value has the same type as the expression. 15763 EltTy = Val->getType(); 15764 } else { 15765 // C99 6.7.2.2p2: 15766 // The expression that defines the value of an enumeration constant 15767 // shall be an integer constant expression that has a value 15768 // representable as an int. 15769 15770 // Complain if the value is not representable in an int. 15771 if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy)) 15772 Diag(IdLoc, diag::ext_enum_value_not_int) 15773 << EnumVal.toString(10) << Val->getSourceRange() 15774 << (EnumVal.isUnsigned() || EnumVal.isNonNegative()); 15775 else if (!Context.hasSameType(Val->getType(), Context.IntTy)) { 15776 // Force the type of the expression to 'int'. 15777 Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get(); 15778 } 15779 EltTy = Val->getType(); 15780 } 15781 } 15782 } 15783 } 15784 15785 if (!Val) { 15786 if (Enum->isDependentType()) 15787 EltTy = Context.DependentTy; 15788 else if (!LastEnumConst) { 15789 // C++0x [dcl.enum]p5: 15790 // If the underlying type is not fixed, the type of each enumerator 15791 // is the type of its initializing value: 15792 // - If no initializer is specified for the first enumerator, the 15793 // initializing value has an unspecified integral type. 15794 // 15795 // GCC uses 'int' for its unspecified integral type, as does 15796 // C99 6.7.2.2p3. 15797 if (Enum->isFixed()) { 15798 EltTy = Enum->getIntegerType(); 15799 } 15800 else { 15801 EltTy = Context.IntTy; 15802 } 15803 } else { 15804 // Assign the last value + 1. 15805 EnumVal = LastEnumConst->getInitVal(); 15806 ++EnumVal; 15807 EltTy = LastEnumConst->getType(); 15808 15809 // Check for overflow on increment. 15810 if (EnumVal < LastEnumConst->getInitVal()) { 15811 // C++0x [dcl.enum]p5: 15812 // If the underlying type is not fixed, the type of each enumerator 15813 // is the type of its initializing value: 15814 // 15815 // - Otherwise the type of the initializing value is the same as 15816 // the type of the initializing value of the preceding enumerator 15817 // unless the incremented value is not representable in that type, 15818 // in which case the type is an unspecified integral type 15819 // sufficient to contain the incremented value. If no such type 15820 // exists, the program is ill-formed. 15821 QualType T = getNextLargerIntegralType(Context, EltTy); 15822 if (T.isNull() || Enum->isFixed()) { 15823 // There is no integral type larger enough to represent this 15824 // value. Complain, then allow the value to wrap around. 15825 EnumVal = LastEnumConst->getInitVal(); 15826 EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2); 15827 ++EnumVal; 15828 if (Enum->isFixed()) 15829 // When the underlying type is fixed, this is ill-formed. 15830 Diag(IdLoc, diag::err_enumerator_wrapped) 15831 << EnumVal.toString(10) 15832 << EltTy; 15833 else 15834 Diag(IdLoc, diag::ext_enumerator_increment_too_large) 15835 << EnumVal.toString(10); 15836 } else { 15837 EltTy = T; 15838 } 15839 15840 // Retrieve the last enumerator's value, extent that type to the 15841 // type that is supposed to be large enough to represent the incremented 15842 // value, then increment. 15843 EnumVal = LastEnumConst->getInitVal(); 15844 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 15845 EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy)); 15846 ++EnumVal; 15847 15848 // If we're not in C++, diagnose the overflow of enumerator values, 15849 // which in C99 means that the enumerator value is not representable in 15850 // an int (C99 6.7.2.2p2). However, we support GCC's extension that 15851 // permits enumerator values that are representable in some larger 15852 // integral type. 15853 if (!getLangOpts().CPlusPlus && !T.isNull()) 15854 Diag(IdLoc, diag::warn_enum_value_overflow); 15855 } else if (!getLangOpts().CPlusPlus && 15856 !isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 15857 // Enforce C99 6.7.2.2p2 even when we compute the next value. 15858 Diag(IdLoc, diag::ext_enum_value_not_int) 15859 << EnumVal.toString(10) << 1; 15860 } 15861 } 15862 } 15863 15864 if (!EltTy->isDependentType()) { 15865 // Make the enumerator value match the signedness and size of the 15866 // enumerator's type. 15867 EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy)); 15868 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 15869 } 15870 15871 return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy, 15872 Val, EnumVal); 15873 } 15874 15875 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II, 15876 SourceLocation IILoc) { 15877 if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) || 15878 !getLangOpts().CPlusPlus) 15879 return SkipBodyInfo(); 15880 15881 // We have an anonymous enum definition. Look up the first enumerator to 15882 // determine if we should merge the definition with an existing one and 15883 // skip the body. 15884 NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName, 15885 forRedeclarationInCurContext()); 15886 auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl); 15887 if (!PrevECD) 15888 return SkipBodyInfo(); 15889 15890 EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext()); 15891 NamedDecl *Hidden; 15892 if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) { 15893 SkipBodyInfo Skip; 15894 Skip.Previous = Hidden; 15895 return Skip; 15896 } 15897 15898 return SkipBodyInfo(); 15899 } 15900 15901 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, 15902 SourceLocation IdLoc, IdentifierInfo *Id, 15903 AttributeList *Attr, 15904 SourceLocation EqualLoc, Expr *Val) { 15905 EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl); 15906 EnumConstantDecl *LastEnumConst = 15907 cast_or_null<EnumConstantDecl>(lastEnumConst); 15908 15909 // The scope passed in may not be a decl scope. Zip up the scope tree until 15910 // we find one that is. 15911 S = getNonFieldDeclScope(S); 15912 15913 // Verify that there isn't already something declared with this name in this 15914 // scope. 15915 NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName, 15916 ForVisibleRedeclaration); 15917 if (PrevDecl && PrevDecl->isTemplateParameter()) { 15918 // Maybe we will complain about the shadowed template parameter. 15919 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl); 15920 // Just pretend that we didn't see the previous declaration. 15921 PrevDecl = nullptr; 15922 } 15923 15924 // C++ [class.mem]p15: 15925 // If T is the name of a class, then each of the following shall have a name 15926 // different from T: 15927 // - every enumerator of every member of class T that is an unscoped 15928 // enumerated type 15929 if (getLangOpts().CPlusPlus && !TheEnumDecl->isScoped()) 15930 DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(), 15931 DeclarationNameInfo(Id, IdLoc)); 15932 15933 EnumConstantDecl *New = 15934 CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val); 15935 if (!New) 15936 return nullptr; 15937 15938 if (PrevDecl) { 15939 // When in C++, we may get a TagDecl with the same name; in this case the 15940 // enum constant will 'hide' the tag. 15941 assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) && 15942 "Received TagDecl when not in C++!"); 15943 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) { 15944 if (isa<EnumConstantDecl>(PrevDecl)) 15945 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id; 15946 else 15947 Diag(IdLoc, diag::err_redefinition) << Id; 15948 notePreviousDefinition(PrevDecl, IdLoc); 15949 return nullptr; 15950 } 15951 } 15952 15953 // Process attributes. 15954 if (Attr) ProcessDeclAttributeList(S, New, Attr); 15955 AddPragmaAttributes(S, New); 15956 15957 // Register this decl in the current scope stack. 15958 New->setAccess(TheEnumDecl->getAccess()); 15959 PushOnScopeChains(New, S); 15960 15961 ActOnDocumentableDecl(New); 15962 15963 return New; 15964 } 15965 15966 // Returns true when the enum initial expression does not trigger the 15967 // duplicate enum warning. A few common cases are exempted as follows: 15968 // Element2 = Element1 15969 // Element2 = Element1 + 1 15970 // Element2 = Element1 - 1 15971 // Where Element2 and Element1 are from the same enum. 15972 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) { 15973 Expr *InitExpr = ECD->getInitExpr(); 15974 if (!InitExpr) 15975 return true; 15976 InitExpr = InitExpr->IgnoreImpCasts(); 15977 15978 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) { 15979 if (!BO->isAdditiveOp()) 15980 return true; 15981 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS()); 15982 if (!IL) 15983 return true; 15984 if (IL->getValue() != 1) 15985 return true; 15986 15987 InitExpr = BO->getLHS(); 15988 } 15989 15990 // This checks if the elements are from the same enum. 15991 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr); 15992 if (!DRE) 15993 return true; 15994 15995 EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl()); 15996 if (!EnumConstant) 15997 return true; 15998 15999 if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) != 16000 Enum) 16001 return true; 16002 16003 return false; 16004 } 16005 16006 namespace { 16007 struct DupKey { 16008 int64_t val; 16009 bool isTombstoneOrEmptyKey; 16010 DupKey(int64_t val, bool isTombstoneOrEmptyKey) 16011 : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {} 16012 }; 16013 16014 static DupKey GetDupKey(const llvm::APSInt& Val) { 16015 return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(), 16016 false); 16017 } 16018 16019 struct DenseMapInfoDupKey { 16020 static DupKey getEmptyKey() { return DupKey(0, true); } 16021 static DupKey getTombstoneKey() { return DupKey(1, true); } 16022 static unsigned getHashValue(const DupKey Key) { 16023 return (unsigned)(Key.val * 37); 16024 } 16025 static bool isEqual(const DupKey& LHS, const DupKey& RHS) { 16026 return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey && 16027 LHS.val == RHS.val; 16028 } 16029 }; 16030 } // end anonymous namespace 16031 16032 // Emits a warning when an element is implicitly set a value that 16033 // a previous element has already been set to. 16034 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements, 16035 EnumDecl *Enum, 16036 QualType EnumType) { 16037 if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation())) 16038 return; 16039 // Avoid anonymous enums 16040 if (!Enum->getIdentifier()) 16041 return; 16042 16043 // Only check for small enums. 16044 if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64) 16045 return; 16046 16047 typedef SmallVector<EnumConstantDecl *, 3> ECDVector; 16048 typedef SmallVector<ECDVector *, 3> DuplicatesVector; 16049 16050 typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector; 16051 typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey> 16052 ValueToVectorMap; 16053 16054 DuplicatesVector DupVector; 16055 ValueToVectorMap EnumMap; 16056 16057 // Populate the EnumMap with all values represented by enum constants without 16058 // an initialier. 16059 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 16060 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]); 16061 16062 // Null EnumConstantDecl means a previous diagnostic has been emitted for 16063 // this constant. Skip this enum since it may be ill-formed. 16064 if (!ECD) { 16065 return; 16066 } 16067 16068 if (ECD->getInitExpr()) 16069 continue; 16070 16071 DupKey Key = GetDupKey(ECD->getInitVal()); 16072 DeclOrVector &Entry = EnumMap[Key]; 16073 16074 // First time encountering this value. 16075 if (Entry.isNull()) 16076 Entry = ECD; 16077 } 16078 16079 // Create vectors for any values that has duplicates. 16080 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 16081 EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]); 16082 if (!ValidDuplicateEnum(ECD, Enum)) 16083 continue; 16084 16085 DupKey Key = GetDupKey(ECD->getInitVal()); 16086 16087 DeclOrVector& Entry = EnumMap[Key]; 16088 if (Entry.isNull()) 16089 continue; 16090 16091 if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) { 16092 // Ensure constants are different. 16093 if (D == ECD) 16094 continue; 16095 16096 // Create new vector and push values onto it. 16097 ECDVector *Vec = new ECDVector(); 16098 Vec->push_back(D); 16099 Vec->push_back(ECD); 16100 16101 // Update entry to point to the duplicates vector. 16102 Entry = Vec; 16103 16104 // Store the vector somewhere we can consult later for quick emission of 16105 // diagnostics. 16106 DupVector.push_back(Vec); 16107 continue; 16108 } 16109 16110 ECDVector *Vec = Entry.get<ECDVector*>(); 16111 // Make sure constants are not added more than once. 16112 if (*Vec->begin() == ECD) 16113 continue; 16114 16115 Vec->push_back(ECD); 16116 } 16117 16118 // Emit diagnostics. 16119 for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(), 16120 DupVectorEnd = DupVector.end(); 16121 DupVectorIter != DupVectorEnd; ++DupVectorIter) { 16122 ECDVector *Vec = *DupVectorIter; 16123 assert(Vec->size() > 1 && "ECDVector should have at least 2 elements."); 16124 16125 // Emit warning for one enum constant. 16126 ECDVector::iterator I = Vec->begin(); 16127 S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values) 16128 << (*I)->getName() << (*I)->getInitVal().toString(10) 16129 << (*I)->getSourceRange(); 16130 ++I; 16131 16132 // Emit one note for each of the remaining enum constants with 16133 // the same value. 16134 for (ECDVector::iterator E = Vec->end(); I != E; ++I) 16135 S.Diag((*I)->getLocation(), diag::note_duplicate_element) 16136 << (*I)->getName() << (*I)->getInitVal().toString(10) 16137 << (*I)->getSourceRange(); 16138 delete Vec; 16139 } 16140 } 16141 16142 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val, 16143 bool AllowMask) const { 16144 assert(ED->isClosedFlag() && "looking for value in non-flag or open enum"); 16145 assert(ED->isCompleteDefinition() && "expected enum definition"); 16146 16147 auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt())); 16148 llvm::APInt &FlagBits = R.first->second; 16149 16150 if (R.second) { 16151 for (auto *E : ED->enumerators()) { 16152 const auto &EVal = E->getInitVal(); 16153 // Only single-bit enumerators introduce new flag values. 16154 if (EVal.isPowerOf2()) 16155 FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal; 16156 } 16157 } 16158 16159 // A value is in a flag enum if either its bits are a subset of the enum's 16160 // flag bits (the first condition) or we are allowing masks and the same is 16161 // true of its complement (the second condition). When masks are allowed, we 16162 // allow the common idiom of ~(enum1 | enum2) to be a valid enum value. 16163 // 16164 // While it's true that any value could be used as a mask, the assumption is 16165 // that a mask will have all of the insignificant bits set. Anything else is 16166 // likely a logic error. 16167 llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth()); 16168 return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val)); 16169 } 16170 16171 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange, 16172 Decl *EnumDeclX, 16173 ArrayRef<Decl *> Elements, 16174 Scope *S, AttributeList *Attr) { 16175 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX); 16176 QualType EnumType = Context.getTypeDeclType(Enum); 16177 16178 if (Attr) 16179 ProcessDeclAttributeList(S, Enum, Attr); 16180 16181 if (Enum->isDependentType()) { 16182 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 16183 EnumConstantDecl *ECD = 16184 cast_or_null<EnumConstantDecl>(Elements[i]); 16185 if (!ECD) continue; 16186 16187 ECD->setType(EnumType); 16188 } 16189 16190 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0); 16191 return; 16192 } 16193 16194 // TODO: If the result value doesn't fit in an int, it must be a long or long 16195 // long value. ISO C does not support this, but GCC does as an extension, 16196 // emit a warning. 16197 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 16198 unsigned CharWidth = Context.getTargetInfo().getCharWidth(); 16199 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); 16200 16201 // Verify that all the values are okay, compute the size of the values, and 16202 // reverse the list. 16203 unsigned NumNegativeBits = 0; 16204 unsigned NumPositiveBits = 0; 16205 16206 // Keep track of whether all elements have type int. 16207 bool AllElementsInt = true; 16208 16209 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 16210 EnumConstantDecl *ECD = 16211 cast_or_null<EnumConstantDecl>(Elements[i]); 16212 if (!ECD) continue; // Already issued a diagnostic. 16213 16214 const llvm::APSInt &InitVal = ECD->getInitVal(); 16215 16216 // Keep track of the size of positive and negative values. 16217 if (InitVal.isUnsigned() || InitVal.isNonNegative()) 16218 NumPositiveBits = std::max(NumPositiveBits, 16219 (unsigned)InitVal.getActiveBits()); 16220 else 16221 NumNegativeBits = std::max(NumNegativeBits, 16222 (unsigned)InitVal.getMinSignedBits()); 16223 16224 // Keep track of whether every enum element has type int (very commmon). 16225 if (AllElementsInt) 16226 AllElementsInt = ECD->getType() == Context.IntTy; 16227 } 16228 16229 // Figure out the type that should be used for this enum. 16230 QualType BestType; 16231 unsigned BestWidth; 16232 16233 // C++0x N3000 [conv.prom]p3: 16234 // An rvalue of an unscoped enumeration type whose underlying 16235 // type is not fixed can be converted to an rvalue of the first 16236 // of the following types that can represent all the values of 16237 // the enumeration: int, unsigned int, long int, unsigned long 16238 // int, long long int, or unsigned long long int. 16239 // C99 6.4.4.3p2: 16240 // An identifier declared as an enumeration constant has type int. 16241 // The C99 rule is modified by a gcc extension 16242 QualType BestPromotionType; 16243 16244 bool Packed = Enum->hasAttr<PackedAttr>(); 16245 // -fshort-enums is the equivalent to specifying the packed attribute on all 16246 // enum definitions. 16247 if (LangOpts.ShortEnums) 16248 Packed = true; 16249 16250 // If the enum already has a type because it is fixed or dictated by the 16251 // target, promote that type instead of analyzing the enumerators. 16252 if (Enum->isComplete()) { 16253 BestType = Enum->getIntegerType(); 16254 if (BestType->isPromotableIntegerType()) 16255 BestPromotionType = Context.getPromotedIntegerType(BestType); 16256 else 16257 BestPromotionType = BestType; 16258 16259 BestWidth = Context.getIntWidth(BestType); 16260 } 16261 else if (NumNegativeBits) { 16262 // If there is a negative value, figure out the smallest integer type (of 16263 // int/long/longlong) that fits. 16264 // If it's packed, check also if it fits a char or a short. 16265 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) { 16266 BestType = Context.SignedCharTy; 16267 BestWidth = CharWidth; 16268 } else if (Packed && NumNegativeBits <= ShortWidth && 16269 NumPositiveBits < ShortWidth) { 16270 BestType = Context.ShortTy; 16271 BestWidth = ShortWidth; 16272 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { 16273 BestType = Context.IntTy; 16274 BestWidth = IntWidth; 16275 } else { 16276 BestWidth = Context.getTargetInfo().getLongWidth(); 16277 16278 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { 16279 BestType = Context.LongTy; 16280 } else { 16281 BestWidth = Context.getTargetInfo().getLongLongWidth(); 16282 16283 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) 16284 Diag(Enum->getLocation(), diag::ext_enum_too_large); 16285 BestType = Context.LongLongTy; 16286 } 16287 } 16288 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); 16289 } else { 16290 // If there is no negative value, figure out the smallest type that fits 16291 // all of the enumerator values. 16292 // If it's packed, check also if it fits a char or a short. 16293 if (Packed && NumPositiveBits <= CharWidth) { 16294 BestType = Context.UnsignedCharTy; 16295 BestPromotionType = Context.IntTy; 16296 BestWidth = CharWidth; 16297 } else if (Packed && NumPositiveBits <= ShortWidth) { 16298 BestType = Context.UnsignedShortTy; 16299 BestPromotionType = Context.IntTy; 16300 BestWidth = ShortWidth; 16301 } else if (NumPositiveBits <= IntWidth) { 16302 BestType = Context.UnsignedIntTy; 16303 BestWidth = IntWidth; 16304 BestPromotionType 16305 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 16306 ? Context.UnsignedIntTy : Context.IntTy; 16307 } else if (NumPositiveBits <= 16308 (BestWidth = Context.getTargetInfo().getLongWidth())) { 16309 BestType = Context.UnsignedLongTy; 16310 BestPromotionType 16311 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 16312 ? Context.UnsignedLongTy : Context.LongTy; 16313 } else { 16314 BestWidth = Context.getTargetInfo().getLongLongWidth(); 16315 assert(NumPositiveBits <= BestWidth && 16316 "How could an initializer get larger than ULL?"); 16317 BestType = Context.UnsignedLongLongTy; 16318 BestPromotionType 16319 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 16320 ? Context.UnsignedLongLongTy : Context.LongLongTy; 16321 } 16322 } 16323 16324 // Loop over all of the enumerator constants, changing their types to match 16325 // the type of the enum if needed. 16326 for (auto *D : Elements) { 16327 auto *ECD = cast_or_null<EnumConstantDecl>(D); 16328 if (!ECD) continue; // Already issued a diagnostic. 16329 16330 // Standard C says the enumerators have int type, but we allow, as an 16331 // extension, the enumerators to be larger than int size. If each 16332 // enumerator value fits in an int, type it as an int, otherwise type it the 16333 // same as the enumerator decl itself. This means that in "enum { X = 1U }" 16334 // that X has type 'int', not 'unsigned'. 16335 16336 // Determine whether the value fits into an int. 16337 llvm::APSInt InitVal = ECD->getInitVal(); 16338 16339 // If it fits into an integer type, force it. Otherwise force it to match 16340 // the enum decl type. 16341 QualType NewTy; 16342 unsigned NewWidth; 16343 bool NewSign; 16344 if (!getLangOpts().CPlusPlus && 16345 !Enum->isFixed() && 16346 isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) { 16347 NewTy = Context.IntTy; 16348 NewWidth = IntWidth; 16349 NewSign = true; 16350 } else if (ECD->getType() == BestType) { 16351 // Already the right type! 16352 if (getLangOpts().CPlusPlus) 16353 // C++ [dcl.enum]p4: Following the closing brace of an 16354 // enum-specifier, each enumerator has the type of its 16355 // enumeration. 16356 ECD->setType(EnumType); 16357 continue; 16358 } else { 16359 NewTy = BestType; 16360 NewWidth = BestWidth; 16361 NewSign = BestType->isSignedIntegerOrEnumerationType(); 16362 } 16363 16364 // Adjust the APSInt value. 16365 InitVal = InitVal.extOrTrunc(NewWidth); 16366 InitVal.setIsSigned(NewSign); 16367 ECD->setInitVal(InitVal); 16368 16369 // Adjust the Expr initializer and type. 16370 if (ECD->getInitExpr() && 16371 !Context.hasSameType(NewTy, ECD->getInitExpr()->getType())) 16372 ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy, 16373 CK_IntegralCast, 16374 ECD->getInitExpr(), 16375 /*base paths*/ nullptr, 16376 VK_RValue)); 16377 if (getLangOpts().CPlusPlus) 16378 // C++ [dcl.enum]p4: Following the closing brace of an 16379 // enum-specifier, each enumerator has the type of its 16380 // enumeration. 16381 ECD->setType(EnumType); 16382 else 16383 ECD->setType(NewTy); 16384 } 16385 16386 Enum->completeDefinition(BestType, BestPromotionType, 16387 NumPositiveBits, NumNegativeBits); 16388 16389 CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType); 16390 16391 if (Enum->isClosedFlag()) { 16392 for (Decl *D : Elements) { 16393 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D); 16394 if (!ECD) continue; // Already issued a diagnostic. 16395 16396 llvm::APSInt InitVal = ECD->getInitVal(); 16397 if (InitVal != 0 && !InitVal.isPowerOf2() && 16398 !IsValueInFlagEnum(Enum, InitVal, true)) 16399 Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range) 16400 << ECD << Enum; 16401 } 16402 } 16403 16404 // Now that the enum type is defined, ensure it's not been underaligned. 16405 if (Enum->hasAttrs()) 16406 CheckAlignasUnderalignment(Enum); 16407 } 16408 16409 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr, 16410 SourceLocation StartLoc, 16411 SourceLocation EndLoc) { 16412 StringLiteral *AsmString = cast<StringLiteral>(expr); 16413 16414 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, 16415 AsmString, StartLoc, 16416 EndLoc); 16417 CurContext->addDecl(New); 16418 return New; 16419 } 16420 16421 static void checkModuleImportContext(Sema &S, Module *M, 16422 SourceLocation ImportLoc, DeclContext *DC, 16423 bool FromInclude = false) { 16424 SourceLocation ExternCLoc; 16425 16426 if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) { 16427 switch (LSD->getLanguage()) { 16428 case LinkageSpecDecl::lang_c: 16429 if (ExternCLoc.isInvalid()) 16430 ExternCLoc = LSD->getLocStart(); 16431 break; 16432 case LinkageSpecDecl::lang_cxx: 16433 break; 16434 } 16435 DC = LSD->getParent(); 16436 } 16437 16438 while (isa<LinkageSpecDecl>(DC) || isa<ExportDecl>(DC)) 16439 DC = DC->getParent(); 16440 16441 if (!isa<TranslationUnitDecl>(DC)) { 16442 S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M)) 16443 ? diag::ext_module_import_not_at_top_level_noop 16444 : diag::err_module_import_not_at_top_level_fatal) 16445 << M->getFullModuleName() << DC; 16446 S.Diag(cast<Decl>(DC)->getLocStart(), 16447 diag::note_module_import_not_at_top_level) << DC; 16448 } else if (!M->IsExternC && ExternCLoc.isValid()) { 16449 S.Diag(ImportLoc, diag::ext_module_import_in_extern_c) 16450 << M->getFullModuleName(); 16451 S.Diag(ExternCLoc, diag::note_extern_c_begins_here); 16452 } 16453 } 16454 16455 Sema::DeclGroupPtrTy Sema::ActOnModuleDecl(SourceLocation StartLoc, 16456 SourceLocation ModuleLoc, 16457 ModuleDeclKind MDK, 16458 ModuleIdPath Path) { 16459 assert(getLangOpts().ModulesTS && 16460 "should only have module decl in modules TS"); 16461 16462 // A module implementation unit requires that we are not compiling a module 16463 // of any kind. A module interface unit requires that we are not compiling a 16464 // module map. 16465 switch (getLangOpts().getCompilingModule()) { 16466 case LangOptions::CMK_None: 16467 // It's OK to compile a module interface as a normal translation unit. 16468 break; 16469 16470 case LangOptions::CMK_ModuleInterface: 16471 if (MDK != ModuleDeclKind::Implementation) 16472 break; 16473 16474 // We were asked to compile a module interface unit but this is a module 16475 // implementation unit. That indicates the 'export' is missing. 16476 Diag(ModuleLoc, diag::err_module_interface_implementation_mismatch) 16477 << FixItHint::CreateInsertion(ModuleLoc, "export "); 16478 MDK = ModuleDeclKind::Interface; 16479 break; 16480 16481 case LangOptions::CMK_ModuleMap: 16482 Diag(ModuleLoc, diag::err_module_decl_in_module_map_module); 16483 return nullptr; 16484 } 16485 16486 assert(ModuleScopes.size() == 1 && "expected to be at global module scope"); 16487 16488 // FIXME: Most of this work should be done by the preprocessor rather than 16489 // here, in order to support macro import. 16490 16491 // Only one module-declaration is permitted per source file. 16492 if (ModuleScopes.back().Module->Kind == Module::ModuleInterfaceUnit) { 16493 Diag(ModuleLoc, diag::err_module_redeclaration); 16494 Diag(VisibleModules.getImportLoc(ModuleScopes.back().Module), 16495 diag::note_prev_module_declaration); 16496 return nullptr; 16497 } 16498 16499 // Flatten the dots in a module name. Unlike Clang's hierarchical module map 16500 // modules, the dots here are just another character that can appear in a 16501 // module name. 16502 std::string ModuleName; 16503 for (auto &Piece : Path) { 16504 if (!ModuleName.empty()) 16505 ModuleName += "."; 16506 ModuleName += Piece.first->getName(); 16507 } 16508 16509 // If a module name was explicitly specified on the command line, it must be 16510 // correct. 16511 if (!getLangOpts().CurrentModule.empty() && 16512 getLangOpts().CurrentModule != ModuleName) { 16513 Diag(Path.front().second, diag::err_current_module_name_mismatch) 16514 << SourceRange(Path.front().second, Path.back().second) 16515 << getLangOpts().CurrentModule; 16516 return nullptr; 16517 } 16518 const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName; 16519 16520 auto &Map = PP.getHeaderSearchInfo().getModuleMap(); 16521 Module *Mod; 16522 16523 switch (MDK) { 16524 case ModuleDeclKind::Interface: { 16525 // We can't have parsed or imported a definition of this module or parsed a 16526 // module map defining it already. 16527 if (auto *M = Map.findModule(ModuleName)) { 16528 Diag(Path[0].second, diag::err_module_redefinition) << ModuleName; 16529 if (M->DefinitionLoc.isValid()) 16530 Diag(M->DefinitionLoc, diag::note_prev_module_definition); 16531 else if (const auto *FE = M->getASTFile()) 16532 Diag(M->DefinitionLoc, diag::note_prev_module_definition_from_ast_file) 16533 << FE->getName(); 16534 Mod = M; 16535 break; 16536 } 16537 16538 // Create a Module for the module that we're defining. 16539 Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName, 16540 ModuleScopes.front().Module); 16541 assert(Mod && "module creation should not fail"); 16542 break; 16543 } 16544 16545 case ModuleDeclKind::Partition: 16546 // FIXME: Check we are in a submodule of the named module. 16547 return nullptr; 16548 16549 case ModuleDeclKind::Implementation: 16550 std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc( 16551 PP.getIdentifierInfo(ModuleName), Path[0].second); 16552 Mod = getModuleLoader().loadModule(ModuleLoc, Path, Module::AllVisible, 16553 /*IsIncludeDirective=*/false); 16554 if (!Mod) { 16555 Diag(ModuleLoc, diag::err_module_not_defined) << ModuleName; 16556 // Create an empty module interface unit for error recovery. 16557 Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName, 16558 ModuleScopes.front().Module); 16559 } 16560 break; 16561 } 16562 16563 // Switch from the global module to the named module. 16564 ModuleScopes.back().Module = Mod; 16565 ModuleScopes.back().ModuleInterface = MDK != ModuleDeclKind::Implementation; 16566 VisibleModules.setVisible(Mod, ModuleLoc); 16567 16568 // From now on, we have an owning module for all declarations we see. 16569 // However, those declarations are module-private unless explicitly 16570 // exported. 16571 auto *TU = Context.getTranslationUnitDecl(); 16572 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate); 16573 TU->setLocalOwningModule(Mod); 16574 16575 // FIXME: Create a ModuleDecl. 16576 return nullptr; 16577 } 16578 16579 DeclResult Sema::ActOnModuleImport(SourceLocation StartLoc, 16580 SourceLocation ImportLoc, 16581 ModuleIdPath Path) { 16582 Module *Mod = 16583 getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible, 16584 /*IsIncludeDirective=*/false); 16585 if (!Mod) 16586 return true; 16587 16588 VisibleModules.setVisible(Mod, ImportLoc); 16589 16590 checkModuleImportContext(*this, Mod, ImportLoc, CurContext); 16591 16592 // FIXME: we should support importing a submodule within a different submodule 16593 // of the same top-level module. Until we do, make it an error rather than 16594 // silently ignoring the import. 16595 // Import-from-implementation is valid in the Modules TS. FIXME: Should we 16596 // warn on a redundant import of the current module? 16597 if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule && 16598 (getLangOpts().isCompilingModule() || !getLangOpts().ModulesTS)) 16599 Diag(ImportLoc, getLangOpts().isCompilingModule() 16600 ? diag::err_module_self_import 16601 : diag::err_module_import_in_implementation) 16602 << Mod->getFullModuleName() << getLangOpts().CurrentModule; 16603 16604 SmallVector<SourceLocation, 2> IdentifierLocs; 16605 Module *ModCheck = Mod; 16606 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 16607 // If we've run out of module parents, just drop the remaining identifiers. 16608 // We need the length to be consistent. 16609 if (!ModCheck) 16610 break; 16611 ModCheck = ModCheck->Parent; 16612 16613 IdentifierLocs.push_back(Path[I].second); 16614 } 16615 16616 ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc, 16617 Mod, IdentifierLocs); 16618 if (!ModuleScopes.empty()) 16619 Context.addModuleInitializer(ModuleScopes.back().Module, Import); 16620 CurContext->addDecl(Import); 16621 16622 // Re-export the module if needed. 16623 if (Import->isExported() && 16624 !ModuleScopes.empty() && ModuleScopes.back().ModuleInterface) 16625 getCurrentModule()->Exports.emplace_back(Mod, false); 16626 16627 return Import; 16628 } 16629 16630 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) { 16631 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true); 16632 BuildModuleInclude(DirectiveLoc, Mod); 16633 } 16634 16635 void Sema::BuildModuleInclude(SourceLocation DirectiveLoc, Module *Mod) { 16636 // Determine whether we're in the #include buffer for a module. The #includes 16637 // in that buffer do not qualify as module imports; they're just an 16638 // implementation detail of us building the module. 16639 // 16640 // FIXME: Should we even get ActOnModuleInclude calls for those? 16641 bool IsInModuleIncludes = 16642 TUKind == TU_Module && 16643 getSourceManager().isWrittenInMainFile(DirectiveLoc); 16644 16645 bool ShouldAddImport = !IsInModuleIncludes; 16646 16647 // If this module import was due to an inclusion directive, create an 16648 // implicit import declaration to capture it in the AST. 16649 if (ShouldAddImport) { 16650 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); 16651 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU, 16652 DirectiveLoc, Mod, 16653 DirectiveLoc); 16654 if (!ModuleScopes.empty()) 16655 Context.addModuleInitializer(ModuleScopes.back().Module, ImportD); 16656 TU->addDecl(ImportD); 16657 Consumer.HandleImplicitImportDecl(ImportD); 16658 } 16659 16660 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc); 16661 VisibleModules.setVisible(Mod, DirectiveLoc); 16662 } 16663 16664 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) { 16665 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true); 16666 16667 ModuleScopes.push_back({}); 16668 ModuleScopes.back().Module = Mod; 16669 if (getLangOpts().ModulesLocalVisibility) 16670 ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules); 16671 16672 VisibleModules.setVisible(Mod, DirectiveLoc); 16673 16674 // The enclosing context is now part of this module. 16675 // FIXME: Consider creating a child DeclContext to hold the entities 16676 // lexically within the module. 16677 if (getLangOpts().trackLocalOwningModule()) { 16678 for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) { 16679 cast<Decl>(DC)->setModuleOwnershipKind( 16680 getLangOpts().ModulesLocalVisibility 16681 ? Decl::ModuleOwnershipKind::VisibleWhenImported 16682 : Decl::ModuleOwnershipKind::Visible); 16683 cast<Decl>(DC)->setLocalOwningModule(Mod); 16684 } 16685 } 16686 } 16687 16688 void Sema::ActOnModuleEnd(SourceLocation EomLoc, Module *Mod) { 16689 if (getLangOpts().ModulesLocalVisibility) { 16690 VisibleModules = std::move(ModuleScopes.back().OuterVisibleModules); 16691 // Leaving a module hides namespace names, so our visible namespace cache 16692 // is now out of date. 16693 VisibleNamespaceCache.clear(); 16694 } 16695 16696 assert(!ModuleScopes.empty() && ModuleScopes.back().Module == Mod && 16697 "left the wrong module scope"); 16698 ModuleScopes.pop_back(); 16699 16700 // We got to the end of processing a local module. Create an 16701 // ImportDecl as we would for an imported module. 16702 FileID File = getSourceManager().getFileID(EomLoc); 16703 SourceLocation DirectiveLoc; 16704 if (EomLoc == getSourceManager().getLocForEndOfFile(File)) { 16705 // We reached the end of a #included module header. Use the #include loc. 16706 assert(File != getSourceManager().getMainFileID() && 16707 "end of submodule in main source file"); 16708 DirectiveLoc = getSourceManager().getIncludeLoc(File); 16709 } else { 16710 // We reached an EOM pragma. Use the pragma location. 16711 DirectiveLoc = EomLoc; 16712 } 16713 BuildModuleInclude(DirectiveLoc, Mod); 16714 16715 // Any further declarations are in whatever module we returned to. 16716 if (getLangOpts().trackLocalOwningModule()) { 16717 // The parser guarantees that this is the same context that we entered 16718 // the module within. 16719 for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) { 16720 cast<Decl>(DC)->setLocalOwningModule(getCurrentModule()); 16721 if (!getCurrentModule()) 16722 cast<Decl>(DC)->setModuleOwnershipKind( 16723 Decl::ModuleOwnershipKind::Unowned); 16724 } 16725 } 16726 } 16727 16728 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc, 16729 Module *Mod) { 16730 // Bail if we're not allowed to implicitly import a module here. 16731 if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery || 16732 VisibleModules.isVisible(Mod)) 16733 return; 16734 16735 // Create the implicit import declaration. 16736 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); 16737 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU, 16738 Loc, Mod, Loc); 16739 TU->addDecl(ImportD); 16740 Consumer.HandleImplicitImportDecl(ImportD); 16741 16742 // Make the module visible. 16743 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc); 16744 VisibleModules.setVisible(Mod, Loc); 16745 } 16746 16747 /// We have parsed the start of an export declaration, including the '{' 16748 /// (if present). 16749 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc, 16750 SourceLocation LBraceLoc) { 16751 ExportDecl *D = ExportDecl::Create(Context, CurContext, ExportLoc); 16752 16753 // C++ Modules TS draft: 16754 // An export-declaration shall appear in the purview of a module other than 16755 // the global module. 16756 if (ModuleScopes.empty() || !ModuleScopes.back().ModuleInterface) 16757 Diag(ExportLoc, diag::err_export_not_in_module_interface); 16758 16759 // An export-declaration [...] shall not contain more than one 16760 // export keyword. 16761 // 16762 // The intent here is that an export-declaration cannot appear within another 16763 // export-declaration. 16764 if (D->isExported()) 16765 Diag(ExportLoc, diag::err_export_within_export); 16766 16767 CurContext->addDecl(D); 16768 PushDeclContext(S, D); 16769 D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported); 16770 return D; 16771 } 16772 16773 /// Complete the definition of an export declaration. 16774 Decl *Sema::ActOnFinishExportDecl(Scope *S, Decl *D, SourceLocation RBraceLoc) { 16775 auto *ED = cast<ExportDecl>(D); 16776 if (RBraceLoc.isValid()) 16777 ED->setRBraceLoc(RBraceLoc); 16778 16779 // FIXME: Diagnose export of internal-linkage declaration (including 16780 // anonymous namespace). 16781 16782 PopDeclContext(); 16783 return D; 16784 } 16785 16786 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name, 16787 IdentifierInfo* AliasName, 16788 SourceLocation PragmaLoc, 16789 SourceLocation NameLoc, 16790 SourceLocation AliasNameLoc) { 16791 NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, 16792 LookupOrdinaryName); 16793 AsmLabelAttr *Attr = 16794 AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc); 16795 16796 // If a declaration that: 16797 // 1) declares a function or a variable 16798 // 2) has external linkage 16799 // already exists, add a label attribute to it. 16800 if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) { 16801 if (isDeclExternC(PrevDecl)) 16802 PrevDecl->addAttr(Attr); 16803 else 16804 Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied) 16805 << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl; 16806 // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers. 16807 } else 16808 (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr)); 16809 } 16810 16811 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name, 16812 SourceLocation PragmaLoc, 16813 SourceLocation NameLoc) { 16814 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName); 16815 16816 if (PrevDecl) { 16817 PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc)); 16818 } else { 16819 (void)WeakUndeclaredIdentifiers.insert( 16820 std::pair<IdentifierInfo*,WeakInfo> 16821 (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc))); 16822 } 16823 } 16824 16825 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name, 16826 IdentifierInfo* AliasName, 16827 SourceLocation PragmaLoc, 16828 SourceLocation NameLoc, 16829 SourceLocation AliasNameLoc) { 16830 Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc, 16831 LookupOrdinaryName); 16832 WeakInfo W = WeakInfo(Name, NameLoc); 16833 16834 if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) { 16835 if (!PrevDecl->hasAttr<AliasAttr>()) 16836 if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl)) 16837 DeclApplyPragmaWeak(TUScope, ND, W); 16838 } else { 16839 (void)WeakUndeclaredIdentifiers.insert( 16840 std::pair<IdentifierInfo*,WeakInfo>(AliasName, W)); 16841 } 16842 } 16843 16844 Decl *Sema::getObjCDeclContext() const { 16845 return (dyn_cast_or_null<ObjCContainerDecl>(CurContext)); 16846 } 16847