| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 1 | //===- DeclTemplate.cpp - Template Declaration AST Node Implementation ----===// | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 2 | // | 
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | 
|  | 4 | // See https://llvm.org/LICENSE.txt for license information. | 
|  | 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 6 | // | 
|  | 7 | //===----------------------------------------------------------------------===// | 
|  | 8 | // | 
|  | 9 | // This file implements the C++ related Decl classes for templates. | 
|  | 10 | // | 
|  | 11 | //===----------------------------------------------------------------------===// | 
|  | 12 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 13 | #include "clang/AST/DeclTemplate.h" | 
| Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" | 
|  | 15 | #include "clang/AST/ASTMutationListener.h" | 
|  | 16 | #include "clang/AST/DeclCXX.h" | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclarationName.h" | 
| Douglas Gregor | 8bf4205 | 2009-02-09 18:46:07 +0000 | [diff] [blame] | 18 | #include "clang/AST/Expr.h" | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 19 | #include "clang/AST/ExternalASTSource.h" | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 20 | #include "clang/AST/TemplateBase.h" | 
|  | 21 | #include "clang/AST/TemplateName.h" | 
|  | 22 | #include "clang/AST/Type.h" | 
| John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 23 | #include "clang/AST/TypeLoc.h" | 
| David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 24 | #include "clang/Basic/Builtins.h" | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 25 | #include "clang/Basic/LLVM.h" | 
|  | 26 | #include "clang/Basic/SourceLocation.h" | 
|  | 27 | #include "llvm/ADT/ArrayRef.h" | 
|  | 28 | #include "llvm/ADT/FoldingSet.h" | 
|  | 29 | #include "llvm/ADT/None.h" | 
|  | 30 | #include "llvm/ADT/PointerUnion.h" | 
|  | 31 | #include "llvm/ADT/SmallVector.h" | 
|  | 32 | #include "llvm/Support/Casting.h" | 
|  | 33 | #include "llvm/Support/ErrorHandling.h" | 
|  | 34 | #include <algorithm> | 
|  | 35 | #include <cassert> | 
|  | 36 | #include <cstdint> | 
| Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 37 | #include <memory> | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 38 | #include <utility> | 
|  | 39 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 40 | using namespace clang; | 
|  | 41 |  | 
|  | 42 | //===----------------------------------------------------------------------===// | 
|  | 43 | // TemplateParameterList Implementation | 
|  | 44 | //===----------------------------------------------------------------------===// | 
|  | 45 |  | 
| Douglas Gregor | cd72ba9 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 46 | TemplateParameterList::TemplateParameterList(SourceLocation TemplateLoc, | 
|  | 47 | SourceLocation LAngleLoc, | 
| David Majnemer | 902f8c6 | 2015-12-27 07:16:27 +0000 | [diff] [blame] | 48 | ArrayRef<NamedDecl *> Params, | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 49 | SourceLocation RAngleLoc, | 
|  | 50 | Expr *RequiresClause) | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 51 | : TemplateLoc(TemplateLoc), LAngleLoc(LAngleLoc), RAngleLoc(RAngleLoc), | 
|  | 52 | NumParams(Params.size()), ContainsUnexpandedParameterPack(false), | 
|  | 53 | HasRequiresClause(static_cast<bool>(RequiresClause)) { | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 54 | for (unsigned Idx = 0; Idx < NumParams; ++Idx) { | 
|  | 55 | NamedDecl *P = Params[Idx]; | 
|  | 56 | begin()[Idx] = P; | 
|  | 57 |  | 
|  | 58 | if (!P->isTemplateParameterPack()) { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 59 | if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 60 | if (NTTP->getType()->containsUnexpandedParameterPack()) | 
|  | 61 | ContainsUnexpandedParameterPack = true; | 
|  | 62 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 63 | if (const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(P)) | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 64 | if (TTP->getTemplateParameters()->containsUnexpandedParameterPack()) | 
|  | 65 | ContainsUnexpandedParameterPack = true; | 
|  | 66 |  | 
|  | 67 | // FIXME: If a default argument contains an unexpanded parameter pack, the | 
|  | 68 | // template parameter list does too. | 
|  | 69 | } | 
|  | 70 | } | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 71 | if (RequiresClause) { | 
|  | 72 | *getTrailingObjects<Expr *>() = RequiresClause; | 
|  | 73 | } | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 74 | } | 
|  | 75 |  | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 76 | TemplateParameterList * | 
|  | 77 | TemplateParameterList::Create(const ASTContext &C, SourceLocation TemplateLoc, | 
|  | 78 | SourceLocation LAngleLoc, | 
|  | 79 | ArrayRef<NamedDecl *> Params, | 
|  | 80 | SourceLocation RAngleLoc, Expr *RequiresClause) { | 
|  | 81 | void *Mem = C.Allocate(totalSizeToAlloc<NamedDecl *, Expr *>( | 
|  | 82 | Params.size(), RequiresClause ? 1u : 0u), | 
| Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 83 | alignof(TemplateParameterList)); | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 84 | return new (Mem) TemplateParameterList(TemplateLoc, LAngleLoc, Params, | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 85 | RAngleLoc, RequiresClause); | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 86 | } | 
|  | 87 |  | 
| Douglas Gregor | f8f8683 | 2009-02-11 18:16:40 +0000 | [diff] [blame] | 88 | unsigned TemplateParameterList::getMinRequiredArguments() const { | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 89 | unsigned NumRequiredArgs = 0; | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 90 | for (const NamedDecl *P : asArray()) { | 
|  | 91 | if (P->isTemplateParameterPack()) { | 
|  | 92 | if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 93 | if (NTTP->isExpandedParameterPack()) { | 
|  | 94 | NumRequiredArgs += NTTP->getNumExpansionTypes(); | 
|  | 95 | continue; | 
|  | 96 | } | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 97 |  | 
| Douglas Gregor | f8f8683 | 2009-02-11 18:16:40 +0000 | [diff] [blame] | 98 | break; | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 99 | } | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 100 |  | 
|  | 101 | if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(P)) { | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 102 | if (TTP->hasDefaultArgument()) | 
|  | 103 | break; | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 104 | } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) { | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 105 | if (NTTP->hasDefaultArgument()) | 
|  | 106 | break; | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 107 | } else if (cast<TemplateTemplateParmDecl>(P)->hasDefaultArgument()) | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 108 | break; | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 109 |  | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 110 | ++NumRequiredArgs; | 
| Douglas Gregor | f8f8683 | 2009-02-11 18:16:40 +0000 | [diff] [blame] | 111 | } | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 112 |  | 
| Douglas Gregor | f8f8683 | 2009-02-11 18:16:40 +0000 | [diff] [blame] | 113 | return NumRequiredArgs; | 
|  | 114 | } | 
|  | 115 |  | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 116 | unsigned TemplateParameterList::getDepth() const { | 
|  | 117 | if (size() == 0) | 
|  | 118 | return 0; | 
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 119 |  | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 120 | const NamedDecl *FirstParm = getParam(0); | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 121 | if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(FirstParm)) | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 122 | return TTP->getDepth(); | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 123 | else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(FirstParm)) | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 124 | return NTTP->getDepth(); | 
|  | 125 | else | 
|  | 126 | return cast<TemplateTemplateParmDecl>(FirstParm)->getDepth(); | 
|  | 127 | } | 
|  | 128 |  | 
| Douglas Gregor | 3c41bf7 | 2011-03-04 18:32:38 +0000 | [diff] [blame] | 129 | static void AdoptTemplateParameterList(TemplateParameterList *Params, | 
|  | 130 | DeclContext *Owner) { | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 131 | for (NamedDecl *P : *Params) { | 
|  | 132 | P->setDeclContext(Owner); | 
|  | 133 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 134 | if (const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(P)) | 
| Douglas Gregor | 3c41bf7 | 2011-03-04 18:32:38 +0000 | [diff] [blame] | 135 | AdoptTemplateParameterList(TTP->getTemplateParameters(), Owner); | 
|  | 136 | } | 
|  | 137 | } | 
|  | 138 |  | 
| Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 139 | namespace clang { | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 140 |  | 
| Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 141 | void *allocateDefaultArgStorageChain(const ASTContext &C) { | 
|  | 142 | return new (C) char[sizeof(void*) * 2]; | 
|  | 143 | } | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 144 |  | 
|  | 145 | } // namespace clang | 
| Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 146 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 147 | //===----------------------------------------------------------------------===// | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 148 | // RedeclarableTemplateDecl Implementation | 
|  | 149 | //===----------------------------------------------------------------------===// | 
|  | 150 |  | 
| Richard Trieu | b3e902f | 2018-12-29 02:02:30 +0000 | [diff] [blame] | 151 | void RedeclarableTemplateDecl::anchor() {} | 
|  | 152 |  | 
| Dmitri Gribenko | b53f37c | 2013-01-23 16:52:57 +0000 | [diff] [blame] | 153 | RedeclarableTemplateDecl::CommonBase *RedeclarableTemplateDecl::getCommonPtr() const { | 
| Rafael Espindola | cb444fe | 2013-10-19 02:28:17 +0000 | [diff] [blame] | 154 | if (Common) | 
|  | 155 | return Common; | 
|  | 156 |  | 
|  | 157 | // Walk the previous-declaration chain until we either find a declaration | 
|  | 158 | // with a common pointer or we run out of previous declarations. | 
|  | 159 | SmallVector<const RedeclarableTemplateDecl *, 2> PrevDecls; | 
|  | 160 | for (const RedeclarableTemplateDecl *Prev = getPreviousDecl(); Prev; | 
|  | 161 | Prev = Prev->getPreviousDecl()) { | 
|  | 162 | if (Prev->Common) { | 
|  | 163 | Common = Prev->Common; | 
|  | 164 | break; | 
| Douglas Gregor | 68444de | 2012-01-14 15:13:49 +0000 | [diff] [blame] | 165 | } | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 166 |  | 
| Rafael Espindola | cb444fe | 2013-10-19 02:28:17 +0000 | [diff] [blame] | 167 | PrevDecls.push_back(Prev); | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 168 | } | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 169 |  | 
| Rafael Espindola | cb444fe | 2013-10-19 02:28:17 +0000 | [diff] [blame] | 170 | // If we never found a common pointer, allocate one now. | 
|  | 171 | if (!Common) { | 
|  | 172 | // FIXME: If any of the declarations is from an AST file, we probably | 
|  | 173 | // need an update record to add the common data. | 
|  | 174 |  | 
|  | 175 | Common = newCommon(getASTContext()); | 
|  | 176 | } | 
|  | 177 |  | 
|  | 178 | // Update any previous declarations we saw with the common pointer. | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 179 | for (const RedeclarableTemplateDecl *Prev : PrevDecls) | 
|  | 180 | Prev->Common = Common; | 
| Rafael Espindola | cb444fe | 2013-10-19 02:28:17 +0000 | [diff] [blame] | 181 |  | 
| Douglas Gregor | 68444de | 2012-01-14 15:13:49 +0000 | [diff] [blame] | 182 | return Common; | 
| Peter Collingbourne | 029fd69 | 2010-07-29 16:12:09 +0000 | [diff] [blame] | 183 | } | 
|  | 184 |  | 
| Vassil Vassilev | 61f6429 | 2017-12-14 23:30:18 +0000 | [diff] [blame] | 185 | void RedeclarableTemplateDecl::loadLazySpecializationsImpl() const { | 
|  | 186 | // Grab the most recent declaration to ensure we've loaded any lazy | 
|  | 187 | // redeclarations of this template. | 
|  | 188 | CommonBase *CommonBasePtr = getMostRecentDecl()->getCommonPtr(); | 
|  | 189 | if (CommonBasePtr->LazySpecializations) { | 
|  | 190 | ASTContext &Context = getASTContext(); | 
|  | 191 | uint32_t *Specs = CommonBasePtr->LazySpecializations; | 
|  | 192 | CommonBasePtr->LazySpecializations = nullptr; | 
|  | 193 | for (uint32_t I = 0, N = *Specs++; I != N; ++I) | 
|  | 194 | (void)Context.getExternalSource()->GetExternalDecl(Specs[I]); | 
|  | 195 | } | 
|  | 196 | } | 
|  | 197 |  | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 198 | template<class EntryType> | 
|  | 199 | typename RedeclarableTemplateDecl::SpecEntryTraits<EntryType>::DeclType * | 
| Peter Collingbourne | b498ed6 | 2010-07-30 17:09:04 +0000 | [diff] [blame] | 200 | RedeclarableTemplateDecl::findSpecializationImpl( | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 201 | llvm::FoldingSetVector<EntryType> &Specs, ArrayRef<TemplateArgument> Args, | 
|  | 202 | void *&InsertPos) { | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 203 | using SETraits = SpecEntryTraits<EntryType>; | 
|  | 204 |  | 
| Peter Collingbourne | b498ed6 | 2010-07-30 17:09:04 +0000 | [diff] [blame] | 205 | llvm::FoldingSetNodeID ID; | 
| Vassil Vassilev | 61f6429 | 2017-12-14 23:30:18 +0000 | [diff] [blame] | 206 | EntryType::Profile(ID, Args, getASTContext()); | 
| Peter Collingbourne | b498ed6 | 2010-07-30 17:09:04 +0000 | [diff] [blame] | 207 | EntryType *Entry = Specs.FindNodeOrInsertPos(ID, InsertPos); | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 208 | return Entry ? SETraits::getDecl(Entry)->getMostRecentDecl() : nullptr; | 
|  | 209 | } | 
|  | 210 |  | 
|  | 211 | template<class Derived, class EntryType> | 
|  | 212 | void RedeclarableTemplateDecl::addSpecializationImpl( | 
|  | 213 | llvm::FoldingSetVector<EntryType> &Specializations, EntryType *Entry, | 
|  | 214 | void *InsertPos) { | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 215 | using SETraits = SpecEntryTraits<EntryType>; | 
|  | 216 |  | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 217 | if (InsertPos) { | 
|  | 218 | #ifndef NDEBUG | 
|  | 219 | void *CorrectInsertPos; | 
|  | 220 | assert(!findSpecializationImpl(Specializations, | 
|  | 221 | SETraits::getTemplateArgs(Entry), | 
|  | 222 | CorrectInsertPos) && | 
|  | 223 | InsertPos == CorrectInsertPos && | 
|  | 224 | "given incorrect InsertPos for specialization"); | 
|  | 225 | #endif | 
|  | 226 | Specializations.InsertNode(Entry, InsertPos); | 
|  | 227 | } else { | 
|  | 228 | EntryType *Existing = Specializations.GetOrInsertNode(Entry); | 
|  | 229 | (void)Existing; | 
|  | 230 | assert(SETraits::getDecl(Existing)->isCanonicalDecl() && | 
|  | 231 | "non-canonical specialization?"); | 
|  | 232 | } | 
|  | 233 |  | 
|  | 234 | if (ASTMutationListener *L = getASTMutationListener()) | 
|  | 235 | L->AddedCXXTemplateSpecialization(cast<Derived>(this), | 
|  | 236 | SETraits::getDecl(Entry)); | 
| Peter Collingbourne | b498ed6 | 2010-07-30 17:09:04 +0000 | [diff] [blame] | 237 | } | 
|  | 238 |  | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 239 | //===----------------------------------------------------------------------===// | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 240 | // FunctionTemplateDecl Implementation | 
|  | 241 | //===----------------------------------------------------------------------===// | 
|  | 242 |  | 
|  | 243 | FunctionTemplateDecl *FunctionTemplateDecl::Create(ASTContext &C, | 
|  | 244 | DeclContext *DC, | 
|  | 245 | SourceLocation L, | 
|  | 246 | DeclarationName Name, | 
| Douglas Gregor | 8f5d442 | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 247 | TemplateParameterList *Params, | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 248 | NamedDecl *Decl) { | 
| Douglas Gregor | 3c41bf7 | 2011-03-04 18:32:38 +0000 | [diff] [blame] | 249 | AdoptTemplateParameterList(Params, cast<DeclContext>(Decl)); | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 250 | return new (C, DC) FunctionTemplateDecl(C, DC, L, Name, Params, Decl); | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 251 | } | 
|  | 252 |  | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 253 | FunctionTemplateDecl *FunctionTemplateDecl::CreateDeserialized(ASTContext &C, | 
|  | 254 | unsigned ID) { | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 255 | return new (C, ID) FunctionTemplateDecl(C, nullptr, SourceLocation(), | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 256 | DeclarationName(), nullptr, nullptr); | 
| Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 257 | } | 
|  | 258 |  | 
| Argyrios Kyrtzidis | f4bc0d8 | 2010-09-08 19:31:22 +0000 | [diff] [blame] | 259 | RedeclarableTemplateDecl::CommonBase * | 
| Dmitri Gribenko | b53f37c | 2013-01-23 16:52:57 +0000 | [diff] [blame] | 260 | FunctionTemplateDecl::newCommon(ASTContext &C) const { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 261 | auto *CommonPtr = new (C) Common; | 
| George Burgess IV | b61bfbd | 2017-02-14 05:37:36 +0000 | [diff] [blame] | 262 | C.addDestruction(CommonPtr); | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 263 | return CommonPtr; | 
|  | 264 | } | 
|  | 265 |  | 
| Richard Smith | feb3e1a | 2013-06-28 04:37:53 +0000 | [diff] [blame] | 266 | void FunctionTemplateDecl::LoadLazySpecializations() const { | 
| Vassil Vassilev | 61f6429 | 2017-12-14 23:30:18 +0000 | [diff] [blame] | 267 | loadLazySpecializationsImpl(); | 
| Richard Smith | feb3e1a | 2013-06-28 04:37:53 +0000 | [diff] [blame] | 268 | } | 
|  | 269 |  | 
|  | 270 | llvm::FoldingSetVector<FunctionTemplateSpecializationInfo> & | 
|  | 271 | FunctionTemplateDecl::getSpecializations() const { | 
|  | 272 | LoadLazySpecializations(); | 
|  | 273 | return getCommonPtr()->Specializations; | 
|  | 274 | } | 
|  | 275 |  | 
| Argyrios Kyrtzidis | dde5790 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 276 | FunctionDecl * | 
| Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 277 | FunctionTemplateDecl::findSpecialization(ArrayRef<TemplateArgument> Args, | 
|  | 278 | void *&InsertPos) { | 
|  | 279 | return findSpecializationImpl(getSpecializations(), Args, InsertPos); | 
| Argyrios Kyrtzidis | dde5790 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 280 | } | 
|  | 281 |  | 
| Sebastian Redl | 9ab988f | 2011-04-14 14:07:59 +0000 | [diff] [blame] | 282 | void FunctionTemplateDecl::addSpecialization( | 
|  | 283 | FunctionTemplateSpecializationInfo *Info, void *InsertPos) { | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 284 | addSpecializationImpl<FunctionTemplateDecl>(getSpecializations(), Info, | 
|  | 285 | InsertPos); | 
| Sebastian Redl | 9ab988f | 2011-04-14 14:07:59 +0000 | [diff] [blame] | 286 | } | 
|  | 287 |  | 
| Richard Smith | 841d8b2 | 2013-05-17 03:04:50 +0000 | [diff] [blame] | 288 | ArrayRef<TemplateArgument> FunctionTemplateDecl::getInjectedTemplateArgs() { | 
| Douglas Gregor | 43669f8 | 2011-03-05 17:54:25 +0000 | [diff] [blame] | 289 | TemplateParameterList *Params = getTemplateParameters(); | 
|  | 290 | Common *CommonPtr = getCommonPtr(); | 
|  | 291 | if (!CommonPtr->InjectedArgs) { | 
| Richard Smith | 43e14d2 | 2016-12-23 02:10:11 +0000 | [diff] [blame] | 292 | auto &Context = getASTContext(); | 
|  | 293 | SmallVector<TemplateArgument, 16> TemplateArgs; | 
|  | 294 | Context.getInjectedTemplateArgs(Params, TemplateArgs); | 
|  | 295 | CommonPtr->InjectedArgs = | 
|  | 296 | new (Context) TemplateArgument[TemplateArgs.size()]; | 
|  | 297 | std::copy(TemplateArgs.begin(), TemplateArgs.end(), | 
|  | 298 | CommonPtr->InjectedArgs); | 
| Douglas Gregor | 43669f8 | 2011-03-05 17:54:25 +0000 | [diff] [blame] | 299 | } | 
| Richard Smith | 841d8b2 | 2013-05-17 03:04:50 +0000 | [diff] [blame] | 300 |  | 
|  | 301 | return llvm::makeArrayRef(CommonPtr->InjectedArgs, Params->size()); | 
| Douglas Gregor | 43669f8 | 2011-03-05 17:54:25 +0000 | [diff] [blame] | 302 | } | 
|  | 303 |  | 
| Erik Pilkington | d1a184f | 2018-10-10 17:17:51 +0000 | [diff] [blame] | 304 | void FunctionTemplateDecl::mergePrevDecl(FunctionTemplateDecl *Prev) { | 
|  | 305 | using Base = RedeclarableTemplateDecl; | 
|  | 306 |  | 
|  | 307 | // If we haven't created a common pointer yet, then it can just be created | 
|  | 308 | // with the usual method. | 
|  | 309 | if (!Base::Common) | 
|  | 310 | return; | 
|  | 311 |  | 
|  | 312 | Common *ThisCommon = static_cast<Common *>(Base::Common); | 
|  | 313 | Common *PrevCommon = nullptr; | 
|  | 314 | SmallVector<FunctionTemplateDecl *, 8> PreviousDecls; | 
|  | 315 | for (; Prev; Prev = Prev->getPreviousDecl()) { | 
|  | 316 | if (Prev->Base::Common) { | 
|  | 317 | PrevCommon = static_cast<Common *>(Prev->Base::Common); | 
|  | 318 | break; | 
|  | 319 | } | 
|  | 320 | PreviousDecls.push_back(Prev); | 
|  | 321 | } | 
|  | 322 |  | 
|  | 323 | // If the previous redecl chain hasn't created a common pointer yet, then just | 
|  | 324 | // use this common pointer. | 
|  | 325 | if (!PrevCommon) { | 
|  | 326 | for (auto *D : PreviousDecls) | 
|  | 327 | D->Base::Common = ThisCommon; | 
|  | 328 | return; | 
|  | 329 | } | 
|  | 330 |  | 
|  | 331 | // Ensure we don't leak any important state. | 
|  | 332 | assert(ThisCommon->Specializations.size() == 0 && | 
| Erik Pilkington | d1a184f | 2018-10-10 17:17:51 +0000 | [diff] [blame] | 333 | "Can't merge incompatible declarations!"); | 
|  | 334 |  | 
|  | 335 | Base::Common = PrevCommon; | 
|  | 336 | } | 
|  | 337 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 338 | //===----------------------------------------------------------------------===// | 
|  | 339 | // ClassTemplateDecl Implementation | 
|  | 340 | //===----------------------------------------------------------------------===// | 
|  | 341 |  | 
|  | 342 | ClassTemplateDecl *ClassTemplateDecl::Create(ASTContext &C, | 
|  | 343 | DeclContext *DC, | 
|  | 344 | SourceLocation L, | 
|  | 345 | DeclarationName Name, | 
|  | 346 | TemplateParameterList *Params, | 
| Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 347 | NamedDecl *Decl, | 
|  | 348 | Expr *AssociatedConstraints) { | 
| Douglas Gregor | 3c41bf7 | 2011-03-04 18:32:38 +0000 | [diff] [blame] | 349 | AdoptTemplateParameterList(Params, cast<DeclContext>(Decl)); | 
| Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 350 |  | 
|  | 351 | if (!AssociatedConstraints) { | 
|  | 352 | return new (C, DC) ClassTemplateDecl(C, DC, L, Name, Params, Decl); | 
|  | 353 | } | 
|  | 354 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 355 | auto *const CTDI = new (C) ConstrainedTemplateDeclInfo; | 
|  | 356 | auto *const New = | 
| Hubert Tong | 5a8ec4e | 2017-02-10 02:46:19 +0000 | [diff] [blame] | 357 | new (C, DC) ClassTemplateDecl(CTDI, C, DC, L, Name, Params, Decl); | 
|  | 358 | New->setAssociatedConstraints(AssociatedConstraints); | 
| Argyrios Kyrtzidis | 95c04ca | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 359 | return New; | 
| Douglas Gregor | 90a1a65 | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 360 | } | 
|  | 361 |  | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 362 | ClassTemplateDecl *ClassTemplateDecl::CreateDeserialized(ASTContext &C, | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 363 | unsigned ID) { | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 364 | return new (C, ID) ClassTemplateDecl(C, nullptr, SourceLocation(), | 
|  | 365 | DeclarationName(), nullptr, nullptr); | 
| Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 366 | } | 
|  | 367 |  | 
| Dmitri Gribenko | 81f2575 | 2013-02-14 13:20:36 +0000 | [diff] [blame] | 368 | void ClassTemplateDecl::LoadLazySpecializations() const { | 
| Vassil Vassilev | 61f6429 | 2017-12-14 23:30:18 +0000 | [diff] [blame] | 369 | loadLazySpecializationsImpl(); | 
| Douglas Gregor | 7e8c4e0 | 2010-10-27 22:21:36 +0000 | [diff] [blame] | 370 | } | 
|  | 371 |  | 
| Chandler Carruth | b41171b | 2012-05-03 23:49:05 +0000 | [diff] [blame] | 372 | llvm::FoldingSetVector<ClassTemplateSpecializationDecl> & | 
| Dmitri Gribenko | 81f2575 | 2013-02-14 13:20:36 +0000 | [diff] [blame] | 373 | ClassTemplateDecl::getSpecializations() const { | 
| Douglas Gregor | 7e8c4e0 | 2010-10-27 22:21:36 +0000 | [diff] [blame] | 374 | LoadLazySpecializations(); | 
|  | 375 | return getCommonPtr()->Specializations; | 
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 376 | } | 
| Douglas Gregor | 7e8c4e0 | 2010-10-27 22:21:36 +0000 | [diff] [blame] | 377 |  | 
| Chandler Carruth | b41171b | 2012-05-03 23:49:05 +0000 | [diff] [blame] | 378 | llvm::FoldingSetVector<ClassTemplatePartialSpecializationDecl> & | 
| Douglas Gregor | 7e8c4e0 | 2010-10-27 22:21:36 +0000 | [diff] [blame] | 379 | ClassTemplateDecl::getPartialSpecializations() { | 
|  | 380 | LoadLazySpecializations(); | 
|  | 381 | return getCommonPtr()->PartialSpecializations; | 
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 382 | } | 
| Douglas Gregor | 7e8c4e0 | 2010-10-27 22:21:36 +0000 | [diff] [blame] | 383 |  | 
| Argyrios Kyrtzidis | f4bc0d8 | 2010-09-08 19:31:22 +0000 | [diff] [blame] | 384 | RedeclarableTemplateDecl::CommonBase * | 
| Dmitri Gribenko | b53f37c | 2013-01-23 16:52:57 +0000 | [diff] [blame] | 385 | ClassTemplateDecl::newCommon(ASTContext &C) const { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 386 | auto *CommonPtr = new (C) Common; | 
| George Burgess IV | b61bfbd | 2017-02-14 05:37:36 +0000 | [diff] [blame] | 387 | C.addDestruction(CommonPtr); | 
| Peter Collingbourne | 91b25b7 | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 388 | return CommonPtr; | 
|  | 389 | } | 
|  | 390 |  | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 391 | ClassTemplateSpecializationDecl * | 
| Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 392 | ClassTemplateDecl::findSpecialization(ArrayRef<TemplateArgument> Args, | 
|  | 393 | void *&InsertPos) { | 
|  | 394 | return findSpecializationImpl(getSpecializations(), Args, InsertPos); | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 395 | } | 
|  | 396 |  | 
| Argyrios Kyrtzidis | 402dbbb | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 397 | void ClassTemplateDecl::AddSpecialization(ClassTemplateSpecializationDecl *D, | 
|  | 398 | void *InsertPos) { | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 399 | addSpecializationImpl<ClassTemplateDecl>(getSpecializations(), D, InsertPos); | 
| Argyrios Kyrtzidis | 402dbbb | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 400 | } | 
|  | 401 |  | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 402 | ClassTemplatePartialSpecializationDecl * | 
| Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 403 | ClassTemplateDecl::findPartialSpecialization(ArrayRef<TemplateArgument> Args, | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 404 | void *&InsertPos) { | 
| Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 405 | return findSpecializationImpl(getPartialSpecializations(), Args, InsertPos); | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 406 | } | 
|  | 407 |  | 
| Argyrios Kyrtzidis | 402dbbb | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 408 | void ClassTemplateDecl::AddPartialSpecialization( | 
|  | 409 | ClassTemplatePartialSpecializationDecl *D, | 
|  | 410 | void *InsertPos) { | 
| Douglas Gregor | ce9978f | 2012-03-28 14:34:23 +0000 | [diff] [blame] | 411 | if (InsertPos) | 
|  | 412 | getPartialSpecializations().InsertNode(D, InsertPos); | 
|  | 413 | else { | 
|  | 414 | ClassTemplatePartialSpecializationDecl *Existing | 
|  | 415 | = getPartialSpecializations().GetOrInsertNode(D); | 
|  | 416 | (void)Existing; | 
|  | 417 | assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); | 
|  | 418 | } | 
|  | 419 |  | 
| Argyrios Kyrtzidis | 402dbbb | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 420 | if (ASTMutationListener *L = getASTMutationListener()) | 
|  | 421 | L->AddedCXXTemplateSpecialization(this, D); | 
|  | 422 | } | 
|  | 423 |  | 
| Douglas Gregor | 407e961 | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 424 | void ClassTemplateDecl::getPartialSpecializations( | 
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 425 | SmallVectorImpl<ClassTemplatePartialSpecializationDecl *> &PS) { | 
| Chandler Carruth | b41171b | 2012-05-03 23:49:05 +0000 | [diff] [blame] | 426 | llvm::FoldingSetVector<ClassTemplatePartialSpecializationDecl> &PartialSpecs | 
| Argyrios Kyrtzidis | a35c8e4 | 2010-06-21 10:57:41 +0000 | [diff] [blame] | 427 | = getPartialSpecializations(); | 
| Douglas Gregor | 407e961 | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 428 | PS.clear(); | 
| Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 429 | PS.reserve(PartialSpecs.size()); | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 430 | for (ClassTemplatePartialSpecializationDecl &P : PartialSpecs) | 
|  | 431 | PS.push_back(P.getMostRecentDecl()); | 
| Douglas Gregor | 407e961 | 2010-04-30 05:56:50 +0000 | [diff] [blame] | 432 | } | 
|  | 433 |  | 
| Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 434 | ClassTemplatePartialSpecializationDecl * | 
|  | 435 | ClassTemplateDecl::findPartialSpecialization(QualType T) { | 
|  | 436 | ASTContext &Context = getASTContext(); | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 437 | for (ClassTemplatePartialSpecializationDecl &P : | 
|  | 438 | getPartialSpecializations()) { | 
|  | 439 | if (Context.hasSameType(P.getInjectedSpecializationType(), T)) | 
|  | 440 | return P.getMostRecentDecl(); | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 441 | } | 
|  | 442 |  | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 443 | return nullptr; | 
| Argyrios Kyrtzidis | 47470f2 | 2010-07-20 13:59:28 +0000 | [diff] [blame] | 444 | } | 
|  | 445 |  | 
|  | 446 | ClassTemplatePartialSpecializationDecl * | 
|  | 447 | ClassTemplateDecl::findPartialSpecInstantiatedFromMember( | 
|  | 448 | ClassTemplatePartialSpecializationDecl *D) { | 
|  | 449 | Decl *DCanon = D->getCanonicalDecl(); | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 450 | for (ClassTemplatePartialSpecializationDecl &P : getPartialSpecializations()) { | 
|  | 451 | if (P.getInstantiatedFromMember()->getCanonicalDecl() == DCanon) | 
|  | 452 | return P.getMostRecentDecl(); | 
| Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 453 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 454 |  | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 455 | return nullptr; | 
| Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 456 | } | 
|  | 457 |  | 
| John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 458 | QualType | 
| Douglas Gregor | 9961ce9 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 459 | ClassTemplateDecl::getInjectedClassNameSpecialization() { | 
| Argyrios Kyrtzidis | a35c8e4 | 2010-06-21 10:57:41 +0000 | [diff] [blame] | 460 | Common *CommonPtr = getCommonPtr(); | 
| Douglas Gregor | e362cea | 2009-05-10 22:57:19 +0000 | [diff] [blame] | 461 | if (!CommonPtr->InjectedClassNameType.isNull()) | 
|  | 462 | return CommonPtr->InjectedClassNameType; | 
|  | 463 |  | 
| Douglas Gregor | 8092e80 | 2010-12-23 16:00:30 +0000 | [diff] [blame] | 464 | // C++0x [temp.dep.type]p2: | 
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 465 | //  The template argument list of a primary template is a template argument | 
| Douglas Gregor | 8092e80 | 2010-12-23 16:00:30 +0000 | [diff] [blame] | 466 | //  list in which the nth template argument has the value of the nth template | 
| Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 467 | //  parameter of the class template. If the nth template parameter is a | 
|  | 468 | //  template parameter pack (14.5.3), the nth template argument is a pack | 
|  | 469 | //  expansion (14.5.3) whose pattern is the name of the template parameter | 
| Douglas Gregor | 8092e80 | 2010-12-23 16:00:30 +0000 | [diff] [blame] | 470 | //  pack. | 
| Douglas Gregor | 9961ce9 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 471 | ASTContext &Context = getASTContext(); | 
| Douglas Gregor | e362cea | 2009-05-10 22:57:19 +0000 | [diff] [blame] | 472 | TemplateParameterList *Params = getTemplateParameters(); | 
| Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 473 | SmallVector<TemplateArgument, 16> TemplateArgs; | 
| Richard Smith | 43e14d2 | 2016-12-23 02:10:11 +0000 | [diff] [blame] | 474 | Context.getInjectedTemplateArgs(Params, TemplateArgs); | 
| Douglas Gregor | e362cea | 2009-05-10 22:57:19 +0000 | [diff] [blame] | 475 | CommonPtr->InjectedClassNameType | 
| Douglas Gregor | a8e02e7 | 2009-07-28 23:00:59 +0000 | [diff] [blame] | 476 | = Context.getTemplateSpecializationType(TemplateName(this), | 
| David Majnemer | 6fbeee3 | 2016-07-07 04:43:07 +0000 | [diff] [blame] | 477 | TemplateArgs); | 
| Douglas Gregor | e362cea | 2009-05-10 22:57:19 +0000 | [diff] [blame] | 478 | return CommonPtr->InjectedClassNameType; | 
|  | 479 | } | 
|  | 480 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 481 | //===----------------------------------------------------------------------===// | 
|  | 482 | // TemplateTypeParm Allocation/Deallocation Method Implementations | 
|  | 483 | //===----------------------------------------------------------------------===// | 
|  | 484 |  | 
|  | 485 | TemplateTypeParmDecl * | 
| Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 486 | TemplateTypeParmDecl::Create(const ASTContext &C, DeclContext *DC, | 
| Abramo Bagnara | b3185b0 | 2011-03-06 15:48:19 +0000 | [diff] [blame] | 487 | SourceLocation KeyLoc, SourceLocation NameLoc, | 
|  | 488 | unsigned D, unsigned P, IdentifierInfo *Id, | 
|  | 489 | bool Typename, bool ParameterPack) { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 490 | auto *TTPDecl = | 
|  | 491 | new (C, DC) TemplateTypeParmDecl(DC, KeyLoc, NameLoc, Id, Typename); | 
| Chandler Carruth | 0883632 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 492 | QualType TTPType = C.getTemplateTypeParmType(D, P, ParameterPack, TTPDecl); | 
| Richard Smith | 5b21db8 | 2014-04-23 18:20:42 +0000 | [diff] [blame] | 493 | TTPDecl->setTypeForDecl(TTPType.getTypePtr()); | 
| Chandler Carruth | 0883632 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 494 | return TTPDecl; | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 495 | } | 
|  | 496 |  | 
| Argyrios Kyrtzidis | 39f0e30 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 497 | TemplateTypeParmDecl * | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 498 | TemplateTypeParmDecl::CreateDeserialized(const ASTContext &C, unsigned ID) { | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 499 | return new (C, ID) TemplateTypeParmDecl(nullptr, SourceLocation(), | 
|  | 500 | SourceLocation(), nullptr, false); | 
| Argyrios Kyrtzidis | 39f0e30 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 501 | } | 
|  | 502 |  | 
| John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 503 | SourceLocation TemplateTypeParmDecl::getDefaultArgumentLoc() const { | 
| Abramo Bagnara | 23485e0 | 2011-03-04 12:42:03 +0000 | [diff] [blame] | 504 | return hasDefaultArgument() | 
| Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 505 | ? getDefaultArgumentInfo()->getTypeLoc().getBeginLoc() | 
|  | 506 | : SourceLocation(); | 
| Abramo Bagnara | 23485e0 | 2011-03-04 12:42:03 +0000 | [diff] [blame] | 507 | } | 
|  | 508 |  | 
|  | 509 | SourceRange TemplateTypeParmDecl::getSourceRange() const { | 
|  | 510 | if (hasDefaultArgument() && !defaultArgumentWasInherited()) | 
| Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 511 | return SourceRange(getBeginLoc(), | 
| Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 512 | getDefaultArgumentInfo()->getTypeLoc().getEndLoc()); | 
| Kadir Cetinkaya | fd019ed | 2019-10-01 14:08:51 +0000 | [diff] [blame] | 513 | // TypeDecl::getSourceRange returns a range containing name location, which is | 
|  | 514 | // wrong for unnamed template parameters. e.g: | 
|  | 515 | // it will return <[[typename>]] instead of <[[typename]]> | 
|  | 516 | else if (getDeclName().isEmpty()) | 
|  | 517 | return SourceRange(getBeginLoc()); | 
|  | 518 | return TypeDecl::getSourceRange(); | 
| John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 519 | } | 
|  | 520 |  | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 521 | unsigned TemplateTypeParmDecl::getDepth() const { | 
| Richard Smith | 5b21db8 | 2014-04-23 18:20:42 +0000 | [diff] [blame] | 522 | return getTypeForDecl()->getAs<TemplateTypeParmType>()->getDepth(); | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 523 | } | 
|  | 524 |  | 
|  | 525 | unsigned TemplateTypeParmDecl::getIndex() const { | 
| Richard Smith | 5b21db8 | 2014-04-23 18:20:42 +0000 | [diff] [blame] | 526 | return getTypeForDecl()->getAs<TemplateTypeParmType>()->getIndex(); | 
| Douglas Gregor | 2161038 | 2009-10-29 00:04:11 +0000 | [diff] [blame] | 527 | } | 
|  | 528 |  | 
| Chandler Carruth | 0883632 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 529 | bool TemplateTypeParmDecl::isParameterPack() const { | 
| Richard Smith | 5b21db8 | 2014-04-23 18:20:42 +0000 | [diff] [blame] | 530 | return getTypeForDecl()->getAs<TemplateTypeParmType>()->isParameterPack(); | 
| Chandler Carruth | 0883632 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 531 | } | 
|  | 532 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 533 | //===----------------------------------------------------------------------===// | 
|  | 534 | // NonTypeTemplateParmDecl Method Implementations | 
|  | 535 | //===----------------------------------------------------------------------===// | 
|  | 536 |  | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 537 | NonTypeTemplateParmDecl::NonTypeTemplateParmDecl( | 
|  | 538 | DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, unsigned D, | 
|  | 539 | unsigned P, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, | 
|  | 540 | ArrayRef<QualType> ExpandedTypes, ArrayRef<TypeSourceInfo *> ExpandedTInfos) | 
|  | 541 | : DeclaratorDecl(NonTypeTemplateParm, DC, IdLoc, Id, T, TInfo, StartLoc), | 
|  | 542 | TemplateParmPosition(D, P), ParameterPack(true), | 
|  | 543 | ExpandedParameterPack(true), NumExpandedTypes(ExpandedTypes.size()) { | 
|  | 544 | if (!ExpandedTypes.empty() && !ExpandedTInfos.empty()) { | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 545 | auto TypesAndInfos = | 
|  | 546 | getTrailingObjects<std::pair<QualType, TypeSourceInfo *>>(); | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 547 | for (unsigned I = 0; I != NumExpandedTypes; ++I) { | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 548 | new (&TypesAndInfos[I].first) QualType(ExpandedTypes[I]); | 
|  | 549 | TypesAndInfos[I].second = ExpandedTInfos[I]; | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 550 | } | 
|  | 551 | } | 
|  | 552 | } | 
|  | 553 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 554 | NonTypeTemplateParmDecl * | 
| Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 555 | NonTypeTemplateParmDecl::Create(const ASTContext &C, DeclContext *DC, | 
| Abramo Bagnara | dff1930 | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 556 | SourceLocation StartLoc, SourceLocation IdLoc, | 
|  | 557 | unsigned D, unsigned P, IdentifierInfo *Id, | 
|  | 558 | QualType T, bool ParameterPack, | 
|  | 559 | TypeSourceInfo *TInfo) { | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 560 | return new (C, DC) NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id, | 
|  | 561 | T, ParameterPack, TInfo); | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 562 | } | 
|  | 563 |  | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 564 | NonTypeTemplateParmDecl *NonTypeTemplateParmDecl::Create( | 
|  | 565 | const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, | 
|  | 566 | SourceLocation IdLoc, unsigned D, unsigned P, IdentifierInfo *Id, | 
|  | 567 | QualType T, TypeSourceInfo *TInfo, ArrayRef<QualType> ExpandedTypes, | 
|  | 568 | ArrayRef<TypeSourceInfo *> ExpandedTInfos) { | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 569 | return new (C, DC, | 
|  | 570 | additionalSizeToAlloc<std::pair<QualType, TypeSourceInfo *>>( | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 571 | ExpandedTypes.size())) | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 572 | NonTypeTemplateParmDecl(DC, StartLoc, IdLoc, D, P, Id, T, TInfo, | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 573 | ExpandedTypes, ExpandedTInfos); | 
| Douglas Gregor | 0231d8d | 2011-01-19 20:10:05 +0000 | [diff] [blame] | 574 | } | 
|  | 575 |  | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 576 | NonTypeTemplateParmDecl * | 
|  | 577 | NonTypeTemplateParmDecl::CreateDeserialized(ASTContext &C, unsigned ID) { | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 578 | return new (C, ID) NonTypeTemplateParmDecl(nullptr, SourceLocation(), | 
|  | 579 | SourceLocation(), 0, 0, nullptr, | 
|  | 580 | QualType(), false, nullptr); | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 581 | } | 
|  | 582 |  | 
|  | 583 | NonTypeTemplateParmDecl * | 
|  | 584 | NonTypeTemplateParmDecl::CreateDeserialized(ASTContext &C, unsigned ID, | 
|  | 585 | unsigned NumExpandedTypes) { | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 586 | auto *NTTP = | 
|  | 587 | new (C, ID, additionalSizeToAlloc<std::pair<QualType, TypeSourceInfo *>>( | 
|  | 588 | NumExpandedTypes)) | 
|  | 589 | NonTypeTemplateParmDecl(nullptr, SourceLocation(), SourceLocation(), | 
|  | 590 | 0, 0, nullptr, QualType(), nullptr, None, | 
|  | 591 | None); | 
|  | 592 | NTTP->NumExpandedTypes = NumExpandedTypes; | 
|  | 593 | return NTTP; | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 594 | } | 
|  | 595 |  | 
| John McCall | f4cd4f9 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 596 | SourceRange NonTypeTemplateParmDecl::getSourceRange() const { | 
| Abramo Bagnara | e15d553 | 2011-03-04 11:03:48 +0000 | [diff] [blame] | 597 | if (hasDefaultArgument() && !defaultArgumentWasInherited()) | 
| Abramo Bagnara | ea94788 | 2011-03-08 16:41:52 +0000 | [diff] [blame] | 598 | return SourceRange(getOuterLocStart(), | 
|  | 599 | getDefaultArgument()->getSourceRange().getEnd()); | 
|  | 600 | return DeclaratorDecl::getSourceRange(); | 
| John McCall | f4cd4f9 | 2011-02-09 01:13:10 +0000 | [diff] [blame] | 601 | } | 
|  | 602 |  | 
| Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 603 | SourceLocation NonTypeTemplateParmDecl::getDefaultArgumentLoc() const { | 
| Abramo Bagnara | 656e300 | 2010-06-09 09:26:05 +0000 | [diff] [blame] | 604 | return hasDefaultArgument() | 
|  | 605 | ? getDefaultArgument()->getSourceRange().getBegin() | 
|  | 606 | : SourceLocation(); | 
| Douglas Gregor | dba3263 | 2009-02-10 19:49:53 +0000 | [diff] [blame] | 607 | } | 
|  | 608 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 609 | //===----------------------------------------------------------------------===// | 
|  | 610 | // TemplateTemplateParmDecl Method Implementations | 
|  | 611 | //===----------------------------------------------------------------------===// | 
|  | 612 |  | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 613 | void TemplateTemplateParmDecl::anchor() {} | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 614 |  | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 615 | TemplateTemplateParmDecl::TemplateTemplateParmDecl( | 
|  | 616 | DeclContext *DC, SourceLocation L, unsigned D, unsigned P, | 
|  | 617 | IdentifierInfo *Id, TemplateParameterList *Params, | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 618 | ArrayRef<TemplateParameterList *> Expansions) | 
|  | 619 | : TemplateDecl(TemplateTemplateParm, DC, L, Id, Params), | 
|  | 620 | TemplateParmPosition(D, P), ParameterPack(true), | 
|  | 621 | ExpandedParameterPack(true), NumExpandedParams(Expansions.size()) { | 
|  | 622 | if (!Expansions.empty()) | 
|  | 623 | std::uninitialized_copy(Expansions.begin(), Expansions.end(), | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 624 | getTrailingObjects<TemplateParameterList *>()); | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 625 | } | 
|  | 626 |  | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 627 | TemplateTemplateParmDecl * | 
| Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 628 | TemplateTemplateParmDecl::Create(const ASTContext &C, DeclContext *DC, | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 629 | SourceLocation L, unsigned D, unsigned P, | 
| Douglas Gregor | f550077 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 630 | bool ParameterPack, IdentifierInfo *Id, | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 631 | TemplateParameterList *Params) { | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 632 | return new (C, DC) TemplateTemplateParmDecl(DC, L, D, P, ParameterPack, Id, | 
|  | 633 | Params); | 
| Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 634 | } | 
|  | 635 |  | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 636 | TemplateTemplateParmDecl * | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 637 | TemplateTemplateParmDecl::Create(const ASTContext &C, DeclContext *DC, | 
|  | 638 | SourceLocation L, unsigned D, unsigned P, | 
|  | 639 | IdentifierInfo *Id, | 
|  | 640 | TemplateParameterList *Params, | 
| Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 641 | ArrayRef<TemplateParameterList *> Expansions) { | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 642 | return new (C, DC, | 
|  | 643 | additionalSizeToAlloc<TemplateParameterList *>(Expansions.size())) | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 644 | TemplateTemplateParmDecl(DC, L, D, P, Id, Params, Expansions); | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 645 | } | 
|  | 646 |  | 
|  | 647 | TemplateTemplateParmDecl * | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 648 | TemplateTemplateParmDecl::CreateDeserialized(ASTContext &C, unsigned ID) { | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 649 | return new (C, ID) TemplateTemplateParmDecl(nullptr, SourceLocation(), 0, 0, | 
|  | 650 | false, nullptr, nullptr); | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 651 | } | 
|  | 652 |  | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 653 | TemplateTemplateParmDecl * | 
|  | 654 | TemplateTemplateParmDecl::CreateDeserialized(ASTContext &C, unsigned ID, | 
|  | 655 | unsigned NumExpansions) { | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 656 | auto *TTP = | 
|  | 657 | new (C, ID, additionalSizeToAlloc<TemplateParameterList *>(NumExpansions)) | 
|  | 658 | TemplateTemplateParmDecl(nullptr, SourceLocation(), 0, 0, nullptr, | 
|  | 659 | nullptr, None); | 
|  | 660 | TTP->NumExpandedParams = NumExpansions; | 
|  | 661 | return TTP; | 
| Richard Smith | 1fde8ec | 2012-09-07 02:06:42 +0000 | [diff] [blame] | 662 | } | 
|  | 663 |  | 
| Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 664 | SourceLocation TemplateTemplateParmDecl::getDefaultArgumentLoc() const { | 
|  | 665 | return hasDefaultArgument() ? getDefaultArgument().getLocation() | 
|  | 666 | : SourceLocation(); | 
|  | 667 | } | 
|  | 668 |  | 
| Richard Smith | 1469b91 | 2015-06-10 00:29:03 +0000 | [diff] [blame] | 669 | void TemplateTemplateParmDecl::setDefaultArgument( | 
|  | 670 | const ASTContext &C, const TemplateArgumentLoc &DefArg) { | 
|  | 671 | if (DefArg.getArgument().isNull()) | 
|  | 672 | DefaultArgument.set(nullptr); | 
|  | 673 | else | 
|  | 674 | DefaultArgument.set(new (C) TemplateArgumentLoc(DefArg)); | 
|  | 675 | } | 
|  | 676 |  | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 677 | //===----------------------------------------------------------------------===// | 
| Douglas Gregor | d002c7b | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 678 | // TemplateArgumentList Implementation | 
|  | 679 | //===----------------------------------------------------------------------===// | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 680 | TemplateArgumentList::TemplateArgumentList(ArrayRef<TemplateArgument> Args) | 
|  | 681 | : Arguments(getTrailingObjects<TemplateArgument>()), | 
|  | 682 | NumArguments(Args.size()) { | 
|  | 683 | std::uninitialized_copy(Args.begin(), Args.end(), | 
| James Y Knight | 7a22b24 | 2015-08-06 20:26:32 +0000 | [diff] [blame] | 684 | getTrailingObjects<TemplateArgument>()); | 
|  | 685 | } | 
|  | 686 |  | 
| Douglas Gregor | 1ccc841 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 687 | TemplateArgumentList * | 
|  | 688 | TemplateArgumentList::CreateCopy(ASTContext &Context, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 689 | ArrayRef<TemplateArgument> Args) { | 
|  | 690 | void *Mem = Context.Allocate(totalSizeToAlloc<TemplateArgument>(Args.size())); | 
|  | 691 | return new (Mem) TemplateArgumentList(Args); | 
| Argyrios Kyrtzidis | fe6ba88 | 2010-06-23 13:48:23 +0000 | [diff] [blame] | 692 | } | 
|  | 693 |  | 
| Richard Smith | f19a8b0 | 2019-05-02 00:49:14 +0000 | [diff] [blame] | 694 | FunctionTemplateSpecializationInfo *FunctionTemplateSpecializationInfo::Create( | 
|  | 695 | ASTContext &C, FunctionDecl *FD, FunctionTemplateDecl *Template, | 
|  | 696 | TemplateSpecializationKind TSK, const TemplateArgumentList *TemplateArgs, | 
|  | 697 | const TemplateArgumentListInfo *TemplateArgsAsWritten, SourceLocation POI, | 
|  | 698 | MemberSpecializationInfo *MSInfo) { | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 699 | const ASTTemplateArgumentListInfo *ArgsAsWritten = nullptr; | 
| Argyrios Kyrtzidis | e9a2443 | 2011-09-22 20:07:09 +0000 | [diff] [blame] | 700 | if (TemplateArgsAsWritten) | 
|  | 701 | ArgsAsWritten = ASTTemplateArgumentListInfo::Create(C, | 
|  | 702 | *TemplateArgsAsWritten); | 
|  | 703 |  | 
| Richard Smith | f19a8b0 | 2019-05-02 00:49:14 +0000 | [diff] [blame] | 704 | void *Mem = | 
|  | 705 | C.Allocate(totalSizeToAlloc<MemberSpecializationInfo *>(MSInfo ? 1 : 0)); | 
|  | 706 | return new (Mem) FunctionTemplateSpecializationInfo( | 
|  | 707 | FD, Template, TSK, TemplateArgs, ArgsAsWritten, POI, MSInfo); | 
| Argyrios Kyrtzidis | e9a2443 | 2011-09-22 20:07:09 +0000 | [diff] [blame] | 708 | } | 
|  | 709 |  | 
| Douglas Gregor | d002c7b | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 710 | //===----------------------------------------------------------------------===// | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 711 | // TemplateDecl Implementation | 
|  | 712 | //===----------------------------------------------------------------------===// | 
|  | 713 |  | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 714 | void TemplateDecl::anchor() {} | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 715 |  | 
|  | 716 | //===----------------------------------------------------------------------===// | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 717 | // ClassTemplateSpecializationDecl Implementation | 
|  | 718 | //===----------------------------------------------------------------------===// | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 719 |  | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 720 | ClassTemplateSpecializationDecl:: | 
| Douglas Gregor | e902956 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 721 | ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, | 
| Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 722 | DeclContext *DC, SourceLocation StartLoc, | 
|  | 723 | SourceLocation IdLoc, | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 724 | ClassTemplateDecl *SpecializedTemplate, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 725 | ArrayRef<TemplateArgument> Args, | 
| Douglas Gregor | b6b8f9e | 2009-07-29 23:36:44 +0000 | [diff] [blame] | 726 | ClassTemplateSpecializationDecl *PrevDecl) | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 727 | : CXXRecordDecl(DK, TK, Context, DC, StartLoc, IdLoc, | 
|  | 728 | SpecializedTemplate->getIdentifier(), PrevDecl), | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 729 | SpecializedTemplate(SpecializedTemplate), | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 730 | TemplateArgs(TemplateArgumentList::CreateCopy(Context, Args)), | 
| Douglas Gregor | d002c7b | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 731 | SpecializationKind(TSK_Undeclared) { | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 732 | } | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 733 |  | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 734 | ClassTemplateSpecializationDecl::ClassTemplateSpecializationDecl(ASTContext &C, | 
|  | 735 | Kind DK) | 
|  | 736 | : CXXRecordDecl(DK, TTK_Struct, C, nullptr, SourceLocation(), | 
|  | 737 | SourceLocation(), nullptr, nullptr), | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 738 | SpecializationKind(TSK_Undeclared) {} | 
| Argyrios Kyrtzidis | fe6ba88 | 2010-06-23 13:48:23 +0000 | [diff] [blame] | 739 |  | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 740 | ClassTemplateSpecializationDecl * | 
| Douglas Gregor | e902956 | 2010-05-06 00:28:52 +0000 | [diff] [blame] | 741 | ClassTemplateSpecializationDecl::Create(ASTContext &Context, TagKind TK, | 
| Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 742 | DeclContext *DC, | 
|  | 743 | SourceLocation StartLoc, | 
|  | 744 | SourceLocation IdLoc, | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 745 | ClassTemplateDecl *SpecializedTemplate, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 746 | ArrayRef<TemplateArgument> Args, | 
| Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 747 | ClassTemplateSpecializationDecl *PrevDecl) { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 748 | auto *Result = | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 749 | new (Context, DC) ClassTemplateSpecializationDecl( | 
|  | 750 | Context, ClassTemplateSpecialization, TK, DC, StartLoc, IdLoc, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 751 | SpecializedTemplate, Args, PrevDecl); | 
| Erich Keane | f92f31c | 2018-08-01 20:48:16 +0000 | [diff] [blame] | 752 | Result->setMayHaveOutOfDateDef(false); | 
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 753 |  | 
| Douglas Gregor | 67a6564 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 754 | Context.getTypeDeclType(Result, PrevDecl); | 
|  | 755 | return Result; | 
| Douglas Gregor | 264ec4f | 2009-02-17 01:05:43 +0000 | [diff] [blame] | 756 | } | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 757 |  | 
| Argyrios Kyrtzidis | fe6ba88 | 2010-06-23 13:48:23 +0000 | [diff] [blame] | 758 | ClassTemplateSpecializationDecl * | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 759 | ClassTemplateSpecializationDecl::CreateDeserialized(ASTContext &C, | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 760 | unsigned ID) { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 761 | auto *Result = | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 762 | new (C, ID) ClassTemplateSpecializationDecl(C, ClassTemplateSpecialization); | 
| Erich Keane | f92f31c | 2018-08-01 20:48:16 +0000 | [diff] [blame] | 763 | Result->setMayHaveOutOfDateDef(false); | 
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 764 | return Result; | 
| Argyrios Kyrtzidis | fe6ba88 | 2010-06-23 13:48:23 +0000 | [diff] [blame] | 765 | } | 
|  | 766 |  | 
| Benjamin Kramer | 9170e91 | 2013-02-22 15:46:01 +0000 | [diff] [blame] | 767 | void ClassTemplateSpecializationDecl::getNameForDiagnostic( | 
|  | 768 | raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const { | 
|  | 769 | NamedDecl::getNameForDiagnostic(OS, Policy, Qualified); | 
| Douglas Gregor | b11aad8 | 2011-02-19 18:51:44 +0000 | [diff] [blame] | 770 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 771 | const auto *PS = dyn_cast<ClassTemplatePartialSpecializationDecl>(this); | 
| Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 772 | if (const ASTTemplateArgumentListInfo *ArgsAsWritten = | 
|  | 773 | PS ? PS->getTemplateArgsAsWritten() : nullptr) { | 
| Serge Pavlov | 03e672c | 2017-11-28 16:14:14 +0000 | [diff] [blame] | 774 | printTemplateArgumentList(OS, ArgsAsWritten->arguments(), Policy); | 
| Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 775 | } else { | 
|  | 776 | const TemplateArgumentList &TemplateArgs = getTemplateArgs(); | 
| Serge Pavlov | 03e672c | 2017-11-28 16:14:14 +0000 | [diff] [blame] | 777 | printTemplateArgumentList(OS, TemplateArgs.asArray(), Policy); | 
| Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 778 | } | 
| Douglas Gregor | b11aad8 | 2011-02-19 18:51:44 +0000 | [diff] [blame] | 779 | } | 
|  | 780 |  | 
| Douglas Gregor | 9dc8bd3 | 2009-08-02 23:24:31 +0000 | [diff] [blame] | 781 | ClassTemplateDecl * | 
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 782 | ClassTemplateSpecializationDecl::getSpecializedTemplate() const { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 783 | if (const auto *PartialSpec = | 
|  | 784 | SpecializedTemplate.dyn_cast<SpecializedPartialSpecialization*>()) | 
| Douglas Gregor | 9dc8bd3 | 2009-08-02 23:24:31 +0000 | [diff] [blame] | 785 | return PartialSpec->PartialSpecialization->getSpecializedTemplate(); | 
|  | 786 | return SpecializedTemplate.get<ClassTemplateDecl*>(); | 
|  | 787 | } | 
|  | 788 |  | 
| Abramo Bagnara | a093526 | 2011-03-04 14:20:30 +0000 | [diff] [blame] | 789 | SourceRange | 
|  | 790 | ClassTemplateSpecializationDecl::getSourceRange() const { | 
| Abramo Bagnara | fd3a455 | 2011-10-03 20:34:03 +0000 | [diff] [blame] | 791 | if (ExplicitInfo) { | 
| Abramo Bagnara | c76dcbd | 2012-10-15 21:06:42 +0000 | [diff] [blame] | 792 | SourceLocation Begin = getTemplateKeywordLoc(); | 
|  | 793 | if (Begin.isValid()) { | 
|  | 794 | // Here we have an explicit (partial) specialization or instantiation. | 
|  | 795 | assert(getSpecializationKind() == TSK_ExplicitSpecialization || | 
|  | 796 | getSpecializationKind() == TSK_ExplicitInstantiationDeclaration || | 
|  | 797 | getSpecializationKind() == TSK_ExplicitInstantiationDefinition); | 
|  | 798 | if (getExternLoc().isValid()) | 
|  | 799 | Begin = getExternLoc(); | 
| Argyrios Kyrtzidis | d798c05 | 2016-07-15 18:11:33 +0000 | [diff] [blame] | 800 | SourceLocation End = getBraceRange().getEnd(); | 
| Abramo Bagnara | c76dcbd | 2012-10-15 21:06:42 +0000 | [diff] [blame] | 801 | if (End.isInvalid()) | 
|  | 802 | End = getTypeAsWritten()->getTypeLoc().getEndLoc(); | 
|  | 803 | return SourceRange(Begin, End); | 
|  | 804 | } | 
|  | 805 | // An implicit instantiation of a class template partial specialization | 
|  | 806 | // uses ExplicitInfo to record the TypeAsWritten, but the source | 
|  | 807 | // locations should be retrieved from the instantiation pattern. | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 808 | using CTPSDecl = ClassTemplatePartialSpecializationDecl; | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 809 | auto *ctpsd = const_cast<CTPSDecl *>(cast<CTPSDecl>(this)); | 
| Abramo Bagnara | c76dcbd | 2012-10-15 21:06:42 +0000 | [diff] [blame] | 810 | CTPSDecl *inst_from = ctpsd->getInstantiatedFromMember(); | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 811 | assert(inst_from != nullptr); | 
| Abramo Bagnara | c76dcbd | 2012-10-15 21:06:42 +0000 | [diff] [blame] | 812 | return inst_from->getSourceRange(); | 
| Abramo Bagnara | fd3a455 | 2011-10-03 20:34:03 +0000 | [diff] [blame] | 813 | } | 
|  | 814 | else { | 
|  | 815 | // No explicit info available. | 
|  | 816 | llvm::PointerUnion<ClassTemplateDecl *, | 
|  | 817 | ClassTemplatePartialSpecializationDecl *> | 
|  | 818 | inst_from = getInstantiatedFrom(); | 
|  | 819 | if (inst_from.isNull()) | 
|  | 820 | return getSpecializedTemplate()->getSourceRange(); | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 821 | if (const auto *ctd = inst_from.dyn_cast<ClassTemplateDecl *>()) | 
| Abramo Bagnara | fd3a455 | 2011-10-03 20:34:03 +0000 | [diff] [blame] | 822 | return ctd->getSourceRange(); | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 823 | return inst_from.get<ClassTemplatePartialSpecializationDecl *>() | 
| Abramo Bagnara | fd3a455 | 2011-10-03 20:34:03 +0000 | [diff] [blame] | 824 | ->getSourceRange(); | 
|  | 825 | } | 
| Abramo Bagnara | a093526 | 2011-03-04 14:20:30 +0000 | [diff] [blame] | 826 | } | 
|  | 827 |  | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 828 | //===----------------------------------------------------------------------===// | 
| Saar Raz | d7aae33 | 2019-07-10 21:25:49 +0000 | [diff] [blame] | 829 | // ConceptDecl Implementation | 
|  | 830 | //===----------------------------------------------------------------------===// | 
|  | 831 | ConceptDecl *ConceptDecl::Create(ASTContext &C, DeclContext *DC, | 
|  | 832 | SourceLocation L, DeclarationName Name, | 
|  | 833 | TemplateParameterList *Params, | 
|  | 834 | Expr *ConstraintExpr) { | 
|  | 835 | AdoptTemplateParameterList(Params, DC); | 
|  | 836 | return new (C, DC) ConceptDecl(DC, L, Name, Params, ConstraintExpr); | 
|  | 837 | } | 
|  | 838 |  | 
|  | 839 | ConceptDecl *ConceptDecl::CreateDeserialized(ASTContext &C, | 
|  | 840 | unsigned ID) { | 
|  | 841 | ConceptDecl *Result = new (C, ID) ConceptDecl(nullptr, SourceLocation(), | 
|  | 842 | DeclarationName(), | 
|  | 843 | nullptr, nullptr); | 
|  | 844 |  | 
|  | 845 | return Result; | 
|  | 846 | } | 
|  | 847 |  | 
|  | 848 | //===----------------------------------------------------------------------===// | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 849 | // ClassTemplatePartialSpecializationDecl Implementation | 
|  | 850 | //===----------------------------------------------------------------------===// | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 851 | void ClassTemplatePartialSpecializationDecl::anchor() {} | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 852 |  | 
| Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 853 | ClassTemplatePartialSpecializationDecl:: | 
|  | 854 | ClassTemplatePartialSpecializationDecl(ASTContext &Context, TagKind TK, | 
| Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 855 | DeclContext *DC, | 
|  | 856 | SourceLocation StartLoc, | 
|  | 857 | SourceLocation IdLoc, | 
| Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 858 | TemplateParameterList *Params, | 
|  | 859 | ClassTemplateDecl *SpecializedTemplate, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 860 | ArrayRef<TemplateArgument> Args, | 
| Enea Zaffanella | 6dbe187 | 2013-08-10 07:24:53 +0000 | [diff] [blame] | 861 | const ASTTemplateArgumentListInfo *ArgInfos, | 
| Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 862 | ClassTemplatePartialSpecializationDecl *PrevDecl) | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 863 | : ClassTemplateSpecializationDecl(Context, | 
|  | 864 | ClassTemplatePartialSpecialization, | 
|  | 865 | TK, DC, StartLoc, IdLoc, | 
|  | 866 | SpecializedTemplate, Args, PrevDecl), | 
|  | 867 | TemplateParams(Params), ArgsAsWritten(ArgInfos), | 
|  | 868 | InstantiatedFromMember(nullptr, false) { | 
| Douglas Gregor | 3c41bf7 | 2011-03-04 18:32:38 +0000 | [diff] [blame] | 869 | AdoptTemplateParameterList(Params, this); | 
| Douglas Gregor | fd7c225 | 2011-03-04 17:52:15 +0000 | [diff] [blame] | 870 | } | 
|  | 871 |  | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 872 | ClassTemplatePartialSpecializationDecl * | 
|  | 873 | ClassTemplatePartialSpecializationDecl:: | 
| Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 874 | Create(ASTContext &Context, TagKind TK,DeclContext *DC, | 
|  | 875 | SourceLocation StartLoc, SourceLocation IdLoc, | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 876 | TemplateParameterList *Params, | 
|  | 877 | ClassTemplateDecl *SpecializedTemplate, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 878 | ArrayRef<TemplateArgument> Args, | 
| John McCall | 6b51f28 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 879 | const TemplateArgumentListInfo &ArgInfos, | 
| John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 880 | QualType CanonInjectedType, | 
| Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 881 | ClassTemplatePartialSpecializationDecl *PrevDecl) { | 
| Enea Zaffanella | 6dbe187 | 2013-08-10 07:24:53 +0000 | [diff] [blame] | 882 | const ASTTemplateArgumentListInfo *ASTArgInfos = | 
|  | 883 | ASTTemplateArgumentListInfo::Create(Context, ArgInfos); | 
| John McCall | 0ad1666 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 884 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 885 | auto *Result = new (Context, DC) | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 886 | ClassTemplatePartialSpecializationDecl(Context, TK, DC, StartLoc, IdLoc, | 
|  | 887 | Params, SpecializedTemplate, Args, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 888 | ASTArgInfos, PrevDecl); | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 889 | Result->setSpecializationKind(TSK_ExplicitSpecialization); | 
| Erich Keane | f92f31c | 2018-08-01 20:48:16 +0000 | [diff] [blame] | 890 | Result->setMayHaveOutOfDateDef(false); | 
| John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 891 |  | 
|  | 892 | Context.getInjectedClassNameType(Result, CanonInjectedType); | 
| Douglas Gregor | 2373c59 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 893 | return Result; | 
|  | 894 | } | 
| John McCall | 11083da | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 895 |  | 
| Argyrios Kyrtzidis | fe6ba88 | 2010-06-23 13:48:23 +0000 | [diff] [blame] | 896 | ClassTemplatePartialSpecializationDecl * | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 897 | ClassTemplatePartialSpecializationDecl::CreateDeserialized(ASTContext &C, | 
|  | 898 | unsigned ID) { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 899 | auto *Result = new (C, ID) ClassTemplatePartialSpecializationDecl(C); | 
| Erich Keane | f92f31c | 2018-08-01 20:48:16 +0000 | [diff] [blame] | 900 | Result->setMayHaveOutOfDateDef(false); | 
| Douglas Gregor | 7dab26b | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 901 | return Result; | 
| Argyrios Kyrtzidis | fe6ba88 | 2010-06-23 13:48:23 +0000 | [diff] [blame] | 902 | } | 
|  | 903 |  | 
| John McCall | 11083da | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 904 | //===----------------------------------------------------------------------===// | 
|  | 905 | // FriendTemplateDecl Implementation | 
|  | 906 | //===----------------------------------------------------------------------===// | 
|  | 907 |  | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 908 | void FriendTemplateDecl::anchor() {} | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 909 |  | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 910 | FriendTemplateDecl * | 
|  | 911 | FriendTemplateDecl::Create(ASTContext &Context, DeclContext *DC, | 
|  | 912 | SourceLocation L, | 
|  | 913 | MutableArrayRef<TemplateParameterList *> Params, | 
|  | 914 | FriendUnion Friend, SourceLocation FLoc) { | 
|  | 915 | return new (Context, DC) FriendTemplateDecl(DC, L, Params, Friend, FLoc); | 
| John McCall | 11083da | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 916 | } | 
| Argyrios Kyrtzidis | 165b581 | 2010-07-22 16:04:10 +0000 | [diff] [blame] | 917 |  | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 918 | FriendTemplateDecl *FriendTemplateDecl::CreateDeserialized(ASTContext &C, | 
|  | 919 | unsigned ID) { | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 920 | return new (C, ID) FriendTemplateDecl(EmptyShell()); | 
| Argyrios Kyrtzidis | 165b581 | 2010-07-22 16:04:10 +0000 | [diff] [blame] | 921 | } | 
| Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 922 |  | 
|  | 923 | //===----------------------------------------------------------------------===// | 
|  | 924 | // TypeAliasTemplateDecl Implementation | 
|  | 925 | //===----------------------------------------------------------------------===// | 
|  | 926 |  | 
|  | 927 | TypeAliasTemplateDecl *TypeAliasTemplateDecl::Create(ASTContext &C, | 
|  | 928 | DeclContext *DC, | 
|  | 929 | SourceLocation L, | 
|  | 930 | DeclarationName Name, | 
|  | 931 | TemplateParameterList *Params, | 
|  | 932 | NamedDecl *Decl) { | 
|  | 933 | AdoptTemplateParameterList(Params, DC); | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 934 | return new (C, DC) TypeAliasTemplateDecl(C, DC, L, Name, Params, Decl); | 
| Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 935 | } | 
|  | 936 |  | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 937 | TypeAliasTemplateDecl *TypeAliasTemplateDecl::CreateDeserialized(ASTContext &C, | 
|  | 938 | unsigned ID) { | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 939 | return new (C, ID) TypeAliasTemplateDecl(C, nullptr, SourceLocation(), | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 940 | DeclarationName(), nullptr, nullptr); | 
| Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 941 | } | 
|  | 942 |  | 
| Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 943 | RedeclarableTemplateDecl::CommonBase * | 
| Dmitri Gribenko | b53f37c | 2013-01-23 16:52:57 +0000 | [diff] [blame] | 944 | TypeAliasTemplateDecl::newCommon(ASTContext &C) const { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 945 | auto *CommonPtr = new (C) Common; | 
| George Burgess IV | b61bfbd | 2017-02-14 05:37:36 +0000 | [diff] [blame] | 946 | C.addDestruction(CommonPtr); | 
| Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 947 | return CommonPtr; | 
|  | 948 | } | 
|  | 949 |  | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 950 | //===----------------------------------------------------------------------===// | 
|  | 951 | // ClassScopeFunctionSpecializationDecl Implementation | 
|  | 952 | //===----------------------------------------------------------------------===// | 
|  | 953 |  | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 954 | void ClassScopeFunctionSpecializationDecl::anchor() {} | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 955 |  | 
|  | 956 | ClassScopeFunctionSpecializationDecl * | 
|  | 957 | ClassScopeFunctionSpecializationDecl::CreateDeserialized(ASTContext &C, | 
|  | 958 | unsigned ID) { | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 959 | return new (C, ID) ClassScopeFunctionSpecializationDecl( | 
| Richard Smith | f19a8b0 | 2019-05-02 00:49:14 +0000 | [diff] [blame] | 960 | nullptr, SourceLocation(), nullptr, nullptr); | 
| Douglas Gregor | 72172e9 | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 961 | } | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 962 |  | 
|  | 963 | //===----------------------------------------------------------------------===// | 
|  | 964 | // VarTemplateDecl Implementation | 
|  | 965 | //===----------------------------------------------------------------------===// | 
|  | 966 |  | 
| Larisse Voufo | a11bd8a | 2013-08-13 02:02:26 +0000 | [diff] [blame] | 967 | VarTemplateDecl *VarTemplateDecl::getDefinition() { | 
|  | 968 | VarTemplateDecl *CurD = this; | 
|  | 969 | while (CurD) { | 
|  | 970 | if (CurD->isThisDeclarationADefinition()) | 
|  | 971 | return CurD; | 
|  | 972 | CurD = CurD->getPreviousDecl(); | 
|  | 973 | } | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 974 | return nullptr; | 
| Larisse Voufo | a11bd8a | 2013-08-13 02:02:26 +0000 | [diff] [blame] | 975 | } | 
|  | 976 |  | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 977 | VarTemplateDecl *VarTemplateDecl::Create(ASTContext &C, DeclContext *DC, | 
|  | 978 | SourceLocation L, DeclarationName Name, | 
|  | 979 | TemplateParameterList *Params, | 
| Richard Smith | beef345 | 2014-01-16 23:39:20 +0000 | [diff] [blame] | 980 | VarDecl *Decl) { | 
| David Blaikie | 07489f9 | 2019-04-19 23:04:05 +0000 | [diff] [blame] | 981 | AdoptTemplateParameterList(Params, DC); | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 982 | return new (C, DC) VarTemplateDecl(C, DC, L, Name, Params, Decl); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 983 | } | 
|  | 984 |  | 
|  | 985 | VarTemplateDecl *VarTemplateDecl::CreateDeserialized(ASTContext &C, | 
|  | 986 | unsigned ID) { | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 987 | return new (C, ID) VarTemplateDecl(C, nullptr, SourceLocation(), | 
|  | 988 | DeclarationName(), nullptr, nullptr); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 989 | } | 
|  | 990 |  | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 991 | void VarTemplateDecl::LoadLazySpecializations() const { | 
| Vassil Vassilev | 61f6429 | 2017-12-14 23:30:18 +0000 | [diff] [blame] | 992 | loadLazySpecializationsImpl(); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 993 | } | 
|  | 994 |  | 
|  | 995 | llvm::FoldingSetVector<VarTemplateSpecializationDecl> & | 
|  | 996 | VarTemplateDecl::getSpecializations() const { | 
|  | 997 | LoadLazySpecializations(); | 
|  | 998 | return getCommonPtr()->Specializations; | 
|  | 999 | } | 
|  | 1000 |  | 
|  | 1001 | llvm::FoldingSetVector<VarTemplatePartialSpecializationDecl> & | 
|  | 1002 | VarTemplateDecl::getPartialSpecializations() { | 
|  | 1003 | LoadLazySpecializations(); | 
|  | 1004 | return getCommonPtr()->PartialSpecializations; | 
|  | 1005 | } | 
|  | 1006 |  | 
|  | 1007 | RedeclarableTemplateDecl::CommonBase * | 
|  | 1008 | VarTemplateDecl::newCommon(ASTContext &C) const { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 1009 | auto *CommonPtr = new (C) Common; | 
| George Burgess IV | b61bfbd | 2017-02-14 05:37:36 +0000 | [diff] [blame] | 1010 | C.addDestruction(CommonPtr); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1011 | return CommonPtr; | 
|  | 1012 | } | 
|  | 1013 |  | 
|  | 1014 | VarTemplateSpecializationDecl * | 
| Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 1015 | VarTemplateDecl::findSpecialization(ArrayRef<TemplateArgument> Args, | 
|  | 1016 | void *&InsertPos) { | 
|  | 1017 | return findSpecializationImpl(getSpecializations(), Args, InsertPos); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1018 | } | 
|  | 1019 |  | 
|  | 1020 | void VarTemplateDecl::AddSpecialization(VarTemplateSpecializationDecl *D, | 
|  | 1021 | void *InsertPos) { | 
| Richard Smith | e977e51 | 2015-02-24 01:23:23 +0000 | [diff] [blame] | 1022 | addSpecializationImpl<VarTemplateDecl>(getSpecializations(), D, InsertPos); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1023 | } | 
|  | 1024 |  | 
|  | 1025 | VarTemplatePartialSpecializationDecl * | 
| Craig Topper | 7e0daca | 2014-06-26 04:58:53 +0000 | [diff] [blame] | 1026 | VarTemplateDecl::findPartialSpecialization(ArrayRef<TemplateArgument> Args, | 
|  | 1027 | void *&InsertPos) { | 
|  | 1028 | return findSpecializationImpl(getPartialSpecializations(), Args, InsertPos); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1029 | } | 
|  | 1030 |  | 
|  | 1031 | void VarTemplateDecl::AddPartialSpecialization( | 
|  | 1032 | VarTemplatePartialSpecializationDecl *D, void *InsertPos) { | 
|  | 1033 | if (InsertPos) | 
|  | 1034 | getPartialSpecializations().InsertNode(D, InsertPos); | 
|  | 1035 | else { | 
|  | 1036 | VarTemplatePartialSpecializationDecl *Existing = | 
|  | 1037 | getPartialSpecializations().GetOrInsertNode(D); | 
|  | 1038 | (void)Existing; | 
|  | 1039 | assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); | 
|  | 1040 | } | 
|  | 1041 |  | 
|  | 1042 | if (ASTMutationListener *L = getASTMutationListener()) | 
|  | 1043 | L->AddedCXXTemplateSpecialization(this, D); | 
|  | 1044 | } | 
|  | 1045 |  | 
|  | 1046 | void VarTemplateDecl::getPartialSpecializations( | 
|  | 1047 | SmallVectorImpl<VarTemplatePartialSpecializationDecl *> &PS) { | 
|  | 1048 | llvm::FoldingSetVector<VarTemplatePartialSpecializationDecl> &PartialSpecs = | 
|  | 1049 | getPartialSpecializations(); | 
|  | 1050 | PS.clear(); | 
| Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 1051 | PS.reserve(PartialSpecs.size()); | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 1052 | for (VarTemplatePartialSpecializationDecl &P : PartialSpecs) | 
|  | 1053 | PS.push_back(P.getMostRecentDecl()); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1054 | } | 
|  | 1055 |  | 
|  | 1056 | VarTemplatePartialSpecializationDecl * | 
|  | 1057 | VarTemplateDecl::findPartialSpecInstantiatedFromMember( | 
|  | 1058 | VarTemplatePartialSpecializationDecl *D) { | 
|  | 1059 | Decl *DCanon = D->getCanonicalDecl(); | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 1060 | for (VarTemplatePartialSpecializationDecl &P : getPartialSpecializations()) { | 
|  | 1061 | if (P.getInstantiatedFromMember()->getCanonicalDecl() == DCanon) | 
|  | 1062 | return P.getMostRecentDecl(); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1063 | } | 
|  | 1064 |  | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1065 | return nullptr; | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1066 | } | 
|  | 1067 |  | 
|  | 1068 | //===----------------------------------------------------------------------===// | 
|  | 1069 | // VarTemplateSpecializationDecl Implementation | 
|  | 1070 | //===----------------------------------------------------------------------===// | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 1071 |  | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1072 | VarTemplateSpecializationDecl::VarTemplateSpecializationDecl( | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1073 | Kind DK, ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1074 | SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1075 | TypeSourceInfo *TInfo, StorageClass S, ArrayRef<TemplateArgument> Args) | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1076 | : VarDecl(DK, Context, DC, StartLoc, IdLoc, | 
|  | 1077 | SpecializedTemplate->getIdentifier(), T, TInfo, S), | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 1078 | SpecializedTemplate(SpecializedTemplate), | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1079 | TemplateArgs(TemplateArgumentList::CreateCopy(Context, Args)), | 
| Richard Smith | 435e647 | 2017-12-02 02:48:42 +0000 | [diff] [blame] | 1080 | SpecializationKind(TSK_Undeclared), IsCompleteDefinition(false) {} | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1081 |  | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1082 | VarTemplateSpecializationDecl::VarTemplateSpecializationDecl(Kind DK, | 
|  | 1083 | ASTContext &C) | 
|  | 1084 | : VarDecl(DK, C, nullptr, SourceLocation(), SourceLocation(), nullptr, | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1085 | QualType(), nullptr, SC_None), | 
| Richard Smith | 435e647 | 2017-12-02 02:48:42 +0000 | [diff] [blame] | 1086 | SpecializationKind(TSK_Undeclared), IsCompleteDefinition(false) {} | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1087 |  | 
|  | 1088 | VarTemplateSpecializationDecl *VarTemplateSpecializationDecl::Create( | 
|  | 1089 | ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, | 
|  | 1090 | SourceLocation IdLoc, VarTemplateDecl *SpecializedTemplate, QualType T, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1091 | TypeSourceInfo *TInfo, StorageClass S, ArrayRef<TemplateArgument> Args) { | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1092 | return new (Context, DC) VarTemplateSpecializationDecl( | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1093 | VarTemplateSpecialization, Context, DC, StartLoc, IdLoc, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1094 | SpecializedTemplate, T, TInfo, S, Args); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1095 | } | 
|  | 1096 |  | 
|  | 1097 | VarTemplateSpecializationDecl * | 
|  | 1098 | VarTemplateSpecializationDecl::CreateDeserialized(ASTContext &C, unsigned ID) { | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1099 | return new (C, ID) | 
|  | 1100 | VarTemplateSpecializationDecl(VarTemplateSpecialization, C); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1101 | } | 
|  | 1102 |  | 
|  | 1103 | void VarTemplateSpecializationDecl::getNameForDiagnostic( | 
|  | 1104 | raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const { | 
|  | 1105 | NamedDecl::getNameForDiagnostic(OS, Policy, Qualified); | 
|  | 1106 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 1107 | const auto *PS = dyn_cast<VarTemplatePartialSpecializationDecl>(this); | 
| Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 1108 | if (const ASTTemplateArgumentListInfo *ArgsAsWritten = | 
|  | 1109 | PS ? PS->getTemplateArgsAsWritten() : nullptr) { | 
| Serge Pavlov | 03e672c | 2017-11-28 16:14:14 +0000 | [diff] [blame] | 1110 | printTemplateArgumentList(OS, ArgsAsWritten->arguments(), Policy); | 
| Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 1111 | } else { | 
|  | 1112 | const TemplateArgumentList &TemplateArgs = getTemplateArgs(); | 
| Serge Pavlov | 03e672c | 2017-11-28 16:14:14 +0000 | [diff] [blame] | 1113 | printTemplateArgumentList(OS, TemplateArgs.asArray(), Policy); | 
| Richard Smith | 792c22d | 2016-12-24 04:09:05 +0000 | [diff] [blame] | 1114 | } | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1115 | } | 
|  | 1116 |  | 
|  | 1117 | VarTemplateDecl *VarTemplateSpecializationDecl::getSpecializedTemplate() const { | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 1118 | if (const auto *PartialSpec = | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1119 | SpecializedTemplate.dyn_cast<SpecializedPartialSpecialization *>()) | 
|  | 1120 | return PartialSpec->PartialSpecialization->getSpecializedTemplate(); | 
|  | 1121 | return SpecializedTemplate.get<VarTemplateDecl *>(); | 
|  | 1122 | } | 
|  | 1123 |  | 
|  | 1124 | void VarTemplateSpecializationDecl::setTemplateArgsInfo( | 
|  | 1125 | const TemplateArgumentListInfo &ArgsInfo) { | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1126 | TemplateArgsInfo.setLAngleLoc(ArgsInfo.getLAngleLoc()); | 
|  | 1127 | TemplateArgsInfo.setRAngleLoc(ArgsInfo.getRAngleLoc()); | 
| David Majnemer | dfecf1a | 2016-07-06 04:19:16 +0000 | [diff] [blame] | 1128 | for (const TemplateArgumentLoc &Loc : ArgsInfo.arguments()) | 
|  | 1129 | TemplateArgsInfo.addArgument(Loc); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1130 | } | 
|  | 1131 |  | 
|  | 1132 | //===----------------------------------------------------------------------===// | 
|  | 1133 | // VarTemplatePartialSpecializationDecl Implementation | 
|  | 1134 | //===----------------------------------------------------------------------===// | 
| Eugene Zelenko | 421e890 | 2017-11-29 22:39:22 +0000 | [diff] [blame] | 1135 |  | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1136 | void VarTemplatePartialSpecializationDecl::anchor() {} | 
|  | 1137 |  | 
|  | 1138 | VarTemplatePartialSpecializationDecl::VarTemplatePartialSpecializationDecl( | 
|  | 1139 | ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, | 
|  | 1140 | SourceLocation IdLoc, TemplateParameterList *Params, | 
|  | 1141 | VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1142 | StorageClass S, ArrayRef<TemplateArgument> Args, | 
| Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 1143 | const ASTTemplateArgumentListInfo *ArgInfos) | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1144 | : VarTemplateSpecializationDecl(VarTemplatePartialSpecialization, Context, | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1145 | DC, StartLoc, IdLoc, SpecializedTemplate, T, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1146 | TInfo, S, Args), | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1147 | TemplateParams(Params), ArgsAsWritten(ArgInfos), | 
| Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 1148 | InstantiatedFromMember(nullptr, false) { | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1149 | // TODO: The template parameters should be in DC by now. Verify. | 
|  | 1150 | // AdoptTemplateParameterList(Params, DC); | 
|  | 1151 | } | 
|  | 1152 |  | 
|  | 1153 | VarTemplatePartialSpecializationDecl * | 
|  | 1154 | VarTemplatePartialSpecializationDecl::Create( | 
|  | 1155 | ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, | 
|  | 1156 | SourceLocation IdLoc, TemplateParameterList *Params, | 
|  | 1157 | VarTemplateDecl *SpecializedTemplate, QualType T, TypeSourceInfo *TInfo, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1158 | StorageClass S, ArrayRef<TemplateArgument> Args, | 
| Richard Smith | b2f61b4 | 2013-08-22 23:27:37 +0000 | [diff] [blame] | 1159 | const TemplateArgumentListInfo &ArgInfos) { | 
| Enea Zaffanella | 6dbe187 | 2013-08-10 07:24:53 +0000 | [diff] [blame] | 1160 | const ASTTemplateArgumentListInfo *ASTArgInfos | 
|  | 1161 | = ASTTemplateArgumentListInfo::Create(Context, ArgInfos); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1162 |  | 
| Eugene Zelenko | 309e29d | 2018-03-29 20:51:59 +0000 | [diff] [blame] | 1163 | auto *Result = | 
| Richard Smith | f798172 | 2013-11-22 09:01:48 +0000 | [diff] [blame] | 1164 | new (Context, DC) VarTemplatePartialSpecializationDecl( | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1165 | Context, DC, StartLoc, IdLoc, Params, SpecializedTemplate, T, TInfo, | 
| David Majnemer | 8b62269 | 2016-07-03 21:17:51 +0000 | [diff] [blame] | 1166 | S, Args, ASTArgInfos); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1167 | Result->setSpecializationKind(TSK_ExplicitSpecialization); | 
|  | 1168 | return Result; | 
|  | 1169 | } | 
|  | 1170 |  | 
|  | 1171 | VarTemplatePartialSpecializationDecl * | 
|  | 1172 | VarTemplatePartialSpecializationDecl::CreateDeserialized(ASTContext &C, | 
|  | 1173 | unsigned ID) { | 
| Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 1174 | return new (C, ID) VarTemplatePartialSpecializationDecl(C); | 
| Larisse Voufo | 39a1e50 | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 1175 | } | 
| David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 1176 |  | 
|  | 1177 | static TemplateParameterList * | 
|  | 1178 | createMakeIntegerSeqParameterList(const ASTContext &C, DeclContext *DC) { | 
|  | 1179 | // typename T | 
|  | 1180 | auto *T = TemplateTypeParmDecl::Create( | 
|  | 1181 | C, DC, SourceLocation(), SourceLocation(), /*Depth=*/1, /*Position=*/0, | 
|  | 1182 | /*Id=*/nullptr, /*Typename=*/true, /*ParameterPack=*/false); | 
|  | 1183 | T->setImplicit(true); | 
|  | 1184 |  | 
|  | 1185 | // T ...Ints | 
|  | 1186 | TypeSourceInfo *TI = | 
|  | 1187 | C.getTrivialTypeSourceInfo(QualType(T->getTypeForDecl(), 0)); | 
|  | 1188 | auto *N = NonTypeTemplateParmDecl::Create( | 
|  | 1189 | C, DC, SourceLocation(), SourceLocation(), /*Depth=*/0, /*Position=*/1, | 
|  | 1190 | /*Id=*/nullptr, TI->getType(), /*ParameterPack=*/true, TI); | 
|  | 1191 | N->setImplicit(true); | 
|  | 1192 |  | 
|  | 1193 | // <typename T, T ...Ints> | 
|  | 1194 | NamedDecl *P[2] = {T, N}; | 
|  | 1195 | auto *TPL = TemplateParameterList::Create( | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 1196 | C, SourceLocation(), SourceLocation(), P, SourceLocation(), nullptr); | 
| David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 1197 |  | 
|  | 1198 | // template <typename T, ...Ints> class IntSeq | 
|  | 1199 | auto *TemplateTemplateParm = TemplateTemplateParmDecl::Create( | 
|  | 1200 | C, DC, SourceLocation(), /*Depth=*/0, /*Position=*/0, | 
|  | 1201 | /*ParameterPack=*/false, /*Id=*/nullptr, TPL); | 
|  | 1202 | TemplateTemplateParm->setImplicit(true); | 
|  | 1203 |  | 
|  | 1204 | // typename T | 
|  | 1205 | auto *TemplateTypeParm = TemplateTypeParmDecl::Create( | 
|  | 1206 | C, DC, SourceLocation(), SourceLocation(), /*Depth=*/0, /*Position=*/1, | 
|  | 1207 | /*Id=*/nullptr, /*Typename=*/true, /*ParameterPack=*/false); | 
|  | 1208 | TemplateTypeParm->setImplicit(true); | 
|  | 1209 |  | 
|  | 1210 | // T N | 
|  | 1211 | TypeSourceInfo *TInfo = C.getTrivialTypeSourceInfo( | 
|  | 1212 | QualType(TemplateTypeParm->getTypeForDecl(), 0)); | 
|  | 1213 | auto *NonTypeTemplateParm = NonTypeTemplateParmDecl::Create( | 
|  | 1214 | C, DC, SourceLocation(), SourceLocation(), /*Depth=*/0, /*Position=*/2, | 
|  | 1215 | /*Id=*/nullptr, TInfo->getType(), /*ParameterPack=*/false, TInfo); | 
|  | 1216 | NamedDecl *Params[] = {TemplateTemplateParm, TemplateTypeParm, | 
|  | 1217 | NonTypeTemplateParm}; | 
|  | 1218 |  | 
|  | 1219 | // template <template <typename T, T ...Ints> class IntSeq, typename T, T N> | 
|  | 1220 | return TemplateParameterList::Create(C, SourceLocation(), SourceLocation(), | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 1221 | Params, SourceLocation(), nullptr); | 
| David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 1222 | } | 
|  | 1223 |  | 
| Eric Fiselier | 6ad6855 | 2016-07-01 01:24:09 +0000 | [diff] [blame] | 1224 | static TemplateParameterList * | 
|  | 1225 | createTypePackElementParameterList(const ASTContext &C, DeclContext *DC) { | 
|  | 1226 | // std::size_t Index | 
|  | 1227 | TypeSourceInfo *TInfo = C.getTrivialTypeSourceInfo(C.getSizeType()); | 
|  | 1228 | auto *Index = NonTypeTemplateParmDecl::Create( | 
|  | 1229 | C, DC, SourceLocation(), SourceLocation(), /*Depth=*/0, /*Position=*/0, | 
|  | 1230 | /*Id=*/nullptr, TInfo->getType(), /*ParameterPack=*/false, TInfo); | 
|  | 1231 |  | 
|  | 1232 | // typename ...T | 
|  | 1233 | auto *Ts = TemplateTypeParmDecl::Create( | 
|  | 1234 | C, DC, SourceLocation(), SourceLocation(), /*Depth=*/0, /*Position=*/1, | 
|  | 1235 | /*Id=*/nullptr, /*Typename=*/true, /*ParameterPack=*/true); | 
|  | 1236 | Ts->setImplicit(true); | 
|  | 1237 |  | 
|  | 1238 | // template <std::size_t Index, typename ...T> | 
|  | 1239 | NamedDecl *Params[] = {Index, Ts}; | 
|  | 1240 | return TemplateParameterList::Create(C, SourceLocation(), SourceLocation(), | 
|  | 1241 | llvm::makeArrayRef(Params), | 
| Hubert Tong | e4a0c0e | 2016-07-30 22:33:34 +0000 | [diff] [blame] | 1242 | SourceLocation(), nullptr); | 
| Eric Fiselier | 6ad6855 | 2016-07-01 01:24:09 +0000 | [diff] [blame] | 1243 | } | 
|  | 1244 |  | 
| David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 1245 | static TemplateParameterList *createBuiltinTemplateParameterList( | 
|  | 1246 | const ASTContext &C, DeclContext *DC, BuiltinTemplateKind BTK) { | 
|  | 1247 | switch (BTK) { | 
|  | 1248 | case BTK__make_integer_seq: | 
|  | 1249 | return createMakeIntegerSeqParameterList(C, DC); | 
| Eric Fiselier | 6ad6855 | 2016-07-01 01:24:09 +0000 | [diff] [blame] | 1250 | case BTK__type_pack_element: | 
|  | 1251 | return createTypePackElementParameterList(C, DC); | 
| David Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 1252 | } | 
|  | 1253 |  | 
|  | 1254 | llvm_unreachable("unhandled BuiltinTemplateKind!"); | 
|  | 1255 | } | 
|  | 1256 |  | 
|  | 1257 | void BuiltinTemplateDecl::anchor() {} | 
|  | 1258 |  | 
|  | 1259 | BuiltinTemplateDecl::BuiltinTemplateDecl(const ASTContext &C, DeclContext *DC, | 
|  | 1260 | DeclarationName Name, | 
|  | 1261 | BuiltinTemplateKind BTK) | 
|  | 1262 | : TemplateDecl(BuiltinTemplate, DC, SourceLocation(), Name, | 
|  | 1263 | createBuiltinTemplateParameterList(C, DC, BTK)), | 
|  | 1264 | BTK(BTK) {} |