clang
7.0.0
|
DeclContext - This is used only as base class of specific decl types that can act as declaration contexts. More...
#include "clang/AST/DeclBase.h"
Classes | |
class | all_lookups_iterator |
all_lookups_iterator - An iterator that provides a view over the results of looking up every possible name. More... | |
class | ddiag_iterator |
An iterator over the dependent diagnostics in a dependent context. More... | |
class | decl_iterator |
decl_iterator - Iterates through the declarations stored within this context. More... | |
class | filtered_decl_iterator |
Iterates over a filtered subrange of declarations stored in a DeclContext. More... | |
class | specific_decl_iterator |
specific_decl_iterator - Iterates over a subrange of declarations stored in a DeclContext, providing only those that are of type SpecificDecl (or a class derived from it). More... | |
struct | udir_iterator |
Public Types | |
using | decl_range = llvm::iterator_range< decl_iterator > |
using | lookup_result = DeclContextLookupResult |
using | lookup_iterator = lookup_result::iterator |
using | lookups_range = llvm::iterator_range< all_lookups_iterator > |
using | udir_iterator_base = llvm::iterator_adaptor_base< udir_iterator, lookup_iterator, std::random_access_iterator_tag, UsingDirectiveDecl * > |
using | udir_range = llvm::iterator_range< udir_iterator > |
using | ddiag_range = llvm::iterator_range< DeclContext::ddiag_iterator > |
Public Member Functions | |
~DeclContext () | |
Decl::Kind | getDeclKind () const |
const char * | getDeclKindName () const |
DeclContext * | getParent () |
getParent - Returns the containing DeclContext. More... | |
const DeclContext * | getParent () const |
DeclContext * | getLexicalParent () |
getLexicalParent - Returns the containing lexical DeclContext. More... | |
const DeclContext * | getLexicalParent () const |
DeclContext * | getLookupParent () |
Find the parent context of this context that will be used for unqualified name lookup. More... | |
const DeclContext * | getLookupParent () const |
ASTContext & | getParentASTContext () const |
bool | isClosure () const |
bool | isObjCContainer () const |
bool | isFunctionOrMethod () const |
bool | isLookupContext () const |
Test whether the context supports looking up names. More... | |
bool | isFileContext () const |
bool | isTranslationUnit () const |
bool | isRecord () const |
bool | isNamespace () const |
bool | isStdNamespace () const |
bool | isInlineNamespace () const |
bool | isDependentContext () const |
Determines whether this context is dependent on a template parameter. More... | |
bool | isTransparentContext () const |
isTransparentContext - Determines whether this context is a "transparent" context, meaning that the members declared in this context are semantically declared in the nearest enclosing non-transparent (opaque) context but are lexically declared in this context. More... | |
bool | isExternCContext () const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C linkage. More... | |
const LinkageSpecDecl * | getExternCContext () const |
Retrieve the nearest enclosing C linkage specification context. More... | |
bool | isExternCXXContext () const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C++ linkage. More... | |
bool | Equals (const DeclContext *DC) const |
Determine whether this declaration context is equivalent to the declaration context DC. More... | |
bool | Encloses (const DeclContext *DC) const |
Determine whether this declaration context encloses the declaration context DC. More... | |
Decl * | getNonClosureAncestor () |
Find the nearest non-closure ancestor of this context, i.e. More... | |
const Decl * | getNonClosureAncestor () const |
DeclContext * | getPrimaryContext () |
getPrimaryContext - There may be many different declarations of the same entity (including forward declarations of classes, multiple definitions of namespaces, etc.), each with a different set of declarations. More... | |
const DeclContext * | getPrimaryContext () const |
DeclContext * | getRedeclContext () |
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same name, or where it is a redeclaration if the two entities are compatible. More... | |
const DeclContext * | getRedeclContext () const |
DeclContext * | getEnclosingNamespaceContext () |
Retrieve the nearest enclosing namespace context. More... | |
const DeclContext * | getEnclosingNamespaceContext () const |
RecordDecl * | getOuterLexicalRecordContext () |
Retrieve the outermost lexically enclosing record context. More... | |
const RecordDecl * | getOuterLexicalRecordContext () const |
bool | InEnclosingNamespaceSetOf (const DeclContext *NS) const |
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [namespace.def]p9. More... | |
void | collectAllContexts (SmallVectorImpl< DeclContext *> &Contexts) |
Collects all of the declaration contexts that are semantically connected to this declaration context. More... | |
decl_range | decls () const |
decls_begin/decls_end - Iterate over the declarations stored in this context. More... | |
decl_iterator | decls_begin () const |
decl_iterator | decls_end () const |
bool | decls_empty () const |
decl_range | noload_decls () const |
noload_decls_begin/end - Iterate over the declarations stored in this context that are currently loaded; don't attempt to retrieve anything from an external source. More... | |
decl_iterator | noload_decls_begin () const |
decl_iterator | noload_decls_end () const |
void | addDecl (Decl *D) |
Add the declaration D into this context. More... | |
void | addDeclInternal (Decl *D) |
Add the declaration D into this context, but suppress searches for external declarations with the same name. More... | |
void | addHiddenDecl (Decl *D) |
Add the declaration D to this context without modifying any lookup tables. More... | |
void | removeDecl (Decl *D) |
Removes a declaration from this context. More... | |
bool | containsDecl (Decl *D) const |
Checks whether a declaration is in this context. More... | |
bool | containsDeclAndLoad (Decl *D) const |
Checks whether a declaration is in this context. More... | |
lookup_result | lookup (DeclarationName Name) const |
lookup - Find the declarations (if any) with the given Name in this context. More... | |
lookup_result | noload_lookup (DeclarationName Name) |
Find the declarations with the given name that are visible within this context; don't attempt to retrieve anything from an external source. More... | |
void | localUncachedLookup (DeclarationName Name, SmallVectorImpl< NamedDecl *> &Results) |
A simplistic name lookup mechanism that performs name lookup into this declaration context without consulting the external source. More... | |
void | makeDeclVisibleInContext (NamedDecl *D) |
Makes a declaration visible within this context. More... | |
lookups_range | lookups () const |
lookups_range | noload_lookups (bool PreserveInternalState) const |
all_lookups_iterator | lookups_begin () const |
Iterators over all possible lookups within this context. More... | |
all_lookups_iterator | lookups_end () const |
all_lookups_iterator | noload_lookups_begin () const |
Iterators over all possible lookups within this context that are currently loaded; don't attempt to retrieve anything from an external source. More... | |
all_lookups_iterator | noload_lookups_end () const |
udir_range | using_directives () const |
Returns iterator range [First, Last) of UsingDirectiveDecls stored within this context. More... | |
ddiag_range | ddiags () const |
void | setMustBuildLookupTable () |
Mark that there are external lexical declarations that we need to include in our lookup table (and that are not available as external visible lookups). More... | |
StoredDeclsMap * | getLookupPtr () const |
Retrieve the internal representation of the lookup structure. More... | |
StoredDeclsMap * | buildLookup () |
Ensure the lookup structure is fully-built and return it. More... | |
bool | hasExternalLexicalStorage () const |
Whether this DeclContext has external storage containing additional declarations that are lexically in this context. More... | |
void | setHasExternalLexicalStorage (bool ES=true) |
State whether this DeclContext has external storage for declarations lexically in this context. More... | |
bool | hasExternalVisibleStorage () const |
Whether this DeclContext has external storage containing additional declarations that are visible in this context. More... | |
void | setHasExternalVisibleStorage (bool ES=true) |
State whether this DeclContext has external storage for declarations visible in this context. More... | |
bool | isDeclInLexicalTraversal (const Decl *D) const |
Determine whether the given declaration is stored in the list of declarations lexically within this context. More... | |
bool | setUseQualifiedLookup (bool use=true) |
bool | shouldUseQualifiedLookup () const |
void | dumpDeclContext () const |
void | dumpLookups () const |
void | dumpLookups (llvm::raw_ostream &OS, bool DumpDecls=false, bool Deserialize=false) const |
Static Public Member Functions | |
static bool | classof (const Decl *D) |
static bool | classof (const DeclContext *D) |
Protected Member Functions | |
DeclContext (Decl::Kind K) | |
Static Protected Member Functions | |
static std::pair< Decl *, Decl * > | BuildDeclChain (ArrayRef< Decl *> Decls, bool FieldsAlreadyLoaded) |
Build up a chain of declarations. More... | |
Protected Attributes | |
Decl * | FirstDecl = nullptr |
FirstDecl - The first declaration stored within this declaration context. More... | |
Decl * | LastDecl = nullptr |
LastDecl - The last declaration stored within this declaration context. More... | |
Friends | |
class | ASTDeclReader |
class | ASTWriter |
class | ExternalASTSource |
class | DependentDiagnostic |
DeclContext - This is used only as base class of specific decl types that can act as declaration contexts.
These decls are (only the top classes that directly derive from DeclContext are mentioned, not their subclasses):
TranslationUnitDecl NamespaceDecl FunctionDecl TagDecl ObjCMethodDecl ObjCContainerDecl LinkageSpecDecl ExportDecl BlockDecl OMPDeclareReductionDecl
Definition at line 1264 of file DeclBase.h.
using clang::DeclContext::ddiag_range = llvm::iterator_range<DeclContext::ddiag_iterator> |
Definition at line 1876 of file DeclBase.h.
using clang::DeclContext::decl_range = llvm::iterator_range<decl_iterator> |
Definition at line 1584 of file DeclBase.h.
Definition at line 1793 of file DeclBase.h.
Definition at line 1792 of file DeclBase.h.
using clang::DeclContext::lookups_range = llvm::iterator_range<all_lookups_iterator> |
Definition at line 1839 of file DeclBase.h.
using clang::DeclContext::udir_iterator_base = llvm::iterator_adaptor_base<udir_iterator, lookup_iterator, std::random_access_iterator_tag, UsingDirectiveDecl *> |
Definition at line 1861 of file DeclBase.h.
using clang::DeclContext::udir_range = llvm::iterator_range<udir_iterator> |
Definition at line 1869 of file DeclBase.h.
|
inlineprotected |
Definition at line 1326 of file DeclBase.h.
|
default |
Referenced by classof().
void DeclContext::addDecl | ( | Decl * | D | ) |
Add the declaration D into this context.
This routine should be invoked when the declaration D has first been declared, to place D into the context where it was (lexically) defined. Every declaration must be added to one (and only one!) context, where it can be visited via [decls_begin(), decls_end()). Once a declaration has been added to its lexical context, the corresponding DeclContext owns the declaration.
If D is also a NamedDecl, it will be made visible within its semantic context via makeDeclVisibleInContext.
Definition at line 1460 of file DeclBase.cpp.
Referenced by clang::Sema::ActOnPragmaMSComment(), clang::Sema::ActOnStartCategoryImplementation(), clang::Sema::ActOnStartCategoryInterface(), addFieldToRecordDecl(), clang::ASTContext::buildBuiltinTemplateDecl(), clang::Sema::BuildLambdaExpr(), captureThis(), clang::Sema::CheckImplementationIvars(), clang::Sema::createImplicitModuleImportForErrorRecovery(), clang::ASTContext::getBlockDescriptorExtendedType(), clang::ASTContext::getBlockDescriptorType(), clang::ASTContext::getCFConstantStringDecl(), clang::CodeGen::CodeGenModule::getObjCFastEnumerationStateType(), clang::ASTContext::getObjCSuperType(), getPreviousDeclForInstantiation(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateDeclInstantiator::InstantiateTypedefNameDecl(), clang::Sema::ProcessPropertyDecl(), clang::Sema::PushUsingDirective(), and clang::TemplateDeclInstantiator::VisitVarDecl().
void DeclContext::addDeclInternal | ( | Decl * | D | ) |
Add the declaration D into this context, but suppress searches for external declarations with the same name.
Although analogous in function to addDecl, this removes an important check. This is only useful if the Decl is being added in response to an external search; in all other cases, addDecl() is the right function to use. See the ASTImporter for use cases.
Definition at line 1468 of file DeclBase.cpp.
Referenced by clang::ASTNodeImporter::VisitAccessSpecDecl(), clang::ASTNodeImporter::VisitClassTemplateSpecializationDecl(), clang::ASTNodeImporter::VisitEmptyDecl(), clang::ASTNodeImporter::VisitLinkageSpecDecl(), clang::ASTNodeImporter::VisitObjCCategoryImplDecl(), clang::ASTNodeImporter::VisitObjCPropertyImplDecl(), clang::ASTNodeImporter::VisitStaticAssertDecl(), and clang::ASTNodeImporter::VisitVarTemplateSpecializationDecl().
void DeclContext::addHiddenDecl | ( | Decl * | D | ) |
Add the declaration D to this context without modifying any lookup tables.
This is useful for some operations in dependent contexts where the semantic context might not be dependent; this basically only happens with friends.
Definition at line 1434 of file DeclBase.cpp.
References clang::ASTContext::addedLocalImportDecl(), clang::Decl::getASTContext(), clang::Decl::getLexicalDeclContext(), clang::Decl::getNextDeclInContext(), and clang::Decl::isFromASTFile().
Referenced by buildCaptureDecl(), clang::Sema::BuildVariableInstantiation(), FinishForRangeVarDecl(), and clang::TemplateDeclInstantiator::VisitVarDecl().
|
staticprotected |
Build up a chain of declarations.
Definition at line 1201 of file DeclBase.cpp.
References clang::ExternalASTSource::FindExternalLexicalDecls(), and clang::Decl::NextInContextAndBits.
Referenced by clang::RecordDecl::isMsStruct().
StoredDeclsMap * DeclContext::buildLookup | ( | ) |
Ensure the lookup structure is fully-built and return it.
buildLookup - Build the lookup data structure with all of the declarations in this DeclContext (and any other contexts linked to it or transparent contexts nested within it) and return it.
Note that the produced map may miss out declarations from an external source. If it does, those entries will be marked with the 'hasExternalDecls' flag.
Definition at line 1483 of file DeclBase.cpp.
Referenced by lookups().
Definition at line 983 of file DeclBase.cpp.
References clang::Decl::getKind(), and ~DeclContext().
|
inlinestatic |
Definition at line 1941 of file DeclBase.h.
void DeclContext::collectAllContexts | ( | SmallVectorImpl< DeclContext *> & | Contexts | ) |
Collects all of the declaration contexts that are semantically connected to this declaration context.
For declaration contexts that have multiple semantically connected but syntactically distinct contexts, such as C++ namespaces, this routine retrieves the complete set of such declaration contexts in source order. For example, given:
The Contexts
parameter will contain both definitions of N.
Contexts | Will be cleared and set to the set of declaration contexts that are semanticaly connected to this declaration context, in source order, including this context (which may be the only result, for non-namespace contexts). |
Definition at line 1184 of file DeclBase.cpp.
Checks whether a declaration is in this context.
Definition at line 1345 of file DeclBase.cpp.
References clang::Decl::getLexicalDeclContext(), and clang::Decl::NextInContextAndBits.
Checks whether a declaration is in this context.
This also loads the Decls from the external source before the check.
Definition at line 1350 of file DeclBase.cpp.
|
inline |
Definition at line 176 of file DependentDiagnostic.h.
Referenced by clang::Sema::PerformDependentDiagnostics().
|
inline |
decls_begin/decls_end - Iterate over the declarations stored in this context.
Definition at line 1588 of file DeclBase.h.
Referenced by clang::ODRHash::AddCXXRecordDecl(), clang::ODRHash::AddEnumDecl(), AddInterfaceResults(), AddProtocolResults(), clang::RecursiveASTVisitor< CallGraph >::canIgnoreChildDeclWhileTraversingDeclContext(), CheckAbstractClassUsage(), checkForMultipleExportedDefaultConstructors(), clang::Sema::DiagnoseUnusedNestedTypedefs(), clang::cross_tu::CrossTranslationUnitContext::getLookupName(), GroupNewVirtualOverloads(), clang::ASTNodeImporter::ImportDeclContext(), clang::Sema::InstantiateClass(), clang::Sema::InstantiateClassMembers(), isImportedDeclContext(), and ReferenceDllExportedMembers().
DeclContext::decl_iterator DeclContext::decls_begin | ( | ) | const |
Definition at line 1332 of file DeclBase.cpp.
Referenced by findUserDeclaredCtor(), and hasSuperInitCall().
bool DeclContext::decls_empty | ( | ) | const |
Definition at line 1338 of file DeclBase.cpp.
|
inline |
Definition at line 1590 of file DeclBase.h.
Referenced by findUserDeclaredCtor(), and hasSuperInitCall().
LLVM_DUMP_METHOD void DeclContext::dumpDeclContext | ( | ) | const |
Definition at line 194 of file DeclPrinter.cpp.
References getParent(), clang::ASTContext::getPrintingPolicy(), and isTranslationUnit().
LLVM_DUMP_METHOD void DeclContext::dumpLookups | ( | ) | const |
Definition at line 2757 of file ASTDumper.cpp.
References clang::ASTContext::getCommentCommandTraits(), clang::SourceManager::getDiagnostics(), getParent(), clang::ASTContext::getPrintingPolicy(), clang::DiagnosticsEngine::getShowColors(), clang::ASTContext::getSourceManager(), isTranslationUnit(), and P.
void clang::DeclContext::dumpLookups | ( | llvm::raw_ostream & | OS, |
bool | DumpDecls = false , |
||
bool | Deserialize = false |
||
) | const |
bool DeclContext::Encloses | ( | const DeclContext * | DC | ) | const |
Determine whether this declaration context encloses the declaration context DC.
Definition at line 1110 of file DeclBase.cpp.
References getParent(), and getPrimaryContext().
Referenced by clang::Sema::ActOnUsingDirective(), CheckExplicitInstantiationScope(), CheckTemplateSpecializationScope(), diagnoseInstanceReference(), and findOuterContext().
|
inline |
Determine whether this declaration context is equivalent to the declaration context DC.
Definition at line 1463 of file DeclBase.h.
References getPrimaryContext().
Referenced by CheckTemplateSpecializationScope(), diagnoseInstanceReference(), clang::Sema::FindInstantiatedDecl(), findOuterContext(), getStackIndexOfNearestEnclosingCaptureReadyLambda(), InEnclosingNamespaceSetOf(), clang::CXXRecordDecl::isCurrentInstantiation(), and LookupVisibleDecls().
|
inline |
Definition at line 1336 of file DeclBase.h.
References clang::Decl::getDeclKindName().
Referenced by clang::ODRHash::AddFunctionDecl(), clang::Decl::castFromDeclContext(), clang::CreateASTViewer(), clang::serialization::getDefinitiveDeclContext(), getExternCContext(), getKind(), clang::Sema::getObjCContainerKind(), getOutermostFuncOrBlockContext(), clang::VarDecl::isFunctionOrMethodVarDecl(), isLinkageSpecContext(), IsUsingDirectiveInToplevelContext(), and LookupMethodInReceiverType().
const char * DeclContext::getDeclKindName | ( | ) | const |
Definition at line 155 of file DeclBase.cpp.
DeclContext * DeclContext::getEnclosingNamespaceContext | ( | ) |
Retrieve the nearest enclosing namespace context.
Definition at line 1683 of file DeclBase.cpp.
References getParent(), getPrimaryContext(), and isFileContext().
Referenced by CheckExplicitInstantiationScope(), and clang::AnalysisDeclContext::isInStdNamespace().
|
inline |
Definition at line 1500 of file DeclBase.h.
const LinkageSpecDecl * DeclContext::getExternCContext | ( | ) | const |
Retrieve the nearest enclosing C linkage specification context.
Definition at line 1095 of file DeclBase.cpp.
References getDeclKind(), getLexicalParent(), and clang::LinkageSpecDecl::lang_c.
Referenced by clang::Sema::CheckLiteralOperatorDeclaration(), and clang::Sema::CheckTemplateDeclScope().
|
inline |
getLexicalParent - Returns the containing lexical DeclContext.
May be different from getParent, e.g.:
namespace A { struct S; } struct A::S {}; // getParent() == namespace 'A' // getLexicalParent() == translation unit
Definition at line 1359 of file DeclBase.h.
References clang::Decl::getLexicalDeclContext().
Referenced by clang::ODRHash::AddFunctionDecl(), clang::Sema::getContainingDC(), clang::Sema::getCurrentMangleNumberContext(), getExternCContext(), getOuterLexicalRecordContext(), clang::Sema::hasVisibleMemberSpecialization(), clang::Decl::isExported(), isInInlineFunction(), clang::Decl::isLexicallyWithinFunctionOrMethod(), and isLinkageSpecContext().
|
inline |
Definition at line 1362 of file DeclBase.h.
DeclContext * DeclContext::getLookupParent | ( | ) |
Find the parent context of this context that will be used for unqualified name lookup.
Generally, the parent lookup context is the semantic context. However, for a friend function the parent lookup context is the lexical context, which is the class in which the friend is declared.
Definition at line 1009 of file DeclBase.cpp.
Referenced by AddTopLevelDeclarationToHash(), findRecordWithDependentBasesOfEnclosingMethod(), and LookupVisibleDecls().
|
inline |
Definition at line 1368 of file DeclBase.h.
|
inline |
Retrieve the internal representation of the lookup structure.
This may omit some names if we are lazily building the structure.
Definition at line 1896 of file DeclBase.h.
Referenced by noload_lookups().
Decl * DeclContext::getNonClosureAncestor | ( | ) |
Find the nearest non-closure ancestor of this context, i.e.
the innermost semantic parent of this context which is not a closure. A context may be its own non-closure ancestor.
Definition at line 975 of file DeclBase.cpp.
References getNonClosureContext().
Referenced by LookupMethodInReceiverType().
|
inline |
Definition at line 1475 of file DeclBase.h.
RecordDecl * DeclContext::getOuterLexicalRecordContext | ( | ) |
Retrieve the outermost lexically enclosing record context.
Definition at line 1691 of file DeclBase.cpp.
References getLexicalParent(), and isRecord().
Referenced by clang::Sema::InstantiateInClassInitializer().
|
inline |
Definition at line 1506 of file DeclBase.h.
|
inline |
getParent - Returns the containing DeclContext.
Definition at line 1343 of file DeclBase.h.
References clang::Decl::getDeclContext().
Referenced by clang::Sema::ActOnFinishFullExpr(), clang::Sema::ActOnSEHTryBlock(), clang::Sema::ActOnUsingDirective(), clang::ODRHash::AddCXXRecordDecl(), clang::ODRHash::AddFunctionDecl(), clang::Sema::adjustContextForLocalExternDecl(), clang::Sema::CheckConstructorAccess(), checkDeclInTargetContext(), CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(), clang::Sema::CheckUsingShadowDecl(), ClassifyImplicitMemberAccess(), CollectEnclosingNamespace(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::ento::ExprEngine::CreateCXXTemporaryObject(), clang::Sema::createLambdaClosureType(), clang::ASTContext::DeclMustBeEmitted(), DiagnoseTwoPhaseLookup(), dumpDeclContext(), dumpLookups(), Encloses(), clang::Sema::FindInstantiatedDecl(), findOuterContext(), findRecordWithDependentBasesOfEnclosingMethod(), getBestNamespaceSubstr(), clang::CXXMethodDecl::getCorrespondingMethodInClass(), clang::Sema::getCurMethodDecl(), clang::Sema::getCurrentMangleNumberContext(), getEnclosingNamespaceContext(), getExternalLinkageFor(), clang::Sema::getFunctionLevelDeclContext(), clang::getLambdaAwareParentOfDeclContext(), getNullabilityCompletenessCheckFileID(), getOutermostEnclosingLambda(), getOutermostFuncOrBlockContext(), clang::getParameterABISpelling(), clang::CXXMethodDecl::getParent(), getRedeclContext(), getTagInjectionContext(), clang::CXXMethodDecl::getThisType(), clang::Decl::getTranslationUnitDecl(), HandleConstructorCall(), clang::CodeGen::CodeGenModule::HasHiddenLTOVisibility(), InEnclosingNamespaceSetOf(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::Sema::InstantiateFunctionDeclaration(), clang::CXXRecordDecl::isCurrentInstantiation(), isDeclContextInNamespace(), IsDisallowedCopyOrAssign(), clang::FunctionDecl::isGlobal(), clang::Decl::isInAnonymousNamespace(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), clang::CXXMethodDecl::isLambdaStaticInvoker(), IsUsingDirectiveInToplevelContext(), clang::CodeGen::CGRecordLayout::print(), clang::Sema::tryCaptureVariable(), tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs(), clang::FunctionCallFilterCCC::ValidateCandidate(), clang::ento::ExprEngine::VisitCommonDeclRefExpr(), clang::ASTDeclWriter::VisitDecl(), and clang::ASTDeclWriter::VisitNamespaceDecl().
|
inline |
Definition at line 1346 of file DeclBase.h.
|
inline |
Definition at line 1372 of file DeclBase.h.
References clang::Decl::getASTContext().
Referenced by clang::CXXRecordDecl::getLambdaContextDecl(), clang::Type::getObjCSubstitutions(), lookups(), and clang::QualType::substObjCMemberType().
DeclContext * DeclContext::getPrimaryContext | ( | ) |
getPrimaryContext - There may be many different declarations of the same entity (including forward declarations of classes, multiple definitions of namespaces, etc.), each with a different set of declarations.
This routine returns the "primary" DeclContext structure, which will contain the information needed to perform name lookup into this context.
Definition at line 1120 of file DeclBase.cpp.
References clang::TagDecl::getDefinition(), and clang::TagDecl::isBeingDefined().
Referenced by CollectEnclosingNamespace(), Encloses(), Equals(), findRecordWithDependentBasesOfEnclosingMethod(), getEnclosingNamespaceContext(), clang::Sema::getScopeForContext(), isImportedDeclContext(), lookups(), LookupVisibleDecls(), makeDeclVisibleInContext(), MightInstantiateTo(), noload_lookups(), and clang::ASTDeclWriter::VisitNamespaceDecl().
|
inline |
Definition at line 1486 of file DeclBase.h.
DeclContext * DeclContext::getRedeclContext | ( | ) |
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same name, or where it is a redeclaration if the two entities are compatible.
This skips through transparent contexts.
Definition at line 1675 of file DeclBase.cpp.
References getParent(), and isTransparentContext().
Referenced by adjustDeclContextForDeclaratorDecl(), clang::Sema::CheckCompleteVariableDeclaration(), clang::Sema::CheckDeductionGuideDeclarator(), clang::Sema::CheckDependentFunctionTemplateSpecialization(), CheckExplicitInstantiationScope(), clang::Sema::CheckFunctionTemplateSpecialization(), clang::Sema::CheckObjCDeclScope(), CheckOperatorNewDeleteDeclarationScope(), clang::Sema::CheckTemplateDeclScope(), CheckTemplateSpecializationScope(), clang::Sema::CheckUsingDeclQualifier(), clang::ASTReader::CompleteRedeclChain(), clang::LinkageComputer::computeLVForDecl(), clang::TypeName::createNestedNameSpecifierForScopeOf(), clang::NamedDecl::declarationReplaces(), clang::ASTContext::forEachMultiversionedFunctionVersion(), getContextForScopeMatching(), getDeclForLocalLookup(), clang::getDeclUsageType(), clang::NamedDecl::getExplicitVisibility(), getExternalLinkageFor(), getFunctionStorageClass(), clang::NamedDecl::isCXXClassMember(), clang::VarDecl::isFunctionOrMethodVarDecl(), clang::FunctionDecl::isMain(), clang::FunctionDecl::isMSVCRTEntryPoint(), isSameEntity(), shouldConsiderLinkage(), shouldIgnoreDueToReservedName(), and clang::ASTDeclWriter::VisitNamespaceDecl().
|
inline |
Definition at line 1494 of file DeclBase.h.
|
inline |
Whether this DeclContext has external storage containing additional declarations that are lexically in this context.
Definition at line 1903 of file DeclBase.h.
Referenced by clang::ExternalASTMerger::CanComplete(), clang::ExternalASTMerger::CompleteType(), clang::RecordDecl::field_begin(), clang::ASTContext::getASTRecordLayout(), and clang::RecordDecl::isMsStruct().
|
inline |
Whether this DeclContext has external storage containing additional declarations that are visible in this context.
Definition at line 1913 of file DeclBase.h.
Referenced by clang::ExternalASTMerger::CanComplete(), clang::ASTReader::completeVisibleDeclsMap(), and lookups().
bool DeclContext::InEnclosingNamespaceSetOf | ( | const DeclContext * | NS | ) | const |
Test if this context is part of the enclosing namespace set of the context NS, as defined in C++0x [namespace.def]p9.
If either context isn't a namespace, this is equivalent to Equals().
The enclosing namespace set of a namespace is the namespace and, if it is inline, its enclosing namespace, recursively.
Definition at line 1702 of file DeclBase.cpp.
References Equals(), and getParent().
Referenced by clang::Sema::CheckDependentFunctionTemplateSpecialization(), and CheckExplicitInstantiationScope().
|
inline |
Definition at line 1376 of file DeclBase.h.
Referenced by clang::FormatASTNodeDiagnosticArgument().
Determine whether the given declaration is stored in the list of declarations lexically within this context.
Definition at line 1925 of file DeclBase.h.
References clang::Decl::NextInContextAndBits.
bool DeclContext::isDependentContext | ( | ) | const |
Determines whether this context is dependent on a template parameter.
Definition at line 1040 of file DeclBase.cpp.
Referenced by clang::Sema::ActOnFinishFunctionBody(), clang::ASTRecordWriter::AddFunctionDefinition(), clang::CXXMethodDecl::addOverriddenMethod(), clang::Sema::adjustContextForLocalExternDecl(), buildDeclareReductionRef(), clang::Sema::BuildVariableInstantiation(), CanDeclareSpecialMemberFunction(), checkForMultipleExportedDefaultConstructors(), CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(), checkMoveAssignmentForRepeatedMove(), checkOpenMPLoop(), CheckOperatorDeleteDeclaration(), clang::Sema::CheckPureMethod(), clang::Sema::CheckTemplateArgument(), clang::Sema::CheckTemplatePartialSpecializationArgs(), checkTypeMappable(), clang::Sema::CheckUsingDeclQualifier(), clang::Sema::checkVarDeclRedefinition(), computeDeclRefDependence(), clang::Sema::DeclareImplicitDeductionGuides(), clang::ASTContext::DeclMustBeEmitted(), clang::Sema::DeduceFunctionTypeFromReturnExpr(), DiagnoseBaseOrMemInitializerOrder(), clang::Sema::FinalizeVarWithDestructor(), clang::Sema::FindInstantiatedDecl(), findRecordWithDependentBasesOfEnclosingMethod(), getCurrentInstantiationOf(), getStackIndexOfNearestEnclosingCaptureReadyLambda(), clang::CXXRecordDecl::hasAnyDependentBases(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateArgument::isDependent(), IsDerivedFromInclusive(), clang::TemplateArgument::isInstantiationDependent(), IsKnownEmitted(), isOdrUseContext(), clang::Expr::isPotentialConstantExpr(), clang::Sema::LookupParsedName(), clang::Sema::LookupQualifiedName(), clang::Sema::MarkBaseAndMemberDestructorsReferenced(), clang::Sema::MarkVTableUsed(), clang::CXXRecordDecl::mayBeAbstract(), clang::serialization::needsAnonymousDeclarationNumber(), clang::Sema::RequireCompleteDeclContext(), clang::Sema::SetCtorInitializers(), clang::Sema::shouldLinkDependentDeclWithPrevious(), clang::Sema::ShouldWarnIfUnusedFileScopedDecl(), clang::Sema::startLambdaDefinition(), and tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs().
bool DeclContext::isExternCContext | ( | ) | const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C linkage.
Definition at line 1091 of file DeclBase.cpp.
References isLinkageSpecContext(), and clang::LinkageSpecDecl::lang_c.
Referenced by clang::Sema::ActOnStartOpenMPDeclareTargetDirective(), clang::Sema::CheckTemplateDeclScope(), clang::VarDecl::isInExternCContext(), clang::FunctionDecl::isInExternCContext(), and clang::CXXRecordDecl::isInterfaceLike().
bool DeclContext::isExternCXXContext | ( | ) | const |
Determines whether this context or some of its ancestors is a linkage specification context that specifies C++ linkage.
Definition at line 1106 of file DeclBase.cpp.
References isLinkageSpecContext(), and clang::LinkageSpecDecl::lang_cxx.
Referenced by clang::Sema::ActOnStartOpenMPDeclareTargetDirective(), clang::VarDecl::isInExternCXXContext(), and clang::FunctionDecl::isInExternCXXContext().
|
inline |
Definition at line 1409 of file DeclBase.h.
Referenced by clang::Sema::ActOnFinishObjCImplementation(), clang::Sema::ActOnStartOpenMPDeclareTargetDirective(), clang::ASTUnit::addFileLevelDecl(), clang::ODRHash::AddFunctionDecl(), clang::Sema::adjustContextForLocalExternDecl(), clang::Sema::CheckCompleteVariableDeclaration(), clang::Sema::CheckTemplateDeclScope(), CheckTemplateSpecializationScope(), CollectEnclosingNamespace(), clang::LinkageComputer::computeLVForDecl(), computeShadowedDeclKind(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::Sema::createLambdaClosureType(), clang::Sema::FindInstantiatedDecl(), findOuterContext(), clang::ASTWriter::getDeclID(), getEnclosingNamespaceContext(), getExternalLinkageFor(), getTagInjectionContext(), clang::Sema::hasVisibleMemberSpecialization(), clang::CXXRecordDecl::isCurrentInstantiation(), isInInlineFunction(), isNamespaceOrTranslationUnitScope(), isNamespaceScope(), LookupQualifiedNameInUsingDirectives(), MightInstantiateTo(), shouldConsiderLinkage(), clang::Sema::shouldLinkDependentDeclWithPrevious(), and clang::TemplateDeclInstantiator::VisitFunctionDecl().
|
inline |
Definition at line 1392 of file DeclBase.h.
Referenced by clang::Sema::ActOnSEHTryBlock(), clang::CodeCompletionBuilder::addParentContext(), clang::Sema::adjustContextForLocalExternDecl(), clang::Sema::BuildVariableInstantiation(), CheckTemplateSpecializationScope(), computeCachedProperties(), clang::LinkageComputer::computeLVForDecl(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::Sema::createLambdaClosureType(), clang::Sema::FindInstantiatedDecl(), getContextForScopeMatching(), clang::getDeclUsageType(), getFunctionStorageClass(), clang::getParameterABISpelling(), clang::MaterializeTemporaryExpr::getStorageDuration(), getTagInjectionContext(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), isConsumerInterestedIn(), isDeclWithinFunction(), clang::VarDecl::isFunctionOrMethodVarDecl(), clang::Decl::isLexicallyWithinFunctionOrMethod(), LookupVisibleDecls(), clang::serialization::needsAnonymousDeclarationNumber(), clang::NamedDecl::printQualifiedName(), clang::Sema::PushUsingDirective(), shouldConsiderLinkage(), ShouldDiagnoseUnusedDecl(), shouldIgnoreDueToReservedName(), clang::TemplateDeclInstantiator::VisitFunctionDecl(), clang::ASTDeclReader::VisitVarDeclImpl(), and warnAboutAmbiguousFunction().
bool DeclContext::isInlineNamespace | ( | ) | const |
Definition at line 1019 of file DeclBase.cpp.
Referenced by CollectEnclosingNamespace().
|
inline |
Test whether the context supports looking up names.
Definition at line 1404 of file DeclBase.h.
References isFunctionOrMethod().
Referenced by isImportedDeclContext().
|
inline |
Definition at line 1421 of file DeclBase.h.
References isStdNamespace().
Referenced by clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), isDeclContextInNamespace(), clang::FunctionDecl::isGlobal(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), isStdNamespace(), and isTemplate().
|
inline |
Definition at line 1380 of file DeclBase.h.
Referenced by clang::Sema::CodeCompleteObjCMethodDecl(), and LookupMethodInReceiverType().
|
inline |
Definition at line 1417 of file DeclBase.h.
Referenced by clang::comments::Sema::checkDeprecatedCommand(), CheckExplicitInstantiationScope(), CheckTemplateSpecializationScope(), clang::Sema::CheckUsingDeclQualifier(), CollectEnclosingNamespace(), clang::LinkageComputer::computeLVForDecl(), clang::Sema::CreateCapturedStmtRecordDecl(), clang::Sema::createLambdaClosureType(), clang::getDeclUsageType(), getOuterLexicalRecordContext(), clang::Sema::getShadowedDeclaration(), haveIncompatibleLanguageLinkages(), clang::NamedDecl::isCXXClassMember(), isDeclExternC(), isDeclWithinFunction(), clang::RecordDecl::isInjectedClassName(), clang::Sema::MergeVarDecl(), and shouldConsiderLinkage().
bool DeclContext::isStdNamespace | ( | ) | const |
Definition at line 1024 of file DeclBase.cpp.
References clang::IdentifierInfo::isStr().
Referenced by clang::AnalysisDeclContext::isInStdNamespace(), clang::Decl::isInStdNamespace(), and clang::Sema::isLibstdcxxEagerExceptionSpecHack().
|
inline |
Definition at line 1413 of file DeclBase.h.
Referenced by clang::CodeCompletionBuilder::addParentContext(), AddTopLevelDeclarationToHash(), clang::TypeName::createNestedNameSpecifierForScopeOf(), clang::TypeName::createOuterNNS(), dumpDeclContext(), dumpLookups(), clang::FormatASTNodeDiagnosticArgument(), clang::getParameterABISpelling(), clang::Decl::getParentFunctionOrMethod(), getStackIndexOfNearestEnclosingCaptureReadyLambda(), clang::Sema::getTemplateInstantiationArgs(), clang::Decl::getTranslationUnitDecl(), isDeclContextInNamespace(), IsDisallowedCopyOrAssign(), clang::Sema::IsInsideALocalClassWithinATemplateFunction(), isTemplate(), LookupDirect(), clang::Parser::ParseTopLevelDecl(), and RedeclForcesDefC99().
bool DeclContext::isTransparentContext | ( | ) | const |
isTransparentContext - Determines whether this context is a "transparent" context, meaning that the members declared in this context are semantically declared in the nearest enclosing non-transparent (opaque) context but are lexically declared in this context.
For example, consider the enumerators of an enumeration type:
Here, E is a transparent context, so its enumerator (Val1) will appear (semantically) that it is in the same context of E. Examples of transparent contexts include: enumerations (except for C++0x scoped enums), and C++ linkage specifications.
Definition at line 1072 of file DeclBase.cpp.
Referenced by CollectEnclosingNamespace(), and getRedeclContext().
void DeclContext::localUncachedLookup | ( | DeclarationName | Name, |
SmallVectorImpl< NamedDecl *> & | Results | ||
) |
A simplistic name lookup mechanism that performs name lookup into this declaration context without consulting the external source.
This function should almost never be used, because it subverts the usual relationship between a DeclContext and the external source. See the ASTImporter for the (few, but important) use cases.
FIXME: This is very inefficient; replace uses of it with uses of noload_lookup.
Definition at line 1638 of file DeclBase.cpp.
DeclContext::lookup_result DeclContext::lookup | ( | DeclarationName | Name | ) | const |
lookup - Find the declarations (if any) with the given Name in this context.
Returns a range of iterators that contains all of the declarations with this name, with object, function, member, and enumerator names preceding any tag name. Note that this routine will not look into parent contexts.
Definition at line 1545 of file DeclBase.cpp.
Referenced by clang::Sema::BuildBlockForLambdaConversion(), clang::Sema::BuildMemInitializer(), clang::Sema::CheckCompletedCXXClass(), ClassImplementsAllMethodsAndProperties(), configureBlocksRuntimeObject(), clang::Sema::DeclareImplicitDeductionGuides(), clang::CodeGen::emitUserDefinedReduction(), clang::ObjCPropertyDecl::findPropertyDecl(), clang::ASTContext::forEachMultiversionedFunctionVersion(), clang::CodeGen::CodeGenModule::GetAddrOfConstantCFString(), clang::CXXMethodDecl::getCorrespondingMethodInClass(), clang::ComparisonCategoryInfo::ValueInfo::getIntValue(), clang::Sema::InstantiateClassMembers(), clang::TemplateDeclInstantiator::InstantiateEnumDefinition(), clang::TemplateDeclInstantiator::InstantiateTypedefNameDecl(), LookupDirect(), lookupStdNamespace(), clang::TreeTransform< Derived >::RebuildShuffleVectorExpr(), and clang::ASTDeclReader::VisitDecl().
|
inline |
Definition at line 76 of file DeclLookups.h.
References clang::DeclContext::all_lookups_iterator::all_lookups_iterator(), buildLookup(), clang::ExternalASTSource::completeVisibleDeclsMap(), clang::ASTContext::getExternalSource(), getParentASTContext(), getPrimaryContext(), and hasExternalVisibleStorage().
all_lookups_iterator clang::DeclContext::lookups_begin | ( | ) | const |
Iterators over all possible lookups within this context.
all_lookups_iterator clang::DeclContext::lookups_end | ( | ) | const |
void DeclContext::makeDeclVisibleInContext | ( | NamedDecl * | D | ) |
Makes a declaration visible within this context.
This routine makes the declaration D visible to name lookup within this context and, if this is a transparent context, within its parent contexts up to the first enclosing non-transparent context. Making a declaration visible within a context does not transfer ownership of a declaration, and a declaration can be visible in many contexts that aren't its lexical context.
If D is a redeclaration of an existing declaration that is visible from this context, as determined by NamedDecl::declarationReplaces, the previous declaration will be replaced with D.
Definition at line 1720 of file DeclBase.cpp.
References clang::StoredDeclsList::AddSubsequentDecl(), clang::C, clang::Decl::getDeclContext(), clang::NamedDecl::getDeclName(), clang::Decl::getLexicalDeclContext(), getPrimaryContext(), clang::StoredDeclsList::HandleRedeclaration(), clang::StoredDeclsList::isNull(), clang::StoredDeclsList::setHasExternalDecls(), clang::StoredDeclsList::setOnlyValue(), and shouldBeHidden().
Referenced by clang::Sema::BuildVariableInstantiation(), clang::Sema::CheckImplementationIvars(), and clang::TemplateDeclInstantiator::InstantiateEnumDefinition().
|
inline |
noload_decls_begin/end - Iterate over the declarations stored in this context that are currently loaded; don't attempt to retrieve anything from an external source.
Definition at line 1596 of file DeclBase.h.
|
inline |
Definition at line 1599 of file DeclBase.h.
|
inline |
Definition at line 1600 of file DeclBase.h.
DeclContext::lookup_result DeclContext::noload_lookup | ( | DeclarationName | Name | ) |
Find the declarations with the given name that are visible within this context; don't attempt to retrieve anything from an external source.
Definition at line 1607 of file DeclBase.cpp.
|
inline |
Definition at line 90 of file DeclLookups.h.
References clang::DeclContext::all_lookups_iterator::all_lookups_iterator(), getLookupPtr(), and getPrimaryContext().
all_lookups_iterator clang::DeclContext::noload_lookups_begin | ( | ) | const |
Iterators over all possible lookups within this context that are currently loaded; don't attempt to retrieve anything from an external source.
all_lookups_iterator clang::DeclContext::noload_lookups_end | ( | ) | const |
void DeclContext::removeDecl | ( | Decl * | D | ) |
Removes a declaration from this context.
Definition at line 1382 of file DeclBase.cpp.
References clang::Decl::getLexicalDeclContext(), and clang::Decl::NextInContextAndBits.
Referenced by clang::Sema::HideUsingShadowDecl().
State whether this DeclContext has external storage for declarations lexically in this context.
Definition at line 1907 of file DeclBase.h.
Referenced by clang::serialization::reader::ASTDeclContextNameLookupTrait::ReadDataInto().
State whether this DeclContext has external storage for declarations visible in this context.
Definition at line 1917 of file DeclBase.h.
|
inline |
Mark that there are external lexical declarations that we need to include in our lookup table (and that are not available as external visible lookups).
These extra lookup results will be found by walking the lexical declarations of this context. This should be used only if setHasExternalLexicalStorage() has been called on any decl context for which this is the primary context.
Definition at line 1888 of file DeclBase.h.
Definition at line 1930 of file DeclBase.h.
|
inline |
Definition at line 1936 of file DeclBase.h.
References clang::classof().
DeclContext::udir_range DeclContext::using_directives | ( | ) | const |
Returns iterator range [First, Last) of UsingDirectiveDecls stored within this context.
Definition at line 1829 of file DeclBase.cpp.
References clang::DeclContextLookupResult::begin(), clang::C, clang::StoredDeclsMap::DestroyAll(), clang::DeclContextLookupResult::end(), and clang::Result.
|
friend |
Definition at line 1306 of file DeclBase.h.
|
friend |
Definition at line 1307 of file DeclBase.h.
|
friend |
Definition at line 1949 of file DeclBase.h.
|
friend |
Definition at line 1308 of file DeclBase.h.
|
mutableprotected |
FirstDecl - The first declaration stored within this declaration context.
Definition at line 1312 of file DeclBase.h.
Referenced by clang::RecordDecl::field_begin(), and clang::RecordDecl::isMsStruct().
|
mutableprotected |
LastDecl - The last declaration stored within this declaration context.
FIXME: We could probably cache this value somewhere outside of the DeclContext, to reduce the size of DeclContext by another pointer.
Definition at line 1318 of file DeclBase.h.
Referenced by clang::RecordDecl::isMsStruct().