1 //===--- DeclBase.cpp - Declaration AST Node Implementation ---------------===// 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 the Decl and DeclContext classes. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/DeclBase.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/ASTMutationListener.h" 17 #include "clang/AST/Attr.h" 18 #include "clang/AST/Decl.h" 19 #include "clang/AST/DeclCXX.h" 20 #include "clang/AST/DeclContextInternals.h" 21 #include "clang/AST/DeclFriend.h" 22 #include "clang/AST/DeclObjC.h" 23 #include "clang/AST/DeclOpenMP.h" 24 #include "clang/AST/DeclTemplate.h" 25 #include "clang/AST/DependentDiagnostic.h" 26 #include "clang/AST/ExternalASTSource.h" 27 #include "clang/AST/Stmt.h" 28 #include "clang/AST/StmtCXX.h" 29 #include "clang/AST/Type.h" 30 #include "clang/Basic/TargetInfo.h" 31 #include "llvm/ADT/DenseMap.h" 32 #include "llvm/Support/raw_ostream.h" 33 #include <algorithm> 34 using namespace clang; 35 36 //===----------------------------------------------------------------------===// 37 // Statistics 38 //===----------------------------------------------------------------------===// 39 40 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; 41 #define ABSTRACT_DECL(DECL) 42 #include "clang/AST/DeclNodes.inc" 43 44 void Decl::updateOutOfDate(IdentifierInfo &II) const { 45 getASTContext().getExternalSource()->updateOutOfDateIdentifier(II); 46 } 47 48 void *Decl::operator new(std::size_t Size, const ASTContext &Context, 49 unsigned ID, std::size_t Extra) { 50 // Allocate an extra 8 bytes worth of storage, which ensures that the 51 // resulting pointer will still be 8-byte aligned. 52 void *Start = Context.Allocate(Size + Extra + 8); 53 void *Result = (char*)Start + 8; 54 55 unsigned *PrefixPtr = (unsigned *)Result - 2; 56 57 // Zero out the first 4 bytes; this is used to store the owning module ID. 58 PrefixPtr[0] = 0; 59 60 // Store the global declaration ID in the second 4 bytes. 61 PrefixPtr[1] = ID; 62 63 return Result; 64 } 65 66 void *Decl::operator new(std::size_t Size, const ASTContext &Ctx, 67 DeclContext *Parent, std::size_t Extra) { 68 assert(!Parent || &Parent->getParentASTContext() == &Ctx); 69 return ::operator new(Size + Extra, Ctx); 70 } 71 72 Module *Decl::getOwningModuleSlow() const { 73 assert(isFromASTFile() && "Not from AST file?"); 74 return getASTContext().getExternalSource()->getModule(getOwningModuleID()); 75 } 76 77 const char *Decl::getDeclKindName() const { 78 switch (DeclKind) { 79 default: llvm_unreachable("Declaration not in DeclNodes.inc!"); 80 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; 81 #define ABSTRACT_DECL(DECL) 82 #include "clang/AST/DeclNodes.inc" 83 } 84 } 85 86 void Decl::setInvalidDecl(bool Invalid) { 87 InvalidDecl = Invalid; 88 assert(!isa<TagDecl>(this) || !cast<TagDecl>(this)->isCompleteDefinition()); 89 if (Invalid && !isa<ParmVarDecl>(this)) { 90 // Defensive maneuver for ill-formed code: we're likely not to make it to 91 // a point where we set the access specifier, so default it to "public" 92 // to avoid triggering asserts elsewhere in the front end. 93 setAccess(AS_public); 94 } 95 } 96 97 const char *DeclContext::getDeclKindName() const { 98 switch (DeclKind) { 99 default: llvm_unreachable("Declaration context not in DeclNodes.inc!"); 100 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; 101 #define ABSTRACT_DECL(DECL) 102 #include "clang/AST/DeclNodes.inc" 103 } 104 } 105 106 bool Decl::StatisticsEnabled = false; 107 void Decl::EnableStatistics() { 108 StatisticsEnabled = true; 109 } 110 111 void Decl::PrintStats() { 112 llvm::errs() << "\n*** Decl Stats:\n"; 113 114 int totalDecls = 0; 115 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; 116 #define ABSTRACT_DECL(DECL) 117 #include "clang/AST/DeclNodes.inc" 118 llvm::errs() << " " << totalDecls << " decls total.\n"; 119 120 int totalBytes = 0; 121 #define DECL(DERIVED, BASE) \ 122 if (n##DERIVED##s > 0) { \ 123 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ 124 llvm::errs() << " " << n##DERIVED##s << " " #DERIVED " decls, " \ 125 << sizeof(DERIVED##Decl) << " each (" \ 126 << n##DERIVED##s * sizeof(DERIVED##Decl) \ 127 << " bytes)\n"; \ 128 } 129 #define ABSTRACT_DECL(DECL) 130 #include "clang/AST/DeclNodes.inc" 131 132 llvm::errs() << "Total bytes = " << totalBytes << "\n"; 133 } 134 135 void Decl::add(Kind k) { 136 switch (k) { 137 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break; 138 #define ABSTRACT_DECL(DECL) 139 #include "clang/AST/DeclNodes.inc" 140 } 141 } 142 143 bool Decl::isTemplateParameterPack() const { 144 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this)) 145 return TTP->isParameterPack(); 146 if (const NonTypeTemplateParmDecl *NTTP 147 = dyn_cast<NonTypeTemplateParmDecl>(this)) 148 return NTTP->isParameterPack(); 149 if (const TemplateTemplateParmDecl *TTP 150 = dyn_cast<TemplateTemplateParmDecl>(this)) 151 return TTP->isParameterPack(); 152 return false; 153 } 154 155 bool Decl::isParameterPack() const { 156 if (const ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(this)) 157 return Parm->isParameterPack(); 158 159 return isTemplateParameterPack(); 160 } 161 162 FunctionDecl *Decl::getAsFunction() { 163 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) 164 return FD; 165 if (const FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(this)) 166 return FTD->getTemplatedDecl(); 167 return nullptr; 168 } 169 170 bool Decl::isTemplateDecl() const { 171 return isa<TemplateDecl>(this); 172 } 173 174 const DeclContext *Decl::getParentFunctionOrMethod() const { 175 for (const DeclContext *DC = getDeclContext(); 176 DC && !DC->isTranslationUnit() && !DC->isNamespace(); 177 DC = DC->getParent()) 178 if (DC->isFunctionOrMethod()) 179 return DC; 180 181 return nullptr; 182 } 183 184 185 //===----------------------------------------------------------------------===// 186 // PrettyStackTraceDecl Implementation 187 //===----------------------------------------------------------------------===// 188 189 void PrettyStackTraceDecl::print(raw_ostream &OS) const { 190 SourceLocation TheLoc = Loc; 191 if (TheLoc.isInvalid() && TheDecl) 192 TheLoc = TheDecl->getLocation(); 193 194 if (TheLoc.isValid()) { 195 TheLoc.print(OS, SM); 196 OS << ": "; 197 } 198 199 OS << Message; 200 201 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) { 202 OS << " '"; 203 DN->printQualifiedName(OS); 204 OS << '\''; 205 } 206 OS << '\n'; 207 } 208 209 //===----------------------------------------------------------------------===// 210 // Decl Implementation 211 //===----------------------------------------------------------------------===// 212 213 // Out-of-line virtual method providing a home for Decl. 214 Decl::~Decl() { } 215 216 void Decl::setDeclContext(DeclContext *DC) { 217 DeclCtx = DC; 218 } 219 220 void Decl::setLexicalDeclContext(DeclContext *DC) { 221 if (DC == getLexicalDeclContext()) 222 return; 223 224 if (isInSemaDC()) { 225 setDeclContextsImpl(getDeclContext(), DC, getASTContext()); 226 } else { 227 getMultipleDC()->LexicalDC = DC; 228 } 229 } 230 231 void Decl::setDeclContextsImpl(DeclContext *SemaDC, DeclContext *LexicalDC, 232 ASTContext &Ctx) { 233 if (SemaDC == LexicalDC) { 234 DeclCtx = SemaDC; 235 } else { 236 Decl::MultipleDC *MDC = new (Ctx) Decl::MultipleDC(); 237 MDC->SemanticDC = SemaDC; 238 MDC->LexicalDC = LexicalDC; 239 DeclCtx = MDC; 240 } 241 } 242 243 bool Decl::isInAnonymousNamespace() const { 244 const DeclContext *DC = getDeclContext(); 245 do { 246 if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC)) 247 if (ND->isAnonymousNamespace()) 248 return true; 249 } while ((DC = DC->getParent())); 250 251 return false; 252 } 253 254 bool Decl::isInStdNamespace() const { 255 return getDeclContext()->isStdNamespace(); 256 } 257 258 TranslationUnitDecl *Decl::getTranslationUnitDecl() { 259 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this)) 260 return TUD; 261 262 DeclContext *DC = getDeclContext(); 263 assert(DC && "This decl is not contained in a translation unit!"); 264 265 while (!DC->isTranslationUnit()) { 266 DC = DC->getParent(); 267 assert(DC && "This decl is not contained in a translation unit!"); 268 } 269 270 return cast<TranslationUnitDecl>(DC); 271 } 272 273 ASTContext &Decl::getASTContext() const { 274 return getTranslationUnitDecl()->getASTContext(); 275 } 276 277 ASTMutationListener *Decl::getASTMutationListener() const { 278 return getASTContext().getASTMutationListener(); 279 } 280 281 unsigned Decl::getMaxAlignment() const { 282 if (!hasAttrs()) 283 return 0; 284 285 unsigned Align = 0; 286 const AttrVec &V = getAttrs(); 287 ASTContext &Ctx = getASTContext(); 288 specific_attr_iterator<AlignedAttr> I(V.begin()), E(V.end()); 289 for (; I != E; ++I) 290 Align = std::max(Align, I->getAlignment(Ctx)); 291 return Align; 292 } 293 294 bool Decl::isUsed(bool CheckUsedAttr) const { 295 if (Used) 296 return true; 297 298 // Check for used attribute. 299 if (CheckUsedAttr && hasAttr<UsedAttr>()) 300 return true; 301 302 return false; 303 } 304 305 void Decl::markUsed(ASTContext &C) { 306 if (Used) 307 return; 308 309 if (C.getASTMutationListener()) 310 C.getASTMutationListener()->DeclarationMarkedUsed(this); 311 312 Used = true; 313 } 314 315 bool Decl::isReferenced() const { 316 if (Referenced) 317 return true; 318 319 // Check redeclarations. 320 for (auto I : redecls()) 321 if (I->Referenced) 322 return true; 323 324 return false; 325 } 326 327 /// \brief Determine the availability of the given declaration based on 328 /// the target platform. 329 /// 330 /// When it returns an availability result other than \c AR_Available, 331 /// if the \p Message parameter is non-NULL, it will be set to a 332 /// string describing why the entity is unavailable. 333 /// 334 /// FIXME: Make these strings localizable, since they end up in 335 /// diagnostics. 336 static AvailabilityResult CheckAvailability(ASTContext &Context, 337 const AvailabilityAttr *A, 338 std::string *Message) { 339 VersionTuple TargetMinVersion = 340 Context.getTargetInfo().getPlatformMinVersion(); 341 342 if (TargetMinVersion.empty()) 343 return AR_Available; 344 345 // Check if this is an App Extension "platform", and if so chop off 346 // the suffix for matching with the actual platform. 347 StringRef ActualPlatform = A->getPlatform()->getName(); 348 StringRef RealizedPlatform = ActualPlatform; 349 if (Context.getLangOpts().AppExt) { 350 size_t suffix = RealizedPlatform.rfind("_app_extension"); 351 if (suffix != StringRef::npos) 352 RealizedPlatform = RealizedPlatform.slice(0, suffix); 353 } 354 355 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName(); 356 357 // Match the platform name. 358 if (RealizedPlatform != TargetPlatform) 359 return AR_Available; 360 361 StringRef PrettyPlatformName 362 = AvailabilityAttr::getPrettyPlatformName(ActualPlatform); 363 364 if (PrettyPlatformName.empty()) 365 PrettyPlatformName = ActualPlatform; 366 367 std::string HintMessage; 368 if (!A->getMessage().empty()) { 369 HintMessage = " - "; 370 HintMessage += A->getMessage(); 371 } 372 373 // Make sure that this declaration has not been marked 'unavailable'. 374 if (A->getUnavailable()) { 375 if (Message) { 376 Message->clear(); 377 llvm::raw_string_ostream Out(*Message); 378 Out << "not available on " << PrettyPlatformName 379 << HintMessage; 380 } 381 382 return AR_Unavailable; 383 } 384 385 // Make sure that this declaration has already been introduced. 386 if (!A->getIntroduced().empty() && 387 TargetMinVersion < A->getIntroduced()) { 388 if (Message) { 389 Message->clear(); 390 llvm::raw_string_ostream Out(*Message); 391 VersionTuple VTI(A->getIntroduced()); 392 VTI.UseDotAsSeparator(); 393 Out << "introduced in " << PrettyPlatformName << ' ' 394 << VTI << HintMessage; 395 } 396 397 return AR_NotYetIntroduced; 398 } 399 400 // Make sure that this declaration hasn't been obsoleted. 401 if (!A->getObsoleted().empty() && TargetMinVersion >= A->getObsoleted()) { 402 if (Message) { 403 Message->clear(); 404 llvm::raw_string_ostream Out(*Message); 405 VersionTuple VTO(A->getObsoleted()); 406 VTO.UseDotAsSeparator(); 407 Out << "obsoleted in " << PrettyPlatformName << ' ' 408 << VTO << HintMessage; 409 } 410 411 return AR_Unavailable; 412 } 413 414 // Make sure that this declaration hasn't been deprecated. 415 if (!A->getDeprecated().empty() && TargetMinVersion >= A->getDeprecated()) { 416 if (Message) { 417 Message->clear(); 418 llvm::raw_string_ostream Out(*Message); 419 VersionTuple VTD(A->getDeprecated()); 420 VTD.UseDotAsSeparator(); 421 Out << "first deprecated in " << PrettyPlatformName << ' ' 422 << VTD << HintMessage; 423 } 424 425 return AR_Deprecated; 426 } 427 428 return AR_Available; 429 } 430 431 AvailabilityResult Decl::getAvailability(std::string *Message) const { 432 AvailabilityResult Result = AR_Available; 433 std::string ResultMessage; 434 435 for (const auto *A : attrs()) { 436 if (const auto *Deprecated = dyn_cast<DeprecatedAttr>(A)) { 437 if (Result >= AR_Deprecated) 438 continue; 439 440 if (Message) 441 ResultMessage = Deprecated->getMessage(); 442 443 Result = AR_Deprecated; 444 continue; 445 } 446 447 if (const auto *Unavailable = dyn_cast<UnavailableAttr>(A)) { 448 if (Message) 449 *Message = Unavailable->getMessage(); 450 return AR_Unavailable; 451 } 452 453 if (const auto *Availability = dyn_cast<AvailabilityAttr>(A)) { 454 AvailabilityResult AR = CheckAvailability(getASTContext(), Availability, 455 Message); 456 457 if (AR == AR_Unavailable) 458 return AR_Unavailable; 459 460 if (AR > Result) { 461 Result = AR; 462 if (Message) 463 ResultMessage.swap(*Message); 464 } 465 continue; 466 } 467 } 468 469 if (Message) 470 Message->swap(ResultMessage); 471 return Result; 472 } 473 474 bool Decl::canBeWeakImported(bool &IsDefinition) const { 475 IsDefinition = false; 476 477 // Variables, if they aren't definitions. 478 if (const VarDecl *Var = dyn_cast<VarDecl>(this)) { 479 if (Var->isThisDeclarationADefinition()) { 480 IsDefinition = true; 481 return false; 482 } 483 return true; 484 485 // Functions, if they aren't definitions. 486 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { 487 if (FD->hasBody()) { 488 IsDefinition = true; 489 return false; 490 } 491 return true; 492 493 // Objective-C classes, if this is the non-fragile runtime. 494 } else if (isa<ObjCInterfaceDecl>(this) && 495 getASTContext().getLangOpts().ObjCRuntime.hasWeakClassImport()) { 496 return true; 497 498 // Nothing else. 499 } else { 500 return false; 501 } 502 } 503 504 bool Decl::isWeakImported() const { 505 bool IsDefinition; 506 if (!canBeWeakImported(IsDefinition)) 507 return false; 508 509 for (const auto *A : attrs()) { 510 if (isa<WeakImportAttr>(A)) 511 return true; 512 513 if (const auto *Availability = dyn_cast<AvailabilityAttr>(A)) { 514 if (CheckAvailability(getASTContext(), Availability, 515 nullptr) == AR_NotYetIntroduced) 516 return true; 517 } 518 } 519 520 return false; 521 } 522 523 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { 524 switch (DeclKind) { 525 case Function: 526 case CXXMethod: 527 case CXXConstructor: 528 case CXXDestructor: 529 case CXXConversion: 530 case EnumConstant: 531 case Var: 532 case ImplicitParam: 533 case ParmVar: 534 case NonTypeTemplateParm: 535 case ObjCMethod: 536 case ObjCProperty: 537 case MSProperty: 538 return IDNS_Ordinary; 539 case Label: 540 return IDNS_Label; 541 case IndirectField: 542 return IDNS_Ordinary | IDNS_Member; 543 544 case ObjCCompatibleAlias: 545 case ObjCInterface: 546 return IDNS_Ordinary | IDNS_Type; 547 548 case Typedef: 549 case TypeAlias: 550 case TypeAliasTemplate: 551 case UnresolvedUsingTypename: 552 case TemplateTypeParm: 553 return IDNS_Ordinary | IDNS_Type; 554 555 case UsingShadow: 556 return 0; // we'll actually overwrite this later 557 558 case UnresolvedUsingValue: 559 return IDNS_Ordinary | IDNS_Using; 560 561 case Using: 562 return IDNS_Using; 563 564 case ObjCProtocol: 565 return IDNS_ObjCProtocol; 566 567 case Field: 568 case ObjCAtDefsField: 569 case ObjCIvar: 570 return IDNS_Member; 571 572 case Record: 573 case CXXRecord: 574 case Enum: 575 return IDNS_Tag | IDNS_Type; 576 577 case Namespace: 578 case NamespaceAlias: 579 return IDNS_Namespace; 580 581 case FunctionTemplate: 582 case VarTemplate: 583 return IDNS_Ordinary; 584 585 case ClassTemplate: 586 case TemplateTemplateParm: 587 return IDNS_Ordinary | IDNS_Tag | IDNS_Type; 588 589 // Never have names. 590 case Friend: 591 case FriendTemplate: 592 case AccessSpec: 593 case LinkageSpec: 594 case FileScopeAsm: 595 case StaticAssert: 596 case ObjCPropertyImpl: 597 case Block: 598 case Captured: 599 case TranslationUnit: 600 case ExternCContext: 601 602 case UsingDirective: 603 case ClassTemplateSpecialization: 604 case ClassTemplatePartialSpecialization: 605 case ClassScopeFunctionSpecialization: 606 case VarTemplateSpecialization: 607 case VarTemplatePartialSpecialization: 608 case ObjCImplementation: 609 case ObjCCategory: 610 case ObjCCategoryImpl: 611 case Import: 612 case OMPThreadPrivate: 613 case Empty: 614 // Never looked up by name. 615 return 0; 616 } 617 618 llvm_unreachable("Invalid DeclKind!"); 619 } 620 621 void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) { 622 assert(!HasAttrs && "Decl already contains attrs."); 623 624 AttrVec &AttrBlank = Ctx.getDeclAttrs(this); 625 assert(AttrBlank.empty() && "HasAttrs was wrong?"); 626 627 AttrBlank = attrs; 628 HasAttrs = true; 629 } 630 631 void Decl::dropAttrs() { 632 if (!HasAttrs) return; 633 634 HasAttrs = false; 635 getASTContext().eraseDeclAttrs(this); 636 } 637 638 const AttrVec &Decl::getAttrs() const { 639 assert(HasAttrs && "No attrs to get!"); 640 return getASTContext().getDeclAttrs(this); 641 } 642 643 Decl *Decl::castFromDeclContext (const DeclContext *D) { 644 Decl::Kind DK = D->getDeclKind(); 645 switch(DK) { 646 #define DECL(NAME, BASE) 647 #define DECL_CONTEXT(NAME) \ 648 case Decl::NAME: \ 649 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D)); 650 #define DECL_CONTEXT_BASE(NAME) 651 #include "clang/AST/DeclNodes.inc" 652 default: 653 #define DECL(NAME, BASE) 654 #define DECL_CONTEXT_BASE(NAME) \ 655 if (DK >= first##NAME && DK <= last##NAME) \ 656 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D)); 657 #include "clang/AST/DeclNodes.inc" 658 llvm_unreachable("a decl that inherits DeclContext isn't handled"); 659 } 660 } 661 662 DeclContext *Decl::castToDeclContext(const Decl *D) { 663 Decl::Kind DK = D->getKind(); 664 switch(DK) { 665 #define DECL(NAME, BASE) 666 #define DECL_CONTEXT(NAME) \ 667 case Decl::NAME: \ 668 return static_cast<NAME##Decl*>(const_cast<Decl*>(D)); 669 #define DECL_CONTEXT_BASE(NAME) 670 #include "clang/AST/DeclNodes.inc" 671 default: 672 #define DECL(NAME, BASE) 673 #define DECL_CONTEXT_BASE(NAME) \ 674 if (DK >= first##NAME && DK <= last##NAME) \ 675 return static_cast<NAME##Decl*>(const_cast<Decl*>(D)); 676 #include "clang/AST/DeclNodes.inc" 677 llvm_unreachable("a decl that inherits DeclContext isn't handled"); 678 } 679 } 680 681 SourceLocation Decl::getBodyRBrace() const { 682 // Special handling of FunctionDecl to avoid de-serializing the body from PCH. 683 // FunctionDecl stores EndRangeLoc for this purpose. 684 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { 685 const FunctionDecl *Definition; 686 if (FD->hasBody(Definition)) 687 return Definition->getSourceRange().getEnd(); 688 return SourceLocation(); 689 } 690 691 if (Stmt *Body = getBody()) 692 return Body->getSourceRange().getEnd(); 693 694 return SourceLocation(); 695 } 696 697 bool Decl::AccessDeclContextSanity() const { 698 #ifndef NDEBUG 699 // Suppress this check if any of the following hold: 700 // 1. this is the translation unit (and thus has no parent) 701 // 2. this is a template parameter (and thus doesn't belong to its context) 702 // 3. this is a non-type template parameter 703 // 4. the context is not a record 704 // 5. it's invalid 705 // 6. it's a C++0x static_assert. 706 if (isa<TranslationUnitDecl>(this) || 707 isa<TemplateTypeParmDecl>(this) || 708 isa<NonTypeTemplateParmDecl>(this) || 709 !isa<CXXRecordDecl>(getDeclContext()) || 710 isInvalidDecl() || 711 isa<StaticAssertDecl>(this) || 712 // FIXME: a ParmVarDecl can have ClassTemplateSpecialization 713 // as DeclContext (?). 714 isa<ParmVarDecl>(this) || 715 // FIXME: a ClassTemplateSpecialization or CXXRecordDecl can have 716 // AS_none as access specifier. 717 isa<CXXRecordDecl>(this) || 718 isa<ClassScopeFunctionSpecializationDecl>(this)) 719 return true; 720 721 assert(Access != AS_none && 722 "Access specifier is AS_none inside a record decl"); 723 #endif 724 return true; 725 } 726 727 static Decl::Kind getKind(const Decl *D) { return D->getKind(); } 728 static Decl::Kind getKind(const DeclContext *DC) { return DC->getDeclKind(); } 729 730 const FunctionType *Decl::getFunctionType(bool BlocksToo) const { 731 QualType Ty; 732 if (const ValueDecl *D = dyn_cast<ValueDecl>(this)) 733 Ty = D->getType(); 734 else if (const TypedefNameDecl *D = dyn_cast<TypedefNameDecl>(this)) 735 Ty = D->getUnderlyingType(); 736 else 737 return nullptr; 738 739 if (Ty->isFunctionPointerType()) 740 Ty = Ty->getAs<PointerType>()->getPointeeType(); 741 else if (BlocksToo && Ty->isBlockPointerType()) 742 Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); 743 744 return Ty->getAs<FunctionType>(); 745 } 746 747 748 /// Starting at a given context (a Decl or DeclContext), look for a 749 /// code context that is not a closure (a lambda, block, etc.). 750 template <class T> static Decl *getNonClosureContext(T *D) { 751 if (getKind(D) == Decl::CXXMethod) { 752 CXXMethodDecl *MD = cast<CXXMethodDecl>(D); 753 if (MD->getOverloadedOperator() == OO_Call && 754 MD->getParent()->isLambda()) 755 return getNonClosureContext(MD->getParent()->getParent()); 756 return MD; 757 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 758 return FD; 759 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 760 return MD; 761 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) { 762 return getNonClosureContext(BD->getParent()); 763 } else if (CapturedDecl *CD = dyn_cast<CapturedDecl>(D)) { 764 return getNonClosureContext(CD->getParent()); 765 } else { 766 return nullptr; 767 } 768 } 769 770 Decl *Decl::getNonClosureContext() { 771 return ::getNonClosureContext(this); 772 } 773 774 Decl *DeclContext::getNonClosureAncestor() { 775 return ::getNonClosureContext(this); 776 } 777 778 //===----------------------------------------------------------------------===// 779 // DeclContext Implementation 780 //===----------------------------------------------------------------------===// 781 782 bool DeclContext::classof(const Decl *D) { 783 switch (D->getKind()) { 784 #define DECL(NAME, BASE) 785 #define DECL_CONTEXT(NAME) case Decl::NAME: 786 #define DECL_CONTEXT_BASE(NAME) 787 #include "clang/AST/DeclNodes.inc" 788 return true; 789 default: 790 #define DECL(NAME, BASE) 791 #define DECL_CONTEXT_BASE(NAME) \ 792 if (D->getKind() >= Decl::first##NAME && \ 793 D->getKind() <= Decl::last##NAME) \ 794 return true; 795 #include "clang/AST/DeclNodes.inc" 796 return false; 797 } 798 } 799 800 DeclContext::~DeclContext() { } 801 802 /// \brief Find the parent context of this context that will be 803 /// used for unqualified name lookup. 804 /// 805 /// Generally, the parent lookup context is the semantic context. However, for 806 /// a friend function the parent lookup context is the lexical context, which 807 /// is the class in which the friend is declared. 808 DeclContext *DeclContext::getLookupParent() { 809 // FIXME: Find a better way to identify friends 810 if (isa<FunctionDecl>(this)) 811 if (getParent()->getRedeclContext()->isFileContext() && 812 getLexicalParent()->getRedeclContext()->isRecord()) 813 return getLexicalParent(); 814 815 return getParent(); 816 } 817 818 bool DeclContext::isInlineNamespace() const { 819 return isNamespace() && 820 cast<NamespaceDecl>(this)->isInline(); 821 } 822 823 bool DeclContext::isStdNamespace() const { 824 if (!isNamespace()) 825 return false; 826 827 const NamespaceDecl *ND = cast<NamespaceDecl>(this); 828 if (ND->isInline()) { 829 return ND->getParent()->isStdNamespace(); 830 } 831 832 if (!getParent()->getRedeclContext()->isTranslationUnit()) 833 return false; 834 835 const IdentifierInfo *II = ND->getIdentifier(); 836 return II && II->isStr("std"); 837 } 838 839 bool DeclContext::isDependentContext() const { 840 if (isFileContext()) 841 return false; 842 843 if (isa<ClassTemplatePartialSpecializationDecl>(this)) 844 return true; 845 846 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) { 847 if (Record->getDescribedClassTemplate()) 848 return true; 849 850 if (Record->isDependentLambda()) 851 return true; 852 } 853 854 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) { 855 if (Function->getDescribedFunctionTemplate()) 856 return true; 857 858 // Friend function declarations are dependent if their *lexical* 859 // context is dependent. 860 if (cast<Decl>(this)->getFriendObjectKind()) 861 return getLexicalParent()->isDependentContext(); 862 } 863 864 // FIXME: A variable template is a dependent context, but is not a 865 // DeclContext. A context within it (such as a lambda-expression) 866 // should be considered dependent. 867 868 return getParent() && getParent()->isDependentContext(); 869 } 870 871 bool DeclContext::isTransparentContext() const { 872 if (DeclKind == Decl::Enum) 873 return !cast<EnumDecl>(this)->isScoped(); 874 else if (DeclKind == Decl::LinkageSpec) 875 return true; 876 877 return false; 878 } 879 880 static bool isLinkageSpecContext(const DeclContext *DC, 881 LinkageSpecDecl::LanguageIDs ID) { 882 while (DC->getDeclKind() != Decl::TranslationUnit) { 883 if (DC->getDeclKind() == Decl::LinkageSpec) 884 return cast<LinkageSpecDecl>(DC)->getLanguage() == ID; 885 DC = DC->getLexicalParent(); 886 } 887 return false; 888 } 889 890 bool DeclContext::isExternCContext() const { 891 return isLinkageSpecContext(this, clang::LinkageSpecDecl::lang_c); 892 } 893 894 bool DeclContext::isExternCXXContext() const { 895 return isLinkageSpecContext(this, clang::LinkageSpecDecl::lang_cxx); 896 } 897 898 bool DeclContext::Encloses(const DeclContext *DC) const { 899 if (getPrimaryContext() != this) 900 return getPrimaryContext()->Encloses(DC); 901 902 for (; DC; DC = DC->getParent()) 903 if (DC->getPrimaryContext() == this) 904 return true; 905 return false; 906 } 907 908 DeclContext *DeclContext::getPrimaryContext() { 909 switch (DeclKind) { 910 case Decl::TranslationUnit: 911 case Decl::ExternCContext: 912 case Decl::LinkageSpec: 913 case Decl::Block: 914 case Decl::Captured: 915 // There is only one DeclContext for these entities. 916 return this; 917 918 case Decl::Namespace: 919 // The original namespace is our primary context. 920 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace(); 921 922 case Decl::ObjCMethod: 923 return this; 924 925 case Decl::ObjCInterface: 926 if (ObjCInterfaceDecl *Def = cast<ObjCInterfaceDecl>(this)->getDefinition()) 927 return Def; 928 929 return this; 930 931 case Decl::ObjCProtocol: 932 if (ObjCProtocolDecl *Def = cast<ObjCProtocolDecl>(this)->getDefinition()) 933 return Def; 934 935 return this; 936 937 case Decl::ObjCCategory: 938 return this; 939 940 case Decl::ObjCImplementation: 941 case Decl::ObjCCategoryImpl: 942 return this; 943 944 default: 945 if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag) { 946 // If this is a tag type that has a definition or is currently 947 // being defined, that definition is our primary context. 948 TagDecl *Tag = cast<TagDecl>(this); 949 950 if (TagDecl *Def = Tag->getDefinition()) 951 return Def; 952 953 if (const TagType *TagTy = dyn_cast<TagType>(Tag->getTypeForDecl())) { 954 // Note, TagType::getDecl returns the (partial) definition one exists. 955 TagDecl *PossiblePartialDef = TagTy->getDecl(); 956 if (PossiblePartialDef->isBeingDefined()) 957 return PossiblePartialDef; 958 } else { 959 assert(isa<InjectedClassNameType>(Tag->getTypeForDecl())); 960 } 961 962 return Tag; 963 } 964 965 assert(DeclKind >= Decl::firstFunction && DeclKind <= Decl::lastFunction && 966 "Unknown DeclContext kind"); 967 return this; 968 } 969 } 970 971 void 972 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ 973 Contexts.clear(); 974 975 if (DeclKind != Decl::Namespace) { 976 Contexts.push_back(this); 977 return; 978 } 979 980 NamespaceDecl *Self = static_cast<NamespaceDecl *>(this); 981 for (NamespaceDecl *N = Self->getMostRecentDecl(); N; 982 N = N->getPreviousDecl()) 983 Contexts.push_back(N); 984 985 std::reverse(Contexts.begin(), Contexts.end()); 986 } 987 988 std::pair<Decl *, Decl *> 989 DeclContext::BuildDeclChain(ArrayRef<Decl*> Decls, 990 bool FieldsAlreadyLoaded) { 991 // Build up a chain of declarations via the Decl::NextInContextAndBits field. 992 Decl *FirstNewDecl = nullptr; 993 Decl *PrevDecl = nullptr; 994 for (unsigned I = 0, N = Decls.size(); I != N; ++I) { 995 if (FieldsAlreadyLoaded && isa<FieldDecl>(Decls[I])) 996 continue; 997 998 Decl *D = Decls[I]; 999 if (PrevDecl) 1000 PrevDecl->NextInContextAndBits.setPointer(D); 1001 else 1002 FirstNewDecl = D; 1003 1004 PrevDecl = D; 1005 } 1006 1007 return std::make_pair(FirstNewDecl, PrevDecl); 1008 } 1009 1010 /// \brief We have just acquired external visible storage, and we already have 1011 /// built a lookup map. For every name in the map, pull in the new names from 1012 /// the external storage. 1013 void DeclContext::reconcileExternalVisibleStorage() const { 1014 assert(NeedToReconcileExternalVisibleStorage && LookupPtr.getPointer()); 1015 NeedToReconcileExternalVisibleStorage = false; 1016 1017 for (auto &Lookup : *LookupPtr.getPointer()) 1018 Lookup.second.setHasExternalDecls(); 1019 } 1020 1021 /// \brief Load the declarations within this lexical storage from an 1022 /// external source. 1023 void 1024 DeclContext::LoadLexicalDeclsFromExternalStorage() const { 1025 ExternalASTSource *Source = getParentASTContext().getExternalSource(); 1026 assert(hasExternalLexicalStorage() && Source && "No external storage?"); 1027 1028 // Notify that we have a DeclContext that is initializing. 1029 ExternalASTSource::Deserializing ADeclContext(Source); 1030 1031 // Load the external declarations, if any. 1032 SmallVector<Decl*, 64> Decls; 1033 ExternalLexicalStorage = false; 1034 switch (Source->FindExternalLexicalDecls(this, Decls)) { 1035 case ELR_Success: 1036 break; 1037 1038 case ELR_Failure: 1039 case ELR_AlreadyLoaded: 1040 return; 1041 } 1042 1043 if (Decls.empty()) 1044 return; 1045 1046 // We may have already loaded just the fields of this record, in which case 1047 // we need to ignore them. 1048 bool FieldsAlreadyLoaded = false; 1049 if (const RecordDecl *RD = dyn_cast<RecordDecl>(this)) 1050 FieldsAlreadyLoaded = RD->LoadedFieldsFromExternalStorage; 1051 1052 // Splice the newly-read declarations into the beginning of the list 1053 // of declarations. 1054 Decl *ExternalFirst, *ExternalLast; 1055 std::tie(ExternalFirst, ExternalLast) = 1056 BuildDeclChain(Decls, FieldsAlreadyLoaded); 1057 ExternalLast->NextInContextAndBits.setPointer(FirstDecl); 1058 FirstDecl = ExternalFirst; 1059 if (!LastDecl) 1060 LastDecl = ExternalLast; 1061 } 1062 1063 DeclContext::lookup_result 1064 ExternalASTSource::SetNoExternalVisibleDeclsForName(const DeclContext *DC, 1065 DeclarationName Name) { 1066 ASTContext &Context = DC->getParentASTContext(); 1067 StoredDeclsMap *Map; 1068 if (!(Map = DC->LookupPtr.getPointer())) 1069 Map = DC->CreateStoredDeclsMap(Context); 1070 if (DC->NeedToReconcileExternalVisibleStorage) 1071 DC->reconcileExternalVisibleStorage(); 1072 1073 (*Map)[Name].removeExternalDecls(); 1074 1075 return DeclContext::lookup_result(); 1076 } 1077 1078 DeclContext::lookup_result 1079 ExternalASTSource::SetExternalVisibleDeclsForName(const DeclContext *DC, 1080 DeclarationName Name, 1081 ArrayRef<NamedDecl*> Decls) { 1082 ASTContext &Context = DC->getParentASTContext(); 1083 StoredDeclsMap *Map; 1084 if (!(Map = DC->LookupPtr.getPointer())) 1085 Map = DC->CreateStoredDeclsMap(Context); 1086 if (DC->NeedToReconcileExternalVisibleStorage) 1087 DC->reconcileExternalVisibleStorage(); 1088 1089 StoredDeclsList &List = (*Map)[Name]; 1090 1091 // Clear out any old external visible declarations, to avoid quadratic 1092 // performance in the redeclaration checks below. 1093 List.removeExternalDecls(); 1094 1095 if (!List.isNull()) { 1096 // We have both existing declarations and new declarations for this name. 1097 // Some of the declarations may simply replace existing ones. Handle those 1098 // first. 1099 llvm::SmallVector<unsigned, 8> Skip; 1100 for (unsigned I = 0, N = Decls.size(); I != N; ++I) 1101 if (List.HandleRedeclaration(Decls[I], /*IsKnownNewer*/false)) 1102 Skip.push_back(I); 1103 Skip.push_back(Decls.size()); 1104 1105 // Add in any new declarations. 1106 unsigned SkipPos = 0; 1107 for (unsigned I = 0, N = Decls.size(); I != N; ++I) { 1108 if (I == Skip[SkipPos]) 1109 ++SkipPos; 1110 else 1111 List.AddSubsequentDecl(Decls[I]); 1112 } 1113 } else { 1114 // Convert the array to a StoredDeclsList. 1115 for (ArrayRef<NamedDecl*>::iterator 1116 I = Decls.begin(), E = Decls.end(); I != E; ++I) { 1117 if (List.isNull()) 1118 List.setOnlyValue(*I); 1119 else 1120 List.AddSubsequentDecl(*I); 1121 } 1122 } 1123 1124 return List.getLookupResult(); 1125 } 1126 1127 DeclContext::decl_iterator DeclContext::decls_begin() const { 1128 if (hasExternalLexicalStorage()) 1129 LoadLexicalDeclsFromExternalStorage(); 1130 return decl_iterator(FirstDecl); 1131 } 1132 1133 bool DeclContext::decls_empty() const { 1134 if (hasExternalLexicalStorage()) 1135 LoadLexicalDeclsFromExternalStorage(); 1136 1137 return !FirstDecl; 1138 } 1139 1140 bool DeclContext::containsDecl(Decl *D) const { 1141 return (D->getLexicalDeclContext() == this && 1142 (D->NextInContextAndBits.getPointer() || D == LastDecl)); 1143 } 1144 1145 void DeclContext::removeDecl(Decl *D) { 1146 assert(D->getLexicalDeclContext() == this && 1147 "decl being removed from non-lexical context"); 1148 assert((D->NextInContextAndBits.getPointer() || D == LastDecl) && 1149 "decl is not in decls list"); 1150 1151 // Remove D from the decl chain. This is O(n) but hopefully rare. 1152 if (D == FirstDecl) { 1153 if (D == LastDecl) 1154 FirstDecl = LastDecl = nullptr; 1155 else 1156 FirstDecl = D->NextInContextAndBits.getPointer(); 1157 } else { 1158 for (Decl *I = FirstDecl; true; I = I->NextInContextAndBits.getPointer()) { 1159 assert(I && "decl not found in linked list"); 1160 if (I->NextInContextAndBits.getPointer() == D) { 1161 I->NextInContextAndBits.setPointer(D->NextInContextAndBits.getPointer()); 1162 if (D == LastDecl) LastDecl = I; 1163 break; 1164 } 1165 } 1166 } 1167 1168 // Mark that D is no longer in the decl chain. 1169 D->NextInContextAndBits.setPointer(nullptr); 1170 1171 // Remove D from the lookup table if necessary. 1172 if (isa<NamedDecl>(D)) { 1173 NamedDecl *ND = cast<NamedDecl>(D); 1174 1175 // Remove only decls that have a name 1176 if (!ND->getDeclName()) return; 1177 1178 StoredDeclsMap *Map = getPrimaryContext()->LookupPtr.getPointer(); 1179 if (!Map) return; 1180 1181 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName()); 1182 assert(Pos != Map->end() && "no lookup entry for decl"); 1183 if (Pos->second.getAsVector() || Pos->second.getAsDecl() == ND) 1184 Pos->second.remove(ND); 1185 } 1186 } 1187 1188 void DeclContext::addHiddenDecl(Decl *D) { 1189 assert(D->getLexicalDeclContext() == this && 1190 "Decl inserted into wrong lexical context"); 1191 assert(!D->getNextDeclInContext() && D != LastDecl && 1192 "Decl already inserted into a DeclContext"); 1193 1194 if (FirstDecl) { 1195 LastDecl->NextInContextAndBits.setPointer(D); 1196 LastDecl = D; 1197 } else { 1198 FirstDecl = LastDecl = D; 1199 } 1200 1201 // Notify a C++ record declaration that we've added a member, so it can 1202 // update it's class-specific state. 1203 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) 1204 Record->addedMember(D); 1205 1206 // If this is a newly-created (not de-serialized) import declaration, wire 1207 // it in to the list of local import declarations. 1208 if (!D->isFromASTFile()) { 1209 if (ImportDecl *Import = dyn_cast<ImportDecl>(D)) 1210 D->getASTContext().addedLocalImportDecl(Import); 1211 } 1212 } 1213 1214 void DeclContext::addDecl(Decl *D) { 1215 addHiddenDecl(D); 1216 1217 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1218 ND->getDeclContext()->getPrimaryContext()-> 1219 makeDeclVisibleInContextWithFlags(ND, false, true); 1220 } 1221 1222 void DeclContext::addDeclInternal(Decl *D) { 1223 addHiddenDecl(D); 1224 1225 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1226 ND->getDeclContext()->getPrimaryContext()-> 1227 makeDeclVisibleInContextWithFlags(ND, true, true); 1228 } 1229 1230 /// shouldBeHidden - Determine whether a declaration which was declared 1231 /// within its semantic context should be invisible to qualified name lookup. 1232 static bool shouldBeHidden(NamedDecl *D) { 1233 // Skip unnamed declarations. 1234 if (!D->getDeclName()) 1235 return true; 1236 1237 // Skip entities that can't be found by name lookup into a particular 1238 // context. 1239 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || 1240 D->isTemplateParameter()) 1241 return true; 1242 1243 // Skip template specializations. 1244 // FIXME: This feels like a hack. Should DeclarationName support 1245 // template-ids, or is there a better way to keep specializations 1246 // from being visible? 1247 if (isa<ClassTemplateSpecializationDecl>(D)) 1248 return true; 1249 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 1250 if (FD->isFunctionTemplateSpecialization()) 1251 return true; 1252 1253 return false; 1254 } 1255 1256 /// buildLookup - Build the lookup data structure with all of the 1257 /// declarations in this DeclContext (and any other contexts linked 1258 /// to it or transparent contexts nested within it) and return it. 1259 /// 1260 /// Note that the produced map may miss out declarations from an 1261 /// external source. If it does, those entries will be marked with 1262 /// the 'hasExternalDecls' flag. 1263 StoredDeclsMap *DeclContext::buildLookup() { 1264 assert(this == getPrimaryContext() && "buildLookup called on non-primary DC"); 1265 1266 // FIXME: Should we keep going if hasExternalVisibleStorage? 1267 if (!LookupPtr.getInt()) 1268 return LookupPtr.getPointer(); 1269 1270 SmallVector<DeclContext *, 2> Contexts; 1271 collectAllContexts(Contexts); 1272 for (unsigned I = 0, N = Contexts.size(); I != N; ++I) 1273 buildLookupImpl<&DeclContext::decls_begin, 1274 &DeclContext::decls_end>(Contexts[I], false); 1275 1276 // We no longer have any lazy decls. 1277 LookupPtr.setInt(false); 1278 return LookupPtr.getPointer(); 1279 } 1280 1281 /// buildLookupImpl - Build part of the lookup data structure for the 1282 /// declarations contained within DCtx, which will either be this 1283 /// DeclContext, a DeclContext linked to it, or a transparent context 1284 /// nested within it. 1285 template<DeclContext::decl_iterator (DeclContext::*Begin)() const, 1286 DeclContext::decl_iterator (DeclContext::*End)() const> 1287 void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) { 1288 for (decl_iterator I = (DCtx->*Begin)(), E = (DCtx->*End)(); 1289 I != E; ++I) { 1290 Decl *D = *I; 1291 1292 // Insert this declaration into the lookup structure, but only if 1293 // it's semantically within its decl context. Any other decls which 1294 // should be found in this context are added eagerly. 1295 // 1296 // If it's from an AST file, don't add it now. It'll get handled by 1297 // FindExternalVisibleDeclsByName if needed. Exception: if we're not 1298 // in C++, we do not track external visible decls for the TU, so in 1299 // that case we need to collect them all here. 1300 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1301 if (ND->getDeclContext() == DCtx && !shouldBeHidden(ND) && 1302 (!ND->isFromASTFile() || 1303 (isTranslationUnit() && 1304 !getParentASTContext().getLangOpts().CPlusPlus))) 1305 makeDeclVisibleInContextImpl(ND, Internal); 1306 1307 // If this declaration is itself a transparent declaration context 1308 // or inline namespace, add the members of this declaration of that 1309 // context (recursively). 1310 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(D)) 1311 if (InnerCtx->isTransparentContext() || InnerCtx->isInlineNamespace()) 1312 buildLookupImpl<Begin, End>(InnerCtx, Internal); 1313 } 1314 } 1315 1316 NamedDecl *const DeclContextLookupResult::SingleElementDummyList = nullptr; 1317 1318 DeclContext::lookup_result 1319 DeclContext::lookup(DeclarationName Name) const { 1320 assert(DeclKind != Decl::LinkageSpec && 1321 "Should not perform lookups into linkage specs!"); 1322 1323 const DeclContext *PrimaryContext = getPrimaryContext(); 1324 if (PrimaryContext != this) 1325 return PrimaryContext->lookup(Name); 1326 1327 // If we have an external source, ensure that any later redeclarations of this 1328 // context have been loaded, since they may add names to the result of this 1329 // lookup (or add external visible storage). 1330 ExternalASTSource *Source = getParentASTContext().getExternalSource(); 1331 if (Source) 1332 (void)cast<Decl>(this)->getMostRecentDecl(); 1333 1334 if (hasExternalVisibleStorage()) { 1335 assert(Source && "external visible storage but no external source?"); 1336 1337 if (NeedToReconcileExternalVisibleStorage) 1338 reconcileExternalVisibleStorage(); 1339 1340 StoredDeclsMap *Map = LookupPtr.getPointer(); 1341 1342 if (LookupPtr.getInt()) 1343 // FIXME: Make buildLookup const? 1344 Map = const_cast<DeclContext*>(this)->buildLookup(); 1345 1346 if (!Map) 1347 Map = CreateStoredDeclsMap(getParentASTContext()); 1348 1349 // If we have a lookup result with no external decls, we are done. 1350 std::pair<StoredDeclsMap::iterator, bool> R = 1351 Map->insert(std::make_pair(Name, StoredDeclsList())); 1352 if (!R.second && !R.first->second.hasExternalDecls()) 1353 return R.first->second.getLookupResult(); 1354 1355 if (Source->FindExternalVisibleDeclsByName(this, Name) || !R.second) { 1356 if (StoredDeclsMap *Map = LookupPtr.getPointer()) { 1357 StoredDeclsMap::iterator I = Map->find(Name); 1358 if (I != Map->end()) 1359 return I->second.getLookupResult(); 1360 } 1361 } 1362 1363 return lookup_result(); 1364 } 1365 1366 StoredDeclsMap *Map = LookupPtr.getPointer(); 1367 if (LookupPtr.getInt()) 1368 Map = const_cast<DeclContext*>(this)->buildLookup(); 1369 1370 if (!Map) 1371 return lookup_result(); 1372 1373 StoredDeclsMap::iterator I = Map->find(Name); 1374 if (I == Map->end()) 1375 return lookup_result(); 1376 1377 return I->second.getLookupResult(); 1378 } 1379 1380 DeclContext::lookup_result 1381 DeclContext::noload_lookup(DeclarationName Name) { 1382 assert(DeclKind != Decl::LinkageSpec && 1383 "Should not perform lookups into linkage specs!"); 1384 if (!hasExternalVisibleStorage()) 1385 return lookup(Name); 1386 1387 DeclContext *PrimaryContext = getPrimaryContext(); 1388 if (PrimaryContext != this) 1389 return PrimaryContext->noload_lookup(Name); 1390 1391 StoredDeclsMap *Map = LookupPtr.getPointer(); 1392 if (LookupPtr.getInt()) { 1393 // Carefully build the lookup map, without deserializing anything. 1394 SmallVector<DeclContext *, 2> Contexts; 1395 collectAllContexts(Contexts); 1396 for (unsigned I = 0, N = Contexts.size(); I != N; ++I) 1397 buildLookupImpl<&DeclContext::noload_decls_begin, 1398 &DeclContext::noload_decls_end>(Contexts[I], true); 1399 1400 // We no longer have any lazy decls. 1401 LookupPtr.setInt(false); 1402 1403 // There may now be names for which we have local decls but are 1404 // missing the external decls. FIXME: Just set the hasExternalDecls 1405 // flag on those names that have external decls. 1406 NeedToReconcileExternalVisibleStorage = true; 1407 1408 Map = LookupPtr.getPointer(); 1409 } 1410 1411 if (!Map) 1412 return lookup_result(); 1413 1414 StoredDeclsMap::iterator I = Map->find(Name); 1415 return I != Map->end() ? I->second.getLookupResult() 1416 : lookup_result(); 1417 } 1418 1419 void DeclContext::localUncachedLookup(DeclarationName Name, 1420 SmallVectorImpl<NamedDecl *> &Results) { 1421 Results.clear(); 1422 1423 // If there's no external storage, just perform a normal lookup and copy 1424 // the results. 1425 if (!hasExternalVisibleStorage() && !hasExternalLexicalStorage() && Name) { 1426 lookup_result LookupResults = lookup(Name); 1427 Results.insert(Results.end(), LookupResults.begin(), LookupResults.end()); 1428 return; 1429 } 1430 1431 // If we have a lookup table, check there first. Maybe we'll get lucky. 1432 if (Name && !LookupPtr.getInt()) { 1433 if (StoredDeclsMap *Map = LookupPtr.getPointer()) { 1434 StoredDeclsMap::iterator Pos = Map->find(Name); 1435 if (Pos != Map->end()) { 1436 Results.insert(Results.end(), 1437 Pos->second.getLookupResult().begin(), 1438 Pos->second.getLookupResult().end()); 1439 return; 1440 } 1441 } 1442 } 1443 1444 // Slow case: grovel through the declarations in our chain looking for 1445 // matches. 1446 for (Decl *D = FirstDecl; D; D = D->getNextDeclInContext()) { 1447 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1448 if (ND->getDeclName() == Name) 1449 Results.push_back(ND); 1450 } 1451 } 1452 1453 DeclContext *DeclContext::getRedeclContext() { 1454 DeclContext *Ctx = this; 1455 // Skip through transparent contexts. 1456 while (Ctx->isTransparentContext()) 1457 Ctx = Ctx->getParent(); 1458 return Ctx; 1459 } 1460 1461 DeclContext *DeclContext::getEnclosingNamespaceContext() { 1462 DeclContext *Ctx = this; 1463 // Skip through non-namespace, non-translation-unit contexts. 1464 while (!Ctx->isFileContext()) 1465 Ctx = Ctx->getParent(); 1466 return Ctx->getPrimaryContext(); 1467 } 1468 1469 RecordDecl *DeclContext::getOuterLexicalRecordContext() { 1470 // Loop until we find a non-record context. 1471 RecordDecl *OutermostRD = nullptr; 1472 DeclContext *DC = this; 1473 while (DC->isRecord()) { 1474 OutermostRD = cast<RecordDecl>(DC); 1475 DC = DC->getLexicalParent(); 1476 } 1477 return OutermostRD; 1478 } 1479 1480 bool DeclContext::InEnclosingNamespaceSetOf(const DeclContext *O) const { 1481 // For non-file contexts, this is equivalent to Equals. 1482 if (!isFileContext()) 1483 return O->Equals(this); 1484 1485 do { 1486 if (O->Equals(this)) 1487 return true; 1488 1489 const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(O); 1490 if (!NS || !NS->isInline()) 1491 break; 1492 O = NS->getParent(); 1493 } while (O); 1494 1495 return false; 1496 } 1497 1498 void DeclContext::makeDeclVisibleInContext(NamedDecl *D) { 1499 DeclContext *PrimaryDC = this->getPrimaryContext(); 1500 DeclContext *DeclDC = D->getDeclContext()->getPrimaryContext(); 1501 // If the decl is being added outside of its semantic decl context, we 1502 // need to ensure that we eagerly build the lookup information for it. 1503 PrimaryDC->makeDeclVisibleInContextWithFlags(D, false, PrimaryDC == DeclDC); 1504 } 1505 1506 void DeclContext::makeDeclVisibleInContextWithFlags(NamedDecl *D, bool Internal, 1507 bool Recoverable) { 1508 assert(this == getPrimaryContext() && "expected a primary DC"); 1509 1510 // Skip declarations within functions. 1511 if (isFunctionOrMethod()) 1512 return; 1513 1514 // Skip declarations which should be invisible to name lookup. 1515 if (shouldBeHidden(D)) 1516 return; 1517 1518 // If we already have a lookup data structure, perform the insertion into 1519 // it. If we might have externally-stored decls with this name, look them 1520 // up and perform the insertion. If this decl was declared outside its 1521 // semantic context, buildLookup won't add it, so add it now. 1522 // 1523 // FIXME: As a performance hack, don't add such decls into the translation 1524 // unit unless we're in C++, since qualified lookup into the TU is never 1525 // performed. 1526 if (LookupPtr.getPointer() || hasExternalVisibleStorage() || 1527 ((!Recoverable || D->getDeclContext() != D->getLexicalDeclContext()) && 1528 (getParentASTContext().getLangOpts().CPlusPlus || 1529 !isTranslationUnit()))) { 1530 // If we have lazily omitted any decls, they might have the same name as 1531 // the decl which we are adding, so build a full lookup table before adding 1532 // this decl. 1533 buildLookup(); 1534 makeDeclVisibleInContextImpl(D, Internal); 1535 } else { 1536 LookupPtr.setInt(true); 1537 } 1538 1539 // If we are a transparent context or inline namespace, insert into our 1540 // parent context, too. This operation is recursive. 1541 if (isTransparentContext() || isInlineNamespace()) 1542 getParent()->getPrimaryContext()-> 1543 makeDeclVisibleInContextWithFlags(D, Internal, Recoverable); 1544 1545 Decl *DCAsDecl = cast<Decl>(this); 1546 // Notify that a decl was made visible unless we are a Tag being defined. 1547 if (!(isa<TagDecl>(DCAsDecl) && cast<TagDecl>(DCAsDecl)->isBeingDefined())) 1548 if (ASTMutationListener *L = DCAsDecl->getASTMutationListener()) 1549 L->AddedVisibleDecl(this, D); 1550 } 1551 1552 void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D, bool Internal) { 1553 // Find or create the stored declaration map. 1554 StoredDeclsMap *Map = LookupPtr.getPointer(); 1555 if (!Map) { 1556 ASTContext *C = &getParentASTContext(); 1557 Map = CreateStoredDeclsMap(*C); 1558 } 1559 1560 // If there is an external AST source, load any declarations it knows about 1561 // with this declaration's name. 1562 // If the lookup table contains an entry about this name it means that we 1563 // have already checked the external source. 1564 if (!Internal) 1565 if (ExternalASTSource *Source = getParentASTContext().getExternalSource()) 1566 if (hasExternalVisibleStorage() && 1567 Map->find(D->getDeclName()) == Map->end()) 1568 Source->FindExternalVisibleDeclsByName(this, D->getDeclName()); 1569 1570 // Insert this declaration into the map. 1571 StoredDeclsList &DeclNameEntries = (*Map)[D->getDeclName()]; 1572 1573 if (Internal) { 1574 // If this is being added as part of loading an external declaration, 1575 // this may not be the only external declaration with this name. 1576 // In this case, we never try to replace an existing declaration; we'll 1577 // handle that when we finalize the list of declarations for this name. 1578 DeclNameEntries.setHasExternalDecls(); 1579 DeclNameEntries.AddSubsequentDecl(D); 1580 return; 1581 } 1582 1583 if (DeclNameEntries.isNull()) { 1584 DeclNameEntries.setOnlyValue(D); 1585 return; 1586 } 1587 1588 if (DeclNameEntries.HandleRedeclaration(D, /*IsKnownNewer*/!Internal)) { 1589 // This declaration has replaced an existing one for which 1590 // declarationReplaces returns true. 1591 return; 1592 } 1593 1594 // Put this declaration into the appropriate slot. 1595 DeclNameEntries.AddSubsequentDecl(D); 1596 } 1597 1598 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { 1599 return cast<UsingDirectiveDecl>(*I); 1600 } 1601 1602 /// Returns iterator range [First, Last) of UsingDirectiveDecls stored within 1603 /// this context. 1604 DeclContext::udir_range DeclContext::using_directives() const { 1605 // FIXME: Use something more efficient than normal lookup for using 1606 // directives. In C++, using directives are looked up more than anything else. 1607 lookup_result Result = lookup(UsingDirectiveDecl::getName()); 1608 return udir_range(Result.begin(), Result.end()); 1609 } 1610 1611 //===----------------------------------------------------------------------===// 1612 // Creation and Destruction of StoredDeclsMaps. // 1613 //===----------------------------------------------------------------------===// 1614 1615 StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const { 1616 assert(!LookupPtr.getPointer() && "context already has a decls map"); 1617 assert(getPrimaryContext() == this && 1618 "creating decls map on non-primary context"); 1619 1620 StoredDeclsMap *M; 1621 bool Dependent = isDependentContext(); 1622 if (Dependent) 1623 M = new DependentStoredDeclsMap(); 1624 else 1625 M = new StoredDeclsMap(); 1626 M->Previous = C.LastSDM; 1627 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent); 1628 LookupPtr.setPointer(M); 1629 return M; 1630 } 1631 1632 void ASTContext::ReleaseDeclContextMaps() { 1633 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap 1634 // pointer because the subclass doesn't add anything that needs to 1635 // be deleted. 1636 StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt()); 1637 } 1638 1639 void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { 1640 while (Map) { 1641 // Advance the iteration before we invalidate memory. 1642 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous; 1643 1644 if (Dependent) 1645 delete static_cast<DependentStoredDeclsMap*>(Map); 1646 else 1647 delete Map; 1648 1649 Map = Next.getPointer(); 1650 Dependent = Next.getInt(); 1651 } 1652 } 1653 1654 DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C, 1655 DeclContext *Parent, 1656 const PartialDiagnostic &PDiag) { 1657 assert(Parent->isDependentContext() 1658 && "cannot iterate dependent diagnostics of non-dependent context"); 1659 Parent = Parent->getPrimaryContext(); 1660 if (!Parent->LookupPtr.getPointer()) 1661 Parent->CreateStoredDeclsMap(C); 1662 1663 DependentStoredDeclsMap *Map 1664 = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr.getPointer()); 1665 1666 // Allocate the copy of the PartialDiagnostic via the ASTContext's 1667 // BumpPtrAllocator, rather than the ASTContext itself. 1668 PartialDiagnostic::Storage *DiagStorage = nullptr; 1669 if (PDiag.hasStorage()) 1670 DiagStorage = new (C) PartialDiagnostic::Storage; 1671 1672 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage); 1673 1674 // TODO: Maybe we shouldn't reverse the order during insertion. 1675 DD->NextDiagnostic = Map->FirstDiagnostic; 1676 Map->FirstDiagnostic = DD; 1677 1678 return DD; 1679 } 1680