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 601 case UsingDirective: 602 case ClassTemplateSpecialization: 603 case ClassTemplatePartialSpecialization: 604 case ClassScopeFunctionSpecialization: 605 case VarTemplateSpecialization: 606 case VarTemplatePartialSpecialization: 607 case ObjCImplementation: 608 case ObjCCategory: 609 case ObjCCategoryImpl: 610 case Import: 611 case OMPThreadPrivate: 612 case Empty: 613 // Never looked up by name. 614 return 0; 615 } 616 617 llvm_unreachable("Invalid DeclKind!"); 618 } 619 620 void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) { 621 assert(!HasAttrs && "Decl already contains attrs."); 622 623 AttrVec &AttrBlank = Ctx.getDeclAttrs(this); 624 assert(AttrBlank.empty() && "HasAttrs was wrong?"); 625 626 AttrBlank = attrs; 627 HasAttrs = true; 628 } 629 630 void Decl::dropAttrs() { 631 if (!HasAttrs) return; 632 633 HasAttrs = false; 634 getASTContext().eraseDeclAttrs(this); 635 } 636 637 const AttrVec &Decl::getAttrs() const { 638 assert(HasAttrs && "No attrs to get!"); 639 return getASTContext().getDeclAttrs(this); 640 } 641 642 Decl *Decl::castFromDeclContext (const DeclContext *D) { 643 Decl::Kind DK = D->getDeclKind(); 644 switch(DK) { 645 #define DECL(NAME, BASE) 646 #define DECL_CONTEXT(NAME) \ 647 case Decl::NAME: \ 648 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D)); 649 #define DECL_CONTEXT_BASE(NAME) 650 #include "clang/AST/DeclNodes.inc" 651 default: 652 #define DECL(NAME, BASE) 653 #define DECL_CONTEXT_BASE(NAME) \ 654 if (DK >= first##NAME && DK <= last##NAME) \ 655 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D)); 656 #include "clang/AST/DeclNodes.inc" 657 llvm_unreachable("a decl that inherits DeclContext isn't handled"); 658 } 659 } 660 661 DeclContext *Decl::castToDeclContext(const Decl *D) { 662 Decl::Kind DK = D->getKind(); 663 switch(DK) { 664 #define DECL(NAME, BASE) 665 #define DECL_CONTEXT(NAME) \ 666 case Decl::NAME: \ 667 return static_cast<NAME##Decl*>(const_cast<Decl*>(D)); 668 #define DECL_CONTEXT_BASE(NAME) 669 #include "clang/AST/DeclNodes.inc" 670 default: 671 #define DECL(NAME, BASE) 672 #define DECL_CONTEXT_BASE(NAME) \ 673 if (DK >= first##NAME && DK <= last##NAME) \ 674 return static_cast<NAME##Decl*>(const_cast<Decl*>(D)); 675 #include "clang/AST/DeclNodes.inc" 676 llvm_unreachable("a decl that inherits DeclContext isn't handled"); 677 } 678 } 679 680 SourceLocation Decl::getBodyRBrace() const { 681 // Special handling of FunctionDecl to avoid de-serializing the body from PCH. 682 // FunctionDecl stores EndRangeLoc for this purpose. 683 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { 684 const FunctionDecl *Definition; 685 if (FD->hasBody(Definition)) 686 return Definition->getSourceRange().getEnd(); 687 return SourceLocation(); 688 } 689 690 if (Stmt *Body = getBody()) 691 return Body->getSourceRange().getEnd(); 692 693 return SourceLocation(); 694 } 695 696 bool Decl::AccessDeclContextSanity() const { 697 #ifndef NDEBUG 698 // Suppress this check if any of the following hold: 699 // 1. this is the translation unit (and thus has no parent) 700 // 2. this is a template parameter (and thus doesn't belong to its context) 701 // 3. this is a non-type template parameter 702 // 4. the context is not a record 703 // 5. it's invalid 704 // 6. it's a C++0x static_assert. 705 if (isa<TranslationUnitDecl>(this) || 706 isa<TemplateTypeParmDecl>(this) || 707 isa<NonTypeTemplateParmDecl>(this) || 708 !isa<CXXRecordDecl>(getDeclContext()) || 709 isInvalidDecl() || 710 isa<StaticAssertDecl>(this) || 711 // FIXME: a ParmVarDecl can have ClassTemplateSpecialization 712 // as DeclContext (?). 713 isa<ParmVarDecl>(this) || 714 // FIXME: a ClassTemplateSpecialization or CXXRecordDecl can have 715 // AS_none as access specifier. 716 isa<CXXRecordDecl>(this) || 717 isa<ClassScopeFunctionSpecializationDecl>(this)) 718 return true; 719 720 assert(Access != AS_none && 721 "Access specifier is AS_none inside a record decl"); 722 #endif 723 return true; 724 } 725 726 static Decl::Kind getKind(const Decl *D) { return D->getKind(); } 727 static Decl::Kind getKind(const DeclContext *DC) { return DC->getDeclKind(); } 728 729 const FunctionType *Decl::getFunctionType(bool BlocksToo) const { 730 QualType Ty; 731 if (const ValueDecl *D = dyn_cast<ValueDecl>(this)) 732 Ty = D->getType(); 733 else if (const TypedefNameDecl *D = dyn_cast<TypedefNameDecl>(this)) 734 Ty = D->getUnderlyingType(); 735 else 736 return nullptr; 737 738 if (Ty->isFunctionPointerType()) 739 Ty = Ty->getAs<PointerType>()->getPointeeType(); 740 else if (BlocksToo && Ty->isBlockPointerType()) 741 Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); 742 743 return Ty->getAs<FunctionType>(); 744 } 745 746 747 /// Starting at a given context (a Decl or DeclContext), look for a 748 /// code context that is not a closure (a lambda, block, etc.). 749 template <class T> static Decl *getNonClosureContext(T *D) { 750 if (getKind(D) == Decl::CXXMethod) { 751 CXXMethodDecl *MD = cast<CXXMethodDecl>(D); 752 if (MD->getOverloadedOperator() == OO_Call && 753 MD->getParent()->isLambda()) 754 return getNonClosureContext(MD->getParent()->getParent()); 755 return MD; 756 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 757 return FD; 758 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 759 return MD; 760 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) { 761 return getNonClosureContext(BD->getParent()); 762 } else if (CapturedDecl *CD = dyn_cast<CapturedDecl>(D)) { 763 return getNonClosureContext(CD->getParent()); 764 } else { 765 return nullptr; 766 } 767 } 768 769 Decl *Decl::getNonClosureContext() { 770 return ::getNonClosureContext(this); 771 } 772 773 Decl *DeclContext::getNonClosureAncestor() { 774 return ::getNonClosureContext(this); 775 } 776 777 //===----------------------------------------------------------------------===// 778 // DeclContext Implementation 779 //===----------------------------------------------------------------------===// 780 781 bool DeclContext::classof(const Decl *D) { 782 switch (D->getKind()) { 783 #define DECL(NAME, BASE) 784 #define DECL_CONTEXT(NAME) case Decl::NAME: 785 #define DECL_CONTEXT_BASE(NAME) 786 #include "clang/AST/DeclNodes.inc" 787 return true; 788 default: 789 #define DECL(NAME, BASE) 790 #define DECL_CONTEXT_BASE(NAME) \ 791 if (D->getKind() >= Decl::first##NAME && \ 792 D->getKind() <= Decl::last##NAME) \ 793 return true; 794 #include "clang/AST/DeclNodes.inc" 795 return false; 796 } 797 } 798 799 DeclContext::~DeclContext() { } 800 801 /// \brief Find the parent context of this context that will be 802 /// used for unqualified name lookup. 803 /// 804 /// Generally, the parent lookup context is the semantic context. However, for 805 /// a friend function the parent lookup context is the lexical context, which 806 /// is the class in which the friend is declared. 807 DeclContext *DeclContext::getLookupParent() { 808 // FIXME: Find a better way to identify friends 809 if (isa<FunctionDecl>(this)) 810 if (getParent()->getRedeclContext()->isFileContext() && 811 getLexicalParent()->getRedeclContext()->isRecord()) 812 return getLexicalParent(); 813 814 return getParent(); 815 } 816 817 bool DeclContext::isInlineNamespace() const { 818 return isNamespace() && 819 cast<NamespaceDecl>(this)->isInline(); 820 } 821 822 bool DeclContext::isStdNamespace() const { 823 if (!isNamespace()) 824 return false; 825 826 const NamespaceDecl *ND = cast<NamespaceDecl>(this); 827 if (ND->isInline()) { 828 return ND->getParent()->isStdNamespace(); 829 } 830 831 if (!getParent()->getRedeclContext()->isTranslationUnit()) 832 return false; 833 834 const IdentifierInfo *II = ND->getIdentifier(); 835 return II && II->isStr("std"); 836 } 837 838 bool DeclContext::isDependentContext() const { 839 if (isFileContext()) 840 return false; 841 842 if (isa<ClassTemplatePartialSpecializationDecl>(this)) 843 return true; 844 845 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) { 846 if (Record->getDescribedClassTemplate()) 847 return true; 848 849 if (Record->isDependentLambda()) 850 return true; 851 } 852 853 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) { 854 if (Function->getDescribedFunctionTemplate()) 855 return true; 856 857 // Friend function declarations are dependent if their *lexical* 858 // context is dependent. 859 if (cast<Decl>(this)->getFriendObjectKind()) 860 return getLexicalParent()->isDependentContext(); 861 } 862 863 // FIXME: A variable template is a dependent context, but is not a 864 // DeclContext. A context within it (such as a lambda-expression) 865 // should be considered dependent. 866 867 return getParent() && getParent()->isDependentContext(); 868 } 869 870 bool DeclContext::isTransparentContext() const { 871 if (DeclKind == Decl::Enum) 872 return !cast<EnumDecl>(this)->isScoped(); 873 else if (DeclKind == Decl::LinkageSpec) 874 return true; 875 876 return false; 877 } 878 879 static bool isLinkageSpecContext(const DeclContext *DC, 880 LinkageSpecDecl::LanguageIDs ID) { 881 while (DC->getDeclKind() != Decl::TranslationUnit) { 882 if (DC->getDeclKind() == Decl::LinkageSpec) 883 return cast<LinkageSpecDecl>(DC)->getLanguage() == ID; 884 DC = DC->getLexicalParent(); 885 } 886 return false; 887 } 888 889 bool DeclContext::isExternCContext() const { 890 return isLinkageSpecContext(this, clang::LinkageSpecDecl::lang_c); 891 } 892 893 bool DeclContext::isExternCXXContext() const { 894 return isLinkageSpecContext(this, clang::LinkageSpecDecl::lang_cxx); 895 } 896 897 bool DeclContext::Encloses(const DeclContext *DC) const { 898 if (getPrimaryContext() != this) 899 return getPrimaryContext()->Encloses(DC); 900 901 for (; DC; DC = DC->getParent()) 902 if (DC->getPrimaryContext() == this) 903 return true; 904 return false; 905 } 906 907 DeclContext *DeclContext::getPrimaryContext() { 908 switch (DeclKind) { 909 case Decl::TranslationUnit: 910 case Decl::LinkageSpec: 911 case Decl::Block: 912 case Decl::Captured: 913 // There is only one DeclContext for these entities. 914 return this; 915 916 case Decl::Namespace: 917 // The original namespace is our primary context. 918 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace(); 919 920 case Decl::ObjCMethod: 921 return this; 922 923 case Decl::ObjCInterface: 924 if (ObjCInterfaceDecl *Def = cast<ObjCInterfaceDecl>(this)->getDefinition()) 925 return Def; 926 927 return this; 928 929 case Decl::ObjCProtocol: 930 if (ObjCProtocolDecl *Def = cast<ObjCProtocolDecl>(this)->getDefinition()) 931 return Def; 932 933 return this; 934 935 case Decl::ObjCCategory: 936 return this; 937 938 case Decl::ObjCImplementation: 939 case Decl::ObjCCategoryImpl: 940 return this; 941 942 default: 943 if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag) { 944 // If this is a tag type that has a definition or is currently 945 // being defined, that definition is our primary context. 946 TagDecl *Tag = cast<TagDecl>(this); 947 948 if (TagDecl *Def = Tag->getDefinition()) 949 return Def; 950 951 if (const TagType *TagTy = dyn_cast<TagType>(Tag->getTypeForDecl())) { 952 // Note, TagType::getDecl returns the (partial) definition one exists. 953 TagDecl *PossiblePartialDef = TagTy->getDecl(); 954 if (PossiblePartialDef->isBeingDefined()) 955 return PossiblePartialDef; 956 } else { 957 assert(isa<InjectedClassNameType>(Tag->getTypeForDecl())); 958 } 959 960 return Tag; 961 } 962 963 assert(DeclKind >= Decl::firstFunction && DeclKind <= Decl::lastFunction && 964 "Unknown DeclContext kind"); 965 return this; 966 } 967 } 968 969 void 970 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ 971 Contexts.clear(); 972 973 if (DeclKind != Decl::Namespace) { 974 Contexts.push_back(this); 975 return; 976 } 977 978 NamespaceDecl *Self = static_cast<NamespaceDecl *>(this); 979 for (NamespaceDecl *N = Self->getMostRecentDecl(); N; 980 N = N->getPreviousDecl()) 981 Contexts.push_back(N); 982 983 std::reverse(Contexts.begin(), Contexts.end()); 984 } 985 986 std::pair<Decl *, Decl *> 987 DeclContext::BuildDeclChain(ArrayRef<Decl*> Decls, 988 bool FieldsAlreadyLoaded) { 989 // Build up a chain of declarations via the Decl::NextInContextAndBits field. 990 Decl *FirstNewDecl = nullptr; 991 Decl *PrevDecl = nullptr; 992 for (unsigned I = 0, N = Decls.size(); I != N; ++I) { 993 if (FieldsAlreadyLoaded && isa<FieldDecl>(Decls[I])) 994 continue; 995 996 Decl *D = Decls[I]; 997 if (PrevDecl) 998 PrevDecl->NextInContextAndBits.setPointer(D); 999 else 1000 FirstNewDecl = D; 1001 1002 PrevDecl = D; 1003 } 1004 1005 return std::make_pair(FirstNewDecl, PrevDecl); 1006 } 1007 1008 /// \brief We have just acquired external visible storage, and we already have 1009 /// built a lookup map. For every name in the map, pull in the new names from 1010 /// the external storage. 1011 void DeclContext::reconcileExternalVisibleStorage() const { 1012 assert(NeedToReconcileExternalVisibleStorage && LookupPtr.getPointer()); 1013 NeedToReconcileExternalVisibleStorage = false; 1014 1015 for (auto &Lookup : *LookupPtr.getPointer()) 1016 Lookup.second.setHasExternalDecls(); 1017 } 1018 1019 /// \brief Load the declarations within this lexical storage from an 1020 /// external source. 1021 void 1022 DeclContext::LoadLexicalDeclsFromExternalStorage() const { 1023 ExternalASTSource *Source = getParentASTContext().getExternalSource(); 1024 assert(hasExternalLexicalStorage() && Source && "No external storage?"); 1025 1026 // Notify that we have a DeclContext that is initializing. 1027 ExternalASTSource::Deserializing ADeclContext(Source); 1028 1029 // Load the external declarations, if any. 1030 SmallVector<Decl*, 64> Decls; 1031 ExternalLexicalStorage = false; 1032 switch (Source->FindExternalLexicalDecls(this, Decls)) { 1033 case ELR_Success: 1034 break; 1035 1036 case ELR_Failure: 1037 case ELR_AlreadyLoaded: 1038 return; 1039 } 1040 1041 if (Decls.empty()) 1042 return; 1043 1044 // We may have already loaded just the fields of this record, in which case 1045 // we need to ignore them. 1046 bool FieldsAlreadyLoaded = false; 1047 if (const RecordDecl *RD = dyn_cast<RecordDecl>(this)) 1048 FieldsAlreadyLoaded = RD->LoadedFieldsFromExternalStorage; 1049 1050 // Splice the newly-read declarations into the beginning of the list 1051 // of declarations. 1052 Decl *ExternalFirst, *ExternalLast; 1053 std::tie(ExternalFirst, ExternalLast) = 1054 BuildDeclChain(Decls, FieldsAlreadyLoaded); 1055 ExternalLast->NextInContextAndBits.setPointer(FirstDecl); 1056 FirstDecl = ExternalFirst; 1057 if (!LastDecl) 1058 LastDecl = ExternalLast; 1059 } 1060 1061 DeclContext::lookup_result 1062 ExternalASTSource::SetNoExternalVisibleDeclsForName(const DeclContext *DC, 1063 DeclarationName Name) { 1064 ASTContext &Context = DC->getParentASTContext(); 1065 StoredDeclsMap *Map; 1066 if (!(Map = DC->LookupPtr.getPointer())) 1067 Map = DC->CreateStoredDeclsMap(Context); 1068 if (DC->NeedToReconcileExternalVisibleStorage) 1069 DC->reconcileExternalVisibleStorage(); 1070 1071 (*Map)[Name].removeExternalDecls(); 1072 1073 return DeclContext::lookup_result(); 1074 } 1075 1076 DeclContext::lookup_result 1077 ExternalASTSource::SetExternalVisibleDeclsForName(const DeclContext *DC, 1078 DeclarationName Name, 1079 ArrayRef<NamedDecl*> Decls) { 1080 ASTContext &Context = DC->getParentASTContext(); 1081 StoredDeclsMap *Map; 1082 if (!(Map = DC->LookupPtr.getPointer())) 1083 Map = DC->CreateStoredDeclsMap(Context); 1084 if (DC->NeedToReconcileExternalVisibleStorage) 1085 DC->reconcileExternalVisibleStorage(); 1086 1087 StoredDeclsList &List = (*Map)[Name]; 1088 1089 // Clear out any old external visible declarations, to avoid quadratic 1090 // performance in the redeclaration checks below. 1091 List.removeExternalDecls(); 1092 1093 if (!List.isNull()) { 1094 // We have both existing declarations and new declarations for this name. 1095 // Some of the declarations may simply replace existing ones. Handle those 1096 // first. 1097 llvm::SmallVector<unsigned, 8> Skip; 1098 for (unsigned I = 0, N = Decls.size(); I != N; ++I) 1099 if (List.HandleRedeclaration(Decls[I], /*IsKnownNewer*/false)) 1100 Skip.push_back(I); 1101 Skip.push_back(Decls.size()); 1102 1103 // Add in any new declarations. 1104 unsigned SkipPos = 0; 1105 for (unsigned I = 0, N = Decls.size(); I != N; ++I) { 1106 if (I == Skip[SkipPos]) 1107 ++SkipPos; 1108 else 1109 List.AddSubsequentDecl(Decls[I]); 1110 } 1111 } else { 1112 // Convert the array to a StoredDeclsList. 1113 for (ArrayRef<NamedDecl*>::iterator 1114 I = Decls.begin(), E = Decls.end(); I != E; ++I) { 1115 if (List.isNull()) 1116 List.setOnlyValue(*I); 1117 else 1118 List.AddSubsequentDecl(*I); 1119 } 1120 } 1121 1122 return List.getLookupResult(); 1123 } 1124 1125 DeclContext::decl_iterator DeclContext::decls_begin() const { 1126 if (hasExternalLexicalStorage()) 1127 LoadLexicalDeclsFromExternalStorage(); 1128 return decl_iterator(FirstDecl); 1129 } 1130 1131 bool DeclContext::decls_empty() const { 1132 if (hasExternalLexicalStorage()) 1133 LoadLexicalDeclsFromExternalStorage(); 1134 1135 return !FirstDecl; 1136 } 1137 1138 bool DeclContext::containsDecl(Decl *D) const { 1139 return (D->getLexicalDeclContext() == this && 1140 (D->NextInContextAndBits.getPointer() || D == LastDecl)); 1141 } 1142 1143 void DeclContext::removeDecl(Decl *D) { 1144 assert(D->getLexicalDeclContext() == this && 1145 "decl being removed from non-lexical context"); 1146 assert((D->NextInContextAndBits.getPointer() || D == LastDecl) && 1147 "decl is not in decls list"); 1148 1149 // Remove D from the decl chain. This is O(n) but hopefully rare. 1150 if (D == FirstDecl) { 1151 if (D == LastDecl) 1152 FirstDecl = LastDecl = nullptr; 1153 else 1154 FirstDecl = D->NextInContextAndBits.getPointer(); 1155 } else { 1156 for (Decl *I = FirstDecl; true; I = I->NextInContextAndBits.getPointer()) { 1157 assert(I && "decl not found in linked list"); 1158 if (I->NextInContextAndBits.getPointer() == D) { 1159 I->NextInContextAndBits.setPointer(D->NextInContextAndBits.getPointer()); 1160 if (D == LastDecl) LastDecl = I; 1161 break; 1162 } 1163 } 1164 } 1165 1166 // Mark that D is no longer in the decl chain. 1167 D->NextInContextAndBits.setPointer(nullptr); 1168 1169 // Remove D from the lookup table if necessary. 1170 if (isa<NamedDecl>(D)) { 1171 NamedDecl *ND = cast<NamedDecl>(D); 1172 1173 // Remove only decls that have a name 1174 if (!ND->getDeclName()) return; 1175 1176 StoredDeclsMap *Map = getPrimaryContext()->LookupPtr.getPointer(); 1177 if (!Map) return; 1178 1179 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName()); 1180 assert(Pos != Map->end() && "no lookup entry for decl"); 1181 if (Pos->second.getAsVector() || Pos->second.getAsDecl() == ND) 1182 Pos->second.remove(ND); 1183 } 1184 } 1185 1186 void DeclContext::addHiddenDecl(Decl *D) { 1187 assert(D->getLexicalDeclContext() == this && 1188 "Decl inserted into wrong lexical context"); 1189 assert(!D->getNextDeclInContext() && D != LastDecl && 1190 "Decl already inserted into a DeclContext"); 1191 1192 if (FirstDecl) { 1193 LastDecl->NextInContextAndBits.setPointer(D); 1194 LastDecl = D; 1195 } else { 1196 FirstDecl = LastDecl = D; 1197 } 1198 1199 // Notify a C++ record declaration that we've added a member, so it can 1200 // update it's class-specific state. 1201 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) 1202 Record->addedMember(D); 1203 1204 // If this is a newly-created (not de-serialized) import declaration, wire 1205 // it in to the list of local import declarations. 1206 if (!D->isFromASTFile()) { 1207 if (ImportDecl *Import = dyn_cast<ImportDecl>(D)) 1208 D->getASTContext().addedLocalImportDecl(Import); 1209 } 1210 } 1211 1212 void DeclContext::addDecl(Decl *D) { 1213 addHiddenDecl(D); 1214 1215 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1216 ND->getDeclContext()->getPrimaryContext()-> 1217 makeDeclVisibleInContextWithFlags(ND, false, true); 1218 } 1219 1220 void DeclContext::addDeclInternal(Decl *D) { 1221 addHiddenDecl(D); 1222 1223 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1224 ND->getDeclContext()->getPrimaryContext()-> 1225 makeDeclVisibleInContextWithFlags(ND, true, true); 1226 } 1227 1228 /// shouldBeHidden - Determine whether a declaration which was declared 1229 /// within its semantic context should be invisible to qualified name lookup. 1230 static bool shouldBeHidden(NamedDecl *D) { 1231 // Skip unnamed declarations. 1232 if (!D->getDeclName()) 1233 return true; 1234 1235 // Skip entities that can't be found by name lookup into a particular 1236 // context. 1237 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || 1238 D->isTemplateParameter()) 1239 return true; 1240 1241 // Skip template specializations. 1242 // FIXME: This feels like a hack. Should DeclarationName support 1243 // template-ids, or is there a better way to keep specializations 1244 // from being visible? 1245 if (isa<ClassTemplateSpecializationDecl>(D)) 1246 return true; 1247 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 1248 if (FD->isFunctionTemplateSpecialization()) 1249 return true; 1250 1251 return false; 1252 } 1253 1254 /// buildLookup - Build the lookup data structure with all of the 1255 /// declarations in this DeclContext (and any other contexts linked 1256 /// to it or transparent contexts nested within it) and return it. 1257 /// 1258 /// Note that the produced map may miss out declarations from an 1259 /// external source. If it does, those entries will be marked with 1260 /// the 'hasExternalDecls' flag. 1261 StoredDeclsMap *DeclContext::buildLookup() { 1262 assert(this == getPrimaryContext() && "buildLookup called on non-primary DC"); 1263 1264 // FIXME: Should we keep going if hasExternalVisibleStorage? 1265 if (!LookupPtr.getInt()) 1266 return LookupPtr.getPointer(); 1267 1268 SmallVector<DeclContext *, 2> Contexts; 1269 collectAllContexts(Contexts); 1270 for (unsigned I = 0, N = Contexts.size(); I != N; ++I) 1271 buildLookupImpl<&DeclContext::decls_begin, 1272 &DeclContext::decls_end>(Contexts[I], false); 1273 1274 // We no longer have any lazy decls. 1275 LookupPtr.setInt(false); 1276 return LookupPtr.getPointer(); 1277 } 1278 1279 /// buildLookupImpl - Build part of the lookup data structure for the 1280 /// declarations contained within DCtx, which will either be this 1281 /// DeclContext, a DeclContext linked to it, or a transparent context 1282 /// nested within it. 1283 template<DeclContext::decl_iterator (DeclContext::*Begin)() const, 1284 DeclContext::decl_iterator (DeclContext::*End)() const> 1285 void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) { 1286 for (decl_iterator I = (DCtx->*Begin)(), E = (DCtx->*End)(); 1287 I != E; ++I) { 1288 Decl *D = *I; 1289 1290 // Insert this declaration into the lookup structure, but only if 1291 // it's semantically within its decl context. Any other decls which 1292 // should be found in this context are added eagerly. 1293 // 1294 // If it's from an AST file, don't add it now. It'll get handled by 1295 // FindExternalVisibleDeclsByName if needed. Exception: if we're not 1296 // in C++, we do not track external visible decls for the TU, so in 1297 // that case we need to collect them all here. 1298 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1299 if (ND->getDeclContext() == DCtx && !shouldBeHidden(ND) && 1300 (!ND->isFromASTFile() || 1301 (isTranslationUnit() && 1302 !getParentASTContext().getLangOpts().CPlusPlus))) 1303 makeDeclVisibleInContextImpl(ND, Internal); 1304 1305 // If this declaration is itself a transparent declaration context 1306 // or inline namespace, add the members of this declaration of that 1307 // context (recursively). 1308 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(D)) 1309 if (InnerCtx->isTransparentContext() || InnerCtx->isInlineNamespace()) 1310 buildLookupImpl<Begin, End>(InnerCtx, Internal); 1311 } 1312 } 1313 1314 NamedDecl *const DeclContextLookupResult::SingleElementDummyList = nullptr; 1315 1316 DeclContext::lookup_result 1317 DeclContext::lookup(DeclarationName Name) const { 1318 assert(DeclKind != Decl::LinkageSpec && 1319 "Should not perform lookups into linkage specs!"); 1320 1321 const DeclContext *PrimaryContext = getPrimaryContext(); 1322 if (PrimaryContext != this) 1323 return PrimaryContext->lookup(Name); 1324 1325 // If we have an external source, ensure that any later redeclarations of this 1326 // context have been loaded, since they may add names to the result of this 1327 // lookup (or add external visible storage). 1328 ExternalASTSource *Source = getParentASTContext().getExternalSource(); 1329 if (Source) 1330 (void)cast<Decl>(this)->getMostRecentDecl(); 1331 1332 if (hasExternalVisibleStorage()) { 1333 assert(Source && "external visible storage but no external source?"); 1334 1335 if (NeedToReconcileExternalVisibleStorage) 1336 reconcileExternalVisibleStorage(); 1337 1338 StoredDeclsMap *Map = LookupPtr.getPointer(); 1339 1340 if (LookupPtr.getInt()) 1341 // FIXME: Make buildLookup const? 1342 Map = const_cast<DeclContext*>(this)->buildLookup(); 1343 1344 if (!Map) 1345 Map = CreateStoredDeclsMap(getParentASTContext()); 1346 1347 // If we have a lookup result with no external decls, we are done. 1348 std::pair<StoredDeclsMap::iterator, bool> R = 1349 Map->insert(std::make_pair(Name, StoredDeclsList())); 1350 if (!R.second && !R.first->second.hasExternalDecls()) 1351 return R.first->second.getLookupResult(); 1352 1353 if (Source->FindExternalVisibleDeclsByName(this, Name) || !R.second) { 1354 if (StoredDeclsMap *Map = LookupPtr.getPointer()) { 1355 StoredDeclsMap::iterator I = Map->find(Name); 1356 if (I != Map->end()) 1357 return I->second.getLookupResult(); 1358 } 1359 } 1360 1361 return lookup_result(); 1362 } 1363 1364 StoredDeclsMap *Map = LookupPtr.getPointer(); 1365 if (LookupPtr.getInt()) 1366 Map = const_cast<DeclContext*>(this)->buildLookup(); 1367 1368 if (!Map) 1369 return lookup_result(); 1370 1371 StoredDeclsMap::iterator I = Map->find(Name); 1372 if (I == Map->end()) 1373 return lookup_result(); 1374 1375 return I->second.getLookupResult(); 1376 } 1377 1378 DeclContext::lookup_result 1379 DeclContext::noload_lookup(DeclarationName Name) { 1380 assert(DeclKind != Decl::LinkageSpec && 1381 "Should not perform lookups into linkage specs!"); 1382 if (!hasExternalVisibleStorage()) 1383 return lookup(Name); 1384 1385 DeclContext *PrimaryContext = getPrimaryContext(); 1386 if (PrimaryContext != this) 1387 return PrimaryContext->noload_lookup(Name); 1388 1389 StoredDeclsMap *Map = LookupPtr.getPointer(); 1390 if (LookupPtr.getInt()) { 1391 // Carefully build the lookup map, without deserializing anything. 1392 SmallVector<DeclContext *, 2> Contexts; 1393 collectAllContexts(Contexts); 1394 for (unsigned I = 0, N = Contexts.size(); I != N; ++I) 1395 buildLookupImpl<&DeclContext::noload_decls_begin, 1396 &DeclContext::noload_decls_end>(Contexts[I], true); 1397 1398 // We no longer have any lazy decls. 1399 LookupPtr.setInt(false); 1400 1401 // There may now be names for which we have local decls but are 1402 // missing the external decls. FIXME: Just set the hasExternalDecls 1403 // flag on those names that have external decls. 1404 NeedToReconcileExternalVisibleStorage = true; 1405 1406 Map = LookupPtr.getPointer(); 1407 } 1408 1409 if (!Map) 1410 return lookup_result(); 1411 1412 StoredDeclsMap::iterator I = Map->find(Name); 1413 return I != Map->end() ? I->second.getLookupResult() 1414 : lookup_result(); 1415 } 1416 1417 void DeclContext::localUncachedLookup(DeclarationName Name, 1418 SmallVectorImpl<NamedDecl *> &Results) { 1419 Results.clear(); 1420 1421 // If there's no external storage, just perform a normal lookup and copy 1422 // the results. 1423 if (!hasExternalVisibleStorage() && !hasExternalLexicalStorage() && Name) { 1424 lookup_result LookupResults = lookup(Name); 1425 Results.insert(Results.end(), LookupResults.begin(), LookupResults.end()); 1426 return; 1427 } 1428 1429 // If we have a lookup table, check there first. Maybe we'll get lucky. 1430 if (Name && !LookupPtr.getInt()) { 1431 if (StoredDeclsMap *Map = LookupPtr.getPointer()) { 1432 StoredDeclsMap::iterator Pos = Map->find(Name); 1433 if (Pos != Map->end()) { 1434 Results.insert(Results.end(), 1435 Pos->second.getLookupResult().begin(), 1436 Pos->second.getLookupResult().end()); 1437 return; 1438 } 1439 } 1440 } 1441 1442 // Slow case: grovel through the declarations in our chain looking for 1443 // matches. 1444 for (Decl *D = FirstDecl; D; D = D->getNextDeclInContext()) { 1445 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 1446 if (ND->getDeclName() == Name) 1447 Results.push_back(ND); 1448 } 1449 } 1450 1451 DeclContext *DeclContext::getRedeclContext() { 1452 DeclContext *Ctx = this; 1453 // Skip through transparent contexts. 1454 while (Ctx->isTransparentContext()) 1455 Ctx = Ctx->getParent(); 1456 return Ctx; 1457 } 1458 1459 DeclContext *DeclContext::getEnclosingNamespaceContext() { 1460 DeclContext *Ctx = this; 1461 // Skip through non-namespace, non-translation-unit contexts. 1462 while (!Ctx->isFileContext()) 1463 Ctx = Ctx->getParent(); 1464 return Ctx->getPrimaryContext(); 1465 } 1466 1467 RecordDecl *DeclContext::getOuterLexicalRecordContext() { 1468 // Loop until we find a non-record context. 1469 RecordDecl *OutermostRD = nullptr; 1470 DeclContext *DC = this; 1471 while (DC->isRecord()) { 1472 OutermostRD = cast<RecordDecl>(DC); 1473 DC = DC->getLexicalParent(); 1474 } 1475 return OutermostRD; 1476 } 1477 1478 bool DeclContext::InEnclosingNamespaceSetOf(const DeclContext *O) const { 1479 // For non-file contexts, this is equivalent to Equals. 1480 if (!isFileContext()) 1481 return O->Equals(this); 1482 1483 do { 1484 if (O->Equals(this)) 1485 return true; 1486 1487 const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(O); 1488 if (!NS || !NS->isInline()) 1489 break; 1490 O = NS->getParent(); 1491 } while (O); 1492 1493 return false; 1494 } 1495 1496 void DeclContext::makeDeclVisibleInContext(NamedDecl *D) { 1497 DeclContext *PrimaryDC = this->getPrimaryContext(); 1498 DeclContext *DeclDC = D->getDeclContext()->getPrimaryContext(); 1499 // If the decl is being added outside of its semantic decl context, we 1500 // need to ensure that we eagerly build the lookup information for it. 1501 PrimaryDC->makeDeclVisibleInContextWithFlags(D, false, PrimaryDC == DeclDC); 1502 } 1503 1504 void DeclContext::makeDeclVisibleInContextWithFlags(NamedDecl *D, bool Internal, 1505 bool Recoverable) { 1506 assert(this == getPrimaryContext() && "expected a primary DC"); 1507 1508 // Skip declarations within functions. 1509 if (isFunctionOrMethod()) 1510 return; 1511 1512 // Skip declarations which should be invisible to name lookup. 1513 if (shouldBeHidden(D)) 1514 return; 1515 1516 // If we already have a lookup data structure, perform the insertion into 1517 // it. If we might have externally-stored decls with this name, look them 1518 // up and perform the insertion. If this decl was declared outside its 1519 // semantic context, buildLookup won't add it, so add it now. 1520 // 1521 // FIXME: As a performance hack, don't add such decls into the translation 1522 // unit unless we're in C++, since qualified lookup into the TU is never 1523 // performed. 1524 if (LookupPtr.getPointer() || hasExternalVisibleStorage() || 1525 ((!Recoverable || D->getDeclContext() != D->getLexicalDeclContext()) && 1526 (getParentASTContext().getLangOpts().CPlusPlus || 1527 !isTranslationUnit()))) { 1528 // If we have lazily omitted any decls, they might have the same name as 1529 // the decl which we are adding, so build a full lookup table before adding 1530 // this decl. 1531 buildLookup(); 1532 makeDeclVisibleInContextImpl(D, Internal); 1533 } else { 1534 LookupPtr.setInt(true); 1535 } 1536 1537 // If we are a transparent context or inline namespace, insert into our 1538 // parent context, too. This operation is recursive. 1539 if (isTransparentContext() || isInlineNamespace()) 1540 getParent()->getPrimaryContext()-> 1541 makeDeclVisibleInContextWithFlags(D, Internal, Recoverable); 1542 1543 Decl *DCAsDecl = cast<Decl>(this); 1544 // Notify that a decl was made visible unless we are a Tag being defined. 1545 if (!(isa<TagDecl>(DCAsDecl) && cast<TagDecl>(DCAsDecl)->isBeingDefined())) 1546 if (ASTMutationListener *L = DCAsDecl->getASTMutationListener()) 1547 L->AddedVisibleDecl(this, D); 1548 } 1549 1550 void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D, bool Internal) { 1551 // Find or create the stored declaration map. 1552 StoredDeclsMap *Map = LookupPtr.getPointer(); 1553 if (!Map) { 1554 ASTContext *C = &getParentASTContext(); 1555 Map = CreateStoredDeclsMap(*C); 1556 } 1557 1558 // If there is an external AST source, load any declarations it knows about 1559 // with this declaration's name. 1560 // If the lookup table contains an entry about this name it means that we 1561 // have already checked the external source. 1562 if (!Internal) 1563 if (ExternalASTSource *Source = getParentASTContext().getExternalSource()) 1564 if (hasExternalVisibleStorage() && 1565 Map->find(D->getDeclName()) == Map->end()) 1566 Source->FindExternalVisibleDeclsByName(this, D->getDeclName()); 1567 1568 // Insert this declaration into the map. 1569 StoredDeclsList &DeclNameEntries = (*Map)[D->getDeclName()]; 1570 1571 if (Internal) { 1572 // If this is being added as part of loading an external declaration, 1573 // this may not be the only external declaration with this name. 1574 // In this case, we never try to replace an existing declaration; we'll 1575 // handle that when we finalize the list of declarations for this name. 1576 DeclNameEntries.setHasExternalDecls(); 1577 DeclNameEntries.AddSubsequentDecl(D); 1578 return; 1579 } 1580 1581 if (DeclNameEntries.isNull()) { 1582 DeclNameEntries.setOnlyValue(D); 1583 return; 1584 } 1585 1586 if (DeclNameEntries.HandleRedeclaration(D, /*IsKnownNewer*/!Internal)) { 1587 // This declaration has replaced an existing one for which 1588 // declarationReplaces returns true. 1589 return; 1590 } 1591 1592 // Put this declaration into the appropriate slot. 1593 DeclNameEntries.AddSubsequentDecl(D); 1594 } 1595 1596 UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const { 1597 return cast<UsingDirectiveDecl>(*I); 1598 } 1599 1600 /// Returns iterator range [First, Last) of UsingDirectiveDecls stored within 1601 /// this context. 1602 DeclContext::udir_range DeclContext::using_directives() const { 1603 // FIXME: Use something more efficient than normal lookup for using 1604 // directives. In C++, using directives are looked up more than anything else. 1605 lookup_result Result = lookup(UsingDirectiveDecl::getName()); 1606 return udir_range(Result.begin(), Result.end()); 1607 } 1608 1609 //===----------------------------------------------------------------------===// 1610 // Creation and Destruction of StoredDeclsMaps. // 1611 //===----------------------------------------------------------------------===// 1612 1613 StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const { 1614 assert(!LookupPtr.getPointer() && "context already has a decls map"); 1615 assert(getPrimaryContext() == this && 1616 "creating decls map on non-primary context"); 1617 1618 StoredDeclsMap *M; 1619 bool Dependent = isDependentContext(); 1620 if (Dependent) 1621 M = new DependentStoredDeclsMap(); 1622 else 1623 M = new StoredDeclsMap(); 1624 M->Previous = C.LastSDM; 1625 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent); 1626 LookupPtr.setPointer(M); 1627 return M; 1628 } 1629 1630 void ASTContext::ReleaseDeclContextMaps() { 1631 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap 1632 // pointer because the subclass doesn't add anything that needs to 1633 // be deleted. 1634 StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt()); 1635 } 1636 1637 void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { 1638 while (Map) { 1639 // Advance the iteration before we invalidate memory. 1640 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous; 1641 1642 if (Dependent) 1643 delete static_cast<DependentStoredDeclsMap*>(Map); 1644 else 1645 delete Map; 1646 1647 Map = Next.getPointer(); 1648 Dependent = Next.getInt(); 1649 } 1650 } 1651 1652 DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C, 1653 DeclContext *Parent, 1654 const PartialDiagnostic &PDiag) { 1655 assert(Parent->isDependentContext() 1656 && "cannot iterate dependent diagnostics of non-dependent context"); 1657 Parent = Parent->getPrimaryContext(); 1658 if (!Parent->LookupPtr.getPointer()) 1659 Parent->CreateStoredDeclsMap(C); 1660 1661 DependentStoredDeclsMap *Map 1662 = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr.getPointer()); 1663 1664 // Allocate the copy of the PartialDiagnostic via the ASTContext's 1665 // BumpPtrAllocator, rather than the ASTContext itself. 1666 PartialDiagnostic::Storage *DiagStorage = nullptr; 1667 if (PDiag.hasStorage()) 1668 DiagStorage = new (C) PartialDiagnostic::Storage; 1669 1670 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage); 1671 1672 // TODO: Maybe we shouldn't reverse the order during insertion. 1673 DD->NextDiagnostic = Map->FirstDiagnostic; 1674 Map->FirstDiagnostic = DD; 1675 1676 return DD; 1677 } 1678