xref: /freebsd/contrib/llvm-project/clang/lib/AST/Decl.cpp (revision 81ad626541db97eb356e2c1d4a20eb2a26a766ab)
10b57cec5SDimitry Andric //===- Decl.cpp - Declaration AST Node Implementation ---------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // This file implements the Decl subclasses.
100b57cec5SDimitry Andric //
110b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
120b57cec5SDimitry Andric 
130b57cec5SDimitry Andric #include "clang/AST/Decl.h"
140b57cec5SDimitry Andric #include "Linkage.h"
150b57cec5SDimitry Andric #include "clang/AST/ASTContext.h"
160b57cec5SDimitry Andric #include "clang/AST/ASTDiagnostic.h"
170b57cec5SDimitry Andric #include "clang/AST/ASTLambda.h"
180b57cec5SDimitry Andric #include "clang/AST/ASTMutationListener.h"
19480093f4SDimitry Andric #include "clang/AST/Attr.h"
200b57cec5SDimitry Andric #include "clang/AST/CanonicalType.h"
210b57cec5SDimitry Andric #include "clang/AST/DeclBase.h"
220b57cec5SDimitry Andric #include "clang/AST/DeclCXX.h"
230b57cec5SDimitry Andric #include "clang/AST/DeclObjC.h"
240b57cec5SDimitry Andric #include "clang/AST/DeclOpenMP.h"
250b57cec5SDimitry Andric #include "clang/AST/DeclTemplate.h"
260b57cec5SDimitry Andric #include "clang/AST/DeclarationName.h"
270b57cec5SDimitry Andric #include "clang/AST/Expr.h"
280b57cec5SDimitry Andric #include "clang/AST/ExprCXX.h"
290b57cec5SDimitry Andric #include "clang/AST/ExternalASTSource.h"
300b57cec5SDimitry Andric #include "clang/AST/ODRHash.h"
310b57cec5SDimitry Andric #include "clang/AST/PrettyDeclStackTrace.h"
320b57cec5SDimitry Andric #include "clang/AST/PrettyPrinter.h"
33*81ad6265SDimitry Andric #include "clang/AST/Randstruct.h"
34*81ad6265SDimitry Andric #include "clang/AST/RecordLayout.h"
350b57cec5SDimitry Andric #include "clang/AST/Redeclarable.h"
360b57cec5SDimitry Andric #include "clang/AST/Stmt.h"
370b57cec5SDimitry Andric #include "clang/AST/TemplateBase.h"
380b57cec5SDimitry Andric #include "clang/AST/Type.h"
390b57cec5SDimitry Andric #include "clang/AST/TypeLoc.h"
400b57cec5SDimitry Andric #include "clang/Basic/Builtins.h"
410b57cec5SDimitry Andric #include "clang/Basic/IdentifierTable.h"
420b57cec5SDimitry Andric #include "clang/Basic/LLVM.h"
430b57cec5SDimitry Andric #include "clang/Basic/LangOptions.h"
440b57cec5SDimitry Andric #include "clang/Basic/Linkage.h"
450b57cec5SDimitry Andric #include "clang/Basic/Module.h"
46fe6060f1SDimitry Andric #include "clang/Basic/NoSanitizeList.h"
470b57cec5SDimitry Andric #include "clang/Basic/PartialDiagnostic.h"
480b57cec5SDimitry Andric #include "clang/Basic/Sanitizers.h"
490b57cec5SDimitry Andric #include "clang/Basic/SourceLocation.h"
500b57cec5SDimitry Andric #include "clang/Basic/SourceManager.h"
510b57cec5SDimitry Andric #include "clang/Basic/Specifiers.h"
520b57cec5SDimitry Andric #include "clang/Basic/TargetCXXABI.h"
530b57cec5SDimitry Andric #include "clang/Basic/TargetInfo.h"
540b57cec5SDimitry Andric #include "clang/Basic/Visibility.h"
550b57cec5SDimitry Andric #include "llvm/ADT/APSInt.h"
560b57cec5SDimitry Andric #include "llvm/ADT/ArrayRef.h"
570b57cec5SDimitry Andric #include "llvm/ADT/None.h"
580b57cec5SDimitry Andric #include "llvm/ADT/Optional.h"
590b57cec5SDimitry Andric #include "llvm/ADT/STLExtras.h"
600b57cec5SDimitry Andric #include "llvm/ADT/SmallVector.h"
610b57cec5SDimitry Andric #include "llvm/ADT/StringRef.h"
62480093f4SDimitry Andric #include "llvm/ADT/StringSwitch.h"
630b57cec5SDimitry Andric #include "llvm/ADT/Triple.h"
640b57cec5SDimitry Andric #include "llvm/Support/Casting.h"
650b57cec5SDimitry Andric #include "llvm/Support/ErrorHandling.h"
660b57cec5SDimitry Andric #include "llvm/Support/raw_ostream.h"
670b57cec5SDimitry Andric #include <algorithm>
680b57cec5SDimitry Andric #include <cassert>
690b57cec5SDimitry Andric #include <cstddef>
700b57cec5SDimitry Andric #include <cstring>
710b57cec5SDimitry Andric #include <memory>
720b57cec5SDimitry Andric #include <string>
730b57cec5SDimitry Andric #include <tuple>
740b57cec5SDimitry Andric #include <type_traits>
750b57cec5SDimitry Andric 
760b57cec5SDimitry Andric using namespace clang;
770b57cec5SDimitry Andric 
780b57cec5SDimitry Andric Decl *clang::getPrimaryMergedDecl(Decl *D) {
790b57cec5SDimitry Andric   return D->getASTContext().getPrimaryMergedDecl(D);
800b57cec5SDimitry Andric }
810b57cec5SDimitry Andric 
820b57cec5SDimitry Andric void PrettyDeclStackTraceEntry::print(raw_ostream &OS) const {
830b57cec5SDimitry Andric   SourceLocation Loc = this->Loc;
840b57cec5SDimitry Andric   if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation();
850b57cec5SDimitry Andric   if (Loc.isValid()) {
860b57cec5SDimitry Andric     Loc.print(OS, Context.getSourceManager());
870b57cec5SDimitry Andric     OS << ": ";
880b57cec5SDimitry Andric   }
890b57cec5SDimitry Andric   OS << Message;
900b57cec5SDimitry Andric 
910b57cec5SDimitry Andric   if (auto *ND = dyn_cast_or_null<NamedDecl>(TheDecl)) {
920b57cec5SDimitry Andric     OS << " '";
930b57cec5SDimitry Andric     ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), true);
940b57cec5SDimitry Andric     OS << "'";
950b57cec5SDimitry Andric   }
960b57cec5SDimitry Andric 
970b57cec5SDimitry Andric   OS << '\n';
980b57cec5SDimitry Andric }
990b57cec5SDimitry Andric 
1000b57cec5SDimitry Andric // Defined here so that it can be inlined into its direct callers.
1010b57cec5SDimitry Andric bool Decl::isOutOfLine() const {
1020b57cec5SDimitry Andric   return !getLexicalDeclContext()->Equals(getDeclContext());
1030b57cec5SDimitry Andric }
1040b57cec5SDimitry Andric 
1050b57cec5SDimitry Andric TranslationUnitDecl::TranslationUnitDecl(ASTContext &ctx)
1060b57cec5SDimitry Andric     : Decl(TranslationUnit, nullptr, SourceLocation()),
107fe6060f1SDimitry Andric       DeclContext(TranslationUnit), redeclarable_base(ctx), Ctx(ctx) {}
1080b57cec5SDimitry Andric 
1090b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
1100b57cec5SDimitry Andric // NamedDecl Implementation
1110b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
1120b57cec5SDimitry Andric 
1130b57cec5SDimitry Andric // Visibility rules aren't rigorously externally specified, but here
1140b57cec5SDimitry Andric // are the basic principles behind what we implement:
1150b57cec5SDimitry Andric //
1160b57cec5SDimitry Andric // 1. An explicit visibility attribute is generally a direct expression
1170b57cec5SDimitry Andric // of the user's intent and should be honored.  Only the innermost
1180b57cec5SDimitry Andric // visibility attribute applies.  If no visibility attribute applies,
1190b57cec5SDimitry Andric // global visibility settings are considered.
1200b57cec5SDimitry Andric //
1210b57cec5SDimitry Andric // 2. There is one caveat to the above: on or in a template pattern,
1220b57cec5SDimitry Andric // an explicit visibility attribute is just a default rule, and
1230b57cec5SDimitry Andric // visibility can be decreased by the visibility of template
1240b57cec5SDimitry Andric // arguments.  But this, too, has an exception: an attribute on an
1250b57cec5SDimitry Andric // explicit specialization or instantiation causes all the visibility
1260b57cec5SDimitry Andric // restrictions of the template arguments to be ignored.
1270b57cec5SDimitry Andric //
1280b57cec5SDimitry Andric // 3. A variable that does not otherwise have explicit visibility can
1290b57cec5SDimitry Andric // be restricted by the visibility of its type.
1300b57cec5SDimitry Andric //
1310b57cec5SDimitry Andric // 4. A visibility restriction is explicit if it comes from an
1320b57cec5SDimitry Andric // attribute (or something like it), not a global visibility setting.
1330b57cec5SDimitry Andric // When emitting a reference to an external symbol, visibility
1340b57cec5SDimitry Andric // restrictions are ignored unless they are explicit.
1350b57cec5SDimitry Andric //
1360b57cec5SDimitry Andric // 5. When computing the visibility of a non-type, including a
1370b57cec5SDimitry Andric // non-type member of a class, only non-type visibility restrictions
1380b57cec5SDimitry Andric // are considered: the 'visibility' attribute, global value-visibility
1390b57cec5SDimitry Andric // settings, and a few special cases like __private_extern.
1400b57cec5SDimitry Andric //
1410b57cec5SDimitry Andric // 6. When computing the visibility of a type, including a type member
1420b57cec5SDimitry Andric // of a class, only type visibility restrictions are considered:
1430b57cec5SDimitry Andric // the 'type_visibility' attribute and global type-visibility settings.
1440b57cec5SDimitry Andric // However, a 'visibility' attribute counts as a 'type_visibility'
1450b57cec5SDimitry Andric // attribute on any declaration that only has the former.
1460b57cec5SDimitry Andric //
1470b57cec5SDimitry Andric // The visibility of a "secondary" entity, like a template argument,
1480b57cec5SDimitry Andric // is computed using the kind of that entity, not the kind of the
1490b57cec5SDimitry Andric // primary entity for which we are computing visibility.  For example,
1500b57cec5SDimitry Andric // the visibility of a specialization of either of these templates:
1510b57cec5SDimitry Andric //   template <class T, bool (&compare)(T, X)> bool has_match(list<T>, X);
1520b57cec5SDimitry Andric //   template <class T, bool (&compare)(T, X)> class matcher;
1530b57cec5SDimitry Andric // is restricted according to the type visibility of the argument 'T',
1540b57cec5SDimitry Andric // the type visibility of 'bool(&)(T,X)', and the value visibility of
1550b57cec5SDimitry Andric // the argument function 'compare'.  That 'has_match' is a value
1560b57cec5SDimitry Andric // and 'matcher' is a type only matters when looking for attributes
1570b57cec5SDimitry Andric // and settings from the immediate context.
1580b57cec5SDimitry Andric 
1590b57cec5SDimitry Andric /// Does this computation kind permit us to consider additional
1600b57cec5SDimitry Andric /// visibility settings from attributes and the like?
1610b57cec5SDimitry Andric static bool hasExplicitVisibilityAlready(LVComputationKind computation) {
1620b57cec5SDimitry Andric   return computation.IgnoreExplicitVisibility;
1630b57cec5SDimitry Andric }
1640b57cec5SDimitry Andric 
1650b57cec5SDimitry Andric /// Given an LVComputationKind, return one of the same type/value sort
1660b57cec5SDimitry Andric /// that records that it already has explicit visibility.
1670b57cec5SDimitry Andric static LVComputationKind
1680b57cec5SDimitry Andric withExplicitVisibilityAlready(LVComputationKind Kind) {
1690b57cec5SDimitry Andric   Kind.IgnoreExplicitVisibility = true;
1700b57cec5SDimitry Andric   return Kind;
1710b57cec5SDimitry Andric }
1720b57cec5SDimitry Andric 
1730b57cec5SDimitry Andric static Optional<Visibility> getExplicitVisibility(const NamedDecl *D,
1740b57cec5SDimitry Andric                                                   LVComputationKind kind) {
1750b57cec5SDimitry Andric   assert(!kind.IgnoreExplicitVisibility &&
1760b57cec5SDimitry Andric          "asking for explicit visibility when we shouldn't be");
1770b57cec5SDimitry Andric   return D->getExplicitVisibility(kind.getExplicitVisibilityKind());
1780b57cec5SDimitry Andric }
1790b57cec5SDimitry Andric 
1800b57cec5SDimitry Andric /// Is the given declaration a "type" or a "value" for the purposes of
1810b57cec5SDimitry Andric /// visibility computation?
1820b57cec5SDimitry Andric static bool usesTypeVisibility(const NamedDecl *D) {
1830b57cec5SDimitry Andric   return isa<TypeDecl>(D) ||
1840b57cec5SDimitry Andric          isa<ClassTemplateDecl>(D) ||
1850b57cec5SDimitry Andric          isa<ObjCInterfaceDecl>(D);
1860b57cec5SDimitry Andric }
1870b57cec5SDimitry Andric 
1880b57cec5SDimitry Andric /// Does the given declaration have member specialization information,
1890b57cec5SDimitry Andric /// and if so, is it an explicit specialization?
1900b57cec5SDimitry Andric template <class T> static typename
1910b57cec5SDimitry Andric std::enable_if<!std::is_base_of<RedeclarableTemplateDecl, T>::value, bool>::type
1920b57cec5SDimitry Andric isExplicitMemberSpecialization(const T *D) {
1930b57cec5SDimitry Andric   if (const MemberSpecializationInfo *member =
1940b57cec5SDimitry Andric         D->getMemberSpecializationInfo()) {
1950b57cec5SDimitry Andric     return member->isExplicitSpecialization();
1960b57cec5SDimitry Andric   }
1970b57cec5SDimitry Andric   return false;
1980b57cec5SDimitry Andric }
1990b57cec5SDimitry Andric 
2000b57cec5SDimitry Andric /// For templates, this question is easier: a member template can't be
2010b57cec5SDimitry Andric /// explicitly instantiated, so there's a single bit indicating whether
2020b57cec5SDimitry Andric /// or not this is an explicit member specialization.
2030b57cec5SDimitry Andric static bool isExplicitMemberSpecialization(const RedeclarableTemplateDecl *D) {
2040b57cec5SDimitry Andric   return D->isMemberSpecialization();
2050b57cec5SDimitry Andric }
2060b57cec5SDimitry Andric 
2070b57cec5SDimitry Andric /// Given a visibility attribute, return the explicit visibility
2080b57cec5SDimitry Andric /// associated with it.
2090b57cec5SDimitry Andric template <class T>
2100b57cec5SDimitry Andric static Visibility getVisibilityFromAttr(const T *attr) {
2110b57cec5SDimitry Andric   switch (attr->getVisibility()) {
2120b57cec5SDimitry Andric   case T::Default:
2130b57cec5SDimitry Andric     return DefaultVisibility;
2140b57cec5SDimitry Andric   case T::Hidden:
2150b57cec5SDimitry Andric     return HiddenVisibility;
2160b57cec5SDimitry Andric   case T::Protected:
2170b57cec5SDimitry Andric     return ProtectedVisibility;
2180b57cec5SDimitry Andric   }
2190b57cec5SDimitry Andric   llvm_unreachable("bad visibility kind");
2200b57cec5SDimitry Andric }
2210b57cec5SDimitry Andric 
2220b57cec5SDimitry Andric /// Return the explicit visibility of the given declaration.
2230b57cec5SDimitry Andric static Optional<Visibility> getVisibilityOf(const NamedDecl *D,
2240b57cec5SDimitry Andric                                     NamedDecl::ExplicitVisibilityKind kind) {
2250b57cec5SDimitry Andric   // If we're ultimately computing the visibility of a type, look for
2260b57cec5SDimitry Andric   // a 'type_visibility' attribute before looking for 'visibility'.
2270b57cec5SDimitry Andric   if (kind == NamedDecl::VisibilityForType) {
2280b57cec5SDimitry Andric     if (const auto *A = D->getAttr<TypeVisibilityAttr>()) {
2290b57cec5SDimitry Andric       return getVisibilityFromAttr(A);
2300b57cec5SDimitry Andric     }
2310b57cec5SDimitry Andric   }
2320b57cec5SDimitry Andric 
2330b57cec5SDimitry Andric   // If this declaration has an explicit visibility attribute, use it.
2340b57cec5SDimitry Andric   if (const auto *A = D->getAttr<VisibilityAttr>()) {
2350b57cec5SDimitry Andric     return getVisibilityFromAttr(A);
2360b57cec5SDimitry Andric   }
2370b57cec5SDimitry Andric 
2380b57cec5SDimitry Andric   return None;
2390b57cec5SDimitry Andric }
2400b57cec5SDimitry Andric 
2410b57cec5SDimitry Andric LinkageInfo LinkageComputer::getLVForType(const Type &T,
2420b57cec5SDimitry Andric                                           LVComputationKind computation) {
2430b57cec5SDimitry Andric   if (computation.IgnoreAllVisibility)
2440b57cec5SDimitry Andric     return LinkageInfo(T.getLinkage(), DefaultVisibility, true);
2450b57cec5SDimitry Andric   return getTypeLinkageAndVisibility(&T);
2460b57cec5SDimitry Andric }
2470b57cec5SDimitry Andric 
2480b57cec5SDimitry Andric /// Get the most restrictive linkage for the types in the given
2490b57cec5SDimitry Andric /// template parameter list.  For visibility purposes, template
2500b57cec5SDimitry Andric /// parameters are part of the signature of a template.
2510b57cec5SDimitry Andric LinkageInfo LinkageComputer::getLVForTemplateParameterList(
2520b57cec5SDimitry Andric     const TemplateParameterList *Params, LVComputationKind computation) {
2530b57cec5SDimitry Andric   LinkageInfo LV;
2540b57cec5SDimitry Andric   for (const NamedDecl *P : *Params) {
2550b57cec5SDimitry Andric     // Template type parameters are the most common and never
2560b57cec5SDimitry Andric     // contribute to visibility, pack or not.
2570b57cec5SDimitry Andric     if (isa<TemplateTypeParmDecl>(P))
2580b57cec5SDimitry Andric       continue;
2590b57cec5SDimitry Andric 
2600b57cec5SDimitry Andric     // Non-type template parameters can be restricted by the value type, e.g.
2610b57cec5SDimitry Andric     //   template <enum X> class A { ... };
2620b57cec5SDimitry Andric     // We have to be careful here, though, because we can be dealing with
2630b57cec5SDimitry Andric     // dependent types.
2640b57cec5SDimitry Andric     if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
2650b57cec5SDimitry Andric       // Handle the non-pack case first.
2660b57cec5SDimitry Andric       if (!NTTP->isExpandedParameterPack()) {
2670b57cec5SDimitry Andric         if (!NTTP->getType()->isDependentType()) {
2680b57cec5SDimitry Andric           LV.merge(getLVForType(*NTTP->getType(), computation));
2690b57cec5SDimitry Andric         }
2700b57cec5SDimitry Andric         continue;
2710b57cec5SDimitry Andric       }
2720b57cec5SDimitry Andric 
2730b57cec5SDimitry Andric       // Look at all the types in an expanded pack.
2740b57cec5SDimitry Andric       for (unsigned i = 0, n = NTTP->getNumExpansionTypes(); i != n; ++i) {
2750b57cec5SDimitry Andric         QualType type = NTTP->getExpansionType(i);
2760b57cec5SDimitry Andric         if (!type->isDependentType())
2770b57cec5SDimitry Andric           LV.merge(getTypeLinkageAndVisibility(type));
2780b57cec5SDimitry Andric       }
2790b57cec5SDimitry Andric       continue;
2800b57cec5SDimitry Andric     }
2810b57cec5SDimitry Andric 
2820b57cec5SDimitry Andric     // Template template parameters can be restricted by their
2830b57cec5SDimitry Andric     // template parameters, recursively.
2840b57cec5SDimitry Andric     const auto *TTP = cast<TemplateTemplateParmDecl>(P);
2850b57cec5SDimitry Andric 
2860b57cec5SDimitry Andric     // Handle the non-pack case first.
2870b57cec5SDimitry Andric     if (!TTP->isExpandedParameterPack()) {
2880b57cec5SDimitry Andric       LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters(),
2890b57cec5SDimitry Andric                                              computation));
2900b57cec5SDimitry Andric       continue;
2910b57cec5SDimitry Andric     }
2920b57cec5SDimitry Andric 
2930b57cec5SDimitry Andric     // Look at all expansions in an expanded pack.
2940b57cec5SDimitry Andric     for (unsigned i = 0, n = TTP->getNumExpansionTemplateParameters();
2950b57cec5SDimitry Andric            i != n; ++i) {
2960b57cec5SDimitry Andric       LV.merge(getLVForTemplateParameterList(
2970b57cec5SDimitry Andric           TTP->getExpansionTemplateParameters(i), computation));
2980b57cec5SDimitry Andric     }
2990b57cec5SDimitry Andric   }
3000b57cec5SDimitry Andric 
3010b57cec5SDimitry Andric   return LV;
3020b57cec5SDimitry Andric }
3030b57cec5SDimitry Andric 
3040b57cec5SDimitry Andric static const Decl *getOutermostFuncOrBlockContext(const Decl *D) {
3050b57cec5SDimitry Andric   const Decl *Ret = nullptr;
3060b57cec5SDimitry Andric   const DeclContext *DC = D->getDeclContext();
3070b57cec5SDimitry Andric   while (DC->getDeclKind() != Decl::TranslationUnit) {
3080b57cec5SDimitry Andric     if (isa<FunctionDecl>(DC) || isa<BlockDecl>(DC))
3090b57cec5SDimitry Andric       Ret = cast<Decl>(DC);
3100b57cec5SDimitry Andric     DC = DC->getParent();
3110b57cec5SDimitry Andric   }
3120b57cec5SDimitry Andric   return Ret;
3130b57cec5SDimitry Andric }
3140b57cec5SDimitry Andric 
3150b57cec5SDimitry Andric /// Get the most restrictive linkage for the types and
3160b57cec5SDimitry Andric /// declarations in the given template argument list.
3170b57cec5SDimitry Andric ///
3180b57cec5SDimitry Andric /// Note that we don't take an LVComputationKind because we always
3190b57cec5SDimitry Andric /// want to honor the visibility of template arguments in the same way.
3200b57cec5SDimitry Andric LinkageInfo
3210b57cec5SDimitry Andric LinkageComputer::getLVForTemplateArgumentList(ArrayRef<TemplateArgument> Args,
3220b57cec5SDimitry Andric                                               LVComputationKind computation) {
3230b57cec5SDimitry Andric   LinkageInfo LV;
3240b57cec5SDimitry Andric 
3250b57cec5SDimitry Andric   for (const TemplateArgument &Arg : Args) {
3260b57cec5SDimitry Andric     switch (Arg.getKind()) {
3270b57cec5SDimitry Andric     case TemplateArgument::Null:
3280b57cec5SDimitry Andric     case TemplateArgument::Integral:
3290b57cec5SDimitry Andric     case TemplateArgument::Expression:
3300b57cec5SDimitry Andric       continue;
3310b57cec5SDimitry Andric 
3320b57cec5SDimitry Andric     case TemplateArgument::Type:
3330b57cec5SDimitry Andric       LV.merge(getLVForType(*Arg.getAsType(), computation));
3340b57cec5SDimitry Andric       continue;
3350b57cec5SDimitry Andric 
3360b57cec5SDimitry Andric     case TemplateArgument::Declaration: {
3370b57cec5SDimitry Andric       const NamedDecl *ND = Arg.getAsDecl();
3380b57cec5SDimitry Andric       assert(!usesTypeVisibility(ND));
3390b57cec5SDimitry Andric       LV.merge(getLVForDecl(ND, computation));
3400b57cec5SDimitry Andric       continue;
3410b57cec5SDimitry Andric     }
3420b57cec5SDimitry Andric 
3430b57cec5SDimitry Andric     case TemplateArgument::NullPtr:
3440b57cec5SDimitry Andric       LV.merge(getTypeLinkageAndVisibility(Arg.getNullPtrType()));
3450b57cec5SDimitry Andric       continue;
3460b57cec5SDimitry Andric 
3470b57cec5SDimitry Andric     case TemplateArgument::Template:
3480b57cec5SDimitry Andric     case TemplateArgument::TemplateExpansion:
3490b57cec5SDimitry Andric       if (TemplateDecl *Template =
3500b57cec5SDimitry Andric               Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl())
3510b57cec5SDimitry Andric         LV.merge(getLVForDecl(Template, computation));
3520b57cec5SDimitry Andric       continue;
3530b57cec5SDimitry Andric 
3540b57cec5SDimitry Andric     case TemplateArgument::Pack:
3550b57cec5SDimitry Andric       LV.merge(getLVForTemplateArgumentList(Arg.getPackAsArray(), computation));
3560b57cec5SDimitry Andric       continue;
3570b57cec5SDimitry Andric     }
3580b57cec5SDimitry Andric     llvm_unreachable("bad template argument kind");
3590b57cec5SDimitry Andric   }
3600b57cec5SDimitry Andric 
3610b57cec5SDimitry Andric   return LV;
3620b57cec5SDimitry Andric }
3630b57cec5SDimitry Andric 
3640b57cec5SDimitry Andric LinkageInfo
3650b57cec5SDimitry Andric LinkageComputer::getLVForTemplateArgumentList(const TemplateArgumentList &TArgs,
3660b57cec5SDimitry Andric                                               LVComputationKind computation) {
3670b57cec5SDimitry Andric   return getLVForTemplateArgumentList(TArgs.asArray(), computation);
3680b57cec5SDimitry Andric }
3690b57cec5SDimitry Andric 
3700b57cec5SDimitry Andric static bool shouldConsiderTemplateVisibility(const FunctionDecl *fn,
3710b57cec5SDimitry Andric                         const FunctionTemplateSpecializationInfo *specInfo) {
3720b57cec5SDimitry Andric   // Include visibility from the template parameters and arguments
3730b57cec5SDimitry Andric   // only if this is not an explicit instantiation or specialization
3740b57cec5SDimitry Andric   // with direct explicit visibility.  (Implicit instantiations won't
3750b57cec5SDimitry Andric   // have a direct attribute.)
3760b57cec5SDimitry Andric   if (!specInfo->isExplicitInstantiationOrSpecialization())
3770b57cec5SDimitry Andric     return true;
3780b57cec5SDimitry Andric 
3790b57cec5SDimitry Andric   return !fn->hasAttr<VisibilityAttr>();
3800b57cec5SDimitry Andric }
3810b57cec5SDimitry Andric 
3820b57cec5SDimitry Andric /// Merge in template-related linkage and visibility for the given
3830b57cec5SDimitry Andric /// function template specialization.
3840b57cec5SDimitry Andric ///
3850b57cec5SDimitry Andric /// We don't need a computation kind here because we can assume
3860b57cec5SDimitry Andric /// LVForValue.
3870b57cec5SDimitry Andric ///
3880b57cec5SDimitry Andric /// \param[out] LV the computation to use for the parent
3890b57cec5SDimitry Andric void LinkageComputer::mergeTemplateLV(
3900b57cec5SDimitry Andric     LinkageInfo &LV, const FunctionDecl *fn,
3910b57cec5SDimitry Andric     const FunctionTemplateSpecializationInfo *specInfo,
3920b57cec5SDimitry Andric     LVComputationKind computation) {
3930b57cec5SDimitry Andric   bool considerVisibility =
3940b57cec5SDimitry Andric     shouldConsiderTemplateVisibility(fn, specInfo);
3950b57cec5SDimitry Andric 
3960b57cec5SDimitry Andric   FunctionTemplateDecl *temp = specInfo->getTemplate();
397*81ad6265SDimitry Andric 
398*81ad6265SDimitry Andric   // Merge information from the template declaration.
399*81ad6265SDimitry Andric   LinkageInfo tempLV = getLVForDecl(temp, computation);
400*81ad6265SDimitry Andric   // The linkage of the specialization should be consistent with the
401*81ad6265SDimitry Andric   // template declaration.
402*81ad6265SDimitry Andric   LV.setLinkage(tempLV.getLinkage());
403*81ad6265SDimitry Andric 
404*81ad6265SDimitry Andric   // Merge information from the template parameters.
405*81ad6265SDimitry Andric   LinkageInfo paramsLV =
4060b57cec5SDimitry Andric       getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
407*81ad6265SDimitry Andric   LV.mergeMaybeWithVisibility(paramsLV, considerVisibility);
4080b57cec5SDimitry Andric 
4090b57cec5SDimitry Andric   // Merge information from the template arguments.
4100b57cec5SDimitry Andric   const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments;
4110b57cec5SDimitry Andric   LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
4120b57cec5SDimitry Andric   LV.mergeMaybeWithVisibility(argsLV, considerVisibility);
4130b57cec5SDimitry Andric }
4140b57cec5SDimitry Andric 
4150b57cec5SDimitry Andric /// Does the given declaration have a direct visibility attribute
4160b57cec5SDimitry Andric /// that would match the given rules?
4170b57cec5SDimitry Andric static bool hasDirectVisibilityAttribute(const NamedDecl *D,
4180b57cec5SDimitry Andric                                          LVComputationKind computation) {
4190b57cec5SDimitry Andric   if (computation.IgnoreAllVisibility)
4200b57cec5SDimitry Andric     return false;
4210b57cec5SDimitry Andric 
4220b57cec5SDimitry Andric   return (computation.isTypeVisibility() && D->hasAttr<TypeVisibilityAttr>()) ||
4230b57cec5SDimitry Andric          D->hasAttr<VisibilityAttr>();
4240b57cec5SDimitry Andric }
4250b57cec5SDimitry Andric 
4260b57cec5SDimitry Andric /// Should we consider visibility associated with the template
4270b57cec5SDimitry Andric /// arguments and parameters of the given class template specialization?
4280b57cec5SDimitry Andric static bool shouldConsiderTemplateVisibility(
4290b57cec5SDimitry Andric                                  const ClassTemplateSpecializationDecl *spec,
4300b57cec5SDimitry Andric                                  LVComputationKind computation) {
4310b57cec5SDimitry Andric   // Include visibility from the template parameters and arguments
4320b57cec5SDimitry Andric   // only if this is not an explicit instantiation or specialization
4330b57cec5SDimitry Andric   // with direct explicit visibility (and note that implicit
4340b57cec5SDimitry Andric   // instantiations won't have a direct attribute).
4350b57cec5SDimitry Andric   //
4360b57cec5SDimitry Andric   // Furthermore, we want to ignore template parameters and arguments
4370b57cec5SDimitry Andric   // for an explicit specialization when computing the visibility of a
4380b57cec5SDimitry Andric   // member thereof with explicit visibility.
4390b57cec5SDimitry Andric   //
4400b57cec5SDimitry Andric   // This is a bit complex; let's unpack it.
4410b57cec5SDimitry Andric   //
4420b57cec5SDimitry Andric   // An explicit class specialization is an independent, top-level
4430b57cec5SDimitry Andric   // declaration.  As such, if it or any of its members has an
4440b57cec5SDimitry Andric   // explicit visibility attribute, that must directly express the
4450b57cec5SDimitry Andric   // user's intent, and we should honor it.  The same logic applies to
4460b57cec5SDimitry Andric   // an explicit instantiation of a member of such a thing.
4470b57cec5SDimitry Andric 
4480b57cec5SDimitry Andric   // Fast path: if this is not an explicit instantiation or
4490b57cec5SDimitry Andric   // specialization, we always want to consider template-related
4500b57cec5SDimitry Andric   // visibility restrictions.
4510b57cec5SDimitry Andric   if (!spec->isExplicitInstantiationOrSpecialization())
4520b57cec5SDimitry Andric     return true;
4530b57cec5SDimitry Andric 
4540b57cec5SDimitry Andric   // This is the 'member thereof' check.
4550b57cec5SDimitry Andric   if (spec->isExplicitSpecialization() &&
4560b57cec5SDimitry Andric       hasExplicitVisibilityAlready(computation))
4570b57cec5SDimitry Andric     return false;
4580b57cec5SDimitry Andric 
4590b57cec5SDimitry Andric   return !hasDirectVisibilityAttribute(spec, computation);
4600b57cec5SDimitry Andric }
4610b57cec5SDimitry Andric 
4620b57cec5SDimitry Andric /// Merge in template-related linkage and visibility for the given
4630b57cec5SDimitry Andric /// class template specialization.
4640b57cec5SDimitry Andric void LinkageComputer::mergeTemplateLV(
4650b57cec5SDimitry Andric     LinkageInfo &LV, const ClassTemplateSpecializationDecl *spec,
4660b57cec5SDimitry Andric     LVComputationKind computation) {
4670b57cec5SDimitry Andric   bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
4680b57cec5SDimitry Andric 
4690b57cec5SDimitry Andric   // Merge information from the template parameters, but ignore
4700b57cec5SDimitry Andric   // visibility if we're only considering template arguments.
4710b57cec5SDimitry Andric 
4720b57cec5SDimitry Andric   ClassTemplateDecl *temp = spec->getSpecializedTemplate();
4730b57cec5SDimitry Andric   LinkageInfo tempLV =
4740b57cec5SDimitry Andric     getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
4750b57cec5SDimitry Andric   LV.mergeMaybeWithVisibility(tempLV,
4760b57cec5SDimitry Andric            considerVisibility && !hasExplicitVisibilityAlready(computation));
4770b57cec5SDimitry Andric 
4780b57cec5SDimitry Andric   // Merge information from the template arguments.  We ignore
4790b57cec5SDimitry Andric   // template-argument visibility if we've got an explicit
4800b57cec5SDimitry Andric   // instantiation with a visibility attribute.
4810b57cec5SDimitry Andric   const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
4820b57cec5SDimitry Andric   LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
4830b57cec5SDimitry Andric   if (considerVisibility)
4840b57cec5SDimitry Andric     LV.mergeVisibility(argsLV);
4850b57cec5SDimitry Andric   LV.mergeExternalVisibility(argsLV);
4860b57cec5SDimitry Andric }
4870b57cec5SDimitry Andric 
4880b57cec5SDimitry Andric /// Should we consider visibility associated with the template
4890b57cec5SDimitry Andric /// arguments and parameters of the given variable template
4900b57cec5SDimitry Andric /// specialization? As usual, follow class template specialization
4910b57cec5SDimitry Andric /// logic up to initialization.
4920b57cec5SDimitry Andric static bool shouldConsiderTemplateVisibility(
4930b57cec5SDimitry Andric                                  const VarTemplateSpecializationDecl *spec,
4940b57cec5SDimitry Andric                                  LVComputationKind computation) {
4950b57cec5SDimitry Andric   // Include visibility from the template parameters and arguments
4960b57cec5SDimitry Andric   // only if this is not an explicit instantiation or specialization
4970b57cec5SDimitry Andric   // with direct explicit visibility (and note that implicit
4980b57cec5SDimitry Andric   // instantiations won't have a direct attribute).
4990b57cec5SDimitry Andric   if (!spec->isExplicitInstantiationOrSpecialization())
5000b57cec5SDimitry Andric     return true;
5010b57cec5SDimitry Andric 
5020b57cec5SDimitry Andric   // An explicit variable specialization is an independent, top-level
5030b57cec5SDimitry Andric   // declaration.  As such, if it has an explicit visibility attribute,
5040b57cec5SDimitry Andric   // that must directly express the user's intent, and we should honor
5050b57cec5SDimitry Andric   // it.
5060b57cec5SDimitry Andric   if (spec->isExplicitSpecialization() &&
5070b57cec5SDimitry Andric       hasExplicitVisibilityAlready(computation))
5080b57cec5SDimitry Andric     return false;
5090b57cec5SDimitry Andric 
5100b57cec5SDimitry Andric   return !hasDirectVisibilityAttribute(spec, computation);
5110b57cec5SDimitry Andric }
5120b57cec5SDimitry Andric 
5130b57cec5SDimitry Andric /// Merge in template-related linkage and visibility for the given
5140b57cec5SDimitry Andric /// variable template specialization. As usual, follow class template
5150b57cec5SDimitry Andric /// specialization logic up to initialization.
5160b57cec5SDimitry Andric void LinkageComputer::mergeTemplateLV(LinkageInfo &LV,
5170b57cec5SDimitry Andric                                       const VarTemplateSpecializationDecl *spec,
5180b57cec5SDimitry Andric                                       LVComputationKind computation) {
5190b57cec5SDimitry Andric   bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation);
5200b57cec5SDimitry Andric 
5210b57cec5SDimitry Andric   // Merge information from the template parameters, but ignore
5220b57cec5SDimitry Andric   // visibility if we're only considering template arguments.
5230b57cec5SDimitry Andric 
5240b57cec5SDimitry Andric   VarTemplateDecl *temp = spec->getSpecializedTemplate();
5250b57cec5SDimitry Andric   LinkageInfo tempLV =
5260b57cec5SDimitry Andric     getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
5270b57cec5SDimitry Andric   LV.mergeMaybeWithVisibility(tempLV,
5280b57cec5SDimitry Andric            considerVisibility && !hasExplicitVisibilityAlready(computation));
5290b57cec5SDimitry Andric 
5300b57cec5SDimitry Andric   // Merge information from the template arguments.  We ignore
5310b57cec5SDimitry Andric   // template-argument visibility if we've got an explicit
5320b57cec5SDimitry Andric   // instantiation with a visibility attribute.
5330b57cec5SDimitry Andric   const TemplateArgumentList &templateArgs = spec->getTemplateArgs();
5340b57cec5SDimitry Andric   LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation);
5350b57cec5SDimitry Andric   if (considerVisibility)
5360b57cec5SDimitry Andric     LV.mergeVisibility(argsLV);
5370b57cec5SDimitry Andric   LV.mergeExternalVisibility(argsLV);
5380b57cec5SDimitry Andric }
5390b57cec5SDimitry Andric 
5400b57cec5SDimitry Andric static bool useInlineVisibilityHidden(const NamedDecl *D) {
5410b57cec5SDimitry Andric   // FIXME: we should warn if -fvisibility-inlines-hidden is used with c.
5420b57cec5SDimitry Andric   const LangOptions &Opts = D->getASTContext().getLangOpts();
5430b57cec5SDimitry Andric   if (!Opts.CPlusPlus || !Opts.InlineVisibilityHidden)
5440b57cec5SDimitry Andric     return false;
5450b57cec5SDimitry Andric 
5460b57cec5SDimitry Andric   const auto *FD = dyn_cast<FunctionDecl>(D);
5470b57cec5SDimitry Andric   if (!FD)
5480b57cec5SDimitry Andric     return false;
5490b57cec5SDimitry Andric 
5500b57cec5SDimitry Andric   TemplateSpecializationKind TSK = TSK_Undeclared;
5510b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *spec
5520b57cec5SDimitry Andric       = FD->getTemplateSpecializationInfo()) {
5530b57cec5SDimitry Andric     TSK = spec->getTemplateSpecializationKind();
5540b57cec5SDimitry Andric   } else if (MemberSpecializationInfo *MSI =
5550b57cec5SDimitry Andric              FD->getMemberSpecializationInfo()) {
5560b57cec5SDimitry Andric     TSK = MSI->getTemplateSpecializationKind();
5570b57cec5SDimitry Andric   }
5580b57cec5SDimitry Andric 
5590b57cec5SDimitry Andric   const FunctionDecl *Def = nullptr;
5600b57cec5SDimitry Andric   // InlineVisibilityHidden only applies to definitions, and
5610b57cec5SDimitry Andric   // isInlined() only gives meaningful answers on definitions
5620b57cec5SDimitry Andric   // anyway.
5630b57cec5SDimitry Andric   return TSK != TSK_ExplicitInstantiationDeclaration &&
5640b57cec5SDimitry Andric     TSK != TSK_ExplicitInstantiationDefinition &&
5650b57cec5SDimitry Andric     FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
5660b57cec5SDimitry Andric }
5670b57cec5SDimitry Andric 
5680b57cec5SDimitry Andric template <typename T> static bool isFirstInExternCContext(T *D) {
5690b57cec5SDimitry Andric   const T *First = D->getFirstDecl();
5700b57cec5SDimitry Andric   return First->isInExternCContext();
5710b57cec5SDimitry Andric }
5720b57cec5SDimitry Andric 
5730b57cec5SDimitry Andric static bool isSingleLineLanguageLinkage(const Decl &D) {
5740b57cec5SDimitry Andric   if (const auto *SD = dyn_cast<LinkageSpecDecl>(D.getDeclContext()))
5750b57cec5SDimitry Andric     if (!SD->hasBraces())
5760b57cec5SDimitry Andric       return true;
5770b57cec5SDimitry Andric   return false;
5780b57cec5SDimitry Andric }
5790b57cec5SDimitry Andric 
5800b57cec5SDimitry Andric /// Determine whether D is declared in the purview of a named module.
5810b57cec5SDimitry Andric static bool isInModulePurview(const NamedDecl *D) {
5820b57cec5SDimitry Andric   if (auto *M = D->getOwningModule())
5830b57cec5SDimitry Andric     return M->isModulePurview();
5840b57cec5SDimitry Andric   return false;
5850b57cec5SDimitry Andric }
5860b57cec5SDimitry Andric 
5870b57cec5SDimitry Andric static bool isExportedFromModuleInterfaceUnit(const NamedDecl *D) {
5880b57cec5SDimitry Andric   // FIXME: Handle isModulePrivate.
5890b57cec5SDimitry Andric   switch (D->getModuleOwnershipKind()) {
5900b57cec5SDimitry Andric   case Decl::ModuleOwnershipKind::Unowned:
591*81ad6265SDimitry Andric   case Decl::ModuleOwnershipKind::ReachableWhenImported:
5920b57cec5SDimitry Andric   case Decl::ModuleOwnershipKind::ModulePrivate:
5930b57cec5SDimitry Andric     return false;
5940b57cec5SDimitry Andric   case Decl::ModuleOwnershipKind::Visible:
5950b57cec5SDimitry Andric   case Decl::ModuleOwnershipKind::VisibleWhenImported:
5960b57cec5SDimitry Andric     return isInModulePurview(D);
5970b57cec5SDimitry Andric   }
5980b57cec5SDimitry Andric   llvm_unreachable("unexpected module ownership kind");
5990b57cec5SDimitry Andric }
6000b57cec5SDimitry Andric 
6010b57cec5SDimitry Andric static LinkageInfo getInternalLinkageFor(const NamedDecl *D) {
602*81ad6265SDimitry Andric   // (for the modules ts) Internal linkage declarations within a module
603*81ad6265SDimitry Andric   // interface unit are modeled as "module-internal linkage", which means that
604*81ad6265SDimitry Andric   // they have internal linkage formally but can be indirectly accessed from
605*81ad6265SDimitry Andric   // outside the module via inline functions and templates defined within the
606*81ad6265SDimitry Andric   // module.
607*81ad6265SDimitry Andric   if (isInModulePurview(D) && D->getASTContext().getLangOpts().ModulesTS)
6080b57cec5SDimitry Andric     return LinkageInfo(ModuleInternalLinkage, DefaultVisibility, false);
6090b57cec5SDimitry Andric 
6100b57cec5SDimitry Andric   return LinkageInfo::internal();
6110b57cec5SDimitry Andric }
6120b57cec5SDimitry Andric 
6130b57cec5SDimitry Andric static LinkageInfo getExternalLinkageFor(const NamedDecl *D) {
6140b57cec5SDimitry Andric   // C++ Modules TS [basic.link]/6.8:
6150b57cec5SDimitry Andric   //   - A name declared at namespace scope that does not have internal linkage
6160b57cec5SDimitry Andric   //     by the previous rules and that is introduced by a non-exported
6170b57cec5SDimitry Andric   //     declaration has module linkage.
6180eae32dcSDimitry Andric   //
6190eae32dcSDimitry Andric   // [basic.namespace.general]/p2
6200eae32dcSDimitry Andric   //   A namespace is never attached to a named module and never has a name with
6210eae32dcSDimitry Andric   //   module linkage.
6220eae32dcSDimitry Andric   if (isInModulePurview(D) &&
6230eae32dcSDimitry Andric       !isExportedFromModuleInterfaceUnit(
6240eae32dcSDimitry Andric           cast<NamedDecl>(D->getCanonicalDecl())) &&
6250eae32dcSDimitry Andric       !isa<NamespaceDecl>(D))
6260b57cec5SDimitry Andric     return LinkageInfo(ModuleLinkage, DefaultVisibility, false);
6270b57cec5SDimitry Andric 
6280b57cec5SDimitry Andric   return LinkageInfo::external();
6290b57cec5SDimitry Andric }
6300b57cec5SDimitry Andric 
6310b57cec5SDimitry Andric static StorageClass getStorageClass(const Decl *D) {
6320b57cec5SDimitry Andric   if (auto *TD = dyn_cast<TemplateDecl>(D))
6330b57cec5SDimitry Andric     D = TD->getTemplatedDecl();
6340b57cec5SDimitry Andric   if (D) {
6350b57cec5SDimitry Andric     if (auto *VD = dyn_cast<VarDecl>(D))
6360b57cec5SDimitry Andric       return VD->getStorageClass();
6370b57cec5SDimitry Andric     if (auto *FD = dyn_cast<FunctionDecl>(D))
6380b57cec5SDimitry Andric       return FD->getStorageClass();
6390b57cec5SDimitry Andric   }
6400b57cec5SDimitry Andric   return SC_None;
6410b57cec5SDimitry Andric }
6420b57cec5SDimitry Andric 
6430b57cec5SDimitry Andric LinkageInfo
6440b57cec5SDimitry Andric LinkageComputer::getLVForNamespaceScopeDecl(const NamedDecl *D,
6450b57cec5SDimitry Andric                                             LVComputationKind computation,
6460b57cec5SDimitry Andric                                             bool IgnoreVarTypeLinkage) {
6470b57cec5SDimitry Andric   assert(D->getDeclContext()->getRedeclContext()->isFileContext() &&
6480b57cec5SDimitry Andric          "Not a name having namespace scope");
6490b57cec5SDimitry Andric   ASTContext &Context = D->getASTContext();
6500b57cec5SDimitry Andric 
6510b57cec5SDimitry Andric   // C++ [basic.link]p3:
6520b57cec5SDimitry Andric   //   A name having namespace scope (3.3.6) has internal linkage if it
6530b57cec5SDimitry Andric   //   is the name of
6540b57cec5SDimitry Andric 
6550b57cec5SDimitry Andric   if (getStorageClass(D->getCanonicalDecl()) == SC_Static) {
6560b57cec5SDimitry Andric     // - a variable, variable template, function, or function template
6570b57cec5SDimitry Andric     //   that is explicitly declared static; or
6580b57cec5SDimitry Andric     // (This bullet corresponds to C99 6.2.2p3.)
6590b57cec5SDimitry Andric     return getInternalLinkageFor(D);
6600b57cec5SDimitry Andric   }
6610b57cec5SDimitry Andric 
6620b57cec5SDimitry Andric   if (const auto *Var = dyn_cast<VarDecl>(D)) {
6630b57cec5SDimitry Andric     // - a non-template variable of non-volatile const-qualified type, unless
6640b57cec5SDimitry Andric     //   - it is explicitly declared extern, or
6650b57cec5SDimitry Andric     //   - it is inline or exported, or
6660b57cec5SDimitry Andric     //   - it was previously declared and the prior declaration did not have
6670b57cec5SDimitry Andric     //     internal linkage
6680b57cec5SDimitry Andric     // (There is no equivalent in C99.)
6690b57cec5SDimitry Andric     if (Context.getLangOpts().CPlusPlus &&
6700b57cec5SDimitry Andric         Var->getType().isConstQualified() &&
6710b57cec5SDimitry Andric         !Var->getType().isVolatileQualified() &&
6720b57cec5SDimitry Andric         !Var->isInline() &&
6730b57cec5SDimitry Andric         !isExportedFromModuleInterfaceUnit(Var) &&
6740b57cec5SDimitry Andric         !isa<VarTemplateSpecializationDecl>(Var) &&
6750b57cec5SDimitry Andric         !Var->getDescribedVarTemplate()) {
6760b57cec5SDimitry Andric       const VarDecl *PrevVar = Var->getPreviousDecl();
6770b57cec5SDimitry Andric       if (PrevVar)
6780b57cec5SDimitry Andric         return getLVForDecl(PrevVar, computation);
6790b57cec5SDimitry Andric 
6800b57cec5SDimitry Andric       if (Var->getStorageClass() != SC_Extern &&
6810b57cec5SDimitry Andric           Var->getStorageClass() != SC_PrivateExtern &&
6820b57cec5SDimitry Andric           !isSingleLineLanguageLinkage(*Var))
6830b57cec5SDimitry Andric         return getInternalLinkageFor(Var);
6840b57cec5SDimitry Andric     }
6850b57cec5SDimitry Andric 
6860b57cec5SDimitry Andric     for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar;
6870b57cec5SDimitry Andric          PrevVar = PrevVar->getPreviousDecl()) {
6880b57cec5SDimitry Andric       if (PrevVar->getStorageClass() == SC_PrivateExtern &&
6890b57cec5SDimitry Andric           Var->getStorageClass() == SC_None)
6900b57cec5SDimitry Andric         return getDeclLinkageAndVisibility(PrevVar);
6910b57cec5SDimitry Andric       // Explicitly declared static.
6920b57cec5SDimitry Andric       if (PrevVar->getStorageClass() == SC_Static)
6930b57cec5SDimitry Andric         return getInternalLinkageFor(Var);
6940b57cec5SDimitry Andric     }
6950b57cec5SDimitry Andric   } else if (const auto *IFD = dyn_cast<IndirectFieldDecl>(D)) {
6960b57cec5SDimitry Andric     //   - a data member of an anonymous union.
6970b57cec5SDimitry Andric     const VarDecl *VD = IFD->getVarDecl();
6980b57cec5SDimitry Andric     assert(VD && "Expected a VarDecl in this IndirectFieldDecl!");
6990b57cec5SDimitry Andric     return getLVForNamespaceScopeDecl(VD, computation, IgnoreVarTypeLinkage);
7000b57cec5SDimitry Andric   }
7010b57cec5SDimitry Andric   assert(!isa<FieldDecl>(D) && "Didn't expect a FieldDecl!");
7020b57cec5SDimitry Andric 
7030b57cec5SDimitry Andric   // FIXME: This gives internal linkage to names that should have no linkage
7040b57cec5SDimitry Andric   // (those not covered by [basic.link]p6).
7050b57cec5SDimitry Andric   if (D->isInAnonymousNamespace()) {
7060b57cec5SDimitry Andric     const auto *Var = dyn_cast<VarDecl>(D);
7070b57cec5SDimitry Andric     const auto *Func = dyn_cast<FunctionDecl>(D);
7080b57cec5SDimitry Andric     // FIXME: The check for extern "C" here is not justified by the standard
7090b57cec5SDimitry Andric     // wording, but we retain it from the pre-DR1113 model to avoid breaking
7100b57cec5SDimitry Andric     // code.
7110b57cec5SDimitry Andric     //
7120b57cec5SDimitry Andric     // C++11 [basic.link]p4:
7130b57cec5SDimitry Andric     //   An unnamed namespace or a namespace declared directly or indirectly
7140b57cec5SDimitry Andric     //   within an unnamed namespace has internal linkage.
7150b57cec5SDimitry Andric     if ((!Var || !isFirstInExternCContext(Var)) &&
7160b57cec5SDimitry Andric         (!Func || !isFirstInExternCContext(Func)))
7170b57cec5SDimitry Andric       return getInternalLinkageFor(D);
7180b57cec5SDimitry Andric   }
7190b57cec5SDimitry Andric 
7200b57cec5SDimitry Andric   // Set up the defaults.
7210b57cec5SDimitry Andric 
7220b57cec5SDimitry Andric   // C99 6.2.2p5:
7230b57cec5SDimitry Andric   //   If the declaration of an identifier for an object has file
7240b57cec5SDimitry Andric   //   scope and no storage-class specifier, its linkage is
7250b57cec5SDimitry Andric   //   external.
7260b57cec5SDimitry Andric   LinkageInfo LV = getExternalLinkageFor(D);
7270b57cec5SDimitry Andric 
7280b57cec5SDimitry Andric   if (!hasExplicitVisibilityAlready(computation)) {
7290b57cec5SDimitry Andric     if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) {
7300b57cec5SDimitry Andric       LV.mergeVisibility(*Vis, true);
7310b57cec5SDimitry Andric     } else {
7320b57cec5SDimitry Andric       // If we're declared in a namespace with a visibility attribute,
7330b57cec5SDimitry Andric       // use that namespace's visibility, and it still counts as explicit.
7340b57cec5SDimitry Andric       for (const DeclContext *DC = D->getDeclContext();
7350b57cec5SDimitry Andric            !isa<TranslationUnitDecl>(DC);
7360b57cec5SDimitry Andric            DC = DC->getParent()) {
7370b57cec5SDimitry Andric         const auto *ND = dyn_cast<NamespaceDecl>(DC);
7380b57cec5SDimitry Andric         if (!ND) continue;
7390b57cec5SDimitry Andric         if (Optional<Visibility> Vis = getExplicitVisibility(ND, computation)) {
7400b57cec5SDimitry Andric           LV.mergeVisibility(*Vis, true);
7410b57cec5SDimitry Andric           break;
7420b57cec5SDimitry Andric         }
7430b57cec5SDimitry Andric       }
7440b57cec5SDimitry Andric     }
7450b57cec5SDimitry Andric 
7460b57cec5SDimitry Andric     // Add in global settings if the above didn't give us direct visibility.
7470b57cec5SDimitry Andric     if (!LV.isVisibilityExplicit()) {
7480b57cec5SDimitry Andric       // Use global type/value visibility as appropriate.
7490b57cec5SDimitry Andric       Visibility globalVisibility =
7500b57cec5SDimitry Andric           computation.isValueVisibility()
7510b57cec5SDimitry Andric               ? Context.getLangOpts().getValueVisibilityMode()
7520b57cec5SDimitry Andric               : Context.getLangOpts().getTypeVisibilityMode();
7530b57cec5SDimitry Andric       LV.mergeVisibility(globalVisibility, /*explicit*/ false);
7540b57cec5SDimitry Andric 
7550b57cec5SDimitry Andric       // If we're paying attention to global visibility, apply
7560b57cec5SDimitry Andric       // -finline-visibility-hidden if this is an inline method.
7570b57cec5SDimitry Andric       if (useInlineVisibilityHidden(D))
7580b57cec5SDimitry Andric         LV.mergeVisibility(HiddenVisibility, /*visibilityExplicit=*/false);
7590b57cec5SDimitry Andric     }
7600b57cec5SDimitry Andric   }
7610b57cec5SDimitry Andric 
7620b57cec5SDimitry Andric   // C++ [basic.link]p4:
7630b57cec5SDimitry Andric 
7640b57cec5SDimitry Andric   //   A name having namespace scope that has not been given internal linkage
7650b57cec5SDimitry Andric   //   above and that is the name of
7660b57cec5SDimitry Andric   //   [...bullets...]
7670b57cec5SDimitry Andric   //   has its linkage determined as follows:
7680b57cec5SDimitry Andric   //     - if the enclosing namespace has internal linkage, the name has
7690b57cec5SDimitry Andric   //       internal linkage; [handled above]
7700b57cec5SDimitry Andric   //     - otherwise, if the declaration of the name is attached to a named
7710b57cec5SDimitry Andric   //       module and is not exported, the name has module linkage;
7720b57cec5SDimitry Andric   //     - otherwise, the name has external linkage.
7730b57cec5SDimitry Andric   // LV is currently set up to handle the last two bullets.
7740b57cec5SDimitry Andric   //
7750b57cec5SDimitry Andric   //   The bullets are:
7760b57cec5SDimitry Andric 
7770b57cec5SDimitry Andric   //     - a variable; or
7780b57cec5SDimitry Andric   if (const auto *Var = dyn_cast<VarDecl>(D)) {
7790b57cec5SDimitry Andric     // GCC applies the following optimization to variables and static
7800b57cec5SDimitry Andric     // data members, but not to functions:
7810b57cec5SDimitry Andric     //
7820b57cec5SDimitry Andric     // Modify the variable's LV by the LV of its type unless this is
7830b57cec5SDimitry Andric     // C or extern "C".  This follows from [basic.link]p9:
7840b57cec5SDimitry Andric     //   A type without linkage shall not be used as the type of a
7850b57cec5SDimitry Andric     //   variable or function with external linkage unless
7860b57cec5SDimitry Andric     //    - the entity has C language linkage, or
7870b57cec5SDimitry Andric     //    - the entity is declared within an unnamed namespace, or
7880b57cec5SDimitry Andric     //    - the entity is not used or is defined in the same
7890b57cec5SDimitry Andric     //      translation unit.
7900b57cec5SDimitry Andric     // and [basic.link]p10:
7910b57cec5SDimitry Andric     //   ...the types specified by all declarations referring to a
7920b57cec5SDimitry Andric     //   given variable or function shall be identical...
7930b57cec5SDimitry Andric     // C does not have an equivalent rule.
7940b57cec5SDimitry Andric     //
7950b57cec5SDimitry Andric     // Ignore this if we've got an explicit attribute;  the user
7960b57cec5SDimitry Andric     // probably knows what they're doing.
7970b57cec5SDimitry Andric     //
7980b57cec5SDimitry Andric     // Note that we don't want to make the variable non-external
7990b57cec5SDimitry Andric     // because of this, but unique-external linkage suits us.
80004eeddc0SDimitry Andric 
8010b57cec5SDimitry Andric     if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Var) &&
8020b57cec5SDimitry Andric         !IgnoreVarTypeLinkage) {
8030b57cec5SDimitry Andric       LinkageInfo TypeLV = getLVForType(*Var->getType(), computation);
8040b57cec5SDimitry Andric       if (!isExternallyVisible(TypeLV.getLinkage()))
8050b57cec5SDimitry Andric         return LinkageInfo::uniqueExternal();
8060b57cec5SDimitry Andric       if (!LV.isVisibilityExplicit())
8070b57cec5SDimitry Andric         LV.mergeVisibility(TypeLV);
8080b57cec5SDimitry Andric     }
8090b57cec5SDimitry Andric 
8100b57cec5SDimitry Andric     if (Var->getStorageClass() == SC_PrivateExtern)
8110b57cec5SDimitry Andric       LV.mergeVisibility(HiddenVisibility, true);
8120b57cec5SDimitry Andric 
8130b57cec5SDimitry Andric     // Note that Sema::MergeVarDecl already takes care of implementing
8140b57cec5SDimitry Andric     // C99 6.2.2p4 and propagating the visibility attribute, so we don't have
8150b57cec5SDimitry Andric     // to do it here.
8160b57cec5SDimitry Andric 
8170b57cec5SDimitry Andric     // As per function and class template specializations (below),
8180b57cec5SDimitry Andric     // consider LV for the template and template arguments.  We're at file
8190b57cec5SDimitry Andric     // scope, so we do not need to worry about nested specializations.
8200b57cec5SDimitry Andric     if (const auto *spec = dyn_cast<VarTemplateSpecializationDecl>(Var)) {
8210b57cec5SDimitry Andric       mergeTemplateLV(LV, spec, computation);
8220b57cec5SDimitry Andric     }
8230b57cec5SDimitry Andric 
8240b57cec5SDimitry Andric   //     - a function; or
8250b57cec5SDimitry Andric   } else if (const auto *Function = dyn_cast<FunctionDecl>(D)) {
8260b57cec5SDimitry Andric     // In theory, we can modify the function's LV by the LV of its
8270b57cec5SDimitry Andric     // type unless it has C linkage (see comment above about variables
8280b57cec5SDimitry Andric     // for justification).  In practice, GCC doesn't do this, so it's
8290b57cec5SDimitry Andric     // just too painful to make work.
8300b57cec5SDimitry Andric 
8310b57cec5SDimitry Andric     if (Function->getStorageClass() == SC_PrivateExtern)
8320b57cec5SDimitry Andric       LV.mergeVisibility(HiddenVisibility, true);
8330b57cec5SDimitry Andric 
8340b57cec5SDimitry Andric     // Note that Sema::MergeCompatibleFunctionDecls already takes care of
8350b57cec5SDimitry Andric     // merging storage classes and visibility attributes, so we don't have to
8360b57cec5SDimitry Andric     // look at previous decls in here.
8370b57cec5SDimitry Andric 
8380b57cec5SDimitry Andric     // In C++, then if the type of the function uses a type with
8390b57cec5SDimitry Andric     // unique-external linkage, it's not legally usable from outside
8400b57cec5SDimitry Andric     // this translation unit.  However, we should use the C linkage
8410b57cec5SDimitry Andric     // rules instead for extern "C" declarations.
8420b57cec5SDimitry Andric     if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Function)) {
8430b57cec5SDimitry Andric       // Only look at the type-as-written. Otherwise, deducing the return type
8440b57cec5SDimitry Andric       // of a function could change its linkage.
8450b57cec5SDimitry Andric       QualType TypeAsWritten = Function->getType();
8460b57cec5SDimitry Andric       if (TypeSourceInfo *TSI = Function->getTypeSourceInfo())
8470b57cec5SDimitry Andric         TypeAsWritten = TSI->getType();
8480b57cec5SDimitry Andric       if (!isExternallyVisible(TypeAsWritten->getLinkage()))
8490b57cec5SDimitry Andric         return LinkageInfo::uniqueExternal();
8500b57cec5SDimitry Andric     }
8510b57cec5SDimitry Andric 
8520b57cec5SDimitry Andric     // Consider LV from the template and the template arguments.
8530b57cec5SDimitry Andric     // We're at file scope, so we do not need to worry about nested
8540b57cec5SDimitry Andric     // specializations.
8550b57cec5SDimitry Andric     if (FunctionTemplateSpecializationInfo *specInfo
8560b57cec5SDimitry Andric                                = Function->getTemplateSpecializationInfo()) {
8570b57cec5SDimitry Andric       mergeTemplateLV(LV, Function, specInfo, computation);
8580b57cec5SDimitry Andric     }
8590b57cec5SDimitry Andric 
8600b57cec5SDimitry Andric   //     - a named class (Clause 9), or an unnamed class defined in a
8610b57cec5SDimitry Andric   //       typedef declaration in which the class has the typedef name
8620b57cec5SDimitry Andric   //       for linkage purposes (7.1.3); or
8630b57cec5SDimitry Andric   //     - a named enumeration (7.2), or an unnamed enumeration
8640b57cec5SDimitry Andric   //       defined in a typedef declaration in which the enumeration
8650b57cec5SDimitry Andric   //       has the typedef name for linkage purposes (7.1.3); or
8660b57cec5SDimitry Andric   } else if (const auto *Tag = dyn_cast<TagDecl>(D)) {
8670b57cec5SDimitry Andric     // Unnamed tags have no linkage.
8680b57cec5SDimitry Andric     if (!Tag->hasNameForLinkage())
8690b57cec5SDimitry Andric       return LinkageInfo::none();
8700b57cec5SDimitry Andric 
8710b57cec5SDimitry Andric     // If this is a class template specialization, consider the
8720b57cec5SDimitry Andric     // linkage of the template and template arguments.  We're at file
8730b57cec5SDimitry Andric     // scope, so we do not need to worry about nested specializations.
8740b57cec5SDimitry Andric     if (const auto *spec = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) {
8750b57cec5SDimitry Andric       mergeTemplateLV(LV, spec, computation);
8760b57cec5SDimitry Andric     }
8770b57cec5SDimitry Andric 
8780b57cec5SDimitry Andric   // FIXME: This is not part of the C++ standard any more.
8790b57cec5SDimitry Andric   //     - an enumerator belonging to an enumeration with external linkage; or
8800b57cec5SDimitry Andric   } else if (isa<EnumConstantDecl>(D)) {
8810b57cec5SDimitry Andric     LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()),
8820b57cec5SDimitry Andric                                       computation);
8830b57cec5SDimitry Andric     if (!isExternalFormalLinkage(EnumLV.getLinkage()))
8840b57cec5SDimitry Andric       return LinkageInfo::none();
8850b57cec5SDimitry Andric     LV.merge(EnumLV);
8860b57cec5SDimitry Andric 
8870b57cec5SDimitry Andric   //     - a template
8880b57cec5SDimitry Andric   } else if (const auto *temp = dyn_cast<TemplateDecl>(D)) {
8890b57cec5SDimitry Andric     bool considerVisibility = !hasExplicitVisibilityAlready(computation);
8900b57cec5SDimitry Andric     LinkageInfo tempLV =
8910b57cec5SDimitry Andric       getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
8920b57cec5SDimitry Andric     LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
8930b57cec5SDimitry Andric 
8940b57cec5SDimitry Andric   //     An unnamed namespace or a namespace declared directly or indirectly
8950b57cec5SDimitry Andric   //     within an unnamed namespace has internal linkage. All other namespaces
8960b57cec5SDimitry Andric   //     have external linkage.
8970b57cec5SDimitry Andric   //
8980b57cec5SDimitry Andric   // We handled names in anonymous namespaces above.
8990b57cec5SDimitry Andric   } else if (isa<NamespaceDecl>(D)) {
9000b57cec5SDimitry Andric     return LV;
9010b57cec5SDimitry Andric 
9020b57cec5SDimitry Andric   // By extension, we assign external linkage to Objective-C
9030b57cec5SDimitry Andric   // interfaces.
9040b57cec5SDimitry Andric   } else if (isa<ObjCInterfaceDecl>(D)) {
9050b57cec5SDimitry Andric     // fallout
9060b57cec5SDimitry Andric 
9070b57cec5SDimitry Andric   } else if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
9080b57cec5SDimitry Andric     // A typedef declaration has linkage if it gives a type a name for
9090b57cec5SDimitry Andric     // linkage purposes.
9100b57cec5SDimitry Andric     if (!TD->getAnonDeclWithTypedefName(/*AnyRedecl*/true))
9110b57cec5SDimitry Andric       return LinkageInfo::none();
9120b57cec5SDimitry Andric 
9135ffd83dbSDimitry Andric   } else if (isa<MSGuidDecl>(D)) {
9145ffd83dbSDimitry Andric     // A GUID behaves like an inline variable with external linkage. Fall
9155ffd83dbSDimitry Andric     // through.
9165ffd83dbSDimitry Andric 
9170b57cec5SDimitry Andric   // Everything not covered here has no linkage.
9180b57cec5SDimitry Andric   } else {
9190b57cec5SDimitry Andric     return LinkageInfo::none();
9200b57cec5SDimitry Andric   }
9210b57cec5SDimitry Andric 
9220b57cec5SDimitry Andric   // If we ended up with non-externally-visible linkage, visibility should
9230b57cec5SDimitry Andric   // always be default.
9240b57cec5SDimitry Andric   if (!isExternallyVisible(LV.getLinkage()))
9250b57cec5SDimitry Andric     return LinkageInfo(LV.getLinkage(), DefaultVisibility, false);
9260b57cec5SDimitry Andric 
9270b57cec5SDimitry Andric   return LV;
9280b57cec5SDimitry Andric }
9290b57cec5SDimitry Andric 
9300b57cec5SDimitry Andric LinkageInfo
9310b57cec5SDimitry Andric LinkageComputer::getLVForClassMember(const NamedDecl *D,
9320b57cec5SDimitry Andric                                      LVComputationKind computation,
9330b57cec5SDimitry Andric                                      bool IgnoreVarTypeLinkage) {
9340b57cec5SDimitry Andric   // Only certain class members have linkage.  Note that fields don't
9350b57cec5SDimitry Andric   // really have linkage, but it's convenient to say they do for the
9360b57cec5SDimitry Andric   // purposes of calculating linkage of pointer-to-data-member
9370b57cec5SDimitry Andric   // template arguments.
9380b57cec5SDimitry Andric   //
9390b57cec5SDimitry Andric   // Templates also don't officially have linkage, but since we ignore
9400b57cec5SDimitry Andric   // the C++ standard and look at template arguments when determining
9410b57cec5SDimitry Andric   // linkage and visibility of a template specialization, we might hit
9420b57cec5SDimitry Andric   // a template template argument that way. If we do, we need to
9430b57cec5SDimitry Andric   // consider its linkage.
9440b57cec5SDimitry Andric   if (!(isa<CXXMethodDecl>(D) ||
9450b57cec5SDimitry Andric         isa<VarDecl>(D) ||
9460b57cec5SDimitry Andric         isa<FieldDecl>(D) ||
9470b57cec5SDimitry Andric         isa<IndirectFieldDecl>(D) ||
9480b57cec5SDimitry Andric         isa<TagDecl>(D) ||
9490b57cec5SDimitry Andric         isa<TemplateDecl>(D)))
9500b57cec5SDimitry Andric     return LinkageInfo::none();
9510b57cec5SDimitry Andric 
9520b57cec5SDimitry Andric   LinkageInfo LV;
9530b57cec5SDimitry Andric 
9540b57cec5SDimitry Andric   // If we have an explicit visibility attribute, merge that in.
9550b57cec5SDimitry Andric   if (!hasExplicitVisibilityAlready(computation)) {
9560b57cec5SDimitry Andric     if (Optional<Visibility> Vis = getExplicitVisibility(D, computation))
9570b57cec5SDimitry Andric       LV.mergeVisibility(*Vis, true);
9580b57cec5SDimitry Andric     // If we're paying attention to global visibility, apply
9590b57cec5SDimitry Andric     // -finline-visibility-hidden if this is an inline method.
9600b57cec5SDimitry Andric     //
9610b57cec5SDimitry Andric     // Note that we do this before merging information about
9620b57cec5SDimitry Andric     // the class visibility.
9630b57cec5SDimitry Andric     if (!LV.isVisibilityExplicit() && useInlineVisibilityHidden(D))
9640b57cec5SDimitry Andric       LV.mergeVisibility(HiddenVisibility, /*visibilityExplicit=*/false);
9650b57cec5SDimitry Andric   }
9660b57cec5SDimitry Andric 
9670b57cec5SDimitry Andric   // If this class member has an explicit visibility attribute, the only
9680b57cec5SDimitry Andric   // thing that can change its visibility is the template arguments, so
9690b57cec5SDimitry Andric   // only look for them when processing the class.
9700b57cec5SDimitry Andric   LVComputationKind classComputation = computation;
9710b57cec5SDimitry Andric   if (LV.isVisibilityExplicit())
9720b57cec5SDimitry Andric     classComputation = withExplicitVisibilityAlready(computation);
9730b57cec5SDimitry Andric 
9740b57cec5SDimitry Andric   LinkageInfo classLV =
9750b57cec5SDimitry Andric     getLVForDecl(cast<RecordDecl>(D->getDeclContext()), classComputation);
9760b57cec5SDimitry Andric   // The member has the same linkage as the class. If that's not externally
9770b57cec5SDimitry Andric   // visible, we don't need to compute anything about the linkage.
9780b57cec5SDimitry Andric   // FIXME: If we're only computing linkage, can we bail out here?
9790b57cec5SDimitry Andric   if (!isExternallyVisible(classLV.getLinkage()))
9800b57cec5SDimitry Andric     return classLV;
9810b57cec5SDimitry Andric 
9820b57cec5SDimitry Andric 
9830b57cec5SDimitry Andric   // Otherwise, don't merge in classLV yet, because in certain cases
9840b57cec5SDimitry Andric   // we need to completely ignore the visibility from it.
9850b57cec5SDimitry Andric 
9860b57cec5SDimitry Andric   // Specifically, if this decl exists and has an explicit attribute.
9870b57cec5SDimitry Andric   const NamedDecl *explicitSpecSuppressor = nullptr;
9880b57cec5SDimitry Andric 
9890b57cec5SDimitry Andric   if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
9900b57cec5SDimitry Andric     // Only look at the type-as-written. Otherwise, deducing the return type
9910b57cec5SDimitry Andric     // of a function could change its linkage.
9920b57cec5SDimitry Andric     QualType TypeAsWritten = MD->getType();
9930b57cec5SDimitry Andric     if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
9940b57cec5SDimitry Andric       TypeAsWritten = TSI->getType();
9950b57cec5SDimitry Andric     if (!isExternallyVisible(TypeAsWritten->getLinkage()))
9960b57cec5SDimitry Andric       return LinkageInfo::uniqueExternal();
9970b57cec5SDimitry Andric 
9980b57cec5SDimitry Andric     // If this is a method template specialization, use the linkage for
9990b57cec5SDimitry Andric     // the template parameters and arguments.
10000b57cec5SDimitry Andric     if (FunctionTemplateSpecializationInfo *spec
10010b57cec5SDimitry Andric            = MD->getTemplateSpecializationInfo()) {
10020b57cec5SDimitry Andric       mergeTemplateLV(LV, MD, spec, computation);
10030b57cec5SDimitry Andric       if (spec->isExplicitSpecialization()) {
10040b57cec5SDimitry Andric         explicitSpecSuppressor = MD;
10050b57cec5SDimitry Andric       } else if (isExplicitMemberSpecialization(spec->getTemplate())) {
10060b57cec5SDimitry Andric         explicitSpecSuppressor = spec->getTemplate()->getTemplatedDecl();
10070b57cec5SDimitry Andric       }
10080b57cec5SDimitry Andric     } else if (isExplicitMemberSpecialization(MD)) {
10090b57cec5SDimitry Andric       explicitSpecSuppressor = MD;
10100b57cec5SDimitry Andric     }
10110b57cec5SDimitry Andric 
10120b57cec5SDimitry Andric   } else if (const auto *RD = dyn_cast<CXXRecordDecl>(D)) {
10130b57cec5SDimitry Andric     if (const auto *spec = dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
10140b57cec5SDimitry Andric       mergeTemplateLV(LV, spec, computation);
10150b57cec5SDimitry Andric       if (spec->isExplicitSpecialization()) {
10160b57cec5SDimitry Andric         explicitSpecSuppressor = spec;
10170b57cec5SDimitry Andric       } else {
10180b57cec5SDimitry Andric         const ClassTemplateDecl *temp = spec->getSpecializedTemplate();
10190b57cec5SDimitry Andric         if (isExplicitMemberSpecialization(temp)) {
10200b57cec5SDimitry Andric           explicitSpecSuppressor = temp->getTemplatedDecl();
10210b57cec5SDimitry Andric         }
10220b57cec5SDimitry Andric       }
10230b57cec5SDimitry Andric     } else if (isExplicitMemberSpecialization(RD)) {
10240b57cec5SDimitry Andric       explicitSpecSuppressor = RD;
10250b57cec5SDimitry Andric     }
10260b57cec5SDimitry Andric 
10270b57cec5SDimitry Andric   // Static data members.
10280b57cec5SDimitry Andric   } else if (const auto *VD = dyn_cast<VarDecl>(D)) {
10290b57cec5SDimitry Andric     if (const auto *spec = dyn_cast<VarTemplateSpecializationDecl>(VD))
10300b57cec5SDimitry Andric       mergeTemplateLV(LV, spec, computation);
10310b57cec5SDimitry Andric 
10320b57cec5SDimitry Andric     // Modify the variable's linkage by its type, but ignore the
10330b57cec5SDimitry Andric     // type's visibility unless it's a definition.
10340b57cec5SDimitry Andric     if (!IgnoreVarTypeLinkage) {
10350b57cec5SDimitry Andric       LinkageInfo typeLV = getLVForType(*VD->getType(), computation);
10360b57cec5SDimitry Andric       // FIXME: If the type's linkage is not externally visible, we can
10370b57cec5SDimitry Andric       // give this static data member UniqueExternalLinkage.
10380b57cec5SDimitry Andric       if (!LV.isVisibilityExplicit() && !classLV.isVisibilityExplicit())
10390b57cec5SDimitry Andric         LV.mergeVisibility(typeLV);
10400b57cec5SDimitry Andric       LV.mergeExternalVisibility(typeLV);
10410b57cec5SDimitry Andric     }
10420b57cec5SDimitry Andric 
10430b57cec5SDimitry Andric     if (isExplicitMemberSpecialization(VD)) {
10440b57cec5SDimitry Andric       explicitSpecSuppressor = VD;
10450b57cec5SDimitry Andric     }
10460b57cec5SDimitry Andric 
10470b57cec5SDimitry Andric   // Template members.
10480b57cec5SDimitry Andric   } else if (const auto *temp = dyn_cast<TemplateDecl>(D)) {
10490b57cec5SDimitry Andric     bool considerVisibility =
10500b57cec5SDimitry Andric       (!LV.isVisibilityExplicit() &&
10510b57cec5SDimitry Andric        !classLV.isVisibilityExplicit() &&
10520b57cec5SDimitry Andric        !hasExplicitVisibilityAlready(computation));
10530b57cec5SDimitry Andric     LinkageInfo tempLV =
10540b57cec5SDimitry Andric       getLVForTemplateParameterList(temp->getTemplateParameters(), computation);
10550b57cec5SDimitry Andric     LV.mergeMaybeWithVisibility(tempLV, considerVisibility);
10560b57cec5SDimitry Andric 
10570b57cec5SDimitry Andric     if (const auto *redeclTemp = dyn_cast<RedeclarableTemplateDecl>(temp)) {
10580b57cec5SDimitry Andric       if (isExplicitMemberSpecialization(redeclTemp)) {
10590b57cec5SDimitry Andric         explicitSpecSuppressor = temp->getTemplatedDecl();
10600b57cec5SDimitry Andric       }
10610b57cec5SDimitry Andric     }
10620b57cec5SDimitry Andric   }
10630b57cec5SDimitry Andric 
10640b57cec5SDimitry Andric   // We should never be looking for an attribute directly on a template.
10650b57cec5SDimitry Andric   assert(!explicitSpecSuppressor || !isa<TemplateDecl>(explicitSpecSuppressor));
10660b57cec5SDimitry Andric 
10670b57cec5SDimitry Andric   // If this member is an explicit member specialization, and it has
10680b57cec5SDimitry Andric   // an explicit attribute, ignore visibility from the parent.
10690b57cec5SDimitry Andric   bool considerClassVisibility = true;
10700b57cec5SDimitry Andric   if (explicitSpecSuppressor &&
10710b57cec5SDimitry Andric       // optimization: hasDVA() is true only with explicit visibility.
10720b57cec5SDimitry Andric       LV.isVisibilityExplicit() &&
10730b57cec5SDimitry Andric       classLV.getVisibility() != DefaultVisibility &&
10740b57cec5SDimitry Andric       hasDirectVisibilityAttribute(explicitSpecSuppressor, computation)) {
10750b57cec5SDimitry Andric     considerClassVisibility = false;
10760b57cec5SDimitry Andric   }
10770b57cec5SDimitry Andric 
10780b57cec5SDimitry Andric   // Finally, merge in information from the class.
10790b57cec5SDimitry Andric   LV.mergeMaybeWithVisibility(classLV, considerClassVisibility);
108004eeddc0SDimitry Andric 
10810b57cec5SDimitry Andric   return LV;
10820b57cec5SDimitry Andric }
10830b57cec5SDimitry Andric 
10840b57cec5SDimitry Andric void NamedDecl::anchor() {}
10850b57cec5SDimitry Andric 
10860b57cec5SDimitry Andric bool NamedDecl::isLinkageValid() const {
10870b57cec5SDimitry Andric   if (!hasCachedLinkage())
10880b57cec5SDimitry Andric     return true;
10890b57cec5SDimitry Andric 
10900b57cec5SDimitry Andric   Linkage L = LinkageComputer{}
10910b57cec5SDimitry Andric                   .computeLVForDecl(this, LVComputationKind::forLinkageOnly())
10920b57cec5SDimitry Andric                   .getLinkage();
10930b57cec5SDimitry Andric   return L == getCachedLinkage();
10940b57cec5SDimitry Andric }
10950b57cec5SDimitry Andric 
1096fe6060f1SDimitry Andric ReservedIdentifierStatus
1097fe6060f1SDimitry Andric NamedDecl::isReserved(const LangOptions &LangOpts) const {
1098fe6060f1SDimitry Andric   const IdentifierInfo *II = getIdentifier();
1099fe6060f1SDimitry Andric 
1100fe6060f1SDimitry Andric   // This triggers at least for CXXLiteralIdentifiers, which we already checked
1101fe6060f1SDimitry Andric   // at lexing time.
1102fe6060f1SDimitry Andric   if (!II)
1103fe6060f1SDimitry Andric     return ReservedIdentifierStatus::NotReserved;
1104fe6060f1SDimitry Andric 
1105fe6060f1SDimitry Andric   ReservedIdentifierStatus Status = II->isReserved(LangOpts);
1106349cc55cSDimitry Andric   if (isReservedAtGlobalScope(Status) && !isReservedInAllContexts(Status)) {
1107349cc55cSDimitry Andric     // This name is only reserved at global scope. Check if this declaration
1108349cc55cSDimitry Andric     // conflicts with a global scope declaration.
1109fe6060f1SDimitry Andric     if (isa<ParmVarDecl>(this) || isTemplateParameter())
1110fe6060f1SDimitry Andric       return ReservedIdentifierStatus::NotReserved;
1111349cc55cSDimitry Andric 
1112349cc55cSDimitry Andric     // C++ [dcl.link]/7:
1113349cc55cSDimitry Andric     //   Two declarations [conflict] if [...] one declares a function or
1114349cc55cSDimitry Andric     //   variable with C language linkage, and the other declares [...] a
1115349cc55cSDimitry Andric     //   variable that belongs to the global scope.
1116349cc55cSDimitry Andric     //
1117349cc55cSDimitry Andric     // Therefore names that are reserved at global scope are also reserved as
1118349cc55cSDimitry Andric     // names of variables and functions with C language linkage.
1119fe6060f1SDimitry Andric     const DeclContext *DC = getDeclContext()->getRedeclContext();
1120349cc55cSDimitry Andric     if (DC->isTranslationUnit())
1121349cc55cSDimitry Andric       return Status;
1122349cc55cSDimitry Andric     if (auto *VD = dyn_cast<VarDecl>(this))
1123349cc55cSDimitry Andric       if (VD->isExternC())
1124349cc55cSDimitry Andric         return ReservedIdentifierStatus::StartsWithUnderscoreAndIsExternC;
1125349cc55cSDimitry Andric     if (auto *FD = dyn_cast<FunctionDecl>(this))
1126349cc55cSDimitry Andric       if (FD->isExternC())
1127349cc55cSDimitry Andric         return ReservedIdentifierStatus::StartsWithUnderscoreAndIsExternC;
1128fe6060f1SDimitry Andric     return ReservedIdentifierStatus::NotReserved;
1129fe6060f1SDimitry Andric   }
1130fe6060f1SDimitry Andric 
1131fe6060f1SDimitry Andric   return Status;
1132fe6060f1SDimitry Andric }
1133fe6060f1SDimitry Andric 
11340b57cec5SDimitry Andric ObjCStringFormatFamily NamedDecl::getObjCFStringFormattingFamily() const {
11350b57cec5SDimitry Andric   StringRef name = getName();
11360b57cec5SDimitry Andric   if (name.empty()) return SFF_None;
11370b57cec5SDimitry Andric 
11380b57cec5SDimitry Andric   if (name.front() == 'C')
11390b57cec5SDimitry Andric     if (name == "CFStringCreateWithFormat" ||
11400b57cec5SDimitry Andric         name == "CFStringCreateWithFormatAndArguments" ||
11410b57cec5SDimitry Andric         name == "CFStringAppendFormat" ||
11420b57cec5SDimitry Andric         name == "CFStringAppendFormatAndArguments")
11430b57cec5SDimitry Andric       return SFF_CFString;
11440b57cec5SDimitry Andric   return SFF_None;
11450b57cec5SDimitry Andric }
11460b57cec5SDimitry Andric 
11470b57cec5SDimitry Andric Linkage NamedDecl::getLinkageInternal() const {
11480b57cec5SDimitry Andric   // We don't care about visibility here, so ask for the cheapest
11490b57cec5SDimitry Andric   // possible visibility analysis.
11500b57cec5SDimitry Andric   return LinkageComputer{}
11510b57cec5SDimitry Andric       .getLVForDecl(this, LVComputationKind::forLinkageOnly())
11520b57cec5SDimitry Andric       .getLinkage();
11530b57cec5SDimitry Andric }
11540b57cec5SDimitry Andric 
11550b57cec5SDimitry Andric LinkageInfo NamedDecl::getLinkageAndVisibility() const {
11560b57cec5SDimitry Andric   return LinkageComputer{}.getDeclLinkageAndVisibility(this);
11570b57cec5SDimitry Andric }
11580b57cec5SDimitry Andric 
11590b57cec5SDimitry Andric static Optional<Visibility>
11600b57cec5SDimitry Andric getExplicitVisibilityAux(const NamedDecl *ND,
11610b57cec5SDimitry Andric                          NamedDecl::ExplicitVisibilityKind kind,
11620b57cec5SDimitry Andric                          bool IsMostRecent) {
11630b57cec5SDimitry Andric   assert(!IsMostRecent || ND == ND->getMostRecentDecl());
11640b57cec5SDimitry Andric 
11650b57cec5SDimitry Andric   // Check the declaration itself first.
11660b57cec5SDimitry Andric   if (Optional<Visibility> V = getVisibilityOf(ND, kind))
11670b57cec5SDimitry Andric     return V;
11680b57cec5SDimitry Andric 
11690b57cec5SDimitry Andric   // If this is a member class of a specialization of a class template
11700b57cec5SDimitry Andric   // and the corresponding decl has explicit visibility, use that.
11710b57cec5SDimitry Andric   if (const auto *RD = dyn_cast<CXXRecordDecl>(ND)) {
11720b57cec5SDimitry Andric     CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass();
11730b57cec5SDimitry Andric     if (InstantiatedFrom)
11740b57cec5SDimitry Andric       return getVisibilityOf(InstantiatedFrom, kind);
11750b57cec5SDimitry Andric   }
11760b57cec5SDimitry Andric 
11770b57cec5SDimitry Andric   // If there wasn't explicit visibility there, and this is a
11780b57cec5SDimitry Andric   // specialization of a class template, check for visibility
11790b57cec5SDimitry Andric   // on the pattern.
11800b57cec5SDimitry Andric   if (const auto *spec = dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
11810b57cec5SDimitry Andric     // Walk all the template decl till this point to see if there are
11820b57cec5SDimitry Andric     // explicit visibility attributes.
11830b57cec5SDimitry Andric     const auto *TD = spec->getSpecializedTemplate()->getTemplatedDecl();
11840b57cec5SDimitry Andric     while (TD != nullptr) {
11850b57cec5SDimitry Andric       auto Vis = getVisibilityOf(TD, kind);
11860b57cec5SDimitry Andric       if (Vis != None)
11870b57cec5SDimitry Andric         return Vis;
11880b57cec5SDimitry Andric       TD = TD->getPreviousDecl();
11890b57cec5SDimitry Andric     }
11900b57cec5SDimitry Andric     return None;
11910b57cec5SDimitry Andric   }
11920b57cec5SDimitry Andric 
11930b57cec5SDimitry Andric   // Use the most recent declaration.
11940b57cec5SDimitry Andric   if (!IsMostRecent && !isa<NamespaceDecl>(ND)) {
11950b57cec5SDimitry Andric     const NamedDecl *MostRecent = ND->getMostRecentDecl();
11960b57cec5SDimitry Andric     if (MostRecent != ND)
11970b57cec5SDimitry Andric       return getExplicitVisibilityAux(MostRecent, kind, true);
11980b57cec5SDimitry Andric   }
11990b57cec5SDimitry Andric 
12000b57cec5SDimitry Andric   if (const auto *Var = dyn_cast<VarDecl>(ND)) {
12010b57cec5SDimitry Andric     if (Var->isStaticDataMember()) {
12020b57cec5SDimitry Andric       VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember();
12030b57cec5SDimitry Andric       if (InstantiatedFrom)
12040b57cec5SDimitry Andric         return getVisibilityOf(InstantiatedFrom, kind);
12050b57cec5SDimitry Andric     }
12060b57cec5SDimitry Andric 
12070b57cec5SDimitry Andric     if (const auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(Var))
12080b57cec5SDimitry Andric       return getVisibilityOf(VTSD->getSpecializedTemplate()->getTemplatedDecl(),
12090b57cec5SDimitry Andric                              kind);
12100b57cec5SDimitry Andric 
12110b57cec5SDimitry Andric     return None;
12120b57cec5SDimitry Andric   }
12130b57cec5SDimitry Andric   // Also handle function template specializations.
12140b57cec5SDimitry Andric   if (const auto *fn = dyn_cast<FunctionDecl>(ND)) {
12150b57cec5SDimitry Andric     // If the function is a specialization of a template with an
12160b57cec5SDimitry Andric     // explicit visibility attribute, use that.
12170b57cec5SDimitry Andric     if (FunctionTemplateSpecializationInfo *templateInfo
12180b57cec5SDimitry Andric           = fn->getTemplateSpecializationInfo())
12190b57cec5SDimitry Andric       return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl(),
12200b57cec5SDimitry Andric                              kind);
12210b57cec5SDimitry Andric 
12220b57cec5SDimitry Andric     // If the function is a member of a specialization of a class template
12230b57cec5SDimitry Andric     // and the corresponding decl has explicit visibility, use that.
12240b57cec5SDimitry Andric     FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction();
12250b57cec5SDimitry Andric     if (InstantiatedFrom)
12260b57cec5SDimitry Andric       return getVisibilityOf(InstantiatedFrom, kind);
12270b57cec5SDimitry Andric 
12280b57cec5SDimitry Andric     return None;
12290b57cec5SDimitry Andric   }
12300b57cec5SDimitry Andric 
12310b57cec5SDimitry Andric   // The visibility of a template is stored in the templated decl.
12320b57cec5SDimitry Andric   if (const auto *TD = dyn_cast<TemplateDecl>(ND))
12330b57cec5SDimitry Andric     return getVisibilityOf(TD->getTemplatedDecl(), kind);
12340b57cec5SDimitry Andric 
12350b57cec5SDimitry Andric   return None;
12360b57cec5SDimitry Andric }
12370b57cec5SDimitry Andric 
12380b57cec5SDimitry Andric Optional<Visibility>
12390b57cec5SDimitry Andric NamedDecl::getExplicitVisibility(ExplicitVisibilityKind kind) const {
12400b57cec5SDimitry Andric   return getExplicitVisibilityAux(this, kind, false);
12410b57cec5SDimitry Andric }
12420b57cec5SDimitry Andric 
12430b57cec5SDimitry Andric LinkageInfo LinkageComputer::getLVForClosure(const DeclContext *DC,
12440b57cec5SDimitry Andric                                              Decl *ContextDecl,
12450b57cec5SDimitry Andric                                              LVComputationKind computation) {
12460b57cec5SDimitry Andric   // This lambda has its linkage/visibility determined by its owner.
12470b57cec5SDimitry Andric   const NamedDecl *Owner;
12480b57cec5SDimitry Andric   if (!ContextDecl)
12490b57cec5SDimitry Andric     Owner = dyn_cast<NamedDecl>(DC);
12500b57cec5SDimitry Andric   else if (isa<ParmVarDecl>(ContextDecl))
12510b57cec5SDimitry Andric     Owner =
12520b57cec5SDimitry Andric         dyn_cast<NamedDecl>(ContextDecl->getDeclContext()->getRedeclContext());
12530b57cec5SDimitry Andric   else
12540b57cec5SDimitry Andric     Owner = cast<NamedDecl>(ContextDecl);
12550b57cec5SDimitry Andric 
12560b57cec5SDimitry Andric   if (!Owner)
12570b57cec5SDimitry Andric     return LinkageInfo::none();
12580b57cec5SDimitry Andric 
12590b57cec5SDimitry Andric   // If the owner has a deduced type, we need to skip querying the linkage and
12600b57cec5SDimitry Andric   // visibility of that type, because it might involve this closure type.  The
12610b57cec5SDimitry Andric   // only effect of this is that we might give a lambda VisibleNoLinkage rather
12620b57cec5SDimitry Andric   // than NoLinkage when we don't strictly need to, which is benign.
12630b57cec5SDimitry Andric   auto *VD = dyn_cast<VarDecl>(Owner);
12640b57cec5SDimitry Andric   LinkageInfo OwnerLV =
12650b57cec5SDimitry Andric       VD && VD->getType()->getContainedDeducedType()
12660b57cec5SDimitry Andric           ? computeLVForDecl(Owner, computation, /*IgnoreVarTypeLinkage*/true)
12670b57cec5SDimitry Andric           : getLVForDecl(Owner, computation);
12680b57cec5SDimitry Andric 
12690b57cec5SDimitry Andric   // A lambda never formally has linkage. But if the owner is externally
12700b57cec5SDimitry Andric   // visible, then the lambda is too. We apply the same rules to blocks.
12710b57cec5SDimitry Andric   if (!isExternallyVisible(OwnerLV.getLinkage()))
12720b57cec5SDimitry Andric     return LinkageInfo::none();
12730b57cec5SDimitry Andric   return LinkageInfo(VisibleNoLinkage, OwnerLV.getVisibility(),
12740b57cec5SDimitry Andric                      OwnerLV.isVisibilityExplicit());
12750b57cec5SDimitry Andric }
12760b57cec5SDimitry Andric 
12770b57cec5SDimitry Andric LinkageInfo LinkageComputer::getLVForLocalDecl(const NamedDecl *D,
12780b57cec5SDimitry Andric                                                LVComputationKind computation) {
12790b57cec5SDimitry Andric   if (const auto *Function = dyn_cast<FunctionDecl>(D)) {
12800b57cec5SDimitry Andric     if (Function->isInAnonymousNamespace() &&
12810b57cec5SDimitry Andric         !isFirstInExternCContext(Function))
12820b57cec5SDimitry Andric       return getInternalLinkageFor(Function);
12830b57cec5SDimitry Andric 
12840b57cec5SDimitry Andric     // This is a "void f();" which got merged with a file static.
12850b57cec5SDimitry Andric     if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
12860b57cec5SDimitry Andric       return getInternalLinkageFor(Function);
12870b57cec5SDimitry Andric 
12880b57cec5SDimitry Andric     LinkageInfo LV;
12890b57cec5SDimitry Andric     if (!hasExplicitVisibilityAlready(computation)) {
12900b57cec5SDimitry Andric       if (Optional<Visibility> Vis =
12910b57cec5SDimitry Andric               getExplicitVisibility(Function, computation))
12920b57cec5SDimitry Andric         LV.mergeVisibility(*Vis, true);
12930b57cec5SDimitry Andric     }
12940b57cec5SDimitry Andric 
12950b57cec5SDimitry Andric     // Note that Sema::MergeCompatibleFunctionDecls already takes care of
12960b57cec5SDimitry Andric     // merging storage classes and visibility attributes, so we don't have to
12970b57cec5SDimitry Andric     // look at previous decls in here.
12980b57cec5SDimitry Andric 
12990b57cec5SDimitry Andric     return LV;
13000b57cec5SDimitry Andric   }
13010b57cec5SDimitry Andric 
13020b57cec5SDimitry Andric   if (const auto *Var = dyn_cast<VarDecl>(D)) {
13030b57cec5SDimitry Andric     if (Var->hasExternalStorage()) {
13040b57cec5SDimitry Andric       if (Var->isInAnonymousNamespace() && !isFirstInExternCContext(Var))
13050b57cec5SDimitry Andric         return getInternalLinkageFor(Var);
13060b57cec5SDimitry Andric 
13070b57cec5SDimitry Andric       LinkageInfo LV;
13080b57cec5SDimitry Andric       if (Var->getStorageClass() == SC_PrivateExtern)
13090b57cec5SDimitry Andric         LV.mergeVisibility(HiddenVisibility, true);
13100b57cec5SDimitry Andric       else if (!hasExplicitVisibilityAlready(computation)) {
13110b57cec5SDimitry Andric         if (Optional<Visibility> Vis = getExplicitVisibility(Var, computation))
13120b57cec5SDimitry Andric           LV.mergeVisibility(*Vis, true);
13130b57cec5SDimitry Andric       }
13140b57cec5SDimitry Andric 
13150b57cec5SDimitry Andric       if (const VarDecl *Prev = Var->getPreviousDecl()) {
13160b57cec5SDimitry Andric         LinkageInfo PrevLV = getLVForDecl(Prev, computation);
13170b57cec5SDimitry Andric         if (PrevLV.getLinkage())
13180b57cec5SDimitry Andric           LV.setLinkage(PrevLV.getLinkage());
13190b57cec5SDimitry Andric         LV.mergeVisibility(PrevLV);
13200b57cec5SDimitry Andric       }
13210b57cec5SDimitry Andric 
13220b57cec5SDimitry Andric       return LV;
13230b57cec5SDimitry Andric     }
13240b57cec5SDimitry Andric 
13250b57cec5SDimitry Andric     if (!Var->isStaticLocal())
13260b57cec5SDimitry Andric       return LinkageInfo::none();
13270b57cec5SDimitry Andric   }
13280b57cec5SDimitry Andric 
13290b57cec5SDimitry Andric   ASTContext &Context = D->getASTContext();
13300b57cec5SDimitry Andric   if (!Context.getLangOpts().CPlusPlus)
13310b57cec5SDimitry Andric     return LinkageInfo::none();
13320b57cec5SDimitry Andric 
13330b57cec5SDimitry Andric   const Decl *OuterD = getOutermostFuncOrBlockContext(D);
13340b57cec5SDimitry Andric   if (!OuterD || OuterD->isInvalidDecl())
13350b57cec5SDimitry Andric     return LinkageInfo::none();
13360b57cec5SDimitry Andric 
13370b57cec5SDimitry Andric   LinkageInfo LV;
13380b57cec5SDimitry Andric   if (const auto *BD = dyn_cast<BlockDecl>(OuterD)) {
13390b57cec5SDimitry Andric     if (!BD->getBlockManglingNumber())
13400b57cec5SDimitry Andric       return LinkageInfo::none();
13410b57cec5SDimitry Andric 
13420b57cec5SDimitry Andric     LV = getLVForClosure(BD->getDeclContext()->getRedeclContext(),
13430b57cec5SDimitry Andric                          BD->getBlockManglingContextDecl(), computation);
13440b57cec5SDimitry Andric   } else {
13450b57cec5SDimitry Andric     const auto *FD = cast<FunctionDecl>(OuterD);
13460b57cec5SDimitry Andric     if (!FD->isInlined() &&
13470b57cec5SDimitry Andric         !isTemplateInstantiation(FD->getTemplateSpecializationKind()))
13480b57cec5SDimitry Andric       return LinkageInfo::none();
13490b57cec5SDimitry Andric 
13500b57cec5SDimitry Andric     // If a function is hidden by -fvisibility-inlines-hidden option and
13510b57cec5SDimitry Andric     // is not explicitly attributed as a hidden function,
13520b57cec5SDimitry Andric     // we should not make static local variables in the function hidden.
13530b57cec5SDimitry Andric     LV = getLVForDecl(FD, computation);
13540b57cec5SDimitry Andric     if (isa<VarDecl>(D) && useInlineVisibilityHidden(FD) &&
1355e8d8bef9SDimitry Andric         !LV.isVisibilityExplicit() &&
1356e8d8bef9SDimitry Andric         !Context.getLangOpts().VisibilityInlinesHiddenStaticLocalVar) {
13570b57cec5SDimitry Andric       assert(cast<VarDecl>(D)->isStaticLocal());
13580b57cec5SDimitry Andric       // If this was an implicitly hidden inline method, check again for
13590b57cec5SDimitry Andric       // explicit visibility on the parent class, and use that for static locals
13600b57cec5SDimitry Andric       // if present.
13610b57cec5SDimitry Andric       if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
13620b57cec5SDimitry Andric         LV = getLVForDecl(MD->getParent(), computation);
13630b57cec5SDimitry Andric       if (!LV.isVisibilityExplicit()) {
13640b57cec5SDimitry Andric         Visibility globalVisibility =
13650b57cec5SDimitry Andric             computation.isValueVisibility()
13660b57cec5SDimitry Andric                 ? Context.getLangOpts().getValueVisibilityMode()
13670b57cec5SDimitry Andric                 : Context.getLangOpts().getTypeVisibilityMode();
13680b57cec5SDimitry Andric         return LinkageInfo(VisibleNoLinkage, globalVisibility,
13690b57cec5SDimitry Andric                            /*visibilityExplicit=*/false);
13700b57cec5SDimitry Andric       }
13710b57cec5SDimitry Andric     }
13720b57cec5SDimitry Andric   }
13730b57cec5SDimitry Andric   if (!isExternallyVisible(LV.getLinkage()))
13740b57cec5SDimitry Andric     return LinkageInfo::none();
13750b57cec5SDimitry Andric   return LinkageInfo(VisibleNoLinkage, LV.getVisibility(),
13760b57cec5SDimitry Andric                      LV.isVisibilityExplicit());
13770b57cec5SDimitry Andric }
13780b57cec5SDimitry Andric 
13790b57cec5SDimitry Andric LinkageInfo LinkageComputer::computeLVForDecl(const NamedDecl *D,
13800b57cec5SDimitry Andric                                               LVComputationKind computation,
13810b57cec5SDimitry Andric                                               bool IgnoreVarTypeLinkage) {
13820b57cec5SDimitry Andric   // Internal_linkage attribute overrides other considerations.
13830b57cec5SDimitry Andric   if (D->hasAttr<InternalLinkageAttr>())
13840b57cec5SDimitry Andric     return getInternalLinkageFor(D);
13850b57cec5SDimitry Andric 
13860b57cec5SDimitry Andric   // Objective-C: treat all Objective-C declarations as having external
13870b57cec5SDimitry Andric   // linkage.
13880b57cec5SDimitry Andric   switch (D->getKind()) {
13890b57cec5SDimitry Andric     default:
13900b57cec5SDimitry Andric       break;
13910b57cec5SDimitry Andric 
13920b57cec5SDimitry Andric     // Per C++ [basic.link]p2, only the names of objects, references,
13930b57cec5SDimitry Andric     // functions, types, templates, namespaces, and values ever have linkage.
13940b57cec5SDimitry Andric     //
13950b57cec5SDimitry Andric     // Note that the name of a typedef, namespace alias, using declaration,
13960b57cec5SDimitry Andric     // and so on are not the name of the corresponding type, namespace, or
13970b57cec5SDimitry Andric     // declaration, so they do *not* have linkage.
13980b57cec5SDimitry Andric     case Decl::ImplicitParam:
13990b57cec5SDimitry Andric     case Decl::Label:
14000b57cec5SDimitry Andric     case Decl::NamespaceAlias:
14010b57cec5SDimitry Andric     case Decl::ParmVar:
14020b57cec5SDimitry Andric     case Decl::Using:
1403fe6060f1SDimitry Andric     case Decl::UsingEnum:
14040b57cec5SDimitry Andric     case Decl::UsingShadow:
14050b57cec5SDimitry Andric     case Decl::UsingDirective:
14060b57cec5SDimitry Andric       return LinkageInfo::none();
14070b57cec5SDimitry Andric 
14080b57cec5SDimitry Andric     case Decl::EnumConstant:
14090b57cec5SDimitry Andric       // C++ [basic.link]p4: an enumerator has the linkage of its enumeration.
14100b57cec5SDimitry Andric       if (D->getASTContext().getLangOpts().CPlusPlus)
14110b57cec5SDimitry Andric         return getLVForDecl(cast<EnumDecl>(D->getDeclContext()), computation);
14120b57cec5SDimitry Andric       return LinkageInfo::visible_none();
14130b57cec5SDimitry Andric 
14140b57cec5SDimitry Andric     case Decl::Typedef:
14150b57cec5SDimitry Andric     case Decl::TypeAlias:
14160b57cec5SDimitry Andric       // A typedef declaration has linkage if it gives a type a name for
14170b57cec5SDimitry Andric       // linkage purposes.
14180b57cec5SDimitry Andric       if (!cast<TypedefNameDecl>(D)
14190b57cec5SDimitry Andric                ->getAnonDeclWithTypedefName(/*AnyRedecl*/true))
14200b57cec5SDimitry Andric         return LinkageInfo::none();
14210b57cec5SDimitry Andric       break;
14220b57cec5SDimitry Andric 
14230b57cec5SDimitry Andric     case Decl::TemplateTemplateParm: // count these as external
14240b57cec5SDimitry Andric     case Decl::NonTypeTemplateParm:
14250b57cec5SDimitry Andric     case Decl::ObjCAtDefsField:
14260b57cec5SDimitry Andric     case Decl::ObjCCategory:
14270b57cec5SDimitry Andric     case Decl::ObjCCategoryImpl:
14280b57cec5SDimitry Andric     case Decl::ObjCCompatibleAlias:
14290b57cec5SDimitry Andric     case Decl::ObjCImplementation:
14300b57cec5SDimitry Andric     case Decl::ObjCMethod:
14310b57cec5SDimitry Andric     case Decl::ObjCProperty:
14320b57cec5SDimitry Andric     case Decl::ObjCPropertyImpl:
14330b57cec5SDimitry Andric     case Decl::ObjCProtocol:
14340b57cec5SDimitry Andric       return getExternalLinkageFor(D);
14350b57cec5SDimitry Andric 
14360b57cec5SDimitry Andric     case Decl::CXXRecord: {
14370b57cec5SDimitry Andric       const auto *Record = cast<CXXRecordDecl>(D);
14380b57cec5SDimitry Andric       if (Record->isLambda()) {
1439a7dea167SDimitry Andric         if (Record->hasKnownLambdaInternalLinkage() ||
1440a7dea167SDimitry Andric             !Record->getLambdaManglingNumber()) {
14410b57cec5SDimitry Andric           // This lambda has no mangling number, so it's internal.
14420b57cec5SDimitry Andric           return getInternalLinkageFor(D);
14430b57cec5SDimitry Andric         }
14440b57cec5SDimitry Andric 
14450b57cec5SDimitry Andric         return getLVForClosure(
14465ffd83dbSDimitry Andric                   Record->getDeclContext()->getRedeclContext(),
14475ffd83dbSDimitry Andric                   Record->getLambdaContextDecl(), computation);
14480b57cec5SDimitry Andric       }
14490b57cec5SDimitry Andric 
14500b57cec5SDimitry Andric       break;
14510b57cec5SDimitry Andric     }
1452e8d8bef9SDimitry Andric 
1453e8d8bef9SDimitry Andric     case Decl::TemplateParamObject: {
1454e8d8bef9SDimitry Andric       // The template parameter object can be referenced from anywhere its type
1455e8d8bef9SDimitry Andric       // and value can be referenced.
1456e8d8bef9SDimitry Andric       auto *TPO = cast<TemplateParamObjectDecl>(D);
1457e8d8bef9SDimitry Andric       LinkageInfo LV = getLVForType(*TPO->getType(), computation);
1458e8d8bef9SDimitry Andric       LV.merge(getLVForValue(TPO->getValue(), computation));
1459e8d8bef9SDimitry Andric       return LV;
1460e8d8bef9SDimitry Andric     }
14610b57cec5SDimitry Andric   }
14620b57cec5SDimitry Andric 
14630b57cec5SDimitry Andric   // Handle linkage for namespace-scope names.
14640b57cec5SDimitry Andric   if (D->getDeclContext()->getRedeclContext()->isFileContext())
14650b57cec5SDimitry Andric     return getLVForNamespaceScopeDecl(D, computation, IgnoreVarTypeLinkage);
14660b57cec5SDimitry Andric 
14670b57cec5SDimitry Andric   // C++ [basic.link]p5:
14680b57cec5SDimitry Andric   //   In addition, a member function, static data member, a named
14690b57cec5SDimitry Andric   //   class or enumeration of class scope, or an unnamed class or
14700b57cec5SDimitry Andric   //   enumeration defined in a class-scope typedef declaration such
14710b57cec5SDimitry Andric   //   that the class or enumeration has the typedef name for linkage
14720b57cec5SDimitry Andric   //   purposes (7.1.3), has external linkage if the name of the class
14730b57cec5SDimitry Andric   //   has external linkage.
14740b57cec5SDimitry Andric   if (D->getDeclContext()->isRecord())
14750b57cec5SDimitry Andric     return getLVForClassMember(D, computation, IgnoreVarTypeLinkage);
14760b57cec5SDimitry Andric 
14770b57cec5SDimitry Andric   // C++ [basic.link]p6:
14780b57cec5SDimitry Andric   //   The name of a function declared in block scope and the name of
14790b57cec5SDimitry Andric   //   an object declared by a block scope extern declaration have
14800b57cec5SDimitry Andric   //   linkage. If there is a visible declaration of an entity with
14810b57cec5SDimitry Andric   //   linkage having the same name and type, ignoring entities
14820b57cec5SDimitry Andric   //   declared outside the innermost enclosing namespace scope, the
14830b57cec5SDimitry Andric   //   block scope declaration declares that same entity and receives
14840b57cec5SDimitry Andric   //   the linkage of the previous declaration. If there is more than
14850b57cec5SDimitry Andric   //   one such matching entity, the program is ill-formed. Otherwise,
14860b57cec5SDimitry Andric   //   if no matching entity is found, the block scope entity receives
14870b57cec5SDimitry Andric   //   external linkage.
14880b57cec5SDimitry Andric   if (D->getDeclContext()->isFunctionOrMethod())
14890b57cec5SDimitry Andric     return getLVForLocalDecl(D, computation);
14900b57cec5SDimitry Andric 
14910b57cec5SDimitry Andric   // C++ [basic.link]p6:
14920b57cec5SDimitry Andric   //   Names not covered by these rules have no linkage.
14930b57cec5SDimitry Andric   return LinkageInfo::none();
14940b57cec5SDimitry Andric }
14950b57cec5SDimitry Andric 
14960b57cec5SDimitry Andric /// getLVForDecl - Get the linkage and visibility for the given declaration.
14970b57cec5SDimitry Andric LinkageInfo LinkageComputer::getLVForDecl(const NamedDecl *D,
14980b57cec5SDimitry Andric                                           LVComputationKind computation) {
14990b57cec5SDimitry Andric   // Internal_linkage attribute overrides other considerations.
15000b57cec5SDimitry Andric   if (D->hasAttr<InternalLinkageAttr>())
15010b57cec5SDimitry Andric     return getInternalLinkageFor(D);
15020b57cec5SDimitry Andric 
15030b57cec5SDimitry Andric   if (computation.IgnoreAllVisibility && D->hasCachedLinkage())
15040b57cec5SDimitry Andric     return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false);
15050b57cec5SDimitry Andric 
15060b57cec5SDimitry Andric   if (llvm::Optional<LinkageInfo> LI = lookup(D, computation))
15070b57cec5SDimitry Andric     return *LI;
15080b57cec5SDimitry Andric 
15090b57cec5SDimitry Andric   LinkageInfo LV = computeLVForDecl(D, computation);
15100b57cec5SDimitry Andric   if (D->hasCachedLinkage())
15110b57cec5SDimitry Andric     assert(D->getCachedLinkage() == LV.getLinkage());
15120b57cec5SDimitry Andric 
15130b57cec5SDimitry Andric   D->setCachedLinkage(LV.getLinkage());
15140b57cec5SDimitry Andric   cache(D, computation, LV);
15150b57cec5SDimitry Andric 
15160b57cec5SDimitry Andric #ifndef NDEBUG
15170b57cec5SDimitry Andric   // In C (because of gnu inline) and in c++ with microsoft extensions an
15180b57cec5SDimitry Andric   // static can follow an extern, so we can have two decls with different
15190b57cec5SDimitry Andric   // linkages.
15200b57cec5SDimitry Andric   const LangOptions &Opts = D->getASTContext().getLangOpts();
15210b57cec5SDimitry Andric   if (!Opts.CPlusPlus || Opts.MicrosoftExt)
15220b57cec5SDimitry Andric     return LV;
15230b57cec5SDimitry Andric 
15240b57cec5SDimitry Andric   // We have just computed the linkage for this decl. By induction we know
15250b57cec5SDimitry Andric   // that all other computed linkages match, check that the one we just
15260b57cec5SDimitry Andric   // computed also does.
15270b57cec5SDimitry Andric   NamedDecl *Old = nullptr;
15280b57cec5SDimitry Andric   for (auto I : D->redecls()) {
15290b57cec5SDimitry Andric     auto *T = cast<NamedDecl>(I);
15300b57cec5SDimitry Andric     if (T == D)
15310b57cec5SDimitry Andric       continue;
15320b57cec5SDimitry Andric     if (!T->isInvalidDecl() && T->hasCachedLinkage()) {
15330b57cec5SDimitry Andric       Old = T;
15340b57cec5SDimitry Andric       break;
15350b57cec5SDimitry Andric     }
15360b57cec5SDimitry Andric   }
15370b57cec5SDimitry Andric   assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage());
15380b57cec5SDimitry Andric #endif
15390b57cec5SDimitry Andric 
15400b57cec5SDimitry Andric   return LV;
15410b57cec5SDimitry Andric }
15420b57cec5SDimitry Andric 
15430b57cec5SDimitry Andric LinkageInfo LinkageComputer::getDeclLinkageAndVisibility(const NamedDecl *D) {
1544fe6060f1SDimitry Andric   NamedDecl::ExplicitVisibilityKind EK = usesTypeVisibility(D)
15450b57cec5SDimitry Andric                                              ? NamedDecl::VisibilityForType
1546fe6060f1SDimitry Andric                                              : NamedDecl::VisibilityForValue;
1547fe6060f1SDimitry Andric   LVComputationKind CK(EK);
1548fe6060f1SDimitry Andric   return getLVForDecl(D, D->getASTContext().getLangOpts().IgnoreXCOFFVisibility
1549fe6060f1SDimitry Andric                              ? CK.forLinkageOnly()
1550fe6060f1SDimitry Andric                              : CK);
15510b57cec5SDimitry Andric }
15520b57cec5SDimitry Andric 
15530b57cec5SDimitry Andric Module *Decl::getOwningModuleForLinkage(bool IgnoreLinkage) const {
1554*81ad6265SDimitry Andric   if (isa<NamespaceDecl>(this))
1555*81ad6265SDimitry Andric     // Namespaces never have module linkage.  It is the entities within them
1556*81ad6265SDimitry Andric     // that [may] do.
1557*81ad6265SDimitry Andric     return nullptr;
1558*81ad6265SDimitry Andric 
15590b57cec5SDimitry Andric   Module *M = getOwningModule();
15600b57cec5SDimitry Andric   if (!M)
15610b57cec5SDimitry Andric     return nullptr;
15620b57cec5SDimitry Andric 
15630b57cec5SDimitry Andric   switch (M->Kind) {
15640b57cec5SDimitry Andric   case Module::ModuleMapModule:
15650b57cec5SDimitry Andric     // Module map modules have no special linkage semantics.
15660b57cec5SDimitry Andric     return nullptr;
15670b57cec5SDimitry Andric 
15680b57cec5SDimitry Andric   case Module::ModuleInterfaceUnit:
1569*81ad6265SDimitry Andric   case Module::ModulePartitionInterface:
1570*81ad6265SDimitry Andric   case Module::ModulePartitionImplementation:
15710b57cec5SDimitry Andric     return M;
15720b57cec5SDimitry Andric 
1573*81ad6265SDimitry Andric   case Module::ModuleHeaderUnit:
15740b57cec5SDimitry Andric   case Module::GlobalModuleFragment: {
15750b57cec5SDimitry Andric     // External linkage declarations in the global module have no owning module
15760b57cec5SDimitry Andric     // for linkage purposes. But internal linkage declarations in the global
15770b57cec5SDimitry Andric     // module fragment of a particular module are owned by that module for
15780b57cec5SDimitry Andric     // linkage purposes.
1579*81ad6265SDimitry Andric     // FIXME: p1815 removes the need for this distinction -- there are no
1580*81ad6265SDimitry Andric     // internal linkage declarations that need to be referred to from outside
1581*81ad6265SDimitry Andric     // this TU.
15820b57cec5SDimitry Andric     if (IgnoreLinkage)
15830b57cec5SDimitry Andric       return nullptr;
15840b57cec5SDimitry Andric     bool InternalLinkage;
15850b57cec5SDimitry Andric     if (auto *ND = dyn_cast<NamedDecl>(this))
15860b57cec5SDimitry Andric       InternalLinkage = !ND->hasExternalFormalLinkage();
1587*81ad6265SDimitry Andric     else
1588*81ad6265SDimitry Andric       InternalLinkage = isInAnonymousNamespace();
1589*81ad6265SDimitry Andric     return InternalLinkage ? M->Kind == Module::ModuleHeaderUnit ? M : M->Parent
1590*81ad6265SDimitry Andric                            : nullptr;
15910b57cec5SDimitry Andric   }
15920b57cec5SDimitry Andric 
15930b57cec5SDimitry Andric   case Module::PrivateModuleFragment:
15940b57cec5SDimitry Andric     // The private module fragment is part of its containing module for linkage
15950b57cec5SDimitry Andric     // purposes.
15960b57cec5SDimitry Andric     return M->Parent;
15970b57cec5SDimitry Andric   }
15980b57cec5SDimitry Andric 
15990b57cec5SDimitry Andric   llvm_unreachable("unknown module kind");
16000b57cec5SDimitry Andric }
16010b57cec5SDimitry Andric 
16020b57cec5SDimitry Andric void NamedDecl::printName(raw_ostream &os) const {
16030b57cec5SDimitry Andric   os << Name;
16040b57cec5SDimitry Andric }
16050b57cec5SDimitry Andric 
16060b57cec5SDimitry Andric std::string NamedDecl::getQualifiedNameAsString() const {
16070b57cec5SDimitry Andric   std::string QualName;
16080b57cec5SDimitry Andric   llvm::raw_string_ostream OS(QualName);
16090b57cec5SDimitry Andric   printQualifiedName(OS, getASTContext().getPrintingPolicy());
16100eae32dcSDimitry Andric   return QualName;
16110b57cec5SDimitry Andric }
16120b57cec5SDimitry Andric 
16130b57cec5SDimitry Andric void NamedDecl::printQualifiedName(raw_ostream &OS) const {
16140b57cec5SDimitry Andric   printQualifiedName(OS, getASTContext().getPrintingPolicy());
16150b57cec5SDimitry Andric }
16160b57cec5SDimitry Andric 
16170b57cec5SDimitry Andric void NamedDecl::printQualifiedName(raw_ostream &OS,
16180b57cec5SDimitry Andric                                    const PrintingPolicy &P) const {
1619a7dea167SDimitry Andric   if (getDeclContext()->isFunctionOrMethod()) {
1620a7dea167SDimitry Andric     // We do not print '(anonymous)' for function parameters without name.
1621a7dea167SDimitry Andric     printName(OS);
1622a7dea167SDimitry Andric     return;
1623a7dea167SDimitry Andric   }
1624a7dea167SDimitry Andric   printNestedNameSpecifier(OS, P);
16255ffd83dbSDimitry Andric   if (getDeclName())
1626a7dea167SDimitry Andric     OS << *this;
16275ffd83dbSDimitry Andric   else {
16285ffd83dbSDimitry Andric     // Give the printName override a chance to pick a different name before we
16295ffd83dbSDimitry Andric     // fall back to "(anonymous)".
16305ffd83dbSDimitry Andric     SmallString<64> NameBuffer;
16315ffd83dbSDimitry Andric     llvm::raw_svector_ostream NameOS(NameBuffer);
16325ffd83dbSDimitry Andric     printName(NameOS);
16335ffd83dbSDimitry Andric     if (NameBuffer.empty())
1634a7dea167SDimitry Andric       OS << "(anonymous)";
16355ffd83dbSDimitry Andric     else
16365ffd83dbSDimitry Andric       OS << NameBuffer;
16375ffd83dbSDimitry Andric   }
1638a7dea167SDimitry Andric }
1639a7dea167SDimitry Andric 
1640a7dea167SDimitry Andric void NamedDecl::printNestedNameSpecifier(raw_ostream &OS) const {
1641a7dea167SDimitry Andric   printNestedNameSpecifier(OS, getASTContext().getPrintingPolicy());
1642a7dea167SDimitry Andric }
1643a7dea167SDimitry Andric 
1644a7dea167SDimitry Andric void NamedDecl::printNestedNameSpecifier(raw_ostream &OS,
1645a7dea167SDimitry Andric                                          const PrintingPolicy &P) const {
16460b57cec5SDimitry Andric   const DeclContext *Ctx = getDeclContext();
16470b57cec5SDimitry Andric 
16480b57cec5SDimitry Andric   // For ObjC methods and properties, look through categories and use the
16490b57cec5SDimitry Andric   // interface as context.
16505ffd83dbSDimitry Andric   if (auto *MD = dyn_cast<ObjCMethodDecl>(this)) {
16510b57cec5SDimitry Andric     if (auto *ID = MD->getClassInterface())
16520b57cec5SDimitry Andric       Ctx = ID;
16535ffd83dbSDimitry Andric   } else if (auto *PD = dyn_cast<ObjCPropertyDecl>(this)) {
16540b57cec5SDimitry Andric     if (auto *MD = PD->getGetterMethodDecl())
16550b57cec5SDimitry Andric       if (auto *ID = MD->getClassInterface())
16560b57cec5SDimitry Andric         Ctx = ID;
16575ffd83dbSDimitry Andric   } else if (auto *ID = dyn_cast<ObjCIvarDecl>(this)) {
16585ffd83dbSDimitry Andric     if (auto *CI = ID->getContainingInterface())
16595ffd83dbSDimitry Andric       Ctx = CI;
16600b57cec5SDimitry Andric   }
16610b57cec5SDimitry Andric 
1662a7dea167SDimitry Andric   if (Ctx->isFunctionOrMethod())
16630b57cec5SDimitry Andric     return;
16640b57cec5SDimitry Andric 
16650b57cec5SDimitry Andric   using ContextsTy = SmallVector<const DeclContext *, 8>;
16660b57cec5SDimitry Andric   ContextsTy Contexts;
16670b57cec5SDimitry Andric 
16680b57cec5SDimitry Andric   // Collect named contexts.
1669e8d8bef9SDimitry Andric   DeclarationName NameInScope = getDeclName();
1670e8d8bef9SDimitry Andric   for (; Ctx; Ctx = Ctx->getParent()) {
1671e8d8bef9SDimitry Andric     // Suppress anonymous namespace if requested.
1672e8d8bef9SDimitry Andric     if (P.SuppressUnwrittenScope && isa<NamespaceDecl>(Ctx) &&
1673e8d8bef9SDimitry Andric         cast<NamespaceDecl>(Ctx)->isAnonymousNamespace())
1674e8d8bef9SDimitry Andric       continue;
1675e8d8bef9SDimitry Andric 
1676e8d8bef9SDimitry Andric     // Suppress inline namespace if it doesn't make the result ambiguous.
1677e8d8bef9SDimitry Andric     if (P.SuppressInlineNamespace && Ctx->isInlineNamespace() && NameInScope &&
1678fe6060f1SDimitry Andric         cast<NamespaceDecl>(Ctx)->isRedundantInlineQualifierFor(NameInScope))
1679e8d8bef9SDimitry Andric       continue;
1680e8d8bef9SDimitry Andric 
1681e8d8bef9SDimitry Andric     // Skip non-named contexts such as linkage specifications and ExportDecls.
1682e8d8bef9SDimitry Andric     const NamedDecl *ND = dyn_cast<NamedDecl>(Ctx);
1683e8d8bef9SDimitry Andric     if (!ND)
1684e8d8bef9SDimitry Andric       continue;
1685e8d8bef9SDimitry Andric 
16860b57cec5SDimitry Andric     Contexts.push_back(Ctx);
1687e8d8bef9SDimitry Andric     NameInScope = ND->getDeclName();
16880b57cec5SDimitry Andric   }
16890b57cec5SDimitry Andric 
1690349cc55cSDimitry Andric   for (const DeclContext *DC : llvm::reverse(Contexts)) {
16910b57cec5SDimitry Andric     if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
16920b57cec5SDimitry Andric       OS << Spec->getName();
16930b57cec5SDimitry Andric       const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
1694e8d8bef9SDimitry Andric       printTemplateArgumentList(
1695e8d8bef9SDimitry Andric           OS, TemplateArgs.asArray(), P,
1696e8d8bef9SDimitry Andric           Spec->getSpecializedTemplate()->getTemplateParameters());
16970b57cec5SDimitry Andric     } else if (const auto *ND = dyn_cast<NamespaceDecl>(DC)) {
16980b57cec5SDimitry Andric       if (ND->isAnonymousNamespace()) {
16990b57cec5SDimitry Andric         OS << (P.MSVCFormatting ? "`anonymous namespace\'"
17000b57cec5SDimitry Andric                                 : "(anonymous namespace)");
17010b57cec5SDimitry Andric       }
17020b57cec5SDimitry Andric       else
17030b57cec5SDimitry Andric         OS << *ND;
17040b57cec5SDimitry Andric     } else if (const auto *RD = dyn_cast<RecordDecl>(DC)) {
17050b57cec5SDimitry Andric       if (!RD->getIdentifier())
17060b57cec5SDimitry Andric         OS << "(anonymous " << RD->getKindName() << ')';
17070b57cec5SDimitry Andric       else
17080b57cec5SDimitry Andric         OS << *RD;
17090b57cec5SDimitry Andric     } else if (const auto *FD = dyn_cast<FunctionDecl>(DC)) {
17100b57cec5SDimitry Andric       const FunctionProtoType *FT = nullptr;
17110b57cec5SDimitry Andric       if (FD->hasWrittenPrototype())
17120b57cec5SDimitry Andric         FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>());
17130b57cec5SDimitry Andric 
17140b57cec5SDimitry Andric       OS << *FD << '(';
17150b57cec5SDimitry Andric       if (FT) {
17160b57cec5SDimitry Andric         unsigned NumParams = FD->getNumParams();
17170b57cec5SDimitry Andric         for (unsigned i = 0; i < NumParams; ++i) {
17180b57cec5SDimitry Andric           if (i)
17190b57cec5SDimitry Andric             OS << ", ";
17200b57cec5SDimitry Andric           OS << FD->getParamDecl(i)->getType().stream(P);
17210b57cec5SDimitry Andric         }
17220b57cec5SDimitry Andric 
17230b57cec5SDimitry Andric         if (FT->isVariadic()) {
17240b57cec5SDimitry Andric           if (NumParams > 0)
17250b57cec5SDimitry Andric             OS << ", ";
17260b57cec5SDimitry Andric           OS << "...";
17270b57cec5SDimitry Andric         }
17280b57cec5SDimitry Andric       }
17290b57cec5SDimitry Andric       OS << ')';
17300b57cec5SDimitry Andric     } else if (const auto *ED = dyn_cast<EnumDecl>(DC)) {
17310b57cec5SDimitry Andric       // C++ [dcl.enum]p10: Each enum-name and each unscoped
17320b57cec5SDimitry Andric       // enumerator is declared in the scope that immediately contains
17330b57cec5SDimitry Andric       // the enum-specifier. Each scoped enumerator is declared in the
17340b57cec5SDimitry Andric       // scope of the enumeration.
17350b57cec5SDimitry Andric       // For the case of unscoped enumerator, do not include in the qualified
17360b57cec5SDimitry Andric       // name any information about its enum enclosing scope, as its visibility
17370b57cec5SDimitry Andric       // is global.
17380b57cec5SDimitry Andric       if (ED->isScoped())
17390b57cec5SDimitry Andric         OS << *ED;
17400b57cec5SDimitry Andric       else
17410b57cec5SDimitry Andric         continue;
17420b57cec5SDimitry Andric     } else {
17430b57cec5SDimitry Andric       OS << *cast<NamedDecl>(DC);
17440b57cec5SDimitry Andric     }
17450b57cec5SDimitry Andric     OS << "::";
17460b57cec5SDimitry Andric   }
17470b57cec5SDimitry Andric }
17480b57cec5SDimitry Andric 
17490b57cec5SDimitry Andric void NamedDecl::getNameForDiagnostic(raw_ostream &OS,
17500b57cec5SDimitry Andric                                      const PrintingPolicy &Policy,
17510b57cec5SDimitry Andric                                      bool Qualified) const {
17520b57cec5SDimitry Andric   if (Qualified)
17530b57cec5SDimitry Andric     printQualifiedName(OS, Policy);
17540b57cec5SDimitry Andric   else
17550b57cec5SDimitry Andric     printName(OS);
17560b57cec5SDimitry Andric }
17570b57cec5SDimitry Andric 
17580b57cec5SDimitry Andric template<typename T> static bool isRedeclarableImpl(Redeclarable<T> *) {
17590b57cec5SDimitry Andric   return true;
17600b57cec5SDimitry Andric }
17610b57cec5SDimitry Andric static bool isRedeclarableImpl(...) { return false; }
17620b57cec5SDimitry Andric static bool isRedeclarable(Decl::Kind K) {
17630b57cec5SDimitry Andric   switch (K) {
17640b57cec5SDimitry Andric #define DECL(Type, Base) \
17650b57cec5SDimitry Andric   case Decl::Type: \
17660b57cec5SDimitry Andric     return isRedeclarableImpl((Type##Decl *)nullptr);
17670b57cec5SDimitry Andric #define ABSTRACT_DECL(DECL)
17680b57cec5SDimitry Andric #include "clang/AST/DeclNodes.inc"
17690b57cec5SDimitry Andric   }
17700b57cec5SDimitry Andric   llvm_unreachable("unknown decl kind");
17710b57cec5SDimitry Andric }
17720b57cec5SDimitry Andric 
17730b57cec5SDimitry Andric bool NamedDecl::declarationReplaces(NamedDecl *OldD, bool IsKnownNewer) const {
17740b57cec5SDimitry Andric   assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
17750b57cec5SDimitry Andric 
17760b57cec5SDimitry Andric   // Never replace one imported declaration with another; we need both results
17770b57cec5SDimitry Andric   // when re-exporting.
17780b57cec5SDimitry Andric   if (OldD->isFromASTFile() && isFromASTFile())
17790b57cec5SDimitry Andric     return false;
17800b57cec5SDimitry Andric 
17810b57cec5SDimitry Andric   // A kind mismatch implies that the declaration is not replaced.
17820b57cec5SDimitry Andric   if (OldD->getKind() != getKind())
17830b57cec5SDimitry Andric     return false;
17840b57cec5SDimitry Andric 
17850b57cec5SDimitry Andric   // For method declarations, we never replace. (Why?)
17860b57cec5SDimitry Andric   if (isa<ObjCMethodDecl>(this))
17870b57cec5SDimitry Andric     return false;
17880b57cec5SDimitry Andric 
17890b57cec5SDimitry Andric   // For parameters, pick the newer one. This is either an error or (in
17900b57cec5SDimitry Andric   // Objective-C) permitted as an extension.
17910b57cec5SDimitry Andric   if (isa<ParmVarDecl>(this))
17920b57cec5SDimitry Andric     return true;
17930b57cec5SDimitry Andric 
17940b57cec5SDimitry Andric   // Inline namespaces can give us two declarations with the same
17950b57cec5SDimitry Andric   // name and kind in the same scope but different contexts; we should
17960b57cec5SDimitry Andric   // keep both declarations in this case.
17970b57cec5SDimitry Andric   if (!this->getDeclContext()->getRedeclContext()->Equals(
17980b57cec5SDimitry Andric           OldD->getDeclContext()->getRedeclContext()))
17990b57cec5SDimitry Andric     return false;
18000b57cec5SDimitry Andric 
18010b57cec5SDimitry Andric   // Using declarations can be replaced if they import the same name from the
18020b57cec5SDimitry Andric   // same context.
18030b57cec5SDimitry Andric   if (auto *UD = dyn_cast<UsingDecl>(this)) {
18040b57cec5SDimitry Andric     ASTContext &Context = getASTContext();
18050b57cec5SDimitry Andric     return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) ==
18060b57cec5SDimitry Andric            Context.getCanonicalNestedNameSpecifier(
18070b57cec5SDimitry Andric                cast<UsingDecl>(OldD)->getQualifier());
18080b57cec5SDimitry Andric   }
18090b57cec5SDimitry Andric   if (auto *UUVD = dyn_cast<UnresolvedUsingValueDecl>(this)) {
18100b57cec5SDimitry Andric     ASTContext &Context = getASTContext();
18110b57cec5SDimitry Andric     return Context.getCanonicalNestedNameSpecifier(UUVD->getQualifier()) ==
18120b57cec5SDimitry Andric            Context.getCanonicalNestedNameSpecifier(
18130b57cec5SDimitry Andric                         cast<UnresolvedUsingValueDecl>(OldD)->getQualifier());
18140b57cec5SDimitry Andric   }
18150b57cec5SDimitry Andric 
18160b57cec5SDimitry Andric   if (isRedeclarable(getKind())) {
18170b57cec5SDimitry Andric     if (getCanonicalDecl() != OldD->getCanonicalDecl())
18180b57cec5SDimitry Andric       return false;
18190b57cec5SDimitry Andric 
18200b57cec5SDimitry Andric     if (IsKnownNewer)
18210b57cec5SDimitry Andric       return true;
18220b57cec5SDimitry Andric 
18230b57cec5SDimitry Andric     // Check whether this is actually newer than OldD. We want to keep the
18240b57cec5SDimitry Andric     // newer declaration. This loop will usually only iterate once, because
18250b57cec5SDimitry Andric     // OldD is usually the previous declaration.
18260b57cec5SDimitry Andric     for (auto D : redecls()) {
18270b57cec5SDimitry Andric       if (D == OldD)
18280b57cec5SDimitry Andric         break;
18290b57cec5SDimitry Andric 
18300b57cec5SDimitry Andric       // If we reach the canonical declaration, then OldD is not actually older
18310b57cec5SDimitry Andric       // than this one.
18320b57cec5SDimitry Andric       //
18330b57cec5SDimitry Andric       // FIXME: In this case, we should not add this decl to the lookup table.
18340b57cec5SDimitry Andric       if (D->isCanonicalDecl())
18350b57cec5SDimitry Andric         return false;
18360b57cec5SDimitry Andric     }
18370b57cec5SDimitry Andric 
18380b57cec5SDimitry Andric     // It's a newer declaration of the same kind of declaration in the same
18390b57cec5SDimitry Andric     // scope: we want this decl instead of the existing one.
18400b57cec5SDimitry Andric     return true;
18410b57cec5SDimitry Andric   }
18420b57cec5SDimitry Andric 
18430b57cec5SDimitry Andric   // In all other cases, we need to keep both declarations in case they have
18440b57cec5SDimitry Andric   // different visibility. Any attempt to use the name will result in an
18450b57cec5SDimitry Andric   // ambiguity if more than one is visible.
18460b57cec5SDimitry Andric   return false;
18470b57cec5SDimitry Andric }
18480b57cec5SDimitry Andric 
18490b57cec5SDimitry Andric bool NamedDecl::hasLinkage() const {
18500b57cec5SDimitry Andric   return getFormalLinkage() != NoLinkage;
18510b57cec5SDimitry Andric }
18520b57cec5SDimitry Andric 
18530b57cec5SDimitry Andric NamedDecl *NamedDecl::getUnderlyingDeclImpl() {
18540b57cec5SDimitry Andric   NamedDecl *ND = this;
1855*81ad6265SDimitry Andric   if (auto *UD = dyn_cast<UsingShadowDecl>(ND))
18560b57cec5SDimitry Andric     ND = UD->getTargetDecl();
18570b57cec5SDimitry Andric 
18580b57cec5SDimitry Andric   if (auto *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND))
18590b57cec5SDimitry Andric     return AD->getClassInterface();
18600b57cec5SDimitry Andric 
18610b57cec5SDimitry Andric   if (auto *AD = dyn_cast<NamespaceAliasDecl>(ND))
18620b57cec5SDimitry Andric     return AD->getNamespace();
18630b57cec5SDimitry Andric 
18640b57cec5SDimitry Andric   return ND;
18650b57cec5SDimitry Andric }
18660b57cec5SDimitry Andric 
18670b57cec5SDimitry Andric bool NamedDecl::isCXXInstanceMember() const {
18680b57cec5SDimitry Andric   if (!isCXXClassMember())
18690b57cec5SDimitry Andric     return false;
18700b57cec5SDimitry Andric 
18710b57cec5SDimitry Andric   const NamedDecl *D = this;
18720b57cec5SDimitry Andric   if (isa<UsingShadowDecl>(D))
18730b57cec5SDimitry Andric     D = cast<UsingShadowDecl>(D)->getTargetDecl();
18740b57cec5SDimitry Andric 
18750b57cec5SDimitry Andric   if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D))
18760b57cec5SDimitry Andric     return true;
18770b57cec5SDimitry Andric   if (const auto *MD = dyn_cast_or_null<CXXMethodDecl>(D->getAsFunction()))
18780b57cec5SDimitry Andric     return MD->isInstance();
18790b57cec5SDimitry Andric   return false;
18800b57cec5SDimitry Andric }
18810b57cec5SDimitry Andric 
18820b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
18830b57cec5SDimitry Andric // DeclaratorDecl Implementation
18840b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
18850b57cec5SDimitry Andric 
18860b57cec5SDimitry Andric template <typename DeclT>
18870b57cec5SDimitry Andric static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
18880b57cec5SDimitry Andric   if (decl->getNumTemplateParameterLists() > 0)
18890b57cec5SDimitry Andric     return decl->getTemplateParameterList(0)->getTemplateLoc();
18900b57cec5SDimitry Andric   return decl->getInnerLocStart();
18910b57cec5SDimitry Andric }
18920b57cec5SDimitry Andric 
18930b57cec5SDimitry Andric SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const {
18940b57cec5SDimitry Andric   TypeSourceInfo *TSI = getTypeSourceInfo();
18950b57cec5SDimitry Andric   if (TSI) return TSI->getTypeLoc().getBeginLoc();
18960b57cec5SDimitry Andric   return SourceLocation();
18970b57cec5SDimitry Andric }
18980b57cec5SDimitry Andric 
1899480093f4SDimitry Andric SourceLocation DeclaratorDecl::getTypeSpecEndLoc() const {
1900480093f4SDimitry Andric   TypeSourceInfo *TSI = getTypeSourceInfo();
1901480093f4SDimitry Andric   if (TSI) return TSI->getTypeLoc().getEndLoc();
1902480093f4SDimitry Andric   return SourceLocation();
1903480093f4SDimitry Andric }
1904480093f4SDimitry Andric 
19050b57cec5SDimitry Andric void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
19060b57cec5SDimitry Andric   if (QualifierLoc) {
19070b57cec5SDimitry Andric     // Make sure the extended decl info is allocated.
19080b57cec5SDimitry Andric     if (!hasExtInfo()) {
19090b57cec5SDimitry Andric       // Save (non-extended) type source info pointer.
19100b57cec5SDimitry Andric       auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
19110b57cec5SDimitry Andric       // Allocate external info struct.
19120b57cec5SDimitry Andric       DeclInfo = new (getASTContext()) ExtInfo;
19130b57cec5SDimitry Andric       // Restore savedTInfo into (extended) decl info.
19140b57cec5SDimitry Andric       getExtInfo()->TInfo = savedTInfo;
19150b57cec5SDimitry Andric     }
19160b57cec5SDimitry Andric     // Set qualifier info.
19170b57cec5SDimitry Andric     getExtInfo()->QualifierLoc = QualifierLoc;
1918480093f4SDimitry Andric   } else if (hasExtInfo()) {
19190b57cec5SDimitry Andric     // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
19200b57cec5SDimitry Andric     getExtInfo()->QualifierLoc = QualifierLoc;
19210b57cec5SDimitry Andric   }
19220b57cec5SDimitry Andric }
1923480093f4SDimitry Andric 
1924480093f4SDimitry Andric void DeclaratorDecl::setTrailingRequiresClause(Expr *TrailingRequiresClause) {
1925480093f4SDimitry Andric   assert(TrailingRequiresClause);
1926480093f4SDimitry Andric   // Make sure the extended decl info is allocated.
1927480093f4SDimitry Andric   if (!hasExtInfo()) {
1928480093f4SDimitry Andric     // Save (non-extended) type source info pointer.
1929480093f4SDimitry Andric     auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
1930480093f4SDimitry Andric     // Allocate external info struct.
1931480093f4SDimitry Andric     DeclInfo = new (getASTContext()) ExtInfo;
1932480093f4SDimitry Andric     // Restore savedTInfo into (extended) decl info.
1933480093f4SDimitry Andric     getExtInfo()->TInfo = savedTInfo;
1934480093f4SDimitry Andric   }
1935480093f4SDimitry Andric   // Set requires clause info.
1936480093f4SDimitry Andric   getExtInfo()->TrailingRequiresClause = TrailingRequiresClause;
19370b57cec5SDimitry Andric }
19380b57cec5SDimitry Andric 
19390b57cec5SDimitry Andric void DeclaratorDecl::setTemplateParameterListsInfo(
19400b57cec5SDimitry Andric     ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
19410b57cec5SDimitry Andric   assert(!TPLists.empty());
19420b57cec5SDimitry Andric   // Make sure the extended decl info is allocated.
19430b57cec5SDimitry Andric   if (!hasExtInfo()) {
19440b57cec5SDimitry Andric     // Save (non-extended) type source info pointer.
19450b57cec5SDimitry Andric     auto *savedTInfo = DeclInfo.get<TypeSourceInfo*>();
19460b57cec5SDimitry Andric     // Allocate external info struct.
19470b57cec5SDimitry Andric     DeclInfo = new (getASTContext()) ExtInfo;
19480b57cec5SDimitry Andric     // Restore savedTInfo into (extended) decl info.
19490b57cec5SDimitry Andric     getExtInfo()->TInfo = savedTInfo;
19500b57cec5SDimitry Andric   }
19510b57cec5SDimitry Andric   // Set the template parameter lists info.
19520b57cec5SDimitry Andric   getExtInfo()->setTemplateParameterListsInfo(Context, TPLists);
19530b57cec5SDimitry Andric }
19540b57cec5SDimitry Andric 
19550b57cec5SDimitry Andric SourceLocation DeclaratorDecl::getOuterLocStart() const {
19560b57cec5SDimitry Andric   return getTemplateOrInnerLocStart(this);
19570b57cec5SDimitry Andric }
19580b57cec5SDimitry Andric 
19590b57cec5SDimitry Andric // Helper function: returns true if QT is or contains a type
19600b57cec5SDimitry Andric // having a postfix component.
19610b57cec5SDimitry Andric static bool typeIsPostfix(QualType QT) {
19620b57cec5SDimitry Andric   while (true) {
19630b57cec5SDimitry Andric     const Type* T = QT.getTypePtr();
19640b57cec5SDimitry Andric     switch (T->getTypeClass()) {
19650b57cec5SDimitry Andric     default:
19660b57cec5SDimitry Andric       return false;
19670b57cec5SDimitry Andric     case Type::Pointer:
19680b57cec5SDimitry Andric       QT = cast<PointerType>(T)->getPointeeType();
19690b57cec5SDimitry Andric       break;
19700b57cec5SDimitry Andric     case Type::BlockPointer:
19710b57cec5SDimitry Andric       QT = cast<BlockPointerType>(T)->getPointeeType();
19720b57cec5SDimitry Andric       break;
19730b57cec5SDimitry Andric     case Type::MemberPointer:
19740b57cec5SDimitry Andric       QT = cast<MemberPointerType>(T)->getPointeeType();
19750b57cec5SDimitry Andric       break;
19760b57cec5SDimitry Andric     case Type::LValueReference:
19770b57cec5SDimitry Andric     case Type::RValueReference:
19780b57cec5SDimitry Andric       QT = cast<ReferenceType>(T)->getPointeeType();
19790b57cec5SDimitry Andric       break;
19800b57cec5SDimitry Andric     case Type::PackExpansion:
19810b57cec5SDimitry Andric       QT = cast<PackExpansionType>(T)->getPattern();
19820b57cec5SDimitry Andric       break;
19830b57cec5SDimitry Andric     case Type::Paren:
19840b57cec5SDimitry Andric     case Type::ConstantArray:
19850b57cec5SDimitry Andric     case Type::DependentSizedArray:
19860b57cec5SDimitry Andric     case Type::IncompleteArray:
19870b57cec5SDimitry Andric     case Type::VariableArray:
19880b57cec5SDimitry Andric     case Type::FunctionProto:
19890b57cec5SDimitry Andric     case Type::FunctionNoProto:
19900b57cec5SDimitry Andric       return true;
19910b57cec5SDimitry Andric     }
19920b57cec5SDimitry Andric   }
19930b57cec5SDimitry Andric }
19940b57cec5SDimitry Andric 
19950b57cec5SDimitry Andric SourceRange DeclaratorDecl::getSourceRange() const {
19960b57cec5SDimitry Andric   SourceLocation RangeEnd = getLocation();
19970b57cec5SDimitry Andric   if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
19980b57cec5SDimitry Andric     // If the declaration has no name or the type extends past the name take the
19990b57cec5SDimitry Andric     // end location of the type.
20000b57cec5SDimitry Andric     if (!getDeclName() || typeIsPostfix(TInfo->getType()))
20010b57cec5SDimitry Andric       RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
20020b57cec5SDimitry Andric   }
20030b57cec5SDimitry Andric   return SourceRange(getOuterLocStart(), RangeEnd);
20040b57cec5SDimitry Andric }
20050b57cec5SDimitry Andric 
20060b57cec5SDimitry Andric void QualifierInfo::setTemplateParameterListsInfo(
20070b57cec5SDimitry Andric     ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
20080b57cec5SDimitry Andric   // Free previous template parameters (if any).
20090b57cec5SDimitry Andric   if (NumTemplParamLists > 0) {
20100b57cec5SDimitry Andric     Context.Deallocate(TemplParamLists);
20110b57cec5SDimitry Andric     TemplParamLists = nullptr;
20120b57cec5SDimitry Andric     NumTemplParamLists = 0;
20130b57cec5SDimitry Andric   }
20140b57cec5SDimitry Andric   // Set info on matched template parameter lists (if any).
20150b57cec5SDimitry Andric   if (!TPLists.empty()) {
20160b57cec5SDimitry Andric     TemplParamLists = new (Context) TemplateParameterList *[TPLists.size()];
20170b57cec5SDimitry Andric     NumTemplParamLists = TPLists.size();
20180b57cec5SDimitry Andric     std::copy(TPLists.begin(), TPLists.end(), TemplParamLists);
20190b57cec5SDimitry Andric   }
20200b57cec5SDimitry Andric }
20210b57cec5SDimitry Andric 
20220b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
20230b57cec5SDimitry Andric // VarDecl Implementation
20240b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
20250b57cec5SDimitry Andric 
20260b57cec5SDimitry Andric const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) {
20270b57cec5SDimitry Andric   switch (SC) {
20280b57cec5SDimitry Andric   case SC_None:                 break;
20290b57cec5SDimitry Andric   case SC_Auto:                 return "auto";
20300b57cec5SDimitry Andric   case SC_Extern:               return "extern";
20310b57cec5SDimitry Andric   case SC_PrivateExtern:        return "__private_extern__";
20320b57cec5SDimitry Andric   case SC_Register:             return "register";
20330b57cec5SDimitry Andric   case SC_Static:               return "static";
20340b57cec5SDimitry Andric   }
20350b57cec5SDimitry Andric 
20360b57cec5SDimitry Andric   llvm_unreachable("Invalid storage class");
20370b57cec5SDimitry Andric }
20380b57cec5SDimitry Andric 
20390b57cec5SDimitry Andric VarDecl::VarDecl(Kind DK, ASTContext &C, DeclContext *DC,
20400b57cec5SDimitry Andric                  SourceLocation StartLoc, SourceLocation IdLoc,
2041*81ad6265SDimitry Andric                  const IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
20420b57cec5SDimitry Andric                  StorageClass SC)
20430b57cec5SDimitry Andric     : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
20440b57cec5SDimitry Andric       redeclarable_base(C) {
20450b57cec5SDimitry Andric   static_assert(sizeof(VarDeclBitfields) <= sizeof(unsigned),
20460b57cec5SDimitry Andric                 "VarDeclBitfields too large!");
20470b57cec5SDimitry Andric   static_assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned),
20480b57cec5SDimitry Andric                 "ParmVarDeclBitfields too large!");
20490b57cec5SDimitry Andric   static_assert(sizeof(NonParmVarDeclBitfields) <= sizeof(unsigned),
20500b57cec5SDimitry Andric                 "NonParmVarDeclBitfields too large!");
20510b57cec5SDimitry Andric   AllBits = 0;
20520b57cec5SDimitry Andric   VarDeclBits.SClass = SC;
20530b57cec5SDimitry Andric   // Everything else is implicitly initialized to false.
20540b57cec5SDimitry Andric }
20550b57cec5SDimitry Andric 
2056*81ad6265SDimitry Andric VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation StartL,
2057*81ad6265SDimitry Andric                          SourceLocation IdL, const IdentifierInfo *Id,
2058*81ad6265SDimitry Andric                          QualType T, TypeSourceInfo *TInfo, StorageClass S) {
20590b57cec5SDimitry Andric   return new (C, DC) VarDecl(Var, C, DC, StartL, IdL, Id, T, TInfo, S);
20600b57cec5SDimitry Andric }
20610b57cec5SDimitry Andric 
20620b57cec5SDimitry Andric VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
20630b57cec5SDimitry Andric   return new (C, ID)
20640b57cec5SDimitry Andric       VarDecl(Var, C, nullptr, SourceLocation(), SourceLocation(), nullptr,
20650b57cec5SDimitry Andric               QualType(), nullptr, SC_None);
20660b57cec5SDimitry Andric }
20670b57cec5SDimitry Andric 
20680b57cec5SDimitry Andric void VarDecl::setStorageClass(StorageClass SC) {
20690b57cec5SDimitry Andric   assert(isLegalForVariable(SC));
20700b57cec5SDimitry Andric   VarDeclBits.SClass = SC;
20710b57cec5SDimitry Andric }
20720b57cec5SDimitry Andric 
20730b57cec5SDimitry Andric VarDecl::TLSKind VarDecl::getTLSKind() const {
20740b57cec5SDimitry Andric   switch (VarDeclBits.TSCSpec) {
20750b57cec5SDimitry Andric   case TSCS_unspecified:
20760b57cec5SDimitry Andric     if (!hasAttr<ThreadAttr>() &&
20770b57cec5SDimitry Andric         !(getASTContext().getLangOpts().OpenMPUseTLS &&
20780b57cec5SDimitry Andric           getASTContext().getTargetInfo().isTLSSupported() &&
20790b57cec5SDimitry Andric           hasAttr<OMPThreadPrivateDeclAttr>()))
20800b57cec5SDimitry Andric       return TLS_None;
20810b57cec5SDimitry Andric     return ((getASTContext().getLangOpts().isCompatibleWithMSVC(
20820b57cec5SDimitry Andric                 LangOptions::MSVC2015)) ||
20830b57cec5SDimitry Andric             hasAttr<OMPThreadPrivateDeclAttr>())
20840b57cec5SDimitry Andric                ? TLS_Dynamic
20850b57cec5SDimitry Andric                : TLS_Static;
20860b57cec5SDimitry Andric   case TSCS___thread: // Fall through.
20870b57cec5SDimitry Andric   case TSCS__Thread_local:
20880b57cec5SDimitry Andric     return TLS_Static;
20890b57cec5SDimitry Andric   case TSCS_thread_local:
20900b57cec5SDimitry Andric     return TLS_Dynamic;
20910b57cec5SDimitry Andric   }
20920b57cec5SDimitry Andric   llvm_unreachable("Unknown thread storage class specifier!");
20930b57cec5SDimitry Andric }
20940b57cec5SDimitry Andric 
20950b57cec5SDimitry Andric SourceRange VarDecl::getSourceRange() const {
20960b57cec5SDimitry Andric   if (const Expr *Init = getInit()) {
20970b57cec5SDimitry Andric     SourceLocation InitEnd = Init->getEndLoc();
20980b57cec5SDimitry Andric     // If Init is implicit, ignore its source range and fallback on
20990b57cec5SDimitry Andric     // DeclaratorDecl::getSourceRange() to handle postfix elements.
21000b57cec5SDimitry Andric     if (InitEnd.isValid() && InitEnd != getLocation())
21010b57cec5SDimitry Andric       return SourceRange(getOuterLocStart(), InitEnd);
21020b57cec5SDimitry Andric   }
21030b57cec5SDimitry Andric   return DeclaratorDecl::getSourceRange();
21040b57cec5SDimitry Andric }
21050b57cec5SDimitry Andric 
21060b57cec5SDimitry Andric template<typename T>
21070b57cec5SDimitry Andric static LanguageLinkage getDeclLanguageLinkage(const T &D) {
21080b57cec5SDimitry Andric   // C++ [dcl.link]p1: All function types, function names with external linkage,
21090b57cec5SDimitry Andric   // and variable names with external linkage have a language linkage.
21100b57cec5SDimitry Andric   if (!D.hasExternalFormalLinkage())
21110b57cec5SDimitry Andric     return NoLanguageLinkage;
21120b57cec5SDimitry Andric 
21130b57cec5SDimitry Andric   // Language linkage is a C++ concept, but saying that everything else in C has
21140b57cec5SDimitry Andric   // C language linkage fits the implementation nicely.
21150b57cec5SDimitry Andric   ASTContext &Context = D.getASTContext();
21160b57cec5SDimitry Andric   if (!Context.getLangOpts().CPlusPlus)
21170b57cec5SDimitry Andric     return CLanguageLinkage;
21180b57cec5SDimitry Andric 
21190b57cec5SDimitry Andric   // C++ [dcl.link]p4: A C language linkage is ignored in determining the
21200b57cec5SDimitry Andric   // language linkage of the names of class members and the function type of
21210b57cec5SDimitry Andric   // class member functions.
21220b57cec5SDimitry Andric   const DeclContext *DC = D.getDeclContext();
21230b57cec5SDimitry Andric   if (DC->isRecord())
21240b57cec5SDimitry Andric     return CXXLanguageLinkage;
21250b57cec5SDimitry Andric 
21260b57cec5SDimitry Andric   // If the first decl is in an extern "C" context, any other redeclaration
21270b57cec5SDimitry Andric   // will have C language linkage. If the first one is not in an extern "C"
21280b57cec5SDimitry Andric   // context, we would have reported an error for any other decl being in one.
21290b57cec5SDimitry Andric   if (isFirstInExternCContext(&D))
21300b57cec5SDimitry Andric     return CLanguageLinkage;
21310b57cec5SDimitry Andric   return CXXLanguageLinkage;
21320b57cec5SDimitry Andric }
21330b57cec5SDimitry Andric 
21340b57cec5SDimitry Andric template<typename T>
21350b57cec5SDimitry Andric static bool isDeclExternC(const T &D) {
21360b57cec5SDimitry Andric   // Since the context is ignored for class members, they can only have C++
21370b57cec5SDimitry Andric   // language linkage or no language linkage.
21380b57cec5SDimitry Andric   const DeclContext *DC = D.getDeclContext();
21390b57cec5SDimitry Andric   if (DC->isRecord()) {
21400b57cec5SDimitry Andric     assert(D.getASTContext().getLangOpts().CPlusPlus);
21410b57cec5SDimitry Andric     return false;
21420b57cec5SDimitry Andric   }
21430b57cec5SDimitry Andric 
21440b57cec5SDimitry Andric   return D.getLanguageLinkage() == CLanguageLinkage;
21450b57cec5SDimitry Andric }
21460b57cec5SDimitry Andric 
21470b57cec5SDimitry Andric LanguageLinkage VarDecl::getLanguageLinkage() const {
21480b57cec5SDimitry Andric   return getDeclLanguageLinkage(*this);
21490b57cec5SDimitry Andric }
21500b57cec5SDimitry Andric 
21510b57cec5SDimitry Andric bool VarDecl::isExternC() const {
21520b57cec5SDimitry Andric   return isDeclExternC(*this);
21530b57cec5SDimitry Andric }
21540b57cec5SDimitry Andric 
21550b57cec5SDimitry Andric bool VarDecl::isInExternCContext() const {
21560b57cec5SDimitry Andric   return getLexicalDeclContext()->isExternCContext();
21570b57cec5SDimitry Andric }
21580b57cec5SDimitry Andric 
21590b57cec5SDimitry Andric bool VarDecl::isInExternCXXContext() const {
21600b57cec5SDimitry Andric   return getLexicalDeclContext()->isExternCXXContext();
21610b57cec5SDimitry Andric }
21620b57cec5SDimitry Andric 
21630b57cec5SDimitry Andric VarDecl *VarDecl::getCanonicalDecl() { return getFirstDecl(); }
21640b57cec5SDimitry Andric 
21650b57cec5SDimitry Andric VarDecl::DefinitionKind
21660b57cec5SDimitry Andric VarDecl::isThisDeclarationADefinition(ASTContext &C) const {
21670b57cec5SDimitry Andric   if (isThisDeclarationADemotedDefinition())
21680b57cec5SDimitry Andric     return DeclarationOnly;
21690b57cec5SDimitry Andric 
21700b57cec5SDimitry Andric   // C++ [basic.def]p2:
21710b57cec5SDimitry Andric   //   A declaration is a definition unless [...] it contains the 'extern'
21720b57cec5SDimitry Andric   //   specifier or a linkage-specification and neither an initializer [...],
21730b57cec5SDimitry Andric   //   it declares a non-inline static data member in a class declaration [...],
21740b57cec5SDimitry Andric   //   it declares a static data member outside a class definition and the variable
21750b57cec5SDimitry Andric   //   was defined within the class with the constexpr specifier [...],
21760b57cec5SDimitry Andric   // C++1y [temp.expl.spec]p15:
21770b57cec5SDimitry Andric   //   An explicit specialization of a static data member or an explicit
21780b57cec5SDimitry Andric   //   specialization of a static data member template is a definition if the
21790b57cec5SDimitry Andric   //   declaration includes an initializer; otherwise, it is a declaration.
21800b57cec5SDimitry Andric   //
21810b57cec5SDimitry Andric   // FIXME: How do you declare (but not define) a partial specialization of
21820b57cec5SDimitry Andric   // a static data member template outside the containing class?
21830b57cec5SDimitry Andric   if (isStaticDataMember()) {
21840b57cec5SDimitry Andric     if (isOutOfLine() &&
21850b57cec5SDimitry Andric         !(getCanonicalDecl()->isInline() &&
21860b57cec5SDimitry Andric           getCanonicalDecl()->isConstexpr()) &&
21870b57cec5SDimitry Andric         (hasInit() ||
21880b57cec5SDimitry Andric          // If the first declaration is out-of-line, this may be an
21890b57cec5SDimitry Andric          // instantiation of an out-of-line partial specialization of a variable
21900b57cec5SDimitry Andric          // template for which we have not yet instantiated the initializer.
21910b57cec5SDimitry Andric          (getFirstDecl()->isOutOfLine()
21920b57cec5SDimitry Andric               ? getTemplateSpecializationKind() == TSK_Undeclared
21930b57cec5SDimitry Andric               : getTemplateSpecializationKind() !=
21940b57cec5SDimitry Andric                     TSK_ExplicitSpecialization) ||
21950b57cec5SDimitry Andric          isa<VarTemplatePartialSpecializationDecl>(this)))
21960b57cec5SDimitry Andric       return Definition;
2197e8d8bef9SDimitry Andric     if (!isOutOfLine() && isInline())
21980b57cec5SDimitry Andric       return Definition;
21990b57cec5SDimitry Andric     return DeclarationOnly;
22000b57cec5SDimitry Andric   }
22010b57cec5SDimitry Andric   // C99 6.7p5:
22020b57cec5SDimitry Andric   //   A definition of an identifier is a declaration for that identifier that
22030b57cec5SDimitry Andric   //   [...] causes storage to be reserved for that object.
22040b57cec5SDimitry Andric   // Note: that applies for all non-file-scope objects.
22050b57cec5SDimitry Andric   // C99 6.9.2p1:
22060b57cec5SDimitry Andric   //   If the declaration of an identifier for an object has file scope and an
22070b57cec5SDimitry Andric   //   initializer, the declaration is an external definition for the identifier
22080b57cec5SDimitry Andric   if (hasInit())
22090b57cec5SDimitry Andric     return Definition;
22100b57cec5SDimitry Andric 
22110b57cec5SDimitry Andric   if (hasDefiningAttr())
22120b57cec5SDimitry Andric     return Definition;
22130b57cec5SDimitry Andric 
22140b57cec5SDimitry Andric   if (const auto *SAA = getAttr<SelectAnyAttr>())
22150b57cec5SDimitry Andric     if (!SAA->isInherited())
22160b57cec5SDimitry Andric       return Definition;
22170b57cec5SDimitry Andric 
22180b57cec5SDimitry Andric   // A variable template specialization (other than a static data member
22190b57cec5SDimitry Andric   // template or an explicit specialization) is a declaration until we
22200b57cec5SDimitry Andric   // instantiate its initializer.
22210b57cec5SDimitry Andric   if (auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(this)) {
22220b57cec5SDimitry Andric     if (VTSD->getTemplateSpecializationKind() != TSK_ExplicitSpecialization &&
22230b57cec5SDimitry Andric         !isa<VarTemplatePartialSpecializationDecl>(VTSD) &&
22240b57cec5SDimitry Andric         !VTSD->IsCompleteDefinition)
22250b57cec5SDimitry Andric       return DeclarationOnly;
22260b57cec5SDimitry Andric   }
22270b57cec5SDimitry Andric 
22280b57cec5SDimitry Andric   if (hasExternalStorage())
22290b57cec5SDimitry Andric     return DeclarationOnly;
22300b57cec5SDimitry Andric 
22310b57cec5SDimitry Andric   // [dcl.link] p7:
22320b57cec5SDimitry Andric   //   A declaration directly contained in a linkage-specification is treated
22330b57cec5SDimitry Andric   //   as if it contains the extern specifier for the purpose of determining
22340b57cec5SDimitry Andric   //   the linkage of the declared name and whether it is a definition.
22350b57cec5SDimitry Andric   if (isSingleLineLanguageLinkage(*this))
22360b57cec5SDimitry Andric     return DeclarationOnly;
22370b57cec5SDimitry Andric 
22380b57cec5SDimitry Andric   // C99 6.9.2p2:
22390b57cec5SDimitry Andric   //   A declaration of an object that has file scope without an initializer,
22400b57cec5SDimitry Andric   //   and without a storage class specifier or the scs 'static', constitutes
22410b57cec5SDimitry Andric   //   a tentative definition.
22420b57cec5SDimitry Andric   // No such thing in C++.
22430b57cec5SDimitry Andric   if (!C.getLangOpts().CPlusPlus && isFileVarDecl())
22440b57cec5SDimitry Andric     return TentativeDefinition;
22450b57cec5SDimitry Andric 
22460b57cec5SDimitry Andric   // What's left is (in C, block-scope) declarations without initializers or
22470b57cec5SDimitry Andric   // external storage. These are definitions.
22480b57cec5SDimitry Andric   return Definition;
22490b57cec5SDimitry Andric }
22500b57cec5SDimitry Andric 
22510b57cec5SDimitry Andric VarDecl *VarDecl::getActingDefinition() {
22520b57cec5SDimitry Andric   DefinitionKind Kind = isThisDeclarationADefinition();
22530b57cec5SDimitry Andric   if (Kind != TentativeDefinition)
22540b57cec5SDimitry Andric     return nullptr;
22550b57cec5SDimitry Andric 
22560b57cec5SDimitry Andric   VarDecl *LastTentative = nullptr;
2257349cc55cSDimitry Andric 
2258349cc55cSDimitry Andric   // Loop through the declaration chain, starting with the most recent.
2259349cc55cSDimitry Andric   for (VarDecl *Decl = getMostRecentDecl(); Decl;
2260349cc55cSDimitry Andric        Decl = Decl->getPreviousDecl()) {
2261349cc55cSDimitry Andric     Kind = Decl->isThisDeclarationADefinition();
22620b57cec5SDimitry Andric     if (Kind == Definition)
22630b57cec5SDimitry Andric       return nullptr;
2264349cc55cSDimitry Andric     // Record the first (most recent) TentativeDefinition that is encountered.
2265349cc55cSDimitry Andric     if (Kind == TentativeDefinition && !LastTentative)
2266349cc55cSDimitry Andric       LastTentative = Decl;
22670b57cec5SDimitry Andric   }
2268349cc55cSDimitry Andric 
22690b57cec5SDimitry Andric   return LastTentative;
22700b57cec5SDimitry Andric }
22710b57cec5SDimitry Andric 
22720b57cec5SDimitry Andric VarDecl *VarDecl::getDefinition(ASTContext &C) {
22730b57cec5SDimitry Andric   VarDecl *First = getFirstDecl();
22740b57cec5SDimitry Andric   for (auto I : First->redecls()) {
22750b57cec5SDimitry Andric     if (I->isThisDeclarationADefinition(C) == Definition)
22760b57cec5SDimitry Andric       return I;
22770b57cec5SDimitry Andric   }
22780b57cec5SDimitry Andric   return nullptr;
22790b57cec5SDimitry Andric }
22800b57cec5SDimitry Andric 
22810b57cec5SDimitry Andric VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const {
22820b57cec5SDimitry Andric   DefinitionKind Kind = DeclarationOnly;
22830b57cec5SDimitry Andric 
22840b57cec5SDimitry Andric   const VarDecl *First = getFirstDecl();
22850b57cec5SDimitry Andric   for (auto I : First->redecls()) {
22860b57cec5SDimitry Andric     Kind = std::max(Kind, I->isThisDeclarationADefinition(C));
22870b57cec5SDimitry Andric     if (Kind == Definition)
22880b57cec5SDimitry Andric       break;
22890b57cec5SDimitry Andric   }
22900b57cec5SDimitry Andric 
22910b57cec5SDimitry Andric   return Kind;
22920b57cec5SDimitry Andric }
22930b57cec5SDimitry Andric 
22940b57cec5SDimitry Andric const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const {
22950b57cec5SDimitry Andric   for (auto I : redecls()) {
22960b57cec5SDimitry Andric     if (auto Expr = I->getInit()) {
22970b57cec5SDimitry Andric       D = I;
22980b57cec5SDimitry Andric       return Expr;
22990b57cec5SDimitry Andric     }
23000b57cec5SDimitry Andric   }
23010b57cec5SDimitry Andric   return nullptr;
23020b57cec5SDimitry Andric }
23030b57cec5SDimitry Andric 
23040b57cec5SDimitry Andric bool VarDecl::hasInit() const {
23050b57cec5SDimitry Andric   if (auto *P = dyn_cast<ParmVarDecl>(this))
23060b57cec5SDimitry Andric     if (P->hasUnparsedDefaultArg() || P->hasUninstantiatedDefaultArg())
23070b57cec5SDimitry Andric       return false;
23080b57cec5SDimitry Andric 
23090b57cec5SDimitry Andric   return !Init.isNull();
23100b57cec5SDimitry Andric }
23110b57cec5SDimitry Andric 
23120b57cec5SDimitry Andric Expr *VarDecl::getInit() {
23130b57cec5SDimitry Andric   if (!hasInit())
23140b57cec5SDimitry Andric     return nullptr;
23150b57cec5SDimitry Andric 
23160b57cec5SDimitry Andric   if (auto *S = Init.dyn_cast<Stmt *>())
23170b57cec5SDimitry Andric     return cast<Expr>(S);
23180b57cec5SDimitry Andric 
23190b57cec5SDimitry Andric   return cast_or_null<Expr>(Init.get<EvaluatedStmt *>()->Value);
23200b57cec5SDimitry Andric }
23210b57cec5SDimitry Andric 
23220b57cec5SDimitry Andric Stmt **VarDecl::getInitAddress() {
23230b57cec5SDimitry Andric   if (auto *ES = Init.dyn_cast<EvaluatedStmt *>())
23240b57cec5SDimitry Andric     return &ES->Value;
23250b57cec5SDimitry Andric 
23260b57cec5SDimitry Andric   return Init.getAddrOfPtr1();
23270b57cec5SDimitry Andric }
23280b57cec5SDimitry Andric 
2329a7dea167SDimitry Andric VarDecl *VarDecl::getInitializingDeclaration() {
2330a7dea167SDimitry Andric   VarDecl *Def = nullptr;
2331a7dea167SDimitry Andric   for (auto I : redecls()) {
2332a7dea167SDimitry Andric     if (I->hasInit())
2333a7dea167SDimitry Andric       return I;
2334a7dea167SDimitry Andric 
2335a7dea167SDimitry Andric     if (I->isThisDeclarationADefinition()) {
2336a7dea167SDimitry Andric       if (isStaticDataMember())
2337a7dea167SDimitry Andric         return I;
2338a7dea167SDimitry Andric       Def = I;
2339a7dea167SDimitry Andric     }
2340a7dea167SDimitry Andric   }
2341a7dea167SDimitry Andric   return Def;
2342a7dea167SDimitry Andric }
2343a7dea167SDimitry Andric 
23440b57cec5SDimitry Andric bool VarDecl::isOutOfLine() const {
23450b57cec5SDimitry Andric   if (Decl::isOutOfLine())
23460b57cec5SDimitry Andric     return true;
23470b57cec5SDimitry Andric 
23480b57cec5SDimitry Andric   if (!isStaticDataMember())
23490b57cec5SDimitry Andric     return false;
23500b57cec5SDimitry Andric 
23510b57cec5SDimitry Andric   // If this static data member was instantiated from a static data member of
23520b57cec5SDimitry Andric   // a class template, check whether that static data member was defined
23530b57cec5SDimitry Andric   // out-of-line.
23540b57cec5SDimitry Andric   if (VarDecl *VD = getInstantiatedFromStaticDataMember())
23550b57cec5SDimitry Andric     return VD->isOutOfLine();
23560b57cec5SDimitry Andric 
23570b57cec5SDimitry Andric   return false;
23580b57cec5SDimitry Andric }
23590b57cec5SDimitry Andric 
23600b57cec5SDimitry Andric void VarDecl::setInit(Expr *I) {
23610b57cec5SDimitry Andric   if (auto *Eval = Init.dyn_cast<EvaluatedStmt *>()) {
23620b57cec5SDimitry Andric     Eval->~EvaluatedStmt();
23630b57cec5SDimitry Andric     getASTContext().Deallocate(Eval);
23640b57cec5SDimitry Andric   }
23650b57cec5SDimitry Andric 
23660b57cec5SDimitry Andric   Init = I;
23670b57cec5SDimitry Andric }
23680b57cec5SDimitry Andric 
2369e8d8bef9SDimitry Andric bool VarDecl::mightBeUsableInConstantExpressions(const ASTContext &C) const {
23700b57cec5SDimitry Andric   const LangOptions &Lang = C.getLangOpts();
23710b57cec5SDimitry Andric 
2372e8d8bef9SDimitry Andric   // OpenCL permits const integral variables to be used in constant
2373e8d8bef9SDimitry Andric   // expressions, like in C++98.
2374e8d8bef9SDimitry Andric   if (!Lang.CPlusPlus && !Lang.OpenCL)
23750b57cec5SDimitry Andric     return false;
23760b57cec5SDimitry Andric 
23770b57cec5SDimitry Andric   // Function parameters are never usable in constant expressions.
23780b57cec5SDimitry Andric   if (isa<ParmVarDecl>(this))
23790b57cec5SDimitry Andric     return false;
23800b57cec5SDimitry Andric 
2381e8d8bef9SDimitry Andric   // The values of weak variables are never usable in constant expressions.
2382e8d8bef9SDimitry Andric   if (isWeak())
2383e8d8bef9SDimitry Andric     return false;
2384e8d8bef9SDimitry Andric 
23850b57cec5SDimitry Andric   // In C++11, any variable of reference type can be used in a constant
23860b57cec5SDimitry Andric   // expression if it is initialized by a constant expression.
23870b57cec5SDimitry Andric   if (Lang.CPlusPlus11 && getType()->isReferenceType())
23880b57cec5SDimitry Andric     return true;
23890b57cec5SDimitry Andric 
23900b57cec5SDimitry Andric   // Only const objects can be used in constant expressions in C++. C++98 does
23910b57cec5SDimitry Andric   // not require the variable to be non-volatile, but we consider this to be a
23920b57cec5SDimitry Andric   // defect.
2393e8d8bef9SDimitry Andric   if (!getType().isConstant(C) || getType().isVolatileQualified())
23940b57cec5SDimitry Andric     return false;
23950b57cec5SDimitry Andric 
23960b57cec5SDimitry Andric   // In C++, const, non-volatile variables of integral or enumeration types
23970b57cec5SDimitry Andric   // can be used in constant expressions.
23980b57cec5SDimitry Andric   if (getType()->isIntegralOrEnumerationType())
23990b57cec5SDimitry Andric     return true;
24000b57cec5SDimitry Andric 
24010b57cec5SDimitry Andric   // Additionally, in C++11, non-volatile constexpr variables can be used in
24020b57cec5SDimitry Andric   // constant expressions.
24030b57cec5SDimitry Andric   return Lang.CPlusPlus11 && isConstexpr();
24040b57cec5SDimitry Andric }
24050b57cec5SDimitry Andric 
2406e8d8bef9SDimitry Andric bool VarDecl::isUsableInConstantExpressions(const ASTContext &Context) const {
24070b57cec5SDimitry Andric   // C++2a [expr.const]p3:
24080b57cec5SDimitry Andric   //   A variable is usable in constant expressions after its initializing
24090b57cec5SDimitry Andric   //   declaration is encountered...
24100b57cec5SDimitry Andric   const VarDecl *DefVD = nullptr;
24110b57cec5SDimitry Andric   const Expr *Init = getAnyInitializer(DefVD);
24120b57cec5SDimitry Andric   if (!Init || Init->isValueDependent() || getType()->isDependentType())
24130b57cec5SDimitry Andric     return false;
24140b57cec5SDimitry Andric   //   ... if it is a constexpr variable, or it is of reference type or of
24150b57cec5SDimitry Andric   //   const-qualified integral or enumeration type, ...
24160b57cec5SDimitry Andric   if (!DefVD->mightBeUsableInConstantExpressions(Context))
24170b57cec5SDimitry Andric     return false;
24180b57cec5SDimitry Andric   //   ... and its initializer is a constant initializer.
2419e8d8bef9SDimitry Andric   if (Context.getLangOpts().CPlusPlus && !DefVD->hasConstantInitialization())
2420e8d8bef9SDimitry Andric     return false;
2421e8d8bef9SDimitry Andric   // C++98 [expr.const]p1:
2422e8d8bef9SDimitry Andric   //   An integral constant-expression can involve only [...] const variables
2423e8d8bef9SDimitry Andric   //   or static data members of integral or enumeration types initialized with
2424e8d8bef9SDimitry Andric   //   [integer] constant expressions (dcl.init)
2425e8d8bef9SDimitry Andric   if ((Context.getLangOpts().CPlusPlus || Context.getLangOpts().OpenCL) &&
2426e8d8bef9SDimitry Andric       !Context.getLangOpts().CPlusPlus11 && !DefVD->hasICEInitializer(Context))
2427e8d8bef9SDimitry Andric     return false;
2428e8d8bef9SDimitry Andric   return true;
24290b57cec5SDimitry Andric }
24300b57cec5SDimitry Andric 
24310b57cec5SDimitry Andric /// Convert the initializer for this declaration to the elaborated EvaluatedStmt
24320b57cec5SDimitry Andric /// form, which contains extra information on the evaluated value of the
24330b57cec5SDimitry Andric /// initializer.
24340b57cec5SDimitry Andric EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const {
24350b57cec5SDimitry Andric   auto *Eval = Init.dyn_cast<EvaluatedStmt *>();
24360b57cec5SDimitry Andric   if (!Eval) {
24370b57cec5SDimitry Andric     // Note: EvaluatedStmt contains an APValue, which usually holds
24380b57cec5SDimitry Andric     // resources not allocated from the ASTContext.  We need to do some
24390b57cec5SDimitry Andric     // work to avoid leaking those, but we do so in VarDecl::evaluateValue
24400b57cec5SDimitry Andric     // where we can detect whether there's anything to clean up or not.
24410b57cec5SDimitry Andric     Eval = new (getASTContext()) EvaluatedStmt;
24420b57cec5SDimitry Andric     Eval->Value = Init.get<Stmt *>();
24430b57cec5SDimitry Andric     Init = Eval;
24440b57cec5SDimitry Andric   }
24450b57cec5SDimitry Andric   return Eval;
24460b57cec5SDimitry Andric }
24470b57cec5SDimitry Andric 
2448e8d8bef9SDimitry Andric EvaluatedStmt *VarDecl::getEvaluatedStmt() const {
2449e8d8bef9SDimitry Andric   return Init.dyn_cast<EvaluatedStmt *>();
24500b57cec5SDimitry Andric }
24510b57cec5SDimitry Andric 
2452e8d8bef9SDimitry Andric APValue *VarDecl::evaluateValue() const {
2453e8d8bef9SDimitry Andric   SmallVector<PartialDiagnosticAt, 8> Notes;
2454d409305fSDimitry Andric   return evaluateValue(Notes);
2455e8d8bef9SDimitry Andric }
2456e8d8bef9SDimitry Andric 
2457d409305fSDimitry Andric APValue *VarDecl::evaluateValue(
2458d409305fSDimitry Andric     SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
24590b57cec5SDimitry Andric   EvaluatedStmt *Eval = ensureEvaluatedStmt();
24600b57cec5SDimitry Andric 
2461e8d8bef9SDimitry Andric   const auto *Init = cast<Expr>(Eval->Value);
2462e8d8bef9SDimitry Andric   assert(!Init->isValueDependent());
2463e8d8bef9SDimitry Andric 
24640b57cec5SDimitry Andric   // We only produce notes indicating why an initializer is non-constant the
24650b57cec5SDimitry Andric   // first time it is evaluated. FIXME: The notes won't always be emitted the
24660b57cec5SDimitry Andric   // first time we try evaluation, so might not be produced at all.
24670b57cec5SDimitry Andric   if (Eval->WasEvaluated)
24680b57cec5SDimitry Andric     return Eval->Evaluated.isAbsent() ? nullptr : &Eval->Evaluated;
24690b57cec5SDimitry Andric 
24700b57cec5SDimitry Andric   if (Eval->IsEvaluating) {
24710b57cec5SDimitry Andric     // FIXME: Produce a diagnostic for self-initialization.
24720b57cec5SDimitry Andric     return nullptr;
24730b57cec5SDimitry Andric   }
24740b57cec5SDimitry Andric 
24750b57cec5SDimitry Andric   Eval->IsEvaluating = true;
24760b57cec5SDimitry Andric 
2477d409305fSDimitry Andric   bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(),
2478d409305fSDimitry Andric                                             this, Notes);
24790b57cec5SDimitry Andric 
24800b57cec5SDimitry Andric   // Ensure the computed APValue is cleaned up later if evaluation succeeded,
24810b57cec5SDimitry Andric   // or that it's empty (so that there's nothing to clean up) if evaluation
24820b57cec5SDimitry Andric   // failed.
24830b57cec5SDimitry Andric   if (!Result)
24840b57cec5SDimitry Andric     Eval->Evaluated = APValue();
24850b57cec5SDimitry Andric   else if (Eval->Evaluated.needsCleanup())
2486d409305fSDimitry Andric     getASTContext().addDestruction(&Eval->Evaluated);
24870b57cec5SDimitry Andric 
24880b57cec5SDimitry Andric   Eval->IsEvaluating = false;
24890b57cec5SDimitry Andric   Eval->WasEvaluated = true;
24900b57cec5SDimitry Andric 
24910b57cec5SDimitry Andric   return Result ? &Eval->Evaluated : nullptr;
24920b57cec5SDimitry Andric }
24930b57cec5SDimitry Andric 
24940b57cec5SDimitry Andric APValue *VarDecl::getEvaluatedValue() const {
2495e8d8bef9SDimitry Andric   if (EvaluatedStmt *Eval = getEvaluatedStmt())
24960b57cec5SDimitry Andric     if (Eval->WasEvaluated)
24970b57cec5SDimitry Andric       return &Eval->Evaluated;
24980b57cec5SDimitry Andric 
24990b57cec5SDimitry Andric   return nullptr;
25000b57cec5SDimitry Andric }
25010b57cec5SDimitry Andric 
2502e8d8bef9SDimitry Andric bool VarDecl::hasICEInitializer(const ASTContext &Context) const {
2503e8d8bef9SDimitry Andric   const Expr *Init = getInit();
2504e8d8bef9SDimitry Andric   assert(Init && "no initializer");
25050b57cec5SDimitry Andric 
25060b57cec5SDimitry Andric   EvaluatedStmt *Eval = ensureEvaluatedStmt();
2507e8d8bef9SDimitry Andric   if (!Eval->CheckedForICEInit) {
2508e8d8bef9SDimitry Andric     Eval->CheckedForICEInit = true;
2509e8d8bef9SDimitry Andric     Eval->HasICEInit = Init->isIntegerConstantExpr(Context);
2510e8d8bef9SDimitry Andric   }
2511e8d8bef9SDimitry Andric   return Eval->HasICEInit;
25120b57cec5SDimitry Andric }
25130b57cec5SDimitry Andric 
2514e8d8bef9SDimitry Andric bool VarDecl::hasConstantInitialization() const {
2515e8d8bef9SDimitry Andric   // In C, all globals (and only globals) have constant initialization.
2516e8d8bef9SDimitry Andric   if (hasGlobalStorage() && !getASTContext().getLangOpts().CPlusPlus)
2517e8d8bef9SDimitry Andric     return true;
25180b57cec5SDimitry Andric 
2519e8d8bef9SDimitry Andric   // In C++, it depends on whether the evaluation at the point of definition
2520e8d8bef9SDimitry Andric   // was evaluatable as a constant initializer.
2521e8d8bef9SDimitry Andric   if (EvaluatedStmt *Eval = getEvaluatedStmt())
2522e8d8bef9SDimitry Andric     return Eval->HasConstantInitialization;
2523e8d8bef9SDimitry Andric 
25240b57cec5SDimitry Andric   return false;
2525e8d8bef9SDimitry Andric }
25260b57cec5SDimitry Andric 
2527e8d8bef9SDimitry Andric bool VarDecl::checkForConstantInitialization(
2528e8d8bef9SDimitry Andric     SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
2529e8d8bef9SDimitry Andric   EvaluatedStmt *Eval = ensureEvaluatedStmt();
2530e8d8bef9SDimitry Andric   // If we ask for the value before we know whether we have a constant
2531e8d8bef9SDimitry Andric   // initializer, we can compute the wrong value (for example, due to
2532e8d8bef9SDimitry Andric   // std::is_constant_evaluated()).
2533e8d8bef9SDimitry Andric   assert(!Eval->WasEvaluated &&
2534e8d8bef9SDimitry Andric          "already evaluated var value before checking for constant init");
2535e8d8bef9SDimitry Andric   assert(getASTContext().getLangOpts().CPlusPlus && "only meaningful in C++");
2536e8d8bef9SDimitry Andric 
2537e8d8bef9SDimitry Andric   assert(!cast<Expr>(Eval->Value)->isValueDependent());
2538e8d8bef9SDimitry Andric 
2539e8d8bef9SDimitry Andric   // Evaluate the initializer to check whether it's a constant expression.
2540d409305fSDimitry Andric   Eval->HasConstantInitialization = evaluateValue(Notes) && Notes.empty();
2541e8d8bef9SDimitry Andric   return Eval->HasConstantInitialization;
25420b57cec5SDimitry Andric }
25430b57cec5SDimitry Andric 
25440b57cec5SDimitry Andric bool VarDecl::isParameterPack() const {
25450b57cec5SDimitry Andric   return isa<PackExpansionType>(getType());
25460b57cec5SDimitry Andric }
25470b57cec5SDimitry Andric 
25480b57cec5SDimitry Andric template<typename DeclT>
25490b57cec5SDimitry Andric static DeclT *getDefinitionOrSelf(DeclT *D) {
25500b57cec5SDimitry Andric   assert(D);
25510b57cec5SDimitry Andric   if (auto *Def = D->getDefinition())
25520b57cec5SDimitry Andric     return Def;
25530b57cec5SDimitry Andric   return D;
25540b57cec5SDimitry Andric }
25550b57cec5SDimitry Andric 
25560b57cec5SDimitry Andric bool VarDecl::isEscapingByref() const {
25570b57cec5SDimitry Andric   return hasAttr<BlocksAttr>() && NonParmVarDeclBits.EscapingByref;
25580b57cec5SDimitry Andric }
25590b57cec5SDimitry Andric 
25600b57cec5SDimitry Andric bool VarDecl::isNonEscapingByref() const {
25610b57cec5SDimitry Andric   return hasAttr<BlocksAttr>() && !NonParmVarDeclBits.EscapingByref;
25620b57cec5SDimitry Andric }
25630b57cec5SDimitry Andric 
2564fe6060f1SDimitry Andric bool VarDecl::hasDependentAlignment() const {
2565fe6060f1SDimitry Andric   QualType T = getType();
2566fe6060f1SDimitry Andric   return T->isDependentType() || T->isUndeducedAutoType() ||
2567fe6060f1SDimitry Andric          llvm::any_of(specific_attrs<AlignedAttr>(), [](const AlignedAttr *AA) {
2568fe6060f1SDimitry Andric            return AA->isAlignmentDependent();
2569fe6060f1SDimitry Andric          });
2570fe6060f1SDimitry Andric }
2571fe6060f1SDimitry Andric 
25720b57cec5SDimitry Andric VarDecl *VarDecl::getTemplateInstantiationPattern() const {
25730b57cec5SDimitry Andric   const VarDecl *VD = this;
25740b57cec5SDimitry Andric 
25750b57cec5SDimitry Andric   // If this is an instantiated member, walk back to the template from which
25760b57cec5SDimitry Andric   // it was instantiated.
25770b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo()) {
25780b57cec5SDimitry Andric     if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
25790b57cec5SDimitry Andric       VD = VD->getInstantiatedFromStaticDataMember();
25800b57cec5SDimitry Andric       while (auto *NewVD = VD->getInstantiatedFromStaticDataMember())
25810b57cec5SDimitry Andric         VD = NewVD;
25820b57cec5SDimitry Andric     }
25830b57cec5SDimitry Andric   }
25840b57cec5SDimitry Andric 
25850b57cec5SDimitry Andric   // If it's an instantiated variable template specialization, find the
25860b57cec5SDimitry Andric   // template or partial specialization from which it was instantiated.
25870b57cec5SDimitry Andric   if (auto *VDTemplSpec = dyn_cast<VarTemplateSpecializationDecl>(VD)) {
25880b57cec5SDimitry Andric     if (isTemplateInstantiation(VDTemplSpec->getTemplateSpecializationKind())) {
25890b57cec5SDimitry Andric       auto From = VDTemplSpec->getInstantiatedFrom();
25900b57cec5SDimitry Andric       if (auto *VTD = From.dyn_cast<VarTemplateDecl *>()) {
25910b57cec5SDimitry Andric         while (!VTD->isMemberSpecialization()) {
25920b57cec5SDimitry Andric           auto *NewVTD = VTD->getInstantiatedFromMemberTemplate();
25930b57cec5SDimitry Andric           if (!NewVTD)
25940b57cec5SDimitry Andric             break;
25950b57cec5SDimitry Andric           VTD = NewVTD;
25960b57cec5SDimitry Andric         }
25970b57cec5SDimitry Andric         return getDefinitionOrSelf(VTD->getTemplatedDecl());
25980b57cec5SDimitry Andric       }
25990b57cec5SDimitry Andric       if (auto *VTPSD =
26000b57cec5SDimitry Andric               From.dyn_cast<VarTemplatePartialSpecializationDecl *>()) {
26010b57cec5SDimitry Andric         while (!VTPSD->isMemberSpecialization()) {
26020b57cec5SDimitry Andric           auto *NewVTPSD = VTPSD->getInstantiatedFromMember();
26030b57cec5SDimitry Andric           if (!NewVTPSD)
26040b57cec5SDimitry Andric             break;
26050b57cec5SDimitry Andric           VTPSD = NewVTPSD;
26060b57cec5SDimitry Andric         }
26070b57cec5SDimitry Andric         return getDefinitionOrSelf<VarDecl>(VTPSD);
26080b57cec5SDimitry Andric       }
26090b57cec5SDimitry Andric     }
26100b57cec5SDimitry Andric   }
26110b57cec5SDimitry Andric 
26120b57cec5SDimitry Andric   // If this is the pattern of a variable template, find where it was
26130b57cec5SDimitry Andric   // instantiated from. FIXME: Is this necessary?
26140b57cec5SDimitry Andric   if (VarTemplateDecl *VarTemplate = VD->getDescribedVarTemplate()) {
26150b57cec5SDimitry Andric     while (!VarTemplate->isMemberSpecialization()) {
26160b57cec5SDimitry Andric       auto *NewVT = VarTemplate->getInstantiatedFromMemberTemplate();
26170b57cec5SDimitry Andric       if (!NewVT)
26180b57cec5SDimitry Andric         break;
26190b57cec5SDimitry Andric       VarTemplate = NewVT;
26200b57cec5SDimitry Andric     }
26210b57cec5SDimitry Andric 
26220b57cec5SDimitry Andric     return getDefinitionOrSelf(VarTemplate->getTemplatedDecl());
26230b57cec5SDimitry Andric   }
26240b57cec5SDimitry Andric 
26250b57cec5SDimitry Andric   if (VD == this)
26260b57cec5SDimitry Andric     return nullptr;
26270b57cec5SDimitry Andric   return getDefinitionOrSelf(const_cast<VarDecl*>(VD));
26280b57cec5SDimitry Andric }
26290b57cec5SDimitry Andric 
26300b57cec5SDimitry Andric VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const {
26310b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
26320b57cec5SDimitry Andric     return cast<VarDecl>(MSI->getInstantiatedFrom());
26330b57cec5SDimitry Andric 
26340b57cec5SDimitry Andric   return nullptr;
26350b57cec5SDimitry Andric }
26360b57cec5SDimitry Andric 
26370b57cec5SDimitry Andric TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const {
26380b57cec5SDimitry Andric   if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
26390b57cec5SDimitry Andric     return Spec->getSpecializationKind();
26400b57cec5SDimitry Andric 
26410b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
26420b57cec5SDimitry Andric     return MSI->getTemplateSpecializationKind();
26430b57cec5SDimitry Andric 
26440b57cec5SDimitry Andric   return TSK_Undeclared;
26450b57cec5SDimitry Andric }
26460b57cec5SDimitry Andric 
26470b57cec5SDimitry Andric TemplateSpecializationKind
26480b57cec5SDimitry Andric VarDecl::getTemplateSpecializationKindForInstantiation() const {
26490b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
26500b57cec5SDimitry Andric     return MSI->getTemplateSpecializationKind();
26510b57cec5SDimitry Andric 
26520b57cec5SDimitry Andric   if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
26530b57cec5SDimitry Andric     return Spec->getSpecializationKind();
26540b57cec5SDimitry Andric 
26550b57cec5SDimitry Andric   return TSK_Undeclared;
26560b57cec5SDimitry Andric }
26570b57cec5SDimitry Andric 
26580b57cec5SDimitry Andric SourceLocation VarDecl::getPointOfInstantiation() const {
26590b57cec5SDimitry Andric   if (const auto *Spec = dyn_cast<VarTemplateSpecializationDecl>(this))
26600b57cec5SDimitry Andric     return Spec->getPointOfInstantiation();
26610b57cec5SDimitry Andric 
26620b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
26630b57cec5SDimitry Andric     return MSI->getPointOfInstantiation();
26640b57cec5SDimitry Andric 
26650b57cec5SDimitry Andric   return SourceLocation();
26660b57cec5SDimitry Andric }
26670b57cec5SDimitry Andric 
26680b57cec5SDimitry Andric VarTemplateDecl *VarDecl::getDescribedVarTemplate() const {
26690b57cec5SDimitry Andric   return getASTContext().getTemplateOrSpecializationInfo(this)
26700b57cec5SDimitry Andric       .dyn_cast<VarTemplateDecl *>();
26710b57cec5SDimitry Andric }
26720b57cec5SDimitry Andric 
26730b57cec5SDimitry Andric void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) {
26740b57cec5SDimitry Andric   getASTContext().setTemplateOrSpecializationInfo(this, Template);
26750b57cec5SDimitry Andric }
26760b57cec5SDimitry Andric 
26770b57cec5SDimitry Andric bool VarDecl::isKnownToBeDefined() const {
26780b57cec5SDimitry Andric   const auto &LangOpts = getASTContext().getLangOpts();
26790b57cec5SDimitry Andric   // In CUDA mode without relocatable device code, variables of form 'extern
26800b57cec5SDimitry Andric   // __shared__ Foo foo[]' are pointers to the base of the GPU core's shared
26810b57cec5SDimitry Andric   // memory pool.  These are never undefined variables, even if they appear
26820b57cec5SDimitry Andric   // inside of an anon namespace or static function.
26830b57cec5SDimitry Andric   //
26840b57cec5SDimitry Andric   // With CUDA relocatable device code enabled, these variables don't get
26850b57cec5SDimitry Andric   // special handling; they're treated like regular extern variables.
26860b57cec5SDimitry Andric   if (LangOpts.CUDA && !LangOpts.GPURelocatableDeviceCode &&
26870b57cec5SDimitry Andric       hasExternalStorage() && hasAttr<CUDASharedAttr>() &&
26880b57cec5SDimitry Andric       isa<IncompleteArrayType>(getType()))
26890b57cec5SDimitry Andric     return true;
26900b57cec5SDimitry Andric 
26910b57cec5SDimitry Andric   return hasDefinition();
26920b57cec5SDimitry Andric }
26930b57cec5SDimitry Andric 
26940b57cec5SDimitry Andric bool VarDecl::isNoDestroy(const ASTContext &Ctx) const {
26950b57cec5SDimitry Andric   return hasGlobalStorage() && (hasAttr<NoDestroyAttr>() ||
26960b57cec5SDimitry Andric                                 (!Ctx.getLangOpts().RegisterStaticDestructors &&
26970b57cec5SDimitry Andric                                  !hasAttr<AlwaysDestroyAttr>()));
26980b57cec5SDimitry Andric }
26990b57cec5SDimitry Andric 
2700a7dea167SDimitry Andric QualType::DestructionKind
2701a7dea167SDimitry Andric VarDecl::needsDestruction(const ASTContext &Ctx) const {
2702e8d8bef9SDimitry Andric   if (EvaluatedStmt *Eval = getEvaluatedStmt())
2703a7dea167SDimitry Andric     if (Eval->HasConstantDestruction)
2704a7dea167SDimitry Andric       return QualType::DK_none;
2705a7dea167SDimitry Andric 
2706a7dea167SDimitry Andric   if (isNoDestroy(Ctx))
2707a7dea167SDimitry Andric     return QualType::DK_none;
2708a7dea167SDimitry Andric 
2709a7dea167SDimitry Andric   return getType().isDestructedType();
2710a7dea167SDimitry Andric }
2711a7dea167SDimitry Andric 
2712*81ad6265SDimitry Andric bool VarDecl::hasFlexibleArrayInit(const ASTContext &Ctx) const {
2713*81ad6265SDimitry Andric   assert(hasInit() && "Expect initializer to check for flexible array init");
2714*81ad6265SDimitry Andric   auto *Ty = getType()->getAs<RecordType>();
2715*81ad6265SDimitry Andric   if (!Ty || !Ty->getDecl()->hasFlexibleArrayMember())
2716*81ad6265SDimitry Andric     return false;
2717*81ad6265SDimitry Andric   auto *List = dyn_cast<InitListExpr>(getInit()->IgnoreParens());
2718*81ad6265SDimitry Andric   if (!List)
2719*81ad6265SDimitry Andric     return false;
2720*81ad6265SDimitry Andric   const Expr *FlexibleInit = List->getInit(List->getNumInits() - 1);
2721*81ad6265SDimitry Andric   auto InitTy = Ctx.getAsConstantArrayType(FlexibleInit->getType());
2722*81ad6265SDimitry Andric   if (!InitTy)
2723*81ad6265SDimitry Andric     return false;
2724*81ad6265SDimitry Andric   return InitTy->getSize() != 0;
2725*81ad6265SDimitry Andric }
2726*81ad6265SDimitry Andric 
2727*81ad6265SDimitry Andric CharUnits VarDecl::getFlexibleArrayInitChars(const ASTContext &Ctx) const {
2728*81ad6265SDimitry Andric   assert(hasInit() && "Expect initializer to check for flexible array init");
2729*81ad6265SDimitry Andric   auto *Ty = getType()->getAs<RecordType>();
2730*81ad6265SDimitry Andric   if (!Ty || !Ty->getDecl()->hasFlexibleArrayMember())
2731*81ad6265SDimitry Andric     return CharUnits::Zero();
2732*81ad6265SDimitry Andric   auto *List = dyn_cast<InitListExpr>(getInit()->IgnoreParens());
2733*81ad6265SDimitry Andric   if (!List)
2734*81ad6265SDimitry Andric     return CharUnits::Zero();
2735*81ad6265SDimitry Andric   const Expr *FlexibleInit = List->getInit(List->getNumInits() - 1);
2736*81ad6265SDimitry Andric   auto InitTy = Ctx.getAsConstantArrayType(FlexibleInit->getType());
2737*81ad6265SDimitry Andric   if (!InitTy)
2738*81ad6265SDimitry Andric     return CharUnits::Zero();
2739*81ad6265SDimitry Andric   CharUnits FlexibleArraySize = Ctx.getTypeSizeInChars(InitTy);
2740*81ad6265SDimitry Andric   const ASTRecordLayout &RL = Ctx.getASTRecordLayout(Ty->getDecl());
2741*81ad6265SDimitry Andric   CharUnits FlexibleArrayOffset =
2742*81ad6265SDimitry Andric       Ctx.toCharUnitsFromBits(RL.getFieldOffset(RL.getFieldCount() - 1));
2743*81ad6265SDimitry Andric   if (FlexibleArrayOffset + FlexibleArraySize < RL.getSize())
2744*81ad6265SDimitry Andric     return CharUnits::Zero();
2745*81ad6265SDimitry Andric   return FlexibleArrayOffset + FlexibleArraySize - RL.getSize();
2746*81ad6265SDimitry Andric }
2747*81ad6265SDimitry Andric 
27480b57cec5SDimitry Andric MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const {
27490b57cec5SDimitry Andric   if (isStaticDataMember())
27500b57cec5SDimitry Andric     // FIXME: Remove ?
27510b57cec5SDimitry Andric     // return getASTContext().getInstantiatedFromStaticDataMember(this);
27520b57cec5SDimitry Andric     return getASTContext().getTemplateOrSpecializationInfo(this)
27530b57cec5SDimitry Andric         .dyn_cast<MemberSpecializationInfo *>();
27540b57cec5SDimitry Andric   return nullptr;
27550b57cec5SDimitry Andric }
27560b57cec5SDimitry Andric 
27570b57cec5SDimitry Andric void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
27580b57cec5SDimitry Andric                                          SourceLocation PointOfInstantiation) {
27590b57cec5SDimitry Andric   assert((isa<VarTemplateSpecializationDecl>(this) ||
27600b57cec5SDimitry Andric           getMemberSpecializationInfo()) &&
27610b57cec5SDimitry Andric          "not a variable or static data member template specialization");
27620b57cec5SDimitry Andric 
27630b57cec5SDimitry Andric   if (VarTemplateSpecializationDecl *Spec =
27640b57cec5SDimitry Andric           dyn_cast<VarTemplateSpecializationDecl>(this)) {
27650b57cec5SDimitry Andric     Spec->setSpecializationKind(TSK);
27660b57cec5SDimitry Andric     if (TSK != TSK_ExplicitSpecialization &&
27670b57cec5SDimitry Andric         PointOfInstantiation.isValid() &&
27680b57cec5SDimitry Andric         Spec->getPointOfInstantiation().isInvalid()) {
27690b57cec5SDimitry Andric       Spec->setPointOfInstantiation(PointOfInstantiation);
27700b57cec5SDimitry Andric       if (ASTMutationListener *L = getASTContext().getASTMutationListener())
27710b57cec5SDimitry Andric         L->InstantiationRequested(this);
27720b57cec5SDimitry Andric     }
27730b57cec5SDimitry Andric   } else if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) {
27740b57cec5SDimitry Andric     MSI->setTemplateSpecializationKind(TSK);
27750b57cec5SDimitry Andric     if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() &&
27760b57cec5SDimitry Andric         MSI->getPointOfInstantiation().isInvalid()) {
27770b57cec5SDimitry Andric       MSI->setPointOfInstantiation(PointOfInstantiation);
27780b57cec5SDimitry Andric       if (ASTMutationListener *L = getASTContext().getASTMutationListener())
27790b57cec5SDimitry Andric         L->InstantiationRequested(this);
27800b57cec5SDimitry Andric     }
27810b57cec5SDimitry Andric   }
27820b57cec5SDimitry Andric }
27830b57cec5SDimitry Andric 
27840b57cec5SDimitry Andric void
27850b57cec5SDimitry Andric VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD,
27860b57cec5SDimitry Andric                                             TemplateSpecializationKind TSK) {
27870b57cec5SDimitry Andric   assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() &&
27880b57cec5SDimitry Andric          "Previous template or instantiation?");
27890b57cec5SDimitry Andric   getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK);
27900b57cec5SDimitry Andric }
27910b57cec5SDimitry Andric 
27920b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
27930b57cec5SDimitry Andric // ParmVarDecl Implementation
27940b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
27950b57cec5SDimitry Andric 
27960b57cec5SDimitry Andric ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
27970b57cec5SDimitry Andric                                  SourceLocation StartLoc,
27980b57cec5SDimitry Andric                                  SourceLocation IdLoc, IdentifierInfo *Id,
27990b57cec5SDimitry Andric                                  QualType T, TypeSourceInfo *TInfo,
28000b57cec5SDimitry Andric                                  StorageClass S, Expr *DefArg) {
28010b57cec5SDimitry Andric   return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo,
28020b57cec5SDimitry Andric                                  S, DefArg);
28030b57cec5SDimitry Andric }
28040b57cec5SDimitry Andric 
28050b57cec5SDimitry Andric QualType ParmVarDecl::getOriginalType() const {
28060b57cec5SDimitry Andric   TypeSourceInfo *TSI = getTypeSourceInfo();
28070b57cec5SDimitry Andric   QualType T = TSI ? TSI->getType() : getType();
28080b57cec5SDimitry Andric   if (const auto *DT = dyn_cast<DecayedType>(T))
28090b57cec5SDimitry Andric     return DT->getOriginalType();
28100b57cec5SDimitry Andric   return T;
28110b57cec5SDimitry Andric }
28120b57cec5SDimitry Andric 
28130b57cec5SDimitry Andric ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
28140b57cec5SDimitry Andric   return new (C, ID)
28150b57cec5SDimitry Andric       ParmVarDecl(ParmVar, C, nullptr, SourceLocation(), SourceLocation(),
28160b57cec5SDimitry Andric                   nullptr, QualType(), nullptr, SC_None, nullptr);
28170b57cec5SDimitry Andric }
28180b57cec5SDimitry Andric 
28190b57cec5SDimitry Andric SourceRange ParmVarDecl::getSourceRange() const {
28200b57cec5SDimitry Andric   if (!hasInheritedDefaultArg()) {
28210b57cec5SDimitry Andric     SourceRange ArgRange = getDefaultArgRange();
28220b57cec5SDimitry Andric     if (ArgRange.isValid())
28230b57cec5SDimitry Andric       return SourceRange(getOuterLocStart(), ArgRange.getEnd());
28240b57cec5SDimitry Andric   }
28250b57cec5SDimitry Andric 
28260b57cec5SDimitry Andric   // DeclaratorDecl considers the range of postfix types as overlapping with the
28270b57cec5SDimitry Andric   // declaration name, but this is not the case with parameters in ObjC methods.
28280b57cec5SDimitry Andric   if (isa<ObjCMethodDecl>(getDeclContext()))
28290b57cec5SDimitry Andric     return SourceRange(DeclaratorDecl::getBeginLoc(), getLocation());
28300b57cec5SDimitry Andric 
28310b57cec5SDimitry Andric   return DeclaratorDecl::getSourceRange();
28320b57cec5SDimitry Andric }
28330b57cec5SDimitry Andric 
2834e8d8bef9SDimitry Andric bool ParmVarDecl::isDestroyedInCallee() const {
2835349cc55cSDimitry Andric   // ns_consumed only affects code generation in ARC
2836e8d8bef9SDimitry Andric   if (hasAttr<NSConsumedAttr>())
2837349cc55cSDimitry Andric     return getASTContext().getLangOpts().ObjCAutoRefCount;
2838e8d8bef9SDimitry Andric 
2839349cc55cSDimitry Andric   // FIXME: isParamDestroyedInCallee() should probably imply
2840349cc55cSDimitry Andric   // isDestructedType()
2841e8d8bef9SDimitry Andric   auto *RT = getType()->getAs<RecordType>();
2842349cc55cSDimitry Andric   if (RT && RT->getDecl()->isParamDestroyedInCallee() &&
2843349cc55cSDimitry Andric       getType().isDestructedType())
2844e8d8bef9SDimitry Andric     return true;
2845e8d8bef9SDimitry Andric 
2846e8d8bef9SDimitry Andric   return false;
2847e8d8bef9SDimitry Andric }
2848e8d8bef9SDimitry Andric 
28490b57cec5SDimitry Andric Expr *ParmVarDecl::getDefaultArg() {
28500b57cec5SDimitry Andric   assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!");
28510b57cec5SDimitry Andric   assert(!hasUninstantiatedDefaultArg() &&
28520b57cec5SDimitry Andric          "Default argument is not yet instantiated!");
28530b57cec5SDimitry Andric 
28540b57cec5SDimitry Andric   Expr *Arg = getInit();
28550b57cec5SDimitry Andric   if (auto *E = dyn_cast_or_null<FullExpr>(Arg))
2856*81ad6265SDimitry Andric     if (!isa<ConstantExpr>(E))
28570b57cec5SDimitry Andric       return E->getSubExpr();
28580b57cec5SDimitry Andric 
28590b57cec5SDimitry Andric   return Arg;
28600b57cec5SDimitry Andric }
28610b57cec5SDimitry Andric 
28620b57cec5SDimitry Andric void ParmVarDecl::setDefaultArg(Expr *defarg) {
28630b57cec5SDimitry Andric   ParmVarDeclBits.DefaultArgKind = DAK_Normal;
28640b57cec5SDimitry Andric   Init = defarg;
28650b57cec5SDimitry Andric }
28660b57cec5SDimitry Andric 
28670b57cec5SDimitry Andric SourceRange ParmVarDecl::getDefaultArgRange() const {
28680b57cec5SDimitry Andric   switch (ParmVarDeclBits.DefaultArgKind) {
28690b57cec5SDimitry Andric   case DAK_None:
28700b57cec5SDimitry Andric   case DAK_Unparsed:
28710b57cec5SDimitry Andric     // Nothing we can do here.
28720b57cec5SDimitry Andric     return SourceRange();
28730b57cec5SDimitry Andric 
28740b57cec5SDimitry Andric   case DAK_Uninstantiated:
28750b57cec5SDimitry Andric     return getUninstantiatedDefaultArg()->getSourceRange();
28760b57cec5SDimitry Andric 
28770b57cec5SDimitry Andric   case DAK_Normal:
28780b57cec5SDimitry Andric     if (const Expr *E = getInit())
28790b57cec5SDimitry Andric       return E->getSourceRange();
28800b57cec5SDimitry Andric 
28810b57cec5SDimitry Andric     // Missing an actual expression, may be invalid.
28820b57cec5SDimitry Andric     return SourceRange();
28830b57cec5SDimitry Andric   }
28840b57cec5SDimitry Andric   llvm_unreachable("Invalid default argument kind.");
28850b57cec5SDimitry Andric }
28860b57cec5SDimitry Andric 
28870b57cec5SDimitry Andric void ParmVarDecl::setUninstantiatedDefaultArg(Expr *arg) {
28880b57cec5SDimitry Andric   ParmVarDeclBits.DefaultArgKind = DAK_Uninstantiated;
28890b57cec5SDimitry Andric   Init = arg;
28900b57cec5SDimitry Andric }
28910b57cec5SDimitry Andric 
28920b57cec5SDimitry Andric Expr *ParmVarDecl::getUninstantiatedDefaultArg() {
28930b57cec5SDimitry Andric   assert(hasUninstantiatedDefaultArg() &&
28940b57cec5SDimitry Andric          "Wrong kind of initialization expression!");
28950b57cec5SDimitry Andric   return cast_or_null<Expr>(Init.get<Stmt *>());
28960b57cec5SDimitry Andric }
28970b57cec5SDimitry Andric 
28980b57cec5SDimitry Andric bool ParmVarDecl::hasDefaultArg() const {
28990b57cec5SDimitry Andric   // FIXME: We should just return false for DAK_None here once callers are
29000b57cec5SDimitry Andric   // prepared for the case that we encountered an invalid default argument and
29010b57cec5SDimitry Andric   // were unable to even build an invalid expression.
29020b57cec5SDimitry Andric   return hasUnparsedDefaultArg() || hasUninstantiatedDefaultArg() ||
29030b57cec5SDimitry Andric          !Init.isNull();
29040b57cec5SDimitry Andric }
29050b57cec5SDimitry Andric 
29060b57cec5SDimitry Andric void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) {
29070b57cec5SDimitry Andric   getASTContext().setParameterIndex(this, parameterIndex);
29080b57cec5SDimitry Andric   ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel;
29090b57cec5SDimitry Andric }
29100b57cec5SDimitry Andric 
29110b57cec5SDimitry Andric unsigned ParmVarDecl::getParameterIndexLarge() const {
29120b57cec5SDimitry Andric   return getASTContext().getParameterIndex(this);
29130b57cec5SDimitry Andric }
29140b57cec5SDimitry Andric 
29150b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
29160b57cec5SDimitry Andric // FunctionDecl Implementation
29170b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
29180b57cec5SDimitry Andric 
29190b57cec5SDimitry Andric FunctionDecl::FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC,
29200b57cec5SDimitry Andric                            SourceLocation StartLoc,
29210b57cec5SDimitry Andric                            const DeclarationNameInfo &NameInfo, QualType T,
29220b57cec5SDimitry Andric                            TypeSourceInfo *TInfo, StorageClass S,
2923349cc55cSDimitry Andric                            bool UsesFPIntrin, bool isInlineSpecified,
2924480093f4SDimitry Andric                            ConstexprSpecKind ConstexprKind,
2925480093f4SDimitry Andric                            Expr *TrailingRequiresClause)
29260b57cec5SDimitry Andric     : DeclaratorDecl(DK, DC, NameInfo.getLoc(), NameInfo.getName(), T, TInfo,
29270b57cec5SDimitry Andric                      StartLoc),
2928480093f4SDimitry Andric       DeclContext(DK), redeclarable_base(C), Body(), ODRHash(0),
29290b57cec5SDimitry Andric       EndRangeLoc(NameInfo.getEndLoc()), DNLoc(NameInfo.getInfo()) {
29300b57cec5SDimitry Andric   assert(T.isNull() || T->isFunctionType());
29310b57cec5SDimitry Andric   FunctionDeclBits.SClass = S;
29320b57cec5SDimitry Andric   FunctionDeclBits.IsInline = isInlineSpecified;
29330b57cec5SDimitry Andric   FunctionDeclBits.IsInlineSpecified = isInlineSpecified;
29340b57cec5SDimitry Andric   FunctionDeclBits.IsVirtualAsWritten = false;
29350b57cec5SDimitry Andric   FunctionDeclBits.IsPure = false;
29360b57cec5SDimitry Andric   FunctionDeclBits.HasInheritedPrototype = false;
29370b57cec5SDimitry Andric   FunctionDeclBits.HasWrittenPrototype = true;
29380b57cec5SDimitry Andric   FunctionDeclBits.IsDeleted = false;
29390b57cec5SDimitry Andric   FunctionDeclBits.IsTrivial = false;
29400b57cec5SDimitry Andric   FunctionDeclBits.IsTrivialForCall = false;
29410b57cec5SDimitry Andric   FunctionDeclBits.IsDefaulted = false;
29420b57cec5SDimitry Andric   FunctionDeclBits.IsExplicitlyDefaulted = false;
2943480093f4SDimitry Andric   FunctionDeclBits.HasDefaultedFunctionInfo = false;
2944*81ad6265SDimitry Andric   FunctionDeclBits.IsIneligibleOrNotSelected = false;
29450b57cec5SDimitry Andric   FunctionDeclBits.HasImplicitReturnZero = false;
29460b57cec5SDimitry Andric   FunctionDeclBits.IsLateTemplateParsed = false;
2947e8d8bef9SDimitry Andric   FunctionDeclBits.ConstexprKind = static_cast<uint64_t>(ConstexprKind);
29480b57cec5SDimitry Andric   FunctionDeclBits.InstantiationIsPending = false;
29490b57cec5SDimitry Andric   FunctionDeclBits.UsesSEHTry = false;
2950349cc55cSDimitry Andric   FunctionDeclBits.UsesFPIntrin = UsesFPIntrin;
29510b57cec5SDimitry Andric   FunctionDeclBits.HasSkippedBody = false;
29520b57cec5SDimitry Andric   FunctionDeclBits.WillHaveBody = false;
29530b57cec5SDimitry Andric   FunctionDeclBits.IsMultiVersion = false;
29540b57cec5SDimitry Andric   FunctionDeclBits.IsCopyDeductionCandidate = false;
29550b57cec5SDimitry Andric   FunctionDeclBits.HasODRHash = false;
2956480093f4SDimitry Andric   if (TrailingRequiresClause)
2957480093f4SDimitry Andric     setTrailingRequiresClause(TrailingRequiresClause);
29580b57cec5SDimitry Andric }
29590b57cec5SDimitry Andric 
29600b57cec5SDimitry Andric void FunctionDecl::getNameForDiagnostic(
29610b57cec5SDimitry Andric     raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
29620b57cec5SDimitry Andric   NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
29630b57cec5SDimitry Andric   const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs();
29640b57cec5SDimitry Andric   if (TemplateArgs)
29650b57cec5SDimitry Andric     printTemplateArgumentList(OS, TemplateArgs->asArray(), Policy);
29660b57cec5SDimitry Andric }
29670b57cec5SDimitry Andric 
29680b57cec5SDimitry Andric bool FunctionDecl::isVariadic() const {
29690b57cec5SDimitry Andric   if (const auto *FT = getType()->getAs<FunctionProtoType>())
29700b57cec5SDimitry Andric     return FT->isVariadic();
29710b57cec5SDimitry Andric   return false;
29720b57cec5SDimitry Andric }
29730b57cec5SDimitry Andric 
2974480093f4SDimitry Andric FunctionDecl::DefaultedFunctionInfo *
2975480093f4SDimitry Andric FunctionDecl::DefaultedFunctionInfo::Create(ASTContext &Context,
2976480093f4SDimitry Andric                                             ArrayRef<DeclAccessPair> Lookups) {
2977480093f4SDimitry Andric   DefaultedFunctionInfo *Info = new (Context.Allocate(
2978480093f4SDimitry Andric       totalSizeToAlloc<DeclAccessPair>(Lookups.size()),
2979480093f4SDimitry Andric       std::max(alignof(DefaultedFunctionInfo), alignof(DeclAccessPair))))
2980480093f4SDimitry Andric       DefaultedFunctionInfo;
2981480093f4SDimitry Andric   Info->NumLookups = Lookups.size();
2982480093f4SDimitry Andric   std::uninitialized_copy(Lookups.begin(), Lookups.end(),
2983480093f4SDimitry Andric                           Info->getTrailingObjects<DeclAccessPair>());
2984480093f4SDimitry Andric   return Info;
2985480093f4SDimitry Andric }
2986480093f4SDimitry Andric 
2987480093f4SDimitry Andric void FunctionDecl::setDefaultedFunctionInfo(DefaultedFunctionInfo *Info) {
2988480093f4SDimitry Andric   assert(!FunctionDeclBits.HasDefaultedFunctionInfo && "already have this");
2989480093f4SDimitry Andric   assert(!Body && "can't replace function body with defaulted function info");
2990480093f4SDimitry Andric 
2991480093f4SDimitry Andric   FunctionDeclBits.HasDefaultedFunctionInfo = true;
2992480093f4SDimitry Andric   DefaultedInfo = Info;
2993480093f4SDimitry Andric }
2994480093f4SDimitry Andric 
2995480093f4SDimitry Andric FunctionDecl::DefaultedFunctionInfo *
2996480093f4SDimitry Andric FunctionDecl::getDefaultedFunctionInfo() const {
2997480093f4SDimitry Andric   return FunctionDeclBits.HasDefaultedFunctionInfo ? DefaultedInfo : nullptr;
2998480093f4SDimitry Andric }
2999480093f4SDimitry Andric 
30000b57cec5SDimitry Andric bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const {
30010b57cec5SDimitry Andric   for (auto I : redecls()) {
30020b57cec5SDimitry Andric     if (I->doesThisDeclarationHaveABody()) {
30030b57cec5SDimitry Andric       Definition = I;
30040b57cec5SDimitry Andric       return true;
30050b57cec5SDimitry Andric     }
30060b57cec5SDimitry Andric   }
30070b57cec5SDimitry Andric 
30080b57cec5SDimitry Andric   return false;
30090b57cec5SDimitry Andric }
30100b57cec5SDimitry Andric 
3011480093f4SDimitry Andric bool FunctionDecl::hasTrivialBody() const {
30120b57cec5SDimitry Andric   Stmt *S = getBody();
30130b57cec5SDimitry Andric   if (!S) {
30140b57cec5SDimitry Andric     // Since we don't have a body for this function, we don't know if it's
30150b57cec5SDimitry Andric     // trivial or not.
30160b57cec5SDimitry Andric     return false;
30170b57cec5SDimitry Andric   }
30180b57cec5SDimitry Andric 
30190b57cec5SDimitry Andric   if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty())
30200b57cec5SDimitry Andric     return true;
30210b57cec5SDimitry Andric   return false;
30220b57cec5SDimitry Andric }
30230b57cec5SDimitry Andric 
3024e8d8bef9SDimitry Andric bool FunctionDecl::isThisDeclarationInstantiatedFromAFriendDefinition() const {
3025e8d8bef9SDimitry Andric   if (!getFriendObjectKind())
3026e8d8bef9SDimitry Andric     return false;
3027e8d8bef9SDimitry Andric 
3028e8d8bef9SDimitry Andric   // Check for a friend function instantiated from a friend function
3029e8d8bef9SDimitry Andric   // definition in a templated class.
3030e8d8bef9SDimitry Andric   if (const FunctionDecl *InstantiatedFrom =
3031e8d8bef9SDimitry Andric           getInstantiatedFromMemberFunction())
3032e8d8bef9SDimitry Andric     return InstantiatedFrom->getFriendObjectKind() &&
3033e8d8bef9SDimitry Andric            InstantiatedFrom->isThisDeclarationADefinition();
3034e8d8bef9SDimitry Andric 
3035e8d8bef9SDimitry Andric   // Check for a friend function template instantiated from a friend
3036e8d8bef9SDimitry Andric   // function template definition in a templated class.
3037e8d8bef9SDimitry Andric   if (const FunctionTemplateDecl *Template = getDescribedFunctionTemplate()) {
3038e8d8bef9SDimitry Andric     if (const FunctionTemplateDecl *InstantiatedFrom =
3039e8d8bef9SDimitry Andric             Template->getInstantiatedFromMemberTemplate())
3040e8d8bef9SDimitry Andric       return InstantiatedFrom->getFriendObjectKind() &&
3041e8d8bef9SDimitry Andric              InstantiatedFrom->isThisDeclarationADefinition();
3042e8d8bef9SDimitry Andric   }
3043e8d8bef9SDimitry Andric 
3044e8d8bef9SDimitry Andric   return false;
3045e8d8bef9SDimitry Andric }
3046e8d8bef9SDimitry Andric 
3047e8d8bef9SDimitry Andric bool FunctionDecl::isDefined(const FunctionDecl *&Definition,
3048e8d8bef9SDimitry Andric                              bool CheckForPendingFriendDefinition) const {
3049e8d8bef9SDimitry Andric   for (const FunctionDecl *FD : redecls()) {
3050e8d8bef9SDimitry Andric     if (FD->isThisDeclarationADefinition()) {
3051e8d8bef9SDimitry Andric       Definition = FD;
3052e8d8bef9SDimitry Andric       return true;
3053e8d8bef9SDimitry Andric     }
3054e8d8bef9SDimitry Andric 
3055e8d8bef9SDimitry Andric     // If this is a friend function defined in a class template, it does not
3056e8d8bef9SDimitry Andric     // have a body until it is used, nevertheless it is a definition, see
3057e8d8bef9SDimitry Andric     // [temp.inst]p2:
3058e8d8bef9SDimitry Andric     //
3059e8d8bef9SDimitry Andric     // ... for the purpose of determining whether an instantiated redeclaration
3060e8d8bef9SDimitry Andric     // is valid according to [basic.def.odr] and [class.mem], a declaration that
3061e8d8bef9SDimitry Andric     // corresponds to a definition in the template is considered to be a
3062e8d8bef9SDimitry Andric     // definition.
3063e8d8bef9SDimitry Andric     //
3064e8d8bef9SDimitry Andric     // The following code must produce redefinition error:
3065e8d8bef9SDimitry Andric     //
3066e8d8bef9SDimitry Andric     //     template<typename T> struct C20 { friend void func_20() {} };
3067e8d8bef9SDimitry Andric     //     C20<int> c20i;
3068e8d8bef9SDimitry Andric     //     void func_20() {}
3069e8d8bef9SDimitry Andric     //
3070e8d8bef9SDimitry Andric     if (CheckForPendingFriendDefinition &&
3071e8d8bef9SDimitry Andric         FD->isThisDeclarationInstantiatedFromAFriendDefinition()) {
3072e8d8bef9SDimitry Andric       Definition = FD;
30730b57cec5SDimitry Andric       return true;
30740b57cec5SDimitry Andric     }
30750b57cec5SDimitry Andric   }
30760b57cec5SDimitry Andric 
30770b57cec5SDimitry Andric   return false;
30780b57cec5SDimitry Andric }
30790b57cec5SDimitry Andric 
30800b57cec5SDimitry Andric Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
30810b57cec5SDimitry Andric   if (!hasBody(Definition))
30820b57cec5SDimitry Andric     return nullptr;
30830b57cec5SDimitry Andric 
3084480093f4SDimitry Andric   assert(!Definition->FunctionDeclBits.HasDefaultedFunctionInfo &&
3085480093f4SDimitry Andric          "definition should not have a body");
30860b57cec5SDimitry Andric   if (Definition->Body)
30870b57cec5SDimitry Andric     return Definition->Body.get(getASTContext().getExternalSource());
30880b57cec5SDimitry Andric 
30890b57cec5SDimitry Andric   return nullptr;
30900b57cec5SDimitry Andric }
30910b57cec5SDimitry Andric 
30920b57cec5SDimitry Andric void FunctionDecl::setBody(Stmt *B) {
3093480093f4SDimitry Andric   FunctionDeclBits.HasDefaultedFunctionInfo = false;
3094480093f4SDimitry Andric   Body = LazyDeclStmtPtr(B);
30950b57cec5SDimitry Andric   if (B)
30960b57cec5SDimitry Andric     EndRangeLoc = B->getEndLoc();
30970b57cec5SDimitry Andric }
30980b57cec5SDimitry Andric 
30990b57cec5SDimitry Andric void FunctionDecl::setPure(bool P) {
31000b57cec5SDimitry Andric   FunctionDeclBits.IsPure = P;
31010b57cec5SDimitry Andric   if (P)
31020b57cec5SDimitry Andric     if (auto *Parent = dyn_cast<CXXRecordDecl>(getDeclContext()))
31030b57cec5SDimitry Andric       Parent->markedVirtualFunctionPure();
31040b57cec5SDimitry Andric }
31050b57cec5SDimitry Andric 
31060b57cec5SDimitry Andric template<std::size_t Len>
31070b57cec5SDimitry Andric static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) {
31080b57cec5SDimitry Andric   IdentifierInfo *II = ND->getIdentifier();
31090b57cec5SDimitry Andric   return II && II->isStr(Str);
31100b57cec5SDimitry Andric }
31110b57cec5SDimitry Andric 
31120b57cec5SDimitry Andric bool FunctionDecl::isMain() const {
31130b57cec5SDimitry Andric   const TranslationUnitDecl *tunit =
31140b57cec5SDimitry Andric     dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
31150b57cec5SDimitry Andric   return tunit &&
31160b57cec5SDimitry Andric          !tunit->getASTContext().getLangOpts().Freestanding &&
31170b57cec5SDimitry Andric          isNamed(this, "main");
31180b57cec5SDimitry Andric }
31190b57cec5SDimitry Andric 
31200b57cec5SDimitry Andric bool FunctionDecl::isMSVCRTEntryPoint() const {
31210b57cec5SDimitry Andric   const TranslationUnitDecl *TUnit =
31220b57cec5SDimitry Andric       dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext());
31230b57cec5SDimitry Andric   if (!TUnit)
31240b57cec5SDimitry Andric     return false;
31250b57cec5SDimitry Andric 
31260b57cec5SDimitry Andric   // Even though we aren't really targeting MSVCRT if we are freestanding,
31270b57cec5SDimitry Andric   // semantic analysis for these functions remains the same.
31280b57cec5SDimitry Andric 
31290b57cec5SDimitry Andric   // MSVCRT entry points only exist on MSVCRT targets.
31300b57cec5SDimitry Andric   if (!TUnit->getASTContext().getTargetInfo().getTriple().isOSMSVCRT())
31310b57cec5SDimitry Andric     return false;
31320b57cec5SDimitry Andric 
31330b57cec5SDimitry Andric   // Nameless functions like constructors cannot be entry points.
31340b57cec5SDimitry Andric   if (!getIdentifier())
31350b57cec5SDimitry Andric     return false;
31360b57cec5SDimitry Andric 
31370b57cec5SDimitry Andric   return llvm::StringSwitch<bool>(getName())
31380b57cec5SDimitry Andric       .Cases("main",     // an ANSI console app
31390b57cec5SDimitry Andric              "wmain",    // a Unicode console App
31400b57cec5SDimitry Andric              "WinMain",  // an ANSI GUI app
31410b57cec5SDimitry Andric              "wWinMain", // a Unicode GUI app
31420b57cec5SDimitry Andric              "DllMain",  // a DLL
31430b57cec5SDimitry Andric              true)
31440b57cec5SDimitry Andric       .Default(false);
31450b57cec5SDimitry Andric }
31460b57cec5SDimitry Andric 
31470b57cec5SDimitry Andric bool FunctionDecl::isReservedGlobalPlacementOperator() const {
31480b57cec5SDimitry Andric   assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName);
31490b57cec5SDimitry Andric   assert(getDeclName().getCXXOverloadedOperator() == OO_New ||
31500b57cec5SDimitry Andric          getDeclName().getCXXOverloadedOperator() == OO_Delete ||
31510b57cec5SDimitry Andric          getDeclName().getCXXOverloadedOperator() == OO_Array_New ||
31520b57cec5SDimitry Andric          getDeclName().getCXXOverloadedOperator() == OO_Array_Delete);
31530b57cec5SDimitry Andric 
31540b57cec5SDimitry Andric   if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
31550b57cec5SDimitry Andric     return false;
31560b57cec5SDimitry Andric 
31570b57cec5SDimitry Andric   const auto *proto = getType()->castAs<FunctionProtoType>();
31580b57cec5SDimitry Andric   if (proto->getNumParams() != 2 || proto->isVariadic())
31590b57cec5SDimitry Andric     return false;
31600b57cec5SDimitry Andric 
31610b57cec5SDimitry Andric   ASTContext &Context =
31620b57cec5SDimitry Andric     cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext())
31630b57cec5SDimitry Andric       ->getASTContext();
31640b57cec5SDimitry Andric 
31650b57cec5SDimitry Andric   // The result type and first argument type are constant across all
31660b57cec5SDimitry Andric   // these operators.  The second argument must be exactly void*.
31670b57cec5SDimitry Andric   return (proto->getParamType(1).getCanonicalType() == Context.VoidPtrTy);
31680b57cec5SDimitry Andric }
31690b57cec5SDimitry Andric 
31705ffd83dbSDimitry Andric bool FunctionDecl::isReplaceableGlobalAllocationFunction(
31715ffd83dbSDimitry Andric     Optional<unsigned> *AlignmentParam, bool *IsNothrow) const {
31720b57cec5SDimitry Andric   if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName)
31730b57cec5SDimitry Andric     return false;
31740b57cec5SDimitry Andric   if (getDeclName().getCXXOverloadedOperator() != OO_New &&
31750b57cec5SDimitry Andric       getDeclName().getCXXOverloadedOperator() != OO_Delete &&
31760b57cec5SDimitry Andric       getDeclName().getCXXOverloadedOperator() != OO_Array_New &&
31770b57cec5SDimitry Andric       getDeclName().getCXXOverloadedOperator() != OO_Array_Delete)
31780b57cec5SDimitry Andric     return false;
31790b57cec5SDimitry Andric 
31800b57cec5SDimitry Andric   if (isa<CXXRecordDecl>(getDeclContext()))
31810b57cec5SDimitry Andric     return false;
31820b57cec5SDimitry Andric 
31830b57cec5SDimitry Andric   // This can only fail for an invalid 'operator new' declaration.
31840b57cec5SDimitry Andric   if (!getDeclContext()->getRedeclContext()->isTranslationUnit())
31850b57cec5SDimitry Andric     return false;
31860b57cec5SDimitry Andric 
31870b57cec5SDimitry Andric   const auto *FPT = getType()->castAs<FunctionProtoType>();
31880b57cec5SDimitry Andric   if (FPT->getNumParams() == 0 || FPT->getNumParams() > 3 || FPT->isVariadic())
31890b57cec5SDimitry Andric     return false;
31900b57cec5SDimitry Andric 
31910b57cec5SDimitry Andric   // If this is a single-parameter function, it must be a replaceable global
31920b57cec5SDimitry Andric   // allocation or deallocation function.
31930b57cec5SDimitry Andric   if (FPT->getNumParams() == 1)
31940b57cec5SDimitry Andric     return true;
31950b57cec5SDimitry Andric 
31960b57cec5SDimitry Andric   unsigned Params = 1;
31970b57cec5SDimitry Andric   QualType Ty = FPT->getParamType(Params);
31980b57cec5SDimitry Andric   ASTContext &Ctx = getASTContext();
31990b57cec5SDimitry Andric 
32000b57cec5SDimitry Andric   auto Consume = [&] {
32010b57cec5SDimitry Andric     ++Params;
32020b57cec5SDimitry Andric     Ty = Params < FPT->getNumParams() ? FPT->getParamType(Params) : QualType();
32030b57cec5SDimitry Andric   };
32040b57cec5SDimitry Andric 
32050b57cec5SDimitry Andric   // In C++14, the next parameter can be a 'std::size_t' for sized delete.
32060b57cec5SDimitry Andric   bool IsSizedDelete = false;
32070b57cec5SDimitry Andric   if (Ctx.getLangOpts().SizedDeallocation &&
32080b57cec5SDimitry Andric       (getDeclName().getCXXOverloadedOperator() == OO_Delete ||
32090b57cec5SDimitry Andric        getDeclName().getCXXOverloadedOperator() == OO_Array_Delete) &&
32100b57cec5SDimitry Andric       Ctx.hasSameType(Ty, Ctx.getSizeType())) {
32110b57cec5SDimitry Andric     IsSizedDelete = true;
32120b57cec5SDimitry Andric     Consume();
32130b57cec5SDimitry Andric   }
32140b57cec5SDimitry Andric 
32150b57cec5SDimitry Andric   // In C++17, the next parameter can be a 'std::align_val_t' for aligned
32160b57cec5SDimitry Andric   // new/delete.
32170b57cec5SDimitry Andric   if (Ctx.getLangOpts().AlignedAllocation && !Ty.isNull() && Ty->isAlignValT()) {
32180b57cec5SDimitry Andric     Consume();
32195ffd83dbSDimitry Andric     if (AlignmentParam)
32205ffd83dbSDimitry Andric       *AlignmentParam = Params;
32210b57cec5SDimitry Andric   }
32220b57cec5SDimitry Andric 
32230b57cec5SDimitry Andric   // Finally, if this is not a sized delete, the final parameter can
32240b57cec5SDimitry Andric   // be a 'const std::nothrow_t&'.
32250b57cec5SDimitry Andric   if (!IsSizedDelete && !Ty.isNull() && Ty->isReferenceType()) {
32260b57cec5SDimitry Andric     Ty = Ty->getPointeeType();
32270b57cec5SDimitry Andric     if (Ty.getCVRQualifiers() != Qualifiers::Const)
32280b57cec5SDimitry Andric       return false;
32295ffd83dbSDimitry Andric     if (Ty->isNothrowT()) {
32305ffd83dbSDimitry Andric       if (IsNothrow)
32315ffd83dbSDimitry Andric         *IsNothrow = true;
32320b57cec5SDimitry Andric       Consume();
32330b57cec5SDimitry Andric     }
32345ffd83dbSDimitry Andric   }
32350b57cec5SDimitry Andric 
32360b57cec5SDimitry Andric   return Params == FPT->getNumParams();
32370b57cec5SDimitry Andric }
32380b57cec5SDimitry Andric 
3239480093f4SDimitry Andric bool FunctionDecl::isInlineBuiltinDeclaration() const {
3240480093f4SDimitry Andric   if (!getBuiltinID())
3241480093f4SDimitry Andric     return false;
3242480093f4SDimitry Andric 
3243480093f4SDimitry Andric   const FunctionDecl *Definition;
3244349cc55cSDimitry Andric   return hasBody(Definition) && Definition->isInlineSpecified() &&
3245349cc55cSDimitry Andric          Definition->hasAttr<AlwaysInlineAttr>() &&
3246349cc55cSDimitry Andric          Definition->hasAttr<GNUInlineAttr>();
3247480093f4SDimitry Andric }
3248480093f4SDimitry Andric 
32490b57cec5SDimitry Andric bool FunctionDecl::isDestroyingOperatorDelete() const {
32500b57cec5SDimitry Andric   // C++ P0722:
32510b57cec5SDimitry Andric   //   Within a class C, a single object deallocation function with signature
32520b57cec5SDimitry Andric   //     (T, std::destroying_delete_t, <more params>)
32530b57cec5SDimitry Andric   //   is a destroying operator delete.
32540b57cec5SDimitry Andric   if (!isa<CXXMethodDecl>(this) || getOverloadedOperator() != OO_Delete ||
32550b57cec5SDimitry Andric       getNumParams() < 2)
32560b57cec5SDimitry Andric     return false;
32570b57cec5SDimitry Andric 
32580b57cec5SDimitry Andric   auto *RD = getParamDecl(1)->getType()->getAsCXXRecordDecl();
32590b57cec5SDimitry Andric   return RD && RD->isInStdNamespace() && RD->getIdentifier() &&
32600b57cec5SDimitry Andric          RD->getIdentifier()->isStr("destroying_delete_t");
32610b57cec5SDimitry Andric }
32620b57cec5SDimitry Andric 
32630b57cec5SDimitry Andric LanguageLinkage FunctionDecl::getLanguageLinkage() const {
32640b57cec5SDimitry Andric   return getDeclLanguageLinkage(*this);
32650b57cec5SDimitry Andric }
32660b57cec5SDimitry Andric 
32670b57cec5SDimitry Andric bool FunctionDecl::isExternC() const {
32680b57cec5SDimitry Andric   return isDeclExternC(*this);
32690b57cec5SDimitry Andric }
32700b57cec5SDimitry Andric 
32710b57cec5SDimitry Andric bool FunctionDecl::isInExternCContext() const {
32720b57cec5SDimitry Andric   if (hasAttr<OpenCLKernelAttr>())
32730b57cec5SDimitry Andric     return true;
32740b57cec5SDimitry Andric   return getLexicalDeclContext()->isExternCContext();
32750b57cec5SDimitry Andric }
32760b57cec5SDimitry Andric 
32770b57cec5SDimitry Andric bool FunctionDecl::isInExternCXXContext() const {
32780b57cec5SDimitry Andric   return getLexicalDeclContext()->isExternCXXContext();
32790b57cec5SDimitry Andric }
32800b57cec5SDimitry Andric 
32810b57cec5SDimitry Andric bool FunctionDecl::isGlobal() const {
32820b57cec5SDimitry Andric   if (const auto *Method = dyn_cast<CXXMethodDecl>(this))
32830b57cec5SDimitry Andric     return Method->isStatic();
32840b57cec5SDimitry Andric 
32850b57cec5SDimitry Andric   if (getCanonicalDecl()->getStorageClass() == SC_Static)
32860b57cec5SDimitry Andric     return false;
32870b57cec5SDimitry Andric 
32880b57cec5SDimitry Andric   for (const DeclContext *DC = getDeclContext();
32890b57cec5SDimitry Andric        DC->isNamespace();
32900b57cec5SDimitry Andric        DC = DC->getParent()) {
32910b57cec5SDimitry Andric     if (const auto *Namespace = cast<NamespaceDecl>(DC)) {
32920b57cec5SDimitry Andric       if (!Namespace->getDeclName())
32930b57cec5SDimitry Andric         return false;
32940b57cec5SDimitry Andric     }
32950b57cec5SDimitry Andric   }
32960b57cec5SDimitry Andric 
32970b57cec5SDimitry Andric   return true;
32980b57cec5SDimitry Andric }
32990b57cec5SDimitry Andric 
33000b57cec5SDimitry Andric bool FunctionDecl::isNoReturn() const {
33010b57cec5SDimitry Andric   if (hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() ||
33020b57cec5SDimitry Andric       hasAttr<C11NoReturnAttr>())
33030b57cec5SDimitry Andric     return true;
33040b57cec5SDimitry Andric 
33050b57cec5SDimitry Andric   if (auto *FnTy = getType()->getAs<FunctionType>())
33060b57cec5SDimitry Andric     return FnTy->getNoReturnAttr();
33070b57cec5SDimitry Andric 
33080b57cec5SDimitry Andric   return false;
33090b57cec5SDimitry Andric }
33100b57cec5SDimitry Andric 
33110b57cec5SDimitry Andric 
33120b57cec5SDimitry Andric MultiVersionKind FunctionDecl::getMultiVersionKind() const {
33130b57cec5SDimitry Andric   if (hasAttr<TargetAttr>())
33140b57cec5SDimitry Andric     return MultiVersionKind::Target;
33150b57cec5SDimitry Andric   if (hasAttr<CPUDispatchAttr>())
33160b57cec5SDimitry Andric     return MultiVersionKind::CPUDispatch;
33170b57cec5SDimitry Andric   if (hasAttr<CPUSpecificAttr>())
33180b57cec5SDimitry Andric     return MultiVersionKind::CPUSpecific;
33194824e7fdSDimitry Andric   if (hasAttr<TargetClonesAttr>())
33204824e7fdSDimitry Andric     return MultiVersionKind::TargetClones;
33210b57cec5SDimitry Andric   return MultiVersionKind::None;
33220b57cec5SDimitry Andric }
33230b57cec5SDimitry Andric 
33240b57cec5SDimitry Andric bool FunctionDecl::isCPUDispatchMultiVersion() const {
33250b57cec5SDimitry Andric   return isMultiVersion() && hasAttr<CPUDispatchAttr>();
33260b57cec5SDimitry Andric }
33270b57cec5SDimitry Andric 
33280b57cec5SDimitry Andric bool FunctionDecl::isCPUSpecificMultiVersion() const {
33290b57cec5SDimitry Andric   return isMultiVersion() && hasAttr<CPUSpecificAttr>();
33300b57cec5SDimitry Andric }
33310b57cec5SDimitry Andric 
33320b57cec5SDimitry Andric bool FunctionDecl::isTargetMultiVersion() const {
33330b57cec5SDimitry Andric   return isMultiVersion() && hasAttr<TargetAttr>();
33340b57cec5SDimitry Andric }
33350b57cec5SDimitry Andric 
33364824e7fdSDimitry Andric bool FunctionDecl::isTargetClonesMultiVersion() const {
33374824e7fdSDimitry Andric   return isMultiVersion() && hasAttr<TargetClonesAttr>();
33384824e7fdSDimitry Andric }
33394824e7fdSDimitry Andric 
33400b57cec5SDimitry Andric void
33410b57cec5SDimitry Andric FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) {
33420b57cec5SDimitry Andric   redeclarable_base::setPreviousDecl(PrevDecl);
33430b57cec5SDimitry Andric 
33440b57cec5SDimitry Andric   if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) {
33450b57cec5SDimitry Andric     FunctionTemplateDecl *PrevFunTmpl
33460b57cec5SDimitry Andric       = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr;
33470b57cec5SDimitry Andric     assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch");
33480b57cec5SDimitry Andric     FunTmpl->setPreviousDecl(PrevFunTmpl);
33490b57cec5SDimitry Andric   }
33500b57cec5SDimitry Andric 
33510b57cec5SDimitry Andric   if (PrevDecl && PrevDecl->isInlined())
33520b57cec5SDimitry Andric     setImplicitlyInline(true);
33530b57cec5SDimitry Andric }
33540b57cec5SDimitry Andric 
33550b57cec5SDimitry Andric FunctionDecl *FunctionDecl::getCanonicalDecl() { return getFirstDecl(); }
33560b57cec5SDimitry Andric 
33570b57cec5SDimitry Andric /// Returns a value indicating whether this function corresponds to a builtin
33580b57cec5SDimitry Andric /// function.
33590b57cec5SDimitry Andric ///
33600b57cec5SDimitry Andric /// The function corresponds to a built-in function if it is declared at
33610b57cec5SDimitry Andric /// translation scope or within an extern "C" block and its name matches with
33620b57cec5SDimitry Andric /// the name of a builtin. The returned value will be 0 for functions that do
33630b57cec5SDimitry Andric /// not correspond to a builtin, a value of type \c Builtin::ID if in the
33640b57cec5SDimitry Andric /// target-independent range \c [1,Builtin::First), or a target-specific builtin
33650b57cec5SDimitry Andric /// value.
33660b57cec5SDimitry Andric ///
33670b57cec5SDimitry Andric /// \param ConsiderWrapperFunctions If true, we should consider wrapper
33680b57cec5SDimitry Andric /// functions as their wrapped builtins. This shouldn't be done in general, but
33690b57cec5SDimitry Andric /// it's useful in Sema to diagnose calls to wrappers based on their semantics.
33700b57cec5SDimitry Andric unsigned FunctionDecl::getBuiltinID(bool ConsiderWrapperFunctions) const {
3371927c847dSDimitry Andric   unsigned BuiltinID = 0;
3372480093f4SDimitry Andric 
33735ffd83dbSDimitry Andric   if (const auto *ABAA = getAttr<ArmBuiltinAliasAttr>()) {
33745ffd83dbSDimitry Andric     BuiltinID = ABAA->getBuiltinName()->getBuiltinID();
3375fe6060f1SDimitry Andric   } else if (const auto *BAA = getAttr<BuiltinAliasAttr>()) {
3376fe6060f1SDimitry Andric     BuiltinID = BAA->getBuiltinName()->getBuiltinID();
3377927c847dSDimitry Andric   } else if (const auto *A = getAttr<BuiltinAttr>()) {
3378927c847dSDimitry Andric     BuiltinID = A->getID();
3379480093f4SDimitry Andric   }
3380480093f4SDimitry Andric 
33810b57cec5SDimitry Andric   if (!BuiltinID)
33820b57cec5SDimitry Andric     return 0;
33830b57cec5SDimitry Andric 
33840b57cec5SDimitry Andric   // If the function is marked "overloadable", it has a different mangled name
33850b57cec5SDimitry Andric   // and is not the C library function.
3386480093f4SDimitry Andric   if (!ConsiderWrapperFunctions && hasAttr<OverloadableAttr>() &&
3387fe6060f1SDimitry Andric       (!hasAttr<ArmBuiltinAliasAttr>() && !hasAttr<BuiltinAliasAttr>()))
33880b57cec5SDimitry Andric     return 0;
33890b57cec5SDimitry Andric 
3390927c847dSDimitry Andric   ASTContext &Context = getASTContext();
33910b57cec5SDimitry Andric   if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
33920b57cec5SDimitry Andric     return BuiltinID;
33930b57cec5SDimitry Andric 
33940b57cec5SDimitry Andric   // This function has the name of a known C library
33950b57cec5SDimitry Andric   // function. Determine whether it actually refers to the C library
33960b57cec5SDimitry Andric   // function or whether it just has the same name.
33970b57cec5SDimitry Andric 
33980b57cec5SDimitry Andric   // If this is a static function, it's not a builtin.
33990b57cec5SDimitry Andric   if (!ConsiderWrapperFunctions && getStorageClass() == SC_Static)
34000b57cec5SDimitry Andric     return 0;
34010b57cec5SDimitry Andric 
34020b57cec5SDimitry Andric   // OpenCL v1.2 s6.9.f - The library functions defined in
34030b57cec5SDimitry Andric   // the C99 standard headers are not available.
34040b57cec5SDimitry Andric   if (Context.getLangOpts().OpenCL &&
34050b57cec5SDimitry Andric       Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
34060b57cec5SDimitry Andric     return 0;
34070b57cec5SDimitry Andric 
34080b57cec5SDimitry Andric   // CUDA does not have device-side standard library. printf and malloc are the
34090b57cec5SDimitry Andric   // only special cases that are supported by device-side runtime.
34100b57cec5SDimitry Andric   if (Context.getLangOpts().CUDA && hasAttr<CUDADeviceAttr>() &&
34110b57cec5SDimitry Andric       !hasAttr<CUDAHostAttr>() &&
34120b57cec5SDimitry Andric       !(BuiltinID == Builtin::BIprintf || BuiltinID == Builtin::BImalloc))
34130b57cec5SDimitry Andric     return 0;
34140b57cec5SDimitry Andric 
34155ffd83dbSDimitry Andric   // As AMDGCN implementation of OpenMP does not have a device-side standard
34165ffd83dbSDimitry Andric   // library, none of the predefined library functions except printf and malloc
34175ffd83dbSDimitry Andric   // should be treated as a builtin i.e. 0 should be returned for them.
34185ffd83dbSDimitry Andric   if (Context.getTargetInfo().getTriple().isAMDGCN() &&
34195ffd83dbSDimitry Andric       Context.getLangOpts().OpenMPIsDevice &&
34205ffd83dbSDimitry Andric       Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
34215ffd83dbSDimitry Andric       !(BuiltinID == Builtin::BIprintf || BuiltinID == Builtin::BImalloc))
34225ffd83dbSDimitry Andric     return 0;
34235ffd83dbSDimitry Andric 
34240b57cec5SDimitry Andric   return BuiltinID;
34250b57cec5SDimitry Andric }
34260b57cec5SDimitry Andric 
34270b57cec5SDimitry Andric /// getNumParams - Return the number of parameters this function must have
34280b57cec5SDimitry Andric /// based on its FunctionType.  This is the length of the ParamInfo array
34290b57cec5SDimitry Andric /// after it has been created.
34300b57cec5SDimitry Andric unsigned FunctionDecl::getNumParams() const {
34310b57cec5SDimitry Andric   const auto *FPT = getType()->getAs<FunctionProtoType>();
34320b57cec5SDimitry Andric   return FPT ? FPT->getNumParams() : 0;
34330b57cec5SDimitry Andric }
34340b57cec5SDimitry Andric 
34350b57cec5SDimitry Andric void FunctionDecl::setParams(ASTContext &C,
34360b57cec5SDimitry Andric                              ArrayRef<ParmVarDecl *> NewParamInfo) {
34370b57cec5SDimitry Andric   assert(!ParamInfo && "Already has param info!");
34380b57cec5SDimitry Andric   assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!");
34390b57cec5SDimitry Andric 
34400b57cec5SDimitry Andric   // Zero params -> null pointer.
34410b57cec5SDimitry Andric   if (!NewParamInfo.empty()) {
34420b57cec5SDimitry Andric     ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()];
34430b57cec5SDimitry Andric     std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
34440b57cec5SDimitry Andric   }
34450b57cec5SDimitry Andric }
34460b57cec5SDimitry Andric 
34470b57cec5SDimitry Andric /// getMinRequiredArguments - Returns the minimum number of arguments
34480b57cec5SDimitry Andric /// needed to call this function. This may be fewer than the number of
34490b57cec5SDimitry Andric /// function parameters, if some of the parameters have default
34500b57cec5SDimitry Andric /// arguments (in C++) or are parameter packs (C++11).
34510b57cec5SDimitry Andric unsigned FunctionDecl::getMinRequiredArguments() const {
34520b57cec5SDimitry Andric   if (!getASTContext().getLangOpts().CPlusPlus)
34530b57cec5SDimitry Andric     return getNumParams();
34540b57cec5SDimitry Andric 
34555ffd83dbSDimitry Andric   // Note that it is possible for a parameter with no default argument to
34565ffd83dbSDimitry Andric   // follow a parameter with a default argument.
34570b57cec5SDimitry Andric   unsigned NumRequiredArgs = 0;
34585ffd83dbSDimitry Andric   unsigned MinParamsSoFar = 0;
34595ffd83dbSDimitry Andric   for (auto *Param : parameters()) {
34605ffd83dbSDimitry Andric     if (!Param->isParameterPack()) {
34615ffd83dbSDimitry Andric       ++MinParamsSoFar;
34625ffd83dbSDimitry Andric       if (!Param->hasDefaultArg())
34635ffd83dbSDimitry Andric         NumRequiredArgs = MinParamsSoFar;
34645ffd83dbSDimitry Andric     }
34655ffd83dbSDimitry Andric   }
34660b57cec5SDimitry Andric   return NumRequiredArgs;
34670b57cec5SDimitry Andric }
34680b57cec5SDimitry Andric 
34695ffd83dbSDimitry Andric bool FunctionDecl::hasOneParamOrDefaultArgs() const {
34705ffd83dbSDimitry Andric   return getNumParams() == 1 ||
34715ffd83dbSDimitry Andric          (getNumParams() > 1 &&
34725ffd83dbSDimitry Andric           std::all_of(param_begin() + 1, param_end(),
34735ffd83dbSDimitry Andric                       [](ParmVarDecl *P) { return P->hasDefaultArg(); }));
34745ffd83dbSDimitry Andric }
34755ffd83dbSDimitry Andric 
34760b57cec5SDimitry Andric /// The combination of the extern and inline keywords under MSVC forces
34770b57cec5SDimitry Andric /// the function to be required.
34780b57cec5SDimitry Andric ///
34790b57cec5SDimitry Andric /// Note: This function assumes that we will only get called when isInlined()
34800b57cec5SDimitry Andric /// would return true for this FunctionDecl.
34810b57cec5SDimitry Andric bool FunctionDecl::isMSExternInline() const {
34820b57cec5SDimitry Andric   assert(isInlined() && "expected to get called on an inlined function!");
34830b57cec5SDimitry Andric 
34840b57cec5SDimitry Andric   const ASTContext &Context = getASTContext();
34850b57cec5SDimitry Andric   if (!Context.getTargetInfo().getCXXABI().isMicrosoft() &&
34860b57cec5SDimitry Andric       !hasAttr<DLLExportAttr>())
34870b57cec5SDimitry Andric     return false;
34880b57cec5SDimitry Andric 
34890b57cec5SDimitry Andric   for (const FunctionDecl *FD = getMostRecentDecl(); FD;
34900b57cec5SDimitry Andric        FD = FD->getPreviousDecl())
34910b57cec5SDimitry Andric     if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern)
34920b57cec5SDimitry Andric       return true;
34930b57cec5SDimitry Andric 
34940b57cec5SDimitry Andric   return false;
34950b57cec5SDimitry Andric }
34960b57cec5SDimitry Andric 
34970b57cec5SDimitry Andric static bool redeclForcesDefMSVC(const FunctionDecl *Redecl) {
34980b57cec5SDimitry Andric   if (Redecl->getStorageClass() != SC_Extern)
34990b57cec5SDimitry Andric     return false;
35000b57cec5SDimitry Andric 
35010b57cec5SDimitry Andric   for (const FunctionDecl *FD = Redecl->getPreviousDecl(); FD;
35020b57cec5SDimitry Andric        FD = FD->getPreviousDecl())
35030b57cec5SDimitry Andric     if (!FD->isImplicit() && FD->getStorageClass() == SC_Extern)
35040b57cec5SDimitry Andric       return false;
35050b57cec5SDimitry Andric 
35060b57cec5SDimitry Andric   return true;
35070b57cec5SDimitry Andric }
35080b57cec5SDimitry Andric 
35090b57cec5SDimitry Andric static bool RedeclForcesDefC99(const FunctionDecl *Redecl) {
35100b57cec5SDimitry Andric   // Only consider file-scope declarations in this test.
35110b57cec5SDimitry Andric   if (!Redecl->getLexicalDeclContext()->isTranslationUnit())
35120b57cec5SDimitry Andric     return false;
35130b57cec5SDimitry Andric 
35140b57cec5SDimitry Andric   // Only consider explicit declarations; the presence of a builtin for a
35150b57cec5SDimitry Andric   // libcall shouldn't affect whether a definition is externally visible.
35160b57cec5SDimitry Andric   if (Redecl->isImplicit())
35170b57cec5SDimitry Andric     return false;
35180b57cec5SDimitry Andric 
35190b57cec5SDimitry Andric   if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern)
35200b57cec5SDimitry Andric     return true; // Not an inline definition
35210b57cec5SDimitry Andric 
35220b57cec5SDimitry Andric   return false;
35230b57cec5SDimitry Andric }
35240b57cec5SDimitry Andric 
35250b57cec5SDimitry Andric /// For a function declaration in C or C++, determine whether this
35260b57cec5SDimitry Andric /// declaration causes the definition to be externally visible.
35270b57cec5SDimitry Andric ///
35280b57cec5SDimitry Andric /// For instance, this determines if adding the current declaration to the set
35290b57cec5SDimitry Andric /// of redeclarations of the given functions causes
35300b57cec5SDimitry Andric /// isInlineDefinitionExternallyVisible to change from false to true.
35310b57cec5SDimitry Andric bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const {
35320b57cec5SDimitry Andric   assert(!doesThisDeclarationHaveABody() &&
35330b57cec5SDimitry Andric          "Must have a declaration without a body.");
35340b57cec5SDimitry Andric 
35350b57cec5SDimitry Andric   ASTContext &Context = getASTContext();
35360b57cec5SDimitry Andric 
35370b57cec5SDimitry Andric   if (Context.getLangOpts().MSVCCompat) {
35380b57cec5SDimitry Andric     const FunctionDecl *Definition;
35390b57cec5SDimitry Andric     if (hasBody(Definition) && Definition->isInlined() &&
35400b57cec5SDimitry Andric         redeclForcesDefMSVC(this))
35410b57cec5SDimitry Andric       return true;
35420b57cec5SDimitry Andric   }
35430b57cec5SDimitry Andric 
3544a7dea167SDimitry Andric   if (Context.getLangOpts().CPlusPlus)
3545a7dea167SDimitry Andric     return false;
3546a7dea167SDimitry Andric 
35470b57cec5SDimitry Andric   if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
35480b57cec5SDimitry Andric     // With GNU inlining, a declaration with 'inline' but not 'extern', forces
35490b57cec5SDimitry Andric     // an externally visible definition.
35500b57cec5SDimitry Andric     //
35510b57cec5SDimitry Andric     // FIXME: What happens if gnu_inline gets added on after the first
35520b57cec5SDimitry Andric     // declaration?
35530b57cec5SDimitry Andric     if (!isInlineSpecified() || getStorageClass() == SC_Extern)
35540b57cec5SDimitry Andric       return false;
35550b57cec5SDimitry Andric 
35560b57cec5SDimitry Andric     const FunctionDecl *Prev = this;
35570b57cec5SDimitry Andric     bool FoundBody = false;
35580b57cec5SDimitry Andric     while ((Prev = Prev->getPreviousDecl())) {
3559480093f4SDimitry Andric       FoundBody |= Prev->doesThisDeclarationHaveABody();
35600b57cec5SDimitry Andric 
3561480093f4SDimitry Andric       if (Prev->doesThisDeclarationHaveABody()) {
35620b57cec5SDimitry Andric         // If it's not the case that both 'inline' and 'extern' are
35630b57cec5SDimitry Andric         // specified on the definition, then it is always externally visible.
35640b57cec5SDimitry Andric         if (!Prev->isInlineSpecified() ||
35650b57cec5SDimitry Andric             Prev->getStorageClass() != SC_Extern)
35660b57cec5SDimitry Andric           return false;
35670b57cec5SDimitry Andric       } else if (Prev->isInlineSpecified() &&
35680b57cec5SDimitry Andric                  Prev->getStorageClass() != SC_Extern) {
35690b57cec5SDimitry Andric         return false;
35700b57cec5SDimitry Andric       }
35710b57cec5SDimitry Andric     }
35720b57cec5SDimitry Andric     return FoundBody;
35730b57cec5SDimitry Andric   }
35740b57cec5SDimitry Andric 
35750b57cec5SDimitry Andric   // C99 6.7.4p6:
35760b57cec5SDimitry Andric   //   [...] If all of the file scope declarations for a function in a
35770b57cec5SDimitry Andric   //   translation unit include the inline function specifier without extern,
35780b57cec5SDimitry Andric   //   then the definition in that translation unit is an inline definition.
35790b57cec5SDimitry Andric   if (isInlineSpecified() && getStorageClass() != SC_Extern)
35800b57cec5SDimitry Andric     return false;
35810b57cec5SDimitry Andric   const FunctionDecl *Prev = this;
35820b57cec5SDimitry Andric   bool FoundBody = false;
35830b57cec5SDimitry Andric   while ((Prev = Prev->getPreviousDecl())) {
3584480093f4SDimitry Andric     FoundBody |= Prev->doesThisDeclarationHaveABody();
35850b57cec5SDimitry Andric     if (RedeclForcesDefC99(Prev))
35860b57cec5SDimitry Andric       return false;
35870b57cec5SDimitry Andric   }
35880b57cec5SDimitry Andric   return FoundBody;
35890b57cec5SDimitry Andric }
35900b57cec5SDimitry Andric 
3591480093f4SDimitry Andric FunctionTypeLoc FunctionDecl::getFunctionTypeLoc() const {
35920b57cec5SDimitry Andric   const TypeSourceInfo *TSI = getTypeSourceInfo();
3593480093f4SDimitry Andric   return TSI ? TSI->getTypeLoc().IgnoreParens().getAs<FunctionTypeLoc>()
3594480093f4SDimitry Andric              : FunctionTypeLoc();
3595480093f4SDimitry Andric }
3596480093f4SDimitry Andric 
3597480093f4SDimitry Andric SourceRange FunctionDecl::getReturnTypeSourceRange() const {
3598480093f4SDimitry Andric   FunctionTypeLoc FTL = getFunctionTypeLoc();
35990b57cec5SDimitry Andric   if (!FTL)
36000b57cec5SDimitry Andric     return SourceRange();
36010b57cec5SDimitry Andric 
36020b57cec5SDimitry Andric   // Skip self-referential return types.
36030b57cec5SDimitry Andric   const SourceManager &SM = getASTContext().getSourceManager();
36040b57cec5SDimitry Andric   SourceRange RTRange = FTL.getReturnLoc().getSourceRange();
36050b57cec5SDimitry Andric   SourceLocation Boundary = getNameInfo().getBeginLoc();
36060b57cec5SDimitry Andric   if (RTRange.isInvalid() || Boundary.isInvalid() ||
36070b57cec5SDimitry Andric       !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary))
36080b57cec5SDimitry Andric     return SourceRange();
36090b57cec5SDimitry Andric 
36100b57cec5SDimitry Andric   return RTRange;
36110b57cec5SDimitry Andric }
36120b57cec5SDimitry Andric 
3613480093f4SDimitry Andric SourceRange FunctionDecl::getParametersSourceRange() const {
3614480093f4SDimitry Andric   unsigned NP = getNumParams();
3615480093f4SDimitry Andric   SourceLocation EllipsisLoc = getEllipsisLoc();
3616480093f4SDimitry Andric 
3617480093f4SDimitry Andric   if (NP == 0 && EllipsisLoc.isInvalid())
36180b57cec5SDimitry Andric     return SourceRange();
36190b57cec5SDimitry Andric 
3620480093f4SDimitry Andric   SourceLocation Begin =
3621480093f4SDimitry Andric       NP > 0 ? ParamInfo[0]->getSourceRange().getBegin() : EllipsisLoc;
3622480093f4SDimitry Andric   SourceLocation End = EllipsisLoc.isValid()
3623480093f4SDimitry Andric                            ? EllipsisLoc
3624480093f4SDimitry Andric                            : ParamInfo[NP - 1]->getSourceRange().getEnd();
3625480093f4SDimitry Andric 
3626480093f4SDimitry Andric   return SourceRange(Begin, End);
3627480093f4SDimitry Andric }
3628480093f4SDimitry Andric 
3629480093f4SDimitry Andric SourceRange FunctionDecl::getExceptionSpecSourceRange() const {
3630480093f4SDimitry Andric   FunctionTypeLoc FTL = getFunctionTypeLoc();
3631480093f4SDimitry Andric   return FTL ? FTL.getExceptionSpecRange() : SourceRange();
36320b57cec5SDimitry Andric }
36330b57cec5SDimitry Andric 
36340b57cec5SDimitry Andric /// For an inline function definition in C, or for a gnu_inline function
36350b57cec5SDimitry Andric /// in C++, determine whether the definition will be externally visible.
36360b57cec5SDimitry Andric ///
36370b57cec5SDimitry Andric /// Inline function definitions are always available for inlining optimizations.
36380b57cec5SDimitry Andric /// However, depending on the language dialect, declaration specifiers, and
36390b57cec5SDimitry Andric /// attributes, the definition of an inline function may or may not be
36400b57cec5SDimitry Andric /// "externally" visible to other translation units in the program.
36410b57cec5SDimitry Andric ///
36420b57cec5SDimitry Andric /// In C99, inline definitions are not externally visible by default. However,
36430b57cec5SDimitry Andric /// if even one of the global-scope declarations is marked "extern inline", the
36440b57cec5SDimitry Andric /// inline definition becomes externally visible (C99 6.7.4p6).
36450b57cec5SDimitry Andric ///
36460b57cec5SDimitry Andric /// In GNU89 mode, or if the gnu_inline attribute is attached to the function
36470b57cec5SDimitry Andric /// definition, we use the GNU semantics for inline, which are nearly the
36480b57cec5SDimitry Andric /// opposite of C99 semantics. In particular, "inline" by itself will create
36490b57cec5SDimitry Andric /// an externally visible symbol, but "extern inline" will not create an
36500b57cec5SDimitry Andric /// externally visible symbol.
36510b57cec5SDimitry Andric bool FunctionDecl::isInlineDefinitionExternallyVisible() const {
36520b57cec5SDimitry Andric   assert((doesThisDeclarationHaveABody() || willHaveBody() ||
36530b57cec5SDimitry Andric           hasAttr<AliasAttr>()) &&
36540b57cec5SDimitry Andric          "Must be a function definition");
36550b57cec5SDimitry Andric   assert(isInlined() && "Function must be inline");
36560b57cec5SDimitry Andric   ASTContext &Context = getASTContext();
36570b57cec5SDimitry Andric 
36580b57cec5SDimitry Andric   if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) {
36590b57cec5SDimitry Andric     // Note: If you change the logic here, please change
36600b57cec5SDimitry Andric     // doesDeclarationForceExternallyVisibleDefinition as well.
36610b57cec5SDimitry Andric     //
36620b57cec5SDimitry Andric     // If it's not the case that both 'inline' and 'extern' are
36630b57cec5SDimitry Andric     // specified on the definition, then this inline definition is
36640b57cec5SDimitry Andric     // externally visible.
3665a7dea167SDimitry Andric     if (Context.getLangOpts().CPlusPlus)
3666a7dea167SDimitry Andric       return false;
36670b57cec5SDimitry Andric     if (!(isInlineSpecified() && getStorageClass() == SC_Extern))
36680b57cec5SDimitry Andric       return true;
36690b57cec5SDimitry Andric 
36700b57cec5SDimitry Andric     // If any declaration is 'inline' but not 'extern', then this definition
36710b57cec5SDimitry Andric     // is externally visible.
36720b57cec5SDimitry Andric     for (auto Redecl : redecls()) {
36730b57cec5SDimitry Andric       if (Redecl->isInlineSpecified() &&
36740b57cec5SDimitry Andric           Redecl->getStorageClass() != SC_Extern)
36750b57cec5SDimitry Andric         return true;
36760b57cec5SDimitry Andric     }
36770b57cec5SDimitry Andric 
36780b57cec5SDimitry Andric     return false;
36790b57cec5SDimitry Andric   }
36800b57cec5SDimitry Andric 
36810b57cec5SDimitry Andric   // The rest of this function is C-only.
36820b57cec5SDimitry Andric   assert(!Context.getLangOpts().CPlusPlus &&
36830b57cec5SDimitry Andric          "should not use C inline rules in C++");
36840b57cec5SDimitry Andric 
36850b57cec5SDimitry Andric   // C99 6.7.4p6:
36860b57cec5SDimitry Andric   //   [...] If all of the file scope declarations for a function in a
36870b57cec5SDimitry Andric   //   translation unit include the inline function specifier without extern,
36880b57cec5SDimitry Andric   //   then the definition in that translation unit is an inline definition.
36890b57cec5SDimitry Andric   for (auto Redecl : redecls()) {
36900b57cec5SDimitry Andric     if (RedeclForcesDefC99(Redecl))
36910b57cec5SDimitry Andric       return true;
36920b57cec5SDimitry Andric   }
36930b57cec5SDimitry Andric 
36940b57cec5SDimitry Andric   // C99 6.7.4p6:
36950b57cec5SDimitry Andric   //   An inline definition does not provide an external definition for the
36960b57cec5SDimitry Andric   //   function, and does not forbid an external definition in another
36970b57cec5SDimitry Andric   //   translation unit.
36980b57cec5SDimitry Andric   return false;
36990b57cec5SDimitry Andric }
37000b57cec5SDimitry Andric 
37010b57cec5SDimitry Andric /// getOverloadedOperator - Which C++ overloaded operator this
37020b57cec5SDimitry Andric /// function represents, if any.
37030b57cec5SDimitry Andric OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
37040b57cec5SDimitry Andric   if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
37050b57cec5SDimitry Andric     return getDeclName().getCXXOverloadedOperator();
37060b57cec5SDimitry Andric   return OO_None;
37070b57cec5SDimitry Andric }
37080b57cec5SDimitry Andric 
37090b57cec5SDimitry Andric /// getLiteralIdentifier - The literal suffix identifier this function
37100b57cec5SDimitry Andric /// represents, if any.
37110b57cec5SDimitry Andric const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const {
37120b57cec5SDimitry Andric   if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName)
37130b57cec5SDimitry Andric     return getDeclName().getCXXLiteralIdentifier();
37140b57cec5SDimitry Andric   return nullptr;
37150b57cec5SDimitry Andric }
37160b57cec5SDimitry Andric 
37170b57cec5SDimitry Andric FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const {
37180b57cec5SDimitry Andric   if (TemplateOrSpecialization.isNull())
37190b57cec5SDimitry Andric     return TK_NonTemplate;
37200b57cec5SDimitry Andric   if (TemplateOrSpecialization.is<FunctionTemplateDecl *>())
37210b57cec5SDimitry Andric     return TK_FunctionTemplate;
37220b57cec5SDimitry Andric   if (TemplateOrSpecialization.is<MemberSpecializationInfo *>())
37230b57cec5SDimitry Andric     return TK_MemberSpecialization;
37240b57cec5SDimitry Andric   if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>())
37250b57cec5SDimitry Andric     return TK_FunctionTemplateSpecialization;
37260b57cec5SDimitry Andric   if (TemplateOrSpecialization.is
37270b57cec5SDimitry Andric                                <DependentFunctionTemplateSpecializationInfo*>())
37280b57cec5SDimitry Andric     return TK_DependentFunctionTemplateSpecialization;
37290b57cec5SDimitry Andric 
37300b57cec5SDimitry Andric   llvm_unreachable("Did we miss a TemplateOrSpecialization type?");
37310b57cec5SDimitry Andric }
37320b57cec5SDimitry Andric 
37330b57cec5SDimitry Andric FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const {
37340b57cec5SDimitry Andric   if (MemberSpecializationInfo *Info = getMemberSpecializationInfo())
37350b57cec5SDimitry Andric     return cast<FunctionDecl>(Info->getInstantiatedFrom());
37360b57cec5SDimitry Andric 
37370b57cec5SDimitry Andric   return nullptr;
37380b57cec5SDimitry Andric }
37390b57cec5SDimitry Andric 
37400b57cec5SDimitry Andric MemberSpecializationInfo *FunctionDecl::getMemberSpecializationInfo() const {
37410b57cec5SDimitry Andric   if (auto *MSI =
37420b57cec5SDimitry Andric           TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
37430b57cec5SDimitry Andric     return MSI;
37440b57cec5SDimitry Andric   if (auto *FTSI = TemplateOrSpecialization
37450b57cec5SDimitry Andric                        .dyn_cast<FunctionTemplateSpecializationInfo *>())
37460b57cec5SDimitry Andric     return FTSI->getMemberSpecializationInfo();
37470b57cec5SDimitry Andric   return nullptr;
37480b57cec5SDimitry Andric }
37490b57cec5SDimitry Andric 
37500b57cec5SDimitry Andric void
37510b57cec5SDimitry Andric FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C,
37520b57cec5SDimitry Andric                                                FunctionDecl *FD,
37530b57cec5SDimitry Andric                                                TemplateSpecializationKind TSK) {
37540b57cec5SDimitry Andric   assert(TemplateOrSpecialization.isNull() &&
37550b57cec5SDimitry Andric          "Member function is already a specialization");
37560b57cec5SDimitry Andric   MemberSpecializationInfo *Info
37570b57cec5SDimitry Andric     = new (C) MemberSpecializationInfo(FD, TSK);
37580b57cec5SDimitry Andric   TemplateOrSpecialization = Info;
37590b57cec5SDimitry Andric }
37600b57cec5SDimitry Andric 
37610b57cec5SDimitry Andric FunctionTemplateDecl *FunctionDecl::getDescribedFunctionTemplate() const {
37620b57cec5SDimitry Andric   return TemplateOrSpecialization.dyn_cast<FunctionTemplateDecl *>();
37630b57cec5SDimitry Andric }
37640b57cec5SDimitry Andric 
37650b57cec5SDimitry Andric void FunctionDecl::setDescribedFunctionTemplate(FunctionTemplateDecl *Template) {
37660b57cec5SDimitry Andric   assert(TemplateOrSpecialization.isNull() &&
37670b57cec5SDimitry Andric          "Member function is already a specialization");
37680b57cec5SDimitry Andric   TemplateOrSpecialization = Template;
37690b57cec5SDimitry Andric }
37700b57cec5SDimitry Andric 
37710b57cec5SDimitry Andric bool FunctionDecl::isImplicitlyInstantiable() const {
37720b57cec5SDimitry Andric   // If the function is invalid, it can't be implicitly instantiated.
37730b57cec5SDimitry Andric   if (isInvalidDecl())
37740b57cec5SDimitry Andric     return false;
37750b57cec5SDimitry Andric 
37760b57cec5SDimitry Andric   switch (getTemplateSpecializationKindForInstantiation()) {
37770b57cec5SDimitry Andric   case TSK_Undeclared:
37780b57cec5SDimitry Andric   case TSK_ExplicitInstantiationDefinition:
37790b57cec5SDimitry Andric   case TSK_ExplicitSpecialization:
37800b57cec5SDimitry Andric     return false;
37810b57cec5SDimitry Andric 
37820b57cec5SDimitry Andric   case TSK_ImplicitInstantiation:
37830b57cec5SDimitry Andric     return true;
37840b57cec5SDimitry Andric 
37850b57cec5SDimitry Andric   case TSK_ExplicitInstantiationDeclaration:
37860b57cec5SDimitry Andric     // Handled below.
37870b57cec5SDimitry Andric     break;
37880b57cec5SDimitry Andric   }
37890b57cec5SDimitry Andric 
37900b57cec5SDimitry Andric   // Find the actual template from which we will instantiate.
37910b57cec5SDimitry Andric   const FunctionDecl *PatternDecl = getTemplateInstantiationPattern();
37920b57cec5SDimitry Andric   bool HasPattern = false;
37930b57cec5SDimitry Andric   if (PatternDecl)
37940b57cec5SDimitry Andric     HasPattern = PatternDecl->hasBody(PatternDecl);
37950b57cec5SDimitry Andric 
37960b57cec5SDimitry Andric   // C++0x [temp.explicit]p9:
37970b57cec5SDimitry Andric   //   Except for inline functions, other explicit instantiation declarations
37980b57cec5SDimitry Andric   //   have the effect of suppressing the implicit instantiation of the entity
37990b57cec5SDimitry Andric   //   to which they refer.
38000b57cec5SDimitry Andric   if (!HasPattern || !PatternDecl)
38010b57cec5SDimitry Andric     return true;
38020b57cec5SDimitry Andric 
38030b57cec5SDimitry Andric   return PatternDecl->isInlined();
38040b57cec5SDimitry Andric }
38050b57cec5SDimitry Andric 
38060b57cec5SDimitry Andric bool FunctionDecl::isTemplateInstantiation() const {
38070b57cec5SDimitry Andric   // FIXME: Remove this, it's not clear what it means. (Which template
38080b57cec5SDimitry Andric   // specialization kind?)
38090b57cec5SDimitry Andric   return clang::isTemplateInstantiation(getTemplateSpecializationKind());
38100b57cec5SDimitry Andric }
38110b57cec5SDimitry Andric 
38125ffd83dbSDimitry Andric FunctionDecl *
38135ffd83dbSDimitry Andric FunctionDecl::getTemplateInstantiationPattern(bool ForDefinition) const {
38140b57cec5SDimitry Andric   // If this is a generic lambda call operator specialization, its
38150b57cec5SDimitry Andric   // instantiation pattern is always its primary template's pattern
38160b57cec5SDimitry Andric   // even if its primary template was instantiated from another
38170b57cec5SDimitry Andric   // member template (which happens with nested generic lambdas).
38180b57cec5SDimitry Andric   // Since a lambda's call operator's body is transformed eagerly,
38190b57cec5SDimitry Andric   // we don't have to go hunting for a prototype definition template
38200b57cec5SDimitry Andric   // (i.e. instantiated-from-member-template) to use as an instantiation
38210b57cec5SDimitry Andric   // pattern.
38220b57cec5SDimitry Andric 
38230b57cec5SDimitry Andric   if (isGenericLambdaCallOperatorSpecialization(
38240b57cec5SDimitry Andric           dyn_cast<CXXMethodDecl>(this))) {
38250b57cec5SDimitry Andric     assert(getPrimaryTemplate() && "not a generic lambda call operator?");
38260b57cec5SDimitry Andric     return getDefinitionOrSelf(getPrimaryTemplate()->getTemplatedDecl());
38270b57cec5SDimitry Andric   }
38280b57cec5SDimitry Andric 
3829e8d8bef9SDimitry Andric   // Check for a declaration of this function that was instantiated from a
3830e8d8bef9SDimitry Andric   // friend definition.
3831e8d8bef9SDimitry Andric   const FunctionDecl *FD = nullptr;
3832e8d8bef9SDimitry Andric   if (!isDefined(FD, /*CheckForPendingFriendDefinition=*/true))
3833e8d8bef9SDimitry Andric     FD = this;
3834e8d8bef9SDimitry Andric 
3835e8d8bef9SDimitry Andric   if (MemberSpecializationInfo *Info = FD->getMemberSpecializationInfo()) {
38365ffd83dbSDimitry Andric     if (ForDefinition &&
38375ffd83dbSDimitry Andric         !clang::isTemplateInstantiation(Info->getTemplateSpecializationKind()))
38380b57cec5SDimitry Andric       return nullptr;
38390b57cec5SDimitry Andric     return getDefinitionOrSelf(cast<FunctionDecl>(Info->getInstantiatedFrom()));
38400b57cec5SDimitry Andric   }
38410b57cec5SDimitry Andric 
38425ffd83dbSDimitry Andric   if (ForDefinition &&
38435ffd83dbSDimitry Andric       !clang::isTemplateInstantiation(getTemplateSpecializationKind()))
38440b57cec5SDimitry Andric     return nullptr;
38450b57cec5SDimitry Andric 
38460b57cec5SDimitry Andric   if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) {
38470b57cec5SDimitry Andric     // If we hit a point where the user provided a specialization of this
38480b57cec5SDimitry Andric     // template, we're done looking.
38495ffd83dbSDimitry Andric     while (!ForDefinition || !Primary->isMemberSpecialization()) {
38500b57cec5SDimitry Andric       auto *NewPrimary = Primary->getInstantiatedFromMemberTemplate();
38510b57cec5SDimitry Andric       if (!NewPrimary)
38520b57cec5SDimitry Andric         break;
38530b57cec5SDimitry Andric       Primary = NewPrimary;
38540b57cec5SDimitry Andric     }
38550b57cec5SDimitry Andric 
38560b57cec5SDimitry Andric     return getDefinitionOrSelf(Primary->getTemplatedDecl());
38570b57cec5SDimitry Andric   }
38580b57cec5SDimitry Andric 
38590b57cec5SDimitry Andric   return nullptr;
38600b57cec5SDimitry Andric }
38610b57cec5SDimitry Andric 
38620b57cec5SDimitry Andric FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const {
38630b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *Info
38640b57cec5SDimitry Andric         = TemplateOrSpecialization
38650b57cec5SDimitry Andric             .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
38660b57cec5SDimitry Andric     return Info->getTemplate();
38670b57cec5SDimitry Andric   }
38680b57cec5SDimitry Andric   return nullptr;
38690b57cec5SDimitry Andric }
38700b57cec5SDimitry Andric 
38710b57cec5SDimitry Andric FunctionTemplateSpecializationInfo *
38720b57cec5SDimitry Andric FunctionDecl::getTemplateSpecializationInfo() const {
38730b57cec5SDimitry Andric   return TemplateOrSpecialization
38740b57cec5SDimitry Andric       .dyn_cast<FunctionTemplateSpecializationInfo *>();
38750b57cec5SDimitry Andric }
38760b57cec5SDimitry Andric 
38770b57cec5SDimitry Andric const TemplateArgumentList *
38780b57cec5SDimitry Andric FunctionDecl::getTemplateSpecializationArgs() const {
38790b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *Info
38800b57cec5SDimitry Andric         = TemplateOrSpecialization
38810b57cec5SDimitry Andric             .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
38820b57cec5SDimitry Andric     return Info->TemplateArguments;
38830b57cec5SDimitry Andric   }
38840b57cec5SDimitry Andric   return nullptr;
38850b57cec5SDimitry Andric }
38860b57cec5SDimitry Andric 
38870b57cec5SDimitry Andric const ASTTemplateArgumentListInfo *
38880b57cec5SDimitry Andric FunctionDecl::getTemplateSpecializationArgsAsWritten() const {
38890b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *Info
38900b57cec5SDimitry Andric         = TemplateOrSpecialization
38910b57cec5SDimitry Andric             .dyn_cast<FunctionTemplateSpecializationInfo*>()) {
38920b57cec5SDimitry Andric     return Info->TemplateArgumentsAsWritten;
38930b57cec5SDimitry Andric   }
38940b57cec5SDimitry Andric   return nullptr;
38950b57cec5SDimitry Andric }
38960b57cec5SDimitry Andric 
38970b57cec5SDimitry Andric void
38980b57cec5SDimitry Andric FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C,
38990b57cec5SDimitry Andric                                                 FunctionTemplateDecl *Template,
39000b57cec5SDimitry Andric                                      const TemplateArgumentList *TemplateArgs,
39010b57cec5SDimitry Andric                                                 void *InsertPos,
39020b57cec5SDimitry Andric                                                 TemplateSpecializationKind TSK,
39030b57cec5SDimitry Andric                         const TemplateArgumentListInfo *TemplateArgsAsWritten,
39040b57cec5SDimitry Andric                                           SourceLocation PointOfInstantiation) {
39050b57cec5SDimitry Andric   assert((TemplateOrSpecialization.isNull() ||
39060b57cec5SDimitry Andric           TemplateOrSpecialization.is<MemberSpecializationInfo *>()) &&
39070b57cec5SDimitry Andric          "Member function is already a specialization");
39080b57cec5SDimitry Andric   assert(TSK != TSK_Undeclared &&
39090b57cec5SDimitry Andric          "Must specify the type of function template specialization");
39100b57cec5SDimitry Andric   assert((TemplateOrSpecialization.isNull() ||
39110b57cec5SDimitry Andric           TSK == TSK_ExplicitSpecialization) &&
39120b57cec5SDimitry Andric          "Member specialization must be an explicit specialization");
39130b57cec5SDimitry Andric   FunctionTemplateSpecializationInfo *Info =
39140b57cec5SDimitry Andric       FunctionTemplateSpecializationInfo::Create(
39150b57cec5SDimitry Andric           C, this, Template, TSK, TemplateArgs, TemplateArgsAsWritten,
39160b57cec5SDimitry Andric           PointOfInstantiation,
39170b57cec5SDimitry Andric           TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>());
39180b57cec5SDimitry Andric   TemplateOrSpecialization = Info;
39190b57cec5SDimitry Andric   Template->addSpecialization(Info, InsertPos);
39200b57cec5SDimitry Andric }
39210b57cec5SDimitry Andric 
39220b57cec5SDimitry Andric void
39230b57cec5SDimitry Andric FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context,
39240b57cec5SDimitry Andric                                     const UnresolvedSetImpl &Templates,
39250b57cec5SDimitry Andric                              const TemplateArgumentListInfo &TemplateArgs) {
39260b57cec5SDimitry Andric   assert(TemplateOrSpecialization.isNull());
39270b57cec5SDimitry Andric   DependentFunctionTemplateSpecializationInfo *Info =
39280b57cec5SDimitry Andric       DependentFunctionTemplateSpecializationInfo::Create(Context, Templates,
39290b57cec5SDimitry Andric                                                           TemplateArgs);
39300b57cec5SDimitry Andric   TemplateOrSpecialization = Info;
39310b57cec5SDimitry Andric }
39320b57cec5SDimitry Andric 
39330b57cec5SDimitry Andric DependentFunctionTemplateSpecializationInfo *
39340b57cec5SDimitry Andric FunctionDecl::getDependentSpecializationInfo() const {
39350b57cec5SDimitry Andric   return TemplateOrSpecialization
39360b57cec5SDimitry Andric       .dyn_cast<DependentFunctionTemplateSpecializationInfo *>();
39370b57cec5SDimitry Andric }
39380b57cec5SDimitry Andric 
39390b57cec5SDimitry Andric DependentFunctionTemplateSpecializationInfo *
39400b57cec5SDimitry Andric DependentFunctionTemplateSpecializationInfo::Create(
39410b57cec5SDimitry Andric     ASTContext &Context, const UnresolvedSetImpl &Ts,
39420b57cec5SDimitry Andric     const TemplateArgumentListInfo &TArgs) {
39430b57cec5SDimitry Andric   void *Buffer = Context.Allocate(
39440b57cec5SDimitry Andric       totalSizeToAlloc<TemplateArgumentLoc, FunctionTemplateDecl *>(
39450b57cec5SDimitry Andric           TArgs.size(), Ts.size()));
39460b57cec5SDimitry Andric   return new (Buffer) DependentFunctionTemplateSpecializationInfo(Ts, TArgs);
39470b57cec5SDimitry Andric }
39480b57cec5SDimitry Andric 
39490b57cec5SDimitry Andric DependentFunctionTemplateSpecializationInfo::
39500b57cec5SDimitry Andric DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts,
39510b57cec5SDimitry Andric                                       const TemplateArgumentListInfo &TArgs)
39520b57cec5SDimitry Andric   : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) {
39530b57cec5SDimitry Andric   NumTemplates = Ts.size();
39540b57cec5SDimitry Andric   NumArgs = TArgs.size();
39550b57cec5SDimitry Andric 
39560b57cec5SDimitry Andric   FunctionTemplateDecl **TsArray = getTrailingObjects<FunctionTemplateDecl *>();
39570b57cec5SDimitry Andric   for (unsigned I = 0, E = Ts.size(); I != E; ++I)
39580b57cec5SDimitry Andric     TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl());
39590b57cec5SDimitry Andric 
39600b57cec5SDimitry Andric   TemplateArgumentLoc *ArgsArray = getTrailingObjects<TemplateArgumentLoc>();
39610b57cec5SDimitry Andric   for (unsigned I = 0, E = TArgs.size(); I != E; ++I)
39620b57cec5SDimitry Andric     new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]);
39630b57cec5SDimitry Andric }
39640b57cec5SDimitry Andric 
39650b57cec5SDimitry Andric TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const {
39660b57cec5SDimitry Andric   // For a function template specialization, query the specialization
39670b57cec5SDimitry Andric   // information object.
39680b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *FTSInfo =
39690b57cec5SDimitry Andric           TemplateOrSpecialization
39700b57cec5SDimitry Andric               .dyn_cast<FunctionTemplateSpecializationInfo *>())
39710b57cec5SDimitry Andric     return FTSInfo->getTemplateSpecializationKind();
39720b57cec5SDimitry Andric 
39730b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSInfo =
39740b57cec5SDimitry Andric           TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
39750b57cec5SDimitry Andric     return MSInfo->getTemplateSpecializationKind();
39760b57cec5SDimitry Andric 
39770b57cec5SDimitry Andric   return TSK_Undeclared;
39780b57cec5SDimitry Andric }
39790b57cec5SDimitry Andric 
39800b57cec5SDimitry Andric TemplateSpecializationKind
39810b57cec5SDimitry Andric FunctionDecl::getTemplateSpecializationKindForInstantiation() const {
39820b57cec5SDimitry Andric   // This is the same as getTemplateSpecializationKind(), except that for a
39830b57cec5SDimitry Andric   // function that is both a function template specialization and a member
39840b57cec5SDimitry Andric   // specialization, we prefer the member specialization information. Eg:
39850b57cec5SDimitry Andric   //
39860b57cec5SDimitry Andric   // template<typename T> struct A {
39870b57cec5SDimitry Andric   //   template<typename U> void f() {}
39880b57cec5SDimitry Andric   //   template<> void f<int>() {}
39890b57cec5SDimitry Andric   // };
39900b57cec5SDimitry Andric   //
39910b57cec5SDimitry Andric   // For A<int>::f<int>():
39920b57cec5SDimitry Andric   // * getTemplateSpecializationKind() will return TSK_ExplicitSpecialization
39930b57cec5SDimitry Andric   // * getTemplateSpecializationKindForInstantiation() will return
39940b57cec5SDimitry Andric   //       TSK_ImplicitInstantiation
39950b57cec5SDimitry Andric   //
39960b57cec5SDimitry Andric   // This reflects the facts that A<int>::f<int> is an explicit specialization
39970b57cec5SDimitry Andric   // of A<int>::f, and that A<int>::f<int> should be implicitly instantiated
39980b57cec5SDimitry Andric   // from A::f<int> if a definition is needed.
39990b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *FTSInfo =
40000b57cec5SDimitry Andric           TemplateOrSpecialization
40010b57cec5SDimitry Andric               .dyn_cast<FunctionTemplateSpecializationInfo *>()) {
40020b57cec5SDimitry Andric     if (auto *MSInfo = FTSInfo->getMemberSpecializationInfo())
40030b57cec5SDimitry Andric       return MSInfo->getTemplateSpecializationKind();
40040b57cec5SDimitry Andric     return FTSInfo->getTemplateSpecializationKind();
40050b57cec5SDimitry Andric   }
40060b57cec5SDimitry Andric 
40070b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSInfo =
40080b57cec5SDimitry Andric           TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
40090b57cec5SDimitry Andric     return MSInfo->getTemplateSpecializationKind();
40100b57cec5SDimitry Andric 
40110b57cec5SDimitry Andric   return TSK_Undeclared;
40120b57cec5SDimitry Andric }
40130b57cec5SDimitry Andric 
40140b57cec5SDimitry Andric void
40150b57cec5SDimitry Andric FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
40160b57cec5SDimitry Andric                                           SourceLocation PointOfInstantiation) {
40170b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *FTSInfo
40180b57cec5SDimitry Andric         = TemplateOrSpecialization.dyn_cast<
40190b57cec5SDimitry Andric                                     FunctionTemplateSpecializationInfo*>()) {
40200b57cec5SDimitry Andric     FTSInfo->setTemplateSpecializationKind(TSK);
40210b57cec5SDimitry Andric     if (TSK != TSK_ExplicitSpecialization &&
40220b57cec5SDimitry Andric         PointOfInstantiation.isValid() &&
40230b57cec5SDimitry Andric         FTSInfo->getPointOfInstantiation().isInvalid()) {
40240b57cec5SDimitry Andric       FTSInfo->setPointOfInstantiation(PointOfInstantiation);
40250b57cec5SDimitry Andric       if (ASTMutationListener *L = getASTContext().getASTMutationListener())
40260b57cec5SDimitry Andric         L->InstantiationRequested(this);
40270b57cec5SDimitry Andric     }
40280b57cec5SDimitry Andric   } else if (MemberSpecializationInfo *MSInfo
40290b57cec5SDimitry Andric              = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) {
40300b57cec5SDimitry Andric     MSInfo->setTemplateSpecializationKind(TSK);
40310b57cec5SDimitry Andric     if (TSK != TSK_ExplicitSpecialization &&
40320b57cec5SDimitry Andric         PointOfInstantiation.isValid() &&
40330b57cec5SDimitry Andric         MSInfo->getPointOfInstantiation().isInvalid()) {
40340b57cec5SDimitry Andric       MSInfo->setPointOfInstantiation(PointOfInstantiation);
40350b57cec5SDimitry Andric       if (ASTMutationListener *L = getASTContext().getASTMutationListener())
40360b57cec5SDimitry Andric         L->InstantiationRequested(this);
40370b57cec5SDimitry Andric     }
40380b57cec5SDimitry Andric   } else
40390b57cec5SDimitry Andric     llvm_unreachable("Function cannot have a template specialization kind");
40400b57cec5SDimitry Andric }
40410b57cec5SDimitry Andric 
40420b57cec5SDimitry Andric SourceLocation FunctionDecl::getPointOfInstantiation() const {
40430b57cec5SDimitry Andric   if (FunctionTemplateSpecializationInfo *FTSInfo
40440b57cec5SDimitry Andric         = TemplateOrSpecialization.dyn_cast<
40450b57cec5SDimitry Andric                                         FunctionTemplateSpecializationInfo*>())
40460b57cec5SDimitry Andric     return FTSInfo->getPointOfInstantiation();
4047e8d8bef9SDimitry Andric   if (MemberSpecializationInfo *MSInfo =
4048e8d8bef9SDimitry Andric           TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo *>())
40490b57cec5SDimitry Andric     return MSInfo->getPointOfInstantiation();
40500b57cec5SDimitry Andric 
40510b57cec5SDimitry Andric   return SourceLocation();
40520b57cec5SDimitry Andric }
40530b57cec5SDimitry Andric 
40540b57cec5SDimitry Andric bool FunctionDecl::isOutOfLine() const {
40550b57cec5SDimitry Andric   if (Decl::isOutOfLine())
40560b57cec5SDimitry Andric     return true;
40570b57cec5SDimitry Andric 
40580b57cec5SDimitry Andric   // If this function was instantiated from a member function of a
40590b57cec5SDimitry Andric   // class template, check whether that member function was defined out-of-line.
40600b57cec5SDimitry Andric   if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) {
40610b57cec5SDimitry Andric     const FunctionDecl *Definition;
40620b57cec5SDimitry Andric     if (FD->hasBody(Definition))
40630b57cec5SDimitry Andric       return Definition->isOutOfLine();
40640b57cec5SDimitry Andric   }
40650b57cec5SDimitry Andric 
40660b57cec5SDimitry Andric   // If this function was instantiated from a function template,
40670b57cec5SDimitry Andric   // check whether that function template was defined out-of-line.
40680b57cec5SDimitry Andric   if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) {
40690b57cec5SDimitry Andric     const FunctionDecl *Definition;
40700b57cec5SDimitry Andric     if (FunTmpl->getTemplatedDecl()->hasBody(Definition))
40710b57cec5SDimitry Andric       return Definition->isOutOfLine();
40720b57cec5SDimitry Andric   }
40730b57cec5SDimitry Andric 
40740b57cec5SDimitry Andric   return false;
40750b57cec5SDimitry Andric }
40760b57cec5SDimitry Andric 
40770b57cec5SDimitry Andric SourceRange FunctionDecl::getSourceRange() const {
40780b57cec5SDimitry Andric   return SourceRange(getOuterLocStart(), EndRangeLoc);
40790b57cec5SDimitry Andric }
40800b57cec5SDimitry Andric 
40810b57cec5SDimitry Andric unsigned FunctionDecl::getMemoryFunctionKind() const {
40820b57cec5SDimitry Andric   IdentifierInfo *FnInfo = getIdentifier();
40830b57cec5SDimitry Andric 
40840b57cec5SDimitry Andric   if (!FnInfo)
40850b57cec5SDimitry Andric     return 0;
40860b57cec5SDimitry Andric 
40870b57cec5SDimitry Andric   // Builtin handling.
40880b57cec5SDimitry Andric   switch (getBuiltinID()) {
40890b57cec5SDimitry Andric   case Builtin::BI__builtin_memset:
40900b57cec5SDimitry Andric   case Builtin::BI__builtin___memset_chk:
40910b57cec5SDimitry Andric   case Builtin::BImemset:
40920b57cec5SDimitry Andric     return Builtin::BImemset;
40930b57cec5SDimitry Andric 
40940b57cec5SDimitry Andric   case Builtin::BI__builtin_memcpy:
40950b57cec5SDimitry Andric   case Builtin::BI__builtin___memcpy_chk:
40960b57cec5SDimitry Andric   case Builtin::BImemcpy:
40970b57cec5SDimitry Andric     return Builtin::BImemcpy;
40980b57cec5SDimitry Andric 
4099480093f4SDimitry Andric   case Builtin::BI__builtin_mempcpy:
4100480093f4SDimitry Andric   case Builtin::BI__builtin___mempcpy_chk:
4101480093f4SDimitry Andric   case Builtin::BImempcpy:
4102480093f4SDimitry Andric     return Builtin::BImempcpy;
4103480093f4SDimitry Andric 
41040b57cec5SDimitry Andric   case Builtin::BI__builtin_memmove:
41050b57cec5SDimitry Andric   case Builtin::BI__builtin___memmove_chk:
41060b57cec5SDimitry Andric   case Builtin::BImemmove:
41070b57cec5SDimitry Andric     return Builtin::BImemmove;
41080b57cec5SDimitry Andric 
41090b57cec5SDimitry Andric   case Builtin::BIstrlcpy:
41100b57cec5SDimitry Andric   case Builtin::BI__builtin___strlcpy_chk:
41110b57cec5SDimitry Andric     return Builtin::BIstrlcpy;
41120b57cec5SDimitry Andric 
41130b57cec5SDimitry Andric   case Builtin::BIstrlcat:
41140b57cec5SDimitry Andric   case Builtin::BI__builtin___strlcat_chk:
41150b57cec5SDimitry Andric     return Builtin::BIstrlcat;
41160b57cec5SDimitry Andric 
41170b57cec5SDimitry Andric   case Builtin::BI__builtin_memcmp:
41180b57cec5SDimitry Andric   case Builtin::BImemcmp:
41190b57cec5SDimitry Andric     return Builtin::BImemcmp;
41200b57cec5SDimitry Andric 
41210b57cec5SDimitry Andric   case Builtin::BI__builtin_bcmp:
41220b57cec5SDimitry Andric   case Builtin::BIbcmp:
41230b57cec5SDimitry Andric     return Builtin::BIbcmp;
41240b57cec5SDimitry Andric 
41250b57cec5SDimitry Andric   case Builtin::BI__builtin_strncpy:
41260b57cec5SDimitry Andric   case Builtin::BI__builtin___strncpy_chk:
41270b57cec5SDimitry Andric   case Builtin::BIstrncpy:
41280b57cec5SDimitry Andric     return Builtin::BIstrncpy;
41290b57cec5SDimitry Andric 
41300b57cec5SDimitry Andric   case Builtin::BI__builtin_strncmp:
41310b57cec5SDimitry Andric   case Builtin::BIstrncmp:
41320b57cec5SDimitry Andric     return Builtin::BIstrncmp;
41330b57cec5SDimitry Andric 
41340b57cec5SDimitry Andric   case Builtin::BI__builtin_strncasecmp:
41350b57cec5SDimitry Andric   case Builtin::BIstrncasecmp:
41360b57cec5SDimitry Andric     return Builtin::BIstrncasecmp;
41370b57cec5SDimitry Andric 
41380b57cec5SDimitry Andric   case Builtin::BI__builtin_strncat:
41390b57cec5SDimitry Andric   case Builtin::BI__builtin___strncat_chk:
41400b57cec5SDimitry Andric   case Builtin::BIstrncat:
41410b57cec5SDimitry Andric     return Builtin::BIstrncat;
41420b57cec5SDimitry Andric 
41430b57cec5SDimitry Andric   case Builtin::BI__builtin_strndup:
41440b57cec5SDimitry Andric   case Builtin::BIstrndup:
41450b57cec5SDimitry Andric     return Builtin::BIstrndup;
41460b57cec5SDimitry Andric 
41470b57cec5SDimitry Andric   case Builtin::BI__builtin_strlen:
41480b57cec5SDimitry Andric   case Builtin::BIstrlen:
41490b57cec5SDimitry Andric     return Builtin::BIstrlen;
41500b57cec5SDimitry Andric 
41510b57cec5SDimitry Andric   case Builtin::BI__builtin_bzero:
41520b57cec5SDimitry Andric   case Builtin::BIbzero:
41530b57cec5SDimitry Andric     return Builtin::BIbzero;
41540b57cec5SDimitry Andric 
4155e8d8bef9SDimitry Andric   case Builtin::BIfree:
4156e8d8bef9SDimitry Andric     return Builtin::BIfree;
4157e8d8bef9SDimitry Andric 
41580b57cec5SDimitry Andric   default:
41590b57cec5SDimitry Andric     if (isExternC()) {
41600b57cec5SDimitry Andric       if (FnInfo->isStr("memset"))
41610b57cec5SDimitry Andric         return Builtin::BImemset;
4162e8d8bef9SDimitry Andric       if (FnInfo->isStr("memcpy"))
41630b57cec5SDimitry Andric         return Builtin::BImemcpy;
4164e8d8bef9SDimitry Andric       if (FnInfo->isStr("mempcpy"))
4165480093f4SDimitry Andric         return Builtin::BImempcpy;
4166e8d8bef9SDimitry Andric       if (FnInfo->isStr("memmove"))
41670b57cec5SDimitry Andric         return Builtin::BImemmove;
4168e8d8bef9SDimitry Andric       if (FnInfo->isStr("memcmp"))
41690b57cec5SDimitry Andric         return Builtin::BImemcmp;
4170e8d8bef9SDimitry Andric       if (FnInfo->isStr("bcmp"))
41710b57cec5SDimitry Andric         return Builtin::BIbcmp;
4172e8d8bef9SDimitry Andric       if (FnInfo->isStr("strncpy"))
41730b57cec5SDimitry Andric         return Builtin::BIstrncpy;
4174e8d8bef9SDimitry Andric       if (FnInfo->isStr("strncmp"))
41750b57cec5SDimitry Andric         return Builtin::BIstrncmp;
4176e8d8bef9SDimitry Andric       if (FnInfo->isStr("strncasecmp"))
41770b57cec5SDimitry Andric         return Builtin::BIstrncasecmp;
4178e8d8bef9SDimitry Andric       if (FnInfo->isStr("strncat"))
41790b57cec5SDimitry Andric         return Builtin::BIstrncat;
4180e8d8bef9SDimitry Andric       if (FnInfo->isStr("strndup"))
41810b57cec5SDimitry Andric         return Builtin::BIstrndup;
4182e8d8bef9SDimitry Andric       if (FnInfo->isStr("strlen"))
41830b57cec5SDimitry Andric         return Builtin::BIstrlen;
4184e8d8bef9SDimitry Andric       if (FnInfo->isStr("bzero"))
41850b57cec5SDimitry Andric         return Builtin::BIbzero;
4186e8d8bef9SDimitry Andric     } else if (isInStdNamespace()) {
4187e8d8bef9SDimitry Andric       if (FnInfo->isStr("free"))
4188e8d8bef9SDimitry Andric         return Builtin::BIfree;
41890b57cec5SDimitry Andric     }
41900b57cec5SDimitry Andric     break;
41910b57cec5SDimitry Andric   }
41920b57cec5SDimitry Andric   return 0;
41930b57cec5SDimitry Andric }
41940b57cec5SDimitry Andric 
41950b57cec5SDimitry Andric unsigned FunctionDecl::getODRHash() const {
41960b57cec5SDimitry Andric   assert(hasODRHash());
41970b57cec5SDimitry Andric   return ODRHash;
41980b57cec5SDimitry Andric }
41990b57cec5SDimitry Andric 
42000b57cec5SDimitry Andric unsigned FunctionDecl::getODRHash() {
42010b57cec5SDimitry Andric   if (hasODRHash())
42020b57cec5SDimitry Andric     return ODRHash;
42030b57cec5SDimitry Andric 
42040b57cec5SDimitry Andric   if (auto *FT = getInstantiatedFromMemberFunction()) {
42050b57cec5SDimitry Andric     setHasODRHash(true);
42060b57cec5SDimitry Andric     ODRHash = FT->getODRHash();
42070b57cec5SDimitry Andric     return ODRHash;
42080b57cec5SDimitry Andric   }
42090b57cec5SDimitry Andric 
42100b57cec5SDimitry Andric   class ODRHash Hash;
42110b57cec5SDimitry Andric   Hash.AddFunctionDecl(this);
42120b57cec5SDimitry Andric   setHasODRHash(true);
42130b57cec5SDimitry Andric   ODRHash = Hash.CalculateHash();
42140b57cec5SDimitry Andric   return ODRHash;
42150b57cec5SDimitry Andric }
42160b57cec5SDimitry Andric 
42170b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
42180b57cec5SDimitry Andric // FieldDecl Implementation
42190b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
42200b57cec5SDimitry Andric 
42210b57cec5SDimitry Andric FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC,
42220b57cec5SDimitry Andric                              SourceLocation StartLoc, SourceLocation IdLoc,
42230b57cec5SDimitry Andric                              IdentifierInfo *Id, QualType T,
42240b57cec5SDimitry Andric                              TypeSourceInfo *TInfo, Expr *BW, bool Mutable,
42250b57cec5SDimitry Andric                              InClassInitStyle InitStyle) {
42260b57cec5SDimitry Andric   return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
42270b57cec5SDimitry Andric                                BW, Mutable, InitStyle);
42280b57cec5SDimitry Andric }
42290b57cec5SDimitry Andric 
42300b57cec5SDimitry Andric FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
42310b57cec5SDimitry Andric   return new (C, ID) FieldDecl(Field, nullptr, SourceLocation(),
42320b57cec5SDimitry Andric                                SourceLocation(), nullptr, QualType(), nullptr,
42330b57cec5SDimitry Andric                                nullptr, false, ICIS_NoInit);
42340b57cec5SDimitry Andric }
42350b57cec5SDimitry Andric 
42360b57cec5SDimitry Andric bool FieldDecl::isAnonymousStructOrUnion() const {
42370b57cec5SDimitry Andric   if (!isImplicit() || getDeclName())
42380b57cec5SDimitry Andric     return false;
42390b57cec5SDimitry Andric 
42400b57cec5SDimitry Andric   if (const auto *Record = getType()->getAs<RecordType>())
42410b57cec5SDimitry Andric     return Record->getDecl()->isAnonymousStructOrUnion();
42420b57cec5SDimitry Andric 
42430b57cec5SDimitry Andric   return false;
42440b57cec5SDimitry Andric }
42450b57cec5SDimitry Andric 
42460b57cec5SDimitry Andric unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const {
42470b57cec5SDimitry Andric   assert(isBitField() && "not a bitfield");
42480b57cec5SDimitry Andric   return getBitWidth()->EvaluateKnownConstInt(Ctx).getZExtValue();
42490b57cec5SDimitry Andric }
42500b57cec5SDimitry Andric 
42510b57cec5SDimitry Andric bool FieldDecl::isZeroLengthBitField(const ASTContext &Ctx) const {
42520b57cec5SDimitry Andric   return isUnnamedBitfield() && !getBitWidth()->isValueDependent() &&
42530b57cec5SDimitry Andric          getBitWidthValue(Ctx) == 0;
42540b57cec5SDimitry Andric }
42550b57cec5SDimitry Andric 
42560b57cec5SDimitry Andric bool FieldDecl::isZeroSize(const ASTContext &Ctx) const {
42570b57cec5SDimitry Andric   if (isZeroLengthBitField(Ctx))
42580b57cec5SDimitry Andric     return true;
42590b57cec5SDimitry Andric 
42600b57cec5SDimitry Andric   // C++2a [intro.object]p7:
42610b57cec5SDimitry Andric   //   An object has nonzero size if it
42620b57cec5SDimitry Andric   //     -- is not a potentially-overlapping subobject, or
42630b57cec5SDimitry Andric   if (!hasAttr<NoUniqueAddressAttr>())
42640b57cec5SDimitry Andric     return false;
42650b57cec5SDimitry Andric 
42660b57cec5SDimitry Andric   //     -- is not of class type, or
42670b57cec5SDimitry Andric   const auto *RT = getType()->getAs<RecordType>();
42680b57cec5SDimitry Andric   if (!RT)
42690b57cec5SDimitry Andric     return false;
42700b57cec5SDimitry Andric   const RecordDecl *RD = RT->getDecl()->getDefinition();
42710b57cec5SDimitry Andric   if (!RD) {
42720b57cec5SDimitry Andric     assert(isInvalidDecl() && "valid field has incomplete type");
42730b57cec5SDimitry Andric     return false;
42740b57cec5SDimitry Andric   }
42750b57cec5SDimitry Andric 
42760b57cec5SDimitry Andric   //     -- [has] virtual member functions or virtual base classes, or
42770b57cec5SDimitry Andric   //     -- has subobjects of nonzero size or bit-fields of nonzero length
42780b57cec5SDimitry Andric   const auto *CXXRD = cast<CXXRecordDecl>(RD);
42790b57cec5SDimitry Andric   if (!CXXRD->isEmpty())
42800b57cec5SDimitry Andric     return false;
42810b57cec5SDimitry Andric 
42820b57cec5SDimitry Andric   // Otherwise, [...] the circumstances under which the object has zero size
42830b57cec5SDimitry Andric   // are implementation-defined.
42840b57cec5SDimitry Andric   // FIXME: This might be Itanium ABI specific; we don't yet know what the MS
42850b57cec5SDimitry Andric   // ABI will do.
42860b57cec5SDimitry Andric   return true;
42870b57cec5SDimitry Andric }
42880b57cec5SDimitry Andric 
42890b57cec5SDimitry Andric unsigned FieldDecl::getFieldIndex() const {
42900b57cec5SDimitry Andric   const FieldDecl *Canonical = getCanonicalDecl();
42910b57cec5SDimitry Andric   if (Canonical != this)
42920b57cec5SDimitry Andric     return Canonical->getFieldIndex();
42930b57cec5SDimitry Andric 
42940b57cec5SDimitry Andric   if (CachedFieldIndex) return CachedFieldIndex - 1;
42950b57cec5SDimitry Andric 
42960b57cec5SDimitry Andric   unsigned Index = 0;
42970b57cec5SDimitry Andric   const RecordDecl *RD = getParent()->getDefinition();
42980b57cec5SDimitry Andric   assert(RD && "requested index for field of struct with no definition");
42990b57cec5SDimitry Andric 
43000b57cec5SDimitry Andric   for (auto *Field : RD->fields()) {
43010b57cec5SDimitry Andric     Field->getCanonicalDecl()->CachedFieldIndex = Index + 1;
43020b57cec5SDimitry Andric     ++Index;
43030b57cec5SDimitry Andric   }
43040b57cec5SDimitry Andric 
43050b57cec5SDimitry Andric   assert(CachedFieldIndex && "failed to find field in parent");
43060b57cec5SDimitry Andric   return CachedFieldIndex - 1;
43070b57cec5SDimitry Andric }
43080b57cec5SDimitry Andric 
43090b57cec5SDimitry Andric SourceRange FieldDecl::getSourceRange() const {
43100b57cec5SDimitry Andric   const Expr *FinalExpr = getInClassInitializer();
43110b57cec5SDimitry Andric   if (!FinalExpr)
43120b57cec5SDimitry Andric     FinalExpr = getBitWidth();
43130b57cec5SDimitry Andric   if (FinalExpr)
43140b57cec5SDimitry Andric     return SourceRange(getInnerLocStart(), FinalExpr->getEndLoc());
43150b57cec5SDimitry Andric   return DeclaratorDecl::getSourceRange();
43160b57cec5SDimitry Andric }
43170b57cec5SDimitry Andric 
43180b57cec5SDimitry Andric void FieldDecl::setCapturedVLAType(const VariableArrayType *VLAType) {
43190b57cec5SDimitry Andric   assert((getParent()->isLambda() || getParent()->isCapturedRecord()) &&
43200b57cec5SDimitry Andric          "capturing type in non-lambda or captured record.");
43210b57cec5SDimitry Andric   assert(InitStorage.getInt() == ISK_NoInit &&
43220b57cec5SDimitry Andric          InitStorage.getPointer() == nullptr &&
43230b57cec5SDimitry Andric          "bit width, initializer or captured type already set");
43240b57cec5SDimitry Andric   InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType),
43250b57cec5SDimitry Andric                                ISK_CapturedVLAType);
43260b57cec5SDimitry Andric }
43270b57cec5SDimitry Andric 
43280b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
43290b57cec5SDimitry Andric // TagDecl Implementation
43300b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
43310b57cec5SDimitry Andric 
43320b57cec5SDimitry Andric TagDecl::TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
43330b57cec5SDimitry Andric                  SourceLocation L, IdentifierInfo *Id, TagDecl *PrevDecl,
43340b57cec5SDimitry Andric                  SourceLocation StartL)
43350b57cec5SDimitry Andric     : TypeDecl(DK, DC, L, Id, StartL), DeclContext(DK), redeclarable_base(C),
43360b57cec5SDimitry Andric       TypedefNameDeclOrQualifier((TypedefNameDecl *)nullptr) {
43370b57cec5SDimitry Andric   assert((DK != Enum || TK == TTK_Enum) &&
43380b57cec5SDimitry Andric          "EnumDecl not matched with TTK_Enum");
43390b57cec5SDimitry Andric   setPreviousDecl(PrevDecl);
43400b57cec5SDimitry Andric   setTagKind(TK);
43410b57cec5SDimitry Andric   setCompleteDefinition(false);
43420b57cec5SDimitry Andric   setBeingDefined(false);
43430b57cec5SDimitry Andric   setEmbeddedInDeclarator(false);
43440b57cec5SDimitry Andric   setFreeStanding(false);
43450b57cec5SDimitry Andric   setCompleteDefinitionRequired(false);
4346*81ad6265SDimitry Andric   TagDeclBits.IsThisDeclarationADemotedDefinition = false;
43470b57cec5SDimitry Andric }
43480b57cec5SDimitry Andric 
43490b57cec5SDimitry Andric SourceLocation TagDecl::getOuterLocStart() const {
43500b57cec5SDimitry Andric   return getTemplateOrInnerLocStart(this);
43510b57cec5SDimitry Andric }
43520b57cec5SDimitry Andric 
43530b57cec5SDimitry Andric SourceRange TagDecl::getSourceRange() const {
43540b57cec5SDimitry Andric   SourceLocation RBraceLoc = BraceRange.getEnd();
43550b57cec5SDimitry Andric   SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation();
43560b57cec5SDimitry Andric   return SourceRange(getOuterLocStart(), E);
43570b57cec5SDimitry Andric }
43580b57cec5SDimitry Andric 
43590b57cec5SDimitry Andric TagDecl *TagDecl::getCanonicalDecl() { return getFirstDecl(); }
43600b57cec5SDimitry Andric 
43610b57cec5SDimitry Andric void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) {
43620b57cec5SDimitry Andric   TypedefNameDeclOrQualifier = TDD;
43630b57cec5SDimitry Andric   if (const Type *T = getTypeForDecl()) {
43640b57cec5SDimitry Andric     (void)T;
43650b57cec5SDimitry Andric     assert(T->isLinkageValid());
43660b57cec5SDimitry Andric   }
43670b57cec5SDimitry Andric   assert(isLinkageValid());
43680b57cec5SDimitry Andric }
43690b57cec5SDimitry Andric 
43700b57cec5SDimitry Andric void TagDecl::startDefinition() {
43710b57cec5SDimitry Andric   setBeingDefined(true);
43720b57cec5SDimitry Andric 
43730b57cec5SDimitry Andric   if (auto *D = dyn_cast<CXXRecordDecl>(this)) {
43740b57cec5SDimitry Andric     struct CXXRecordDecl::DefinitionData *Data =
43750b57cec5SDimitry Andric       new (getASTContext()) struct CXXRecordDecl::DefinitionData(D);
43760b57cec5SDimitry Andric     for (auto I : redecls())
43770b57cec5SDimitry Andric       cast<CXXRecordDecl>(I)->DefinitionData = Data;
43780b57cec5SDimitry Andric   }
43790b57cec5SDimitry Andric }
43800b57cec5SDimitry Andric 
43810b57cec5SDimitry Andric void TagDecl::completeDefinition() {
43820b57cec5SDimitry Andric   assert((!isa<CXXRecordDecl>(this) ||
43830b57cec5SDimitry Andric           cast<CXXRecordDecl>(this)->hasDefinition()) &&
43840b57cec5SDimitry Andric          "definition completed but not started");
43850b57cec5SDimitry Andric 
43860b57cec5SDimitry Andric   setCompleteDefinition(true);
43870b57cec5SDimitry Andric   setBeingDefined(false);
43880b57cec5SDimitry Andric 
43890b57cec5SDimitry Andric   if (ASTMutationListener *L = getASTMutationListener())
43900b57cec5SDimitry Andric     L->CompletedTagDefinition(this);
43910b57cec5SDimitry Andric }
43920b57cec5SDimitry Andric 
43930b57cec5SDimitry Andric TagDecl *TagDecl::getDefinition() const {
43940b57cec5SDimitry Andric   if (isCompleteDefinition())
43950b57cec5SDimitry Andric     return const_cast<TagDecl *>(this);
43960b57cec5SDimitry Andric 
43970b57cec5SDimitry Andric   // If it's possible for us to have an out-of-date definition, check now.
43980b57cec5SDimitry Andric   if (mayHaveOutOfDateDef()) {
43990b57cec5SDimitry Andric     if (IdentifierInfo *II = getIdentifier()) {
44000b57cec5SDimitry Andric       if (II->isOutOfDate()) {
44010b57cec5SDimitry Andric         updateOutOfDate(*II);
44020b57cec5SDimitry Andric       }
44030b57cec5SDimitry Andric     }
44040b57cec5SDimitry Andric   }
44050b57cec5SDimitry Andric 
44060b57cec5SDimitry Andric   if (const auto *CXXRD = dyn_cast<CXXRecordDecl>(this))
44070b57cec5SDimitry Andric     return CXXRD->getDefinition();
44080b57cec5SDimitry Andric 
44090b57cec5SDimitry Andric   for (auto R : redecls())
44100b57cec5SDimitry Andric     if (R->isCompleteDefinition())
44110b57cec5SDimitry Andric       return R;
44120b57cec5SDimitry Andric 
44130b57cec5SDimitry Andric   return nullptr;
44140b57cec5SDimitry Andric }
44150b57cec5SDimitry Andric 
44160b57cec5SDimitry Andric void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) {
44170b57cec5SDimitry Andric   if (QualifierLoc) {
44180b57cec5SDimitry Andric     // Make sure the extended qualifier info is allocated.
44190b57cec5SDimitry Andric     if (!hasExtInfo())
44200b57cec5SDimitry Andric       TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
44210b57cec5SDimitry Andric     // Set qualifier info.
44220b57cec5SDimitry Andric     getExtInfo()->QualifierLoc = QualifierLoc;
44230b57cec5SDimitry Andric   } else {
44240b57cec5SDimitry Andric     // Here Qualifier == 0, i.e., we are removing the qualifier (if any).
44250b57cec5SDimitry Andric     if (hasExtInfo()) {
44260b57cec5SDimitry Andric       if (getExtInfo()->NumTemplParamLists == 0) {
44270b57cec5SDimitry Andric         getASTContext().Deallocate(getExtInfo());
44280b57cec5SDimitry Andric         TypedefNameDeclOrQualifier = (TypedefNameDecl *)nullptr;
44290b57cec5SDimitry Andric       }
44300b57cec5SDimitry Andric       else
44310b57cec5SDimitry Andric         getExtInfo()->QualifierLoc = QualifierLoc;
44320b57cec5SDimitry Andric     }
44330b57cec5SDimitry Andric   }
44340b57cec5SDimitry Andric }
44350b57cec5SDimitry Andric 
44360b57cec5SDimitry Andric void TagDecl::setTemplateParameterListsInfo(
44370b57cec5SDimitry Andric     ASTContext &Context, ArrayRef<TemplateParameterList *> TPLists) {
44380b57cec5SDimitry Andric   assert(!TPLists.empty());
44390b57cec5SDimitry Andric   // Make sure the extended decl info is allocated.
44400b57cec5SDimitry Andric   if (!hasExtInfo())
44410b57cec5SDimitry Andric     // Allocate external info struct.
44420b57cec5SDimitry Andric     TypedefNameDeclOrQualifier = new (getASTContext()) ExtInfo;
44430b57cec5SDimitry Andric   // Set the template parameter lists info.
44440b57cec5SDimitry Andric   getExtInfo()->setTemplateParameterListsInfo(Context, TPLists);
44450b57cec5SDimitry Andric }
44460b57cec5SDimitry Andric 
44470b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
44480b57cec5SDimitry Andric // EnumDecl Implementation
44490b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
44500b57cec5SDimitry Andric 
44510b57cec5SDimitry Andric EnumDecl::EnumDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
44520b57cec5SDimitry Andric                    SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl,
44530b57cec5SDimitry Andric                    bool Scoped, bool ScopedUsingClassTag, bool Fixed)
44540b57cec5SDimitry Andric     : TagDecl(Enum, TTK_Enum, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
44550b57cec5SDimitry Andric   assert(Scoped || !ScopedUsingClassTag);
44560b57cec5SDimitry Andric   IntegerType = nullptr;
44570b57cec5SDimitry Andric   setNumPositiveBits(0);
44580b57cec5SDimitry Andric   setNumNegativeBits(0);
44590b57cec5SDimitry Andric   setScoped(Scoped);
44600b57cec5SDimitry Andric   setScopedUsingClassTag(ScopedUsingClassTag);
44610b57cec5SDimitry Andric   setFixed(Fixed);
44620b57cec5SDimitry Andric   setHasODRHash(false);
44630b57cec5SDimitry Andric   ODRHash = 0;
44640b57cec5SDimitry Andric }
44650b57cec5SDimitry Andric 
44660b57cec5SDimitry Andric void EnumDecl::anchor() {}
44670b57cec5SDimitry Andric 
44680b57cec5SDimitry Andric EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC,
44690b57cec5SDimitry Andric                            SourceLocation StartLoc, SourceLocation IdLoc,
44700b57cec5SDimitry Andric                            IdentifierInfo *Id,
44710b57cec5SDimitry Andric                            EnumDecl *PrevDecl, bool IsScoped,
44720b57cec5SDimitry Andric                            bool IsScopedUsingClassTag, bool IsFixed) {
44730b57cec5SDimitry Andric   auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl,
44740b57cec5SDimitry Andric                                     IsScoped, IsScopedUsingClassTag, IsFixed);
44750b57cec5SDimitry Andric   Enum->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
44760b57cec5SDimitry Andric   C.getTypeDeclType(Enum, PrevDecl);
44770b57cec5SDimitry Andric   return Enum;
44780b57cec5SDimitry Andric }
44790b57cec5SDimitry Andric 
44800b57cec5SDimitry Andric EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
44810b57cec5SDimitry Andric   EnumDecl *Enum =
44820b57cec5SDimitry Andric       new (C, ID) EnumDecl(C, nullptr, SourceLocation(), SourceLocation(),
44830b57cec5SDimitry Andric                            nullptr, nullptr, false, false, false);
44840b57cec5SDimitry Andric   Enum->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
44850b57cec5SDimitry Andric   return Enum;
44860b57cec5SDimitry Andric }
44870b57cec5SDimitry Andric 
44880b57cec5SDimitry Andric SourceRange EnumDecl::getIntegerTypeRange() const {
44890b57cec5SDimitry Andric   if (const TypeSourceInfo *TI = getIntegerTypeSourceInfo())
44900b57cec5SDimitry Andric     return TI->getTypeLoc().getSourceRange();
44910b57cec5SDimitry Andric   return SourceRange();
44920b57cec5SDimitry Andric }
44930b57cec5SDimitry Andric 
44940b57cec5SDimitry Andric void EnumDecl::completeDefinition(QualType NewType,
44950b57cec5SDimitry Andric                                   QualType NewPromotionType,
44960b57cec5SDimitry Andric                                   unsigned NumPositiveBits,
44970b57cec5SDimitry Andric                                   unsigned NumNegativeBits) {
44980b57cec5SDimitry Andric   assert(!isCompleteDefinition() && "Cannot redefine enums!");
44990b57cec5SDimitry Andric   if (!IntegerType)
45000b57cec5SDimitry Andric     IntegerType = NewType.getTypePtr();
45010b57cec5SDimitry Andric   PromotionType = NewPromotionType;
45020b57cec5SDimitry Andric   setNumPositiveBits(NumPositiveBits);
45030b57cec5SDimitry Andric   setNumNegativeBits(NumNegativeBits);
45040b57cec5SDimitry Andric   TagDecl::completeDefinition();
45050b57cec5SDimitry Andric }
45060b57cec5SDimitry Andric 
45070b57cec5SDimitry Andric bool EnumDecl::isClosed() const {
45080b57cec5SDimitry Andric   if (const auto *A = getAttr<EnumExtensibilityAttr>())
45090b57cec5SDimitry Andric     return A->getExtensibility() == EnumExtensibilityAttr::Closed;
45100b57cec5SDimitry Andric   return true;
45110b57cec5SDimitry Andric }
45120b57cec5SDimitry Andric 
45130b57cec5SDimitry Andric bool EnumDecl::isClosedFlag() const {
45140b57cec5SDimitry Andric   return isClosed() && hasAttr<FlagEnumAttr>();
45150b57cec5SDimitry Andric }
45160b57cec5SDimitry Andric 
45170b57cec5SDimitry Andric bool EnumDecl::isClosedNonFlag() const {
45180b57cec5SDimitry Andric   return isClosed() && !hasAttr<FlagEnumAttr>();
45190b57cec5SDimitry Andric }
45200b57cec5SDimitry Andric 
45210b57cec5SDimitry Andric TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const {
45220b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo())
45230b57cec5SDimitry Andric     return MSI->getTemplateSpecializationKind();
45240b57cec5SDimitry Andric 
45250b57cec5SDimitry Andric   return TSK_Undeclared;
45260b57cec5SDimitry Andric }
45270b57cec5SDimitry Andric 
45280b57cec5SDimitry Andric void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK,
45290b57cec5SDimitry Andric                                          SourceLocation PointOfInstantiation) {
45300b57cec5SDimitry Andric   MemberSpecializationInfo *MSI = getMemberSpecializationInfo();
45310b57cec5SDimitry Andric   assert(MSI && "Not an instantiated member enumeration?");
45320b57cec5SDimitry Andric   MSI->setTemplateSpecializationKind(TSK);
45330b57cec5SDimitry Andric   if (TSK != TSK_ExplicitSpecialization &&
45340b57cec5SDimitry Andric       PointOfInstantiation.isValid() &&
45350b57cec5SDimitry Andric       MSI->getPointOfInstantiation().isInvalid())
45360b57cec5SDimitry Andric     MSI->setPointOfInstantiation(PointOfInstantiation);
45370b57cec5SDimitry Andric }
45380b57cec5SDimitry Andric 
45390b57cec5SDimitry Andric EnumDecl *EnumDecl::getTemplateInstantiationPattern() const {
45400b57cec5SDimitry Andric   if (MemberSpecializationInfo *MSInfo = getMemberSpecializationInfo()) {
45410b57cec5SDimitry Andric     if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
45420b57cec5SDimitry Andric       EnumDecl *ED = getInstantiatedFromMemberEnum();
45430b57cec5SDimitry Andric       while (auto *NewED = ED->getInstantiatedFromMemberEnum())
45440b57cec5SDimitry Andric         ED = NewED;
45450b57cec5SDimitry Andric       return getDefinitionOrSelf(ED);
45460b57cec5SDimitry Andric     }
45470b57cec5SDimitry Andric   }
45480b57cec5SDimitry Andric 
45490b57cec5SDimitry Andric   assert(!isTemplateInstantiation(getTemplateSpecializationKind()) &&
45500b57cec5SDimitry Andric          "couldn't find pattern for enum instantiation");
45510b57cec5SDimitry Andric   return nullptr;
45520b57cec5SDimitry Andric }
45530b57cec5SDimitry Andric 
45540b57cec5SDimitry Andric EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const {
45550b57cec5SDimitry Andric   if (SpecializationInfo)
45560b57cec5SDimitry Andric     return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom());
45570b57cec5SDimitry Andric 
45580b57cec5SDimitry Andric   return nullptr;
45590b57cec5SDimitry Andric }
45600b57cec5SDimitry Andric 
45610b57cec5SDimitry Andric void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED,
45620b57cec5SDimitry Andric                                             TemplateSpecializationKind TSK) {
45630b57cec5SDimitry Andric   assert(!SpecializationInfo && "Member enum is already a specialization");
45640b57cec5SDimitry Andric   SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK);
45650b57cec5SDimitry Andric }
45660b57cec5SDimitry Andric 
45670b57cec5SDimitry Andric unsigned EnumDecl::getODRHash() {
45680b57cec5SDimitry Andric   if (hasODRHash())
45690b57cec5SDimitry Andric     return ODRHash;
45700b57cec5SDimitry Andric 
45710b57cec5SDimitry Andric   class ODRHash Hash;
45720b57cec5SDimitry Andric   Hash.AddEnumDecl(this);
45730b57cec5SDimitry Andric   setHasODRHash(true);
45740b57cec5SDimitry Andric   ODRHash = Hash.CalculateHash();
45750b57cec5SDimitry Andric   return ODRHash;
45760b57cec5SDimitry Andric }
45770b57cec5SDimitry Andric 
4578349cc55cSDimitry Andric SourceRange EnumDecl::getSourceRange() const {
4579349cc55cSDimitry Andric   auto Res = TagDecl::getSourceRange();
4580349cc55cSDimitry Andric   // Set end-point to enum-base, e.g. enum foo : ^bar
4581349cc55cSDimitry Andric   if (auto *TSI = getIntegerTypeSourceInfo()) {
4582349cc55cSDimitry Andric     // TagDecl doesn't know about the enum base.
4583349cc55cSDimitry Andric     if (!getBraceRange().getEnd().isValid())
4584349cc55cSDimitry Andric       Res.setEnd(TSI->getTypeLoc().getEndLoc());
4585349cc55cSDimitry Andric   }
4586349cc55cSDimitry Andric   return Res;
4587349cc55cSDimitry Andric }
4588349cc55cSDimitry Andric 
45890b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
45900b57cec5SDimitry Andric // RecordDecl Implementation
45910b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
45920b57cec5SDimitry Andric 
45930b57cec5SDimitry Andric RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C,
45940b57cec5SDimitry Andric                        DeclContext *DC, SourceLocation StartLoc,
45950b57cec5SDimitry Andric                        SourceLocation IdLoc, IdentifierInfo *Id,
45960b57cec5SDimitry Andric                        RecordDecl *PrevDecl)
45970b57cec5SDimitry Andric     : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) {
45980b57cec5SDimitry Andric   assert(classof(static_cast<Decl *>(this)) && "Invalid Kind!");
45990b57cec5SDimitry Andric   setHasFlexibleArrayMember(false);
46000b57cec5SDimitry Andric   setAnonymousStructOrUnion(false);
46010b57cec5SDimitry Andric   setHasObjectMember(false);
46020b57cec5SDimitry Andric   setHasVolatileMember(false);
46030b57cec5SDimitry Andric   setHasLoadedFieldsFromExternalStorage(false);
46040b57cec5SDimitry Andric   setNonTrivialToPrimitiveDefaultInitialize(false);
46050b57cec5SDimitry Andric   setNonTrivialToPrimitiveCopy(false);
46060b57cec5SDimitry Andric   setNonTrivialToPrimitiveDestroy(false);
46070b57cec5SDimitry Andric   setHasNonTrivialToPrimitiveDefaultInitializeCUnion(false);
46080b57cec5SDimitry Andric   setHasNonTrivialToPrimitiveDestructCUnion(false);
46090b57cec5SDimitry Andric   setHasNonTrivialToPrimitiveCopyCUnion(false);
46100b57cec5SDimitry Andric   setParamDestroyedInCallee(false);
46110b57cec5SDimitry Andric   setArgPassingRestrictions(APK_CanPassInRegs);
4612*81ad6265SDimitry Andric   setIsRandomized(false);
46130b57cec5SDimitry Andric }
46140b57cec5SDimitry Andric 
46150b57cec5SDimitry Andric RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC,
46160b57cec5SDimitry Andric                                SourceLocation StartLoc, SourceLocation IdLoc,
46170b57cec5SDimitry Andric                                IdentifierInfo *Id, RecordDecl* PrevDecl) {
46180b57cec5SDimitry Andric   RecordDecl *R = new (C, DC) RecordDecl(Record, TK, C, DC,
46190b57cec5SDimitry Andric                                          StartLoc, IdLoc, Id, PrevDecl);
46200b57cec5SDimitry Andric   R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
46210b57cec5SDimitry Andric 
46220b57cec5SDimitry Andric   C.getTypeDeclType(R, PrevDecl);
46230b57cec5SDimitry Andric   return R;
46240b57cec5SDimitry Andric }
46250b57cec5SDimitry Andric 
46260b57cec5SDimitry Andric RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) {
46270b57cec5SDimitry Andric   RecordDecl *R =
46280b57cec5SDimitry Andric       new (C, ID) RecordDecl(Record, TTK_Struct, C, nullptr, SourceLocation(),
46290b57cec5SDimitry Andric                              SourceLocation(), nullptr, nullptr);
46300b57cec5SDimitry Andric   R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
46310b57cec5SDimitry Andric   return R;
46320b57cec5SDimitry Andric }
46330b57cec5SDimitry Andric 
46340b57cec5SDimitry Andric bool RecordDecl::isInjectedClassName() const {
46350b57cec5SDimitry Andric   return isImplicit() && getDeclName() && getDeclContext()->isRecord() &&
46360b57cec5SDimitry Andric     cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName();
46370b57cec5SDimitry Andric }
46380b57cec5SDimitry Andric 
46390b57cec5SDimitry Andric bool RecordDecl::isLambda() const {
46400b57cec5SDimitry Andric   if (auto RD = dyn_cast<CXXRecordDecl>(this))
46410b57cec5SDimitry Andric     return RD->isLambda();
46420b57cec5SDimitry Andric   return false;
46430b57cec5SDimitry Andric }
46440b57cec5SDimitry Andric 
46450b57cec5SDimitry Andric bool RecordDecl::isCapturedRecord() const {
46460b57cec5SDimitry Andric   return hasAttr<CapturedRecordAttr>();
46470b57cec5SDimitry Andric }
46480b57cec5SDimitry Andric 
46490b57cec5SDimitry Andric void RecordDecl::setCapturedRecord() {
46500b57cec5SDimitry Andric   addAttr(CapturedRecordAttr::CreateImplicit(getASTContext()));
46510b57cec5SDimitry Andric }
46520b57cec5SDimitry Andric 
46535ffd83dbSDimitry Andric bool RecordDecl::isOrContainsUnion() const {
46545ffd83dbSDimitry Andric   if (isUnion())
46555ffd83dbSDimitry Andric     return true;
46565ffd83dbSDimitry Andric 
46575ffd83dbSDimitry Andric   if (const RecordDecl *Def = getDefinition()) {
46585ffd83dbSDimitry Andric     for (const FieldDecl *FD : Def->fields()) {
46595ffd83dbSDimitry Andric       const RecordType *RT = FD->getType()->getAs<RecordType>();
46605ffd83dbSDimitry Andric       if (RT && RT->getDecl()->isOrContainsUnion())
46615ffd83dbSDimitry Andric         return true;
46625ffd83dbSDimitry Andric     }
46635ffd83dbSDimitry Andric   }
46645ffd83dbSDimitry Andric 
46655ffd83dbSDimitry Andric   return false;
46665ffd83dbSDimitry Andric }
46675ffd83dbSDimitry Andric 
46680b57cec5SDimitry Andric RecordDecl::field_iterator RecordDecl::field_begin() const {
46690b57cec5SDimitry Andric   if (hasExternalLexicalStorage() && !hasLoadedFieldsFromExternalStorage())
46700b57cec5SDimitry Andric     LoadFieldsFromExternalStorage();
46710b57cec5SDimitry Andric 
46720b57cec5SDimitry Andric   return field_iterator(decl_iterator(FirstDecl));
46730b57cec5SDimitry Andric }
46740b57cec5SDimitry Andric 
46750b57cec5SDimitry Andric /// completeDefinition - Notes that the definition of this type is now
46760b57cec5SDimitry Andric /// complete.
46770b57cec5SDimitry Andric void RecordDecl::completeDefinition() {
46780b57cec5SDimitry Andric   assert(!isCompleteDefinition() && "Cannot redefine record!");
46790b57cec5SDimitry Andric   TagDecl::completeDefinition();
4680fe6060f1SDimitry Andric 
4681fe6060f1SDimitry Andric   ASTContext &Ctx = getASTContext();
4682fe6060f1SDimitry Andric 
4683fe6060f1SDimitry Andric   // Layouts are dumped when computed, so if we are dumping for all complete
4684fe6060f1SDimitry Andric   // types, we need to force usage to get types that wouldn't be used elsewhere.
4685fe6060f1SDimitry Andric   if (Ctx.getLangOpts().DumpRecordLayoutsComplete)
4686fe6060f1SDimitry Andric     (void)Ctx.getASTRecordLayout(this);
46870b57cec5SDimitry Andric }
46880b57cec5SDimitry Andric 
46890b57cec5SDimitry Andric /// isMsStruct - Get whether or not this record uses ms_struct layout.
46900b57cec5SDimitry Andric /// This which can be turned on with an attribute, pragma, or the
46910b57cec5SDimitry Andric /// -mms-bitfields command-line option.
46920b57cec5SDimitry Andric bool RecordDecl::isMsStruct(const ASTContext &C) const {
46930b57cec5SDimitry Andric   return hasAttr<MSStructAttr>() || C.getLangOpts().MSBitfields == 1;
46940b57cec5SDimitry Andric }
46950b57cec5SDimitry Andric 
4696*81ad6265SDimitry Andric void RecordDecl::reorderDecls(const SmallVectorImpl<Decl *> &Decls) {
4697*81ad6265SDimitry Andric   std::tie(FirstDecl, LastDecl) = DeclContext::BuildDeclChain(Decls, false);
4698*81ad6265SDimitry Andric   LastDecl->NextInContextAndBits.setPointer(nullptr);
4699*81ad6265SDimitry Andric   setIsRandomized(true);
4700*81ad6265SDimitry Andric }
4701*81ad6265SDimitry Andric 
47020b57cec5SDimitry Andric void RecordDecl::LoadFieldsFromExternalStorage() const {
47030b57cec5SDimitry Andric   ExternalASTSource *Source = getASTContext().getExternalSource();
47040b57cec5SDimitry Andric   assert(hasExternalLexicalStorage() && Source && "No external storage?");
47050b57cec5SDimitry Andric 
47060b57cec5SDimitry Andric   // Notify that we have a RecordDecl doing some initialization.
47070b57cec5SDimitry Andric   ExternalASTSource::Deserializing TheFields(Source);
47080b57cec5SDimitry Andric 
47090b57cec5SDimitry Andric   SmallVector<Decl*, 64> Decls;
47100b57cec5SDimitry Andric   setHasLoadedFieldsFromExternalStorage(true);
47110b57cec5SDimitry Andric   Source->FindExternalLexicalDecls(this, [](Decl::Kind K) {
47120b57cec5SDimitry Andric     return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K);
47130b57cec5SDimitry Andric   }, Decls);
47140b57cec5SDimitry Andric 
47150b57cec5SDimitry Andric #ifndef NDEBUG
47160b57cec5SDimitry Andric   // Check that all decls we got were FieldDecls.
47170b57cec5SDimitry Andric   for (unsigned i=0, e=Decls.size(); i != e; ++i)
47180b57cec5SDimitry Andric     assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i]));
47190b57cec5SDimitry Andric #endif
47200b57cec5SDimitry Andric 
47210b57cec5SDimitry Andric   if (Decls.empty())
47220b57cec5SDimitry Andric     return;
47230b57cec5SDimitry Andric 
47240b57cec5SDimitry Andric   std::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
47250b57cec5SDimitry Andric                                                  /*FieldsAlreadyLoaded=*/false);
47260b57cec5SDimitry Andric }
47270b57cec5SDimitry Andric 
47280b57cec5SDimitry Andric bool RecordDecl::mayInsertExtraPadding(bool EmitRemark) const {
47290b57cec5SDimitry Andric   ASTContext &Context = getASTContext();
47300b57cec5SDimitry Andric   const SanitizerMask EnabledAsanMask = Context.getLangOpts().Sanitize.Mask &
47310b57cec5SDimitry Andric       (SanitizerKind::Address | SanitizerKind::KernelAddress);
47320b57cec5SDimitry Andric   if (!EnabledAsanMask || !Context.getLangOpts().SanitizeAddressFieldPadding)
47330b57cec5SDimitry Andric     return false;
4734fe6060f1SDimitry Andric   const auto &NoSanitizeList = Context.getNoSanitizeList();
47350b57cec5SDimitry Andric   const auto *CXXRD = dyn_cast<CXXRecordDecl>(this);
47360b57cec5SDimitry Andric   // We may be able to relax some of these requirements.
47370b57cec5SDimitry Andric   int ReasonToReject = -1;
47380b57cec5SDimitry Andric   if (!CXXRD || CXXRD->isExternCContext())
47390b57cec5SDimitry Andric     ReasonToReject = 0;  // is not C++.
47400b57cec5SDimitry Andric   else if (CXXRD->hasAttr<PackedAttr>())
47410b57cec5SDimitry Andric     ReasonToReject = 1;  // is packed.
47420b57cec5SDimitry Andric   else if (CXXRD->isUnion())
47430b57cec5SDimitry Andric     ReasonToReject = 2;  // is a union.
47440b57cec5SDimitry Andric   else if (CXXRD->isTriviallyCopyable())
47450b57cec5SDimitry Andric     ReasonToReject = 3;  // is trivially copyable.
47460b57cec5SDimitry Andric   else if (CXXRD->hasTrivialDestructor())
47470b57cec5SDimitry Andric     ReasonToReject = 4;  // has trivial destructor.
47480b57cec5SDimitry Andric   else if (CXXRD->isStandardLayout())
47490b57cec5SDimitry Andric     ReasonToReject = 5;  // is standard layout.
4750fe6060f1SDimitry Andric   else if (NoSanitizeList.containsLocation(EnabledAsanMask, getLocation(),
47510b57cec5SDimitry Andric                                            "field-padding"))
47525ffd83dbSDimitry Andric     ReasonToReject = 6;  // is in an excluded file.
4753fe6060f1SDimitry Andric   else if (NoSanitizeList.containsType(
4754fe6060f1SDimitry Andric                EnabledAsanMask, getQualifiedNameAsString(), "field-padding"))
47555ffd83dbSDimitry Andric     ReasonToReject = 7;  // The type is excluded.
47560b57cec5SDimitry Andric 
47570b57cec5SDimitry Andric   if (EmitRemark) {
47580b57cec5SDimitry Andric     if (ReasonToReject >= 0)
47590b57cec5SDimitry Andric       Context.getDiagnostics().Report(
47600b57cec5SDimitry Andric           getLocation(),
47610b57cec5SDimitry Andric           diag::remark_sanitize_address_insert_extra_padding_rejected)
47620b57cec5SDimitry Andric           << getQualifiedNameAsString() << ReasonToReject;
47630b57cec5SDimitry Andric     else
47640b57cec5SDimitry Andric       Context.getDiagnostics().Report(
47650b57cec5SDimitry Andric           getLocation(),
47660b57cec5SDimitry Andric           diag::remark_sanitize_address_insert_extra_padding_accepted)
47670b57cec5SDimitry Andric           << getQualifiedNameAsString();
47680b57cec5SDimitry Andric   }
47690b57cec5SDimitry Andric   return ReasonToReject < 0;
47700b57cec5SDimitry Andric }
47710b57cec5SDimitry Andric 
47720b57cec5SDimitry Andric const FieldDecl *RecordDecl::findFirstNamedDataMember() const {
47730b57cec5SDimitry Andric   for (const auto *I : fields()) {
47740b57cec5SDimitry Andric     if (I->getIdentifier())
47750b57cec5SDimitry Andric       return I;
47760b57cec5SDimitry Andric 
47770b57cec5SDimitry Andric     if (const auto *RT = I->getType()->getAs<RecordType>())
47780b57cec5SDimitry Andric       if (const FieldDecl *NamedDataMember =
47790b57cec5SDimitry Andric               RT->getDecl()->findFirstNamedDataMember())
47800b57cec5SDimitry Andric         return NamedDataMember;
47810b57cec5SDimitry Andric   }
47820b57cec5SDimitry Andric 
47830b57cec5SDimitry Andric   // We didn't find a named data member.
47840b57cec5SDimitry Andric   return nullptr;
47850b57cec5SDimitry Andric }
47860b57cec5SDimitry Andric 
47870b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
47880b57cec5SDimitry Andric // BlockDecl Implementation
47890b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
47900b57cec5SDimitry Andric 
47910b57cec5SDimitry Andric BlockDecl::BlockDecl(DeclContext *DC, SourceLocation CaretLoc)
47920b57cec5SDimitry Andric     : Decl(Block, DC, CaretLoc), DeclContext(Block) {
47930b57cec5SDimitry Andric   setIsVariadic(false);
47940b57cec5SDimitry Andric   setCapturesCXXThis(false);
47950b57cec5SDimitry Andric   setBlockMissingReturnType(true);
47960b57cec5SDimitry Andric   setIsConversionFromLambda(false);
47970b57cec5SDimitry Andric   setDoesNotEscape(false);
47980b57cec5SDimitry Andric   setCanAvoidCopyToHeap(false);
47990b57cec5SDimitry Andric }
48000b57cec5SDimitry Andric 
48010b57cec5SDimitry Andric void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) {
48020b57cec5SDimitry Andric   assert(!ParamInfo && "Already has param info!");
48030b57cec5SDimitry Andric 
48040b57cec5SDimitry Andric   // Zero params -> null pointer.
48050b57cec5SDimitry Andric   if (!NewParamInfo.empty()) {
48060b57cec5SDimitry Andric     NumParams = NewParamInfo.size();
48070b57cec5SDimitry Andric     ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()];
48080b57cec5SDimitry Andric     std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo);
48090b57cec5SDimitry Andric   }
48100b57cec5SDimitry Andric }
48110b57cec5SDimitry Andric 
48120b57cec5SDimitry Andric void BlockDecl::setCaptures(ASTContext &Context, ArrayRef<Capture> Captures,
48130b57cec5SDimitry Andric                             bool CapturesCXXThis) {
48140b57cec5SDimitry Andric   this->setCapturesCXXThis(CapturesCXXThis);
48150b57cec5SDimitry Andric   this->NumCaptures = Captures.size();
48160b57cec5SDimitry Andric 
48170b57cec5SDimitry Andric   if (Captures.empty()) {
48180b57cec5SDimitry Andric     this->Captures = nullptr;
48190b57cec5SDimitry Andric     return;
48200b57cec5SDimitry Andric   }
48210b57cec5SDimitry Andric 
48220b57cec5SDimitry Andric   this->Captures = Captures.copy(Context).data();
48230b57cec5SDimitry Andric }
48240b57cec5SDimitry Andric 
48250b57cec5SDimitry Andric bool BlockDecl::capturesVariable(const VarDecl *variable) const {
48260b57cec5SDimitry Andric   for (const auto &I : captures())
48270b57cec5SDimitry Andric     // Only auto vars can be captured, so no redeclaration worries.
48280b57cec5SDimitry Andric     if (I.getVariable() == variable)
48290b57cec5SDimitry Andric       return true;
48300b57cec5SDimitry Andric 
48310b57cec5SDimitry Andric   return false;
48320b57cec5SDimitry Andric }
48330b57cec5SDimitry Andric 
48340b57cec5SDimitry Andric SourceRange BlockDecl::getSourceRange() const {
48350b57cec5SDimitry Andric   return SourceRange(getLocation(), Body ? Body->getEndLoc() : getLocation());
48360b57cec5SDimitry Andric }
48370b57cec5SDimitry Andric 
48380b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
48390b57cec5SDimitry Andric // Other Decl Allocation/Deallocation Method Implementations
48400b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
48410b57cec5SDimitry Andric 
48420b57cec5SDimitry Andric void TranslationUnitDecl::anchor() {}
48430b57cec5SDimitry Andric 
48440b57cec5SDimitry Andric TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
48450b57cec5SDimitry Andric   return new (C, (DeclContext *)nullptr) TranslationUnitDecl(C);
48460b57cec5SDimitry Andric }
48470b57cec5SDimitry Andric 
48480b57cec5SDimitry Andric void PragmaCommentDecl::anchor() {}
48490b57cec5SDimitry Andric 
48500b57cec5SDimitry Andric PragmaCommentDecl *PragmaCommentDecl::Create(const ASTContext &C,
48510b57cec5SDimitry Andric                                              TranslationUnitDecl *DC,
48520b57cec5SDimitry Andric                                              SourceLocation CommentLoc,
48530b57cec5SDimitry Andric                                              PragmaMSCommentKind CommentKind,
48540b57cec5SDimitry Andric                                              StringRef Arg) {
48550b57cec5SDimitry Andric   PragmaCommentDecl *PCD =
48560b57cec5SDimitry Andric       new (C, DC, additionalSizeToAlloc<char>(Arg.size() + 1))
48570b57cec5SDimitry Andric           PragmaCommentDecl(DC, CommentLoc, CommentKind);
48580b57cec5SDimitry Andric   memcpy(PCD->getTrailingObjects<char>(), Arg.data(), Arg.size());
48590b57cec5SDimitry Andric   PCD->getTrailingObjects<char>()[Arg.size()] = '\0';
48600b57cec5SDimitry Andric   return PCD;
48610b57cec5SDimitry Andric }
48620b57cec5SDimitry Andric 
48630b57cec5SDimitry Andric PragmaCommentDecl *PragmaCommentDecl::CreateDeserialized(ASTContext &C,
48640b57cec5SDimitry Andric                                                          unsigned ID,
48650b57cec5SDimitry Andric                                                          unsigned ArgSize) {
48660b57cec5SDimitry Andric   return new (C, ID, additionalSizeToAlloc<char>(ArgSize + 1))
48670b57cec5SDimitry Andric       PragmaCommentDecl(nullptr, SourceLocation(), PCK_Unknown);
48680b57cec5SDimitry Andric }
48690b57cec5SDimitry Andric 
48700b57cec5SDimitry Andric void PragmaDetectMismatchDecl::anchor() {}
48710b57cec5SDimitry Andric 
48720b57cec5SDimitry Andric PragmaDetectMismatchDecl *
48730b57cec5SDimitry Andric PragmaDetectMismatchDecl::Create(const ASTContext &C, TranslationUnitDecl *DC,
48740b57cec5SDimitry Andric                                  SourceLocation Loc, StringRef Name,
48750b57cec5SDimitry Andric                                  StringRef Value) {
48760b57cec5SDimitry Andric   size_t ValueStart = Name.size() + 1;
48770b57cec5SDimitry Andric   PragmaDetectMismatchDecl *PDMD =
48780b57cec5SDimitry Andric       new (C, DC, additionalSizeToAlloc<char>(ValueStart + Value.size() + 1))
48790b57cec5SDimitry Andric           PragmaDetectMismatchDecl(DC, Loc, ValueStart);
48800b57cec5SDimitry Andric   memcpy(PDMD->getTrailingObjects<char>(), Name.data(), Name.size());
48810b57cec5SDimitry Andric   PDMD->getTrailingObjects<char>()[Name.size()] = '\0';
48820b57cec5SDimitry Andric   memcpy(PDMD->getTrailingObjects<char>() + ValueStart, Value.data(),
48830b57cec5SDimitry Andric          Value.size());
48840b57cec5SDimitry Andric   PDMD->getTrailingObjects<char>()[ValueStart + Value.size()] = '\0';
48850b57cec5SDimitry Andric   return PDMD;
48860b57cec5SDimitry Andric }
48870b57cec5SDimitry Andric 
48880b57cec5SDimitry Andric PragmaDetectMismatchDecl *
48890b57cec5SDimitry Andric PragmaDetectMismatchDecl::CreateDeserialized(ASTContext &C, unsigned ID,
48900b57cec5SDimitry Andric                                              unsigned NameValueSize) {
48910b57cec5SDimitry Andric   return new (C, ID, additionalSizeToAlloc<char>(NameValueSize + 1))
48920b57cec5SDimitry Andric       PragmaDetectMismatchDecl(nullptr, SourceLocation(), 0);
48930b57cec5SDimitry Andric }
48940b57cec5SDimitry Andric 
48950b57cec5SDimitry Andric void ExternCContextDecl::anchor() {}
48960b57cec5SDimitry Andric 
48970b57cec5SDimitry Andric ExternCContextDecl *ExternCContextDecl::Create(const ASTContext &C,
48980b57cec5SDimitry Andric                                                TranslationUnitDecl *DC) {
48990b57cec5SDimitry Andric   return new (C, DC) ExternCContextDecl(DC);
49000b57cec5SDimitry Andric }
49010b57cec5SDimitry Andric 
49020b57cec5SDimitry Andric void LabelDecl::anchor() {}
49030b57cec5SDimitry Andric 
49040b57cec5SDimitry Andric LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
49050b57cec5SDimitry Andric                              SourceLocation IdentL, IdentifierInfo *II) {
49060b57cec5SDimitry Andric   return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, IdentL);
49070b57cec5SDimitry Andric }
49080b57cec5SDimitry Andric 
49090b57cec5SDimitry Andric LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC,
49100b57cec5SDimitry Andric                              SourceLocation IdentL, IdentifierInfo *II,
49110b57cec5SDimitry Andric                              SourceLocation GnuLabelL) {
49120b57cec5SDimitry Andric   assert(GnuLabelL != IdentL && "Use this only for GNU local labels");
49130b57cec5SDimitry Andric   return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, GnuLabelL);
49140b57cec5SDimitry Andric }
49150b57cec5SDimitry Andric 
49160b57cec5SDimitry Andric LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
49170b57cec5SDimitry Andric   return new (C, ID) LabelDecl(nullptr, SourceLocation(), nullptr, nullptr,
49180b57cec5SDimitry Andric                                SourceLocation());
49190b57cec5SDimitry Andric }
49200b57cec5SDimitry Andric 
49210b57cec5SDimitry Andric void LabelDecl::setMSAsmLabel(StringRef Name) {
49220b57cec5SDimitry Andric char *Buffer = new (getASTContext(), 1) char[Name.size() + 1];
49230b57cec5SDimitry Andric   memcpy(Buffer, Name.data(), Name.size());
49240b57cec5SDimitry Andric   Buffer[Name.size()] = '\0';
49250b57cec5SDimitry Andric   MSAsmName = Buffer;
49260b57cec5SDimitry Andric }
49270b57cec5SDimitry Andric 
49280b57cec5SDimitry Andric void ValueDecl::anchor() {}
49290b57cec5SDimitry Andric 
49300b57cec5SDimitry Andric bool ValueDecl::isWeak() const {
4931e8d8bef9SDimitry Andric   auto *MostRecent = getMostRecentDecl();
4932e8d8bef9SDimitry Andric   return MostRecent->hasAttr<WeakAttr>() ||
4933e8d8bef9SDimitry Andric          MostRecent->hasAttr<WeakRefAttr>() || isWeakImported();
49340b57cec5SDimitry Andric }
49350b57cec5SDimitry Andric 
49360b57cec5SDimitry Andric void ImplicitParamDecl::anchor() {}
49370b57cec5SDimitry Andric 
49380b57cec5SDimitry Andric ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
49390b57cec5SDimitry Andric                                              SourceLocation IdLoc,
49400b57cec5SDimitry Andric                                              IdentifierInfo *Id, QualType Type,
49410b57cec5SDimitry Andric                                              ImplicitParamKind ParamKind) {
49420b57cec5SDimitry Andric   return new (C, DC) ImplicitParamDecl(C, DC, IdLoc, Id, Type, ParamKind);
49430b57cec5SDimitry Andric }
49440b57cec5SDimitry Andric 
49450b57cec5SDimitry Andric ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, QualType Type,
49460b57cec5SDimitry Andric                                              ImplicitParamKind ParamKind) {
49470b57cec5SDimitry Andric   return new (C, nullptr) ImplicitParamDecl(C, Type, ParamKind);
49480b57cec5SDimitry Andric }
49490b57cec5SDimitry Andric 
49500b57cec5SDimitry Andric ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C,
49510b57cec5SDimitry Andric                                                          unsigned ID) {
49520b57cec5SDimitry Andric   return new (C, ID) ImplicitParamDecl(C, QualType(), ImplicitParamKind::Other);
49530b57cec5SDimitry Andric }
49540b57cec5SDimitry Andric 
4955349cc55cSDimitry Andric FunctionDecl *
4956349cc55cSDimitry Andric FunctionDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
4957349cc55cSDimitry Andric                      const DeclarationNameInfo &NameInfo, QualType T,
4958349cc55cSDimitry Andric                      TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin,
4959349cc55cSDimitry Andric                      bool isInlineSpecified, bool hasWrittenPrototype,
4960480093f4SDimitry Andric                      ConstexprSpecKind ConstexprKind,
4961480093f4SDimitry Andric                      Expr *TrailingRequiresClause) {
4962349cc55cSDimitry Andric   FunctionDecl *New = new (C, DC) FunctionDecl(
4963349cc55cSDimitry Andric       Function, C, DC, StartLoc, NameInfo, T, TInfo, SC, UsesFPIntrin,
4964349cc55cSDimitry Andric       isInlineSpecified, ConstexprKind, TrailingRequiresClause);
49650b57cec5SDimitry Andric   New->setHasWrittenPrototype(hasWrittenPrototype);
49660b57cec5SDimitry Andric   return New;
49670b57cec5SDimitry Andric }
49680b57cec5SDimitry Andric 
49690b57cec5SDimitry Andric FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
4970e8d8bef9SDimitry Andric   return new (C, ID) FunctionDecl(
4971e8d8bef9SDimitry Andric       Function, C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(),
4972349cc55cSDimitry Andric       nullptr, SC_None, false, false, ConstexprSpecKind::Unspecified, nullptr);
49730b57cec5SDimitry Andric }
49740b57cec5SDimitry Andric 
49750b57cec5SDimitry Andric BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
49760b57cec5SDimitry Andric   return new (C, DC) BlockDecl(DC, L);
49770b57cec5SDimitry Andric }
49780b57cec5SDimitry Andric 
49790b57cec5SDimitry Andric BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
49800b57cec5SDimitry Andric   return new (C, ID) BlockDecl(nullptr, SourceLocation());
49810b57cec5SDimitry Andric }
49820b57cec5SDimitry Andric 
49830b57cec5SDimitry Andric CapturedDecl::CapturedDecl(DeclContext *DC, unsigned NumParams)
49840b57cec5SDimitry Andric     : Decl(Captured, DC, SourceLocation()), DeclContext(Captured),
49850b57cec5SDimitry Andric       NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) {}
49860b57cec5SDimitry Andric 
49870b57cec5SDimitry Andric CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC,
49880b57cec5SDimitry Andric                                    unsigned NumParams) {
49890b57cec5SDimitry Andric   return new (C, DC, additionalSizeToAlloc<ImplicitParamDecl *>(NumParams))
49900b57cec5SDimitry Andric       CapturedDecl(DC, NumParams);
49910b57cec5SDimitry Andric }
49920b57cec5SDimitry Andric 
49930b57cec5SDimitry Andric CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID,
49940b57cec5SDimitry Andric                                                unsigned NumParams) {
49950b57cec5SDimitry Andric   return new (C, ID, additionalSizeToAlloc<ImplicitParamDecl *>(NumParams))
49960b57cec5SDimitry Andric       CapturedDecl(nullptr, NumParams);
49970b57cec5SDimitry Andric }
49980b57cec5SDimitry Andric 
49990b57cec5SDimitry Andric Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); }
50000b57cec5SDimitry Andric void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); }
50010b57cec5SDimitry Andric 
50020b57cec5SDimitry Andric bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); }
50030b57cec5SDimitry Andric void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); }
50040b57cec5SDimitry Andric 
50050b57cec5SDimitry Andric EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
50060b57cec5SDimitry Andric                                            SourceLocation L,
50070b57cec5SDimitry Andric                                            IdentifierInfo *Id, QualType T,
50080b57cec5SDimitry Andric                                            Expr *E, const llvm::APSInt &V) {
50090b57cec5SDimitry Andric   return new (C, CD) EnumConstantDecl(CD, L, Id, T, E, V);
50100b57cec5SDimitry Andric }
50110b57cec5SDimitry Andric 
50120b57cec5SDimitry Andric EnumConstantDecl *
50130b57cec5SDimitry Andric EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
50140b57cec5SDimitry Andric   return new (C, ID) EnumConstantDecl(nullptr, SourceLocation(), nullptr,
50150b57cec5SDimitry Andric                                       QualType(), nullptr, llvm::APSInt());
50160b57cec5SDimitry Andric }
50170b57cec5SDimitry Andric 
50180b57cec5SDimitry Andric void IndirectFieldDecl::anchor() {}
50190b57cec5SDimitry Andric 
50200b57cec5SDimitry Andric IndirectFieldDecl::IndirectFieldDecl(ASTContext &C, DeclContext *DC,
50210b57cec5SDimitry Andric                                      SourceLocation L, DeclarationName N,
50220b57cec5SDimitry Andric                                      QualType T,
50230b57cec5SDimitry Andric                                      MutableArrayRef<NamedDecl *> CH)
50240b57cec5SDimitry Andric     : ValueDecl(IndirectField, DC, L, N, T), Chaining(CH.data()),
50250b57cec5SDimitry Andric       ChainingSize(CH.size()) {
50260b57cec5SDimitry Andric   // In C++, indirect field declarations conflict with tag declarations in the
50270b57cec5SDimitry Andric   // same scope, so add them to IDNS_Tag so that tag redeclaration finds them.
50280b57cec5SDimitry Andric   if (C.getLangOpts().CPlusPlus)
50290b57cec5SDimitry Andric     IdentifierNamespace |= IDNS_Tag;
50300b57cec5SDimitry Andric }
50310b57cec5SDimitry Andric 
50320b57cec5SDimitry Andric IndirectFieldDecl *
50330b57cec5SDimitry Andric IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
50340b57cec5SDimitry Andric                           IdentifierInfo *Id, QualType T,
50350b57cec5SDimitry Andric                           llvm::MutableArrayRef<NamedDecl *> CH) {
50360b57cec5SDimitry Andric   return new (C, DC) IndirectFieldDecl(C, DC, L, Id, T, CH);
50370b57cec5SDimitry Andric }
50380b57cec5SDimitry Andric 
50390b57cec5SDimitry Andric IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C,
50400b57cec5SDimitry Andric                                                          unsigned ID) {
50410b57cec5SDimitry Andric   return new (C, ID) IndirectFieldDecl(C, nullptr, SourceLocation(),
50420b57cec5SDimitry Andric                                        DeclarationName(), QualType(), None);
50430b57cec5SDimitry Andric }
50440b57cec5SDimitry Andric 
50450b57cec5SDimitry Andric SourceRange EnumConstantDecl::getSourceRange() const {
50460b57cec5SDimitry Andric   SourceLocation End = getLocation();
50470b57cec5SDimitry Andric   if (Init)
50480b57cec5SDimitry Andric     End = Init->getEndLoc();
50490b57cec5SDimitry Andric   return SourceRange(getLocation(), End);
50500b57cec5SDimitry Andric }
50510b57cec5SDimitry Andric 
50520b57cec5SDimitry Andric void TypeDecl::anchor() {}
50530b57cec5SDimitry Andric 
50540b57cec5SDimitry Andric TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
50550b57cec5SDimitry Andric                                  SourceLocation StartLoc, SourceLocation IdLoc,
50560b57cec5SDimitry Andric                                  IdentifierInfo *Id, TypeSourceInfo *TInfo) {
50570b57cec5SDimitry Andric   return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
50580b57cec5SDimitry Andric }
50590b57cec5SDimitry Andric 
50600b57cec5SDimitry Andric void TypedefNameDecl::anchor() {}
50610b57cec5SDimitry Andric 
50620b57cec5SDimitry Andric TagDecl *TypedefNameDecl::getAnonDeclWithTypedefName(bool AnyRedecl) const {
50630b57cec5SDimitry Andric   if (auto *TT = getTypeSourceInfo()->getType()->getAs<TagType>()) {
50640b57cec5SDimitry Andric     auto *OwningTypedef = TT->getDecl()->getTypedefNameForAnonDecl();
50650b57cec5SDimitry Andric     auto *ThisTypedef = this;
50660b57cec5SDimitry Andric     if (AnyRedecl && OwningTypedef) {
50670b57cec5SDimitry Andric       OwningTypedef = OwningTypedef->getCanonicalDecl();
50680b57cec5SDimitry Andric       ThisTypedef = ThisTypedef->getCanonicalDecl();
50690b57cec5SDimitry Andric     }
50700b57cec5SDimitry Andric     if (OwningTypedef == ThisTypedef)
50710b57cec5SDimitry Andric       return TT->getDecl();
50720b57cec5SDimitry Andric   }
50730b57cec5SDimitry Andric 
50740b57cec5SDimitry Andric   return nullptr;
50750b57cec5SDimitry Andric }
50760b57cec5SDimitry Andric 
50770b57cec5SDimitry Andric bool TypedefNameDecl::isTransparentTagSlow() const {
50780b57cec5SDimitry Andric   auto determineIsTransparent = [&]() {
50790b57cec5SDimitry Andric     if (auto *TT = getUnderlyingType()->getAs<TagType>()) {
50800b57cec5SDimitry Andric       if (auto *TD = TT->getDecl()) {
50810b57cec5SDimitry Andric         if (TD->getName() != getName())
50820b57cec5SDimitry Andric           return false;
50830b57cec5SDimitry Andric         SourceLocation TTLoc = getLocation();
50840b57cec5SDimitry Andric         SourceLocation TDLoc = TD->getLocation();
50850b57cec5SDimitry Andric         if (!TTLoc.isMacroID() || !TDLoc.isMacroID())
50860b57cec5SDimitry Andric           return false;
50870b57cec5SDimitry Andric         SourceManager &SM = getASTContext().getSourceManager();
50880b57cec5SDimitry Andric         return SM.getSpellingLoc(TTLoc) == SM.getSpellingLoc(TDLoc);
50890b57cec5SDimitry Andric       }
50900b57cec5SDimitry Andric     }
50910b57cec5SDimitry Andric     return false;
50920b57cec5SDimitry Andric   };
50930b57cec5SDimitry Andric 
50940b57cec5SDimitry Andric   bool isTransparent = determineIsTransparent();
50950b57cec5SDimitry Andric   MaybeModedTInfo.setInt((isTransparent << 1) | 1);
50960b57cec5SDimitry Andric   return isTransparent;
50970b57cec5SDimitry Andric }
50980b57cec5SDimitry Andric 
50990b57cec5SDimitry Andric TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
51000b57cec5SDimitry Andric   return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(),
51010b57cec5SDimitry Andric                                  nullptr, nullptr);
51020b57cec5SDimitry Andric }
51030b57cec5SDimitry Andric 
51040b57cec5SDimitry Andric TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC,
51050b57cec5SDimitry Andric                                      SourceLocation StartLoc,
51060b57cec5SDimitry Andric                                      SourceLocation IdLoc, IdentifierInfo *Id,
51070b57cec5SDimitry Andric                                      TypeSourceInfo *TInfo) {
51080b57cec5SDimitry Andric   return new (C, DC) TypeAliasDecl(C, DC, StartLoc, IdLoc, Id, TInfo);
51090b57cec5SDimitry Andric }
51100b57cec5SDimitry Andric 
51110b57cec5SDimitry Andric TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
51120b57cec5SDimitry Andric   return new (C, ID) TypeAliasDecl(C, nullptr, SourceLocation(),
51130b57cec5SDimitry Andric                                    SourceLocation(), nullptr, nullptr);
51140b57cec5SDimitry Andric }
51150b57cec5SDimitry Andric 
51160b57cec5SDimitry Andric SourceRange TypedefDecl::getSourceRange() const {
51170b57cec5SDimitry Andric   SourceLocation RangeEnd = getLocation();
51180b57cec5SDimitry Andric   if (TypeSourceInfo *TInfo = getTypeSourceInfo()) {
51190b57cec5SDimitry Andric     if (typeIsPostfix(TInfo->getType()))
51200b57cec5SDimitry Andric       RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
51210b57cec5SDimitry Andric   }
51220b57cec5SDimitry Andric   return SourceRange(getBeginLoc(), RangeEnd);
51230b57cec5SDimitry Andric }
51240b57cec5SDimitry Andric 
51250b57cec5SDimitry Andric SourceRange TypeAliasDecl::getSourceRange() const {
51260b57cec5SDimitry Andric   SourceLocation RangeEnd = getBeginLoc();
51270b57cec5SDimitry Andric   if (TypeSourceInfo *TInfo = getTypeSourceInfo())
51280b57cec5SDimitry Andric     RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd();
51290b57cec5SDimitry Andric   return SourceRange(getBeginLoc(), RangeEnd);
51300b57cec5SDimitry Andric }
51310b57cec5SDimitry Andric 
51320b57cec5SDimitry Andric void FileScopeAsmDecl::anchor() {}
51330b57cec5SDimitry Andric 
51340b57cec5SDimitry Andric FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC,
51350b57cec5SDimitry Andric                                            StringLiteral *Str,
51360b57cec5SDimitry Andric                                            SourceLocation AsmLoc,
51370b57cec5SDimitry Andric                                            SourceLocation RParenLoc) {
51380b57cec5SDimitry Andric   return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
51390b57cec5SDimitry Andric }
51400b57cec5SDimitry Andric 
51410b57cec5SDimitry Andric FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C,
51420b57cec5SDimitry Andric                                                        unsigned ID) {
51430b57cec5SDimitry Andric   return new (C, ID) FileScopeAsmDecl(nullptr, nullptr, SourceLocation(),
51440b57cec5SDimitry Andric                                       SourceLocation());
51450b57cec5SDimitry Andric }
51460b57cec5SDimitry Andric 
51470b57cec5SDimitry Andric void EmptyDecl::anchor() {}
51480b57cec5SDimitry Andric 
51490b57cec5SDimitry Andric EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
51500b57cec5SDimitry Andric   return new (C, DC) EmptyDecl(DC, L);
51510b57cec5SDimitry Andric }
51520b57cec5SDimitry Andric 
51530b57cec5SDimitry Andric EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
51540b57cec5SDimitry Andric   return new (C, ID) EmptyDecl(nullptr, SourceLocation());
51550b57cec5SDimitry Andric }
51560b57cec5SDimitry Andric 
51570b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
51580b57cec5SDimitry Andric // ImportDecl Implementation
51590b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
51600b57cec5SDimitry Andric 
51610b57cec5SDimitry Andric /// Retrieve the number of module identifiers needed to name the given
51620b57cec5SDimitry Andric /// module.
51630b57cec5SDimitry Andric static unsigned getNumModuleIdentifiers(Module *Mod) {
51640b57cec5SDimitry Andric   unsigned Result = 1;
51650b57cec5SDimitry Andric   while (Mod->Parent) {
51660b57cec5SDimitry Andric     Mod = Mod->Parent;
51670b57cec5SDimitry Andric     ++Result;
51680b57cec5SDimitry Andric   }
51690b57cec5SDimitry Andric   return Result;
51700b57cec5SDimitry Andric }
51710b57cec5SDimitry Andric 
51720b57cec5SDimitry Andric ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
51730b57cec5SDimitry Andric                        Module *Imported,
51740b57cec5SDimitry Andric                        ArrayRef<SourceLocation> IdentifierLocs)
51755ffd83dbSDimitry Andric     : Decl(Import, DC, StartLoc), ImportedModule(Imported),
51765ffd83dbSDimitry Andric       NextLocalImportAndComplete(nullptr, true) {
51770b57cec5SDimitry Andric   assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size());
51780b57cec5SDimitry Andric   auto *StoredLocs = getTrailingObjects<SourceLocation>();
51790b57cec5SDimitry Andric   std::uninitialized_copy(IdentifierLocs.begin(), IdentifierLocs.end(),
51800b57cec5SDimitry Andric                           StoredLocs);
51810b57cec5SDimitry Andric }
51820b57cec5SDimitry Andric 
51830b57cec5SDimitry Andric ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc,
51840b57cec5SDimitry Andric                        Module *Imported, SourceLocation EndLoc)
51855ffd83dbSDimitry Andric     : Decl(Import, DC, StartLoc), ImportedModule(Imported),
51865ffd83dbSDimitry Andric       NextLocalImportAndComplete(nullptr, false) {
51870b57cec5SDimitry Andric   *getTrailingObjects<SourceLocation>() = EndLoc;
51880b57cec5SDimitry Andric }
51890b57cec5SDimitry Andric 
51900b57cec5SDimitry Andric ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC,
51910b57cec5SDimitry Andric                                SourceLocation StartLoc, Module *Imported,
51920b57cec5SDimitry Andric                                ArrayRef<SourceLocation> IdentifierLocs) {
51930b57cec5SDimitry Andric   return new (C, DC,
51940b57cec5SDimitry Andric               additionalSizeToAlloc<SourceLocation>(IdentifierLocs.size()))
51950b57cec5SDimitry Andric       ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
51960b57cec5SDimitry Andric }
51970b57cec5SDimitry Andric 
51980b57cec5SDimitry Andric ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC,
51990b57cec5SDimitry Andric                                        SourceLocation StartLoc,
52000b57cec5SDimitry Andric                                        Module *Imported,
52010b57cec5SDimitry Andric                                        SourceLocation EndLoc) {
52020b57cec5SDimitry Andric   ImportDecl *Import = new (C, DC, additionalSizeToAlloc<SourceLocation>(1))
52030b57cec5SDimitry Andric       ImportDecl(DC, StartLoc, Imported, EndLoc);
52040b57cec5SDimitry Andric   Import->setImplicit();
52050b57cec5SDimitry Andric   return Import;
52060b57cec5SDimitry Andric }
52070b57cec5SDimitry Andric 
52080b57cec5SDimitry Andric ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID,
52090b57cec5SDimitry Andric                                            unsigned NumLocations) {
52100b57cec5SDimitry Andric   return new (C, ID, additionalSizeToAlloc<SourceLocation>(NumLocations))
52110b57cec5SDimitry Andric       ImportDecl(EmptyShell());
52120b57cec5SDimitry Andric }
52130b57cec5SDimitry Andric 
52140b57cec5SDimitry Andric ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const {
52155ffd83dbSDimitry Andric   if (!isImportComplete())
52160b57cec5SDimitry Andric     return None;
52170b57cec5SDimitry Andric 
52180b57cec5SDimitry Andric   const auto *StoredLocs = getTrailingObjects<SourceLocation>();
52190b57cec5SDimitry Andric   return llvm::makeArrayRef(StoredLocs,
52200b57cec5SDimitry Andric                             getNumModuleIdentifiers(getImportedModule()));
52210b57cec5SDimitry Andric }
52220b57cec5SDimitry Andric 
52230b57cec5SDimitry Andric SourceRange ImportDecl::getSourceRange() const {
52245ffd83dbSDimitry Andric   if (!isImportComplete())
52250b57cec5SDimitry Andric     return SourceRange(getLocation(), *getTrailingObjects<SourceLocation>());
52260b57cec5SDimitry Andric 
52270b57cec5SDimitry Andric   return SourceRange(getLocation(), getIdentifierLocs().back());
52280b57cec5SDimitry Andric }
52290b57cec5SDimitry Andric 
52300b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
52310b57cec5SDimitry Andric // ExportDecl Implementation
52320b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
52330b57cec5SDimitry Andric 
52340b57cec5SDimitry Andric void ExportDecl::anchor() {}
52350b57cec5SDimitry Andric 
52360b57cec5SDimitry Andric ExportDecl *ExportDecl::Create(ASTContext &C, DeclContext *DC,
52370b57cec5SDimitry Andric                                SourceLocation ExportLoc) {
52380b57cec5SDimitry Andric   return new (C, DC) ExportDecl(DC, ExportLoc);
52390b57cec5SDimitry Andric }
52400b57cec5SDimitry Andric 
52410b57cec5SDimitry Andric ExportDecl *ExportDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
52420b57cec5SDimitry Andric   return new (C, ID) ExportDecl(nullptr, SourceLocation());
52430b57cec5SDimitry Andric }
5244