| //===- Decl.h - Classes for representing declarations -----------*- C++ -*-===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| // |
| // This file defines the Decl subclasses. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #ifndef LLVM_CLANG_AST_DECL_H |
| #define LLVM_CLANG_AST_DECL_H |
| |
| #include "clang/AST/APValue.h" |
| #include "clang/AST/ASTContextAllocate.h" |
| #include "clang/AST/DeclBase.h" |
| #include "clang/AST/DeclarationName.h" |
| #include "clang/AST/ExternalASTSource.h" |
| #include "clang/AST/NestedNameSpecifier.h" |
| #include "clang/AST/Redeclarable.h" |
| #include "clang/AST/Type.h" |
| #include "clang/Basic/AddressSpaces.h" |
| #include "clang/Basic/Diagnostic.h" |
| #include "clang/Basic/IdentifierTable.h" |
| #include "clang/Basic/LLVM.h" |
| #include "clang/Basic/Linkage.h" |
| #include "clang/Basic/OperatorKinds.h" |
| #include "clang/Basic/PartialDiagnostic.h" |
| #include "clang/Basic/PragmaKinds.h" |
| #include "clang/Basic/SourceLocation.h" |
| #include "clang/Basic/Specifiers.h" |
| #include "clang/Basic/Visibility.h" |
| #include "llvm/ADT/APSInt.h" |
| #include "llvm/ADT/ArrayRef.h" |
| #include "llvm/ADT/Optional.h" |
| #include "llvm/ADT/PointerIntPair.h" |
| #include "llvm/ADT/PointerUnion.h" |
| #include "llvm/ADT/StringRef.h" |
| #include "llvm/ADT/iterator_range.h" |
| #include "llvm/Support/Casting.h" |
| #include "llvm/Support/Compiler.h" |
| #include "llvm/Support/TrailingObjects.h" |
| #include <cassert> |
| #include <cstddef> |
| #include <cstdint> |
| #include <string> |
| #include <utility> |
| |
| namespace clang { |
| |
| class ASTContext; |
| struct ASTTemplateArgumentListInfo; |
| class Attr; |
| class CompoundStmt; |
| class DependentFunctionTemplateSpecializationInfo; |
| class EnumDecl; |
| class Expr; |
| class FunctionTemplateDecl; |
| class FunctionTemplateSpecializationInfo; |
| class LabelStmt; |
| class MemberSpecializationInfo; |
| class Module; |
| class NamespaceDecl; |
| class ParmVarDecl; |
| class RecordDecl; |
| class Stmt; |
| class StringLiteral; |
| class TagDecl; |
| class TemplateArgumentList; |
| class TemplateArgumentListInfo; |
| class TemplateParameterList; |
| class TypeAliasTemplateDecl; |
| class TypeLoc; |
| class UnresolvedSetImpl; |
| class VarTemplateDecl; |
| |
| /// A container of type source information. |
| /// |
| /// A client can read the relevant info using TypeLoc wrappers, e.g: |
| /// @code |
| /// TypeLoc TL = TypeSourceInfo->getTypeLoc(); |
| /// TL.getBeginLoc().print(OS, SrcMgr); |
| /// @endcode |
| class alignas(8) TypeSourceInfo { |
| // Contains a memory block after the class, used for type source information, |
| // allocated by ASTContext. |
| friend class ASTContext; |
| |
| QualType Ty; |
| |
| TypeSourceInfo(QualType ty) : Ty(ty) {} |
| |
| public: |
| /// Return the type wrapped by this type source info. |
| QualType getType() const { return Ty; } |
| |
| /// Return the TypeLoc wrapper for the type source info. |
| TypeLoc getTypeLoc() const; // implemented in TypeLoc.h |
| |
| /// Override the type stored in this TypeSourceInfo. Use with caution! |
| void overrideType(QualType T) { Ty = T; } |
| }; |
| |
| /// The top declaration context. |
| class TranslationUnitDecl : public Decl, public DeclContext { |
| ASTContext &Ctx; |
| |
| /// The (most recently entered) anonymous namespace for this |
| /// translation unit, if one has been created. |
| NamespaceDecl *AnonymousNamespace = nullptr; |
| |
| explicit TranslationUnitDecl(ASTContext &ctx); |
| |
| virtual void anchor(); |
| |
| public: |
| ASTContext &getASTContext() const { return Ctx; } |
| |
| NamespaceDecl *getAnonymousNamespace() const { return AnonymousNamespace; } |
| void setAnonymousNamespace(NamespaceDecl *D) { AnonymousNamespace = D; } |
| |
| static TranslationUnitDecl *Create(ASTContext &C); |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == TranslationUnit; } |
| static DeclContext *castToDeclContext(const TranslationUnitDecl *D) { |
| return static_cast<DeclContext *>(const_cast<TranslationUnitDecl*>(D)); |
| } |
| static TranslationUnitDecl *castFromDeclContext(const DeclContext *DC) { |
| return static_cast<TranslationUnitDecl *>(const_cast<DeclContext*>(DC)); |
| } |
| }; |
| |
| /// Represents a `#pragma comment` line. Always a child of |
| /// TranslationUnitDecl. |
| class PragmaCommentDecl final |
| : public Decl, |
| private llvm::TrailingObjects<PragmaCommentDecl, char> { |
| friend class ASTDeclReader; |
| friend class ASTDeclWriter; |
| friend TrailingObjects; |
| |
| PragmaMSCommentKind CommentKind; |
| |
| PragmaCommentDecl(TranslationUnitDecl *TU, SourceLocation CommentLoc, |
| PragmaMSCommentKind CommentKind) |
| : Decl(PragmaComment, TU, CommentLoc), CommentKind(CommentKind) {} |
| |
| virtual void anchor(); |
| |
| public: |
| static PragmaCommentDecl *Create(const ASTContext &C, TranslationUnitDecl *DC, |
| SourceLocation CommentLoc, |
| PragmaMSCommentKind CommentKind, |
| StringRef Arg); |
| static PragmaCommentDecl *CreateDeserialized(ASTContext &C, unsigned ID, |
| unsigned ArgSize); |
| |
| PragmaMSCommentKind getCommentKind() const { return CommentKind; } |
| |
| StringRef getArg() const { return getTrailingObjects<char>(); } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == PragmaComment; } |
| }; |
| |
| /// Represents a `#pragma detect_mismatch` line. Always a child of |
| /// TranslationUnitDecl. |
| class PragmaDetectMismatchDecl final |
| : public Decl, |
| private llvm::TrailingObjects<PragmaDetectMismatchDecl, char> { |
| friend class ASTDeclReader; |
| friend class ASTDeclWriter; |
| friend TrailingObjects; |
| |
| size_t ValueStart; |
| |
| PragmaDetectMismatchDecl(TranslationUnitDecl *TU, SourceLocation Loc, |
| size_t ValueStart) |
| : Decl(PragmaDetectMismatch, TU, Loc), ValueStart(ValueStart) {} |
| |
| virtual void anchor(); |
| |
| public: |
| static PragmaDetectMismatchDecl *Create(const ASTContext &C, |
| TranslationUnitDecl *DC, |
| SourceLocation Loc, StringRef Name, |
| StringRef Value); |
| static PragmaDetectMismatchDecl * |
| CreateDeserialized(ASTContext &C, unsigned ID, unsigned NameValueSize); |
| |
| StringRef getName() const { return getTrailingObjects<char>(); } |
| StringRef getValue() const { return getTrailingObjects<char>() + ValueStart; } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == PragmaDetectMismatch; } |
| }; |
| |
| /// Declaration context for names declared as extern "C" in C++. This |
| /// is neither the semantic nor lexical context for such declarations, but is |
| /// used to check for conflicts with other extern "C" declarations. Example: |
| /// |
| /// \code |
| /// namespace N { extern "C" void f(); } // #1 |
| /// void N::f() {} // #2 |
| /// namespace M { extern "C" void f(); } // #3 |
| /// \endcode |
| /// |
| /// The semantic context of #1 is namespace N and its lexical context is the |
| /// LinkageSpecDecl; the semantic context of #2 is namespace N and its lexical |
| /// context is the TU. However, both declarations are also visible in the |
| /// extern "C" context. |
| /// |
| /// The declaration at #3 finds it is a redeclaration of \c N::f through |
| /// lookup in the extern "C" context. |
| class ExternCContextDecl : public Decl, public DeclContext { |
| explicit ExternCContextDecl(TranslationUnitDecl *TU) |
| : Decl(ExternCContext, TU, SourceLocation()), |
| DeclContext(ExternCContext) {} |
| |
| virtual void anchor(); |
| |
| public: |
| static ExternCContextDecl *Create(const ASTContext &C, |
| TranslationUnitDecl *TU); |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == ExternCContext; } |
| static DeclContext *castToDeclContext(const ExternCContextDecl *D) { |
| return static_cast<DeclContext *>(const_cast<ExternCContextDecl*>(D)); |
| } |
| static ExternCContextDecl *castFromDeclContext(const DeclContext *DC) { |
| return static_cast<ExternCContextDecl *>(const_cast<DeclContext*>(DC)); |
| } |
| }; |
| |
| /// This represents a decl that may have a name. Many decls have names such |
| /// as ObjCMethodDecl, but not \@class, etc. |
| /// |
| /// Note that not every NamedDecl is actually named (e.g., a struct might |
| /// be anonymous), and not every name is an identifier. |
| class NamedDecl : public Decl { |
| /// The name of this declaration, which is typically a normal |
| /// identifier but may also be a special kind of name (C++ |
| /// constructor, Objective-C selector, etc.) |
| DeclarationName Name; |
| |
| virtual void anchor(); |
| |
| private: |
| NamedDecl *getUnderlyingDeclImpl() LLVM_READONLY; |
| |
| protected: |
| NamedDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N) |
| : Decl(DK, DC, L), Name(N) {} |
| |
| public: |
| /// Get the identifier that names this declaration, if there is one. |
| /// |
| /// This will return NULL if this declaration has no name (e.g., for |
| /// an unnamed class) or if the name is a special name (C++ constructor, |
| /// Objective-C selector, etc.). |
| IdentifierInfo *getIdentifier() const { return Name.getAsIdentifierInfo(); } |
| |
| /// Get the name of identifier for this declaration as a StringRef. |
| /// |
| /// This requires that the declaration have a name and that it be a simple |
| /// identifier. |
| StringRef getName() const { |
| assert(Name.isIdentifier() && "Name is not a simple identifier"); |
| return getIdentifier() ? getIdentifier()->getName() : ""; |
| } |
| |
| /// Get a human-readable name for the declaration, even if it is one of the |
| /// special kinds of names (C++ constructor, Objective-C selector, etc). |
| /// |
| /// Creating this name requires expensive string manipulation, so it should |
| /// be called only when performance doesn't matter. For simple declarations, |
| /// getNameAsCString() should suffice. |
| // |
| // FIXME: This function should be renamed to indicate that it is not just an |
| // alternate form of getName(), and clients should move as appropriate. |
| // |
| // FIXME: Deprecated, move clients to getName(). |
| std::string getNameAsString() const { return Name.getAsString(); } |
| |
| virtual void printName(raw_ostream &os) const; |
| |
| /// Get the actual, stored name of the declaration, which may be a special |
| /// name. |
| DeclarationName getDeclName() const { return Name; } |
| |
| /// Set the name of this declaration. |
| void setDeclName(DeclarationName N) { Name = N; } |
| |
| /// Returns a human-readable qualified name for this declaration, like |
| /// A::B::i, for i being member of namespace A::B. |
| /// |
| /// If the declaration is not a member of context which can be named (record, |
| /// namespace), it will return the same result as printName(). |
| /// |
| /// Creating this name is expensive, so it should be called only when |
| /// performance doesn't matter. |
| void printQualifiedName(raw_ostream &OS) const; |
| void printQualifiedName(raw_ostream &OS, const PrintingPolicy &Policy) const; |
| |
| /// Print only the nested name specifier part of a fully-qualified name, |
| /// including the '::' at the end. E.g. |
| /// when `printQualifiedName(D)` prints "A::B::i", |
| /// this function prints "A::B::". |
| void printNestedNameSpecifier(raw_ostream &OS) const; |
| void printNestedNameSpecifier(raw_ostream &OS, |
| const PrintingPolicy &Policy) const; |
| |
| // FIXME: Remove string version. |
| std::string getQualifiedNameAsString() const; |
| |
| /// Appends a human-readable name for this declaration into the given stream. |
| /// |
| /// This is the method invoked by Sema when displaying a NamedDecl |
| /// in a diagnostic. It does not necessarily produce the same |
| /// result as printName(); for example, class template |
| /// specializations are printed with their template arguments. |
| virtual void getNameForDiagnostic(raw_ostream &OS, |
| const PrintingPolicy &Policy, |
| bool Qualified) const; |
| |
| /// Determine whether this declaration, if known to be well-formed within |
| /// its context, will replace the declaration OldD if introduced into scope. |
| /// |
| /// A declaration will replace another declaration if, for example, it is |
| /// a redeclaration of the same variable or function, but not if it is a |
| /// declaration of a different kind (function vs. class) or an overloaded |
| /// function. |
| /// |
| /// \param IsKnownNewer \c true if this declaration is known to be newer |
| /// than \p OldD (for instance, if this declaration is newly-created). |
| bool declarationReplaces(NamedDecl *OldD, bool IsKnownNewer = true) const; |
| |
| /// Determine whether this declaration has linkage. |
| bool hasLinkage() const; |
| |
| using Decl::isModulePrivate; |
| using Decl::setModulePrivate; |
| |
| /// Determine whether this declaration is a C++ class member. |
| bool isCXXClassMember() const { |
| const DeclContext *DC = getDeclContext(); |
| |
| // C++0x [class.mem]p1: |
| // The enumerators of an unscoped enumeration defined in |
| // the class are members of the class. |
| if (isa<EnumDecl>(DC)) |
| DC = DC->getRedeclContext(); |
| |
| return DC->isRecord(); |
| } |
| |
| /// Determine whether the given declaration is an instance member of |
| /// a C++ class. |
| bool isCXXInstanceMember() const; |
| |
| /// Determine what kind of linkage this entity has. |
| /// |
| /// This is not the linkage as defined by the standard or the codegen notion |
| /// of linkage. It is just an implementation detail that is used to compute |
| /// those. |
| Linkage getLinkageInternal() const; |
| |
| /// Get the linkage from a semantic point of view. Entities in |
| /// anonymous namespaces are external (in c++98). |
| Linkage getFormalLinkage() const { |
| return clang::getFormalLinkage(getLinkageInternal()); |
| } |
| |
| /// True if this decl has external linkage. |
| bool hasExternalFormalLinkage() const { |
| return isExternalFormalLinkage(getLinkageInternal()); |
| } |
| |
| bool isExternallyVisible() const { |
| return clang::isExternallyVisible(getLinkageInternal()); |
| } |
| |
| /// Determine whether this declaration can be redeclared in a |
| /// different translation unit. |
| bool isExternallyDeclarable() const { |
| return isExternallyVisible() && !getOwningModuleForLinkage(); |
| } |
| |
| /// Determines the visibility of this entity. |
| Visibility getVisibility() const { |
| return getLinkageAndVisibility().getVisibility(); |
| } |
| |
| /// Determines the linkage and visibility of this entity. |
| LinkageInfo getLinkageAndVisibility() const; |
| |
| /// Kinds of explicit visibility. |
| enum ExplicitVisibilityKind { |
| /// Do an LV computation for, ultimately, a type. |
| /// Visibility may be restricted by type visibility settings and |
| /// the visibility of template arguments. |
| VisibilityForType, |
| |
| /// Do an LV computation for, ultimately, a non-type declaration. |
| /// Visibility may be restricted by value visibility settings and |
| /// the visibility of template arguments. |
| VisibilityForValue |
| }; |
| |
| /// If visibility was explicitly specified for this |
| /// declaration, return that visibility. |
| Optional<Visibility> |
| getExplicitVisibility(ExplicitVisibilityKind kind) const; |
| |
| /// True if the computed linkage is valid. Used for consistency |
| /// checking. Should always return true. |
| bool isLinkageValid() const; |
| |
| /// True if something has required us to compute the linkage |
| /// of this declaration. |
| /// |
| /// Language features which can retroactively change linkage (like a |
| /// typedef name for linkage purposes) may need to consider this, |
| /// but hopefully only in transitory ways during parsing. |
| bool hasLinkageBeenComputed() const { |
| return hasCachedLinkage(); |
| } |
| |
| /// Looks through UsingDecls and ObjCCompatibleAliasDecls for |
| /// the underlying named decl. |
| NamedDecl *getUnderlyingDecl() { |
| // Fast-path the common case. |
| if (this->getKind() != UsingShadow && |
| this->getKind() != ConstructorUsingShadow && |
| this->getKind() != ObjCCompatibleAlias && |
| this->getKind() != NamespaceAlias) |
| return this; |
| |
| return getUnderlyingDeclImpl(); |
| } |
| const NamedDecl *getUnderlyingDecl() const { |
| return const_cast<NamedDecl*>(this)->getUnderlyingDecl(); |
| } |
| |
| NamedDecl *getMostRecentDecl() { |
| return cast<NamedDecl>(static_cast<Decl *>(this)->getMostRecentDecl()); |
| } |
| const NamedDecl *getMostRecentDecl() const { |
| return const_cast<NamedDecl*>(this)->getMostRecentDecl(); |
| } |
| |
| ObjCStringFormatFamily getObjCFStringFormattingFamily() const; |
| |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K >= firstNamed && K <= lastNamed; } |
| }; |
| |
| inline raw_ostream &operator<<(raw_ostream &OS, const NamedDecl &ND) { |
| ND.printName(OS); |
| return OS; |
| } |
| |
| /// Represents the declaration of a label. Labels also have a |
| /// corresponding LabelStmt, which indicates the position that the label was |
| /// defined at. For normal labels, the location of the decl is the same as the |
| /// location of the statement. For GNU local labels (__label__), the decl |
| /// location is where the __label__ is. |
| class LabelDecl : public NamedDecl { |
| LabelStmt *TheStmt; |
| StringRef MSAsmName; |
| bool MSAsmNameResolved = false; |
| |
| /// For normal labels, this is the same as the main declaration |
| /// label, i.e., the location of the identifier; for GNU local labels, |
| /// this is the location of the __label__ keyword. |
| SourceLocation LocStart; |
| |
| LabelDecl(DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II, |
| LabelStmt *S, SourceLocation StartL) |
| : NamedDecl(Label, DC, IdentL, II), TheStmt(S), LocStart(StartL) {} |
| |
| void anchor() override; |
| |
| public: |
| static LabelDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation IdentL, IdentifierInfo *II); |
| static LabelDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation IdentL, IdentifierInfo *II, |
| SourceLocation GnuLabelL); |
| static LabelDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| LabelStmt *getStmt() const { return TheStmt; } |
| void setStmt(LabelStmt *T) { TheStmt = T; } |
| |
| bool isGnuLocal() const { return LocStart != getLocation(); } |
| void setLocStart(SourceLocation L) { LocStart = L; } |
| |
| SourceRange getSourceRange() const override LLVM_READONLY { |
| return SourceRange(LocStart, getLocation()); |
| } |
| |
| bool isMSAsmLabel() const { return !MSAsmName.empty(); } |
| bool isResolvedMSAsmLabel() const { return isMSAsmLabel() && MSAsmNameResolved; } |
| void setMSAsmLabel(StringRef Name); |
| StringRef getMSAsmLabel() const { return MSAsmName; } |
| void setMSAsmLabelResolved() { MSAsmNameResolved = true; } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == Label; } |
| }; |
| |
| /// Represent a C++ namespace. |
| class NamespaceDecl : public NamedDecl, public DeclContext, |
| public Redeclarable<NamespaceDecl> |
| { |
| /// The starting location of the source range, pointing |
| /// to either the namespace or the inline keyword. |
| SourceLocation LocStart; |
| |
| /// The ending location of the source range. |
| SourceLocation RBraceLoc; |
| |
| /// A pointer to either the anonymous namespace that lives just inside |
| /// this namespace or to the first namespace in the chain (the latter case |
| /// only when this is not the first in the chain), along with a |
| /// boolean value indicating whether this is an inline namespace. |
| llvm::PointerIntPair<NamespaceDecl *, 1, bool> AnonOrFirstNamespaceAndInline; |
| |
| NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline, |
| SourceLocation StartLoc, SourceLocation IdLoc, |
| IdentifierInfo *Id, NamespaceDecl *PrevDecl); |
| |
| using redeclarable_base = Redeclarable<NamespaceDecl>; |
| |
| NamespaceDecl *getNextRedeclarationImpl() override; |
| NamespaceDecl *getPreviousDeclImpl() override; |
| NamespaceDecl *getMostRecentDeclImpl() override; |
| |
| public: |
| friend class ASTDeclReader; |
| friend class ASTDeclWriter; |
| |
| static NamespaceDecl *Create(ASTContext &C, DeclContext *DC, |
| bool Inline, SourceLocation StartLoc, |
| SourceLocation IdLoc, IdentifierInfo *Id, |
| NamespaceDecl *PrevDecl); |
| |
| static NamespaceDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| using redecl_range = redeclarable_base::redecl_range; |
| using redecl_iterator = redeclarable_base::redecl_iterator; |
| |
| using redeclarable_base::redecls_begin; |
| using redeclarable_base::redecls_end; |
| using redeclarable_base::redecls; |
| using redeclarable_base::getPreviousDecl; |
| using redeclarable_base::getMostRecentDecl; |
| using redeclarable_base::isFirstDecl; |
| |
| /// Returns true if this is an anonymous namespace declaration. |
| /// |
| /// For example: |
| /// \code |
| /// namespace { |
| /// ... |
| /// }; |
| /// \endcode |
| /// q.v. C++ [namespace.unnamed] |
| bool isAnonymousNamespace() const { |
| return !getIdentifier(); |
| } |
| |
| /// Returns true if this is an inline namespace declaration. |
| bool isInline() const { |
| return AnonOrFirstNamespaceAndInline.getInt(); |
| } |
| |
| /// Set whether this is an inline namespace declaration. |
| void setInline(bool Inline) { |
| AnonOrFirstNamespaceAndInline.setInt(Inline); |
| } |
| |
| /// Get the original (first) namespace declaration. |
| NamespaceDecl *getOriginalNamespace(); |
| |
| /// Get the original (first) namespace declaration. |
| const NamespaceDecl *getOriginalNamespace() const; |
| |
| /// Return true if this declaration is an original (first) declaration |
| /// of the namespace. This is false for non-original (subsequent) namespace |
| /// declarations and anonymous namespaces. |
| bool isOriginalNamespace() const; |
| |
| /// Retrieve the anonymous namespace nested inside this namespace, |
| /// if any. |
| NamespaceDecl *getAnonymousNamespace() const { |
| return getOriginalNamespace()->AnonOrFirstNamespaceAndInline.getPointer(); |
| } |
| |
| void setAnonymousNamespace(NamespaceDecl *D) { |
| getOriginalNamespace()->AnonOrFirstNamespaceAndInline.setPointer(D); |
| } |
| |
| /// Retrieves the canonical declaration of this namespace. |
| NamespaceDecl *getCanonicalDecl() override { |
| return getOriginalNamespace(); |
| } |
| const NamespaceDecl *getCanonicalDecl() const { |
| return getOriginalNamespace(); |
| } |
| |
| SourceRange getSourceRange() const override LLVM_READONLY { |
| return SourceRange(LocStart, RBraceLoc); |
| } |
| |
| SourceLocation getBeginLoc() const LLVM_READONLY { return LocStart; } |
| SourceLocation getRBraceLoc() const { return RBraceLoc; } |
| void setLocStart(SourceLocation L) { LocStart = L; } |
| void setRBraceLoc(SourceLocation L) { RBraceLoc = L; } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == Namespace; } |
| static DeclContext *castToDeclContext(const NamespaceDecl *D) { |
| return static_cast<DeclContext *>(const_cast<NamespaceDecl*>(D)); |
| } |
| static NamespaceDecl *castFromDeclContext(const DeclContext *DC) { |
| return static_cast<NamespaceDecl *>(const_cast<DeclContext*>(DC)); |
| } |
| }; |
| |
| /// Represent the declaration of a variable (in which case it is |
| /// an lvalue) a function (in which case it is a function designator) or |
| /// an enum constant. |
| class ValueDecl : public NamedDecl { |
| QualType DeclType; |
| |
| void anchor() override; |
| |
| protected: |
| ValueDecl(Kind DK, DeclContext *DC, SourceLocation L, |
| DeclarationName N, QualType T) |
| : NamedDecl(DK, DC, L, N), DeclType(T) {} |
| |
| public: |
| QualType getType() const { return DeclType; } |
| void setType(QualType newType) { DeclType = newType; } |
| |
| /// Determine whether this symbol is weakly-imported, |
| /// or declared with the weak or weak-ref attr. |
| bool isWeak() const; |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; } |
| }; |
| |
| /// A struct with extended info about a syntactic |
| /// name qualifier, to be used for the case of out-of-line declarations. |
| struct QualifierInfo { |
| NestedNameSpecifierLoc QualifierLoc; |
| |
| /// The number of "outer" template parameter lists. |
| /// The count includes all of the template parameter lists that were matched |
| /// against the template-ids occurring into the NNS and possibly (in the |
| /// case of an explicit specialization) a final "template <>". |
| unsigned NumTemplParamLists = 0; |
| |
| /// A new-allocated array of size NumTemplParamLists, |
| /// containing pointers to the "outer" template parameter lists. |
| /// It includes all of the template parameter lists that were matched |
| /// against the template-ids occurring into the NNS and possibly (in the |
| /// case of an explicit specialization) a final "template <>". |
| TemplateParameterList** TemplParamLists = nullptr; |
| |
| QualifierInfo() = default; |
| QualifierInfo(const QualifierInfo &) = delete; |
| QualifierInfo& operator=(const QualifierInfo &) = delete; |
| |
| /// Sets info about "outer" template parameter lists. |
| void setTemplateParameterListsInfo(ASTContext &Context, |
| ArrayRef<TemplateParameterList *> TPLists); |
| }; |
| |
| /// Represents a ValueDecl that came out of a declarator. |
| /// Contains type source information through TypeSourceInfo. |
| class DeclaratorDecl : public ValueDecl { |
| // A struct representing both a TInfo and a syntactic qualifier, |
| // to be used for the (uncommon) case of out-of-line declarations. |
| struct ExtInfo : public QualifierInfo { |
| TypeSourceInfo *TInfo; |
| }; |
| |
| llvm::PointerUnion<TypeSourceInfo *, ExtInfo *> DeclInfo; |
| |
| /// The start of the source range for this declaration, |
| /// ignoring outer template declarations. |
| SourceLocation InnerLocStart; |
| |
| bool hasExtInfo() const { return DeclInfo.is<ExtInfo*>(); } |
| ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); } |
| const ExtInfo *getExtInfo() const { return DeclInfo.get<ExtInfo*>(); } |
| |
| protected: |
| DeclaratorDecl(Kind DK, DeclContext *DC, SourceLocation L, |
| DeclarationName N, QualType T, TypeSourceInfo *TInfo, |
| SourceLocation StartL) |
| : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {} |
| |
| public: |
| friend class ASTDeclReader; |
| friend class ASTDeclWriter; |
| |
| TypeSourceInfo *getTypeSourceInfo() const { |
| return hasExtInfo() |
| ? getExtInfo()->TInfo |
| : DeclInfo.get<TypeSourceInfo*>(); |
| } |
| |
| void setTypeSourceInfo(TypeSourceInfo *TI) { |
| if (hasExtInfo()) |
| getExtInfo()->TInfo = TI; |
| else |
| DeclInfo = TI; |
| } |
| |
| /// Return start of source range ignoring outer template declarations. |
| SourceLocation getInnerLocStart() const { return InnerLocStart; } |
| void setInnerLocStart(SourceLocation L) { InnerLocStart = L; } |
| |
| /// Return start of source range taking into account any outer template |
| /// declarations. |
| SourceLocation getOuterLocStart() const; |
| |
| SourceRange getSourceRange() const override LLVM_READONLY; |
| |
| SourceLocation getBeginLoc() const LLVM_READONLY { |
| return getOuterLocStart(); |
| } |
| |
| /// Retrieve the nested-name-specifier that qualifies the name of this |
| /// declaration, if it was present in the source. |
| NestedNameSpecifier *getQualifier() const { |
| return hasExtInfo() ? getExtInfo()->QualifierLoc.getNestedNameSpecifier() |
| : nullptr; |
| } |
| |
| /// Retrieve the nested-name-specifier (with source-location |
| /// information) that qualifies the name of this declaration, if it was |
| /// present in the source. |
| NestedNameSpecifierLoc getQualifierLoc() const { |
| return hasExtInfo() ? getExtInfo()->QualifierLoc |
| : NestedNameSpecifierLoc(); |
| } |
| |
| void setQualifierInfo(NestedNameSpecifierLoc QualifierLoc); |
| |
| unsigned getNumTemplateParameterLists() const { |
| return hasExtInfo() ? getExtInfo()->NumTemplParamLists : 0; |
| } |
| |
| TemplateParameterList *getTemplateParameterList(unsigned index) const { |
| assert(index < getNumTemplateParameterLists()); |
| return getExtInfo()->TemplParamLists[index]; |
| } |
| |
| void setTemplateParameterListsInfo(ASTContext &Context, |
| ArrayRef<TemplateParameterList *> TPLists); |
| |
| SourceLocation getTypeSpecStartLoc() const; |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { |
| return K >= firstDeclarator && K <= lastDeclarator; |
| } |
| }; |
| |
| /// Structure used to store a statement, the constant value to |
| /// which it was evaluated (if any), and whether or not the statement |
| /// is an integral constant expression (if known). |
| struct EvaluatedStmt { |
| /// Whether this statement was already evaluated. |
| bool WasEvaluated : 1; |
| |
| /// Whether this statement is being evaluated. |
| bool IsEvaluating : 1; |
| |
| /// Whether we already checked whether this statement was an |
| /// integral constant expression. |
| bool CheckedICE : 1; |
| |
| /// Whether we are checking whether this statement is an |
| /// integral constant expression. |
| bool CheckingICE : 1; |
| |
| /// Whether this statement is an integral constant expression, |
| /// or in C++11, whether the statement is a constant expression. Only |
| /// valid if CheckedICE is true. |
| bool IsICE : 1; |
| |
| /// Whether this variable is known to have constant destruction. That is, |
| /// whether running the destructor on the initial value is a side-effect |
| /// (and doesn't inspect any state that might have changed during program |
| /// execution). This is currently only computed if the destructor is |
| /// non-trivial. |
| bool HasConstantDestruction : 1; |
| |
| Stmt *Value; |
| APValue Evaluated; |
| |
| EvaluatedStmt() |
| : WasEvaluated(false), IsEvaluating(false), CheckedICE(false), |
| CheckingICE(false), IsICE(false), HasConstantDestruction(false) {} |
| }; |
| |
| /// Represents a variable declaration or definition. |
| class VarDecl : public DeclaratorDecl, public Redeclarable<VarDecl> { |
| public: |
| /// Initialization styles. |
| enum InitializationStyle { |
| /// C-style initialization with assignment |
| CInit, |
| |
| /// Call-style initialization (C++98) |
| CallInit, |
| |
| /// Direct list-initialization (C++11) |
| ListInit |
| }; |
| |
| /// Kinds of thread-local storage. |
| enum TLSKind { |
| /// Not a TLS variable. |
| TLS_None, |
| |
| /// TLS with a known-constant initializer. |
| TLS_Static, |
| |
| /// TLS with a dynamic initializer. |
| TLS_Dynamic |
| }; |
| |
| /// Return the string used to specify the storage class \p SC. |
| /// |
| /// It is illegal to call this function with SC == None. |
| static const char *getStorageClassSpecifierString(StorageClass SC); |
| |
| protected: |
| // A pointer union of Stmt * and EvaluatedStmt *. When an EvaluatedStmt, we |
| // have allocated the auxiliary struct of information there. |
| // |
| // TODO: It is a bit unfortunate to use a PointerUnion inside the VarDecl for |
| // this as *many* VarDecls are ParmVarDecls that don't have default |
| // arguments. We could save some space by moving this pointer union to be |
| // allocated in trailing space when necessary. |
| using InitType = llvm::PointerUnion<Stmt *, EvaluatedStmt *>; |
| |
| /// The initializer for this variable or, for a ParmVarDecl, the |
| /// C++ default argument. |
| mutable InitType Init; |
| |
| private: |
| friend class ASTDeclReader; |
| friend class ASTNodeImporter; |
| friend class StmtIteratorBase; |
| |
| class VarDeclBitfields { |
| friend class ASTDeclReader; |
| friend class VarDecl; |
| |
| unsigned SClass : 3; |
| unsigned TSCSpec : 2; |
| unsigned InitStyle : 2; |
| |
| /// Whether this variable is an ARC pseudo-__strong variable; see |
| /// isARCPseudoStrong() for details. |
| unsigned ARCPseudoStrong : 1; |
| }; |
| enum { NumVarDeclBits = 8 }; |
| |
| protected: |
| enum { NumParameterIndexBits = 8 }; |
| |
| enum DefaultArgKind { |
| DAK_None, |
| DAK_Unparsed, |
| DAK_Uninstantiated, |
| DAK_Normal |
| }; |
| |
| class ParmVarDeclBitfields { |
| friend class ASTDeclReader; |
| friend class ParmVarDecl; |
| |
| unsigned : NumVarDeclBits; |
| |
| /// Whether this parameter inherits a default argument from a |
| /// prior declaration. |
| unsigned HasInheritedDefaultArg : 1; |
| |
| /// Describes the kind of default argument for this parameter. By default |
| /// this is none. If this is normal, then the default argument is stored in |
| /// the \c VarDecl initializer expression unless we were unable to parse |
| /// (even an invalid) expression for the default argument. |
| unsigned DefaultArgKind : 2; |
| |
| /// Whether this parameter undergoes K&R argument promotion. |
| unsigned IsKNRPromoted : 1; |
| |
| /// Whether this parameter is an ObjC method parameter or not. |
| unsigned IsObjCMethodParam : 1; |
| |
| /// If IsObjCMethodParam, a Decl::ObjCDeclQualifier. |
| /// Otherwise, the number of function parameter scopes enclosing |
| /// the function parameter scope in which this parameter was |
| /// declared. |
| unsigned ScopeDepthOrObjCQuals : 7; |
| |
| /// The number of parameters preceding this parameter in the |
| /// function parameter scope in which it was declared. |
| unsigned ParameterIndex : NumParameterIndexBits; |
| }; |
| |
| class NonParmVarDeclBitfields { |
| friend class ASTDeclReader; |
| friend class ImplicitParamDecl; |
| friend class VarDecl; |
| |
| unsigned : NumVarDeclBits; |
| |
| // FIXME: We need something similar to CXXRecordDecl::DefinitionData. |
| /// Whether this variable is a definition which was demoted due to |
| /// module merge. |
| unsigned IsThisDeclarationADemotedDefinition : 1; |
| |
| /// Whether this variable is the exception variable in a C++ catch |
| /// or an Objective-C @catch statement. |
| unsigned ExceptionVar : 1; |
| |
| /// Whether this local variable could be allocated in the return |
| /// slot of its function, enabling the named return value optimization |
| /// (NRVO). |
| unsigned NRVOVariable : 1; |
| |
| /// Whether this variable is the for-range-declaration in a C++0x |
| /// for-range statement. |
| unsigned CXXForRangeDecl : 1; |
| |
| /// Whether this variable is the for-in loop declaration in Objective-C. |
| unsigned ObjCForDecl : 1; |
| |
| /// Whether this variable is (C++1z) inline. |
| unsigned IsInline : 1; |
| |
| /// Whether this variable has (C++1z) inline explicitly specified. |
| unsigned IsInlineSpecified : 1; |
| |
| /// Whether this variable is (C++0x) constexpr. |
| unsigned IsConstexpr : 1; |
| |
| /// Whether this variable is the implicit variable for a lambda |
| /// init-capture. |
| unsigned IsInitCapture : 1; |
| |
| /// Whether this local extern variable's previous declaration was |
| /// declared in the same block scope. This controls whether we should merge |
| /// the type of this declaration with its previous declaration. |
| unsigned PreviousDeclInSameBlockScope : 1; |
| |
| /// Defines kind of the ImplicitParamDecl: 'this', 'self', 'vtt', '_cmd' or |
| /// something else. |
| unsigned ImplicitParamKind : 3; |
| |
| unsigned EscapingByref : 1; |
| }; |
| |
| union { |
| unsigned AllBits; |
| VarDeclBitfields VarDeclBits; |
| ParmVarDeclBitfields ParmVarDeclBits; |
| NonParmVarDeclBitfields NonParmVarDeclBits; |
| }; |
| |
| VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, |
| SourceLocation IdLoc, IdentifierInfo *Id, QualType T, |
| TypeSourceInfo *TInfo, StorageClass SC); |
| |
| using redeclarable_base = Redeclarable<VarDecl>; |
| |
| VarDecl *getNextRedeclarationImpl() override { |
| return getNextRedeclaration(); |
| } |
| |
| VarDecl *getPreviousDeclImpl() override { |
| return getPreviousDecl(); |
| } |
| |
| VarDecl *getMostRecentDeclImpl() override { |
| return getMostRecentDecl(); |
| } |
| |
| public: |
| using redecl_range = redeclarable_base::redecl_range; |
| using redecl_iterator = redeclarable_base::redecl_iterator; |
| |
| using redeclarable_base::redecls_begin; |
| using redeclarable_base::redecls_end; |
| using redeclarable_base::redecls; |
| using redeclarable_base::getPreviousDecl; |
| using redeclarable_base::getMostRecentDecl; |
| using redeclarable_base::isFirstDecl; |
| |
| static VarDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation StartLoc, SourceLocation IdLoc, |
| IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, |
| StorageClass S); |
| |
| static VarDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| SourceRange getSourceRange() const override LLVM_READONLY; |
| |
| /// Returns the storage class as written in the source. For the |
| /// computed linkage of symbol, see getLinkage. |
| StorageClass getStorageClass() const { |
| return (StorageClass) VarDeclBits.SClass; |
| } |
| void setStorageClass(StorageClass SC); |
| |
| void setTSCSpec(ThreadStorageClassSpecifier TSC) { |
| VarDeclBits.TSCSpec = TSC; |
| assert(VarDeclBits.TSCSpec == TSC && "truncation"); |
| } |
| ThreadStorageClassSpecifier getTSCSpec() const { |
| return static_cast<ThreadStorageClassSpecifier>(VarDeclBits.TSCSpec); |
| } |
| TLSKind getTLSKind() const; |
| |
| /// Returns true if a variable with function scope is a non-static local |
| /// variable. |
| bool hasLocalStorage() const { |
| if (getStorageClass() == SC_None) { |
| // OpenCL v1.2 s6.5.3: The __constant or constant address space name is |
| // used to describe variables allocated in global memory and which are |
| // accessed inside a kernel(s) as read-only variables. As such, variables |
| // in constant address space cannot have local storage. |
| if (getType().getAddressSpace() == LangAS::opencl_constant) |
| return false; |
| // Second check is for C++11 [dcl.stc]p4. |
| return !isFileVarDecl() && getTSCSpec() == TSCS_unspecified; |
| } |
| |
| // Global Named Register (GNU extension) |
| if (getStorageClass() == SC_Register && !isLocalVarDeclOrParm()) |
| return false; |
| |
| // Return true for: Auto, Register. |
| // Return false for: Extern, Static, PrivateExtern, OpenCLWorkGroupLocal. |
| |
| return getStorageClass() >= SC_Auto; |
| } |
| |
| /// Returns true if a variable with function scope is a static local |
| /// variable. |
| bool isStaticLocal() const { |
| return (getStorageClass() == SC_Static || |
| // C++11 [dcl.stc]p4 |
| (getStorageClass() == SC_None && getTSCSpec() == TSCS_thread_local)) |
| && !isFileVarDecl(); |
| } |
| |
| /// Returns true if a variable has extern or __private_extern__ |
| /// storage. |
| bool hasExternalStorage() const { |
| return getStorageClass() == SC_Extern || |
| getStorageClass() == SC_PrivateExtern; |
| } |
| |
| /// Returns true for all variables that do not have local storage. |
| /// |
| /// This includes all global variables as well as static variables declared |
| /// within a function. |
| bool hasGlobalStorage() const { return !hasLocalStorage(); } |
| |
| /// Get the storage duration of this variable, per C++ [basic.stc]. |
| StorageDuration getStorageDuration() const { |
| return hasLocalStorage() ? SD_Automatic : |
| getTSCSpec() ? SD_Thread : SD_Static; |
| } |
| |
| /// Compute the language linkage. |
| LanguageLinkage getLanguageLinkage() const; |
| |
| /// Determines whether this variable is a variable with external, C linkage. |
| bool isExternC() const; |
| |
| /// Determines whether this variable's context is, or is nested within, |
| /// a C++ extern "C" linkage spec. |
| bool isInExternCContext() const; |
| |
| /// Determines whether this variable's context is, or is nested within, |
| /// a C++ extern "C++" linkage spec. |
| bool isInExternCXXContext() const; |
| |
| /// Returns true for local variable declarations other than parameters. |
| /// Note that this includes static variables inside of functions. It also |
| /// includes variables inside blocks. |
| /// |
| /// void foo() { int x; static int y; extern int z; } |
| bool isLocalVarDecl() const { |
| if (getKind() != Decl::Var && getKind() != Decl::Decomposition) |
| return false; |
| if (const DeclContext *DC = getLexicalDeclContext()) |
| return DC->getRedeclContext()->isFunctionOrMethod(); |
| return false; |
| } |
| |
| /// Similar to isLocalVarDecl but also includes parameters. |
| bool isLocalVarDeclOrParm() const { |
| return isLocalVarDecl() || getKind() == Decl::ParmVar; |
| } |
| |
| /// Similar to isLocalVarDecl, but excludes variables declared in blocks. |
| bool isFunctionOrMethodVarDecl() const { |
| if (getKind() != Decl::Var && getKind() != Decl::Decomposition) |
| return false; |
| const DeclContext *DC = getLexicalDeclContext()->getRedeclContext(); |
| return DC->isFunctionOrMethod() && DC->getDeclKind() != Decl::Block; |
| } |
| |
| /// Determines whether this is a static data member. |
| /// |
| /// This will only be true in C++, and applies to, e.g., the |
| /// variable 'x' in: |
| /// \code |
| /// struct S { |
| /// static int x; |
| /// }; |
| /// \endcode |
| bool isStaticDataMember() const { |
| // If it wasn't static, it would be a FieldDecl. |
| return getKind() != Decl::ParmVar && getDeclContext()->isRecord(); |
| } |
| |
| VarDecl *getCanonicalDecl() override; |
| const VarDecl *getCanonicalDecl() const { |
| return const_cast<VarDecl*>(this)->getCanonicalDecl(); |
| } |
| |
| enum DefinitionKind { |
| /// This declaration is only a declaration. |
| DeclarationOnly, |
| |
| /// This declaration is a tentative definition. |
| TentativeDefinition, |
| |
| /// This declaration is definitely a definition. |
| Definition |
| }; |
| |
| /// Check whether this declaration is a definition. If this could be |
| /// a tentative definition (in C), don't check whether there's an overriding |
| /// definition. |
| DefinitionKind isThisDeclarationADefinition(ASTContext &) const; |
| DefinitionKind isThisDeclarationADefinition() const { |
| return isThisDeclarationADefinition(getASTContext()); |
| } |
| |
| /// Check whether this variable is defined in this translation unit. |
| DefinitionKind hasDefinition(ASTContext &) const; |
| DefinitionKind hasDefinition() const { |
| return hasDefinition(getASTContext()); |
| } |
| |
| /// Get the tentative definition that acts as the real definition in a TU. |
| /// Returns null if there is a proper definition available. |
| VarDecl *getActingDefinition(); |
| const VarDecl *getActingDefinition() const { |
| return const_cast<VarDecl*>(this)->getActingDefinition(); |
| } |
| |
| /// Get the real (not just tentative) definition for this declaration. |
| VarDecl *getDefinition(ASTContext &); |
| const VarDecl *getDefinition(ASTContext &C) const { |
| return const_cast<VarDecl*>(this)->getDefinition(C); |
| } |
| VarDecl *getDefinition() { |
| return getDefinition(getASTContext()); |
| } |
| const VarDecl *getDefinition() const { |
| return const_cast<VarDecl*>(this)->getDefinition(); |
| } |
| |
| /// Determine whether this is or was instantiated from an out-of-line |
| /// definition of a static data member. |
| bool isOutOfLine() const override; |
| |
| /// Returns true for file scoped variable declaration. |
| bool isFileVarDecl() const { |
| Kind K = getKind(); |
| if (K == ParmVar || K == ImplicitParam) |
| return false; |
| |
| if (getLexicalDeclContext()->getRedeclContext()->isFileContext()) |
| return true; |
| |
| if (isStaticDataMember()) |
| return true; |
| |
| return false; |
| } |
| |
| /// Get the initializer for this variable, no matter which |
| /// declaration it is attached to. |
| const Expr *getAnyInitializer() const { |
| const VarDecl *D; |
| return getAnyInitializer(D); |
| } |
| |
| /// Get the initializer for this variable, no matter which |
| /// declaration it is attached to. Also get that declaration. |
| const Expr *getAnyInitializer(const VarDecl *&D) const; |
| |
| bool hasInit() const; |
| const Expr *getInit() const { |
| return const_cast<VarDecl *>(this)->getInit(); |
| } |
| Expr *getInit(); |
| |
| /// Retrieve the address of the initializer expression. |
| Stmt **getInitAddress(); |
| |
| void setInit(Expr *I); |
| |
| /// Get the initializing declaration of this variable, if any. This is |
| /// usually the definition, except that for a static data member it can be |
| /// the in-class declaration. |
| VarDecl *getInitializingDeclaration(); |
| const VarDecl *getInitializingDeclaration() const { |
| return const_cast<VarDecl *>(this)->getInitializingDeclaration(); |
| } |
| |
| /// Determine whether this variable's value might be usable in a |
| /// constant expression, according to the relevant language standard. |
| /// This only checks properties of the declaration, and does not check |
| /// whether the initializer is in fact a constant expression. |
| bool mightBeUsableInConstantExpressions(ASTContext &C) const; |
| |
| /// Determine whether this variable's value can be used in a |
| /// constant expression, according to the relevant language standard, |
| /// including checking whether it was initialized by a constant expression. |
| bool isUsableInConstantExpressions(ASTContext &C) const; |
| |
| EvaluatedStmt *ensureEvaluatedStmt() const; |
| |
| /// Attempt to evaluate the value of the initializer attached to this |
| /// declaration, and produce notes explaining why it cannot be evaluated or is |
| /// not a constant expression. Returns a pointer to the value if evaluation |
| /// succeeded, 0 otherwise. |
| APValue *evaluateValue() const; |
| APValue *evaluateValue(SmallVectorImpl<PartialDiagnosticAt> &Notes) const; |
| |
| /// Return the already-evaluated value of this variable's |
| /// initializer, or NULL if the value is not yet known. Returns pointer |
| /// to untyped APValue if the value could not be evaluated. |
| APValue *getEvaluatedValue() const; |
| |
| /// Evaluate the destruction of this variable to determine if it constitutes |
| /// constant destruction. |
| /// |
| /// \pre isInitICE() |
| /// \return \c true if this variable has constant destruction, \c false if |
| /// not. |
| bool evaluateDestruction(SmallVectorImpl<PartialDiagnosticAt> &Notes) const; |
| |
| /// Determines whether it is already known whether the |
| /// initializer is an integral constant expression or not. |
| bool isInitKnownICE() const; |
| |
| /// Determines whether the initializer is an integral constant |
| /// expression, or in C++11, whether the initializer is a constant |
| /// expression. |
| /// |
| /// \pre isInitKnownICE() |
| bool isInitICE() const; |
| |
| /// Determine whether the value of the initializer attached to this |
| /// declaration is an integral constant expression. |
| bool checkInitIsICE() const; |
| |
| void setInitStyle(InitializationStyle Style) { |
| VarDeclBits.InitStyle = Style; |
| } |
| |
| /// The style of initialization for this declaration. |
| /// |
| /// C-style initialization is "int x = 1;". Call-style initialization is |
| /// a C++98 direct-initializer, e.g. "int x(1);". The Init expression will be |
| /// the expression inside the parens or a "ClassType(a,b,c)" class constructor |
| /// expression for class types. List-style initialization is C++11 syntax, |
| /// e.g. "int x{1};". Clients can distinguish between different forms of |
| /// initialization by checking this value. In particular, "int x = {1};" is |
| /// C-style, "int x({1})" is call-style, and "int x{1};" is list-style; the |
| /// Init expression in all three cases is an InitListExpr. |
| InitializationStyle getInitStyle() const { |
| return static_cast<InitializationStyle>(VarDeclBits.InitStyle); |
| } |
| |
| /// Whether the initializer is a direct-initializer (list or call). |
| bool isDirectInit() const { |
| return getInitStyle() != CInit; |
| } |
| |
| /// If this definition should pretend to be a declaration. |
| bool isThisDeclarationADemotedDefinition() const { |
| return isa<ParmVarDecl>(this) ? false : |
| NonParmVarDeclBits.IsThisDeclarationADemotedDefinition; |
| } |
| |
| /// This is a definition which should be demoted to a declaration. |
| /// |
| /// In some cases (mostly module merging) we can end up with two visible |
| /// definitions one of which needs to be demoted to a declaration to keep |
| /// the AST invariants. |
| void demoteThisDefinitionToDeclaration() { |
| assert(isThisDeclarationADefinition() && "Not a definition!"); |
| assert(!isa<ParmVarDecl>(this) && "Cannot demote ParmVarDecls!"); |
| NonParmVarDeclBits.IsThisDeclarationADemotedDefinition = 1; |
| } |
| |
| /// Determine whether this variable is the exception variable in a |
| /// C++ catch statememt or an Objective-C \@catch statement. |
| bool isExceptionVariable() const { |
| return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.ExceptionVar; |
| } |
| void setExceptionVariable(bool EV) { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.ExceptionVar = EV; |
| } |
| |
| /// Determine whether this local variable can be used with the named |
| /// return value optimization (NRVO). |
| /// |
| /// The named return value optimization (NRVO) works by marking certain |
| /// non-volatile local variables of class type as NRVO objects. These |
| /// locals can be allocated within the return slot of their containing |
| /// function, in which case there is no need to copy the object to the |
| /// return slot when returning from the function. Within the function body, |
| /// each return that returns the NRVO object will have this variable as its |
| /// NRVO candidate. |
| bool isNRVOVariable() const { |
| return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.NRVOVariable; |
| } |
| void setNRVOVariable(bool NRVO) { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.NRVOVariable = NRVO; |
| } |
| |
| /// Determine whether this variable is the for-range-declaration in |
| /// a C++0x for-range statement. |
| bool isCXXForRangeDecl() const { |
| return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.CXXForRangeDecl; |
| } |
| void setCXXForRangeDecl(bool FRD) { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.CXXForRangeDecl = FRD; |
| } |
| |
| /// Determine whether this variable is a for-loop declaration for a |
| /// for-in statement in Objective-C. |
| bool isObjCForDecl() const { |
| return NonParmVarDeclBits.ObjCForDecl; |
| } |
| |
| void setObjCForDecl(bool FRD) { |
| NonParmVarDeclBits.ObjCForDecl = FRD; |
| } |
| |
| /// Determine whether this variable is an ARC pseudo-__strong variable. A |
| /// pseudo-__strong variable has a __strong-qualified type but does not |
| /// actually retain the object written into it. Generally such variables are |
| /// also 'const' for safety. There are 3 cases where this will be set, 1) if |
| /// the variable is annotated with the objc_externally_retained attribute, 2) |
| /// if its 'self' in a non-init method, or 3) if its the variable in an for-in |
| /// loop. |
| bool isARCPseudoStrong() const { return VarDeclBits.ARCPseudoStrong; } |
| void setARCPseudoStrong(bool PS) { VarDeclBits.ARCPseudoStrong = PS; } |
| |
| /// Whether this variable is (C++1z) inline. |
| bool isInline() const { |
| return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.IsInline; |
| } |
| bool isInlineSpecified() const { |
| return isa<ParmVarDecl>(this) ? false |
| : NonParmVarDeclBits.IsInlineSpecified; |
| } |
| void setInlineSpecified() { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.IsInline = true; |
| NonParmVarDeclBits.IsInlineSpecified = true; |
| } |
| void setImplicitlyInline() { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.IsInline = true; |
| } |
| |
| /// Whether this variable is (C++11) constexpr. |
| bool isConstexpr() const { |
| return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.IsConstexpr; |
| } |
| void setConstexpr(bool IC) { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.IsConstexpr = IC; |
| } |
| |
| /// Whether this variable is the implicit variable for a lambda init-capture. |
| bool isInitCapture() const { |
| return isa<ParmVarDecl>(this) ? false : NonParmVarDeclBits.IsInitCapture; |
| } |
| void setInitCapture(bool IC) { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.IsInitCapture = IC; |
| } |
| |
| /// Determine whether this variable is actually a function parameter pack or |
| /// init-capture pack. |
| bool isParameterPack() const; |
| |
| /// Whether this local extern variable declaration's previous declaration |
| /// was declared in the same block scope. Only correct in C++. |
| bool isPreviousDeclInSameBlockScope() const { |
| return isa<ParmVarDecl>(this) |
| ? false |
| : NonParmVarDeclBits.PreviousDeclInSameBlockScope; |
| } |
| void setPreviousDeclInSameBlockScope(bool Same) { |
| assert(!isa<ParmVarDecl>(this)); |
| NonParmVarDeclBits.PreviousDeclInSameBlockScope = Same; |
| } |
| |
| /// Indicates the capture is a __block variable that is captured by a block |
| /// that can potentially escape (a block for which BlockDecl::doesNotEscape |
| /// returns false). |
| bool isEscapingByref() const; |
| |
| /// Indicates the capture is a __block variable that is never captured by an |
| /// escaping block. |
| bool isNonEscapingByref() const; |
| |
| void setEscapingByref() { |
| NonParmVarDeclBits.EscapingByref = true; |
| } |
| |
| /// Retrieve the variable declaration from which this variable could |
| /// be instantiated, if it is an instantiation (rather than a non-template). |
| VarDecl *getTemplateInstantiationPattern() const; |
| |
| /// If this variable is an instantiated static data member of a |
| /// class template specialization, returns the templated static data member |
| /// from which it was instantiated. |
| VarDecl *getInstantiatedFromStaticDataMember() const; |
| |
| /// If this variable is an instantiation of a variable template or a |
| /// static data member of a class template, determine what kind of |
| /// template specialization or instantiation this is. |
| TemplateSpecializationKind getTemplateSpecializationKind() const; |
| |
| /// Get the template specialization kind of this variable for the purposes of |
| /// template instantiation. This differs from getTemplateSpecializationKind() |
| /// for an instantiation of a class-scope explicit specialization. |
| TemplateSpecializationKind |
| getTemplateSpecializationKindForInstantiation() const; |
| |
| /// If this variable is an instantiation of a variable template or a |
| /// static data member of a class template, determine its point of |
| /// instantiation. |
| SourceLocation getPointOfInstantiation() const; |
| |
| /// If this variable is an instantiation of a static data member of a |
| /// class template specialization, retrieves the member specialization |
| /// information. |
| MemberSpecializationInfo *getMemberSpecializationInfo() const; |
| |
| /// For a static data member that was instantiated from a static |
| /// data member of a class template, set the template specialiation kind. |
| void setTemplateSpecializationKind(TemplateSpecializationKind TSK, |
| SourceLocation PointOfInstantiation = SourceLocation()); |
| |
| /// Specify that this variable is an instantiation of the |
| /// static data member VD. |
| void setInstantiationOfStaticDataMember(VarDecl *VD, |
| TemplateSpecializationKind TSK); |
| |
| /// Retrieves the variable template that is described by this |
| /// variable declaration. |
| /// |
| /// Every variable template is represented as a VarTemplateDecl and a |
| /// VarDecl. The former contains template properties (such as |
| /// the template parameter lists) while the latter contains the |
| /// actual description of the template's |
| /// contents. VarTemplateDecl::getTemplatedDecl() retrieves the |
| /// VarDecl that from a VarTemplateDecl, while |
| /// getDescribedVarTemplate() retrieves the VarTemplateDecl from |
| /// a VarDecl. |
| VarTemplateDecl *getDescribedVarTemplate() const; |
| |
| void setDescribedVarTemplate(VarTemplateDecl *Template); |
| |
| // Is this variable known to have a definition somewhere in the complete |
| // program? This may be true even if the declaration has internal linkage and |
| // has no definition within this source file. |
| bool isKnownToBeDefined() const; |
| |
| /// Is destruction of this variable entirely suppressed? If so, the variable |
| /// need not have a usable destructor at all. |
| bool isNoDestroy(const ASTContext &) const; |
| |
| /// Do we need to emit an exit-time destructor for this variable, and if so, |
| /// what kind? |
| QualType::DestructionKind needsDestruction(const ASTContext &Ctx) const; |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K >= firstVar && K <= lastVar; } |
| }; |
| |
| class ImplicitParamDecl : public VarDecl { |
| void anchor() override; |
| |
| public: |
| /// Defines the kind of the implicit parameter: is this an implicit parameter |
| /// with pointer to 'this', 'self', '_cmd', virtual table pointers, captured |
| /// context or something else. |
| enum ImplicitParamKind : unsigned { |
| /// Parameter for Objective-C 'self' argument |
| ObjCSelf, |
| |
| /// Parameter for Objective-C '_cmd' argument |
| ObjCCmd, |
| |
| /// Parameter for C++ 'this' argument |
| CXXThis, |
| |
| /// Parameter for C++ virtual table pointers |
| CXXVTT, |
| |
| /// Parameter for captured context |
| CapturedContext, |
| |
| /// Other implicit parameter |
| Other, |
| }; |
| |
| /// Create implicit parameter. |
| static ImplicitParamDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation IdLoc, IdentifierInfo *Id, |
| QualType T, ImplicitParamKind ParamKind); |
| static ImplicitParamDecl *Create(ASTContext &C, QualType T, |
| ImplicitParamKind ParamKind); |
| |
| static ImplicitParamDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| ImplicitParamDecl(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, |
| IdentifierInfo *Id, QualType Type, |
| ImplicitParamKind ParamKind) |
| : VarDecl(ImplicitParam, C, DC, IdLoc, IdLoc, Id, Type, |
| /*TInfo=*/nullptr, SC_None) { |
| NonParmVarDeclBits.ImplicitParamKind = ParamKind; |
| setImplicit(); |
| } |
| |
| ImplicitParamDecl(ASTContext &C, QualType Type, ImplicitParamKind ParamKind) |
| : VarDecl(ImplicitParam, C, /*DC=*/nullptr, SourceLocation(), |
| SourceLocation(), /*Id=*/nullptr, Type, |
| /*TInfo=*/nullptr, SC_None) { |
| NonParmVarDeclBits.ImplicitParamKind = ParamKind; |
| setImplicit(); |
| } |
| |
| /// Returns the implicit parameter kind. |
| ImplicitParamKind getParameterKind() const { |
| return static_cast<ImplicitParamKind>(NonParmVarDeclBits.ImplicitParamKind); |
| } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == ImplicitParam; } |
| }; |
| |
| /// Represents a parameter to a function. |
| class ParmVarDecl : public VarDecl { |
| public: |
| enum { MaxFunctionScopeDepth = 255 }; |
| enum { MaxFunctionScopeIndex = 255 }; |
| |
| protected: |
| ParmVarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, |
| SourceLocation IdLoc, IdentifierInfo *Id, QualType T, |
| TypeSourceInfo *TInfo, StorageClass S, Expr *DefArg) |
| : VarDecl(DK, C, DC, StartLoc, IdLoc, Id, T, TInfo, S) { |
| assert(ParmVarDeclBits.HasInheritedDefaultArg == false); |
| assert(ParmVarDeclBits.DefaultArgKind == DAK_None); |
| assert(ParmVarDeclBits.IsKNRPromoted == false); |
| assert(ParmVarDeclBits.IsObjCMethodParam == false); |
| setDefaultArg(DefArg); |
| } |
| |
| public: |
| static ParmVarDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation StartLoc, |
| SourceLocation IdLoc, IdentifierInfo *Id, |
| QualType T, TypeSourceInfo *TInfo, |
| StorageClass S, Expr *DefArg); |
| |
| static ParmVarDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| SourceRange getSourceRange() const override LLVM_READONLY; |
| |
| void setObjCMethodScopeInfo(unsigned parameterIndex) { |
| ParmVarDeclBits.IsObjCMethodParam = true; |
| setParameterIndex(parameterIndex); |
| } |
| |
| void setScopeInfo(unsigned scopeDepth, unsigned parameterIndex) { |
| assert(!ParmVarDeclBits.IsObjCMethodParam); |
| |
| ParmVarDeclBits.ScopeDepthOrObjCQuals = scopeDepth; |
| assert(ParmVarDeclBits.ScopeDepthOrObjCQuals == scopeDepth |
| && "truncation!"); |
| |
| setParameterIndex(parameterIndex); |
| } |
| |
| bool isObjCMethodParameter() const { |
| return ParmVarDeclBits.IsObjCMethodParam; |
| } |
| |
| unsigned getFunctionScopeDepth() const { |
| if (ParmVarDeclBits.IsObjCMethodParam) return 0; |
| return ParmVarDeclBits.ScopeDepthOrObjCQuals; |
| } |
| |
| /// Returns the index of this parameter in its prototype or method scope. |
| unsigned getFunctionScopeIndex() const { |
| return getParameterIndex(); |
| } |
| |
| ObjCDeclQualifier getObjCDeclQualifier() const { |
| if (!ParmVarDeclBits.IsObjCMethodParam) return OBJC_TQ_None; |
| return ObjCDeclQualifier(ParmVarDeclBits.ScopeDepthOrObjCQuals); |
| } |
| void setObjCDeclQualifier(ObjCDeclQualifier QTVal) { |
| assert(ParmVarDeclBits.IsObjCMethodParam); |
| ParmVarDeclBits.ScopeDepthOrObjCQuals = QTVal; |
| } |
| |
| /// True if the value passed to this parameter must undergo |
| /// K&R-style default argument promotion: |
| /// |
| /// C99 6.5.2.2. |
| /// If the expression that denotes the called function has a type |
| /// that does not include a prototype, the integer promotions are |
| /// performed on each argument, and arguments that have type float |
| /// are promoted to double. |
| bool isKNRPromoted() const { |
| return ParmVarDeclBits.IsKNRPromoted; |
| } |
| void setKNRPromoted(bool promoted) { |
| ParmVarDeclBits.IsKNRPromoted = promoted; |
| } |
| |
| Expr *getDefaultArg(); |
| const Expr *getDefaultArg() const { |
| return const_cast<ParmVarDecl *>(this)->getDefaultArg(); |
| } |
| |
| void setDefaultArg(Expr *defarg); |
| |
| /// Retrieve the source range that covers the entire default |
| /// argument. |
| SourceRange getDefaultArgRange() const; |
| void setUninstantiatedDefaultArg(Expr *arg); |
| Expr *getUninstantiatedDefaultArg(); |
| const Expr *getUninstantiatedDefaultArg() const { |
| return const_cast<ParmVarDecl *>(this)->getUninstantiatedDefaultArg(); |
| } |
| |
| /// Determines whether this parameter has a default argument, |
| /// either parsed or not. |
| bool hasDefaultArg() const; |
| |
| /// Determines whether this parameter has a default argument that has not |
| /// yet been parsed. This will occur during the processing of a C++ class |
| /// whose member functions have default arguments, e.g., |
| /// @code |
| /// class X { |
| /// public: |
| /// void f(int x = 17); // x has an unparsed default argument now |
| /// }; // x has a regular default argument now |
| /// @endcode |
| bool hasUnparsedDefaultArg() const { |
| return ParmVarDeclBits.DefaultArgKind == DAK_Unparsed; |
| } |
| |
| bool hasUninstantiatedDefaultArg() const { |
| return ParmVarDeclBits.DefaultArgKind == DAK_Uninstantiated; |
| } |
| |
| /// Specify that this parameter has an unparsed default argument. |
| /// The argument will be replaced with a real default argument via |
| /// setDefaultArg when the class definition enclosing the function |
| /// declaration that owns this default argument is completed. |
| void setUnparsedDefaultArg() { |
| ParmVarDeclBits.DefaultArgKind = DAK_Unparsed; |
| } |
| |
| bool hasInheritedDefaultArg() const { |
| return ParmVarDeclBits.HasInheritedDefaultArg; |
| } |
| |
| void setHasInheritedDefaultArg(bool I = true) { |
| ParmVarDeclBits.HasInheritedDefaultArg = I; |
| } |
| |
| QualType getOriginalType() const; |
| |
| /// Sets the function declaration that owns this |
| /// ParmVarDecl. Since ParmVarDecls are often created before the |
| /// FunctionDecls that own them, this routine is required to update |
| /// the DeclContext appropriately. |
| void setOwningFunction(DeclContext *FD) { setDeclContext(FD); } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == ParmVar; } |
| |
| private: |
| enum { ParameterIndexSentinel = (1 << NumParameterIndexBits) - 1 }; |
| |
| void setParameterIndex(unsigned parameterIndex) { |
| if (parameterIndex >= ParameterIndexSentinel) { |
| setParameterIndexLarge(parameterIndex); |
| return; |
| } |
| |
| ParmVarDeclBits.ParameterIndex = parameterIndex; |
| assert(ParmVarDeclBits.ParameterIndex == parameterIndex && "truncation!"); |
| } |
| unsigned getParameterIndex() const { |
| unsigned d = ParmVarDeclBits.ParameterIndex; |
| return d == ParameterIndexSentinel ? getParameterIndexLarge() : d; |
| } |
| |
| void setParameterIndexLarge(unsigned parameterIndex); |
| unsigned getParameterIndexLarge() const; |
| }; |
| |
| enum class MultiVersionKind { |
| None, |
| Target, |
| CPUSpecific, |
| CPUDispatch |
| }; |
| |
| /// Represents a function declaration or definition. |
| /// |
| /// Since a given function can be declared several times in a program, |
| /// there may be several FunctionDecls that correspond to that |
| /// function. Only one of those FunctionDecls will be found when |
| /// traversing the list of declarations in the context of the |
| /// FunctionDecl (e.g., the translation unit); this FunctionDecl |
| /// contains all of the information known about the function. Other, |
| /// previous declarations of the function are available via the |
| /// getPreviousDecl() chain. |
| class FunctionDecl : public DeclaratorDecl, |
| public DeclContext, |
| public Redeclarable<FunctionDecl> { |
| // This class stores some data in DeclContext::FunctionDeclBits |
| // to save some space. Use the provided accessors to access it. |
| public: |
| /// The kind of templated function a FunctionDecl can be. |
| enum TemplatedKind { |
| // Not templated. |
| TK_NonTemplate, |
| // The pattern in a function template declaration. |
| TK_FunctionTemplate, |
| // A non-template function that is an instantiation or explicit |
| // specialization of a member of a templated class. |
| TK_MemberSpecialization, |
| // An instantiation or explicit specialization of a function template. |
| // Note: this might have been instantiated from a templated class if it |
| // is a class-scope explicit specialization. |
| TK_FunctionTemplateSpecialization, |
| // A function template specialization that hasn't yet been resolved to a |
| // particular specialized function template. |
| TK_DependentFunctionTemplateSpecialization |
| }; |
| |
| private: |
| /// A new[]'d array of pointers to VarDecls for the formal |
| /// parameters of this function. This is null if a prototype or if there are |
| /// no formals. |
| ParmVarDecl **ParamInfo = nullptr; |
| |
| LazyDeclStmtPtr Body; |
| |
| unsigned ODRHash; |
| |
| /// End part of this FunctionDecl's source range. |
| /// |
| /// We could compute the full range in getSourceRange(). However, when we're |
| /// dealing with a function definition deserialized from a PCH/AST file, |
| /// we can only compute the full range once the function body has been |
| /// de-serialized, so it's far better to have the (sometimes-redundant) |
| /// EndRangeLoc. |
| SourceLocation EndRangeLoc; |
| |
| /// The template or declaration that this declaration |
| /// describes or was instantiated from, respectively. |
| /// |
| /// For non-templates, this value will be NULL. For function |
| /// declarations that describe a function template, this will be a |
| /// pointer to a FunctionTemplateDecl. For member functions |
| /// of class template specializations, this will be a MemberSpecializationInfo |
| /// pointer containing information about the specialization. |
| /// For function template specializations, this will be a |
| /// FunctionTemplateSpecializationInfo, which contains information about |
| /// the template being specialized and the template arguments involved in |
| /// that specialization. |
| llvm::PointerUnion4<FunctionTemplateDecl *, |
| MemberSpecializationInfo *, |
| FunctionTemplateSpecializationInfo *, |
| DependentFunctionTemplateSpecializationInfo *> |
| TemplateOrSpecialization; |
| |
| /// Provides source/type location info for the declaration name embedded in |
| /// the DeclaratorDecl base class. |
| DeclarationNameLoc DNLoc; |
| |
| /// Specify that this function declaration is actually a function |
| /// template specialization. |
| /// |
| /// \param C the ASTContext. |
| /// |
| /// \param Template the function template that this function template |
| /// specialization specializes. |
| /// |
| /// \param TemplateArgs the template arguments that produced this |
| /// function template specialization from the template. |
| /// |
| /// \param InsertPos If non-NULL, the position in the function template |
| /// specialization set where the function template specialization data will |
| /// be inserted. |
| /// |
| /// \param TSK the kind of template specialization this is. |
| /// |
| /// \param TemplateArgsAsWritten location info of template arguments. |
| /// |
| /// \param PointOfInstantiation point at which the function template |
| /// specialization was first instantiated. |
| void setFunctionTemplateSpecialization(ASTContext &C, |
| FunctionTemplateDecl *Template, |
| const TemplateArgumentList *TemplateArgs, |
| void *InsertPos, |
| TemplateSpecializationKind TSK, |
| const TemplateArgumentListInfo *TemplateArgsAsWritten, |
| SourceLocation PointOfInstantiation); |
| |
| /// Specify that this record is an instantiation of the |
| /// member function FD. |
| void setInstantiationOfMemberFunction(ASTContext &C, FunctionDecl *FD, |
| TemplateSpecializationKind TSK); |
| |
| void setParams(ASTContext &C, ArrayRef<ParmVarDecl *> NewParamInfo); |
| |
| // This is unfortunately needed because ASTDeclWriter::VisitFunctionDecl |
| // need to access this bit but we want to avoid making ASTDeclWriter |
| // a friend of FunctionDeclBitfields just for this. |
| bool isDeletedBit() const { return FunctionDeclBits.IsDeleted; } |
| |
| /// Whether an ODRHash has been stored. |
| bool hasODRHash() const { return FunctionDeclBits.HasODRHash; } |
| |
| /// State that an ODRHash has been stored. |
| void setHasODRHash(bool B = true) { FunctionDeclBits.HasODRHash = B; } |
| |
| protected: |
| FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, |
| const DeclarationNameInfo &NameInfo, QualType T, |
| TypeSourceInfo *TInfo, StorageClass S, bool isInlineSpecified, |
| ConstexprSpecKind ConstexprKind); |
| |
| using redeclarable_base = Redeclarable<FunctionDecl>; |
| |
| FunctionDecl *getNextRedeclarationImpl() override { |
| return getNextRedeclaration(); |
| } |
| |
| FunctionDecl *getPreviousDeclImpl() override { |
| return getPreviousDecl(); |
| } |
| |
| FunctionDecl *getMostRecentDeclImpl() override { |
| return getMostRecentDecl(); |
| } |
| |
| public: |
| friend class ASTDeclReader; |
| friend class ASTDeclWriter; |
| |
| using redecl_range = redeclarable_base::redecl_range; |
| using redecl_iterator = redeclarable_base::redecl_iterator; |
| |
| using redeclarable_base::redecls_begin; |
| using redeclarable_base::redecls_end; |
| using redeclarable_base::redecls; |
| using redeclarable_base::getPreviousDecl; |
| using redeclarable_base::getMostRecentDecl; |
| using redeclarable_base::isFirstDecl; |
| |
| static FunctionDecl * |
| Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, |
| SourceLocation NLoc, DeclarationName N, QualType T, |
| TypeSourceInfo *TInfo, StorageClass SC, bool isInlineSpecified = false, |
| bool hasWrittenPrototype = true, |
| ConstexprSpecKind ConstexprKind = CSK_unspecified) { |
| DeclarationNameInfo NameInfo(N, NLoc); |
| return FunctionDecl::Create(C, DC, StartLoc, NameInfo, T, TInfo, SC, |
| isInlineSpecified, hasWrittenPrototype, |
| ConstexprKind); |
| } |
| |
| static FunctionDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation StartLoc, |
| const DeclarationNameInfo &NameInfo, QualType T, |
| TypeSourceInfo *TInfo, StorageClass SC, |
| bool isInlineSpecified, bool hasWrittenPrototype, |
| ConstexprSpecKind ConstexprKind); |
| |
| static FunctionDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| DeclarationNameInfo getNameInfo() const { |
| return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc); |
| } |
| |
| void getNameForDiagnostic(raw_ostream &OS, const PrintingPolicy &Policy, |
| bool Qualified) const override; |
| |
| void setRangeEnd(SourceLocation E) { EndRangeLoc = E; } |
| |
| SourceRange getSourceRange() const override LLVM_READONLY; |
| |
| // Function definitions. |
| // |
| // A function declaration may be: |
| // - a non defining declaration, |
| // - a definition. A function may be defined because: |
| // - it has a body, or will have it in the case of late parsing. |
| // - it has an uninstantiated body. The body does not exist because the |
| // function is not used yet, but the declaration is considered a |
| // definition and does not allow other definition of this function. |
| // - it does not have a user specified body, but it does not allow |
| // redefinition, because it is deleted/defaulted or is defined through |
| // some other mechanism (alias, ifunc). |
| |
| /// Returns true if the function has a body. |
| /// |
| /// The function body might be in any of the (re-)declarations of this |
| /// function. The variant that accepts a FunctionDecl pointer will set that |
| /// function declaration to the actual declaration containing the body (if |
| /// there is one). |
| bool hasBody(const FunctionDecl *&Definition) const; |
| |
| bool hasBody() const override { |
| const FunctionDecl* Definition; |
| return hasBody(Definition); |
| } |
| |
| /// Returns whether the function has a trivial body that does not require any |
| /// specific codegen. |
| bool hasTrivialBody() const; |
| |
| /// Returns true if the function has a definition that does not need to be |
| /// instantiated. |
| /// |
| /// The variant that accepts a FunctionDecl pointer will set that function |
| /// declaration to the declaration that is a definition (if there is one). |
| bool isDefined(const FunctionDecl *&Definition) const; |
| |
| virtual bool isDefined() const { |
| const FunctionDecl* Definition; |
| return isDefined(Definition); |
| } |
| |
| /// Get the definition for this declaration. |
| FunctionDecl *getDefinition() { |
| const FunctionDecl *Definition; |
| if (isDefined(Definition)) |
| return const_cast<FunctionDecl *>(Definition); |
| return nullptr; |
| } |
| const FunctionDecl *getDefinition() const { |
| return const_cast<FunctionDecl *>(this)->getDefinition(); |
| } |
| |
| /// Retrieve the body (definition) of the function. The function body might be |
| /// in any of the (re-)declarations of this function. The variant that accepts |
| /// a FunctionDecl pointer will set that function declaration to the actual |
| /// declaration containing the body (if there is one). |
| /// NOTE: For checking if there is a body, use hasBody() instead, to avoid |
| /// unnecessary AST de-serialization of the body. |
| Stmt *getBody(const FunctionDecl *&Definition) const; |
| |
| Stmt *getBody() const override { |
| const FunctionDecl* Definition; |
| return getBody(Definition); |
| } |
| |
| /// Returns whether this specific declaration of the function is also a |
| /// definition that does not contain uninstantiated body. |
| /// |
| /// This does not determine whether the function has been defined (e.g., in a |
| /// previous definition); for that information, use isDefined. |
| bool isThisDeclarationADefinition() const { |
| return isDeletedAsWritten() || isDefaulted() || Body || hasSkippedBody() || |
| isLateTemplateParsed() || willHaveBody() || hasDefiningAttr(); |
| } |
| |
| /// Returns whether this specific declaration of the function has a body. |
| bool doesThisDeclarationHaveABody() const { |
| return Body || isLateTemplateParsed(); |
| } |
| |
| void setBody(Stmt *B); |
| void setLazyBody(uint64_t Offset) { Body = Offset; } |
| |
| /// Whether this function is variadic. |
| bool isVariadic() const; |
| |
| /// Whether this function is marked as virtual explicitly. |
| bool isVirtualAsWritten() const { |
| return FunctionDeclBits.IsVirtualAsWritten; |
| } |
| |
| /// State that this function is marked as virtual explicitly. |
| void setVirtualAsWritten(bool V) { FunctionDeclBits.IsVirtualAsWritten = V; } |
| |
| /// Whether this virtual function is pure, i.e. makes the containing class |
| /// abstract. |
| bool isPure() const { return FunctionDeclBits.IsPure; } |
| void setPure(bool P = true); |
| |
| /// Whether this templated function will be late parsed. |
| bool isLateTemplateParsed() const { |
| return FunctionDeclBits.IsLateTemplateParsed; |
| } |
| |
| /// State that this templated function will be late parsed. |
| void setLateTemplateParsed(bool ILT = true) { |
| FunctionDeclBits.IsLateTemplateParsed = ILT; |
| } |
| |
| /// Whether this function is "trivial" in some specialized C++ senses. |
| /// Can only be true for default constructors, copy constructors, |
| /// copy assignment operators, and destructors. Not meaningful until |
| /// the class has been fully built by Sema. |
| bool isTrivial() const { return FunctionDeclBits.IsTrivial; } |
| void setTrivial(bool IT) { FunctionDeclBits.IsTrivial = IT; } |
| |
| bool isTrivialForCall() const { return FunctionDeclBits.IsTrivialForCall; } |
| void setTrivialForCall(bool IT) { FunctionDeclBits.IsTrivialForCall = IT; } |
| |
| /// Whether this function is defaulted per C++0x. Only valid for |
| /// special member functions. |
| bool isDefaulted() const { return FunctionDeclBits.IsDefaulted; } |
| void setDefaulted(bool D = true) { FunctionDeclBits.IsDefaulted = D; } |
| |
| /// Whether this function is explicitly defaulted per C++0x. Only valid |
| /// for special member functions. |
| bool isExplicitlyDefaulted() const { |
| return FunctionDeclBits.IsExplicitlyDefaulted; |
| } |
| |
| /// State that this function is explicitly defaulted per C++0x. Only valid |
| /// for special member functions. |
| void setExplicitlyDefaulted(bool ED = true) { |
| FunctionDeclBits.IsExplicitlyDefaulted = ED; |
| } |
| |
| /// Whether falling off this function implicitly returns null/zero. |
| /// If a more specific implicit return value is required, front-ends |
| /// should synthesize the appropriate return statements. |
| bool hasImplicitReturnZero() const { |
| return FunctionDeclBits.HasImplicitReturnZero; |
| } |
| |
| /// State that falling off this function implicitly returns null/zero. |
| /// If a more specific implicit return value is required, front-ends |
| /// should synthesize the appropriate return statements. |
| void setHasImplicitReturnZero(bool IRZ) { |
| FunctionDeclBits.HasImplicitReturnZero = IRZ; |
| } |
| |
| /// Whether this function has a prototype, either because one |
| /// was explicitly written or because it was "inherited" by merging |
| /// a declaration without a prototype with a declaration that has a |
| /// prototype. |
| bool hasPrototype() const { |
| return hasWrittenPrototype() || hasInheritedPrototype(); |
| } |
| |
| /// Whether this function has a written prototype. |
| bool hasWrittenPrototype() const { |
| return FunctionDeclBits.HasWrittenPrototype; |
| } |
| |
| /// State that this function has a written prototype. |
| void setHasWrittenPrototype(bool P = true) { |
| FunctionDeclBits.HasWrittenPrototype = P; |
| } |
| |
| /// Whether this function inherited its prototype from a |
| /// previous declaration. |
| bool hasInheritedPrototype() const { |
| return FunctionDeclBits.HasInheritedPrototype; |
| } |
| |
| /// State that this function inherited its prototype from a |
| /// previous declaration. |
| void setHasInheritedPrototype(bool P = true) { |
| FunctionDeclBits.HasInheritedPrototype = P; |
| } |
| |
| /// Whether this is a (C++11) constexpr function or constexpr constructor. |
| bool isConstexpr() const { |
| return FunctionDeclBits.ConstexprKind != CSK_unspecified; |
| } |
| void setConstexprKind(ConstexprSpecKind CSK) { |
| FunctionDeclBits.ConstexprKind = CSK; |
| } |
| ConstexprSpecKind getConstexprKind() const { |
| return static_cast<ConstexprSpecKind>(FunctionDeclBits.ConstexprKind); |
| } |
| bool isConstexprSpecified() const { |
| return FunctionDeclBits.ConstexprKind == CSK_constexpr; |
| } |
| bool isConsteval() const { |
| return FunctionDeclBits.ConstexprKind == CSK_consteval; |
| } |
| |
| /// Whether the instantiation of this function is pending. |
| /// This bit is set when the decision to instantiate this function is made |
| /// and unset if and when the function body is created. That leaves out |
| /// cases where instantiation did not happen because the template definition |
| /// was not seen in this TU. This bit remains set in those cases, under the |
| /// assumption that the instantiation will happen in some other TU. |
| bool instantiationIsPending() const { |
| return FunctionDeclBits.InstantiationIsPending; |
| } |
| |
| /// State that the instantiation of this function is pending. |
| /// (see instantiationIsPending) |
| void setInstantiationIsPending(bool IC) { |
| FunctionDeclBits.InstantiationIsPending = IC; |
| } |
| |
| /// Indicates the function uses __try. |
| bool usesSEHTry() const { return FunctionDeclBits.UsesSEHTry; } |
| void setUsesSEHTry(bool UST) { FunctionDeclBits.UsesSEHTry = UST; } |
| |
| /// Whether this function has been deleted. |
| /// |
| /// A function that is "deleted" (via the C++0x "= delete" syntax) |
| /// acts like a normal function, except that it cannot actually be |
| /// called or have its address taken. Deleted functions are |
| /// typically used in C++ overload resolution to attract arguments |
| /// whose type or lvalue/rvalue-ness would permit the use of a |
| /// different overload that would behave incorrectly. For example, |
| /// one might use deleted functions to ban implicit conversion from |
| /// a floating-point number to an Integer type: |
| /// |
| /// @code |
| /// struct Integer { |
| /// Integer(long); // construct from a long |
| /// Integer(double) = delete; // no construction from float or double |
| /// Integer(long double) = delete; // no construction from long double |
| /// }; |
| /// @endcode |
| // If a function is deleted, its first declaration must be. |
| bool isDeleted() const { |
| return getCanonicalDecl()->FunctionDeclBits.IsDeleted; |
| } |
| |
| bool isDeletedAsWritten() const { |
| return FunctionDeclBits.IsDeleted && !isDefaulted(); |
| } |
| |
| void setDeletedAsWritten(bool D = true) { FunctionDeclBits.IsDeleted = D; } |
| |
| /// Determines whether this function is "main", which is the |
| /// entry point into an executable program. |
| bool isMain() const; |
| |
| /// Determines whether this function is a MSVCRT user defined entry |
| /// point. |
| bool isMSVCRTEntryPoint() const; |
| |
| /// Determines whether this operator new or delete is one |
| /// of the reserved global placement operators: |
| /// void *operator new(size_t, void *); |
| /// void *operator new[](size_t, void *); |
| /// void operator delete(void *, void *); |
| /// void operator delete[](void *, void *); |
| /// These functions have special behavior under [new.delete.placement]: |
| /// These functions are reserved, a C++ program may not define |
| /// functions that displace the versions in the Standard C++ library. |
| /// The provisions of [basic.stc.dynamic] do not apply to these |
| /// reserved placement forms of operator new and operator delete. |
| /// |
| /// This function must be an allocation or deallocation function. |
| bool isReservedGlobalPlacementOperator() const; |
| |
| /// Determines whether this function is one of the replaceable |
| /// global allocation functions: |
| /// void *operator new(size_t); |
| /// void *operator new(size_t, const std::nothrow_t &) noexcept; |
| /// void *operator new[](size_t); |
| /// void *operator new[](size_t, const std::nothrow_t &) noexcept; |
| /// void operator delete(void *) noexcept; |
| /// void operator delete(void *, std::size_t) noexcept; [C++1y] |
| /// void operator delete(void *, const std::nothrow_t &) noexcept; |
| /// void operator delete[](void *) noexcept; |
| /// void operator delete[](void *, std::size_t) noexcept; [C++1y] |
| /// void operator delete[](void *, const std::nothrow_t &) noexcept; |
| /// These functions have special behavior under C++1y [expr.new]: |
| /// An implementation is allowed to omit a call to a replaceable global |
| /// allocation function. [...] |
| /// |
| /// If this function is an aligned allocation/deallocation function, return |
| /// true through IsAligned. |
| bool isReplaceableGlobalAllocationFunction(bool *IsAligned = nullptr) const; |
| |
| /// Determine whether this is a destroying operator delete. |
| bool isDestroyingOperatorDelete() const; |
| |
| /// Compute the language linkage. |
| LanguageLinkage getLanguageLinkage() const; |
| |
| /// Determines whether this function is a function with |
| /// external, C linkage. |
| bool isExternC() const; |
| |
| /// Determines whether this function's context is, or is nested within, |
| /// a C++ extern "C" linkage spec. |
| bool isInExternCContext() const; |
| |
| /// Determines whether this function's context is, or is nested within, |
| /// a C++ extern "C++" linkage spec. |
| bool isInExternCXXContext() const; |
| |
| /// Determines whether this is a global function. |
| bool isGlobal() const; |
| |
| /// Determines whether this function is known to be 'noreturn', through |
| /// an attribute on its declaration or its type. |
| bool isNoReturn() const; |
| |
| /// True if the function was a definition but its body was skipped. |
| bool hasSkippedBody() const { return FunctionDeclBits.HasSkippedBody; } |
| void setHasSkippedBody(bool Skipped = true) { |
| FunctionDeclBits.HasSkippedBody = Skipped; |
| } |
| |
| /// True if this function will eventually have a body, once it's fully parsed. |
| bool willHaveBody() const { return FunctionDeclBits.WillHaveBody; } |
| void setWillHaveBody(bool V = true) { FunctionDeclBits.WillHaveBody = V; } |
| |
| /// True if this function is considered a multiversioned function. |
| bool isMultiVersion() const { |
| return getCanonicalDecl()->FunctionDeclBits.IsMultiVersion; |
| } |
| |
| /// Sets the multiversion state for this declaration and all of its |
| /// redeclarations. |
| void setIsMultiVersion(bool V = true) { |
| getCanonicalDecl()->FunctionDeclBits.IsMultiVersion = V; |
| } |
| |
| /// Gets the kind of multiversioning attribute this declaration has. Note that |
| /// this can return a value even if the function is not multiversion, such as |
| /// the case of 'target'. |
| MultiVersionKind getMultiVersionKind() const; |
| |
| |
| /// True if this function is a multiversioned dispatch function as a part of |
| /// the cpu_specific/cpu_dispatch functionality. |
| bool isCPUDispatchMultiVersion() const; |
| /// True if this function is a multiversioned processor specific function as a |
| /// part of the cpu_specific/cpu_dispatch functionality. |
| bool isCPUSpecificMultiVersion() const; |
| |
| /// True if this function is a multiversioned dispatch function as a part of |
| /// the target functionality. |
| bool isTargetMultiVersion() const; |
| |
| void setPreviousDeclaration(FunctionDecl * PrevDecl); |
| |
| FunctionDecl *getCanonicalDecl() override; |
| const FunctionDecl *getCanonicalDecl() const { |
| return const_cast<FunctionDecl*>(this)->getCanonicalDecl(); |
| } |
| |
| unsigned getBuiltinID(bool ConsiderWrapperFunctions = false) const; |
| |
| // ArrayRef interface to parameters. |
| ArrayRef<ParmVarDecl *> parameters() const { |
| return {ParamInfo, getNumParams()}; |
| } |
| MutableArrayRef<ParmVarDecl *> parameters() { |
| return {ParamInfo, getNumParams()}; |
| } |
| |
| // Iterator access to formal parameters. |
| using param_iterator = MutableArrayRef<ParmVarDecl *>::iterator; |
| using param_const_iterator = ArrayRef<ParmVarDecl *>::const_iterator; |
| |
| bool param_empty() const { return parameters().empty(); } |
| param_iterator param_begin() { return parameters().begin(); } |
| param_iterator param_end() { return parameters().end(); } |
| param_const_iterator param_begin() const { return parameters().begin(); } |
| param_const_iterator param_end() const { return parameters().end(); } |
| size_t param_size() const { return parameters().size(); } |
| |
| /// Return the number of parameters this function must have based on its |
| /// FunctionType. This is the length of the ParamInfo array after it has been |
| /// created. |
| unsigned getNumParams() const; |
| |
| const ParmVarDecl *getParamDecl(unsigned i) const { |
| assert(i < getNumParams() && "Illegal param #"); |
| return ParamInfo[i]; |
| } |
| ParmVarDecl *getParamDecl(unsigned i) { |
| assert(i < getNumParams() && "Illegal param #"); |
| return ParamInfo[i]; |
| } |
| void setParams(ArrayRef<ParmVarDecl *> NewParamInfo) { |
| setParams(getASTContext(), NewParamInfo); |
| } |
| |
| /// Returns the minimum number of arguments needed to call this function. This |
| /// may be fewer than the number of function parameters, if some of the |
| /// parameters have default arguments (in C++). |
| unsigned getMinRequiredArguments() const; |
| |
| QualType getReturnType() const { |
| return getType()->castAs<FunctionType>()->getReturnType(); |
| } |
| |
| /// Attempt to compute an informative source range covering the |
| /// function return type. This may omit qualifiers and other information with |
| /// limited representation in the AST. |
| SourceRange getReturnTypeSourceRange() const; |
| |
| /// Get the declared return type, which may differ from the actual return |
| /// type if the return type is deduced. |
| QualType getDeclaredReturnType() const { |
| auto *TSI = getTypeSourceInfo(); |
| QualType T = TSI ? TSI->getType() : getType(); |
| return T->castAs<FunctionType>()->getReturnType(); |
| } |
| |
| /// Gets the ExceptionSpecificationType as declared. |
| ExceptionSpecificationType getExceptionSpecType() const { |
| auto *TSI = getTypeSourceInfo(); |
| QualType T = TSI ? TSI->getType() : getType(); |
| const auto *FPT = T->getAs<FunctionProtoType>(); |
| return FPT ? FPT->getExceptionSpecType() : EST_None; |
| } |
| |
| /// Attempt to compute an informative source range covering the |
| /// function exception specification, if any. |
| SourceRange getExceptionSpecSourceRange() const; |
| |
| /// Determine the type of an expression that calls this function. |
| QualType getCallResultType() const { |
| return getType()->castAs<FunctionType>()->getCallResultType( |
| getASTContext()); |
| } |
| |
| /// Returns the storage class as written in the source. For the |
| /// computed linkage of symbol, see getLinkage. |
| StorageClass getStorageClass() const { |
| return static_cast<StorageClass>(FunctionDeclBits.SClass); |
| } |
| |
| /// Sets the storage class as written in the source. |
| void setStorageClass(StorageClass SClass) { |
| FunctionDeclBits.SClass = SClass; |
| } |
| |
| /// Determine whether the "inline" keyword was specified for this |
| /// function. |
| bool isInlineSpecified() const { return FunctionDeclBits.IsInlineSpecified; } |
| |
| /// Set whether the "inline" keyword was specified for this function. |
| void setInlineSpecified(bool I) { |
| FunctionDeclBits.IsInlineSpecified = I; |
| FunctionDeclBits.IsInline = I; |
| } |
| |
| /// Flag that this function is implicitly inline. |
| void setImplicitlyInline(bool I = true) { FunctionDeclBits.IsInline = I; } |
| |
| /// Determine whether this function should be inlined, because it is |
| /// either marked "inline" or "constexpr" or is a member function of a class |
| /// that was defined in the class body. |
| bool isInlined() const { return FunctionDeclBits.IsInline; } |
| |
| bool isInlineDefinitionExternallyVisible() const; |
| |
| bool isMSExternInline() const; |
| |
| bool doesDeclarationForceExternallyVisibleDefinition() const; |
| |
| bool isStatic() const { return getStorageClass() == SC_Static; } |
| |
| /// Whether this function declaration represents an C++ overloaded |
| /// operator, e.g., "operator+". |
| bool isOverloadedOperator() const { |
| return getOverloadedOperator() != OO_None; |
| } |
| |
| OverloadedOperatorKind getOverloadedOperator() const; |
| |
| const IdentifierInfo *getLiteralIdentifier() const; |
| |
| /// If this function is an instantiation of a member function |
| /// of a class template specialization, retrieves the function from |
| /// which it was instantiated. |
| /// |
| /// This routine will return non-NULL for (non-templated) member |
| /// functions of class templates and for instantiations of function |
| /// templates. For example, given: |
| /// |
| /// \code |
| /// template<typename T> |
| /// struct X { |
| /// void f(T); |
| /// }; |
| /// \endcode |
| /// |
| /// The declaration for X<int>::f is a (non-templated) FunctionDecl |
| /// whose parent is the class template specialization X<int>. For |
| /// this declaration, getInstantiatedFromFunction() will return |
| /// the FunctionDecl X<T>::A. When a complete definition of |
| /// X<int>::A is required, it will be instantiated from the |
| /// declaration returned by getInstantiatedFromMemberFunction(). |
| FunctionDecl *getInstantiatedFromMemberFunction() const; |
| |
| /// What kind of templated function this is. |
| TemplatedKind getTemplatedKind() const; |
| |
| /// If this function is an instantiation of a member function of a |
| /// class template specialization, retrieves the member specialization |
| /// information. |
| MemberSpecializationInfo *getMemberSpecializationInfo() const; |
| |
| /// Specify that this record is an instantiation of the |
| /// member function FD. |
| void setInstantiationOfMemberFunction(FunctionDecl *FD, |
| TemplateSpecializationKind TSK) { |
| setInstantiationOfMemberFunction(getASTContext(), FD, TSK); |
| } |
| |
| /// Retrieves the function template that is described by this |
| /// function declaration. |
| /// |
| /// Every function template is represented as a FunctionTemplateDecl |
| /// and a FunctionDecl (or something derived from FunctionDecl). The |
| /// former contains template properties (such as the template |
| /// parameter lists) while the latter contains the actual |
| /// description of the template's |
| /// contents. FunctionTemplateDecl::getTemplatedDecl() retrieves the |
| /// FunctionDecl that describes the function template, |
| /// getDescribedFunctionTemplate() retrieves the |
| /// FunctionTemplateDecl from a FunctionDecl. |
| FunctionTemplateDecl *getDescribedFunctionTemplate() const; |
| |
| void setDescribedFunctionTemplate(FunctionTemplateDecl *Template); |
| |
| /// Determine whether this function is a function template |
| /// specialization. |
| bool isFunctionTemplateSpecialization() const { |
| return getPrimaryTemplate() != nullptr; |
| } |
| |
| /// If this function is actually a function template specialization, |
| /// retrieve information about this function template specialization. |
| /// Otherwise, returns NULL. |
| FunctionTemplateSpecializationInfo *getTemplateSpecializationInfo() const; |
| |
| /// Determines whether this function is a function template |
| /// specialization or a member of a class template specialization that can |
| /// be implicitly instantiated. |
| bool isImplicitlyInstantiable() const; |
| |
| /// Determines if the given function was instantiated from a |
| /// function template. |
| bool isTemplateInstantiation() const; |
| |
| /// Retrieve the function declaration from which this function could |
| /// be instantiated, if it is an instantiation (rather than a non-template |
| /// or a specialization, for example). |
| FunctionDecl *getTemplateInstantiationPattern() const; |
| |
| /// Retrieve the primary template that this function template |
| /// specialization either specializes or was instantiated from. |
| /// |
| /// If this function declaration is not a function template specialization, |
| /// returns NULL. |
| FunctionTemplateDecl *getPrimaryTemplate() const; |
| |
| /// Retrieve the template arguments used to produce this function |
| /// template specialization from the primary template. |
| /// |
| /// If this function declaration is not a function template specialization, |
| /// returns NULL. |
| const TemplateArgumentList *getTemplateSpecializationArgs() const; |
| |
| /// Retrieve the template argument list as written in the sources, |
| /// if any. |
| /// |
| /// If this function declaration is not a function template specialization |
| /// or if it had no explicit template argument list, returns NULL. |
| /// Note that it an explicit template argument list may be written empty, |
| /// e.g., template<> void foo<>(char* s); |
| const ASTTemplateArgumentListInfo* |
| getTemplateSpecializationArgsAsWritten() const; |
| |
| /// Specify that this function declaration is actually a function |
| /// template specialization. |
| /// |
| /// \param Template the function template that this function template |
| /// specialization specializes. |
| /// |
| /// \param TemplateArgs the template arguments that produced this |
| /// function template specialization from the template. |
| /// |
| /// \param InsertPos If non-NULL, the position in the function template |
| /// specialization set where the function template specialization data will |
| /// be inserted. |
| /// |
| /// \param TSK the kind of template specialization this is. |
| /// |
| /// \param TemplateArgsAsWritten location info of template arguments. |
| /// |
| /// \param PointOfInstantiation point at which the function template |
| /// specialization was first instantiated. |
| void setFunctionTemplateSpecialization(FunctionTemplateDecl *Template, |
| const TemplateArgumentList *TemplateArgs, |
| void *InsertPos, |
| TemplateSpecializationKind TSK = TSK_ImplicitInstantiation, |
| const TemplateArgumentListInfo *TemplateArgsAsWritten = nullptr, |
| SourceLocation PointOfInstantiation = SourceLocation()) { |
| setFunctionTemplateSpecialization(getASTContext(), Template, TemplateArgs, |
| InsertPos, TSK, TemplateArgsAsWritten, |
| PointOfInstantiation); |
| } |
| |
| /// Specifies that this function declaration is actually a |
| /// dependent function template specialization. |
| void setDependentTemplateSpecialization(ASTContext &Context, |
| const UnresolvedSetImpl &Templates, |
| const TemplateArgumentListInfo &TemplateArgs); |
| |
| DependentFunctionTemplateSpecializationInfo * |
| getDependentSpecializationInfo() const; |
| |
| /// Determine what kind of template instantiation this function |
| /// represents. |
| TemplateSpecializationKind getTemplateSpecializationKind() const; |
| |
| /// Determine the kind of template specialization this function represents |
| /// for the purpose of template instantiation. |
| TemplateSpecializationKind |
| getTemplateSpecializationKindForInstantiation() const; |
| |
| /// Determine what kind of template instantiation this function |
| /// represents. |
| void setTemplateSpecializationKind(TemplateSpecializationKind TSK, |
| SourceLocation PointOfInstantiation = SourceLocation()); |
| |
| /// Retrieve the (first) point of instantiation of a function template |
| /// specialization or a member of a class template specialization. |
| /// |
| /// \returns the first point of instantiation, if this function was |
| /// instantiated from a template; otherwise, returns an invalid source |
| /// location. |
| SourceLocation getPointOfInstantiation() const; |
| |
| /// Determine whether this is or was instantiated from an out-of-line |
| /// definition of a member function. |
| bool isOutOfLine() const override; |
| |
| /// Identify a memory copying or setting function. |
| /// If the given function is a memory copy or setting function, returns |
| /// the corresponding Builtin ID. If the function is not a memory function, |
| /// returns 0. |
| unsigned getMemoryFunctionKind() const; |
| |
| /// Returns ODRHash of the function. This value is calculated and |
| /// stored on first call, then the stored value returned on the other calls. |
| unsigned getODRHash(); |
| |
| /// Returns cached ODRHash of the function. This must have been previously |
| /// computed and stored. |
| unsigned getODRHash() const; |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { |
| return K >= firstFunction && K <= lastFunction; |
| } |
| static DeclContext *castToDeclContext(const FunctionDecl *D) { |
| return static_cast<DeclContext *>(const_cast<FunctionDecl*>(D)); |
| } |
| static FunctionDecl *castFromDeclContext(const DeclContext *DC) { |
| return static_cast<FunctionDecl *>(const_cast<DeclContext*>(DC)); |
| } |
| }; |
| |
| /// Represents a member of a struct/union/class. |
| class FieldDecl : public DeclaratorDecl, public Mergeable<FieldDecl> { |
| unsigned BitField : 1; |
| unsigned Mutable : 1; |
| mutable unsigned CachedFieldIndex : 30; |
| |
| /// The kinds of value we can store in InitializerOrBitWidth. |
| /// |
| /// Note that this is compatible with InClassInitStyle except for |
| /// ISK_CapturedVLAType. |
| enum InitStorageKind { |
| /// If the pointer is null, there's nothing special. Otherwise, |
| /// this is a bitfield and the pointer is the Expr* storing the |
| /// bit-width. |
| ISK_NoInit = (unsigned) ICIS_NoInit, |
| |
| /// The pointer is an (optional due to delayed parsing) Expr* |
| /// holding the copy-initializer. |
| ISK_InClassCopyInit = (unsigned) ICIS_CopyInit, |
| |
| /// The pointer is an (optional due to delayed parsing) Expr* |
| /// holding the list-initializer. |
| ISK_InClassListInit = (unsigned) ICIS_ListInit, |
| |
| /// The pointer is a VariableArrayType* that's been captured; |
| /// the enclosing context is a lambda or captured statement. |
| ISK_CapturedVLAType, |
| }; |
| |
| /// If this is a bitfield with a default member initializer, this |
| /// structure is used to represent the two expressions. |
| struct InitAndBitWidth { |
| Expr *Init; |
| Expr *BitWidth; |
| }; |
| |
| /// Storage for either the bit-width, the in-class initializer, or |
| /// both (via InitAndBitWidth), or the captured variable length array bound. |
| /// |
| /// If the storage kind is ISK_InClassCopyInit or |
| /// ISK_InClassListInit, but the initializer is null, then this |
| /// field has an in-class initializer that has not yet been parsed |
| /// and attached. |
| // FIXME: Tail-allocate this to reduce the size of FieldDecl in the |
| // overwhelmingly common case that we have none of these things. |
| llvm::PointerIntPair<void *, 2, InitStorageKind> InitStorage; |
| |
| protected: |
| FieldDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc, |
| SourceLocation IdLoc, IdentifierInfo *Id, |
| QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable, |
| InClassInitStyle InitStyle) |
| : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), |
| BitField(false), Mutable(Mutable), CachedFieldIndex(0), |
| InitStorage(nullptr, (InitStorageKind) InitStyle) { |
| if (BW) |
| setBitWidth(BW); |
| } |
| |
| public: |
| friend class ASTDeclReader; |
| friend class ASTDeclWriter; |
| |
| static FieldDecl *Create(const ASTContext &C, DeclContext *DC, |
| SourceLocation StartLoc, SourceLocation IdLoc, |
| IdentifierInfo *Id, QualType T, |
| TypeSourceInfo *TInfo, Expr *BW, bool Mutable, |
| InClassInitStyle InitStyle); |
| |
| static FieldDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| /// Returns the index of this field within its record, |
| /// as appropriate for passing to ASTRecordLayout::getFieldOffset. |
| unsigned getFieldIndex() const; |
| |
| /// Determines whether this field is mutable (C++ only). |
| bool isMutable() const { return Mutable; } |
| |
| /// Determines whether this field is a bitfield. |
| bool isBitField() const { return BitField; } |
| |
| /// Determines whether this is an unnamed bitfield. |
| bool isUnnamedBitfield() const { return isBitField() && !getDeclName(); } |
| |
| /// Determines whether this field is a |
| /// representative for an anonymous struct or union. Such fields are |
| /// unnamed and are implicitly generated by the implementation to |
| /// store the data for the anonymous union or struct. |
| bool isAnonymousStructOrUnion() const; |
| |
| Expr *getBitWidth() const { |
| if (!BitField) |
| return nullptr; |
| void *Ptr = InitStorage.getPointer(); |
| if (getInClassInitStyle()) |
| return static_cast<InitAndBitWidth*>(Ptr)->BitWidth; |
| return static_cast<Expr*>(Ptr); |
| } |
| |
| unsigned getBitWidthValue(const ASTContext &Ctx) const; |
| |
| /// Set the bit-field width for this member. |
| // Note: used by some clients (i.e., do not remove it). |
| void setBitWidth(Expr *Width) { |
| assert(!hasCapturedVLAType() && !BitField && |
| "bit width or captured type already set"); |
| assert(Width && "no bit width specified"); |
| InitStorage.setPointer( |
| InitStorage.getInt() |
| ? new (getASTContext()) |
| InitAndBitWidth{getInClassInitializer(), Width} |
| : static_cast<void*>(Width)); |
| BitField = true; |
| } |
| |
| /// Remove the bit-field width from this member. |
| // Note: used by some clients (i.e., do not remove it). |
| void removeBitWidth() { |
| assert(isBitField() && "no bitfield width to remove"); |
| InitStorage.setPointer(getInClassInitializer()); |
| BitField = false; |
| } |
| |
| /// Is this a zero-length bit-field? Such bit-fields aren't really bit-fields |
| /// at all and instead act as a separator between contiguous runs of other |
| /// bit-fields. |
| bool isZeroLengthBitField(const ASTContext &Ctx) const; |
| |
| /// Determine if this field is a subobject of zero size, that is, either a |
| /// zero-length bit-field or a field of empty class type with the |
| /// [[no_unique_address]] attribute. |
| bool isZeroSize(const ASTContext &Ctx) const; |
| |
| /// Get the kind of (C++11) default member initializer that this field has. |
| InClassInitStyle getInClassInitStyle() const { |
| InitStorageKind storageKind = InitStorage.getInt(); |
| return (storageKind == ISK_CapturedVLAType |
| ? ICIS_NoInit : (InClassInitStyle) storageKind); |
| } |
| |
| /// Determine whether this member has a C++11 default member initializer. |
| bool hasInClassInitializer() const { |
| return getInClassInitStyle() != ICIS_NoInit; |
| } |
| |
| /// Get the C++11 default member initializer for this member, or null if one |
| /// has not been set. If a valid declaration has a default member initializer, |
| /// but this returns null, then we have not parsed and attached it yet. |
| Expr *getInClassInitializer() const { |
| if (!hasInClassInitializer()) |
| return nullptr; |
| void *Ptr = InitStorage.getPointer(); |
| if (BitField) |
| return static_cast<InitAndBitWidth*>(Ptr)->Init; |
| return static_cast<Expr*>(Ptr); |
| } |
| |
| /// Set the C++11 in-class initializer for this member. |
| void setInClassInitializer(Expr *Init) { |
| assert(hasInClassInitializer() && !getInClassInitializer()); |
| if (BitField) |
| static_cast<InitAndBitWidth*>(InitStorage.getPointer())->Init = Init; |
| else |
| InitStorage.setPointer(Init); |
| } |
| |
| /// Remove the C++11 in-class initializer from this member. |
| void removeInClassInitializer() { |
| assert(hasInClassInitializer() && "no initializer to remove"); |
| InitStorage.setPointerAndInt(getBitWidth(), ISK_NoInit); |
| } |
| |
| /// Determine whether this member captures the variable length array |
| /// type. |
| bool hasCapturedVLAType() const { |
| return InitStorage.getInt() == ISK_CapturedVLAType; |
| } |
| |
| /// Get the captured variable length array type. |
| const VariableArrayType *getCapturedVLAType() const { |
| return hasCapturedVLAType() ? static_cast<const VariableArrayType *>( |
| InitStorage.getPointer()) |
| : nullptr; |
| } |
| |
| /// Set the captured variable length array type for this field. |
| void setCapturedVLAType(const VariableArrayType *VLAType); |
| |
| /// Returns the parent of this field declaration, which |
| /// is the struct in which this field is defined. |
| const RecordDecl *getParent() const { |
| return cast<RecordDecl>(getDeclContext()); |
| } |
| |
| RecordDecl *getParent() { |
| return cast<RecordDecl>(getDeclContext()); |
| } |
| |
| SourceRange getSourceRange() const override LLVM_READONLY; |
| |
| /// Retrieves the canonical declaration of this field. |
| FieldDecl *getCanonicalDecl() override { return getFirstDecl(); } |
| const FieldDecl *getCanonicalDecl() const { return getFirstDecl(); } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K >= firstField && K <= lastField; } |
| }; |
| |
| /// An instance of this object exists for each enum constant |
| /// that is defined. For example, in "enum X {a,b}", each of a/b are |
| /// EnumConstantDecl's, X is an instance of EnumDecl, and the type of a/b is a |
| /// TagType for the X EnumDecl. |
| class EnumConstantDecl : public ValueDecl, public Mergeable<EnumConstantDecl> { |
| Stmt *Init; // an integer constant expression |
| llvm::APSInt Val; // The value. |
| |
| protected: |
| EnumConstantDecl(DeclContext *DC, SourceLocation L, |
| IdentifierInfo *Id, QualType T, Expr *E, |
| const llvm::APSInt &V) |
| : ValueDecl(EnumConstant, DC, L, Id, T), Init((Stmt*)E), Val(V) {} |
| |
| public: |
| friend class StmtIteratorBase; |
| |
| static EnumConstantDecl *Create(ASTContext &C, EnumDecl *DC, |
| SourceLocation L, IdentifierInfo *Id, |
| QualType T, Expr *E, |
| const llvm::APSInt &V); |
| static EnumConstantDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| const Expr *getInitExpr() const { return (const Expr*) Init; } |
| Expr *getInitExpr() { return (Expr*) Init; } |
| const llvm::APSInt &getInitVal() const { return Val; } |
| |
| void setInitExpr(Expr *E) { Init = (Stmt*) E; } |
| void setInitVal(const llvm::APSInt &V) { Val = V; } |
| |
| SourceRange getSourceRange() const override LLVM_READONLY; |
| |
| /// Retrieves the canonical declaration of this enumerator. |
| EnumConstantDecl *getCanonicalDecl() override { return getFirstDecl(); } |
| const EnumConstantDecl *getCanonicalDecl() const { return getFirstDecl(); } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == EnumConstant; } |
| }; |
| |
| /// Represents a field injected from an anonymous union/struct into the parent |
| /// scope. These are always implicit. |
| class IndirectFieldDecl : public ValueDecl, |
| public Mergeable<IndirectFieldDecl> { |
| NamedDecl **Chaining; |
| unsigned ChainingSize; |
| |
| IndirectFieldDecl(ASTContext &C, DeclContext *DC, SourceLocation L, |
| DeclarationName N, QualType T, |
| MutableArrayRef<NamedDecl *> CH); |
| |
| void anchor() override; |
| |
| public: |
| friend class ASTDeclReader; |
| |
| static IndirectFieldDecl *Create(ASTContext &C, DeclContext *DC, |
| SourceLocation L, IdentifierInfo *Id, |
| QualType T, llvm::MutableArrayRef<NamedDecl *> CH); |
| |
| static IndirectFieldDecl *CreateDeserialized(ASTContext &C, unsigned ID); |
| |
| using chain_iterator = ArrayRef<NamedDecl *>::const_iterator; |
| |
| ArrayRef<NamedDecl *> chain() const { |
| return llvm::makeArrayRef(Chaining, ChainingSize); |
| } |
| chain_iterator chain_begin() const { return chain().begin(); } |
| chain_iterator chain_end() const { return chain().end(); } |
| |
| unsigned getChainingSize() const { return ChainingSize; } |
| |
| FieldDecl *getAnonField() const { |
| assert(chain().size() >= 2); |
| return cast<FieldDecl>(chain().back()); |
| } |
| |
| VarDecl *getVarDecl() const { |
| assert(chain().size() >= 2); |
| return dyn_cast<VarDecl>(chain().front()); |
| } |
| |
| IndirectFieldDecl *getCanonicalDecl() override { return getFirstDecl(); } |
| const IndirectFieldDecl *getCanonicalDecl() const { return getFirstDecl(); } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K == IndirectField; } |
| }; |
| |
| /// Represents a declaration of a type. |
| class TypeDecl : public NamedDecl { |
| friend class ASTContext; |
| |
| /// This indicates the Type object that represents |
| /// this TypeDecl. It is a cache maintained by |
| /// ASTContext::getTypedefType, ASTContext::getTagDeclType, and |
| /// ASTContext::getTemplateTypeParmType, and TemplateTypeParmDecl. |
| mutable const Type *TypeForDecl = nullptr; |
| |
| /// The start of the source range for this declaration. |
| SourceLocation LocStart; |
| |
| void anchor() override; |
| |
| protected: |
| TypeDecl(Kind DK, DeclContext *DC, SourceLocation L, IdentifierInfo *Id, |
| SourceLocation StartL = SourceLocation()) |
| : NamedDecl(DK, DC, L, Id), LocStart(StartL) {} |
| |
| public: |
| // Low-level accessor. If you just want the type defined by this node, |
| // check out ASTContext::getTypeDeclType or one of |
| // ASTContext::getTypedefType, ASTContext::getRecordType, etc. if you |
| // already know the specific kind of node this is. |
| const Type *getTypeForDecl() const { return TypeForDecl; } |
| void setTypeForDecl(const Type *TD) { TypeForDecl = TD; } |
| |
| SourceLocation getBeginLoc() const LLVM_READONLY { return LocStart; } |
| void setLocStart(SourceLocation L) { LocStart = L; } |
| SourceRange getSourceRange() const override LLVM_READONLY { |
| if (LocStart.isValid()) |
| return SourceRange(LocStart, getLocation()); |
| else |
| return SourceRange(getLocation()); |
| } |
| |
| // Implement isa/cast/dyncast/etc. |
| static bool classof(const Decl *D) { return classofKind(D->getKind()); } |
| static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } |
| }; |
| |
| /// Base class for declarations which introduce a typedef-name. |
| class TypedefNameDecl : public TypeDecl, public Redeclarable<TypedefNameDecl> { |
| struct alignas(8) ModedTInfo { |
| TypeSourceInfo *first; |
| QualType second; |
| }; |
| |
| /// If int part is 0, we have not computed IsTransparentTag. |
| /// Otherwise, IsTransparentTag is (getInt() >> 1). |
| mutable llvm::PointerIntPair< |
| llvm::PointerUnion<TypeSourceInfo *, ModedTInfo *>, 2> |
| MaybeModedTInfo; |
| |
| void anchor() override; |
| |
| protected: |
| TypedefNameDecl(Kind DK, ASTContext &C, DeclContext *DC, |
| SourceLocation StartLoc, SourceLocation IdLoc, |
| IdentifierInfo *Id, TypeSourceInfo *TInfo) |
| : TypeDecl(DK, DC, IdLoc, Id, StartLoc), redeclarable_base(C), |
| MaybeModedTInfo(TInfo, 0) {} |
| |
| using redeclarable_base = Redeclarable<TypedefNameDecl>; |
| |
| TypedefNameDecl *getNextRedeclarationImpl() override { |
| return getNextRedeclaration(); |
| } |
| |
| TypedefNameDecl *getPreviousDeclImpl() override { |
| return getPreviousDecl(); |
| } |
| |
|
|