1//===- DeclBase.cpp - Declaration AST Node Implementation -----------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the Decl and DeclContext classes.
10//
11//===----------------------------------------------------------------------===//
12
13#include "clang/AST/DeclBase.h"
14#include "clang/AST/ASTContext.h"
15#include "clang/AST/ASTLambda.h"
16#include "clang/AST/ASTMutationListener.h"
17#include "clang/AST/Attr.h"
18#include "clang/AST/AttrIterator.h"
19#include "clang/AST/Decl.h"
20#include "clang/AST/DeclCXX.h"
21#include "clang/AST/DeclContextInternals.h"
22#include "clang/AST/DeclFriend.h"
23#include "clang/AST/DeclObjC.h"
24#include "clang/AST/DeclOpenACC.h"
25#include "clang/AST/DeclOpenMP.h"
26#include "clang/AST/DeclTemplate.h"
27#include "clang/AST/DependentDiagnostic.h"
28#include "clang/AST/ExternalASTSource.h"
29#include "clang/AST/Stmt.h"
30#include "clang/AST/Type.h"
31#include "clang/Basic/IdentifierTable.h"
32#include "clang/Basic/LLVM.h"
33#include "clang/Basic/Module.h"
34#include "clang/Basic/ObjCRuntime.h"
35#include "clang/Basic/PartialDiagnostic.h"
36#include "clang/Basic/SourceLocation.h"
37#include "clang/Basic/TargetInfo.h"
38#include "llvm/ADT/PointerIntPair.h"
39#include "llvm/ADT/StringRef.h"
40#include "llvm/Support/ErrorHandling.h"
41#include "llvm/Support/MathExtras.h"
42#include "llvm/Support/VersionTuple.h"
43#include "llvm/Support/raw_ostream.h"
44#include <algorithm>
45#include <cassert>
46#include <cstddef>
47#include <string>
48#include <tuple>
49#include <utility>
50
51using namespace clang;
52
53//===----------------------------------------------------------------------===//
54// Statistics
55//===----------------------------------------------------------------------===//
56
57#define DECL(DERIVED, BASE) static int n##DERIVED##s = 0;
58#define ABSTRACT_DECL(DECL)
59#include "clang/AST/DeclNodes.inc"
60
61#define DECL(DERIVED, BASE) \
62 static_assert(alignof(Decl) >= alignof(DERIVED##Decl), \
63 "Alignment sufficient after objects prepended to " #DERIVED);
64#define ABSTRACT_DECL(DECL)
65#include "clang/AST/DeclNodes.inc"
66
67void *Decl::operator new(std::size_t Size, const ASTContext &Context,
68 GlobalDeclID ID, std::size_t Extra) {
69 // Allocate an extra 8 bytes worth of storage, which ensures that the
70 // resulting pointer will still be 8-byte aligned.
71 static_assert(sizeof(uint64_t) >= alignof(Decl), "Decl won't be misaligned");
72 void *Start = Context.Allocate(Size: Size + Extra + 8);
73 void *Result = (char*)Start + 8;
74
75 uint64_t *PrefixPtr = (uint64_t *)Result - 1;
76
77 *PrefixPtr = ID.getRawValue();
78
79 // We leave the upper 16 bits to store the module IDs. 48 bits should be
80 // sufficient to store a declaration ID. See the comments in setOwningModuleID
81 // for details.
82 assert((*PrefixPtr < llvm::maskTrailingOnes<uint64_t>(48)) &&
83 "Current Implementation limits the number of module files to not "
84 "exceed 2^16. Contact Clang Developers to remove the limitation.");
85
86 return Result;
87}
88
89void *Decl::operator new(std::size_t Size, const ASTContext &Ctx,
90 DeclContext *Parent, std::size_t Extra) {
91 assert(!Parent || &Parent->getParentASTContext() == &Ctx);
92 // With local visibility enabled, we track the owning module even for local
93 // declarations. We create the TU decl early and may not yet know what the
94 // LangOpts are, so conservatively allocate the storage.
95 if (Ctx.getLangOpts().trackLocalOwningModule() || !Parent) {
96 // Ensure required alignment of the resulting object by adding extra
97 // padding at the start if required.
98 size_t ExtraAlign =
99 llvm::offsetToAlignment(Value: sizeof(Module *), Alignment: llvm::Align(alignof(Decl)));
100 auto *Buffer = reinterpret_cast<char *>(
101 ::operator new(Bytes: ExtraAlign + sizeof(Module *) + Size + Extra, C: Ctx));
102 Buffer += ExtraAlign;
103 auto *ParentModule =
104 Parent ? cast<Decl>(Val: Parent)->getOwningModule() : nullptr;
105 return new (Buffer) Module*(ParentModule) + 1;
106 }
107 return ::operator new(Bytes: Size + Extra, C: Ctx);
108}
109
110GlobalDeclID Decl::getGlobalID() const {
111 if (!isFromASTFile())
112 return GlobalDeclID();
113 // See the comments in `Decl::operator new` for details.
114 uint64_t ID = *((const uint64_t *)this - 1);
115 return GlobalDeclID(ID & llvm::maskTrailingOnes<uint64_t>(N: 48));
116}
117
118unsigned Decl::getOwningModuleID() const {
119 if (!isFromASTFile())
120 return 0;
121
122 uint64_t ID = *((const uint64_t *)this - 1);
123 return ID >> 48;
124}
125
126void Decl::setOwningModuleID(unsigned ID) {
127 assert(isFromASTFile() && "Only works on a deserialized declaration");
128 // Currently, we use 64 bits to store the GlobalDeclID and the module ID
129 // to save the space. See `Decl::operator new` for details. To make it,
130 // we split the higher 32 bits to 2 16bits for the module file index of
131 // GlobalDeclID and the module ID. This introduces a limitation that the
132 // number of modules can't exceed 2^16. (The number of module files should be
133 // less than the number of modules).
134 //
135 // It is counter-intuitive to store both the module file index and the
136 // module ID as it seems redundant. However, this is not true.
137 // The module ID may be different from the module file where it is serialized
138 // from for implicit template instantiations. See
139 // https://github.com/llvm/llvm-project/issues/101939
140 //
141 // If we reach the limitation, we have to remove the limitation by asking
142 // every deserialized declaration to pay for yet another 32 bits, or we have
143 // to review the above issue to decide what we should do for it.
144 assert((ID < llvm::maskTrailingOnes<unsigned>(16)) &&
145 "Current Implementation limits the number of modules to not exceed "
146 "2^16. Contact Clang Developers to remove the limitation.");
147 uint64_t *IDAddress = (uint64_t *)this - 1;
148 *IDAddress &= llvm::maskTrailingOnes<uint64_t>(N: 48);
149 *IDAddress |= (uint64_t)ID << 48;
150}
151
152Module *Decl::getTopLevelOwningNamedModule() const {
153 if (getOwningModule() &&
154 getOwningModule()->getTopLevelModule()->isNamedModule())
155 return getOwningModule()->getTopLevelModule();
156
157 return nullptr;
158}
159
160Module *Decl::getOwningModuleSlow() const {
161 assert(isFromASTFile() && "Not from AST file?");
162 return getASTContext().getExternalSource()->getModule(ID: getOwningModuleID());
163}
164
165bool Decl::hasLocalOwningModuleStorage() const {
166 return getASTContext().getLangOpts().trackLocalOwningModule();
167}
168
169const char *Decl::getDeclKindName() const {
170 switch (DeclKind) {
171 default: llvm_unreachable("Declaration not in DeclNodes.inc!");
172#define DECL(DERIVED, BASE) case DERIVED: return #DERIVED;
173#define ABSTRACT_DECL(DECL)
174#include "clang/AST/DeclNodes.inc"
175 }
176}
177
178void Decl::setInvalidDecl(bool Invalid) {
179 InvalidDecl = Invalid;
180 assert(!isa<TagDecl>(this) || !cast<TagDecl>(this)->isCompleteDefinition());
181 if (!Invalid) {
182 return;
183 }
184
185 if (!isa<ParmVarDecl>(Val: this)) {
186 // Defensive maneuver for ill-formed code: we're likely not to make it to
187 // a point where we set the access specifier, so default it to "public"
188 // to avoid triggering asserts elsewhere in the front end.
189 setAccess(AS_public);
190 }
191
192 // Marking a DecompositionDecl as invalid implies all the child BindingDecl's
193 // are invalid too.
194 if (auto *DD = dyn_cast<DecompositionDecl>(Val: this)) {
195 for (auto *Binding : DD->bindings()) {
196 Binding->setInvalidDecl();
197 }
198 }
199}
200
201bool DeclContext::hasValidDeclKind() const {
202 switch (getDeclKind()) {
203#define DECL(DERIVED, BASE) case Decl::DERIVED: return true;
204#define ABSTRACT_DECL(DECL)
205#include "clang/AST/DeclNodes.inc"
206 }
207 return false;
208}
209
210const char *DeclContext::getDeclKindName() const {
211 switch (getDeclKind()) {
212#define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED;
213#define ABSTRACT_DECL(DECL)
214#include "clang/AST/DeclNodes.inc"
215 }
216 llvm_unreachable("Declaration context not in DeclNodes.inc!");
217}
218
219bool Decl::StatisticsEnabled = false;
220void Decl::EnableStatistics() {
221 StatisticsEnabled = true;
222}
223
224void Decl::PrintStats() {
225 llvm::errs() << "\n*** Decl Stats:\n";
226
227 int totalDecls = 0;
228#define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s;
229#define ABSTRACT_DECL(DECL)
230#include "clang/AST/DeclNodes.inc"
231 llvm::errs() << " " << totalDecls << " decls total.\n";
232
233 int totalBytes = 0;
234#define DECL(DERIVED, BASE) \
235 if (n##DERIVED##s > 0) { \
236 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
237 llvm::errs() << " " << n##DERIVED##s << " " #DERIVED " decls, " \
238 << sizeof(DERIVED##Decl) << " each (" \
239 << n##DERIVED##s * sizeof(DERIVED##Decl) \
240 << " bytes)\n"; \
241 }
242#define ABSTRACT_DECL(DECL)
243#include "clang/AST/DeclNodes.inc"
244
245 llvm::errs() << "Total bytes = " << totalBytes << "\n";
246}
247
248void Decl::add(Kind k) {
249 switch (k) {
250#define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break;
251#define ABSTRACT_DECL(DECL)
252#include "clang/AST/DeclNodes.inc"
253 }
254}
255
256bool Decl::isTemplateParameterPack() const {
257 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Val: this))
258 return TTP->isParameterPack();
259 if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Val: this))
260 return NTTP->isParameterPack();
261 if (const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(Val: this))
262 return TTP->isParameterPack();
263 return false;
264}
265
266bool Decl::isParameterPack() const {
267 if (const auto *Var = dyn_cast<ValueDecl>(Val: this))
268 return Var->isParameterPack();
269
270 return isTemplateParameterPack();
271}
272
273FunctionDecl *Decl::getAsFunction() {
274 if (auto *FD = dyn_cast<FunctionDecl>(Val: this))
275 return FD;
276 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(Val: this))
277 return FTD->getTemplatedDecl();
278 return nullptr;
279}
280
281bool Decl::isTemplateDecl() const {
282 return isa<TemplateDecl>(Val: this);
283}
284
285TemplateDecl *Decl::getDescribedTemplate() const {
286 if (auto *FD = dyn_cast<FunctionDecl>(Val: this))
287 return FD->getDescribedFunctionTemplate();
288 if (auto *RD = dyn_cast<CXXRecordDecl>(Val: this))
289 return RD->getDescribedClassTemplate();
290 if (auto *VD = dyn_cast<VarDecl>(Val: this))
291 return VD->getDescribedVarTemplate();
292 if (auto *AD = dyn_cast<TypeAliasDecl>(Val: this))
293 return AD->getDescribedAliasTemplate();
294
295 return nullptr;
296}
297
298const TemplateParameterList *Decl::getDescribedTemplateParams() const {
299 if (auto *TD = getDescribedTemplate())
300 return TD->getTemplateParameters();
301 if (auto *CTPSD = dyn_cast<ClassTemplatePartialSpecializationDecl>(Val: this))
302 return CTPSD->getTemplateParameters();
303 if (auto *VTPSD = dyn_cast<VarTemplatePartialSpecializationDecl>(Val: this))
304 return VTPSD->getTemplateParameters();
305 return nullptr;
306}
307
308bool Decl::isTemplated() const {
309 // A declaration is templated if it is a template or a template pattern, or
310 // is within (lexcially for a friend or local function declaration,
311 // semantically otherwise) a dependent context.
312 if (auto *AsDC = dyn_cast<DeclContext>(Val: this))
313 return AsDC->isDependentContext();
314 auto *DC = getFriendObjectKind() || isLocalExternDecl()
315 ? getLexicalDeclContext() : getDeclContext();
316 return DC->isDependentContext() || isTemplateDecl() ||
317 getDescribedTemplateParams();
318}
319
320unsigned Decl::getTemplateDepth() const {
321 if (auto *DC = dyn_cast<DeclContext>(Val: this))
322 if (DC->isFileContext())
323 return 0;
324
325 if (auto *TPL = getDescribedTemplateParams())
326 return TPL->getDepth() + 1;
327
328 if (auto *ESD = dyn_cast<CXXExpansionStmtDecl>(Val: this))
329 return ESD->getIndexTemplateParm()->getDepth() + 1;
330
331 // If this is a dependent lambda, there might be an enclosing variable
332 // template. In this case, the next step is not the parent DeclContext (or
333 // even a DeclContext at all).
334 auto *RD = dyn_cast<CXXRecordDecl>(Val: this);
335 if (RD && RD->isDependentLambda())
336 if (Decl *Context = RD->getLambdaContextDecl())
337 return Context->getTemplateDepth();
338
339 const DeclContext *DC =
340 getFriendObjectKind() ? getLexicalDeclContext() : getDeclContext();
341 return cast<Decl>(Val: DC)->getTemplateDepth();
342}
343
344const DeclContext *Decl::getParentFunctionOrMethod(bool LexicalParent) const {
345 for (const DeclContext *DC = LexicalParent ? getLexicalDeclContext()
346 : getDeclContext();
347 DC && !DC->isFileContext(); DC = DC->getParent())
348 if (DC->isFunctionOrMethod())
349 return DC;
350
351 return nullptr;
352}
353
354//===----------------------------------------------------------------------===//
355// PrettyStackTraceDecl Implementation
356//===----------------------------------------------------------------------===//
357
358void PrettyStackTraceDecl::print(raw_ostream &OS) const {
359 SourceLocation TheLoc = Loc;
360 if (TheLoc.isInvalid() && TheDecl)
361 TheLoc = TheDecl->getLocation();
362
363 if (TheLoc.isValid()) {
364 TheLoc.print(OS, SM);
365 OS << ": ";
366 }
367
368 OS << Message;
369
370 if (const auto *DN = dyn_cast_or_null<NamedDecl>(Val: TheDecl)) {
371 OS << " '";
372 DN->printQualifiedName(OS);
373 OS << '\'';
374 }
375 OS << '\n';
376}
377
378//===----------------------------------------------------------------------===//
379// Decl Implementation
380//===----------------------------------------------------------------------===//
381
382// Out-of-line virtual method providing a home for Decl.
383Decl::~Decl() = default;
384
385void Decl::setDeclContext(DeclContext *DC) {
386 DeclCtx = DC;
387}
388
389void Decl::setLexicalDeclContext(DeclContext *DC) {
390 if (DC == getLexicalDeclContext())
391 return;
392
393 if (isInSemaDC()) {
394 setDeclContextsImpl(SemaDC: getDeclContext(), LexicalDC: DC, Ctx&: getASTContext());
395 } else {
396 getMultipleDC()->LexicalDC = DC;
397 }
398
399 // FIXME: We shouldn't be changing the lexical context of declarations
400 // imported from AST files.
401 if (!isFromASTFile()) {
402 setModuleOwnershipKind(getModuleOwnershipKindForChildOf(DC));
403 if (hasOwningModule())
404 setLocalOwningModule(cast<Decl>(Val: DC)->getOwningModule());
405 }
406
407 assert(
408 ((getModuleOwnershipKind() != ModuleOwnershipKind::VisibleWhenImported &&
409 getModuleOwnershipKind() != ModuleOwnershipKind::VisiblePromoted) ||
410 getOwningModule()) &&
411 "hidden declaration has no owning module");
412}
413
414void Decl::setDeclContextsImpl(DeclContext *SemaDC, DeclContext *LexicalDC,
415 ASTContext &Ctx) {
416 if (SemaDC == LexicalDC) {
417 DeclCtx = SemaDC;
418 } else {
419 auto *MDC = new (Ctx) Decl::MultipleDC();
420 MDC->SemanticDC = SemaDC;
421 MDC->LexicalDC = LexicalDC;
422 DeclCtx = MDC;
423 }
424}
425
426bool Decl::isInLocalScopeForInstantiation() const {
427 const DeclContext *LDC = getLexicalDeclContext();
428 if (!LDC->isDependentContext())
429 return false;
430 while (true) {
431 if (LDC->isFunctionOrMethod())
432 return true;
433 if (!isa<TagDecl>(Val: LDC))
434 return false;
435 if (const auto *CRD = dyn_cast<CXXRecordDecl>(Val: LDC))
436 if (CRD->isLambda())
437 return true;
438 LDC = LDC->getLexicalParent();
439 }
440 return false;
441}
442
443bool Decl::isInAnonymousNamespace() const {
444 for (const DeclContext *DC = getDeclContext(); DC; DC = DC->getParent()) {
445 if (const auto *ND = dyn_cast<NamespaceDecl>(Val: DC))
446 if (ND->isAnonymousNamespace())
447 return true;
448 }
449
450 return false;
451}
452
453bool Decl::isInStdNamespace() const {
454 const DeclContext *DC = getDeclContext();
455 return DC && DC->getNonTransparentContext()->isStdNamespace();
456}
457
458bool Decl::isFileContextDecl() const {
459 const auto *DC = dyn_cast<DeclContext>(Val: this);
460 return DC && DC->isFileContext();
461}
462
463bool Decl::isFlexibleArrayMemberLike(
464 const ASTContext &Ctx, const Decl *D, QualType Ty,
465 LangOptions::StrictFlexArraysLevelKind StrictFlexArraysLevel,
466 bool IgnoreTemplateOrMacroSubstitution) {
467 // For compatibility with existing code, we treat arrays of length 0 or
468 // 1 as flexible array members.
469 const auto *CAT = Ctx.getAsConstantArrayType(T: Ty);
470 if (CAT) {
471 using FAMKind = LangOptions::StrictFlexArraysLevelKind;
472
473 llvm::APInt Size = CAT->getSize();
474 if (StrictFlexArraysLevel == FAMKind::IncompleteOnly)
475 return false;
476
477 // GCC extension, only allowed to represent a FAM.
478 if (Size.isZero())
479 return true;
480
481 if (StrictFlexArraysLevel == FAMKind::ZeroOrIncomplete && Size.uge(RHS: 1))
482 return false;
483
484 if (StrictFlexArraysLevel == FAMKind::OneZeroOrIncomplete && Size.uge(RHS: 2))
485 return false;
486 } else if (!Ctx.getAsIncompleteArrayType(T: Ty)) {
487 return false;
488 }
489
490 if (const auto *OID = dyn_cast_if_present<ObjCIvarDecl>(Val: D))
491 return OID->getNextIvar() == nullptr;
492
493 const auto *FD = dyn_cast_if_present<FieldDecl>(Val: D);
494 if (!FD)
495 return false;
496
497 if (CAT) {
498 // GCC treats an array memeber of a union as an FAM if the size is one or
499 // zero.
500 llvm::APInt Size = CAT->getSize();
501 if (FD->getParent()->isUnion() && (Size.isZero() || Size.isOne()))
502 return true;
503 }
504
505 // Don't consider sizes resulting from macro expansions or template argument
506 // substitution to form C89 tail-padded arrays.
507 if (IgnoreTemplateOrMacroSubstitution) {
508 TypeSourceInfo *TInfo = FD->getTypeSourceInfo();
509 while (TInfo) {
510 TypeLoc TL = TInfo->getTypeLoc();
511
512 // Look through typedefs.
513 if (TypedefTypeLoc TTL = TL.getAsAdjusted<TypedefTypeLoc>()) {
514 TInfo = TTL.getDecl()->getTypeSourceInfo();
515 continue;
516 }
517
518 if (auto CTL = TL.getAs<ConstantArrayTypeLoc>()) {
519 if (const Expr *SizeExpr =
520 dyn_cast_if_present<IntegerLiteral>(Val: CTL.getSizeExpr());
521 !SizeExpr || SizeExpr->getExprLoc().isMacroID())
522 return false;
523 }
524
525 break;
526 }
527 }
528
529 // Test that the field is the last in the structure.
530 RecordDecl::field_iterator FI(
531 DeclContext::decl_iterator(const_cast<FieldDecl *>(FD)));
532 return ++FI == FD->getParent()->field_end();
533}
534
535TranslationUnitDecl *Decl::getTranslationUnitDecl() {
536 if (auto *TUD = dyn_cast<TranslationUnitDecl>(Val: this))
537 return TUD;
538
539 DeclContext *DC = getDeclContext();
540 assert(DC && "This decl is not contained in a translation unit!");
541
542 while (!DC->isTranslationUnit()) {
543 DC = DC->getParent();
544 assert(DC && "This decl is not contained in a translation unit!");
545 }
546
547 return cast<TranslationUnitDecl>(Val: DC);
548}
549
550ASTContext &Decl::getASTContext() const {
551 return getTranslationUnitDecl()->getASTContext();
552}
553
554/// Helper to get the language options from the ASTContext.
555/// Defined out of line to avoid depending on ASTContext.h.
556const LangOptions &Decl::getLangOpts() const {
557 return getASTContext().getLangOpts();
558}
559
560ASTMutationListener *Decl::getASTMutationListener() const {
561 return getASTContext().getASTMutationListener();
562}
563
564unsigned Decl::getMaxAlignment() const {
565 if (!hasAttrs())
566 return 0;
567
568 unsigned Align = 0;
569 const AttrVec &V = getAttrs();
570 ASTContext &Ctx = getASTContext();
571 specific_attr_iterator<AlignedAttr> I(V.begin()), E(V.end());
572 for (; I != E; ++I) {
573 if (!I->isAlignmentErrorDependent())
574 Align = std::max(a: Align, b: I->getAlignment(Ctx));
575 }
576 return Align;
577}
578
579bool Decl::isUsed(bool CheckUsedAttr) const {
580 const Decl *CanonD = getCanonicalDecl();
581 if (CanonD->Used)
582 return true;
583
584 // Check for used attribute.
585 // Ask the most recent decl, since attributes accumulate in the redecl chain.
586 if (CheckUsedAttr && getMostRecentDecl()->hasAttr<UsedAttr>())
587 return true;
588
589 // The information may have not been deserialized yet. Force deserialization
590 // to complete the needed information.
591 return getMostRecentDecl()->getCanonicalDecl()->Used;
592}
593
594void Decl::markUsed(ASTContext &C) {
595 if (isUsed(CheckUsedAttr: false))
596 return;
597
598 if (C.getASTMutationListener())
599 C.getASTMutationListener()->DeclarationMarkedUsed(D: this);
600
601 setIsUsed();
602}
603
604bool Decl::isReferenced() const {
605 if (Referenced)
606 return true;
607
608 // Check redeclarations.
609 for (const auto *I : redecls())
610 if (I->Referenced)
611 return true;
612
613 return false;
614}
615
616ExternalSourceSymbolAttr *Decl::getExternalSourceSymbolAttr() const {
617 const Decl *Definition = nullptr;
618 if (auto *ID = dyn_cast<ObjCInterfaceDecl>(Val: this)) {
619 Definition = ID->getDefinition();
620 } else if (auto *PD = dyn_cast<ObjCProtocolDecl>(Val: this)) {
621 Definition = PD->getDefinition();
622 } else if (auto *TD = dyn_cast<TagDecl>(Val: this)) {
623 Definition = TD->getDefinition();
624 }
625 if (!Definition)
626 Definition = this;
627
628 if (auto *attr = Definition->getAttr<ExternalSourceSymbolAttr>())
629 return attr;
630 if (auto *dcd = dyn_cast<Decl>(Val: getDeclContext())) {
631 return dcd->getAttr<ExternalSourceSymbolAttr>();
632 }
633
634 return nullptr;
635}
636
637bool Decl::hasDefiningAttr() const {
638 return hasAttr<AliasAttr>() || hasAttr<IFuncAttr>() ||
639 hasAttr<LoaderUninitializedAttr>();
640}
641
642const Attr *Decl::getDefiningAttr() const {
643 if (auto *AA = getAttr<AliasAttr>())
644 return AA;
645 if (auto *IFA = getAttr<IFuncAttr>())
646 return IFA;
647 if (auto *NZA = getAttr<LoaderUninitializedAttr>())
648 return NZA;
649 return nullptr;
650}
651
652static StringRef getRealizedPlatform(const AvailabilityAttr *A,
653 const ASTContext &Context) {
654 // Check if this is an App Extension "platform", and if so chop off
655 // the suffix for matching with the actual platform.
656 StringRef RealizedPlatform = A->getPlatform()->getName();
657 if (!Context.getLangOpts().AppExt)
658 return RealizedPlatform;
659 size_t suffix = RealizedPlatform.rfind(Str: "_app_extension");
660 if (suffix != StringRef::npos)
661 return RealizedPlatform.slice(Start: 0, End: suffix);
662 return RealizedPlatform;
663}
664
665/// Determine the availability of the given declaration based on
666/// the target platform.
667///
668/// When it returns an availability result other than \c AR_Available,
669/// if the \p Message parameter is non-NULL, it will be set to a
670/// string describing why the entity is unavailable.
671///
672/// FIXME: Make these strings localizable, since they end up in
673/// diagnostics.
674static AvailabilityResult CheckAvailability(ASTContext &Context,
675 const AvailabilityAttr *A,
676 std::string *Message,
677 VersionTuple EnclosingVersion) {
678 if (EnclosingVersion.empty())
679 EnclosingVersion = Context.getTargetInfo().getPlatformMinVersion();
680
681 if (EnclosingVersion.empty())
682 return AR_Available;
683
684 StringRef ActualPlatform = A->getPlatform()->getName();
685 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName();
686
687 // Match the platform name.
688 if (getRealizedPlatform(A, Context) != TargetPlatform)
689 return AR_Available;
690
691 StringRef PrettyPlatformName
692 = AvailabilityAttr::getPrettyPlatformName(Platform: ActualPlatform);
693
694 if (PrettyPlatformName.empty())
695 PrettyPlatformName = ActualPlatform;
696
697 std::string HintMessage;
698 if (!A->getMessage().empty()) {
699 HintMessage = " - ";
700 HintMessage += A->getMessage();
701 }
702
703 // Make sure that this declaration has not been marked 'unavailable'.
704 if (A->getUnavailable()) {
705 if (Message) {
706 Message->clear();
707 llvm::raw_string_ostream Out(*Message);
708 Out << "not available on " << PrettyPlatformName
709 << HintMessage;
710 }
711
712 return AR_Unavailable;
713 }
714
715 // Make sure that this declaration has already been introduced.
716 if (!A->getIntroduced().empty() &&
717 EnclosingVersion < A->getIntroduced()) {
718 const IdentifierInfo *IIEnv = A->getEnvironment();
719 auto &Triple = Context.getTargetInfo().getTriple();
720 StringRef TargetEnv = Triple.getEnvironmentName();
721 StringRef EnvName =
722 llvm::Triple::getEnvironmentTypeName(Kind: Triple.getEnvironment());
723 // Matching environment or no environment on attribute.
724 if (!IIEnv || (Triple.hasEnvironment() && IIEnv->getName() == TargetEnv)) {
725 if (Message) {
726 Message->clear();
727 llvm::raw_string_ostream Out(*Message);
728 VersionTuple VTI(A->getIntroduced());
729 Out << "introduced in " << PrettyPlatformName << " " << VTI;
730 if (Triple.hasEnvironment())
731 Out << " " << EnvName;
732 Out << HintMessage;
733 }
734 }
735 // Non-matching environment or no environment on target.
736 else {
737 if (Message) {
738 Message->clear();
739 llvm::raw_string_ostream Out(*Message);
740 Out << "not available on " << PrettyPlatformName;
741 if (Triple.hasEnvironment())
742 Out << " " << EnvName;
743 Out << HintMessage;
744 }
745 }
746
747 return A->getStrict() ? AR_Unavailable : AR_NotYetIntroduced;
748 }
749
750 // Make sure that this declaration hasn't been obsoleted.
751 if (!A->getObsoleted().empty() && EnclosingVersion >= A->getObsoleted()) {
752 if (Message) {
753 Message->clear();
754 llvm::raw_string_ostream Out(*Message);
755 VersionTuple VTO(A->getObsoleted());
756 Out << "obsoleted in " << PrettyPlatformName << ' '
757 << VTO << HintMessage;
758 }
759
760 return AR_Unavailable;
761 }
762
763 // Make sure that this declaration hasn't been deprecated.
764 if (!A->getDeprecated().empty() && EnclosingVersion >= A->getDeprecated()) {
765 if (Message) {
766 Message->clear();
767 llvm::raw_string_ostream Out(*Message);
768 VersionTuple VTD(A->getDeprecated());
769 Out << "first deprecated in " << PrettyPlatformName << ' '
770 << VTD << HintMessage;
771 }
772
773 return AR_Deprecated;
774 }
775
776 return AR_Available;
777}
778
779AvailabilityResult Decl::getAvailability(std::string *Message,
780 VersionTuple EnclosingVersion,
781 StringRef *RealizedPlatform) const {
782 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(Val: this))
783 return FTD->getTemplatedDecl()->getAvailability(Message, EnclosingVersion,
784 RealizedPlatform);
785
786 AvailabilityResult Result = AR_Available;
787 std::string ResultMessage;
788
789 for (const auto *A : attrs()) {
790 if (const auto *Deprecated = dyn_cast<DeprecatedAttr>(Val: A)) {
791 if (Result >= AR_Deprecated)
792 continue;
793
794 if (Message)
795 ResultMessage = std::string(Deprecated->getMessage());
796
797 Result = AR_Deprecated;
798 continue;
799 }
800
801 if (const auto *Unavailable = dyn_cast<UnavailableAttr>(Val: A)) {
802 if (Message)
803 *Message = std::string(Unavailable->getMessage());
804 return AR_Unavailable;
805 }
806
807 if (const auto *Availability = dyn_cast<AvailabilityAttr>(Val: A)) {
808 Availability = Availability->getEffectiveAttr();
809 AvailabilityResult AR = CheckAvailability(Context&: getASTContext(), A: Availability,
810 Message, EnclosingVersion);
811
812 if (AR == AR_Unavailable) {
813 if (RealizedPlatform)
814 *RealizedPlatform = Availability->getPlatform()->getName();
815 return AR_Unavailable;
816 }
817
818 if (AR > Result) {
819 Result = AR;
820 if (Message)
821 ResultMessage.swap(s&: *Message);
822 }
823 continue;
824 }
825 }
826
827 if (Message)
828 Message->swap(s&: ResultMessage);
829 return Result;
830}
831
832VersionTuple Decl::getVersionIntroduced() const {
833 const ASTContext &Context = getASTContext();
834 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName();
835 for (const auto *A : attrs()) {
836 if (const auto *Availability = dyn_cast<AvailabilityAttr>(Val: A)) {
837 Availability = Availability->getEffectiveAttr();
838 if (getRealizedPlatform(A: Availability, Context) == TargetPlatform) {
839 if (!Availability->getIntroduced().empty())
840 return Availability->getIntroduced();
841 }
842 }
843 }
844 return {};
845}
846
847bool Decl::canBeWeakImported(bool &IsDefinition) const {
848 IsDefinition = false;
849
850 // Variables, if they aren't definitions.
851 if (const auto *Var = dyn_cast<VarDecl>(Val: this)) {
852 if (Var->isThisDeclarationADefinition()) {
853 IsDefinition = true;
854 return false;
855 }
856 return true;
857 }
858 // Functions, if they aren't definitions.
859 if (const auto *FD = dyn_cast<FunctionDecl>(Val: this)) {
860 if (FD->hasBody()) {
861 IsDefinition = true;
862 return false;
863 }
864 return true;
865
866 }
867 // Objective-C classes, if this is the non-fragile runtime.
868 if (isa<ObjCInterfaceDecl>(Val: this) &&
869 getASTContext().getLangOpts().ObjCRuntime.hasWeakClassImport()) {
870 return true;
871 }
872 // Nothing else.
873 return false;
874}
875
876bool Decl::isWeakImported() const {
877 bool IsDefinition;
878 if (!canBeWeakImported(IsDefinition))
879 return false;
880
881 for (const auto *A : getMostRecentDecl()->attrs()) {
882 if (isa<WeakImportAttr>(Val: A))
883 return true;
884
885 if (const auto *Availability = dyn_cast<AvailabilityAttr>(Val: A)) {
886 Availability = Availability->getEffectiveAttr();
887 if (CheckAvailability(Context&: getASTContext(), A: Availability, Message: nullptr,
888 EnclosingVersion: VersionTuple()) == AR_NotYetIntroduced)
889 return true;
890 }
891 }
892
893 return false;
894}
895
896unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
897 switch (DeclKind) {
898 case Function:
899 case CXXDeductionGuide:
900 case CXXMethod:
901 case CXXConstructor:
902 case ConstructorUsingShadow:
903 case CXXDestructor:
904 case CXXConversion:
905 case EnumConstant:
906 case Var:
907 case ImplicitParam:
908 case ParmVar:
909 case ObjCMethod:
910 case ObjCProperty:
911 case MSProperty:
912 case HLSLBuffer:
913 case HLSLRootSignature:
914 return IDNS_Ordinary;
915 case Label:
916 return IDNS_Label;
917
918 case Binding:
919 case NonTypeTemplateParm:
920 case VarTemplate:
921 case Concept:
922 // These (C++-only) declarations are found by redeclaration lookup for
923 // tag types, so we include them in the tag namespace.
924 return IDNS_Ordinary | IDNS_Tag;
925
926 case ObjCCompatibleAlias:
927 case ObjCInterface:
928 return IDNS_Ordinary | IDNS_Type;
929
930 case Typedef:
931 case TypeAlias:
932 case TemplateTypeParm:
933 case ObjCTypeParam:
934 return IDNS_Ordinary | IDNS_Type;
935
936 case UnresolvedUsingTypename:
937 return IDNS_Ordinary | IDNS_Type | IDNS_Using;
938
939 case UsingShadow:
940 return 0; // we'll actually overwrite this later
941
942 case UnresolvedUsingValue:
943 return IDNS_Ordinary | IDNS_Using;
944
945 case Using:
946 case UsingPack:
947 case UsingEnum:
948 return IDNS_Using;
949
950 case ObjCProtocol:
951 return IDNS_ObjCProtocol;
952
953 case Field:
954 case IndirectField:
955 case ObjCAtDefsField:
956 case ObjCIvar:
957 return IDNS_Member;
958
959 case Record:
960 case CXXRecord:
961 case Enum:
962 return IDNS_Tag | IDNS_Type;
963
964 case Namespace:
965 case NamespaceAlias:
966 return IDNS_Namespace;
967
968 case FunctionTemplate:
969 return IDNS_Ordinary;
970
971 case ClassTemplate:
972 case TemplateTemplateParm:
973 case TypeAliasTemplate:
974 return IDNS_Ordinary | IDNS_Tag | IDNS_Type;
975
976 case UnresolvedUsingIfExists:
977 return IDNS_Type | IDNS_Ordinary;
978
979 case OMPDeclareReduction:
980 return IDNS_OMPReduction;
981
982 case OMPDeclareMapper:
983 return IDNS_OMPMapper;
984
985 // Never have names.
986 case Friend:
987 case FriendTemplate:
988 case AccessSpec:
989 case LinkageSpec:
990 case Export:
991 case FileScopeAsm:
992 case TopLevelStmt:
993 case StaticAssert:
994 case ObjCPropertyImpl:
995 case PragmaComment:
996 case PragmaDetectMismatch:
997 case Block:
998 case Captured:
999 case OutlinedFunction:
1000 case TranslationUnit:
1001 case ExternCContext:
1002 case Decomposition:
1003 case MSGuid:
1004 case UnnamedGlobalConstant:
1005 case TemplateParamObject:
1006
1007 case UsingDirective:
1008 case BuiltinTemplate:
1009 case ClassTemplateSpecialization:
1010 case ClassTemplatePartialSpecialization:
1011 case VarTemplateSpecialization:
1012 case VarTemplatePartialSpecialization:
1013 case ObjCImplementation:
1014 case ObjCCategory:
1015 case ObjCCategoryImpl:
1016 case Import:
1017 case OMPThreadPrivate:
1018 case OMPGroupPrivate:
1019 case OMPAllocate:
1020 case OMPRequires:
1021 case OMPCapturedExpr:
1022 case Empty:
1023 case LifetimeExtendedTemporary:
1024 case RequiresExprBody:
1025 case ImplicitConceptSpecialization:
1026 case OpenACCDeclare:
1027 case OpenACCRoutine:
1028 case ExplicitInstantiation:
1029 case CXXExpansionStmt:
1030 // Never looked up by name.
1031 return 0;
1032 }
1033
1034 llvm_unreachable("Invalid DeclKind!");
1035}
1036
1037void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) {
1038 assert(!HasAttrs && "Decl already contains attrs.");
1039
1040 AttrVec &AttrBlank = Ctx.getDeclAttrs(D: this);
1041 assert(AttrBlank.empty() && "HasAttrs was wrong?");
1042
1043 AttrBlank = attrs;
1044 HasAttrs = true;
1045}
1046
1047void Decl::dropAttrs() {
1048 if (!HasAttrs) return;
1049
1050 HasAttrs = false;
1051 getASTContext().eraseDeclAttrs(D: this);
1052}
1053
1054void Decl::addAttr(Attr *A) {
1055 if (!hasAttrs()) {
1056 setAttrs(AttrVec(1, A));
1057 return;
1058 }
1059
1060 AttrVec &Attrs = getAttrs();
1061 if (!A->isInherited()) {
1062 Attrs.push_back(Elt: A);
1063 return;
1064 }
1065
1066 // Attribute inheritance is processed after attribute parsing. To keep the
1067 // order as in the source code, add inherited attributes before non-inherited
1068 // ones.
1069 auto I = Attrs.begin(), E = Attrs.end();
1070 for (; I != E; ++I) {
1071 if (!(*I)->isInherited())
1072 break;
1073 }
1074 Attrs.insert(I, Elt: A);
1075}
1076
1077const AttrVec &Decl::getAttrs() const {
1078 assert(HasAttrs && "No attrs to get!");
1079 return getASTContext().getDeclAttrs(D: this);
1080}
1081
1082Decl *Decl::castFromDeclContext (const DeclContext *D) {
1083 Decl::Kind DK = D->getDeclKind();
1084 switch (DK) {
1085#define DECL(NAME, BASE)
1086#define DECL_CONTEXT(NAME) \
1087 case Decl::NAME: \
1088 return static_cast<NAME##Decl *>(const_cast<DeclContext *>(D));
1089#include "clang/AST/DeclNodes.inc"
1090 default:
1091 llvm_unreachable("a decl that inherits DeclContext isn't handled");
1092 }
1093}
1094
1095DeclContext *Decl::castToDeclContext(const Decl *D) {
1096 Decl::Kind DK = D->getKind();
1097 switch(DK) {
1098#define DECL(NAME, BASE)
1099#define DECL_CONTEXT(NAME) \
1100 case Decl::NAME: \
1101 return static_cast<NAME##Decl *>(const_cast<Decl *>(D));
1102#include "clang/AST/DeclNodes.inc"
1103 default:
1104 llvm_unreachable("a decl that inherits DeclContext isn't handled");
1105 }
1106}
1107
1108SourceLocation Decl::getBodyRBrace() const {
1109 // Special handling of FunctionDecl to avoid de-serializing the body from PCH.
1110 // FunctionDecl stores EndRangeLoc for this purpose.
1111 if (const auto *FD = dyn_cast<FunctionDecl>(Val: this)) {
1112 const FunctionDecl *Definition;
1113 if (FD->hasBody(Definition))
1114 return Definition->getSourceRange().getEnd();
1115 return {};
1116 }
1117
1118 if (Stmt *Body = getBody())
1119 return Body->getSourceRange().getEnd();
1120
1121 return {};
1122}
1123
1124bool Decl::AccessDeclContextCheck() const {
1125#ifndef NDEBUG
1126 // Suppress this check if any of the following hold:
1127 // 1. this is the translation unit (and thus has no parent)
1128 // 2. this is a template parameter (and thus doesn't belong to its context)
1129 // 3. this is a non-type template parameter
1130 // 4. the context is not a record
1131 // 5. it's invalid
1132 // 6. it's a C++0x static_assert.
1133 // 7. it's a block literal declaration
1134 // 8. it's a temporary with lifetime extended due to being default value.
1135 if (isa<TranslationUnitDecl>(this) || isa<TemplateTypeParmDecl>(this) ||
1136 isa<NonTypeTemplateParmDecl>(this) || !getDeclContext() ||
1137 !isa<CXXRecordDecl>(getDeclContext()) || isInvalidDecl() ||
1138 isa<StaticAssertDecl>(this) || isa<BlockDecl>(this) ||
1139 // FIXME: a ParmVarDecl can have ClassTemplateSpecialization
1140 // as DeclContext (?).
1141 isa<ParmVarDecl>(this) ||
1142 // FIXME: a ClassTemplateSpecialization or CXXRecordDecl can have
1143 // AS_none as access specifier.
1144 isa<CXXRecordDecl>(this) || isa<LifetimeExtendedTemporaryDecl>(this))
1145 return true;
1146
1147 assert(Access != AS_none &&
1148 "Access specifier is AS_none inside a record decl");
1149#endif
1150 return true;
1151}
1152
1153bool Decl::isInExportDeclContext() const {
1154 const DeclContext *DC = getLexicalDeclContext();
1155
1156 while (DC && !isa<ExportDecl>(Val: DC))
1157 DC = DC->getLexicalParent();
1158
1159 return isa_and_nonnull<ExportDecl>(Val: DC);
1160}
1161
1162bool Decl::isModuleLocal() const {
1163 if (isa<NamespaceDecl, TranslationUnitDecl>(Val: this))
1164 return false;
1165 auto *M = getOwningModule();
1166 return M && M->isNamedModule() &&
1167 getModuleOwnershipKind() == ModuleOwnershipKind::ReachableWhenImported;
1168}
1169
1170bool Decl::isInAnotherModuleUnit() const {
1171 auto *M = getOwningModule();
1172
1173 if (!M)
1174 return false;
1175
1176 // FIXME or NOTE: maybe we need to be clear about the semantics
1177 // of clang header modules. e.g., if this lives in a clang header
1178 // module included by the current unit, should we return false
1179 // here?
1180 //
1181 // This is clear for header units as the specification says the
1182 // header units live in a synthesised translation unit. So we
1183 // can return false here.
1184 M = M->getTopLevelModule();
1185 if (!M->isNamedModule())
1186 return false;
1187
1188 return M != getASTContext().getCurrentNamedModule();
1189}
1190
1191bool Decl::isInCurrentModuleUnit() const {
1192 auto *M = getOwningModule();
1193
1194 if (!M || !M->isNamedModule())
1195 return false;
1196
1197 return M == getASTContext().getCurrentNamedModule();
1198}
1199
1200bool Decl::shouldEmitInExternalSource() const {
1201 ExternalASTSource *Source = getASTContext().getExternalSource();
1202 if (!Source)
1203 return false;
1204
1205 return Source->hasExternalDefinitions(D: this) == ExternalASTSource::EK_Always;
1206}
1207
1208bool Decl::isFromExplicitGlobalModule() const {
1209 return getOwningModule() && getOwningModule()->isExplicitGlobalModule();
1210}
1211
1212bool Decl::isFromGlobalModule() const {
1213 return getOwningModule() && getOwningModule()->isGlobalModule();
1214}
1215
1216bool Decl::isInNamedModule() const {
1217 return getOwningModule() && getOwningModule()->isNamedModule();
1218}
1219
1220bool Decl::isFromHeaderUnit() const {
1221 return getOwningModule() && getOwningModule()->isHeaderUnit();
1222}
1223
1224static Decl::Kind getKind(const Decl *D) { return D->getKind(); }
1225static Decl::Kind getKind(const DeclContext *DC) { return DC->getDeclKind(); }
1226
1227int64_t Decl::getID() const {
1228 return getASTContext().getAllocator().identifyKnownAlignedObject<Decl>(Ptr: this);
1229}
1230
1231const FunctionType *Decl::getFunctionType(bool BlocksToo) const {
1232 QualType Ty;
1233 if (const auto *D = dyn_cast<ValueDecl>(Val: this))
1234 Ty = D->getType();
1235 else if (const auto *D = dyn_cast<TypedefNameDecl>(Val: this))
1236 Ty = D->getUnderlyingType();
1237 else
1238 return nullptr;
1239
1240 if (Ty.isNull()) {
1241 // BindingDecls do not have types during parsing, so return nullptr. This is
1242 // the only known case where `Ty` is null.
1243 assert(isa<BindingDecl>(this));
1244 return nullptr;
1245 }
1246
1247 if (Ty->isFunctionPointerType())
1248 Ty = Ty->castAs<PointerType>()->getPointeeType();
1249 else if (Ty->isMemberFunctionPointerType())
1250 Ty = Ty->castAs<MemberPointerType>()->getPointeeType();
1251 else if (Ty->isFunctionReferenceType())
1252 Ty = Ty->castAs<ReferenceType>()->getPointeeType();
1253 else if (BlocksToo && Ty->isBlockPointerType())
1254 Ty = Ty->castAs<BlockPointerType>()->getPointeeType();
1255
1256 return Ty->getAs<FunctionType>();
1257}
1258
1259bool Decl::isFunctionPointerType() const {
1260 QualType Ty;
1261 if (const auto *D = dyn_cast<ValueDecl>(Val: this))
1262 Ty = D->getType();
1263 else if (const auto *D = dyn_cast<TypedefNameDecl>(Val: this))
1264 Ty = D->getUnderlyingType();
1265 else
1266 return false;
1267
1268 return Ty.getCanonicalType()->isFunctionPointerType();
1269}
1270
1271DeclContext *Decl::getNonTransparentDeclContext() {
1272 assert(getDeclContext());
1273 return getDeclContext()->getNonTransparentContext();
1274}
1275
1276/// Starting at a given context (a Decl or DeclContext), look for a
1277/// code context that is not a closure (a lambda, block, etc.).
1278template <class T> static Decl *getNonClosureContext(T *D) {
1279 if (getKind(D) == Decl::CXXMethod) {
1280 auto *MD = cast<CXXMethodDecl>(D);
1281 if (MD->getOverloadedOperator() == OO_Call &&
1282 MD->getParent()->isLambda())
1283 return getNonClosureContext(MD->getParent()->getParent());
1284 return MD;
1285 }
1286 if (auto *FD = dyn_cast<FunctionDecl>(D))
1287 return FD;
1288 if (auto *MD = dyn_cast<ObjCMethodDecl>(D))
1289 return MD;
1290 if (auto *BD = dyn_cast<BlockDecl>(D))
1291 return getNonClosureContext(BD->getParent());
1292 if (auto *CD = dyn_cast<CapturedDecl>(D))
1293 return getNonClosureContext(CD->getParent());
1294 if (auto *OFD = dyn_cast<OutlinedFunctionDecl>(D))
1295 return getNonClosureContext(OFD->getParent());
1296 return nullptr;
1297}
1298
1299Decl *Decl::getNonClosureContext() {
1300 return ::getNonClosureContext(D: this);
1301}
1302
1303Decl *DeclContext::getNonClosureAncestor() {
1304 return ::getNonClosureContext(D: this);
1305}
1306
1307//===----------------------------------------------------------------------===//
1308// DeclContext Implementation
1309//===----------------------------------------------------------------------===//
1310
1311DeclContext::DeclContext(Decl::Kind K) {
1312 DeclContextBits.DeclKind = K;
1313 setHasExternalLexicalStorage(false);
1314 setHasExternalVisibleStorage(false);
1315 setNeedToReconcileExternalVisibleStorage(false);
1316 setHasLazyLocalLexicalLookups(false);
1317 setHasLazyExternalLexicalLookups(false);
1318 setUseQualifiedLookup(false);
1319}
1320
1321bool DeclContext::classof(const Decl *D) {
1322 Decl::Kind DK = D->getKind();
1323 switch (DK) {
1324#define DECL(NAME, BASE)
1325#define DECL_CONTEXT(NAME) case Decl::NAME:
1326#include "clang/AST/DeclNodes.inc"
1327 return true;
1328 default:
1329 return false;
1330 }
1331}
1332
1333DeclContext::~DeclContext() = default;
1334
1335/// Find the parent context of this context that will be
1336/// used for unqualified name lookup.
1337///
1338/// Generally, the parent lookup context is the semantic context. However, for
1339/// a friend function the parent lookup context is the lexical context, which
1340/// is the class in which the friend is declared.
1341DeclContext *DeclContext::getLookupParent() {
1342 // FIXME: Find a better way to identify friends.
1343 if (isa<FunctionDecl>(Val: this))
1344 if (getParent()->getRedeclContext()->isFileContext() &&
1345 getLexicalParent()->getRedeclContext()->isRecord())
1346 return getLexicalParent();
1347
1348 // A lookup within the call operator of a lambda never looks in the lambda
1349 // class; instead, skip to the context in which that closure type is
1350 // declared.
1351 if (isLambdaCallOperator(DC: this))
1352 return getParent()->getParent();
1353
1354 return getParent();
1355}
1356
1357const BlockDecl *DeclContext::getInnermostBlockDecl() const {
1358 const DeclContext *Ctx = this;
1359
1360 do {
1361 if (Ctx->isClosure())
1362 return cast<BlockDecl>(Val: Ctx);
1363 Ctx = Ctx->getParent();
1364 } while (Ctx);
1365
1366 return nullptr;
1367}
1368
1369bool DeclContext::isInlineNamespace() const {
1370 return isNamespace() &&
1371 cast<NamespaceDecl>(Val: this)->isInline();
1372}
1373
1374bool DeclContext::isStdNamespace() const {
1375 if (!isNamespace())
1376 return false;
1377
1378 const auto *ND = cast<NamespaceDecl>(Val: this);
1379 if (ND->isInline()) {
1380 return ND->getParent()->isStdNamespace();
1381 }
1382
1383 if (!getParent()->getRedeclContext()->isTranslationUnit())
1384 return false;
1385
1386 const IdentifierInfo *II = ND->getIdentifier();
1387 return II && II->isStr(Str: "std");
1388}
1389
1390bool DeclContext::isDependentContext() const {
1391 if (isFileContext())
1392 return false;
1393
1394 if (isa<ClassTemplatePartialSpecializationDecl, CXXExpansionStmtDecl>(Val: this))
1395 return true;
1396
1397 if (const auto *Record = dyn_cast<CXXRecordDecl>(Val: this)) {
1398 if (Record->getDescribedClassTemplate())
1399 return true;
1400
1401 if (Record->isDependentLambda())
1402 return true;
1403 if (Record->isNeverDependentLambda())
1404 return false;
1405 }
1406
1407 if (const auto *Function = dyn_cast<FunctionDecl>(Val: this)) {
1408 if (Function->getDescribedFunctionTemplate())
1409 return true;
1410
1411 // Friend function declarations are dependent if their *lexical*
1412 // context is dependent.
1413 if (cast<Decl>(Val: this)->getFriendObjectKind())
1414 return getLexicalParent()->isDependentContext();
1415 }
1416
1417 // FIXME: A variable template is a dependent context, but is not a
1418 // DeclContext. A context within it (such as a lambda-expression)
1419 // should be considered dependent.
1420
1421 return getParent() && getParent()->isDependentContext();
1422}
1423
1424bool DeclContext::isTransparentContext() const {
1425 if (getDeclKind() == Decl::Enum)
1426 return !cast<EnumDecl>(Val: this)->isScoped();
1427
1428 return isa<LinkageSpecDecl, ExportDecl, HLSLBufferDecl>(Val: this);
1429}
1430
1431static bool isLinkageSpecContext(const DeclContext *DC,
1432 LinkageSpecLanguageIDs ID) {
1433 while (DC->getDeclKind() != Decl::TranslationUnit) {
1434 if (DC->getDeclKind() == Decl::LinkageSpec)
1435 return cast<LinkageSpecDecl>(Val: DC)->getLanguage() == ID;
1436 DC = DC->getLexicalParent();
1437 }
1438 return false;
1439}
1440
1441bool DeclContext::isExternCContext() const {
1442 return isLinkageSpecContext(DC: this, ID: LinkageSpecLanguageIDs::C);
1443}
1444
1445const LinkageSpecDecl *DeclContext::getExternCContext() const {
1446 const DeclContext *DC = this;
1447 while (DC->getDeclKind() != Decl::TranslationUnit) {
1448 if (DC->getDeclKind() == Decl::LinkageSpec &&
1449 cast<LinkageSpecDecl>(Val: DC)->getLanguage() == LinkageSpecLanguageIDs::C)
1450 return cast<LinkageSpecDecl>(Val: DC);
1451 DC = DC->getLexicalParent();
1452 }
1453 return nullptr;
1454}
1455
1456bool DeclContext::isExternCXXContext() const {
1457 return isLinkageSpecContext(DC: this, ID: LinkageSpecLanguageIDs::CXX);
1458}
1459
1460bool DeclContext::Encloses(const DeclContext *DC) const {
1461 if (getPrimaryContext() != this)
1462 return getPrimaryContext()->Encloses(DC);
1463
1464 for (; DC; DC = DC->getParent())
1465 if (!isa<LinkageSpecDecl, ExportDecl>(Val: DC) &&
1466 DC->getPrimaryContext() == this)
1467 return true;
1468 return false;
1469}
1470
1471bool DeclContext::LexicallyEncloses(const DeclContext *DC) const {
1472 if (getPrimaryContext() != this)
1473 return getPrimaryContext()->LexicallyEncloses(DC);
1474
1475 for (; DC; DC = DC->getLexicalParent())
1476 if (!isa<LinkageSpecDecl, ExportDecl>(Val: DC) &&
1477 DC->getPrimaryContext() == this)
1478 return true;
1479 return false;
1480}
1481
1482DeclContext *DeclContext::getNonTransparentContext() {
1483 DeclContext *DC = this;
1484 while (DC->isTransparentContext()) {
1485 DC = DC->getParent();
1486 assert(DC && "All transparent contexts should have a parent!");
1487 }
1488 return DC;
1489}
1490
1491DeclContext *DeclContext::getPrimaryContext() {
1492 switch (getDeclKind()) {
1493 case Decl::ExternCContext:
1494 case Decl::LinkageSpec:
1495 case Decl::Export:
1496 case Decl::TopLevelStmt:
1497 case Decl::Block:
1498 case Decl::Captured:
1499 case Decl::OutlinedFunction:
1500 case Decl::OMPDeclareReduction:
1501 case Decl::OMPDeclareMapper:
1502 case Decl::RequiresExprBody:
1503 case Decl::CXXExpansionStmt:
1504 // There is only one DeclContext for these entities.
1505 return this;
1506
1507 case Decl::HLSLBuffer:
1508 // Each buffer, even with the same name, is a distinct construct.
1509 // Multiple buffers with the same name are allowed for backward
1510 // compatibility.
1511 // As long as buffers have unique resource bindings the names don't matter.
1512 // The names get exposed via the CPU-side reflection API which
1513 // supports querying bindings, so we cannot remove them.
1514 return this;
1515
1516 case Decl::TranslationUnit:
1517 return static_cast<TranslationUnitDecl *>(this)->getFirstDecl();
1518 case Decl::Namespace:
1519 return static_cast<NamespaceDecl *>(this)->getFirstDecl();
1520
1521 case Decl::ObjCMethod:
1522 return this;
1523
1524 case Decl::ObjCInterface:
1525 if (auto *OID = dyn_cast<ObjCInterfaceDecl>(Val: this))
1526 if (auto *Def = OID->getDefinition())
1527 return Def;
1528 return this;
1529
1530 case Decl::ObjCProtocol:
1531 if (auto *OPD = dyn_cast<ObjCProtocolDecl>(Val: this))
1532 if (auto *Def = OPD->getDefinition())
1533 return Def;
1534 return this;
1535
1536 case Decl::ObjCCategory:
1537 return this;
1538
1539 case Decl::ObjCImplementation:
1540 case Decl::ObjCCategoryImpl:
1541 return this;
1542
1543 // If this is a tag type that has a definition or is currently
1544 // being defined, that definition is our primary context.
1545 case Decl::ClassTemplatePartialSpecialization:
1546 case Decl::ClassTemplateSpecialization:
1547 case Decl::CXXRecord:
1548 return cast<CXXRecordDecl>(Val: this)->getDefinitionOrSelf();
1549 case Decl::Record:
1550 case Decl::Enum:
1551 return cast<TagDecl>(Val: this)->getDefinitionOrSelf();
1552
1553 default:
1554 assert(getDeclKind() >= Decl::firstFunction &&
1555 getDeclKind() <= Decl::lastFunction && "Unknown DeclContext kind");
1556 return this;
1557 }
1558}
1559
1560template <typename T>
1561static void collectAllContextsImpl(T *Self,
1562 SmallVectorImpl<DeclContext *> &Contexts) {
1563 for (T *D = Self->getMostRecentDecl(); D; D = D->getPreviousDecl())
1564 Contexts.push_back(Elt: D);
1565
1566 std::reverse(first: Contexts.begin(), last: Contexts.end());
1567}
1568
1569void DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts) {
1570 Contexts.clear();
1571
1572 Decl::Kind Kind = getDeclKind();
1573
1574 if (Kind == Decl::TranslationUnit)
1575 collectAllContextsImpl(Self: static_cast<TranslationUnitDecl *>(this), Contexts);
1576 else if (Kind == Decl::Namespace)
1577 collectAllContextsImpl(Self: static_cast<NamespaceDecl *>(this), Contexts);
1578 else
1579 Contexts.push_back(Elt: this);
1580}
1581
1582std::pair<Decl *, Decl *>
1583DeclContext::BuildDeclChain(ArrayRef<Decl *> Decls,
1584 bool FieldsAlreadyLoaded) {
1585 // Build up a chain of declarations via the Decl::NextInContextAndBits field.
1586 Decl *FirstNewDecl = nullptr;
1587 Decl *PrevDecl = nullptr;
1588 for (auto *D : Decls) {
1589 if (FieldsAlreadyLoaded && isa<FieldDecl>(Val: D))
1590 continue;
1591
1592 if (PrevDecl)
1593 PrevDecl->NextInContextAndBits.setPointer(D);
1594 else
1595 FirstNewDecl = D;
1596
1597 PrevDecl = D;
1598 }
1599
1600 return std::make_pair(x&: FirstNewDecl, y&: PrevDecl);
1601}
1602
1603/// We have just acquired external visible storage, and we already have
1604/// built a lookup map. For every name in the map, pull in the new names from
1605/// the external storage.
1606void DeclContext::reconcileExternalVisibleStorage() const {
1607 assert(hasNeedToReconcileExternalVisibleStorage() && LookupPtr);
1608 setNeedToReconcileExternalVisibleStorage(false);
1609
1610 for (auto &Lookup : *LookupPtr)
1611 Lookup.second.setHasExternalDecls();
1612}
1613
1614/// Load the declarations within this lexical storage from an
1615/// external source.
1616/// \return \c true if any declarations were added.
1617bool
1618DeclContext::LoadLexicalDeclsFromExternalStorage() const {
1619 ExternalASTSource *Source = getParentASTContext().getExternalSource();
1620 assert(hasExternalLexicalStorage() && Source && "No external storage?");
1621
1622 // Notify that we have a DeclContext that is initializing.
1623 ExternalASTSource::Deserializing ADeclContext(Source);
1624
1625 // Load the external declarations, if any.
1626 SmallVector<Decl*, 64> Decls;
1627 setHasExternalLexicalStorage(false);
1628 Source->FindExternalLexicalDecls(DC: this, Result&: Decls);
1629
1630 if (Decls.empty())
1631 return false;
1632
1633 // We may have already loaded just the fields of this record, in which case
1634 // we need to ignore them.
1635 bool FieldsAlreadyLoaded = false;
1636 if (const auto *RD = dyn_cast<RecordDecl>(Val: this))
1637 FieldsAlreadyLoaded = RD->hasLoadedFieldsFromExternalStorage();
1638
1639 // Splice the newly-read declarations into the beginning of the list
1640 // of declarations.
1641 Decl *ExternalFirst, *ExternalLast;
1642 std::tie(args&: ExternalFirst, args&: ExternalLast) =
1643 BuildDeclChain(Decls, FieldsAlreadyLoaded);
1644 ExternalLast->NextInContextAndBits.setPointer(FirstDecl);
1645 FirstDecl = ExternalFirst;
1646 if (!LastDecl)
1647 LastDecl = ExternalLast;
1648 return true;
1649}
1650
1651DeclContext::lookup_result
1652ExternalASTSource::SetNoExternalVisibleDeclsForName(const DeclContext *DC,
1653 DeclarationName Name) {
1654 ASTContext &Context = DC->getParentASTContext();
1655 StoredDeclsMap *Map;
1656 if (!(Map = DC->LookupPtr))
1657 Map = DC->CreateStoredDeclsMap(C&: Context);
1658 if (DC->hasNeedToReconcileExternalVisibleStorage())
1659 DC->reconcileExternalVisibleStorage();
1660
1661 (*Map)[Name].removeExternalDecls();
1662
1663 return DeclContext::lookup_result();
1664}
1665
1666DeclContext::lookup_result
1667ExternalASTSource::SetExternalVisibleDeclsForName(const DeclContext *DC,
1668 DeclarationName Name,
1669 ArrayRef<NamedDecl*> Decls) {
1670 ASTContext &Context = DC->getParentASTContext();
1671 StoredDeclsMap *Map;
1672 if (!(Map = DC->LookupPtr))
1673 Map = DC->CreateStoredDeclsMap(C&: Context);
1674 if (DC->hasNeedToReconcileExternalVisibleStorage())
1675 DC->reconcileExternalVisibleStorage();
1676
1677 StoredDeclsList &List = (*Map)[Name];
1678 List.replaceExternalDecls(Decls);
1679 return List.getLookupResult();
1680}
1681
1682DeclContext::decl_iterator DeclContext::decls_begin() const {
1683 if (hasExternalLexicalStorage())
1684 LoadLexicalDeclsFromExternalStorage();
1685 return decl_iterator(FirstDecl);
1686}
1687
1688bool DeclContext::decls_empty() const {
1689 if (hasExternalLexicalStorage())
1690 LoadLexicalDeclsFromExternalStorage();
1691
1692 return !FirstDecl;
1693}
1694
1695bool DeclContext::containsDecl(Decl *D) const {
1696 return (D->getLexicalDeclContext() == this &&
1697 (D->NextInContextAndBits.getPointer() || D == LastDecl));
1698}
1699
1700bool DeclContext::containsDeclAndLoad(Decl *D) const {
1701 if (hasExternalLexicalStorage())
1702 LoadLexicalDeclsFromExternalStorage();
1703 return containsDecl(D);
1704}
1705
1706/// shouldBeHidden - Determine whether a declaration which was declared
1707/// within its semantic context should be invisible to qualified name lookup.
1708static bool shouldBeHidden(NamedDecl *D) {
1709 // Skip unnamed declarations.
1710 if (!D->getDeclName())
1711 return true;
1712
1713 // Skip entities that can't be found by name lookup into a particular
1714 // context.
1715 if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(Val: D)) ||
1716 D->isTemplateParameter())
1717 return true;
1718
1719 // Skip friends and local extern declarations unless they're the first
1720 // declaration of the entity.
1721 if ((D->isLocalExternDecl() || D->getFriendObjectKind()) &&
1722 D != D->getCanonicalDecl())
1723 return true;
1724
1725 // Skip template specializations.
1726 // FIXME: This feels like a hack. Should DeclarationName support
1727 // template-ids, or is there a better way to keep specializations
1728 // from being visible?
1729 if (isa<ClassTemplateSpecializationDecl>(Val: D))
1730 return true;
1731 if (auto *FD = dyn_cast<FunctionDecl>(Val: D))
1732 if (FD->isFunctionTemplateSpecialization())
1733 return true;
1734
1735 // Hide destructors that are invalid. There should always be one destructor,
1736 // but if it is an invalid decl, another one is created. We need to hide the
1737 // invalid one from places that expect exactly one destructor, like the
1738 // serialization code.
1739 if (isa<CXXDestructorDecl>(Val: D) && D->isInvalidDecl())
1740 return true;
1741
1742 return false;
1743}
1744
1745void DeclContext::removeDecl(Decl *D) {
1746 assert(D->getLexicalDeclContext() == this &&
1747 "decl being removed from non-lexical context");
1748 assert((D->NextInContextAndBits.getPointer() || D == LastDecl) &&
1749 "decl is not in decls list");
1750
1751 // Remove D from the decl chain. This is O(n) but hopefully rare.
1752 if (D == FirstDecl) {
1753 if (D == LastDecl)
1754 FirstDecl = LastDecl = nullptr;
1755 else
1756 FirstDecl = D->NextInContextAndBits.getPointer();
1757 } else {
1758 for (Decl *I = FirstDecl; true; I = I->NextInContextAndBits.getPointer()) {
1759 assert(I && "decl not found in linked list");
1760 if (I->NextInContextAndBits.getPointer() == D) {
1761 I->NextInContextAndBits.setPointer(D->NextInContextAndBits.getPointer());
1762 if (D == LastDecl) LastDecl = I;
1763 break;
1764 }
1765 }
1766 }
1767
1768 // Mark that D is no longer in the decl chain.
1769 D->NextInContextAndBits.setPointer(nullptr);
1770
1771 // Remove D from the lookup table if necessary.
1772 if (isa<NamedDecl>(Val: D)) {
1773 auto *ND = cast<NamedDecl>(Val: D);
1774
1775 // Do not try to remove the declaration if that is invisible to qualified
1776 // lookup. E.g. template specializations are skipped.
1777 if (shouldBeHidden(D: ND))
1778 return;
1779
1780 // Remove only decls that have a name
1781 if (!ND->getDeclName())
1782 return;
1783
1784 auto *DC = D->getDeclContext();
1785 do {
1786 StoredDeclsMap *Map = DC->getPrimaryContext()->LookupPtr;
1787 if (Map) {
1788 StoredDeclsMap::iterator Pos = Map->find(Val: ND->getDeclName());
1789 assert(Pos != Map->end() && "no lookup entry for decl");
1790 StoredDeclsList &List = Pos->second;
1791 List.remove(D: ND);
1792 // Clean up the entry if there are no more decls.
1793 if (List.isNull())
1794 Map->erase(I: Pos);
1795 }
1796 } while (DC->isTransparentContext() && (DC = DC->getParent()));
1797 }
1798}
1799
1800void DeclContext::addHiddenDecl(Decl *D) {
1801 assert(D->getLexicalDeclContext() == this &&
1802 "Decl inserted into wrong lexical context");
1803 assert(!D->getNextDeclInContext() && D != LastDecl &&
1804 "Decl already inserted into a DeclContext");
1805
1806 if (FirstDecl) {
1807 LastDecl->NextInContextAndBits.setPointer(D);
1808 LastDecl = D;
1809 } else {
1810 FirstDecl = LastDecl = D;
1811 }
1812
1813 // Notify a C++ record declaration that we've added a member, so it can
1814 // update its class-specific state.
1815 if (auto *Record = dyn_cast<CXXRecordDecl>(Val: this))
1816 Record->addedMember(D);
1817
1818 // If this is a newly-created (not de-serialized) import declaration, wire
1819 // it in to the list of local import declarations.
1820 if (!D->isFromASTFile()) {
1821 if (auto *Import = dyn_cast<ImportDecl>(Val: D))
1822 D->getASTContext().addedLocalImportDecl(Import);
1823 }
1824}
1825
1826void DeclContext::addDecl(Decl *D) {
1827 addHiddenDecl(D);
1828
1829 if (auto *ND = dyn_cast<NamedDecl>(Val: D))
1830 ND->getDeclContext()->getPrimaryContext()->
1831 makeDeclVisibleInContextWithFlags(D: ND, Internal: false, Rediscoverable: true);
1832}
1833
1834void DeclContext::addDeclInternal(Decl *D) {
1835 addHiddenDecl(D);
1836
1837 if (auto *ND = dyn_cast<NamedDecl>(Val: D))
1838 ND->getDeclContext()->getPrimaryContext()->
1839 makeDeclVisibleInContextWithFlags(D: ND, Internal: true, Rediscoverable: true);
1840}
1841
1842/// buildLookup - Build the lookup data structure with all of the
1843/// declarations in this DeclContext (and any other contexts linked
1844/// to it or transparent contexts nested within it) and return it.
1845///
1846/// Note that the produced map may miss out declarations from an
1847/// external source. If it does, those entries will be marked with
1848/// the 'hasExternalDecls' flag.
1849StoredDeclsMap *DeclContext::buildLookup() {
1850 assert(this == getPrimaryContext() && "buildLookup called on non-primary DC");
1851
1852 if (!hasLazyLocalLexicalLookups() &&
1853 !hasLazyExternalLexicalLookups())
1854 return LookupPtr;
1855
1856 SmallVector<DeclContext *, 2> Contexts;
1857 collectAllContexts(Contexts);
1858
1859 if (hasLazyExternalLexicalLookups()) {
1860 setHasLazyExternalLexicalLookups(false);
1861 for (auto *DC : Contexts) {
1862 if (DC->hasExternalLexicalStorage()) {
1863 bool LoadedDecls = DC->LoadLexicalDeclsFromExternalStorage();
1864 setHasLazyLocalLexicalLookups(
1865 hasLazyLocalLexicalLookups() | LoadedDecls );
1866 }
1867 }
1868
1869 if (!hasLazyLocalLexicalLookups())
1870 return LookupPtr;
1871 }
1872
1873 for (auto *DC : Contexts)
1874 buildLookupImpl(DCtx: DC, Internal: hasExternalVisibleStorage());
1875
1876 // We no longer have any lazy decls.
1877 setHasLazyLocalLexicalLookups(false);
1878 return LookupPtr;
1879}
1880
1881/// buildLookupImpl - Build part of the lookup data structure for the
1882/// declarations contained within DCtx, which will either be this
1883/// DeclContext, a DeclContext linked to it, or a transparent context
1884/// nested within it.
1885void DeclContext::buildLookupImpl(DeclContext *DCtx, bool Internal) {
1886 for (auto *D : DCtx->noload_decls()) {
1887 // Insert this declaration into the lookup structure, but only if
1888 // it's semantically within its decl context. Any other decls which
1889 // should be found in this context are added eagerly.
1890 //
1891 // If it's from an AST file, don't add it now. It'll get handled by
1892 // FindExternalVisibleDeclsByName if needed. Exception: if we're not
1893 // in C++, we do not track external visible decls for the TU, so in
1894 // that case we need to collect them all here.
1895 if (auto *ND = dyn_cast<NamedDecl>(Val: D))
1896 if (ND->getDeclContext() == DCtx && !shouldBeHidden(D: ND) &&
1897 (!ND->isFromASTFile() ||
1898 (isTranslationUnit() &&
1899 !getParentASTContext().getLangOpts().CPlusPlus)))
1900 makeDeclVisibleInContextImpl(D: ND, Internal);
1901
1902 // If this declaration is itself a transparent declaration context
1903 // or inline namespace, add the members of this declaration of that
1904 // context (recursively).
1905 if (auto *InnerCtx = dyn_cast<DeclContext>(Val: D))
1906 if (InnerCtx->isTransparentContext() || InnerCtx->isInlineNamespace())
1907 buildLookupImpl(DCtx: InnerCtx, Internal);
1908 }
1909}
1910
1911DeclContext::lookup_result
1912DeclContext::lookup(DeclarationName Name) const {
1913 // For transparent DeclContext, we should lookup in their enclosing context.
1914 if (getDeclKind() == Decl::LinkageSpec || getDeclKind() == Decl::Export)
1915 return getParent()->lookup(Name);
1916
1917 return getPrimaryContext()->lookupImpl(Name, OriginalLookupDC: this);
1918}
1919
1920DeclContext::lookup_result
1921DeclContext::lookupImpl(DeclarationName Name,
1922 const DeclContext *OriginalLookupDC) const {
1923 assert(this == getPrimaryContext() &&
1924 "lookupImpl should only be called with primary DC!");
1925 assert(getDeclKind() != Decl::LinkageSpec && getDeclKind() != Decl::Export &&
1926 "We shouldn't lookup in transparent DC.");
1927
1928 // If we have an external source, ensure that any later redeclarations of this
1929 // context have been loaded, since they may add names to the result of this
1930 // lookup (or add external visible storage).
1931 ExternalASTSource *Source = getParentASTContext().getExternalSource();
1932 if (Source)
1933 (void)cast<Decl>(Val: this)->getMostRecentDecl();
1934
1935 if (hasExternalVisibleStorage()) {
1936 assert(Source && "external visible storage but no external source?");
1937
1938 if (hasNeedToReconcileExternalVisibleStorage())
1939 reconcileExternalVisibleStorage();
1940
1941 StoredDeclsMap *Map = LookupPtr;
1942
1943 if (hasLazyLocalLexicalLookups() ||
1944 hasLazyExternalLexicalLookups())
1945 // FIXME: Make buildLookup const?
1946 Map = const_cast<DeclContext*>(this)->buildLookup();
1947
1948 if (!Map)
1949 Map = CreateStoredDeclsMap(C&: getParentASTContext());
1950
1951 // If we have a lookup result with no external decls, we are done.
1952 std::pair<StoredDeclsMap::iterator, bool> R = Map->try_emplace(Key: Name);
1953 if (!R.second && !R.first->second.hasExternalDecls())
1954 return R.first->second.getLookupResult();
1955
1956 if (Source->FindExternalVisibleDeclsByName(DC: this, Name, OriginalDC: OriginalLookupDC) ||
1957 !R.second) {
1958 if (StoredDeclsMap *Map = LookupPtr) {
1959 StoredDeclsMap::iterator I = Map->find(Val: Name);
1960 if (I != Map->end())
1961 return I->second.getLookupResult();
1962 }
1963 }
1964
1965 return {};
1966 }
1967
1968 StoredDeclsMap *Map = LookupPtr;
1969 if (hasLazyLocalLexicalLookups() ||
1970 hasLazyExternalLexicalLookups())
1971 Map = const_cast<DeclContext*>(this)->buildLookup();
1972
1973 if (!Map)
1974 return {};
1975
1976 StoredDeclsMap::iterator I = Map->find(Val: Name);
1977 if (I == Map->end())
1978 return {};
1979
1980 return I->second.getLookupResult();
1981}
1982
1983DeclContext::lookup_result
1984DeclContext::noload_lookup(DeclarationName Name) {
1985 // For transparent DeclContext, we should lookup in their enclosing context.
1986 if (getDeclKind() == Decl::LinkageSpec || getDeclKind() == Decl::Export)
1987 return getParent()->noload_lookup(Name);
1988
1989 DeclContext *PrimaryContext = getPrimaryContext();
1990 if (PrimaryContext != this)
1991 return PrimaryContext->noload_lookup(Name);
1992
1993 loadLazyLocalLexicalLookups();
1994 StoredDeclsMap *Map = LookupPtr;
1995 if (!Map)
1996 return {};
1997
1998 StoredDeclsMap::iterator I = Map->find(Val: Name);
1999 return I != Map->end() ? I->second.getLookupResult()
2000 : lookup_result();
2001}
2002
2003// If we have any lazy lexical declarations not in our lookup map, add them
2004// now. Don't import any external declarations, not even if we know we have
2005// some missing from the external visible lookups.
2006void DeclContext::loadLazyLocalLexicalLookups() {
2007 if (hasLazyLocalLexicalLookups()) {
2008 SmallVector<DeclContext *, 2> Contexts;
2009 collectAllContexts(Contexts);
2010 for (auto *Context : Contexts)
2011 buildLookupImpl(DCtx: Context, Internal: hasExternalVisibleStorage());
2012 setHasLazyLocalLexicalLookups(false);
2013 }
2014}
2015
2016void DeclContext::localUncachedLookup(DeclarationName Name,
2017 SmallVectorImpl<NamedDecl *> &Results) {
2018 Results.clear();
2019
2020 // If there's no external storage, just perform a normal lookup and copy
2021 // the results.
2022 if (!hasExternalVisibleStorage() && !hasExternalLexicalStorage() && Name) {
2023 lookup_result LookupResults = lookup(Name);
2024 llvm::append_range(C&: Results, R&: LookupResults);
2025 if (!Results.empty())
2026 return;
2027 }
2028
2029 // If we have a lookup table, check there first. Maybe we'll get lucky.
2030 // FIXME: Should we be checking these flags on the primary context?
2031 if (Name && !hasLazyLocalLexicalLookups() &&
2032 !hasLazyExternalLexicalLookups()) {
2033 if (StoredDeclsMap *Map = LookupPtr) {
2034 StoredDeclsMap::iterator Pos = Map->find(Val: Name);
2035 if (Pos != Map->end()) {
2036 Results.insert(I: Results.end(),
2037 From: Pos->second.getLookupResult().begin(),
2038 To: Pos->second.getLookupResult().end());
2039 return;
2040 }
2041 }
2042 }
2043
2044 // Slow case: grovel through the declarations in our chain looking for
2045 // matches.
2046 // FIXME: If we have lazy external declarations, this will not find them!
2047 // FIXME: Should we CollectAllContexts and walk them all here?
2048 for (Decl *D = FirstDecl; D; D = D->getNextDeclInContext()) {
2049 if (auto *ND = dyn_cast<NamedDecl>(Val: D))
2050 if (ND->getDeclName() == Name)
2051 Results.push_back(Elt: ND);
2052 }
2053}
2054
2055DeclContext *DeclContext::getRedeclContext() {
2056 DeclContext *Ctx = this;
2057
2058 // In C, a record type is the redeclaration context for its fields only. If
2059 // we arrive at a record context after skipping anything else, we should skip
2060 // the record as well. Currently, this means skipping enumerations because
2061 // they're the only transparent context that can exist within a struct or
2062 // union.
2063 bool SkipRecords = getDeclKind() == Decl::Kind::Enum &&
2064 !getParentASTContext().getLangOpts().CPlusPlus;
2065
2066 // Skip through contexts to get to the redeclaration context. Transparent
2067 // contexts are always skipped.
2068 while ((SkipRecords && Ctx->isRecord()) || Ctx->isTransparentContext())
2069 Ctx = Ctx->getParent();
2070 return Ctx;
2071}
2072
2073DeclContext *DeclContext::getEnclosingNamespaceContext() {
2074 DeclContext *Ctx = this;
2075 // Skip through non-namespace, non-translation-unit contexts.
2076 while (!Ctx->isFileContext())
2077 Ctx = Ctx->getParent();
2078 return Ctx->getPrimaryContext();
2079}
2080
2081RecordDecl *DeclContext::getOuterLexicalRecordContext() {
2082 // Loop until we find a non-record context.
2083 RecordDecl *OutermostRD = nullptr;
2084 DeclContext *DC = this;
2085 while (DC->isRecord()) {
2086 OutermostRD = cast<RecordDecl>(Val: DC);
2087 DC = DC->getLexicalParent();
2088 }
2089 return OutermostRD;
2090}
2091
2092DeclContext *DeclContext::getEnclosingNonExpansionStatementContext() {
2093 DeclContext *DC = this;
2094 while (isa<CXXExpansionStmtDecl>(Val: DC))
2095 DC = DC->getParent();
2096 return DC;
2097}
2098
2099bool DeclContext::InEnclosingNamespaceSetOf(const DeclContext *O) const {
2100 // For non-file contexts, this is equivalent to Equals.
2101 if (!isFileContext())
2102 return O->Equals(DC: this);
2103
2104 do {
2105 if (O->Equals(DC: this))
2106 return true;
2107
2108 const auto *NS = dyn_cast<NamespaceDecl>(Val: O);
2109 if (!NS || !NS->isInline())
2110 break;
2111 O = NS->getParent();
2112 } while (O);
2113
2114 return false;
2115}
2116
2117void DeclContext::makeDeclVisibleInContext(NamedDecl *D) {
2118 DeclContext *PrimaryDC = this->getPrimaryContext();
2119 DeclContext *DeclDC = D->getDeclContext()->getPrimaryContext();
2120 // If the decl is being added outside of its semantic decl context, we
2121 // need to ensure that we eagerly build the lookup information for it.
2122 PrimaryDC->makeDeclVisibleInContextWithFlags(D, Internal: false, Rediscoverable: PrimaryDC == DeclDC);
2123}
2124
2125void DeclContext::makeDeclVisibleInContextWithFlags(NamedDecl *D, bool Internal,
2126 bool Recoverable) {
2127 assert(this == getPrimaryContext() && "expected a primary DC");
2128
2129 if (!isLookupContext()) {
2130 if (isTransparentContext())
2131 getParent()->getPrimaryContext()
2132 ->makeDeclVisibleInContextWithFlags(D, Internal, Recoverable);
2133 return;
2134 }
2135
2136 // Skip declarations which should be invisible to name lookup.
2137 if (shouldBeHidden(D))
2138 return;
2139
2140 // If we already have a lookup data structure, perform the insertion into
2141 // it. If we might have externally-stored decls with this name, look them
2142 // up and perform the insertion. If this decl was declared outside its
2143 // semantic context, buildLookup won't add it, so add it now.
2144 //
2145 // FIXME: As a performance hack, don't add such decls into the translation
2146 // unit unless we're in C++, since qualified lookup into the TU is never
2147 // performed.
2148 if (LookupPtr || hasExternalVisibleStorage() ||
2149 ((!Recoverable || D->getDeclContext() != D->getLexicalDeclContext()) &&
2150 (getParentASTContext().getLangOpts().CPlusPlus ||
2151 !isTranslationUnit()))) {
2152 // If we have lazily omitted any decls, they might have the same name as
2153 // the decl which we are adding, so build a full lookup table before adding
2154 // this decl.
2155 buildLookup();
2156 makeDeclVisibleInContextImpl(D, Internal);
2157 } else {
2158 setHasLazyLocalLexicalLookups(true);
2159 }
2160
2161 // If we are a transparent context or inline namespace, insert into our
2162 // parent context, too. This operation is recursive.
2163 if (isTransparentContext() || isInlineNamespace())
2164 getParent()->getPrimaryContext()->
2165 makeDeclVisibleInContextWithFlags(D, Internal, Recoverable);
2166
2167 auto *DCAsDecl = cast<Decl>(Val: this);
2168 // Notify that a decl was made visible unless we are a Tag being defined.
2169 if (!(isa<TagDecl>(Val: DCAsDecl) && cast<TagDecl>(Val: DCAsDecl)->isBeingDefined()))
2170 if (ASTMutationListener *L = DCAsDecl->getASTMutationListener())
2171 L->AddedVisibleDecl(DC: this, D);
2172}
2173
2174void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D, bool Internal) {
2175 // Find or create the stored declaration map.
2176 StoredDeclsMap *Map = LookupPtr;
2177 if (!Map) {
2178 ASTContext *C = &getParentASTContext();
2179 Map = CreateStoredDeclsMap(C&: *C);
2180 }
2181
2182 // If there is an external AST source, load any declarations it knows about
2183 // with this declaration's name.
2184 // If the lookup table contains an entry about this name it means that we
2185 // have already checked the external source.
2186 if (!Internal)
2187 if (ExternalASTSource *Source = getParentASTContext().getExternalSource())
2188 if (hasExternalVisibleStorage() && !Map->contains(Val: D->getDeclName()))
2189 Source->FindExternalVisibleDeclsByName(DC: this, Name: D->getDeclName(),
2190 OriginalDC: D->getDeclContext());
2191
2192 // Insert this declaration into the map.
2193 StoredDeclsList &DeclNameEntries = (*Map)[D->getDeclName()];
2194
2195 if (Internal) {
2196 // If this is being added as part of loading an external declaration,
2197 // this may not be the only external declaration with this name.
2198 // In this case, we never try to replace an existing declaration; we'll
2199 // handle that when we finalize the list of declarations for this name.
2200 DeclNameEntries.setHasExternalDecls();
2201 DeclNameEntries.prependDeclNoReplace(D);
2202 return;
2203 }
2204
2205 DeclNameEntries.addOrReplaceDecl(D);
2206}
2207
2208UsingDirectiveDecl *DeclContext::udir_iterator::operator*() const {
2209 return cast<UsingDirectiveDecl>(Val: *I);
2210}
2211
2212/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
2213/// this context.
2214DeclContext::udir_range DeclContext::using_directives() const {
2215 // FIXME: Use something more efficient than normal lookup for using
2216 // directives. In C++, using directives are looked up more than anything else.
2217 lookup_result Result = lookup(Name: UsingDirectiveDecl::getName());
2218 return udir_range(Result.begin(), Result.end());
2219}
2220
2221//===----------------------------------------------------------------------===//
2222// Creation and Destruction of StoredDeclsMaps. //
2223//===----------------------------------------------------------------------===//
2224
2225StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const {
2226 assert(!LookupPtr && "context already has a decls map");
2227 assert(getPrimaryContext() == this &&
2228 "creating decls map on non-primary context");
2229
2230 StoredDeclsMap *M;
2231 bool Dependent = isDependentContext();
2232 if (Dependent)
2233 M = new DependentStoredDeclsMap();
2234 else
2235 M = new StoredDeclsMap();
2236 M->Previous = C.LastSDM;
2237 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
2238 LookupPtr = M;
2239 return M;
2240}
2241
2242void ASTContext::ReleaseDeclContextMaps() {
2243 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap
2244 // pointer because the subclass doesn't add anything that needs to
2245 // be deleted.
2246 StoredDeclsMap::DestroyAll(Map: LastSDM.getPointer(), Dependent: LastSDM.getInt());
2247 LastSDM.setPointer(nullptr);
2248}
2249
2250void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) {
2251 while (Map) {
2252 // Advance the iteration before we invalidate memory.
2253 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous;
2254
2255 if (Dependent)
2256 delete static_cast<DependentStoredDeclsMap*>(Map);
2257 else
2258 delete Map;
2259
2260 Map = Next.getPointer();
2261 Dependent = Next.getInt();
2262 }
2263}
2264
2265DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C,
2266 DeclContext *Parent,
2267 const PartialDiagnostic &PDiag) {
2268 assert(Parent->isDependentContext()
2269 && "cannot iterate dependent diagnostics of non-dependent context");
2270 Parent = Parent->getPrimaryContext();
2271 if (!Parent->LookupPtr)
2272 Parent->CreateStoredDeclsMap(C);
2273
2274 auto *Map = static_cast<DependentStoredDeclsMap *>(Parent->LookupPtr);
2275
2276 // Allocate the copy of the PartialDiagnostic via the ASTContext's
2277 // BumpPtrAllocator, rather than the ASTContext itself.
2278 DiagnosticStorage *DiagStorage = nullptr;
2279 if (PDiag.hasStorage())
2280 DiagStorage = new (C) DiagnosticStorage;
2281
2282 auto *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);
2283
2284 // TODO: Maybe we shouldn't reverse the order during insertion.
2285 DD->NextDiagnostic = Map->FirstDiagnostic;
2286 Map->FirstDiagnostic = DD;
2287
2288 return DD;
2289}
2290
2291unsigned DeclIDBase::getLocalDeclIndex() const {
2292 return ID & llvm::maskTrailingOnes<DeclID>(N: 32);
2293}
2294