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 "clang/Sema/SemaInternal.h" 15 #include "TypeLocBuilder.h" 16 #include "clang/AST/ASTConsumer.h" 17 #include "clang/AST/ASTContext.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/PartialDiagnostic.h" 28 #include "clang/Basic/SourceManager.h" 29 #include "clang/Basic/TargetInfo.h" 30 #include "clang/Lex/HeaderSearch.h" // FIXME: Sema shouldn't depend on Lex 31 #include "clang/Lex/ModuleLoader.h" // FIXME: Sema shouldn't depend on Lex 32 #include "clang/Lex/Preprocessor.h" // FIXME: Sema shouldn't depend on Lex 33 #include "clang/Parse/ParseDiagnostic.h" 34 #include "clang/Sema/CXXFieldCollector.h" 35 #include "clang/Sema/DeclSpec.h" 36 #include "clang/Sema/DelayedDiagnostic.h" 37 #include "clang/Sema/Initialization.h" 38 #include "clang/Sema/Lookup.h" 39 #include "clang/Sema/ParsedTemplate.h" 40 #include "clang/Sema/Scope.h" 41 #include "clang/Sema/ScopeInfo.h" 42 #include "llvm/ADT/SmallString.h" 43 #include "llvm/ADT/Triple.h" 44 #include <algorithm> 45 #include <cstring> 46 #include <functional> 47 using namespace clang; 48 using namespace sema; 49 50 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) { 51 if (OwnedType) { 52 Decl *Group[2] = { OwnedType, Ptr }; 53 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2)); 54 } 55 56 return DeclGroupPtrTy::make(DeclGroupRef(Ptr)); 57 } 58 59 namespace { 60 61 class TypeNameValidatorCCC : public CorrectionCandidateCallback { 62 public: 63 TypeNameValidatorCCC(bool AllowInvalid, bool WantClass=false) 64 : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass) { 65 WantExpressionKeywords = false; 66 WantCXXNamedCasts = false; 67 WantRemainingKeywords = false; 68 } 69 70 virtual bool ValidateCandidate(const TypoCorrection &candidate) { 71 if (NamedDecl *ND = candidate.getCorrectionDecl()) 72 return (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) && 73 (AllowInvalidDecl || !ND->isInvalidDecl()); 74 else 75 return !WantClassName && candidate.isKeyword(); 76 } 77 78 private: 79 bool AllowInvalidDecl; 80 bool WantClassName; 81 }; 82 83 } 84 85 /// \brief Determine whether the token kind starts a simple-type-specifier. 86 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const { 87 switch (Kind) { 88 // FIXME: Take into account the current language when deciding whether a 89 // token kind is a valid type specifier 90 case tok::kw_short: 91 case tok::kw_long: 92 case tok::kw___int64: 93 case tok::kw___int128: 94 case tok::kw_signed: 95 case tok::kw_unsigned: 96 case tok::kw_void: 97 case tok::kw_char: 98 case tok::kw_int: 99 case tok::kw_half: 100 case tok::kw_float: 101 case tok::kw_double: 102 case tok::kw_wchar_t: 103 case tok::kw_bool: 104 case tok::kw___underlying_type: 105 return true; 106 107 case tok::annot_typename: 108 case tok::kw_char16_t: 109 case tok::kw_char32_t: 110 case tok::kw_typeof: 111 case tok::kw_decltype: 112 return getLangOpts().CPlusPlus; 113 114 default: 115 break; 116 } 117 118 return false; 119 } 120 121 /// \brief If the identifier refers to a type name within this scope, 122 /// return the declaration of that type. 123 /// 124 /// This routine performs ordinary name lookup of the identifier II 125 /// within the given scope, with optional C++ scope specifier SS, to 126 /// determine whether the name refers to a type. If so, returns an 127 /// opaque pointer (actually a QualType) corresponding to that 128 /// type. Otherwise, returns NULL. 129 /// 130 /// If name lookup results in an ambiguity, this routine will complain 131 /// and then return NULL. 132 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, 133 Scope *S, CXXScopeSpec *SS, 134 bool isClassName, bool HasTrailingDot, 135 ParsedType ObjectTypePtr, 136 bool IsCtorOrDtorName, 137 bool WantNontrivialTypeSourceInfo, 138 IdentifierInfo **CorrectedII) { 139 // Determine where we will perform name lookup. 140 DeclContext *LookupCtx = 0; 141 if (ObjectTypePtr) { 142 QualType ObjectType = ObjectTypePtr.get(); 143 if (ObjectType->isRecordType()) 144 LookupCtx = computeDeclContext(ObjectType); 145 } else if (SS && SS->isNotEmpty()) { 146 LookupCtx = computeDeclContext(*SS, false); 147 148 if (!LookupCtx) { 149 if (isDependentScopeSpecifier(*SS)) { 150 // C++ [temp.res]p3: 151 // A qualified-id that refers to a type and in which the 152 // nested-name-specifier depends on a template-parameter (14.6.2) 153 // shall be prefixed by the keyword typename to indicate that the 154 // qualified-id denotes a type, forming an 155 // elaborated-type-specifier (7.1.5.3). 156 // 157 // We therefore do not perform any name lookup if the result would 158 // refer to a member of an unknown specialization. 159 if (!isClassName && !IsCtorOrDtorName) 160 return ParsedType(); 161 162 // We know from the grammar that this name refers to a type, 163 // so build a dependent node to describe the type. 164 if (WantNontrivialTypeSourceInfo) 165 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get(); 166 167 NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context); 168 QualType T = 169 CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc, 170 II, NameLoc); 171 172 return ParsedType::make(T); 173 } 174 175 return ParsedType(); 176 } 177 178 if (!LookupCtx->isDependentContext() && 179 RequireCompleteDeclContext(*SS, LookupCtx)) 180 return ParsedType(); 181 } 182 183 // FIXME: LookupNestedNameSpecifierName isn't the right kind of 184 // lookup for class-names. 185 LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName : 186 LookupOrdinaryName; 187 LookupResult Result(*this, &II, NameLoc, Kind); 188 if (LookupCtx) { 189 // Perform "qualified" name lookup into the declaration context we 190 // computed, which is either the type of the base of a member access 191 // expression or the declaration context associated with a prior 192 // nested-name-specifier. 193 LookupQualifiedName(Result, LookupCtx); 194 195 if (ObjectTypePtr && Result.empty()) { 196 // C++ [basic.lookup.classref]p3: 197 // If the unqualified-id is ~type-name, the type-name is looked up 198 // in the context of the entire postfix-expression. If the type T of 199 // the object expression is of a class type C, the type-name is also 200 // looked up in the scope of class C. At least one of the lookups shall 201 // find a name that refers to (possibly cv-qualified) T. 202 LookupName(Result, S); 203 } 204 } else { 205 // Perform unqualified name lookup. 206 LookupName(Result, S); 207 } 208 209 NamedDecl *IIDecl = 0; 210 switch (Result.getResultKind()) { 211 case LookupResult::NotFound: 212 case LookupResult::NotFoundInCurrentInstantiation: 213 if (CorrectedII) { 214 TypeNameValidatorCCC Validator(true, isClassName); 215 TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(), 216 Kind, S, SS, Validator); 217 IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo(); 218 TemplateTy Template; 219 bool MemberOfUnknownSpecialization; 220 UnqualifiedId TemplateName; 221 TemplateName.setIdentifier(NewII, NameLoc); 222 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier(); 223 CXXScopeSpec NewSS, *NewSSPtr = SS; 224 if (SS && NNS) { 225 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc)); 226 NewSSPtr = &NewSS; 227 } 228 if (Correction && (NNS || NewII != &II) && 229 // Ignore a correction to a template type as the to-be-corrected 230 // identifier is not a template (typo correction for template names 231 // is handled elsewhere). 232 !(getLangOpts().CPlusPlus && NewSSPtr && 233 isTemplateName(S, *NewSSPtr, false, TemplateName, ParsedType(), 234 false, Template, MemberOfUnknownSpecialization))) { 235 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr, 236 isClassName, HasTrailingDot, ObjectTypePtr, 237 IsCtorOrDtorName, 238 WantNontrivialTypeSourceInfo); 239 if (Ty) { 240 std::string CorrectedStr(Correction.getAsString(getLangOpts())); 241 std::string CorrectedQuotedStr( 242 Correction.getQuoted(getLangOpts())); 243 Diag(NameLoc, diag::err_unknown_type_or_class_name_suggest) 244 << Result.getLookupName() << CorrectedQuotedStr << isClassName 245 << FixItHint::CreateReplacement(SourceRange(NameLoc), 246 CorrectedStr); 247 if (NamedDecl *FirstDecl = Correction.getCorrectionDecl()) 248 Diag(FirstDecl->getLocation(), diag::note_previous_decl) 249 << CorrectedQuotedStr; 250 251 if (SS && NNS) 252 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc)); 253 *CorrectedII = NewII; 254 return Ty; 255 } 256 } 257 } 258 // If typo correction failed or was not performed, fall through 259 case LookupResult::FoundOverloaded: 260 case LookupResult::FoundUnresolvedValue: 261 Result.suppressDiagnostics(); 262 return ParsedType(); 263 264 case LookupResult::Ambiguous: 265 // Recover from type-hiding ambiguities by hiding the type. We'll 266 // do the lookup again when looking for an object, and we can 267 // diagnose the error then. If we don't do this, then the error 268 // about hiding the type will be immediately followed by an error 269 // that only makes sense if the identifier was treated like a type. 270 if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) { 271 Result.suppressDiagnostics(); 272 return ParsedType(); 273 } 274 275 // Look to see if we have a type anywhere in the list of results. 276 for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end(); 277 Res != ResEnd; ++Res) { 278 if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) { 279 if (!IIDecl || 280 (*Res)->getLocation().getRawEncoding() < 281 IIDecl->getLocation().getRawEncoding()) 282 IIDecl = *Res; 283 } 284 } 285 286 if (!IIDecl) { 287 // None of the entities we found is a type, so there is no way 288 // to even assume that the result is a type. In this case, don't 289 // complain about the ambiguity. The parser will either try to 290 // perform this lookup again (e.g., as an object name), which 291 // will produce the ambiguity, or will complain that it expected 292 // a type name. 293 Result.suppressDiagnostics(); 294 return ParsedType(); 295 } 296 297 // We found a type within the ambiguous lookup; diagnose the 298 // ambiguity and then return that type. This might be the right 299 // answer, or it might not be, but it suppresses any attempt to 300 // perform the name lookup again. 301 break; 302 303 case LookupResult::Found: 304 IIDecl = Result.getFoundDecl(); 305 break; 306 } 307 308 assert(IIDecl && "Didn't find decl"); 309 310 QualType T; 311 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) { 312 DiagnoseUseOfDecl(IIDecl, NameLoc); 313 314 if (T.isNull()) 315 T = Context.getTypeDeclType(TD); 316 317 // NOTE: avoid constructing an ElaboratedType(Loc) if this is a 318 // constructor or destructor name (in such a case, the scope specifier 319 // will be attached to the enclosing Expr or Decl node). 320 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName) { 321 if (WantNontrivialTypeSourceInfo) { 322 // Construct a type with type-source information. 323 TypeLocBuilder Builder; 324 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 325 326 T = getElaboratedType(ETK_None, *SS, T); 327 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 328 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 329 ElabTL.setQualifierLoc(SS->getWithLocInContext(Context)); 330 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 331 } else { 332 T = getElaboratedType(ETK_None, *SS, T); 333 } 334 } 335 } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) { 336 (void)DiagnoseUseOfDecl(IDecl, NameLoc); 337 if (!HasTrailingDot) 338 T = Context.getObjCInterfaceType(IDecl); 339 } 340 341 if (T.isNull()) { 342 // If it's not plausibly a type, suppress diagnostics. 343 Result.suppressDiagnostics(); 344 return ParsedType(); 345 } 346 return ParsedType::make(T); 347 } 348 349 /// isTagName() - This method is called *for error recovery purposes only* 350 /// to determine if the specified name is a valid tag name ("struct foo"). If 351 /// so, this returns the TST for the tag corresponding to it (TST_enum, 352 /// TST_union, TST_struct, TST_interface, TST_class). This is used to diagnose 353 /// cases in C where the user forgot to specify the tag. 354 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) { 355 // Do a tag name lookup in this scope. 356 LookupResult R(*this, &II, SourceLocation(), LookupTagName); 357 LookupName(R, S, false); 358 R.suppressDiagnostics(); 359 if (R.getResultKind() == LookupResult::Found) 360 if (const TagDecl *TD = R.getAsSingle<TagDecl>()) { 361 switch (TD->getTagKind()) { 362 case TTK_Struct: return DeclSpec::TST_struct; 363 case TTK_Interface: return DeclSpec::TST_interface; 364 case TTK_Union: return DeclSpec::TST_union; 365 case TTK_Class: return DeclSpec::TST_class; 366 case TTK_Enum: return DeclSpec::TST_enum; 367 } 368 } 369 370 return DeclSpec::TST_unspecified; 371 } 372 373 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope, 374 /// if a CXXScopeSpec's type is equal to the type of one of the base classes 375 /// then downgrade the missing typename error to a warning. 376 /// This is needed for MSVC compatibility; Example: 377 /// @code 378 /// template<class T> class A { 379 /// public: 380 /// typedef int TYPE; 381 /// }; 382 /// template<class T> class B : public A<T> { 383 /// public: 384 /// A<T>::TYPE a; // no typename required because A<T> is a base class. 385 /// }; 386 /// @endcode 387 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) { 388 if (CurContext->isRecord()) { 389 const Type *Ty = SS->getScopeRep()->getAsType(); 390 391 CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext); 392 for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(), 393 BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) 394 if (Context.hasSameUnqualifiedType(QualType(Ty, 1), Base->getType())) 395 return true; 396 return S->isFunctionPrototypeScope(); 397 } 398 return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope(); 399 } 400 401 bool Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II, 402 SourceLocation IILoc, 403 Scope *S, 404 CXXScopeSpec *SS, 405 ParsedType &SuggestedType) { 406 // We don't have anything to suggest (yet). 407 SuggestedType = ParsedType(); 408 409 // There may have been a typo in the name of the type. Look up typo 410 // results, in case we have something that we can suggest. 411 TypeNameValidatorCCC Validator(false); 412 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(II, IILoc), 413 LookupOrdinaryName, S, SS, 414 Validator)) { 415 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 416 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); 417 418 if (Corrected.isKeyword()) { 419 // We corrected to a keyword. 420 IdentifierInfo *NewII = Corrected.getCorrectionAsIdentifierInfo(); 421 if (!isSimpleTypeSpecifier(NewII->getTokenID())) 422 CorrectedQuotedStr = "the keyword " + CorrectedQuotedStr; 423 Diag(IILoc, diag::err_unknown_typename_suggest) 424 << II << CorrectedQuotedStr 425 << FixItHint::CreateReplacement(SourceRange(IILoc), CorrectedStr); 426 II = NewII; 427 } else { 428 NamedDecl *Result = Corrected.getCorrectionDecl(); 429 // We found a similarly-named type or interface; suggest that. 430 if (!SS || !SS->isSet()) 431 Diag(IILoc, diag::err_unknown_typename_suggest) 432 << II << CorrectedQuotedStr 433 << FixItHint::CreateReplacement(SourceRange(IILoc), CorrectedStr); 434 else if (DeclContext *DC = computeDeclContext(*SS, false)) 435 Diag(IILoc, diag::err_unknown_nested_typename_suggest) 436 << II << DC << CorrectedQuotedStr << SS->getRange() 437 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(), 438 CorrectedStr); 439 else 440 llvm_unreachable("could not have corrected a typo here"); 441 442 Diag(Result->getLocation(), diag::note_previous_decl) 443 << CorrectedQuotedStr; 444 445 SuggestedType = getTypeName(*Result->getIdentifier(), IILoc, S, SS, 446 false, false, ParsedType(), 447 /*IsCtorOrDtorName=*/false, 448 /*NonTrivialTypeSourceInfo=*/true); 449 } 450 return true; 451 } 452 453 if (getLangOpts().CPlusPlus) { 454 // See if II is a class template that the user forgot to pass arguments to. 455 UnqualifiedId Name; 456 Name.setIdentifier(II, IILoc); 457 CXXScopeSpec EmptySS; 458 TemplateTy TemplateResult; 459 bool MemberOfUnknownSpecialization; 460 if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false, 461 Name, ParsedType(), true, TemplateResult, 462 MemberOfUnknownSpecialization) == TNK_Type_template) { 463 TemplateName TplName = TemplateResult.getAsVal<TemplateName>(); 464 Diag(IILoc, diag::err_template_missing_args) << TplName; 465 if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) { 466 Diag(TplDecl->getLocation(), diag::note_template_decl_here) 467 << TplDecl->getTemplateParameters()->getSourceRange(); 468 } 469 return true; 470 } 471 } 472 473 // FIXME: Should we move the logic that tries to recover from a missing tag 474 // (struct, union, enum) from Parser::ParseImplicitInt here, instead? 475 476 if (!SS || (!SS->isSet() && !SS->isInvalid())) 477 Diag(IILoc, diag::err_unknown_typename) << II; 478 else if (DeclContext *DC = computeDeclContext(*SS, false)) 479 Diag(IILoc, diag::err_typename_nested_not_found) 480 << II << DC << SS->getRange(); 481 else if (isDependentScopeSpecifier(*SS)) { 482 unsigned DiagID = diag::err_typename_missing; 483 if (getLangOpts().MicrosoftMode && isMicrosoftMissingTypename(SS, S)) 484 DiagID = diag::warn_typename_missing; 485 486 Diag(SS->getRange().getBegin(), DiagID) 487 << (NestedNameSpecifier *)SS->getScopeRep() << II->getName() 488 << SourceRange(SS->getRange().getBegin(), IILoc) 489 << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename "); 490 SuggestedType = ActOnTypenameType(S, SourceLocation(), 491 *SS, *II, IILoc).get(); 492 } else { 493 assert(SS && SS->isInvalid() && 494 "Invalid scope specifier has already been diagnosed"); 495 } 496 497 return true; 498 } 499 500 /// \brief Determine whether the given result set contains either a type name 501 /// or 502 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) { 503 bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus && 504 NextToken.is(tok::less); 505 506 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) { 507 if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I)) 508 return true; 509 510 if (CheckTemplate && isa<TemplateDecl>(*I)) 511 return true; 512 } 513 514 return false; 515 } 516 517 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result, 518 Scope *S, CXXScopeSpec &SS, 519 IdentifierInfo *&Name, 520 SourceLocation NameLoc) { 521 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName); 522 SemaRef.LookupParsedName(R, S, &SS); 523 if (TagDecl *Tag = R.getAsSingle<TagDecl>()) { 524 const char *TagName = 0; 525 const char *FixItTagName = 0; 526 switch (Tag->getTagKind()) { 527 case TTK_Class: 528 TagName = "class"; 529 FixItTagName = "class "; 530 break; 531 532 case TTK_Enum: 533 TagName = "enum"; 534 FixItTagName = "enum "; 535 break; 536 537 case TTK_Struct: 538 TagName = "struct"; 539 FixItTagName = "struct "; 540 break; 541 542 case TTK_Interface: 543 TagName = "__interface"; 544 FixItTagName = "__interface "; 545 break; 546 547 case TTK_Union: 548 TagName = "union"; 549 FixItTagName = "union "; 550 break; 551 } 552 553 SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag) 554 << Name << TagName << SemaRef.getLangOpts().CPlusPlus 555 << FixItHint::CreateInsertion(NameLoc, FixItTagName); 556 557 for (LookupResult::iterator I = Result.begin(), IEnd = Result.end(); 558 I != IEnd; ++I) 559 SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type) 560 << Name << TagName; 561 562 // Replace lookup results with just the tag decl. 563 Result.clear(Sema::LookupTagName); 564 SemaRef.LookupParsedName(Result, S, &SS); 565 return true; 566 } 567 568 return false; 569 } 570 571 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier. 572 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS, 573 QualType T, SourceLocation NameLoc) { 574 ASTContext &Context = S.Context; 575 576 TypeLocBuilder Builder; 577 Builder.pushTypeSpec(T).setNameLoc(NameLoc); 578 579 T = S.getElaboratedType(ETK_None, SS, T); 580 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T); 581 ElabTL.setElaboratedKeywordLoc(SourceLocation()); 582 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context)); 583 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T)); 584 } 585 586 Sema::NameClassification Sema::ClassifyName(Scope *S, 587 CXXScopeSpec &SS, 588 IdentifierInfo *&Name, 589 SourceLocation NameLoc, 590 const Token &NextToken, 591 bool IsAddressOfOperand, 592 CorrectionCandidateCallback *CCC) { 593 DeclarationNameInfo NameInfo(Name, NameLoc); 594 ObjCMethodDecl *CurMethod = getCurMethodDecl(); 595 596 if (NextToken.is(tok::coloncolon)) { 597 BuildCXXNestedNameSpecifier(S, *Name, NameLoc, NextToken.getLocation(), 598 QualType(), false, SS, 0, false); 599 600 } 601 602 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName); 603 LookupParsedName(Result, S, &SS, !CurMethod); 604 605 // Perform lookup for Objective-C instance variables (including automatically 606 // synthesized instance variables), if we're in an Objective-C method. 607 // FIXME: This lookup really, really needs to be folded in to the normal 608 // unqualified lookup mechanism. 609 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) { 610 ExprResult E = LookupInObjCMethod(Result, S, Name, true); 611 if (E.get() || E.isInvalid()) 612 return E; 613 } 614 615 bool SecondTry = false; 616 bool IsFilteredTemplateName = false; 617 618 Corrected: 619 switch (Result.getResultKind()) { 620 case LookupResult::NotFound: 621 // If an unqualified-id is followed by a '(', then we have a function 622 // call. 623 if (!SS.isSet() && NextToken.is(tok::l_paren)) { 624 // In C++, this is an ADL-only call. 625 // FIXME: Reference? 626 if (getLangOpts().CPlusPlus) 627 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true); 628 629 // C90 6.3.2.2: 630 // If the expression that precedes the parenthesized argument list in a 631 // function call consists solely of an identifier, and if no 632 // declaration is visible for this identifier, the identifier is 633 // implicitly declared exactly as if, in the innermost block containing 634 // the function call, the declaration 635 // 636 // extern int identifier (); 637 // 638 // appeared. 639 // 640 // We also allow this in C99 as an extension. 641 if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) { 642 Result.addDecl(D); 643 Result.resolveKind(); 644 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false); 645 } 646 } 647 648 // In C, we first see whether there is a tag type by the same name, in 649 // which case it's likely that the user just forget to write "enum", 650 // "struct", or "union". 651 if (!getLangOpts().CPlusPlus && !SecondTry && 652 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 653 break; 654 } 655 656 // Perform typo correction to determine if there is another name that is 657 // close to this name. 658 if (!SecondTry && CCC) { 659 SecondTry = true; 660 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(), 661 Result.getLookupKind(), S, 662 &SS, *CCC)) { 663 unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest; 664 unsigned QualifiedDiag = diag::err_no_member_suggest; 665 std::string CorrectedStr(Corrected.getAsString(getLangOpts())); 666 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts())); 667 668 NamedDecl *FirstDecl = Corrected.getCorrectionDecl(); 669 NamedDecl *UnderlyingFirstDecl 670 = FirstDecl? FirstDecl->getUnderlyingDecl() : 0; 671 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 672 UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) { 673 UnqualifiedDiag = diag::err_no_template_suggest; 674 QualifiedDiag = diag::err_no_member_template_suggest; 675 } else if (UnderlyingFirstDecl && 676 (isa<TypeDecl>(UnderlyingFirstDecl) || 677 isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) || 678 isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) { 679 UnqualifiedDiag = diag::err_unknown_typename_suggest; 680 QualifiedDiag = diag::err_unknown_nested_typename_suggest; 681 } 682 683 if (SS.isEmpty()) 684 Diag(NameLoc, UnqualifiedDiag) 685 << Name << CorrectedQuotedStr 686 << FixItHint::CreateReplacement(NameLoc, CorrectedStr); 687 else // FIXME: is this even reachable? Test it. 688 Diag(NameLoc, QualifiedDiag) 689 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr 690 << SS.getRange() 691 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(), 692 CorrectedStr); 693 694 // Update the name, so that the caller has the new name. 695 Name = Corrected.getCorrectionAsIdentifierInfo(); 696 697 // Typo correction corrected to a keyword. 698 if (Corrected.isKeyword()) 699 return Corrected.getCorrectionAsIdentifierInfo(); 700 701 // Also update the LookupResult... 702 // FIXME: This should probably go away at some point 703 Result.clear(); 704 Result.setLookupName(Corrected.getCorrection()); 705 if (FirstDecl) { 706 Result.addDecl(FirstDecl); 707 Diag(FirstDecl->getLocation(), diag::note_previous_decl) 708 << CorrectedQuotedStr; 709 } 710 711 // If we found an Objective-C instance variable, let 712 // LookupInObjCMethod build the appropriate expression to 713 // reference the ivar. 714 // FIXME: This is a gross hack. 715 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) { 716 Result.clear(); 717 ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier())); 718 return E; 719 } 720 721 goto Corrected; 722 } 723 } 724 725 // We failed to correct; just fall through and let the parser deal with it. 726 Result.suppressDiagnostics(); 727 return NameClassification::Unknown(); 728 729 case LookupResult::NotFoundInCurrentInstantiation: { 730 // We performed name lookup into the current instantiation, and there were 731 // dependent bases, so we treat this result the same way as any other 732 // dependent nested-name-specifier. 733 734 // C++ [temp.res]p2: 735 // A name used in a template declaration or definition and that is 736 // dependent on a template-parameter is assumed not to name a type 737 // unless the applicable name lookup finds a type name or the name is 738 // qualified by the keyword typename. 739 // 740 // FIXME: If the next token is '<', we might want to ask the parser to 741 // perform some heroics to see if we actually have a 742 // template-argument-list, which would indicate a missing 'template' 743 // keyword here. 744 return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(), 745 NameInfo, IsAddressOfOperand, 746 /*TemplateArgs=*/0); 747 } 748 749 case LookupResult::Found: 750 case LookupResult::FoundOverloaded: 751 case LookupResult::FoundUnresolvedValue: 752 break; 753 754 case LookupResult::Ambiguous: 755 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 756 hasAnyAcceptableTemplateNames(Result)) { 757 // C++ [temp.local]p3: 758 // A lookup that finds an injected-class-name (10.2) can result in an 759 // ambiguity in certain cases (for example, if it is found in more than 760 // one base class). If all of the injected-class-names that are found 761 // refer to specializations of the same class template, and if the name 762 // is followed by a template-argument-list, the reference refers to the 763 // class template itself and not a specialization thereof, and is not 764 // ambiguous. 765 // 766 // This filtering can make an ambiguous result into an unambiguous one, 767 // so try again after filtering out template names. 768 FilterAcceptableTemplateNames(Result); 769 if (!Result.isAmbiguous()) { 770 IsFilteredTemplateName = true; 771 break; 772 } 773 } 774 775 // Diagnose the ambiguity and return an error. 776 return NameClassification::Error(); 777 } 778 779 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) && 780 (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) { 781 // C++ [temp.names]p3: 782 // After name lookup (3.4) finds that a name is a template-name or that 783 // an operator-function-id or a literal- operator-id refers to a set of 784 // overloaded functions any member of which is a function template if 785 // this is followed by a <, the < is always taken as the delimiter of a 786 // template-argument-list and never as the less-than operator. 787 if (!IsFilteredTemplateName) 788 FilterAcceptableTemplateNames(Result); 789 790 if (!Result.empty()) { 791 bool IsFunctionTemplate; 792 TemplateName Template; 793 if (Result.end() - Result.begin() > 1) { 794 IsFunctionTemplate = true; 795 Template = Context.getOverloadedTemplateName(Result.begin(), 796 Result.end()); 797 } else { 798 TemplateDecl *TD 799 = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl()); 800 IsFunctionTemplate = isa<FunctionTemplateDecl>(TD); 801 802 if (SS.isSet() && !SS.isInvalid()) 803 Template = Context.getQualifiedTemplateName(SS.getScopeRep(), 804 /*TemplateKeyword=*/false, 805 TD); 806 else 807 Template = TemplateName(TD); 808 } 809 810 if (IsFunctionTemplate) { 811 // Function templates always go through overload resolution, at which 812 // point we'll perform the various checks (e.g., accessibility) we need 813 // to based on which function we selected. 814 Result.suppressDiagnostics(); 815 816 return NameClassification::FunctionTemplate(Template); 817 } 818 819 return NameClassification::TypeTemplate(Template); 820 } 821 } 822 823 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl(); 824 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) { 825 DiagnoseUseOfDecl(Type, NameLoc); 826 QualType T = Context.getTypeDeclType(Type); 827 if (SS.isNotEmpty()) 828 return buildNestedType(*this, SS, T, NameLoc); 829 return ParsedType::make(T); 830 } 831 832 ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl); 833 if (!Class) { 834 // FIXME: It's unfortunate that we don't have a Type node for handling this. 835 if (ObjCCompatibleAliasDecl *Alias 836 = dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl)) 837 Class = Alias->getClassInterface(); 838 } 839 840 if (Class) { 841 DiagnoseUseOfDecl(Class, NameLoc); 842 843 if (NextToken.is(tok::period)) { 844 // Interface. <something> is parsed as a property reference expression. 845 // Just return "unknown" as a fall-through for now. 846 Result.suppressDiagnostics(); 847 return NameClassification::Unknown(); 848 } 849 850 QualType T = Context.getObjCInterfaceType(Class); 851 return ParsedType::make(T); 852 } 853 854 // We can have a type template here if we're classifying a template argument. 855 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl)) 856 return NameClassification::TypeTemplate( 857 TemplateName(cast<TemplateDecl>(FirstDecl))); 858 859 // Check for a tag type hidden by a non-type decl in a few cases where it 860 // seems likely a type is wanted instead of the non-type that was found. 861 bool NextIsOp = NextToken.is(tok::amp) || NextToken.is(tok::star); 862 if ((NextToken.is(tok::identifier) || 863 (NextIsOp && FirstDecl->isFunctionOrFunctionTemplate())) && 864 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) { 865 TypeDecl *Type = Result.getAsSingle<TypeDecl>(); 866 DiagnoseUseOfDecl(Type, NameLoc); 867 QualType T = Context.getTypeDeclType(Type); 868 if (SS.isNotEmpty()) 869 return buildNestedType(*this, SS, T, NameLoc); 870 return ParsedType::make(T); 871 } 872 873 if (FirstDecl->isCXXClassMember()) 874 return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result, 0); 875 876 bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren)); 877 return BuildDeclarationNameExpr(SS, Result, ADL); 878 } 879 880 // Determines the context to return to after temporarily entering a 881 // context. This depends in an unnecessarily complicated way on the 882 // exact ordering of callbacks from the parser. 883 DeclContext *Sema::getContainingDC(DeclContext *DC) { 884 885 // Functions defined inline within classes aren't parsed until we've 886 // finished parsing the top-level class, so the top-level class is 887 // the context we'll need to return to. 888 if (isa<FunctionDecl>(DC)) { 889 DC = DC->getLexicalParent(); 890 891 // A function not defined within a class will always return to its 892 // lexical context. 893 if (!isa<CXXRecordDecl>(DC)) 894 return DC; 895 896 // A C++ inline method/friend is parsed *after* the topmost class 897 // it was declared in is fully parsed ("complete"); the topmost 898 // class is the context we need to return to. 899 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent())) 900 DC = RD; 901 902 // Return the declaration context of the topmost class the inline method is 903 // declared in. 904 return DC; 905 } 906 907 return DC->getLexicalParent(); 908 } 909 910 void Sema::PushDeclContext(Scope *S, DeclContext *DC) { 911 assert(getContainingDC(DC) == CurContext && 912 "The next DeclContext should be lexically contained in the current one."); 913 CurContext = DC; 914 S->setEntity(DC); 915 } 916 917 void Sema::PopDeclContext() { 918 assert(CurContext && "DeclContext imbalance!"); 919 920 CurContext = getContainingDC(CurContext); 921 assert(CurContext && "Popped translation unit!"); 922 } 923 924 /// EnterDeclaratorContext - Used when we must lookup names in the context 925 /// of a declarator's nested name specifier. 926 /// 927 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) { 928 // C++0x [basic.lookup.unqual]p13: 929 // A name used in the definition of a static data member of class 930 // X (after the qualified-id of the static member) is looked up as 931 // if the name was used in a member function of X. 932 // C++0x [basic.lookup.unqual]p14: 933 // If a variable member of a namespace is defined outside of the 934 // scope of its namespace then any name used in the definition of 935 // the variable member (after the declarator-id) is looked up as 936 // if the definition of the variable member occurred in its 937 // namespace. 938 // Both of these imply that we should push a scope whose context 939 // is the semantic context of the declaration. We can't use 940 // PushDeclContext here because that context is not necessarily 941 // lexically contained in the current context. Fortunately, 942 // the containing scope should have the appropriate information. 943 944 assert(!S->getEntity() && "scope already has entity"); 945 946 #ifndef NDEBUG 947 Scope *Ancestor = S->getParent(); 948 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 949 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch"); 950 #endif 951 952 CurContext = DC; 953 S->setEntity(DC); 954 } 955 956 void Sema::ExitDeclaratorContext(Scope *S) { 957 assert(S->getEntity() == CurContext && "Context imbalance!"); 958 959 // Switch back to the lexical context. The safety of this is 960 // enforced by an assert in EnterDeclaratorContext. 961 Scope *Ancestor = S->getParent(); 962 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent(); 963 CurContext = (DeclContext*) Ancestor->getEntity(); 964 965 // We don't need to do anything with the scope, which is going to 966 // disappear. 967 } 968 969 970 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) { 971 FunctionDecl *FD = dyn_cast<FunctionDecl>(D); 972 if (FunctionTemplateDecl *TFD = dyn_cast_or_null<FunctionTemplateDecl>(D)) { 973 // We assume that the caller has already called 974 // ActOnReenterTemplateScope 975 FD = TFD->getTemplatedDecl(); 976 } 977 if (!FD) 978 return; 979 980 // Same implementation as PushDeclContext, but enters the context 981 // from the lexical parent, rather than the top-level class. 982 assert(CurContext == FD->getLexicalParent() && 983 "The next DeclContext should be lexically contained in the current one."); 984 CurContext = FD; 985 S->setEntity(CurContext); 986 987 for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) { 988 ParmVarDecl *Param = FD->getParamDecl(P); 989 // If the parameter has an identifier, then add it to the scope 990 if (Param->getIdentifier()) { 991 S->AddDecl(Param); 992 IdResolver.AddDecl(Param); 993 } 994 } 995 } 996 997 998 void Sema::ActOnExitFunctionContext() { 999 // Same implementation as PopDeclContext, but returns to the lexical parent, 1000 // rather than the top-level class. 1001 assert(CurContext && "DeclContext imbalance!"); 1002 CurContext = CurContext->getLexicalParent(); 1003 assert(CurContext && "Popped translation unit!"); 1004 } 1005 1006 1007 /// \brief Determine whether we allow overloading of the function 1008 /// PrevDecl with another declaration. 1009 /// 1010 /// This routine determines whether overloading is possible, not 1011 /// whether some new function is actually an overload. It will return 1012 /// true in C++ (where we can always provide overloads) or, as an 1013 /// extension, in C when the previous function is already an 1014 /// overloaded function declaration or has the "overloadable" 1015 /// attribute. 1016 static bool AllowOverloadingOfFunction(LookupResult &Previous, 1017 ASTContext &Context) { 1018 if (Context.getLangOpts().CPlusPlus) 1019 return true; 1020 1021 if (Previous.getResultKind() == LookupResult::FoundOverloaded) 1022 return true; 1023 1024 return (Previous.getResultKind() == LookupResult::Found 1025 && Previous.getFoundDecl()->hasAttr<OverloadableAttr>()); 1026 } 1027 1028 /// Add this decl to the scope shadowed decl chains. 1029 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) { 1030 // Move up the scope chain until we find the nearest enclosing 1031 // non-transparent context. The declaration will be introduced into this 1032 // scope. 1033 while (S->getEntity() && 1034 ((DeclContext *)S->getEntity())->isTransparentContext()) 1035 S = S->getParent(); 1036 1037 // Add scoped declarations into their context, so that they can be 1038 // found later. Declarations without a context won't be inserted 1039 // into any context. 1040 if (AddToContext) 1041 CurContext->addDecl(D); 1042 1043 // Out-of-line definitions shouldn't be pushed into scope in C++. 1044 // Out-of-line variable and function definitions shouldn't even in C. 1045 if ((getLangOpts().CPlusPlus || isa<VarDecl>(D) || isa<FunctionDecl>(D)) && 1046 D->isOutOfLine() && 1047 !D->getDeclContext()->getRedeclContext()->Equals( 1048 D->getLexicalDeclContext()->getRedeclContext())) 1049 return; 1050 1051 // Template instantiations should also not be pushed into scope. 1052 if (isa<FunctionDecl>(D) && 1053 cast<FunctionDecl>(D)->isFunctionTemplateSpecialization()) 1054 return; 1055 1056 // If this replaces anything in the current scope, 1057 IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()), 1058 IEnd = IdResolver.end(); 1059 for (; I != IEnd; ++I) { 1060 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { 1061 S->RemoveDecl(*I); 1062 IdResolver.RemoveDecl(*I); 1063 1064 // Should only need to replace one decl. 1065 break; 1066 } 1067 } 1068 1069 S->AddDecl(D); 1070 1071 if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) { 1072 // Implicitly-generated labels may end up getting generated in an order that 1073 // isn't strictly lexical, which breaks name lookup. Be careful to insert 1074 // the label at the appropriate place in the identifier chain. 1075 for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) { 1076 DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext(); 1077 if (IDC == CurContext) { 1078 if (!S->isDeclScope(*I)) 1079 continue; 1080 } else if (IDC->Encloses(CurContext)) 1081 break; 1082 } 1083 1084 IdResolver.InsertDeclAfter(I, D); 1085 } else { 1086 IdResolver.AddDecl(D); 1087 } 1088 } 1089 1090 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) { 1091 if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope) 1092 TUScope->AddDecl(D); 1093 } 1094 1095 bool Sema::isDeclInScope(NamedDecl *&D, DeclContext *Ctx, Scope *S, 1096 bool ExplicitInstantiationOrSpecialization) { 1097 return IdResolver.isDeclInScope(D, Ctx, S, 1098 ExplicitInstantiationOrSpecialization); 1099 } 1100 1101 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) { 1102 DeclContext *TargetDC = DC->getPrimaryContext(); 1103 do { 1104 if (DeclContext *ScopeDC = (DeclContext*) S->getEntity()) 1105 if (ScopeDC->getPrimaryContext() == TargetDC) 1106 return S; 1107 } while ((S = S->getParent())); 1108 1109 return 0; 1110 } 1111 1112 static bool isOutOfScopePreviousDeclaration(NamedDecl *, 1113 DeclContext*, 1114 ASTContext&); 1115 1116 /// Filters out lookup results that don't fall within the given scope 1117 /// as determined by isDeclInScope. 1118 void Sema::FilterLookupForScope(LookupResult &R, 1119 DeclContext *Ctx, Scope *S, 1120 bool ConsiderLinkage, 1121 bool ExplicitInstantiationOrSpecialization) { 1122 LookupResult::Filter F = R.makeFilter(); 1123 while (F.hasNext()) { 1124 NamedDecl *D = F.next(); 1125 1126 if (isDeclInScope(D, Ctx, S, ExplicitInstantiationOrSpecialization)) 1127 continue; 1128 1129 if (ConsiderLinkage && 1130 isOutOfScopePreviousDeclaration(D, Ctx, Context)) 1131 continue; 1132 1133 F.erase(); 1134 } 1135 1136 F.done(); 1137 } 1138 1139 static bool isUsingDecl(NamedDecl *D) { 1140 return isa<UsingShadowDecl>(D) || 1141 isa<UnresolvedUsingTypenameDecl>(D) || 1142 isa<UnresolvedUsingValueDecl>(D); 1143 } 1144 1145 /// Removes using shadow declarations from the lookup results. 1146 static void RemoveUsingDecls(LookupResult &R) { 1147 LookupResult::Filter F = R.makeFilter(); 1148 while (F.hasNext()) 1149 if (isUsingDecl(F.next())) 1150 F.erase(); 1151 1152 F.done(); 1153 } 1154 1155 /// \brief Check for this common pattern: 1156 /// @code 1157 /// class S { 1158 /// S(const S&); // DO NOT IMPLEMENT 1159 /// void operator=(const S&); // DO NOT IMPLEMENT 1160 /// }; 1161 /// @endcode 1162 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) { 1163 // FIXME: Should check for private access too but access is set after we get 1164 // the decl here. 1165 if (D->doesThisDeclarationHaveABody()) 1166 return false; 1167 1168 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) 1169 return CD->isCopyConstructor(); 1170 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) 1171 return Method->isCopyAssignmentOperator(); 1172 return false; 1173 } 1174 1175 // We need this to handle 1176 // 1177 // typedef struct { 1178 // void *foo() { return 0; } 1179 // } A; 1180 // 1181 // When we see foo we don't know if after the typedef we will get 'A' or '*A' 1182 // for example. If 'A', foo will have external linkage. If we have '*A', 1183 // foo will have no linkage. Since we can't know untill we get to the end 1184 // of the typedef, this function finds out if D might have non external linkage. 1185 // Callers should verify at the end of the TU if it D has external linkage or 1186 // not. 1187 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) { 1188 const DeclContext *DC = D->getDeclContext(); 1189 while (!DC->isTranslationUnit()) { 1190 if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){ 1191 if (!RD->hasNameForLinkage()) 1192 return true; 1193 } 1194 DC = DC->getParent(); 1195 } 1196 1197 return !D->hasExternalLinkage(); 1198 } 1199 1200 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const { 1201 assert(D); 1202 1203 if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>()) 1204 return false; 1205 1206 // Ignore class templates. 1207 if (D->getDeclContext()->isDependentContext() || 1208 D->getLexicalDeclContext()->isDependentContext()) 1209 return false; 1210 1211 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1212 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1213 return false; 1214 1215 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 1216 if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD)) 1217 return false; 1218 } else { 1219 // 'static inline' functions are used in headers; don't warn. 1220 // Make sure we get the storage class from the canonical declaration, 1221 // since otherwise we will get spurious warnings on specialized 1222 // static template functions. 1223 if (FD->getCanonicalDecl()->getStorageClass() == SC_Static && 1224 FD->isInlineSpecified()) 1225 return false; 1226 } 1227 1228 if (FD->doesThisDeclarationHaveABody() && 1229 Context.DeclMustBeEmitted(FD)) 1230 return false; 1231 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1232 // Don't warn on variables of const-qualified or reference type, since their 1233 // values can be used even if though they're not odr-used, and because const 1234 // qualified variables can appear in headers in contexts where they're not 1235 // intended to be used. 1236 // FIXME: Use more principled rules for these exemptions. 1237 if (!VD->isFileVarDecl() || 1238 VD->getType().isConstQualified() || 1239 VD->getType()->isReferenceType() || 1240 Context.DeclMustBeEmitted(VD)) 1241 return false; 1242 1243 if (VD->isStaticDataMember() && 1244 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 1245 return false; 1246 1247 } else { 1248 return false; 1249 } 1250 1251 // Only warn for unused decls internal to the translation unit. 1252 return mightHaveNonExternalLinkage(D); 1253 } 1254 1255 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) { 1256 if (!D) 1257 return; 1258 1259 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 1260 const FunctionDecl *First = FD->getFirstDeclaration(); 1261 if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1262 return; // First should already be in the vector. 1263 } 1264 1265 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1266 const VarDecl *First = VD->getFirstDeclaration(); 1267 if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First)) 1268 return; // First should already be in the vector. 1269 } 1270 1271 if (ShouldWarnIfUnusedFileScopedDecl(D)) 1272 UnusedFileScopedDecls.push_back(D); 1273 } 1274 1275 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) { 1276 if (D->isInvalidDecl()) 1277 return false; 1278 1279 if (D->isReferenced() || D->isUsed() || D->hasAttr<UnusedAttr>()) 1280 return false; 1281 1282 if (isa<LabelDecl>(D)) 1283 return true; 1284 1285 // White-list anything that isn't a local variable. 1286 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D) || 1287 !D->getDeclContext()->isFunctionOrMethod()) 1288 return false; 1289 1290 // Types of valid local variables should be complete, so this should succeed. 1291 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1292 1293 // White-list anything with an __attribute__((unused)) type. 1294 QualType Ty = VD->getType(); 1295 1296 // Only look at the outermost level of typedef. 1297 if (const TypedefType *TT = Ty->getAs<TypedefType>()) { 1298 if (TT->getDecl()->hasAttr<UnusedAttr>()) 1299 return false; 1300 } 1301 1302 // If we failed to complete the type for some reason, or if the type is 1303 // dependent, don't diagnose the variable. 1304 if (Ty->isIncompleteType() || Ty->isDependentType()) 1305 return false; 1306 1307 if (const TagType *TT = Ty->getAs<TagType>()) { 1308 const TagDecl *Tag = TT->getDecl(); 1309 if (Tag->hasAttr<UnusedAttr>()) 1310 return false; 1311 1312 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) { 1313 if (!RD->hasTrivialDestructor()) 1314 return false; 1315 1316 if (const Expr *Init = VD->getInit()) { 1317 if (const ExprWithCleanups *Cleanups = dyn_cast<ExprWithCleanups>(Init)) 1318 Init = Cleanups->getSubExpr(); 1319 const CXXConstructExpr *Construct = 1320 dyn_cast<CXXConstructExpr>(Init); 1321 if (Construct && !Construct->isElidable()) { 1322 CXXConstructorDecl *CD = Construct->getConstructor(); 1323 if (!CD->isTrivial()) 1324 return false; 1325 } 1326 } 1327 } 1328 } 1329 1330 // TODO: __attribute__((unused)) templates? 1331 } 1332 1333 return true; 1334 } 1335 1336 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx, 1337 FixItHint &Hint) { 1338 if (isa<LabelDecl>(D)) { 1339 SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(), 1340 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true); 1341 if (AfterColon.isInvalid()) 1342 return; 1343 Hint = FixItHint::CreateRemoval(CharSourceRange:: 1344 getCharRange(D->getLocStart(), AfterColon)); 1345 } 1346 return; 1347 } 1348 1349 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used 1350 /// unless they are marked attr(unused). 1351 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) { 1352 FixItHint Hint; 1353 if (!ShouldDiagnoseUnusedDecl(D)) 1354 return; 1355 1356 GenerateFixForUnusedDecl(D, Context, Hint); 1357 1358 unsigned DiagID; 1359 if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable()) 1360 DiagID = diag::warn_unused_exception_param; 1361 else if (isa<LabelDecl>(D)) 1362 DiagID = diag::warn_unused_label; 1363 else 1364 DiagID = diag::warn_unused_variable; 1365 1366 Diag(D->getLocation(), DiagID) << D->getDeclName() << Hint; 1367 } 1368 1369 static void CheckPoppedLabel(LabelDecl *L, Sema &S) { 1370 // Verify that we have no forward references left. If so, there was a goto 1371 // or address of a label taken, but no definition of it. Label fwd 1372 // definitions are indicated with a null substmt. 1373 if (L->getStmt() == 0) 1374 S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName(); 1375 } 1376 1377 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) { 1378 if (S->decl_empty()) return; 1379 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) && 1380 "Scope shouldn't contain decls!"); 1381 1382 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end(); 1383 I != E; ++I) { 1384 Decl *TmpD = (*I); 1385 assert(TmpD && "This decl didn't get pushed??"); 1386 1387 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?"); 1388 NamedDecl *D = cast<NamedDecl>(TmpD); 1389 1390 if (!D->getDeclName()) continue; 1391 1392 // Diagnose unused variables in this scope. 1393 if (!S->hasUnrecoverableErrorOccurred()) 1394 DiagnoseUnusedDecl(D); 1395 1396 // If this was a forward reference to a label, verify it was defined. 1397 if (LabelDecl *LD = dyn_cast<LabelDecl>(D)) 1398 CheckPoppedLabel(LD, *this); 1399 1400 // Remove this name from our lexical scope. 1401 IdResolver.RemoveDecl(D); 1402 } 1403 } 1404 1405 void Sema::ActOnStartFunctionDeclarator() { 1406 ++InFunctionDeclarator; 1407 } 1408 1409 void Sema::ActOnEndFunctionDeclarator() { 1410 assert(InFunctionDeclarator); 1411 --InFunctionDeclarator; 1412 } 1413 1414 /// \brief Look for an Objective-C class in the translation unit. 1415 /// 1416 /// \param Id The name of the Objective-C class we're looking for. If 1417 /// typo-correction fixes this name, the Id will be updated 1418 /// to the fixed name. 1419 /// 1420 /// \param IdLoc The location of the name in the translation unit. 1421 /// 1422 /// \param DoTypoCorrection If true, this routine will attempt typo correction 1423 /// if there is no class with the given name. 1424 /// 1425 /// \returns The declaration of the named Objective-C class, or NULL if the 1426 /// class could not be found. 1427 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id, 1428 SourceLocation IdLoc, 1429 bool DoTypoCorrection) { 1430 // The third "scope" argument is 0 since we aren't enabling lazy built-in 1431 // creation from this context. 1432 NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName); 1433 1434 if (!IDecl && DoTypoCorrection) { 1435 // Perform typo correction at the given location, but only if we 1436 // find an Objective-C class name. 1437 DeclFilterCCC<ObjCInterfaceDecl> Validator; 1438 if (TypoCorrection C = CorrectTypo(DeclarationNameInfo(Id, IdLoc), 1439 LookupOrdinaryName, TUScope, NULL, 1440 Validator)) { 1441 IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>(); 1442 Diag(IdLoc, diag::err_undef_interface_suggest) 1443 << Id << IDecl->getDeclName() 1444 << FixItHint::CreateReplacement(IdLoc, IDecl->getNameAsString()); 1445 Diag(IDecl->getLocation(), diag::note_previous_decl) 1446 << IDecl->getDeclName(); 1447 1448 Id = IDecl->getIdentifier(); 1449 } 1450 } 1451 ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl); 1452 // This routine must always return a class definition, if any. 1453 if (Def && Def->getDefinition()) 1454 Def = Def->getDefinition(); 1455 return Def; 1456 } 1457 1458 /// getNonFieldDeclScope - Retrieves the innermost scope, starting 1459 /// from S, where a non-field would be declared. This routine copes 1460 /// with the difference between C and C++ scoping rules in structs and 1461 /// unions. For example, the following code is well-formed in C but 1462 /// ill-formed in C++: 1463 /// @code 1464 /// struct S6 { 1465 /// enum { BAR } e; 1466 /// }; 1467 /// 1468 /// void test_S6() { 1469 /// struct S6 a; 1470 /// a.e = BAR; 1471 /// } 1472 /// @endcode 1473 /// For the declaration of BAR, this routine will return a different 1474 /// scope. The scope S will be the scope of the unnamed enumeration 1475 /// within S6. In C++, this routine will return the scope associated 1476 /// with S6, because the enumeration's scope is a transparent 1477 /// context but structures can contain non-field names. In C, this 1478 /// routine will return the translation unit scope, since the 1479 /// enumeration's scope is a transparent context and structures cannot 1480 /// contain non-field names. 1481 Scope *Sema::getNonFieldDeclScope(Scope *S) { 1482 while (((S->getFlags() & Scope::DeclScope) == 0) || 1483 (S->getEntity() && 1484 ((DeclContext *)S->getEntity())->isTransparentContext()) || 1485 (S->isClassScope() && !getLangOpts().CPlusPlus)) 1486 S = S->getParent(); 1487 return S; 1488 } 1489 1490 /// \brief Looks up the declaration of "struct objc_super" and 1491 /// saves it for later use in building builtin declaration of 1492 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such 1493 /// pre-existing declaration exists no action takes place. 1494 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S, 1495 IdentifierInfo *II) { 1496 if (!II->isStr("objc_msgSendSuper")) 1497 return; 1498 ASTContext &Context = ThisSema.Context; 1499 1500 LookupResult Result(ThisSema, &Context.Idents.get("objc_super"), 1501 SourceLocation(), Sema::LookupTagName); 1502 ThisSema.LookupName(Result, S); 1503 if (Result.getResultKind() == LookupResult::Found) 1504 if (const TagDecl *TD = Result.getAsSingle<TagDecl>()) 1505 Context.setObjCSuperType(Context.getTagDeclType(TD)); 1506 } 1507 1508 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at 1509 /// file scope. lazily create a decl for it. ForRedeclaration is true 1510 /// if we're creating this built-in in anticipation of redeclaring the 1511 /// built-in. 1512 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid, 1513 Scope *S, bool ForRedeclaration, 1514 SourceLocation Loc) { 1515 LookupPredefedObjCSuperType(*this, S, II); 1516 1517 Builtin::ID BID = (Builtin::ID)bid; 1518 1519 ASTContext::GetBuiltinTypeError Error; 1520 QualType R = Context.GetBuiltinType(BID, Error); 1521 switch (Error) { 1522 case ASTContext::GE_None: 1523 // Okay 1524 break; 1525 1526 case ASTContext::GE_Missing_stdio: 1527 if (ForRedeclaration) 1528 Diag(Loc, diag::warn_implicit_decl_requires_stdio) 1529 << Context.BuiltinInfo.GetName(BID); 1530 return 0; 1531 1532 case ASTContext::GE_Missing_setjmp: 1533 if (ForRedeclaration) 1534 Diag(Loc, diag::warn_implicit_decl_requires_setjmp) 1535 << Context.BuiltinInfo.GetName(BID); 1536 return 0; 1537 1538 case ASTContext::GE_Missing_ucontext: 1539 if (ForRedeclaration) 1540 Diag(Loc, diag::warn_implicit_decl_requires_ucontext) 1541 << Context.BuiltinInfo.GetName(BID); 1542 return 0; 1543 } 1544 1545 if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) { 1546 Diag(Loc, diag::ext_implicit_lib_function_decl) 1547 << Context.BuiltinInfo.GetName(BID) 1548 << R; 1549 if (Context.BuiltinInfo.getHeaderName(BID) && 1550 Diags.getDiagnosticLevel(diag::ext_implicit_lib_function_decl, Loc) 1551 != DiagnosticsEngine::Ignored) 1552 Diag(Loc, diag::note_please_include_header) 1553 << Context.BuiltinInfo.getHeaderName(BID) 1554 << Context.BuiltinInfo.GetName(BID); 1555 } 1556 1557 FunctionDecl *New = FunctionDecl::Create(Context, 1558 Context.getTranslationUnitDecl(), 1559 Loc, Loc, II, R, /*TInfo=*/0, 1560 SC_Extern, 1561 false, 1562 /*hasPrototype=*/true); 1563 New->setImplicit(); 1564 1565 // Create Decl objects for each parameter, adding them to the 1566 // FunctionDecl. 1567 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) { 1568 SmallVector<ParmVarDecl*, 16> Params; 1569 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) { 1570 ParmVarDecl *parm = 1571 ParmVarDecl::Create(Context, New, SourceLocation(), 1572 SourceLocation(), 0, 1573 FT->getArgType(i), /*TInfo=*/0, 1574 SC_None, 0); 1575 parm->setScopeInfo(0, i); 1576 Params.push_back(parm); 1577 } 1578 New->setParams(Params); 1579 } 1580 1581 AddKnownFunctionAttributes(New); 1582 1583 // TUScope is the translation-unit scope to insert this function into. 1584 // FIXME: This is hideous. We need to teach PushOnScopeChains to 1585 // relate Scopes to DeclContexts, and probably eliminate CurContext 1586 // entirely, but we're not there yet. 1587 DeclContext *SavedContext = CurContext; 1588 CurContext = Context.getTranslationUnitDecl(); 1589 PushOnScopeChains(New, TUScope); 1590 CurContext = SavedContext; 1591 return New; 1592 } 1593 1594 /// \brief Filter out any previous declarations that the given declaration 1595 /// should not consider because they are not permitted to conflict, e.g., 1596 /// because they come from hidden sub-modules and do not refer to the same 1597 /// entity. 1598 static void filterNonConflictingPreviousDecls(ASTContext &context, 1599 NamedDecl *decl, 1600 LookupResult &previous){ 1601 // This is only interesting when modules are enabled. 1602 if (!context.getLangOpts().Modules) 1603 return; 1604 1605 // Empty sets are uninteresting. 1606 if (previous.empty()) 1607 return; 1608 1609 LookupResult::Filter filter = previous.makeFilter(); 1610 while (filter.hasNext()) { 1611 NamedDecl *old = filter.next(); 1612 1613 // Non-hidden declarations are never ignored. 1614 if (!old->isHidden()) 1615 continue; 1616 1617 if (old->getLinkage() != ExternalLinkage) 1618 filter.erase(); 1619 } 1620 1621 filter.done(); 1622 } 1623 1624 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { 1625 QualType OldType; 1626 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old)) 1627 OldType = OldTypedef->getUnderlyingType(); 1628 else 1629 OldType = Context.getTypeDeclType(Old); 1630 QualType NewType = New->getUnderlyingType(); 1631 1632 if (NewType->isVariablyModifiedType()) { 1633 // Must not redefine a typedef with a variably-modified type. 1634 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 1635 Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef) 1636 << Kind << NewType; 1637 if (Old->getLocation().isValid()) 1638 Diag(Old->getLocation(), diag::note_previous_definition); 1639 New->setInvalidDecl(); 1640 return true; 1641 } 1642 1643 if (OldType != NewType && 1644 !OldType->isDependentType() && 1645 !NewType->isDependentType() && 1646 !Context.hasSameType(OldType, NewType)) { 1647 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0; 1648 Diag(New->getLocation(), diag::err_redefinition_different_typedef) 1649 << Kind << NewType << OldType; 1650 if (Old->getLocation().isValid()) 1651 Diag(Old->getLocation(), diag::note_previous_definition); 1652 New->setInvalidDecl(); 1653 return true; 1654 } 1655 return false; 1656 } 1657 1658 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the 1659 /// same name and scope as a previous declaration 'Old'. Figure out 1660 /// how to resolve this situation, merging decls or emitting 1661 /// diagnostics as appropriate. If there was an error, set New to be invalid. 1662 /// 1663 void Sema::MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls) { 1664 // If the new decl is known invalid already, don't bother doing any 1665 // merging checks. 1666 if (New->isInvalidDecl()) return; 1667 1668 // Allow multiple definitions for ObjC built-in typedefs. 1669 // FIXME: Verify the underlying types are equivalent! 1670 if (getLangOpts().ObjC1) { 1671 const IdentifierInfo *TypeID = New->getIdentifier(); 1672 switch (TypeID->getLength()) { 1673 default: break; 1674 case 2: 1675 { 1676 if (!TypeID->isStr("id")) 1677 break; 1678 QualType T = New->getUnderlyingType(); 1679 if (!T->isPointerType()) 1680 break; 1681 if (!T->isVoidPointerType()) { 1682 QualType PT = T->getAs<PointerType>()->getPointeeType(); 1683 if (!PT->isStructureType()) 1684 break; 1685 } 1686 Context.setObjCIdRedefinitionType(T); 1687 // Install the built-in type for 'id', ignoring the current definition. 1688 New->setTypeForDecl(Context.getObjCIdType().getTypePtr()); 1689 return; 1690 } 1691 case 5: 1692 if (!TypeID->isStr("Class")) 1693 break; 1694 Context.setObjCClassRedefinitionType(New->getUnderlyingType()); 1695 // Install the built-in type for 'Class', ignoring the current definition. 1696 New->setTypeForDecl(Context.getObjCClassType().getTypePtr()); 1697 return; 1698 case 3: 1699 if (!TypeID->isStr("SEL")) 1700 break; 1701 Context.setObjCSelRedefinitionType(New->getUnderlyingType()); 1702 // Install the built-in type for 'SEL', ignoring the current definition. 1703 New->setTypeForDecl(Context.getObjCSelType().getTypePtr()); 1704 return; 1705 } 1706 // Fall through - the typedef name was not a builtin type. 1707 } 1708 1709 // Verify the old decl was also a type. 1710 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>(); 1711 if (!Old) { 1712 Diag(New->getLocation(), diag::err_redefinition_different_kind) 1713 << New->getDeclName(); 1714 1715 NamedDecl *OldD = OldDecls.getRepresentativeDecl(); 1716 if (OldD->getLocation().isValid()) 1717 Diag(OldD->getLocation(), diag::note_previous_definition); 1718 1719 return New->setInvalidDecl(); 1720 } 1721 1722 // If the old declaration is invalid, just give up here. 1723 if (Old->isInvalidDecl()) 1724 return New->setInvalidDecl(); 1725 1726 // If the typedef types are not identical, reject them in all languages and 1727 // with any extensions enabled. 1728 if (isIncompatibleTypedef(Old, New)) 1729 return; 1730 1731 // The types match. Link up the redeclaration chain if the old 1732 // declaration was a typedef. 1733 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) 1734 New->setPreviousDeclaration(Typedef); 1735 1736 if (getLangOpts().MicrosoftExt) 1737 return; 1738 1739 if (getLangOpts().CPlusPlus) { 1740 // C++ [dcl.typedef]p2: 1741 // In a given non-class scope, a typedef specifier can be used to 1742 // redefine the name of any type declared in that scope to refer 1743 // to the type to which it already refers. 1744 if (!isa<CXXRecordDecl>(CurContext)) 1745 return; 1746 1747 // C++0x [dcl.typedef]p4: 1748 // In a given class scope, a typedef specifier can be used to redefine 1749 // any class-name declared in that scope that is not also a typedef-name 1750 // to refer to the type to which it already refers. 1751 // 1752 // This wording came in via DR424, which was a correction to the 1753 // wording in DR56, which accidentally banned code like: 1754 // 1755 // struct S { 1756 // typedef struct A { } A; 1757 // }; 1758 // 1759 // in the C++03 standard. We implement the C++0x semantics, which 1760 // allow the above but disallow 1761 // 1762 // struct S { 1763 // typedef int I; 1764 // typedef int I; 1765 // }; 1766 // 1767 // since that was the intent of DR56. 1768 if (!isa<TypedefNameDecl>(Old)) 1769 return; 1770 1771 Diag(New->getLocation(), diag::err_redefinition) 1772 << New->getDeclName(); 1773 Diag(Old->getLocation(), diag::note_previous_definition); 1774 return New->setInvalidDecl(); 1775 } 1776 1777 // Modules always permit redefinition of typedefs, as does C11. 1778 if (getLangOpts().Modules || getLangOpts().C11) 1779 return; 1780 1781 // If we have a redefinition of a typedef in C, emit a warning. This warning 1782 // is normally mapped to an error, but can be controlled with 1783 // -Wtypedef-redefinition. If either the original or the redefinition is 1784 // in a system header, don't emit this for compatibility with GCC. 1785 if (getDiagnostics().getSuppressSystemWarnings() && 1786 (Context.getSourceManager().isInSystemHeader(Old->getLocation()) || 1787 Context.getSourceManager().isInSystemHeader(New->getLocation()))) 1788 return; 1789 1790 Diag(New->getLocation(), diag::warn_redefinition_of_typedef) 1791 << New->getDeclName(); 1792 Diag(Old->getLocation(), diag::note_previous_definition); 1793 return; 1794 } 1795 1796 /// DeclhasAttr - returns true if decl Declaration already has the target 1797 /// attribute. 1798 static bool 1799 DeclHasAttr(const Decl *D, const Attr *A) { 1800 // There can be multiple AvailabilityAttr in a Decl. Make sure we copy 1801 // all of them. It is mergeAvailabilityAttr in SemaDeclAttr.cpp that is 1802 // responsible for making sure they are consistent. 1803 const AvailabilityAttr *AA = dyn_cast<AvailabilityAttr>(A); 1804 if (AA) 1805 return false; 1806 1807 // The following thread safety attributes can also be duplicated. 1808 switch (A->getKind()) { 1809 case attr::ExclusiveLocksRequired: 1810 case attr::SharedLocksRequired: 1811 case attr::LocksExcluded: 1812 case attr::ExclusiveLockFunction: 1813 case attr::SharedLockFunction: 1814 case attr::UnlockFunction: 1815 case attr::ExclusiveTrylockFunction: 1816 case attr::SharedTrylockFunction: 1817 case attr::GuardedBy: 1818 case attr::PtGuardedBy: 1819 case attr::AcquiredBefore: 1820 case attr::AcquiredAfter: 1821 return false; 1822 default: 1823 ; 1824 } 1825 1826 const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A); 1827 const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A); 1828 for (Decl::attr_iterator i = D->attr_begin(), e = D->attr_end(); i != e; ++i) 1829 if ((*i)->getKind() == A->getKind()) { 1830 if (Ann) { 1831 if (Ann->getAnnotation() == cast<AnnotateAttr>(*i)->getAnnotation()) 1832 return true; 1833 continue; 1834 } 1835 // FIXME: Don't hardcode this check 1836 if (OA && isa<OwnershipAttr>(*i)) 1837 return OA->getOwnKind() == cast<OwnershipAttr>(*i)->getOwnKind(); 1838 return true; 1839 } 1840 1841 return false; 1842 } 1843 1844 static bool isAttributeTargetADefinition(Decl *D) { 1845 if (VarDecl *VD = dyn_cast<VarDecl>(D)) 1846 return VD->isThisDeclarationADefinition(); 1847 if (TagDecl *TD = dyn_cast<TagDecl>(D)) 1848 return TD->isCompleteDefinition() || TD->isBeingDefined(); 1849 return true; 1850 } 1851 1852 /// Merge alignment attributes from \p Old to \p New, taking into account the 1853 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute. 1854 /// 1855 /// \return \c true if any attributes were added to \p New. 1856 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) { 1857 // Look for alignas attributes on Old, and pick out whichever attribute 1858 // specifies the strictest alignment requirement. 1859 AlignedAttr *OldAlignasAttr = 0; 1860 AlignedAttr *OldStrictestAlignAttr = 0; 1861 unsigned OldAlign = 0; 1862 for (specific_attr_iterator<AlignedAttr> 1863 I = Old->specific_attr_begin<AlignedAttr>(), 1864 E = Old->specific_attr_end<AlignedAttr>(); I != E; ++I) { 1865 // FIXME: We have no way of representing inherited dependent alignments 1866 // in a case like: 1867 // template<int A, int B> struct alignas(A) X; 1868 // template<int A, int B> struct alignas(B) X {}; 1869 // For now, we just ignore any alignas attributes which are not on the 1870 // definition in such a case. 1871 if (I->isAlignmentDependent()) 1872 return false; 1873 1874 if (I->isAlignas()) 1875 OldAlignasAttr = *I; 1876 1877 unsigned Align = I->getAlignment(S.Context); 1878 if (Align > OldAlign) { 1879 OldAlign = Align; 1880 OldStrictestAlignAttr = *I; 1881 } 1882 } 1883 1884 // Look for alignas attributes on New. 1885 AlignedAttr *NewAlignasAttr = 0; 1886 unsigned NewAlign = 0; 1887 for (specific_attr_iterator<AlignedAttr> 1888 I = New->specific_attr_begin<AlignedAttr>(), 1889 E = New->specific_attr_end<AlignedAttr>(); I != E; ++I) { 1890 if (I->isAlignmentDependent()) 1891 return false; 1892 1893 if (I->isAlignas()) 1894 NewAlignasAttr = *I; 1895 1896 unsigned Align = I->getAlignment(S.Context); 1897 if (Align > NewAlign) 1898 NewAlign = Align; 1899 } 1900 1901 if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) { 1902 // Both declarations have 'alignas' attributes. We require them to match. 1903 // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but 1904 // fall short. (If two declarations both have alignas, they must both match 1905 // every definition, and so must match each other if there is a definition.) 1906 1907 // If either declaration only contains 'alignas(0)' specifiers, then it 1908 // specifies the natural alignment for the type. 1909 if (OldAlign == 0 || NewAlign == 0) { 1910 QualType Ty; 1911 if (ValueDecl *VD = dyn_cast<ValueDecl>(New)) 1912 Ty = VD->getType(); 1913 else 1914 Ty = S.Context.getTagDeclType(cast<TagDecl>(New)); 1915 1916 if (OldAlign == 0) 1917 OldAlign = S.Context.getTypeAlign(Ty); 1918 if (NewAlign == 0) 1919 NewAlign = S.Context.getTypeAlign(Ty); 1920 } 1921 1922 if (OldAlign != NewAlign) { 1923 S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch) 1924 << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity() 1925 << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity(); 1926 S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration); 1927 } 1928 } 1929 1930 if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) { 1931 // C++11 [dcl.align]p6: 1932 // if any declaration of an entity has an alignment-specifier, 1933 // every defining declaration of that entity shall specify an 1934 // equivalent alignment. 1935 // C11 6.7.5/7: 1936 // If the definition of an object does not have an alignment 1937 // specifier, any other declaration of that object shall also 1938 // have no alignment specifier. 1939 S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition) 1940 << OldAlignasAttr->isC11(); 1941 S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration) 1942 << OldAlignasAttr->isC11(); 1943 } 1944 1945 bool AnyAdded = false; 1946 1947 // Ensure we have an attribute representing the strictest alignment. 1948 if (OldAlign > NewAlign) { 1949 AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context); 1950 Clone->setInherited(true); 1951 New->addAttr(Clone); 1952 AnyAdded = true; 1953 } 1954 1955 // Ensure we have an alignas attribute if the old declaration had one. 1956 if (OldAlignasAttr && !NewAlignasAttr && 1957 !(AnyAdded && OldStrictestAlignAttr->isAlignas())) { 1958 AlignedAttr *Clone = OldAlignasAttr->clone(S.Context); 1959 Clone->setInherited(true); 1960 New->addAttr(Clone); 1961 AnyAdded = true; 1962 } 1963 1964 return AnyAdded; 1965 } 1966 1967 static bool mergeDeclAttribute(Sema &S, NamedDecl *D, InheritableAttr *Attr, 1968 bool Override) { 1969 InheritableAttr *NewAttr = NULL; 1970 unsigned AttrSpellingListIndex = Attr->getSpellingListIndex(); 1971 if (AvailabilityAttr *AA = dyn_cast<AvailabilityAttr>(Attr)) 1972 NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(), 1973 AA->getIntroduced(), AA->getDeprecated(), 1974 AA->getObsoleted(), AA->getUnavailable(), 1975 AA->getMessage(), Override, 1976 AttrSpellingListIndex); 1977 else if (VisibilityAttr *VA = dyn_cast<VisibilityAttr>(Attr)) 1978 NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(), 1979 AttrSpellingListIndex); 1980 else if (TypeVisibilityAttr *VA = dyn_cast<TypeVisibilityAttr>(Attr)) 1981 NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(), 1982 AttrSpellingListIndex); 1983 else if (DLLImportAttr *ImportA = dyn_cast<DLLImportAttr>(Attr)) 1984 NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(), 1985 AttrSpellingListIndex); 1986 else if (DLLExportAttr *ExportA = dyn_cast<DLLExportAttr>(Attr)) 1987 NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(), 1988 AttrSpellingListIndex); 1989 else if (FormatAttr *FA = dyn_cast<FormatAttr>(Attr)) 1990 NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(), 1991 FA->getFormatIdx(), FA->getFirstArg(), 1992 AttrSpellingListIndex); 1993 else if (SectionAttr *SA = dyn_cast<SectionAttr>(Attr)) 1994 NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(), 1995 AttrSpellingListIndex); 1996 else if (isa<AlignedAttr>(Attr)) 1997 // AlignedAttrs are handled separately, because we need to handle all 1998 // such attributes on a declaration at the same time. 1999 NewAttr = 0; 2000 else if (!DeclHasAttr(D, Attr)) 2001 NewAttr = cast<InheritableAttr>(Attr->clone(S.Context)); 2002 2003 if (NewAttr) { 2004 NewAttr->setInherited(true); 2005 D->addAttr(NewAttr); 2006 return true; 2007 } 2008 2009 return false; 2010 } 2011 2012 static const Decl *getDefinition(const Decl *D) { 2013 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) 2014 return TD->getDefinition(); 2015 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 2016 return VD->getDefinition(); 2017 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 2018 const FunctionDecl* Def; 2019 if (FD->hasBody(Def)) 2020 return Def; 2021 } 2022 return NULL; 2023 } 2024 2025 static bool hasAttribute(const Decl *D, attr::Kind Kind) { 2026 for (Decl::attr_iterator I = D->attr_begin(), E = D->attr_end(); 2027 I != E; ++I) { 2028 Attr *Attribute = *I; 2029 if (Attribute->getKind() == Kind) 2030 return true; 2031 } 2032 return false; 2033 } 2034 2035 /// checkNewAttributesAfterDef - If we already have a definition, check that 2036 /// there are no new attributes in this declaration. 2037 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) { 2038 if (!New->hasAttrs()) 2039 return; 2040 2041 const Decl *Def = getDefinition(Old); 2042 if (!Def || Def == New) 2043 return; 2044 2045 AttrVec &NewAttributes = New->getAttrs(); 2046 for (unsigned I = 0, E = NewAttributes.size(); I != E;) { 2047 const Attr *NewAttribute = NewAttributes[I]; 2048 if (hasAttribute(Def, NewAttribute->getKind())) { 2049 ++I; 2050 continue; // regular attr merging will take care of validating this. 2051 } 2052 2053 if (isa<C11NoReturnAttr>(NewAttribute)) { 2054 // C's _Noreturn is allowed to be added to a function after it is defined. 2055 ++I; 2056 continue; 2057 } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) { 2058 if (AA->isAlignas()) { 2059 // C++11 [dcl.align]p6: 2060 // if any declaration of an entity has an alignment-specifier, 2061 // every defining declaration of that entity shall specify an 2062 // equivalent alignment. 2063 // C11 6.7.5/7: 2064 // If the definition of an object does not have an alignment 2065 // specifier, any other declaration of that object shall also 2066 // have no alignment specifier. 2067 S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition) 2068 << AA->isC11(); 2069 S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration) 2070 << AA->isC11(); 2071 NewAttributes.erase(NewAttributes.begin() + I); 2072 --E; 2073 continue; 2074 } 2075 } 2076 2077 S.Diag(NewAttribute->getLocation(), 2078 diag::warn_attribute_precede_definition); 2079 S.Diag(Def->getLocation(), diag::note_previous_definition); 2080 NewAttributes.erase(NewAttributes.begin() + I); 2081 --E; 2082 } 2083 } 2084 2085 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one. 2086 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old, 2087 AvailabilityMergeKind AMK) { 2088 if (!Old->hasAttrs() && !New->hasAttrs()) 2089 return; 2090 2091 // attributes declared post-definition are currently ignored 2092 checkNewAttributesAfterDef(*this, New, Old); 2093 2094 if (!Old->hasAttrs()) 2095 return; 2096 2097 bool foundAny = New->hasAttrs(); 2098 2099 // Ensure that any moving of objects within the allocated map is done before 2100 // we process them. 2101 if (!foundAny) New->setAttrs(AttrVec()); 2102 2103 for (specific_attr_iterator<InheritableAttr> 2104 i = Old->specific_attr_begin<InheritableAttr>(), 2105 e = Old->specific_attr_end<InheritableAttr>(); 2106 i != e; ++i) { 2107 bool Override = false; 2108 // Ignore deprecated/unavailable/availability attributes if requested. 2109 if (isa<DeprecatedAttr>(*i) || 2110 isa<UnavailableAttr>(*i) || 2111 isa<AvailabilityAttr>(*i)) { 2112 switch (AMK) { 2113 case AMK_None: 2114 continue; 2115 2116 case AMK_Redeclaration: 2117 break; 2118 2119 case AMK_Override: 2120 Override = true; 2121 break; 2122 } 2123 } 2124 2125 if (mergeDeclAttribute(*this, New, *i, Override)) 2126 foundAny = true; 2127 } 2128 2129 if (mergeAlignedAttrs(*this, New, Old)) 2130 foundAny = true; 2131 2132 if (!foundAny) New->dropAttrs(); 2133 } 2134 2135 /// mergeParamDeclAttributes - Copy attributes from the old parameter 2136 /// to the new one. 2137 static void mergeParamDeclAttributes(ParmVarDecl *newDecl, 2138 const ParmVarDecl *oldDecl, 2139 Sema &S) { 2140 // C++11 [dcl.attr.depend]p2: 2141 // The first declaration of a function shall specify the 2142 // carries_dependency attribute for its declarator-id if any declaration 2143 // of the function specifies the carries_dependency attribute. 2144 if (newDecl->hasAttr<CarriesDependencyAttr>() && 2145 !oldDecl->hasAttr<CarriesDependencyAttr>()) { 2146 S.Diag(newDecl->getAttr<CarriesDependencyAttr>()->getLocation(), 2147 diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/; 2148 // Find the first declaration of the parameter. 2149 // FIXME: Should we build redeclaration chains for function parameters? 2150 const FunctionDecl *FirstFD = 2151 cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDeclaration(); 2152 const ParmVarDecl *FirstVD = 2153 FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex()); 2154 S.Diag(FirstVD->getLocation(), 2155 diag::note_carries_dependency_missing_first_decl) << 1/*Param*/; 2156 } 2157 2158 if (!oldDecl->hasAttrs()) 2159 return; 2160 2161 bool foundAny = newDecl->hasAttrs(); 2162 2163 // Ensure that any moving of objects within the allocated map is 2164 // done before we process them. 2165 if (!foundAny) newDecl->setAttrs(AttrVec()); 2166 2167 for (specific_attr_iterator<InheritableParamAttr> 2168 i = oldDecl->specific_attr_begin<InheritableParamAttr>(), 2169 e = oldDecl->specific_attr_end<InheritableParamAttr>(); i != e; ++i) { 2170 if (!DeclHasAttr(newDecl, *i)) { 2171 InheritableAttr *newAttr = 2172 cast<InheritableParamAttr>((*i)->clone(S.Context)); 2173 newAttr->setInherited(true); 2174 newDecl->addAttr(newAttr); 2175 foundAny = true; 2176 } 2177 } 2178 2179 if (!foundAny) newDecl->dropAttrs(); 2180 } 2181 2182 namespace { 2183 2184 /// Used in MergeFunctionDecl to keep track of function parameters in 2185 /// C. 2186 struct GNUCompatibleParamWarning { 2187 ParmVarDecl *OldParm; 2188 ParmVarDecl *NewParm; 2189 QualType PromotedType; 2190 }; 2191 2192 } 2193 2194 /// getSpecialMember - get the special member enum for a method. 2195 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) { 2196 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) { 2197 if (Ctor->isDefaultConstructor()) 2198 return Sema::CXXDefaultConstructor; 2199 2200 if (Ctor->isCopyConstructor()) 2201 return Sema::CXXCopyConstructor; 2202 2203 if (Ctor->isMoveConstructor()) 2204 return Sema::CXXMoveConstructor; 2205 } else if (isa<CXXDestructorDecl>(MD)) { 2206 return Sema::CXXDestructor; 2207 } else if (MD->isCopyAssignmentOperator()) { 2208 return Sema::CXXCopyAssignment; 2209 } else if (MD->isMoveAssignmentOperator()) { 2210 return Sema::CXXMoveAssignment; 2211 } 2212 2213 return Sema::CXXInvalid; 2214 } 2215 2216 /// canRedefineFunction - checks if a function can be redefined. Currently, 2217 /// only extern inline functions can be redefined, and even then only in 2218 /// GNU89 mode. 2219 static bool canRedefineFunction(const FunctionDecl *FD, 2220 const LangOptions& LangOpts) { 2221 return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) && 2222 !LangOpts.CPlusPlus && 2223 FD->isInlineSpecified() && 2224 FD->getStorageClass() == SC_Extern); 2225 } 2226 2227 /// Is the given calling convention the ABI default for the given 2228 /// declaration? 2229 static bool isABIDefaultCC(Sema &S, CallingConv CC, FunctionDecl *D) { 2230 CallingConv ABIDefaultCC; 2231 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance()) { 2232 ABIDefaultCC = S.Context.getDefaultCXXMethodCallConv(D->isVariadic()); 2233 } else { 2234 // Free C function or a static method. 2235 ABIDefaultCC = (S.Context.getLangOpts().MRTD ? CC_X86StdCall : CC_C); 2236 } 2237 return ABIDefaultCC == CC; 2238 } 2239 2240 template <typename T> 2241 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) { 2242 const DeclContext *DC = Old->getDeclContext(); 2243 if (DC->isRecord()) 2244 return false; 2245 2246 LanguageLinkage OldLinkage = Old->getLanguageLinkage(); 2247 if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext()) 2248 return true; 2249 if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext()) 2250 return true; 2251 return false; 2252 } 2253 2254 /// MergeFunctionDecl - We just parsed a function 'New' from 2255 /// declarator D which has the same name and scope as a previous 2256 /// declaration 'Old'. Figure out how to resolve this situation, 2257 /// merging decls or emitting diagnostics as appropriate. 2258 /// 2259 /// In C++, New and Old must be declarations that are not 2260 /// overloaded. Use IsOverload to determine whether New and Old are 2261 /// overloaded, and to select the Old declaration that New should be 2262 /// merged with. 2263 /// 2264 /// Returns true if there was an error, false otherwise. 2265 bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, Scope *S) { 2266 // Verify the old decl was also a function. 2267 FunctionDecl *Old = 0; 2268 if (FunctionTemplateDecl *OldFunctionTemplate 2269 = dyn_cast<FunctionTemplateDecl>(OldD)) 2270 Old = OldFunctionTemplate->getTemplatedDecl(); 2271 else 2272 Old = dyn_cast<FunctionDecl>(OldD); 2273 if (!Old) { 2274 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) { 2275 if (New->getFriendObjectKind()) { 2276 Diag(New->getLocation(), diag::err_using_decl_friend); 2277 Diag(Shadow->getTargetDecl()->getLocation(), 2278 diag::note_using_decl_target); 2279 Diag(Shadow->getUsingDecl()->getLocation(), 2280 diag::note_using_decl) << 0; 2281 return true; 2282 } 2283 2284 Diag(New->getLocation(), diag::err_using_decl_conflict_reverse); 2285 Diag(Shadow->getTargetDecl()->getLocation(), 2286 diag::note_using_decl_target); 2287 Diag(Shadow->getUsingDecl()->getLocation(), 2288 diag::note_using_decl) << 0; 2289 return true; 2290 } 2291 2292 Diag(New->getLocation(), diag::err_redefinition_different_kind) 2293 << New->getDeclName(); 2294 Diag(OldD->getLocation(), diag::note_previous_definition); 2295 return true; 2296 } 2297 2298 // Determine whether the previous declaration was a definition, 2299 // implicit declaration, or a declaration. 2300 diag::kind PrevDiag; 2301 if (Old->isThisDeclarationADefinition()) 2302 PrevDiag = diag::note_previous_definition; 2303 else if (Old->isImplicit()) 2304 PrevDiag = diag::note_previous_implicit_declaration; 2305 else 2306 PrevDiag = diag::note_previous_declaration; 2307 2308 QualType OldQType = Context.getCanonicalType(Old->getType()); 2309 QualType NewQType = Context.getCanonicalType(New->getType()); 2310 2311 // Don't complain about this if we're in GNU89 mode and the old function 2312 // is an extern inline function. 2313 // Don't complain about specializations. They are not supposed to have 2314 // storage classes. 2315 if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) && 2316 New->getStorageClass() == SC_Static && 2317 isExternalLinkage(Old->getLinkage()) && 2318 !New->getTemplateSpecializationInfo() && 2319 !canRedefineFunction(Old, getLangOpts())) { 2320 if (getLangOpts().MicrosoftExt) { 2321 Diag(New->getLocation(), diag::warn_static_non_static) << New; 2322 Diag(Old->getLocation(), PrevDiag); 2323 } else { 2324 Diag(New->getLocation(), diag::err_static_non_static) << New; 2325 Diag(Old->getLocation(), PrevDiag); 2326 return true; 2327 } 2328 } 2329 2330 // If a function is first declared with a calling convention, but is 2331 // later declared or defined without one, the second decl assumes the 2332 // calling convention of the first. 2333 // 2334 // It's OK if a function is first declared without a calling convention, 2335 // but is later declared or defined with the default calling convention. 2336 // 2337 // For the new decl, we have to look at the NON-canonical type to tell the 2338 // difference between a function that really doesn't have a calling 2339 // convention and one that is declared cdecl. That's because in 2340 // canonicalization (see ASTContext.cpp), cdecl is canonicalized away 2341 // because it is the default calling convention. 2342 // 2343 // Note also that we DO NOT return at this point, because we still have 2344 // other tests to run. 2345 const FunctionType *OldType = cast<FunctionType>(OldQType); 2346 const FunctionType *NewType = New->getType()->getAs<FunctionType>(); 2347 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); 2348 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); 2349 bool RequiresAdjustment = false; 2350 if (OldTypeInfo.getCC() == NewTypeInfo.getCC()) { 2351 // Fast path: nothing to do. 2352 2353 // Inherit the CC from the previous declaration if it was specified 2354 // there but not here. 2355 } else if (NewTypeInfo.getCC() == CC_Default) { 2356 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC()); 2357 RequiresAdjustment = true; 2358 2359 // Don't complain about mismatches when the default CC is 2360 // effectively the same as the explict one. Only Old decl contains correct 2361 // information about storage class of CXXMethod. 2362 } else if (OldTypeInfo.getCC() == CC_Default && 2363 isABIDefaultCC(*this, NewTypeInfo.getCC(), Old)) { 2364 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC()); 2365 RequiresAdjustment = true; 2366 2367 } else if (!Context.isSameCallConv(OldTypeInfo.getCC(), 2368 NewTypeInfo.getCC())) { 2369 // Calling conventions really aren't compatible, so complain. 2370 Diag(New->getLocation(), diag::err_cconv_change) 2371 << FunctionType::getNameForCallConv(NewTypeInfo.getCC()) 2372 << (OldTypeInfo.getCC() == CC_Default) 2373 << (OldTypeInfo.getCC() == CC_Default ? "" : 2374 FunctionType::getNameForCallConv(OldTypeInfo.getCC())); 2375 Diag(Old->getLocation(), diag::note_previous_declaration); 2376 return true; 2377 } 2378 2379 // FIXME: diagnose the other way around? 2380 if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) { 2381 NewTypeInfo = NewTypeInfo.withNoReturn(true); 2382 RequiresAdjustment = true; 2383 } 2384 2385 // Merge regparm attribute. 2386 if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() || 2387 OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) { 2388 if (NewTypeInfo.getHasRegParm()) { 2389 Diag(New->getLocation(), diag::err_regparm_mismatch) 2390 << NewType->getRegParmType() 2391 << OldType->getRegParmType(); 2392 Diag(Old->getLocation(), diag::note_previous_declaration); 2393 return true; 2394 } 2395 2396 NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm()); 2397 RequiresAdjustment = true; 2398 } 2399 2400 // Merge ns_returns_retained attribute. 2401 if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) { 2402 if (NewTypeInfo.getProducesResult()) { 2403 Diag(New->getLocation(), diag::err_returns_retained_mismatch); 2404 Diag(Old->getLocation(), diag::note_previous_declaration); 2405 return true; 2406 } 2407 2408 NewTypeInfo = NewTypeInfo.withProducesResult(true); 2409 RequiresAdjustment = true; 2410 } 2411 2412 if (RequiresAdjustment) { 2413 NewType = Context.adjustFunctionType(NewType, NewTypeInfo); 2414 New->setType(QualType(NewType, 0)); 2415 NewQType = Context.getCanonicalType(New->getType()); 2416 } 2417 2418 // If this redeclaration makes the function inline, we may need to add it to 2419 // UndefinedButUsed. 2420 if (!Old->isInlined() && New->isInlined() && 2421 !New->hasAttr<GNUInlineAttr>() && 2422 (getLangOpts().CPlusPlus || !getLangOpts().GNUInline) && 2423 Old->isUsed(false) && 2424 !Old->isDefined() && !New->isThisDeclarationADefinition()) 2425 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(), 2426 SourceLocation())); 2427 2428 // If this redeclaration makes it newly gnu_inline, we don't want to warn 2429 // about it. 2430 if (New->hasAttr<GNUInlineAttr>() && 2431 Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) { 2432 UndefinedButUsed.erase(Old->getCanonicalDecl()); 2433 } 2434 2435 if (getLangOpts().CPlusPlus) { 2436 // (C++98 13.1p2): 2437 // Certain function declarations cannot be overloaded: 2438 // -- Function declarations that differ only in the return type 2439 // cannot be overloaded. 2440 2441 // Go back to the type source info to compare the declared return types, 2442 // per C++1y [dcl.type.auto]p??: 2443 // Redeclarations or specializations of a function or function template 2444 // with a declared return type that uses a placeholder type shall also 2445 // use that placeholder, not a deduced type. 2446 QualType OldDeclaredReturnType = (Old->getTypeSourceInfo() 2447 ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>() 2448 : OldType)->getResultType(); 2449 QualType NewDeclaredReturnType = (New->getTypeSourceInfo() 2450 ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>() 2451 : NewType)->getResultType(); 2452 QualType ResQT; 2453 if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType)) { 2454 if (NewDeclaredReturnType->isObjCObjectPointerType() && 2455 OldDeclaredReturnType->isObjCObjectPointerType()) 2456 ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType); 2457 if (ResQT.isNull()) { 2458 if (New->isCXXClassMember() && New->isOutOfLine()) 2459 Diag(New->getLocation(), 2460 diag::err_member_def_does_not_match_ret_type) << New; 2461 else 2462 Diag(New->getLocation(), diag::err_ovl_diff_return_type); 2463 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); 2464 return true; 2465 } 2466 else 2467 NewQType = ResQT; 2468 } 2469 2470 QualType OldReturnType = OldType->getResultType(); 2471 QualType NewReturnType = cast<FunctionType>(NewQType)->getResultType(); 2472 if (OldReturnType != NewReturnType) { 2473 // If this function has a deduced return type and has already been 2474 // defined, copy the deduced value from the old declaration. 2475 AutoType *OldAT = Old->getResultType()->getContainedAutoType(); 2476 if (OldAT && OldAT->isDeduced()) { 2477 New->setType(SubstAutoType(New->getType(), OldAT->getDeducedType())); 2478 NewQType = Context.getCanonicalType( 2479 SubstAutoType(NewQType, OldAT->getDeducedType())); 2480 } 2481 } 2482 2483 const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old); 2484 CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New); 2485 if (OldMethod && NewMethod) { 2486 // Preserve triviality. 2487 NewMethod->setTrivial(OldMethod->isTrivial()); 2488 2489 // MSVC allows explicit template specialization at class scope: 2490 // 2 CXMethodDecls referring to the same function will be injected. 2491 // We don't want a redeclartion error. 2492 bool IsClassScopeExplicitSpecialization = 2493 OldMethod->isFunctionTemplateSpecialization() && 2494 NewMethod->isFunctionTemplateSpecialization(); 2495 bool isFriend = NewMethod->getFriendObjectKind(); 2496 2497 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() && 2498 !IsClassScopeExplicitSpecialization) { 2499 // -- Member function declarations with the same name and the 2500 // same parameter types cannot be overloaded if any of them 2501 // is a static member function declaration. 2502 if (OldMethod->isStatic() || NewMethod->isStatic()) { 2503 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member); 2504 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); 2505 return true; 2506 } 2507 2508 // C++ [class.mem]p1: 2509 // [...] A member shall not be declared twice in the 2510 // member-specification, except that a nested class or member 2511 // class template can be declared and then later defined. 2512 if (ActiveTemplateInstantiations.empty()) { 2513 unsigned NewDiag; 2514 if (isa<CXXConstructorDecl>(OldMethod)) 2515 NewDiag = diag::err_constructor_redeclared; 2516 else if (isa<CXXDestructorDecl>(NewMethod)) 2517 NewDiag = diag::err_destructor_redeclared; 2518 else if (isa<CXXConversionDecl>(NewMethod)) 2519 NewDiag = diag::err_conv_function_redeclared; 2520 else 2521 NewDiag = diag::err_member_redeclared; 2522 2523 Diag(New->getLocation(), NewDiag); 2524 } else { 2525 Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation) 2526 << New << New->getType(); 2527 } 2528 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); 2529 2530 // Complain if this is an explicit declaration of a special 2531 // member that was initially declared implicitly. 2532 // 2533 // As an exception, it's okay to befriend such methods in order 2534 // to permit the implicit constructor/destructor/operator calls. 2535 } else if (OldMethod->isImplicit()) { 2536 if (isFriend) { 2537 NewMethod->setImplicit(); 2538 } else { 2539 Diag(NewMethod->getLocation(), 2540 diag::err_definition_of_implicitly_declared_member) 2541 << New << getSpecialMember(OldMethod); 2542 return true; 2543 } 2544 } else if (OldMethod->isExplicitlyDefaulted() && !isFriend) { 2545 Diag(NewMethod->getLocation(), 2546 diag::err_definition_of_explicitly_defaulted_member) 2547 << getSpecialMember(OldMethod); 2548 return true; 2549 } 2550 } 2551 2552 // C++11 [dcl.attr.noreturn]p1: 2553 // The first declaration of a function shall specify the noreturn 2554 // attribute if any declaration of that function specifies the noreturn 2555 // attribute. 2556 if (New->hasAttr<CXX11NoReturnAttr>() && 2557 !Old->hasAttr<CXX11NoReturnAttr>()) { 2558 Diag(New->getAttr<CXX11NoReturnAttr>()->getLocation(), 2559 diag::err_noreturn_missing_on_first_decl); 2560 Diag(Old->getFirstDeclaration()->getLocation(), 2561 diag::note_noreturn_missing_first_decl); 2562 } 2563 2564 // C++11 [dcl.attr.depend]p2: 2565 // The first declaration of a function shall specify the 2566 // carries_dependency attribute for its declarator-id if any declaration 2567 // of the function specifies the carries_dependency attribute. 2568 if (New->hasAttr<CarriesDependencyAttr>() && 2569 !Old->hasAttr<CarriesDependencyAttr>()) { 2570 Diag(New->getAttr<CarriesDependencyAttr>()->getLocation(), 2571 diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/; 2572 Diag(Old->getFirstDeclaration()->getLocation(), 2573 diag::note_carries_dependency_missing_first_decl) << 0/*Function*/; 2574 } 2575 2576 // (C++98 8.3.5p3): 2577 // All declarations for a function shall agree exactly in both the 2578 // return type and the parameter-type-list. 2579 // We also want to respect all the extended bits except noreturn. 2580 2581 // noreturn should now match unless the old type info didn't have it. 2582 QualType OldQTypeForComparison = OldQType; 2583 if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) { 2584 assert(OldQType == QualType(OldType, 0)); 2585 const FunctionType *OldTypeForComparison 2586 = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true)); 2587 OldQTypeForComparison = QualType(OldTypeForComparison, 0); 2588 assert(OldQTypeForComparison.isCanonical()); 2589 } 2590 2591 if (haveIncompatibleLanguageLinkages(Old, New)) { 2592 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 2593 Diag(Old->getLocation(), PrevDiag); 2594 return true; 2595 } 2596 2597 if (OldQTypeForComparison == NewQType) 2598 return MergeCompatibleFunctionDecls(New, Old, S); 2599 2600 // Fall through for conflicting redeclarations and redefinitions. 2601 } 2602 2603 // C: Function types need to be compatible, not identical. This handles 2604 // duplicate function decls like "void f(int); void f(enum X);" properly. 2605 if (!getLangOpts().CPlusPlus && 2606 Context.typesAreCompatible(OldQType, NewQType)) { 2607 const FunctionType *OldFuncType = OldQType->getAs<FunctionType>(); 2608 const FunctionType *NewFuncType = NewQType->getAs<FunctionType>(); 2609 const FunctionProtoType *OldProto = 0; 2610 if (isa<FunctionNoProtoType>(NewFuncType) && 2611 (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) { 2612 // The old declaration provided a function prototype, but the 2613 // new declaration does not. Merge in the prototype. 2614 assert(!OldProto->hasExceptionSpec() && "Exception spec in C"); 2615 SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(), 2616 OldProto->arg_type_end()); 2617 NewQType = Context.getFunctionType(NewFuncType->getResultType(), 2618 ParamTypes, 2619 OldProto->getExtProtoInfo()); 2620 New->setType(NewQType); 2621 New->setHasInheritedPrototype(); 2622 2623 // Synthesize a parameter for each argument type. 2624 SmallVector<ParmVarDecl*, 16> Params; 2625 for (FunctionProtoType::arg_type_iterator 2626 ParamType = OldProto->arg_type_begin(), 2627 ParamEnd = OldProto->arg_type_end(); 2628 ParamType != ParamEnd; ++ParamType) { 2629 ParmVarDecl *Param = ParmVarDecl::Create(Context, New, 2630 SourceLocation(), 2631 SourceLocation(), 0, 2632 *ParamType, /*TInfo=*/0, 2633 SC_None, 2634 0); 2635 Param->setScopeInfo(0, Params.size()); 2636 Param->setImplicit(); 2637 Params.push_back(Param); 2638 } 2639 2640 New->setParams(Params); 2641 } 2642 2643 return MergeCompatibleFunctionDecls(New, Old, S); 2644 } 2645 2646 // GNU C permits a K&R definition to follow a prototype declaration 2647 // if the declared types of the parameters in the K&R definition 2648 // match the types in the prototype declaration, even when the 2649 // promoted types of the parameters from the K&R definition differ 2650 // from the types in the prototype. GCC then keeps the types from 2651 // the prototype. 2652 // 2653 // If a variadic prototype is followed by a non-variadic K&R definition, 2654 // the K&R definition becomes variadic. This is sort of an edge case, but 2655 // it's legal per the standard depending on how you read C99 6.7.5.3p15 and 2656 // C99 6.9.1p8. 2657 if (!getLangOpts().CPlusPlus && 2658 Old->hasPrototype() && !New->hasPrototype() && 2659 New->getType()->getAs<FunctionProtoType>() && 2660 Old->getNumParams() == New->getNumParams()) { 2661 SmallVector<QualType, 16> ArgTypes; 2662 SmallVector<GNUCompatibleParamWarning, 16> Warnings; 2663 const FunctionProtoType *OldProto 2664 = Old->getType()->getAs<FunctionProtoType>(); 2665 const FunctionProtoType *NewProto 2666 = New->getType()->getAs<FunctionProtoType>(); 2667 2668 // Determine whether this is the GNU C extension. 2669 QualType MergedReturn = Context.mergeTypes(OldProto->getResultType(), 2670 NewProto->getResultType()); 2671 bool LooseCompatible = !MergedReturn.isNull(); 2672 for (unsigned Idx = 0, End = Old->getNumParams(); 2673 LooseCompatible && Idx != End; ++Idx) { 2674 ParmVarDecl *OldParm = Old->getParamDecl(Idx); 2675 ParmVarDecl *NewParm = New->getParamDecl(Idx); 2676 if (Context.typesAreCompatible(OldParm->getType(), 2677 NewProto->getArgType(Idx))) { 2678 ArgTypes.push_back(NewParm->getType()); 2679 } else if (Context.typesAreCompatible(OldParm->getType(), 2680 NewParm->getType(), 2681 /*CompareUnqualified=*/true)) { 2682 GNUCompatibleParamWarning Warn 2683 = { OldParm, NewParm, NewProto->getArgType(Idx) }; 2684 Warnings.push_back(Warn); 2685 ArgTypes.push_back(NewParm->getType()); 2686 } else 2687 LooseCompatible = false; 2688 } 2689 2690 if (LooseCompatible) { 2691 for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) { 2692 Diag(Warnings[Warn].NewParm->getLocation(), 2693 diag::ext_param_promoted_not_compatible_with_prototype) 2694 << Warnings[Warn].PromotedType 2695 << Warnings[Warn].OldParm->getType(); 2696 if (Warnings[Warn].OldParm->getLocation().isValid()) 2697 Diag(Warnings[Warn].OldParm->getLocation(), 2698 diag::note_previous_declaration); 2699 } 2700 2701 New->setType(Context.getFunctionType(MergedReturn, ArgTypes, 2702 OldProto->getExtProtoInfo())); 2703 return MergeCompatibleFunctionDecls(New, Old, S); 2704 } 2705 2706 // Fall through to diagnose conflicting types. 2707 } 2708 2709 // A function that has already been declared has been redeclared or 2710 // defined with a different type; show an appropriate diagnostic. 2711 2712 // If the previous declaration was an implicitly-generated builtin 2713 // declaration, then at the very least we should use a specialized note. 2714 unsigned BuiltinID; 2715 if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) { 2716 // If it's actually a library-defined builtin function like 'malloc' 2717 // or 'printf', just warn about the incompatible redeclaration. 2718 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { 2719 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New; 2720 Diag(Old->getLocation(), diag::note_previous_builtin_declaration) 2721 << Old << Old->getType(); 2722 2723 // If this is a global redeclaration, just forget hereafter 2724 // about the "builtin-ness" of the function. 2725 // 2726 // Doing this for local extern declarations is problematic. If 2727 // the builtin declaration remains visible, a second invalid 2728 // local declaration will produce a hard error; if it doesn't 2729 // remain visible, a single bogus local redeclaration (which is 2730 // actually only a warning) could break all the downstream code. 2731 if (!New->getDeclContext()->isFunctionOrMethod()) 2732 New->getIdentifier()->setBuiltinID(Builtin::NotBuiltin); 2733 2734 return false; 2735 } 2736 2737 PrevDiag = diag::note_previous_builtin_declaration; 2738 } 2739 2740 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName(); 2741 Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); 2742 return true; 2743 } 2744 2745 /// \brief Completes the merge of two function declarations that are 2746 /// known to be compatible. 2747 /// 2748 /// This routine handles the merging of attributes and other 2749 /// properties of function declarations form the old declaration to 2750 /// the new declaration, once we know that New is in fact a 2751 /// redeclaration of Old. 2752 /// 2753 /// \returns false 2754 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, 2755 Scope *S) { 2756 // Merge the attributes 2757 mergeDeclAttributes(New, Old); 2758 2759 // Merge "pure" flag. 2760 if (Old->isPure()) 2761 New->setPure(); 2762 2763 // Merge "used" flag. 2764 if (Old->isUsed(false)) 2765 New->setUsed(); 2766 2767 // Merge attributes from the parameters. These can mismatch with K&R 2768 // declarations. 2769 if (New->getNumParams() == Old->getNumParams()) 2770 for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) 2771 mergeParamDeclAttributes(New->getParamDecl(i), Old->getParamDecl(i), 2772 *this); 2773 2774 if (getLangOpts().CPlusPlus) 2775 return MergeCXXFunctionDecl(New, Old, S); 2776 2777 // Merge the function types so the we get the composite types for the return 2778 // and argument types. 2779 QualType Merged = Context.mergeTypes(Old->getType(), New->getType()); 2780 if (!Merged.isNull()) 2781 New->setType(Merged); 2782 2783 return false; 2784 } 2785 2786 2787 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod, 2788 ObjCMethodDecl *oldMethod) { 2789 2790 // Merge the attributes, including deprecated/unavailable 2791 AvailabilityMergeKind MergeKind = 2792 isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration 2793 : AMK_Override; 2794 mergeDeclAttributes(newMethod, oldMethod, MergeKind); 2795 2796 // Merge attributes from the parameters. 2797 ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(), 2798 oe = oldMethod->param_end(); 2799 for (ObjCMethodDecl::param_iterator 2800 ni = newMethod->param_begin(), ne = newMethod->param_end(); 2801 ni != ne && oi != oe; ++ni, ++oi) 2802 mergeParamDeclAttributes(*ni, *oi, *this); 2803 2804 CheckObjCMethodOverride(newMethod, oldMethod); 2805 } 2806 2807 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and 2808 /// scope as a previous declaration 'Old'. Figure out how to merge their types, 2809 /// emitting diagnostics as appropriate. 2810 /// 2811 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back 2812 /// to here in AddInitializerToDecl. We can't check them before the initializer 2813 /// is attached. 2814 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old, bool OldWasHidden) { 2815 if (New->isInvalidDecl() || Old->isInvalidDecl()) 2816 return; 2817 2818 QualType MergedT; 2819 if (getLangOpts().CPlusPlus) { 2820 if (New->getType()->isUndeducedType()) { 2821 // We don't know what the new type is until the initializer is attached. 2822 return; 2823 } else if (Context.hasSameType(New->getType(), Old->getType())) { 2824 // These could still be something that needs exception specs checked. 2825 return MergeVarDeclExceptionSpecs(New, Old); 2826 } 2827 // C++ [basic.link]p10: 2828 // [...] the types specified by all declarations referring to a given 2829 // object or function shall be identical, except that declarations for an 2830 // array object can specify array types that differ by the presence or 2831 // absence of a major array bound (8.3.4). 2832 else if (Old->getType()->isIncompleteArrayType() && 2833 New->getType()->isArrayType()) { 2834 const ArrayType *OldArray = Context.getAsArrayType(Old->getType()); 2835 const ArrayType *NewArray = Context.getAsArrayType(New->getType()); 2836 if (Context.hasSameType(OldArray->getElementType(), 2837 NewArray->getElementType())) 2838 MergedT = New->getType(); 2839 } else if (Old->getType()->isArrayType() && 2840 New->getType()->isIncompleteArrayType()) { 2841 const ArrayType *OldArray = Context.getAsArrayType(Old->getType()); 2842 const ArrayType *NewArray = Context.getAsArrayType(New->getType()); 2843 if (Context.hasSameType(OldArray->getElementType(), 2844 NewArray->getElementType())) 2845 MergedT = Old->getType(); 2846 } else if (New->getType()->isObjCObjectPointerType() 2847 && Old->getType()->isObjCObjectPointerType()) { 2848 MergedT = Context.mergeObjCGCQualifiers(New->getType(), 2849 Old->getType()); 2850 } 2851 } else { 2852 MergedT = Context.mergeTypes(New->getType(), Old->getType()); 2853 } 2854 if (MergedT.isNull()) { 2855 Diag(New->getLocation(), diag::err_redefinition_different_type) 2856 << New->getDeclName() << New->getType() << Old->getType(); 2857 Diag(Old->getLocation(), diag::note_previous_definition); 2858 return New->setInvalidDecl(); 2859 } 2860 2861 // Don't actually update the type on the new declaration if the old 2862 // declaration was a extern declaration in a different scope. 2863 if (!OldWasHidden) 2864 New->setType(MergedT); 2865 } 2866 2867 /// MergeVarDecl - We just parsed a variable 'New' which has the same name 2868 /// and scope as a previous declaration 'Old'. Figure out how to resolve this 2869 /// situation, merging decls or emitting diagnostics as appropriate. 2870 /// 2871 /// Tentative definition rules (C99 6.9.2p2) are checked by 2872 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative 2873 /// definitions here, since the initializer hasn't been attached. 2874 /// 2875 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous, 2876 bool PreviousWasHidden) { 2877 // If the new decl is already invalid, don't do any other checking. 2878 if (New->isInvalidDecl()) 2879 return; 2880 2881 // Verify the old decl was also a variable. 2882 VarDecl *Old = 0; 2883 if (!Previous.isSingleResult() || 2884 !(Old = dyn_cast<VarDecl>(Previous.getFoundDecl()))) { 2885 Diag(New->getLocation(), diag::err_redefinition_different_kind) 2886 << New->getDeclName(); 2887 Diag(Previous.getRepresentativeDecl()->getLocation(), 2888 diag::note_previous_definition); 2889 return New->setInvalidDecl(); 2890 } 2891 2892 if (!shouldLinkPossiblyHiddenDecl(Old, New)) 2893 return; 2894 2895 // C++ [class.mem]p1: 2896 // A member shall not be declared twice in the member-specification [...] 2897 // 2898 // Here, we need only consider static data members. 2899 if (Old->isStaticDataMember() && !New->isOutOfLine()) { 2900 Diag(New->getLocation(), diag::err_duplicate_member) 2901 << New->getIdentifier(); 2902 Diag(Old->getLocation(), diag::note_previous_declaration); 2903 New->setInvalidDecl(); 2904 } 2905 2906 mergeDeclAttributes(New, Old); 2907 // Warn if an already-declared variable is made a weak_import in a subsequent 2908 // declaration 2909 if (New->getAttr<WeakImportAttr>() && 2910 Old->getStorageClass() == SC_None && 2911 !Old->getAttr<WeakImportAttr>()) { 2912 Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName(); 2913 Diag(Old->getLocation(), diag::note_previous_definition); 2914 // Remove weak_import attribute on new declaration. 2915 New->dropAttr<WeakImportAttr>(); 2916 } 2917 2918 // Merge the types. 2919 MergeVarDeclTypes(New, Old, PreviousWasHidden); 2920 if (New->isInvalidDecl()) 2921 return; 2922 2923 // [dcl.stc]p8: Check if we have a non-static decl followed by a static. 2924 if (New->getStorageClass() == SC_Static && 2925 !New->isStaticDataMember() && 2926 isExternalLinkage(Old->getLinkage())) { 2927 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName(); 2928 Diag(Old->getLocation(), diag::note_previous_definition); 2929 return New->setInvalidDecl(); 2930 } 2931 // C99 6.2.2p4: 2932 // For an identifier declared with the storage-class specifier 2933 // extern in a scope in which a prior declaration of that 2934 // identifier is visible,23) if the prior declaration specifies 2935 // internal or external linkage, the linkage of the identifier at 2936 // the later declaration is the same as the linkage specified at 2937 // the prior declaration. If no prior declaration is visible, or 2938 // if the prior declaration specifies no linkage, then the 2939 // identifier has external linkage. 2940 if (New->hasExternalStorage() && Old->hasLinkage()) 2941 /* Okay */; 2942 else if (New->getCanonicalDecl()->getStorageClass() != SC_Static && 2943 !New->isStaticDataMember() && 2944 Old->getCanonicalDecl()->getStorageClass() == SC_Static) { 2945 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName(); 2946 Diag(Old->getLocation(), diag::note_previous_definition); 2947 return New->setInvalidDecl(); 2948 } 2949 2950 // Check if extern is followed by non-extern and vice-versa. 2951 if (New->hasExternalStorage() && 2952 !Old->hasLinkage() && Old->isLocalVarDecl()) { 2953 Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName(); 2954 Diag(Old->getLocation(), diag::note_previous_definition); 2955 return New->setInvalidDecl(); 2956 } 2957 if (Old->hasLinkage() && New->isLocalVarDecl() && 2958 !New->hasExternalStorage()) { 2959 Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName(); 2960 Diag(Old->getLocation(), diag::note_previous_definition); 2961 return New->setInvalidDecl(); 2962 } 2963 2964 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup. 2965 2966 // FIXME: The test for external storage here seems wrong? We still 2967 // need to check for mismatches. 2968 if (!New->hasExternalStorage() && !New->isFileVarDecl() && 2969 // Don't complain about out-of-line definitions of static members. 2970 !(Old->getLexicalDeclContext()->isRecord() && 2971 !New->getLexicalDeclContext()->isRecord())) { 2972 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName(); 2973 Diag(Old->getLocation(), diag::note_previous_definition); 2974 return New->setInvalidDecl(); 2975 } 2976 2977 if (New->getTLSKind() != Old->getTLSKind()) { 2978 if (!Old->getTLSKind()) { 2979 Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName(); 2980 Diag(Old->getLocation(), diag::note_previous_declaration); 2981 } else if (!New->getTLSKind()) { 2982 Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName(); 2983 Diag(Old->getLocation(), diag::note_previous_declaration); 2984 } else { 2985 // Do not allow redeclaration to change the variable between requiring 2986 // static and dynamic initialization. 2987 // FIXME: GCC allows this, but uses the TLS keyword on the first 2988 // declaration to determine the kind. Do we need to be compatible here? 2989 Diag(New->getLocation(), diag::err_thread_thread_different_kind) 2990 << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic); 2991 Diag(Old->getLocation(), diag::note_previous_declaration); 2992 } 2993 } 2994 2995 // C++ doesn't have tentative definitions, so go right ahead and check here. 2996 const VarDecl *Def; 2997 if (getLangOpts().CPlusPlus && 2998 New->isThisDeclarationADefinition() == VarDecl::Definition && 2999 (Def = Old->getDefinition())) { 3000 Diag(New->getLocation(), diag::err_redefinition) 3001 << New->getDeclName(); 3002 Diag(Def->getLocation(), diag::note_previous_definition); 3003 New->setInvalidDecl(); 3004 return; 3005 } 3006 3007 if (haveIncompatibleLanguageLinkages(Old, New)) { 3008 Diag(New->getLocation(), diag::err_different_language_linkage) << New; 3009 Diag(Old->getLocation(), diag::note_previous_definition); 3010 New->setInvalidDecl(); 3011 return; 3012 } 3013 3014 // Merge "used" flag. 3015 if (Old->isUsed(false)) 3016 New->setUsed(); 3017 3018 // Keep a chain of previous declarations. 3019 New->setPreviousDeclaration(Old); 3020 3021 // Inherit access appropriately. 3022 New->setAccess(Old->getAccess()); 3023 } 3024 3025 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 3026 /// no declarator (e.g. "struct foo;") is parsed. 3027 Decl *Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, 3028 DeclSpec &DS) { 3029 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg()); 3030 } 3031 3032 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with 3033 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template 3034 /// parameters to cope with template friend declarations. 3035 Decl *Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, 3036 DeclSpec &DS, 3037 MultiTemplateParamsArg TemplateParams, 3038 bool IsExplicitInstantiation) { 3039 Decl *TagD = 0; 3040 TagDecl *Tag = 0; 3041 if (DS.getTypeSpecType() == DeclSpec::TST_class || 3042 DS.getTypeSpecType() == DeclSpec::TST_struct || 3043 DS.getTypeSpecType() == DeclSpec::TST_interface || 3044 DS.getTypeSpecType() == DeclSpec::TST_union || 3045 DS.getTypeSpecType() == DeclSpec::TST_enum) { 3046 TagD = DS.getRepAsDecl(); 3047 3048 if (!TagD) // We probably had an error 3049 return 0; 3050 3051 // Note that the above type specs guarantee that the 3052 // type rep is a Decl, whereas in many of the others 3053 // it's a Type. 3054 if (isa<TagDecl>(TagD)) 3055 Tag = cast<TagDecl>(TagD); 3056 else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD)) 3057 Tag = CTD->getTemplatedDecl(); 3058 } 3059 3060 if (Tag) { 3061 getASTContext().addUnnamedTag(Tag); 3062 Tag->setFreeStanding(); 3063 if (Tag->isInvalidDecl()) 3064 return Tag; 3065 } 3066 3067 if (unsigned TypeQuals = DS.getTypeQualifiers()) { 3068 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object 3069 // or incomplete types shall not be restrict-qualified." 3070 if (TypeQuals & DeclSpec::TQ_restrict) 3071 Diag(DS.getRestrictSpecLoc(), 3072 diag::err_typecheck_invalid_restrict_not_pointer_noarg) 3073 << DS.getSourceRange(); 3074 } 3075 3076 if (DS.isConstexprSpecified()) { 3077 // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations 3078 // and definitions of functions and variables. 3079 if (Tag) 3080 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag) 3081 << (DS.getTypeSpecType() == DeclSpec::TST_class ? 0 : 3082 DS.getTypeSpecType() == DeclSpec::TST_struct ? 1 : 3083 DS.getTypeSpecType() == DeclSpec::TST_interface ? 2 : 3084 DS.getTypeSpecType() == DeclSpec::TST_union ? 3 : 4); 3085 else 3086 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators); 3087 // Don't emit warnings after this error. 3088 return TagD; 3089 } 3090 3091 DiagnoseFunctionSpecifiers(DS); 3092 3093 if (DS.isFriendSpecified()) { 3094 // If we're dealing with a decl but not a TagDecl, assume that 3095 // whatever routines created it handled the friendship aspect. 3096 if (TagD && !Tag) 3097 return 0; 3098 return ActOnFriendTypeDecl(S, DS, TemplateParams); 3099 } 3100 3101 CXXScopeSpec &SS = DS.getTypeSpecScope(); 3102 bool IsExplicitSpecialization = 3103 !TemplateParams.empty() && TemplateParams.back()->size() == 0; 3104 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() && 3105 !IsExplicitInstantiation && !IsExplicitSpecialization) { 3106 // Per C++ [dcl.type.elab]p1, a class declaration cannot have a 3107 // nested-name-specifier unless it is an explicit instantiation 3108 // or an explicit specialization. 3109 // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either. 3110 Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier) 3111 << (DS.getTypeSpecType() == DeclSpec::TST_class ? 0 : 3112 DS.getTypeSpecType() == DeclSpec::TST_struct ? 1 : 3113 DS.getTypeSpecType() == DeclSpec::TST_interface ? 2 : 3114 DS.getTypeSpecType() == DeclSpec::TST_union ? 3 : 4) 3115 << SS.getRange(); 3116 return 0; 3117 } 3118 3119 // Track whether this decl-specifier declares anything. 3120 bool DeclaresAnything = true; 3121 3122 // Handle anonymous struct definitions. 3123 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) { 3124 if (!Record->getDeclName() && Record->isCompleteDefinition() && 3125 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) { 3126 if (getLangOpts().CPlusPlus || 3127 Record->getDeclContext()->isRecord()) 3128 return BuildAnonymousStructOrUnion(S, DS, AS, Record); 3129 3130 DeclaresAnything = false; 3131 } 3132 } 3133 3134 // Check for Microsoft C extension: anonymous struct member. 3135 if (getLangOpts().MicrosoftExt && !getLangOpts().CPlusPlus && 3136 CurContext->isRecord() && 3137 DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) { 3138 // Handle 2 kinds of anonymous struct: 3139 // struct STRUCT; 3140 // and 3141 // STRUCT_TYPE; <- where STRUCT_TYPE is a typedef struct. 3142 RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag); 3143 if ((Record && Record->getDeclName() && !Record->isCompleteDefinition()) || 3144 (DS.getTypeSpecType() == DeclSpec::TST_typename && 3145 DS.getRepAsType().get()->isStructureType())) { 3146 Diag(DS.getLocStart(), diag::ext_ms_anonymous_struct) 3147 << DS.getSourceRange(); 3148 return BuildMicrosoftCAnonymousStruct(S, DS, Record); 3149 } 3150 } 3151 3152 // Skip all the checks below if we have a type error. 3153 if (DS.getTypeSpecType() == DeclSpec::TST_error || 3154 (TagD && TagD->isInvalidDecl())) 3155 return TagD; 3156 3157 if (getLangOpts().CPlusPlus && 3158 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) 3159 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag)) 3160 if (Enum->enumerator_begin() == Enum->enumerator_end() && 3161 !Enum->getIdentifier() && !Enum->isInvalidDecl()) 3162 DeclaresAnything = false; 3163 3164 if (!DS.isMissingDeclaratorOk()) { 3165 // Customize diagnostic for a typedef missing a name. 3166 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) 3167 Diag(DS.getLocStart(), diag::ext_typedef_without_a_name) 3168 << DS.getSourceRange(); 3169 else 3170 DeclaresAnything = false; 3171 } 3172 3173 if (DS.isModulePrivateSpecified() && 3174 Tag && Tag->getDeclContext()->isFunctionOrMethod()) 3175 Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class) 3176 << Tag->getTagKind() 3177 << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc()); 3178 3179 ActOnDocumentableDecl(TagD); 3180 3181 // C 6.7/2: 3182 // A declaration [...] shall declare at least a declarator [...], a tag, 3183 // or the members of an enumeration. 3184 // C++ [dcl.dcl]p3: 3185 // [If there are no declarators], and except for the declaration of an 3186 // unnamed bit-field, the decl-specifier-seq shall introduce one or more 3187 // names into the program, or shall redeclare a name introduced by a 3188 // previous declaration. 3189 if (!DeclaresAnything) { 3190 // In C, we allow this as a (popular) extension / bug. Don't bother 3191 // producing further diagnostics for redundant qualifiers after this. 3192 Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange(); 3193 return TagD; 3194 } 3195 3196 // C++ [dcl.stc]p1: 3197 // If a storage-class-specifier appears in a decl-specifier-seq, [...] the 3198 // init-declarator-list of the declaration shall not be empty. 3199 // C++ [dcl.fct.spec]p1: 3200 // If a cv-qualifier appears in a decl-specifier-seq, the 3201 // init-declarator-list of the declaration shall not be empty. 3202 // 3203 // Spurious qualifiers here appear to be valid in C. 3204 unsigned DiagID = diag::warn_standalone_specifier; 3205 if (getLangOpts().CPlusPlus) 3206 DiagID = diag::ext_standalone_specifier; 3207 3208 // Note that a linkage-specification sets a storage class, but 3209 // 'extern "C" struct foo;' is actually valid and not theoretically 3210 // useless. 3211 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) 3212 if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef) 3213 Diag(DS.getStorageClassSpecLoc(), DiagID) 3214 << DeclSpec::getSpecifierName(SCS); 3215 3216 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 3217 Diag(DS.getThreadStorageClassSpecLoc(), DiagID) 3218 << DeclSpec::getSpecifierName(TSCS); 3219 if (DS.getTypeQualifiers()) { 3220 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 3221 Diag(DS.getConstSpecLoc(), DiagID) << "const"; 3222 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 3223 Diag(DS.getConstSpecLoc(), DiagID) << "volatile"; 3224 // Restrict is covered above. 3225 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 3226 Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic"; 3227 } 3228 3229 // Warn about ignored type attributes, for example: 3230 // __attribute__((aligned)) struct A; 3231 // Attributes should be placed after tag to apply to type declaration. 3232 if (!DS.getAttributes().empty()) { 3233 DeclSpec::TST TypeSpecType = DS.getTypeSpecType(); 3234 if (TypeSpecType == DeclSpec::TST_class || 3235 TypeSpecType == DeclSpec::TST_struct || 3236 TypeSpecType == DeclSpec::TST_interface || 3237 TypeSpecType == DeclSpec::TST_union || 3238 TypeSpecType == DeclSpec::TST_enum) { 3239 AttributeList* attrs = DS.getAttributes().getList(); 3240 while (attrs) { 3241 Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored) 3242 << attrs->getName() 3243 << (TypeSpecType == DeclSpec::TST_class ? 0 : 3244 TypeSpecType == DeclSpec::TST_struct ? 1 : 3245 TypeSpecType == DeclSpec::TST_union ? 2 : 3246 TypeSpecType == DeclSpec::TST_interface ? 3 : 4); 3247 attrs = attrs->getNext(); 3248 } 3249 } 3250 } 3251 3252 return TagD; 3253 } 3254 3255 /// We are trying to inject an anonymous member into the given scope; 3256 /// check if there's an existing declaration that can't be overloaded. 3257 /// 3258 /// \return true if this is a forbidden redeclaration 3259 static bool CheckAnonMemberRedeclaration(Sema &SemaRef, 3260 Scope *S, 3261 DeclContext *Owner, 3262 DeclarationName Name, 3263 SourceLocation NameLoc, 3264 unsigned diagnostic) { 3265 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName, 3266 Sema::ForRedeclaration); 3267 if (!SemaRef.LookupName(R, S)) return false; 3268 3269 if (R.getAsSingle<TagDecl>()) 3270 return false; 3271 3272 // Pick a representative declaration. 3273 NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl(); 3274 assert(PrevDecl && "Expected a non-null Decl"); 3275 3276 if (!SemaRef.isDeclInScope(PrevDecl, Owner, S)) 3277 return false; 3278 3279 SemaRef.Diag(NameLoc, diagnostic) << Name; 3280 SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 3281 3282 return true; 3283 } 3284 3285 /// InjectAnonymousStructOrUnionMembers - Inject the members of the 3286 /// anonymous struct or union AnonRecord into the owning context Owner 3287 /// and scope S. This routine will be invoked just after we realize 3288 /// that an unnamed union or struct is actually an anonymous union or 3289 /// struct, e.g., 3290 /// 3291 /// @code 3292 /// union { 3293 /// int i; 3294 /// float f; 3295 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and 3296 /// // f into the surrounding scope.x 3297 /// @endcode 3298 /// 3299 /// This routine is recursive, injecting the names of nested anonymous 3300 /// structs/unions into the owning context and scope as well. 3301 static bool InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, 3302 DeclContext *Owner, 3303 RecordDecl *AnonRecord, 3304 AccessSpecifier AS, 3305 SmallVector<NamedDecl*, 2> &Chaining, 3306 bool MSAnonStruct) { 3307 unsigned diagKind 3308 = AnonRecord->isUnion() ? diag::err_anonymous_union_member_redecl 3309 : diag::err_anonymous_struct_member_redecl; 3310 3311 bool Invalid = false; 3312 3313 // Look every FieldDecl and IndirectFieldDecl with a name. 3314 for (RecordDecl::decl_iterator D = AnonRecord->decls_begin(), 3315 DEnd = AnonRecord->decls_end(); 3316 D != DEnd; ++D) { 3317 if ((isa<FieldDecl>(*D) || isa<IndirectFieldDecl>(*D)) && 3318 cast<NamedDecl>(*D)->getDeclName()) { 3319 ValueDecl *VD = cast<ValueDecl>(*D); 3320 if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(), 3321 VD->getLocation(), diagKind)) { 3322 // C++ [class.union]p2: 3323 // The names of the members of an anonymous union shall be 3324 // distinct from the names of any other entity in the 3325 // scope in which the anonymous union is declared. 3326 Invalid = true; 3327 } else { 3328 // C++ [class.union]p2: 3329 // For the purpose of name lookup, after the anonymous union 3330 // definition, the members of the anonymous union are 3331 // considered to have been defined in the scope in which the 3332 // anonymous union is declared. 3333 unsigned OldChainingSize = Chaining.size(); 3334 if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD)) 3335 for (IndirectFieldDecl::chain_iterator PI = IF->chain_begin(), 3336 PE = IF->chain_end(); PI != PE; ++PI) 3337 Chaining.push_back(*PI); 3338 else 3339 Chaining.push_back(VD); 3340 3341 assert(Chaining.size() >= 2); 3342 NamedDecl **NamedChain = 3343 new (SemaRef.Context)NamedDecl*[Chaining.size()]; 3344 for (unsigned i = 0; i < Chaining.size(); i++) 3345 NamedChain[i] = Chaining[i]; 3346 3347 IndirectFieldDecl* IndirectField = 3348 IndirectFieldDecl::Create(SemaRef.Context, Owner, VD->getLocation(), 3349 VD->getIdentifier(), VD->getType(), 3350 NamedChain, Chaining.size()); 3351 3352 IndirectField->setAccess(AS); 3353 IndirectField->setImplicit(); 3354 SemaRef.PushOnScopeChains(IndirectField, S); 3355 3356 // That includes picking up the appropriate access specifier. 3357 if (AS != AS_none) IndirectField->setAccess(AS); 3358 3359 Chaining.resize(OldChainingSize); 3360 } 3361 } 3362 } 3363 3364 return Invalid; 3365 } 3366 3367 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to 3368 /// a VarDecl::StorageClass. Any error reporting is up to the caller: 3369 /// illegal input values are mapped to SC_None. 3370 static StorageClass 3371 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) { 3372 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec(); 3373 assert(StorageClassSpec != DeclSpec::SCS_typedef && 3374 "Parser allowed 'typedef' as storage class VarDecl."); 3375 switch (StorageClassSpec) { 3376 case DeclSpec::SCS_unspecified: return SC_None; 3377 case DeclSpec::SCS_extern: 3378 if (DS.isExternInLinkageSpec()) 3379 return SC_None; 3380 return SC_Extern; 3381 case DeclSpec::SCS_static: return SC_Static; 3382 case DeclSpec::SCS_auto: return SC_Auto; 3383 case DeclSpec::SCS_register: return SC_Register; 3384 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 3385 // Illegal SCSs map to None: error reporting is up to the caller. 3386 case DeclSpec::SCS_mutable: // Fall through. 3387 case DeclSpec::SCS_typedef: return SC_None; 3388 } 3389 llvm_unreachable("unknown storage class specifier"); 3390 } 3391 3392 /// BuildAnonymousStructOrUnion - Handle the declaration of an 3393 /// anonymous structure or union. Anonymous unions are a C++ feature 3394 /// (C++ [class.union]) and a C11 feature; anonymous structures 3395 /// are a C11 feature and GNU C++ extension. 3396 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, 3397 AccessSpecifier AS, 3398 RecordDecl *Record) { 3399 DeclContext *Owner = Record->getDeclContext(); 3400 3401 // Diagnose whether this anonymous struct/union is an extension. 3402 if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11) 3403 Diag(Record->getLocation(), diag::ext_anonymous_union); 3404 else if (!Record->isUnion() && getLangOpts().CPlusPlus) 3405 Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct); 3406 else if (!Record->isUnion() && !getLangOpts().C11) 3407 Diag(Record->getLocation(), diag::ext_c11_anonymous_struct); 3408 3409 // C and C++ require different kinds of checks for anonymous 3410 // structs/unions. 3411 bool Invalid = false; 3412 if (getLangOpts().CPlusPlus) { 3413 const char* PrevSpec = 0; 3414 unsigned DiagID; 3415 if (Record->isUnion()) { 3416 // C++ [class.union]p6: 3417 // Anonymous unions declared in a named namespace or in the 3418 // global namespace shall be declared static. 3419 if (DS.getStorageClassSpec() != DeclSpec::SCS_static && 3420 (isa<TranslationUnitDecl>(Owner) || 3421 (isa<NamespaceDecl>(Owner) && 3422 cast<NamespaceDecl>(Owner)->getDeclName()))) { 3423 Diag(Record->getLocation(), diag::err_anonymous_union_not_static) 3424 << FixItHint::CreateInsertion(Record->getLocation(), "static "); 3425 3426 // Recover by adding 'static'. 3427 DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(), 3428 PrevSpec, DiagID); 3429 } 3430 // C++ [class.union]p6: 3431 // A storage class is not allowed in a declaration of an 3432 // anonymous union in a class scope. 3433 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && 3434 isa<RecordDecl>(Owner)) { 3435 Diag(DS.getStorageClassSpecLoc(), 3436 diag::err_anonymous_union_with_storage_spec) 3437 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 3438 3439 // Recover by removing the storage specifier. 3440 DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified, 3441 SourceLocation(), 3442 PrevSpec, DiagID); 3443 } 3444 } 3445 3446 // Ignore const/volatile/restrict qualifiers. 3447 if (DS.getTypeQualifiers()) { 3448 if (DS.getTypeQualifiers() & DeclSpec::TQ_const) 3449 Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified) 3450 << Record->isUnion() << "const" 3451 << FixItHint::CreateRemoval(DS.getConstSpecLoc()); 3452 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile) 3453 Diag(DS.getVolatileSpecLoc(), 3454 diag::ext_anonymous_struct_union_qualified) 3455 << Record->isUnion() << "volatile" 3456 << FixItHint::CreateRemoval(DS.getVolatileSpecLoc()); 3457 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict) 3458 Diag(DS.getRestrictSpecLoc(), 3459 diag::ext_anonymous_struct_union_qualified) 3460 << Record->isUnion() << "restrict" 3461 << FixItHint::CreateRemoval(DS.getRestrictSpecLoc()); 3462 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic) 3463 Diag(DS.getAtomicSpecLoc(), 3464 diag::ext_anonymous_struct_union_qualified) 3465 << Record->isUnion() << "_Atomic" 3466 << FixItHint::CreateRemoval(DS.getAtomicSpecLoc()); 3467 3468 DS.ClearTypeQualifiers(); 3469 } 3470 3471 // C++ [class.union]p2: 3472 // The member-specification of an anonymous union shall only 3473 // define non-static data members. [Note: nested types and 3474 // functions cannot be declared within an anonymous union. ] 3475 for (DeclContext::decl_iterator Mem = Record->decls_begin(), 3476 MemEnd = Record->decls_end(); 3477 Mem != MemEnd; ++Mem) { 3478 if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) { 3479 // C++ [class.union]p3: 3480 // An anonymous union shall not have private or protected 3481 // members (clause 11). 3482 assert(FD->getAccess() != AS_none); 3483 if (FD->getAccess() != AS_public) { 3484 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member) 3485 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected); 3486 Invalid = true; 3487 } 3488 3489 // C++ [class.union]p1 3490 // An object of a class with a non-trivial constructor, a non-trivial 3491 // copy constructor, a non-trivial destructor, or a non-trivial copy 3492 // assignment operator cannot be a member of a union, nor can an 3493 // array of such objects. 3494 if (CheckNontrivialField(FD)) 3495 Invalid = true; 3496 } else if ((*Mem)->isImplicit()) { 3497 // Any implicit members are fine. 3498 } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) { 3499 // This is a type that showed up in an 3500 // elaborated-type-specifier inside the anonymous struct or 3501 // union, but which actually declares a type outside of the 3502 // anonymous struct or union. It's okay. 3503 } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) { 3504 if (!MemRecord->isAnonymousStructOrUnion() && 3505 MemRecord->getDeclName()) { 3506 // Visual C++ allows type definition in anonymous struct or union. 3507 if (getLangOpts().MicrosoftExt) 3508 Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type) 3509 << (int)Record->isUnion(); 3510 else { 3511 // This is a nested type declaration. 3512 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type) 3513 << (int)Record->isUnion(); 3514 Invalid = true; 3515 } 3516 } else { 3517 // This is an anonymous type definition within another anonymous type. 3518 // This is a popular extension, provided by Plan9, MSVC and GCC, but 3519 // not part of standard C++. 3520 Diag(MemRecord->getLocation(), 3521 diag::ext_anonymous_record_with_anonymous_type) 3522 << (int)Record->isUnion(); 3523 } 3524 } else if (isa<AccessSpecDecl>(*Mem)) { 3525 // Any access specifier is fine. 3526 } else { 3527 // We have something that isn't a non-static data 3528 // member. Complain about it. 3529 unsigned DK = diag::err_anonymous_record_bad_member; 3530 if (isa<TypeDecl>(*Mem)) 3531 DK = diag::err_anonymous_record_with_type; 3532 else if (isa<FunctionDecl>(*Mem)) 3533 DK = diag::err_anonymous_record_with_function; 3534 else if (isa<VarDecl>(*Mem)) 3535 DK = diag::err_anonymous_record_with_static; 3536 3537 // Visual C++ allows type definition in anonymous struct or union. 3538 if (getLangOpts().MicrosoftExt && 3539 DK == diag::err_anonymous_record_with_type) 3540 Diag((*Mem)->getLocation(), diag::ext_anonymous_record_with_type) 3541 << (int)Record->isUnion(); 3542 else { 3543 Diag((*Mem)->getLocation(), DK) 3544 << (int)Record->isUnion(); 3545 Invalid = true; 3546 } 3547 } 3548 } 3549 } 3550 3551 if (!Record->isUnion() && !Owner->isRecord()) { 3552 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member) 3553 << (int)getLangOpts().CPlusPlus; 3554 Invalid = true; 3555 } 3556 3557 // Mock up a declarator. 3558 Declarator Dc(DS, Declarator::MemberContext); 3559 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 3560 assert(TInfo && "couldn't build declarator info for anonymous struct/union"); 3561 3562 // Create a declaration for this anonymous struct/union. 3563 NamedDecl *Anon = 0; 3564 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) { 3565 Anon = FieldDecl::Create(Context, OwningClass, 3566 DS.getLocStart(), 3567 Record->getLocation(), 3568 /*IdentifierInfo=*/0, 3569 Context.getTypeDeclType(Record), 3570 TInfo, 3571 /*BitWidth=*/0, /*Mutable=*/false, 3572 /*InitStyle=*/ICIS_NoInit); 3573 Anon->setAccess(AS); 3574 if (getLangOpts().CPlusPlus) 3575 FieldCollector->Add(cast<FieldDecl>(Anon)); 3576 } else { 3577 DeclSpec::SCS SCSpec = DS.getStorageClassSpec(); 3578 VarDecl::StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS); 3579 if (SCSpec == DeclSpec::SCS_mutable) { 3580 // mutable can only appear on non-static class members, so it's always 3581 // an error here 3582 Diag(Record->getLocation(), diag::err_mutable_nonmember); 3583 Invalid = true; 3584 SC = SC_None; 3585 } 3586 3587 Anon = VarDecl::Create(Context, Owner, 3588 DS.getLocStart(), 3589 Record->getLocation(), /*IdentifierInfo=*/0, 3590 Context.getTypeDeclType(Record), 3591 TInfo, SC); 3592 3593 // Default-initialize the implicit variable. This initialization will be 3594 // trivial in almost all cases, except if a union member has an in-class 3595 // initializer: 3596 // union { int n = 0; }; 3597 ActOnUninitializedDecl(Anon, /*TypeMayContainAuto=*/false); 3598 } 3599 Anon->setImplicit(); 3600 3601 // Add the anonymous struct/union object to the current 3602 // context. We'll be referencing this object when we refer to one of 3603 // its members. 3604 Owner->addDecl(Anon); 3605 3606 // Inject the members of the anonymous struct/union into the owning 3607 // context and into the identifier resolver chain for name lookup 3608 // purposes. 3609 SmallVector<NamedDecl*, 2> Chain; 3610 Chain.push_back(Anon); 3611 3612 if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, 3613 Chain, false)) 3614 Invalid = true; 3615 3616 // Mark this as an anonymous struct/union type. Note that we do not 3617 // do this until after we have already checked and injected the 3618 // members of this anonymous struct/union type, because otherwise 3619 // the members could be injected twice: once by DeclContext when it 3620 // builds its lookup table, and once by 3621 // InjectAnonymousStructOrUnionMembers. 3622 Record->setAnonymousStructOrUnion(true); 3623 3624 if (Invalid) 3625 Anon->setInvalidDecl(); 3626 3627 return Anon; 3628 } 3629 3630 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an 3631 /// Microsoft C anonymous structure. 3632 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx 3633 /// Example: 3634 /// 3635 /// struct A { int a; }; 3636 /// struct B { struct A; int b; }; 3637 /// 3638 /// void foo() { 3639 /// B var; 3640 /// var.a = 3; 3641 /// } 3642 /// 3643 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS, 3644 RecordDecl *Record) { 3645 3646 // If there is no Record, get the record via the typedef. 3647 if (!Record) 3648 Record = DS.getRepAsType().get()->getAsStructureType()->getDecl(); 3649 3650 // Mock up a declarator. 3651 Declarator Dc(DS, Declarator::TypeNameContext); 3652 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S); 3653 assert(TInfo && "couldn't build declarator info for anonymous struct"); 3654 3655 // Create a declaration for this anonymous struct. 3656 NamedDecl* Anon = FieldDecl::Create(Context, 3657 cast<RecordDecl>(CurContext), 3658 DS.getLocStart(), 3659 DS.getLocStart(), 3660 /*IdentifierInfo=*/0, 3661 Context.getTypeDeclType(Record), 3662 TInfo, 3663 /*BitWidth=*/0, /*Mutable=*/false, 3664 /*InitStyle=*/ICIS_NoInit); 3665 Anon->setImplicit(); 3666 3667 // Add the anonymous struct object to the current context. 3668 CurContext->addDecl(Anon); 3669 3670 // Inject the members of the anonymous struct into the current 3671 // context and into the identifier resolver chain for name lookup 3672 // purposes. 3673 SmallVector<NamedDecl*, 2> Chain; 3674 Chain.push_back(Anon); 3675 3676 RecordDecl *RecordDef = Record->getDefinition(); 3677 if (!RecordDef || InjectAnonymousStructOrUnionMembers(*this, S, CurContext, 3678 RecordDef, AS_none, 3679 Chain, true)) 3680 Anon->setInvalidDecl(); 3681 3682 return Anon; 3683 } 3684 3685 /// GetNameForDeclarator - Determine the full declaration name for the 3686 /// given Declarator. 3687 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) { 3688 return GetNameFromUnqualifiedId(D.getName()); 3689 } 3690 3691 /// \brief Retrieves the declaration name from a parsed unqualified-id. 3692 DeclarationNameInfo 3693 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) { 3694 DeclarationNameInfo NameInfo; 3695 NameInfo.setLoc(Name.StartLocation); 3696 3697 switch (Name.getKind()) { 3698 3699 case UnqualifiedId::IK_ImplicitSelfParam: 3700 case UnqualifiedId::IK_Identifier: 3701 NameInfo.setName(Name.Identifier); 3702 NameInfo.setLoc(Name.StartLocation); 3703 return NameInfo; 3704 3705 case UnqualifiedId::IK_OperatorFunctionId: 3706 NameInfo.setName(Context.DeclarationNames.getCXXOperatorName( 3707 Name.OperatorFunctionId.Operator)); 3708 NameInfo.setLoc(Name.StartLocation); 3709 NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc 3710 = Name.OperatorFunctionId.SymbolLocations[0]; 3711 NameInfo.getInfo().CXXOperatorName.EndOpNameLoc 3712 = Name.EndLocation.getRawEncoding(); 3713 return NameInfo; 3714 3715 case UnqualifiedId::IK_LiteralOperatorId: 3716 NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName( 3717 Name.Identifier)); 3718 NameInfo.setLoc(Name.StartLocation); 3719 NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation); 3720 return NameInfo; 3721 3722 case UnqualifiedId::IK_ConversionFunctionId: { 3723 TypeSourceInfo *TInfo; 3724 QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo); 3725 if (Ty.isNull()) 3726 return DeclarationNameInfo(); 3727 NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName( 3728 Context.getCanonicalType(Ty))); 3729 NameInfo.setLoc(Name.StartLocation); 3730 NameInfo.setNamedTypeInfo(TInfo); 3731 return NameInfo; 3732 } 3733 3734 case UnqualifiedId::IK_ConstructorName: { 3735 TypeSourceInfo *TInfo; 3736 QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo); 3737 if (Ty.isNull()) 3738 return DeclarationNameInfo(); 3739 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 3740 Context.getCanonicalType(Ty))); 3741 NameInfo.setLoc(Name.StartLocation); 3742 NameInfo.setNamedTypeInfo(TInfo); 3743 return NameInfo; 3744 } 3745 3746 case UnqualifiedId::IK_ConstructorTemplateId: { 3747 // In well-formed code, we can only have a constructor 3748 // template-id that refers to the current context, so go there 3749 // to find the actual type being constructed. 3750 CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext); 3751 if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name) 3752 return DeclarationNameInfo(); 3753 3754 // Determine the type of the class being constructed. 3755 QualType CurClassType = Context.getTypeDeclType(CurClass); 3756 3757 // FIXME: Check two things: that the template-id names the same type as 3758 // CurClassType, and that the template-id does not occur when the name 3759 // was qualified. 3760 3761 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName( 3762 Context.getCanonicalType(CurClassType))); 3763 NameInfo.setLoc(Name.StartLocation); 3764 // FIXME: should we retrieve TypeSourceInfo? 3765 NameInfo.setNamedTypeInfo(0); 3766 return NameInfo; 3767 } 3768 3769 case UnqualifiedId::IK_DestructorName: { 3770 TypeSourceInfo *TInfo; 3771 QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo); 3772 if (Ty.isNull()) 3773 return DeclarationNameInfo(); 3774 NameInfo.setName(Context.DeclarationNames.getCXXDestructorName( 3775 Context.getCanonicalType(Ty))); 3776 NameInfo.setLoc(Name.StartLocation); 3777 NameInfo.setNamedTypeInfo(TInfo); 3778 return NameInfo; 3779 } 3780 3781 case UnqualifiedId::IK_TemplateId: { 3782 TemplateName TName = Name.TemplateId->Template.get(); 3783 SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc; 3784 return Context.getNameForTemplate(TName, TNameLoc); 3785 } 3786 3787 } // switch (Name.getKind()) 3788 3789 llvm_unreachable("Unknown name kind"); 3790 } 3791 3792 static QualType getCoreType(QualType Ty) { 3793 do { 3794 if (Ty->isPointerType() || Ty->isReferenceType()) 3795 Ty = Ty->getPointeeType(); 3796 else if (Ty->isArrayType()) 3797 Ty = Ty->castAsArrayTypeUnsafe()->getElementType(); 3798 else 3799 return Ty.withoutLocalFastQualifiers(); 3800 } while (true); 3801 } 3802 3803 /// hasSimilarParameters - Determine whether the C++ functions Declaration 3804 /// and Definition have "nearly" matching parameters. This heuristic is 3805 /// used to improve diagnostics in the case where an out-of-line function 3806 /// definition doesn't match any declaration within the class or namespace. 3807 /// Also sets Params to the list of indices to the parameters that differ 3808 /// between the declaration and the definition. If hasSimilarParameters 3809 /// returns true and Params is empty, then all of the parameters match. 3810 static bool hasSimilarParameters(ASTContext &Context, 3811 FunctionDecl *Declaration, 3812 FunctionDecl *Definition, 3813 SmallVectorImpl<unsigned> &Params) { 3814 Params.clear(); 3815 if (Declaration->param_size() != Definition->param_size()) 3816 return false; 3817 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) { 3818 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType(); 3819 QualType DefParamTy = Definition->getParamDecl(Idx)->getType(); 3820 3821 // The parameter types are identical 3822 if (Context.hasSameType(DefParamTy, DeclParamTy)) 3823 continue; 3824 3825 QualType DeclParamBaseTy = getCoreType(DeclParamTy); 3826 QualType DefParamBaseTy = getCoreType(DefParamTy); 3827 const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier(); 3828 const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier(); 3829 3830 if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) || 3831 (DeclTyName && DeclTyName == DefTyName)) 3832 Params.push_back(Idx); 3833 else // The two parameters aren't even close 3834 return false; 3835 } 3836 3837 return true; 3838 } 3839 3840 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given 3841 /// declarator needs to be rebuilt in the current instantiation. 3842 /// Any bits of declarator which appear before the name are valid for 3843 /// consideration here. That's specifically the type in the decl spec 3844 /// and the base type in any member-pointer chunks. 3845 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D, 3846 DeclarationName Name) { 3847 // The types we specifically need to rebuild are: 3848 // - typenames, typeofs, and decltypes 3849 // - types which will become injected class names 3850 // Of course, we also need to rebuild any type referencing such a 3851 // type. It's safest to just say "dependent", but we call out a 3852 // few cases here. 3853 3854 DeclSpec &DS = D.getMutableDeclSpec(); 3855 switch (DS.getTypeSpecType()) { 3856 case DeclSpec::TST_typename: 3857 case DeclSpec::TST_typeofType: 3858 case DeclSpec::TST_underlyingType: 3859 case DeclSpec::TST_atomic: { 3860 // Grab the type from the parser. 3861 TypeSourceInfo *TSI = 0; 3862 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI); 3863 if (T.isNull() || !T->isDependentType()) break; 3864 3865 // Make sure there's a type source info. This isn't really much 3866 // of a waste; most dependent types should have type source info 3867 // attached already. 3868 if (!TSI) 3869 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc()); 3870 3871 // Rebuild the type in the current instantiation. 3872 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name); 3873 if (!TSI) return true; 3874 3875 // Store the new type back in the decl spec. 3876 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI); 3877 DS.UpdateTypeRep(LocType); 3878 break; 3879 } 3880 3881 case DeclSpec::TST_decltype: 3882 case DeclSpec::TST_typeofExpr: { 3883 Expr *E = DS.getRepAsExpr(); 3884 ExprResult Result = S.RebuildExprInCurrentInstantiation(E); 3885 if (Result.isInvalid()) return true; 3886 DS.UpdateExprRep(Result.get()); 3887 break; 3888 } 3889 3890 default: 3891 // Nothing to do for these decl specs. 3892 break; 3893 } 3894 3895 // It doesn't matter what order we do this in. 3896 for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) { 3897 DeclaratorChunk &Chunk = D.getTypeObject(I); 3898 3899 // The only type information in the declarator which can come 3900 // before the declaration name is the base type of a member 3901 // pointer. 3902 if (Chunk.Kind != DeclaratorChunk::MemberPointer) 3903 continue; 3904 3905 // Rebuild the scope specifier in-place. 3906 CXXScopeSpec &SS = Chunk.Mem.Scope(); 3907 if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS)) 3908 return true; 3909 } 3910 3911 return false; 3912 } 3913 3914 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) { 3915 D.setFunctionDefinitionKind(FDK_Declaration); 3916 Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg()); 3917 3918 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() && 3919 Dcl && Dcl->getDeclContext()->isFileContext()) 3920 Dcl->setTopLevelDeclInObjCContainer(); 3921 3922 return Dcl; 3923 } 3924 3925 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13: 3926 /// If T is the name of a class, then each of the following shall have a 3927 /// name different from T: 3928 /// - every static data member of class T; 3929 /// - every member function of class T 3930 /// - every member of class T that is itself a type; 3931 /// \returns true if the declaration name violates these rules. 3932 bool Sema::DiagnoseClassNameShadow(DeclContext *DC, 3933 DeclarationNameInfo NameInfo) { 3934 DeclarationName Name = NameInfo.getName(); 3935 3936 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC)) 3937 if (Record->getIdentifier() && Record->getDeclName() == Name) { 3938 Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name; 3939 return true; 3940 } 3941 3942 return false; 3943 } 3944 3945 /// \brief Diagnose a declaration whose declarator-id has the given 3946 /// nested-name-specifier. 3947 /// 3948 /// \param SS The nested-name-specifier of the declarator-id. 3949 /// 3950 /// \param DC The declaration context to which the nested-name-specifier 3951 /// resolves. 3952 /// 3953 /// \param Name The name of the entity being declared. 3954 /// 3955 /// \param Loc The location of the name of the entity being declared. 3956 /// 3957 /// \returns true if we cannot safely recover from this error, false otherwise. 3958 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC, 3959 DeclarationName Name, 3960 SourceLocation Loc) { 3961 DeclContext *Cur = CurContext; 3962 while (isa<LinkageSpecDecl>(Cur)) 3963 Cur = Cur->getParent(); 3964 3965 // C++ [dcl.meaning]p1: 3966 // A declarator-id shall not be qualified except for the definition 3967 // of a member function (9.3) or static data member (9.4) outside of 3968 // its class, the definition or explicit instantiation of a function 3969 // or variable member of a namespace outside of its namespace, or the 3970 // definition of an explicit specialization outside of its namespace, 3971 // or the declaration of a friend function that is a member of 3972 // another class or namespace (11.3). [...] 3973 3974 // The user provided a superfluous scope specifier that refers back to the 3975 // class or namespaces in which the entity is already declared. 3976 // 3977 // class X { 3978 // void X::f(); 3979 // }; 3980 if (Cur->Equals(DC)) { 3981 Diag(Loc, LangOpts.MicrosoftExt? diag::warn_member_extra_qualification 3982 : diag::err_member_extra_qualification) 3983 << Name << FixItHint::CreateRemoval(SS.getRange()); 3984 SS.clear(); 3985 return false; 3986 } 3987 3988 // Check whether the qualifying scope encloses the scope of the original 3989 // declaration. 3990 if (!Cur->Encloses(DC)) { 3991 if (Cur->isRecord()) 3992 Diag(Loc, diag::err_member_qualification) 3993 << Name << SS.getRange(); 3994 else if (isa<TranslationUnitDecl>(DC)) 3995 Diag(Loc, diag::err_invalid_declarator_global_scope) 3996 << Name << SS.getRange(); 3997 else if (isa<FunctionDecl>(Cur)) 3998 Diag(Loc, diag::err_invalid_declarator_in_function) 3999 << Name << SS.getRange(); 4000 else 4001 Diag(Loc, diag::err_invalid_declarator_scope) 4002 << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange(); 4003 4004 return true; 4005 } 4006 4007 if (Cur->isRecord()) { 4008 // Cannot qualify members within a class. 4009 Diag(Loc, diag::err_member_qualification) 4010 << Name << SS.getRange(); 4011 SS.clear(); 4012 4013 // C++ constructors and destructors with incorrect scopes can break 4014 // our AST invariants by having the wrong underlying types. If 4015 // that's the case, then drop this declaration entirely. 4016 if ((Name.getNameKind() == DeclarationName::CXXConstructorName || 4017 Name.getNameKind() == DeclarationName::CXXDestructorName) && 4018 !Context.hasSameType(Name.getCXXNameType(), 4019 Context.getTypeDeclType(cast<CXXRecordDecl>(Cur)))) 4020 return true; 4021 4022 return false; 4023 } 4024 4025 // C++11 [dcl.meaning]p1: 4026 // [...] "The nested-name-specifier of the qualified declarator-id shall 4027 // not begin with a decltype-specifer" 4028 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data()); 4029 while (SpecLoc.getPrefix()) 4030 SpecLoc = SpecLoc.getPrefix(); 4031 if (dyn_cast_or_null<DecltypeType>( 4032 SpecLoc.getNestedNameSpecifier()->getAsType())) 4033 Diag(Loc, diag::err_decltype_in_declarator) 4034 << SpecLoc.getTypeLoc().getSourceRange(); 4035 4036 return false; 4037 } 4038 4039 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D, 4040 MultiTemplateParamsArg TemplateParamLists) { 4041 // TODO: consider using NameInfo for diagnostic. 4042 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 4043 DeclarationName Name = NameInfo.getName(); 4044 4045 // All of these full declarators require an identifier. If it doesn't have 4046 // one, the ParsedFreeStandingDeclSpec action should be used. 4047 if (!Name) { 4048 if (!D.isInvalidType()) // Reject this if we think it is valid. 4049 Diag(D.getDeclSpec().getLocStart(), 4050 diag::err_declarator_need_ident) 4051 << D.getDeclSpec().getSourceRange() << D.getSourceRange(); 4052 return 0; 4053 } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType)) 4054 return 0; 4055 4056 // The scope passed in may not be a decl scope. Zip up the scope tree until 4057 // we find one that is. 4058 while ((S->getFlags() & Scope::DeclScope) == 0 || 4059 (S->getFlags() & Scope::TemplateParamScope) != 0) 4060 S = S->getParent(); 4061 4062 DeclContext *DC = CurContext; 4063 if (D.getCXXScopeSpec().isInvalid()) 4064 D.setInvalidType(); 4065 else if (D.getCXXScopeSpec().isSet()) { 4066 if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(), 4067 UPPC_DeclarationQualifier)) 4068 return 0; 4069 4070 bool EnteringContext = !D.getDeclSpec().isFriendSpecified(); 4071 DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext); 4072 if (!DC) { 4073 // If we could not compute the declaration context, it's because the 4074 // declaration context is dependent but does not refer to a class, 4075 // class template, or class template partial specialization. Complain 4076 // and return early, to avoid the coming semantic disaster. 4077 Diag(D.getIdentifierLoc(), 4078 diag::err_template_qualified_declarator_no_match) 4079 << (NestedNameSpecifier*)D.getCXXScopeSpec().getScopeRep() 4080 << D.getCXXScopeSpec().getRange(); 4081 return 0; 4082 } 4083 bool IsDependentContext = DC->isDependentContext(); 4084 4085 if (!IsDependentContext && 4086 RequireCompleteDeclContext(D.getCXXScopeSpec(), DC)) 4087 return 0; 4088 4089 if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) { 4090 Diag(D.getIdentifierLoc(), 4091 diag::err_member_def_undefined_record) 4092 << Name << DC << D.getCXXScopeSpec().getRange(); 4093 D.setInvalidType(); 4094 } else if (!D.getDeclSpec().isFriendSpecified()) { 4095 if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC, 4096 Name, D.getIdentifierLoc())) { 4097 if (DC->isRecord()) 4098 return 0; 4099 4100 D.setInvalidType(); 4101 } 4102 } 4103 4104 // Check whether we need to rebuild the type of the given 4105 // declaration in the current instantiation. 4106 if (EnteringContext && IsDependentContext && 4107 TemplateParamLists.size() != 0) { 4108 ContextRAII SavedContext(*this, DC); 4109 if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name)) 4110 D.setInvalidType(); 4111 } 4112 } 4113 4114 if (DiagnoseClassNameShadow(DC, NameInfo)) 4115 // If this is a typedef, we'll end up spewing multiple diagnostics. 4116 // Just return early; it's safer. 4117 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) 4118 return 0; 4119 4120 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 4121 QualType R = TInfo->getType(); 4122 4123 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 4124 UPPC_DeclarationType)) 4125 D.setInvalidType(); 4126 4127 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, 4128 ForRedeclaration); 4129 4130 // See if this is a redefinition of a variable in the same scope. 4131 if (!D.getCXXScopeSpec().isSet()) { 4132 bool IsLinkageLookup = false; 4133 4134 // If the declaration we're planning to build will be a function 4135 // or object with linkage, then look for another declaration with 4136 // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6). 4137 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) 4138 /* Do nothing*/; 4139 else if (R->isFunctionType()) { 4140 if (CurContext->isFunctionOrMethod() || 4141 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static) 4142 IsLinkageLookup = true; 4143 } else if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern) 4144 IsLinkageLookup = true; 4145 else if (CurContext->getRedeclContext()->isTranslationUnit() && 4146 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static) 4147 IsLinkageLookup = true; 4148 4149 if (IsLinkageLookup) 4150 Previous.clear(LookupRedeclarationWithLinkage); 4151 4152 LookupName(Previous, S, /* CreateBuiltins = */ IsLinkageLookup); 4153 } else { // Something like "int foo::x;" 4154 LookupQualifiedName(Previous, DC); 4155 4156 // C++ [dcl.meaning]p1: 4157 // When the declarator-id is qualified, the declaration shall refer to a 4158 // previously declared member of the class or namespace to which the 4159 // qualifier refers (or, in the case of a namespace, of an element of the 4160 // inline namespace set of that namespace (7.3.1)) or to a specialization 4161 // thereof; [...] 4162 // 4163 // Note that we already checked the context above, and that we do not have 4164 // enough information to make sure that Previous contains the declaration 4165 // we want to match. For example, given: 4166 // 4167 // class X { 4168 // void f(); 4169 // void f(float); 4170 // }; 4171 // 4172 // void X::f(int) { } // ill-formed 4173 // 4174 // In this case, Previous will point to the overload set 4175 // containing the two f's declared in X, but neither of them 4176 // matches. 4177 4178 // C++ [dcl.meaning]p1: 4179 // [...] the member shall not merely have been introduced by a 4180 // using-declaration in the scope of the class or namespace nominated by 4181 // the nested-name-specifier of the declarator-id. 4182 RemoveUsingDecls(Previous); 4183 } 4184 4185 if (Previous.isSingleResult() && 4186 Previous.getFoundDecl()->isTemplateParameter()) { 4187 // Maybe we will complain about the shadowed template parameter. 4188 if (!D.isInvalidType()) 4189 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), 4190 Previous.getFoundDecl()); 4191 4192 // Just pretend that we didn't see the previous declaration. 4193 Previous.clear(); 4194 } 4195 4196 // In C++, the previous declaration we find might be a tag type 4197 // (class or enum). In this case, the new declaration will hide the 4198 // tag type. Note that this does does not apply if we're declaring a 4199 // typedef (C++ [dcl.typedef]p4). 4200 if (Previous.isSingleTagDecl() && 4201 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef) 4202 Previous.clear(); 4203 4204 // Check that there are no default arguments other than in the parameters 4205 // of a function declaration (C++ only). 4206 if (getLangOpts().CPlusPlus) 4207 CheckExtraCXXDefaultArguments(D); 4208 4209 NamedDecl *New; 4210 4211 bool AddToScope = true; 4212 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { 4213 if (TemplateParamLists.size()) { 4214 Diag(D.getIdentifierLoc(), diag::err_template_typedef); 4215 return 0; 4216 } 4217 4218 New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous); 4219 } else if (R->isFunctionType()) { 4220 New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous, 4221 TemplateParamLists, 4222 AddToScope); 4223 } else { 4224 New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, 4225 TemplateParamLists); 4226 } 4227 4228 if (New == 0) 4229 return 0; 4230 4231 // If this has an identifier and is not an invalid redeclaration or 4232 // function template specialization, add it to the scope stack. 4233 if (New->getDeclName() && AddToScope && 4234 !(D.isRedeclaration() && New->isInvalidDecl())) 4235 PushOnScopeChains(New, S); 4236 4237 return New; 4238 } 4239 4240 /// Helper method to turn variable array types into constant array 4241 /// types in certain situations which would otherwise be errors (for 4242 /// GCC compatibility). 4243 static QualType TryToFixInvalidVariablyModifiedType(QualType T, 4244 ASTContext &Context, 4245 bool &SizeIsNegative, 4246 llvm::APSInt &Oversized) { 4247 // This method tries to turn a variable array into a constant 4248 // array even when the size isn't an ICE. This is necessary 4249 // for compatibility with code that depends on gcc's buggy 4250 // constant expression folding, like struct {char x[(int)(char*)2];} 4251 SizeIsNegative = false; 4252 Oversized = 0; 4253 4254 if (T->isDependentType()) 4255 return QualType(); 4256 4257 QualifierCollector Qs; 4258 const Type *Ty = Qs.strip(T); 4259 4260 if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) { 4261 QualType Pointee = PTy->getPointeeType(); 4262 QualType FixedType = 4263 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative, 4264 Oversized); 4265 if (FixedType.isNull()) return FixedType; 4266 FixedType = Context.getPointerType(FixedType); 4267 return Qs.apply(Context, FixedType); 4268 } 4269 if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) { 4270 QualType Inner = PTy->getInnerType(); 4271 QualType FixedType = 4272 TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative, 4273 Oversized); 4274 if (FixedType.isNull()) return FixedType; 4275 FixedType = Context.getParenType(FixedType); 4276 return Qs.apply(Context, FixedType); 4277 } 4278 4279 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T); 4280 if (!VLATy) 4281 return QualType(); 4282 // FIXME: We should probably handle this case 4283 if (VLATy->getElementType()->isVariablyModifiedType()) 4284 return QualType(); 4285 4286 llvm::APSInt Res; 4287 if (!VLATy->getSizeExpr() || 4288 !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context)) 4289 return QualType(); 4290 4291 // Check whether the array size is negative. 4292 if (Res.isSigned() && Res.isNegative()) { 4293 SizeIsNegative = true; 4294 return QualType(); 4295 } 4296 4297 // Check whether the array is too large to be addressed. 4298 unsigned ActiveSizeBits 4299 = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(), 4300 Res); 4301 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) { 4302 Oversized = Res; 4303 return QualType(); 4304 } 4305 4306 return Context.getConstantArrayType(VLATy->getElementType(), 4307 Res, ArrayType::Normal, 0); 4308 } 4309 4310 static void 4311 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) { 4312 if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) { 4313 PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>(); 4314 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(), 4315 DstPTL.getPointeeLoc()); 4316 DstPTL.setStarLoc(SrcPTL.getStarLoc()); 4317 return; 4318 } 4319 if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) { 4320 ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>(); 4321 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(), 4322 DstPTL.getInnerLoc()); 4323 DstPTL.setLParenLoc(SrcPTL.getLParenLoc()); 4324 DstPTL.setRParenLoc(SrcPTL.getRParenLoc()); 4325 return; 4326 } 4327 ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>(); 4328 ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>(); 4329 TypeLoc SrcElemTL = SrcATL.getElementLoc(); 4330 TypeLoc DstElemTL = DstATL.getElementLoc(); 4331 DstElemTL.initializeFullCopy(SrcElemTL); 4332 DstATL.setLBracketLoc(SrcATL.getLBracketLoc()); 4333 DstATL.setSizeExpr(SrcATL.getSizeExpr()); 4334 DstATL.setRBracketLoc(SrcATL.getRBracketLoc()); 4335 } 4336 4337 /// Helper method to turn variable array types into constant array 4338 /// types in certain situations which would otherwise be errors (for 4339 /// GCC compatibility). 4340 static TypeSourceInfo* 4341 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo, 4342 ASTContext &Context, 4343 bool &SizeIsNegative, 4344 llvm::APSInt &Oversized) { 4345 QualType FixedTy 4346 = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context, 4347 SizeIsNegative, Oversized); 4348 if (FixedTy.isNull()) 4349 return 0; 4350 TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy); 4351 FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(), 4352 FixedTInfo->getTypeLoc()); 4353 return FixedTInfo; 4354 } 4355 4356 /// \brief Register the given locally-scoped extern "C" declaration so 4357 /// that it can be found later for redeclarations 4358 void 4359 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, 4360 const LookupResult &Previous, 4361 Scope *S) { 4362 assert(ND->getLexicalDeclContext()->isFunctionOrMethod() && 4363 "Decl is not a locally-scoped decl!"); 4364 // Note that we have a locally-scoped external with this name. 4365 LocallyScopedExternCDecls[ND->getDeclName()] = ND; 4366 } 4367 4368 llvm::DenseMap<DeclarationName, NamedDecl *>::iterator 4369 Sema::findLocallyScopedExternCDecl(DeclarationName Name) { 4370 if (ExternalSource) { 4371 // Load locally-scoped external decls from the external source. 4372 SmallVector<NamedDecl *, 4> Decls; 4373 ExternalSource->ReadLocallyScopedExternCDecls(Decls); 4374 for (unsigned I = 0, N = Decls.size(); I != N; ++I) { 4375 llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos 4376 = LocallyScopedExternCDecls.find(Decls[I]->getDeclName()); 4377 if (Pos == LocallyScopedExternCDecls.end()) 4378 LocallyScopedExternCDecls[Decls[I]->getDeclName()] = Decls[I]; 4379 } 4380 } 4381 4382 return LocallyScopedExternCDecls.find(Name); 4383 } 4384 4385 /// \brief Diagnose function specifiers on a declaration of an identifier that 4386 /// does not identify a function. 4387 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) { 4388 // FIXME: We should probably indicate the identifier in question to avoid 4389 // confusion for constructs like "inline int a(), b;" 4390 if (DS.isInlineSpecified()) 4391 Diag(DS.getInlineSpecLoc(), 4392 diag::err_inline_non_function); 4393 4394 if (DS.isVirtualSpecified()) 4395 Diag(DS.getVirtualSpecLoc(), 4396 diag::err_virtual_non_function); 4397 4398 if (DS.isExplicitSpecified()) 4399 Diag(DS.getExplicitSpecLoc(), 4400 diag::err_explicit_non_function); 4401 4402 if (DS.isNoreturnSpecified()) 4403 Diag(DS.getNoreturnSpecLoc(), 4404 diag::err_noreturn_non_function); 4405 } 4406 4407 NamedDecl* 4408 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, 4409 TypeSourceInfo *TInfo, LookupResult &Previous) { 4410 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1). 4411 if (D.getCXXScopeSpec().isSet()) { 4412 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator) 4413 << D.getCXXScopeSpec().getRange(); 4414 D.setInvalidType(); 4415 // Pretend we didn't see the scope specifier. 4416 DC = CurContext; 4417 Previous.clear(); 4418 } 4419 4420 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 4421 4422 if (D.getDeclSpec().isConstexprSpecified()) 4423 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr) 4424 << 1; 4425 4426 if (D.getName().Kind != UnqualifiedId::IK_Identifier) { 4427 Diag(D.getName().StartLocation, diag::err_typedef_not_identifier) 4428 << D.getName().getSourceRange(); 4429 return 0; 4430 } 4431 4432 TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo); 4433 if (!NewTD) return 0; 4434 4435 // Handle attributes prior to checking for duplicates in MergeVarDecl 4436 ProcessDeclAttributes(S, NewTD, D); 4437 4438 CheckTypedefForVariablyModifiedType(S, NewTD); 4439 4440 bool Redeclaration = D.isRedeclaration(); 4441 NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration); 4442 D.setRedeclaration(Redeclaration); 4443 return ND; 4444 } 4445 4446 void 4447 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) { 4448 // C99 6.7.7p2: If a typedef name specifies a variably modified type 4449 // then it shall have block scope. 4450 // Note that variably modified types must be fixed before merging the decl so 4451 // that redeclarations will match. 4452 TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo(); 4453 QualType T = TInfo->getType(); 4454 if (T->isVariablyModifiedType()) { 4455 getCurFunction()->setHasBranchProtectedScope(); 4456 4457 if (S->getFnParent() == 0) { 4458 bool SizeIsNegative; 4459 llvm::APSInt Oversized; 4460 TypeSourceInfo *FixedTInfo = 4461 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 4462 SizeIsNegative, 4463 Oversized); 4464 if (FixedTInfo) { 4465 Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size); 4466 NewTD->setTypeSourceInfo(FixedTInfo); 4467 } else { 4468 if (SizeIsNegative) 4469 Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size); 4470 else if (T->isVariableArrayType()) 4471 Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope); 4472 else if (Oversized.getBoolValue()) 4473 Diag(NewTD->getLocation(), diag::err_array_too_large) 4474 << Oversized.toString(10); 4475 else 4476 Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope); 4477 NewTD->setInvalidDecl(); 4478 } 4479 } 4480 } 4481 } 4482 4483 4484 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which 4485 /// declares a typedef-name, either using the 'typedef' type specifier or via 4486 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'. 4487 NamedDecl* 4488 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD, 4489 LookupResult &Previous, bool &Redeclaration) { 4490 // Merge the decl with the existing one if appropriate. If the decl is 4491 // in an outer scope, it isn't the same thing. 4492 FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/ false, 4493 /*ExplicitInstantiationOrSpecialization=*/false); 4494 filterNonConflictingPreviousDecls(Context, NewTD, Previous); 4495 if (!Previous.empty()) { 4496 Redeclaration = true; 4497 MergeTypedefNameDecl(NewTD, Previous); 4498 } 4499 4500 // If this is the C FILE type, notify the AST context. 4501 if (IdentifierInfo *II = NewTD->getIdentifier()) 4502 if (!NewTD->isInvalidDecl() && 4503 NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 4504 if (II->isStr("FILE")) 4505 Context.setFILEDecl(NewTD); 4506 else if (II->isStr("jmp_buf")) 4507 Context.setjmp_bufDecl(NewTD); 4508 else if (II->isStr("sigjmp_buf")) 4509 Context.setsigjmp_bufDecl(NewTD); 4510 else if (II->isStr("ucontext_t")) 4511 Context.setucontext_tDecl(NewTD); 4512 } 4513 4514 return NewTD; 4515 } 4516 4517 /// \brief Determines whether the given declaration is an out-of-scope 4518 /// previous declaration. 4519 /// 4520 /// This routine should be invoked when name lookup has found a 4521 /// previous declaration (PrevDecl) that is not in the scope where a 4522 /// new declaration by the same name is being introduced. If the new 4523 /// declaration occurs in a local scope, previous declarations with 4524 /// linkage may still be considered previous declarations (C99 4525 /// 6.2.2p4-5, C++ [basic.link]p6). 4526 /// 4527 /// \param PrevDecl the previous declaration found by name 4528 /// lookup 4529 /// 4530 /// \param DC the context in which the new declaration is being 4531 /// declared. 4532 /// 4533 /// \returns true if PrevDecl is an out-of-scope previous declaration 4534 /// for a new delcaration with the same name. 4535 static bool 4536 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC, 4537 ASTContext &Context) { 4538 if (!PrevDecl) 4539 return false; 4540 4541 if (!PrevDecl->hasLinkage()) 4542 return false; 4543 4544 if (Context.getLangOpts().CPlusPlus) { 4545 // C++ [basic.link]p6: 4546 // If there is a visible declaration of an entity with linkage 4547 // having the same name and type, ignoring entities declared 4548 // outside the innermost enclosing namespace scope, the block 4549 // scope declaration declares that same entity and receives the 4550 // linkage of the previous declaration. 4551 DeclContext *OuterContext = DC->getRedeclContext(); 4552 if (!OuterContext->isFunctionOrMethod()) 4553 // This rule only applies to block-scope declarations. 4554 return false; 4555 4556 DeclContext *PrevOuterContext = PrevDecl->getDeclContext(); 4557 if (PrevOuterContext->isRecord()) 4558 // We found a member function: ignore it. 4559 return false; 4560 4561 // Find the innermost enclosing namespace for the new and 4562 // previous declarations. 4563 OuterContext = OuterContext->getEnclosingNamespaceContext(); 4564 PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext(); 4565 4566 // The previous declaration is in a different namespace, so it 4567 // isn't the same function. 4568 if (!OuterContext->Equals(PrevOuterContext)) 4569 return false; 4570 } 4571 4572 return true; 4573 } 4574 4575 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) { 4576 CXXScopeSpec &SS = D.getCXXScopeSpec(); 4577 if (!SS.isSet()) return; 4578 DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext())); 4579 } 4580 4581 bool Sema::inferObjCARCLifetime(ValueDecl *decl) { 4582 QualType type = decl->getType(); 4583 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); 4584 if (lifetime == Qualifiers::OCL_Autoreleasing) { 4585 // Various kinds of declaration aren't allowed to be __autoreleasing. 4586 unsigned kind = -1U; 4587 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 4588 if (var->hasAttr<BlocksAttr>()) 4589 kind = 0; // __block 4590 else if (!var->hasLocalStorage()) 4591 kind = 1; // global 4592 } else if (isa<ObjCIvarDecl>(decl)) { 4593 kind = 3; // ivar 4594 } else if (isa<FieldDecl>(decl)) { 4595 kind = 2; // field 4596 } 4597 4598 if (kind != -1U) { 4599 Diag(decl->getLocation(), diag::err_arc_autoreleasing_var) 4600 << kind; 4601 } 4602 } else if (lifetime == Qualifiers::OCL_None) { 4603 // Try to infer lifetime. 4604 if (!type->isObjCLifetimeType()) 4605 return false; 4606 4607 lifetime = type->getObjCARCImplicitLifetime(); 4608 type = Context.getLifetimeQualifiedType(type, lifetime); 4609 decl->setType(type); 4610 } 4611 4612 if (VarDecl *var = dyn_cast<VarDecl>(decl)) { 4613 // Thread-local variables cannot have lifetime. 4614 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone && 4615 var->getTLSKind()) { 4616 Diag(var->getLocation(), diag::err_arc_thread_ownership) 4617 << var->getType(); 4618 return true; 4619 } 4620 } 4621 4622 return false; 4623 } 4624 4625 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) { 4626 // 'weak' only applies to declarations with external linkage. 4627 if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) { 4628 if (ND.getLinkage() != ExternalLinkage) { 4629 S.Diag(Attr->getLocation(), diag::err_attribute_weak_static); 4630 ND.dropAttr<WeakAttr>(); 4631 } 4632 } 4633 if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) { 4634 if (ND.hasExternalLinkage()) { 4635 S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static); 4636 ND.dropAttr<WeakRefAttr>(); 4637 } 4638 } 4639 } 4640 4641 /// Given that we are within the definition of the given function, 4642 /// will that definition behave like C99's 'inline', where the 4643 /// definition is discarded except for optimization purposes? 4644 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) { 4645 // Try to avoid calling GetGVALinkageForFunction. 4646 4647 // All cases of this require the 'inline' keyword. 4648 if (!FD->isInlined()) return false; 4649 4650 // This is only possible in C++ with the gnu_inline attribute. 4651 if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>()) 4652 return false; 4653 4654 // Okay, go ahead and call the relatively-more-expensive function. 4655 4656 #ifndef NDEBUG 4657 // AST quite reasonably asserts that it's working on a function 4658 // definition. We don't really have a way to tell it that we're 4659 // currently defining the function, so just lie to it in +Asserts 4660 // builds. This is an awful hack. 4661 FD->setLazyBody(1); 4662 #endif 4663 4664 bool isC99Inline = (S.Context.GetGVALinkageForFunction(FD) == GVA_C99Inline); 4665 4666 #ifndef NDEBUG 4667 FD->setLazyBody(0); 4668 #endif 4669 4670 return isC99Inline; 4671 } 4672 4673 static bool shouldConsiderLinkage(const VarDecl *VD) { 4674 const DeclContext *DC = VD->getDeclContext()->getRedeclContext(); 4675 if (DC->isFunctionOrMethod()) 4676 return VD->hasExternalStorage(); 4677 if (DC->isFileContext()) 4678 return true; 4679 if (DC->isRecord()) 4680 return false; 4681 llvm_unreachable("Unexpected context"); 4682 } 4683 4684 static bool shouldConsiderLinkage(const FunctionDecl *FD) { 4685 const DeclContext *DC = FD->getDeclContext()->getRedeclContext(); 4686 if (DC->isFileContext() || DC->isFunctionOrMethod()) 4687 return true; 4688 if (DC->isRecord()) 4689 return false; 4690 llvm_unreachable("Unexpected context"); 4691 } 4692 4693 NamedDecl* 4694 Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC, 4695 TypeSourceInfo *TInfo, LookupResult &Previous, 4696 MultiTemplateParamsArg TemplateParamLists) { 4697 QualType R = TInfo->getType(); 4698 DeclarationName Name = GetNameForDeclarator(D).getName(); 4699 4700 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec(); 4701 VarDecl::StorageClass SC = 4702 StorageClassSpecToVarDeclStorageClass(D.getDeclSpec()); 4703 4704 if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16) { 4705 // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and 4706 // half array type (unless the cl_khr_fp16 extension is enabled). 4707 if (Context.getBaseElementType(R)->isHalfType()) { 4708 Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R; 4709 D.setInvalidType(); 4710 } 4711 } 4712 4713 if (SCSpec == DeclSpec::SCS_mutable) { 4714 // mutable can only appear on non-static class members, so it's always 4715 // an error here 4716 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember); 4717 D.setInvalidType(); 4718 SC = SC_None; 4719 } 4720 4721 // C++11 [dcl.stc]p4: 4722 // When thread_local is applied to a variable of block scope the 4723 // storage-class-specifier static is implied if it does not appear 4724 // explicitly. 4725 // Core issue: 'static' is not implied if the variable is declared 'extern'. 4726 if (SCSpec == DeclSpec::SCS_unspecified && 4727 D.getDeclSpec().getThreadStorageClassSpec() == 4728 DeclSpec::TSCS_thread_local && DC->isFunctionOrMethod()) 4729 SC = SC_Static; 4730 4731 IdentifierInfo *II = Name.getAsIdentifierInfo(); 4732 if (!II) { 4733 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) 4734 << Name; 4735 return 0; 4736 } 4737 4738 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 4739 4740 if (!DC->isRecord() && S->getFnParent() == 0) { 4741 // C99 6.9p2: The storage-class specifiers auto and register shall not 4742 // appear in the declaration specifiers in an external declaration. 4743 if (SC == SC_Auto || SC == SC_Register) { 4744 4745 // If this is a register variable with an asm label specified, then this 4746 // is a GNU extension. 4747 if (SC == SC_Register && D.getAsmLabel()) 4748 Diag(D.getIdentifierLoc(), diag::err_unsupported_global_register); 4749 else 4750 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope); 4751 D.setInvalidType(); 4752 } 4753 } 4754 4755 if (getLangOpts().OpenCL) { 4756 // Set up the special work-group-local storage class for variables in the 4757 // OpenCL __local address space. 4758 if (R.getAddressSpace() == LangAS::opencl_local) { 4759 SC = SC_OpenCLWorkGroupLocal; 4760 } 4761 4762 // OpenCL v1.2 s6.9.b p4: 4763 // The sampler type cannot be used with the __local and __global address 4764 // space qualifiers. 4765 if (R->isSamplerT() && (R.getAddressSpace() == LangAS::opencl_local || 4766 R.getAddressSpace() == LangAS::opencl_global)) { 4767 Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace); 4768 } 4769 4770 // OpenCL 1.2 spec, p6.9 r: 4771 // The event type cannot be used to declare a program scope variable. 4772 // The event type cannot be used with the __local, __constant and __global 4773 // address space qualifiers. 4774 if (R->isEventT()) { 4775 if (S->getParent() == 0) { 4776 Diag(D.getLocStart(), diag::err_event_t_global_var); 4777 D.setInvalidType(); 4778 } 4779 4780 if (R.getAddressSpace()) { 4781 Diag(D.getLocStart(), diag::err_event_t_addr_space_qual); 4782 D.setInvalidType(); 4783 } 4784 } 4785 } 4786 4787 bool isExplicitSpecialization = false; 4788 VarDecl *NewVD; 4789 if (!getLangOpts().CPlusPlus) { 4790 NewVD = VarDecl::Create(Context, DC, D.getLocStart(), 4791 D.getIdentifierLoc(), II, 4792 R, TInfo, SC); 4793 4794 if (D.isInvalidType()) 4795 NewVD->setInvalidDecl(); 4796 } else { 4797 if (DC->isRecord() && !CurContext->isRecord()) { 4798 // This is an out-of-line definition of a static data member. 4799 if (SC == SC_Static) { 4800 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 4801 diag::err_static_out_of_line) 4802 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 4803 } 4804 } 4805 if (SC == SC_Static && CurContext->isRecord()) { 4806 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) { 4807 if (RD->isLocalClass()) 4808 Diag(D.getIdentifierLoc(), 4809 diag::err_static_data_member_not_allowed_in_local_class) 4810 << Name << RD->getDeclName(); 4811 4812 // C++98 [class.union]p1: If a union contains a static data member, 4813 // the program is ill-formed. C++11 drops this restriction. 4814 if (RD->isUnion()) 4815 Diag(D.getIdentifierLoc(), 4816 getLangOpts().CPlusPlus11 4817 ? diag::warn_cxx98_compat_static_data_member_in_union 4818 : diag::ext_static_data_member_in_union) << Name; 4819 // We conservatively disallow static data members in anonymous structs. 4820 else if (!RD->getDeclName()) 4821 Diag(D.getIdentifierLoc(), 4822 diag::err_static_data_member_not_allowed_in_anon_struct) 4823 << Name << RD->isUnion(); 4824 } 4825 } 4826 4827 // Match up the template parameter lists with the scope specifier, then 4828 // determine whether we have a template or a template specialization. 4829 isExplicitSpecialization = false; 4830 bool Invalid = false; 4831 if (TemplateParameterList *TemplateParams 4832 = MatchTemplateParametersToScopeSpecifier( 4833 D.getDeclSpec().getLocStart(), 4834 D.getIdentifierLoc(), 4835 D.getCXXScopeSpec(), 4836 TemplateParamLists.data(), 4837 TemplateParamLists.size(), 4838 /*never a friend*/ false, 4839 isExplicitSpecialization, 4840 Invalid)) { 4841 if (TemplateParams->size() > 0) { 4842 // There is no such thing as a variable template. 4843 Diag(D.getIdentifierLoc(), diag::err_template_variable) 4844 << II 4845 << SourceRange(TemplateParams->getTemplateLoc(), 4846 TemplateParams->getRAngleLoc()); 4847 return 0; 4848 } else { 4849 // There is an extraneous 'template<>' for this variable. Complain 4850 // about it, but allow the declaration of the variable. 4851 Diag(TemplateParams->getTemplateLoc(), 4852 diag::err_template_variable_noparams) 4853 << II 4854 << SourceRange(TemplateParams->getTemplateLoc(), 4855 TemplateParams->getRAngleLoc()); 4856 } 4857 } 4858 4859 NewVD = VarDecl::Create(Context, DC, D.getLocStart(), 4860 D.getIdentifierLoc(), II, 4861 R, TInfo, SC); 4862 4863 // If this decl has an auto type in need of deduction, make a note of the 4864 // Decl so we can diagnose uses of it in its own initializer. 4865 if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType()) 4866 ParsingInitForAutoVars.insert(NewVD); 4867 4868 if (D.isInvalidType() || Invalid) 4869 NewVD->setInvalidDecl(); 4870 4871 SetNestedNameSpecifier(NewVD, D); 4872 4873 if (TemplateParamLists.size() > 0 && D.getCXXScopeSpec().isSet()) { 4874 NewVD->setTemplateParameterListsInfo(Context, 4875 TemplateParamLists.size(), 4876 TemplateParamLists.data()); 4877 } 4878 4879 if (D.getDeclSpec().isConstexprSpecified()) 4880 NewVD->setConstexpr(true); 4881 } 4882 4883 // Set the lexical context. If the declarator has a C++ scope specifier, the 4884 // lexical context will be different from the semantic context. 4885 NewVD->setLexicalDeclContext(CurContext); 4886 4887 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) { 4888 if (NewVD->hasLocalStorage()) 4889 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 4890 diag::err_thread_non_global) 4891 << DeclSpec::getSpecifierName(TSCS); 4892 else if (!Context.getTargetInfo().isTLSSupported()) 4893 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 4894 diag::err_thread_unsupported); 4895 else 4896 NewVD->setTSCSpec(TSCS); 4897 } 4898 4899 // C99 6.7.4p3 4900 // An inline definition of a function with external linkage shall 4901 // not contain a definition of a modifiable object with static or 4902 // thread storage duration... 4903 // We only apply this when the function is required to be defined 4904 // elsewhere, i.e. when the function is not 'extern inline'. Note 4905 // that a local variable with thread storage duration still has to 4906 // be marked 'static'. Also note that it's possible to get these 4907 // semantics in C++ using __attribute__((gnu_inline)). 4908 if (SC == SC_Static && S->getFnParent() != 0 && 4909 !NewVD->getType().isConstQualified()) { 4910 FunctionDecl *CurFD = getCurFunctionDecl(); 4911 if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) { 4912 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 4913 diag::warn_static_local_in_extern_inline); 4914 MaybeSuggestAddingStaticToDecl(CurFD); 4915 } 4916 } 4917 4918 if (D.getDeclSpec().isModulePrivateSpecified()) { 4919 if (isExplicitSpecialization) 4920 Diag(NewVD->getLocation(), diag::err_module_private_specialization) 4921 << 2 4922 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 4923 else if (NewVD->hasLocalStorage()) 4924 Diag(NewVD->getLocation(), diag::err_module_private_local) 4925 << 0 << NewVD->getDeclName() 4926 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 4927 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 4928 else 4929 NewVD->setModulePrivate(); 4930 } 4931 4932 // Handle attributes prior to checking for duplicates in MergeVarDecl 4933 ProcessDeclAttributes(S, NewVD, D); 4934 4935 if (NewVD->hasAttrs()) 4936 CheckAlignasUnderalignment(NewVD); 4937 4938 if (getLangOpts().CUDA) { 4939 // CUDA B.2.5: "__shared__ and __constant__ variables have implied static 4940 // storage [duration]." 4941 if (SC == SC_None && S->getFnParent() != 0 && 4942 (NewVD->hasAttr<CUDASharedAttr>() || 4943 NewVD->hasAttr<CUDAConstantAttr>())) { 4944 NewVD->setStorageClass(SC_Static); 4945 } 4946 } 4947 4948 // In auto-retain/release, infer strong retension for variables of 4949 // retainable type. 4950 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD)) 4951 NewVD->setInvalidDecl(); 4952 4953 // Handle GNU asm-label extension (encoded as an attribute). 4954 if (Expr *E = (Expr*)D.getAsmLabel()) { 4955 // The parser guarantees this is a string. 4956 StringLiteral *SE = cast<StringLiteral>(E); 4957 StringRef Label = SE->getString(); 4958 if (S->getFnParent() != 0) { 4959 switch (SC) { 4960 case SC_None: 4961 case SC_Auto: 4962 Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label; 4963 break; 4964 case SC_Register: 4965 if (!Context.getTargetInfo().isValidGCCRegisterName(Label)) 4966 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label; 4967 break; 4968 case SC_Static: 4969 case SC_Extern: 4970 case SC_PrivateExtern: 4971 case SC_OpenCLWorkGroupLocal: 4972 break; 4973 } 4974 } 4975 4976 NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), 4977 Context, Label)); 4978 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 4979 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 4980 ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier()); 4981 if (I != ExtnameUndeclaredIdentifiers.end()) { 4982 NewVD->addAttr(I->second); 4983 ExtnameUndeclaredIdentifiers.erase(I); 4984 } 4985 } 4986 4987 // Diagnose shadowed variables before filtering for scope. 4988 if (!D.getCXXScopeSpec().isSet()) 4989 CheckShadow(S, NewVD, Previous); 4990 4991 // Don't consider existing declarations that are in a different 4992 // scope and are out-of-semantic-context declarations (if the new 4993 // declaration has linkage). 4994 FilterLookupForScope(Previous, DC, S, shouldConsiderLinkage(NewVD), 4995 isExplicitSpecialization); 4996 4997 if (!getLangOpts().CPlusPlus) { 4998 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 4999 } else { 5000 // Merge the decl with the existing one if appropriate. 5001 if (!Previous.empty()) { 5002 if (Previous.isSingleResult() && 5003 isa<FieldDecl>(Previous.getFoundDecl()) && 5004 D.getCXXScopeSpec().isSet()) { 5005 // The user tried to define a non-static data member 5006 // out-of-line (C++ [dcl.meaning]p1). 5007 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line) 5008 << D.getCXXScopeSpec().getRange(); 5009 Previous.clear(); 5010 NewVD->setInvalidDecl(); 5011 } 5012 } else if (D.getCXXScopeSpec().isSet()) { 5013 // No previous declaration in the qualifying scope. 5014 Diag(D.getIdentifierLoc(), diag::err_no_member) 5015 << Name << computeDeclContext(D.getCXXScopeSpec(), true) 5016 << D.getCXXScopeSpec().getRange(); 5017 NewVD->setInvalidDecl(); 5018 } 5019 5020 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous)); 5021 5022 // This is an explicit specialization of a static data member. Check it. 5023 if (isExplicitSpecialization && !NewVD->isInvalidDecl() && 5024 CheckMemberSpecialization(NewVD, Previous)) 5025 NewVD->setInvalidDecl(); 5026 } 5027 5028 ProcessPragmaWeak(S, NewVD); 5029 checkAttributesAfterMerging(*this, *NewVD); 5030 5031 // If this is a locally-scoped extern C variable, update the map of 5032 // such variables. 5033 if (CurContext->isFunctionOrMethod() && NewVD->isExternC() && 5034 !NewVD->isInvalidDecl()) 5035 RegisterLocallyScopedExternCDecl(NewVD, Previous, S); 5036 5037 return NewVD; 5038 } 5039 5040 /// \brief Diagnose variable or built-in function shadowing. Implements 5041 /// -Wshadow. 5042 /// 5043 /// This method is called whenever a VarDecl is added to a "useful" 5044 /// scope. 5045 /// 5046 /// \param S the scope in which the shadowing name is being declared 5047 /// \param R the lookup of the name 5048 /// 5049 void Sema::CheckShadow(Scope *S, VarDecl *D, const LookupResult& R) { 5050 // Return if warning is ignored. 5051 if (Diags.getDiagnosticLevel(diag::warn_decl_shadow, R.getNameLoc()) == 5052 DiagnosticsEngine::Ignored) 5053 return; 5054 5055 // Don't diagnose declarations at file scope. 5056 if (D->hasGlobalStorage()) 5057 return; 5058 5059 DeclContext *NewDC = D->getDeclContext(); 5060 5061 // Only diagnose if we're shadowing an unambiguous field or variable. 5062 if (R.getResultKind() != LookupResult::Found) 5063 return; 5064 5065 NamedDecl* ShadowedDecl = R.getFoundDecl(); 5066 if (!isa<VarDecl>(ShadowedDecl) && !isa<FieldDecl>(ShadowedDecl)) 5067 return; 5068 5069 // Fields are not shadowed by variables in C++ static methods. 5070 if (isa<FieldDecl>(ShadowedDecl)) 5071 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC)) 5072 if (MD->isStatic()) 5073 return; 5074 5075 if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl)) 5076 if (shadowedVar->isExternC()) { 5077 // For shadowing external vars, make sure that we point to the global 5078 // declaration, not a locally scoped extern declaration. 5079 for (VarDecl::redecl_iterator 5080 I = shadowedVar->redecls_begin(), E = shadowedVar->redecls_end(); 5081 I != E; ++I) 5082 if (I->isFileVarDecl()) { 5083 ShadowedDecl = *I; 5084 break; 5085 } 5086 } 5087 5088 DeclContext *OldDC = ShadowedDecl->getDeclContext(); 5089 5090 // Only warn about certain kinds of shadowing for class members. 5091 if (NewDC && NewDC->isRecord()) { 5092 // In particular, don't warn about shadowing non-class members. 5093 if (!OldDC->isRecord()) 5094 return; 5095 5096 // TODO: should we warn about static data members shadowing 5097 // static data members from base classes? 5098 5099 // TODO: don't diagnose for inaccessible shadowed members. 5100 // This is hard to do perfectly because we might friend the 5101 // shadowing context, but that's just a false negative. 5102 } 5103 5104 // Determine what kind of declaration we're shadowing. 5105 unsigned Kind; 5106 if (isa<RecordDecl>(OldDC)) { 5107 if (isa<FieldDecl>(ShadowedDecl)) 5108 Kind = 3; // field 5109 else 5110 Kind = 2; // static data member 5111 } else if (OldDC->isFileContext()) 5112 Kind = 1; // global 5113 else 5114 Kind = 0; // local 5115 5116 DeclarationName Name = R.getLookupName(); 5117 5118 // Emit warning and note. 5119 Diag(R.getNameLoc(), diag::warn_decl_shadow) << Name << Kind << OldDC; 5120 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration); 5121 } 5122 5123 /// \brief Check -Wshadow without the advantage of a previous lookup. 5124 void Sema::CheckShadow(Scope *S, VarDecl *D) { 5125 if (Diags.getDiagnosticLevel(diag::warn_decl_shadow, D->getLocation()) == 5126 DiagnosticsEngine::Ignored) 5127 return; 5128 5129 LookupResult R(*this, D->getDeclName(), D->getLocation(), 5130 Sema::LookupOrdinaryName, Sema::ForRedeclaration); 5131 LookupName(R, S); 5132 CheckShadow(S, D, R); 5133 } 5134 5135 template<typename T> 5136 static bool mayConflictWithNonVisibleExternC(const T *ND) { 5137 const DeclContext *DC = ND->getDeclContext(); 5138 if (DC->getRedeclContext()->isTranslationUnit()) 5139 return true; 5140 5141 // We know that is the first decl we see, other than function local 5142 // extern C ones. If this is C++ and the decl is not in a extern C context 5143 // it cannot have C language linkage. Avoid calling isExternC in that case. 5144 // We need to this because of code like 5145 // 5146 // namespace { struct bar {}; } 5147 // auto foo = bar(); 5148 // 5149 // This code runs before the init of foo is set, and therefore before 5150 // the type of foo is known. Not knowing the type we cannot know its linkage 5151 // unless it is in an extern C block. 5152 if (!ND->isInExternCContext()) { 5153 const ASTContext &Context = ND->getASTContext(); 5154 if (Context.getLangOpts().CPlusPlus) 5155 return false; 5156 } 5157 5158 return ND->isExternC(); 5159 } 5160 5161 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) { 5162 // If the decl is already known invalid, don't check it. 5163 if (NewVD->isInvalidDecl()) 5164 return; 5165 5166 TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo(); 5167 QualType T = TInfo->getType(); 5168 5169 // Defer checking an 'auto' type until its initializer is attached. 5170 if (T->isUndeducedType()) 5171 return; 5172 5173 if (T->isObjCObjectType()) { 5174 Diag(NewVD->getLocation(), diag::err_statically_allocated_object) 5175 << FixItHint::CreateInsertion(NewVD->getLocation(), "*"); 5176 T = Context.getObjCObjectPointerType(T); 5177 NewVD->setType(T); 5178 } 5179 5180 // Emit an error if an address space was applied to decl with local storage. 5181 // This includes arrays of objects with address space qualifiers, but not 5182 // automatic variables that point to other address spaces. 5183 // ISO/IEC TR 18037 S5.1.2 5184 if (NewVD->hasLocalStorage() && T.getAddressSpace() != 0) { 5185 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl); 5186 NewVD->setInvalidDecl(); 5187 return; 5188 } 5189 5190 // OpenCL v1.2 s6.5 - All program scope variables must be declared in the 5191 // __constant address space. 5192 if (getLangOpts().OpenCL && NewVD->isFileVarDecl() 5193 && T.getAddressSpace() != LangAS::opencl_constant 5194 && !T->isSamplerT()){ 5195 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space); 5196 NewVD->setInvalidDecl(); 5197 return; 5198 } 5199 5200 // OpenCL v1.2 s6.8 -- The static qualifier is valid only in program 5201 // scope. 5202 if ((getLangOpts().OpenCLVersion >= 120) 5203 && NewVD->isStaticLocal()) { 5204 Diag(NewVD->getLocation(), diag::err_static_function_scope); 5205 NewVD->setInvalidDecl(); 5206 return; 5207 } 5208 5209 if (NewVD->hasLocalStorage() && T.isObjCGCWeak() 5210 && !NewVD->hasAttr<BlocksAttr>()) { 5211 if (getLangOpts().getGC() != LangOptions::NonGC) 5212 Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local); 5213 else { 5214 assert(!getLangOpts().ObjCAutoRefCount); 5215 Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local); 5216 } 5217 } 5218 5219 bool isVM = T->isVariablyModifiedType(); 5220 if (isVM || NewVD->hasAttr<CleanupAttr>() || 5221 NewVD->hasAttr<BlocksAttr>()) 5222 getCurFunction()->setHasBranchProtectedScope(); 5223 5224 if ((isVM && NewVD->hasLinkage()) || 5225 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { 5226 bool SizeIsNegative; 5227 llvm::APSInt Oversized; 5228 TypeSourceInfo *FixedTInfo = 5229 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 5230 SizeIsNegative, Oversized); 5231 if (FixedTInfo == 0 && T->isVariableArrayType()) { 5232 const VariableArrayType *VAT = Context.getAsVariableArrayType(T); 5233 // FIXME: This won't give the correct result for 5234 // int a[10][n]; 5235 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange(); 5236 5237 if (NewVD->isFileVarDecl()) 5238 Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope) 5239 << SizeRange; 5240 else if (NewVD->getStorageClass() == SC_Static) 5241 Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage) 5242 << SizeRange; 5243 else 5244 Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage) 5245 << SizeRange; 5246 NewVD->setInvalidDecl(); 5247 return; 5248 } 5249 5250 if (FixedTInfo == 0) { 5251 if (NewVD->isFileVarDecl()) 5252 Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope); 5253 else 5254 Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage); 5255 NewVD->setInvalidDecl(); 5256 return; 5257 } 5258 5259 Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size); 5260 NewVD->setType(FixedTInfo->getType()); 5261 NewVD->setTypeSourceInfo(FixedTInfo); 5262 } 5263 5264 if (T->isVoidType() && NewVD->isThisDeclarationADefinition()) { 5265 Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type) 5266 << T; 5267 NewVD->setInvalidDecl(); 5268 return; 5269 } 5270 5271 if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) { 5272 Diag(NewVD->getLocation(), diag::err_block_on_nonlocal); 5273 NewVD->setInvalidDecl(); 5274 return; 5275 } 5276 5277 if (isVM && NewVD->hasAttr<BlocksAttr>()) { 5278 Diag(NewVD->getLocation(), diag::err_block_on_vm); 5279 NewVD->setInvalidDecl(); 5280 return; 5281 } 5282 5283 if (NewVD->isConstexpr() && !T->isDependentType() && 5284 RequireLiteralType(NewVD->getLocation(), T, 5285 diag::err_constexpr_var_non_literal)) { 5286 // Can't perform this check until the type is deduced. 5287 NewVD->setInvalidDecl(); 5288 return; 5289 } 5290 } 5291 5292 /// \brief Perform semantic checking on a newly-created variable 5293 /// declaration. 5294 /// 5295 /// This routine performs all of the type-checking required for a 5296 /// variable declaration once it has been built. It is used both to 5297 /// check variables after they have been parsed and their declarators 5298 /// have been translated into a declaration, and to check variables 5299 /// that have been instantiated from a template. 5300 /// 5301 /// Sets NewVD->isInvalidDecl() if an error was encountered. 5302 /// 5303 /// Returns true if the variable declaration is a redeclaration. 5304 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, 5305 LookupResult &Previous) { 5306 CheckVariableDeclarationType(NewVD); 5307 5308 // If the decl is already known invalid, don't check it. 5309 if (NewVD->isInvalidDecl()) 5310 return false; 5311 5312 // If we did not find anything by this name, look for a non-visible 5313 // extern "C" declaration with the same name. 5314 // 5315 // Clang has a lot of problems with extern local declarations. 5316 // The actual standards text here is: 5317 // 5318 // C++11 [basic.link]p6: 5319 // The name of a function declared in block scope and the name 5320 // of a variable declared by a block scope extern declaration 5321 // have linkage. If there is a visible declaration of an entity 5322 // with linkage having the same name and type, ignoring entities 5323 // declared outside the innermost enclosing namespace scope, the 5324 // block scope declaration declares that same entity and 5325 // receives the linkage of the previous declaration. 5326 // 5327 // C11 6.2.7p4: 5328 // For an identifier with internal or external linkage declared 5329 // in a scope in which a prior declaration of that identifier is 5330 // visible, if the prior declaration specifies internal or 5331 // external linkage, the type of the identifier at the later 5332 // declaration becomes the composite type. 5333 // 5334 // The most important point here is that we're not allowed to 5335 // update our understanding of the type according to declarations 5336 // not in scope. 5337 bool PreviousWasHidden = false; 5338 if (Previous.empty() && mayConflictWithNonVisibleExternC(NewVD)) { 5339 llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos 5340 = findLocallyScopedExternCDecl(NewVD->getDeclName()); 5341 if (Pos != LocallyScopedExternCDecls.end()) { 5342 Previous.addDecl(Pos->second); 5343 PreviousWasHidden = true; 5344 } 5345 } 5346 5347 // Filter out any non-conflicting previous declarations. 5348 filterNonConflictingPreviousDecls(Context, NewVD, Previous); 5349 5350 if (!Previous.empty()) { 5351 MergeVarDecl(NewVD, Previous, PreviousWasHidden); 5352 return true; 5353 } 5354 return false; 5355 } 5356 5357 /// \brief Data used with FindOverriddenMethod 5358 struct FindOverriddenMethodData { 5359 Sema *S; 5360 CXXMethodDecl *Method; 5361 }; 5362 5363 /// \brief Member lookup function that determines whether a given C++ 5364 /// method overrides a method in a base class, to be used with 5365 /// CXXRecordDecl::lookupInBases(). 5366 static bool FindOverriddenMethod(const CXXBaseSpecifier *Specifier, 5367 CXXBasePath &Path, 5368 void *UserData) { 5369 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl(); 5370 5371 FindOverriddenMethodData *Data 5372 = reinterpret_cast<FindOverriddenMethodData*>(UserData); 5373 5374 DeclarationName Name = Data->Method->getDeclName(); 5375 5376 // FIXME: Do we care about other names here too? 5377 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 5378 // We really want to find the base class destructor here. 5379 QualType T = Data->S->Context.getTypeDeclType(BaseRecord); 5380 CanQualType CT = Data->S->Context.getCanonicalType(T); 5381 5382 Name = Data->S->Context.DeclarationNames.getCXXDestructorName(CT); 5383 } 5384 5385 for (Path.Decls = BaseRecord->lookup(Name); 5386 !Path.Decls.empty(); 5387 Path.Decls = Path.Decls.slice(1)) { 5388 NamedDecl *D = Path.Decls.front(); 5389 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 5390 if (MD->isVirtual() && !Data->S->IsOverload(Data->Method, MD, false)) 5391 return true; 5392 } 5393 } 5394 5395 return false; 5396 } 5397 5398 namespace { 5399 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted }; 5400 } 5401 /// \brief Report an error regarding overriding, along with any relevant 5402 /// overriden methods. 5403 /// 5404 /// \param DiagID the primary error to report. 5405 /// \param MD the overriding method. 5406 /// \param OEK which overrides to include as notes. 5407 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD, 5408 OverrideErrorKind OEK = OEK_All) { 5409 S.Diag(MD->getLocation(), DiagID) << MD->getDeclName(); 5410 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), 5411 E = MD->end_overridden_methods(); 5412 I != E; ++I) { 5413 // This check (& the OEK parameter) could be replaced by a predicate, but 5414 // without lambdas that would be overkill. This is still nicer than writing 5415 // out the diag loop 3 times. 5416 if ((OEK == OEK_All) || 5417 (OEK == OEK_NonDeleted && !(*I)->isDeleted()) || 5418 (OEK == OEK_Deleted && (*I)->isDeleted())) 5419 S.Diag((*I)->getLocation(), diag::note_overridden_virtual_function); 5420 } 5421 } 5422 5423 /// AddOverriddenMethods - See if a method overrides any in the base classes, 5424 /// and if so, check that it's a valid override and remember it. 5425 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) { 5426 // Look for virtual methods in base classes that this method might override. 5427 CXXBasePaths Paths; 5428 FindOverriddenMethodData Data; 5429 Data.Method = MD; 5430 Data.S = this; 5431 bool hasDeletedOverridenMethods = false; 5432 bool hasNonDeletedOverridenMethods = false; 5433 bool AddedAny = false; 5434 if (DC->lookupInBases(&FindOverriddenMethod, &Data, Paths)) { 5435 for (CXXBasePaths::decl_iterator I = Paths.found_decls_begin(), 5436 E = Paths.found_decls_end(); I != E; ++I) { 5437 if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(*I)) { 5438 MD->addOverriddenMethod(OldMD->getCanonicalDecl()); 5439 if (!CheckOverridingFunctionReturnType(MD, OldMD) && 5440 !CheckOverridingFunctionAttributes(MD, OldMD) && 5441 !CheckOverridingFunctionExceptionSpec(MD, OldMD) && 5442 !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) { 5443 hasDeletedOverridenMethods |= OldMD->isDeleted(); 5444 hasNonDeletedOverridenMethods |= !OldMD->isDeleted(); 5445 AddedAny = true; 5446 } 5447 } 5448 } 5449 } 5450 5451 if (hasDeletedOverridenMethods && !MD->isDeleted()) { 5452 ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted); 5453 } 5454 if (hasNonDeletedOverridenMethods && MD->isDeleted()) { 5455 ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted); 5456 } 5457 5458 return AddedAny; 5459 } 5460 5461 namespace { 5462 // Struct for holding all of the extra arguments needed by 5463 // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator. 5464 struct ActOnFDArgs { 5465 Scope *S; 5466 Declarator &D; 5467 MultiTemplateParamsArg TemplateParamLists; 5468 bool AddToScope; 5469 }; 5470 } 5471 5472 namespace { 5473 5474 // Callback to only accept typo corrections that have a non-zero edit distance. 5475 // Also only accept corrections that have the same parent decl. 5476 class DifferentNameValidatorCCC : public CorrectionCandidateCallback { 5477 public: 5478 DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD, 5479 CXXRecordDecl *Parent) 5480 : Context(Context), OriginalFD(TypoFD), 5481 ExpectedParent(Parent ? Parent->getCanonicalDecl() : 0) {} 5482 5483 virtual bool ValidateCandidate(const TypoCorrection &candidate) { 5484 if (candidate.getEditDistance() == 0) 5485 return false; 5486 5487 SmallVector<unsigned, 1> MismatchedParams; 5488 for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(), 5489 CDeclEnd = candidate.end(); 5490 CDecl != CDeclEnd; ++CDecl) { 5491 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 5492 5493 if (FD && !FD->hasBody() && 5494 hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) { 5495 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 5496 CXXRecordDecl *Parent = MD->getParent(); 5497 if (Parent && Parent->getCanonicalDecl() == ExpectedParent) 5498 return true; 5499 } else if (!ExpectedParent) { 5500 return true; 5501 } 5502 } 5503 } 5504 5505 return false; 5506 } 5507 5508 private: 5509 ASTContext &Context; 5510 FunctionDecl *OriginalFD; 5511 CXXRecordDecl *ExpectedParent; 5512 }; 5513 5514 } 5515 5516 /// \brief Generate diagnostics for an invalid function redeclaration. 5517 /// 5518 /// This routine handles generating the diagnostic messages for an invalid 5519 /// function redeclaration, including finding possible similar declarations 5520 /// or performing typo correction if there are no previous declarations with 5521 /// the same name. 5522 /// 5523 /// Returns a NamedDecl iff typo correction was performed and substituting in 5524 /// the new declaration name does not cause new errors. 5525 static NamedDecl* DiagnoseInvalidRedeclaration( 5526 Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD, 5527 ActOnFDArgs &ExtraArgs) { 5528 NamedDecl *Result = NULL; 5529 DeclarationName Name = NewFD->getDeclName(); 5530 DeclContext *NewDC = NewFD->getDeclContext(); 5531 LookupResult Prev(SemaRef, Name, NewFD->getLocation(), 5532 Sema::LookupOrdinaryName, Sema::ForRedeclaration); 5533 SmallVector<unsigned, 1> MismatchedParams; 5534 SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches; 5535 TypoCorrection Correction; 5536 bool isFriendDecl = (SemaRef.getLangOpts().CPlusPlus && 5537 ExtraArgs.D.getDeclSpec().isFriendSpecified()); 5538 unsigned DiagMsg = isFriendDecl ? diag::err_no_matching_local_friend 5539 : diag::err_member_def_does_not_match; 5540 5541 NewFD->setInvalidDecl(); 5542 SemaRef.LookupQualifiedName(Prev, NewDC); 5543 assert(!Prev.isAmbiguous() && 5544 "Cannot have an ambiguity in previous-declaration lookup"); 5545 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 5546 DifferentNameValidatorCCC Validator(SemaRef.Context, NewFD, 5547 MD ? MD->getParent() : 0); 5548 if (!Prev.empty()) { 5549 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end(); 5550 Func != FuncEnd; ++Func) { 5551 FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func); 5552 if (FD && 5553 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 5554 // Add 1 to the index so that 0 can mean the mismatch didn't 5555 // involve a parameter 5556 unsigned ParamNum = 5557 MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1; 5558 NearMatches.push_back(std::make_pair(FD, ParamNum)); 5559 } 5560 } 5561 // If the qualified name lookup yielded nothing, try typo correction 5562 } else if ((Correction = SemaRef.CorrectTypo(Prev.getLookupNameInfo(), 5563 Prev.getLookupKind(), 0, 0, 5564 Validator, NewDC))) { 5565 // Trap errors. 5566 Sema::SFINAETrap Trap(SemaRef); 5567 5568 // Set up everything for the call to ActOnFunctionDeclarator 5569 ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(), 5570 ExtraArgs.D.getIdentifierLoc()); 5571 Previous.clear(); 5572 Previous.setLookupName(Correction.getCorrection()); 5573 for (TypoCorrection::decl_iterator CDecl = Correction.begin(), 5574 CDeclEnd = Correction.end(); 5575 CDecl != CDeclEnd; ++CDecl) { 5576 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl); 5577 if (FD && !FD->hasBody() && 5578 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) { 5579 Previous.addDecl(FD); 5580 } 5581 } 5582 bool wasRedeclaration = ExtraArgs.D.isRedeclaration(); 5583 // TODO: Refactor ActOnFunctionDeclarator so that we can call only the 5584 // pieces need to verify the typo-corrected C++ declaraction and hopefully 5585 // eliminate the need for the parameter pack ExtraArgs. 5586 Result = SemaRef.ActOnFunctionDeclarator( 5587 ExtraArgs.S, ExtraArgs.D, 5588 Correction.getCorrectionDecl()->getDeclContext(), 5589 NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists, 5590 ExtraArgs.AddToScope); 5591 if (Trap.hasErrorOccurred()) { 5592 // Pretend the typo correction never occurred 5593 ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(), 5594 ExtraArgs.D.getIdentifierLoc()); 5595 ExtraArgs.D.setRedeclaration(wasRedeclaration); 5596 Previous.clear(); 5597 Previous.setLookupName(Name); 5598 Result = NULL; 5599 } else { 5600 for (LookupResult::iterator Func = Previous.begin(), 5601 FuncEnd = Previous.end(); 5602 Func != FuncEnd; ++Func) { 5603 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func)) 5604 NearMatches.push_back(std::make_pair(FD, 0)); 5605 } 5606 } 5607 if (NearMatches.empty()) { 5608 // Ignore the correction if it didn't yield any close FunctionDecl matches 5609 Correction = TypoCorrection(); 5610 } else { 5611 DiagMsg = isFriendDecl ? diag::err_no_matching_local_friend_suggest 5612 : diag::err_member_def_does_not_match_suggest; 5613 } 5614 } 5615 5616 if (Correction) { 5617 // FIXME: use Correction.getCorrectionRange() instead of computing the range 5618 // here. This requires passing in the CXXScopeSpec to CorrectTypo which in 5619 // turn causes the correction to fully qualify the name. If we fix 5620 // CorrectTypo to minimally qualify then this change should be good. 5621 SourceRange FixItLoc(NewFD->getLocation()); 5622 CXXScopeSpec &SS = ExtraArgs.D.getCXXScopeSpec(); 5623 if (Correction.getCorrectionSpecifier() && SS.isValid()) 5624 FixItLoc.setBegin(SS.getBeginLoc()); 5625 SemaRef.Diag(NewFD->getLocStart(), DiagMsg) 5626 << Name << NewDC << Correction.getQuoted(SemaRef.getLangOpts()) 5627 << FixItHint::CreateReplacement( 5628 FixItLoc, Correction.getAsString(SemaRef.getLangOpts())); 5629 } else { 5630 SemaRef.Diag(NewFD->getLocation(), DiagMsg) 5631 << Name << NewDC << NewFD->getLocation(); 5632 } 5633 5634 bool NewFDisConst = false; 5635 if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD)) 5636 NewFDisConst = NewMD->isConst(); 5637 5638 for (SmallVector<std::pair<FunctionDecl *, unsigned>, 1>::iterator 5639 NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end(); 5640 NearMatch != NearMatchEnd; ++NearMatch) { 5641 FunctionDecl *FD = NearMatch->first; 5642 bool FDisConst = false; 5643 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 5644 FDisConst = MD->isConst(); 5645 5646 if (unsigned Idx = NearMatch->second) { 5647 ParmVarDecl *FDParam = FD->getParamDecl(Idx-1); 5648 SourceLocation Loc = FDParam->getTypeSpecStartLoc(); 5649 if (Loc.isInvalid()) Loc = FD->getLocation(); 5650 SemaRef.Diag(Loc, diag::note_member_def_close_param_match) 5651 << Idx << FDParam->getType() << NewFD->getParamDecl(Idx-1)->getType(); 5652 } else if (Correction) { 5653 SemaRef.Diag(FD->getLocation(), diag::note_previous_decl) 5654 << Correction.getQuoted(SemaRef.getLangOpts()); 5655 } else if (FDisConst != NewFDisConst) { 5656 SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match) 5657 << NewFDisConst << FD->getSourceRange().getEnd(); 5658 } else 5659 SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_match); 5660 } 5661 return Result; 5662 } 5663 5664 static FunctionDecl::StorageClass getFunctionStorageClass(Sema &SemaRef, 5665 Declarator &D) { 5666 switch (D.getDeclSpec().getStorageClassSpec()) { 5667 default: llvm_unreachable("Unknown storage class!"); 5668 case DeclSpec::SCS_auto: 5669 case DeclSpec::SCS_register: 5670 case DeclSpec::SCS_mutable: 5671 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 5672 diag::err_typecheck_sclass_func); 5673 D.setInvalidType(); 5674 break; 5675 case DeclSpec::SCS_unspecified: break; 5676 case DeclSpec::SCS_extern: 5677 if (D.getDeclSpec().isExternInLinkageSpec()) 5678 return SC_None; 5679 return SC_Extern; 5680 case DeclSpec::SCS_static: { 5681 if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) { 5682 // C99 6.7.1p5: 5683 // The declaration of an identifier for a function that has 5684 // block scope shall have no explicit storage-class specifier 5685 // other than extern 5686 // See also (C++ [dcl.stc]p4). 5687 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(), 5688 diag::err_static_block_func); 5689 break; 5690 } else 5691 return SC_Static; 5692 } 5693 case DeclSpec::SCS_private_extern: return SC_PrivateExtern; 5694 } 5695 5696 // No explicit storage class has already been returned 5697 return SC_None; 5698 } 5699 5700 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D, 5701 DeclContext *DC, QualType &R, 5702 TypeSourceInfo *TInfo, 5703 FunctionDecl::StorageClass SC, 5704 bool &IsVirtualOkay) { 5705 DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D); 5706 DeclarationName Name = NameInfo.getName(); 5707 5708 FunctionDecl *NewFD = 0; 5709 bool isInline = D.getDeclSpec().isInlineSpecified(); 5710 5711 if (!SemaRef.getLangOpts().CPlusPlus) { 5712 // Determine whether the function was written with a 5713 // prototype. This true when: 5714 // - there is a prototype in the declarator, or 5715 // - the type R of the function is some kind of typedef or other reference 5716 // to a type name (which eventually refers to a function type). 5717 bool HasPrototype = 5718 (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) || 5719 (!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType()); 5720 5721 NewFD = FunctionDecl::Create(SemaRef.Context, DC, 5722 D.getLocStart(), NameInfo, R, 5723 TInfo, SC, isInline, 5724 HasPrototype, false); 5725 if (D.isInvalidType()) 5726 NewFD->setInvalidDecl(); 5727 5728 // Set the lexical context. 5729 NewFD->setLexicalDeclContext(SemaRef.CurContext); 5730 5731 return NewFD; 5732 } 5733 5734 bool isExplicit = D.getDeclSpec().isExplicitSpecified(); 5735 bool isConstexpr = D.getDeclSpec().isConstexprSpecified(); 5736 5737 // Check that the return type is not an abstract class type. 5738 // For record types, this is done by the AbstractClassUsageDiagnoser once 5739 // the class has been completely parsed. 5740 if (!DC->isRecord() && 5741 SemaRef.RequireNonAbstractType(D.getIdentifierLoc(), 5742 R->getAs<FunctionType>()->getResultType(), 5743 diag::err_abstract_type_in_decl, 5744 SemaRef.AbstractReturnType)) 5745 D.setInvalidType(); 5746 5747 if (Name.getNameKind() == DeclarationName::CXXConstructorName) { 5748 // This is a C++ constructor declaration. 5749 assert(DC->isRecord() && 5750 "Constructors can only be declared in a member context"); 5751 5752 R = SemaRef.CheckConstructorDeclarator(D, R, SC); 5753 return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC), 5754 D.getLocStart(), NameInfo, 5755 R, TInfo, isExplicit, isInline, 5756 /*isImplicitlyDeclared=*/false, 5757 isConstexpr); 5758 5759 } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 5760 // This is a C++ destructor declaration. 5761 if (DC->isRecord()) { 5762 R = SemaRef.CheckDestructorDeclarator(D, R, SC); 5763 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); 5764 CXXDestructorDecl *NewDD = CXXDestructorDecl::Create( 5765 SemaRef.Context, Record, 5766 D.getLocStart(), 5767 NameInfo, R, TInfo, isInline, 5768 /*isImplicitlyDeclared=*/false); 5769 5770 // If the class is complete, then we now create the implicit exception 5771 // specification. If the class is incomplete or dependent, we can't do 5772 // it yet. 5773 if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() && 5774 Record->getDefinition() && !Record->isBeingDefined() && 5775 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) { 5776 SemaRef.AdjustDestructorExceptionSpec(Record, NewDD); 5777 } 5778 5779 IsVirtualOkay = true; 5780 return NewDD; 5781 5782 } else { 5783 SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member); 5784 D.setInvalidType(); 5785 5786 // Create a FunctionDecl to satisfy the function definition parsing 5787 // code path. 5788 return FunctionDecl::Create(SemaRef.Context, DC, 5789 D.getLocStart(), 5790 D.getIdentifierLoc(), Name, R, TInfo, 5791 SC, isInline, 5792 /*hasPrototype=*/true, isConstexpr); 5793 } 5794 5795 } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) { 5796 if (!DC->isRecord()) { 5797 SemaRef.Diag(D.getIdentifierLoc(), 5798 diag::err_conv_function_not_member); 5799 return 0; 5800 } 5801 5802 SemaRef.CheckConversionDeclarator(D, R, SC); 5803 IsVirtualOkay = true; 5804 return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC), 5805 D.getLocStart(), NameInfo, 5806 R, TInfo, isInline, isExplicit, 5807 isConstexpr, SourceLocation()); 5808 5809 } else if (DC->isRecord()) { 5810 // If the name of the function is the same as the name of the record, 5811 // then this must be an invalid constructor that has a return type. 5812 // (The parser checks for a return type and makes the declarator a 5813 // constructor if it has no return type). 5814 if (Name.getAsIdentifierInfo() && 5815 Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){ 5816 SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type) 5817 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) 5818 << SourceRange(D.getIdentifierLoc()); 5819 return 0; 5820 } 5821 5822 // This is a C++ method declaration. 5823 CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context, 5824 cast<CXXRecordDecl>(DC), 5825 D.getLocStart(), NameInfo, R, 5826 TInfo, SC, isInline, 5827 isConstexpr, SourceLocation()); 5828 IsVirtualOkay = !Ret->isStatic(); 5829 return Ret; 5830 } else { 5831 // Determine whether the function was written with a 5832 // prototype. This true when: 5833 // - we're in C++ (where every function has a prototype), 5834 return FunctionDecl::Create(SemaRef.Context, DC, 5835 D.getLocStart(), 5836 NameInfo, R, TInfo, SC, isInline, 5837 true/*HasPrototype*/, isConstexpr); 5838 } 5839 } 5840 5841 void Sema::checkVoidParamDecl(ParmVarDecl *Param) { 5842 // In C++, the empty parameter-type-list must be spelled "void"; a 5843 // typedef of void is not permitted. 5844 if (getLangOpts().CPlusPlus && 5845 Param->getType().getUnqualifiedType() != Context.VoidTy) { 5846 bool IsTypeAlias = false; 5847 if (const TypedefType *TT = Param->getType()->getAs<TypedefType>()) 5848 IsTypeAlias = isa<TypeAliasDecl>(TT->getDecl()); 5849 else if (const TemplateSpecializationType *TST = 5850 Param->getType()->getAs<TemplateSpecializationType>()) 5851 IsTypeAlias = TST->isTypeAlias(); 5852 Diag(Param->getLocation(), diag::err_param_typedef_of_void) 5853 << IsTypeAlias; 5854 } 5855 } 5856 5857 NamedDecl* 5858 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC, 5859 TypeSourceInfo *TInfo, LookupResult &Previous, 5860 MultiTemplateParamsArg TemplateParamLists, 5861 bool &AddToScope) { 5862 QualType R = TInfo->getType(); 5863 5864 assert(R.getTypePtr()->isFunctionType()); 5865 5866 // TODO: consider using NameInfo for diagnostic. 5867 DeclarationNameInfo NameInfo = GetNameForDeclarator(D); 5868 DeclarationName Name = NameInfo.getName(); 5869 FunctionDecl::StorageClass SC = getFunctionStorageClass(*this, D); 5870 5871 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 5872 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 5873 diag::err_invalid_thread) 5874 << DeclSpec::getSpecifierName(TSCS); 5875 5876 // Do not allow returning a objc interface by-value. 5877 if (R->getAs<FunctionType>()->getResultType()->isObjCObjectType()) { 5878 Diag(D.getIdentifierLoc(), 5879 diag::err_object_cannot_be_passed_returned_by_value) << 0 5880 << R->getAs<FunctionType>()->getResultType() 5881 << FixItHint::CreateInsertion(D.getIdentifierLoc(), "*"); 5882 5883 QualType T = R->getAs<FunctionType>()->getResultType(); 5884 T = Context.getObjCObjectPointerType(T); 5885 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(R)) { 5886 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 5887 R = Context.getFunctionType(T, 5888 ArrayRef<QualType>(FPT->arg_type_begin(), 5889 FPT->getNumArgs()), 5890 EPI); 5891 } 5892 else if (isa<FunctionNoProtoType>(R)) 5893 R = Context.getFunctionNoProtoType(T); 5894 } 5895 5896 bool isFriend = false; 5897 FunctionTemplateDecl *FunctionTemplate = 0; 5898 bool isExplicitSpecialization = false; 5899 bool isFunctionTemplateSpecialization = false; 5900 5901 bool isDependentClassScopeExplicitSpecialization = false; 5902 bool HasExplicitTemplateArgs = false; 5903 TemplateArgumentListInfo TemplateArgs; 5904 5905 bool isVirtualOkay = false; 5906 5907 FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC, 5908 isVirtualOkay); 5909 if (!NewFD) return 0; 5910 5911 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer()) 5912 NewFD->setTopLevelDeclInObjCContainer(); 5913 5914 if (getLangOpts().CPlusPlus) { 5915 bool isInline = D.getDeclSpec().isInlineSpecified(); 5916 bool isVirtual = D.getDeclSpec().isVirtualSpecified(); 5917 bool isExplicit = D.getDeclSpec().isExplicitSpecified(); 5918 bool isConstexpr = D.getDeclSpec().isConstexprSpecified(); 5919 isFriend = D.getDeclSpec().isFriendSpecified(); 5920 if (isFriend && !isInline && D.isFunctionDefinition()) { 5921 // C++ [class.friend]p5 5922 // A function can be defined in a friend declaration of a 5923 // class . . . . Such a function is implicitly inline. 5924 NewFD->setImplicitlyInline(); 5925 } 5926 5927 // If this is a method defined in an __interface, and is not a constructor 5928 // or an overloaded operator, then set the pure flag (isVirtual will already 5929 // return true). 5930 if (const CXXRecordDecl *Parent = 5931 dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) { 5932 if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided()) 5933 NewFD->setPure(true); 5934 } 5935 5936 SetNestedNameSpecifier(NewFD, D); 5937 isExplicitSpecialization = false; 5938 isFunctionTemplateSpecialization = false; 5939 if (D.isInvalidType()) 5940 NewFD->setInvalidDecl(); 5941 5942 // Set the lexical context. If the declarator has a C++ 5943 // scope specifier, or is the object of a friend declaration, the 5944 // lexical context will be different from the semantic context. 5945 NewFD->setLexicalDeclContext(CurContext); 5946 5947 // Match up the template parameter lists with the scope specifier, then 5948 // determine whether we have a template or a template specialization. 5949 bool Invalid = false; 5950 if (TemplateParameterList *TemplateParams 5951 = MatchTemplateParametersToScopeSpecifier( 5952 D.getDeclSpec().getLocStart(), 5953 D.getIdentifierLoc(), 5954 D.getCXXScopeSpec(), 5955 TemplateParamLists.data(), 5956 TemplateParamLists.size(), 5957 isFriend, 5958 isExplicitSpecialization, 5959 Invalid)) { 5960 if (TemplateParams->size() > 0) { 5961 // This is a function template 5962 5963 // Check that we can declare a template here. 5964 if (CheckTemplateDeclScope(S, TemplateParams)) 5965 return 0; 5966 5967 // A destructor cannot be a template. 5968 if (Name.getNameKind() == DeclarationName::CXXDestructorName) { 5969 Diag(NewFD->getLocation(), diag::err_destructor_template); 5970 return 0; 5971 } 5972 5973 // If we're adding a template to a dependent context, we may need to 5974 // rebuilding some of the types used within the template parameter list, 5975 // now that we know what the current instantiation is. 5976 if (DC->isDependentContext()) { 5977 ContextRAII SavedContext(*this, DC); 5978 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams)) 5979 Invalid = true; 5980 } 5981 5982 5983 FunctionTemplate = FunctionTemplateDecl::Create(Context, DC, 5984 NewFD->getLocation(), 5985 Name, TemplateParams, 5986 NewFD); 5987 FunctionTemplate->setLexicalDeclContext(CurContext); 5988 NewFD->setDescribedFunctionTemplate(FunctionTemplate); 5989 5990 // For source fidelity, store the other template param lists. 5991 if (TemplateParamLists.size() > 1) { 5992 NewFD->setTemplateParameterListsInfo(Context, 5993 TemplateParamLists.size() - 1, 5994 TemplateParamLists.data()); 5995 } 5996 } else { 5997 // This is a function template specialization. 5998 isFunctionTemplateSpecialization = true; 5999 // For source fidelity, store all the template param lists. 6000 NewFD->setTemplateParameterListsInfo(Context, 6001 TemplateParamLists.size(), 6002 TemplateParamLists.data()); 6003 6004 // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);". 6005 if (isFriend) { 6006 // We want to remove the "template<>", found here. 6007 SourceRange RemoveRange = TemplateParams->getSourceRange(); 6008 6009 // If we remove the template<> and the name is not a 6010 // template-id, we're actually silently creating a problem: 6011 // the friend declaration will refer to an untemplated decl, 6012 // and clearly the user wants a template specialization. So 6013 // we need to insert '<>' after the name. 6014 SourceLocation InsertLoc; 6015 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) { 6016 InsertLoc = D.getName().getSourceRange().getEnd(); 6017 InsertLoc = PP.getLocForEndOfToken(InsertLoc); 6018 } 6019 6020 Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend) 6021 << Name << RemoveRange 6022 << FixItHint::CreateRemoval(RemoveRange) 6023 << FixItHint::CreateInsertion(InsertLoc, "<>"); 6024 } 6025 } 6026 } 6027 else { 6028 // All template param lists were matched against the scope specifier: 6029 // this is NOT (an explicit specialization of) a template. 6030 if (TemplateParamLists.size() > 0) 6031 // For source fidelity, store all the template param lists. 6032 NewFD->setTemplateParameterListsInfo(Context, 6033 TemplateParamLists.size(), 6034 TemplateParamLists.data()); 6035 } 6036 6037 if (Invalid) { 6038 NewFD->setInvalidDecl(); 6039 if (FunctionTemplate) 6040 FunctionTemplate->setInvalidDecl(); 6041 } 6042 6043 // C++ [dcl.fct.spec]p5: 6044 // The virtual specifier shall only be used in declarations of 6045 // nonstatic class member functions that appear within a 6046 // member-specification of a class declaration; see 10.3. 6047 // 6048 if (isVirtual && !NewFD->isInvalidDecl()) { 6049 if (!isVirtualOkay) { 6050 Diag(D.getDeclSpec().getVirtualSpecLoc(), 6051 diag::err_virtual_non_function); 6052 } else if (!CurContext->isRecord()) { 6053 // 'virtual' was specified outside of the class. 6054 Diag(D.getDeclSpec().getVirtualSpecLoc(), 6055 diag::err_virtual_out_of_class) 6056 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 6057 } else if (NewFD->getDescribedFunctionTemplate()) { 6058 // C++ [temp.mem]p3: 6059 // A member function template shall not be virtual. 6060 Diag(D.getDeclSpec().getVirtualSpecLoc(), 6061 diag::err_virtual_member_function_template) 6062 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc()); 6063 } else { 6064 // Okay: Add virtual to the method. 6065 NewFD->setVirtualAsWritten(true); 6066 } 6067 6068 if (getLangOpts().CPlusPlus1y && 6069 NewFD->getResultType()->isUndeducedType()) 6070 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual); 6071 } 6072 6073 // C++ [dcl.fct.spec]p3: 6074 // The inline specifier shall not appear on a block scope function 6075 // declaration. 6076 if (isInline && !NewFD->isInvalidDecl()) { 6077 if (CurContext->isFunctionOrMethod()) { 6078 // 'inline' is not allowed on block scope function declaration. 6079 Diag(D.getDeclSpec().getInlineSpecLoc(), 6080 diag::err_inline_declaration_block_scope) << Name 6081 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc()); 6082 } 6083 } 6084 6085 // C++ [dcl.fct.spec]p6: 6086 // The explicit specifier shall be used only in the declaration of a 6087 // constructor or conversion function within its class definition; 6088 // see 12.3.1 and 12.3.2. 6089 if (isExplicit && !NewFD->isInvalidDecl()) { 6090 if (!CurContext->isRecord()) { 6091 // 'explicit' was specified outside of the class. 6092 Diag(D.getDeclSpec().getExplicitSpecLoc(), 6093 diag::err_explicit_out_of_class) 6094 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc()); 6095 } else if (!isa<CXXConstructorDecl>(NewFD) && 6096 !isa<CXXConversionDecl>(NewFD)) { 6097 // 'explicit' was specified on a function that wasn't a constructor 6098 // or conversion function. 6099 Diag(D.getDeclSpec().getExplicitSpecLoc(), 6100 diag::err_explicit_non_ctor_or_conv_function) 6101 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc()); 6102 } 6103 } 6104 6105 if (isConstexpr) { 6106 // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors 6107 // are implicitly inline. 6108 NewFD->setImplicitlyInline(); 6109 6110 // C++11 [dcl.constexpr]p3: functions declared constexpr are required to 6111 // be either constructors or to return a literal type. Therefore, 6112 // destructors cannot be declared constexpr. 6113 if (isa<CXXDestructorDecl>(NewFD)) 6114 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor); 6115 } 6116 6117 // If __module_private__ was specified, mark the function accordingly. 6118 if (D.getDeclSpec().isModulePrivateSpecified()) { 6119 if (isFunctionTemplateSpecialization) { 6120 SourceLocation ModulePrivateLoc 6121 = D.getDeclSpec().getModulePrivateSpecLoc(); 6122 Diag(ModulePrivateLoc, diag::err_module_private_specialization) 6123 << 0 6124 << FixItHint::CreateRemoval(ModulePrivateLoc); 6125 } else { 6126 NewFD->setModulePrivate(); 6127 if (FunctionTemplate) 6128 FunctionTemplate->setModulePrivate(); 6129 } 6130 } 6131 6132 if (isFriend) { 6133 // For now, claim that the objects have no previous declaration. 6134 if (FunctionTemplate) { 6135 FunctionTemplate->setObjectOfFriendDecl(false); 6136 FunctionTemplate->setAccess(AS_public); 6137 } 6138 NewFD->setObjectOfFriendDecl(false); 6139 NewFD->setAccess(AS_public); 6140 } 6141 6142 // If a function is defined as defaulted or deleted, mark it as such now. 6143 switch (D.getFunctionDefinitionKind()) { 6144 case FDK_Declaration: 6145 case FDK_Definition: 6146 break; 6147 6148 case FDK_Defaulted: 6149 NewFD->setDefaulted(); 6150 break; 6151 6152 case FDK_Deleted: 6153 NewFD->setDeletedAsWritten(); 6154 break; 6155 } 6156 6157 if (isa<CXXMethodDecl>(NewFD) && DC == CurContext && 6158 D.isFunctionDefinition()) { 6159 // C++ [class.mfct]p2: 6160 // A member function may be defined (8.4) in its class definition, in 6161 // which case it is an inline member function (7.1.2) 6162 NewFD->setImplicitlyInline(); 6163 } 6164 6165 if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) && 6166 !CurContext->isRecord()) { 6167 // C++ [class.static]p1: 6168 // A data or function member of a class may be declared static 6169 // in a class definition, in which case it is a static member of 6170 // the class. 6171 6172 // Complain about the 'static' specifier if it's on an out-of-line 6173 // member function definition. 6174 Diag(D.getDeclSpec().getStorageClassSpecLoc(), 6175 diag::err_static_out_of_line) 6176 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc()); 6177 } 6178 6179 // C++11 [except.spec]p15: 6180 // A deallocation function with no exception-specification is treated 6181 // as if it were specified with noexcept(true). 6182 const FunctionProtoType *FPT = R->getAs<FunctionProtoType>(); 6183 if ((Name.getCXXOverloadedOperator() == OO_Delete || 6184 Name.getCXXOverloadedOperator() == OO_Array_Delete) && 6185 getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec()) { 6186 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 6187 EPI.ExceptionSpecType = EST_BasicNoexcept; 6188 NewFD->setType(Context.getFunctionType(FPT->getResultType(), 6189 ArrayRef<QualType>(FPT->arg_type_begin(), 6190 FPT->getNumArgs()), 6191 EPI)); 6192 } 6193 } 6194 6195 // Filter out previous declarations that don't match the scope. 6196 FilterLookupForScope(Previous, DC, S, shouldConsiderLinkage(NewFD), 6197 isExplicitSpecialization || 6198 isFunctionTemplateSpecialization); 6199 6200 // Handle GNU asm-label extension (encoded as an attribute). 6201 if (Expr *E = (Expr*) D.getAsmLabel()) { 6202 // The parser guarantees this is a string. 6203 StringLiteral *SE = cast<StringLiteral>(E); 6204 NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context, 6205 SE->getString())); 6206 } else if (!ExtnameUndeclaredIdentifiers.empty()) { 6207 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I = 6208 ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier()); 6209 if (I != ExtnameUndeclaredIdentifiers.end()) { 6210 NewFD->addAttr(I->second); 6211 ExtnameUndeclaredIdentifiers.erase(I); 6212 } 6213 } 6214 6215 // Copy the parameter declarations from the declarator D to the function 6216 // declaration NewFD, if they are available. First scavenge them into Params. 6217 SmallVector<ParmVarDecl*, 16> Params; 6218 if (D.isFunctionDeclarator()) { 6219 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 6220 6221 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs 6222 // function that takes no arguments, not a function that takes a 6223 // single void argument. 6224 // We let through "const void" here because Sema::GetTypeForDeclarator 6225 // already checks for that case. 6226 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && 6227 FTI.ArgInfo[0].Param && 6228 cast<ParmVarDecl>(FTI.ArgInfo[0].Param)->getType()->isVoidType()) { 6229 // Empty arg list, don't push any params. 6230 checkVoidParamDecl(cast<ParmVarDecl>(FTI.ArgInfo[0].Param)); 6231 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) { 6232 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) { 6233 ParmVarDecl *Param = cast<ParmVarDecl>(FTI.ArgInfo[i].Param); 6234 assert(Param->getDeclContext() != NewFD && "Was set before ?"); 6235 Param->setDeclContext(NewFD); 6236 Params.push_back(Param); 6237 6238 if (Param->isInvalidDecl()) 6239 NewFD->setInvalidDecl(); 6240 } 6241 } 6242 6243 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) { 6244 // When we're declaring a function with a typedef, typeof, etc as in the 6245 // following example, we'll need to synthesize (unnamed) 6246 // parameters for use in the declaration. 6247 // 6248 // @code 6249 // typedef void fn(int); 6250 // fn f; 6251 // @endcode 6252 6253 // Synthesize a parameter for each argument type. 6254 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(), 6255 AE = FT->arg_type_end(); AI != AE; ++AI) { 6256 ParmVarDecl *Param = 6257 BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), *AI); 6258 Param->setScopeInfo(0, Params.size()); 6259 Params.push_back(Param); 6260 } 6261 } else { 6262 assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 && 6263 "Should not need args for typedef of non-prototype fn"); 6264 } 6265 6266 // Finally, we know we have the right number of parameters, install them. 6267 NewFD->setParams(Params); 6268 6269 // Find all anonymous symbols defined during the declaration of this function 6270 // and add to NewFD. This lets us track decls such 'enum Y' in: 6271 // 6272 // void f(enum Y {AA} x) {} 6273 // 6274 // which would otherwise incorrectly end up in the translation unit scope. 6275 NewFD->setDeclsInPrototypeScope(DeclsInPrototypeScope); 6276 DeclsInPrototypeScope.clear(); 6277 6278 if (D.getDeclSpec().isNoreturnSpecified()) 6279 NewFD->addAttr( 6280 ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(), 6281 Context)); 6282 6283 // Process the non-inheritable attributes on this declaration. 6284 ProcessDeclAttributes(S, NewFD, D, 6285 /*NonInheritable=*/true, /*Inheritable=*/false); 6286 6287 // Functions returning a variably modified type violate C99 6.7.5.2p2 6288 // because all functions have linkage. 6289 if (!NewFD->isInvalidDecl() && 6290 NewFD->getResultType()->isVariablyModifiedType()) { 6291 Diag(NewFD->getLocation(), diag::err_vm_func_decl); 6292 NewFD->setInvalidDecl(); 6293 } 6294 6295 // Handle attributes. 6296 ProcessDeclAttributes(S, NewFD, D, 6297 /*NonInheritable=*/false, /*Inheritable=*/true); 6298 6299 QualType RetType = NewFD->getResultType(); 6300 const CXXRecordDecl *Ret = RetType->isRecordType() ? 6301 RetType->getAsCXXRecordDecl() : RetType->getPointeeCXXRecordDecl(); 6302 if (!NewFD->isInvalidDecl() && !NewFD->hasAttr<WarnUnusedResultAttr>() && 6303 Ret && Ret->hasAttr<WarnUnusedResultAttr>()) { 6304 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 6305 if (!(MD && MD->getCorrespondingMethodInClass(Ret, true))) { 6306 NewFD->addAttr(new (Context) WarnUnusedResultAttr(SourceRange(), 6307 Context)); 6308 } 6309 } 6310 6311 if (!getLangOpts().CPlusPlus) { 6312 // Perform semantic checking on the function declaration. 6313 bool isExplicitSpecialization=false; 6314 if (!NewFD->isInvalidDecl()) { 6315 if (NewFD->isMain()) 6316 CheckMain(NewFD, D.getDeclSpec()); 6317 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 6318 isExplicitSpecialization)); 6319 } 6320 // Make graceful recovery from an invalid redeclaration. 6321 else if (!Previous.empty()) 6322 D.setRedeclaration(true); 6323 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 6324 Previous.getResultKind() != LookupResult::FoundOverloaded) && 6325 "previous declaration set still overloaded"); 6326 } else { 6327 // If the declarator is a template-id, translate the parser's template 6328 // argument list into our AST format. 6329 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) { 6330 TemplateIdAnnotation *TemplateId = D.getName().TemplateId; 6331 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc); 6332 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc); 6333 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 6334 TemplateId->NumArgs); 6335 translateTemplateArguments(TemplateArgsPtr, 6336 TemplateArgs); 6337 6338 HasExplicitTemplateArgs = true; 6339 6340 if (NewFD->isInvalidDecl()) { 6341 HasExplicitTemplateArgs = false; 6342 } else if (FunctionTemplate) { 6343 // Function template with explicit template arguments. 6344 Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec) 6345 << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc); 6346 6347 HasExplicitTemplateArgs = false; 6348 } else if (!isFunctionTemplateSpecialization && 6349 !D.getDeclSpec().isFriendSpecified()) { 6350 // We have encountered something that the user meant to be a 6351 // specialization (because it has explicitly-specified template 6352 // arguments) but that was not introduced with a "template<>" (or had 6353 // too few of them). 6354 Diag(D.getIdentifierLoc(), diag::err_template_spec_needs_header) 6355 << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc) 6356 << FixItHint::CreateInsertion( 6357 D.getDeclSpec().getLocStart(), 6358 "template<> "); 6359 isFunctionTemplateSpecialization = true; 6360 } else { 6361 // "friend void foo<>(int);" is an implicit specialization decl. 6362 isFunctionTemplateSpecialization = true; 6363 } 6364 } else if (isFriend && isFunctionTemplateSpecialization) { 6365 // This combination is only possible in a recovery case; the user 6366 // wrote something like: 6367 // template <> friend void foo(int); 6368 // which we're recovering from as if the user had written: 6369 // friend void foo<>(int); 6370 // Go ahead and fake up a template id. 6371 HasExplicitTemplateArgs = true; 6372 TemplateArgs.setLAngleLoc(D.getIdentifierLoc()); 6373 TemplateArgs.setRAngleLoc(D.getIdentifierLoc()); 6374 } 6375 6376 // If it's a friend (and only if it's a friend), it's possible 6377 // that either the specialized function type or the specialized 6378 // template is dependent, and therefore matching will fail. In 6379 // this case, don't check the specialization yet. 6380 bool InstantiationDependent = false; 6381 if (isFunctionTemplateSpecialization && isFriend && 6382 (NewFD->getType()->isDependentType() || DC->isDependentContext() || 6383 TemplateSpecializationType::anyDependentTemplateArguments( 6384 TemplateArgs.getArgumentArray(), TemplateArgs.size(), 6385 InstantiationDependent))) { 6386 assert(HasExplicitTemplateArgs && 6387 "friend function specialization without template args"); 6388 if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs, 6389 Previous)) 6390 NewFD->setInvalidDecl(); 6391 } else if (isFunctionTemplateSpecialization) { 6392 if (CurContext->isDependentContext() && CurContext->isRecord() 6393 && !isFriend) { 6394 isDependentClassScopeExplicitSpecialization = true; 6395 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 6396 diag::ext_function_specialization_in_class : 6397 diag::err_function_specialization_in_class) 6398 << NewFD->getDeclName(); 6399 } else if (CheckFunctionTemplateSpecialization(NewFD, 6400 (HasExplicitTemplateArgs ? &TemplateArgs : 0), 6401 Previous)) 6402 NewFD->setInvalidDecl(); 6403 6404 // C++ [dcl.stc]p1: 6405 // A storage-class-specifier shall not be specified in an explicit 6406 // specialization (14.7.3) 6407 if (SC != SC_None) { 6408 if (SC != NewFD->getTemplateSpecializationInfo()->getTemplate()->getTemplatedDecl()->getStorageClass()) 6409 Diag(NewFD->getLocation(), 6410 diag::err_explicit_specialization_inconsistent_storage_class) 6411 << SC 6412 << FixItHint::CreateRemoval( 6413 D.getDeclSpec().getStorageClassSpecLoc()); 6414 6415 else 6416 Diag(NewFD->getLocation(), 6417 diag::ext_explicit_specialization_storage_class) 6418 << FixItHint::CreateRemoval( 6419 D.getDeclSpec().getStorageClassSpecLoc()); 6420 } 6421 6422 } else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD)) { 6423 if (CheckMemberSpecialization(NewFD, Previous)) 6424 NewFD->setInvalidDecl(); 6425 } 6426 6427 // Perform semantic checking on the function declaration. 6428 if (!isDependentClassScopeExplicitSpecialization) { 6429 if (NewFD->isInvalidDecl()) { 6430 // If this is a class member, mark the class invalid immediately. 6431 // This avoids some consistency errors later. 6432 if (CXXMethodDecl* methodDecl = dyn_cast<CXXMethodDecl>(NewFD)) 6433 methodDecl->getParent()->setInvalidDecl(); 6434 } else { 6435 if (NewFD->isMain()) 6436 CheckMain(NewFD, D.getDeclSpec()); 6437 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous, 6438 isExplicitSpecialization)); 6439 } 6440 } 6441 6442 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || 6443 Previous.getResultKind() != LookupResult::FoundOverloaded) && 6444 "previous declaration set still overloaded"); 6445 6446 NamedDecl *PrincipalDecl = (FunctionTemplate 6447 ? cast<NamedDecl>(FunctionTemplate) 6448 : NewFD); 6449 6450 if (isFriend && D.isRedeclaration()) { 6451 AccessSpecifier Access = AS_public; 6452 if (!NewFD->isInvalidDecl()) 6453 Access = NewFD->getPreviousDecl()->getAccess(); 6454 6455 NewFD->setAccess(Access); 6456 if (FunctionTemplate) FunctionTemplate->setAccess(Access); 6457 6458 PrincipalDecl->setObjectOfFriendDecl(true); 6459 } 6460 6461 if (NewFD->isOverloadedOperator() && !DC->isRecord() && 6462 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary)) 6463 PrincipalDecl->setNonMemberOperator(); 6464 6465 // If we have a function template, check the template parameter 6466 // list. This will check and merge default template arguments. 6467 if (FunctionTemplate) { 6468 FunctionTemplateDecl *PrevTemplate = 6469 FunctionTemplate->getPreviousDecl(); 6470 CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(), 6471 PrevTemplate ? PrevTemplate->getTemplateParameters() : 0, 6472 D.getDeclSpec().isFriendSpecified() 6473 ? (D.isFunctionDefinition() 6474 ? TPC_FriendFunctionTemplateDefinition 6475 : TPC_FriendFunctionTemplate) 6476 : (D.getCXXScopeSpec().isSet() && 6477 DC && DC->isRecord() && 6478 DC->isDependentContext()) 6479 ? TPC_ClassTemplateMember 6480 : TPC_FunctionTemplate); 6481 } 6482 6483 if (NewFD->isInvalidDecl()) { 6484 // Ignore all the rest of this. 6485 } else if (!D.isRedeclaration()) { 6486 struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists, 6487 AddToScope }; 6488 // Fake up an access specifier if it's supposed to be a class member. 6489 if (isa<CXXRecordDecl>(NewFD->getDeclContext())) 6490 NewFD->setAccess(AS_public); 6491 6492 // Qualified decls generally require a previous declaration. 6493 if (D.getCXXScopeSpec().isSet()) { 6494 // ...with the major exception of templated-scope or 6495 // dependent-scope friend declarations. 6496 6497 // TODO: we currently also suppress this check in dependent 6498 // contexts because (1) the parameter depth will be off when 6499 // matching friend templates and (2) we might actually be 6500 // selecting a friend based on a dependent factor. But there 6501 // are situations where these conditions don't apply and we 6502 // can actually do this check immediately. 6503 if (isFriend && 6504 (TemplateParamLists.size() || 6505 D.getCXXScopeSpec().getScopeRep()->isDependent() || 6506 CurContext->isDependentContext())) { 6507 // ignore these 6508 } else { 6509 // The user tried to provide an out-of-line definition for a 6510 // function that is a member of a class or namespace, but there 6511 // was no such member function declared (C++ [class.mfct]p2, 6512 // C++ [namespace.memdef]p2). For example: 6513 // 6514 // class X { 6515 // void f() const; 6516 // }; 6517 // 6518 // void X::f() { } // ill-formed 6519 // 6520 // Complain about this problem, and attempt to suggest close 6521 // matches (e.g., those that differ only in cv-qualifiers and 6522 // whether the parameter types are references). 6523 6524 if (NamedDecl *Result = DiagnoseInvalidRedeclaration(*this, Previous, 6525 NewFD, 6526 ExtraArgs)) { 6527 AddToScope = ExtraArgs.AddToScope; 6528 return Result; 6529 } 6530 } 6531 6532 // Unqualified local friend declarations are required to resolve 6533 // to something. 6534 } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) { 6535 if (NamedDecl *Result = DiagnoseInvalidRedeclaration(*this, Previous, 6536 NewFD, 6537 ExtraArgs)) { 6538 AddToScope = ExtraArgs.AddToScope; 6539 return Result; 6540 } 6541 } 6542 6543 } else if (!D.isFunctionDefinition() && D.getCXXScopeSpec().isSet() && 6544 !isFriend && !isFunctionTemplateSpecialization && 6545 !isExplicitSpecialization) { 6546 // An out-of-line member function declaration must also be a 6547 // definition (C++ [dcl.meaning]p1). 6548 // Note that this is not the case for explicit specializations of 6549 // function templates or member functions of class templates, per 6550 // C++ [temp.expl.spec]p2. We also allow these declarations as an 6551 // extension for compatibility with old SWIG code which likes to 6552 // generate them. 6553 Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration) 6554 << D.getCXXScopeSpec().getRange(); 6555 } 6556 } 6557 6558 ProcessPragmaWeak(S, NewFD); 6559 checkAttributesAfterMerging(*this, *NewFD); 6560 6561 AddKnownFunctionAttributes(NewFD); 6562 6563 if (NewFD->hasAttr<OverloadableAttr>() && 6564 !NewFD->getType()->getAs<FunctionProtoType>()) { 6565 Diag(NewFD->getLocation(), 6566 diag::err_attribute_overloadable_no_prototype) 6567 << NewFD; 6568 6569 // Turn this into a variadic function with no parameters. 6570 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>(); 6571 FunctionProtoType::ExtProtoInfo EPI; 6572 EPI.Variadic = true; 6573 EPI.ExtInfo = FT->getExtInfo(); 6574 6575 QualType R = Context.getFunctionType(FT->getResultType(), None, EPI); 6576 NewFD->setType(R); 6577 } 6578 6579 // If there's a #pragma GCC visibility in scope, and this isn't a class 6580 // member, set the visibility of this function. 6581 if (!DC->isRecord() && NewFD->hasExternalLinkage()) 6582 AddPushedVisibilityAttribute(NewFD); 6583 6584 // If there's a #pragma clang arc_cf_code_audited in scope, consider 6585 // marking the function. 6586 AddCFAuditedAttribute(NewFD); 6587 6588 // If this is a locally-scoped extern C function, update the 6589 // map of such names. 6590 if (CurContext->isFunctionOrMethod() && NewFD->isExternC() 6591 && !NewFD->isInvalidDecl()) 6592 RegisterLocallyScopedExternCDecl(NewFD, Previous, S); 6593 6594 // Set this FunctionDecl's range up to the right paren. 6595 NewFD->setRangeEnd(D.getSourceRange().getEnd()); 6596 6597 if (getLangOpts().CPlusPlus) { 6598 if (FunctionTemplate) { 6599 if (NewFD->isInvalidDecl()) 6600 FunctionTemplate->setInvalidDecl(); 6601 return FunctionTemplate; 6602 } 6603 } 6604 6605 if (NewFD->hasAttr<OpenCLKernelAttr>()) { 6606 // OpenCL v1.2 s6.8 static is invalid for kernel functions. 6607 if ((getLangOpts().OpenCLVersion >= 120) 6608 && (SC == SC_Static)) { 6609 Diag(D.getIdentifierLoc(), diag::err_static_kernel); 6610 D.setInvalidType(); 6611 } 6612 6613 // OpenCL v1.2, s6.9 -- Kernels can only have return type void. 6614 if (!NewFD->getResultType()->isVoidType()) { 6615 Diag(D.getIdentifierLoc(), 6616 diag::err_expected_kernel_void_return_type); 6617 D.setInvalidType(); 6618 } 6619 6620 for (FunctionDecl::param_iterator PI = NewFD->param_begin(), 6621 PE = NewFD->param_end(); PI != PE; ++PI) { 6622 ParmVarDecl *Param = *PI; 6623 QualType PT = Param->getType(); 6624 6625 // OpenCL v1.2 s6.9.a: 6626 // A kernel function argument cannot be declared as a 6627 // pointer to a pointer type. 6628 if (PT->isPointerType() && PT->getPointeeType()->isPointerType()) { 6629 Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_arg); 6630 D.setInvalidType(); 6631 } 6632 6633 // OpenCL v1.2 s6.8 n: 6634 // A kernel function argument cannot be declared 6635 // of event_t type. 6636 if (PT->isEventT()) { 6637 Diag(Param->getLocation(), diag::err_event_t_kernel_arg); 6638 D.setInvalidType(); 6639 } 6640 } 6641 } 6642 6643 MarkUnusedFileScopedDecl(NewFD); 6644 6645 if (getLangOpts().CUDA) 6646 if (IdentifierInfo *II = NewFD->getIdentifier()) 6647 if (!NewFD->isInvalidDecl() && 6648 NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) { 6649 if (II->isStr("cudaConfigureCall")) { 6650 if (!R->getAs<FunctionType>()->getResultType()->isScalarType()) 6651 Diag(NewFD->getLocation(), diag::err_config_scalar_return); 6652 6653 Context.setcudaConfigureCallDecl(NewFD); 6654 } 6655 } 6656 6657 // Here we have an function template explicit specialization at class scope. 6658 // The actually specialization will be postponed to template instatiation 6659 // time via the ClassScopeFunctionSpecializationDecl node. 6660 if (isDependentClassScopeExplicitSpecialization) { 6661 ClassScopeFunctionSpecializationDecl *NewSpec = 6662 ClassScopeFunctionSpecializationDecl::Create( 6663 Context, CurContext, SourceLocation(), 6664 cast<CXXMethodDecl>(NewFD), 6665 HasExplicitTemplateArgs, TemplateArgs); 6666 CurContext->addDecl(NewSpec); 6667 AddToScope = false; 6668 } 6669 6670 return NewFD; 6671 } 6672 6673 /// \brief Perform semantic checking of a new function declaration. 6674 /// 6675 /// Performs semantic analysis of the new function declaration 6676 /// NewFD. This routine performs all semantic checking that does not 6677 /// require the actual declarator involved in the declaration, and is 6678 /// used both for the declaration of functions as they are parsed 6679 /// (called via ActOnDeclarator) and for the declaration of functions 6680 /// that have been instantiated via C++ template instantiation (called 6681 /// via InstantiateDecl). 6682 /// 6683 /// \param IsExplicitSpecialization whether this new function declaration is 6684 /// an explicit specialization of the previous declaration. 6685 /// 6686 /// This sets NewFD->isInvalidDecl() to true if there was an error. 6687 /// 6688 /// \returns true if the function declaration is a redeclaration. 6689 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD, 6690 LookupResult &Previous, 6691 bool IsExplicitSpecialization) { 6692 assert(!NewFD->getResultType()->isVariablyModifiedType() 6693 && "Variably modified return types are not handled here"); 6694 6695 // Check for a previous declaration of this name. 6696 if (Previous.empty() && mayConflictWithNonVisibleExternC(NewFD)) { 6697 // Since we did not find anything by this name, look for a non-visible 6698 // extern "C" declaration with the same name. 6699 llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos 6700 = findLocallyScopedExternCDecl(NewFD->getDeclName()); 6701 if (Pos != LocallyScopedExternCDecls.end()) 6702 Previous.addDecl(Pos->second); 6703 } 6704 6705 // Filter out any non-conflicting previous declarations. 6706 filterNonConflictingPreviousDecls(Context, NewFD, Previous); 6707 6708 bool Redeclaration = false; 6709 NamedDecl *OldDecl = 0; 6710 6711 // Merge or overload the declaration with an existing declaration of 6712 // the same name, if appropriate. 6713 if (!Previous.empty()) { 6714 // Determine whether NewFD is an overload of PrevDecl or 6715 // a declaration that requires merging. If it's an overload, 6716 // there's no more work to do here; we'll just add the new 6717 // function to the scope. 6718 if (!AllowOverloadingOfFunction(Previous, Context)) { 6719 NamedDecl *Candidate = Previous.getFoundDecl(); 6720 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) { 6721 Redeclaration = true; 6722 OldDecl = Candidate; 6723 } 6724 } else { 6725 switch (CheckOverload(S, NewFD, Previous, OldDecl, 6726 /*NewIsUsingDecl*/ false)) { 6727 case Ovl_Match: 6728 Redeclaration = true; 6729 break; 6730 6731 case Ovl_NonFunction: 6732 Redeclaration = true; 6733 break; 6734 6735 case Ovl_Overload: 6736 Redeclaration = false; 6737 break; 6738 } 6739 6740 if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) { 6741 // If a function name is overloadable in C, then every function 6742 // with that name must be marked "overloadable". 6743 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing) 6744 << Redeclaration << NewFD; 6745 NamedDecl *OverloadedDecl = 0; 6746 if (Redeclaration) 6747 OverloadedDecl = OldDecl; 6748 else if (!Previous.empty()) 6749 OverloadedDecl = Previous.getRepresentativeDecl(); 6750 if (OverloadedDecl) 6751 Diag(OverloadedDecl->getLocation(), 6752 diag::note_attribute_overloadable_prev_overload); 6753 NewFD->addAttr(::new (Context) OverloadableAttr(SourceLocation(), 6754 Context)); 6755 } 6756 } 6757 } 6758 6759 // C++11 [dcl.constexpr]p8: 6760 // A constexpr specifier for a non-static member function that is not 6761 // a constructor declares that member function to be const. 6762 // 6763 // This needs to be delayed until we know whether this is an out-of-line 6764 // definition of a static member function. 6765 // 6766 // This rule is not present in C++1y, so we produce a backwards 6767 // compatibility warning whenever it happens in C++11. 6768 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD); 6769 if (!getLangOpts().CPlusPlus1y && MD && MD->isConstexpr() && 6770 !MD->isStatic() && !isa<CXXConstructorDecl>(MD) && 6771 (MD->getTypeQualifiers() & Qualifiers::Const) == 0) { 6772 CXXMethodDecl *OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl); 6773 if (FunctionTemplateDecl *OldTD = 6774 dyn_cast_or_null<FunctionTemplateDecl>(OldDecl)) 6775 OldMD = dyn_cast<CXXMethodDecl>(OldTD->getTemplatedDecl()); 6776 if (!OldMD || !OldMD->isStatic()) { 6777 const FunctionProtoType *FPT = 6778 MD->getType()->castAs<FunctionProtoType>(); 6779 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 6780 EPI.TypeQuals |= Qualifiers::Const; 6781 MD->setType(Context.getFunctionType(FPT->getResultType(), 6782 ArrayRef<QualType>(FPT->arg_type_begin(), 6783 FPT->getNumArgs()), 6784 EPI)); 6785 6786 // Warn that we did this, if we're not performing template instantiation. 6787 // In that case, we'll have warned already when the template was defined. 6788 if (ActiveTemplateInstantiations.empty()) { 6789 SourceLocation AddConstLoc; 6790 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc() 6791 .IgnoreParens().getAs<FunctionTypeLoc>()) 6792 AddConstLoc = PP.getLocForEndOfToken(FTL.getRParenLoc()); 6793 6794 Diag(MD->getLocation(), diag::warn_cxx1y_compat_constexpr_not_const) 6795 << FixItHint::CreateInsertion(AddConstLoc, " const"); 6796 } 6797 } 6798 } 6799 6800 if (Redeclaration) { 6801 // NewFD and OldDecl represent declarations that need to be 6802 // merged. 6803 if (MergeFunctionDecl(NewFD, OldDecl, S)) { 6804 NewFD->setInvalidDecl(); 6805 return Redeclaration; 6806 } 6807 6808 Previous.clear(); 6809 Previous.addDecl(OldDecl); 6810 6811 if (FunctionTemplateDecl *OldTemplateDecl 6812 = dyn_cast<FunctionTemplateDecl>(OldDecl)) { 6813 NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl()); 6814 FunctionTemplateDecl *NewTemplateDecl 6815 = NewFD->getDescribedFunctionTemplate(); 6816 assert(NewTemplateDecl && "Template/non-template mismatch"); 6817 if (CXXMethodDecl *Method 6818 = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) { 6819 Method->setAccess(OldTemplateDecl->getAccess()); 6820 NewTemplateDecl->setAccess(OldTemplateDecl->getAccess()); 6821 } 6822 6823 // If this is an explicit specialization of a member that is a function 6824 // template, mark it as a member specialization. 6825 if (IsExplicitSpecialization && 6826 NewTemplateDecl->getInstantiatedFromMemberTemplate()) { 6827 NewTemplateDecl->setMemberSpecialization(); 6828 assert(OldTemplateDecl->isMemberSpecialization()); 6829 } 6830 6831 } else { 6832 // This needs to happen first so that 'inline' propagates. 6833 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl)); 6834 6835 if (isa<CXXMethodDecl>(NewFD)) { 6836 // A valid redeclaration of a C++ method must be out-of-line, 6837 // but (unfortunately) it's not necessarily a definition 6838 // because of templates, which means that the previous 6839 // declaration is not necessarily from the class definition. 6840 6841 // For just setting the access, that doesn't matter. 6842 CXXMethodDecl *oldMethod = cast<CXXMethodDecl>(OldDecl); 6843 NewFD->setAccess(oldMethod->getAccess()); 6844 6845 // Update the key-function state if necessary for this ABI. 6846 if (NewFD->isInlined() && 6847 !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) { 6848 // setNonKeyFunction needs to work with the original 6849 // declaration from the class definition, and isVirtual() is 6850 // just faster in that case, so map back to that now. 6851 oldMethod = cast<CXXMethodDecl>(oldMethod->getFirstDeclaration()); 6852 if (oldMethod->isVirtual()) { 6853 Context.setNonKeyFunction(oldMethod); 6854 } 6855 } 6856 } 6857 } 6858 } 6859 6860 // Semantic checking for this function declaration (in isolation). 6861 if (getLangOpts().CPlusPlus) { 6862 // C++-specific checks. 6863 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) { 6864 CheckConstructor(Constructor); 6865 } else if (CXXDestructorDecl *Destructor = 6866 dyn_cast<CXXDestructorDecl>(NewFD)) { 6867 CXXRecordDecl *Record = Destructor->getParent(); 6868 QualType ClassType = Context.getTypeDeclType(Record); 6869 6870 // FIXME: Shouldn't we be able to perform this check even when the class 6871 // type is dependent? Both gcc and edg can handle that. 6872 if (!ClassType->isDependentType()) { 6873 DeclarationName Name 6874 = Context.DeclarationNames.getCXXDestructorName( 6875 Context.getCanonicalType(ClassType)); 6876 if (NewFD->getDeclName() != Name) { 6877 Diag(NewFD->getLocation(), diag::err_destructor_name); 6878 NewFD->setInvalidDecl(); 6879 return Redeclaration; 6880 } 6881 } 6882 } else if (CXXConversionDecl *Conversion 6883 = dyn_cast<CXXConversionDecl>(NewFD)) { 6884 ActOnConversionDeclarator(Conversion); 6885 } 6886 6887 // Find any virtual functions that this function overrides. 6888 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) { 6889 if (!Method->isFunctionTemplateSpecialization() && 6890 !Method->getDescribedFunctionTemplate() && 6891 Method->isCanonicalDecl()) { 6892 if (AddOverriddenMethods(Method->getParent(), Method)) { 6893 // If the function was marked as "static", we have a problem. 6894 if (NewFD->getStorageClass() == SC_Static) { 6895 ReportOverrides(*this, diag::err_static_overrides_virtual, Method); 6896 } 6897 } 6898 } 6899 6900 if (Method->isStatic()) 6901 checkThisInStaticMemberFunctionType(Method); 6902 } 6903 6904 // Extra checking for C++ overloaded operators (C++ [over.oper]). 6905 if (NewFD->isOverloadedOperator() && 6906 CheckOverloadedOperatorDeclaration(NewFD)) { 6907 NewFD->setInvalidDecl(); 6908 return Redeclaration; 6909 } 6910 6911 // Extra checking for C++0x literal operators (C++0x [over.literal]). 6912 if (NewFD->getLiteralIdentifier() && 6913 CheckLiteralOperatorDeclaration(NewFD)) { 6914 NewFD->setInvalidDecl(); 6915 return Redeclaration; 6916 } 6917 6918 // In C++, check default arguments now that we have merged decls. Unless 6919 // the lexical context is the class, because in this case this is done 6920 // during delayed parsing anyway. 6921 if (!CurContext->isRecord()) 6922 CheckCXXDefaultArguments(NewFD); 6923 6924 // If this function declares a builtin function, check the type of this 6925 // declaration against the expected type for the builtin. 6926 if (unsigned BuiltinID = NewFD->getBuiltinID()) { 6927 ASTContext::GetBuiltinTypeError Error; 6928 LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier()); 6929 QualType T = Context.GetBuiltinType(BuiltinID, Error); 6930 if (!T.isNull() && !Context.hasSameType(T, NewFD->getType())) { 6931 // The type of this function differs from the type of the builtin, 6932 // so forget about the builtin entirely. 6933 Context.BuiltinInfo.ForgetBuiltin(BuiltinID, Context.Idents); 6934 } 6935 } 6936 6937 // If this function is declared as being extern "C", then check to see if 6938 // the function returns a UDT (class, struct, or union type) that is not C 6939 // compatible, and if it does, warn the user. 6940 // But, issue any diagnostic on the first declaration only. 6941 if (NewFD->isExternC() && Previous.empty()) { 6942 QualType R = NewFD->getResultType(); 6943 if (R->isIncompleteType() && !R->isVoidType()) 6944 Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete) 6945 << NewFD << R; 6946 else if (!R.isPODType(Context) && !R->isVoidType() && 6947 !R->isObjCObjectPointerType()) 6948 Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R; 6949 } 6950 } 6951 return Redeclaration; 6952 } 6953 6954 static SourceRange getResultSourceRange(const FunctionDecl *FD) { 6955 const TypeSourceInfo *TSI = FD->getTypeSourceInfo(); 6956 if (!TSI) 6957 return SourceRange(); 6958 6959 TypeLoc TL = TSI->getTypeLoc(); 6960 FunctionTypeLoc FunctionTL = TL.getAs<FunctionTypeLoc>(); 6961 if (!FunctionTL) 6962 return SourceRange(); 6963 6964 TypeLoc ResultTL = FunctionTL.getResultLoc(); 6965 if (ResultTL.getUnqualifiedLoc().getAs<BuiltinTypeLoc>()) 6966 return ResultTL.getSourceRange(); 6967 6968 return SourceRange(); 6969 } 6970 6971 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) { 6972 // C++11 [basic.start.main]p3: A program that declares main to be inline, 6973 // static or constexpr is ill-formed. 6974 // C11 6.7.4p4: In a hosted environment, no function specifier(s) shall 6975 // appear in a declaration of main. 6976 // static main is not an error under C99, but we should warn about it. 6977 // We accept _Noreturn main as an extension. 6978 if (FD->getStorageClass() == SC_Static) 6979 Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus 6980 ? diag::err_static_main : diag::warn_static_main) 6981 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); 6982 if (FD->isInlineSpecified()) 6983 Diag(DS.getInlineSpecLoc(), diag::err_inline_main) 6984 << FixItHint::CreateRemoval(DS.getInlineSpecLoc()); 6985 if (DS.isNoreturnSpecified()) { 6986 SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc(); 6987 SourceRange NoreturnRange(NoreturnLoc, 6988 PP.getLocForEndOfToken(NoreturnLoc)); 6989 Diag(NoreturnLoc, diag::ext_noreturn_main); 6990 Diag(NoreturnLoc, diag::note_main_remove_noreturn) 6991 << FixItHint::CreateRemoval(NoreturnRange); 6992 } 6993 if (FD->isConstexpr()) { 6994 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main) 6995 << FixItHint::CreateRemoval(DS.getConstexprSpecLoc()); 6996 FD->setConstexpr(false); 6997 } 6998 6999 QualType T = FD->getType(); 7000 assert(T->isFunctionType() && "function decl is not of function type"); 7001 const FunctionType* FT = T->castAs<FunctionType>(); 7002 7003 // All the standards say that main() should should return 'int'. 7004 if (Context.hasSameUnqualifiedType(FT->getResultType(), Context.IntTy)) { 7005 // In C and C++, main magically returns 0 if you fall off the end; 7006 // set the flag which tells us that. 7007 // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3. 7008 FD->setHasImplicitReturnZero(true); 7009 7010 // In C with GNU extensions we allow main() to have non-integer return 7011 // type, but we should warn about the extension, and we disable the 7012 // implicit-return-zero rule. 7013 } else if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) { 7014 Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint); 7015 7016 SourceRange ResultRange = getResultSourceRange(FD); 7017 if (ResultRange.isValid()) 7018 Diag(ResultRange.getBegin(), diag::note_main_change_return_type) 7019 << FixItHint::CreateReplacement(ResultRange, "int"); 7020 7021 // Otherwise, this is just a flat-out error. 7022 } else { 7023 SourceRange ResultRange = getResultSourceRange(FD); 7024 if (ResultRange.isValid()) 7025 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint) 7026 << FixItHint::CreateReplacement(ResultRange, "int"); 7027 else 7028 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint); 7029 7030 FD->setInvalidDecl(true); 7031 } 7032 7033 // Treat protoless main() as nullary. 7034 if (isa<FunctionNoProtoType>(FT)) return; 7035 7036 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); 7037 unsigned nparams = FTP->getNumArgs(); 7038 assert(FD->getNumParams() == nparams); 7039 7040 bool HasExtraParameters = (nparams > 3); 7041 7042 // Darwin passes an undocumented fourth argument of type char**. If 7043 // other platforms start sprouting these, the logic below will start 7044 // getting shifty. 7045 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin()) 7046 HasExtraParameters = false; 7047 7048 if (HasExtraParameters) { 7049 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams; 7050 FD->setInvalidDecl(true); 7051 nparams = 3; 7052 } 7053 7054 // FIXME: a lot of the following diagnostics would be improved 7055 // if we had some location information about types. 7056 7057 QualType CharPP = 7058 Context.getPointerType(Context.getPointerType(Context.CharTy)); 7059 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP }; 7060 7061 for (unsigned i = 0; i < nparams; ++i) { 7062 QualType AT = FTP->getArgType(i); 7063 7064 bool mismatch = true; 7065 7066 if (Context.hasSameUnqualifiedType(AT, Expected[i])) 7067 mismatch = false; 7068 else if (Expected[i] == CharPP) { 7069 // As an extension, the following forms are okay: 7070 // char const ** 7071 // char const * const * 7072 // char * const * 7073 7074 QualifierCollector qs; 7075 const PointerType* PT; 7076 if ((PT = qs.strip(AT)->getAs<PointerType>()) && 7077 (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) && 7078 Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0), 7079 Context.CharTy)) { 7080 qs.removeConst(); 7081 mismatch = !qs.empty(); 7082 } 7083 } 7084 7085 if (mismatch) { 7086 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i]; 7087 // TODO: suggest replacing given type with expected type 7088 FD->setInvalidDecl(true); 7089 } 7090 } 7091 7092 if (nparams == 1 && !FD->isInvalidDecl()) { 7093 Diag(FD->getLocation(), diag::warn_main_one_arg); 7094 } 7095 7096 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) { 7097 Diag(FD->getLocation(), diag::err_main_template_decl); 7098 FD->setInvalidDecl(); 7099 } 7100 } 7101 7102 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) { 7103 // FIXME: Need strict checking. In C89, we need to check for 7104 // any assignment, increment, decrement, function-calls, or 7105 // commas outside of a sizeof. In C99, it's the same list, 7106 // except that the aforementioned are allowed in unevaluated 7107 // expressions. Everything else falls under the 7108 // "may accept other forms of constant expressions" exception. 7109 // (We never end up here for C++, so the constant expression 7110 // rules there don't matter.) 7111 if (Init->isConstantInitializer(Context, false)) 7112 return false; 7113 Diag(Init->getExprLoc(), diag::err_init_element_not_constant) 7114 << Init->getSourceRange(); 7115 return true; 7116 } 7117 7118 namespace { 7119 // Visits an initialization expression to see if OrigDecl is evaluated in 7120 // its own initialization and throws a warning if it does. 7121 class SelfReferenceChecker 7122 : public EvaluatedExprVisitor<SelfReferenceChecker> { 7123 Sema &S; 7124 Decl *OrigDecl; 7125 bool isRecordType; 7126 bool isPODType; 7127 bool isReferenceType; 7128 7129 public: 7130 typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited; 7131 7132 SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context), 7133 S(S), OrigDecl(OrigDecl) { 7134 isPODType = false; 7135 isRecordType = false; 7136 isReferenceType = false; 7137 if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) { 7138 isPODType = VD->getType().isPODType(S.Context); 7139 isRecordType = VD->getType()->isRecordType(); 7140 isReferenceType = VD->getType()->isReferenceType(); 7141 } 7142 } 7143 7144 // For most expressions, the cast is directly above the DeclRefExpr. 7145 // For conditional operators, the cast can be outside the conditional 7146 // operator if both expressions are DeclRefExpr's. 7147 void HandleValue(Expr *E) { 7148 if (isReferenceType) 7149 return; 7150 E = E->IgnoreParenImpCasts(); 7151 if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) { 7152 HandleDeclRefExpr(DRE); 7153 return; 7154 } 7155 7156 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 7157 HandleValue(CO->getTrueExpr()); 7158 HandleValue(CO->getFalseExpr()); 7159 return; 7160 } 7161 7162 if (isa<MemberExpr>(E)) { 7163 Expr *Base = E->IgnoreParenImpCasts(); 7164 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 7165 // Check for static member variables and don't warn on them. 7166 if (!isa<FieldDecl>(ME->getMemberDecl())) 7167 return; 7168 Base = ME->getBase()->IgnoreParenImpCasts(); 7169 } 7170 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) 7171 HandleDeclRefExpr(DRE); 7172 return; 7173 } 7174 } 7175 7176 // Reference types are handled here since all uses of references are 7177 // bad, not just r-value uses. 7178 void VisitDeclRefExpr(DeclRefExpr *E) { 7179 if (isReferenceType) 7180 HandleDeclRefExpr(E); 7181 } 7182 7183 void VisitImplicitCastExpr(ImplicitCastExpr *E) { 7184 if (E->getCastKind() == CK_LValueToRValue || 7185 (isRecordType && E->getCastKind() == CK_NoOp)) 7186 HandleValue(E->getSubExpr()); 7187 7188 Inherited::VisitImplicitCastExpr(E); 7189 } 7190 7191 void VisitMemberExpr(MemberExpr *E) { 7192 // Don't warn on arrays since they can be treated as pointers. 7193 if (E->getType()->canDecayToPointerType()) return; 7194 7195 // Warn when a non-static method call is followed by non-static member 7196 // field accesses, which is followed by a DeclRefExpr. 7197 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl()); 7198 bool Warn = (MD && !MD->isStatic()); 7199 Expr *Base = E->getBase()->IgnoreParenImpCasts(); 7200 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) { 7201 if (!isa<FieldDecl>(ME->getMemberDecl())) 7202 Warn = false; 7203 Base = ME->getBase()->IgnoreParenImpCasts(); 7204 } 7205 7206 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) { 7207 if (Warn) 7208 HandleDeclRefExpr(DRE); 7209 return; 7210 } 7211 7212 // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr. 7213 // Visit that expression. 7214 Visit(Base); 7215 } 7216 7217 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 7218 if (E->getNumArgs() > 0) 7219 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getArg(0))) 7220 HandleDeclRefExpr(DRE); 7221 7222 Inherited::VisitCXXOperatorCallExpr(E); 7223 } 7224 7225 void VisitUnaryOperator(UnaryOperator *E) { 7226 // For POD record types, addresses of its own members are well-defined. 7227 if (E->getOpcode() == UO_AddrOf && isRecordType && 7228 isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) { 7229 if (!isPODType) 7230 HandleValue(E->getSubExpr()); 7231 return; 7232 } 7233 Inherited::VisitUnaryOperator(E); 7234 } 7235 7236 void VisitObjCMessageExpr(ObjCMessageExpr *E) { return; } 7237 7238 void HandleDeclRefExpr(DeclRefExpr *DRE) { 7239 Decl* ReferenceDecl = DRE->getDecl(); 7240 if (OrigDecl != ReferenceDecl) return; 7241 unsigned diag; 7242 if (isReferenceType) { 7243 diag = diag::warn_uninit_self_reference_in_reference_init; 7244 } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) { 7245 diag = diag::warn_static_self_reference_in_init; 7246 } else { 7247 diag = diag::warn_uninit_self_reference_in_init; 7248 } 7249 7250 S.DiagRuntimeBehavior(DRE->getLocStart(), DRE, 7251 S.PDiag(diag) 7252 << DRE->getNameInfo().getName() 7253 << OrigDecl->getLocation() 7254 << DRE->getSourceRange()); 7255 } 7256 }; 7257 7258 /// CheckSelfReference - Warns if OrigDecl is used in expression E. 7259 static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E, 7260 bool DirectInit) { 7261 // Parameters arguments are occassionially constructed with itself, 7262 // for instance, in recursive functions. Skip them. 7263 if (isa<ParmVarDecl>(OrigDecl)) 7264 return; 7265 7266 E = E->IgnoreParens(); 7267 7268 // Skip checking T a = a where T is not a record or reference type. 7269 // Doing so is a way to silence uninitialized warnings. 7270 if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType()) 7271 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) 7272 if (ICE->getCastKind() == CK_LValueToRValue) 7273 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr())) 7274 if (DRE->getDecl() == OrigDecl) 7275 return; 7276 7277 SelfReferenceChecker(S, OrigDecl).Visit(E); 7278 } 7279 } 7280 7281 /// AddInitializerToDecl - Adds the initializer Init to the 7282 /// declaration dcl. If DirectInit is true, this is C++ direct 7283 /// initialization rather than copy initialization. 7284 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, 7285 bool DirectInit, bool TypeMayContainAuto) { 7286 // If there is no declaration, there was an error parsing it. Just ignore 7287 // the initializer. 7288 if (RealDecl == 0 || RealDecl->isInvalidDecl()) 7289 return; 7290 7291 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) { 7292 // With declarators parsed the way they are, the parser cannot 7293 // distinguish between a normal initializer and a pure-specifier. 7294 // Thus this grotesque test. 7295 IntegerLiteral *IL; 7296 if ((IL = dyn_cast<IntegerLiteral>(Init)) && IL->getValue() == 0 && 7297 Context.getCanonicalType(IL->getType()) == Context.IntTy) 7298 CheckPureMethod(Method, Init->getSourceRange()); 7299 else { 7300 Diag(Method->getLocation(), diag::err_member_function_initialization) 7301 << Method->getDeclName() << Init->getSourceRange(); 7302 Method->setInvalidDecl(); 7303 } 7304 return; 7305 } 7306 7307 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); 7308 if (!VDecl) { 7309 assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here"); 7310 Diag(RealDecl->getLocation(), diag::err_illegal_initializer); 7311 RealDecl->setInvalidDecl(); 7312 return; 7313 } 7314 7315 ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init); 7316 7317 // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for. 7318 if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) { 7319 Expr *DeduceInit = Init; 7320 // Initializer could be a C++ direct-initializer. Deduction only works if it 7321 // contains exactly one expression. 7322 if (CXXDirectInit) { 7323 if (CXXDirectInit->getNumExprs() == 0) { 7324 // It isn't possible to write this directly, but it is possible to 7325 // end up in this situation with "auto x(some_pack...);" 7326 Diag(CXXDirectInit->getLocStart(), 7327 diag::err_auto_var_init_no_expression) 7328 << VDecl->getDeclName() << VDecl->getType() 7329 << VDecl->getSourceRange(); 7330 RealDecl->setInvalidDecl(); 7331 return; 7332 } else if (CXXDirectInit->getNumExprs() > 1) { 7333 Diag(CXXDirectInit->getExpr(1)->getLocStart(), 7334 diag::err_auto_var_init_multiple_expressions) 7335 << VDecl->getDeclName() << VDecl->getType() 7336 << VDecl->getSourceRange(); 7337 RealDecl->setInvalidDecl(); 7338 return; 7339 } else { 7340 DeduceInit = CXXDirectInit->getExpr(0); 7341 } 7342 } 7343 7344 // Expressions default to 'id' when we're in a debugger. 7345 bool DefaultedToAuto = false; 7346 if (getLangOpts().DebuggerCastResultToId && 7347 Init->getType() == Context.UnknownAnyTy) { 7348 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 7349 if (Result.isInvalid()) { 7350 VDecl->setInvalidDecl(); 7351 return; 7352 } 7353 Init = Result.take(); 7354 DefaultedToAuto = true; 7355 } 7356 7357 QualType DeducedType; 7358 if (DeduceAutoType(VDecl->getTypeSourceInfo(), DeduceInit, DeducedType) == 7359 DAR_Failed) 7360 DiagnoseAutoDeductionFailure(VDecl, DeduceInit); 7361 if (DeducedType.isNull()) { 7362 RealDecl->setInvalidDecl(); 7363 return; 7364 } 7365 VDecl->setType(DeducedType); 7366 assert(VDecl->isLinkageValid()); 7367 7368 // In ARC, infer lifetime. 7369 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl)) 7370 VDecl->setInvalidDecl(); 7371 7372 // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using 7373 // 'id' instead of a specific object type prevents most of our usual checks. 7374 // We only want to warn outside of template instantiations, though: 7375 // inside a template, the 'id' could have come from a parameter. 7376 if (ActiveTemplateInstantiations.empty() && !DefaultedToAuto && 7377 DeducedType->isObjCIdType()) { 7378 SourceLocation Loc = 7379 VDecl->getTypeSourceInfo()->getTypeLoc().getBeginLoc(); 7380 Diag(Loc, diag::warn_auto_var_is_id) 7381 << VDecl->getDeclName() << DeduceInit->getSourceRange(); 7382 } 7383 7384 // If this is a redeclaration, check that the type we just deduced matches 7385 // the previously declared type. 7386 if (VarDecl *Old = VDecl->getPreviousDecl()) 7387 MergeVarDeclTypes(VDecl, Old, /*OldWasHidden*/ false); 7388 7389 // Check the deduced type is valid for a variable declaration. 7390 CheckVariableDeclarationType(VDecl); 7391 if (VDecl->isInvalidDecl()) 7392 return; 7393 } 7394 7395 if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) { 7396 // C99 6.7.8p5. C++ has no such restriction, but that is a defect. 7397 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init); 7398 VDecl->setInvalidDecl(); 7399 return; 7400 } 7401 7402 if (!VDecl->getType()->isDependentType()) { 7403 // A definition must end up with a complete type, which means it must be 7404 // complete with the restriction that an array type might be completed by 7405 // the initializer; note that later code assumes this restriction. 7406 QualType BaseDeclType = VDecl->getType(); 7407 if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType)) 7408 BaseDeclType = Array->getElementType(); 7409 if (RequireCompleteType(VDecl->getLocation(), BaseDeclType, 7410 diag::err_typecheck_decl_incomplete_type)) { 7411 RealDecl->setInvalidDecl(); 7412 return; 7413 } 7414 7415 // The variable can not have an abstract class type. 7416 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(), 7417 diag::err_abstract_type_in_decl, 7418 AbstractVariableType)) 7419 VDecl->setInvalidDecl(); 7420 } 7421 7422 const VarDecl *Def; 7423 if ((Def = VDecl->getDefinition()) && Def != VDecl) { 7424 Diag(VDecl->getLocation(), diag::err_redefinition) 7425 << VDecl->getDeclName(); 7426 Diag(Def->getLocation(), diag::note_previous_definition); 7427 VDecl->setInvalidDecl(); 7428 return; 7429 } 7430 7431 const VarDecl* PrevInit = 0; 7432 if (getLangOpts().CPlusPlus) { 7433 // C++ [class.static.data]p4 7434 // If a static data member is of const integral or const 7435 // enumeration type, its declaration in the class definition can 7436 // specify a constant-initializer which shall be an integral 7437 // constant expression (5.19). In that case, the member can appear 7438 // in integral constant expressions. The member shall still be 7439 // defined in a namespace scope if it is used in the program and the 7440 // namespace scope definition shall not contain an initializer. 7441 // 7442 // We already performed a redefinition check above, but for static 7443 // data members we also need to check whether there was an in-class 7444 // declaration with an initializer. 7445 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) { 7446 Diag(VDecl->getLocation(), diag::err_redefinition) 7447 << VDecl->getDeclName(); 7448 Diag(PrevInit->getLocation(), diag::note_previous_definition); 7449 return; 7450 } 7451 7452 if (VDecl->hasLocalStorage()) 7453 getCurFunction()->setHasBranchProtectedScope(); 7454 7455 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) { 7456 VDecl->setInvalidDecl(); 7457 return; 7458 } 7459 } 7460 7461 // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside 7462 // a kernel function cannot be initialized." 7463 if (VDecl->getStorageClass() == SC_OpenCLWorkGroupLocal) { 7464 Diag(VDecl->getLocation(), diag::err_local_cant_init); 7465 VDecl->setInvalidDecl(); 7466 return; 7467 } 7468 7469 // Get the decls type and save a reference for later, since 7470 // CheckInitializerTypes may change it. 7471 QualType DclT = VDecl->getType(), SavT = DclT; 7472 7473 // Expressions default to 'id' when we're in a debugger 7474 // and we are assigning it to a variable of Objective-C pointer type. 7475 if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() && 7476 Init->getType() == Context.UnknownAnyTy) { 7477 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType()); 7478 if (Result.isInvalid()) { 7479 VDecl->setInvalidDecl(); 7480 return; 7481 } 7482 Init = Result.take(); 7483 } 7484 7485 // Perform the initialization. 7486 if (!VDecl->isInvalidDecl()) { 7487 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); 7488 InitializationKind Kind 7489 = DirectInit ? 7490 CXXDirectInit ? InitializationKind::CreateDirect(VDecl->getLocation(), 7491 Init->getLocStart(), 7492 Init->getLocEnd()) 7493 : InitializationKind::CreateDirectList( 7494 VDecl->getLocation()) 7495 : InitializationKind::CreateCopy(VDecl->getLocation(), 7496 Init->getLocStart()); 7497 7498 MultiExprArg Args = Init; 7499 if (CXXDirectInit) 7500 Args = MultiExprArg(CXXDirectInit->getExprs(), 7501 CXXDirectInit->getNumExprs()); 7502 7503 InitializationSequence InitSeq(*this, Entity, Kind, Args); 7504 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT); 7505 if (Result.isInvalid()) { 7506 VDecl->setInvalidDecl(); 7507 return; 7508 } 7509 7510 Init = Result.takeAs<Expr>(); 7511 } 7512 7513 // Check for self-references within variable initializers. 7514 // Variables declared within a function/method body (except for references) 7515 // are handled by a dataflow analysis. 7516 if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() || 7517 VDecl->getType()->isReferenceType()) { 7518 CheckSelfReference(*this, RealDecl, Init, DirectInit); 7519 } 7520 7521 // If the type changed, it means we had an incomplete type that was 7522 // completed by the initializer. For example: 7523 // int ary[] = { 1, 3, 5 }; 7524 // "ary" transitions from an IncompleteArrayType to a ConstantArrayType. 7525 if (!VDecl->isInvalidDecl() && (DclT != SavT)) 7526 VDecl->setType(DclT); 7527 7528 if (!VDecl->isInvalidDecl()) { 7529 checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init); 7530 7531 if (VDecl->hasAttr<BlocksAttr>()) 7532 checkRetainCycles(VDecl, Init); 7533 7534 // It is safe to assign a weak reference into a strong variable. 7535 // Although this code can still have problems: 7536 // id x = self.weakProp; 7537 // id y = self.weakProp; 7538 // we do not warn to warn spuriously when 'x' and 'y' are on separate 7539 // paths through the function. This should be revisited if 7540 // -Wrepeated-use-of-weak is made flow-sensitive. 7541 if (VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong) { 7542 DiagnosticsEngine::Level Level = 7543 Diags.getDiagnosticLevel(diag::warn_arc_repeated_use_of_weak, 7544 Init->getLocStart()); 7545 if (Level != DiagnosticsEngine::Ignored) 7546 getCurFunction()->markSafeWeakUse(Init); 7547 } 7548 } 7549 7550 // The initialization is usually a full-expression. 7551 // 7552 // FIXME: If this is a braced initialization of an aggregate, it is not 7553 // an expression, and each individual field initializer is a separate 7554 // full-expression. For instance, in: 7555 // 7556 // struct Temp { ~Temp(); }; 7557 // struct S { S(Temp); }; 7558 // struct T { S a, b; } t = { Temp(), Temp() } 7559 // 7560 // we should destroy the first Temp before constructing the second. 7561 ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(), 7562 false, 7563 VDecl->isConstexpr()); 7564 if (Result.isInvalid()) { 7565 VDecl->setInvalidDecl(); 7566 return; 7567 } 7568 Init = Result.take(); 7569 7570 // Attach the initializer to the decl. 7571 VDecl->setInit(Init); 7572 7573 if (VDecl->isLocalVarDecl()) { 7574 // C99 6.7.8p4: All the expressions in an initializer for an object that has 7575 // static storage duration shall be constant expressions or string literals. 7576 // C++ does not have this restriction. 7577 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl() && 7578 VDecl->getStorageClass() == SC_Static) 7579 CheckForConstantInitializer(Init, DclT); 7580 } else if (VDecl->isStaticDataMember() && 7581 VDecl->getLexicalDeclContext()->isRecord()) { 7582 // This is an in-class initialization for a static data member, e.g., 7583 // 7584 // struct S { 7585 // static const int value = 17; 7586 // }; 7587 7588 // C++ [class.mem]p4: 7589 // A member-declarator can contain a constant-initializer only 7590 // if it declares a static member (9.4) of const integral or 7591 // const enumeration type, see 9.4.2. 7592 // 7593 // C++11 [class.static.data]p3: 7594 // If a non-volatile const static data member is of integral or 7595 // enumeration type, its declaration in the class definition can 7596 // specify a brace-or-equal-initializer in which every initalizer-clause 7597 // that is an assignment-expression is a constant expression. A static 7598 // data member of literal type can be declared in the class definition 7599 // with the constexpr specifier; if so, its declaration shall specify a 7600 // brace-or-equal-initializer in which every initializer-clause that is 7601 // an assignment-expression is a constant expression. 7602 7603 // Do nothing on dependent types. 7604 if (DclT->isDependentType()) { 7605 7606 // Allow any 'static constexpr' members, whether or not they are of literal 7607 // type. We separately check that every constexpr variable is of literal 7608 // type. 7609 } else if (VDecl->isConstexpr()) { 7610 7611 // Require constness. 7612 } else if (!DclT.isConstQualified()) { 7613 Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const) 7614 << Init->getSourceRange(); 7615 VDecl->setInvalidDecl(); 7616 7617 // We allow integer constant expressions in all cases. 7618 } else if (DclT->isIntegralOrEnumerationType()) { 7619 // Check whether the expression is a constant expression. 7620 SourceLocation Loc; 7621 if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified()) 7622 // In C++11, a non-constexpr const static data member with an 7623 // in-class initializer cannot be volatile. 7624 Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile); 7625 else if (Init->isValueDependent()) 7626 ; // Nothing to check. 7627 else if (Init->isIntegerConstantExpr(Context, &Loc)) 7628 ; // Ok, it's an ICE! 7629 else if (Init->isEvaluatable(Context)) { 7630 // If we can constant fold the initializer through heroics, accept it, 7631 // but report this as a use of an extension for -pedantic. 7632 Diag(Loc, diag::ext_in_class_initializer_non_constant) 7633 << Init->getSourceRange(); 7634 } else { 7635 // Otherwise, this is some crazy unknown case. Report the issue at the 7636 // location provided by the isIntegerConstantExpr failed check. 7637 Diag(Loc, diag::err_in_class_initializer_non_constant) 7638 << Init->getSourceRange(); 7639 VDecl->setInvalidDecl(); 7640 } 7641 7642 // We allow foldable floating-point constants as an extension. 7643 } else if (DclT->isFloatingType()) { // also permits complex, which is ok 7644 // In C++98, this is a GNU extension. In C++11, it is not, but we support 7645 // it anyway and provide a fixit to add the 'constexpr'. 7646 if (getLangOpts().CPlusPlus11) { 7647 Diag(VDecl->getLocation(), 7648 diag::ext_in_class_initializer_float_type_cxx11) 7649 << DclT << Init->getSourceRange(); 7650 Diag(VDecl->getLocStart(), 7651 diag::note_in_class_initializer_float_type_cxx11) 7652 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr "); 7653 } else { 7654 Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type) 7655 << DclT << Init->getSourceRange(); 7656 7657 if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) { 7658 Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant) 7659 << Init->getSourceRange(); 7660 VDecl->setInvalidDecl(); 7661 } 7662 } 7663 7664 // Suggest adding 'constexpr' in C++11 for literal types. 7665 } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) { 7666 Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type) 7667 << DclT << Init->getSourceRange() 7668 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr "); 7669 VDecl->setConstexpr(true); 7670 7671 } else { 7672 Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type) 7673 << DclT << Init->getSourceRange(); 7674 VDecl->setInvalidDecl(); 7675 } 7676 } else if (VDecl->isFileVarDecl()) { 7677 if (VDecl->getStorageClass() == SC_Extern && 7678 (!getLangOpts().CPlusPlus || 7679 !(Context.getBaseElementType(VDecl->getType()).isConstQualified() || 7680 VDecl->isExternC()))) 7681 Diag(VDecl->getLocation(), diag::warn_extern_init); 7682 7683 // C99 6.7.8p4. All file scoped initializers need to be constant. 7684 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) 7685 CheckForConstantInitializer(Init, DclT); 7686 else if (VDecl->getTLSKind() == VarDecl::TLS_Static && 7687 !VDecl->isInvalidDecl() && !DclT->isDependentType() && 7688 !Init->isValueDependent() && !VDecl->isConstexpr() && 7689 !Init->isConstantInitializer( 7690 Context, VDecl->getType()->isReferenceType())) { 7691 // GNU C++98 edits for __thread, [basic.start.init]p4: 7692 // An object of thread storage duration shall not require dynamic 7693 // initialization. 7694 // FIXME: Need strict checking here. 7695 Diag(VDecl->getLocation(), diag::err_thread_dynamic_init); 7696 if (getLangOpts().CPlusPlus11) 7697 Diag(VDecl->getLocation(), diag::note_use_thread_local); 7698 } 7699 } 7700 7701 // We will represent direct-initialization similarly to copy-initialization: 7702 // int x(1); -as-> int x = 1; 7703 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c); 7704 // 7705 // Clients that want to distinguish between the two forms, can check for 7706 // direct initializer using VarDecl::getInitStyle(). 7707 // A major benefit is that clients that don't particularly care about which 7708 // exactly form was it (like the CodeGen) can handle both cases without 7709 // special case code. 7710 7711 // C++ 8.5p11: 7712 // The form of initialization (using parentheses or '=') is generally 7713 // insignificant, but does matter when the entity being initialized has a 7714 // class type. 7715 if (CXXDirectInit) { 7716 assert(DirectInit && "Call-style initializer must be direct init."); 7717 VDecl->setInitStyle(VarDecl::CallInit); 7718 } else if (DirectInit) { 7719 // This must be list-initialization. No other way is direct-initialization. 7720 VDecl->setInitStyle(VarDecl::ListInit); 7721 } 7722 7723 CheckCompleteVariableDeclaration(VDecl); 7724 } 7725 7726 /// ActOnInitializerError - Given that there was an error parsing an 7727 /// initializer for the given declaration, try to return to some form 7728 /// of sanity. 7729 void Sema::ActOnInitializerError(Decl *D) { 7730 // Our main concern here is re-establishing invariants like "a 7731 // variable's type is either dependent or complete". 7732 if (!D || D->isInvalidDecl()) return; 7733 7734 VarDecl *VD = dyn_cast<VarDecl>(D); 7735 if (!VD) return; 7736 7737 // Auto types are meaningless if we can't make sense of the initializer. 7738 if (ParsingInitForAutoVars.count(D)) { 7739 D->setInvalidDecl(); 7740 return; 7741 } 7742 7743 QualType Ty = VD->getType(); 7744 if (Ty->isDependentType()) return; 7745 7746 // Require a complete type. 7747 if (RequireCompleteType(VD->getLocation(), 7748 Context.getBaseElementType(Ty), 7749 diag::err_typecheck_decl_incomplete_type)) { 7750 VD->setInvalidDecl(); 7751 return; 7752 } 7753 7754 // Require an abstract type. 7755 if (RequireNonAbstractType(VD->getLocation(), Ty, 7756 diag::err_abstract_type_in_decl, 7757 AbstractVariableType)) { 7758 VD->setInvalidDecl(); 7759 return; 7760 } 7761 7762 // Don't bother complaining about constructors or destructors, 7763 // though. 7764 } 7765 7766 void Sema::ActOnUninitializedDecl(Decl *RealDecl, 7767 bool TypeMayContainAuto) { 7768 // If there is no declaration, there was an error parsing it. Just ignore it. 7769 if (RealDecl == 0) 7770 return; 7771 7772 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) { 7773 QualType Type = Var->getType(); 7774 7775 // C++11 [dcl.spec.auto]p3 7776 if (TypeMayContainAuto && Type->getContainedAutoType()) { 7777 Diag(Var->getLocation(), diag::err_auto_var_requires_init) 7778 << Var->getDeclName() << Type; 7779 Var->setInvalidDecl(); 7780 return; 7781 } 7782 7783 // C++11 [class.static.data]p3: A static data member can be declared with 7784 // the constexpr specifier; if so, its declaration shall specify 7785 // a brace-or-equal-initializer. 7786 // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to 7787 // the definition of a variable [...] or the declaration of a static data 7788 // member. 7789 if (Var->isConstexpr() && !Var->isThisDeclarationADefinition()) { 7790 if (Var->isStaticDataMember()) 7791 Diag(Var->getLocation(), 7792 diag::err_constexpr_static_mem_var_requires_init) 7793 << Var->getDeclName(); 7794 else 7795 Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl); 7796 Var->setInvalidDecl(); 7797 return; 7798 } 7799 7800 switch (Var->isThisDeclarationADefinition()) { 7801 case VarDecl::Definition: 7802 if (!Var->isStaticDataMember() || !Var->getAnyInitializer()) 7803 break; 7804 7805 // We have an out-of-line definition of a static data member 7806 // that has an in-class initializer, so we type-check this like 7807 // a declaration. 7808 // 7809 // Fall through 7810 7811 case VarDecl::DeclarationOnly: 7812 // It's only a declaration. 7813 7814 // Block scope. C99 6.7p7: If an identifier for an object is 7815 // declared with no linkage (C99 6.2.2p6), the type for the 7816 // object shall be complete. 7817 if (!Type->isDependentType() && Var->isLocalVarDecl() && 7818 !Var->getLinkage() && !Var->isInvalidDecl() && 7819 RequireCompleteType(Var->getLocation(), Type, 7820 diag::err_typecheck_decl_incomplete_type)) 7821 Var->setInvalidDecl(); 7822 7823 // Make sure that the type is not abstract. 7824 if (!Type->isDependentType() && !Var->isInvalidDecl() && 7825 RequireNonAbstractType(Var->getLocation(), Type, 7826 diag::err_abstract_type_in_decl, 7827 AbstractVariableType)) 7828 Var->setInvalidDecl(); 7829 if (!Type->isDependentType() && !Var->isInvalidDecl() && 7830 Var->getStorageClass() == SC_PrivateExtern) { 7831 Diag(Var->getLocation(), diag::warn_private_extern); 7832 Diag(Var->getLocation(), diag::note_private_extern); 7833 } 7834 7835 return; 7836 7837 case VarDecl::TentativeDefinition: 7838 // File scope. C99 6.9.2p2: A declaration of an identifier for an 7839 // object that has file scope without an initializer, and without a 7840 // storage-class specifier or with the storage-class specifier "static", 7841 // constitutes a tentative definition. Note: A tentative definition with 7842 // external linkage is valid (C99 6.2.2p5). 7843 if (!Var->isInvalidDecl()) { 7844 if (const IncompleteArrayType *ArrayT 7845 = Context.getAsIncompleteArrayType(Type)) { 7846 if (RequireCompleteType(Var->getLocation(), 7847 ArrayT->getElementType(), 7848 diag::err_illegal_decl_array_incomplete_type)) 7849 Var->setInvalidDecl(); 7850 } else if (Var->getStorageClass() == SC_Static) { 7851 // C99 6.9.2p3: If the declaration of an identifier for an object is 7852 // a tentative definition and has internal linkage (C99 6.2.2p3), the 7853 // declared type shall not be an incomplete type. 7854 // NOTE: code such as the following 7855 // static struct s; 7856 // struct s { int a; }; 7857 // is accepted by gcc. Hence here we issue a warning instead of 7858 // an error and we do not invalidate the static declaration. 7859 // NOTE: to avoid multiple warnings, only check the first declaration. 7860 if (Var->getPreviousDecl() == 0) 7861 RequireCompleteType(Var->getLocation(), Type, 7862 diag::ext_typecheck_decl_incomplete_type); 7863 } 7864 } 7865 7866 // Record the tentative definition; we're done. 7867 if (!Var->isInvalidDecl()) 7868 TentativeDefinitions.push_back(Var); 7869 return; 7870 } 7871 7872 // Provide a specific diagnostic for uninitialized variable 7873 // definitions with incomplete array type. 7874 if (Type->isIncompleteArrayType()) { 7875 Diag(Var->getLocation(), 7876 diag::err_typecheck_incomplete_array_needs_initializer); 7877 Var->setInvalidDecl(); 7878 return; 7879 } 7880 7881 // Provide a specific diagnostic for uninitialized variable 7882 // definitions with reference type. 7883 if (Type->isReferenceType()) { 7884 Diag(Var->getLocation(), diag::err_reference_var_requires_init) 7885 << Var->getDeclName() 7886 << SourceRange(Var->getLocation(), Var->getLocation()); 7887 Var->setInvalidDecl(); 7888 return; 7889 } 7890 7891 // Do not attempt to type-check the default initializer for a 7892 // variable with dependent type. 7893 if (Type->isDependentType()) 7894 return; 7895 7896 if (Var->isInvalidDecl()) 7897 return; 7898 7899 if (RequireCompleteType(Var->getLocation(), 7900 Context.getBaseElementType(Type), 7901 diag::err_typecheck_decl_incomplete_type)) { 7902 Var->setInvalidDecl(); 7903 return; 7904 } 7905 7906 // The variable can not have an abstract class type. 7907 if (RequireNonAbstractType(Var->getLocation(), Type, 7908 diag::err_abstract_type_in_decl, 7909 AbstractVariableType)) { 7910 Var->setInvalidDecl(); 7911 return; 7912 } 7913 7914 // Check for jumps past the implicit initializer. C++0x 7915 // clarifies that this applies to a "variable with automatic 7916 // storage duration", not a "local variable". 7917 // C++11 [stmt.dcl]p3 7918 // A program that jumps from a point where a variable with automatic 7919 // storage duration is not in scope to a point where it is in scope is 7920 // ill-formed unless the variable has scalar type, class type with a 7921 // trivial default constructor and a trivial destructor, a cv-qualified 7922 // version of one of these types, or an array of one of the preceding 7923 // types and is declared without an initializer. 7924 if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) { 7925 if (const RecordType *Record 7926 = Context.getBaseElementType(Type)->getAs<RecordType>()) { 7927 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl()); 7928 // Mark the function for further checking even if the looser rules of 7929 // C++11 do not require such checks, so that we can diagnose 7930 // incompatibilities with C++98. 7931 if (!CXXRecord->isPOD()) 7932 getCurFunction()->setHasBranchProtectedScope(); 7933 } 7934 } 7935 7936 // C++03 [dcl.init]p9: 7937 // If no initializer is specified for an object, and the 7938 // object is of (possibly cv-qualified) non-POD class type (or 7939 // array thereof), the object shall be default-initialized; if 7940 // the object is of const-qualified type, the underlying class 7941 // type shall have a user-declared default 7942 // constructor. Otherwise, if no initializer is specified for 7943 // a non- static object, the object and its subobjects, if 7944 // any, have an indeterminate initial value); if the object 7945 // or any of its subobjects are of const-qualified type, the 7946 // program is ill-formed. 7947 // C++0x [dcl.init]p11: 7948 // If no initializer is specified for an object, the object is 7949 // default-initialized; [...]. 7950 InitializedEntity Entity = InitializedEntity::InitializeVariable(Var); 7951 InitializationKind Kind 7952 = InitializationKind::CreateDefault(Var->getLocation()); 7953 7954 InitializationSequence InitSeq(*this, Entity, Kind, None); 7955 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None); 7956 if (Init.isInvalid()) 7957 Var->setInvalidDecl(); 7958 else if (Init.get()) { 7959 Var->setInit(MaybeCreateExprWithCleanups(Init.get())); 7960 // This is important for template substitution. 7961 Var->setInitStyle(VarDecl::CallInit); 7962 } 7963 7964 CheckCompleteVariableDeclaration(Var); 7965 } 7966 } 7967 7968 void Sema::ActOnCXXForRangeDecl(Decl *D) { 7969 VarDecl *VD = dyn_cast<VarDecl>(D); 7970 if (!VD) { 7971 Diag(D->getLocation(), diag::err_for_range_decl_must_be_var); 7972 D->setInvalidDecl(); 7973 return; 7974 } 7975 7976 VD->setCXXForRangeDecl(true); 7977 7978 // for-range-declaration cannot be given a storage class specifier. 7979 int Error = -1; 7980 switch (VD->getStorageClass()) { 7981 case SC_None: 7982 break; 7983 case SC_Extern: 7984 Error = 0; 7985 break; 7986 case SC_Static: 7987 Error = 1; 7988 break; 7989 case SC_PrivateExtern: 7990 Error = 2; 7991 break; 7992 case SC_Auto: 7993 Error = 3; 7994 break; 7995 case SC_Register: 7996 Error = 4; 7997 break; 7998 case SC_OpenCLWorkGroupLocal: 7999 llvm_unreachable("Unexpected storage class"); 8000 } 8001 if (VD->isConstexpr()) 8002 Error = 5; 8003 if (Error != -1) { 8004 Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class) 8005 << VD->getDeclName() << Error; 8006 D->setInvalidDecl(); 8007 } 8008 } 8009 8010 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) { 8011 if (var->isInvalidDecl()) return; 8012 8013 // In ARC, don't allow jumps past the implicit initialization of a 8014 // local retaining variable. 8015 if (getLangOpts().ObjCAutoRefCount && 8016 var->hasLocalStorage()) { 8017 switch (var->getType().getObjCLifetime()) { 8018 case Qualifiers::OCL_None: 8019 case Qualifiers::OCL_ExplicitNone: 8020 case Qualifiers::OCL_Autoreleasing: 8021 break; 8022 8023 case Qualifiers::OCL_Weak: 8024 case Qualifiers::OCL_Strong: 8025 getCurFunction()->setHasBranchProtectedScope(); 8026 break; 8027 } 8028 } 8029 8030 if (var->isThisDeclarationADefinition() && 8031 var->hasExternalLinkage() && 8032 getDiagnostics().getDiagnosticLevel( 8033 diag::warn_missing_variable_declarations, 8034 var->getLocation())) { 8035 // Find a previous declaration that's not a definition. 8036 VarDecl *prev = var->getPreviousDecl(); 8037 while (prev && prev->isThisDeclarationADefinition()) 8038 prev = prev->getPreviousDecl(); 8039 8040 if (!prev) 8041 Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var; 8042 } 8043 8044 if (var->getTLSKind() == VarDecl::TLS_Static && 8045 var->getType().isDestructedType()) { 8046 // GNU C++98 edits for __thread, [basic.start.term]p3: 8047 // The type of an object with thread storage duration shall not 8048 // have a non-trivial destructor. 8049 Diag(var->getLocation(), diag::err_thread_nontrivial_dtor); 8050 if (getLangOpts().CPlusPlus11) 8051 Diag(var->getLocation(), diag::note_use_thread_local); 8052 } 8053 8054 // All the following checks are C++ only. 8055 if (!getLangOpts().CPlusPlus) return; 8056 8057 QualType type = var->getType(); 8058 if (type->isDependentType()) return; 8059 8060 // __block variables might require us to capture a copy-initializer. 8061 if (var->hasAttr<BlocksAttr>()) { 8062 // It's currently invalid to ever have a __block variable with an 8063 // array type; should we diagnose that here? 8064 8065 // Regardless, we don't want to ignore array nesting when 8066 // constructing this copy. 8067 if (type->isStructureOrClassType()) { 8068 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated); 8069 SourceLocation poi = var->getLocation(); 8070 Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi); 8071 ExprResult result 8072 = PerformMoveOrCopyInitialization( 8073 InitializedEntity::InitializeBlock(poi, type, false), 8074 var, var->getType(), varRef, /*AllowNRVO=*/true); 8075 if (!result.isInvalid()) { 8076 result = MaybeCreateExprWithCleanups(result); 8077 Expr *init = result.takeAs<Expr>(); 8078 Context.setBlockVarCopyInits(var, init); 8079 } 8080 } 8081 } 8082 8083 Expr *Init = var->getInit(); 8084 bool IsGlobal = var->hasGlobalStorage() && !var->isStaticLocal(); 8085 QualType baseType = Context.getBaseElementType(type); 8086 8087 if (!var->getDeclContext()->isDependentContext() && 8088 Init && !Init->isValueDependent()) { 8089 if (IsGlobal && !var->isConstexpr() && 8090 getDiagnostics().getDiagnosticLevel(diag::warn_global_constructor, 8091 var->getLocation()) 8092 != DiagnosticsEngine::Ignored && 8093 !Init->isConstantInitializer(Context, baseType->isReferenceType())) 8094 Diag(var->getLocation(), diag::warn_global_constructor) 8095 << Init->getSourceRange(); 8096 8097 if (var->isConstexpr()) { 8098 SmallVector<PartialDiagnosticAt, 8> Notes; 8099 if (!var->evaluateValue(Notes) || !var->isInitICE()) { 8100 SourceLocation DiagLoc = var->getLocation(); 8101 // If the note doesn't add any useful information other than a source 8102 // location, fold it into the primary diagnostic. 8103 if (Notes.size() == 1 && Notes[0].second.getDiagID() == 8104 diag::note_invalid_subexpr_in_const_expr) { 8105 DiagLoc = Notes[0].first; 8106 Notes.clear(); 8107 } 8108 Diag(DiagLoc, diag::err_constexpr_var_requires_const_init) 8109 << var << Init->getSourceRange(); 8110 for (unsigned I = 0, N = Notes.size(); I != N; ++I) 8111 Diag(Notes[I].first, Notes[I].second); 8112 } 8113 } else if (var->isUsableInConstantExpressions(Context)) { 8114 // Check whether the initializer of a const variable of integral or 8115 // enumeration type is an ICE now, since we can't tell whether it was 8116 // initialized by a constant expression if we check later. 8117 var->checkInitIsICE(); 8118 } 8119 } 8120 8121 // Require the destructor. 8122 if (const RecordType *recordType = baseType->getAs<RecordType>()) 8123 FinalizeVarWithDestructor(var, recordType); 8124 } 8125 8126 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform 8127 /// any semantic actions necessary after any initializer has been attached. 8128 void 8129 Sema::FinalizeDeclaration(Decl *ThisDecl) { 8130 // Note that we are no longer parsing the initializer for this declaration. 8131 ParsingInitForAutoVars.erase(ThisDecl); 8132 8133 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl); 8134 if (!VD) 8135 return; 8136 8137 const DeclContext *DC = VD->getDeclContext(); 8138 // If there's a #pragma GCC visibility in scope, and this isn't a class 8139 // member, set the visibility of this variable. 8140 if (!DC->isRecord() && VD->hasExternalLinkage()) 8141 AddPushedVisibilityAttribute(VD); 8142 8143 if (VD->isFileVarDecl()) 8144 MarkUnusedFileScopedDecl(VD); 8145 8146 // Now we have parsed the initializer and can update the table of magic 8147 // tag values. 8148 if (!VD->hasAttr<TypeTagForDatatypeAttr>() || 8149 !VD->getType()->isIntegralOrEnumerationType()) 8150 return; 8151 8152 for (specific_attr_iterator<TypeTagForDatatypeAttr> 8153 I = ThisDecl->specific_attr_begin<TypeTagForDatatypeAttr>(), 8154 E = ThisDecl->specific_attr_end<TypeTagForDatatypeAttr>(); 8155 I != E; ++I) { 8156 const Expr *MagicValueExpr = VD->getInit(); 8157 if (!MagicValueExpr) { 8158 continue; 8159 } 8160 llvm::APSInt MagicValueInt; 8161 if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) { 8162 Diag(I->getRange().getBegin(), 8163 diag::err_type_tag_for_datatype_not_ice) 8164 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 8165 continue; 8166 } 8167 if (MagicValueInt.getActiveBits() > 64) { 8168 Diag(I->getRange().getBegin(), 8169 diag::err_type_tag_for_datatype_too_large) 8170 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange(); 8171 continue; 8172 } 8173 uint64_t MagicValue = MagicValueInt.getZExtValue(); 8174 RegisterTypeTagForDatatype(I->getArgumentKind(), 8175 MagicValue, 8176 I->getMatchingCType(), 8177 I->getLayoutCompatible(), 8178 I->getMustBeNull()); 8179 } 8180 } 8181 8182 Sema::DeclGroupPtrTy 8183 Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS, 8184 Decl **Group, unsigned NumDecls) { 8185 SmallVector<Decl*, 8> Decls; 8186 8187 if (DS.isTypeSpecOwned()) 8188 Decls.push_back(DS.getRepAsDecl()); 8189 8190 for (unsigned i = 0; i != NumDecls; ++i) 8191 if (Decl *D = Group[i]) 8192 Decls.push_back(D); 8193 8194 if (DeclSpec::isDeclRep(DS.getTypeSpecType())) 8195 if (const TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) 8196 getASTContext().addUnnamedTag(Tag); 8197 8198 return BuildDeclaratorGroup(Decls.data(), Decls.size(), 8199 DS.containsPlaceholderType()); 8200 } 8201 8202 /// BuildDeclaratorGroup - convert a list of declarations into a declaration 8203 /// group, performing any necessary semantic checking. 8204 Sema::DeclGroupPtrTy 8205 Sema::BuildDeclaratorGroup(Decl **Group, unsigned NumDecls, 8206 bool TypeMayContainAuto) { 8207 // C++0x [dcl.spec.auto]p7: 8208 // If the type deduced for the template parameter U is not the same in each 8209 // deduction, the program is ill-formed. 8210 // FIXME: When initializer-list support is added, a distinction is needed 8211 // between the deduced type U and the deduced type which 'auto' stands for. 8212 // auto a = 0, b = { 1, 2, 3 }; 8213 // is legal because the deduced type U is 'int' in both cases. 8214 if (TypeMayContainAuto && NumDecls > 1) { 8215 QualType Deduced; 8216 CanQualType DeducedCanon; 8217 VarDecl *DeducedDecl = 0; 8218 for (unsigned i = 0; i != NumDecls; ++i) { 8219 if (VarDecl *D = dyn_cast<VarDecl>(Group[i])) { 8220 AutoType *AT = D->getType()->getContainedAutoType(); 8221 // Don't reissue diagnostics when instantiating a template. 8222 if (AT && D->isInvalidDecl()) 8223 break; 8224 QualType U = AT ? AT->getDeducedType() : QualType(); 8225 if (!U.isNull()) { 8226 CanQualType UCanon = Context.getCanonicalType(U); 8227 if (Deduced.isNull()) { 8228 Deduced = U; 8229 DeducedCanon = UCanon; 8230 DeducedDecl = D; 8231 } else if (DeducedCanon != UCanon) { 8232 Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(), 8233 diag::err_auto_different_deductions) 8234 << (AT->isDecltypeAuto() ? 1 : 0) 8235 << Deduced << DeducedDecl->getDeclName() 8236 << U << D->getDeclName() 8237 << DeducedDecl->getInit()->getSourceRange() 8238 << D->getInit()->getSourceRange(); 8239 D->setInvalidDecl(); 8240 break; 8241 } 8242 } 8243 } 8244 } 8245 } 8246 8247 ActOnDocumentableDecls(Group, NumDecls); 8248 8249 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, NumDecls)); 8250 } 8251 8252 void Sema::ActOnDocumentableDecl(Decl *D) { 8253 ActOnDocumentableDecls(&D, 1); 8254 } 8255 8256 void Sema::ActOnDocumentableDecls(Decl **Group, unsigned NumDecls) { 8257 // Don't parse the comment if Doxygen diagnostics are ignored. 8258 if (NumDecls == 0 || !Group[0]) 8259 return; 8260 8261 if (Diags.getDiagnosticLevel(diag::warn_doc_param_not_found, 8262 Group[0]->getLocation()) 8263 == DiagnosticsEngine::Ignored) 8264 return; 8265 8266 if (NumDecls >= 2) { 8267 // This is a decl group. Normally it will contain only declarations 8268 // procuded from declarator list. But in case we have any definitions or 8269 // additional declaration references: 8270 // 'typedef struct S {} S;' 8271 // 'typedef struct S *S;' 8272 // 'struct S *pS;' 8273 // FinalizeDeclaratorGroup adds these as separate declarations. 8274 Decl *MaybeTagDecl = Group[0]; 8275 if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) { 8276 Group++; 8277 NumDecls--; 8278 } 8279 } 8280 8281 // See if there are any new comments that are not attached to a decl. 8282 ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments(); 8283 if (!Comments.empty() && 8284 !Comments.back()->isAttached()) { 8285 // There is at least one comment that not attached to a decl. 8286 // Maybe it should be attached to one of these decls? 8287 // 8288 // Note that this way we pick up not only comments that precede the 8289 // declaration, but also comments that *follow* the declaration -- thanks to 8290 // the lookahead in the lexer: we've consumed the semicolon and looked 8291 // ahead through comments. 8292 for (unsigned i = 0; i != NumDecls; ++i) 8293 Context.getCommentForDecl(Group[i], &PP); 8294 } 8295 } 8296 8297 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator() 8298 /// to introduce parameters into function prototype scope. 8299 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) { 8300 const DeclSpec &DS = D.getDeclSpec(); 8301 8302 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'. 8303 // C++03 [dcl.stc]p2 also permits 'auto'. 8304 VarDecl::StorageClass StorageClass = SC_None; 8305 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) { 8306 StorageClass = SC_Register; 8307 } else if (getLangOpts().CPlusPlus && 8308 DS.getStorageClassSpec() == DeclSpec::SCS_auto) { 8309 StorageClass = SC_Auto; 8310 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) { 8311 Diag(DS.getStorageClassSpecLoc(), 8312 diag::err_invalid_storage_class_in_func_decl); 8313 D.getMutableDeclSpec().ClearStorageClassSpecs(); 8314 } 8315 8316 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec()) 8317 Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread) 8318 << DeclSpec::getSpecifierName(TSCS); 8319 if (DS.isConstexprSpecified()) 8320 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr) 8321 << 0; 8322 8323 DiagnoseFunctionSpecifiers(DS); 8324 8325 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 8326 QualType parmDeclType = TInfo->getType(); 8327 8328 if (getLangOpts().CPlusPlus) { 8329 // Check that there are no default arguments inside the type of this 8330 // parameter. 8331 CheckExtraCXXDefaultArguments(D); 8332 8333 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1). 8334 if (D.getCXXScopeSpec().isSet()) { 8335 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator) 8336 << D.getCXXScopeSpec().getRange(); 8337 D.getCXXScopeSpec().clear(); 8338 } 8339 } 8340 8341 // Ensure we have a valid name 8342 IdentifierInfo *II = 0; 8343 if (D.hasName()) { 8344 II = D.getIdentifier(); 8345 if (!II) { 8346 Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name) 8347 << GetNameForDeclarator(D).getName().getAsString(); 8348 D.setInvalidType(true); 8349 } 8350 } 8351 8352 // Check for redeclaration of parameters, e.g. int foo(int x, int x); 8353 if (II) { 8354 LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName, 8355 ForRedeclaration); 8356 LookupName(R, S); 8357 if (R.isSingleResult()) { 8358 NamedDecl *PrevDecl = R.getFoundDecl(); 8359 if (PrevDecl->isTemplateParameter()) { 8360 // Maybe we will complain about the shadowed template parameter. 8361 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 8362 // Just pretend that we didn't see the previous declaration. 8363 PrevDecl = 0; 8364 } else if (S->isDeclScope(PrevDecl)) { 8365 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II; 8366 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 8367 8368 // Recover by removing the name 8369 II = 0; 8370 D.SetIdentifier(0, D.getIdentifierLoc()); 8371 D.setInvalidType(true); 8372 } 8373 } 8374 } 8375 8376 // Temporarily put parameter variables in the translation unit, not 8377 // the enclosing context. This prevents them from accidentally 8378 // looking like class members in C++. 8379 ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(), 8380 D.getLocStart(), 8381 D.getIdentifierLoc(), II, 8382 parmDeclType, TInfo, 8383 StorageClass); 8384 8385 if (D.isInvalidType()) 8386 New->setInvalidDecl(); 8387 8388 assert(S->isFunctionPrototypeScope()); 8389 assert(S->getFunctionPrototypeDepth() >= 1); 8390 New->setScopeInfo(S->getFunctionPrototypeDepth() - 1, 8391 S->getNextFunctionPrototypeIndex()); 8392 8393 // Add the parameter declaration into this scope. 8394 S->AddDecl(New); 8395 if (II) 8396 IdResolver.AddDecl(New); 8397 8398 ProcessDeclAttributes(S, New, D); 8399 8400 if (D.getDeclSpec().isModulePrivateSpecified()) 8401 Diag(New->getLocation(), diag::err_module_private_local) 8402 << 1 << New->getDeclName() 8403 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 8404 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 8405 8406 if (New->hasAttr<BlocksAttr>()) { 8407 Diag(New->getLocation(), diag::err_block_on_nonlocal); 8408 } 8409 return New; 8410 } 8411 8412 /// \brief Synthesizes a variable for a parameter arising from a 8413 /// typedef. 8414 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC, 8415 SourceLocation Loc, 8416 QualType T) { 8417 /* FIXME: setting StartLoc == Loc. 8418 Would it be worth to modify callers so as to provide proper source 8419 location for the unnamed parameters, embedding the parameter's type? */ 8420 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, 0, 8421 T, Context.getTrivialTypeSourceInfo(T, Loc), 8422 SC_None, 0); 8423 Param->setImplicit(); 8424 return Param; 8425 } 8426 8427 void Sema::DiagnoseUnusedParameters(ParmVarDecl * const *Param, 8428 ParmVarDecl * const *ParamEnd) { 8429 // Don't diagnose unused-parameter errors in template instantiations; we 8430 // will already have done so in the template itself. 8431 if (!ActiveTemplateInstantiations.empty()) 8432 return; 8433 8434 for (; Param != ParamEnd; ++Param) { 8435 if (!(*Param)->isReferenced() && (*Param)->getDeclName() && 8436 !(*Param)->hasAttr<UnusedAttr>()) { 8437 Diag((*Param)->getLocation(), diag::warn_unused_parameter) 8438 << (*Param)->getDeclName(); 8439 } 8440 } 8441 } 8442 8443 void Sema::DiagnoseSizeOfParametersAndReturnValue(ParmVarDecl * const *Param, 8444 ParmVarDecl * const *ParamEnd, 8445 QualType ReturnTy, 8446 NamedDecl *D) { 8447 if (LangOpts.NumLargeByValueCopy == 0) // No check. 8448 return; 8449 8450 // Warn if the return value is pass-by-value and larger than the specified 8451 // threshold. 8452 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) { 8453 unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity(); 8454 if (Size > LangOpts.NumLargeByValueCopy) 8455 Diag(D->getLocation(), diag::warn_return_value_size) 8456 << D->getDeclName() << Size; 8457 } 8458 8459 // Warn if any parameter is pass-by-value and larger than the specified 8460 // threshold. 8461 for (; Param != ParamEnd; ++Param) { 8462 QualType T = (*Param)->getType(); 8463 if (T->isDependentType() || !T.isPODType(Context)) 8464 continue; 8465 unsigned Size = Context.getTypeSizeInChars(T).getQuantity(); 8466 if (Size > LangOpts.NumLargeByValueCopy) 8467 Diag((*Param)->getLocation(), diag::warn_parameter_size) 8468 << (*Param)->getDeclName() << Size; 8469 } 8470 } 8471 8472 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc, 8473 SourceLocation NameLoc, IdentifierInfo *Name, 8474 QualType T, TypeSourceInfo *TSInfo, 8475 VarDecl::StorageClass StorageClass) { 8476 // In ARC, infer a lifetime qualifier for appropriate parameter types. 8477 if (getLangOpts().ObjCAutoRefCount && 8478 T.getObjCLifetime() == Qualifiers::OCL_None && 8479 T->isObjCLifetimeType()) { 8480 8481 Qualifiers::ObjCLifetime lifetime; 8482 8483 // Special cases for arrays: 8484 // - if it's const, use __unsafe_unretained 8485 // - otherwise, it's an error 8486 if (T->isArrayType()) { 8487 if (!T.isConstQualified()) { 8488 DelayedDiagnostics.add( 8489 sema::DelayedDiagnostic::makeForbiddenType( 8490 NameLoc, diag::err_arc_array_param_no_ownership, T, false)); 8491 } 8492 lifetime = Qualifiers::OCL_ExplicitNone; 8493 } else { 8494 lifetime = T->getObjCARCImplicitLifetime(); 8495 } 8496 T = Context.getLifetimeQualifiedType(T, lifetime); 8497 } 8498 8499 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, 8500 Context.getAdjustedParameterType(T), 8501 TSInfo, 8502 StorageClass, 0); 8503 8504 // Parameters can not be abstract class types. 8505 // For record types, this is done by the AbstractClassUsageDiagnoser once 8506 // the class has been completely parsed. 8507 if (!CurContext->isRecord() && 8508 RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl, 8509 AbstractParamType)) 8510 New->setInvalidDecl(); 8511 8512 // Parameter declarators cannot be interface types. All ObjC objects are 8513 // passed by reference. 8514 if (T->isObjCObjectType()) { 8515 SourceLocation TypeEndLoc = TSInfo->getTypeLoc().getLocEnd(); 8516 Diag(NameLoc, 8517 diag::err_object_cannot_be_passed_returned_by_value) << 1 << T 8518 << FixItHint::CreateInsertion(TypeEndLoc, "*"); 8519 T = Context.getObjCObjectPointerType(T); 8520 New->setType(T); 8521 } 8522 8523 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage 8524 // duration shall not be qualified by an address-space qualifier." 8525 // Since all parameters have automatic store duration, they can not have 8526 // an address space. 8527 if (T.getAddressSpace() != 0) { 8528 Diag(NameLoc, diag::err_arg_with_address_space); 8529 New->setInvalidDecl(); 8530 } 8531 8532 return New; 8533 } 8534 8535 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D, 8536 SourceLocation LocAfterDecls) { 8537 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo(); 8538 8539 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared' 8540 // for a K&R function. 8541 if (!FTI.hasPrototype) { 8542 for (int i = FTI.NumArgs; i != 0; /* decrement in loop */) { 8543 --i; 8544 if (FTI.ArgInfo[i].Param == 0) { 8545 SmallString<256> Code; 8546 llvm::raw_svector_ostream(Code) << " int " 8547 << FTI.ArgInfo[i].Ident->getName() 8548 << ";\n"; 8549 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared) 8550 << FTI.ArgInfo[i].Ident 8551 << FixItHint::CreateInsertion(LocAfterDecls, Code.str()); 8552 8553 // Implicitly declare the argument as type 'int' for lack of a better 8554 // type. 8555 AttributeFactory attrs; 8556 DeclSpec DS(attrs); 8557 const char* PrevSpec; // unused 8558 unsigned DiagID; // unused 8559 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc, 8560 PrevSpec, DiagID); 8561 // Use the identifier location for the type source range. 8562 DS.SetRangeStart(FTI.ArgInfo[i].IdentLoc); 8563 DS.SetRangeEnd(FTI.ArgInfo[i].IdentLoc); 8564 Declarator ParamD(DS, Declarator::KNRTypeListContext); 8565 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc); 8566 FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD); 8567 } 8568 } 8569 } 8570 } 8571 8572 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) { 8573 assert(getCurFunctionDecl() == 0 && "Function parsing confused"); 8574 assert(D.isFunctionDeclarator() && "Not a function declarator!"); 8575 Scope *ParentScope = FnBodyScope->getParent(); 8576 8577 D.setFunctionDefinitionKind(FDK_Definition); 8578 Decl *DP = HandleDeclarator(ParentScope, D, MultiTemplateParamsArg()); 8579 return ActOnStartOfFunctionDef(FnBodyScope, DP); 8580 } 8581 8582 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD, 8583 const FunctionDecl*& PossibleZeroParamPrototype) { 8584 // Don't warn about invalid declarations. 8585 if (FD->isInvalidDecl()) 8586 return false; 8587 8588 // Or declarations that aren't global. 8589 if (!FD->isGlobal()) 8590 return false; 8591 8592 // Don't warn about C++ member functions. 8593 if (isa<CXXMethodDecl>(FD)) 8594 return false; 8595 8596 // Don't warn about 'main'. 8597 if (FD->isMain()) 8598 return false; 8599 8600 // Don't warn about inline functions. 8601 if (FD->isInlined()) 8602 return false; 8603 8604 // Don't warn about function templates. 8605 if (FD->getDescribedFunctionTemplate()) 8606 return false; 8607 8608 // Don't warn about function template specializations. 8609 if (FD->isFunctionTemplateSpecialization()) 8610 return false; 8611 8612 // Don't warn for OpenCL kernels. 8613 if (FD->hasAttr<OpenCLKernelAttr>()) 8614 return false; 8615 8616 bool MissingPrototype = true; 8617 for (const FunctionDecl *Prev = FD->getPreviousDecl(); 8618 Prev; Prev = Prev->getPreviousDecl()) { 8619 // Ignore any declarations that occur in function or method 8620 // scope, because they aren't visible from the header. 8621 if (Prev->getDeclContext()->isFunctionOrMethod()) 8622 continue; 8623 8624 MissingPrototype = !Prev->getType()->isFunctionProtoType(); 8625 if (FD->getNumParams() == 0) 8626 PossibleZeroParamPrototype = Prev; 8627 break; 8628 } 8629 8630 return MissingPrototype; 8631 } 8632 8633 void Sema::CheckForFunctionRedefinition(FunctionDecl *FD) { 8634 // Don't complain if we're in GNU89 mode and the previous definition 8635 // was an extern inline function. 8636 const FunctionDecl *Definition; 8637 if (FD->isDefined(Definition) && 8638 !canRedefineFunction(Definition, getLangOpts())) { 8639 if (getLangOpts().GNUMode && Definition->isInlineSpecified() && 8640 Definition->getStorageClass() == SC_Extern) 8641 Diag(FD->getLocation(), diag::err_redefinition_extern_inline) 8642 << FD->getDeclName() << getLangOpts().CPlusPlus; 8643 else 8644 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName(); 8645 Diag(Definition->getLocation(), diag::note_previous_definition); 8646 FD->setInvalidDecl(); 8647 } 8648 } 8649 8650 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D) { 8651 // Clear the last template instantiation error context. 8652 LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation(); 8653 8654 if (!D) 8655 return D; 8656 FunctionDecl *FD = 0; 8657 8658 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) 8659 FD = FunTmpl->getTemplatedDecl(); 8660 else 8661 FD = cast<FunctionDecl>(D); 8662 8663 // Enter a new function scope 8664 PushFunctionScope(); 8665 8666 // See if this is a redefinition. 8667 if (!FD->isLateTemplateParsed()) 8668 CheckForFunctionRedefinition(FD); 8669 8670 // Builtin functions cannot be defined. 8671 if (unsigned BuiltinID = FD->getBuiltinID()) { 8672 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { 8673 Diag(FD->getLocation(), diag::err_builtin_definition) << FD; 8674 FD->setInvalidDecl(); 8675 } 8676 } 8677 8678 // The return type of a function definition must be complete 8679 // (C99 6.9.1p3, C++ [dcl.fct]p6). 8680 QualType ResultType = FD->getResultType(); 8681 if (!ResultType->isDependentType() && !ResultType->isVoidType() && 8682 !FD->isInvalidDecl() && 8683 RequireCompleteType(FD->getLocation(), ResultType, 8684 diag::err_func_def_incomplete_result)) 8685 FD->setInvalidDecl(); 8686 8687 // GNU warning -Wmissing-prototypes: 8688 // Warn if a global function is defined without a previous 8689 // prototype declaration. This warning is issued even if the 8690 // definition itself provides a prototype. The aim is to detect 8691 // global functions that fail to be declared in header files. 8692 const FunctionDecl *PossibleZeroParamPrototype = 0; 8693 if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) { 8694 Diag(FD->getLocation(), diag::warn_missing_prototype) << FD; 8695 8696 if (PossibleZeroParamPrototype) { 8697 // We found a declaration that is not a prototype, 8698 // but that could be a zero-parameter prototype 8699 TypeSourceInfo* TI = PossibleZeroParamPrototype->getTypeSourceInfo(); 8700 TypeLoc TL = TI->getTypeLoc(); 8701 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>()) 8702 Diag(PossibleZeroParamPrototype->getLocation(), 8703 diag::note_declaration_not_a_prototype) 8704 << PossibleZeroParamPrototype 8705 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void"); 8706 } 8707 } 8708 8709 if (FnBodyScope) 8710 PushDeclContext(FnBodyScope, FD); 8711 8712 // Check the validity of our function parameters 8713 CheckParmsForFunctionDef(FD->param_begin(), FD->param_end(), 8714 /*CheckParameterNames=*/true); 8715 8716 // Introduce our parameters into the function scope 8717 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) { 8718 ParmVarDecl *Param = FD->getParamDecl(p); 8719 Param->setOwningFunction(FD); 8720 8721 // If this has an identifier, add it to the scope stack. 8722 if (Param->getIdentifier() && FnBodyScope) { 8723 CheckShadow(FnBodyScope, Param); 8724 8725 PushOnScopeChains(Param, FnBodyScope); 8726 } 8727 } 8728 8729 // If we had any tags defined in the function prototype, 8730 // introduce them into the function scope. 8731 if (FnBodyScope) { 8732 for (llvm::ArrayRef<NamedDecl*>::iterator I = FD->getDeclsInPrototypeScope().begin(), 8733 E = FD->getDeclsInPrototypeScope().end(); I != E; ++I) { 8734 NamedDecl *D = *I; 8735 8736 // Some of these decls (like enums) may have been pinned to the translation unit 8737 // for lack of a real context earlier. If so, remove from the translation unit 8738 // and reattach to the current context. 8739 if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) { 8740 // Is the decl actually in the context? 8741 for (DeclContext::decl_iterator DI = Context.getTranslationUnitDecl()->decls_begin(), 8742 DE = Context.getTranslationUnitDecl()->decls_end(); DI != DE; ++DI) { 8743 if (*DI == D) { 8744 Context.getTranslationUnitDecl()->removeDecl(D); 8745 break; 8746 } 8747 } 8748 // Either way, reassign the lexical decl context to our FunctionDecl. 8749 D->setLexicalDeclContext(CurContext); 8750 } 8751 8752 // If the decl has a non-null name, make accessible in the current scope. 8753 if (!D->getName().empty()) 8754 PushOnScopeChains(D, FnBodyScope, /*AddToContext=*/false); 8755 8756 // Similarly, dive into enums and fish their constants out, making them 8757 // accessible in this scope. 8758 if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) { 8759 for (EnumDecl::enumerator_iterator EI = ED->enumerator_begin(), 8760 EE = ED->enumerator_end(); EI != EE; ++EI) 8761 PushOnScopeChains(*EI, FnBodyScope, /*AddToContext=*/false); 8762 } 8763 } 8764 } 8765 8766 // Ensure that the function's exception specification is instantiated. 8767 if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>()) 8768 ResolveExceptionSpec(D->getLocation(), FPT); 8769 8770 // Checking attributes of current function definition 8771 // dllimport attribute. 8772 DLLImportAttr *DA = FD->getAttr<DLLImportAttr>(); 8773 if (DA && (!FD->getAttr<DLLExportAttr>())) { 8774 // dllimport attribute cannot be directly applied to definition. 8775 // Microsoft accepts dllimport for functions defined within class scope. 8776 if (!DA->isInherited() && 8777 !(LangOpts.MicrosoftExt && FD->getLexicalDeclContext()->isRecord())) { 8778 Diag(FD->getLocation(), 8779 diag::err_attribute_can_be_applied_only_to_symbol_declaration) 8780 << "dllimport"; 8781 FD->setInvalidDecl(); 8782 return D; 8783 } 8784 8785 // Visual C++ appears to not think this is an issue, so only issue 8786 // a warning when Microsoft extensions are disabled. 8787 if (!LangOpts.MicrosoftExt) { 8788 // If a symbol previously declared dllimport is later defined, the 8789 // attribute is ignored in subsequent references, and a warning is 8790 // emitted. 8791 Diag(FD->getLocation(), 8792 diag::warn_redeclaration_without_attribute_prev_attribute_ignored) 8793 << FD->getName() << "dllimport"; 8794 } 8795 } 8796 // We want to attach documentation to original Decl (which might be 8797 // a function template). 8798 ActOnDocumentableDecl(D); 8799 return D; 8800 } 8801 8802 /// \brief Given the set of return statements within a function body, 8803 /// compute the variables that are subject to the named return value 8804 /// optimization. 8805 /// 8806 /// Each of the variables that is subject to the named return value 8807 /// optimization will be marked as NRVO variables in the AST, and any 8808 /// return statement that has a marked NRVO variable as its NRVO candidate can 8809 /// use the named return value optimization. 8810 /// 8811 /// This function applies a very simplistic algorithm for NRVO: if every return 8812 /// statement in the function has the same NRVO candidate, that candidate is 8813 /// the NRVO variable. 8814 /// 8815 /// FIXME: Employ a smarter algorithm that accounts for multiple return 8816 /// statements and the lifetimes of the NRVO candidates. We should be able to 8817 /// find a maximal set of NRVO variables. 8818 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) { 8819 ReturnStmt **Returns = Scope->Returns.data(); 8820 8821 const VarDecl *NRVOCandidate = 0; 8822 for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) { 8823 if (!Returns[I]->getNRVOCandidate()) 8824 return; 8825 8826 if (!NRVOCandidate) 8827 NRVOCandidate = Returns[I]->getNRVOCandidate(); 8828 else if (NRVOCandidate != Returns[I]->getNRVOCandidate()) 8829 return; 8830 } 8831 8832 if (NRVOCandidate) 8833 const_cast<VarDecl*>(NRVOCandidate)->setNRVOVariable(true); 8834 } 8835 8836 bool Sema::canSkipFunctionBody(Decl *D) { 8837 if (!Consumer.shouldSkipFunctionBody(D)) 8838 return false; 8839 8840 if (isa<ObjCMethodDecl>(D)) 8841 return true; 8842 8843 FunctionDecl *FD = 0; 8844 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D)) 8845 FD = FTD->getTemplatedDecl(); 8846 else 8847 FD = cast<FunctionDecl>(D); 8848 8849 // We cannot skip the body of a function (or function template) which is 8850 // constexpr, since we may need to evaluate its body in order to parse the 8851 // rest of the file. 8852 // We cannot skip the body of a function with an undeduced return type, 8853 // because any callers of that function need to know the type. 8854 return !FD->isConstexpr() && !FD->getResultType()->isUndeducedType(); 8855 } 8856 8857 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) { 8858 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Decl)) 8859 FD->setHasSkippedBody(); 8860 else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(Decl)) 8861 MD->setHasSkippedBody(); 8862 return ActOnFinishFunctionBody(Decl, 0); 8863 } 8864 8865 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) { 8866 return ActOnFinishFunctionBody(D, BodyArg, false); 8867 } 8868 8869 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body, 8870 bool IsInstantiation) { 8871 FunctionDecl *FD = 0; 8872 FunctionTemplateDecl *FunTmpl = dyn_cast_or_null<FunctionTemplateDecl>(dcl); 8873 if (FunTmpl) 8874 FD = FunTmpl->getTemplatedDecl(); 8875 else 8876 FD = dyn_cast_or_null<FunctionDecl>(dcl); 8877 8878 sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy(); 8879 sema::AnalysisBasedWarnings::Policy *ActivePolicy = 0; 8880 8881 if (FD) { 8882 FD->setBody(Body); 8883 8884 if (getLangOpts().CPlusPlus1y && !FD->isInvalidDecl() && Body && 8885 !FD->isDependentContext() && FD->getResultType()->isUndeducedType()) { 8886 // If the function has a deduced result type but contains no 'return' 8887 // statements, the result type as written must be exactly 'auto', and 8888 // the deduced result type is 'void'. 8889 if (!FD->getResultType()->getAs<AutoType>()) { 8890 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto) 8891 << FD->getResultType(); 8892 FD->setInvalidDecl(); 8893 } else { 8894 // Substitute 'void' for the 'auto' in the type. 8895 TypeLoc ResultType = FD->getTypeSourceInfo()->getTypeLoc(). 8896 IgnoreParens().castAs<FunctionProtoTypeLoc>().getResultLoc(); 8897 Context.adjustDeducedFunctionResultType( 8898 FD, SubstAutoType(ResultType.getType(), Context.VoidTy)); 8899 } 8900 } 8901 8902 // The only way to be included in UndefinedButUsed is if there is an 8903 // ODR use before the definition. Avoid the expensive map lookup if this 8904 // is the first declaration. 8905 if (FD->getPreviousDecl() != 0 && FD->getPreviousDecl()->isUsed()) { 8906 if (FD->getLinkage() != ExternalLinkage) 8907 UndefinedButUsed.erase(FD); 8908 else if (FD->isInlined() && 8909 (LangOpts.CPlusPlus || !LangOpts.GNUInline) && 8910 (!FD->getPreviousDecl()->hasAttr<GNUInlineAttr>())) 8911 UndefinedButUsed.erase(FD); 8912 } 8913 8914 // If the function implicitly returns zero (like 'main') or is naked, 8915 // don't complain about missing return statements. 8916 if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>()) 8917 WP.disableCheckFallThrough(); 8918 8919 // MSVC permits the use of pure specifier (=0) on function definition, 8920 // defined at class scope, warn about this non standard construct. 8921 if (getLangOpts().MicrosoftExt && FD->isPure()) 8922 Diag(FD->getLocation(), diag::warn_pure_function_definition); 8923 8924 if (!FD->isInvalidDecl()) { 8925 DiagnoseUnusedParameters(FD->param_begin(), FD->param_end()); 8926 DiagnoseSizeOfParametersAndReturnValue(FD->param_begin(), FD->param_end(), 8927 FD->getResultType(), FD); 8928 8929 // If this is a constructor, we need a vtable. 8930 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD)) 8931 MarkVTableUsed(FD->getLocation(), Constructor->getParent()); 8932 8933 // Try to apply the named return value optimization. We have to check 8934 // if we can do this here because lambdas keep return statements around 8935 // to deduce an implicit return type. 8936 if (getLangOpts().CPlusPlus && FD->getResultType()->isRecordType() && 8937 !FD->isDependentContext()) 8938 computeNRVO(Body, getCurFunction()); 8939 } 8940 8941 assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) && 8942 "Function parsing confused"); 8943 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { 8944 assert(MD == getCurMethodDecl() && "Method parsing confused"); 8945 MD->setBody(Body); 8946 if (!MD->isInvalidDecl()) { 8947 DiagnoseUnusedParameters(MD->param_begin(), MD->param_end()); 8948 DiagnoseSizeOfParametersAndReturnValue(MD->param_begin(), MD->param_end(), 8949 MD->getResultType(), MD); 8950 8951 if (Body) 8952 computeNRVO(Body, getCurFunction()); 8953 } 8954 if (getCurFunction()->ObjCShouldCallSuper) { 8955 Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call) 8956 << MD->getSelector().getAsString(); 8957 getCurFunction()->ObjCShouldCallSuper = false; 8958 } 8959 } else { 8960 return 0; 8961 } 8962 8963 assert(!getCurFunction()->ObjCShouldCallSuper && 8964 "This should only be set for ObjC methods, which should have been " 8965 "handled in the block above."); 8966 8967 // Verify and clean out per-function state. 8968 if (Body) { 8969 // C++ constructors that have function-try-blocks can't have return 8970 // statements in the handlers of that block. (C++ [except.handle]p14) 8971 // Verify this. 8972 if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body)) 8973 DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body)); 8974 8975 // Verify that gotos and switch cases don't jump into scopes illegally. 8976 if (getCurFunction()->NeedsScopeChecking() && 8977 !dcl->isInvalidDecl() && 8978 !hasAnyUnrecoverableErrorsInThisFunction() && 8979 !PP.isCodeCompletionEnabled()) 8980 DiagnoseInvalidJumps(Body); 8981 8982 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) { 8983 if (!Destructor->getParent()->isDependentType()) 8984 CheckDestructor(Destructor); 8985 8986 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(), 8987 Destructor->getParent()); 8988 } 8989 8990 // If any errors have occurred, clear out any temporaries that may have 8991 // been leftover. This ensures that these temporaries won't be picked up for 8992 // deletion in some later function. 8993 if (PP.getDiagnostics().hasErrorOccurred() || 8994 PP.getDiagnostics().getSuppressAllDiagnostics()) { 8995 DiscardCleanupsInEvaluationContext(); 8996 } 8997 if (!PP.getDiagnostics().hasUncompilableErrorOccurred() && 8998 !isa<FunctionTemplateDecl>(dcl)) { 8999 // Since the body is valid, issue any analysis-based warnings that are 9000 // enabled. 9001 ActivePolicy = &WP; 9002 } 9003 9004 if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() && 9005 (!CheckConstexprFunctionDecl(FD) || 9006 !CheckConstexprFunctionBody(FD, Body))) 9007 FD->setInvalidDecl(); 9008 9009 assert(ExprCleanupObjects.empty() && "Leftover temporaries in function"); 9010 assert(!ExprNeedsCleanups && "Unaccounted cleanups in function"); 9011 assert(MaybeODRUseExprs.empty() && 9012 "Leftover expressions for odr-use checking"); 9013 } 9014 9015 if (!IsInstantiation) 9016 PopDeclContext(); 9017 9018 PopFunctionScopeInfo(ActivePolicy, dcl); 9019 9020 // If any errors have occurred, clear out any temporaries that may have 9021 // been leftover. This ensures that these temporaries won't be picked up for 9022 // deletion in some later function. 9023 if (getDiagnostics().hasErrorOccurred()) { 9024 DiscardCleanupsInEvaluationContext(); 9025 } 9026 9027 return dcl; 9028 } 9029 9030 9031 /// When we finish delayed parsing of an attribute, we must attach it to the 9032 /// relevant Decl. 9033 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D, 9034 ParsedAttributes &Attrs) { 9035 // Always attach attributes to the underlying decl. 9036 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 9037 D = TD->getTemplatedDecl(); 9038 ProcessDeclAttributeList(S, D, Attrs.getList()); 9039 9040 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D)) 9041 if (Method->isStatic()) 9042 checkThisInStaticMemberFunctionAttributes(Method); 9043 } 9044 9045 9046 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function 9047 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2). 9048 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, 9049 IdentifierInfo &II, Scope *S) { 9050 // Before we produce a declaration for an implicitly defined 9051 // function, see whether there was a locally-scoped declaration of 9052 // this name as a function or variable. If so, use that 9053 // (non-visible) declaration, and complain about it. 9054 llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos 9055 = findLocallyScopedExternCDecl(&II); 9056 if (Pos != LocallyScopedExternCDecls.end()) { 9057 Diag(Loc, diag::warn_use_out_of_scope_declaration) << Pos->second; 9058 Diag(Pos->second->getLocation(), diag::note_previous_declaration); 9059 return Pos->second; 9060 } 9061 9062 // Extension in C99. Legal in C90, but warn about it. 9063 unsigned diag_id; 9064 if (II.getName().startswith("__builtin_")) 9065 diag_id = diag::warn_builtin_unknown; 9066 else if (getLangOpts().C99) 9067 diag_id = diag::ext_implicit_function_decl; 9068 else 9069 diag_id = diag::warn_implicit_function_decl; 9070 Diag(Loc, diag_id) << &II; 9071 9072 // Because typo correction is expensive, only do it if the implicit 9073 // function declaration is going to be treated as an error. 9074 if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) { 9075 TypoCorrection Corrected; 9076 DeclFilterCCC<FunctionDecl> Validator; 9077 if (S && (Corrected = CorrectTypo(DeclarationNameInfo(&II, Loc), 9078 LookupOrdinaryName, S, 0, Validator))) { 9079 std::string CorrectedStr = Corrected.getAsString(getLangOpts()); 9080 std::string CorrectedQuotedStr = Corrected.getQuoted(getLangOpts()); 9081 FunctionDecl *Func = Corrected.getCorrectionDeclAs<FunctionDecl>(); 9082 9083 Diag(Loc, diag::note_function_suggestion) << CorrectedQuotedStr 9084 << FixItHint::CreateReplacement(Loc, CorrectedStr); 9085 9086 if (Func->getLocation().isValid() 9087 && !II.getName().startswith("__builtin_")) 9088 Diag(Func->getLocation(), diag::note_previous_decl) 9089 << CorrectedQuotedStr; 9090 } 9091 } 9092 9093 // Set a Declarator for the implicit definition: int foo(); 9094 const char *Dummy; 9095 AttributeFactory attrFactory; 9096 DeclSpec DS(attrFactory); 9097 unsigned DiagID; 9098 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID); 9099 (void)Error; // Silence warning. 9100 assert(!Error && "Error setting up implicit decl!"); 9101 SourceLocation NoLoc; 9102 Declarator D(DS, Declarator::BlockContext); 9103 D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false, 9104 /*IsAmbiguous=*/false, 9105 /*RParenLoc=*/NoLoc, 9106 /*ArgInfo=*/0, 9107 /*NumArgs=*/0, 9108 /*EllipsisLoc=*/NoLoc, 9109 /*RParenLoc=*/NoLoc, 9110 /*TypeQuals=*/0, 9111 /*RefQualifierIsLvalueRef=*/true, 9112 /*RefQualifierLoc=*/NoLoc, 9113 /*ConstQualifierLoc=*/NoLoc, 9114 /*VolatileQualifierLoc=*/NoLoc, 9115 /*MutableLoc=*/NoLoc, 9116 EST_None, 9117 /*ESpecLoc=*/NoLoc, 9118 /*Exceptions=*/0, 9119 /*ExceptionRanges=*/0, 9120 /*NumExceptions=*/0, 9121 /*NoexceptExpr=*/0, 9122 Loc, Loc, D), 9123 DS.getAttributes(), 9124 SourceLocation()); 9125 D.SetIdentifier(&II, Loc); 9126 9127 // Insert this function into translation-unit scope. 9128 9129 DeclContext *PrevDC = CurContext; 9130 CurContext = Context.getTranslationUnitDecl(); 9131 9132 FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(TUScope, D)); 9133 FD->setImplicit(); 9134 9135 CurContext = PrevDC; 9136 9137 AddKnownFunctionAttributes(FD); 9138 9139 return FD; 9140 } 9141 9142 /// \brief Adds any function attributes that we know a priori based on 9143 /// the declaration of this function. 9144 /// 9145 /// These attributes can apply both to implicitly-declared builtins 9146 /// (like __builtin___printf_chk) or to library-declared functions 9147 /// like NSLog or printf. 9148 /// 9149 /// We need to check for duplicate attributes both here and where user-written 9150 /// attributes are applied to declarations. 9151 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) { 9152 if (FD->isInvalidDecl()) 9153 return; 9154 9155 // If this is a built-in function, map its builtin attributes to 9156 // actual attributes. 9157 if (unsigned BuiltinID = FD->getBuiltinID()) { 9158 // Handle printf-formatting attributes. 9159 unsigned FormatIdx; 9160 bool HasVAListArg; 9161 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { 9162 if (!FD->getAttr<FormatAttr>()) { 9163 const char *fmt = "printf"; 9164 unsigned int NumParams = FD->getNumParams(); 9165 if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf) 9166 FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType()) 9167 fmt = "NSString"; 9168 FD->addAttr(::new (Context) FormatAttr(FD->getLocation(), Context, 9169 fmt, FormatIdx+1, 9170 HasVAListArg ? 0 : FormatIdx+2)); 9171 } 9172 } 9173 if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx, 9174 HasVAListArg)) { 9175 if (!FD->getAttr<FormatAttr>()) 9176 FD->addAttr(::new (Context) FormatAttr(FD->getLocation(), Context, 9177 "scanf", FormatIdx+1, 9178 HasVAListArg ? 0 : FormatIdx+2)); 9179 } 9180 9181 // Mark const if we don't care about errno and that is the only 9182 // thing preventing the function from being const. This allows 9183 // IRgen to use LLVM intrinsics for such functions. 9184 if (!getLangOpts().MathErrno && 9185 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) { 9186 if (!FD->getAttr<ConstAttr>()) 9187 FD->addAttr(::new (Context) ConstAttr(FD->getLocation(), Context)); 9188 } 9189 9190 if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) && 9191 !FD->getAttr<ReturnsTwiceAttr>()) 9192 FD->addAttr(::new (Context) ReturnsTwiceAttr(FD->getLocation(), Context)); 9193 if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->getAttr<NoThrowAttr>()) 9194 FD->addAttr(::new (Context) NoThrowAttr(FD->getLocation(), Context)); 9195 if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->getAttr<ConstAttr>()) 9196 FD->addAttr(::new (Context) ConstAttr(FD->getLocation(), Context)); 9197 } 9198 9199 IdentifierInfo *Name = FD->getIdentifier(); 9200 if (!Name) 9201 return; 9202 if ((!getLangOpts().CPlusPlus && 9203 FD->getDeclContext()->isTranslationUnit()) || 9204 (isa<LinkageSpecDecl>(FD->getDeclContext()) && 9205 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() == 9206 LinkageSpecDecl::lang_c)) { 9207 // Okay: this could be a libc/libm/Objective-C function we know 9208 // about. 9209 } else 9210 return; 9211 9212 if (Name->isStr("asprintf") || Name->isStr("vasprintf")) { 9213 // FIXME: asprintf and vasprintf aren't C99 functions. Should they be 9214 // target-specific builtins, perhaps? 9215 if (!FD->getAttr<FormatAttr>()) 9216 FD->addAttr(::new (Context) FormatAttr(FD->getLocation(), Context, 9217 "printf", 2, 9218 Name->isStr("vasprintf") ? 0 : 3)); 9219 } 9220 9221 if (Name->isStr("__CFStringMakeConstantString")) { 9222 // We already have a __builtin___CFStringMakeConstantString, 9223 // but builds that use -fno-constant-cfstrings don't go through that. 9224 if (!FD->getAttr<FormatArgAttr>()) 9225 FD->addAttr(::new (Context) FormatArgAttr(FD->getLocation(), Context, 1)); 9226 } 9227 } 9228 9229 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T, 9230 TypeSourceInfo *TInfo) { 9231 assert(D.getIdentifier() && "Wrong callback for declspec without declarator"); 9232 assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); 9233 9234 if (!TInfo) { 9235 assert(D.isInvalidType() && "no declarator info for valid type"); 9236 TInfo = Context.getTrivialTypeSourceInfo(T); 9237 } 9238 9239 // Scope manipulation handled by caller. 9240 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext, 9241 D.getLocStart(), 9242 D.getIdentifierLoc(), 9243 D.getIdentifier(), 9244 TInfo); 9245 9246 // Bail out immediately if we have an invalid declaration. 9247 if (D.isInvalidType()) { 9248 NewTD->setInvalidDecl(); 9249 return NewTD; 9250 } 9251 9252 if (D.getDeclSpec().isModulePrivateSpecified()) { 9253 if (CurContext->isFunctionOrMethod()) 9254 Diag(NewTD->getLocation(), diag::err_module_private_local) 9255 << 2 << NewTD->getDeclName() 9256 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc()) 9257 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc()); 9258 else 9259 NewTD->setModulePrivate(); 9260 } 9261 9262 // C++ [dcl.typedef]p8: 9263 // If the typedef declaration defines an unnamed class (or 9264 // enum), the first typedef-name declared by the declaration 9265 // to be that class type (or enum type) is used to denote the 9266 // class type (or enum type) for linkage purposes only. 9267 // We need to check whether the type was declared in the declaration. 9268 switch (D.getDeclSpec().getTypeSpecType()) { 9269 case TST_enum: 9270 case TST_struct: 9271 case TST_interface: 9272 case TST_union: 9273 case TST_class: { 9274 TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); 9275 9276 // Do nothing if the tag is not anonymous or already has an 9277 // associated typedef (from an earlier typedef in this decl group). 9278 if (tagFromDeclSpec->getIdentifier()) break; 9279 if (tagFromDeclSpec->getTypedefNameForAnonDecl()) break; 9280 9281 // A well-formed anonymous tag must always be a TUK_Definition. 9282 assert(tagFromDeclSpec->isThisDeclarationADefinition()); 9283 9284 // The type must match the tag exactly; no qualifiers allowed. 9285 if (!Context.hasSameType(T, Context.getTagDeclType(tagFromDeclSpec))) 9286 break; 9287 9288 // Otherwise, set this is the anon-decl typedef for the tag. 9289 tagFromDeclSpec->setTypedefNameForAnonDecl(NewTD); 9290 break; 9291 } 9292 9293 default: 9294 break; 9295 } 9296 9297 return NewTD; 9298 } 9299 9300 9301 /// \brief Check that this is a valid underlying type for an enum declaration. 9302 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) { 9303 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc(); 9304 QualType T = TI->getType(); 9305 9306 if (T->isDependentType()) 9307 return false; 9308 9309 if (const BuiltinType *BT = T->getAs<BuiltinType>()) 9310 if (BT->isInteger()) 9311 return false; 9312 9313 Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T; 9314 return true; 9315 } 9316 9317 /// Check whether this is a valid redeclaration of a previous enumeration. 9318 /// \return true if the redeclaration was invalid. 9319 bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped, 9320 QualType EnumUnderlyingTy, 9321 const EnumDecl *Prev) { 9322 bool IsFixed = !EnumUnderlyingTy.isNull(); 9323 9324 if (IsScoped != Prev->isScoped()) { 9325 Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch) 9326 << Prev->isScoped(); 9327 Diag(Prev->getLocation(), diag::note_previous_use); 9328 return true; 9329 } 9330 9331 if (IsFixed && Prev->isFixed()) { 9332 if (!EnumUnderlyingTy->isDependentType() && 9333 !Prev->getIntegerType()->isDependentType() && 9334 !Context.hasSameUnqualifiedType(EnumUnderlyingTy, 9335 Prev->getIntegerType())) { 9336 Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch) 9337 << EnumUnderlyingTy << Prev->getIntegerType(); 9338 Diag(Prev->getLocation(), diag::note_previous_use); 9339 return true; 9340 } 9341 } else if (IsFixed != Prev->isFixed()) { 9342 Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch) 9343 << Prev->isFixed(); 9344 Diag(Prev->getLocation(), diag::note_previous_use); 9345 return true; 9346 } 9347 9348 return false; 9349 } 9350 9351 /// \brief Get diagnostic %select index for tag kind for 9352 /// redeclaration diagnostic message. 9353 /// WARNING: Indexes apply to particular diagnostics only! 9354 /// 9355 /// \returns diagnostic %select index. 9356 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) { 9357 switch (Tag) { 9358 case TTK_Struct: return 0; 9359 case TTK_Interface: return 1; 9360 case TTK_Class: return 2; 9361 default: llvm_unreachable("Invalid tag kind for redecl diagnostic!"); 9362 } 9363 } 9364 9365 /// \brief Determine if tag kind is a class-key compatible with 9366 /// class for redeclaration (class, struct, or __interface). 9367 /// 9368 /// \returns true iff the tag kind is compatible. 9369 static bool isClassCompatTagKind(TagTypeKind Tag) 9370 { 9371 return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface; 9372 } 9373 9374 /// \brief Determine whether a tag with a given kind is acceptable 9375 /// as a redeclaration of the given tag declaration. 9376 /// 9377 /// \returns true if the new tag kind is acceptable, false otherwise. 9378 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous, 9379 TagTypeKind NewTag, bool isDefinition, 9380 SourceLocation NewTagLoc, 9381 const IdentifierInfo &Name) { 9382 // C++ [dcl.type.elab]p3: 9383 // The class-key or enum keyword present in the 9384 // elaborated-type-specifier shall agree in kind with the 9385 // declaration to which the name in the elaborated-type-specifier 9386 // refers. This rule also applies to the form of 9387 // elaborated-type-specifier that declares a class-name or 9388 // friend class since it can be construed as referring to the 9389 // definition of the class. Thus, in any 9390 // elaborated-type-specifier, the enum keyword shall be used to 9391 // refer to an enumeration (7.2), the union class-key shall be 9392 // used to refer to a union (clause 9), and either the class or 9393 // struct class-key shall be used to refer to a class (clause 9) 9394 // declared using the class or struct class-key. 9395 TagTypeKind OldTag = Previous->getTagKind(); 9396 if (!isDefinition || !isClassCompatTagKind(NewTag)) 9397 if (OldTag == NewTag) 9398 return true; 9399 9400 if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) { 9401 // Warn about the struct/class tag mismatch. 9402 bool isTemplate = false; 9403 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous)) 9404 isTemplate = Record->getDescribedClassTemplate(); 9405 9406 if (!ActiveTemplateInstantiations.empty()) { 9407 // In a template instantiation, do not offer fix-its for tag mismatches 9408 // since they usually mess up the template instead of fixing the problem. 9409 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 9410 << getRedeclDiagFromTagKind(NewTag) << isTemplate << &Name 9411 << getRedeclDiagFromTagKind(OldTag); 9412 return true; 9413 } 9414 9415 if (isDefinition) { 9416 // On definitions, check previous tags and issue a fix-it for each 9417 // one that doesn't match the current tag. 9418 if (Previous->getDefinition()) { 9419 // Don't suggest fix-its for redefinitions. 9420 return true; 9421 } 9422 9423 bool previousMismatch = false; 9424 for (TagDecl::redecl_iterator I(Previous->redecls_begin()), 9425 E(Previous->redecls_end()); I != E; ++I) { 9426 if (I->getTagKind() != NewTag) { 9427 if (!previousMismatch) { 9428 previousMismatch = true; 9429 Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch) 9430 << getRedeclDiagFromTagKind(NewTag) << isTemplate << &Name 9431 << getRedeclDiagFromTagKind(I->getTagKind()); 9432 } 9433 Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion) 9434 << getRedeclDiagFromTagKind(NewTag) 9435 << FixItHint::CreateReplacement(I->getInnerLocStart(), 9436 TypeWithKeyword::getTagTypeKindName(NewTag)); 9437 } 9438 } 9439 return true; 9440 } 9441 9442 // Check for a previous definition. If current tag and definition 9443 // are same type, do nothing. If no definition, but disagree with 9444 // with previous tag type, give a warning, but no fix-it. 9445 const TagDecl *Redecl = Previous->getDefinition() ? 9446 Previous->getDefinition() : Previous; 9447 if (Redecl->getTagKind() == NewTag) { 9448 return true; 9449 } 9450 9451 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch) 9452 << getRedeclDiagFromTagKind(NewTag) << isTemplate << &Name 9453 << getRedeclDiagFromTagKind(OldTag); 9454 Diag(Redecl->getLocation(), diag::note_previous_use); 9455 9456 // If there is a previous defintion, suggest a fix-it. 9457 if (Previous->getDefinition()) { 9458 Diag(NewTagLoc, diag::note_struct_class_suggestion) 9459 << getRedeclDiagFromTagKind(Redecl->getTagKind()) 9460 << FixItHint::CreateReplacement(SourceRange(NewTagLoc), 9461 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind())); 9462 } 9463 9464 return true; 9465 } 9466 return false; 9467 } 9468 9469 /// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the 9470 /// former case, Name will be non-null. In the later case, Name will be null. 9471 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a 9472 /// reference/declaration/definition of a tag. 9473 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, 9474 SourceLocation KWLoc, CXXScopeSpec &SS, 9475 IdentifierInfo *Name, SourceLocation NameLoc, 9476 AttributeList *Attr, AccessSpecifier AS, 9477 SourceLocation ModulePrivateLoc, 9478 MultiTemplateParamsArg TemplateParameterLists, 9479 bool &OwnedDecl, bool &IsDependent, 9480 SourceLocation ScopedEnumKWLoc, 9481 bool ScopedEnumUsesClassTag, 9482 TypeResult UnderlyingType) { 9483 // If this is not a definition, it must have a name. 9484 IdentifierInfo *OrigName = Name; 9485 assert((Name != 0 || TUK == TUK_Definition) && 9486 "Nameless record must be a definition!"); 9487 assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference); 9488 9489 OwnedDecl = false; 9490 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec); 9491 bool ScopedEnum = ScopedEnumKWLoc.isValid(); 9492 9493 // FIXME: Check explicit specializations more carefully. 9494 bool isExplicitSpecialization = false; 9495 bool Invalid = false; 9496 9497 // We only need to do this matching if we have template parameters 9498 // or a scope specifier, which also conveniently avoids this work 9499 // for non-C++ cases. 9500 if (TemplateParameterLists.size() > 0 || 9501 (SS.isNotEmpty() && TUK != TUK_Reference)) { 9502 if (TemplateParameterList *TemplateParams 9503 = MatchTemplateParametersToScopeSpecifier(KWLoc, NameLoc, SS, 9504 TemplateParameterLists.data(), 9505 TemplateParameterLists.size(), 9506 TUK == TUK_Friend, 9507 isExplicitSpecialization, 9508 Invalid)) { 9509 if (Kind == TTK_Enum) { 9510 Diag(KWLoc, diag::err_enum_template); 9511 return 0; 9512 } 9513 9514 if (TemplateParams->size() > 0) { 9515 // This is a declaration or definition of a class template (which may 9516 // be a member of another template). 9517 9518 if (Invalid) 9519 return 0; 9520 9521 OwnedDecl = false; 9522 DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc, 9523 SS, Name, NameLoc, Attr, 9524 TemplateParams, AS, 9525 ModulePrivateLoc, 9526 TemplateParameterLists.size()-1, 9527 TemplateParameterLists.data()); 9528 return Result.get(); 9529 } else { 9530 // The "template<>" header is extraneous. 9531 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams) 9532 << TypeWithKeyword::getTagTypeKindName(Kind) << Name; 9533 isExplicitSpecialization = true; 9534 } 9535 } 9536 } 9537 9538 // Figure out the underlying type if this a enum declaration. We need to do 9539 // this early, because it's needed to detect if this is an incompatible 9540 // redeclaration. 9541 llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying; 9542 9543 if (Kind == TTK_Enum) { 9544 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) 9545 // No underlying type explicitly specified, or we failed to parse the 9546 // type, default to int. 9547 EnumUnderlying = Context.IntTy.getTypePtr(); 9548 else if (UnderlyingType.get()) { 9549 // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an 9550 // integral type; any cv-qualification is ignored. 9551 TypeSourceInfo *TI = 0; 9552 GetTypeFromParser(UnderlyingType.get(), &TI); 9553 EnumUnderlying = TI; 9554 9555 if (CheckEnumUnderlyingType(TI)) 9556 // Recover by falling back to int. 9557 EnumUnderlying = Context.IntTy.getTypePtr(); 9558 9559 if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI, 9560 UPPC_FixedUnderlyingType)) 9561 EnumUnderlying = Context.IntTy.getTypePtr(); 9562 9563 } else if (getLangOpts().MicrosoftMode) 9564 // Microsoft enums are always of int type. 9565 EnumUnderlying = Context.IntTy.getTypePtr(); 9566 } 9567 9568 DeclContext *SearchDC = CurContext; 9569 DeclContext *DC = CurContext; 9570 bool isStdBadAlloc = false; 9571 9572 RedeclarationKind Redecl = ForRedeclaration; 9573 if (TUK == TUK_Friend || TUK == TUK_Reference) 9574 Redecl = NotForRedeclaration; 9575 9576 LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl); 9577 9578 if (Name && SS.isNotEmpty()) { 9579 // We have a nested-name tag ('struct foo::bar'). 9580 9581 // Check for invalid 'foo::'. 9582 if (SS.isInvalid()) { 9583 Name = 0; 9584 goto CreateNewDecl; 9585 } 9586 9587 // If this is a friend or a reference to a class in a dependent 9588 // context, don't try to make a decl for it. 9589 if (TUK == TUK_Friend || TUK == TUK_Reference) { 9590 DC = computeDeclContext(SS, false); 9591 if (!DC) { 9592 IsDependent = true; 9593 return 0; 9594 } 9595 } else { 9596 DC = computeDeclContext(SS, true); 9597 if (!DC) { 9598 Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec) 9599 << SS.getRange(); 9600 return 0; 9601 } 9602 } 9603 9604 if (RequireCompleteDeclContext(SS, DC)) 9605 return 0; 9606 9607 SearchDC = DC; 9608 // Look-up name inside 'foo::'. 9609 LookupQualifiedName(Previous, DC); 9610 9611 if (Previous.isAmbiguous()) 9612 return 0; 9613 9614 if (Previous.empty()) { 9615 // Name lookup did not find anything. However, if the 9616 // nested-name-specifier refers to the current instantiation, 9617 // and that current instantiation has any dependent base 9618 // classes, we might find something at instantiation time: treat 9619 // this as a dependent elaborated-type-specifier. 9620 // But this only makes any sense for reference-like lookups. 9621 if (Previous.wasNotFoundInCurrentInstantiation() && 9622 (TUK == TUK_Reference || TUK == TUK_Friend)) { 9623 IsDependent = true; 9624 return 0; 9625 } 9626 9627 // A tag 'foo::bar' must already exist. 9628 Diag(NameLoc, diag::err_not_tag_in_scope) 9629 << Kind << Name << DC << SS.getRange(); 9630 Name = 0; 9631 Invalid = true; 9632 goto CreateNewDecl; 9633 } 9634 } else if (Name) { 9635 // If this is a named struct, check to see if there was a previous forward 9636 // declaration or definition. 9637 // FIXME: We're looking into outer scopes here, even when we 9638 // shouldn't be. Doing so can result in ambiguities that we 9639 // shouldn't be diagnosing. 9640 LookupName(Previous, S); 9641 9642 // When declaring or defining a tag, ignore ambiguities introduced 9643 // by types using'ed into this scope. 9644 if (Previous.isAmbiguous() && 9645 (TUK == TUK_Definition || TUK == TUK_Declaration)) { 9646 LookupResult::Filter F = Previous.makeFilter(); 9647 while (F.hasNext()) { 9648 NamedDecl *ND = F.next(); 9649 if (ND->getDeclContext()->getRedeclContext() != SearchDC) 9650 F.erase(); 9651 } 9652 F.done(); 9653 } 9654 9655 // C++11 [namespace.memdef]p3: 9656 // If the name in a friend declaration is neither qualified nor 9657 // a template-id and the declaration is a function or an 9658 // elaborated-type-specifier, the lookup to determine whether 9659 // the entity has been previously declared shall not consider 9660 // any scopes outside the innermost enclosing namespace. 9661 // 9662 // Does it matter that this should be by scope instead of by 9663 // semantic context? 9664 if (!Previous.empty() && TUK == TUK_Friend) { 9665 DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext(); 9666 LookupResult::Filter F = Previous.makeFilter(); 9667 while (F.hasNext()) { 9668 NamedDecl *ND = F.next(); 9669 DeclContext *DC = ND->getDeclContext()->getRedeclContext(); 9670 if (DC->isFileContext() && !EnclosingNS->Encloses(ND->getDeclContext())) 9671 F.erase(); 9672 } 9673 F.done(); 9674 } 9675 9676 // Note: there used to be some attempt at recovery here. 9677 if (Previous.isAmbiguous()) 9678 return 0; 9679 9680 if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) { 9681 // FIXME: This makes sure that we ignore the contexts associated 9682 // with C structs, unions, and enums when looking for a matching 9683 // tag declaration or definition. See the similar lookup tweak 9684 // in Sema::LookupName; is there a better way to deal with this? 9685 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC)) 9686 SearchDC = SearchDC->getParent(); 9687 } 9688 } else if (S->isFunctionPrototypeScope()) { 9689 // If this is an enum declaration in function prototype scope, set its 9690 // initial context to the translation unit. 9691 // FIXME: [citation needed] 9692 SearchDC = Context.getTranslationUnitDecl(); 9693 } 9694 9695 if (Previous.isSingleResult() && 9696 Previous.getFoundDecl()->isTemplateParameter()) { 9697 // Maybe we will complain about the shadowed template parameter. 9698 DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl()); 9699 // Just pretend that we didn't see the previous declaration. 9700 Previous.clear(); 9701 } 9702 9703 if (getLangOpts().CPlusPlus && Name && DC && StdNamespace && 9704 DC->Equals(getStdNamespace()) && Name->isStr("bad_alloc")) { 9705 // This is a declaration of or a reference to "std::bad_alloc". 9706 isStdBadAlloc = true; 9707 9708 if (Previous.empty() && StdBadAlloc) { 9709 // std::bad_alloc has been implicitly declared (but made invisible to 9710 // name lookup). Fill in this implicit declaration as the previous 9711 // declaration, so that the declarations get chained appropriately. 9712 Previous.addDecl(getStdBadAlloc()); 9713 } 9714 } 9715 9716 // If we didn't find a previous declaration, and this is a reference 9717 // (or friend reference), move to the correct scope. In C++, we 9718 // also need to do a redeclaration lookup there, just in case 9719 // there's a shadow friend decl. 9720 if (Name && Previous.empty() && 9721 (TUK == TUK_Reference || TUK == TUK_Friend)) { 9722 if (Invalid) goto CreateNewDecl; 9723 assert(SS.isEmpty()); 9724 9725 if (TUK == TUK_Reference) { 9726 // C++ [basic.scope.pdecl]p5: 9727 // -- for an elaborated-type-specifier of the form 9728 // 9729 // class-key identifier 9730 // 9731 // if the elaborated-type-specifier is used in the 9732 // decl-specifier-seq or parameter-declaration-clause of a 9733 // function defined in namespace scope, the identifier is 9734 // declared as a class-name in the namespace that contains 9735 // the declaration; otherwise, except as a friend 9736 // declaration, the identifier is declared in the smallest 9737 // non-class, non-function-prototype scope that contains the 9738 // declaration. 9739 // 9740 // C99 6.7.2.3p8 has a similar (but not identical!) provision for 9741 // C structs and unions. 9742 // 9743 // It is an error in C++ to declare (rather than define) an enum 9744 // type, including via an elaborated type specifier. We'll 9745 // diagnose that later; for now, declare the enum in the same 9746 // scope as we would have picked for any other tag type. 9747 // 9748 // GNU C also supports this behavior as part of its incomplete 9749 // enum types extension, while GNU C++ does not. 9750 // 9751 // Find the context where we'll be declaring the tag. 9752 // FIXME: We would like to maintain the current DeclContext as the 9753 // lexical context, 9754 while (!SearchDC->isFileContext() && !SearchDC->isFunctionOrMethod()) 9755 SearchDC = SearchDC->getParent(); 9756 9757 // Find the scope where we'll be declaring the tag. 9758 while (S->isClassScope() || 9759 (getLangOpts().CPlusPlus && 9760 S->isFunctionPrototypeScope()) || 9761 ((S->getFlags() & Scope::DeclScope) == 0) || 9762 (S->getEntity() && 9763 ((DeclContext *)S->getEntity())->isTransparentContext())) 9764 S = S->getParent(); 9765 } else { 9766 assert(TUK == TUK_Friend); 9767 // C++ [namespace.memdef]p3: 9768 // If a friend declaration in a non-local class first declares a 9769 // class or function, the friend class or function is a member of 9770 // the innermost enclosing namespace. 9771 SearchDC = SearchDC->getEnclosingNamespaceContext(); 9772 } 9773 9774 // In C++, we need to do a redeclaration lookup to properly 9775 // diagnose some problems. 9776 if (getLangOpts().CPlusPlus) { 9777 Previous.setRedeclarationKind(ForRedeclaration); 9778 LookupQualifiedName(Previous, SearchDC); 9779 } 9780 } 9781 9782 if (!Previous.empty()) { 9783 NamedDecl *PrevDecl = (*Previous.begin())->getUnderlyingDecl(); 9784 9785 // It's okay to have a tag decl in the same scope as a typedef 9786 // which hides a tag decl in the same scope. Finding this 9787 // insanity with a redeclaration lookup can only actually happen 9788 // in C++. 9789 // 9790 // This is also okay for elaborated-type-specifiers, which is 9791 // technically forbidden by the current standard but which is 9792 // okay according to the likely resolution of an open issue; 9793 // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407 9794 if (getLangOpts().CPlusPlus) { 9795 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) { 9796 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) { 9797 TagDecl *Tag = TT->getDecl(); 9798 if (Tag->getDeclName() == Name && 9799 Tag->getDeclContext()->getRedeclContext() 9800 ->Equals(TD->getDeclContext()->getRedeclContext())) { 9801 PrevDecl = Tag; 9802 Previous.clear(); 9803 Previous.addDecl(Tag); 9804 Previous.resolveKind(); 9805 } 9806 } 9807 } 9808 } 9809 9810 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) { 9811 // If this is a use of a previous tag, or if the tag is already declared 9812 // in the same scope (so that the definition/declaration completes or 9813 // rementions the tag), reuse the decl. 9814 if (TUK == TUK_Reference || TUK == TUK_Friend || 9815 isDeclInScope(PrevDecl, SearchDC, S, isExplicitSpecialization)) { 9816 // Make sure that this wasn't declared as an enum and now used as a 9817 // struct or something similar. 9818 if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind, 9819 TUK == TUK_Definition, KWLoc, 9820 *Name)) { 9821 bool SafeToContinue 9822 = (PrevTagDecl->getTagKind() != TTK_Enum && 9823 Kind != TTK_Enum); 9824 if (SafeToContinue) 9825 Diag(KWLoc, diag::err_use_with_wrong_tag) 9826 << Name 9827 << FixItHint::CreateReplacement(SourceRange(KWLoc), 9828 PrevTagDecl->getKindName()); 9829 else 9830 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name; 9831 Diag(PrevTagDecl->getLocation(), diag::note_previous_use); 9832 9833 if (SafeToContinue) 9834 Kind = PrevTagDecl->getTagKind(); 9835 else { 9836 // Recover by making this an anonymous redefinition. 9837 Name = 0; 9838 Previous.clear(); 9839 Invalid = true; 9840 } 9841 } 9842 9843 if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) { 9844 const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl); 9845 9846 // If this is an elaborated-type-specifier for a scoped enumeration, 9847 // the 'class' keyword is not necessary and not permitted. 9848 if (TUK == TUK_Reference || TUK == TUK_Friend) { 9849 if (ScopedEnum) 9850 Diag(ScopedEnumKWLoc, diag::err_enum_class_reference) 9851 << PrevEnum->isScoped() 9852 << FixItHint::CreateRemoval(ScopedEnumKWLoc); 9853 return PrevTagDecl; 9854 } 9855 9856 QualType EnumUnderlyingTy; 9857 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 9858 EnumUnderlyingTy = TI->getType(); 9859 else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>()) 9860 EnumUnderlyingTy = QualType(T, 0); 9861 9862 // All conflicts with previous declarations are recovered by 9863 // returning the previous declaration, unless this is a definition, 9864 // in which case we want the caller to bail out. 9865 if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc, 9866 ScopedEnum, EnumUnderlyingTy, PrevEnum)) 9867 return TUK == TUK_Declaration ? PrevTagDecl : 0; 9868 } 9869 9870 if (!Invalid) { 9871 // If this is a use, just return the declaration we found. 9872 9873 // FIXME: In the future, return a variant or some other clue 9874 // for the consumer of this Decl to know it doesn't own it. 9875 // For our current ASTs this shouldn't be a problem, but will 9876 // need to be changed with DeclGroups. 9877 if ((TUK == TUK_Reference && (!PrevTagDecl->getFriendObjectKind() || 9878 getLangOpts().MicrosoftExt)) || TUK == TUK_Friend) 9879 return PrevTagDecl; 9880 9881 // Diagnose attempts to redefine a tag. 9882 if (TUK == TUK_Definition) { 9883 if (TagDecl *Def = PrevTagDecl->getDefinition()) { 9884 // If we're defining a specialization and the previous definition 9885 // is from an implicit instantiation, don't emit an error 9886 // here; we'll catch this in the general case below. 9887 bool IsExplicitSpecializationAfterInstantiation = false; 9888 if (isExplicitSpecialization) { 9889 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def)) 9890 IsExplicitSpecializationAfterInstantiation = 9891 RD->getTemplateSpecializationKind() != 9892 TSK_ExplicitSpecialization; 9893 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def)) 9894 IsExplicitSpecializationAfterInstantiation = 9895 ED->getTemplateSpecializationKind() != 9896 TSK_ExplicitSpecialization; 9897 } 9898 9899 if (!IsExplicitSpecializationAfterInstantiation) { 9900 // A redeclaration in function prototype scope in C isn't 9901 // visible elsewhere, so merely issue a warning. 9902 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope()) 9903 Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name; 9904 else 9905 Diag(NameLoc, diag::err_redefinition) << Name; 9906 Diag(Def->getLocation(), diag::note_previous_definition); 9907 // If this is a redefinition, recover by making this 9908 // struct be anonymous, which will make any later 9909 // references get the previous definition. 9910 Name = 0; 9911 Previous.clear(); 9912 Invalid = true; 9913 } 9914 } else { 9915 // If the type is currently being defined, complain 9916 // about a nested redefinition. 9917 const TagType *Tag 9918 = cast<TagType>(Context.getTagDeclType(PrevTagDecl)); 9919 if (Tag->isBeingDefined()) { 9920 Diag(NameLoc, diag::err_nested_redefinition) << Name; 9921 Diag(PrevTagDecl->getLocation(), 9922 diag::note_previous_definition); 9923 Name = 0; 9924 Previous.clear(); 9925 Invalid = true; 9926 } 9927 } 9928 9929 // Okay, this is definition of a previously declared or referenced 9930 // tag PrevDecl. We're going to create a new Decl for it. 9931 } 9932 } 9933 // If we get here we have (another) forward declaration or we 9934 // have a definition. Just create a new decl. 9935 9936 } else { 9937 // If we get here, this is a definition of a new tag type in a nested 9938 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a 9939 // new decl/type. We set PrevDecl to NULL so that the entities 9940 // have distinct types. 9941 Previous.clear(); 9942 } 9943 // If we get here, we're going to create a new Decl. If PrevDecl 9944 // is non-NULL, it's a definition of the tag declared by 9945 // PrevDecl. If it's NULL, we have a new definition. 9946 9947 9948 // Otherwise, PrevDecl is not a tag, but was found with tag 9949 // lookup. This is only actually possible in C++, where a few 9950 // things like templates still live in the tag namespace. 9951 } else { 9952 // Use a better diagnostic if an elaborated-type-specifier 9953 // found the wrong kind of type on the first 9954 // (non-redeclaration) lookup. 9955 if ((TUK == TUK_Reference || TUK == TUK_Friend) && 9956 !Previous.isForRedeclaration()) { 9957 unsigned Kind = 0; 9958 if (isa<TypedefDecl>(PrevDecl)) Kind = 1; 9959 else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2; 9960 else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3; 9961 Diag(NameLoc, diag::err_tag_reference_non_tag) << Kind; 9962 Diag(PrevDecl->getLocation(), diag::note_declared_at); 9963 Invalid = true; 9964 9965 // Otherwise, only diagnose if the declaration is in scope. 9966 } else if (!isDeclInScope(PrevDecl, SearchDC, S, 9967 isExplicitSpecialization)) { 9968 // do nothing 9969 9970 // Diagnose implicit declarations introduced by elaborated types. 9971 } else if (TUK == TUK_Reference || TUK == TUK_Friend) { 9972 unsigned Kind = 0; 9973 if (isa<TypedefDecl>(PrevDecl)) Kind = 1; 9974 else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2; 9975 else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3; 9976 Diag(NameLoc, diag::err_tag_reference_conflict) << Kind; 9977 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 9978 Invalid = true; 9979 9980 // Otherwise it's a declaration. Call out a particularly common 9981 // case here. 9982 } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) { 9983 unsigned Kind = 0; 9984 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1; 9985 Diag(NameLoc, diag::err_tag_definition_of_typedef) 9986 << Name << Kind << TND->getUnderlyingType(); 9987 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl; 9988 Invalid = true; 9989 9990 // Otherwise, diagnose. 9991 } else { 9992 // The tag name clashes with something else in the target scope, 9993 // issue an error and recover by making this tag be anonymous. 9994 Diag(NameLoc, diag::err_redefinition_different_kind) << Name; 9995 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 9996 Name = 0; 9997 Invalid = true; 9998 } 9999 10000 // The existing declaration isn't relevant to us; we're in a 10001 // new scope, so clear out the previous declaration. 10002 Previous.clear(); 10003 } 10004 } 10005 10006 CreateNewDecl: 10007 10008 TagDecl *PrevDecl = 0; 10009 if (Previous.isSingleResult()) 10010 PrevDecl = cast<TagDecl>(Previous.getFoundDecl()); 10011 10012 // If there is an identifier, use the location of the identifier as the 10013 // location of the decl, otherwise use the location of the struct/union 10014 // keyword. 10015 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; 10016 10017 // Otherwise, create a new declaration. If there is a previous 10018 // declaration of the same entity, the two will be linked via 10019 // PrevDecl. 10020 TagDecl *New; 10021 10022 bool IsForwardReference = false; 10023 if (Kind == TTK_Enum) { 10024 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 10025 // enum X { A, B, C } D; D should chain to X. 10026 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, 10027 cast_or_null<EnumDecl>(PrevDecl), ScopedEnum, 10028 ScopedEnumUsesClassTag, !EnumUnderlying.isNull()); 10029 // If this is an undefined enum, warn. 10030 if (TUK != TUK_Definition && !Invalid) { 10031 TagDecl *Def; 10032 if ((getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) && 10033 cast<EnumDecl>(New)->isFixed()) { 10034 // C++0x: 7.2p2: opaque-enum-declaration. 10035 // Conflicts are diagnosed above. Do nothing. 10036 } 10037 else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) { 10038 Diag(Loc, diag::ext_forward_ref_enum_def) 10039 << New; 10040 Diag(Def->getLocation(), diag::note_previous_definition); 10041 } else { 10042 unsigned DiagID = diag::ext_forward_ref_enum; 10043 if (getLangOpts().MicrosoftMode) 10044 DiagID = diag::ext_ms_forward_ref_enum; 10045 else if (getLangOpts().CPlusPlus) 10046 DiagID = diag::err_forward_ref_enum; 10047 Diag(Loc, DiagID); 10048 10049 // If this is a forward-declared reference to an enumeration, make a 10050 // note of it; we won't actually be introducing the declaration into 10051 // the declaration context. 10052 if (TUK == TUK_Reference) 10053 IsForwardReference = true; 10054 } 10055 } 10056 10057 if (EnumUnderlying) { 10058 EnumDecl *ED = cast<EnumDecl>(New); 10059 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>()) 10060 ED->setIntegerTypeSourceInfo(TI); 10061 else 10062 ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0)); 10063 ED->setPromotionType(ED->getIntegerType()); 10064 } 10065 10066 } else { 10067 // struct/union/class 10068 10069 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: 10070 // struct X { int A; } D; D should chain to X. 10071 if (getLangOpts().CPlusPlus) { 10072 // FIXME: Look for a way to use RecordDecl for simple structs. 10073 New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 10074 cast_or_null<CXXRecordDecl>(PrevDecl)); 10075 10076 if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit())) 10077 StdBadAlloc = cast<CXXRecordDecl>(New); 10078 } else 10079 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name, 10080 cast_or_null<RecordDecl>(PrevDecl)); 10081 } 10082 10083 // Maybe add qualifier info. 10084 if (SS.isNotEmpty()) { 10085 if (SS.isSet()) { 10086 // If this is either a declaration or a definition, check the 10087 // nested-name-specifier against the current context. We don't do this 10088 // for explicit specializations, because they have similar checking 10089 // (with more specific diagnostics) in the call to 10090 // CheckMemberSpecialization, below. 10091 if (!isExplicitSpecialization && 10092 (TUK == TUK_Definition || TUK == TUK_Declaration) && 10093 diagnoseQualifiedDeclaration(SS, DC, OrigName, NameLoc)) 10094 Invalid = true; 10095 10096 New->setQualifierInfo(SS.getWithLocInContext(Context)); 10097 if (TemplateParameterLists.size() > 0) { 10098 New->setTemplateParameterListsInfo(Context, 10099 TemplateParameterLists.size(), 10100 TemplateParameterLists.data()); 10101 } 10102 } 10103 else 10104 Invalid = true; 10105 } 10106 10107 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) { 10108 // Add alignment attributes if necessary; these attributes are checked when 10109 // the ASTContext lays out the structure. 10110 // 10111 // It is important for implementing the correct semantics that this 10112 // happen here (in act on tag decl). The #pragma pack stack is 10113 // maintained as a result of parser callbacks which can occur at 10114 // many points during the parsing of a struct declaration (because 10115 // the #pragma tokens are effectively skipped over during the 10116 // parsing of the struct). 10117 if (TUK == TUK_Definition) { 10118 AddAlignmentAttributesForRecord(RD); 10119 AddMsStructLayoutForRecord(RD); 10120 } 10121 } 10122 10123 if (ModulePrivateLoc.isValid()) { 10124 if (isExplicitSpecialization) 10125 Diag(New->getLocation(), diag::err_module_private_specialization) 10126 << 2 10127 << FixItHint::CreateRemoval(ModulePrivateLoc); 10128 // __module_private__ does not apply to local classes. However, we only 10129 // diagnose this as an error when the declaration specifiers are 10130 // freestanding. Here, we just ignore the __module_private__. 10131 else if (!SearchDC->isFunctionOrMethod()) 10132 New->setModulePrivate(); 10133 } 10134 10135 // If this is a specialization of a member class (of a class template), 10136 // check the specialization. 10137 if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous)) 10138 Invalid = true; 10139 10140 if (Invalid) 10141 New->setInvalidDecl(); 10142 10143 if (Attr) 10144 ProcessDeclAttributeList(S, New, Attr); 10145 10146 // If we're declaring or defining a tag in function prototype scope 10147 // in C, note that this type can only be used within the function. 10148 if (Name && S->isFunctionPrototypeScope() && !getLangOpts().CPlusPlus) 10149 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New); 10150 10151 // Set the lexical context. If the tag has a C++ scope specifier, the 10152 // lexical context will be different from the semantic context. 10153 New->setLexicalDeclContext(CurContext); 10154 10155 // Mark this as a friend decl if applicable. 10156 // In Microsoft mode, a friend declaration also acts as a forward 10157 // declaration so we always pass true to setObjectOfFriendDecl to make 10158 // the tag name visible. 10159 if (TUK == TUK_Friend) 10160 New->setObjectOfFriendDecl(/* PreviouslyDeclared = */ !Previous.empty() || 10161 getLangOpts().MicrosoftExt); 10162 10163 // Set the access specifier. 10164 if (!Invalid && SearchDC->isRecord()) 10165 SetMemberAccessSpecifier(New, PrevDecl, AS); 10166 10167 if (TUK == TUK_Definition) 10168 New->startDefinition(); 10169 10170 // If this has an identifier, add it to the scope stack. 10171 if (TUK == TUK_Friend) { 10172 // We might be replacing an existing declaration in the lookup tables; 10173 // if so, borrow its access specifier. 10174 if (PrevDecl) 10175 New->setAccess(PrevDecl->getAccess()); 10176 10177 DeclContext *DC = New->getDeclContext()->getRedeclContext(); 10178 DC->makeDeclVisibleInContext(New); 10179 if (Name) // can be null along some error paths 10180 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) 10181 PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false); 10182 } else if (Name) { 10183 S = getNonFieldDeclScope(S); 10184 PushOnScopeChains(New, S, !IsForwardReference); 10185 if (IsForwardReference) 10186 SearchDC->makeDeclVisibleInContext(New); 10187 10188 } else { 10189 CurContext->addDecl(New); 10190 } 10191 10192 // If this is the C FILE type, notify the AST context. 10193 if (IdentifierInfo *II = New->getIdentifier()) 10194 if (!New->isInvalidDecl() && 10195 New->getDeclContext()->getRedeclContext()->isTranslationUnit() && 10196 II->isStr("FILE")) 10197 Context.setFILEDecl(New); 10198 10199 // If we were in function prototype scope (and not in C++ mode), add this 10200 // tag to the list of decls to inject into the function definition scope. 10201 if (S->isFunctionPrototypeScope() && !getLangOpts().CPlusPlus && 10202 InFunctionDeclarator && Name) 10203 DeclsInPrototypeScope.push_back(New); 10204 10205 if (PrevDecl) 10206 mergeDeclAttributes(New, PrevDecl); 10207 10208 // If there's a #pragma GCC visibility in scope, set the visibility of this 10209 // record. 10210 AddPushedVisibilityAttribute(New); 10211 10212 OwnedDecl = true; 10213 // In C++, don't return an invalid declaration. We can't recover well from 10214 // the cases where we make the type anonymous. 10215 return (Invalid && getLangOpts().CPlusPlus) ? 0 : New; 10216 } 10217 10218 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) { 10219 AdjustDeclIfTemplate(TagD); 10220 TagDecl *Tag = cast<TagDecl>(TagD); 10221 10222 // Enter the tag context. 10223 PushDeclContext(S, Tag); 10224 10225 ActOnDocumentableDecl(TagD); 10226 10227 // If there's a #pragma GCC visibility in scope, set the visibility of this 10228 // record. 10229 AddPushedVisibilityAttribute(Tag); 10230 } 10231 10232 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) { 10233 assert(isa<ObjCContainerDecl>(IDecl) && 10234 "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl"); 10235 DeclContext *OCD = cast<DeclContext>(IDecl); 10236 assert(getContainingDC(OCD) == CurContext && 10237 "The next DeclContext should be lexically contained in the current one."); 10238 CurContext = OCD; 10239 return IDecl; 10240 } 10241 10242 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD, 10243 SourceLocation FinalLoc, 10244 SourceLocation LBraceLoc) { 10245 AdjustDeclIfTemplate(TagD); 10246 CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD); 10247 10248 FieldCollector->StartClass(); 10249 10250 if (!Record->getIdentifier()) 10251 return; 10252 10253 if (FinalLoc.isValid()) 10254 Record->addAttr(new (Context) FinalAttr(FinalLoc, Context)); 10255 10256 // C++ [class]p2: 10257 // [...] The class-name is also inserted into the scope of the 10258 // class itself; this is known as the injected-class-name. For 10259 // purposes of access checking, the injected-class-name is treated 10260 // as if it were a public member name. 10261 CXXRecordDecl *InjectedClassName 10262 = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext, 10263 Record->getLocStart(), Record->getLocation(), 10264 Record->getIdentifier(), 10265 /*PrevDecl=*/0, 10266 /*DelayTypeCreation=*/true); 10267 Context.getTypeDeclType(InjectedClassName, Record); 10268 InjectedClassName->setImplicit(); 10269 InjectedClassName->setAccess(AS_public); 10270 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) 10271 InjectedClassName->setDescribedClassTemplate(Template); 10272 PushOnScopeChains(InjectedClassName, S); 10273 assert(InjectedClassName->isInjectedClassName() && 10274 "Broken injected-class-name"); 10275 } 10276 10277 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD, 10278 SourceLocation RBraceLoc) { 10279 AdjustDeclIfTemplate(TagD); 10280 TagDecl *Tag = cast<TagDecl>(TagD); 10281 Tag->setRBraceLoc(RBraceLoc); 10282 10283 // Make sure we "complete" the definition even it is invalid. 10284 if (Tag->isBeingDefined()) { 10285 assert(Tag->isInvalidDecl() && "We should already have completed it"); 10286 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 10287 RD->completeDefinition(); 10288 } 10289 10290 if (isa<CXXRecordDecl>(Tag)) 10291 FieldCollector->FinishClass(); 10292 10293 // Exit this scope of this tag's definition. 10294 PopDeclContext(); 10295 10296 if (getCurLexicalContext()->isObjCContainer() && 10297 Tag->getDeclContext()->isFileContext()) 10298 Tag->setTopLevelDeclInObjCContainer(); 10299 10300 // Notify the consumer that we've defined a tag. 10301 Consumer.HandleTagDeclDefinition(Tag); 10302 } 10303 10304 void Sema::ActOnObjCContainerFinishDefinition() { 10305 // Exit this scope of this interface definition. 10306 PopDeclContext(); 10307 } 10308 10309 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) { 10310 assert(DC == CurContext && "Mismatch of container contexts"); 10311 OriginalLexicalContext = DC; 10312 ActOnObjCContainerFinishDefinition(); 10313 } 10314 10315 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) { 10316 ActOnObjCContainerStartDefinition(cast<Decl>(DC)); 10317 OriginalLexicalContext = 0; 10318 } 10319 10320 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) { 10321 AdjustDeclIfTemplate(TagD); 10322 TagDecl *Tag = cast<TagDecl>(TagD); 10323 Tag->setInvalidDecl(); 10324 10325 // Make sure we "complete" the definition even it is invalid. 10326 if (Tag->isBeingDefined()) { 10327 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag)) 10328 RD->completeDefinition(); 10329 } 10330 10331 // We're undoing ActOnTagStartDefinition here, not 10332 // ActOnStartCXXMemberDeclarations, so we don't have to mess with 10333 // the FieldCollector. 10334 10335 PopDeclContext(); 10336 } 10337 10338 // Note that FieldName may be null for anonymous bitfields. 10339 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc, 10340 IdentifierInfo *FieldName, 10341 QualType FieldTy, Expr *BitWidth, 10342 bool *ZeroWidth) { 10343 // Default to true; that shouldn't confuse checks for emptiness 10344 if (ZeroWidth) 10345 *ZeroWidth = true; 10346 10347 // C99 6.7.2.1p4 - verify the field type. 10348 // C++ 9.6p3: A bit-field shall have integral or enumeration type. 10349 if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) { 10350 // Handle incomplete types with specific error. 10351 if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete)) 10352 return ExprError(); 10353 if (FieldName) 10354 return Diag(FieldLoc, diag::err_not_integral_type_bitfield) 10355 << FieldName << FieldTy << BitWidth->getSourceRange(); 10356 return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield) 10357 << FieldTy << BitWidth->getSourceRange(); 10358 } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth), 10359 UPPC_BitFieldWidth)) 10360 return ExprError(); 10361 10362 // If the bit-width is type- or value-dependent, don't try to check 10363 // it now. 10364 if (BitWidth->isValueDependent() || BitWidth->isTypeDependent()) 10365 return Owned(BitWidth); 10366 10367 llvm::APSInt Value; 10368 ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value); 10369 if (ICE.isInvalid()) 10370 return ICE; 10371 BitWidth = ICE.take(); 10372 10373 if (Value != 0 && ZeroWidth) 10374 *ZeroWidth = false; 10375 10376 // Zero-width bitfield is ok for anonymous field. 10377 if (Value == 0 && FieldName) 10378 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName; 10379 10380 if (Value.isSigned() && Value.isNegative()) { 10381 if (FieldName) 10382 return Diag(FieldLoc, diag::err_bitfield_has_negative_width) 10383 << FieldName << Value.toString(10); 10384 return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width) 10385 << Value.toString(10); 10386 } 10387 10388 if (!FieldTy->isDependentType()) { 10389 uint64_t TypeSize = Context.getTypeSize(FieldTy); 10390 if (Value.getZExtValue() > TypeSize) { 10391 if (!getLangOpts().CPlusPlus) { 10392 if (FieldName) 10393 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size) 10394 << FieldName << (unsigned)Value.getZExtValue() 10395 << (unsigned)TypeSize; 10396 10397 return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_size) 10398 << (unsigned)Value.getZExtValue() << (unsigned)TypeSize; 10399 } 10400 10401 if (FieldName) 10402 Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_size) 10403 << FieldName << (unsigned)Value.getZExtValue() 10404 << (unsigned)TypeSize; 10405 else 10406 Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_size) 10407 << (unsigned)Value.getZExtValue() << (unsigned)TypeSize; 10408 } 10409 } 10410 10411 return Owned(BitWidth); 10412 } 10413 10414 /// ActOnField - Each field of a C struct/union is passed into this in order 10415 /// to create a FieldDecl object for it. 10416 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart, 10417 Declarator &D, Expr *BitfieldWidth) { 10418 FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD), 10419 DeclStart, D, static_cast<Expr*>(BitfieldWidth), 10420 /*InitStyle=*/ICIS_NoInit, AS_public); 10421 return Res; 10422 } 10423 10424 /// HandleField - Analyze a field of a C struct or a C++ data member. 10425 /// 10426 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record, 10427 SourceLocation DeclStart, 10428 Declarator &D, Expr *BitWidth, 10429 InClassInitStyle InitStyle, 10430 AccessSpecifier AS) { 10431 IdentifierInfo *II = D.getIdentifier(); 10432 SourceLocation Loc = DeclStart; 10433 if (II) Loc = D.getIdentifierLoc(); 10434 10435 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 10436 QualType T = TInfo->getType(); 10437 if (getLangOpts().CPlusPlus) { 10438 CheckExtraCXXDefaultArguments(D); 10439 10440 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo, 10441 UPPC_DataMemberType)) { 10442 D.setInvalidType(); 10443 T = Context.IntTy; 10444 TInfo = Context.getTrivialTypeSourceInfo(T, Loc); 10445 } 10446 } 10447 10448 // TR 18037 does not allow fields to be declared with address spaces. 10449 if (T.getQualifiers().hasAddressSpace()) { 10450 Diag(Loc, diag::err_field_with_address_space); 10451 D.setInvalidType(); 10452 } 10453 10454 // OpenCL 1.2 spec, s6.9 r: 10455 // The event type cannot be used to declare a structure or union field. 10456 if (LangOpts.OpenCL && T->isEventT()) { 10457 Diag(Loc, diag::err_event_t_struct_field); 10458 D.setInvalidType(); 10459 } 10460 10461 DiagnoseFunctionSpecifiers(D.getDeclSpec()); 10462 10463 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) 10464 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), 10465 diag::err_invalid_thread) 10466 << DeclSpec::getSpecifierName(TSCS); 10467 10468 // Check to see if this name was declared as a member previously 10469 NamedDecl *PrevDecl = 0; 10470 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration); 10471 LookupName(Previous, S); 10472 switch (Previous.getResultKind()) { 10473 case LookupResult::Found: 10474 case LookupResult::FoundUnresolvedValue: 10475 PrevDecl = Previous.getAsSingle<NamedDecl>(); 10476 break; 10477 10478 case LookupResult::FoundOverloaded: 10479 PrevDecl = Previous.getRepresentativeDecl(); 10480 break; 10481 10482 case LookupResult::NotFound: 10483 case LookupResult::NotFoundInCurrentInstantiation: 10484 case LookupResult::Ambiguous: 10485 break; 10486 } 10487 Previous.suppressDiagnostics(); 10488 10489 if (PrevDecl && PrevDecl->isTemplateParameter()) { 10490 // Maybe we will complain about the shadowed template parameter. 10491 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); 10492 // Just pretend that we didn't see the previous declaration. 10493 PrevDecl = 0; 10494 } 10495 10496 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S)) 10497 PrevDecl = 0; 10498 10499 bool Mutable 10500 = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable); 10501 SourceLocation TSSL = D.getLocStart(); 10502 FieldDecl *NewFD 10503 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle, 10504 TSSL, AS, PrevDecl, &D); 10505 10506 if (NewFD->isInvalidDecl()) 10507 Record->setInvalidDecl(); 10508 10509 if (D.getDeclSpec().isModulePrivateSpecified()) 10510 NewFD->setModulePrivate(); 10511 10512 if (NewFD->isInvalidDecl() && PrevDecl) { 10513 // Don't introduce NewFD into scope; there's already something 10514 // with the same name in the same scope. 10515 } else if (II) { 10516 PushOnScopeChains(NewFD, S); 10517 } else 10518 Record->addDecl(NewFD); 10519 10520 return NewFD; 10521 } 10522 10523 /// \brief Build a new FieldDecl and check its well-formedness. 10524 /// 10525 /// This routine builds a new FieldDecl given the fields name, type, 10526 /// record, etc. \p PrevDecl should refer to any previous declaration 10527 /// with the same name and in the same scope as the field to be 10528 /// created. 10529 /// 10530 /// \returns a new FieldDecl. 10531 /// 10532 /// \todo The Declarator argument is a hack. It will be removed once 10533 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T, 10534 TypeSourceInfo *TInfo, 10535 RecordDecl *Record, SourceLocation Loc, 10536 bool Mutable, Expr *BitWidth, 10537 InClassInitStyle InitStyle, 10538 SourceLocation TSSL, 10539 AccessSpecifier AS, NamedDecl *PrevDecl, 10540 Declarator *D) { 10541 IdentifierInfo *II = Name.getAsIdentifierInfo(); 10542 bool InvalidDecl = false; 10543 if (D) InvalidDecl = D->isInvalidType(); 10544 10545 // If we receive a broken type, recover by assuming 'int' and 10546 // marking this declaration as invalid. 10547 if (T.isNull()) { 10548 InvalidDecl = true; 10549 T = Context.IntTy; 10550 } 10551 10552 QualType EltTy = Context.getBaseElementType(T); 10553 if (!EltTy->isDependentType()) { 10554 if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) { 10555 // Fields of incomplete type force their record to be invalid. 10556 Record->setInvalidDecl(); 10557 InvalidDecl = true; 10558 } else { 10559 NamedDecl *Def; 10560 EltTy->isIncompleteType(&Def); 10561 if (Def && Def->isInvalidDecl()) { 10562 Record->setInvalidDecl(); 10563 InvalidDecl = true; 10564 } 10565 } 10566 } 10567 10568 // OpenCL v1.2 s6.9.c: bitfields are not supported. 10569 if (BitWidth && getLangOpts().OpenCL) { 10570 Diag(Loc, diag::err_opencl_bitfields); 10571 InvalidDecl = true; 10572 } 10573 10574 // C99 6.7.2.1p8: A member of a structure or union may have any type other 10575 // than a variably modified type. 10576 if (!InvalidDecl && T->isVariablyModifiedType()) { 10577 bool SizeIsNegative; 10578 llvm::APSInt Oversized; 10579 10580 TypeSourceInfo *FixedTInfo = 10581 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context, 10582 SizeIsNegative, 10583 Oversized); 10584 if (FixedTInfo) { 10585 Diag(Loc, diag::warn_illegal_constant_array_size); 10586 TInfo = FixedTInfo; 10587 T = FixedTInfo->getType(); 10588 } else { 10589 if (SizeIsNegative) 10590 Diag(Loc, diag::err_typecheck_negative_array_size); 10591 else if (Oversized.getBoolValue()) 10592 Diag(Loc, diag::err_array_too_large) 10593 << Oversized.toString(10); 10594 else 10595 Diag(Loc, diag::err_typecheck_field_variable_size); 10596 InvalidDecl = true; 10597 } 10598 } 10599 10600 // Fields can not have abstract class types 10601 if (!InvalidDecl && RequireNonAbstractType(Loc, T, 10602 diag::err_abstract_type_in_decl, 10603 AbstractFieldType)) 10604 InvalidDecl = true; 10605 10606 bool ZeroWidth = false; 10607 // If this is declared as a bit-field, check the bit-field. 10608 if (!InvalidDecl && BitWidth) { 10609 BitWidth = VerifyBitField(Loc, II, T, BitWidth, &ZeroWidth).take(); 10610 if (!BitWidth) { 10611 InvalidDecl = true; 10612 BitWidth = 0; 10613 ZeroWidth = false; 10614 } 10615 } 10616 10617 // Check that 'mutable' is consistent with the type of the declaration. 10618 if (!InvalidDecl && Mutable) { 10619 unsigned DiagID = 0; 10620 if (T->isReferenceType()) 10621 DiagID = diag::err_mutable_reference; 10622 else if (T.isConstQualified()) 10623 DiagID = diag::err_mutable_const; 10624 10625 if (DiagID) { 10626 SourceLocation ErrLoc = Loc; 10627 if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid()) 10628 ErrLoc = D->getDeclSpec().getStorageClassSpecLoc(); 10629 Diag(ErrLoc, DiagID); 10630 Mutable = false; 10631 InvalidDecl = true; 10632 } 10633 } 10634 10635 FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo, 10636 BitWidth, Mutable, InitStyle); 10637 if (InvalidDecl) 10638 NewFD->setInvalidDecl(); 10639 10640 if (PrevDecl && !isa<TagDecl>(PrevDecl)) { 10641 Diag(Loc, diag::err_duplicate_member) << II; 10642 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 10643 NewFD->setInvalidDecl(); 10644 } 10645 10646 if (!InvalidDecl && getLangOpts().CPlusPlus) { 10647 if (Record->isUnion()) { 10648 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 10649 CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl()); 10650 if (RDecl->getDefinition()) { 10651 // C++ [class.union]p1: An object of a class with a non-trivial 10652 // constructor, a non-trivial copy constructor, a non-trivial 10653 // destructor, or a non-trivial copy assignment operator 10654 // cannot be a member of a union, nor can an array of such 10655 // objects. 10656 if (CheckNontrivialField(NewFD)) 10657 NewFD->setInvalidDecl(); 10658 } 10659 } 10660 10661 // C++ [class.union]p1: If a union contains a member of reference type, 10662 // the program is ill-formed. 10663 if (EltTy->isReferenceType()) { 10664 Diag(NewFD->getLocation(), diag::err_union_member_of_reference_type) 10665 << NewFD->getDeclName() << EltTy; 10666 NewFD->setInvalidDecl(); 10667 } 10668 } 10669 } 10670 10671 // FIXME: We need to pass in the attributes given an AST 10672 // representation, not a parser representation. 10673 if (D) { 10674 // FIXME: The current scope is almost... but not entirely... correct here. 10675 ProcessDeclAttributes(getCurScope(), NewFD, *D); 10676 10677 if (NewFD->hasAttrs()) 10678 CheckAlignasUnderalignment(NewFD); 10679 } 10680 10681 // In auto-retain/release, infer strong retension for fields of 10682 // retainable type. 10683 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD)) 10684 NewFD->setInvalidDecl(); 10685 10686 if (T.isObjCGCWeak()) 10687 Diag(Loc, diag::warn_attribute_weak_on_field); 10688 10689 NewFD->setAccess(AS); 10690 return NewFD; 10691 } 10692 10693 bool Sema::CheckNontrivialField(FieldDecl *FD) { 10694 assert(FD); 10695 assert(getLangOpts().CPlusPlus && "valid check only for C++"); 10696 10697 if (FD->isInvalidDecl()) 10698 return true; 10699 10700 QualType EltTy = Context.getBaseElementType(FD->getType()); 10701 if (const RecordType *RT = EltTy->getAs<RecordType>()) { 10702 CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl()); 10703 if (RDecl->getDefinition()) { 10704 // We check for copy constructors before constructors 10705 // because otherwise we'll never get complaints about 10706 // copy constructors. 10707 10708 CXXSpecialMember member = CXXInvalid; 10709 // We're required to check for any non-trivial constructors. Since the 10710 // implicit default constructor is suppressed if there are any 10711 // user-declared constructors, we just need to check that there is a 10712 // trivial default constructor and a trivial copy constructor. (We don't 10713 // worry about move constructors here, since this is a C++98 check.) 10714 if (RDecl->hasNonTrivialCopyConstructor()) 10715 member = CXXCopyConstructor; 10716 else if (!RDecl->hasTrivialDefaultConstructor()) 10717 member = CXXDefaultConstructor; 10718 else if (RDecl->hasNonTrivialCopyAssignment()) 10719 member = CXXCopyAssignment; 10720 else if (RDecl->hasNonTrivialDestructor()) 10721 member = CXXDestructor; 10722 10723 if (member != CXXInvalid) { 10724 if (!getLangOpts().CPlusPlus11 && 10725 getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) { 10726 // Objective-C++ ARC: it is an error to have a non-trivial field of 10727 // a union. However, system headers in Objective-C programs 10728 // occasionally have Objective-C lifetime objects within unions, 10729 // and rather than cause the program to fail, we make those 10730 // members unavailable. 10731 SourceLocation Loc = FD->getLocation(); 10732 if (getSourceManager().isInSystemHeader(Loc)) { 10733 if (!FD->hasAttr<UnavailableAttr>()) 10734 FD->addAttr(new (Context) UnavailableAttr(Loc, Context, 10735 "this system field has retaining ownership")); 10736 return false; 10737 } 10738 } 10739 10740 Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ? 10741 diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member : 10742 diag::err_illegal_union_or_anon_struct_member) 10743 << (int)FD->getParent()->isUnion() << FD->getDeclName() << member; 10744 DiagnoseNontrivial(RDecl, member); 10745 return !getLangOpts().CPlusPlus11; 10746 } 10747 } 10748 } 10749 10750 return false; 10751 } 10752 10753 /// TranslateIvarVisibility - Translate visibility from a token ID to an 10754 /// AST enum value. 10755 static ObjCIvarDecl::AccessControl 10756 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) { 10757 switch (ivarVisibility) { 10758 default: llvm_unreachable("Unknown visitibility kind"); 10759 case tok::objc_private: return ObjCIvarDecl::Private; 10760 case tok::objc_public: return ObjCIvarDecl::Public; 10761 case tok::objc_protected: return ObjCIvarDecl::Protected; 10762 case tok::objc_package: return ObjCIvarDecl::Package; 10763 } 10764 } 10765 10766 /// ActOnIvar - Each ivar field of an objective-c class is passed into this 10767 /// in order to create an IvarDecl object for it. 10768 Decl *Sema::ActOnIvar(Scope *S, 10769 SourceLocation DeclStart, 10770 Declarator &D, Expr *BitfieldWidth, 10771 tok::ObjCKeywordKind Visibility) { 10772 10773 IdentifierInfo *II = D.getIdentifier(); 10774 Expr *BitWidth = (Expr*)BitfieldWidth; 10775 SourceLocation Loc = DeclStart; 10776 if (II) Loc = D.getIdentifierLoc(); 10777 10778 // FIXME: Unnamed fields can be handled in various different ways, for 10779 // example, unnamed unions inject all members into the struct namespace! 10780 10781 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S); 10782 QualType T = TInfo->getType(); 10783 10784 if (BitWidth) { 10785 // 6.7.2.1p3, 6.7.2.1p4 10786 BitWidth = VerifyBitField(Loc, II, T, BitWidth).take(); 10787 if (!BitWidth) 10788 D.setInvalidType(); 10789 } else { 10790 // Not a bitfield. 10791 10792 // validate II. 10793 10794 } 10795 if (T->isReferenceType()) { 10796 Diag(Loc, diag::err_ivar_reference_type); 10797 D.setInvalidType(); 10798 } 10799 // C99 6.7.2.1p8: A member of a structure or union may have any type other 10800 // than a variably modified type. 10801 else if (T->isVariablyModifiedType()) { 10802 Diag(Loc, diag::err_typecheck_ivar_variable_size); 10803 D.setInvalidType(); 10804 } 10805 10806 // Get the visibility (access control) for this ivar. 10807 ObjCIvarDecl::AccessControl ac = 10808 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility) 10809 : ObjCIvarDecl::None; 10810 // Must set ivar's DeclContext to its enclosing interface. 10811 ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext); 10812 if (!EnclosingDecl || EnclosingDecl->isInvalidDecl()) 10813 return 0; 10814 ObjCContainerDecl *EnclosingContext; 10815 if (ObjCImplementationDecl *IMPDecl = 10816 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 10817 if (LangOpts.ObjCRuntime.isFragile()) { 10818 // Case of ivar declared in an implementation. Context is that of its class. 10819 EnclosingContext = IMPDecl->getClassInterface(); 10820 assert(EnclosingContext && "Implementation has no class interface!"); 10821 } 10822 else 10823 EnclosingContext = EnclosingDecl; 10824 } else { 10825 if (ObjCCategoryDecl *CDecl = 10826 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 10827 if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) { 10828 Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension(); 10829 return 0; 10830 } 10831 } 10832 EnclosingContext = EnclosingDecl; 10833 } 10834 10835 // Construct the decl. 10836 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext, 10837 DeclStart, Loc, II, T, 10838 TInfo, ac, (Expr *)BitfieldWidth); 10839 10840 if (II) { 10841 NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName, 10842 ForRedeclaration); 10843 if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S) 10844 && !isa<TagDecl>(PrevDecl)) { 10845 Diag(Loc, diag::err_duplicate_member) << II; 10846 Diag(PrevDecl->getLocation(), diag::note_previous_declaration); 10847 NewID->setInvalidDecl(); 10848 } 10849 } 10850 10851 // Process attributes attached to the ivar. 10852 ProcessDeclAttributes(S, NewID, D); 10853 10854 if (D.isInvalidType()) 10855 NewID->setInvalidDecl(); 10856 10857 // In ARC, infer 'retaining' for ivars of retainable type. 10858 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID)) 10859 NewID->setInvalidDecl(); 10860 10861 if (D.getDeclSpec().isModulePrivateSpecified()) 10862 NewID->setModulePrivate(); 10863 10864 if (II) { 10865 // FIXME: When interfaces are DeclContexts, we'll need to add 10866 // these to the interface. 10867 S->AddDecl(NewID); 10868 IdResolver.AddDecl(NewID); 10869 } 10870 10871 if (LangOpts.ObjCRuntime.isNonFragile() && 10872 !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl)) 10873 Diag(Loc, diag::warn_ivars_in_interface); 10874 10875 return NewID; 10876 } 10877 10878 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for 10879 /// class and class extensions. For every class \@interface and class 10880 /// extension \@interface, if the last ivar is a bitfield of any type, 10881 /// then add an implicit `char :0` ivar to the end of that interface. 10882 void Sema::ActOnLastBitfield(SourceLocation DeclLoc, 10883 SmallVectorImpl<Decl *> &AllIvarDecls) { 10884 if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty()) 10885 return; 10886 10887 Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1]; 10888 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl); 10889 10890 if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0) 10891 return; 10892 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext); 10893 if (!ID) { 10894 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) { 10895 if (!CD->IsClassExtension()) 10896 return; 10897 } 10898 // No need to add this to end of @implementation. 10899 else 10900 return; 10901 } 10902 // All conditions are met. Add a new bitfield to the tail end of ivars. 10903 llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0); 10904 Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc); 10905 10906 Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext), 10907 DeclLoc, DeclLoc, 0, 10908 Context.CharTy, 10909 Context.getTrivialTypeSourceInfo(Context.CharTy, 10910 DeclLoc), 10911 ObjCIvarDecl::Private, BW, 10912 true); 10913 AllIvarDecls.push_back(Ivar); 10914 } 10915 10916 void Sema::ActOnFields(Scope* S, 10917 SourceLocation RecLoc, Decl *EnclosingDecl, 10918 llvm::ArrayRef<Decl *> Fields, 10919 SourceLocation LBrac, SourceLocation RBrac, 10920 AttributeList *Attr) { 10921 assert(EnclosingDecl && "missing record or interface decl"); 10922 10923 // If this is an Objective-C @implementation or category and we have 10924 // new fields here we should reset the layout of the interface since 10925 // it will now change. 10926 if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) { 10927 ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl); 10928 switch (DC->getKind()) { 10929 default: break; 10930 case Decl::ObjCCategory: 10931 Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface()); 10932 break; 10933 case Decl::ObjCImplementation: 10934 Context. 10935 ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface()); 10936 break; 10937 } 10938 } 10939 10940 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl); 10941 10942 // Start counting up the number of named members; make sure to include 10943 // members of anonymous structs and unions in the total. 10944 unsigned NumNamedMembers = 0; 10945 if (Record) { 10946 for (RecordDecl::decl_iterator i = Record->decls_begin(), 10947 e = Record->decls_end(); i != e; i++) { 10948 if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(*i)) 10949 if (IFD->getDeclName()) 10950 ++NumNamedMembers; 10951 } 10952 } 10953 10954 // Verify that all the fields are okay. 10955 SmallVector<FieldDecl*, 32> RecFields; 10956 10957 bool ARCErrReported = false; 10958 for (llvm::ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end(); 10959 i != end; ++i) { 10960 FieldDecl *FD = cast<FieldDecl>(*i); 10961 10962 // Get the type for the field. 10963 const Type *FDTy = FD->getType().getTypePtr(); 10964 10965 if (!FD->isAnonymousStructOrUnion()) { 10966 // Remember all fields written by the user. 10967 RecFields.push_back(FD); 10968 } 10969 10970 // If the field is already invalid for some reason, don't emit more 10971 // diagnostics about it. 10972 if (FD->isInvalidDecl()) { 10973 EnclosingDecl->setInvalidDecl(); 10974 continue; 10975 } 10976 10977 // C99 6.7.2.1p2: 10978 // A structure or union shall not contain a member with 10979 // incomplete or function type (hence, a structure shall not 10980 // contain an instance of itself, but may contain a pointer to 10981 // an instance of itself), except that the last member of a 10982 // structure with more than one named member may have incomplete 10983 // array type; such a structure (and any union containing, 10984 // possibly recursively, a member that is such a structure) 10985 // shall not be a member of a structure or an element of an 10986 // array. 10987 if (FDTy->isFunctionType()) { 10988 // Field declared as a function. 10989 Diag(FD->getLocation(), diag::err_field_declared_as_function) 10990 << FD->getDeclName(); 10991 FD->setInvalidDecl(); 10992 EnclosingDecl->setInvalidDecl(); 10993 continue; 10994 } else if (FDTy->isIncompleteArrayType() && Record && 10995 ((i + 1 == Fields.end() && !Record->isUnion()) || 10996 ((getLangOpts().MicrosoftExt || 10997 getLangOpts().CPlusPlus) && 10998 (i + 1 == Fields.end() || Record->isUnion())))) { 10999 // Flexible array member. 11000 // Microsoft and g++ is more permissive regarding flexible array. 11001 // It will accept flexible array in union and also 11002 // as the sole element of a struct/class. 11003 if (getLangOpts().MicrosoftExt) { 11004 if (Record->isUnion()) 11005 Diag(FD->getLocation(), diag::ext_flexible_array_union_ms) 11006 << FD->getDeclName(); 11007 else if (Fields.size() == 1) 11008 Diag(FD->getLocation(), diag::ext_flexible_array_empty_aggregate_ms) 11009 << FD->getDeclName() << Record->getTagKind(); 11010 } else if (getLangOpts().CPlusPlus) { 11011 if (Record->isUnion()) 11012 Diag(FD->getLocation(), diag::ext_flexible_array_union_gnu) 11013 << FD->getDeclName(); 11014 else if (Fields.size() == 1) 11015 Diag(FD->getLocation(), diag::ext_flexible_array_empty_aggregate_gnu) 11016 << FD->getDeclName() << Record->getTagKind(); 11017 } else if (!getLangOpts().C99) { 11018 if (Record->isUnion()) 11019 Diag(FD->getLocation(), diag::ext_flexible_array_union_gnu) 11020 << FD->getDeclName(); 11021 else 11022 Diag(FD->getLocation(), diag::ext_c99_flexible_array_member) 11023 << FD->getDeclName() << Record->getTagKind(); 11024 } else if (NumNamedMembers < 1) { 11025 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct) 11026 << FD->getDeclName(); 11027 FD->setInvalidDecl(); 11028 EnclosingDecl->setInvalidDecl(); 11029 continue; 11030 } 11031 if (!FD->getType()->isDependentType() && 11032 !Context.getBaseElementType(FD->getType()).isPODType(Context)) { 11033 Diag(FD->getLocation(), diag::err_flexible_array_has_nonpod_type) 11034 << FD->getDeclName() << FD->getType(); 11035 FD->setInvalidDecl(); 11036 EnclosingDecl->setInvalidDecl(); 11037 continue; 11038 } 11039 // Okay, we have a legal flexible array member at the end of the struct. 11040 if (Record) 11041 Record->setHasFlexibleArrayMember(true); 11042 } else if (!FDTy->isDependentType() && 11043 RequireCompleteType(FD->getLocation(), FD->getType(), 11044 diag::err_field_incomplete)) { 11045 // Incomplete type 11046 FD->setInvalidDecl(); 11047 EnclosingDecl->setInvalidDecl(); 11048 continue; 11049 } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) { 11050 if (FDTTy->getDecl()->hasFlexibleArrayMember()) { 11051 // If this is a member of a union, then entire union becomes "flexible". 11052 if (Record && Record->isUnion()) { 11053 Record->setHasFlexibleArrayMember(true); 11054 } else { 11055 // If this is a struct/class and this is not the last element, reject 11056 // it. Note that GCC supports variable sized arrays in the middle of 11057 // structures. 11058 if (i + 1 != Fields.end()) 11059 Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct) 11060 << FD->getDeclName() << FD->getType(); 11061 else { 11062 // We support flexible arrays at the end of structs in 11063 // other structs as an extension. 11064 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct) 11065 << FD->getDeclName(); 11066 if (Record) 11067 Record->setHasFlexibleArrayMember(true); 11068 } 11069 } 11070 } 11071 if (isa<ObjCContainerDecl>(EnclosingDecl) && 11072 RequireNonAbstractType(FD->getLocation(), FD->getType(), 11073 diag::err_abstract_type_in_decl, 11074 AbstractIvarType)) { 11075 // Ivars can not have abstract class types 11076 FD->setInvalidDecl(); 11077 } 11078 if (Record && FDTTy->getDecl()->hasObjectMember()) 11079 Record->setHasObjectMember(true); 11080 if (Record && FDTTy->getDecl()->hasVolatileMember()) 11081 Record->setHasVolatileMember(true); 11082 } else if (FDTy->isObjCObjectType()) { 11083 /// A field cannot be an Objective-c object 11084 Diag(FD->getLocation(), diag::err_statically_allocated_object) 11085 << FixItHint::CreateInsertion(FD->getLocation(), "*"); 11086 QualType T = Context.getObjCObjectPointerType(FD->getType()); 11087 FD->setType(T); 11088 } else if (getLangOpts().ObjCAutoRefCount && Record && !ARCErrReported && 11089 (!getLangOpts().CPlusPlus || Record->isUnion())) { 11090 // It's an error in ARC if a field has lifetime. 11091 // We don't want to report this in a system header, though, 11092 // so we just make the field unavailable. 11093 // FIXME: that's really not sufficient; we need to make the type 11094 // itself invalid to, say, initialize or copy. 11095 QualType T = FD->getType(); 11096 Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime(); 11097 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone) { 11098 SourceLocation loc = FD->getLocation(); 11099 if (getSourceManager().isInSystemHeader(loc)) { 11100 if (!FD->hasAttr<UnavailableAttr>()) { 11101 FD->addAttr(new (Context) UnavailableAttr(loc, Context, 11102 "this system field has retaining ownership")); 11103 } 11104 } else { 11105 Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag) 11106 << T->isBlockPointerType() << Record->getTagKind(); 11107 } 11108 ARCErrReported = true; 11109 } 11110 } else if (getLangOpts().ObjC1 && 11111 getLangOpts().getGC() != LangOptions::NonGC && 11112 Record && !Record->hasObjectMember()) { 11113 if (FD->getType()->isObjCObjectPointerType() || 11114 FD->getType().isObjCGCStrong()) 11115 Record->setHasObjectMember(true); 11116 else if (Context.getAsArrayType(FD->getType())) { 11117 QualType BaseType = Context.getBaseElementType(FD->getType()); 11118 if (BaseType->isRecordType() && 11119 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember()) 11120 Record->setHasObjectMember(true); 11121 else if (BaseType->isObjCObjectPointerType() || 11122 BaseType.isObjCGCStrong()) 11123 Record->setHasObjectMember(true); 11124 } 11125 } 11126 if (Record && FD->getType().isVolatileQualified()) 11127 Record->setHasVolatileMember(true); 11128 // Keep track of the number of named members. 11129 if (FD->getIdentifier()) 11130 ++NumNamedMembers; 11131 } 11132 11133 // Okay, we successfully defined 'Record'. 11134 if (Record) { 11135 bool Completed = false; 11136 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) { 11137 if (!CXXRecord->isInvalidDecl()) { 11138 // Set access bits correctly on the directly-declared conversions. 11139 for (CXXRecordDecl::conversion_iterator 11140 I = CXXRecord->conversion_begin(), 11141 E = CXXRecord->conversion_end(); I != E; ++I) 11142 I.setAccess((*I)->getAccess()); 11143 11144 if (!CXXRecord->isDependentType()) { 11145 // Adjust user-defined destructor exception spec. 11146 if (getLangOpts().CPlusPlus11 && 11147 CXXRecord->hasUserDeclaredDestructor()) 11148 AdjustDestructorExceptionSpec(CXXRecord,CXXRecord->getDestructor()); 11149 11150 // Add any implicitly-declared members to this class. 11151 AddImplicitlyDeclaredMembersToClass(CXXRecord); 11152 11153 // If we have virtual base classes, we may end up finding multiple 11154 // final overriders for a given virtual function. Check for this 11155 // problem now. 11156 if (CXXRecord->getNumVBases()) { 11157 CXXFinalOverriderMap FinalOverriders; 11158 CXXRecord->getFinalOverriders(FinalOverriders); 11159 11160 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 11161 MEnd = FinalOverriders.end(); 11162 M != MEnd; ++M) { 11163 for (OverridingMethods::iterator SO = M->second.begin(), 11164 SOEnd = M->second.end(); 11165 SO != SOEnd; ++SO) { 11166 assert(SO->second.size() > 0 && 11167 "Virtual function without overridding functions?"); 11168 if (SO->second.size() == 1) 11169 continue; 11170 11171 // C++ [class.virtual]p2: 11172 // In a derived class, if a virtual member function of a base 11173 // class subobject has more than one final overrider the 11174 // program is ill-formed. 11175 Diag(Record->getLocation(), diag::err_multiple_final_overriders) 11176 << (const NamedDecl *)M->first << Record; 11177 Diag(M->first->getLocation(), 11178 diag::note_overridden_virtual_function); 11179 for (OverridingMethods::overriding_iterator 11180 OM = SO->second.begin(), 11181 OMEnd = SO->second.end(); 11182 OM != OMEnd; ++OM) 11183 Diag(OM->Method->getLocation(), diag::note_final_overrider) 11184 << (const NamedDecl *)M->first << OM->Method->getParent(); 11185 11186 Record->setInvalidDecl(); 11187 } 11188 } 11189 CXXRecord->completeDefinition(&FinalOverriders); 11190 Completed = true; 11191 } 11192 } 11193 } 11194 } 11195 11196 if (!Completed) 11197 Record->completeDefinition(); 11198 11199 if (Record->hasAttrs()) 11200 CheckAlignasUnderalignment(Record); 11201 } else { 11202 ObjCIvarDecl **ClsFields = 11203 reinterpret_cast<ObjCIvarDecl**>(RecFields.data()); 11204 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) { 11205 ID->setEndOfDefinitionLoc(RBrac); 11206 // Add ivar's to class's DeclContext. 11207 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 11208 ClsFields[i]->setLexicalDeclContext(ID); 11209 ID->addDecl(ClsFields[i]); 11210 } 11211 // Must enforce the rule that ivars in the base classes may not be 11212 // duplicates. 11213 if (ID->getSuperClass()) 11214 DiagnoseDuplicateIvars(ID, ID->getSuperClass()); 11215 } else if (ObjCImplementationDecl *IMPDecl = 11216 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { 11217 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl"); 11218 for (unsigned I = 0, N = RecFields.size(); I != N; ++I) 11219 // Ivar declared in @implementation never belongs to the implementation. 11220 // Only it is in implementation's lexical context. 11221 ClsFields[I]->setLexicalDeclContext(IMPDecl); 11222 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac); 11223 IMPDecl->setIvarLBraceLoc(LBrac); 11224 IMPDecl->setIvarRBraceLoc(RBrac); 11225 } else if (ObjCCategoryDecl *CDecl = 11226 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) { 11227 // case of ivars in class extension; all other cases have been 11228 // reported as errors elsewhere. 11229 // FIXME. Class extension does not have a LocEnd field. 11230 // CDecl->setLocEnd(RBrac); 11231 // Add ivar's to class extension's DeclContext. 11232 // Diagnose redeclaration of private ivars. 11233 ObjCInterfaceDecl *IDecl = CDecl->getClassInterface(); 11234 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { 11235 if (IDecl) { 11236 if (const ObjCIvarDecl *ClsIvar = 11237 IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) { 11238 Diag(ClsFields[i]->getLocation(), 11239 diag::err_duplicate_ivar_declaration); 11240 Diag(ClsIvar->getLocation(), diag::note_previous_definition); 11241 continue; 11242 } 11243 for (ObjCInterfaceDecl::known_extensions_iterator 11244 Ext = IDecl->known_extensions_begin(), 11245 ExtEnd = IDecl->known_extensions_end(); 11246 Ext != ExtEnd; ++Ext) { 11247 if (const ObjCIvarDecl *ClsExtIvar 11248 = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) { 11249 Diag(ClsFields[i]->getLocation(), 11250 diag::err_duplicate_ivar_declaration); 11251 Diag(ClsExtIvar->getLocation(), diag::note_previous_definition); 11252 continue; 11253 } 11254 } 11255 } 11256 ClsFields[i]->setLexicalDeclContext(CDecl); 11257 CDecl->addDecl(ClsFields[i]); 11258 } 11259 CDecl->setIvarLBraceLoc(LBrac); 11260 CDecl->setIvarRBraceLoc(RBrac); 11261 } 11262 } 11263 11264 if (Attr) 11265 ProcessDeclAttributeList(S, Record, Attr); 11266 } 11267 11268 /// \brief Determine whether the given integral value is representable within 11269 /// the given type T. 11270 static bool isRepresentableIntegerValue(ASTContext &Context, 11271 llvm::APSInt &Value, 11272 QualType T) { 11273 assert(T->isIntegralType(Context) && "Integral type required!"); 11274 unsigned BitWidth = Context.getIntWidth(T); 11275 11276 if (Value.isUnsigned() || Value.isNonNegative()) { 11277 if (T->isSignedIntegerOrEnumerationType()) 11278 --BitWidth; 11279 return Value.getActiveBits() <= BitWidth; 11280 } 11281 return Value.getMinSignedBits() <= BitWidth; 11282 } 11283 11284 // \brief Given an integral type, return the next larger integral type 11285 // (or a NULL type of no such type exists). 11286 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) { 11287 // FIXME: Int128/UInt128 support, which also needs to be introduced into 11288 // enum checking below. 11289 assert(T->isIntegralType(Context) && "Integral type required!"); 11290 const unsigned NumTypes = 4; 11291 QualType SignedIntegralTypes[NumTypes] = { 11292 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy 11293 }; 11294 QualType UnsignedIntegralTypes[NumTypes] = { 11295 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, 11296 Context.UnsignedLongLongTy 11297 }; 11298 11299 unsigned BitWidth = Context.getTypeSize(T); 11300 QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes 11301 : UnsignedIntegralTypes; 11302 for (unsigned I = 0; I != NumTypes; ++I) 11303 if (Context.getTypeSize(Types[I]) > BitWidth) 11304 return Types[I]; 11305 11306 return QualType(); 11307 } 11308 11309 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum, 11310 EnumConstantDecl *LastEnumConst, 11311 SourceLocation IdLoc, 11312 IdentifierInfo *Id, 11313 Expr *Val) { 11314 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 11315 llvm::APSInt EnumVal(IntWidth); 11316 QualType EltTy; 11317 11318 if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue)) 11319 Val = 0; 11320 11321 if (Val) 11322 Val = DefaultLvalueConversion(Val).take(); 11323 11324 if (Val) { 11325 if (Enum->isDependentType() || Val->isTypeDependent()) 11326 EltTy = Context.DependentTy; 11327 else { 11328 SourceLocation ExpLoc; 11329 if (getLangOpts().CPlusPlus11 && Enum->isFixed() && 11330 !getLangOpts().MicrosoftMode) { 11331 // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the 11332 // constant-expression in the enumerator-definition shall be a converted 11333 // constant expression of the underlying type. 11334 EltTy = Enum->getIntegerType(); 11335 ExprResult Converted = 11336 CheckConvertedConstantExpression(Val, EltTy, EnumVal, 11337 CCEK_Enumerator); 11338 if (Converted.isInvalid()) 11339 Val = 0; 11340 else 11341 Val = Converted.take(); 11342 } else if (!Val->isValueDependent() && 11343 !(Val = VerifyIntegerConstantExpression(Val, 11344 &EnumVal).take())) { 11345 // C99 6.7.2.2p2: Make sure we have an integer constant expression. 11346 } else { 11347 if (Enum->isFixed()) { 11348 EltTy = Enum->getIntegerType(); 11349 11350 // In Obj-C and Microsoft mode, require the enumeration value to be 11351 // representable in the underlying type of the enumeration. In C++11, 11352 // we perform a non-narrowing conversion as part of converted constant 11353 // expression checking. 11354 if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 11355 if (getLangOpts().MicrosoftMode) { 11356 Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy; 11357 Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).take(); 11358 } else 11359 Diag(IdLoc, diag::err_enumerator_too_large) << EltTy; 11360 } else 11361 Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).take(); 11362 } else if (getLangOpts().CPlusPlus) { 11363 // C++11 [dcl.enum]p5: 11364 // If the underlying type is not fixed, the type of each enumerator 11365 // is the type of its initializing value: 11366 // - If an initializer is specified for an enumerator, the 11367 // initializing value has the same type as the expression. 11368 EltTy = Val->getType(); 11369 } else { 11370 // C99 6.7.2.2p2: 11371 // The expression that defines the value of an enumeration constant 11372 // shall be an integer constant expression that has a value 11373 // representable as an int. 11374 11375 // Complain if the value is not representable in an int. 11376 if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy)) 11377 Diag(IdLoc, diag::ext_enum_value_not_int) 11378 << EnumVal.toString(10) << Val->getSourceRange() 11379 << (EnumVal.isUnsigned() || EnumVal.isNonNegative()); 11380 else if (!Context.hasSameType(Val->getType(), Context.IntTy)) { 11381 // Force the type of the expression to 'int'. 11382 Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).take(); 11383 } 11384 EltTy = Val->getType(); 11385 } 11386 } 11387 } 11388 } 11389 11390 if (!Val) { 11391 if (Enum->isDependentType()) 11392 EltTy = Context.DependentTy; 11393 else if (!LastEnumConst) { 11394 // C++0x [dcl.enum]p5: 11395 // If the underlying type is not fixed, the type of each enumerator 11396 // is the type of its initializing value: 11397 // - If no initializer is specified for the first enumerator, the 11398 // initializing value has an unspecified integral type. 11399 // 11400 // GCC uses 'int' for its unspecified integral type, as does 11401 // C99 6.7.2.2p3. 11402 if (Enum->isFixed()) { 11403 EltTy = Enum->getIntegerType(); 11404 } 11405 else { 11406 EltTy = Context.IntTy; 11407 } 11408 } else { 11409 // Assign the last value + 1. 11410 EnumVal = LastEnumConst->getInitVal(); 11411 ++EnumVal; 11412 EltTy = LastEnumConst->getType(); 11413 11414 // Check for overflow on increment. 11415 if (EnumVal < LastEnumConst->getInitVal()) { 11416 // C++0x [dcl.enum]p5: 11417 // If the underlying type is not fixed, the type of each enumerator 11418 // is the type of its initializing value: 11419 // 11420 // - Otherwise the type of the initializing value is the same as 11421 // the type of the initializing value of the preceding enumerator 11422 // unless the incremented value is not representable in that type, 11423 // in which case the type is an unspecified integral type 11424 // sufficient to contain the incremented value. If no such type 11425 // exists, the program is ill-formed. 11426 QualType T = getNextLargerIntegralType(Context, EltTy); 11427 if (T.isNull() || Enum->isFixed()) { 11428 // There is no integral type larger enough to represent this 11429 // value. Complain, then allow the value to wrap around. 11430 EnumVal = LastEnumConst->getInitVal(); 11431 EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2); 11432 ++EnumVal; 11433 if (Enum->isFixed()) 11434 // When the underlying type is fixed, this is ill-formed. 11435 Diag(IdLoc, diag::err_enumerator_wrapped) 11436 << EnumVal.toString(10) 11437 << EltTy; 11438 else 11439 Diag(IdLoc, diag::warn_enumerator_too_large) 11440 << EnumVal.toString(10); 11441 } else { 11442 EltTy = T; 11443 } 11444 11445 // Retrieve the last enumerator's value, extent that type to the 11446 // type that is supposed to be large enough to represent the incremented 11447 // value, then increment. 11448 EnumVal = LastEnumConst->getInitVal(); 11449 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 11450 EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy)); 11451 ++EnumVal; 11452 11453 // If we're not in C++, diagnose the overflow of enumerator values, 11454 // which in C99 means that the enumerator value is not representable in 11455 // an int (C99 6.7.2.2p2). However, we support GCC's extension that 11456 // permits enumerator values that are representable in some larger 11457 // integral type. 11458 if (!getLangOpts().CPlusPlus && !T.isNull()) 11459 Diag(IdLoc, diag::warn_enum_value_overflow); 11460 } else if (!getLangOpts().CPlusPlus && 11461 !isRepresentableIntegerValue(Context, EnumVal, EltTy)) { 11462 // Enforce C99 6.7.2.2p2 even when we compute the next value. 11463 Diag(IdLoc, diag::ext_enum_value_not_int) 11464 << EnumVal.toString(10) << 1; 11465 } 11466 } 11467 } 11468 11469 if (!EltTy->isDependentType()) { 11470 // Make the enumerator value match the signedness and size of the 11471 // enumerator's type. 11472 EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy)); 11473 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType()); 11474 } 11475 11476 return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy, 11477 Val, EnumVal); 11478 } 11479 11480 11481 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, 11482 SourceLocation IdLoc, IdentifierInfo *Id, 11483 AttributeList *Attr, 11484 SourceLocation EqualLoc, Expr *Val) { 11485 EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl); 11486 EnumConstantDecl *LastEnumConst = 11487 cast_or_null<EnumConstantDecl>(lastEnumConst); 11488 11489 // The scope passed in may not be a decl scope. Zip up the scope tree until 11490 // we find one that is. 11491 S = getNonFieldDeclScope(S); 11492 11493 // Verify that there isn't already something declared with this name in this 11494 // scope. 11495 NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName, 11496 ForRedeclaration); 11497 if (PrevDecl && PrevDecl->isTemplateParameter()) { 11498 // Maybe we will complain about the shadowed template parameter. 11499 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl); 11500 // Just pretend that we didn't see the previous declaration. 11501 PrevDecl = 0; 11502 } 11503 11504 if (PrevDecl) { 11505 // When in C++, we may get a TagDecl with the same name; in this case the 11506 // enum constant will 'hide' the tag. 11507 assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) && 11508 "Received TagDecl when not in C++!"); 11509 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) { 11510 if (isa<EnumConstantDecl>(PrevDecl)) 11511 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id; 11512 else 11513 Diag(IdLoc, diag::err_redefinition) << Id; 11514 Diag(PrevDecl->getLocation(), diag::note_previous_definition); 11515 return 0; 11516 } 11517 } 11518 11519 // C++ [class.mem]p15: 11520 // If T is the name of a class, then each of the following shall have a name 11521 // different from T: 11522 // - every enumerator of every member of class T that is an unscoped 11523 // enumerated type 11524 if (CXXRecordDecl *Record 11525 = dyn_cast<CXXRecordDecl>( 11526 TheEnumDecl->getDeclContext()->getRedeclContext())) 11527 if (!TheEnumDecl->isScoped() && 11528 Record->getIdentifier() && Record->getIdentifier() == Id) 11529 Diag(IdLoc, diag::err_member_name_of_class) << Id; 11530 11531 EnumConstantDecl *New = 11532 CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val); 11533 11534 if (New) { 11535 // Process attributes. 11536 if (Attr) ProcessDeclAttributeList(S, New, Attr); 11537 11538 // Register this decl in the current scope stack. 11539 New->setAccess(TheEnumDecl->getAccess()); 11540 PushOnScopeChains(New, S); 11541 } 11542 11543 ActOnDocumentableDecl(New); 11544 11545 return New; 11546 } 11547 11548 // Returns true when the enum initial expression does not trigger the 11549 // duplicate enum warning. A few common cases are exempted as follows: 11550 // Element2 = Element1 11551 // Element2 = Element1 + 1 11552 // Element2 = Element1 - 1 11553 // Where Element2 and Element1 are from the same enum. 11554 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) { 11555 Expr *InitExpr = ECD->getInitExpr(); 11556 if (!InitExpr) 11557 return true; 11558 InitExpr = InitExpr->IgnoreImpCasts(); 11559 11560 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) { 11561 if (!BO->isAdditiveOp()) 11562 return true; 11563 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS()); 11564 if (!IL) 11565 return true; 11566 if (IL->getValue() != 1) 11567 return true; 11568 11569 InitExpr = BO->getLHS(); 11570 } 11571 11572 // This checks if the elements are from the same enum. 11573 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr); 11574 if (!DRE) 11575 return true; 11576 11577 EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl()); 11578 if (!EnumConstant) 11579 return true; 11580 11581 if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) != 11582 Enum) 11583 return true; 11584 11585 return false; 11586 } 11587 11588 struct DupKey { 11589 int64_t val; 11590 bool isTombstoneOrEmptyKey; 11591 DupKey(int64_t val, bool isTombstoneOrEmptyKey) 11592 : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {} 11593 }; 11594 11595 static DupKey GetDupKey(const llvm::APSInt& Val) { 11596 return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(), 11597 false); 11598 } 11599 11600 struct DenseMapInfoDupKey { 11601 static DupKey getEmptyKey() { return DupKey(0, true); } 11602 static DupKey getTombstoneKey() { return DupKey(1, true); } 11603 static unsigned getHashValue(const DupKey Key) { 11604 return (unsigned)(Key.val * 37); 11605 } 11606 static bool isEqual(const DupKey& LHS, const DupKey& RHS) { 11607 return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey && 11608 LHS.val == RHS.val; 11609 } 11610 }; 11611 11612 // Emits a warning when an element is implicitly set a value that 11613 // a previous element has already been set to. 11614 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements, 11615 EnumDecl *Enum, 11616 QualType EnumType) { 11617 if (S.Diags.getDiagnosticLevel(diag::warn_duplicate_enum_values, 11618 Enum->getLocation()) == 11619 DiagnosticsEngine::Ignored) 11620 return; 11621 // Avoid anonymous enums 11622 if (!Enum->getIdentifier()) 11623 return; 11624 11625 // Only check for small enums. 11626 if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64) 11627 return; 11628 11629 typedef SmallVector<EnumConstantDecl *, 3> ECDVector; 11630 typedef SmallVector<ECDVector *, 3> DuplicatesVector; 11631 11632 typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector; 11633 typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey> 11634 ValueToVectorMap; 11635 11636 DuplicatesVector DupVector; 11637 ValueToVectorMap EnumMap; 11638 11639 // Populate the EnumMap with all values represented by enum constants without 11640 // an initialier. 11641 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 11642 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]); 11643 11644 // Null EnumConstantDecl means a previous diagnostic has been emitted for 11645 // this constant. Skip this enum since it may be ill-formed. 11646 if (!ECD) { 11647 return; 11648 } 11649 11650 if (ECD->getInitExpr()) 11651 continue; 11652 11653 DupKey Key = GetDupKey(ECD->getInitVal()); 11654 DeclOrVector &Entry = EnumMap[Key]; 11655 11656 // First time encountering this value. 11657 if (Entry.isNull()) 11658 Entry = ECD; 11659 } 11660 11661 // Create vectors for any values that has duplicates. 11662 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 11663 EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]); 11664 if (!ValidDuplicateEnum(ECD, Enum)) 11665 continue; 11666 11667 DupKey Key = GetDupKey(ECD->getInitVal()); 11668 11669 DeclOrVector& Entry = EnumMap[Key]; 11670 if (Entry.isNull()) 11671 continue; 11672 11673 if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) { 11674 // Ensure constants are different. 11675 if (D == ECD) 11676 continue; 11677 11678 // Create new vector and push values onto it. 11679 ECDVector *Vec = new ECDVector(); 11680 Vec->push_back(D); 11681 Vec->push_back(ECD); 11682 11683 // Update entry to point to the duplicates vector. 11684 Entry = Vec; 11685 11686 // Store the vector somewhere we can consult later for quick emission of 11687 // diagnostics. 11688 DupVector.push_back(Vec); 11689 continue; 11690 } 11691 11692 ECDVector *Vec = Entry.get<ECDVector*>(); 11693 // Make sure constants are not added more than once. 11694 if (*Vec->begin() == ECD) 11695 continue; 11696 11697 Vec->push_back(ECD); 11698 } 11699 11700 // Emit diagnostics. 11701 for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(), 11702 DupVectorEnd = DupVector.end(); 11703 DupVectorIter != DupVectorEnd; ++DupVectorIter) { 11704 ECDVector *Vec = *DupVectorIter; 11705 assert(Vec->size() > 1 && "ECDVector should have at least 2 elements."); 11706 11707 // Emit warning for one enum constant. 11708 ECDVector::iterator I = Vec->begin(); 11709 S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values) 11710 << (*I)->getName() << (*I)->getInitVal().toString(10) 11711 << (*I)->getSourceRange(); 11712 ++I; 11713 11714 // Emit one note for each of the remaining enum constants with 11715 // the same value. 11716 for (ECDVector::iterator E = Vec->end(); I != E; ++I) 11717 S.Diag((*I)->getLocation(), diag::note_duplicate_element) 11718 << (*I)->getName() << (*I)->getInitVal().toString(10) 11719 << (*I)->getSourceRange(); 11720 delete Vec; 11721 } 11722 } 11723 11724 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc, 11725 SourceLocation RBraceLoc, Decl *EnumDeclX, 11726 ArrayRef<Decl *> Elements, 11727 Scope *S, AttributeList *Attr) { 11728 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX); 11729 QualType EnumType = Context.getTypeDeclType(Enum); 11730 11731 if (Attr) 11732 ProcessDeclAttributeList(S, Enum, Attr); 11733 11734 if (Enum->isDependentType()) { 11735 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 11736 EnumConstantDecl *ECD = 11737 cast_or_null<EnumConstantDecl>(Elements[i]); 11738 if (!ECD) continue; 11739 11740 ECD->setType(EnumType); 11741 } 11742 11743 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0); 11744 return; 11745 } 11746 11747 // TODO: If the result value doesn't fit in an int, it must be a long or long 11748 // long value. ISO C does not support this, but GCC does as an extension, 11749 // emit a warning. 11750 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); 11751 unsigned CharWidth = Context.getTargetInfo().getCharWidth(); 11752 unsigned ShortWidth = Context.getTargetInfo().getShortWidth(); 11753 11754 // Verify that all the values are okay, compute the size of the values, and 11755 // reverse the list. 11756 unsigned NumNegativeBits = 0; 11757 unsigned NumPositiveBits = 0; 11758 11759 // Keep track of whether all elements have type int. 11760 bool AllElementsInt = true; 11761 11762 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 11763 EnumConstantDecl *ECD = 11764 cast_or_null<EnumConstantDecl>(Elements[i]); 11765 if (!ECD) continue; // Already issued a diagnostic. 11766 11767 const llvm::APSInt &InitVal = ECD->getInitVal(); 11768 11769 // Keep track of the size of positive and negative values. 11770 if (InitVal.isUnsigned() || InitVal.isNonNegative()) 11771 NumPositiveBits = std::max(NumPositiveBits, 11772 (unsigned)InitVal.getActiveBits()); 11773 else 11774 NumNegativeBits = std::max(NumNegativeBits, 11775 (unsigned)InitVal.getMinSignedBits()); 11776 11777 // Keep track of whether every enum element has type int (very commmon). 11778 if (AllElementsInt) 11779 AllElementsInt = ECD->getType() == Context.IntTy; 11780 } 11781 11782 // Figure out the type that should be used for this enum. 11783 QualType BestType; 11784 unsigned BestWidth; 11785 11786 // C++0x N3000 [conv.prom]p3: 11787 // An rvalue of an unscoped enumeration type whose underlying 11788 // type is not fixed can be converted to an rvalue of the first 11789 // of the following types that can represent all the values of 11790 // the enumeration: int, unsigned int, long int, unsigned long 11791 // int, long long int, or unsigned long long int. 11792 // C99 6.4.4.3p2: 11793 // An identifier declared as an enumeration constant has type int. 11794 // The C99 rule is modified by a gcc extension 11795 QualType BestPromotionType; 11796 11797 bool Packed = Enum->getAttr<PackedAttr>() ? true : false; 11798 // -fshort-enums is the equivalent to specifying the packed attribute on all 11799 // enum definitions. 11800 if (LangOpts.ShortEnums) 11801 Packed = true; 11802 11803 if (Enum->isFixed()) { 11804 BestType = Enum->getIntegerType(); 11805 if (BestType->isPromotableIntegerType()) 11806 BestPromotionType = Context.getPromotedIntegerType(BestType); 11807 else 11808 BestPromotionType = BestType; 11809 // We don't need to set BestWidth, because BestType is going to be the type 11810 // of the enumerators, but we do anyway because otherwise some compilers 11811 // warn that it might be used uninitialized. 11812 BestWidth = CharWidth; 11813 } 11814 else if (NumNegativeBits) { 11815 // If there is a negative value, figure out the smallest integer type (of 11816 // int/long/longlong) that fits. 11817 // If it's packed, check also if it fits a char or a short. 11818 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) { 11819 BestType = Context.SignedCharTy; 11820 BestWidth = CharWidth; 11821 } else if (Packed && NumNegativeBits <= ShortWidth && 11822 NumPositiveBits < ShortWidth) { 11823 BestType = Context.ShortTy; 11824 BestWidth = ShortWidth; 11825 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { 11826 BestType = Context.IntTy; 11827 BestWidth = IntWidth; 11828 } else { 11829 BestWidth = Context.getTargetInfo().getLongWidth(); 11830 11831 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { 11832 BestType = Context.LongTy; 11833 } else { 11834 BestWidth = Context.getTargetInfo().getLongLongWidth(); 11835 11836 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) 11837 Diag(Enum->getLocation(), diag::warn_enum_too_large); 11838 BestType = Context.LongLongTy; 11839 } 11840 } 11841 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); 11842 } else { 11843 // If there is no negative value, figure out the smallest type that fits 11844 // all of the enumerator values. 11845 // If it's packed, check also if it fits a char or a short. 11846 if (Packed && NumPositiveBits <= CharWidth) { 11847 BestType = Context.UnsignedCharTy; 11848 BestPromotionType = Context.IntTy; 11849 BestWidth = CharWidth; 11850 } else if (Packed && NumPositiveBits <= ShortWidth) { 11851 BestType = Context.UnsignedShortTy; 11852 BestPromotionType = Context.IntTy; 11853 BestWidth = ShortWidth; 11854 } else if (NumPositiveBits <= IntWidth) { 11855 BestType = Context.UnsignedIntTy; 11856 BestWidth = IntWidth; 11857 BestPromotionType 11858 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 11859 ? Context.UnsignedIntTy : Context.IntTy; 11860 } else if (NumPositiveBits <= 11861 (BestWidth = Context.getTargetInfo().getLongWidth())) { 11862 BestType = Context.UnsignedLongTy; 11863 BestPromotionType 11864 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 11865 ? Context.UnsignedLongTy : Context.LongTy; 11866 } else { 11867 BestWidth = Context.getTargetInfo().getLongLongWidth(); 11868 assert(NumPositiveBits <= BestWidth && 11869 "How could an initializer get larger than ULL?"); 11870 BestType = Context.UnsignedLongLongTy; 11871 BestPromotionType 11872 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus) 11873 ? Context.UnsignedLongLongTy : Context.LongLongTy; 11874 } 11875 } 11876 11877 // Loop over all of the enumerator constants, changing their types to match 11878 // the type of the enum if needed. 11879 for (unsigned i = 0, e = Elements.size(); i != e; ++i) { 11880 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]); 11881 if (!ECD) continue; // Already issued a diagnostic. 11882 11883 // Standard C says the enumerators have int type, but we allow, as an 11884 // extension, the enumerators to be larger than int size. If each 11885 // enumerator value fits in an int, type it as an int, otherwise type it the 11886 // same as the enumerator decl itself. This means that in "enum { X = 1U }" 11887 // that X has type 'int', not 'unsigned'. 11888 11889 // Determine whether the value fits into an int. 11890 llvm::APSInt InitVal = ECD->getInitVal(); 11891 11892 // If it fits into an integer type, force it. Otherwise force it to match 11893 // the enum decl type. 11894 QualType NewTy; 11895 unsigned NewWidth; 11896 bool NewSign; 11897 if (!getLangOpts().CPlusPlus && 11898 !Enum->isFixed() && 11899 isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) { 11900 NewTy = Context.IntTy; 11901 NewWidth = IntWidth; 11902 NewSign = true; 11903 } else if (ECD->getType() == BestType) { 11904 // Already the right type! 11905 if (getLangOpts().CPlusPlus) 11906 // C++ [dcl.enum]p4: Following the closing brace of an 11907 // enum-specifier, each enumerator has the type of its 11908 // enumeration. 11909 ECD->setType(EnumType); 11910 continue; 11911 } else { 11912 NewTy = BestType; 11913 NewWidth = BestWidth; 11914 NewSign = BestType->isSignedIntegerOrEnumerationType(); 11915 } 11916 11917 // Adjust the APSInt value. 11918 InitVal = InitVal.extOrTrunc(NewWidth); 11919 InitVal.setIsSigned(NewSign); 11920 ECD->setInitVal(InitVal); 11921 11922 // Adjust the Expr initializer and type. 11923 if (ECD->getInitExpr() && 11924 !Context.hasSameType(NewTy, ECD->getInitExpr()->getType())) 11925 ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy, 11926 CK_IntegralCast, 11927 ECD->getInitExpr(), 11928 /*base paths*/ 0, 11929 VK_RValue)); 11930 if (getLangOpts().CPlusPlus) 11931 // C++ [dcl.enum]p4: Following the closing brace of an 11932 // enum-specifier, each enumerator has the type of its 11933 // enumeration. 11934 ECD->setType(EnumType); 11935 else 11936 ECD->setType(NewTy); 11937 } 11938 11939 Enum->completeDefinition(BestType, BestPromotionType, 11940 NumPositiveBits, NumNegativeBits); 11941 11942 // If we're declaring a function, ensure this decl isn't forgotten about - 11943 // it needs to go into the function scope. 11944 if (InFunctionDeclarator) 11945 DeclsInPrototypeScope.push_back(Enum); 11946 11947 CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType); 11948 11949 // Now that the enum type is defined, ensure it's not been underaligned. 11950 if (Enum->hasAttrs()) 11951 CheckAlignasUnderalignment(Enum); 11952 } 11953 11954 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr, 11955 SourceLocation StartLoc, 11956 SourceLocation EndLoc) { 11957 StringLiteral *AsmString = cast<StringLiteral>(expr); 11958 11959 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, 11960 AsmString, StartLoc, 11961 EndLoc); 11962 CurContext->addDecl(New); 11963 return New; 11964 } 11965 11966 DeclResult Sema::ActOnModuleImport(SourceLocation AtLoc, 11967 SourceLocation ImportLoc, 11968 ModuleIdPath Path) { 11969 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path, 11970 Module::AllVisible, 11971 /*IsIncludeDirective=*/false); 11972 if (!Mod) 11973 return true; 11974 11975 SmallVector<SourceLocation, 2> IdentifierLocs; 11976 Module *ModCheck = Mod; 11977 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 11978 // If we've run out of module parents, just drop the remaining identifiers. 11979 // We need the length to be consistent. 11980 if (!ModCheck) 11981 break; 11982 ModCheck = ModCheck->Parent; 11983 11984 IdentifierLocs.push_back(Path[I].second); 11985 } 11986 11987 ImportDecl *Import = ImportDecl::Create(Context, 11988 Context.getTranslationUnitDecl(), 11989 AtLoc.isValid()? AtLoc : ImportLoc, 11990 Mod, IdentifierLocs); 11991 Context.getTranslationUnitDecl()->addDecl(Import); 11992 return Import; 11993 } 11994 11995 void Sema::createImplicitModuleImport(SourceLocation Loc, Module *Mod) { 11996 // Create the implicit import declaration. 11997 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl(); 11998 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU, 11999 Loc, Mod, Loc); 12000 TU->addDecl(ImportD); 12001 Consumer.HandleImplicitImportDecl(ImportD); 12002 12003 // Make the module visible. 12004 PP.getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc, 12005 /*Complain=*/false); 12006 } 12007 12008 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name, 12009 IdentifierInfo* AliasName, 12010 SourceLocation PragmaLoc, 12011 SourceLocation NameLoc, 12012 SourceLocation AliasNameLoc) { 12013 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, 12014 LookupOrdinaryName); 12015 AsmLabelAttr *Attr = 12016 ::new (Context) AsmLabelAttr(AliasNameLoc, Context, AliasName->getName()); 12017 12018 if (PrevDecl) 12019 PrevDecl->addAttr(Attr); 12020 else 12021 (void)ExtnameUndeclaredIdentifiers.insert( 12022 std::pair<IdentifierInfo*,AsmLabelAttr*>(Name, Attr)); 12023 } 12024 12025 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name, 12026 SourceLocation PragmaLoc, 12027 SourceLocation NameLoc) { 12028 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName); 12029 12030 if (PrevDecl) { 12031 PrevDecl->addAttr(::new (Context) WeakAttr(PragmaLoc, Context)); 12032 } else { 12033 (void)WeakUndeclaredIdentifiers.insert( 12034 std::pair<IdentifierInfo*,WeakInfo> 12035 (Name, WeakInfo((IdentifierInfo*)0, NameLoc))); 12036 } 12037 } 12038 12039 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name, 12040 IdentifierInfo* AliasName, 12041 SourceLocation PragmaLoc, 12042 SourceLocation NameLoc, 12043 SourceLocation AliasNameLoc) { 12044 Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc, 12045 LookupOrdinaryName); 12046 WeakInfo W = WeakInfo(Name, NameLoc); 12047 12048 if (PrevDecl) { 12049 if (!PrevDecl->hasAttr<AliasAttr>()) 12050 if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl)) 12051 DeclApplyPragmaWeak(TUScope, ND, W); 12052 } else { 12053 (void)WeakUndeclaredIdentifiers.insert( 12054 std::pair<IdentifierInfo*,WeakInfo>(AliasName, W)); 12055 } 12056 } 12057 12058 Decl *Sema::getObjCDeclContext() const { 12059 return (dyn_cast_or_null<ObjCContainerDecl>(CurContext)); 12060 } 12061 12062 AvailabilityResult Sema::getCurContextAvailability() const { 12063 const Decl *D = cast<Decl>(getCurObjCLexicalContext()); 12064 return D->getAvailability(); 12065 } 12066