28 #include "llvm/ADT/ArrayRef.h" 29 #include "llvm/ADT/FoldingSet.h" 30 #include "llvm/ADT/None.h" 31 #include "llvm/ADT/PointerUnion.h" 32 #include "llvm/ADT/SmallVector.h" 33 #include "llvm/Support/Casting.h" 34 #include "llvm/Support/ErrorHandling.h" 41 using namespace clang;
52 : TemplateLoc(TemplateLoc), LAngleLoc(LAngleLoc), RAngleLoc(RAngleLoc),
53 NumParams(Params.size()), ContainsUnexpandedParameterPack(
false),
54 HasRequiresClause(static_cast<
bool>(RequiresClause)) {
55 for (
unsigned Idx = 0; Idx < NumParams; ++Idx) {
60 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
61 if (NTTP->getType()->containsUnexpandedParameterPack())
62 ContainsUnexpandedParameterPack =
true;
64 if (
const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(P))
65 if (TTP->getTemplateParameters()->containsUnexpandedParameterPack())
66 ContainsUnexpandedParameterPack =
true;
73 *getTrailingObjects<Expr *>() = RequiresClause;
82 void *Mem = C.
Allocate(totalSizeToAlloc<NamedDecl *, Expr *>(
83 Params.size(), RequiresClause ? 1u : 0u),
86 RAngleLoc, RequiresClause);
90 unsigned NumRequiredArgs = 0;
92 if (
P->isTemplateParameterPack()) {
93 if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(
P))
94 if (NTTP->isExpandedParameterPack()) {
95 NumRequiredArgs += NTTP->getNumExpansionTypes();
102 if (
const auto *TTP = dyn_cast<TemplateTypeParmDecl>(
P)) {
103 if (TTP->hasDefaultArgument())
105 }
else if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(
P)) {
106 if (NTTP->hasDefaultArgument())
108 }
else if (cast<TemplateTemplateParmDecl>(
P)->hasDefaultArgument())
114 return NumRequiredArgs;
122 if (
const auto *TTP = dyn_cast<TemplateTypeParmDecl>(FirstParm))
123 return TTP->getDepth();
124 else if (
const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(FirstParm))
125 return NTTP->getDepth();
127 return cast<TemplateTemplateParmDecl>(FirstParm)->
getDepth();
133 P->setDeclContext(Owner);
135 if (
const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(
P))
143 return new (
C)
char[
sizeof(
void*) * 2];
162 Common = Prev->Common;
166 PrevDecls.push_back(Prev);
174 Common = newCommon(getASTContext());
179 Prev->Common = Common;
187 CommonBase *CommonBasePtr = getMostRecentDecl()->getCommonPtr();
192 for (uint32_t I = 0, N = *Specs++; I != N; ++I)
197 template<
class EntryType>
204 llvm::FoldingSetNodeID
ID;
205 EntryType::Profile(ID, Args, getASTContext());
206 EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos);
207 return Entry ? SETraits::getDecl(Entry)->getMostRecentDecl() :
nullptr;
210 template<
class Derived,
class EntryType>
212 llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry,
218 void *CorrectInsertPos;
219 assert(!findSpecializationImpl(Specializations,
220 SETraits::getTemplateArgs(Entry),
222 InsertPos == CorrectInsertPos &&
223 "given incorrect InsertPos for specialization");
225 Specializations.InsertNode(Entry, InsertPos);
227 EntryType *Existing = Specializations.GetOrInsertNode(Entry);
229 assert(SETraits::getDecl(Existing)->isCanonicalDecl() &&
230 "non-canonical specialization?");
234 L->AddedCXXTemplateSpecialization(cast<Derived>(
this),
235 SETraits::getDecl(Entry));
260 auto *CommonPtr =
new (
C)
Common;
266 loadLazySpecializationsImpl();
269 llvm::FoldingSetVector<FunctionTemplateSpecializationInfo> &
271 LoadLazySpecializations();
272 return getCommonPtr()->Specializations;
278 return findSpecializationImpl(getSpecializations(), Args, InsertPos);
283 addSpecializationImpl<FunctionTemplateDecl>(getSpecializations(), Info,
289 Common *CommonPtr = getCommonPtr();
291 auto &Context = getASTContext();
296 std::copy(TemplateArgs.begin(), TemplateArgs.end(),
313 Expr *AssociatedConstraints) {
316 if (!AssociatedConstraints) {
334 loadLazySpecializationsImpl();
337 llvm::FoldingSetVector<ClassTemplateSpecializationDecl> &
339 LoadLazySpecializations();
340 return getCommonPtr()->Specializations;
343 llvm::FoldingSetVector<ClassTemplatePartialSpecializationDecl> &
345 LoadLazySpecializations();
346 return getCommonPtr()->PartialSpecializations;
351 auto *CommonPtr =
new (
C)
Common;
359 return findSpecializationImpl(getSpecializations(), Args, InsertPos);
364 addSpecializationImpl<ClassTemplateDecl>(getSpecializations(), D, InsertPos);
370 return findSpecializationImpl(getPartialSpecializations(), Args, InsertPos);
377 getPartialSpecializations().InsertNode(D, InsertPos);
380 = getPartialSpecializations().GetOrInsertNode(D);
382 assert(Existing->
isCanonicalDecl() &&
"Non-canonical specialization?");
386 L->AddedCXXTemplateSpecialization(
this, D);
391 llvm::FoldingSetVector<ClassTemplatePartialSpecializationDecl> &PartialSpecs
392 = getPartialSpecializations();
394 PS.reserve(PartialSpecs.size());
396 PS.push_back(
P.getMostRecentDecl());
403 getPartialSpecializations()) {
404 if (Context.
hasSameType(
P.getInjectedSpecializationType(), T))
405 return P.getMostRecentDecl();
416 if (
P.getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
417 return P.getMostRecentDecl();
425 Common *CommonPtr = getCommonPtr();
454 bool Typename,
bool ParameterPack) {
458 TTPDecl->setTypeForDecl(TTPType.
getTypePtr());
469 return hasDefaultArgument()
470 ? getDefaultArgumentInfo()->getTypeLoc().getBeginLoc()
475 if (hasDefaultArgument() && !defaultArgumentWasInherited())
477 getDefaultArgumentInfo()->getTypeLoc().getEndLoc());
498 NonTypeTemplateParmDecl::NonTypeTemplateParmDecl(
502 :
DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc),
504 ExpandedParameterPack(
true), NumExpandedTypes(ExpandedTypes.size()) {
505 if (!ExpandedTypes.empty() && !ExpandedTInfos.empty()) {
507 getTrailingObjects<std::pair<QualType, TypeSourceInfo *>>();
508 for (
unsigned I = 0; I != NumExpandedTypes; ++I) {
509 new (&TypesAndInfos[I].first)
QualType(ExpandedTypes[I]);
510 TypesAndInfos[I].second = ExpandedTInfos[I];
522 T, ParameterPack, TInfo);
531 additionalSizeToAlloc<std::pair<QualType, TypeSourceInfo *>>(
532 ExpandedTypes.size()))
534 ExpandedTypes, ExpandedTInfos);
546 unsigned NumExpandedTypes) {
548 new (
C,
ID, additionalSizeToAlloc<std::pair<QualType, TypeSourceInfo *>>(
553 NTTP->NumExpandedTypes = NumExpandedTypes;
558 if (hasDefaultArgument() && !defaultArgumentWasInherited())
565 return hasDefaultArgument()
566 ? getDefaultArgument()->getSourceRange().getBegin()
574 void TemplateTemplateParmDecl::anchor() {}
576 TemplateTemplateParmDecl::TemplateTemplateParmDecl(
580 :
TemplateDecl(TemplateTemplateParm, DC, L, Id, Params),
582 ExpandedParameterPack(
true), NumExpandedParams(Expansions.size()) {
583 if (!Expansions.empty())
584 std::uninitialized_copy(Expansions.begin(), Expansions.end(),
585 getTrailingObjects<TemplateParameterList *>());
604 additionalSizeToAlloc<TemplateParameterList *>(Expansions.size()))
611 false,
nullptr,
nullptr);
616 unsigned NumExpansions) {
618 new (
C,
ID, additionalSizeToAlloc<TemplateParameterList *>(NumExpansions))
621 TTP->NumExpandedParams = NumExpansions;
626 return hasDefaultArgument() ? getDefaultArgument().getLocation()
633 DefaultArgument.set(
nullptr);
642 : Arguments(getTrailingObjects<TemplateArgument>()),
643 NumArguments(Args.size()) {
644 std::uninitialized_copy(Args.begin(), Args.end(),
645 getTrailingObjects<TemplateArgument>());
651 void *Mem = Context.
Allocate(totalSizeToAlloc<TemplateArgument>(Args.size()));
663 if (TemplateArgsAsWritten)
665 *TemplateArgsAsWritten);
677 void TemplateDecl::anchor() {}
692 SpecializedTemplate(SpecializedTemplate),
713 Context, ClassTemplateSpecialization, TK, DC, StartLoc, IdLoc,
714 SpecializedTemplate, Args, PrevDecl);
715 Result->MayHaveOutOfDateDef =
false;
726 Result->MayHaveOutOfDateDef =
false;
731 raw_ostream &OS,
const PrintingPolicy &Policy,
bool Qualified)
const {
736 PS ? PS->getTemplateArgsAsWritten() :
nullptr) {
746 if (
const auto *PartialSpec =
747 SpecializedTemplate.dyn_cast<SpecializedPartialSpecialization*>())
748 return PartialSpec->PartialSpecialization->getSpecializedTemplate();
772 auto *ctpsd =
const_cast<CTPSDecl *
>(cast<CTPSDecl>(
this));
774 assert(inst_from !=
nullptr);
775 return inst_from->getSourceRange();
782 if (inst_from.isNull())
784 if (
const auto *ctd = inst_from.dyn_cast<ClassTemplateDecl *>())
785 return ctd->getSourceRange();
794 void ClassTemplatePartialSpecializationDecl::anchor() {}
796 ClassTemplatePartialSpecializationDecl::
807 ClassTemplatePartialSpecialization,
808 TK, DC, StartLoc, IdLoc,
809 SpecializedTemplate, Args, PrevDecl),
810 TemplateParams(Params), ArgsAsWritten(ArgInfos),
811 InstantiatedFromMember(
nullptr,
false) {
828 auto *
Result =
new (Context, DC)
830 Params, SpecializedTemplate, Args,
831 ASTArgInfos, PrevDecl);
833 Result->MayHaveOutOfDateDef =
false;
843 Result->MayHaveOutOfDateDef =
false;
851 void FriendTemplateDecl::anchor() {}
888 auto *CommonPtr =
new (
C)
Common;
897 void ClassScopeFunctionSpecializationDecl::anchor() {}
934 loadLazySpecializationsImpl();
937 llvm::FoldingSetVector<VarTemplateSpecializationDecl> &
939 LoadLazySpecializations();
940 return getCommonPtr()->Specializations;
943 llvm::FoldingSetVector<VarTemplatePartialSpecializationDecl> &
945 LoadLazySpecializations();
946 return getCommonPtr()->PartialSpecializations;
951 auto *CommonPtr =
new (
C)
Common;
959 return findSpecializationImpl(getSpecializations(), Args, InsertPos);
964 addSpecializationImpl<VarTemplateDecl>(getSpecializations(), D, InsertPos);
970 return findSpecializationImpl(getPartialSpecializations(), Args, InsertPos);
976 getPartialSpecializations().InsertNode(D, InsertPos);
979 getPartialSpecializations().GetOrInsertNode(D);
981 assert(Existing->
isCanonicalDecl() &&
"Non-canonical specialization?");
985 L->AddedCXXTemplateSpecialization(
this, D);
990 llvm::FoldingSetVector<VarTemplatePartialSpecializationDecl> &PartialSpecs =
991 getPartialSpecializations();
993 PS.reserve(PartialSpecs.size());
995 PS.push_back(
P.getMostRecentDecl());
1003 if (
P.getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
1004 return P.getMostRecentDecl();
1018 :
VarDecl(DK, Context, DC, StartLoc, IdLoc,
1020 SpecializedTemplate(SpecializedTemplate),
1035 VarTemplateSpecialization, Context, DC, StartLoc, IdLoc,
1036 SpecializedTemplate, T, TInfo, S, Args);
1046 raw_ostream &OS,
const PrintingPolicy &Policy,
bool Qualified)
const {
1051 PS ? PS->getTemplateArgsAsWritten() :
nullptr) {
1060 if (
const auto *PartialSpec =
1061 SpecializedTemplate.dyn_cast<SpecializedPartialSpecialization *>())
1062 return PartialSpec->PartialSpecialization->getSpecializedTemplate();
1078 void VarTemplatePartialSpecializationDecl::anchor() {}
1080 VarTemplatePartialSpecializationDecl::VarTemplatePartialSpecializationDecl(
1087 DC, StartLoc, IdLoc, SpecializedTemplate, T,
1089 TemplateParams(Params), ArgsAsWritten(ArgInfos),
1090 InstantiatedFromMember(
nullptr,
false) {
1107 Context, DC, StartLoc, IdLoc, Params, SpecializedTemplate, T, TInfo,
1108 S, Args, ASTArgInfos);
1124 nullptr,
true,
false);
1125 T->setImplicit(
true);
1132 nullptr, TI->
getType(),
true, TI);
1143 false,
nullptr, TPL);
1144 TemplateTemplateParm->setImplicit(
true);
1149 nullptr,
true,
false);
1150 TemplateTypeParm->setImplicit(
true);
1154 QualType(TemplateTypeParm->getTypeForDecl(), 0));
1157 nullptr, TInfo->
getType(),
false, TInfo);
1158 NamedDecl *Params[] = {TemplateTemplateParm, TemplateTypeParm,
1159 NonTypeTemplateParm};
1172 nullptr, TInfo->
getType(),
false, TInfo);
1177 nullptr,
true,
true);
1178 Ts->setImplicit(
true);
1183 llvm::makeArrayRef(Params),
1196 llvm_unreachable(
"unhandled BuiltinTemplateKind!");
1199 void BuiltinTemplateDecl::anchor() {}
Defines the clang::ASTContext interface.
void setImplicit(bool I=true)
Represents a function declaration or definition.
A (possibly-)qualified type.
virtual Decl * GetExternalDecl(uint32_t ID)
Resolve a declaration ID into a declaration, potentially building a new declaration.
llvm::FoldingSetVector< VarTemplateSpecializationDecl > & getSpecializations() const
Retrieve the set of specializations of this variable template.
static TypeAliasTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl)
Create a function template node.
FunctionDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
SourceRange getBraceRange() const
ArrayRef< TemplateArgument > getInjectedTemplateArgs()
Retrieve the "injected" template arguments that correspond to the template parameters of this functio...
ClassTemplateSpecializationDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
C Language Family Type Representation.
static TemplateTemplateParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation L, unsigned D, unsigned P, bool ParameterPack, IdentifierInfo *Id, TemplateParameterList *Params)
Decl - This represents one declaration (or definition), e.g.
ArrayRef< NamedDecl * > asArray()
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter, and whether that default argument was inherited...
Defines the C++ template declaration subclasses.
Declaration of a variable template.
NamedDecl * getParam(unsigned Idx)
A container of type source information.
void setTemplateArgsInfo(const TemplateArgumentListInfo &ArgsInfo)
SourceLocation getEndLoc() const
Get the end source location.
void setRAngleLoc(SourceLocation Loc)
Represents a variable declaration or definition.
ASTMutationListener * getASTMutationListener() const
void LoadLazySpecializations() const
Load any lazily-loaded specializations from the external source.
Declaration of a redeclarable template.
SourceLocation getExternLoc() const
Gets the location of the extern keyword, if present.
Represents a variable template specialization, which refers to a variable template with a given set o...
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
Stores a list of template parameters for a TemplateDecl and its derived classes.
Describes how types, statements, expressions, and declarations should be printed. ...
void LoadLazySpecializations() const
Load any lazily-loaded specializations from the external source.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
SourceLocation getDefaultArgumentLoc() const
Retrieve the location of the default argument, if any.
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the class template specialization.
One of these records is kept for each identifier that is lexed.
Represents a class template specialization, which refers to a class template with a given set of temp...
unsigned getDepth() const
Retrieve the depth of the template parameter.
VarTemplateSpecializationDecl(Kind DK, ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
TemplateSpecializationKind getSpecializationKind() const
Determine the kind of specialization that this declaration represents.
Defines the position of a template parameter within a template parameter list.
VarTemplatePartialSpecializationDecl * findPartialSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the partial specialization with the provided arguments if it exists, otherwise return the inse...
void * allocateDefaultArgStorageChain(const ASTContext &C)
static TemplateArgumentList * CreateCopy(ASTContext &Context, ArrayRef< TemplateArgument > Args)
Create a new template argument list that copies the given set of template arguments.
Stores the template parameter list and associated constraints for TemplateDecl objects that track ass...
Declaration of a function specialization at template class scope.
Provides information about a function template specialization, which is a FunctionDecl that has been ...
unsigned getMinRequiredArguments() const
Returns the minimum number of arguments needed to form a template specialization. ...
A convenient class for passing around template argument information.
const TemplateArgumentList & getTemplateArgs() const
Retrieve the template arguments of the variable template specialization.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified...
static TemplateParameterList * createTypePackElementParameterList(const ASTContext &C, DeclContext *DC)
static ClassTemplateSpecializationDecl * CreateDeserialized(ASTContext &C, unsigned ID)
static TemplateTypeParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation KeyLoc, SourceLocation NameLoc, unsigned D, unsigned P, IdentifierInfo *Id, bool Typename, bool ParameterPack)
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
SourceLocation getDefaultArgumentLoc() const
Retrieves the location of the default argument declaration.
VarTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
const Type * getTypePtr() const
Retrieves a pointer to the underlying (unqualified) type.
CXXRecordDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
static FunctionTemplateSpecializationInfo * Create(ASTContext &C, FunctionDecl *FD, FunctionTemplateDecl *Template, TemplateSpecializationKind TSK, const TemplateArgumentList *TemplateArgs, const TemplateArgumentListInfo *TemplateArgsAsWritten, SourceLocation POI)
static FunctionTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl)
Create a function template node.
void AddPartialSpecialization(ClassTemplatePartialSpecializationDecl *D, void *InsertPos)
Insert the specified partial specialization knowing that it is not already in.
SpecEntryTraits< EntryType >::DeclType * findSpecializationImpl(llvm::FoldingSetVector< EntryType > &Specs, ArrayRef< TemplateArgument > Args, void *&InsertPos)
static TemplateTypeParmDecl * CreateDeserialized(const ASTContext &C, unsigned ID)
A placeholder type used to construct an empty shell of a decl-derived type that will be filled in lat...
void AddSpecialization(VarTemplateSpecializationDecl *D, void *InsertPos)
Insert the specified specialization knowing that it is not already in.
Represents a ValueDecl that came out of a declarator.
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location, which defaults to the empty location.
void AddPartialSpecialization(VarTemplatePartialSpecializationDecl *D, void *InsertPos)
Insert the specified partial specialization knowing that it is not already in.
bool isCanonicalDecl() const
Whether this particular Decl is a canonical one.
Expr - This represents one expression.
CommonBase * getCommonPtr() const
Retrieves the "common" pointer shared by all (re-)declarations of the same template.
void setAssociatedConstraints(Expr *AC)
static ClassTemplatePartialSpecializationDecl * Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, const TemplateArgumentListInfo &ArgInfos, QualType CanonInjectedType, ClassTemplatePartialSpecializationDecl *PrevDecl)
Declaration of a template type parameter.
llvm::PointerUnion< NamedDecl *, TypeSourceInfo * > FriendUnion
ClassTemplateDecl * getSpecializedTemplate() const
Retrieve the template that this specialization specializes.
Data that is common to all of the declarations of a given variable template.
An abstract interface that should be implemented by listeners that want to be notified when an AST en...
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
bool isTemplateParameterPack() const
isTemplateParameter - Determines whether this declaration is a template parameter pack...
Represents a C++ template name within the type system.
void printTemplateArgumentList(raw_ostream &OS, ArrayRef< TemplateArgument > Args, const PrintingPolicy &Policy)
Print a template argument list, including the '<' and '>' enclosing the template arguments.
Defines the clang::TypeLoc interface and its subclasses.
StorageClass
Storage classes.
Declaration of an alias template.
llvm::FoldingSetVector< ClassTemplatePartialSpecializationDecl > & getPartialSpecializations()
Retrieve the set of partial specializations of this class template.
SourceLocation getEnd() const
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
static TemplateParameterList * createBuiltinTemplateParameterList(const ASTContext &C, DeclContext *DC, BuiltinTemplateKind BTK)
ClassTemplatePartialSpecializationDecl * getInstantiatedFromMember() const
Retrieve the member class template partial specialization from which this particular class template p...
Data that is common to all of the declarations of a given class template.
QualType getTypeDeclType(const TypeDecl *Decl, const TypeDecl *PrevDecl=nullptr) const
Return the unique reference to the type for the specified type declaration.
The result type of a method or function.
void addDestruction(T *Ptr)
If T isn't trivially destructible, calls AddDeallocation to register it for destruction.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
static StringRef getIdentifier(const Token &Tok)
VarDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
static TemplateParameterList * Create(const ASTContext &C, SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl *> Params, SourceLocation RAngleLoc, Expr *RequiresClause)
static TypeAliasTemplateDecl * CreateDeserialized(ASTContext &C, unsigned ID)
Create an empty alias template node.
llvm::FoldingSetVector< ClassTemplateSpecializationDecl > & getSpecializations() const
Retrieve the set of specializations of this class template.
decl_type * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
uint32_t * LazySpecializations
If non-null, points to an array of specializations (including partial specializations) known only by ...
static ClassTemplateSpecializationDecl * Create(ASTContext &Context, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, ClassTemplateSpecializationDecl *PrevDecl)
CommonBase * newCommon(ASTContext &C) const override
ClassTemplatePartialSpecializationDecl * findPartialSpecInstantiatedFromMember(ClassTemplatePartialSpecializationDecl *D)
Find a class template partial specialization which was instantiated from the given member partial spe...
QualType InjectedClassNameType
The injected-class-name type for this class template.
bool isParameterPack() const
Returns whether this is a parameter pack.
Encodes a location in the source.
static TemplateTemplateParmDecl * CreateDeserialized(ASTContext &C, unsigned ID)
llvm::PointerUnion< ClassTemplateDecl *, ClassTemplatePartialSpecializationDecl * > getInstantiatedFrom() const
If this class template specialization is an instantiation of a template (rather than an explicit spec...
This names the __make_integer_seq BuiltinTemplateDecl.
CommonBase * newCommon(ASTContext &C) const override
Data that is common to all of the declarations of a given function template.
static void AdoptTemplateParameterList(TemplateParameterList *Params, DeclContext *Owner)
QualType getInjectedClassNameSpecialization()
Retrieve the template specialization type of the injected-class-name for this class template...
BuiltinTemplateKind
Kinds of BuiltinTemplateDecl.
static FriendTemplateDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation Loc, MutableArrayRef< TemplateParameterList *> Params, FriendUnion Friend, SourceLocation FriendLoc)
This template specialization was instantiated from a template due to an explicit instantiation defini...
This template specialization was formed from a template-id but has not yet been declared, defined, or instantiated.
TypeSourceInfo * getTypeAsWritten() const
Gets the type of this specialization as it was written by the user, if it was so written.
static VarTemplateDecl * CreateDeserialized(ASTContext &C, unsigned ID)
Create an empty variable template node.
static TemplateParameterList * createMakeIntegerSeqParameterList(const ASTContext &C, DeclContext *DC)
void addSpecialization(FunctionTemplateSpecializationInfo *Info, void *InsertPos)
Add a specialization of this function template.
void setLAngleLoc(SourceLocation Loc)
void addArgument(const TemplateArgumentLoc &Loc)
static ClassTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, NamedDecl *Decl, Expr *AssociatedConstraints=nullptr)
Create a class template node.
void * Allocate(size_t Size, unsigned Align=8) const
Represents a template argument.
QualType getTemplateSpecializationType(TemplateName T, ArrayRef< TemplateArgument > Args, QualType Canon=QualType()) const
SourceLocation getTemplateKeywordLoc() const
Gets the location of the template keyword, if present.
TagTypeKind
The kind of a tag type.
Dataflow Directional Tag Classes.
void getInjectedTemplateArgs(const TemplateParameterList *Params, SmallVectorImpl< TemplateArgument > &Args)
Get a template argument list with one argument per template parameter in a template parameter list...
virtual void getNameForDiagnostic(raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const
Appends a human-readable name for this declaration into the given stream.
bool isValid() const
Return true if this is a valid SourceLocation object.
static ClassScopeFunctionSpecializationDecl * CreateDeserialized(ASTContext &Context, unsigned ID)
const TemplateArgument & getArgument() const
static NonTypeTemplateParmDecl * Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, unsigned P, IdentifierInfo *Id, QualType T, bool ParameterPack, TypeSourceInfo *TInfo)
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
static ClassTemplateDecl * CreateDeserialized(ASTContext &C, unsigned ID)
Create an empty class template node.
The base class of all kinds of template declarations (e.g., class, function, etc.).
void LoadLazySpecializations() const
Load any lazily-loaded specializations from the external source.
This template specialization was instantiated from a template due to an explicit instantiation declar...
unsigned getIndex() const
Retrieve the index of the template parameter.
static VarTemplatePartialSpecializationDecl * CreateDeserialized(ASTContext &C, unsigned ID)
DeclarationName - The name of a declaration.
static NonTypeTemplateParmDecl * CreateDeserialized(ASTContext &C, unsigned ID)
This names the __type_pack_element BuiltinTemplateDecl.
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
llvm::ArrayRef< TemplateArgumentLoc > arguments() const
ExternalASTSource * getExternalSource() const
Retrieve a pointer to the external AST source associated with this AST context, if any...
static FriendTemplateDecl * CreateDeserialized(ASTContext &C, unsigned ID)
bool isThisDeclarationADefinition() const
Returns whether this template declaration defines the primary variable pattern.
bool isNull() const
Determine whether this template argument has no value.
VarTemplateSpecializationDecl * findSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the specialization with the provided arguments if it exists, otherwise return the insertion po...
void getNameForDiagnostic(raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const override
Appends a human-readable name for this declaration into the given stream.
unsigned getDepth() const
Get the depth of this template parameter list in the set of template parameter lists.
void getNameForDiagnostic(raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const override
Appends a human-readable name for this declaration into the given stream.
Location wrapper for a TemplateArgument.
static ClassTemplatePartialSpecializationDecl * CreateDeserialized(ASTContext &C, unsigned ID)
This template specialization was declared or defined by an explicit specialization (C++ [temp...
static VarTemplatePartialSpecializationDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, TemplateParameterList *Params, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args, const TemplateArgumentListInfo &ArgInfos)
VarTemplateDecl * getPreviousDecl()
Retrieve the previous declaration of this variable template, or nullptr if no such declaration exists...
bool hasSameType(QualType T1, QualType T2) const
Determine whether the given types T1 and T2 are equivalent.
static FunctionTemplateDecl * CreateDeserialized(ASTContext &C, unsigned ID)
Create an empty function template node.
static VarTemplateSpecializationDecl * CreateDeserialized(ASTContext &C, unsigned ID)
A template argument list.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
SourceLocation getDefaultArgumentLoc() const
Retrieve the location of the default argument, if any.
TemplateArgument * InjectedArgs
The set of "injected" template arguments used within this function template.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate.h) and friends (in DeclFriend.h).
QualType getTemplateTypeParmType(unsigned Depth, unsigned Index, bool ParameterPack, TemplateTypeParmDecl *ParmDecl=nullptr) const
Retrieve the template type parameter type for a template parameter or parameter pack with the given d...
void AddSpecialization(ClassTemplateSpecializationDecl *D, void *InsertPos)
Insert the specified specialization knowing that it is not already in.
Defines the clang::SourceLocation class and associated facilities.
Represents a C++ struct/union/class.
static const ASTTemplateArgumentListInfo * Create(ASTContext &C, const TemplateArgumentListInfo &List)
TemplateParameterList(SourceLocation TemplateLoc, SourceLocation LAngleLoc, ArrayRef< NamedDecl *> Params, SourceLocation RAngleLoc, Expr *RequiresClause)
CommonBase * newCommon(ASTContext &C) const override
void addSpecializationImpl(llvm::FoldingSetVector< EntryType > &Specs, EntryType *Entry, void *InsertPos)
CommonBase * newCommon(ASTContext &C) const override
ClassTemplatePartialSpecializationDecl * findPartialSpecialization(ArrayRef< TemplateArgument > Args, void *&InsertPos)
Return the partial specialization with the provided arguments if it exists, otherwise return the inse...
static VarTemplateDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName Name, TemplateParameterList *Params, VarDecl *Decl)
Create a variable template node.
Declaration of a class template.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
QualType getInjectedClassNameType(CXXRecordDecl *Decl, QualType TST) const
getInjectedClassNameType - Return the unique reference to the injected class name type for the specif...
void loadLazySpecializationsImpl() const
VarTemplatePartialSpecializationDecl * findPartialSpecInstantiatedFromMember(VarTemplatePartialSpecializationDecl *D)
Find a variable template partial specialization which was instantiated from the given member partial ...
Kind
Lists the kind of concrete classes of Decl.
SourceLocation getLAngleLoc() const
llvm::FoldingSetVector< FunctionTemplateSpecializationInfo > & getSpecializations() const
Retrieve the set of function template specializations of this function template.
A trivial tuple used to represent a source range.
static VarTemplateSpecializationDecl * Create(ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< TemplateArgument > Args)
This represents a decl that may have a name.
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Declaration of a friend template.
SourceLocation getRAngleLoc() const
VarTemplateDecl * getDefinition()
SourceRange getSourceRange() const LLVM_READONLY
Defines enum values for all the target-independent builtin functions.
Declaration of a template function.
ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, ClassTemplateDecl *SpecializedTemplate, ArrayRef< TemplateArgument > Args, ClassTemplateSpecializationDecl *PrevDecl)
QualType getType() const
Return the type wrapped by this type source info.
llvm::FoldingSetVector< VarTemplatePartialSpecializationDecl > & getPartialSpecializations()
Retrieve the set of partial specializations of this class template.
CanQualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.