blob: 3fff8b1c86462672ebbba4d92b31f3bc695412c2 [file] [log] [blame]
Douglas Gregor5101c242008-12-05 18:15:24 +00001//===------- SemaTemplate.cpp - Semantic Analysis for C++ Templates -------===/
Douglas Gregor5101c242008-12-05 18:15:24 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Douglas Gregorfe1e1102009-02-27 19:31:52 +00007//===----------------------------------------------------------------------===/
Douglas Gregor5101c242008-12-05 18:15:24 +00008//
9// This file implements semantic analysis for C++ templates.
Douglas Gregorfe1e1102009-02-27 19:31:52 +000010//===----------------------------------------------------------------------===/
Douglas Gregor5101c242008-12-05 18:15:24 +000011
Douglas Gregor15acfb92009-08-06 16:20:37 +000012#include "TreeTransform.h"
Larisse Voufo39a1e502013-08-06 01:03:05 +000013#include "clang/AST/ASTConsumer.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000014#include "clang/AST/ASTContext.h"
John McCallbbbbe4e2010-03-11 07:50:04 +000015#include "clang/AST/DeclFriend.h"
Douglas Gregorded2d7b2009-02-04 19:02:06 +000016#include "clang/AST/DeclTemplate.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000017#include "clang/AST/Expr.h"
18#include "clang/AST/ExprCXX.h"
John McCalla020a012010-10-20 05:44:58 +000019#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor7731d3f2010-10-13 00:27:52 +000020#include "clang/AST/TypeVisitor.h"
Douglas Gregor5101c242008-12-05 18:15:24 +000021#include "clang/Basic/LangOptions.h"
Douglas Gregor450f00842009-09-25 18:43:00 +000022#include "clang/Basic/PartialDiagnostic.h"
David Majnemer763584d2014-02-06 10:59:19 +000023#include "clang/Basic/TargetInfo.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/Sema/DeclSpec.h"
25#include "clang/Sema/Lookup.h"
26#include "clang/Sema/ParsedTemplate.h"
27#include "clang/Sema/Scope.h"
28#include "clang/Sema/SemaInternal.h"
29#include "clang/Sema/Template.h"
30#include "clang/Sema/TemplateDeduction.h"
Benjamin Kramere0513cb2012-01-30 16:17:39 +000031#include "llvm/ADT/SmallBitVector.h"
Benjamin Kramer49038022012-02-04 13:45:25 +000032#include "llvm/ADT/SmallString.h"
Douglas Gregorbe999392009-09-15 16:23:51 +000033#include "llvm/ADT/StringExtras.h"
Douglas Gregor5101c242008-12-05 18:15:24 +000034using namespace clang;
John McCall19c1bfd2010-08-25 05:32:35 +000035using namespace sema;
Douglas Gregor5101c242008-12-05 18:15:24 +000036
John McCall9b72f892010-11-10 02:40:36 +000037// Exported for use by Parser.
38SourceRange
39clang::getTemplateParamsRange(TemplateParameterList const * const *Ps,
40 unsigned N) {
41 if (!N) return SourceRange();
42 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc());
43}
44
Douglas Gregorb7bfe792009-09-02 22:59:36 +000045/// \brief Determine whether the declaration found is acceptable as the name
46/// of a template and, if so, return that template declaration. Otherwise,
47/// returns NULL.
John McCalle9cccd82010-06-16 08:42:20 +000048static NamedDecl *isAcceptableTemplateName(ASTContext &Context,
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000049 NamedDecl *Orig,
50 bool AllowFunctionTemplates) {
John McCalle9cccd82010-06-16 08:42:20 +000051 NamedDecl *D = Orig->getUnderlyingDecl();
Mike Stump11289f42009-09-09 15:08:12 +000052
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000053 if (isa<TemplateDecl>(D)) {
54 if (!AllowFunctionTemplates && isa<FunctionTemplateDecl>(D))
Craig Topperc3ec1492014-05-26 06:22:03 +000055 return nullptr;
56
John McCalle9cccd82010-06-16 08:42:20 +000057 return Orig;
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000058 }
Mike Stump11289f42009-09-09 15:08:12 +000059
Douglas Gregorb7bfe792009-09-02 22:59:36 +000060 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
61 // C++ [temp.local]p1:
62 // Like normal (non-template) classes, class templates have an
63 // injected-class-name (Clause 9). The injected-class-name
64 // can be used with or without a template-argument-list. When
65 // it is used without a template-argument-list, it is
66 // equivalent to the injected-class-name followed by the
67 // template-parameters of the class template enclosed in
68 // <>. When it is used with a template-argument-list, it
69 // refers to the specified class template specialization,
70 // which could be the current specialization or another
71 // specialization.
72 if (Record->isInjectedClassName()) {
Douglas Gregor568a0712009-10-14 17:30:58 +000073 Record = cast<CXXRecordDecl>(Record->getDeclContext());
Douglas Gregorb7bfe792009-09-02 22:59:36 +000074 if (Record->getDescribedClassTemplate())
75 return Record->getDescribedClassTemplate();
76
77 if (ClassTemplateSpecializationDecl *Spec
78 = dyn_cast<ClassTemplateSpecializationDecl>(Record))
79 return Spec->getSpecializedTemplate();
80 }
Mike Stump11289f42009-09-09 15:08:12 +000081
Craig Topperc3ec1492014-05-26 06:22:03 +000082 return nullptr;
Douglas Gregorb7bfe792009-09-02 22:59:36 +000083 }
Mike Stump11289f42009-09-09 15:08:12 +000084
Craig Topperc3ec1492014-05-26 06:22:03 +000085 return nullptr;
Douglas Gregorb7bfe792009-09-02 22:59:36 +000086}
87
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000088void Sema::FilterAcceptableTemplateNames(LookupResult &R,
89 bool AllowFunctionTemplates) {
Douglas Gregor41f90302010-04-12 20:54:26 +000090 // The set of class templates we've already seen.
91 llvm::SmallPtrSet<ClassTemplateDecl *, 8> ClassTemplates;
John McCalle66edc12009-11-24 19:00:30 +000092 LookupResult::Filter filter = R.makeFilter();
93 while (filter.hasNext()) {
94 NamedDecl *Orig = filter.next();
Douglas Gregor50a3cdd2012-03-10 23:52:41 +000095 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
96 AllowFunctionTemplates);
John McCalle66edc12009-11-24 19:00:30 +000097 if (!Repl)
98 filter.erase();
Douglas Gregor41f90302010-04-12 20:54:26 +000099 else if (Repl != Orig) {
100
101 // C++ [temp.local]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000102 // A lookup that finds an injected-class-name (10.2) can result in an
Douglas Gregor41f90302010-04-12 20:54:26 +0000103 // ambiguity in certain cases (for example, if it is found in more than
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000104 // one base class). If all of the injected-class-names that are found
105 // refer to specializations of the same class template, and if the name
Richard Smith3f1b5d02011-05-05 21:57:07 +0000106 // is used as a template-name, the reference refers to the class
107 // template itself and not a specialization thereof, and is not
Douglas Gregor41f90302010-04-12 20:54:26 +0000108 // ambiguous.
Douglas Gregor41f90302010-04-12 20:54:26 +0000109 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
110 if (!ClassTemplates.insert(ClassTmpl)) {
111 filter.erase();
112 continue;
113 }
John McCallbd8062d2010-08-13 07:02:08 +0000114
115 // FIXME: we promote access to public here as a workaround to
116 // the fact that LookupResult doesn't let us remember that we
117 // found this template through a particular injected class name,
118 // which means we end up doing nasty things to the invariants.
119 // Pretending that access is public is *much* safer.
120 filter.replace(Repl, AS_public);
Douglas Gregor41f90302010-04-12 20:54:26 +0000121 }
John McCalle66edc12009-11-24 19:00:30 +0000122 }
123 filter.done();
124}
125
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000126bool Sema::hasAnyAcceptableTemplateNames(LookupResult &R,
127 bool AllowFunctionTemplates) {
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000128 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I)
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000129 if (isAcceptableTemplateName(Context, *I, AllowFunctionTemplates))
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000130 return true;
131
Douglas Gregor8b02cd02011-04-27 04:48:22 +0000132 return false;
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000133}
134
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000135TemplateNameKind Sema::isTemplateName(Scope *S,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000136 CXXScopeSpec &SS,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +0000137 bool hasTemplateKeyword,
Douglas Gregor3cf81312009-11-03 23:16:33 +0000138 UnqualifiedId &Name,
John McCallba7bf592010-08-24 05:47:05 +0000139 ParsedType ObjectTypePtr,
Douglas Gregore861bac2009-08-25 22:51:20 +0000140 bool EnteringContext,
Douglas Gregor786123d2010-05-21 23:18:07 +0000141 TemplateTy &TemplateResult,
142 bool &MemberOfUnknownSpecialization) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000143 assert(getLangOpts().CPlusPlus && "No template names in C!");
Douglas Gregor411e5ac2010-01-11 23:29:10 +0000144
Douglas Gregor3cf81312009-11-03 23:16:33 +0000145 DeclarationName TName;
Douglas Gregor786123d2010-05-21 23:18:07 +0000146 MemberOfUnknownSpecialization = false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000147
Douglas Gregor3cf81312009-11-03 23:16:33 +0000148 switch (Name.getKind()) {
149 case UnqualifiedId::IK_Identifier:
150 TName = DeclarationName(Name.Identifier);
151 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000152
Douglas Gregor3cf81312009-11-03 23:16:33 +0000153 case UnqualifiedId::IK_OperatorFunctionId:
154 TName = Context.DeclarationNames.getCXXOperatorName(
155 Name.OperatorFunctionId.Operator);
156 break;
157
Alexis Hunted0530f2009-11-28 08:58:14 +0000158 case UnqualifiedId::IK_LiteralOperatorId:
Alexis Hunt3d221f22009-11-29 07:34:05 +0000159 TName = Context.DeclarationNames.getCXXLiteralOperatorName(Name.Identifier);
160 break;
Alexis Hunted0530f2009-11-28 08:58:14 +0000161
Douglas Gregor3cf81312009-11-03 23:16:33 +0000162 default:
163 return TNK_Non_template;
164 }
Mike Stump11289f42009-09-09 15:08:12 +0000165
John McCallba7bf592010-08-24 05:47:05 +0000166 QualType ObjectType = ObjectTypePtr.get();
Mike Stump11289f42009-09-09 15:08:12 +0000167
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000168 LookupResult R(*this, TName, Name.getLocStart(), LookupOrdinaryName);
Douglas Gregor786123d2010-05-21 23:18:07 +0000169 LookupTemplateName(R, S, SS, ObjectType, EnteringContext,
170 MemberOfUnknownSpecialization);
John McCallfb3f9ba2010-08-28 20:17:00 +0000171 if (R.empty()) return TNK_Non_template;
172 if (R.isAmbiguous()) {
173 // Suppress diagnostics; we'll redo this lookup later.
John McCalldcc71402010-08-13 02:23:42 +0000174 R.suppressDiagnostics();
John McCallfb3f9ba2010-08-28 20:17:00 +0000175
176 // FIXME: we might have ambiguous templates, in which case we
177 // should at least parse them properly!
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000178 return TNK_Non_template;
John McCalldcc71402010-08-13 02:23:42 +0000179 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000180
John McCalld28ae272009-12-02 08:04:21 +0000181 TemplateName Template;
182 TemplateNameKind TemplateKind;
Mike Stump11289f42009-09-09 15:08:12 +0000183
John McCalld28ae272009-12-02 08:04:21 +0000184 unsigned ResultCount = R.end() - R.begin();
185 if (ResultCount > 1) {
186 // We assume that we'll preserve the qualifier from a function
187 // template name in other ways.
188 Template = Context.getOverloadedTemplateName(R.begin(), R.end());
189 TemplateKind = TNK_Function_template;
John McCalldcc71402010-08-13 02:23:42 +0000190
191 // We'll do this lookup again later.
192 R.suppressDiagnostics();
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000193 } else {
John McCalld28ae272009-12-02 08:04:21 +0000194 TemplateDecl *TD = cast<TemplateDecl>((*R.begin())->getUnderlyingDecl());
195
196 if (SS.isSet() && !SS.isInvalid()) {
Aaron Ballman4a979672014-01-03 13:56:08 +0000197 NestedNameSpecifier *Qualifier = SS.getScopeRep();
Abramo Bagnara7c5dee42010-08-06 12:11:11 +0000198 Template = Context.getQualifiedTemplateName(Qualifier,
199 hasTemplateKeyword, TD);
John McCalld28ae272009-12-02 08:04:21 +0000200 } else {
201 Template = TemplateName(TD);
202 }
203
John McCalldcc71402010-08-13 02:23:42 +0000204 if (isa<FunctionTemplateDecl>(TD)) {
John McCalld28ae272009-12-02 08:04:21 +0000205 TemplateKind = TNK_Function_template;
John McCalldcc71402010-08-13 02:23:42 +0000206
207 // We'll do this lookup again later.
208 R.suppressDiagnostics();
209 } else {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000210 assert(isa<ClassTemplateDecl>(TD) || isa<TemplateTemplateParmDecl>(TD) ||
Larisse Voufo39a1e502013-08-06 01:03:05 +0000211 isa<TypeAliasTemplateDecl>(TD) || isa<VarTemplateDecl>(TD));
212 TemplateKind =
213 isa<VarTemplateDecl>(TD) ? TNK_Var_template : TNK_Type_template;
John McCalld28ae272009-12-02 08:04:21 +0000214 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000215 }
Mike Stump11289f42009-09-09 15:08:12 +0000216
John McCalld28ae272009-12-02 08:04:21 +0000217 TemplateResult = TemplateTy::make(Template);
218 return TemplateKind;
John McCalle66edc12009-11-24 19:00:30 +0000219}
220
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000221bool Sema::DiagnoseUnknownTemplateName(const IdentifierInfo &II,
Douglas Gregor18473f32010-01-12 21:28:44 +0000222 SourceLocation IILoc,
223 Scope *S,
224 const CXXScopeSpec *SS,
225 TemplateTy &SuggestedTemplate,
226 TemplateNameKind &SuggestedKind) {
227 // We can't recover unless there's a dependent scope specifier preceding the
228 // template name.
Douglas Gregor20c38a72010-05-21 23:43:39 +0000229 // FIXME: Typo correction?
Douglas Gregor18473f32010-01-12 21:28:44 +0000230 if (!SS || !SS->isSet() || !isDependentScopeSpecifier(*SS) ||
231 computeDeclContext(*SS))
232 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000233
Douglas Gregor18473f32010-01-12 21:28:44 +0000234 // The code is missing a 'template' keyword prior to the dependent template
235 // name.
236 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep();
237 Diag(IILoc, diag::err_template_kw_missing)
238 << Qualifier << II.getName()
Douglas Gregora771f462010-03-31 17:46:05 +0000239 << FixItHint::CreateInsertion(IILoc, "template ");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000240 SuggestedTemplate
Douglas Gregor18473f32010-01-12 21:28:44 +0000241 = TemplateTy::make(Context.getDependentTemplateName(Qualifier, &II));
242 SuggestedKind = TNK_Dependent_template_name;
243 return true;
244}
245
John McCalle66edc12009-11-24 19:00:30 +0000246void Sema::LookupTemplateName(LookupResult &Found,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000247 Scope *S, CXXScopeSpec &SS,
John McCalle66edc12009-11-24 19:00:30 +0000248 QualType ObjectType,
Douglas Gregor786123d2010-05-21 23:18:07 +0000249 bool EnteringContext,
250 bool &MemberOfUnknownSpecialization) {
John McCalle66edc12009-11-24 19:00:30 +0000251 // Determine where to perform name lookup
Douglas Gregor786123d2010-05-21 23:18:07 +0000252 MemberOfUnknownSpecialization = false;
Craig Topperc3ec1492014-05-26 06:22:03 +0000253 DeclContext *LookupCtx = nullptr;
John McCalle66edc12009-11-24 19:00:30 +0000254 bool isDependent = false;
255 if (!ObjectType.isNull()) {
256 // This nested-name-specifier occurs in a member access expression, e.g.,
257 // x->B::f, and we are looking into the type of the object.
258 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
259 LookupCtx = computeDeclContext(ObjectType);
260 isDependent = ObjectType->isDependentType();
Richard Smith5ed79562013-06-07 20:03:01 +0000261 assert((isDependent || !ObjectType->isIncompleteType() ||
262 ObjectType->castAs<TagType>()->isBeingDefined()) &&
John McCalle66edc12009-11-24 19:00:30 +0000263 "Caller should have completed object type");
Douglas Gregorbf3a8262012-01-12 16:11:24 +0000264
265 // Template names cannot appear inside an Objective-C class or object type.
266 if (ObjectType->isObjCObjectOrInterfaceType()) {
267 Found.clear();
268 return;
269 }
John McCalle66edc12009-11-24 19:00:30 +0000270 } else if (SS.isSet()) {
271 // This nested-name-specifier occurs after another nested-name-specifier,
272 // so long into the context associated with the prior nested-name-specifier.
273 LookupCtx = computeDeclContext(SS, EnteringContext);
274 isDependent = isDependentScopeSpecifier(SS);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000275
John McCalle66edc12009-11-24 19:00:30 +0000276 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000277 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
John McCalle66edc12009-11-24 19:00:30 +0000278 return;
279 }
280
281 bool ObjectTypeSearchedInScope = false;
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000282 bool AllowFunctionTemplatesInLookup = true;
John McCalle66edc12009-11-24 19:00:30 +0000283 if (LookupCtx) {
284 // Perform "qualified" name lookup into the declaration context we
285 // computed, which is either the type of the base of a member access
286 // expression or the declaration context associated with a prior
287 // nested-name-specifier.
288 LookupQualifiedName(Found, LookupCtx);
John McCalle66edc12009-11-24 19:00:30 +0000289 if (!ObjectType.isNull() && Found.empty()) {
290 // C++ [basic.lookup.classref]p1:
291 // In a class member access expression (5.2.5), if the . or -> token is
292 // immediately followed by an identifier followed by a <, the
293 // identifier must be looked up to determine whether the < is the
294 // beginning of a template argument list (14.2) or a less-than operator.
295 // The identifier is first looked up in the class of the object
296 // expression. If the identifier is not found, it is then looked up in
297 // the context of the entire postfix-expression and shall name a class
298 // or function template.
John McCalle66edc12009-11-24 19:00:30 +0000299 if (S) LookupName(Found, S);
300 ObjectTypeSearchedInScope = true;
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000301 AllowFunctionTemplatesInLookup = false;
John McCalle66edc12009-11-24 19:00:30 +0000302 }
Douglas Gregorfc6c3e72010-07-16 16:54:17 +0000303 } else if (isDependent && (!S || ObjectType.isNull())) {
Douglas Gregorc119dd52010-01-12 17:06:20 +0000304 // We cannot look into a dependent object type or nested nme
305 // specifier.
Douglas Gregor786123d2010-05-21 23:18:07 +0000306 MemberOfUnknownSpecialization = true;
John McCalle66edc12009-11-24 19:00:30 +0000307 return;
308 } else {
309 // Perform unqualified name lookup in the current scope.
310 LookupName(Found, S);
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000311
312 if (!ObjectType.isNull())
313 AllowFunctionTemplatesInLookup = false;
John McCalle66edc12009-11-24 19:00:30 +0000314 }
315
Douglas Gregorc119dd52010-01-12 17:06:20 +0000316 if (Found.empty() && !isDependent) {
Douglas Gregorff18cc12009-12-31 08:11:17 +0000317 // If we did not find any names, attempt to correct any typos.
318 DeclarationName Name = Found.getLookupName();
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000319 Found.clear();
Kaelyn Uhrain637b5b32012-01-13 23:10:36 +0000320 // Simple filter callback that, for keywords, only accepts the C++ *_cast
Kaelyn Takata89c881b2014-10-27 18:07:29 +0000321 auto FilterCCC = llvm::make_unique<CorrectionCandidateCallback>();
322 FilterCCC->WantTypeSpecifiers = false;
323 FilterCCC->WantExpressionKeywords = false;
324 FilterCCC->WantRemainingKeywords = false;
325 FilterCCC->WantCXXNamedCasts = true;
326 if (TypoCorrection Corrected = CorrectTypo(
327 Found.getLookupNameInfo(), Found.getLookupKind(), S, &SS,
328 std::move(FilterCCC), CTK_ErrorRecovery, LookupCtx)) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000329 Found.setLookupName(Corrected.getCorrection());
330 if (Corrected.getCorrectionDecl())
331 Found.addDecl(Corrected.getCorrectionDecl());
Douglas Gregor0e7dde52011-04-24 05:37:28 +0000332 FilterAcceptableTemplateNames(Found);
John McCalle9cccd82010-06-16 08:42:20 +0000333 if (!Found.empty()) {
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000334 if (LookupCtx) {
Richard Smithf9b15102013-08-17 00:46:16 +0000335 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
336 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000337 Name.getAsString() == CorrectedStr;
Richard Smithf9b15102013-08-17 00:46:16 +0000338 diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest)
339 << Name << LookupCtx << DroppedSpecifier
340 << SS.getRange());
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000341 } else {
Richard Smithf9b15102013-08-17 00:46:16 +0000342 diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name);
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000343 }
John McCalle9cccd82010-06-16 08:42:20 +0000344 }
Douglas Gregorff18cc12009-12-31 08:11:17 +0000345 } else {
Douglas Gregorc048c522010-06-29 19:27:42 +0000346 Found.setLookupName(Name);
Douglas Gregorff18cc12009-12-31 08:11:17 +0000347 }
348 }
349
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000350 FilterAcceptableTemplateNames(Found, AllowFunctionTemplatesInLookup);
Douglas Gregorfc6c3e72010-07-16 16:54:17 +0000351 if (Found.empty()) {
352 if (isDependent)
353 MemberOfUnknownSpecialization = true;
John McCalle66edc12009-11-24 19:00:30 +0000354 return;
Douglas Gregorfc6c3e72010-07-16 16:54:17 +0000355 }
John McCalle66edc12009-11-24 19:00:30 +0000356
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000357 if (S && !ObjectType.isNull() && !ObjectTypeSearchedInScope &&
Richard Smithe7d67f22013-09-03 21:22:41 +0000358 !getLangOpts().CPlusPlus11) {
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000359 // C++03 [basic.lookup.classref]p1:
John McCalle66edc12009-11-24 19:00:30 +0000360 // [...] If the lookup in the class of the object expression finds a
361 // template, the name is also looked up in the context of the entire
362 // postfix-expression and [...]
363 //
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000364 // Note: C++11 does not perform this second lookup.
John McCalle66edc12009-11-24 19:00:30 +0000365 LookupResult FoundOuter(*this, Found.getLookupName(), Found.getNameLoc(),
366 LookupOrdinaryName);
367 LookupName(FoundOuter, S);
Douglas Gregor50a3cdd2012-03-10 23:52:41 +0000368 FilterAcceptableTemplateNames(FoundOuter, /*AllowFunctionTemplates=*/false);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000369
John McCalle66edc12009-11-24 19:00:30 +0000370 if (FoundOuter.empty()) {
371 // - if the name is not found, the name found in the class of the
372 // object expression is used, otherwise
Douglas Gregorde0a43f2011-08-10 21:59:45 +0000373 } else if (!FoundOuter.getAsSingle<ClassTemplateDecl>() ||
374 FoundOuter.isAmbiguous()) {
John McCalle66edc12009-11-24 19:00:30 +0000375 // - if the name is found in the context of the entire
376 // postfix-expression and does not name a class template, the name
377 // found in the class of the object expression is used, otherwise
Douglas Gregorde0a43f2011-08-10 21:59:45 +0000378 FoundOuter.clear();
John McCalle9cccd82010-06-16 08:42:20 +0000379 } else if (!Found.isSuppressingDiagnostics()) {
John McCalle66edc12009-11-24 19:00:30 +0000380 // - if the name found is a class template, it must refer to the same
381 // entity as the one found in the class of the object expression,
382 // otherwise the program is ill-formed.
383 if (!Found.isSingleResult() ||
384 Found.getFoundDecl()->getCanonicalDecl()
385 != FoundOuter.getFoundDecl()->getCanonicalDecl()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000386 Diag(Found.getNameLoc(),
Jeffrey Yasskin2f96e9f2010-06-05 01:39:57 +0000387 diag::ext_nested_name_member_ref_lookup_ambiguous)
388 << Found.getLookupName()
389 << ObjectType;
John McCalle66edc12009-11-24 19:00:30 +0000390 Diag(Found.getRepresentativeDecl()->getLocation(),
391 diag::note_ambig_member_ref_object_type)
392 << ObjectType;
393 Diag(FoundOuter.getFoundDecl()->getLocation(),
394 diag::note_ambig_member_ref_scope);
395
396 // Recover by taking the template that we found in the object
397 // expression's type.
398 }
399 }
400 }
401}
402
John McCallcd4b4772009-12-02 03:53:29 +0000403/// ActOnDependentIdExpression - Handle a dependent id-expression that
404/// was just parsed. This is only possible with an explicit scope
405/// specifier naming a dependent type.
John McCalldadc5752010-08-24 06:29:42 +0000406ExprResult
John McCalle66edc12009-11-24 19:00:30 +0000407Sema::ActOnDependentIdExpression(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000408 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000409 const DeclarationNameInfo &NameInfo,
John McCallcd4b4772009-12-02 03:53:29 +0000410 bool isAddressOfOperand,
John McCalle66edc12009-11-24 19:00:30 +0000411 const TemplateArgumentListInfo *TemplateArgs) {
John McCall87fe5d52010-05-20 01:18:31 +0000412 DeclContext *DC = getFunctionLevelDeclContext();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000413
John McCallcd4b4772009-12-02 03:53:29 +0000414 if (!isAddressOfOperand &&
John McCall87fe5d52010-05-20 01:18:31 +0000415 isa<CXXMethodDecl>(DC) &&
416 cast<CXXMethodDecl>(DC)->isInstance()) {
417 QualType ThisType = cast<CXXMethodDecl>(DC)->getThisType(Context);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000418
John McCalle66edc12009-11-24 19:00:30 +0000419 // Since the 'this' expression is synthesized, we don't need to
420 // perform the double-lookup check.
Craig Topperc3ec1492014-05-26 06:22:03 +0000421 NamedDecl *FirstQualifierInScope = nullptr;
John McCalle66edc12009-11-24 19:00:30 +0000422
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000423 return CXXDependentScopeMemberExpr::Create(
424 Context, /*This*/ nullptr, ThisType, /*IsArrow*/ true,
425 /*Op*/ SourceLocation(), SS.getWithLocInContext(Context), TemplateKWLoc,
426 FirstQualifierInScope, NameInfo, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +0000427 }
428
Abramo Bagnara7945c982012-01-27 09:46:47 +0000429 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +0000430}
431
John McCalldadc5752010-08-24 06:29:42 +0000432ExprResult
John McCalle66edc12009-11-24 19:00:30 +0000433Sema::BuildDependentDeclRefExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000434 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +0000435 const DeclarationNameInfo &NameInfo,
John McCalle66edc12009-11-24 19:00:30 +0000436 const TemplateArgumentListInfo *TemplateArgs) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000437 return DependentScopeDeclRefExpr::Create(
438 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
439 TemplateArgs);
Douglas Gregor55ad91f2008-12-18 19:37:40 +0000440}
441
Douglas Gregor5101c242008-12-05 18:15:24 +0000442/// DiagnoseTemplateParameterShadow - Produce a diagnostic complaining
443/// that the template parameter 'PrevDecl' is being shadowed by a new
444/// declaration at location Loc. Returns true to indicate that this is
445/// an error, and false otherwise.
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000446void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
Douglas Gregor5daeee22008-12-08 18:40:42 +0000447 assert(PrevDecl->isTemplateParameter() && "Not a template parameter");
Douglas Gregor5101c242008-12-05 18:15:24 +0000448
449 // Microsoft Visual C++ permits template parameters to be shadowed.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000450 if (getLangOpts().MicrosoftExt)
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000451 return;
Douglas Gregor5101c242008-12-05 18:15:24 +0000452
453 // C++ [temp.local]p4:
454 // A template-parameter shall not be redeclared within its
455 // scope (including nested scopes).
Mike Stump11289f42009-09-09 15:08:12 +0000456 Diag(Loc, diag::err_template_param_shadow)
Douglas Gregor5101c242008-12-05 18:15:24 +0000457 << cast<NamedDecl>(PrevDecl)->getDeclName();
458 Diag(PrevDecl->getLocation(), diag::note_template_param_here);
Douglas Gregorf4ef4d22011-10-20 17:58:49 +0000459 return;
Douglas Gregor5101c242008-12-05 18:15:24 +0000460}
461
Douglas Gregor463421d2009-03-03 04:44:36 +0000462/// AdjustDeclIfTemplate - If the given decl happens to be a template, reset
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000463/// the parameter D to reference the templated declaration and return a pointer
464/// to the template declaration. Otherwise, do nothing to D and return null.
John McCall48871652010-08-21 09:40:31 +0000465TemplateDecl *Sema::AdjustDeclIfTemplate(Decl *&D) {
466 if (TemplateDecl *Temp = dyn_cast_or_null<TemplateDecl>(D)) {
467 D = Temp->getTemplatedDecl();
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000468 return Temp;
469 }
Craig Topperc3ec1492014-05-26 06:22:03 +0000470 return nullptr;
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000471}
472
Douglas Gregoreb29d182011-01-05 17:40:24 +0000473ParsedTemplateArgument ParsedTemplateArgument::getTemplatePackExpansion(
474 SourceLocation EllipsisLoc) const {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000475 assert(Kind == Template &&
Douglas Gregoreb29d182011-01-05 17:40:24 +0000476 "Only template template arguments can be pack expansions here");
477 assert(getAsTemplate().get().containsUnexpandedParameterPack() &&
478 "Template template argument pack expansion without packs");
479 ParsedTemplateArgument Result(*this);
480 Result.EllipsisLoc = EllipsisLoc;
481 return Result;
482}
483
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000484static TemplateArgumentLoc translateTemplateArgument(Sema &SemaRef,
485 const ParsedTemplateArgument &Arg) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000486
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000487 switch (Arg.getKind()) {
488 case ParsedTemplateArgument::Type: {
John McCallbcd03502009-12-07 02:54:59 +0000489 TypeSourceInfo *DI;
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000490 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000491 if (!DI)
John McCallbcd03502009-12-07 02:54:59 +0000492 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000493 return TemplateArgumentLoc(TemplateArgument(T), DI);
494 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000495
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000496 case ParsedTemplateArgument::NonType: {
497 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
498 return TemplateArgumentLoc(TemplateArgument(E), E);
499 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000500
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000501 case ParsedTemplateArgument::Template: {
John McCall3e56fd42010-08-23 07:28:44 +0000502 TemplateName Template = Arg.getAsTemplate().get();
Douglas Gregore1d60df2011-01-14 23:41:42 +0000503 TemplateArgument TArg;
504 if (Arg.getEllipsisLoc().isValid())
David Blaikie05785d12013-02-20 22:23:23 +0000505 TArg = TemplateArgument(Template, Optional<unsigned int>());
Douglas Gregore1d60df2011-01-14 23:41:42 +0000506 else
507 TArg = Template;
508 return TemplateArgumentLoc(TArg,
Douglas Gregor9d802122011-03-02 17:09:35 +0000509 Arg.getScopeSpec().getWithLocInContext(
510 SemaRef.Context),
Douglas Gregoreb29d182011-01-05 17:40:24 +0000511 Arg.getLocation(),
512 Arg.getEllipsisLoc());
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000513 }
514 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000515
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000516 llvm_unreachable("Unhandled parsed template argument");
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000517}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000518
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000519/// \brief Translates template arguments as provided by the parser
520/// into template arguments used by semantic analysis.
John McCall6b51f282009-11-23 01:53:49 +0000521void Sema::translateTemplateArguments(const ASTTemplateArgsPtr &TemplateArgsIn,
522 TemplateArgumentListInfo &TemplateArgs) {
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000523 for (unsigned I = 0, Last = TemplateArgsIn.size(); I != Last; ++I)
John McCall6b51f282009-11-23 01:53:49 +0000524 TemplateArgs.addArgument(translateTemplateArgument(*this,
525 TemplateArgsIn[I]));
Douglas Gregor9167f8b2009-11-11 01:00:40 +0000526}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000527
Richard Smithb80d5402013-06-25 22:21:36 +0000528static void maybeDiagnoseTemplateParameterShadow(Sema &SemaRef, Scope *S,
529 SourceLocation Loc,
530 IdentifierInfo *Name) {
531 NamedDecl *PrevDecl = SemaRef.LookupSingleName(
532 S, Name, Loc, Sema::LookupOrdinaryName, Sema::ForRedeclaration);
533 if (PrevDecl && PrevDecl->isTemplateParameter())
534 SemaRef.DiagnoseTemplateParameterShadow(Loc, PrevDecl);
535}
536
Douglas Gregor5101c242008-12-05 18:15:24 +0000537/// ActOnTypeParameter - Called when a C++ template type parameter
538/// (e.g., "typename T") has been parsed. Typename specifies whether
539/// the keyword "typename" was used to declare the type parameter
540/// (otherwise, "class" was used), and KeyLoc is the location of the
541/// "class" or "typename" keyword. ParamName is the name of the
542/// parameter (NULL indicates an unnamed template parameter) and
Chandler Carruth08836322011-05-01 00:51:33 +0000543/// ParamNameLoc is the location of the parameter name (if any).
Douglas Gregor5101c242008-12-05 18:15:24 +0000544/// If the type parameter has a default argument, it will be added
545/// later via ActOnTypeParameterDefault.
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000546Decl *Sema::ActOnTypeParameter(Scope *S, bool Typename,
John McCall48871652010-08-21 09:40:31 +0000547 SourceLocation EllipsisLoc,
548 SourceLocation KeyLoc,
549 IdentifierInfo *ParamName,
550 SourceLocation ParamNameLoc,
551 unsigned Depth, unsigned Position,
552 SourceLocation EqualLoc,
John McCallba7bf592010-08-24 05:47:05 +0000553 ParsedType DefaultArg) {
Mike Stump11289f42009-09-09 15:08:12 +0000554 assert(S->isTemplateParamScope() &&
555 "Template type parameter not in template parameter scope!");
Douglas Gregor5101c242008-12-05 18:15:24 +0000556 bool Invalid = false;
557
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000558 SourceLocation Loc = ParamNameLoc;
559 if (!ParamName)
560 Loc = KeyLoc;
561
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000562 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregor5101c242008-12-05 18:15:24 +0000563 TemplateTypeParmDecl *Param
John McCallf7b2fb52010-01-22 00:28:27 +0000564 = TemplateTypeParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Abramo Bagnarab3185b02011-03-06 15:48:19 +0000565 KeyLoc, Loc, Depth, Position, ParamName,
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000566 Typename, IsParameterPack);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000567 Param->setAccess(AS_public);
Douglas Gregor5101c242008-12-05 18:15:24 +0000568 if (Invalid)
569 Param->setInvalidDecl();
570
571 if (ParamName) {
Richard Smithb80d5402013-06-25 22:21:36 +0000572 maybeDiagnoseTemplateParameterShadow(*this, S, ParamNameLoc, ParamName);
573
Douglas Gregor5101c242008-12-05 18:15:24 +0000574 // Add the template parameter into the current scope.
John McCall48871652010-08-21 09:40:31 +0000575 S->AddDecl(Param);
Douglas Gregor5101c242008-12-05 18:15:24 +0000576 IdResolver.AddDecl(Param);
577 }
578
Douglas Gregorf5500772011-01-05 15:48:55 +0000579 // C++0x [temp.param]p9:
580 // A default template-argument may be specified for any kind of
581 // template-parameter that is not a template parameter pack.
Nikola Smiljanic69fdc9f2014-06-06 02:58:59 +0000582 if (DefaultArg && IsParameterPack) {
Douglas Gregorf5500772011-01-05 15:48:55 +0000583 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
584 DefaultArg = ParsedType();
585 }
586
Douglas Gregordc13ded2010-07-01 00:00:45 +0000587 // Handle the default argument, if provided.
588 if (DefaultArg) {
589 TypeSourceInfo *DefaultTInfo;
590 GetTypeFromParser(DefaultArg, &DefaultTInfo);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000591
Douglas Gregordc13ded2010-07-01 00:00:45 +0000592 assert(DefaultTInfo && "expected source information for type");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000593
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000594 // Check for unexpanded parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000595 if (DiagnoseUnexpandedParameterPack(Loc, DefaultTInfo,
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000596 UPPC_DefaultArgument))
597 return Param;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000598
Douglas Gregordc13ded2010-07-01 00:00:45 +0000599 // Check the template argument itself.
600 if (CheckTemplateArgument(Param, DefaultTInfo)) {
601 Param->setInvalidDecl();
John McCall48871652010-08-21 09:40:31 +0000602 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000603 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000604
Douglas Gregordc13ded2010-07-01 00:00:45 +0000605 Param->setDefaultArgument(DefaultTInfo, false);
606 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000607
John McCall48871652010-08-21 09:40:31 +0000608 return Param;
Douglas Gregor5101c242008-12-05 18:15:24 +0000609}
610
Douglas Gregor463421d2009-03-03 04:44:36 +0000611/// \brief Check that the type of a non-type template parameter is
612/// well-formed.
613///
614/// \returns the (possibly-promoted) parameter type if valid;
615/// otherwise, produces a diagnostic and returns a NULL type.
Mike Stump11289f42009-09-09 15:08:12 +0000616QualType
Douglas Gregor463421d2009-03-03 04:44:36 +0000617Sema::CheckNonTypeTemplateParameterType(QualType T, SourceLocation Loc) {
Douglas Gregora09387d2010-05-23 19:57:01 +0000618 // We don't allow variably-modified types as the type of non-type template
619 // parameters.
620 if (T->isVariablyModifiedType()) {
621 Diag(Loc, diag::err_variably_modified_nontype_template_param)
622 << T;
623 return QualType();
624 }
625
Douglas Gregor463421d2009-03-03 04:44:36 +0000626 // C++ [temp.param]p4:
627 //
628 // A non-type template-parameter shall have one of the following
629 // (optionally cv-qualified) types:
630 //
631 // -- integral or enumeration type,
Douglas Gregorb90df602010-06-16 00:17:44 +0000632 if (T->isIntegralOrEnumerationType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000633 // -- pointer to object or pointer to function,
Eli Friedmana170cd62010-08-05 02:49:48 +0000634 T->isPointerType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000635 // -- reference to object or reference to function,
Douglas Gregor463421d2009-03-03 04:44:36 +0000636 T->isReferenceType() ||
Douglas Gregor80af3132011-05-21 23:15:46 +0000637 // -- pointer to member,
Douglas Gregor463421d2009-03-03 04:44:36 +0000638 T->isMemberPointerType() ||
Douglas Gregor80af3132011-05-21 23:15:46 +0000639 // -- std::nullptr_t.
640 T->isNullPtrType() ||
Douglas Gregor463421d2009-03-03 04:44:36 +0000641 // If T is a dependent type, we can't do the check now, so we
642 // assume that it is well-formed.
Richard Smithd0e1c952012-03-13 07:21:50 +0000643 T->isDependentType()) {
644 // C++ [temp.param]p5: The top-level cv-qualifiers on the template-parameter
645 // are ignored when determining its type.
646 return T.getUnqualifiedType();
647 }
648
Douglas Gregor463421d2009-03-03 04:44:36 +0000649 // C++ [temp.param]p8:
650 //
651 // A non-type template-parameter of type "array of T" or
652 // "function returning T" is adjusted to be of type "pointer to
653 // T" or "pointer to function returning T", respectively.
654 else if (T->isArrayType())
655 // FIXME: Keep the type prior to promotion?
656 return Context.getArrayDecayedType(T);
657 else if (T->isFunctionType())
658 // FIXME: Keep the type prior to promotion?
659 return Context.getPointerType(T);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000660
Douglas Gregor463421d2009-03-03 04:44:36 +0000661 Diag(Loc, diag::err_template_nontype_parm_bad_type)
662 << T;
663
664 return QualType();
665}
666
John McCall48871652010-08-21 09:40:31 +0000667Decl *Sema::ActOnNonTypeTemplateParameter(Scope *S, Declarator &D,
668 unsigned Depth,
669 unsigned Position,
670 SourceLocation EqualLoc,
John McCallb268a282010-08-23 23:25:46 +0000671 Expr *Default) {
John McCall8cb7bdf2010-06-04 23:28:52 +0000672 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
673 QualType T = TInfo->getType();
Douglas Gregor5101c242008-12-05 18:15:24 +0000674
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000675 assert(S->isTemplateParamScope() &&
676 "Non-type template parameter not in template parameter scope!");
Douglas Gregor5101c242008-12-05 18:15:24 +0000677 bool Invalid = false;
678
Douglas Gregor38ee75e2010-12-16 15:36:43 +0000679 T = CheckNonTypeTemplateParameterType(T, D.getIdentifierLoc());
680 if (T.isNull()) {
Douglas Gregor463421d2009-03-03 04:44:36 +0000681 T = Context.IntTy; // Recover with an 'int' type.
Douglas Gregorce0fc86f2009-03-09 16:46:39 +0000682 Invalid = true;
683 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000684
Richard Smithb80d5402013-06-25 22:21:36 +0000685 IdentifierInfo *ParamName = D.getIdentifier();
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000686 bool IsParameterPack = D.hasEllipsis();
Douglas Gregor5101c242008-12-05 18:15:24 +0000687 NonTypeTemplateParmDecl *Param
John McCallf7b2fb52010-01-22 00:28:27 +0000688 = NonTypeTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
Daniel Dunbar62ee6412012-03-09 18:35:03 +0000689 D.getLocStart(),
John McCallf7b2fb52010-01-22 00:28:27 +0000690 D.getIdentifierLoc(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000691 Depth, Position, ParamName, T,
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000692 IsParameterPack, TInfo);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000693 Param->setAccess(AS_public);
Richard Smithb80d5402013-06-25 22:21:36 +0000694
Douglas Gregor5101c242008-12-05 18:15:24 +0000695 if (Invalid)
696 Param->setInvalidDecl();
697
Richard Smithb80d5402013-06-25 22:21:36 +0000698 if (ParamName) {
699 maybeDiagnoseTemplateParameterShadow(*this, S, D.getIdentifierLoc(),
700 ParamName);
701
Douglas Gregor5101c242008-12-05 18:15:24 +0000702 // Add the template parameter into the current scope.
John McCall48871652010-08-21 09:40:31 +0000703 S->AddDecl(Param);
Douglas Gregor5101c242008-12-05 18:15:24 +0000704 IdResolver.AddDecl(Param);
705 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000706
Douglas Gregorf5500772011-01-05 15:48:55 +0000707 // C++0x [temp.param]p9:
708 // A default template-argument may be specified for any kind of
709 // template-parameter that is not a template parameter pack.
710 if (Default && IsParameterPack) {
711 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
Craig Topperc3ec1492014-05-26 06:22:03 +0000712 Default = nullptr;
Douglas Gregorf5500772011-01-05 15:48:55 +0000713 }
714
Douglas Gregordc13ded2010-07-01 00:00:45 +0000715 // Check the well-formedness of the default template argument, if provided.
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000716 if (Default) {
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000717 // Check for unexpanded parameter packs.
718 if (DiagnoseUnexpandedParameterPack(Default, UPPC_DefaultArgument))
719 return Param;
720
Douglas Gregordc13ded2010-07-01 00:00:45 +0000721 TemplateArgument Converted;
John Wiegley01296292011-04-08 18:41:53 +0000722 ExprResult DefaultRes = CheckTemplateArgument(Param, Param->getType(), Default, Converted);
723 if (DefaultRes.isInvalid()) {
Douglas Gregordc13ded2010-07-01 00:00:45 +0000724 Param->setInvalidDecl();
John McCall48871652010-08-21 09:40:31 +0000725 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000726 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000727 Default = DefaultRes.get();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000728
John McCallb268a282010-08-23 23:25:46 +0000729 Param->setDefaultArgument(Default, false);
Douglas Gregordc13ded2010-07-01 00:00:45 +0000730 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000731
John McCall48871652010-08-21 09:40:31 +0000732 return Param;
Douglas Gregor5101c242008-12-05 18:15:24 +0000733}
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000734
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000735/// ActOnTemplateTemplateParameter - Called when a C++ template template
James Dennett2a4d13c2012-06-15 07:13:21 +0000736/// parameter (e.g. T in template <template \<typename> class T> class array)
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000737/// has been parsed. S is the current scope.
John McCall48871652010-08-21 09:40:31 +0000738Decl *Sema::ActOnTemplateTemplateParameter(Scope* S,
739 SourceLocation TmpLoc,
Richard Trieu9becef62011-09-09 03:18:59 +0000740 TemplateParameterList *Params,
Douglas Gregorf5500772011-01-05 15:48:55 +0000741 SourceLocation EllipsisLoc,
John McCall48871652010-08-21 09:40:31 +0000742 IdentifierInfo *Name,
743 SourceLocation NameLoc,
744 unsigned Depth,
745 unsigned Position,
746 SourceLocation EqualLoc,
Douglas Gregorf5500772011-01-05 15:48:55 +0000747 ParsedTemplateArgument Default) {
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000748 assert(S->isTemplateParamScope() &&
749 "Template template parameter not in template parameter scope!");
750
751 // Construct the parameter object.
Douglas Gregorf5500772011-01-05 15:48:55 +0000752 bool IsParameterPack = EllipsisLoc.isValid();
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000753 TemplateTemplateParmDecl *Param =
John McCallf7b2fb52010-01-22 00:28:27 +0000754 TemplateTemplateParmDecl::Create(Context, Context.getTranslationUnitDecl(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000755 NameLoc.isInvalid()? TmpLoc : NameLoc,
756 Depth, Position, IsParameterPack,
Douglas Gregorf5500772011-01-05 15:48:55 +0000757 Name, Params);
Douglas Gregorfd7c2252011-03-04 17:52:15 +0000758 Param->setAccess(AS_public);
759
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000760 // If the template template parameter has a name, then link the identifier
Douglas Gregordc13ded2010-07-01 00:00:45 +0000761 // into the scope and lookup mechanisms.
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000762 if (Name) {
Richard Smithb80d5402013-06-25 22:21:36 +0000763 maybeDiagnoseTemplateParameterShadow(*this, S, NameLoc, Name);
764
John McCall48871652010-08-21 09:40:31 +0000765 S->AddDecl(Param);
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000766 IdResolver.AddDecl(Param);
767 }
768
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000769 if (Params->size() == 0) {
770 Diag(Param->getLocation(), diag::err_template_template_parm_no_parms)
771 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc());
772 Param->setInvalidDecl();
773 }
774
Douglas Gregorf5500772011-01-05 15:48:55 +0000775 // C++0x [temp.param]p9:
776 // A default template-argument may be specified for any kind of
777 // template-parameter that is not a template parameter pack.
778 if (IsParameterPack && !Default.isInvalid()) {
779 Diag(EqualLoc, diag::err_template_param_pack_default_arg);
780 Default = ParsedTemplateArgument();
781 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000782
Douglas Gregordc13ded2010-07-01 00:00:45 +0000783 if (!Default.isInvalid()) {
784 // Check only that we have a template template argument. We don't want to
785 // try to check well-formedness now, because our template template parameter
786 // might have dependent types in its template parameters, which we wouldn't
787 // be able to match now.
788 //
789 // If none of the template template parameter's template arguments mention
790 // other template parameters, we could actually perform more checking here.
791 // However, it isn't worth doing.
792 TemplateArgumentLoc DefaultArg = translateTemplateArgument(*this, Default);
793 if (DefaultArg.getArgument().getAsTemplate().isNull()) {
794 Diag(DefaultArg.getLocation(), diag::err_template_arg_not_class_template)
795 << DefaultArg.getSourceRange();
John McCall48871652010-08-21 09:40:31 +0000796 return Param;
Douglas Gregordc13ded2010-07-01 00:00:45 +0000797 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000798
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000799 // Check for unexpanded parameter packs.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000800 if (DiagnoseUnexpandedParameterPack(DefaultArg.getLocation(),
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000801 DefaultArg.getArgument().getAsTemplate(),
802 UPPC_DefaultArgument))
803 return Param;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000804
Douglas Gregordc13ded2010-07-01 00:00:45 +0000805 Param->setDefaultArgument(DefaultArg, false);
Douglas Gregordba32632009-02-10 19:49:53 +0000806 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000807
John McCall48871652010-08-21 09:40:31 +0000808 return Param;
Douglas Gregordba32632009-02-10 19:49:53 +0000809}
810
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000811/// ActOnTemplateParameterList - Builds a TemplateParameterList that
812/// contains the template parameters in Params/NumParams.
Richard Trieu9becef62011-09-09 03:18:59 +0000813TemplateParameterList *
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000814Sema::ActOnTemplateParameterList(unsigned Depth,
815 SourceLocation ExportLoc,
Mike Stump11289f42009-09-09 15:08:12 +0000816 SourceLocation TemplateLoc,
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000817 SourceLocation LAngleLoc,
John McCall48871652010-08-21 09:40:31 +0000818 Decl **Params, unsigned NumParams,
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000819 SourceLocation RAngleLoc) {
820 if (ExportLoc.isValid())
Douglas Gregor5c80a27b2009-11-25 18:55:14 +0000821 Diag(ExportLoc, diag::warn_template_export_unsupported);
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000822
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000823 return TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000824 (NamedDecl**)Params, NumParams,
Douglas Gregorbe999392009-09-15 16:23:51 +0000825 RAngleLoc);
Douglas Gregorb9bd8a92008-12-24 02:52:09 +0000826}
Douglas Gregorded2d7b2009-02-04 19:02:06 +0000827
John McCall3e11ebe2010-03-15 10:12:16 +0000828static void SetNestedNameSpecifier(TagDecl *T, const CXXScopeSpec &SS) {
829 if (SS.isSet())
Douglas Gregor14454802011-02-25 02:25:35 +0000830 T->setQualifierInfo(SS.getWithLocInContext(T->getASTContext()));
John McCall3e11ebe2010-03-15 10:12:16 +0000831}
832
John McCallfaf5fb42010-08-26 23:41:50 +0000833DeclResult
John McCall9bb74a52009-07-31 02:45:11 +0000834Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000835 SourceLocation KWLoc, CXXScopeSpec &SS,
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000836 IdentifierInfo *Name, SourceLocation NameLoc,
837 AttributeList *Attr,
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000838 TemplateParameterList *TemplateParams,
Douglas Gregor2820e692011-09-09 19:05:14 +0000839 AccessSpecifier AS, SourceLocation ModulePrivateLoc,
Nikola Smiljanic4fc91532014-07-17 01:59:34 +0000840 SourceLocation FriendLoc,
Abramo Bagnara0adf29a2011-03-10 13:28:31 +0000841 unsigned NumOuterTemplateParamLists,
842 TemplateParameterList** OuterTemplateParamLists) {
Mike Stump11289f42009-09-09 15:08:12 +0000843 assert(TemplateParams && TemplateParams->size() > 0 &&
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000844 "No template parameters");
John McCall9bb74a52009-07-31 02:45:11 +0000845 assert(TUK != TUK_Reference && "Can only declare or define class templates");
Douglas Gregordba32632009-02-10 19:49:53 +0000846 bool Invalid = false;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000847
848 // Check that we can declare a template here.
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000849 if (CheckTemplateDeclScope(S, TemplateParams))
Douglas Gregorc08f4892009-03-25 00:13:59 +0000850 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000851
Abramo Bagnara6150c882010-05-11 21:36:43 +0000852 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
853 assert(Kind != TTK_Enum && "can't build template of enumerated type");
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000854
855 // There is no such thing as an unnamed class template.
856 if (!Name) {
857 Diag(KWLoc, diag::err_template_unnamed_class);
Douglas Gregorc08f4892009-03-25 00:13:59 +0000858 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000859 }
860
Richard Smith6483d222012-04-21 01:27:54 +0000861 // Find any previous declaration with this name. For a friend with no
862 // scope explicitly specified, we only look for tag declarations (per
863 // C++11 [basic.lookup.elab]p2).
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000864 DeclContext *SemanticContext;
Richard Smith6483d222012-04-21 01:27:54 +0000865 LookupResult Previous(*this, Name, NameLoc,
866 (SS.isEmpty() && TUK == TUK_Friend)
867 ? LookupTagName : LookupOrdinaryName,
John McCall5cebab12009-11-18 07:57:50 +0000868 ForRedeclaration);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000869 if (SS.isNotEmpty() && !SS.isInvalid()) {
870 SemanticContext = computeDeclContext(SS, true);
871 if (!SemanticContext) {
Douglas Gregor67daacb2012-03-30 16:20:47 +0000872 // FIXME: Horrible, horrible hack! We can't currently represent this
873 // in the AST, and historically we have just ignored such friend
874 // class templates, so don't complain here.
Richard Smithcd556eb2013-11-08 18:59:56 +0000875 Diag(NameLoc, TUK == TUK_Friend
876 ? diag::warn_template_qualified_friend_ignored
877 : diag::err_template_qualified_declarator_no_match)
Douglas Gregor67daacb2012-03-30 16:20:47 +0000878 << SS.getScopeRep() << SS.getRange();
Richard Smithcd556eb2013-11-08 18:59:56 +0000879 return TUK != TUK_Friend;
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000880 }
Mike Stump11289f42009-09-09 15:08:12 +0000881
John McCall0b66eb32010-05-01 00:40:08 +0000882 if (RequireCompleteDeclContext(SS, SemanticContext))
883 return true;
884
Douglas Gregor041b0842011-10-14 15:31:12 +0000885 // If we're adding a template to a dependent context, we may need to
886 // rebuilding some of the types used within the template parameter list,
887 // now that we know what the current instantiation is.
888 if (SemanticContext->isDependentContext()) {
889 ContextRAII SavedContext(*this, SemanticContext);
890 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
891 Invalid = true;
Douglas Gregorb7d17dd2012-03-28 16:01:27 +0000892 } else if (TUK != TUK_Friend && TUK != TUK_Reference)
893 diagnoseQualifiedDeclaration(SS, SemanticContext, Name, NameLoc);
Richard Smith6483d222012-04-21 01:27:54 +0000894
John McCall27b18f82009-11-17 02:14:36 +0000895 LookupQualifiedName(Previous, SemanticContext);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000896 } else {
897 SemanticContext = CurContext;
John McCall27b18f82009-11-17 02:14:36 +0000898 LookupName(Previous, S);
Douglas Gregor1d5e9f92009-08-25 17:23:04 +0000899 }
Mike Stump11289f42009-09-09 15:08:12 +0000900
Douglas Gregorce40e2e2010-04-12 16:00:01 +0000901 if (Previous.isAmbiguous())
902 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000903
Craig Topperc3ec1492014-05-26 06:22:03 +0000904 NamedDecl *PrevDecl = nullptr;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000905 if (Previous.begin() != Previous.end())
Douglas Gregorce40e2e2010-04-12 16:00:01 +0000906 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000907
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000908 // If there is a previous declaration with the same name, check
909 // whether this is a valid redeclaration.
Mike Stump11289f42009-09-09 15:08:12 +0000910 ClassTemplateDecl *PrevClassTemplate
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000911 = dyn_cast_or_null<ClassTemplateDecl>(PrevDecl);
Douglas Gregor7f34bae2009-10-09 21:11:42 +0000912
913 // We may have found the injected-class-name of a class template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000914 // class template partial specialization, or class template specialization.
Douglas Gregor7f34bae2009-10-09 21:11:42 +0000915 // In these cases, grab the template that is being defined or specialized.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000916 if (!PrevClassTemplate && PrevDecl && isa<CXXRecordDecl>(PrevDecl) &&
Douglas Gregor7f34bae2009-10-09 21:11:42 +0000917 cast<CXXRecordDecl>(PrevDecl)->isInjectedClassName()) {
918 PrevDecl = cast<CXXRecordDecl>(PrevDecl->getDeclContext());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000919 PrevClassTemplate
Douglas Gregor7f34bae2009-10-09 21:11:42 +0000920 = cast<CXXRecordDecl>(PrevDecl)->getDescribedClassTemplate();
921 if (!PrevClassTemplate && isa<ClassTemplateSpecializationDecl>(PrevDecl)) {
922 PrevClassTemplate
923 = cast<ClassTemplateSpecializationDecl>(PrevDecl)
924 ->getSpecializedTemplate();
925 }
926 }
927
John McCalld43784f2009-12-18 11:25:59 +0000928 if (TUK == TUK_Friend) {
John McCall90d3bb92009-12-17 23:21:11 +0000929 // C++ [namespace.memdef]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000930 // [...] When looking for a prior declaration of a class or a function
931 // declared as a friend, and when the name of the friend class or
John McCall90d3bb92009-12-17 23:21:11 +0000932 // function is neither a qualified name nor a template-id, scopes outside
933 // the innermost enclosing namespace scope are not considered.
Douglas Gregorb74b1032010-04-18 17:37:40 +0000934 if (!SS.isSet()) {
935 DeclContext *OutermostContext = CurContext;
936 while (!OutermostContext->isFileContext())
937 OutermostContext = OutermostContext->getLookupParent();
John McCalld43784f2009-12-18 11:25:59 +0000938
Richard Smith61e582f2012-04-20 07:12:26 +0000939 if (PrevDecl &&
Douglas Gregorb74b1032010-04-18 17:37:40 +0000940 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
941 OutermostContext->Encloses(PrevDecl->getDeclContext()))) {
942 SemanticContext = PrevDecl->getDeclContext();
943 } else {
944 // Declarations in outer scopes don't matter. However, the outermost
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000945 // context we computed is the semantic context for our new
Douglas Gregorb74b1032010-04-18 17:37:40 +0000946 // declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +0000947 PrevDecl = PrevClassTemplate = nullptr;
Douglas Gregorb74b1032010-04-18 17:37:40 +0000948 SemanticContext = OutermostContext;
Richard Smith6483d222012-04-21 01:27:54 +0000949
950 // Check that the chosen semantic context doesn't already contain a
951 // declaration of this name as a non-tag type.
952 LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName,
953 ForRedeclaration);
954 DeclContext *LookupContext = SemanticContext;
955 while (LookupContext->isTransparentContext())
956 LookupContext = LookupContext->getLookupParent();
957 LookupQualifiedName(Previous, LookupContext);
958
959 if (Previous.isAmbiguous())
960 return true;
961
962 if (Previous.begin() != Previous.end())
963 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
Douglas Gregorb74b1032010-04-18 17:37:40 +0000964 }
John McCall90d3bb92009-12-17 23:21:11 +0000965 }
Richard Smith72bcaec2013-12-05 04:30:04 +0000966 } else if (PrevDecl &&
967 !isDeclInScope(PrevDecl, SemanticContext, S, SS.isValid()))
Craig Topperc3ec1492014-05-26 06:22:03 +0000968 PrevDecl = PrevClassTemplate = nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000969
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000970 if (PrevClassTemplate) {
Richard Smithe85e1762012-04-22 02:13:50 +0000971 // Ensure that the template parameter lists are compatible. Skip this check
972 // for a friend in a dependent context: the template parameter list itself
973 // could be dependent.
974 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
975 !TemplateParameterListsAreEqual(TemplateParams,
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000976 PrevClassTemplate->getTemplateParameters(),
Douglas Gregor19ac2d62009-11-12 16:20:59 +0000977 /*Complain=*/true,
978 TPL_TemplateMatch))
Douglas Gregorc08f4892009-03-25 00:13:59 +0000979 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000980
981 // C++ [temp.class]p4:
982 // In a redeclaration, partial specialization, explicit
983 // specialization or explicit instantiation of a class template,
984 // the class-key shall agree in kind with the original class
985 // template declaration (7.1.5.3).
986 RecordDecl *PrevRecordDecl = PrevClassTemplate->getTemplatedDecl();
Richard Trieucaa33d32011-06-10 03:11:26 +0000987 if (!isAcceptableTagRedeclaration(PrevRecordDecl, Kind,
988 TUK == TUK_Definition, KWLoc, *Name)) {
Mike Stump11289f42009-09-09 15:08:12 +0000989 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor170512f2009-04-01 23:51:29 +0000990 << Name
Douglas Gregora771f462010-03-31 17:46:05 +0000991 << FixItHint::CreateReplacement(KWLoc, PrevRecordDecl->getKindName());
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000992 Diag(PrevRecordDecl->getLocation(), diag::note_previous_use);
Douglas Gregor170512f2009-04-01 23:51:29 +0000993 Kind = PrevRecordDecl->getTagKind();
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000994 }
995
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000996 // Check for redefinition of this class template.
John McCall9bb74a52009-07-31 02:45:11 +0000997 if (TUK == TUK_Definition) {
Douglas Gregor0a5a2212010-02-11 01:04:33 +0000998 if (TagDecl *Def = PrevRecordDecl->getDefinition()) {
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000999 Diag(NameLoc, diag::err_redefinition) << Name;
1000 Diag(Def->getLocation(), diag::note_previous_definition);
1001 // FIXME: Would it make sense to try to "forget" the previous
1002 // definition, as part of error recovery?
Douglas Gregorc08f4892009-03-25 00:13:59 +00001003 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001004 }
Douglas Gregoref15bdb2011-09-09 18:32:39 +00001005 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001006 } else if (PrevDecl && PrevDecl->isTemplateParameter()) {
1007 // Maybe we will complain about the shadowed template parameter.
1008 DiagnoseTemplateParameterShadow(NameLoc, PrevDecl);
1009 // Just pretend that we didn't see the previous declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +00001010 PrevDecl = nullptr;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001011 } else if (PrevDecl) {
1012 // C++ [temp]p5:
1013 // A class template shall not have the same name as any other
1014 // template, class, function, object, enumeration, enumerator,
1015 // namespace, or type in the same scope (3.3), except as specified
1016 // in (14.5.4).
1017 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
1018 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Douglas Gregorc08f4892009-03-25 00:13:59 +00001019 return true;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001020 }
1021
Douglas Gregordba32632009-02-10 19:49:53 +00001022 // Check the template parameter list of this declaration, possibly
1023 // merging in the template parameter list from the previous class
Richard Smithe85e1762012-04-22 02:13:50 +00001024 // template declaration. Skip this check for a friend in a dependent
1025 // context, because the template parameter list might be dependent.
1026 if (!(TUK == TUK_Friend && CurContext->isDependentContext()) &&
David Majnemerba8f17a2013-06-25 22:08:55 +00001027 CheckTemplateParameterList(
1028 TemplateParams,
Craig Topperc3ec1492014-05-26 06:22:03 +00001029 PrevClassTemplate ? PrevClassTemplate->getTemplateParameters()
1030 : nullptr,
David Majnemerba8f17a2013-06-25 22:08:55 +00001031 (SS.isSet() && SemanticContext && SemanticContext->isRecord() &&
1032 SemanticContext->isDependentContext())
1033 ? TPC_ClassTemplateMember
1034 : TUK == TUK_Friend ? TPC_FriendClassTemplate
1035 : TPC_ClassTemplate))
Douglas Gregordba32632009-02-10 19:49:53 +00001036 Invalid = true;
Mike Stump11289f42009-09-09 15:08:12 +00001037
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001038 if (SS.isSet()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001039 // If the name of the template was qualified, we must be defining the
Douglas Gregorce40e2e2010-04-12 16:00:01 +00001040 // template out-of-line.
Richard Smithe85e1762012-04-22 02:13:50 +00001041 if (!SS.isInvalid() && !Invalid && !PrevClassTemplate) {
1042 Diag(NameLoc, TUK == TUK_Friend ? diag::err_friend_decl_does_not_match
Richard Smith114394f2013-08-09 04:35:01 +00001043 : diag::err_member_decl_does_not_match)
1044 << Name << SemanticContext << /*IsDefinition*/true << SS.getRange();
Douglas Gregorfe0055e2011-11-01 21:35:16 +00001045 Invalid = true;
1046 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001047 }
1048
Mike Stump11289f42009-09-09 15:08:12 +00001049 CXXRecordDecl *NewClass =
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001050 CXXRecordDecl::Create(Context, Kind, SemanticContext, KWLoc, NameLoc, Name,
Mike Stump11289f42009-09-09 15:08:12 +00001051 PrevClassTemplate?
Craig Topperc3ec1492014-05-26 06:22:03 +00001052 PrevClassTemplate->getTemplatedDecl() : nullptr,
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001053 /*DelayTypeCreation=*/true);
John McCall3e11ebe2010-03-15 10:12:16 +00001054 SetNestedNameSpecifier(NewClass, SS);
Abramo Bagnara0adf29a2011-03-10 13:28:31 +00001055 if (NumOuterTemplateParamLists > 0)
1056 NewClass->setTemplateParameterListsInfo(Context,
1057 NumOuterTemplateParamLists,
1058 OuterTemplateParamLists);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001059
Eli Friedmanedb6f5d2012-02-10 02:02:21 +00001060 // Add alignment attributes if necessary; these attributes are checked when
1061 // the ASTContext lays out the structure.
Eli Friedman0415f3e12012-08-08 21:08:34 +00001062 if (TUK == TUK_Definition) {
1063 AddAlignmentAttributesForRecord(NewClass);
1064 AddMsStructLayoutForRecord(NewClass);
1065 }
Eli Friedmanedb6f5d2012-02-10 02:02:21 +00001066
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001067 ClassTemplateDecl *NewTemplate
1068 = ClassTemplateDecl::Create(Context, SemanticContext, NameLoc,
1069 DeclarationName(Name), TemplateParams,
Douglas Gregor90a1a652009-03-19 17:26:29 +00001070 NewClass, PrevClassTemplate);
Douglas Gregor97f1f1c2009-03-26 00:10:35 +00001071 NewClass->setDescribedClassTemplate(NewTemplate);
Douglas Gregoref15bdb2011-09-09 18:32:39 +00001072
Douglas Gregor21823bf2011-12-20 18:11:52 +00001073 if (ModulePrivateLoc.isValid())
Douglas Gregoref15bdb2011-09-09 18:32:39 +00001074 NewTemplate->setModulePrivate();
Douglas Gregor26701a42011-09-09 02:06:17 +00001075
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001076 // Build the type for the class template declaration now.
Douglas Gregor9961ce92010-07-08 18:37:38 +00001077 QualType T = NewTemplate->getInjectedClassNameSpecialization();
John McCalle78aac42010-03-10 03:28:59 +00001078 T = Context.getInjectedClassNameType(NewClass, T);
Douglas Gregor1ec5e9f2009-05-15 19:11:46 +00001079 assert(T->isDependentType() && "Class template type is not dependent?");
1080 (void)T;
1081
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001082 // If we are providing an explicit specialization of a member that is a
Douglas Gregorcf915552009-10-13 16:30:37 +00001083 // class template, make a note of that.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001084 if (PrevClassTemplate &&
Douglas Gregorcf915552009-10-13 16:30:37 +00001085 PrevClassTemplate->getInstantiatedFromMemberTemplate())
1086 PrevClassTemplate->setMemberSpecialization();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001087
Anders Carlsson137108d2009-03-26 01:24:28 +00001088 // Set the access specifier.
Douglas Gregor31feb332012-03-17 23:06:31 +00001089 if (!Invalid && TUK != TUK_Friend && NewTemplate->getDeclContext()->isRecord())
John McCall27b5c252009-09-14 21:59:20 +00001090 SetMemberAccessSpecifier(NewTemplate, PrevClassTemplate, AS);
Mike Stump11289f42009-09-09 15:08:12 +00001091
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001092 // Set the lexical context of these templates
1093 NewClass->setLexicalDeclContext(CurContext);
1094 NewTemplate->setLexicalDeclContext(CurContext);
1095
John McCall9bb74a52009-07-31 02:45:11 +00001096 if (TUK == TUK_Definition)
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001097 NewClass->startDefinition();
1098
1099 if (Attr)
Douglas Gregor758a8692009-06-17 21:51:59 +00001100 ProcessDeclAttributeList(S, NewClass, Attr);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001101
Rafael Espindola0c6c4052012-08-22 14:52:14 +00001102 if (PrevClassTemplate)
1103 mergeDeclAttributes(NewClass, PrevClassTemplate->getTemplatedDecl());
1104
Rafael Espindola385c0422012-07-13 18:04:45 +00001105 AddPushedVisibilityAttribute(NewClass);
1106
Richard Smith234ff472014-08-23 00:49:01 +00001107 if (TUK != TUK_Friend) {
1108 // Per C++ [basic.scope.temp]p2, skip the template parameter scopes.
1109 Scope *Outer = S;
1110 while ((Outer->getFlags() & Scope::TemplateParamScope) != 0)
1111 Outer = Outer->getParent();
1112 PushOnScopeChains(NewTemplate, Outer);
1113 } else {
Douglas Gregor3dad8422009-09-26 06:47:28 +00001114 if (PrevClassTemplate && PrevClassTemplate->getAccess() != AS_none) {
John McCall27b5c252009-09-14 21:59:20 +00001115 NewTemplate->setAccess(PrevClassTemplate->getAccess());
Douglas Gregor3dad8422009-09-26 06:47:28 +00001116 NewClass->setAccess(PrevClassTemplate->getAccess());
1117 }
John McCall27b5c252009-09-14 21:59:20 +00001118
Richard Smith64017682013-07-17 23:53:16 +00001119 NewTemplate->setObjectOfFriendDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001120
John McCall27b5c252009-09-14 21:59:20 +00001121 // Friend templates are visible in fairly strange ways.
1122 if (!CurContext->isDependentContext()) {
Sebastian Redl50c68252010-08-31 00:36:30 +00001123 DeclContext *DC = SemanticContext->getRedeclContext();
Richard Smith05afe5e2012-03-13 03:12:56 +00001124 DC->makeDeclVisibleInContext(NewTemplate);
John McCall27b5c252009-09-14 21:59:20 +00001125 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
1126 PushOnScopeChains(NewTemplate, EnclosingScope,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001127 /* AddToContext = */ false);
John McCall27b5c252009-09-14 21:59:20 +00001128 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001129
Nikola Smiljanic4fc91532014-07-17 01:59:34 +00001130 FriendDecl *Friend = FriendDecl::Create(
1131 Context, CurContext, NewClass->getLocation(), NewTemplate, FriendLoc);
Douglas Gregor3dad8422009-09-26 06:47:28 +00001132 Friend->setAccess(AS_public);
1133 CurContext->addDecl(Friend);
John McCall27b5c252009-09-14 21:59:20 +00001134 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001135
Douglas Gregordba32632009-02-10 19:49:53 +00001136 if (Invalid) {
1137 NewTemplate->setInvalidDecl();
1138 NewClass->setInvalidDecl();
1139 }
Rafael Espindolaeca5cd22012-07-13 01:19:08 +00001140
Dmitri Gribenko34df2202012-07-31 22:37:06 +00001141 ActOnDocumentableDecl(NewTemplate);
1142
John McCall48871652010-08-21 09:40:31 +00001143 return NewTemplate;
Douglas Gregorcd72ba92009-02-06 22:42:48 +00001144}
1145
Douglas Gregored5731f2009-11-25 17:50:39 +00001146/// \brief Diagnose the presence of a default template argument on a
1147/// template parameter, which is ill-formed in certain contexts.
1148///
1149/// \returns true if the default template argument should be dropped.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001150static bool DiagnoseDefaultTemplateArgument(Sema &S,
Douglas Gregored5731f2009-11-25 17:50:39 +00001151 Sema::TemplateParamListContext TPC,
1152 SourceLocation ParamLoc,
1153 SourceRange DefArgRange) {
1154 switch (TPC) {
1155 case Sema::TPC_ClassTemplate:
Larisse Voufo39a1e502013-08-06 01:03:05 +00001156 case Sema::TPC_VarTemplate:
Richard Smith3f1b5d02011-05-05 21:57:07 +00001157 case Sema::TPC_TypeAliasTemplate:
Douglas Gregored5731f2009-11-25 17:50:39 +00001158 return false;
1159
1160 case Sema::TPC_FunctionTemplate:
Douglas Gregora99fb4c2011-02-04 04:20:44 +00001161 case Sema::TPC_FriendFunctionTemplateDefinition:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001162 // C++ [temp.param]p9:
Douglas Gregored5731f2009-11-25 17:50:39 +00001163 // A default template-argument shall not be specified in a
1164 // function template declaration or a function template
1165 // definition [...]
Douglas Gregora99fb4c2011-02-04 04:20:44 +00001166 // If a friend function template declaration specifies a default
1167 // template-argument, that declaration shall be a definition and shall be
1168 // the only declaration of the function template in the translation unit.
1169 // (C++98/03 doesn't have this wording; see DR226).
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001170 S.Diag(ParamLoc, S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00001171 diag::warn_cxx98_compat_template_parameter_default_in_function_template
1172 : diag::ext_template_parameter_default_in_function_template)
1173 << DefArgRange;
Douglas Gregored5731f2009-11-25 17:50:39 +00001174 return false;
1175
1176 case Sema::TPC_ClassTemplateMember:
1177 // C++0x [temp.param]p9:
1178 // A default template-argument shall not be specified in the
1179 // template-parameter-lists of the definition of a member of a
1180 // class template that appears outside of the member's class.
1181 S.Diag(ParamLoc, diag::err_template_parameter_default_template_member)
1182 << DefArgRange;
1183 return true;
1184
David Majnemerba8f17a2013-06-25 22:08:55 +00001185 case Sema::TPC_FriendClassTemplate:
Douglas Gregored5731f2009-11-25 17:50:39 +00001186 case Sema::TPC_FriendFunctionTemplate:
1187 // C++ [temp.param]p9:
1188 // A default template-argument shall not be specified in a
1189 // friend template declaration.
1190 S.Diag(ParamLoc, diag::err_template_parameter_default_friend_template)
1191 << DefArgRange;
1192 return true;
1193
1194 // FIXME: C++0x [temp.param]p9 allows default template-arguments
1195 // for friend function templates if there is only a single
1196 // declaration (and it is a definition). Strange!
1197 }
1198
David Blaikie8a40f702012-01-17 06:56:22 +00001199 llvm_unreachable("Invalid TemplateParamListContext!");
Douglas Gregored5731f2009-11-25 17:50:39 +00001200}
1201
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001202/// \brief Check for unexpanded parameter packs within the template parameters
1203/// of a template template parameter, recursively.
Benjamin Kramer8aef5962011-03-26 12:38:21 +00001204static bool DiagnoseUnexpandedParameterPacks(Sema &S,
1205 TemplateTemplateParmDecl *TTP) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00001206 // A template template parameter which is a parameter pack is also a pack
1207 // expansion.
1208 if (TTP->isParameterPack())
1209 return false;
1210
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001211 TemplateParameterList *Params = TTP->getTemplateParameters();
1212 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
1213 NamedDecl *P = Params->getParam(I);
1214 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P)) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00001215 if (!NTTP->isParameterPack() &&
1216 S.DiagnoseUnexpandedParameterPack(NTTP->getLocation(),
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001217 NTTP->getTypeSourceInfo(),
1218 Sema::UPPC_NonTypeTemplateParameterType))
1219 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001220
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001221 continue;
1222 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001223
1224 if (TemplateTemplateParmDecl *InnerTTP
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001225 = dyn_cast<TemplateTemplateParmDecl>(P))
1226 if (DiagnoseUnexpandedParameterPacks(S, InnerTTP))
1227 return true;
1228 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001229
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001230 return false;
1231}
1232
Douglas Gregordba32632009-02-10 19:49:53 +00001233/// \brief Checks the validity of a template parameter list, possibly
1234/// considering the template parameter list from a previous
1235/// declaration.
1236///
1237/// If an "old" template parameter list is provided, it must be
1238/// equivalent (per TemplateParameterListsAreEqual) to the "new"
1239/// template parameter list.
1240///
1241/// \param NewParams Template parameter list for a new template
1242/// declaration. This template parameter list will be updated with any
1243/// default arguments that are carried through from the previous
1244/// template parameter list.
1245///
1246/// \param OldParams If provided, template parameter list from a
1247/// previous declaration of the same template. Default template
1248/// arguments will be merged from the old template parameter list to
1249/// the new template parameter list.
1250///
Douglas Gregored5731f2009-11-25 17:50:39 +00001251/// \param TPC Describes the context in which we are checking the given
1252/// template parameter list.
1253///
Douglas Gregordba32632009-02-10 19:49:53 +00001254/// \returns true if an error occurred, false otherwise.
1255bool Sema::CheckTemplateParameterList(TemplateParameterList *NewParams,
Douglas Gregored5731f2009-11-25 17:50:39 +00001256 TemplateParameterList *OldParams,
1257 TemplateParamListContext TPC) {
Douglas Gregordba32632009-02-10 19:49:53 +00001258 bool Invalid = false;
Mike Stump11289f42009-09-09 15:08:12 +00001259
Douglas Gregordba32632009-02-10 19:49:53 +00001260 // C++ [temp.param]p10:
1261 // The set of default template-arguments available for use with a
1262 // template declaration or definition is obtained by merging the
1263 // default arguments from the definition (if in scope) and all
1264 // declarations in scope in the same way default function
1265 // arguments are (8.3.6).
1266 bool SawDefaultArgument = false;
1267 SourceLocation PreviousDefaultArgLoc;
Douglas Gregord32e0282009-02-09 23:23:08 +00001268
Mike Stumpc89c8e32009-02-11 23:03:27 +00001269 // Dummy initialization to avoid warnings.
Douglas Gregor5bd22da2009-02-11 20:46:19 +00001270 TemplateParameterList::iterator OldParam = NewParams->end();
Douglas Gregordba32632009-02-10 19:49:53 +00001271 if (OldParams)
1272 OldParam = OldParams->begin();
1273
Douglas Gregor0693def2011-01-27 01:40:17 +00001274 bool RemoveDefaultArguments = false;
Douglas Gregordba32632009-02-10 19:49:53 +00001275 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1276 NewParamEnd = NewParams->end();
1277 NewParam != NewParamEnd; ++NewParam) {
1278 // Variables used to diagnose redundant default arguments
1279 bool RedundantDefaultArg = false;
1280 SourceLocation OldDefaultLoc;
1281 SourceLocation NewDefaultLoc;
1282
David Blaikie651c73c2011-10-19 05:19:50 +00001283 // Variable used to diagnose missing default arguments
Douglas Gregordba32632009-02-10 19:49:53 +00001284 bool MissingDefaultArg = false;
1285
David Blaikie651c73c2011-10-19 05:19:50 +00001286 // Variable used to diagnose non-final parameter packs
1287 bool SawParameterPack = false;
Anders Carlsson327865d2009-06-12 23:20:15 +00001288
Douglas Gregordba32632009-02-10 19:49:53 +00001289 if (TemplateTypeParmDecl *NewTypeParm
1290 = dyn_cast<TemplateTypeParmDecl>(*NewParam)) {
Douglas Gregored5731f2009-11-25 17:50:39 +00001291 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001292 if (NewTypeParm->hasDefaultArgument() &&
1293 DiagnoseDefaultTemplateArgument(*this, TPC,
1294 NewTypeParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001295 NewTypeParm->getDefaultArgumentInfo()->getTypeLoc()
Abramo Bagnara1108e7b2010-05-20 10:00:11 +00001296 .getSourceRange()))
Douglas Gregored5731f2009-11-25 17:50:39 +00001297 NewTypeParm->removeDefaultArgument();
1298
1299 // Merge default arguments for template type parameters.
Mike Stump11289f42009-09-09 15:08:12 +00001300 TemplateTypeParmDecl *OldTypeParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001301 = OldParams? cast<TemplateTypeParmDecl>(*OldParam) : nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001302
Anders Carlsson327865d2009-06-12 23:20:15 +00001303 if (NewTypeParm->isParameterPack()) {
1304 assert(!NewTypeParm->hasDefaultArgument() &&
1305 "Parameter packs can't have a default argument!");
1306 SawParameterPack = true;
Mike Stump11289f42009-09-09 15:08:12 +00001307 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument() &&
John McCall0ad16662009-10-29 08:12:44 +00001308 NewTypeParm->hasDefaultArgument()) {
Douglas Gregordba32632009-02-10 19:49:53 +00001309 OldDefaultLoc = OldTypeParm->getDefaultArgumentLoc();
1310 NewDefaultLoc = NewTypeParm->getDefaultArgumentLoc();
1311 SawDefaultArgument = true;
1312 RedundantDefaultArg = true;
1313 PreviousDefaultArgLoc = NewDefaultLoc;
1314 } else if (OldTypeParm && OldTypeParm->hasDefaultArgument()) {
1315 // Merge the default argument from the old declaration to the
1316 // new declaration.
John McCall0ad16662009-10-29 08:12:44 +00001317 NewTypeParm->setDefaultArgument(OldTypeParm->getDefaultArgumentInfo(),
Douglas Gregordba32632009-02-10 19:49:53 +00001318 true);
1319 PreviousDefaultArgLoc = OldTypeParm->getDefaultArgumentLoc();
1320 } else if (NewTypeParm->hasDefaultArgument()) {
1321 SawDefaultArgument = true;
1322 PreviousDefaultArgLoc = NewTypeParm->getDefaultArgumentLoc();
1323 } else if (SawDefaultArgument)
1324 MissingDefaultArg = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00001325 } else if (NonTypeTemplateParmDecl *NewNonTypeParm
Douglas Gregordba32632009-02-10 19:49:53 +00001326 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam)) {
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001327 // Check for unexpanded parameter packs.
Richard Smith1fde8ec2012-09-07 02:06:42 +00001328 if (!NewNonTypeParm->isParameterPack() &&
1329 DiagnoseUnexpandedParameterPack(NewNonTypeParm->getLocation(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001330 NewNonTypeParm->getTypeSourceInfo(),
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001331 UPPC_NonTypeTemplateParameterType)) {
1332 Invalid = true;
1333 continue;
1334 }
1335
Douglas Gregored5731f2009-11-25 17:50:39 +00001336 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001337 if (NewNonTypeParm->hasDefaultArgument() &&
1338 DiagnoseDefaultTemplateArgument(*this, TPC,
1339 NewNonTypeParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001340 NewNonTypeParm->getDefaultArgument()->getSourceRange())) {
Abramo Bagnara656e3002010-06-09 09:26:05 +00001341 NewNonTypeParm->removeDefaultArgument();
Douglas Gregored5731f2009-11-25 17:50:39 +00001342 }
1343
Mike Stump12b8ce12009-08-04 21:02:39 +00001344 // Merge default arguments for non-type template parameters
Douglas Gregordba32632009-02-10 19:49:53 +00001345 NonTypeTemplateParmDecl *OldNonTypeParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001346 = OldParams? cast<NonTypeTemplateParmDecl>(*OldParam) : nullptr;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001347 if (NewNonTypeParm->isParameterPack()) {
1348 assert(!NewNonTypeParm->hasDefaultArgument() &&
1349 "Parameter packs can't have a default argument!");
Richard Smith1fde8ec2012-09-07 02:06:42 +00001350 if (!NewNonTypeParm->isPackExpansion())
1351 SawParameterPack = true;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001352 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument() &&
Richard Smith35828f12013-07-22 03:31:14 +00001353 NewNonTypeParm->hasDefaultArgument()) {
Douglas Gregordba32632009-02-10 19:49:53 +00001354 OldDefaultLoc = OldNonTypeParm->getDefaultArgumentLoc();
1355 NewDefaultLoc = NewNonTypeParm->getDefaultArgumentLoc();
1356 SawDefaultArgument = true;
1357 RedundantDefaultArg = true;
1358 PreviousDefaultArgLoc = NewDefaultLoc;
1359 } else if (OldNonTypeParm && OldNonTypeParm->hasDefaultArgument()) {
1360 // Merge the default argument from the old declaration to the
1361 // new declaration.
Douglas Gregordba32632009-02-10 19:49:53 +00001362 // FIXME: We need to create a new kind of "default argument"
Douglas Gregorf5500772011-01-05 15:48:55 +00001363 // expression that points to a previous non-type template
Douglas Gregordba32632009-02-10 19:49:53 +00001364 // parameter.
1365 NewNonTypeParm->setDefaultArgument(
Abramo Bagnara656e3002010-06-09 09:26:05 +00001366 OldNonTypeParm->getDefaultArgument(),
1367 /*Inherited=*/ true);
Douglas Gregordba32632009-02-10 19:49:53 +00001368 PreviousDefaultArgLoc = OldNonTypeParm->getDefaultArgumentLoc();
1369 } else if (NewNonTypeParm->hasDefaultArgument()) {
1370 SawDefaultArgument = true;
1371 PreviousDefaultArgLoc = NewNonTypeParm->getDefaultArgumentLoc();
1372 } else if (SawDefaultArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001373 MissingDefaultArg = true;
Mike Stump12b8ce12009-08-04 21:02:39 +00001374 } else {
Douglas Gregordba32632009-02-10 19:49:53 +00001375 TemplateTemplateParmDecl *NewTemplateParm
1376 = cast<TemplateTemplateParmDecl>(*NewParam);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001377
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001378 // Check for unexpanded parameter packs, recursively.
Douglas Gregor4a2a8f72011-10-25 03:44:56 +00001379 if (::DiagnoseUnexpandedParameterPacks(*this, NewTemplateParm)) {
Douglas Gregor38ee75e2010-12-16 15:36:43 +00001380 Invalid = true;
1381 continue;
1382 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001383
David Blaikie651c73c2011-10-19 05:19:50 +00001384 // Check the presence of a default argument here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001385 if (NewTemplateParm->hasDefaultArgument() &&
1386 DiagnoseDefaultTemplateArgument(*this, TPC,
1387 NewTemplateParm->getLocation(),
Douglas Gregored5731f2009-11-25 17:50:39 +00001388 NewTemplateParm->getDefaultArgument().getSourceRange()))
Abramo Bagnara656e3002010-06-09 09:26:05 +00001389 NewTemplateParm->removeDefaultArgument();
Douglas Gregored5731f2009-11-25 17:50:39 +00001390
1391 // Merge default arguments for template template parameters
Douglas Gregordba32632009-02-10 19:49:53 +00001392 TemplateTemplateParmDecl *OldTemplateParm
Craig Topperc3ec1492014-05-26 06:22:03 +00001393 = OldParams? cast<TemplateTemplateParmDecl>(*OldParam) : nullptr;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001394 if (NewTemplateParm->isParameterPack()) {
1395 assert(!NewTemplateParm->hasDefaultArgument() &&
1396 "Parameter packs can't have a default argument!");
Richard Smith1fde8ec2012-09-07 02:06:42 +00001397 if (!NewTemplateParm->isPackExpansion())
1398 SawParameterPack = true;
Douglas Gregor0018cdc2011-01-05 16:19:19 +00001399 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument() &&
Douglas Gregordba32632009-02-10 19:49:53 +00001400 NewTemplateParm->hasDefaultArgument()) {
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001401 OldDefaultLoc = OldTemplateParm->getDefaultArgument().getLocation();
1402 NewDefaultLoc = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001403 SawDefaultArgument = true;
1404 RedundantDefaultArg = true;
1405 PreviousDefaultArgLoc = NewDefaultLoc;
1406 } else if (OldTemplateParm && OldTemplateParm->hasDefaultArgument()) {
1407 // Merge the default argument from the old declaration to the
1408 // new declaration.
Mike Stump87c57ac2009-05-16 07:39:55 +00001409 // FIXME: We need to create a new kind of "default argument" expression
1410 // that points to a previous template template parameter.
Douglas Gregordba32632009-02-10 19:49:53 +00001411 NewTemplateParm->setDefaultArgument(
Abramo Bagnara656e3002010-06-09 09:26:05 +00001412 OldTemplateParm->getDefaultArgument(),
1413 /*Inherited=*/ true);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001414 PreviousDefaultArgLoc
1415 = OldTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001416 } else if (NewTemplateParm->hasDefaultArgument()) {
1417 SawDefaultArgument = true;
Douglas Gregor9167f8b2009-11-11 01:00:40 +00001418 PreviousDefaultArgLoc
1419 = NewTemplateParm->getDefaultArgument().getLocation();
Douglas Gregordba32632009-02-10 19:49:53 +00001420 } else if (SawDefaultArgument)
Mike Stump11289f42009-09-09 15:08:12 +00001421 MissingDefaultArg = true;
Douglas Gregordba32632009-02-10 19:49:53 +00001422 }
1423
Richard Smith1fde8ec2012-09-07 02:06:42 +00001424 // C++11 [temp.param]p11:
David Blaikie651c73c2011-10-19 05:19:50 +00001425 // If a template parameter of a primary class template or alias template
1426 // is a template parameter pack, it shall be the last template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00001427 if (SawParameterPack && (NewParam + 1) != NewParamEnd &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00001428 (TPC == TPC_ClassTemplate || TPC == TPC_VarTemplate ||
1429 TPC == TPC_TypeAliasTemplate)) {
David Blaikie651c73c2011-10-19 05:19:50 +00001430 Diag((*NewParam)->getLocation(),
1431 diag::err_template_param_pack_must_be_last_template_parameter);
1432 Invalid = true;
1433 }
1434
Douglas Gregordba32632009-02-10 19:49:53 +00001435 if (RedundantDefaultArg) {
1436 // C++ [temp.param]p12:
1437 // A template-parameter shall not be given default arguments
1438 // by two different declarations in the same scope.
1439 Diag(NewDefaultLoc, diag::err_template_param_default_arg_redefinition);
1440 Diag(OldDefaultLoc, diag::note_template_param_prev_default_arg);
1441 Invalid = true;
Douglas Gregor8b481d82011-02-04 03:57:22 +00001442 } else if (MissingDefaultArg && TPC != TPC_FunctionTemplate) {
Douglas Gregordba32632009-02-10 19:49:53 +00001443 // C++ [temp.param]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001444 // If a template-parameter of a class template has a default
1445 // template-argument, each subsequent template-parameter shall either
Douglas Gregor7dba51f2011-01-05 16:21:17 +00001446 // have a default template-argument supplied or be a template parameter
1447 // pack.
Mike Stump11289f42009-09-09 15:08:12 +00001448 Diag((*NewParam)->getLocation(),
Douglas Gregordba32632009-02-10 19:49:53 +00001449 diag::err_template_param_default_arg_missing);
1450 Diag(PreviousDefaultArgLoc, diag::note_template_param_prev_default_arg);
1451 Invalid = true;
Douglas Gregor0693def2011-01-27 01:40:17 +00001452 RemoveDefaultArguments = true;
Douglas Gregordba32632009-02-10 19:49:53 +00001453 }
1454
1455 // If we have an old template parameter list that we're merging
1456 // in, move on to the next parameter.
1457 if (OldParams)
1458 ++OldParam;
1459 }
1460
Douglas Gregor0693def2011-01-27 01:40:17 +00001461 // We were missing some default arguments at the end of the list, so remove
1462 // all of the default arguments.
1463 if (RemoveDefaultArguments) {
1464 for (TemplateParameterList::iterator NewParam = NewParams->begin(),
1465 NewParamEnd = NewParams->end();
1466 NewParam != NewParamEnd; ++NewParam) {
1467 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*NewParam))
1468 TTP->removeDefaultArgument();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001469 else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregor0693def2011-01-27 01:40:17 +00001470 = dyn_cast<NonTypeTemplateParmDecl>(*NewParam))
1471 NTTP->removeDefaultArgument();
1472 else
1473 cast<TemplateTemplateParmDecl>(*NewParam)->removeDefaultArgument();
1474 }
1475 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001476
Douglas Gregordba32632009-02-10 19:49:53 +00001477 return Invalid;
1478}
Douglas Gregord32e0282009-02-09 23:23:08 +00001479
John McCalla020a012010-10-20 05:44:58 +00001480namespace {
1481
1482/// A class which looks for a use of a certain level of template
1483/// parameter.
1484struct DependencyChecker : RecursiveASTVisitor<DependencyChecker> {
1485 typedef RecursiveASTVisitor<DependencyChecker> super;
1486
1487 unsigned Depth;
1488 bool Match;
Richard Smith6056d5e2014-02-09 00:54:43 +00001489 SourceLocation MatchLoc;
1490
1491 DependencyChecker(unsigned Depth) : Depth(Depth), Match(false) {}
John McCalla020a012010-10-20 05:44:58 +00001492
1493 DependencyChecker(TemplateParameterList *Params) : Match(false) {
1494 NamedDecl *ND = Params->getParam(0);
1495 if (TemplateTypeParmDecl *PD = dyn_cast<TemplateTypeParmDecl>(ND)) {
1496 Depth = PD->getDepth();
1497 } else if (NonTypeTemplateParmDecl *PD =
1498 dyn_cast<NonTypeTemplateParmDecl>(ND)) {
1499 Depth = PD->getDepth();
1500 } else {
1501 Depth = cast<TemplateTemplateParmDecl>(ND)->getDepth();
1502 }
1503 }
1504
Richard Smith6056d5e2014-02-09 00:54:43 +00001505 bool Matches(unsigned ParmDepth, SourceLocation Loc = SourceLocation()) {
John McCalla020a012010-10-20 05:44:58 +00001506 if (ParmDepth >= Depth) {
1507 Match = true;
Richard Smith6056d5e2014-02-09 00:54:43 +00001508 MatchLoc = Loc;
John McCalla020a012010-10-20 05:44:58 +00001509 return true;
1510 }
1511 return false;
1512 }
1513
Richard Smith6056d5e2014-02-09 00:54:43 +00001514 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
1515 return !Matches(TL.getTypePtr()->getDepth(), TL.getNameLoc());
1516 }
1517
John McCalla020a012010-10-20 05:44:58 +00001518 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
1519 return !Matches(T->getDepth());
1520 }
1521
1522 bool TraverseTemplateName(TemplateName N) {
1523 if (TemplateTemplateParmDecl *PD =
1524 dyn_cast_or_null<TemplateTemplateParmDecl>(N.getAsTemplateDecl()))
Richard Smith6056d5e2014-02-09 00:54:43 +00001525 if (Matches(PD->getDepth()))
1526 return false;
John McCalla020a012010-10-20 05:44:58 +00001527 return super::TraverseTemplateName(N);
1528 }
1529
1530 bool VisitDeclRefExpr(DeclRefExpr *E) {
1531 if (NonTypeTemplateParmDecl *PD =
Richard Smith6056d5e2014-02-09 00:54:43 +00001532 dyn_cast<NonTypeTemplateParmDecl>(E->getDecl()))
1533 if (Matches(PD->getDepth(), E->getExprLoc()))
John McCalla020a012010-10-20 05:44:58 +00001534 return false;
John McCalla020a012010-10-20 05:44:58 +00001535 return super::VisitDeclRefExpr(E);
1536 }
Richard Smith6056d5e2014-02-09 00:54:43 +00001537
1538 bool VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T) {
1539 return TraverseType(T->getReplacementType());
1540 }
1541
1542 bool
1543 VisitSubstTemplateTypeParmPackType(const SubstTemplateTypeParmPackType *T) {
1544 return TraverseTemplateArgument(T->getArgumentPack());
1545 }
1546
Douglas Gregora6a7e3c2011-05-13 00:34:01 +00001547 bool TraverseInjectedClassNameType(const InjectedClassNameType *T) {
1548 return TraverseType(T->getInjectedSpecializationType());
1549 }
John McCalla020a012010-10-20 05:44:58 +00001550};
1551}
1552
Douglas Gregor972fe532011-05-10 18:27:06 +00001553/// Determines whether a given type depends on the given parameter
John McCalla020a012010-10-20 05:44:58 +00001554/// list.
1555static bool
Douglas Gregor972fe532011-05-10 18:27:06 +00001556DependsOnTemplateParameters(QualType T, TemplateParameterList *Params) {
John McCalla020a012010-10-20 05:44:58 +00001557 DependencyChecker Checker(Params);
Douglas Gregor972fe532011-05-10 18:27:06 +00001558 Checker.TraverseType(T);
John McCalla020a012010-10-20 05:44:58 +00001559 return Checker.Match;
1560}
1561
Douglas Gregor972fe532011-05-10 18:27:06 +00001562// Find the source range corresponding to the named type in the given
1563// nested-name-specifier, if any.
1564static SourceRange getRangeOfTypeInNestedNameSpecifier(ASTContext &Context,
1565 QualType T,
1566 const CXXScopeSpec &SS) {
1567 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
1568 while (NestedNameSpecifier *NNS = NNSLoc.getNestedNameSpecifier()) {
1569 if (const Type *CurType = NNS->getAsType()) {
1570 if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
1571 return NNSLoc.getTypeLoc().getSourceRange();
1572 } else
1573 break;
1574
1575 NNSLoc = NNSLoc.getPrefix();
1576 }
1577
1578 return SourceRange();
1579}
1580
Mike Stump11289f42009-09-09 15:08:12 +00001581/// \brief Match the given template parameter lists to the given scope
Douglas Gregord8d297c2009-07-21 23:53:31 +00001582/// specifier, returning the template parameter list that applies to the
1583/// name.
1584///
1585/// \param DeclStartLoc the start of the declaration that has a scope
1586/// specifier or a template parameter list.
Mike Stump11289f42009-09-09 15:08:12 +00001587///
Douglas Gregor972fe532011-05-10 18:27:06 +00001588/// \param DeclLoc The location of the declaration itself.
1589///
Douglas Gregord8d297c2009-07-21 23:53:31 +00001590/// \param SS the scope specifier that will be matched to the given template
1591/// parameter lists. This scope specifier precedes a qualified name that is
1592/// being declared.
1593///
Richard Smith4b55a9c2014-04-17 03:29:33 +00001594/// \param TemplateId The template-id following the scope specifier, if there
1595/// is one. Used to check for a missing 'template<>'.
1596///
Douglas Gregord8d297c2009-07-21 23:53:31 +00001597/// \param ParamLists the template parameter lists, from the outermost to the
1598/// innermost template parameter lists.
1599///
John McCalle820e5e2010-04-13 20:37:33 +00001600/// \param IsFriend Whether to apply the slightly different rules for
1601/// matching template parameters to scope specifiers in friend
1602/// declarations.
1603///
Douglas Gregor5c0405d2009-10-07 22:35:40 +00001604/// \param IsExplicitSpecialization will be set true if the entity being
1605/// declared is an explicit specialization, false otherwise.
1606///
Mike Stump11289f42009-09-09 15:08:12 +00001607/// \returns the template parameter list, if any, that corresponds to the
Douglas Gregord8d297c2009-07-21 23:53:31 +00001608/// name that is preceded by the scope specifier @p SS. This template
Abramo Bagnara60804e12011-03-18 15:16:37 +00001609/// parameter list may have template parameters (if we're declaring a
Mike Stump11289f42009-09-09 15:08:12 +00001610/// template) or may have no template parameters (if we're declaring a
Abramo Bagnara60804e12011-03-18 15:16:37 +00001611/// template specialization), or may be NULL (if what we're declaring isn't
Douglas Gregord8d297c2009-07-21 23:53:31 +00001612/// itself a template).
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001613TemplateParameterList *Sema::MatchTemplateParametersToScopeSpecifier(
1614 SourceLocation DeclStartLoc, SourceLocation DeclLoc, const CXXScopeSpec &SS,
Richard Smith4b55a9c2014-04-17 03:29:33 +00001615 TemplateIdAnnotation *TemplateId,
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001616 ArrayRef<TemplateParameterList *> ParamLists, bool IsFriend,
1617 bool &IsExplicitSpecialization, bool &Invalid) {
Douglas Gregor5c0405d2009-10-07 22:35:40 +00001618 IsExplicitSpecialization = false;
Douglas Gregor972fe532011-05-10 18:27:06 +00001619 Invalid = false;
1620
1621 // The sequence of nested types to which we will match up the template
1622 // parameter lists. We first build this list by starting with the type named
1623 // by the nested-name-specifier and walking out until we run out of types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001624 SmallVector<QualType, 4> NestedTypes;
Douglas Gregor972fe532011-05-10 18:27:06 +00001625 QualType T;
Douglas Gregor9d07dfa2011-05-15 17:27:27 +00001626 if (SS.getScopeRep()) {
1627 if (CXXRecordDecl *Record
1628 = dyn_cast_or_null<CXXRecordDecl>(computeDeclContext(SS, true)))
1629 T = Context.getTypeDeclType(Record);
1630 else
1631 T = QualType(SS.getScopeRep()->getAsType(), 0);
1632 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001633
1634 // If we found an explicit specialization that prevents us from needing
1635 // 'template<>' headers, this will be set to the location of that
1636 // explicit specialization.
1637 SourceLocation ExplicitSpecLoc;
1638
1639 while (!T.isNull()) {
1640 NestedTypes.push_back(T);
1641
1642 // Retrieve the parent of a record type.
1643 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1644 // If this type is an explicit specialization, we're done.
1645 if (ClassTemplateSpecializationDecl *Spec
1646 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1647 if (!isa<ClassTemplatePartialSpecializationDecl>(Spec) &&
1648 Spec->getSpecializationKind() == TSK_ExplicitSpecialization) {
1649 ExplicitSpecLoc = Spec->getLocation();
1650 break;
Douglas Gregor65911492009-11-23 12:11:45 +00001651 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001652 } else if (Record->getTemplateSpecializationKind()
1653 == TSK_ExplicitSpecialization) {
1654 ExplicitSpecLoc = Record->getLocation();
John McCalle820e5e2010-04-13 20:37:33 +00001655 break;
1656 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001657
1658 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Record->getParent()))
1659 T = Context.getTypeDeclType(Parent);
1660 else
1661 T = QualType();
1662 continue;
1663 }
1664
1665 if (const TemplateSpecializationType *TST
1666 = T->getAs<TemplateSpecializationType>()) {
1667 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1668 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Template->getDeclContext()))
1669 T = Context.getTypeDeclType(Parent);
1670 else
1671 T = QualType();
1672 continue;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001673 }
Douglas Gregor972fe532011-05-10 18:27:06 +00001674 }
1675
1676 // Look one step prior in a dependent template specialization type.
1677 if (const DependentTemplateSpecializationType *DependentTST
1678 = T->getAs<DependentTemplateSpecializationType>()) {
1679 if (NestedNameSpecifier *NNS = DependentTST->getQualifier())
1680 T = QualType(NNS->getAsType(), 0);
1681 else
1682 T = QualType();
1683 continue;
1684 }
1685
1686 // Look one step prior in a dependent name type.
1687 if (const DependentNameType *DependentName = T->getAs<DependentNameType>()){
1688 if (NestedNameSpecifier *NNS = DependentName->getQualifier())
1689 T = QualType(NNS->getAsType(), 0);
1690 else
1691 T = QualType();
1692 continue;
1693 }
1694
1695 // Retrieve the parent of an enumeration type.
1696 if (const EnumType *EnumT = T->getAs<EnumType>()) {
1697 // FIXME: Forward-declared enums require a TSK_ExplicitSpecialization
1698 // check here.
1699 EnumDecl *Enum = EnumT->getDecl();
1700
1701 // Get to the parent type.
1702 if (TypeDecl *Parent = dyn_cast<TypeDecl>(Enum->getParent()))
1703 T = Context.getTypeDeclType(Parent);
1704 else
1705 T = QualType();
1706 continue;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001707 }
Mike Stump11289f42009-09-09 15:08:12 +00001708
Douglas Gregor972fe532011-05-10 18:27:06 +00001709 T = QualType();
1710 }
1711 // Reverse the nested types list, since we want to traverse from the outermost
1712 // to the innermost while checking template-parameter-lists.
1713 std::reverse(NestedTypes.begin(), NestedTypes.end());
Douglas Gregor15301382009-07-30 17:40:51 +00001714
Douglas Gregor972fe532011-05-10 18:27:06 +00001715 // C++0x [temp.expl.spec]p17:
1716 // A member or a member template may be nested within many
1717 // enclosing class templates. In an explicit specialization for
1718 // such a member, the member declaration shall be preceded by a
1719 // template<> for each enclosing class template that is
1720 // explicitly specialized.
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001721 bool SawNonEmptyTemplateParameterList = false;
Richard Smith11a80dc2014-04-17 03:52:20 +00001722
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00001723 auto CheckExplicitSpecialization = [&](SourceRange Range, bool Recovery) {
Richard Smith11a80dc2014-04-17 03:52:20 +00001724 if (SawNonEmptyTemplateParameterList) {
1725 Diag(DeclLoc, diag::err_specialize_member_of_template)
1726 << !Recovery << Range;
1727 Invalid = true;
1728 IsExplicitSpecialization = false;
1729 return true;
1730 }
1731
1732 return false;
1733 };
1734
1735 auto DiagnoseMissingExplicitSpecialization = [&] (SourceRange Range) {
1736 // Check that we can have an explicit specialization here.
1737 if (CheckExplicitSpecialization(Range, true))
1738 return true;
1739
1740 // We don't have a template header, but we should.
1741 SourceLocation ExpectedTemplateLoc;
1742 if (!ParamLists.empty())
1743 ExpectedTemplateLoc = ParamLists[0]->getTemplateLoc();
1744 else
1745 ExpectedTemplateLoc = DeclStartLoc;
1746
1747 Diag(DeclLoc, diag::err_template_spec_needs_header)
1748 << Range
1749 << FixItHint::CreateInsertion(ExpectedTemplateLoc, "template<> ");
1750 return false;
1751 };
1752
Douglas Gregor972fe532011-05-10 18:27:06 +00001753 unsigned ParamIdx = 0;
1754 for (unsigned TypeIdx = 0, NumTypes = NestedTypes.size(); TypeIdx != NumTypes;
1755 ++TypeIdx) {
1756 T = NestedTypes[TypeIdx];
1757
1758 // Whether we expect a 'template<>' header.
1759 bool NeedEmptyTemplateHeader = false;
1760
1761 // Whether we expect a template header with parameters.
1762 bool NeedNonemptyTemplateHeader = false;
1763
1764 // For a dependent type, the set of template parameters that we
1765 // expect to see.
Craig Topperc3ec1492014-05-26 06:22:03 +00001766 TemplateParameterList *ExpectedTemplateParams = nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00001767
Douglas Gregor373af9b2011-05-11 23:26:17 +00001768 // C++0x [temp.expl.spec]p15:
1769 // A member or a member template may be nested within many enclosing
1770 // class templates. In an explicit specialization for such a member, the
1771 // member declaration shall be preceded by a template<> for each
1772 // enclosing class template that is explicitly specialized.
Douglas Gregor972fe532011-05-10 18:27:06 +00001773 if (CXXRecordDecl *Record = T->getAsCXXRecordDecl()) {
1774 if (ClassTemplatePartialSpecializationDecl *Partial
1775 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1776 ExpectedTemplateParams = Partial->getTemplateParameters();
1777 NeedNonemptyTemplateHeader = true;
1778 } else if (Record->isDependentType()) {
1779 if (Record->getDescribedClassTemplate()) {
John McCall2408e322010-04-27 00:57:59 +00001780 ExpectedTemplateParams = Record->getDescribedClassTemplate()
Douglas Gregor972fe532011-05-10 18:27:06 +00001781 ->getTemplateParameters();
1782 NeedNonemptyTemplateHeader = true;
1783 }
1784 } else if (ClassTemplateSpecializationDecl *Spec
1785 = dyn_cast<ClassTemplateSpecializationDecl>(Record)) {
1786 // C++0x [temp.expl.spec]p4:
1787 // Members of an explicitly specialized class template are defined
1788 // in the same manner as members of normal classes, and not using
1789 // the template<> syntax.
1790 if (Spec->getSpecializationKind() != TSK_ExplicitSpecialization)
1791 NeedEmptyTemplateHeader = true;
1792 else
Douglas Gregorb32e8252011-06-01 22:37:07 +00001793 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00001794 } else if (Record->getTemplateSpecializationKind()) {
1795 if (Record->getTemplateSpecializationKind()
Douglas Gregor373af9b2011-05-11 23:26:17 +00001796 != TSK_ExplicitSpecialization &&
1797 TypeIdx == NumTypes - 1)
1798 IsExplicitSpecialization = true;
1799
1800 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00001801 }
1802 } else if (const TemplateSpecializationType *TST
1803 = T->getAs<TemplateSpecializationType>()) {
1804 if (TemplateDecl *Template = TST->getTemplateName().getAsTemplateDecl()) {
1805 ExpectedTemplateParams = Template->getTemplateParameters();
1806 NeedNonemptyTemplateHeader = true;
1807 }
1808 } else if (T->getAs<DependentTemplateSpecializationType>()) {
1809 // FIXME: We actually could/should check the template arguments here
1810 // against the corresponding template parameter list.
1811 NeedNonemptyTemplateHeader = false;
1812 }
1813
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001814 // C++ [temp.expl.spec]p16:
1815 // In an explicit specialization declaration for a member of a class
1816 // template or a member template that ap- pears in namespace scope, the
1817 // member template and some of its enclosing class templates may remain
1818 // unspecialized, except that the declaration shall not explicitly
1819 // specialize a class member template if its en- closing class templates
1820 // are not explicitly specialized as well.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001821 if (ParamIdx < ParamLists.size()) {
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001822 if (ParamLists[ParamIdx]->size() == 0) {
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00001823 if (CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
1824 false))
Craig Topperc3ec1492014-05-26 06:22:03 +00001825 return nullptr;
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001826 } else
1827 SawNonEmptyTemplateParameterList = true;
1828 }
1829
Douglas Gregor972fe532011-05-10 18:27:06 +00001830 if (NeedEmptyTemplateHeader) {
1831 // If we're on the last of the types, and we need a 'template<>' header
1832 // here, then it's an explicit specialization.
1833 if (TypeIdx == NumTypes - 1)
1834 IsExplicitSpecialization = true;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001835
1836 if (ParamIdx < ParamLists.size()) {
Douglas Gregor972fe532011-05-10 18:27:06 +00001837 if (ParamLists[ParamIdx]->size() > 0) {
1838 // The header has template parameters when it shouldn't. Complain.
1839 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
1840 diag::err_template_param_list_matches_nontemplate)
1841 << T
1842 << SourceRange(ParamLists[ParamIdx]->getLAngleLoc(),
1843 ParamLists[ParamIdx]->getRAngleLoc())
1844 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1845 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00001846 return nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00001847 }
Richard Smith11a80dc2014-04-17 03:52:20 +00001848
Douglas Gregor972fe532011-05-10 18:27:06 +00001849 // Consume this template header.
1850 ++ParamIdx;
1851 continue;
Douglas Gregor972fe532011-05-10 18:27:06 +00001852 }
Richard Smith11a80dc2014-04-17 03:52:20 +00001853
1854 if (!IsFriend)
1855 if (DiagnoseMissingExplicitSpecialization(
1856 getRangeOfTypeInNestedNameSpecifier(Context, T, SS)))
Craig Topperc3ec1492014-05-26 06:22:03 +00001857 return nullptr;
Richard Smith11a80dc2014-04-17 03:52:20 +00001858
Douglas Gregor972fe532011-05-10 18:27:06 +00001859 continue;
1860 }
Richard Smith11a80dc2014-04-17 03:52:20 +00001861
Douglas Gregor972fe532011-05-10 18:27:06 +00001862 if (NeedNonemptyTemplateHeader) {
1863 // In friend declarations we can have template-ids which don't
1864 // depend on the corresponding template parameter lists. But
1865 // assume that empty parameter lists are supposed to match this
1866 // template-id.
1867 if (IsFriend && T->isDependentType()) {
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001868 if (ParamIdx < ParamLists.size() &&
Douglas Gregor972fe532011-05-10 18:27:06 +00001869 DependsOnTemplateParameters(T, ParamLists[ParamIdx]))
Craig Topperc3ec1492014-05-26 06:22:03 +00001870 ExpectedTemplateParams = nullptr;
Douglas Gregor972fe532011-05-10 18:27:06 +00001871 else
1872 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001873 }
Douglas Gregored5731f2009-11-25 17:50:39 +00001874
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001875 if (ParamIdx < ParamLists.size()) {
1876 // Check the template parameter list, if we can.
Douglas Gregor972fe532011-05-10 18:27:06 +00001877 if (ExpectedTemplateParams &&
1878 !TemplateParameterListsAreEqual(ParamLists[ParamIdx],
1879 ExpectedTemplateParams,
1880 true, TPL_TemplateMatch))
1881 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00001882
Douglas Gregor972fe532011-05-10 18:27:06 +00001883 if (!Invalid &&
Craig Topperc3ec1492014-05-26 06:22:03 +00001884 CheckTemplateParameterList(ParamLists[ParamIdx], nullptr,
Douglas Gregor972fe532011-05-10 18:27:06 +00001885 TPC_ClassTemplateMember))
1886 Invalid = true;
1887
1888 ++ParamIdx;
1889 continue;
1890 }
1891
1892 Diag(DeclLoc, diag::err_template_spec_needs_template_parameters)
1893 << T
1894 << getRangeOfTypeInNestedNameSpecifier(Context, T, SS);
1895 Invalid = true;
1896 continue;
1897 }
Douglas Gregord8d297c2009-07-21 23:53:31 +00001898 }
Richard Smith4b55a9c2014-04-17 03:29:33 +00001899
Douglas Gregord8d297c2009-07-21 23:53:31 +00001900 // If there were at least as many template-ids as there were template
1901 // parameter lists, then there are no template parameter lists remaining for
1902 // the declaration itself.
Richard Smith4b55a9c2014-04-17 03:29:33 +00001903 if (ParamIdx >= ParamLists.size()) {
1904 if (TemplateId && !IsFriend) {
Richard Smith4b55a9c2014-04-17 03:29:33 +00001905 // We don't have a template header for the declaration itself, but we
1906 // should.
Richard Smith4b55a9c2014-04-17 03:29:33 +00001907 IsExplicitSpecialization = true;
Richard Smith11a80dc2014-04-17 03:52:20 +00001908 DiagnoseMissingExplicitSpecialization(SourceRange(TemplateId->LAngleLoc,
1909 TemplateId->RAngleLoc));
Richard Smith4b55a9c2014-04-17 03:29:33 +00001910
1911 // Fabricate an empty template parameter list for the invented header.
1912 return TemplateParameterList::Create(Context, SourceLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001913 SourceLocation(), nullptr, 0,
Richard Smith4b55a9c2014-04-17 03:29:33 +00001914 SourceLocation());
1915 }
1916
Craig Topperc3ec1492014-05-26 06:22:03 +00001917 return nullptr;
Richard Smith4b55a9c2014-04-17 03:29:33 +00001918 }
Mike Stump11289f42009-09-09 15:08:12 +00001919
Douglas Gregord8d297c2009-07-21 23:53:31 +00001920 // If there were too many template parameter lists, complain about that now.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001921 if (ParamIdx < ParamLists.size() - 1) {
Douglas Gregor972fe532011-05-10 18:27:06 +00001922 bool HasAnyExplicitSpecHeader = false;
1923 bool AllExplicitSpecHeaders = true;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001924 for (unsigned I = ParamIdx, E = ParamLists.size() - 1; I != E; ++I) {
Douglas Gregor972fe532011-05-10 18:27:06 +00001925 if (ParamLists[I]->size() == 0)
1926 HasAnyExplicitSpecHeader = true;
1927 else
1928 AllExplicitSpecHeaders = false;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001929 }
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001930
Douglas Gregor972fe532011-05-10 18:27:06 +00001931 Diag(ParamLists[ParamIdx]->getTemplateLoc(),
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001932 AllExplicitSpecHeaders ? diag::warn_template_spec_extra_headers
1933 : diag::err_template_spec_extra_headers)
1934 << SourceRange(ParamLists[ParamIdx]->getTemplateLoc(),
1935 ParamLists[ParamLists.size() - 2]->getRAngleLoc());
Douglas Gregor972fe532011-05-10 18:27:06 +00001936
1937 // If there was a specialization somewhere, such that 'template<>' is
1938 // not required, and there were any 'template<>' headers, note where the
1939 // specialization occurred.
1940 if (ExplicitSpecLoc.isValid() && HasAnyExplicitSpecHeader)
1941 Diag(ExplicitSpecLoc,
1942 diag::note_explicit_template_spec_does_not_need_header)
1943 << NestedTypes.back();
1944
1945 // We have a template parameter list with no corresponding scope, which
1946 // means that the resulting template declaration can't be instantiated
1947 // properly (we'll end up with dependent nodes when we shouldn't).
1948 if (!AllExplicitSpecHeaders)
1949 Invalid = true;
Douglas Gregord8d297c2009-07-21 23:53:31 +00001950 }
Mike Stump11289f42009-09-09 15:08:12 +00001951
Douglas Gregor522d5eb2011-06-06 15:22:55 +00001952 // C++ [temp.expl.spec]p16:
1953 // In an explicit specialization declaration for a member of a class
1954 // template or a member template that ap- pears in namespace scope, the
1955 // member template and some of its enclosing class templates may remain
1956 // unspecialized, except that the declaration shall not explicitly
1957 // specialize a class member template if its en- closing class templates
1958 // are not explicitly specialized as well.
Richard Smith11a80dc2014-04-17 03:52:20 +00001959 if (ParamLists.back()->size() == 0 &&
NAKAMURA Takumide4077a2014-04-17 08:57:09 +00001960 CheckExplicitSpecialization(ParamLists[ParamIdx]->getSourceRange(),
1961 false))
Craig Topperc3ec1492014-05-26 06:22:03 +00001962 return nullptr;
Richard Smith11a80dc2014-04-17 03:52:20 +00001963
Douglas Gregord8d297c2009-07-21 23:53:31 +00001964 // Return the last template parameter list, which corresponds to the
1965 // entity being declared.
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00001966 return ParamLists.back();
Douglas Gregord8d297c2009-07-21 23:53:31 +00001967}
1968
Douglas Gregor8b6070b2011-03-04 21:37:14 +00001969void Sema::NoteAllFoundTemplates(TemplateName Name) {
1970 if (TemplateDecl *Template = Name.getAsTemplateDecl()) {
1971 Diag(Template->getLocation(), diag::note_template_declared_here)
Larisse Voufo39a1e502013-08-06 01:03:05 +00001972 << (isa<FunctionTemplateDecl>(Template)
1973 ? 0
1974 : isa<ClassTemplateDecl>(Template)
1975 ? 1
1976 : isa<VarTemplateDecl>(Template)
1977 ? 2
1978 : isa<TypeAliasTemplateDecl>(Template) ? 3 : 4)
1979 << Template->getDeclName();
Douglas Gregor8b6070b2011-03-04 21:37:14 +00001980 return;
1981 }
1982
1983 if (OverloadedTemplateStorage *OST = Name.getAsOverloadedTemplate()) {
1984 for (OverloadedTemplateStorage::iterator I = OST->begin(),
1985 IEnd = OST->end();
1986 I != IEnd; ++I)
1987 Diag((*I)->getLocation(), diag::note_template_declared_here)
1988 << 0 << (*I)->getDeclName();
1989
1990 return;
1991 }
1992}
1993
Douglas Gregordc572a32009-03-30 22:58:21 +00001994QualType Sema::CheckTemplateIdType(TemplateName Name,
1995 SourceLocation TemplateLoc,
Douglas Gregor739b107a2011-03-03 02:41:12 +00001996 TemplateArgumentListInfo &TemplateArgs) {
John McCalld9dfe3a2011-06-30 08:33:18 +00001997 DependentTemplateName *DTN
1998 = Name.getUnderlying().getAsDependentTemplateName();
Richard Smith3f1b5d02011-05-05 21:57:07 +00001999 if (DTN && DTN->isIdentifier())
2000 // When building a template-id where the template-name is dependent,
2001 // assume the template is a type template. Either our assumption is
2002 // correct, or the code is ill-formed and will be diagnosed when the
2003 // dependent name is substituted.
2004 return Context.getDependentTemplateSpecializationType(ETK_None,
2005 DTN->getQualifier(),
2006 DTN->getIdentifier(),
2007 TemplateArgs);
2008
Douglas Gregordc572a32009-03-30 22:58:21 +00002009 TemplateDecl *Template = Name.getAsTemplateDecl();
Richard Smith8f658062013-12-04 00:56:29 +00002010 if (!Template || isa<FunctionTemplateDecl>(Template) ||
2011 isa<VarTemplateDecl>(Template)) {
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002012 // We might have a substituted template template parameter pack. If so,
2013 // build a template specialization type for it.
2014 if (Name.getAsSubstTemplateTemplateParmPack())
2015 return Context.getTemplateSpecializationType(Name, TemplateArgs);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002016
Douglas Gregor8b6070b2011-03-04 21:37:14 +00002017 Diag(TemplateLoc, diag::err_template_id_not_a_type)
2018 << Name;
2019 NoteAllFoundTemplates(Name);
2020 return QualType();
Douglas Gregorb67535d2009-03-31 00:43:58 +00002021 }
Douglas Gregordc572a32009-03-30 22:58:21 +00002022
Douglas Gregorc40290e2009-03-09 23:48:35 +00002023 // Check that the template argument list is well-formed for this
2024 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002025 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00002026 if (CheckTemplateArgumentList(Template, TemplateLoc, TemplateArgs,
Richard Smith83b11aa2014-01-09 02:22:22 +00002027 false, Converted))
Douglas Gregorc40290e2009-03-09 23:48:35 +00002028 return QualType();
2029
Douglas Gregorc40290e2009-03-09 23:48:35 +00002030 QualType CanonType;
2031
Douglas Gregor678d76c2011-07-01 01:22:09 +00002032 bool InstantiationDependent = false;
Richard Smith83b11aa2014-01-09 02:22:22 +00002033 if (TypeAliasTemplateDecl *AliasTemplate =
2034 dyn_cast<TypeAliasTemplateDecl>(Template)) {
Richard Smith3f1b5d02011-05-05 21:57:07 +00002035 // Find the canonical type for this type alias template specialization.
2036 TypeAliasDecl *Pattern = AliasTemplate->getTemplatedDecl();
2037 if (Pattern->isInvalidDecl())
2038 return QualType();
2039
2040 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
2041 Converted.data(), Converted.size());
2042
2043 // Only substitute for the innermost template argument list.
2044 MultiLevelTemplateArgumentList TemplateArgLists;
Richard Smith0c4a34b2011-05-14 15:04:18 +00002045 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
Richard Smith5e96d832011-05-12 00:06:17 +00002046 unsigned Depth = AliasTemplate->getTemplateParameters()->getDepth();
2047 for (unsigned I = 0; I < Depth; ++I)
Richard Smith841d8b22013-05-17 03:04:50 +00002048 TemplateArgLists.addOuterTemplateArguments(None);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002049
Richard Smith802c4b72012-08-23 06:16:52 +00002050 LocalInstantiationScope Scope(*this);
Richard Smith3f1b5d02011-05-05 21:57:07 +00002051 InstantiatingTemplate Inst(*this, TemplateLoc, Template);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002052 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00002053 return QualType();
Richard Smith802c4b72012-08-23 06:16:52 +00002054
Richard Smith3f1b5d02011-05-05 21:57:07 +00002055 CanonType = SubstType(Pattern->getUnderlyingType(),
2056 TemplateArgLists, AliasTemplate->getLocation(),
2057 AliasTemplate->getDeclName());
2058 if (CanonType.isNull())
2059 return QualType();
2060 } else if (Name.isDependent() ||
2061 TemplateSpecializationType::anyDependentTemplateArguments(
Douglas Gregor678d76c2011-07-01 01:22:09 +00002062 TemplateArgs, InstantiationDependent)) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00002063 // This class template specialization is a dependent
2064 // type. Therefore, its canonical type is another class template
2065 // specialization type that contains all of the converted
2066 // arguments in canonical form. This ensures that, e.g., A<T> and
2067 // A<T, T> have identical types when A is declared as:
2068 //
2069 // template<typename T, typename U = T> struct A;
Douglas Gregor6bc50582009-05-07 06:41:52 +00002070 TemplateName CanonName = Context.getCanonicalTemplateName(Name);
Mike Stump11289f42009-09-09 15:08:12 +00002071 CanonType = Context.getTemplateSpecializationType(CanonName,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002072 Converted.data(),
2073 Converted.size());
Mike Stump11289f42009-09-09 15:08:12 +00002074
Douglas Gregora8e02e72009-07-28 23:00:59 +00002075 // FIXME: CanonType is not actually the canonical type, and unfortunately
John McCall0ad16662009-10-29 08:12:44 +00002076 // it is a TemplateSpecializationType that we will never use again.
Douglas Gregora8e02e72009-07-28 23:00:59 +00002077 // In the future, we need to teach getTemplateSpecializationType to only
2078 // build the canonical type and return that to us.
2079 CanonType = Context.getCanonicalType(CanonType);
John McCall2408e322010-04-27 00:57:59 +00002080
2081 // This might work out to be a current instantiation, in which
2082 // case the canonical type needs to be the InjectedClassNameType.
2083 //
2084 // TODO: in theory this could be a simple hashtable lookup; most
2085 // changes to CurContext don't change the set of current
2086 // instantiations.
2087 if (isa<ClassTemplateDecl>(Template)) {
2088 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
2089 // If we get out to a namespace, we're done.
2090 if (Ctx->isFileContext()) break;
2091
2092 // If this isn't a record, keep looking.
2093 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
2094 if (!Record) continue;
2095
2096 // Look for one of the two cases with InjectedClassNameTypes
2097 // and check whether it's the same template.
2098 if (!isa<ClassTemplatePartialSpecializationDecl>(Record) &&
2099 !Record->getDescribedClassTemplate())
2100 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002101
John McCall2408e322010-04-27 00:57:59 +00002102 // Fetch the injected class name type and check whether its
2103 // injected type is equal to the type we just built.
2104 QualType ICNT = Context.getTypeDeclType(Record);
2105 QualType Injected = cast<InjectedClassNameType>(ICNT)
2106 ->getInjectedSpecializationType();
2107
2108 if (CanonType != Injected->getCanonicalTypeInternal())
2109 continue;
2110
2111 // If so, the canonical type of this TST is the injected
2112 // class name type of the record we just found.
2113 assert(ICNT.isCanonical());
2114 CanonType = ICNT;
John McCall2408e322010-04-27 00:57:59 +00002115 break;
2116 }
2117 }
Mike Stump11289f42009-09-09 15:08:12 +00002118 } else if (ClassTemplateDecl *ClassTemplate
Douglas Gregordc572a32009-03-30 22:58:21 +00002119 = dyn_cast<ClassTemplateDecl>(Template)) {
Douglas Gregorc40290e2009-03-09 23:48:35 +00002120 // Find the class template specialization declaration that
2121 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002122 void *InsertPos = nullptr;
Douglas Gregorc40290e2009-03-09 23:48:35 +00002123 ClassTemplateSpecializationDecl *Decl
Craig Topper7e0daca2014-06-26 04:58:53 +00002124 = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002125 if (!Decl) {
2126 // This is the first time we have referenced this class template
2127 // specialization. Create the canonical declaration and add it to
2128 // the set of specializations.
Mike Stump11289f42009-09-09 15:08:12 +00002129 Decl = ClassTemplateSpecializationDecl::Create(Context,
Douglas Gregore9029562010-05-06 00:28:52 +00002130 ClassTemplate->getTemplatedDecl()->getTagKind(),
2131 ClassTemplate->getDeclContext(),
Abramo Bagnarafd3a4552011-10-03 20:34:03 +00002132 ClassTemplate->getTemplatedDecl()->getLocStart(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002133 ClassTemplate->getLocation(),
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002134 ClassTemplate,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002135 Converted.data(),
Craig Topperc3ec1492014-05-26 06:22:03 +00002136 Converted.size(), nullptr);
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00002137 ClassTemplate->AddSpecialization(Decl, InsertPos);
Abramo Bagnara02b95532012-09-05 09:05:18 +00002138 if (ClassTemplate->isOutOfLine())
2139 Decl->setLexicalDeclContext(ClassTemplate->getLexicalDeclContext());
Douglas Gregorc40290e2009-03-09 23:48:35 +00002140 }
2141
Chandler Carruth2acfb222013-09-27 22:14:40 +00002142 // Diagnose uses of this specialization.
2143 (void)DiagnoseUseOfDecl(Decl, TemplateLoc);
2144
Douglas Gregorc40290e2009-03-09 23:48:35 +00002145 CanonType = Context.getTypeDeclType(Decl);
John McCalle78aac42010-03-10 03:28:59 +00002146 assert(isa<RecordType>(CanonType) &&
2147 "type of non-dependent specialization is not a RecordType");
Douglas Gregorc40290e2009-03-09 23:48:35 +00002148 }
Mike Stump11289f42009-09-09 15:08:12 +00002149
Douglas Gregorc40290e2009-03-09 23:48:35 +00002150 // Build the fully-sugared type for this class template
2151 // specialization, which refers back to the class template
2152 // specialization we created or found.
John McCall30576cd2010-06-13 09:25:03 +00002153 return Context.getTemplateSpecializationType(Name, TemplateArgs, CanonType);
Douglas Gregorc40290e2009-03-09 23:48:35 +00002154}
2155
John McCallfaf5fb42010-08-26 23:41:50 +00002156TypeResult
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002157Sema::ActOnTemplateIdType(CXXScopeSpec &SS, SourceLocation TemplateKWLoc,
Douglas Gregore7c20652011-03-02 00:47:37 +00002158 TemplateTy TemplateD, SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002159 SourceLocation LAngleLoc,
Douglas Gregordc572a32009-03-30 22:58:21 +00002160 ASTTemplateArgsPtr TemplateArgsIn,
Abramo Bagnara4244b432012-01-27 08:46:19 +00002161 SourceLocation RAngleLoc,
2162 bool IsCtorOrDtorName) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002163 if (SS.isInvalid())
2164 return true;
2165
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00002166 TemplateName Template = TemplateD.get();
Douglas Gregor8bf42052009-02-09 18:46:07 +00002167
Douglas Gregorc40290e2009-03-09 23:48:35 +00002168 // Translate the parser's template argument list in our AST format.
John McCall6b51f282009-11-23 01:53:49 +00002169 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregorb53edfb2009-11-10 19:49:08 +00002170 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregord32e0282009-02-09 23:23:08 +00002171
Douglas Gregor5a064722011-02-28 17:23:35 +00002172 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
Abramo Bagnara4244b432012-01-27 08:46:19 +00002173 QualType T
2174 = Context.getDependentTemplateSpecializationType(ETK_None,
2175 DTN->getQualifier(),
2176 DTN->getIdentifier(),
2177 TemplateArgs);
2178 // Build type-source information.
Douglas Gregor5a064722011-02-28 17:23:35 +00002179 TypeLocBuilder TLB;
2180 DependentTemplateSpecializationTypeLoc SpecTL
2181 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002182 SpecTL.setElaboratedKeywordLoc(SourceLocation());
2183 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00002184 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002185 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregor5a064722011-02-28 17:23:35 +00002186 SpecTL.setLAngleLoc(LAngleLoc);
2187 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor5a064722011-02-28 17:23:35 +00002188 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2189 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2190 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2191 }
2192
John McCall6b51f282009-11-23 01:53:49 +00002193 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00002194
2195 if (Result.isNull())
2196 return true;
2197
Douglas Gregore7c20652011-03-02 00:47:37 +00002198 // Build type-source information.
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002199 TypeLocBuilder TLB;
Douglas Gregore7c20652011-03-02 00:47:37 +00002200 TemplateSpecializationTypeLoc SpecTL
2201 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002202 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002203 SpecTL.setTemplateNameLoc(TemplateLoc);
2204 SpecTL.setLAngleLoc(LAngleLoc);
2205 SpecTL.setRAngleLoc(RAngleLoc);
2206 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2207 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall0ad16662009-10-29 08:12:44 +00002208
Abramo Bagnara4244b432012-01-27 08:46:19 +00002209 // NOTE: avoid constructing an ElaboratedTypeLoc if this is a
2210 // constructor or destructor name (in such a case, the scope specifier
2211 // will be attached to the enclosing Decl or Expr node).
2212 if (SS.isNotEmpty() && !IsCtorOrDtorName) {
Douglas Gregore7c20652011-03-02 00:47:37 +00002213 // Create an elaborated-type-specifier containing the nested-name-specifier.
2214 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result);
2215 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00002216 ElabTL.setElaboratedKeywordLoc(SourceLocation());
Douglas Gregore7c20652011-03-02 00:47:37 +00002217 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2218 }
2219
2220 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCalld8fe9af2009-09-08 17:47:29 +00002221}
John McCall06f6fe8d2009-09-04 01:14:41 +00002222
Douglas Gregore7c20652011-03-02 00:47:37 +00002223TypeResult Sema::ActOnTagTemplateIdType(TagUseKind TUK,
John McCallfaf5fb42010-08-26 23:41:50 +00002224 TypeSpecifierType TagSpec,
Douglas Gregore7c20652011-03-02 00:47:37 +00002225 SourceLocation TagLoc,
2226 CXXScopeSpec &SS,
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002227 SourceLocation TemplateKWLoc,
2228 TemplateTy TemplateD,
Douglas Gregore7c20652011-03-02 00:47:37 +00002229 SourceLocation TemplateLoc,
2230 SourceLocation LAngleLoc,
2231 ASTTemplateArgsPtr TemplateArgsIn,
2232 SourceLocation RAngleLoc) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00002233 TemplateName Template = TemplateD.get();
Douglas Gregore7c20652011-03-02 00:47:37 +00002234
2235 // Translate the parser's template argument list in our AST format.
2236 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
2237 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
2238
2239 // Determine the tag kind
Abramo Bagnara6150c882010-05-11 21:36:43 +00002240 TagTypeKind TagKind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Douglas Gregore7c20652011-03-02 00:47:37 +00002241 ElaboratedTypeKeyword Keyword
2242 = TypeWithKeyword::getKeywordForTagTypeKind(TagKind);
Mike Stump11289f42009-09-09 15:08:12 +00002243
Douglas Gregore7c20652011-03-02 00:47:37 +00002244 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
2245 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2246 DTN->getQualifier(),
2247 DTN->getIdentifier(),
2248 TemplateArgs);
2249
2250 // Build type-source information.
2251 TypeLocBuilder TLB;
2252 DependentTemplateSpecializationTypeLoc SpecTL
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002253 = TLB.push<DependentTemplateSpecializationTypeLoc>(T);
2254 SpecTL.setElaboratedKeywordLoc(TagLoc);
2255 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00002256 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002257 SpecTL.setTemplateNameLoc(TemplateLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002258 SpecTL.setLAngleLoc(LAngleLoc);
2259 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002260 for (unsigned I = 0, N = SpecTL.getNumArgs(); I != N; ++I)
2261 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
2262 return CreateParsedType(T, TLB.getTypeSourceInfo(Context, T));
2263 }
Richard Smith3f1b5d02011-05-05 21:57:07 +00002264
2265 if (TypeAliasTemplateDecl *TAT =
2266 dyn_cast_or_null<TypeAliasTemplateDecl>(Template.getAsTemplateDecl())) {
2267 // C++0x [dcl.type.elab]p2:
2268 // If the identifier resolves to a typedef-name or the simple-template-id
2269 // resolves to an alias template specialization, the
2270 // elaborated-type-specifier is ill-formed.
2271 Diag(TemplateLoc, diag::err_tag_reference_non_tag) << 4;
2272 Diag(TAT->getLocation(), diag::note_declared_at);
2273 }
Douglas Gregore7c20652011-03-02 00:47:37 +00002274
2275 QualType Result = CheckTemplateIdType(Template, TemplateLoc, TemplateArgs);
2276 if (Result.isNull())
Matt Beaumont-Gay045bde42011-08-25 23:22:24 +00002277 return TypeResult(true);
Douglas Gregore7c20652011-03-02 00:47:37 +00002278
2279 // Check the tag kind
2280 if (const RecordType *RT = Result->getAs<RecordType>()) {
John McCalld8fe9af2009-09-08 17:47:29 +00002281 RecordDecl *D = RT->getDecl();
Douglas Gregore7c20652011-03-02 00:47:37 +00002282
John McCalld8fe9af2009-09-08 17:47:29 +00002283 IdentifierInfo *Id = D->getIdentifier();
2284 assert(Id && "templated class must have an identifier");
Douglas Gregore7c20652011-03-02 00:47:37 +00002285
Richard Trieucaa33d32011-06-10 03:11:26 +00002286 if (!isAcceptableTagRedeclaration(D, TagKind, TUK == TUK_Definition,
2287 TagLoc, *Id)) {
John McCalld8fe9af2009-09-08 17:47:29 +00002288 Diag(TagLoc, diag::err_use_with_wrong_tag)
Douglas Gregore7c20652011-03-02 00:47:37 +00002289 << Result
Douglas Gregora771f462010-03-31 17:46:05 +00002290 << FixItHint::CreateReplacement(SourceRange(TagLoc), D->getKindName());
John McCall7f41d982009-09-11 04:59:25 +00002291 Diag(D->getLocation(), diag::note_previous_use);
John McCall06f6fe8d2009-09-04 01:14:41 +00002292 }
2293 }
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002294
Douglas Gregore7c20652011-03-02 00:47:37 +00002295 // Provide source-location information for the template specialization.
2296 TypeLocBuilder TLB;
2297 TemplateSpecializationTypeLoc SpecTL
2298 = TLB.push<TemplateSpecializationTypeLoc>(Result);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002299 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002300 SpecTL.setTemplateNameLoc(TemplateLoc);
2301 SpecTL.setLAngleLoc(LAngleLoc);
2302 SpecTL.setRAngleLoc(RAngleLoc);
2303 for (unsigned i = 0, e = SpecTL.getNumArgs(); i != e; ++i)
2304 SpecTL.setArgLocInfo(i, TemplateArgs[i].getLocInfo());
John McCall06f6fe8d2009-09-04 01:14:41 +00002305
Douglas Gregore7c20652011-03-02 00:47:37 +00002306 // Construct an elaborated type containing the nested-name-specifier (if any)
Abramo Bagnara48c05be2012-02-06 14:41:24 +00002307 // and tag keyword.
Douglas Gregore7c20652011-03-02 00:47:37 +00002308 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
2309 ElaboratedTypeLoc ElabTL = TLB.push<ElaboratedTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00002310 ElabTL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00002311 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
2312 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
Douglas Gregor8bf42052009-02-09 18:46:07 +00002313}
2314
Larisse Voufo39a1e502013-08-06 01:03:05 +00002315static bool CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00002316 Sema &S, SourceLocation NameLoc, TemplateParameterList *TemplateParams,
2317 unsigned ExplicitArgs, SmallVectorImpl<TemplateArgument> &TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002318
2319static bool CheckTemplateSpecializationScope(Sema &S, NamedDecl *Specialized,
2320 NamedDecl *PrevDecl,
2321 SourceLocation Loc,
2322 bool IsPartialSpecialization);
2323
2324static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002325
Richard Smith300e0c32013-09-24 04:49:23 +00002326static bool isTemplateArgumentTemplateParameter(
2327 const TemplateArgument &Arg, unsigned Depth, unsigned Index) {
2328 switch (Arg.getKind()) {
2329 case TemplateArgument::Null:
2330 case TemplateArgument::NullPtr:
2331 case TemplateArgument::Integral:
2332 case TemplateArgument::Declaration:
2333 case TemplateArgument::Pack:
2334 case TemplateArgument::TemplateExpansion:
2335 return false;
2336
2337 case TemplateArgument::Type: {
2338 QualType Type = Arg.getAsType();
2339 const TemplateTypeParmType *TPT =
2340 Arg.getAsType()->getAs<TemplateTypeParmType>();
2341 return TPT && !Type.hasQualifiers() &&
2342 TPT->getDepth() == Depth && TPT->getIndex() == Index;
2343 }
2344
2345 case TemplateArgument::Expression: {
2346 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg.getAsExpr());
2347 if (!DRE || !DRE->getDecl())
2348 return false;
2349 const NonTypeTemplateParmDecl *NTTP =
2350 dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl());
2351 return NTTP && NTTP->getDepth() == Depth && NTTP->getIndex() == Index;
2352 }
2353
2354 case TemplateArgument::Template:
2355 const TemplateTemplateParmDecl *TTP =
2356 dyn_cast_or_null<TemplateTemplateParmDecl>(
2357 Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl());
2358 return TTP && TTP->getDepth() == Depth && TTP->getIndex() == Index;
2359 }
2360 llvm_unreachable("unexpected kind of template argument");
2361}
2362
2363static bool isSameAsPrimaryTemplate(TemplateParameterList *Params,
2364 ArrayRef<TemplateArgument> Args) {
2365 if (Params->size() != Args.size())
2366 return false;
2367
2368 unsigned Depth = Params->getDepth();
2369
2370 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
2371 TemplateArgument Arg = Args[I];
2372
2373 // If the parameter is a pack expansion, the argument must be a pack
2374 // whose only element is a pack expansion.
2375 if (Params->getParam(I)->isParameterPack()) {
2376 if (Arg.getKind() != TemplateArgument::Pack || Arg.pack_size() != 1 ||
2377 !Arg.pack_begin()->isPackExpansion())
2378 return false;
2379 Arg = Arg.pack_begin()->getPackExpansionPattern();
2380 }
2381
2382 if (!isTemplateArgumentTemplateParameter(Arg, Depth, I))
2383 return false;
2384 }
2385
2386 return true;
2387}
2388
Richard Smith4b55a9c2014-04-17 03:29:33 +00002389/// Convert the parser's template argument list representation into our form.
2390static TemplateArgumentListInfo
2391makeTemplateArgumentListInfo(Sema &S, TemplateIdAnnotation &TemplateId) {
2392 TemplateArgumentListInfo TemplateArgs(TemplateId.LAngleLoc,
2393 TemplateId.RAngleLoc);
2394 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId.getTemplateArgs(),
2395 TemplateId.NumArgs);
2396 S.translateTemplateArguments(TemplateArgsPtr, TemplateArgs);
2397 return TemplateArgs;
2398}
2399
Larisse Voufo39a1e502013-08-06 01:03:05 +00002400DeclResult Sema::ActOnVarTemplateSpecialization(
Richard Smithbeef3452014-01-16 23:39:20 +00002401 Scope *S, Declarator &D, TypeSourceInfo *DI, SourceLocation TemplateKWLoc,
Craig Topperc79e5e32014-10-31 06:57:13 +00002402 TemplateParameterList *TemplateParams, StorageClass SC,
Richard Smithbeef3452014-01-16 23:39:20 +00002403 bool IsPartialSpecialization) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002404 // D must be variable template id.
2405 assert(D.getName().getKind() == UnqualifiedId::IK_TemplateId &&
2406 "Variable template specialization is declared with a template it.");
2407
2408 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002409 TemplateArgumentListInfo TemplateArgs =
2410 makeTemplateArgumentListInfo(*this, *TemplateId);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002411 SourceLocation TemplateNameLoc = D.getIdentifierLoc();
2412 SourceLocation LAngleLoc = TemplateId->LAngleLoc;
2413 SourceLocation RAngleLoc = TemplateId->RAngleLoc;
Richard Smith4b55a9c2014-04-17 03:29:33 +00002414
Richard Smithbeef3452014-01-16 23:39:20 +00002415 TemplateName Name = TemplateId->Template.get();
2416
2417 // The template-id must name a variable template.
2418 VarTemplateDecl *VarTemplate =
Karthik Bhat967c13d2014-05-08 13:16:20 +00002419 dyn_cast_or_null<VarTemplateDecl>(Name.getAsTemplateDecl());
2420 if (!VarTemplate) {
2421 NamedDecl *FnTemplate;
2422 if (auto *OTS = Name.getAsOverloadedTemplate())
2423 FnTemplate = *OTS->begin();
2424 else
2425 FnTemplate = dyn_cast_or_null<FunctionTemplateDecl>(Name.getAsTemplateDecl());
2426 if (FnTemplate)
2427 return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template_but_method)
2428 << FnTemplate->getDeclName();
Richard Smithbeef3452014-01-16 23:39:20 +00002429 return Diag(D.getIdentifierLoc(), diag::err_var_spec_no_template)
2430 << IsPartialSpecialization;
Karthik Bhat967c13d2014-05-08 13:16:20 +00002431 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002432
2433 // Check for unexpanded parameter packs in any of the template arguments.
2434 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
2435 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
2436 UPPC_PartialSpecialization))
2437 return true;
2438
2439 // Check that the template argument list is well-formed for this
2440 // template.
2441 SmallVector<TemplateArgument, 4> Converted;
2442 if (CheckTemplateArgumentList(VarTemplate, TemplateNameLoc, TemplateArgs,
2443 false, Converted))
2444 return true;
2445
2446 // Check that the type of this variable template specialization
2447 // matches the expected type.
2448 TypeSourceInfo *ExpectedDI;
2449 {
2450 // Do substitution on the type of the declaration
2451 TemplateArgumentList TemplateArgList(TemplateArgumentList::OnStack,
2452 Converted.data(), Converted.size());
2453 InstantiatingTemplate Inst(*this, TemplateKWLoc, VarTemplate);
Alp Tokerd4a72d52013-10-08 08:09:04 +00002454 if (Inst.isInvalid())
Larisse Voufo39a1e502013-08-06 01:03:05 +00002455 return true;
2456 VarDecl *Templated = VarTemplate->getTemplatedDecl();
2457 ExpectedDI =
2458 SubstType(Templated->getTypeSourceInfo(),
2459 MultiLevelTemplateArgumentList(TemplateArgList),
2460 Templated->getTypeSpecStartLoc(), Templated->getDeclName());
2461 }
2462 if (!ExpectedDI)
2463 return true;
2464
Larisse Voufo39a1e502013-08-06 01:03:05 +00002465 // Find the variable template (partial) specialization declaration that
2466 // corresponds to these arguments.
2467 if (IsPartialSpecialization) {
2468 if (CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00002469 *this, TemplateNameLoc, VarTemplate->getTemplateParameters(),
2470 TemplateArgs.size(), Converted))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002471 return true;
2472
2473 bool InstantiationDependent;
2474 if (!Name.isDependent() &&
2475 !TemplateSpecializationType::anyDependentTemplateArguments(
2476 TemplateArgs.getArgumentArray(), TemplateArgs.size(),
2477 InstantiationDependent)) {
2478 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
2479 << VarTemplate->getDeclName();
2480 IsPartialSpecialization = false;
2481 }
Richard Smith300e0c32013-09-24 04:49:23 +00002482
2483 if (isSameAsPrimaryTemplate(VarTemplate->getTemplateParameters(),
2484 Converted)) {
2485 // C++ [temp.class.spec]p9b3:
2486 //
2487 // -- The argument list of the specialization shall not be identical
2488 // to the implicit argument list of the primary template.
2489 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
2490 << /*variable template*/ 1
2491 << /*is definition*/(SC != SC_Extern && !CurContext->isRecord())
2492 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
2493 // FIXME: Recover from this by treating the declaration as a redeclaration
2494 // of the primary template.
2495 return true;
2496 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00002497 }
2498
Craig Topperc3ec1492014-05-26 06:22:03 +00002499 void *InsertPos = nullptr;
2500 VarTemplateSpecializationDecl *PrevDecl = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002501
2502 if (IsPartialSpecialization)
2503 // FIXME: Template parameter list matters too
Craig Topper7e0daca2014-06-26 04:58:53 +00002504 PrevDecl = VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002505 else
Craig Topper7e0daca2014-06-26 04:58:53 +00002506 PrevDecl = VarTemplate->findSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002507
Craig Topperc3ec1492014-05-26 06:22:03 +00002508 VarTemplateSpecializationDecl *Specialization = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002509
2510 // Check whether we can declare a variable template specialization in
2511 // the current scope.
2512 if (CheckTemplateSpecializationScope(*this, VarTemplate, PrevDecl,
2513 TemplateNameLoc,
2514 IsPartialSpecialization))
2515 return true;
2516
2517 if (PrevDecl && PrevDecl->getSpecializationKind() == TSK_Undeclared) {
2518 // Since the only prior variable template specialization with these
2519 // arguments was referenced but not declared, reuse that
2520 // declaration node as our own, updating its source location and
2521 // the list of outer template parameters to reflect our new declaration.
2522 Specialization = PrevDecl;
2523 Specialization->setLocation(TemplateNameLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00002524 PrevDecl = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002525 } else if (IsPartialSpecialization) {
2526 // Create a new class template partial specialization declaration node.
2527 VarTemplatePartialSpecializationDecl *PrevPartial =
2528 cast_or_null<VarTemplatePartialSpecializationDecl>(PrevDecl);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002529 VarTemplatePartialSpecializationDecl *Partial =
2530 VarTemplatePartialSpecializationDecl::Create(
2531 Context, VarTemplate->getDeclContext(), TemplateKWLoc,
2532 TemplateNameLoc, TemplateParams, VarTemplate, DI->getType(), DI, SC,
Richard Smithb2f61b42013-08-22 23:27:37 +00002533 Converted.data(), Converted.size(), TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002534
2535 if (!PrevPartial)
2536 VarTemplate->AddPartialSpecialization(Partial, InsertPos);
2537 Specialization = Partial;
2538
2539 // If we are providing an explicit specialization of a member variable
2540 // template specialization, make a note of that.
2541 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
Larisse Voufo4cda4612013-08-22 00:28:27 +00002542 PrevPartial->setMemberSpecialization();
Larisse Voufo39a1e502013-08-06 01:03:05 +00002543
2544 // Check that all of the template parameters of the variable template
2545 // partial specialization are deducible from the template
2546 // arguments. If not, this variable template partial specialization
2547 // will never be used.
2548 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
2549 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
2550 TemplateParams->getDepth(), DeducibleParams);
2551
2552 if (!DeducibleParams.all()) {
2553 unsigned NumNonDeducible =
2554 DeducibleParams.size() - DeducibleParams.count();
2555 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
Richard Smith300e0c32013-09-24 04:49:23 +00002556 << /*variable template*/ 1 << (NumNonDeducible > 1)
2557 << SourceRange(TemplateNameLoc, RAngleLoc);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002558 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
2559 if (!DeducibleParams[I]) {
2560 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
2561 if (Param->getDeclName())
2562 Diag(Param->getLocation(), diag::note_partial_spec_unused_parameter)
2563 << Param->getDeclName();
2564 else
2565 Diag(Param->getLocation(), diag::note_partial_spec_unused_parameter)
David Blaikieabe1a392014-04-02 05:58:29 +00002566 << "(anonymous)";
Larisse Voufo39a1e502013-08-06 01:03:05 +00002567 }
2568 }
2569 }
2570 } else {
2571 // Create a new class template specialization declaration node for
2572 // this explicit specialization or friend declaration.
2573 Specialization = VarTemplateSpecializationDecl::Create(
2574 Context, VarTemplate->getDeclContext(), TemplateKWLoc, TemplateNameLoc,
2575 VarTemplate, DI->getType(), DI, SC, Converted.data(), Converted.size());
2576 Specialization->setTemplateArgsInfo(TemplateArgs);
2577
2578 if (!PrevDecl)
2579 VarTemplate->AddSpecialization(Specialization, InsertPos);
2580 }
2581
2582 // C++ [temp.expl.spec]p6:
2583 // If a template, a member template or the member of a class template is
2584 // explicitly specialized then that specialization shall be declared
2585 // before the first use of that specialization that would cause an implicit
2586 // instantiation to take place, in every translation unit in which such a
2587 // use occurs; no diagnostic is required.
2588 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
2589 bool Okay = false;
2590 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
2591 // Is there any previous explicit specialization declaration?
2592 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
2593 Okay = true;
2594 break;
2595 }
2596 }
2597
2598 if (!Okay) {
2599 SourceRange Range(TemplateNameLoc, RAngleLoc);
2600 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
2601 << Name << Range;
2602
2603 Diag(PrevDecl->getPointOfInstantiation(),
2604 diag::note_instantiation_required_here)
2605 << (PrevDecl->getTemplateSpecializationKind() !=
2606 TSK_ImplicitInstantiation);
2607 return true;
2608 }
2609 }
2610
2611 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
2612 Specialization->setLexicalDeclContext(CurContext);
2613
2614 // Add the specialization into its lexical context, so that it can
2615 // be seen when iterating through the list of declarations in that
2616 // context. However, specializations are not found by name lookup.
2617 CurContext->addDecl(Specialization);
2618
2619 // Note that this is an explicit specialization.
2620 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
2621
2622 if (PrevDecl) {
2623 // Check that this isn't a redefinition of this specialization,
2624 // merging with previous declarations.
2625 LookupResult PrevSpec(*this, GetNameForDeclarator(D), LookupOrdinaryName,
2626 ForRedeclaration);
2627 PrevSpec.addDecl(PrevDecl);
2628 D.setRedeclaration(CheckVariableDeclaration(Specialization, PrevSpec));
Larisse Voufo4cda4612013-08-22 00:28:27 +00002629 } else if (Specialization->isStaticDataMember() &&
2630 Specialization->isOutOfLine()) {
2631 Specialization->setAccess(VarTemplate->getAccess());
Larisse Voufo39a1e502013-08-06 01:03:05 +00002632 }
2633
2634 // Link instantiations of static data members back to the template from
2635 // which they were instantiated.
2636 if (Specialization->isStaticDataMember())
2637 Specialization->setInstantiationOfStaticDataMember(
2638 VarTemplate->getTemplatedDecl(),
2639 Specialization->getSpecializationKind());
2640
2641 return Specialization;
2642}
2643
2644namespace {
2645/// \brief A partial specialization whose template arguments have matched
2646/// a given template-id.
2647struct PartialSpecMatchResult {
2648 VarTemplatePartialSpecializationDecl *Partial;
2649 TemplateArgumentList *Args;
2650};
2651}
2652
2653DeclResult
2654Sema::CheckVarTemplateId(VarTemplateDecl *Template, SourceLocation TemplateLoc,
2655 SourceLocation TemplateNameLoc,
2656 const TemplateArgumentListInfo &TemplateArgs) {
2657 assert(Template && "A variable template id without template?");
2658
2659 // Check that the template argument list is well-formed for this template.
2660 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002661 if (CheckTemplateArgumentList(
2662 Template, TemplateNameLoc,
2663 const_cast<TemplateArgumentListInfo &>(TemplateArgs), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00002664 Converted))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002665 return true;
2666
2667 // Find the variable template specialization declaration that
2668 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002669 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002670 if (VarTemplateSpecializationDecl *Spec = Template->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00002671 Converted, InsertPos))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002672 // If we already have a variable template specialization, return it.
2673 return Spec;
2674
2675 // This is the first time we have referenced this variable template
2676 // specialization. Create the canonical declaration and add it to
2677 // the set of specializations, based on the closest partial specialization
2678 // that it represents. That is,
2679 VarDecl *InstantiationPattern = Template->getTemplatedDecl();
2680 TemplateArgumentList TemplateArgList(TemplateArgumentList::OnStack,
2681 Converted.data(), Converted.size());
2682 TemplateArgumentList *InstantiationArgs = &TemplateArgList;
2683 bool AmbiguousPartialSpec = false;
2684 typedef PartialSpecMatchResult MatchResult;
2685 SmallVector<MatchResult, 4> Matched;
2686 SourceLocation PointOfInstantiation = TemplateNameLoc;
2687 TemplateSpecCandidateSet FailedCandidates(PointOfInstantiation);
2688
2689 // 1. Attempt to find the closest partial specialization that this
2690 // specializes, if any.
2691 // If any of the template arguments is dependent, then this is probably
2692 // a placeholder for an incomplete declarative context; which must be
2693 // complete by instantiation time. Thus, do not search through the partial
2694 // specializations yet.
Larisse Voufo30616382013-08-23 22:21:36 +00002695 // TODO: Unify with InstantiateClassTemplateSpecialization()?
2696 // Perhaps better after unification of DeduceTemplateArguments() and
2697 // getMoreSpecializedPartialSpecialization().
Larisse Voufo39a1e502013-08-06 01:03:05 +00002698 bool InstantiationDependent = false;
2699 if (!TemplateSpecializationType::anyDependentTemplateArguments(
2700 TemplateArgs, InstantiationDependent)) {
2701
2702 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
2703 Template->getPartialSpecializations(PartialSpecs);
2704
2705 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I) {
2706 VarTemplatePartialSpecializationDecl *Partial = PartialSpecs[I];
2707 TemplateDeductionInfo Info(FailedCandidates.getLocation());
2708
2709 if (TemplateDeductionResult Result =
2710 DeduceTemplateArguments(Partial, TemplateArgList, Info)) {
2711 // Store the failed-deduction information for use in diagnostics, later.
Larisse Voufo30616382013-08-23 22:21:36 +00002712 // TODO: Actually use the failed-deduction info?
Larisse Voufo39a1e502013-08-06 01:03:05 +00002713 FailedCandidates.addCandidate()
2714 .set(Partial, MakeDeductionFailureInfo(Context, Result, Info));
2715 (void)Result;
2716 } else {
2717 Matched.push_back(PartialSpecMatchResult());
2718 Matched.back().Partial = Partial;
2719 Matched.back().Args = Info.take();
2720 }
2721 }
2722
Larisse Voufo39a1e502013-08-06 01:03:05 +00002723 if (Matched.size() >= 1) {
2724 SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
2725 if (Matched.size() == 1) {
2726 // -- If exactly one matching specialization is found, the
2727 // instantiation is generated from that specialization.
2728 // We don't need to do anything for this.
2729 } else {
2730 // -- If more than one matching specialization is found, the
2731 // partial order rules (14.5.4.2) are used to determine
2732 // whether one of the specializations is more specialized
2733 // than the others. If none of the specializations is more
2734 // specialized than all of the other matching
2735 // specializations, then the use of the variable template is
2736 // ambiguous and the program is ill-formed.
2737 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
2738 PEnd = Matched.end();
2739 P != PEnd; ++P) {
2740 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
2741 PointOfInstantiation) ==
2742 P->Partial)
2743 Best = P;
2744 }
2745
2746 // Determine if the best partial specialization is more specialized than
2747 // the others.
2748 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
2749 PEnd = Matched.end();
2750 P != PEnd; ++P) {
2751 if (P != Best && getMoreSpecializedPartialSpecialization(
2752 P->Partial, Best->Partial,
2753 PointOfInstantiation) != Best->Partial) {
2754 AmbiguousPartialSpec = true;
2755 break;
2756 }
2757 }
2758 }
2759
2760 // Instantiate using the best variable template partial specialization.
2761 InstantiationPattern = Best->Partial;
2762 InstantiationArgs = Best->Args;
2763 } else {
2764 // -- If no match is found, the instantiation is generated
2765 // from the primary template.
2766 // InstantiationPattern = Template->getTemplatedDecl();
2767 }
2768 }
2769
Larisse Voufo39a1e502013-08-06 01:03:05 +00002770 // 2. Create the canonical declaration.
2771 // Note that we do not instantiate the variable just yet, since
2772 // instantiation is handled in DoMarkVarDeclReferenced().
2773 // FIXME: LateAttrs et al.?
2774 VarTemplateSpecializationDecl *Decl = BuildVarTemplateInstantiation(
2775 Template, InstantiationPattern, *InstantiationArgs, TemplateArgs,
2776 Converted, TemplateNameLoc, InsertPos /*, LateAttrs, StartingScope*/);
2777 if (!Decl)
2778 return true;
2779
2780 if (AmbiguousPartialSpec) {
2781 // Partial ordering did not produce a clear winner. Complain.
2782 Decl->setInvalidDecl();
2783 Diag(PointOfInstantiation, diag::err_partial_spec_ordering_ambiguous)
2784 << Decl;
2785
2786 // Print the matching partial specializations.
2787 for (SmallVector<MatchResult, 4>::iterator P = Matched.begin(),
2788 PEnd = Matched.end();
2789 P != PEnd; ++P)
2790 Diag(P->Partial->getLocation(), diag::note_partial_spec_match)
2791 << getTemplateArgumentBindingsText(
2792 P->Partial->getTemplateParameters(), *P->Args);
2793 return true;
2794 }
2795
2796 if (VarTemplatePartialSpecializationDecl *D =
2797 dyn_cast<VarTemplatePartialSpecializationDecl>(InstantiationPattern))
2798 Decl->setInstantiationOf(D, InstantiationArgs);
2799
2800 assert(Decl && "No variable template specialization?");
2801 return Decl;
2802}
2803
2804ExprResult
2805Sema::CheckVarTemplateId(const CXXScopeSpec &SS,
2806 const DeclarationNameInfo &NameInfo,
2807 VarTemplateDecl *Template, SourceLocation TemplateLoc,
2808 const TemplateArgumentListInfo *TemplateArgs) {
2809
2810 DeclResult Decl = CheckVarTemplateId(Template, TemplateLoc, NameInfo.getLoc(),
2811 *TemplateArgs);
2812 if (Decl.isInvalid())
2813 return ExprError();
2814
2815 VarDecl *Var = cast<VarDecl>(Decl.get());
2816 if (!Var->getTemplateSpecializationKind())
2817 Var->setTemplateSpecializationKind(TSK_ImplicitInstantiation,
2818 NameInfo.getLoc());
2819
2820 // Build an ordinary singleton decl ref.
2821 return BuildDeclarationNameExpr(SS, NameInfo, Var,
Craig Topperc3ec1492014-05-26 06:22:03 +00002822 /*FoundD=*/nullptr, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002823}
2824
John McCalldadc5752010-08-24 06:29:42 +00002825ExprResult Sema::BuildTemplateIdExpr(const CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00002826 SourceLocation TemplateKWLoc,
Douglas Gregor0da1d432011-02-28 20:01:57 +00002827 LookupResult &R,
2828 bool RequiresADL,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00002829 const TemplateArgumentListInfo *TemplateArgs) {
Douglas Gregora727cb92009-06-30 22:34:41 +00002830 // FIXME: Can we do any checking at this point? I guess we could check the
2831 // template arguments that we have against the template name, if the template
Mike Stump11289f42009-09-09 15:08:12 +00002832 // name refers to a single template. That's not a terribly common case,
Douglas Gregora727cb92009-06-30 22:34:41 +00002833 // though.
Douglas Gregorb491ed32011-02-19 21:32:49 +00002834 // foo<int> could identify a single function unambiguously
2835 // This approach does NOT work, since f<int>(1);
2836 // gets resolved prior to resorting to overload resolution
2837 // i.e., template<class T> void f(double);
2838 // vs template<class T, class U> void f(U);
John McCalle66edc12009-11-24 19:00:30 +00002839
2840 // These should be filtered out by our callers.
2841 assert(!R.empty() && "empty lookup results when building templateid");
2842 assert(!R.isAmbiguous() && "ambiguous lookup when building templateid");
2843
Larisse Voufo39a1e502013-08-06 01:03:05 +00002844 // In C++1y, check variable template ids.
Richard Smithd7d11ef2014-02-03 20:09:56 +00002845 bool InstantiationDependent;
2846 if (R.getAsSingle<VarTemplateDecl>() &&
2847 !TemplateSpecializationType::anyDependentTemplateArguments(
2848 *TemplateArgs, InstantiationDependent)) {
2849 return CheckVarTemplateId(SS, R.getLookupNameInfo(),
2850 R.getAsSingle<VarTemplateDecl>(),
2851 TemplateKWLoc, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002852 }
2853
John McCall58cc69d2010-01-27 01:50:18 +00002854 // We don't want lookup warnings at this point.
2855 R.suppressDiagnostics();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002856
John McCalle66edc12009-11-24 19:00:30 +00002857 UnresolvedLookupExpr *ULE
Douglas Gregora6e053e2010-12-15 01:34:56 +00002858 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor0da1d432011-02-28 20:01:57 +00002859 SS.getWithLocInContext(Context),
Abramo Bagnara7945c982012-01-27 09:46:47 +00002860 TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002861 R.getLookupNameInfo(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002862 RequiresADL, TemplateArgs,
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00002863 R.begin(), R.end());
John McCalle66edc12009-11-24 19:00:30 +00002864
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002865 return ULE;
Douglas Gregora727cb92009-06-30 22:34:41 +00002866}
2867
John McCalle66edc12009-11-24 19:00:30 +00002868// We actually only call this from template instantiation.
John McCalldadc5752010-08-24 06:29:42 +00002869ExprResult
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00002870Sema::BuildQualifiedTemplateIdExpr(CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00002871 SourceLocation TemplateKWLoc,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002872 const DeclarationNameInfo &NameInfo,
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00002873 const TemplateArgumentListInfo *TemplateArgs) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002874
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00002875 assert(TemplateArgs || TemplateKWLoc.isValid());
John McCalle66edc12009-11-24 19:00:30 +00002876 DeclContext *DC;
2877 if (!(DC = computeDeclContext(SS, false)) ||
2878 DC->isDependentContext() ||
John McCall0b66eb32010-05-01 00:40:08 +00002879 RequireCompleteDeclContext(SS, DC))
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00002880 return BuildDependentDeclRefExpr(SS, TemplateKWLoc, NameInfo, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00002881
Douglas Gregor786123d2010-05-21 23:18:07 +00002882 bool MemberOfUnknownSpecialization;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002883 LookupResult R(*this, NameInfo, LookupOrdinaryName);
Craig Topperc3ec1492014-05-26 06:22:03 +00002884 LookupTemplateName(R, (Scope*)nullptr, SS, QualType(), /*Entering*/ false,
Douglas Gregor786123d2010-05-21 23:18:07 +00002885 MemberOfUnknownSpecialization);
Mike Stump11289f42009-09-09 15:08:12 +00002886
John McCalle66edc12009-11-24 19:00:30 +00002887 if (R.isAmbiguous())
2888 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002889
John McCalle66edc12009-11-24 19:00:30 +00002890 if (R.empty()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002891 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_non_template)
2892 << NameInfo.getName() << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00002893 return ExprError();
2894 }
2895
2896 if (ClassTemplateDecl *Temp = R.getAsSingle<ClassTemplateDecl>()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002897 Diag(NameInfo.getLoc(), diag::err_template_kw_refers_to_class_template)
Aaron Ballman4a979672014-01-03 13:56:08 +00002898 << SS.getScopeRep()
Reid Kleckner32506ed2014-06-12 23:03:48 +00002899 << NameInfo.getName().getAsString() << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00002900 Diag(Temp->getLocation(), diag::note_referenced_class_template);
2901 return ExprError();
2902 }
2903
Abramo Bagnara7945c982012-01-27 09:46:47 +00002904 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, /*ADL*/ false, TemplateArgs);
Douglas Gregora727cb92009-06-30 22:34:41 +00002905}
2906
Douglas Gregorb67535d2009-03-31 00:43:58 +00002907/// \brief Form a dependent template name.
2908///
2909/// This action forms a dependent template name given the template
2910/// name and its (presumably dependent) scope specifier. For
2911/// example, given "MetaFun::template apply", the scope specifier \p
2912/// SS will be "MetaFun::", \p TemplateKWLoc contains the location
2913/// of the "template" keyword, and "apply" is the \p Name.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002914TemplateNameKind Sema::ActOnDependentTemplateName(Scope *S,
Douglas Gregorbb119652010-06-16 23:00:59 +00002915 CXXScopeSpec &SS,
Abramo Bagnara7945c982012-01-27 09:46:47 +00002916 SourceLocation TemplateKWLoc,
Douglas Gregorbb119652010-06-16 23:00:59 +00002917 UnqualifiedId &Name,
John McCallba7bf592010-08-24 05:47:05 +00002918 ParsedType ObjectType,
Douglas Gregorbb119652010-06-16 23:00:59 +00002919 bool EnteringContext,
2920 TemplateTy &Result) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00002921 if (TemplateKWLoc.isValid() && S && !S->getTemplateParamParent())
2922 Diag(TemplateKWLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002923 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00002924 diag::warn_cxx98_compat_template_outside_of_template :
2925 diag::ext_template_outside_of_template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002926 << FixItHint::CreateRemoval(TemplateKWLoc);
2927
Craig Topperc3ec1492014-05-26 06:22:03 +00002928 DeclContext *LookupCtx = nullptr;
Douglas Gregor9abe2372010-01-19 16:01:07 +00002929 if (SS.isSet())
2930 LookupCtx = computeDeclContext(SS, EnteringContext);
2931 if (!LookupCtx && ObjectType)
John McCallba7bf592010-08-24 05:47:05 +00002932 LookupCtx = computeDeclContext(ObjectType.get());
Douglas Gregor9abe2372010-01-19 16:01:07 +00002933 if (LookupCtx) {
Douglas Gregorb67535d2009-03-31 00:43:58 +00002934 // C++0x [temp.names]p5:
2935 // If a name prefixed by the keyword template is not the name of
2936 // a template, the program is ill-formed. [Note: the keyword
2937 // template may not be applied to non-template members of class
2938 // templates. -end note ] [ Note: as is the case with the
2939 // typename prefix, the template prefix is allowed in cases
2940 // where it is not strictly necessary; i.e., when the
2941 // nested-name-specifier or the expression on the left of the ->
2942 // or . is not dependent on a template-parameter, or the use
2943 // does not appear in the scope of a template. -end note]
2944 //
2945 // Note: C++03 was more strict here, because it banned the use of
2946 // the "template" keyword prior to a template-name that was not a
2947 // dependent name. C++ DR468 relaxed this requirement (the
2948 // "template" keyword is now permitted). We follow the C++0x
Douglas Gregorc9d26822010-06-14 22:07:54 +00002949 // rules, even in C++03 mode with a warning, retroactively applying the DR.
Douglas Gregor786123d2010-05-21 23:18:07 +00002950 bool MemberOfUnknownSpecialization;
Richard Smithaf416962012-11-15 00:31:27 +00002951 TemplateNameKind TNK = isTemplateName(S, SS, TemplateKWLoc.isValid(), Name,
Abramo Bagnara7c5dee42010-08-06 12:11:11 +00002952 ObjectType, EnteringContext, Result,
Douglas Gregor786123d2010-05-21 23:18:07 +00002953 MemberOfUnknownSpecialization);
Douglas Gregor9abe2372010-01-19 16:01:07 +00002954 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2955 isa<CXXRecordDecl>(LookupCtx) &&
Douglas Gregor5ecbb1b2011-03-11 23:27:41 +00002956 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2957 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {
Douglas Gregorbb119652010-06-16 23:00:59 +00002958 // This is a dependent template. Handle it below.
Douglas Gregord2e6a452010-01-14 17:47:39 +00002959 } else if (TNK == TNK_Non_template) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00002960 Diag(Name.getLocStart(),
Douglas Gregor3cf81312009-11-03 23:16:33 +00002961 diag::err_template_kw_refers_to_non_template)
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002962 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregorb22ee882010-05-05 05:58:24 +00002963 << Name.getSourceRange()
2964 << TemplateKWLoc;
Douglas Gregorbb119652010-06-16 23:00:59 +00002965 return TNK_Non_template;
Douglas Gregord2e6a452010-01-14 17:47:39 +00002966 } else {
2967 // We found something; return it.
Douglas Gregorbb119652010-06-16 23:00:59 +00002968 return TNK;
Douglas Gregorb67535d2009-03-31 00:43:58 +00002969 }
Douglas Gregorb67535d2009-03-31 00:43:58 +00002970 }
2971
Aaron Ballman4a979672014-01-03 13:56:08 +00002972 NestedNameSpecifier *Qualifier = SS.getScopeRep();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002973
Douglas Gregor3cf81312009-11-03 23:16:33 +00002974 switch (Name.getKind()) {
2975 case UnqualifiedId::IK_Identifier:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002976 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregorbb119652010-06-16 23:00:59 +00002977 Name.Identifier));
2978 return TNK_Dependent_template_name;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002979
Douglas Gregor71395fa2009-11-04 00:56:37 +00002980 case UnqualifiedId::IK_OperatorFunctionId:
Douglas Gregorbb119652010-06-16 23:00:59 +00002981 Result = TemplateTy::make(Context.getDependentTemplateName(Qualifier,
Douglas Gregor71395fa2009-11-04 00:56:37 +00002982 Name.OperatorFunctionId.Operator));
Richard Smith72bfbd82013-12-04 00:28:23 +00002983 return TNK_Function_template;
Alexis Hunted0530f2009-11-28 08:58:14 +00002984
2985 case UnqualifiedId::IK_LiteralOperatorId:
Richard Smithd091dc12013-12-05 00:58:33 +00002986 llvm_unreachable("literal operator id cannot have a dependent scope");
Alexis Hunted0530f2009-11-28 08:58:14 +00002987
Douglas Gregor3cf81312009-11-03 23:16:33 +00002988 default:
2989 break;
2990 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002991
Daniel Dunbar62ee6412012-03-09 18:35:03 +00002992 Diag(Name.getLocStart(),
Douglas Gregor3cf81312009-11-03 23:16:33 +00002993 diag::err_template_kw_refers_to_non_template)
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002994 << GetNameFromUnqualifiedId(Name).getName()
Douglas Gregorb22ee882010-05-05 05:58:24 +00002995 << Name.getSourceRange()
2996 << TemplateKWLoc;
Douglas Gregorbb119652010-06-16 23:00:59 +00002997 return TNK_Non_template;
Douglas Gregorb67535d2009-03-31 00:43:58 +00002998}
2999
Mike Stump11289f42009-09-09 15:08:12 +00003000bool Sema::CheckTemplateTypeArgument(TemplateTypeParmDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00003001 TemplateArgumentLoc &AL,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003002 SmallVectorImpl<TemplateArgument> &Converted) {
John McCall0ad16662009-10-29 08:12:44 +00003003 const TemplateArgument &Arg = AL.getArgument();
Reid Kleckner377c1592014-06-10 23:29:48 +00003004 QualType ArgType;
3005 TypeSourceInfo *TSI = nullptr;
John McCall0ad16662009-10-29 08:12:44 +00003006
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003007 // Check template type parameter.
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003008 switch(Arg.getKind()) {
3009 case TemplateArgument::Type:
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003010 // C++ [temp.arg.type]p1:
3011 // A template-argument for a template-parameter which is a
3012 // type shall be a type-id.
Reid Kleckner377c1592014-06-10 23:29:48 +00003013 ArgType = Arg.getAsType();
3014 TSI = AL.getTypeSourceInfo();
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003015 break;
3016 case TemplateArgument::Template: {
3017 // We have a template type parameter but the template argument
3018 // is a template without any arguments.
3019 SourceRange SR = AL.getSourceRange();
3020 TemplateName Name = Arg.getAsTemplate();
3021 Diag(SR.getBegin(), diag::err_template_missing_args)
3022 << Name << SR;
3023 if (TemplateDecl *Decl = Name.getAsTemplateDecl())
3024 Diag(Decl->getLocation(), diag::note_template_decl_here);
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003025
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003026 return true;
3027 }
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003028 case TemplateArgument::Expression: {
3029 // We have a template type parameter but the template argument is an
3030 // expression; see if maybe it is missing the "typename" keyword.
3031 CXXScopeSpec SS;
3032 DeclarationNameInfo NameInfo;
3033
3034 if (DeclRefExpr *ArgExpr = dyn_cast<DeclRefExpr>(Arg.getAsExpr())) {
3035 SS.Adopt(ArgExpr->getQualifierLoc());
3036 NameInfo = ArgExpr->getNameInfo();
3037 } else if (DependentScopeDeclRefExpr *ArgExpr =
3038 dyn_cast<DependentScopeDeclRefExpr>(Arg.getAsExpr())) {
3039 SS.Adopt(ArgExpr->getQualifierLoc());
3040 NameInfo = ArgExpr->getNameInfo();
3041 } else if (CXXDependentScopeMemberExpr *ArgExpr =
3042 dyn_cast<CXXDependentScopeMemberExpr>(Arg.getAsExpr())) {
Kaelyn Uhrain055e9472012-06-08 01:07:26 +00003043 if (ArgExpr->isImplicitAccess()) {
3044 SS.Adopt(ArgExpr->getQualifierLoc());
3045 NameInfo = ArgExpr->getMemberNameInfo();
3046 }
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003047 }
3048
Reid Kleckner377c1592014-06-10 23:29:48 +00003049 if (auto *II = NameInfo.getName().getAsIdentifierInfo()) {
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003050 LookupResult Result(*this, NameInfo, LookupOrdinaryName);
3051 LookupParsedName(Result, CurScope, &SS);
3052
Kaelyn Uhrain055e9472012-06-08 01:07:26 +00003053 if (Result.getAsSingle<TypeDecl>() ||
3054 Result.getResultKind() ==
Reid Kleckner377c1592014-06-10 23:29:48 +00003055 LookupResult::NotFoundInCurrentInstantiation) {
3056 // Suggest that the user add 'typename' before the NNS.
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003057 SourceLocation Loc = AL.getSourceRange().getBegin();
Reid Kleckner377c1592014-06-10 23:29:48 +00003058 Diag(Loc, getLangOpts().MSVCCompat
3059 ? diag::ext_ms_template_type_arg_missing_typename
3060 : diag::err_template_arg_must_be_type_suggest)
3061 << FixItHint::CreateInsertion(Loc, "typename ");
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003062 Diag(Param->getLocation(), diag::note_template_param_here);
Reid Kleckner377c1592014-06-10 23:29:48 +00003063
3064 // Recover by synthesizing a type using the location information that we
3065 // already have.
3066 ArgType =
3067 Context.getDependentNameType(ETK_Typename, SS.getScopeRep(), II);
3068 TypeLocBuilder TLB;
3069 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(ArgType);
3070 TL.setElaboratedKeywordLoc(SourceLocation(/*synthesized*/));
3071 TL.setQualifierLoc(SS.getWithLocInContext(Context));
3072 TL.setNameLoc(NameInfo.getLoc());
3073 TSI = TLB.getTypeSourceInfo(Context, ArgType);
3074
3075 // Overwrite our input TemplateArgumentLoc so that we can recover
3076 // properly.
3077 AL = TemplateArgumentLoc(TemplateArgument(ArgType),
3078 TemplateArgumentLocInfo(TSI));
3079
3080 break;
Kaelyn Uhrain864d0b02012-05-18 23:42:49 +00003081 }
3082 }
3083 // fallthrough
3084 }
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003085 default: {
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003086 // We have a template type parameter but the template argument
3087 // is not a type.
John McCall0d07eb32009-10-29 18:45:58 +00003088 SourceRange SR = AL.getSourceRange();
3089 Diag(SR.getBegin(), diag::err_template_arg_must_be_type) << SR;
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003090 Diag(Param->getLocation(), diag::note_template_param_here);
Mike Stump11289f42009-09-09 15:08:12 +00003091
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003092 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003093 }
Jeffrey Yasskin823015d2010-04-08 00:03:06 +00003094 }
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003095
Reid Kleckner377c1592014-06-10 23:29:48 +00003096 if (CheckTemplateArgument(Param, TSI))
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003097 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003098
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003099 // Add the converted template type argument.
Reid Kleckner377c1592014-06-10 23:29:48 +00003100 ArgType = Context.getCanonicalType(ArgType);
Douglas Gregore46db902011-06-17 22:11:49 +00003101
3102 // Objective-C ARC:
3103 // If an explicitly-specified template argument type is a lifetime type
3104 // with no lifetime qualifier, the __strong lifetime qualifier is inferred.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003105 if (getLangOpts().ObjCAutoRefCount &&
Douglas Gregore46db902011-06-17 22:11:49 +00003106 ArgType->isObjCLifetimeType() &&
3107 !ArgType.getObjCLifetime()) {
3108 Qualifiers Qs;
3109 Qs.setObjCLifetime(Qualifiers::OCL_Strong);
3110 ArgType = Context.getQualifiedType(ArgType, Qs);
3111 }
3112
3113 Converted.push_back(TemplateArgument(ArgType));
Anders Carlssonc8cbb2d2009-06-13 00:33:33 +00003114 return false;
3115}
3116
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003117/// \brief Substitute template arguments into the default template argument for
3118/// the given template type parameter.
3119///
3120/// \param SemaRef the semantic analysis object for which we are performing
3121/// the substitution.
3122///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003123/// \param Template the template that we are synthesizing template arguments
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003124/// for.
3125///
3126/// \param TemplateLoc the location of the template name that started the
3127/// template-id we are checking.
3128///
3129/// \param RAngleLoc the location of the right angle bracket ('>') that
3130/// terminates the template-id.
3131///
3132/// \param Param the template template parameter whose default we are
3133/// substituting into.
3134///
3135/// \param Converted the list of template arguments provided for template
3136/// parameters that precede \p Param in the template parameter list.
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003137/// \returns the substituted template argument, or NULL if an error occurred.
John McCallbcd03502009-12-07 02:54:59 +00003138static TypeSourceInfo *
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003139SubstDefaultTemplateArgument(Sema &SemaRef,
3140 TemplateDecl *Template,
3141 SourceLocation TemplateLoc,
3142 SourceLocation RAngleLoc,
3143 TemplateTypeParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003144 SmallVectorImpl<TemplateArgument> &Converted) {
John McCallbcd03502009-12-07 02:54:59 +00003145 TypeSourceInfo *ArgType = Param->getDefaultArgumentInfo();
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003146
3147 // If the argument type is dependent, instantiate it now based
3148 // on the previously-computed template arguments.
3149 if (ArgType->getType()->isDependentType()) {
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003150 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith80934652012-07-16 01:09:10 +00003151 Template, Converted,
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003152 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003153 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00003154 return nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003155
David Majnemer89189202013-08-28 23:48:32 +00003156 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3157 Converted.data(), Converted.size());
3158
3159 // Only substitute for the innermost template argument list.
3160 MultiLevelTemplateArgumentList TemplateArgLists;
3161 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3162 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3163 TemplateArgLists.addOuterTemplateArguments(None);
3164
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003165 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
David Majnemer89189202013-08-28 23:48:32 +00003166 ArgType =
3167 SemaRef.SubstType(ArgType, TemplateArgLists,
3168 Param->getDefaultArgumentLoc(), Param->getDeclName());
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003169 }
3170
3171 return ArgType;
3172}
3173
3174/// \brief Substitute template arguments into the default template argument for
3175/// the given non-type template parameter.
3176///
3177/// \param SemaRef the semantic analysis object for which we are performing
3178/// the substitution.
3179///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003180/// \param Template the template that we are synthesizing template arguments
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003181/// for.
3182///
3183/// \param TemplateLoc the location of the template name that started the
3184/// template-id we are checking.
3185///
3186/// \param RAngleLoc the location of the right angle bracket ('>') that
3187/// terminates the template-id.
3188///
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003189/// \param Param the non-type template parameter whose default we are
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003190/// substituting into.
3191///
3192/// \param Converted the list of template arguments provided for template
3193/// parameters that precede \p Param in the template parameter list.
3194///
3195/// \returns the substituted template argument, or NULL if an error occurred.
John McCalldadc5752010-08-24 06:29:42 +00003196static ExprResult
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003197SubstDefaultTemplateArgument(Sema &SemaRef,
3198 TemplateDecl *Template,
3199 SourceLocation TemplateLoc,
3200 SourceLocation RAngleLoc,
3201 NonTypeTemplateParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003202 SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003203 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc,
Richard Smith80934652012-07-16 01:09:10 +00003204 Template, Converted,
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003205 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003206 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003207 return ExprError();
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003208
David Majnemer89189202013-08-28 23:48:32 +00003209 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3210 Converted.data(), Converted.size());
3211
3212 // Only substitute for the innermost template argument list.
3213 MultiLevelTemplateArgumentList TemplateArgLists;
3214 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3215 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3216 TemplateArgLists.addOuterTemplateArguments(None);
3217
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003218 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
Eli Friedmanc25372b2012-04-26 22:43:24 +00003219 EnterExpressionEvaluationContext Unevaluated(SemaRef, Sema::Unevaluated);
David Majnemer89189202013-08-28 23:48:32 +00003220 return SemaRef.SubstExpr(Param->getDefaultArgument(), TemplateArgLists);
Douglas Gregor36d7c5f2009-11-09 19:17:50 +00003221}
3222
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003223/// \brief Substitute template arguments into the default template argument for
3224/// the given template template parameter.
3225///
3226/// \param SemaRef the semantic analysis object for which we are performing
3227/// the substitution.
3228///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003229/// \param Template the template that we are synthesizing template arguments
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003230/// for.
3231///
3232/// \param TemplateLoc the location of the template name that started the
3233/// template-id we are checking.
3234///
3235/// \param RAngleLoc the location of the right angle bracket ('>') that
3236/// terminates the template-id.
3237///
3238/// \param Param the template template parameter whose default we are
3239/// substituting into.
3240///
3241/// \param Converted the list of template arguments provided for template
3242/// parameters that precede \p Param in the template parameter list.
3243///
Douglas Gregordf846d12011-03-02 18:46:51 +00003244/// \param QualifierLoc Will be set to the nested-name-specifier (with
3245/// source-location information) that precedes the template name.
Douglas Gregor9d802122011-03-02 17:09:35 +00003246///
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003247/// \returns the substituted template argument, or NULL if an error occurred.
3248static TemplateName
3249SubstDefaultTemplateArgument(Sema &SemaRef,
3250 TemplateDecl *Template,
3251 SourceLocation TemplateLoc,
3252 SourceLocation RAngleLoc,
3253 TemplateTemplateParmDecl *Param,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003254 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregor9d802122011-03-02 17:09:35 +00003255 NestedNameSpecifierLoc &QualifierLoc) {
David Majnemer89189202013-08-28 23:48:32 +00003256 Sema::InstantiatingTemplate Inst(SemaRef, TemplateLoc, Template, Converted,
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003257 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003258 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003259 return TemplateName();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003260
David Majnemer89189202013-08-28 23:48:32 +00003261 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
3262 Converted.data(), Converted.size());
3263
3264 // Only substitute for the innermost template argument list.
3265 MultiLevelTemplateArgumentList TemplateArgLists;
3266 TemplateArgLists.addOuterTemplateArguments(&TemplateArgs);
3267 for (unsigned i = 0, e = Param->getDepth(); i != e; ++i)
3268 TemplateArgLists.addOuterTemplateArguments(None);
3269
Argyrios Kyrtzidis6fe744c2012-04-25 18:39:17 +00003270 Sema::ContextRAII SavedContext(SemaRef, Template->getDeclContext());
David Majnemer89189202013-08-28 23:48:32 +00003271 // Substitute into the nested-name-specifier first,
Douglas Gregordf846d12011-03-02 18:46:51 +00003272 QualifierLoc = Param->getDefaultArgument().getTemplateQualifierLoc();
Douglas Gregor9d802122011-03-02 17:09:35 +00003273 if (QualifierLoc) {
David Majnemer89189202013-08-28 23:48:32 +00003274 QualifierLoc =
3275 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgLists);
Douglas Gregor9d802122011-03-02 17:09:35 +00003276 if (!QualifierLoc)
3277 return TemplateName();
3278 }
David Majnemer89189202013-08-28 23:48:32 +00003279
3280 return SemaRef.SubstTemplateName(
3281 QualifierLoc,
3282 Param->getDefaultArgument().getArgument().getAsTemplate(),
3283 Param->getDefaultArgument().getTemplateNameLoc(),
3284 TemplateArgLists);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003285}
3286
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003287/// \brief If the given template parameter has a default template
3288/// argument, substitute into that default template argument and
3289/// return the corresponding template argument.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003290TemplateArgumentLoc
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003291Sema::SubstDefaultTemplateArgumentIfAvailable(TemplateDecl *Template,
3292 SourceLocation TemplateLoc,
3293 SourceLocation RAngleLoc,
3294 Decl *Param,
Richard Smithc87b9382013-07-04 01:01:24 +00003295 SmallVectorImpl<TemplateArgument>
3296 &Converted,
3297 bool &HasDefaultArg) {
3298 HasDefaultArg = false;
3299
3300 if (TemplateTypeParmDecl *TypeParm = dyn_cast<TemplateTypeParmDecl>(Param)) {
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003301 if (!TypeParm->hasDefaultArgument())
3302 return TemplateArgumentLoc();
3303
Richard Smithc87b9382013-07-04 01:01:24 +00003304 HasDefaultArg = true;
John McCallbcd03502009-12-07 02:54:59 +00003305 TypeSourceInfo *DI = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003306 TemplateLoc,
3307 RAngleLoc,
3308 TypeParm,
3309 Converted);
3310 if (DI)
3311 return TemplateArgumentLoc(TemplateArgument(DI->getType()), DI);
3312
3313 return TemplateArgumentLoc();
3314 }
3315
3316 if (NonTypeTemplateParmDecl *NonTypeParm
3317 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3318 if (!NonTypeParm->hasDefaultArgument())
3319 return TemplateArgumentLoc();
3320
Richard Smithc87b9382013-07-04 01:01:24 +00003321 HasDefaultArg = true;
John McCalldadc5752010-08-24 06:29:42 +00003322 ExprResult Arg = SubstDefaultTemplateArgument(*this, Template,
Douglas Gregor9d802122011-03-02 17:09:35 +00003323 TemplateLoc,
3324 RAngleLoc,
3325 NonTypeParm,
3326 Converted);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003327 if (Arg.isInvalid())
3328 return TemplateArgumentLoc();
3329
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003330 Expr *ArgE = Arg.getAs<Expr>();
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003331 return TemplateArgumentLoc(TemplateArgument(ArgE), ArgE);
3332 }
3333
3334 TemplateTemplateParmDecl *TempTempParm
3335 = cast<TemplateTemplateParmDecl>(Param);
3336 if (!TempTempParm->hasDefaultArgument())
3337 return TemplateArgumentLoc();
3338
Richard Smithc87b9382013-07-04 01:01:24 +00003339 HasDefaultArg = true;
Douglas Gregordf846d12011-03-02 18:46:51 +00003340 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003341 TemplateName TName = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003342 TemplateLoc,
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003343 RAngleLoc,
3344 TempTempParm,
Douglas Gregor9d802122011-03-02 17:09:35 +00003345 Converted,
3346 QualifierLoc);
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003347 if (TName.isNull())
3348 return TemplateArgumentLoc();
3349
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003350 return TemplateArgumentLoc(TemplateArgument(TName),
Douglas Gregor9d802122011-03-02 17:09:35 +00003351 TempTempParm->getDefaultArgument().getTemplateQualifierLoc(),
Douglas Gregor5c80a27b2009-11-25 18:55:14 +00003352 TempTempParm->getDefaultArgument().getTemplateNameLoc());
3353}
3354
Douglas Gregorda0fb532009-11-11 19:31:23 +00003355/// \brief Check that the given template argument corresponds to the given
3356/// template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003357///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003358/// \param Param The template parameter against which the argument will be
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003359/// checked.
3360///
3361/// \param Arg The template argument.
3362///
3363/// \param Template The template in which the template argument resides.
3364///
3365/// \param TemplateLoc The location of the template name for the template
3366/// whose argument list we're matching.
3367///
3368/// \param RAngleLoc The location of the right angle bracket ('>') that closes
3369/// the template argument list.
3370///
3371/// \param ArgumentPackIndex The index into the argument pack where this
3372/// argument will be placed. Only valid if the parameter is a parameter pack.
3373///
3374/// \param Converted The checked, converted argument will be added to the
3375/// end of this small vector.
3376///
3377/// \param CTAK Describes how we arrived at this particular template argument:
3378/// explicitly written, deduced, etc.
3379///
3380/// \returns true on error, false otherwise.
Douglas Gregorda0fb532009-11-11 19:31:23 +00003381bool Sema::CheckTemplateArgument(NamedDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00003382 TemplateArgumentLoc &Arg,
Douglas Gregorca4686d2011-01-04 23:35:54 +00003383 NamedDecl *Template,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003384 SourceLocation TemplateLoc,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003385 SourceLocation RAngleLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003386 unsigned ArgumentPackIndex,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003387 SmallVectorImpl<TemplateArgument> &Converted,
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00003388 CheckTemplateArgumentKind CTAK) {
Douglas Gregoreebed722009-11-11 19:41:09 +00003389 // Check template type parameters.
3390 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003391 return CheckTemplateTypeArgument(TTP, Arg, Converted);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003392
Douglas Gregoreebed722009-11-11 19:41:09 +00003393 // Check non-type template parameters.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003394 if (NonTypeTemplateParmDecl *NTTP =dyn_cast<NonTypeTemplateParmDecl>(Param)) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003395 // Do substitution on the type of the non-type template parameter
Peter Collingbourne01687632010-12-10 17:08:53 +00003396 // with the template arguments we've seen thus far. But if the
3397 // template has a dependent context then we cannot substitute yet.
Douglas Gregorda0fb532009-11-11 19:31:23 +00003398 QualType NTTPType = NTTP->getType();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003399 if (NTTP->isParameterPack() && NTTP->isExpandedParameterPack())
3400 NTTPType = NTTP->getExpansionType(ArgumentPackIndex);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003401
Peter Collingbourne01687632010-12-10 17:08:53 +00003402 if (NTTPType->isDependentType() &&
3403 !isa<TemplateTemplateParmDecl>(Template) &&
3404 !Template->getDeclContext()->isDependentContext()) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003405 // Do substitution on the type of the non-type template parameter.
3406 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith80934652012-07-16 01:09:10 +00003407 NTTP, Converted,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003408 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003409 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003410 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003411
3412 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003413 Converted.data(), Converted.size());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003414 NTTPType = SubstType(NTTPType,
3415 MultiLevelTemplateArgumentList(TemplateArgs),
3416 NTTP->getLocation(),
3417 NTTP->getDeclName());
3418 // If that worked, check the non-type template parameter type
3419 // for validity.
3420 if (!NTTPType.isNull())
3421 NTTPType = CheckNonTypeTemplateParameterType(NTTPType,
3422 NTTP->getLocation());
3423 if (NTTPType.isNull())
3424 return true;
3425 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003426
Douglas Gregorda0fb532009-11-11 19:31:23 +00003427 switch (Arg.getArgument().getKind()) {
3428 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00003429 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003430
Douglas Gregorda0fb532009-11-11 19:31:23 +00003431 case TemplateArgument::Expression: {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003432 TemplateArgument Result;
John Wiegley01296292011-04-08 18:41:53 +00003433 ExprResult Res =
3434 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(),
3435 Result, CTAK);
3436 if (Res.isInvalid())
Douglas Gregorda0fb532009-11-11 19:31:23 +00003437 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003438
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003439 Converted.push_back(Result);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003440 break;
3441 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003442
Douglas Gregorda0fb532009-11-11 19:31:23 +00003443 case TemplateArgument::Declaration:
3444 case TemplateArgument::Integral:
Eli Friedmanb826a002012-09-26 02:36:12 +00003445 case TemplateArgument::NullPtr:
Douglas Gregorda0fb532009-11-11 19:31:23 +00003446 // We've already checked this template argument, so just copy
3447 // it to the list of converted arguments.
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003448 Converted.push_back(Arg.getArgument());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003449 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003450
Douglas Gregorda0fb532009-11-11 19:31:23 +00003451 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003452 case TemplateArgument::TemplateExpansion:
Douglas Gregorda0fb532009-11-11 19:31:23 +00003453 // We were given a template template argument. It may not be ill-formed;
3454 // see below.
3455 if (DependentTemplateName *DTN
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003456 = Arg.getArgument().getAsTemplateOrTemplatePattern()
3457 .getAsDependentTemplateName()) {
Douglas Gregorda0fb532009-11-11 19:31:23 +00003458 // We have a template argument such as \c T::template X, which we
3459 // parsed as a template template argument. However, since we now
3460 // know that we need a non-type template argument, convert this
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003461 // template name into an expression.
3462
3463 DeclarationNameInfo NameInfo(DTN->getIdentifier(),
3464 Arg.getTemplateNameLoc());
3465
Douglas Gregor3a43fd62011-02-25 20:49:16 +00003466 CXXScopeSpec SS;
Douglas Gregor9d802122011-03-02 17:09:35 +00003467 SS.Adopt(Arg.getTemplateQualifierLoc());
Abramo Bagnara7945c982012-01-27 09:46:47 +00003468 // FIXME: the template-template arg was a DependentTemplateName,
3469 // so it was provided with a template keyword. However, its source
3470 // location is not stored in the template argument structure.
3471 SourceLocation TemplateKWLoc;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003472 ExprResult E = DependentScopeDeclRefExpr::Create(
3473 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
3474 nullptr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003475
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003476 // If we parsed the template argument as a pack expansion, create a
3477 // pack expansion expression.
3478 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003479 E = ActOnPackExpansion(E.get(), Arg.getTemplateEllipsisLoc());
John Wiegley01296292011-04-08 18:41:53 +00003480 if (E.isInvalid())
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003481 return true;
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003482 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003483
Douglas Gregorda0fb532009-11-11 19:31:23 +00003484 TemplateArgument Result;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003485 E = CheckTemplateArgument(NTTP, NTTPType, E.get(), Result);
John Wiegley01296292011-04-08 18:41:53 +00003486 if (E.isInvalid())
Douglas Gregorda0fb532009-11-11 19:31:23 +00003487 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003488
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003489 Converted.push_back(Result);
Douglas Gregorda0fb532009-11-11 19:31:23 +00003490 break;
3491 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003492
Douglas Gregorda0fb532009-11-11 19:31:23 +00003493 // We have a template argument that actually does refer to a class
Richard Smith3f1b5d02011-05-05 21:57:07 +00003494 // template, alias template, or template template parameter, and
Douglas Gregorda0fb532009-11-11 19:31:23 +00003495 // therefore cannot be a non-type template argument.
3496 Diag(Arg.getLocation(), diag::err_template_arg_must_be_expr)
3497 << Arg.getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003498
Douglas Gregorda0fb532009-11-11 19:31:23 +00003499 Diag(Param->getLocation(), diag::note_template_param_here);
3500 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003501
Douglas Gregorda0fb532009-11-11 19:31:23 +00003502 case TemplateArgument::Type: {
3503 // We have a non-type template parameter but the template
3504 // argument is a type.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003505
Douglas Gregorda0fb532009-11-11 19:31:23 +00003506 // C++ [temp.arg]p2:
3507 // In a template-argument, an ambiguity between a type-id and
3508 // an expression is resolved to a type-id, regardless of the
3509 // form of the corresponding template-parameter.
3510 //
3511 // We warn specifically about this case, since it can be rather
3512 // confusing for users.
3513 QualType T = Arg.getArgument().getAsType();
3514 SourceRange SR = Arg.getSourceRange();
3515 if (T->isFunctionType())
3516 Diag(SR.getBegin(), diag::err_template_arg_nontype_ambig) << SR << T;
3517 else
3518 Diag(SR.getBegin(), diag::err_template_arg_must_be_expr) << SR;
3519 Diag(Param->getLocation(), diag::note_template_param_here);
3520 return true;
3521 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003522
Douglas Gregorda0fb532009-11-11 19:31:23 +00003523 case TemplateArgument::Pack:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003524 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003525 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003526
Douglas Gregorda0fb532009-11-11 19:31:23 +00003527 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003528 }
3529
3530
Douglas Gregorda0fb532009-11-11 19:31:23 +00003531 // Check template template parameters.
3532 TemplateTemplateParmDecl *TempParm = cast<TemplateTemplateParmDecl>(Param);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003533
Douglas Gregorda0fb532009-11-11 19:31:23 +00003534 // Substitute into the template parameter list of the template
3535 // template parameter, since previously-supplied template arguments
3536 // may appear within the template template parameter.
3537 {
3538 // Set up a template instantiation context.
3539 LocalInstantiationScope Scope(*this);
3540 InstantiatingTemplate Inst(*this, TemplateLoc, Template,
Richard Smith80934652012-07-16 01:09:10 +00003541 TempParm, Converted,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003542 SourceRange(TemplateLoc, RAngleLoc));
Alp Tokerd4a72d52013-10-08 08:09:04 +00003543 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003544 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003545
3546 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003547 Converted.data(), Converted.size());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003548 TempParm = cast_or_null<TemplateTemplateParmDecl>(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003549 SubstDecl(TempParm, CurContext,
Douglas Gregorda0fb532009-11-11 19:31:23 +00003550 MultiLevelTemplateArgumentList(TemplateArgs)));
3551 if (!TempParm)
3552 return true;
Douglas Gregorda0fb532009-11-11 19:31:23 +00003553 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003554
Douglas Gregorda0fb532009-11-11 19:31:23 +00003555 switch (Arg.getArgument().getKind()) {
3556 case TemplateArgument::Null:
David Blaikie83d382b2011-09-23 05:06:16 +00003557 llvm_unreachable("Should never see a NULL template argument here");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003558
Douglas Gregorda0fb532009-11-11 19:31:23 +00003559 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00003560 case TemplateArgument::TemplateExpansion:
Richard Smith1fde8ec2012-09-07 02:06:42 +00003561 if (CheckTemplateArgument(TempParm, Arg, ArgumentPackIndex))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003562 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003563
Douglas Gregor1ccc8412010-11-07 23:05:16 +00003564 Converted.push_back(Arg.getArgument());
Douglas Gregorda0fb532009-11-11 19:31:23 +00003565 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003566
Douglas Gregorda0fb532009-11-11 19:31:23 +00003567 case TemplateArgument::Expression:
3568 case TemplateArgument::Type:
3569 // We have a template template parameter but the template
3570 // argument does not refer to a template.
Richard Smith3f1b5d02011-05-05 21:57:07 +00003571 Diag(Arg.getLocation(), diag::err_template_arg_must_be_template)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003572 << getLangOpts().CPlusPlus11;
Douglas Gregorda0fb532009-11-11 19:31:23 +00003573 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003574
Douglas Gregorda0fb532009-11-11 19:31:23 +00003575 case TemplateArgument::Declaration:
David Blaikie8a40f702012-01-17 06:56:22 +00003576 llvm_unreachable("Declaration argument with template template parameter");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003577 case TemplateArgument::Integral:
David Blaikie8a40f702012-01-17 06:56:22 +00003578 llvm_unreachable("Integral argument with template template parameter");
Eli Friedmanb826a002012-09-26 02:36:12 +00003579 case TemplateArgument::NullPtr:
3580 llvm_unreachable("Null pointer argument with template template parameter");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003581
Douglas Gregorda0fb532009-11-11 19:31:23 +00003582 case TemplateArgument::Pack:
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003583 llvm_unreachable("Caller must expand template argument packs");
Douglas Gregorda0fb532009-11-11 19:31:23 +00003584 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003585
Douglas Gregorda0fb532009-11-11 19:31:23 +00003586 return false;
3587}
3588
Douglas Gregor8e072612012-02-03 07:34:46 +00003589/// \brief Diagnose an arity mismatch in the
3590static bool diagnoseArityMismatch(Sema &S, TemplateDecl *Template,
3591 SourceLocation TemplateLoc,
3592 TemplateArgumentListInfo &TemplateArgs) {
3593 TemplateParameterList *Params = Template->getTemplateParameters();
3594 unsigned NumParams = Params->size();
3595 unsigned NumArgs = TemplateArgs.size();
3596
3597 SourceRange Range;
3598 if (NumArgs > NumParams)
3599 Range = SourceRange(TemplateArgs[NumParams].getLocation(),
3600 TemplateArgs.getRAngleLoc());
3601 S.Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3602 << (NumArgs > NumParams)
3603 << (isa<ClassTemplateDecl>(Template)? 0 :
3604 isa<FunctionTemplateDecl>(Template)? 1 :
3605 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3606 << Template << Range;
3607 S.Diag(Template->getLocation(), diag::note_template_decl_here)
3608 << Params->getSourceRange();
3609 return true;
3610}
3611
Richard Smith1fde8ec2012-09-07 02:06:42 +00003612/// \brief Check whether the template parameter is a pack expansion, and if so,
3613/// determine the number of parameters produced by that expansion. For instance:
3614///
3615/// \code
3616/// template<typename ...Ts> struct A {
3617/// template<Ts ...NTs, template<Ts> class ...TTs, typename ...Us> struct B;
3618/// };
3619/// \endcode
3620///
3621/// In \c A<int,int>::B, \c NTs and \c TTs have expanded pack size 2, and \c Us
3622/// is not a pack expansion, so returns an empty Optional.
David Blaikie05785d12013-02-20 22:23:23 +00003623static Optional<unsigned> getExpandedPackSize(NamedDecl *Param) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003624 if (NonTypeTemplateParmDecl *NTTP
3625 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
3626 if (NTTP->isExpandedParameterPack())
3627 return NTTP->getNumExpansionTypes();
3628 }
3629
3630 if (TemplateTemplateParmDecl *TTP
3631 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
3632 if (TTP->isExpandedParameterPack())
3633 return TTP->getNumExpansionTemplateParameters();
3634 }
3635
David Blaikie7a30dc52013-02-21 01:47:18 +00003636 return None;
Richard Smith1fde8ec2012-09-07 02:06:42 +00003637}
3638
Douglas Gregord32e0282009-02-09 23:23:08 +00003639/// \brief Check that the given template argument list is well-formed
3640/// for specializing the given template.
3641bool Sema::CheckTemplateArgumentList(TemplateDecl *Template,
3642 SourceLocation TemplateLoc,
Douglas Gregor739b107a2011-03-03 02:41:12 +00003643 TemplateArgumentListInfo &TemplateArgs,
Douglas Gregore3f1f352009-07-01 00:28:38 +00003644 bool PartialTemplateArgs,
Richard Smith83b11aa2014-01-09 02:22:22 +00003645 SmallVectorImpl<TemplateArgument> &Converted) {
Douglas Gregord32e0282009-02-09 23:23:08 +00003646 TemplateParameterList *Params = Template->getTemplateParameters();
Douglas Gregord32e0282009-02-09 23:23:08 +00003647
John McCall6b51f282009-11-23 01:53:49 +00003648 SourceLocation RAngleLoc = TemplateArgs.getRAngleLoc();
3649
Mike Stump11289f42009-09-09 15:08:12 +00003650 // C++ [temp.arg]p1:
Douglas Gregord32e0282009-02-09 23:23:08 +00003651 // [...] The type and form of each template-argument specified in
3652 // a template-id shall match the type and form specified for the
3653 // corresponding parameter declared by the template in its
3654 // template-parameter-list.
Douglas Gregor739b107a2011-03-03 02:41:12 +00003655 bool isTemplateTemplateParameter = isa<TemplateTemplateParmDecl>(Template);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003656 SmallVector<TemplateArgument, 2> ArgumentPack;
Richard Smith1fde8ec2012-09-07 02:06:42 +00003657 unsigned ArgIdx = 0, NumArgs = TemplateArgs.size();
Douglas Gregorf143cd52011-01-24 16:14:37 +00003658 LocalInstantiationScope InstScope(*this, true);
Richard Smith1fde8ec2012-09-07 02:06:42 +00003659 for (TemplateParameterList::iterator Param = Params->begin(),
3660 ParamEnd = Params->end();
3661 Param != ParamEnd; /* increment in loop */) {
3662 // If we have an expanded parameter pack, make sure we don't have too
3663 // many arguments.
David Blaikie05785d12013-02-20 22:23:23 +00003664 if (Optional<unsigned> Expansions = getExpandedPackSize(*Param)) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003665 if (*Expansions == ArgumentPack.size()) {
3666 // We're done with this parameter pack. Pack up its arguments and add
3667 // them to the list.
Eli Friedmanb826a002012-09-26 02:36:12 +00003668 Converted.push_back(
3669 TemplateArgument::CreatePackCopy(Context,
3670 ArgumentPack.data(),
3671 ArgumentPack.size()));
3672 ArgumentPack.clear();
3673
Richard Smith1fde8ec2012-09-07 02:06:42 +00003674 // This argument is assigned to the next parameter.
3675 ++Param;
3676 continue;
3677 } else if (ArgIdx == NumArgs && !PartialTemplateArgs) {
3678 // Not enough arguments for this parameter pack.
3679 Diag(TemplateLoc, diag::err_template_arg_list_different_arity)
3680 << false
3681 << (isa<ClassTemplateDecl>(Template)? 0 :
3682 isa<FunctionTemplateDecl>(Template)? 1 :
3683 isa<TemplateTemplateParmDecl>(Template)? 2 : 3)
3684 << Template;
3685 Diag(Template->getLocation(), diag::note_template_decl_here)
3686 << Params->getSourceRange();
3687 return true;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003688 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00003689 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003690
Richard Smith1fde8ec2012-09-07 02:06:42 +00003691 if (ArgIdx < NumArgs) {
Douglas Gregor84d49a22009-11-11 21:54:23 +00003692 // Check the template argument we were given.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003693 if (CheckTemplateArgument(*Param, TemplateArgs[ArgIdx], Template,
3694 TemplateLoc, RAngleLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003695 ArgumentPack.size(), Converted))
Douglas Gregor84d49a22009-11-11 21:54:23 +00003696 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003697
Richard Smith96d71c32014-11-12 23:38:38 +00003698 bool PackExpansionIntoNonPack =
3699 TemplateArgs[ArgIdx].getArgument().isPackExpansion() &&
3700 (!(*Param)->isTemplateParameterPack() || getExpandedPackSize(*Param));
3701 if (PackExpansionIntoNonPack && isa<TypeAliasTemplateDecl>(Template)) {
Richard Smith83b11aa2014-01-09 02:22:22 +00003702 // Core issue 1430: we have a pack expansion as an argument to an
Richard Smith96d71c32014-11-12 23:38:38 +00003703 // alias template, and it's not part of a parameter pack. This
Richard Smith83b11aa2014-01-09 02:22:22 +00003704 // can't be canonicalized, so reject it now.
3705 Diag(TemplateArgs[ArgIdx].getLocation(),
3706 diag::err_alias_template_expansion_into_fixed_list)
3707 << TemplateArgs[ArgIdx].getSourceRange();
3708 Diag((*Param)->getLocation(), diag::note_template_param_here);
3709 return true;
3710 }
3711
Richard Smith1fde8ec2012-09-07 02:06:42 +00003712 // We're now done with this argument.
3713 ++ArgIdx;
3714
Douglas Gregor9abeaf52010-12-20 16:57:52 +00003715 if ((*Param)->isTemplateParameterPack()) {
3716 // The template parameter was a template parameter pack, so take the
3717 // deduced argument and place it on the argument pack. Note that we
3718 // stay on the same template parameter so that we can deduce more
3719 // arguments.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00003720 ArgumentPack.push_back(Converted.pop_back_val());
Douglas Gregor9abeaf52010-12-20 16:57:52 +00003721 } else {
3722 // Move to the next template parameter.
3723 ++Param;
3724 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00003725
Richard Smith96d71c32014-11-12 23:38:38 +00003726 // If we just saw a pack expansion into a non-pack, then directly convert
3727 // the remaining arguments, because we don't know what parameters they'll
3728 // match up with.
3729 if (PackExpansionIntoNonPack) {
3730 if (!ArgumentPack.empty()) {
Richard Smith1fde8ec2012-09-07 02:06:42 +00003731 // If we were part way through filling in an expanded parameter pack,
3732 // fall back to just producing individual arguments.
3733 Converted.insert(Converted.end(),
3734 ArgumentPack.begin(), ArgumentPack.end());
3735 ArgumentPack.clear();
3736 }
3737
3738 while (ArgIdx < NumArgs) {
Richard Smith96d71c32014-11-12 23:38:38 +00003739 Converted.push_back(TemplateArgs[ArgIdx].getArgument());
Richard Smith1fde8ec2012-09-07 02:06:42 +00003740 ++ArgIdx;
3741 }
3742
Richard Smith1fde8ec2012-09-07 02:06:42 +00003743 return false;
Douglas Gregor8e072612012-02-03 07:34:46 +00003744 }
Richard Smith1fde8ec2012-09-07 02:06:42 +00003745
Douglas Gregor84d49a22009-11-11 21:54:23 +00003746 continue;
Douglas Gregor264ec4f2009-02-17 01:05:43 +00003747 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003748
Douglas Gregor2f157c92011-06-03 02:59:40 +00003749 // If we're checking a partial template argument list, we're done.
3750 if (PartialTemplateArgs) {
3751 if ((*Param)->isTemplateParameterPack() && !ArgumentPack.empty())
3752 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
3753 ArgumentPack.data(),
3754 ArgumentPack.size()));
3755
Richard Smith1fde8ec2012-09-07 02:06:42 +00003756 return false;
Douglas Gregor2f157c92011-06-03 02:59:40 +00003757 }
3758
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003759 // If we have a template parameter pack with no more corresponding
Douglas Gregor9abeaf52010-12-20 16:57:52 +00003760 // arguments, just break out now and we'll fill in the argument pack below.
Richard Smith1fde8ec2012-09-07 02:06:42 +00003761 if ((*Param)->isTemplateParameterPack()) {
3762 assert(!getExpandedPackSize(*Param) &&
3763 "Should have dealt with this already");
3764
3765 // A non-expanded parameter pack before the end of the parameter list
3766 // only occurs for an ill-formed template parameter list, unless we've
3767 // got a partial argument list for a function template, so just bail out.
3768 if (Param + 1 != ParamEnd)
3769 return true;
3770
Eli Friedmanb826a002012-09-26 02:36:12 +00003771 Converted.push_back(TemplateArgument::CreatePackCopy(Context,
3772 ArgumentPack.data(),
3773 ArgumentPack.size()));
3774 ArgumentPack.clear();
Richard Smith1fde8ec2012-09-07 02:06:42 +00003775
3776 ++Param;
3777 continue;
3778 }
3779
Douglas Gregor8e072612012-02-03 07:34:46 +00003780 // Check whether we have a default argument.
Douglas Gregor84d49a22009-11-11 21:54:23 +00003781 TemplateArgumentLoc Arg;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003782
Douglas Gregor84d49a22009-11-11 21:54:23 +00003783 // Retrieve the default template argument from the template
3784 // parameter. For each kind of template parameter, we substitute the
3785 // template arguments provided thus far and any "outer" template arguments
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003786 // (when the template parameter was part of a nested template) into
Douglas Gregor84d49a22009-11-11 21:54:23 +00003787 // the default argument.
3788 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*Param)) {
Douglas Gregor8e072612012-02-03 07:34:46 +00003789 if (!TTP->hasDefaultArgument())
3790 return diagnoseArityMismatch(*this, Template, TemplateLoc,
3791 TemplateArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00003792
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003793 TypeSourceInfo *ArgType = SubstDefaultTemplateArgument(*this,
Douglas Gregor84d49a22009-11-11 21:54:23 +00003794 Template,
3795 TemplateLoc,
3796 RAngleLoc,
3797 TTP,
3798 Converted);
3799 if (!ArgType)
3800 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003801
Douglas Gregor84d49a22009-11-11 21:54:23 +00003802 Arg = TemplateArgumentLoc(TemplateArgument(ArgType->getType()),
3803 ArgType);
3804 } else if (NonTypeTemplateParmDecl *NTTP
3805 = dyn_cast<NonTypeTemplateParmDecl>(*Param)) {
Douglas Gregor8e072612012-02-03 07:34:46 +00003806 if (!NTTP->hasDefaultArgument())
3807 return diagnoseArityMismatch(*this, Template, TemplateLoc,
3808 TemplateArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00003809
John McCalldadc5752010-08-24 06:29:42 +00003810 ExprResult E = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003811 TemplateLoc,
3812 RAngleLoc,
3813 NTTP,
Douglas Gregor84d49a22009-11-11 21:54:23 +00003814 Converted);
3815 if (E.isInvalid())
3816 return true;
3817
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003818 Expr *Ex = E.getAs<Expr>();
Douglas Gregor84d49a22009-11-11 21:54:23 +00003819 Arg = TemplateArgumentLoc(TemplateArgument(Ex), Ex);
3820 } else {
3821 TemplateTemplateParmDecl *TempParm
3822 = cast<TemplateTemplateParmDecl>(*Param);
3823
Douglas Gregor8e072612012-02-03 07:34:46 +00003824 if (!TempParm->hasDefaultArgument())
3825 return diagnoseArityMismatch(*this, Template, TemplateLoc,
3826 TemplateArgs);
Douglas Gregor84d49a22009-11-11 21:54:23 +00003827
Douglas Gregordf846d12011-03-02 18:46:51 +00003828 NestedNameSpecifierLoc QualifierLoc;
Douglas Gregor84d49a22009-11-11 21:54:23 +00003829 TemplateName Name = SubstDefaultTemplateArgument(*this, Template,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003830 TemplateLoc,
3831 RAngleLoc,
Douglas Gregor84d49a22009-11-11 21:54:23 +00003832 TempParm,
Douglas Gregor9d802122011-03-02 17:09:35 +00003833 Converted,
3834 QualifierLoc);
Douglas Gregor84d49a22009-11-11 21:54:23 +00003835 if (Name.isNull())
3836 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003837
Douglas Gregor9d802122011-03-02 17:09:35 +00003838 Arg = TemplateArgumentLoc(TemplateArgument(Name), QualifierLoc,
3839 TempParm->getDefaultArgument().getTemplateNameLoc());
Douglas Gregor84d49a22009-11-11 21:54:23 +00003840 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003841
Douglas Gregor84d49a22009-11-11 21:54:23 +00003842 // Introduce an instantiation record that describes where we are using
3843 // the default template argument.
Alp Tokerd4a72d52013-10-08 08:09:04 +00003844 InstantiatingTemplate Inst(*this, RAngleLoc, Template, *Param, Converted,
3845 SourceRange(TemplateLoc, RAngleLoc));
3846 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00003847 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003848
Douglas Gregor84d49a22009-11-11 21:54:23 +00003849 // Check the default template argument.
Douglas Gregoreebed722009-11-11 19:41:09 +00003850 if (CheckTemplateArgument(*Param, Arg, Template, TemplateLoc,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00003851 RAngleLoc, 0, Converted))
Douglas Gregorda0fb532009-11-11 19:31:23 +00003852 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003853
Douglas Gregor739b107a2011-03-03 02:41:12 +00003854 // Core issue 150 (assumed resolution): if this is a template template
3855 // parameter, keep track of the default template arguments from the
3856 // template definition.
3857 if (isTemplateTemplateParameter)
3858 TemplateArgs.addArgument(Arg);
3859
Douglas Gregor9abeaf52010-12-20 16:57:52 +00003860 // Move to the next template parameter and argument.
3861 ++Param;
3862 ++ArgIdx;
Douglas Gregord32e0282009-02-09 23:23:08 +00003863 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003864
Richard Smith07f79912014-06-06 16:00:50 +00003865 // If we're performing a partial argument substitution, allow any trailing
3866 // pack expansions; they might be empty. This can happen even if
3867 // PartialTemplateArgs is false (the list of arguments is complete but
3868 // still dependent).
3869 if (ArgIdx < NumArgs && CurrentInstantiationScope &&
3870 CurrentInstantiationScope->getPartiallySubstitutedPack()) {
3871 while (ArgIdx < NumArgs &&
3872 TemplateArgs[ArgIdx].getArgument().isPackExpansion())
3873 Converted.push_back(TemplateArgs[ArgIdx++].getArgument());
3874 }
3875
Douglas Gregor8e072612012-02-03 07:34:46 +00003876 // If we have any leftover arguments, then there were too many arguments.
3877 // Complain and fail.
3878 if (ArgIdx < NumArgs)
3879 return diagnoseArityMismatch(*this, Template, TemplateLoc, TemplateArgs);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003880
Richard Smith1fde8ec2012-09-07 02:06:42 +00003881 return false;
Douglas Gregord32e0282009-02-09 23:23:08 +00003882}
3883
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003884namespace {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003885 class UnnamedLocalNoLinkageFinder
3886 : public TypeVisitor<UnnamedLocalNoLinkageFinder, bool>
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003887 {
3888 Sema &S;
3889 SourceRange SR;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003890
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003891 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003892
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003893 public:
3894 UnnamedLocalNoLinkageFinder(Sema &S, SourceRange SR) : S(S), SR(SR) { }
3895
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003896 bool Visit(QualType T) {
3897 return inherited::Visit(T.getTypePtr());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003898 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003899
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003900#define TYPE(Class, Parent) \
3901 bool Visit##Class##Type(const Class##Type *);
3902#define ABSTRACT_TYPE(Class, Parent) \
3903 bool Visit##Class##Type(const Class##Type *) { return false; }
3904#define NON_CANONICAL_TYPE(Class, Parent) \
3905 bool Visit##Class##Type(const Class##Type *) { return false; }
3906#include "clang/AST/TypeNodes.def"
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003907
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003908 bool VisitTagDecl(const TagDecl *Tag);
3909 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS);
3910 };
3911}
3912
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003913bool UnnamedLocalNoLinkageFinder::VisitBuiltinType(const BuiltinType*) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003914 return false;
3915}
3916
3917bool UnnamedLocalNoLinkageFinder::VisitComplexType(const ComplexType* T) {
3918 return Visit(T->getElementType());
3919}
3920
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003921bool UnnamedLocalNoLinkageFinder::VisitPointerType(const PointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003922 return Visit(T->getPointeeType());
3923}
3924
3925bool UnnamedLocalNoLinkageFinder::VisitBlockPointerType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003926 const BlockPointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003927 return Visit(T->getPointeeType());
3928}
3929
3930bool UnnamedLocalNoLinkageFinder::VisitLValueReferenceType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003931 const LValueReferenceType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003932 return Visit(T->getPointeeType());
3933}
3934
3935bool UnnamedLocalNoLinkageFinder::VisitRValueReferenceType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003936 const RValueReferenceType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003937 return Visit(T->getPointeeType());
3938}
3939
3940bool UnnamedLocalNoLinkageFinder::VisitMemberPointerType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003941 const MemberPointerType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003942 return Visit(T->getPointeeType()) || Visit(QualType(T->getClass(), 0));
3943}
3944
3945bool UnnamedLocalNoLinkageFinder::VisitConstantArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003946 const ConstantArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003947 return Visit(T->getElementType());
3948}
3949
3950bool UnnamedLocalNoLinkageFinder::VisitIncompleteArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003951 const IncompleteArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003952 return Visit(T->getElementType());
3953}
3954
3955bool UnnamedLocalNoLinkageFinder::VisitVariableArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003956 const VariableArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003957 return Visit(T->getElementType());
3958}
3959
3960bool UnnamedLocalNoLinkageFinder::VisitDependentSizedArrayType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003961 const DependentSizedArrayType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003962 return Visit(T->getElementType());
3963}
3964
3965bool UnnamedLocalNoLinkageFinder::VisitDependentSizedExtVectorType(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003966 const DependentSizedExtVectorType* T) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003967 return Visit(T->getElementType());
3968}
3969
3970bool UnnamedLocalNoLinkageFinder::VisitVectorType(const VectorType* T) {
3971 return Visit(T->getElementType());
3972}
3973
3974bool UnnamedLocalNoLinkageFinder::VisitExtVectorType(const ExtVectorType* T) {
3975 return Visit(T->getElementType());
3976}
3977
3978bool UnnamedLocalNoLinkageFinder::VisitFunctionProtoType(
3979 const FunctionProtoType* T) {
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00003980 for (const auto &A : T->param_types()) {
3981 if (Visit(A))
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003982 return true;
3983 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003984
Alp Toker314cc812014-01-25 16:55:45 +00003985 return Visit(T->getReturnType());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003986}
3987
3988bool UnnamedLocalNoLinkageFinder::VisitFunctionNoProtoType(
3989 const FunctionNoProtoType* T) {
Alp Toker314cc812014-01-25 16:55:45 +00003990 return Visit(T->getReturnType());
Douglas Gregor7731d3f2010-10-13 00:27:52 +00003991}
3992
3993bool UnnamedLocalNoLinkageFinder::VisitUnresolvedUsingType(
3994 const UnresolvedUsingType*) {
3995 return false;
3996}
3997
3998bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) {
3999 return false;
4000}
4001
4002bool UnnamedLocalNoLinkageFinder::VisitTypeOfType(const TypeOfType* T) {
4003 return Visit(T->getUnderlyingType());
4004}
4005
4006bool UnnamedLocalNoLinkageFinder::VisitDecltypeType(const DecltypeType*) {
4007 return false;
4008}
4009
Alexis Hunte852b102011-05-24 22:41:36 +00004010bool UnnamedLocalNoLinkageFinder::VisitUnaryTransformType(
4011 const UnaryTransformType*) {
4012 return false;
4013}
4014
Richard Smith30482bc2011-02-20 03:19:35 +00004015bool UnnamedLocalNoLinkageFinder::VisitAutoType(const AutoType *T) {
4016 return Visit(T->getDeducedType());
4017}
4018
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004019bool UnnamedLocalNoLinkageFinder::VisitRecordType(const RecordType* T) {
4020 return VisitTagDecl(T->getDecl());
4021}
4022
4023bool UnnamedLocalNoLinkageFinder::VisitEnumType(const EnumType* T) {
4024 return VisitTagDecl(T->getDecl());
4025}
4026
4027bool UnnamedLocalNoLinkageFinder::VisitTemplateTypeParmType(
4028 const TemplateTypeParmType*) {
4029 return false;
4030}
4031
Douglas Gregorada4b792011-01-14 02:55:32 +00004032bool UnnamedLocalNoLinkageFinder::VisitSubstTemplateTypeParmPackType(
4033 const SubstTemplateTypeParmPackType *) {
4034 return false;
4035}
4036
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004037bool UnnamedLocalNoLinkageFinder::VisitTemplateSpecializationType(
4038 const TemplateSpecializationType*) {
4039 return false;
4040}
4041
4042bool UnnamedLocalNoLinkageFinder::VisitInjectedClassNameType(
4043 const InjectedClassNameType* T) {
4044 return VisitTagDecl(T->getDecl());
4045}
4046
4047bool UnnamedLocalNoLinkageFinder::VisitDependentNameType(
4048 const DependentNameType* T) {
4049 return VisitNestedNameSpecifier(T->getQualifier());
4050}
4051
4052bool UnnamedLocalNoLinkageFinder::VisitDependentTemplateSpecializationType(
4053 const DependentTemplateSpecializationType* T) {
4054 return VisitNestedNameSpecifier(T->getQualifier());
4055}
4056
Douglas Gregord2fa7662010-12-20 02:24:11 +00004057bool UnnamedLocalNoLinkageFinder::VisitPackExpansionType(
4058 const PackExpansionType* T) {
4059 return Visit(T->getPattern());
4060}
4061
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004062bool UnnamedLocalNoLinkageFinder::VisitObjCObjectType(const ObjCObjectType *) {
4063 return false;
4064}
4065
4066bool UnnamedLocalNoLinkageFinder::VisitObjCInterfaceType(
4067 const ObjCInterfaceType *) {
4068 return false;
4069}
4070
4071bool UnnamedLocalNoLinkageFinder::VisitObjCObjectPointerType(
4072 const ObjCObjectPointerType *) {
4073 return false;
4074}
4075
Eli Friedman0dfb8892011-10-06 23:00:33 +00004076bool UnnamedLocalNoLinkageFinder::VisitAtomicType(const AtomicType* T) {
4077 return Visit(T->getValueType());
4078}
4079
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004080bool UnnamedLocalNoLinkageFinder::VisitTagDecl(const TagDecl *Tag) {
4081 if (Tag->getDeclContext()->isFunctionOrMethod()) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004082 S.Diag(SR.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004083 S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00004084 diag::warn_cxx98_compat_template_arg_local_type :
4085 diag::ext_template_arg_local_type)
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004086 << S.Context.getTypeDeclType(Tag) << SR;
4087 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004088 }
4089
John McCall5ea95772013-03-09 00:54:27 +00004090 if (!Tag->hasNameForLinkage()) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004091 S.Diag(SR.getBegin(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004092 S.getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00004093 diag::warn_cxx98_compat_template_arg_unnamed_type :
4094 diag::ext_template_arg_unnamed_type) << SR;
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004095 S.Diag(Tag->getLocation(), diag::note_template_unnamed_type_here);
4096 return true;
4097 }
4098
4099 return false;
4100}
4101
4102bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier(
4103 NestedNameSpecifier *NNS) {
4104 if (NNS->getPrefix() && VisitNestedNameSpecifier(NNS->getPrefix()))
4105 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004106
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004107 switch (NNS->getKind()) {
4108 case NestedNameSpecifier::Identifier:
4109 case NestedNameSpecifier::Namespace:
Douglas Gregor7b26ff92011-02-24 02:36:08 +00004110 case NestedNameSpecifier::NamespaceAlias:
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004111 case NestedNameSpecifier::Global:
Nikola Smiljanic67860242014-09-26 00:28:20 +00004112 case NestedNameSpecifier::Super:
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004113 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004114
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004115 case NestedNameSpecifier::TypeSpec:
4116 case NestedNameSpecifier::TypeSpecWithTemplate:
4117 return Visit(QualType(NNS->getAsType(), 0));
4118 }
David Blaikie8a40f702012-01-17 06:56:22 +00004119 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004120}
4121
4122
Douglas Gregord32e0282009-02-09 23:23:08 +00004123/// \brief Check a template argument against its corresponding
4124/// template type parameter.
4125///
4126/// This routine implements the semantics of C++ [temp.arg.type]. It
4127/// returns true if an error occurred, and false otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00004128bool Sema::CheckTemplateArgument(TemplateTypeParmDecl *Param,
John McCallbcd03502009-12-07 02:54:59 +00004129 TypeSourceInfo *ArgInfo) {
4130 assert(ArgInfo && "invalid TypeSourceInfo");
John McCall0ad16662009-10-29 08:12:44 +00004131 QualType Arg = ArgInfo->getType();
Douglas Gregor959d5a02010-05-22 16:17:30 +00004132 SourceRange SR = ArgInfo->getTypeLoc().getSourceRange();
Chandler Carruth9bb67f42010-09-03 21:12:34 +00004133
4134 if (Arg->isVariablyModifiedType()) {
4135 return Diag(SR.getBegin(), diag::err_variably_modified_template_arg) << Arg;
Douglas Gregor8364e6b2009-12-21 23:17:24 +00004136 } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
Douglas Gregor8364e6b2009-12-21 23:17:24 +00004137 return Diag(SR.getBegin(), diag::err_template_arg_overload_type) << SR;
Douglas Gregord32e0282009-02-09 23:23:08 +00004138 }
4139
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004140 // C++03 [temp.arg.type]p2:
4141 // A local type, a type with no linkage, an unnamed type or a type
4142 // compounded from any of these types shall not be used as a
4143 // template-argument for a template type-parameter.
4144 //
Richard Smith0bf8a4922011-10-18 20:49:44 +00004145 // C++11 allows these, and even in C++03 we allow them as an extension with
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004146 // a warning.
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00004147 bool NeedsCheck;
4148 if (LangOpts.CPlusPlus11)
4149 NeedsCheck =
4150 !Diags.isIgnored(diag::warn_cxx98_compat_template_arg_unnamed_type,
4151 SR.getBegin()) ||
4152 !Diags.isIgnored(diag::warn_cxx98_compat_template_arg_local_type,
4153 SR.getBegin());
4154 else
4155 NeedsCheck = Arg->hasUnnamedOrLocalType();
4156
4157 if (NeedsCheck) {
Douglas Gregor7731d3f2010-10-13 00:27:52 +00004158 UnnamedLocalNoLinkageFinder Finder(*this, SR);
4159 (void)Finder.Visit(Context.getCanonicalType(Arg));
4160 }
4161
Douglas Gregord32e0282009-02-09 23:23:08 +00004162 return false;
4163}
4164
Douglas Gregor20fdef32012-04-10 17:08:25 +00004165enum NullPointerValueKind {
4166 NPV_NotNullPointer,
4167 NPV_NullPointer,
4168 NPV_Error
4169};
4170
4171/// \brief Determine whether the given template argument is a null pointer
4172/// value of the appropriate type.
4173static NullPointerValueKind
4174isNullPointerValueTemplateArgument(Sema &S, NonTypeTemplateParmDecl *Param,
4175 QualType ParamType, Expr *Arg) {
4176 if (Arg->isValueDependent() || Arg->isTypeDependent())
4177 return NPV_NotNullPointer;
4178
David Majnemer5c734ad2014-08-14 00:49:23 +00004179 if (!S.getLangOpts().CPlusPlus11)
Douglas Gregor20fdef32012-04-10 17:08:25 +00004180 return NPV_NotNullPointer;
4181
4182 // Determine whether we have a constant expression.
Douglas Gregor350880c2012-04-10 19:03:30 +00004183 ExprResult ArgRV = S.DefaultFunctionArrayConversion(Arg);
4184 if (ArgRV.isInvalid())
4185 return NPV_Error;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004186 Arg = ArgRV.get();
Douglas Gregor350880c2012-04-10 19:03:30 +00004187
Douglas Gregor20fdef32012-04-10 17:08:25 +00004188 Expr::EvalResult EvalResult;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004189 SmallVector<PartialDiagnosticAt, 8> Notes;
Douglas Gregor350880c2012-04-10 19:03:30 +00004190 EvalResult.Diag = &Notes;
Douglas Gregor20fdef32012-04-10 17:08:25 +00004191 if (!Arg->EvaluateAsRValue(EvalResult, S.Context) ||
Douglas Gregor350880c2012-04-10 19:03:30 +00004192 EvalResult.HasSideEffects) {
4193 SourceLocation DiagLoc = Arg->getExprLoc();
4194
4195 // If our only note is the usual "invalid subexpression" note, just point
4196 // the caret at its location rather than producing an essentially
4197 // redundant note.
4198 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
4199 diag::note_invalid_subexpr_in_const_expr) {
4200 DiagLoc = Notes[0].first;
4201 Notes.clear();
4202 }
4203
4204 S.Diag(DiagLoc, diag::err_template_arg_not_address_constant)
4205 << Arg->getType() << Arg->getSourceRange();
4206 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
4207 S.Diag(Notes[I].first, Notes[I].second);
4208
4209 S.Diag(Param->getLocation(), diag::note_template_param_here);
4210 return NPV_Error;
4211 }
Douglas Gregor20fdef32012-04-10 17:08:25 +00004212
4213 // C++11 [temp.arg.nontype]p1:
4214 // - an address constant expression of type std::nullptr_t
4215 if (Arg->getType()->isNullPtrType())
4216 return NPV_NullPointer;
4217
4218 // - a constant expression that evaluates to a null pointer value (4.10); or
4219 // - a constant expression that evaluates to a null member pointer value
4220 // (4.11); or
4221 if ((EvalResult.Val.isLValue() && !EvalResult.Val.getLValueBase()) ||
4222 (EvalResult.Val.isMemberPointer() &&
4223 !EvalResult.Val.getMemberPointerDecl())) {
4224 // If our expression has an appropriate type, we've succeeded.
4225 bool ObjCLifetimeConversion;
4226 if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) ||
4227 S.IsQualificationConversion(Arg->getType(), ParamType, false,
4228 ObjCLifetimeConversion))
4229 return NPV_NullPointer;
4230
4231 // The types didn't match, but we know we got a null pointer; complain,
4232 // then recover as if the types were correct.
4233 S.Diag(Arg->getExprLoc(), diag::err_template_arg_wrongtype_null_constant)
4234 << Arg->getType() << ParamType << Arg->getSourceRange();
4235 S.Diag(Param->getLocation(), diag::note_template_param_here);
4236 return NPV_NullPointer;
4237 }
4238
4239 // If we don't have a null pointer value, but we do have a NULL pointer
4240 // constant, suggest a cast to the appropriate type.
4241 if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) {
4242 std::string Code = "static_cast<" + ParamType.getAsString() + ">(";
4243 S.Diag(Arg->getExprLoc(), diag::err_template_arg_untyped_null_constant)
Alp Tokerb6cc5922014-05-03 03:45:55 +00004244 << ParamType << FixItHint::CreateInsertion(Arg->getLocStart(), Code)
4245 << FixItHint::CreateInsertion(S.getLocForEndOfToken(Arg->getLocEnd()),
4246 ")");
Douglas Gregor20fdef32012-04-10 17:08:25 +00004247 S.Diag(Param->getLocation(), diag::note_template_param_here);
4248 return NPV_NullPointer;
4249 }
4250
4251 // FIXME: If we ever want to support general, address-constant expressions
4252 // as non-type template arguments, we should return the ExprResult here to
4253 // be interpreted by the caller.
4254 return NPV_NotNullPointer;
4255}
4256
David Majnemer61c39a12013-08-23 05:39:39 +00004257/// \brief Checks whether the given template argument is compatible with its
4258/// template parameter.
4259static bool CheckTemplateArgumentIsCompatibleWithParameter(
4260 Sema &S, NonTypeTemplateParmDecl *Param, QualType ParamType, Expr *ArgIn,
4261 Expr *Arg, QualType ArgType) {
4262 bool ObjCLifetimeConversion;
4263 if (ParamType->isPointerType() &&
4264 !ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType() &&
4265 S.IsQualificationConversion(ArgType, ParamType, false,
4266 ObjCLifetimeConversion)) {
4267 // For pointer-to-object types, qualification conversions are
4268 // permitted.
4269 } else {
4270 if (const ReferenceType *ParamRef = ParamType->getAs<ReferenceType>()) {
4271 if (!ParamRef->getPointeeType()->isFunctionType()) {
4272 // C++ [temp.arg.nontype]p5b3:
4273 // For a non-type template-parameter of type reference to
4274 // object, no conversions apply. The type referred to by the
4275 // reference may be more cv-qualified than the (otherwise
4276 // identical) type of the template- argument. The
4277 // template-parameter is bound directly to the
4278 // template-argument, which shall be an lvalue.
4279
4280 // FIXME: Other qualifiers?
4281 unsigned ParamQuals = ParamRef->getPointeeType().getCVRQualifiers();
4282 unsigned ArgQuals = ArgType.getCVRQualifiers();
4283
4284 if ((ParamQuals | ArgQuals) != ParamQuals) {
4285 S.Diag(Arg->getLocStart(),
4286 diag::err_template_arg_ref_bind_ignores_quals)
4287 << ParamType << Arg->getType() << Arg->getSourceRange();
4288 S.Diag(Param->getLocation(), diag::note_template_param_here);
4289 return true;
4290 }
4291 }
4292 }
4293
4294 // At this point, the template argument refers to an object or
4295 // function with external linkage. We now need to check whether the
4296 // argument and parameter types are compatible.
4297 if (!S.Context.hasSameUnqualifiedType(ArgType,
4298 ParamType.getNonReferenceType())) {
4299 // We can't perform this conversion or binding.
4300 if (ParamType->isReferenceType())
4301 S.Diag(Arg->getLocStart(), diag::err_template_arg_no_ref_bind)
4302 << ParamType << ArgIn->getType() << Arg->getSourceRange();
4303 else
4304 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4305 << ArgIn->getType() << ParamType << Arg->getSourceRange();
4306 S.Diag(Param->getLocation(), diag::note_template_param_here);
4307 return true;
4308 }
4309 }
4310
4311 return false;
4312}
4313
Douglas Gregorccb07762009-02-11 19:52:55 +00004314/// \brief Checks whether the given template argument is the address
4315/// of an object or function according to C++ [temp.arg.nontype]p1.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004316static bool
Douglas Gregorb242683d2010-04-01 18:32:35 +00004317CheckTemplateArgumentAddressOfObjectOrFunction(Sema &S,
4318 NonTypeTemplateParmDecl *Param,
4319 QualType ParamType,
4320 Expr *ArgIn,
4321 TemplateArgument &Converted) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004322 bool Invalid = false;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004323 Expr *Arg = ArgIn;
4324 QualType ArgType = Arg->getType();
Douglas Gregorccb07762009-02-11 19:52:55 +00004325
Douglas Gregorb242683d2010-04-01 18:32:35 +00004326 bool AddressTaken = false;
4327 SourceLocation AddrOpLoc;
David Majnemer61c39a12013-08-23 05:39:39 +00004328 if (S.getLangOpts().MicrosoftExt) {
4329 // Microsoft Visual C++ strips all casts, allows an arbitrary number of
4330 // dereference and address-of operators.
4331 Arg = Arg->IgnoreParenCasts();
4332
4333 bool ExtWarnMSTemplateArg = false;
4334 UnaryOperatorKind FirstOpKind;
4335 SourceLocation FirstOpLoc;
4336 while (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4337 UnaryOperatorKind UnOpKind = UnOp->getOpcode();
4338 if (UnOpKind == UO_Deref)
4339 ExtWarnMSTemplateArg = true;
4340 if (UnOpKind == UO_AddrOf || UnOpKind == UO_Deref) {
4341 Arg = UnOp->getSubExpr()->IgnoreParenCasts();
4342 if (!AddrOpLoc.isValid()) {
4343 FirstOpKind = UnOpKind;
4344 FirstOpLoc = UnOp->getOperatorLoc();
4345 }
4346 } else
4347 break;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004348 }
David Majnemer61c39a12013-08-23 05:39:39 +00004349 if (FirstOpLoc.isValid()) {
4350 if (ExtWarnMSTemplateArg)
4351 S.Diag(ArgIn->getLocStart(), diag::ext_ms_deref_template_argument)
4352 << ArgIn->getSourceRange();
John McCall7c454bb2011-07-15 05:09:51 +00004353
David Majnemer61c39a12013-08-23 05:39:39 +00004354 if (FirstOpKind == UO_AddrOf)
4355 AddressTaken = true;
4356 else if (Arg->getType()->isPointerType()) {
4357 // We cannot let pointers get dereferenced here, that is obviously not a
4358 // constant expression.
4359 assert(FirstOpKind == UO_Deref);
4360 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4361 << Arg->getSourceRange();
4362 }
4363 }
4364 } else {
4365 // See through any implicit casts we added to fix the type.
4366 Arg = Arg->IgnoreImpCasts();
John McCall7c454bb2011-07-15 05:09:51 +00004367
David Majnemer61c39a12013-08-23 05:39:39 +00004368 // C++ [temp.arg.nontype]p1:
4369 //
4370 // A template-argument for a non-type, non-template
4371 // template-parameter shall be one of: [...]
4372 //
4373 // -- the address of an object or function with external
4374 // linkage, including function templates and function
4375 // template-ids but excluding non-static class members,
4376 // expressed as & id-expression where the & is optional if
4377 // the name refers to a function or array, or if the
4378 // corresponding template-parameter is a reference; or
4379
4380 // In C++98/03 mode, give an extension warning on any extra parentheses.
4381 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4382 bool ExtraParens = false;
4383 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
4384 if (!Invalid && !ExtraParens) {
4385 S.Diag(Arg->getLocStart(),
4386 S.getLangOpts().CPlusPlus11
4387 ? diag::warn_cxx98_compat_template_arg_extra_parens
4388 : diag::ext_template_arg_extra_parens)
4389 << Arg->getSourceRange();
4390 ExtraParens = true;
4391 }
4392
4393 Arg = Parens->getSubExpr();
4394 }
4395
4396 while (SubstNonTypeTemplateParmExpr *subst =
4397 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4398 Arg = subst->getReplacement()->IgnoreImpCasts();
4399
4400 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
4401 if (UnOp->getOpcode() == UO_AddrOf) {
4402 Arg = UnOp->getSubExpr();
4403 AddressTaken = true;
4404 AddrOpLoc = UnOp->getOperatorLoc();
4405 }
4406 }
4407
4408 while (SubstNonTypeTemplateParmExpr *subst =
4409 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4410 Arg = subst->getReplacement()->IgnoreImpCasts();
4411 }
John McCall7c454bb2011-07-15 05:09:51 +00004412
David Majnemer07910d62014-06-26 07:48:46 +00004413 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arg);
4414 ValueDecl *Entity = DRE ? DRE->getDecl() : nullptr;
4415
4416 // If our parameter has pointer type, check for a null template value.
4417 if (ParamType->isPointerType() || ParamType->isNullPtrType()) {
4418 NullPointerValueKind NPV;
4419 // dllimport'd entities aren't constant but are available inside of template
4420 // arguments.
4421 if (Entity && Entity->hasAttr<DLLImportAttr>())
4422 NPV = NPV_NotNullPointer;
4423 else
4424 NPV = isNullPointerValueTemplateArgument(S, Param, ParamType, ArgIn);
4425 switch (NPV) {
4426 case NPV_NullPointer:
4427 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00004428 Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4429 /*isNullPtr=*/true);
David Majnemer07910d62014-06-26 07:48:46 +00004430 return false;
4431
4432 case NPV_Error:
4433 return true;
4434
4435 case NPV_NotNullPointer:
4436 break;
4437 }
4438 }
4439
Chandler Carruth724a8a12010-01-31 10:01:20 +00004440 // Stop checking the precise nature of the argument if it is value dependent,
4441 // it should be checked when instantiated.
Douglas Gregorb242683d2010-04-01 18:32:35 +00004442 if (Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004443 Converted = TemplateArgument(ArgIn);
Chandler Carruth724a8a12010-01-31 10:01:20 +00004444 return false;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004445 }
David Majnemer61c39a12013-08-23 05:39:39 +00004446
4447 if (isa<CXXUuidofExpr>(Arg)) {
4448 if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType,
4449 ArgIn, Arg, ArgType))
4450 return true;
4451
4452 Converted = TemplateArgument(ArgIn);
4453 return false;
4454 }
4455
Douglas Gregor31f55dc2012-04-06 22:40:38 +00004456 if (!DRE) {
4457 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_decl_ref)
4458 << Arg->getSourceRange();
4459 S.Diag(Param->getLocation(), diag::note_template_param_here);
4460 return true;
4461 }
Chandler Carruth724a8a12010-01-31 10:01:20 +00004462
Douglas Gregorccb07762009-02-11 19:52:55 +00004463 // Cannot refer to non-static data members
David Majnemer6bedcfa2013-10-26 06:12:44 +00004464 if (isa<FieldDecl>(Entity) || isa<IndirectFieldDecl>(Entity)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004465 S.Diag(Arg->getLocStart(), diag::err_template_arg_field)
David Majnemer6bedcfa2013-10-26 06:12:44 +00004466 << Entity << Arg->getSourceRange();
Douglas Gregorb242683d2010-04-01 18:32:35 +00004467 S.Diag(Param->getLocation(), diag::note_template_param_here);
4468 return true;
4469 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004470
4471 // Cannot refer to non-static member functions
Richard Smith9380e0e2012-04-04 21:11:30 +00004472 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Entity)) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004473 if (!Method->isStatic()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004474 S.Diag(Arg->getLocStart(), diag::err_template_arg_method)
Douglas Gregorccb07762009-02-11 19:52:55 +00004475 << Method << Arg->getSourceRange();
Douglas Gregorb242683d2010-04-01 18:32:35 +00004476 S.Diag(Param->getLocation(), diag::note_template_param_here);
4477 return true;
4478 }
Richard Smith9380e0e2012-04-04 21:11:30 +00004479 }
Mike Stump11289f42009-09-09 15:08:12 +00004480
Richard Smith9380e0e2012-04-04 21:11:30 +00004481 FunctionDecl *Func = dyn_cast<FunctionDecl>(Entity);
4482 VarDecl *Var = dyn_cast<VarDecl>(Entity);
Douglas Gregorccb07762009-02-11 19:52:55 +00004483
Richard Smith9380e0e2012-04-04 21:11:30 +00004484 // A non-type template argument must refer to an object or function.
4485 if (!Func && !Var) {
4486 // We found something, but we don't know specifically what it is.
4487 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_object_or_func)
4488 << Arg->getSourceRange();
4489 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
4490 return true;
4491 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004492
Richard Smith9380e0e2012-04-04 21:11:30 +00004493 // Address / reference template args must have external linkage in C++98.
Rafael Espindola3ae00052013-05-13 00:12:11 +00004494 if (Entity->getFormalLinkage() == InternalLinkage) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004495 S.Diag(Arg->getLocStart(), S.getLangOpts().CPlusPlus11 ?
Richard Smith9380e0e2012-04-04 21:11:30 +00004496 diag::warn_cxx98_compat_template_arg_object_internal :
4497 diag::ext_template_arg_object_internal)
4498 << !Func << Entity << Arg->getSourceRange();
4499 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4500 << !Func;
Rafael Espindola3ae00052013-05-13 00:12:11 +00004501 } else if (!Entity->hasLinkage()) {
Richard Smith9380e0e2012-04-04 21:11:30 +00004502 S.Diag(Arg->getLocStart(), diag::err_template_arg_object_no_linkage)
4503 << !Func << Entity << Arg->getSourceRange();
4504 S.Diag(Entity->getLocation(), diag::note_template_arg_internal_object)
4505 << !Func;
4506 return true;
4507 }
4508
4509 if (Func) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004510 // If the template parameter has pointer type, the function decays.
4511 if (ParamType->isPointerType() && !AddressTaken)
4512 ArgType = S.Context.getPointerType(Func->getType());
4513 else if (AddressTaken && ParamType->isReferenceType()) {
4514 // If we originally had an address-of operator, but the
4515 // parameter has reference type, complain and (if things look
4516 // like they will work) drop the address-of operator.
4517 if (!S.Context.hasSameUnqualifiedType(Func->getType(),
4518 ParamType.getNonReferenceType())) {
4519 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4520 << ParamType;
4521 S.Diag(Param->getLocation(), diag::note_template_param_here);
4522 return true;
4523 }
4524
4525 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4526 << ParamType
4527 << FixItHint::CreateRemoval(AddrOpLoc);
4528 S.Diag(Param->getLocation(), diag::note_template_param_here);
4529
4530 ArgType = Func->getType();
4531 }
Richard Smith9380e0e2012-04-04 21:11:30 +00004532 } else {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004533 // A value of reference type is not an object.
4534 if (Var->getType()->isReferenceType()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004535 S.Diag(Arg->getLocStart(),
Douglas Gregorb242683d2010-04-01 18:32:35 +00004536 diag::err_template_arg_reference_var)
4537 << Var->getType() << Arg->getSourceRange();
4538 S.Diag(Param->getLocation(), diag::note_template_param_here);
4539 return true;
4540 }
4541
Richard Smith9380e0e2012-04-04 21:11:30 +00004542 // A template argument must have static storage duration.
Richard Smithfd3834f2013-04-13 02:43:54 +00004543 if (Var->getTLSKind()) {
Richard Smith9380e0e2012-04-04 21:11:30 +00004544 S.Diag(Arg->getLocStart(), diag::err_template_arg_thread_local)
4545 << Arg->getSourceRange();
4546 S.Diag(Var->getLocation(), diag::note_template_arg_refers_here);
4547 return true;
4548 }
Douglas Gregorb242683d2010-04-01 18:32:35 +00004549
4550 // If the template parameter has pointer type, we must have taken
4551 // the address of this object.
4552 if (ParamType->isReferenceType()) {
4553 if (AddressTaken) {
4554 // If we originally had an address-of operator, but the
4555 // parameter has reference type, complain and (if things look
4556 // like they will work) drop the address-of operator.
4557 if (!S.Context.hasSameUnqualifiedType(Var->getType(),
4558 ParamType.getNonReferenceType())) {
4559 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4560 << ParamType;
4561 S.Diag(Param->getLocation(), diag::note_template_param_here);
4562 return true;
4563 }
4564
4565 S.Diag(AddrOpLoc, diag::err_template_arg_address_of_non_pointer)
4566 << ParamType
4567 << FixItHint::CreateRemoval(AddrOpLoc);
4568 S.Diag(Param->getLocation(), diag::note_template_param_here);
4569
4570 ArgType = Var->getType();
4571 }
4572 } else if (!AddressTaken && ParamType->isPointerType()) {
4573 if (Var->getType()->isArrayType()) {
4574 // Array-to-pointer decay.
4575 ArgType = S.Context.getArrayDecayedType(Var->getType());
4576 } else {
4577 // If the template parameter has pointer type but the address of
4578 // this object was not taken, complain and (possibly) recover by
4579 // taking the address of the entity.
4580 ArgType = S.Context.getPointerType(Var->getType());
4581 if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
4582 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4583 << ParamType;
4584 S.Diag(Param->getLocation(), diag::note_template_param_here);
4585 return true;
4586 }
4587
4588 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_address_of)
4589 << ParamType
4590 << FixItHint::CreateInsertion(Arg->getLocStart(), "&");
4591
4592 S.Diag(Param->getLocation(), diag::note_template_param_here);
4593 }
4594 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004595 }
Mike Stump11289f42009-09-09 15:08:12 +00004596
David Majnemer61c39a12013-08-23 05:39:39 +00004597 if (CheckTemplateArgumentIsCompatibleWithParameter(S, Param, ParamType, ArgIn,
4598 Arg, ArgType))
4599 return true;
Douglas Gregorb242683d2010-04-01 18:32:35 +00004600
4601 // Create the template argument.
David Blaikie0f62c8d2014-10-16 04:21:25 +00004602 Converted =
4603 TemplateArgument(cast<ValueDecl>(Entity->getCanonicalDecl()), ParamType);
Nick Lewycky45b50522013-02-02 00:25:55 +00004604 S.MarkAnyDeclReferenced(Arg->getLocStart(), Entity, false);
Douglas Gregorb242683d2010-04-01 18:32:35 +00004605 return false;
Douglas Gregorccb07762009-02-11 19:52:55 +00004606}
4607
4608/// \brief Checks whether the given template argument is a pointer to
4609/// member constant according to C++ [temp.arg.nontype]p1.
Douglas Gregor20fdef32012-04-10 17:08:25 +00004610static bool CheckTemplateArgumentPointerToMember(Sema &S,
4611 NonTypeTemplateParmDecl *Param,
4612 QualType ParamType,
4613 Expr *&ResultArg,
4614 TemplateArgument &Converted) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004615 bool Invalid = false;
4616
Douglas Gregor20fdef32012-04-10 17:08:25 +00004617 // Check for a null pointer value.
4618 Expr *Arg = ResultArg;
4619 switch (isNullPointerValueTemplateArgument(S, Param, ParamType, Arg)) {
4620 case NPV_Error:
4621 return true;
4622 case NPV_NullPointer:
Richard Smithbc8c5b52012-04-26 01:51:03 +00004623 S.Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00004624 Converted = TemplateArgument(S.Context.getCanonicalType(ParamType),
4625 /*isNullPtr*/true);
David Majnemer763584d2014-02-06 10:59:19 +00004626 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft())
4627 S.RequireCompleteType(Arg->getExprLoc(), ParamType, 0);
Douglas Gregor20fdef32012-04-10 17:08:25 +00004628 return false;
4629 case NPV_NotNullPointer:
4630 break;
4631 }
4632
4633 bool ObjCLifetimeConversion;
4634 if (S.IsQualificationConversion(Arg->getType(),
4635 ParamType.getNonReferenceType(),
4636 false, ObjCLifetimeConversion)) {
4637 Arg = S.ImpCastExprToType(Arg, ParamType, CK_NoOp,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004638 Arg->getValueKind()).get();
Douglas Gregor20fdef32012-04-10 17:08:25 +00004639 ResultArg = Arg;
4640 } else if (!S.Context.hasSameUnqualifiedType(Arg->getType(),
4641 ParamType.getNonReferenceType())) {
4642 // We can't perform this conversion.
4643 S.Diag(Arg->getLocStart(), diag::err_template_arg_not_convertible)
4644 << Arg->getType() << ParamType << Arg->getSourceRange();
4645 S.Diag(Param->getLocation(), diag::note_template_param_here);
4646 return true;
4647 }
4648
Douglas Gregorccb07762009-02-11 19:52:55 +00004649 // See through any implicit casts we added to fix the type.
Eli Friedman06ed2a52009-10-20 08:27:19 +00004650 while (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(Arg))
Douglas Gregorccb07762009-02-11 19:52:55 +00004651 Arg = Cast->getSubExpr();
4652
4653 // C++ [temp.arg.nontype]p1:
Mike Stump11289f42009-09-09 15:08:12 +00004654 //
Douglas Gregorccb07762009-02-11 19:52:55 +00004655 // A template-argument for a non-type, non-template
4656 // template-parameter shall be one of: [...]
4657 //
4658 // -- a pointer to member expressed as described in 5.3.1.
Craig Topperc3ec1492014-05-26 06:22:03 +00004659 DeclRefExpr *DRE = nullptr;
Douglas Gregorccb07762009-02-11 19:52:55 +00004660
Abramo Bagnara6a0c4092010-09-13 06:06:58 +00004661 // In C++98/03 mode, give an extension warning on any extra parentheses.
4662 // See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#773
4663 bool ExtraParens = false;
Douglas Gregorccb07762009-02-11 19:52:55 +00004664 while (ParenExpr *Parens = dyn_cast<ParenExpr>(Arg)) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00004665 if (!Invalid && !ExtraParens) {
Douglas Gregor20fdef32012-04-10 17:08:25 +00004666 S.Diag(Arg->getLocStart(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004667 S.getLangOpts().CPlusPlus11 ?
Douglas Gregor20fdef32012-04-10 17:08:25 +00004668 diag::warn_cxx98_compat_template_arg_extra_parens :
4669 diag::ext_template_arg_extra_parens)
Douglas Gregorccb07762009-02-11 19:52:55 +00004670 << Arg->getSourceRange();
Abramo Bagnara6a0c4092010-09-13 06:06:58 +00004671 ExtraParens = true;
Douglas Gregorccb07762009-02-11 19:52:55 +00004672 }
4673
4674 Arg = Parens->getSubExpr();
4675 }
4676
John McCall7c454bb2011-07-15 05:09:51 +00004677 while (SubstNonTypeTemplateParmExpr *subst =
4678 dyn_cast<SubstNonTypeTemplateParmExpr>(Arg))
4679 Arg = subst->getReplacement()->IgnoreImpCasts();
4680
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004681 // A pointer-to-member constant written &Class::member.
4682 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(Arg)) {
John McCalle3027922010-08-25 11:45:40 +00004683 if (UnOp->getOpcode() == UO_AddrOf) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +00004684 DRE = dyn_cast<DeclRefExpr>(UnOp->getSubExpr());
4685 if (DRE && !DRE->getQualifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00004686 DRE = nullptr;
Douglas Gregor4bd90e52009-10-23 18:54:35 +00004687 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004688 }
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004689 // A constant of pointer-to-member type.
4690 else if ((DRE = dyn_cast<DeclRefExpr>(Arg))) {
4691 if (ValueDecl *VD = dyn_cast<ValueDecl>(DRE->getDecl())) {
4692 if (VD->getType()->isMemberPointerType()) {
David Majnemercd053cd2013-12-10 00:40:58 +00004693 if (isa<NonTypeTemplateParmDecl>(VD)) {
Eli Friedmanb826a002012-09-26 02:36:12 +00004694 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004695 Converted = TemplateArgument(Arg);
Eli Friedmanb826a002012-09-26 02:36:12 +00004696 } else {
4697 VD = cast<ValueDecl>(VD->getCanonicalDecl());
David Blaikie0f62c8d2014-10-16 04:21:25 +00004698 Converted = TemplateArgument(VD, ParamType);
Eli Friedmanb826a002012-09-26 02:36:12 +00004699 }
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004700 return Invalid;
4701 }
4702 }
4703 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004704
Craig Topperc3ec1492014-05-26 06:22:03 +00004705 DRE = nullptr;
Douglas Gregor49ba3ca2009-11-12 18:38:13 +00004706 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004707
Douglas Gregorccb07762009-02-11 19:52:55 +00004708 if (!DRE)
Douglas Gregor20fdef32012-04-10 17:08:25 +00004709 return S.Diag(Arg->getLocStart(),
4710 diag::err_template_arg_not_pointer_to_member_form)
Douglas Gregorccb07762009-02-11 19:52:55 +00004711 << Arg->getSourceRange();
4712
David Majnemer3ac84e62013-10-22 21:56:38 +00004713 if (isa<FieldDecl>(DRE->getDecl()) ||
4714 isa<IndirectFieldDecl>(DRE->getDecl()) ||
4715 isa<CXXMethodDecl>(DRE->getDecl())) {
Douglas Gregorccb07762009-02-11 19:52:55 +00004716 assert((isa<FieldDecl>(DRE->getDecl()) ||
David Majnemer3ac84e62013-10-22 21:56:38 +00004717 isa<IndirectFieldDecl>(DRE->getDecl()) ||
Douglas Gregorccb07762009-02-11 19:52:55 +00004718 !cast<CXXMethodDecl>(DRE->getDecl())->isStatic()) &&
4719 "Only non-static member pointers can make it here");
4720
4721 // Okay: this is the address of a non-static member, and therefore
4722 // a member pointer constant.
Eli Friedmanb826a002012-09-26 02:36:12 +00004723 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
John McCallc3007a22010-10-26 07:05:15 +00004724 Converted = TemplateArgument(Arg);
Eli Friedmanb826a002012-09-26 02:36:12 +00004725 } else {
4726 ValueDecl *D = cast<ValueDecl>(DRE->getDecl()->getCanonicalDecl());
David Blaikie0f62c8d2014-10-16 04:21:25 +00004727 Converted = TemplateArgument(D, ParamType);
Eli Friedmanb826a002012-09-26 02:36:12 +00004728 }
Douglas Gregorccb07762009-02-11 19:52:55 +00004729 return Invalid;
4730 }
4731
4732 // We found something else, but we don't know specifically what it is.
Douglas Gregor20fdef32012-04-10 17:08:25 +00004733 S.Diag(Arg->getLocStart(),
4734 diag::err_template_arg_not_pointer_to_member_form)
4735 << Arg->getSourceRange();
4736 S.Diag(DRE->getDecl()->getLocation(), diag::note_template_arg_refers_here);
Douglas Gregorccb07762009-02-11 19:52:55 +00004737 return true;
4738}
4739
Douglas Gregord32e0282009-02-09 23:23:08 +00004740/// \brief Check a template argument against its corresponding
4741/// non-type template parameter.
4742///
Douglas Gregor463421d2009-03-03 04:44:36 +00004743/// This routine implements the semantics of C++ [temp.arg.nontype].
John Wiegley01296292011-04-08 18:41:53 +00004744/// If an error occurred, it returns ExprError(); otherwise, it
4745/// returns the converted template argument. \p
Douglas Gregor463421d2009-03-03 04:44:36 +00004746/// InstantiatedParamType is the type of the non-type template
4747/// parameter after it has been instantiated.
John Wiegley01296292011-04-08 18:41:53 +00004748ExprResult Sema::CheckTemplateArgument(NonTypeTemplateParmDecl *Param,
4749 QualType InstantiatedParamType, Expr *Arg,
4750 TemplateArgument &Converted,
4751 CheckTemplateArgumentKind CTAK) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004752 SourceLocation StartLoc = Arg->getLocStart();
Douglas Gregorc40290e2009-03-09 23:48:35 +00004753
Douglas Gregor86560402009-02-10 23:36:10 +00004754 // If either the parameter has a dependent type or the argument is
4755 // type-dependent, there's nothing we can check now.
Douglas Gregorc40290e2009-03-09 23:48:35 +00004756 if (InstantiatedParamType->isDependentType() || Arg->isTypeDependent()) {
4757 // FIXME: Produce a cloned, canonical expression?
Douglas Gregor74eba0b2009-06-11 18:10:32 +00004758 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004759 return Arg;
Douglas Gregorc40290e2009-03-09 23:48:35 +00004760 }
Douglas Gregor86560402009-02-10 23:36:10 +00004761
4762 // C++ [temp.arg.nontype]p5:
4763 // The following conversions are performed on each expression used
4764 // as a non-type template-argument. If a non-type
4765 // template-argument cannot be converted to the type of the
4766 // corresponding template-parameter then the program is
4767 // ill-formed.
Douglas Gregor463421d2009-03-03 04:44:36 +00004768 QualType ParamType = InstantiatedParamType;
Douglas Gregorb90df602010-06-16 00:17:44 +00004769 if (ParamType->isIntegralOrEnumerationType()) {
Richard Smithf8379a02012-01-18 23:55:52 +00004770 // C++11:
4771 // -- for a non-type template-parameter of integral or
4772 // enumeration type, conversions permitted in a converted
4773 // constant expression are applied.
4774 //
4775 // C++98:
4776 // -- for a non-type template-parameter of integral or
4777 // enumeration type, integral promotions (4.5) and integral
4778 // conversions (4.7) are applied.
4779
4780 if (CTAK == CTAK_Deduced &&
4781 !Context.hasSameUnqualifiedType(ParamType, Arg->getType())) {
4782 // C++ [temp.deduct.type]p17:
4783 // If, in the declaration of a function template with a non-type
4784 // template-parameter, the non-type template-parameter is used
4785 // in an expression in the function parameter-list and, if the
4786 // corresponding template-argument is deduced, the
4787 // template-argument type shall match the type of the
4788 // template-parameter exactly, except that a template-argument
4789 // deduced from an array bound may be of any integral type.
4790 Diag(StartLoc, diag::err_deduced_non_type_template_arg_type_mismatch)
4791 << Arg->getType().getUnqualifiedType()
4792 << ParamType.getUnqualifiedType();
4793 Diag(Param->getLocation(), diag::note_template_param_here);
4794 return ExprError();
4795 }
4796
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004797 if (getLangOpts().CPlusPlus11) {
Richard Smithf8379a02012-01-18 23:55:52 +00004798 // We can't check arbitrary value-dependent arguments.
4799 // FIXME: If there's no viable conversion to the template parameter type,
4800 // we should be able to diagnose that prior to instantiation.
4801 if (Arg->isValueDependent()) {
4802 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004803 return Arg;
Richard Smithf8379a02012-01-18 23:55:52 +00004804 }
4805
4806 // C++ [temp.arg.nontype]p1:
4807 // A template-argument for a non-type, non-template template-parameter
4808 // shall be one of:
4809 //
4810 // -- for a non-type template-parameter of integral or enumeration
4811 // type, a converted constant expression of the type of the
4812 // template-parameter; or
4813 llvm::APSInt Value;
4814 ExprResult ArgResult =
4815 CheckConvertedConstantExpression(Arg, ParamType, Value,
4816 CCEK_TemplateArg);
4817 if (ArgResult.isInvalid())
4818 return ExprError();
4819
4820 // Widen the argument value to sizeof(parameter type). This is almost
4821 // always a no-op, except when the parameter type is bool. In
4822 // that case, this may extend the argument from 1 bit to 8 bits.
4823 QualType IntegerType = ParamType;
4824 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
4825 IntegerType = Enum->getDecl()->getIntegerType();
4826 Value = Value.extOrTrunc(Context.getTypeSize(IntegerType));
4827
Benjamin Kramer6003ad52012-06-07 15:09:51 +00004828 Converted = TemplateArgument(Context, Value,
4829 Context.getCanonicalType(ParamType));
Richard Smithf8379a02012-01-18 23:55:52 +00004830 return ArgResult;
4831 }
4832
Richard Smith08b12f12011-10-27 22:11:44 +00004833 ExprResult ArgResult = DefaultLvalueConversion(Arg);
4834 if (ArgResult.isInvalid())
4835 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004836 Arg = ArgResult.get();
Richard Smith08b12f12011-10-27 22:11:44 +00004837
4838 QualType ArgType = Arg->getType();
4839
Douglas Gregor86560402009-02-10 23:36:10 +00004840 // C++ [temp.arg.nontype]p1:
4841 // A template-argument for a non-type, non-template
4842 // template-parameter shall be one of:
4843 //
4844 // -- an integral constant-expression of integral or enumeration
4845 // type; or
4846 // -- the name of a non-type template-parameter; or
4847 SourceLocation NonConstantLoc;
Douglas Gregor264ec4f2009-02-17 01:05:43 +00004848 llvm::APSInt Value;
Douglas Gregorb90df602010-06-16 00:17:44 +00004849 if (!ArgType->isIntegralOrEnumerationType()) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004850 Diag(Arg->getLocStart(),
Douglas Gregor86560402009-02-10 23:36:10 +00004851 diag::err_template_arg_not_integral_or_enumeral)
4852 << ArgType << Arg->getSourceRange();
4853 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley01296292011-04-08 18:41:53 +00004854 return ExprError();
Richard Smithf4c51d92012-02-04 09:53:13 +00004855 } else if (!Arg->isValueDependent()) {
Douglas Gregore2b37442012-05-04 22:38:52 +00004856 class TmplArgICEDiagnoser : public VerifyICEDiagnoser {
4857 QualType T;
4858
4859 public:
4860 TmplArgICEDiagnoser(QualType T) : T(T) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00004861
4862 void diagnoseNotICE(Sema &S, SourceLocation Loc,
4863 SourceRange SR) override {
Douglas Gregore2b37442012-05-04 22:38:52 +00004864 S.Diag(Loc, diag::err_template_arg_not_ice) << T << SR;
4865 }
4866 } Diagnoser(ArgType);
4867
4868 Arg = VerifyIntegerConstantExpression(Arg, &Value, Diagnoser,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004869 false).get();
Richard Smithf4c51d92012-02-04 09:53:13 +00004870 if (!Arg)
4871 return ExprError();
Douglas Gregor86560402009-02-10 23:36:10 +00004872 }
4873
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00004874 // From here on out, all we care about are the unqualified forms
4875 // of the parameter and argument types.
4876 ParamType = ParamType.getUnqualifiedType();
4877 ArgType = ArgType.getUnqualifiedType();
Douglas Gregor86560402009-02-10 23:36:10 +00004878
4879 // Try to convert the argument to the parameter's type.
Douglas Gregor4d0c38a2009-11-04 21:50:46 +00004880 if (Context.hasSameType(ParamType, ArgType)) {
Douglas Gregor86560402009-02-10 23:36:10 +00004881 // Okay: no conversion necessary
John McCall8cb679e2010-11-15 09:13:47 +00004882 } else if (ParamType->isBooleanType()) {
4883 // This is an integral-to-boolean conversion.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004884 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralToBoolean).get();
Douglas Gregor86560402009-02-10 23:36:10 +00004885 } else if (IsIntegralPromotion(Arg, ArgType, ParamType) ||
4886 !ParamType->isEnumeralType()) {
4887 // This is an integral promotion or conversion.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004888 Arg = ImpCastExprToType(Arg, ParamType, CK_IntegralCast).get();
Douglas Gregor86560402009-02-10 23:36:10 +00004889 } else {
4890 // We can't perform this conversion.
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004891 Diag(Arg->getLocStart(),
Douglas Gregor86560402009-02-10 23:36:10 +00004892 diag::err_template_arg_not_convertible)
Douglas Gregor463421d2009-03-03 04:44:36 +00004893 << Arg->getType() << InstantiatedParamType << Arg->getSourceRange();
Douglas Gregor86560402009-02-10 23:36:10 +00004894 Diag(Param->getLocation(), diag::note_template_param_here);
John Wiegley01296292011-04-08 18:41:53 +00004895 return ExprError();
Douglas Gregor86560402009-02-10 23:36:10 +00004896 }
4897
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004898 // Add the value of this argument to the list of converted
4899 // arguments. We use the bitwidth and signedness of the template
4900 // parameter.
4901 if (Arg->isValueDependent()) {
4902 // The argument is value-dependent. Create a new
4903 // TemplateArgument with the converted expression.
4904 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004905 return Arg;
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004906 }
4907
Douglas Gregor52aba872009-03-14 00:20:21 +00004908 QualType IntegerType = Context.getCanonicalType(ParamType);
John McCall9dd450b2009-09-21 23:43:11 +00004909 if (const EnumType *Enum = IntegerType->getAs<EnumType>())
Douglas Gregor74eba0b2009-06-11 18:10:32 +00004910 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType());
Douglas Gregor52aba872009-03-14 00:20:21 +00004911
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004912 if (ParamType->isBooleanType()) {
4913 // Value must be zero or one.
4914 Value = Value != 0;
4915 unsigned AllowedBits = Context.getTypeSize(IntegerType);
4916 if (Value.getBitWidth() != AllowedBits)
4917 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00004918 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004919 } else {
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004920 llvm::APSInt OldValue = Value;
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004921
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004922 // Coerce the template argument's value to the value it will have
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004923 // based on the template parameter's type.
Douglas Gregora14cb9f2010-03-26 00:39:40 +00004924 unsigned AllowedBits = Context.getTypeSize(IntegerType);
Douglas Gregora14cb9f2010-03-26 00:39:40 +00004925 if (Value.getBitWidth() != AllowedBits)
Jay Foad6d4db0c2010-12-07 08:25:34 +00004926 Value = Value.extOrTrunc(AllowedBits);
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00004927 Value.setIsSigned(IntegerType->isSignedIntegerOrEnumerationType());
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004928
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004929 // Complain if an unsigned parameter received a negative value.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00004930 if (IntegerType->isUnsignedIntegerOrEnumerationType()
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004931 && (OldValue.isSigned() && OldValue.isNegative())) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004932 Diag(Arg->getLocStart(), diag::warn_template_arg_negative)
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004933 << OldValue.toString(10) << Value.toString(10) << Param->getType()
4934 << Arg->getSourceRange();
4935 Diag(Param->getLocation(), diag::note_template_param_here);
4936 }
Douglas Gregorb4f4d512011-05-04 21:55:00 +00004937
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004938 // Complain if we overflowed the template parameter's type.
4939 unsigned RequiredBits;
Douglas Gregor6ab2fa82011-05-20 16:38:50 +00004940 if (IntegerType->isUnsignedIntegerOrEnumerationType())
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004941 RequiredBits = OldValue.getActiveBits();
4942 else if (OldValue.isUnsigned())
4943 RequiredBits = OldValue.getActiveBits() + 1;
4944 else
4945 RequiredBits = OldValue.getMinSignedBits();
4946 if (RequiredBits > AllowedBits) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004947 Diag(Arg->getLocStart(),
Douglas Gregorbb3d7862010-03-26 02:38:37 +00004948 diag::warn_template_arg_too_large)
4949 << OldValue.toString(10) << Value.toString(10) << Param->getType()
4950 << Arg->getSourceRange();
4951 Diag(Param->getLocation(), diag::note_template_param_here);
4952 }
Douglas Gregor52aba872009-03-14 00:20:21 +00004953 }
Douglas Gregor264ec4f2009-02-17 01:05:43 +00004954
Benjamin Kramer6003ad52012-06-07 15:09:51 +00004955 Converted = TemplateArgument(Context, Value,
Douglas Gregor3d63a9e2011-08-09 01:55:14 +00004956 ParamType->isEnumeralType()
4957 ? Context.getCanonicalType(ParamType)
4958 : IntegerType);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004959 return Arg;
Douglas Gregor86560402009-02-10 23:36:10 +00004960 }
Douglas Gregor3a7796b2009-02-11 00:19:33 +00004961
Richard Smith08b12f12011-10-27 22:11:44 +00004962 QualType ArgType = Arg->getType();
John McCall16df1e52010-03-30 21:47:33 +00004963 DeclAccessPair FoundResult; // temporary for ResolveOverloadedFunction
4964
Douglas Gregor6f233ef2009-02-11 01:18:59 +00004965 // Handle pointer-to-function, reference-to-function, and
4966 // pointer-to-member-function all in (roughly) the same way.
4967 if (// -- For a non-type template-parameter of type pointer to
4968 // function, only the function-to-pointer conversion (4.3) is
4969 // applied. If the template-argument represents a set of
4970 // overloaded functions (or a pointer to such), the matching
4971 // function is selected from the set (13.4).
4972 (ParamType->isPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004973 ParamType->getAs<PointerType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregor6f233ef2009-02-11 01:18:59 +00004974 // -- For a non-type template-parameter of type reference to
4975 // function, no conversions apply. If the template-argument
4976 // represents a set of overloaded functions, the matching
4977 // function is selected from the set (13.4).
4978 (ParamType->isReferenceType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004979 ParamType->getAs<ReferenceType>()->getPointeeType()->isFunctionType()) ||
Douglas Gregor6f233ef2009-02-11 01:18:59 +00004980 // -- For a non-type template-parameter of type pointer to
4981 // member function, no conversions apply. If the
4982 // template-argument represents a set of overloaded member
4983 // functions, the matching member function is selected from
4984 // the set (13.4).
4985 (ParamType->isMemberPointerType() &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004986 ParamType->getAs<MemberPointerType>()->getPointeeType()
Douglas Gregor6f233ef2009-02-11 01:18:59 +00004987 ->isFunctionType())) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00004988
Douglas Gregor064fdb22010-04-14 23:11:21 +00004989 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004990 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg, ParamType,
Douglas Gregor064fdb22010-04-14 23:11:21 +00004991 true,
4992 FoundResult)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004993 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00004994 return ExprError();
Douglas Gregor064fdb22010-04-14 23:11:21 +00004995
4996 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
4997 ArgType = Arg->getType();
4998 } else
John Wiegley01296292011-04-08 18:41:53 +00004999 return ExprError();
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005000 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005001
John Wiegley01296292011-04-08 18:41:53 +00005002 if (!ParamType->isMemberPointerType()) {
5003 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5004 ParamType,
5005 Arg, Converted))
5006 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005007 return Arg;
John Wiegley01296292011-04-08 18:41:53 +00005008 }
Douglas Gregorb242683d2010-04-01 18:32:35 +00005009
Douglas Gregor20fdef32012-04-10 17:08:25 +00005010 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5011 Converted))
John Wiegley01296292011-04-08 18:41:53 +00005012 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005013 return Arg;
Douglas Gregor3a7796b2009-02-11 00:19:33 +00005014 }
5015
Chris Lattner696197c2009-02-20 21:37:53 +00005016 if (ParamType->isPointerType()) {
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005017 // -- for a non-type template-parameter of type pointer to
5018 // object, qualification conversions (4.4) and the
5019 // array-to-pointer conversion (4.2) are applied.
Sebastian Redl576fd422009-05-10 18:38:11 +00005020 // C++0x also allows a value of std::nullptr_t.
Eli Friedmana170cd62010-08-05 02:49:48 +00005021 assert(ParamType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005022 "Only object pointers allowed here");
Douglas Gregora9faa442009-02-11 00:44:29 +00005023
John Wiegley01296292011-04-08 18:41:53 +00005024 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5025 ParamType,
5026 Arg, Converted))
5027 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005028 return Arg;
Douglas Gregora9faa442009-02-11 00:44:29 +00005029 }
Mike Stump11289f42009-09-09 15:08:12 +00005030
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005031 if (const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>()) {
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005032 // -- For a non-type template-parameter of type reference to
5033 // object, no conversions apply. The type referred to by the
5034 // reference may be more cv-qualified than the (otherwise
5035 // identical) type of the template-argument. The
5036 // template-parameter is bound directly to the
5037 // template-argument, which must be an lvalue.
Eli Friedmana170cd62010-08-05 02:49:48 +00005038 assert(ParamRefType->getPointeeType()->isIncompleteOrObjectType() &&
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005039 "Only object references allowed here");
Douglas Gregora9faa442009-02-11 00:44:29 +00005040
Douglas Gregor064fdb22010-04-14 23:11:21 +00005041 if (Arg->getType() == Context.OverloadTy) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005042 if (FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Arg,
5043 ParamRefType->getPointeeType(),
Douglas Gregor064fdb22010-04-14 23:11:21 +00005044 true,
5045 FoundResult)) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005046 if (DiagnoseUseOfDecl(Fn, Arg->getLocStart()))
John Wiegley01296292011-04-08 18:41:53 +00005047 return ExprError();
Douglas Gregor064fdb22010-04-14 23:11:21 +00005048
5049 Arg = FixOverloadedFunctionReference(Arg, FoundResult, Fn);
5050 ArgType = Arg->getType();
5051 } else
John Wiegley01296292011-04-08 18:41:53 +00005052 return ExprError();
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005053 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005054
John Wiegley01296292011-04-08 18:41:53 +00005055 if (CheckTemplateArgumentAddressOfObjectOrFunction(*this, Param,
5056 ParamType,
5057 Arg, Converted))
5058 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005059 return Arg;
Douglas Gregor6f233ef2009-02-11 01:18:59 +00005060 }
Douglas Gregor0e558532009-02-11 16:16:59 +00005061
Douglas Gregor20fdef32012-04-10 17:08:25 +00005062 // Deal with parameters of type std::nullptr_t.
5063 if (ParamType->isNullPtrType()) {
5064 if (Arg->isTypeDependent() || Arg->isValueDependent()) {
5065 Converted = TemplateArgument(Arg);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005066 return Arg;
Douglas Gregor20fdef32012-04-10 17:08:25 +00005067 }
5068
5069 switch (isNullPointerValueTemplateArgument(*this, Param, ParamType, Arg)) {
5070 case NPV_NotNullPointer:
5071 Diag(Arg->getExprLoc(), diag::err_template_arg_not_convertible)
5072 << Arg->getType() << ParamType;
5073 Diag(Param->getLocation(), diag::note_template_param_here);
5074 return ExprError();
5075
5076 case NPV_Error:
5077 return ExprError();
5078
5079 case NPV_NullPointer:
Richard Smithbc8c5b52012-04-26 01:51:03 +00005080 Diag(Arg->getExprLoc(), diag::warn_cxx98_compat_template_arg_null);
Richard Smith78bb36f2014-07-24 02:27:39 +00005081 Converted = TemplateArgument(Context.getCanonicalType(ParamType),
5082 /*isNullPtr*/true);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005083 return Arg;
Douglas Gregor20fdef32012-04-10 17:08:25 +00005084 }
5085 }
5086
Douglas Gregor0e558532009-02-11 16:16:59 +00005087 // -- For a non-type template-parameter of type pointer to data
5088 // member, qualification conversions (4.4) are applied.
5089 assert(ParamType->isMemberPointerType() && "Only pointers to members remain");
5090
Douglas Gregor20fdef32012-04-10 17:08:25 +00005091 if (CheckTemplateArgumentPointerToMember(*this, Param, ParamType, Arg,
5092 Converted))
John Wiegley01296292011-04-08 18:41:53 +00005093 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005094 return Arg;
Douglas Gregord32e0282009-02-09 23:23:08 +00005095}
5096
5097/// \brief Check a template argument against its corresponding
5098/// template template parameter.
5099///
5100/// This routine implements the semantics of C++ [temp.arg.template].
5101/// It returns true if an error occurred, and false otherwise.
5102bool Sema::CheckTemplateArgument(TemplateTemplateParmDecl *Param,
Reid Kleckner377c1592014-06-10 23:29:48 +00005103 TemplateArgumentLoc &Arg,
Richard Smith1fde8ec2012-09-07 02:06:42 +00005104 unsigned ArgumentPackIndex) {
Eli Friedmanb826a002012-09-26 02:36:12 +00005105 TemplateName Name = Arg.getArgument().getAsTemplateOrTemplatePattern();
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005106 TemplateDecl *Template = Name.getAsTemplateDecl();
5107 if (!Template) {
5108 // Any dependent template name is fine.
5109 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
5110 return false;
5111 }
Douglas Gregor85e0f662009-02-10 00:24:35 +00005112
Richard Smith3f1b5d02011-05-05 21:57:07 +00005113 // C++0x [temp.arg.template]p1:
Douglas Gregor85e0f662009-02-10 00:24:35 +00005114 // A template-argument for a template template-parameter shall be
Richard Smith3f1b5d02011-05-05 21:57:07 +00005115 // the name of a class template or an alias template, expressed as an
5116 // id-expression. When the template-argument names a class template, only
Douglas Gregor85e0f662009-02-10 00:24:35 +00005117 // primary class templates are considered when matching the
5118 // template template argument with the corresponding parameter;
5119 // partial specializations are not considered even if their
5120 // parameter lists match that of the template template parameter.
Douglas Gregord5222052009-06-12 19:43:02 +00005121 //
5122 // Note that we also allow template template parameters here, which
5123 // will happen when we are dealing with, e.g., class template
5124 // partial specializations.
Mike Stump11289f42009-09-09 15:08:12 +00005125 if (!isa<ClassTemplateDecl>(Template) &&
Richard Smith3f1b5d02011-05-05 21:57:07 +00005126 !isa<TemplateTemplateParmDecl>(Template) &&
5127 !isa<TypeAliasTemplateDecl>(Template)) {
Mike Stump11289f42009-09-09 15:08:12 +00005128 assert(isa<FunctionTemplateDecl>(Template) &&
Douglas Gregor85e0f662009-02-10 00:24:35 +00005129 "Only function templates are possible here");
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005130 Diag(Arg.getLocation(), diag::err_template_arg_not_class_template);
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00005131 Diag(Template->getLocation(), diag::note_template_arg_refers_here_func)
Douglas Gregor85e0f662009-02-10 00:24:35 +00005132 << Template;
5133 }
5134
Richard Smith1fde8ec2012-09-07 02:06:42 +00005135 TemplateParameterList *Params = Param->getTemplateParameters();
5136 if (Param->isExpandedParameterPack())
5137 Params = Param->getExpansionTemplateParameters(ArgumentPackIndex);
5138
Douglas Gregor85e0f662009-02-10 00:24:35 +00005139 return !TemplateParameterListsAreEqual(Template->getTemplateParameters(),
Richard Smith1fde8ec2012-09-07 02:06:42 +00005140 Params,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005141 true,
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005142 TPL_TemplateTemplateArgumentMatch,
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005143 Arg.getLocation());
Douglas Gregord32e0282009-02-09 23:23:08 +00005144}
5145
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005146/// \brief Given a non-type template argument that refers to a
5147/// declaration and the type of its corresponding non-type template
5148/// parameter, produce an expression that properly refers to that
5149/// declaration.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005150ExprResult
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005151Sema::BuildExpressionFromDeclTemplateArgument(const TemplateArgument &Arg,
5152 QualType ParamType,
5153 SourceLocation Loc) {
David Blaikiedc601e32013-02-27 22:10:40 +00005154 // C++ [temp.param]p8:
5155 //
5156 // A non-type template-parameter of type "array of T" or
5157 // "function returning T" is adjusted to be of type "pointer to
5158 // T" or "pointer to function returning T", respectively.
5159 if (ParamType->isArrayType())
5160 ParamType = Context.getArrayDecayedType(ParamType);
5161 else if (ParamType->isFunctionType())
5162 ParamType = Context.getPointerType(ParamType);
5163
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005164 // For a NULL non-type template argument, return nullptr casted to the
5165 // parameter's type.
Eli Friedmanb826a002012-09-26 02:36:12 +00005166 if (Arg.getKind() == TemplateArgument::NullPtr) {
Douglas Gregor31f55dc2012-04-06 22:40:38 +00005167 return ImpCastExprToType(
5168 new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc),
5169 ParamType,
5170 ParamType->getAs<MemberPointerType>()
5171 ? CK_NullToMemberPointer
5172 : CK_NullToPointer);
5173 }
Eli Friedmanb826a002012-09-26 02:36:12 +00005174 assert(Arg.getKind() == TemplateArgument::Declaration &&
5175 "Only declaration template arguments permitted here");
5176
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005177 ValueDecl *VD = cast<ValueDecl>(Arg.getAsDecl());
5178
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005179 if (VD->getDeclContext()->isRecord() &&
David Majnemer3ae0bfa2013-10-26 05:02:13 +00005180 (isa<CXXMethodDecl>(VD) || isa<FieldDecl>(VD) ||
5181 isa<IndirectFieldDecl>(VD))) {
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005182 // If the value is a class member, we might have a pointer-to-member.
5183 // Determine whether the non-type template template parameter is of
5184 // pointer-to-member type. If so, we need to build an appropriate
5185 // expression for a pointer-to-member, since a "normal" DeclRefExpr
5186 // would refer to the member itself.
5187 if (ParamType->isMemberPointerType()) {
5188 QualType ClassType
5189 = Context.getTypeDeclType(cast<RecordDecl>(VD->getDeclContext()));
5190 NestedNameSpecifier *Qualifier
Craig Topperc3ec1492014-05-26 06:22:03 +00005191 = NestedNameSpecifier::Create(Context, nullptr, false,
John McCallb268a282010-08-23 23:25:46 +00005192 ClassType.getTypePtr());
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005193 CXXScopeSpec SS;
Douglas Gregor869ad452011-02-24 17:54:50 +00005194 SS.MakeTrivial(Context, Qualifier, Loc);
John McCallfeb624a2010-11-23 20:48:44 +00005195
5196 // The actual value-ness of this is unimportant, but for
5197 // internal consistency's sake, references to instance methods
5198 // are r-values.
5199 ExprValueKind VK = VK_LValue;
5200 if (isa<CXXMethodDecl>(VD) && cast<CXXMethodDecl>(VD)->isInstance())
5201 VK = VK_RValue;
5202
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005203 ExprResult RefExpr = BuildDeclRefExpr(VD,
John McCall7decc9e2010-11-18 06:31:45 +00005204 VD->getType().getNonReferenceType(),
John McCallfeb624a2010-11-23 20:48:44 +00005205 VK,
John McCall7decc9e2010-11-18 06:31:45 +00005206 Loc,
5207 &SS);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005208 if (RefExpr.isInvalid())
5209 return ExprError();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005210
John McCalle3027922010-08-25 11:45:40 +00005211 RefExpr = CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005212
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005213 // We might need to perform a trailing qualification conversion, since
5214 // the element type on the parameter could be more qualified than the
5215 // element type in the expression we constructed.
John McCall31168b02011-06-15 23:02:42 +00005216 bool ObjCLifetimeConversion;
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005217 if (IsQualificationConversion(((Expr*) RefExpr.get())->getType(),
John McCall31168b02011-06-15 23:02:42 +00005218 ParamType.getUnqualifiedType(), false,
5219 ObjCLifetimeConversion))
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005220 RefExpr = ImpCastExprToType(RefExpr.get(), ParamType.getUnqualifiedType(), CK_NoOp);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005221
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005222 assert(!RefExpr.isInvalid() &&
5223 Context.hasSameType(((Expr*) RefExpr.get())->getType(),
Douglas Gregorfabf95d2010-04-30 21:46:38 +00005224 ParamType.getUnqualifiedType()));
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005225 return RefExpr;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005226 }
5227 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005228
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005229 QualType T = VD->getType().getNonReferenceType();
Douglas Gregoreffe2a12013-01-16 00:52:15 +00005230
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005231 if (ParamType->isPointerType()) {
Douglas Gregorb242683d2010-04-01 18:32:35 +00005232 // When the non-type template parameter is a pointer, take the
5233 // address of the declaration.
John McCall7decc9e2010-11-18 06:31:45 +00005234 ExprResult RefExpr = BuildDeclRefExpr(VD, T, VK_LValue, Loc);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005235 if (RefExpr.isInvalid())
5236 return ExprError();
Douglas Gregorb242683d2010-04-01 18:32:35 +00005237
5238 if (T->isFunctionType() || T->isArrayType()) {
5239 // Decay functions and arrays.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005240 RefExpr = DefaultFunctionArrayConversion(RefExpr.get());
John Wiegley01296292011-04-08 18:41:53 +00005241 if (RefExpr.isInvalid())
5242 return ExprError();
Douglas Gregorb242683d2010-04-01 18:32:35 +00005243
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005244 return RefExpr;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005245 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005246
Douglas Gregorb242683d2010-04-01 18:32:35 +00005247 // Take the address of everything else
John McCalle3027922010-08-25 11:45:40 +00005248 return CreateBuiltinUnaryOp(Loc, UO_AddrOf, RefExpr.get());
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005249 }
5250
John McCall7decc9e2010-11-18 06:31:45 +00005251 ExprValueKind VK = VK_RValue;
5252
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005253 // If the non-type template parameter has reference type, qualify the
5254 // resulting declaration reference with the extra qualifiers on the
5255 // type that the reference refers to.
John McCall7decc9e2010-11-18 06:31:45 +00005256 if (const ReferenceType *TargetRef = ParamType->getAs<ReferenceType>()) {
5257 VK = VK_LValue;
5258 T = Context.getQualifiedType(T,
5259 TargetRef->getPointeeType().getQualifiers());
Douglas Gregoreffe2a12013-01-16 00:52:15 +00005260 } else if (isa<FunctionDecl>(VD)) {
5261 // References to functions are always lvalues.
5262 VK = VK_LValue;
John McCall7decc9e2010-11-18 06:31:45 +00005263 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005264
John McCall7decc9e2010-11-18 06:31:45 +00005265 return BuildDeclRefExpr(VD, T, VK, Loc);
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005266}
5267
5268/// \brief Construct a new expression that refers to the given
5269/// integral template argument with the given source-location
5270/// information.
5271///
5272/// This routine takes care of the mapping from an integral template
5273/// argument (which may have any integral type) to the appropriate
5274/// literal value.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005275ExprResult
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005276Sema::BuildExpressionFromIntegralTemplateArgument(const TemplateArgument &Arg,
5277 SourceLocation Loc) {
5278 assert(Arg.getKind() == TemplateArgument::Integral &&
Douglas Gregora8bac7f2011-01-10 07:32:04 +00005279 "Operation is only valid for integral template arguments");
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005280 QualType OrigT = Arg.getIntegralType();
5281
5282 // If this is an enum type that we're instantiating, we need to use an integer
5283 // type the same size as the enumerator. We don't want to build an
5284 // IntegerLiteral with enum type. The integer type of an enum type can be of
5285 // any integral type with C++11 enum classes, make sure we create the right
5286 // type of literal for it.
5287 QualType T = OrigT;
5288 if (const EnumType *ET = OrigT->getAs<EnumType>())
5289 T = ET->getDecl()->getIntegerType();
5290
5291 Expr *E;
Douglas Gregorfb65e592011-07-27 05:40:30 +00005292 if (T->isAnyCharacterType()) {
5293 CharacterLiteral::CharacterKind Kind;
5294 if (T->isWideCharType())
5295 Kind = CharacterLiteral::Wide;
5296 else if (T->isChar16Type())
5297 Kind = CharacterLiteral::UTF16;
5298 else if (T->isChar32Type())
5299 Kind = CharacterLiteral::UTF32;
5300 else
5301 Kind = CharacterLiteral::Ascii;
5302
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005303 E = new (Context) CharacterLiteral(Arg.getAsIntegral().getZExtValue(),
5304 Kind, T, Loc);
5305 } else if (T->isBooleanType()) {
5306 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(),
5307 T, Loc);
5308 } else if (T->isNullPtrType()) {
5309 E = new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc);
5310 } else {
5311 E = IntegerLiteral::Create(Context, Arg.getAsIntegral(), T, Loc);
Douglas Gregorfb65e592011-07-27 05:40:30 +00005312 }
5313
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005314 if (OrigT->isEnumeralType()) {
John McCall6730e4d2011-07-15 07:47:58 +00005315 // FIXME: This is a hack. We need a better way to handle substituted
5316 // non-type template parameters.
Craig Topperc3ec1492014-05-26 06:22:03 +00005317 E = CStyleCastExpr::Create(Context, OrigT, VK_RValue, CK_IntegralCast, E,
5318 nullptr,
Benjamin Kramer3d3ddce2012-11-21 17:42:47 +00005319 Context.getTrivialTypeSourceInfo(OrigT, Loc),
John McCall6730e4d2011-07-15 07:47:58 +00005320 Loc, Loc);
5321 }
5322
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005323 return E;
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005324}
5325
Douglas Gregor641040a2011-01-12 23:45:44 +00005326/// \brief Match two template parameters within template parameter lists.
5327static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old,
5328 bool Complain,
5329 Sema::TemplateParameterListEqualKind Kind,
5330 SourceLocation TemplateArgLoc) {
5331 // Check the actual kind (type, non-type, template).
5332 if (Old->getKind() != New->getKind()) {
5333 if (Complain) {
5334 unsigned NextDiag = diag::err_template_param_different_kind;
5335 if (TemplateArgLoc.isValid()) {
5336 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5337 NextDiag = diag::note_template_param_different_kind;
5338 }
5339 S.Diag(New->getLocation(), NextDiag)
5340 << (Kind != Sema::TPL_TemplateMatch);
5341 S.Diag(Old->getLocation(), diag::note_template_prev_declaration)
5342 << (Kind != Sema::TPL_TemplateMatch);
5343 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005344
Douglas Gregor641040a2011-01-12 23:45:44 +00005345 return false;
5346 }
5347
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005348 // Check that both are parameter packs are neither are parameter packs.
5349 // However, if we are matching a template template argument to a
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005350 // template template parameter, the template template parameter can have
5351 // a parameter pack where the template template argument does not.
5352 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
5353 !(Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5354 Old->isTemplateParameterPack())) {
Douglas Gregor641040a2011-01-12 23:45:44 +00005355 if (Complain) {
5356 unsigned NextDiag = diag::err_template_parameter_pack_non_pack;
5357 if (TemplateArgLoc.isValid()) {
5358 S.Diag(TemplateArgLoc,
5359 diag::err_template_arg_template_params_mismatch);
5360 NextDiag = diag::note_template_parameter_pack_non_pack;
5361 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005362
Douglas Gregor641040a2011-01-12 23:45:44 +00005363 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
5364 : isa<NonTypeTemplateParmDecl>(New)? 1
5365 : 2;
5366 S.Diag(New->getLocation(), NextDiag)
5367 << ParamKind << New->isParameterPack();
5368 S.Diag(Old->getLocation(), diag::note_template_parameter_pack_here)
5369 << ParamKind << Old->isParameterPack();
5370 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005371
Douglas Gregor641040a2011-01-12 23:45:44 +00005372 return false;
5373 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005374
Douglas Gregor641040a2011-01-12 23:45:44 +00005375 // For non-type template parameters, check the type of the parameter.
5376 if (NonTypeTemplateParmDecl *OldNTTP
5377 = dyn_cast<NonTypeTemplateParmDecl>(Old)) {
5378 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005379
Douglas Gregor641040a2011-01-12 23:45:44 +00005380 // If we are matching a template template argument to a template
5381 // template parameter and one of the non-type template parameter types
5382 // is dependent, then we must wait until template instantiation time
5383 // to actually compare the arguments.
5384 if (Kind == Sema::TPL_TemplateTemplateArgumentMatch &&
5385 (OldNTTP->getType()->isDependentType() ||
5386 NewNTTP->getType()->isDependentType()))
5387 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005388
Douglas Gregor641040a2011-01-12 23:45:44 +00005389 if (!S.Context.hasSameType(OldNTTP->getType(), NewNTTP->getType())) {
5390 if (Complain) {
5391 unsigned NextDiag = diag::err_template_nontype_parm_different_type;
5392 if (TemplateArgLoc.isValid()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005393 S.Diag(TemplateArgLoc,
Douglas Gregor641040a2011-01-12 23:45:44 +00005394 diag::err_template_arg_template_params_mismatch);
5395 NextDiag = diag::note_template_nontype_parm_different_type;
5396 }
5397 S.Diag(NewNTTP->getLocation(), NextDiag)
5398 << NewNTTP->getType()
5399 << (Kind != Sema::TPL_TemplateMatch);
5400 S.Diag(OldNTTP->getLocation(),
5401 diag::note_template_nontype_parm_prev_declaration)
5402 << OldNTTP->getType();
5403 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005404
Douglas Gregor641040a2011-01-12 23:45:44 +00005405 return false;
5406 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005407
Douglas Gregor641040a2011-01-12 23:45:44 +00005408 return true;
5409 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005410
Douglas Gregor641040a2011-01-12 23:45:44 +00005411 // For template template parameters, check the template parameter types.
5412 // The template parameter lists of template template
5413 // parameters must agree.
5414 if (TemplateTemplateParmDecl *OldTTP
5415 = dyn_cast<TemplateTemplateParmDecl>(Old)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005416 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
Douglas Gregor641040a2011-01-12 23:45:44 +00005417 return S.TemplateParameterListsAreEqual(NewTTP->getTemplateParameters(),
5418 OldTTP->getTemplateParameters(),
5419 Complain,
5420 (Kind == Sema::TPL_TemplateMatch
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005421 ? Sema::TPL_TemplateTemplateParmMatch
Douglas Gregor641040a2011-01-12 23:45:44 +00005422 : Kind),
5423 TemplateArgLoc);
5424 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005425
Douglas Gregor641040a2011-01-12 23:45:44 +00005426 return true;
5427}
Douglas Gregord5cb1dd2010-03-28 02:42:43 +00005428
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005429/// \brief Diagnose a known arity mismatch when comparing template argument
5430/// lists.
5431static
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005432void DiagnoseTemplateParameterListArityMismatch(Sema &S,
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005433 TemplateParameterList *New,
5434 TemplateParameterList *Old,
5435 Sema::TemplateParameterListEqualKind Kind,
5436 SourceLocation TemplateArgLoc) {
5437 unsigned NextDiag = diag::err_template_param_list_different_arity;
5438 if (TemplateArgLoc.isValid()) {
5439 S.Diag(TemplateArgLoc, diag::err_template_arg_template_params_mismatch);
5440 NextDiag = diag::note_template_param_list_different_arity;
5441 }
5442 S.Diag(New->getTemplateLoc(), NextDiag)
5443 << (New->size() > Old->size())
5444 << (Kind != Sema::TPL_TemplateMatch)
5445 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc());
5446 S.Diag(Old->getTemplateLoc(), diag::note_template_prev_declaration)
5447 << (Kind != Sema::TPL_TemplateMatch)
5448 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc());
5449}
5450
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005451/// \brief Determine whether the given template parameter lists are
5452/// equivalent.
5453///
Mike Stump11289f42009-09-09 15:08:12 +00005454/// \param New The new template parameter list, typically written in the
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005455/// source code as part of a new template declaration.
5456///
5457/// \param Old The old template parameter list, typically found via
5458/// name lookup of the template declared with this template parameter
5459/// list.
5460///
5461/// \param Complain If true, this routine will produce a diagnostic if
5462/// the template parameter lists are not equivalent.
5463///
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005464/// \param Kind describes how we are to match the template parameter lists.
Douglas Gregor85e0f662009-02-10 00:24:35 +00005465///
5466/// \param TemplateArgLoc If this source location is valid, then we
5467/// are actually checking the template parameter list of a template
5468/// argument (New) against the template parameter list of its
5469/// corresponding template template parameter (Old). We produce
5470/// slightly different diagnostics in this scenario.
5471///
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005472/// \returns True if the template parameter lists are equal, false
5473/// otherwise.
Mike Stump11289f42009-09-09 15:08:12 +00005474bool
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005475Sema::TemplateParameterListsAreEqual(TemplateParameterList *New,
5476 TemplateParameterList *Old,
5477 bool Complain,
Douglas Gregor19ac2d62009-11-12 16:20:59 +00005478 TemplateParameterListEqualKind Kind,
Douglas Gregor85e0f662009-02-10 00:24:35 +00005479 SourceLocation TemplateArgLoc) {
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005480 if (Old->size() != New->size() && Kind != TPL_TemplateTemplateArgumentMatch) {
5481 if (Complain)
5482 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5483 TemplateArgLoc);
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005484
5485 return false;
5486 }
5487
Douglas Gregor641040a2011-01-12 23:45:44 +00005488 // C++0x [temp.arg.template]p3:
5489 // A template-argument matches a template template-parameter (call it P)
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00005490 // when each of the template parameters in the template-parameter-list of
Richard Smith3f1b5d02011-05-05 21:57:07 +00005491 // the template-argument's corresponding class template or alias template
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00005492 // (call it A) matches the corresponding template parameter in the
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005493 // template-parameter-list of P. [...]
5494 TemplateParameterList::iterator NewParm = New->begin();
5495 TemplateParameterList::iterator NewParmEnd = New->end();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005496 for (TemplateParameterList::iterator OldParm = Old->begin(),
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005497 OldParmEnd = Old->end();
5498 OldParm != OldParmEnd; ++OldParm) {
Douglas Gregor018778a2011-01-13 18:47:47 +00005499 if (Kind != TPL_TemplateTemplateArgumentMatch ||
5500 !(*OldParm)->isTemplateParameterPack()) {
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005501 if (NewParm == NewParmEnd) {
5502 if (Complain)
5503 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5504 TemplateArgLoc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005505
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005506 return false;
5507 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005508
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005509 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
5510 Kind, TemplateArgLoc))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005511 return false;
5512
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005513 ++NewParm;
5514 continue;
5515 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005516
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005517 // C++0x [temp.arg.template]p3:
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00005518 // [...] When P's template- parameter-list contains a template parameter
5519 // pack (14.5.3), the template parameter pack will match zero or more
5520 // template parameters or template parameter packs in the
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005521 // template-parameter-list of A with the same type and form as the
5522 // template parameter pack in P (ignoring whether those template
5523 // parameters are template parameter packs).
5524 for (; NewParm != NewParmEnd; ++NewParm) {
5525 if (!MatchTemplateParameterKind(*this, *NewParm, *OldParm, Complain,
5526 Kind, TemplateArgLoc))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005527 return false;
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005528 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005529 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005530
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005531 // Make sure we exhausted all of the arguments.
5532 if (NewParm != NewParmEnd) {
5533 if (Complain)
5534 DiagnoseTemplateParameterListArityMismatch(*this, New, Old, Kind,
5535 TemplateArgLoc);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005536
Douglas Gregorfd4344b2011-01-13 00:08:50 +00005537 return false;
5538 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005539
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005540 return true;
5541}
5542
5543/// \brief Check whether a template can be declared within this scope.
5544///
5545/// If the template declaration is valid in this scope, returns
5546/// false. Otherwise, issues a diagnostic and returns true.
Mike Stump11289f42009-09-09 15:08:12 +00005547bool
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005548Sema::CheckTemplateDeclScope(Scope *S, TemplateParameterList *TemplateParams) {
Douglas Gregordd847ba2011-11-03 16:37:14 +00005549 if (!S)
5550 return false;
5551
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005552 // Find the nearest enclosing declaration scope.
5553 while ((S->getFlags() & Scope::DeclScope) == 0 ||
5554 (S->getFlags() & Scope::TemplateParamScope) != 0)
5555 S = S->getParent();
Mike Stump11289f42009-09-09 15:08:12 +00005556
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00005557 // C++ [temp]p4:
5558 // A template [...] shall not have C linkage.
Ted Kremenekc37877d2013-10-08 17:08:03 +00005559 DeclContext *Ctx = S->getEntity();
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00005560 if (Ctx && Ctx->isExternCContext())
Mike Stump11289f42009-09-09 15:08:12 +00005561 return Diag(TemplateParams->getTemplateLoc(), diag::err_template_linkage)
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005562 << TemplateParams->getSourceRange();
Mike Stump11289f42009-09-09 15:08:12 +00005563
Eli Friedmandfbd0c42009-07-31 01:43:05 +00005564 while (Ctx && isa<LinkageSpecDecl>(Ctx))
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005565 Ctx = Ctx->getParent();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005566
Benjamin Kramer35e6fee2014-02-02 16:35:43 +00005567 // C++ [temp]p2:
5568 // A template-declaration can appear only as a namespace scope or
5569 // class scope declaration.
David Majnemer766e2592013-10-22 04:14:18 +00005570 if (Ctx) {
5571 if (Ctx->isFileContext())
5572 return false;
5573 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Ctx)) {
5574 // C++ [temp.mem]p2:
5575 // A local class shall not have member templates.
5576 if (RD->isLocalClass())
5577 return Diag(TemplateParams->getTemplateLoc(),
5578 diag::err_template_inside_local_class)
5579 << TemplateParams->getSourceRange();
5580 else
5581 return false;
5582 }
5583 }
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005584
Mike Stump11289f42009-09-09 15:08:12 +00005585 return Diag(TemplateParams->getTemplateLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005586 diag::err_template_outside_namespace_or_class_scope)
5587 << TemplateParams->getSourceRange();
Douglas Gregorcd72ba92009-02-06 22:42:48 +00005588}
Douglas Gregor67a65642009-02-17 23:15:12 +00005589
Douglas Gregor54888652009-10-07 00:13:32 +00005590/// \brief Determine what kind of template specialization the given declaration
5591/// is.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00005592static TemplateSpecializationKind getTemplateSpecializationKind(Decl *D) {
Douglas Gregor54888652009-10-07 00:13:32 +00005593 if (!D)
5594 return TSK_Undeclared;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005595
Douglas Gregorbbe8f462009-10-08 15:14:33 +00005596 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D))
5597 return Record->getTemplateSpecializationKind();
Douglas Gregor54888652009-10-07 00:13:32 +00005598 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
5599 return Function->getTemplateSpecializationKind();
Douglas Gregor86d142a2009-10-08 07:24:58 +00005600 if (VarDecl *Var = dyn_cast<VarDecl>(D))
5601 return Var->getTemplateSpecializationKind();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005602
Douglas Gregor54888652009-10-07 00:13:32 +00005603 return TSK_Undeclared;
5604}
5605
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005606/// \brief Check whether a specialization is well-formed in the current
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005607/// context.
Douglas Gregorf47b9112009-02-25 22:02:03 +00005608///
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005609/// This routine determines whether a template specialization can be declared
5610/// in the current context (C++ [temp.expl.spec]p2).
Douglas Gregor54888652009-10-07 00:13:32 +00005611///
5612/// \param S the semantic analysis object for which this check is being
5613/// performed.
5614///
5615/// \param Specialized the entity being specialized or instantiated, which
5616/// may be a kind of template (class template, function template, etc.) or
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005617/// a member of a class template (member function, static data member,
Douglas Gregor54888652009-10-07 00:13:32 +00005618/// member class).
5619///
5620/// \param PrevDecl the previous declaration of this entity, if any.
5621///
5622/// \param Loc the location of the explicit specialization or instantiation of
5623/// this entity.
5624///
5625/// \param IsPartialSpecialization whether this is a partial specialization of
5626/// a class template.
5627///
Douglas Gregor54888652009-10-07 00:13:32 +00005628/// \returns true if there was an error that we cannot recover from, false
5629/// otherwise.
5630static bool CheckTemplateSpecializationScope(Sema &S,
5631 NamedDecl *Specialized,
5632 NamedDecl *PrevDecl,
5633 SourceLocation Loc,
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005634 bool IsPartialSpecialization) {
Douglas Gregor54888652009-10-07 00:13:32 +00005635 // Keep these "kind" numbers in sync with the %select statements in the
5636 // various diagnostics emitted by this routine.
5637 int EntityKind = 0;
Ted Kremenek7f1f3f62011-01-14 22:31:36 +00005638 if (isa<ClassTemplateDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00005639 EntityKind = IsPartialSpecialization? 1 : 0;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005640 else if (isa<VarTemplateDecl>(Specialized))
5641 EntityKind = IsPartialSpecialization ? 3 : 2;
Ted Kremenek7f1f3f62011-01-14 22:31:36 +00005642 else if (isa<FunctionTemplateDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00005643 EntityKind = 4;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005644 else if (isa<CXXMethodDecl>(Specialized))
Douglas Gregor54888652009-10-07 00:13:32 +00005645 EntityKind = 5;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005646 else if (isa<VarDecl>(Specialized))
Richard Smith7d137e32012-03-23 03:33:32 +00005647 EntityKind = 6;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005648 else if (isa<RecordDecl>(Specialized))
5649 EntityKind = 7;
5650 else if (isa<EnumDecl>(Specialized) && S.getLangOpts().CPlusPlus11)
5651 EntityKind = 8;
Douglas Gregor54888652009-10-07 00:13:32 +00005652 else {
Richard Smith7d137e32012-03-23 03:33:32 +00005653 S.Diag(Loc, diag::err_template_spec_unknown_kind)
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005654 << S.getLangOpts().CPlusPlus11;
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005655 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregor54888652009-10-07 00:13:32 +00005656 return true;
5657 }
5658
Douglas Gregorf47b9112009-02-25 22:02:03 +00005659 // C++ [temp.expl.spec]p2:
5660 // An explicit specialization shall be declared in the namespace
5661 // of which the template is a member, or, for member templates, in
5662 // the namespace of which the enclosing class or enclosing class
5663 // template is a member. An explicit specialization of a member
5664 // function, member class or static data member of a class
5665 // template shall be declared in the namespace of which the class
5666 // template is a member. Such a declaration may also be a
5667 // definition. If the declaration is not a definition, the
5668 // specialization may be defined later in the name- space in which
5669 // the explicit specialization was declared, or in a namespace
5670 // that encloses the one in which the explicit specialization was
5671 // declared.
Sebastian Redl50c68252010-08-31 00:36:30 +00005672 if (S.CurContext->getRedeclContext()->isFunctionOrMethod()) {
Douglas Gregor54888652009-10-07 00:13:32 +00005673 S.Diag(Loc, diag::err_template_spec_decl_function_scope)
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005674 << Specialized;
Douglas Gregorf47b9112009-02-25 22:02:03 +00005675 return true;
5676 }
Douglas Gregore4b05162009-10-07 17:21:34 +00005677
Douglas Gregor40fb7442009-10-07 17:30:37 +00005678 if (S.CurContext->isRecord() && !IsPartialSpecialization) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00005679 if (S.getLangOpts().MicrosoftExt) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00005680 // Do not warn for class scope explicit specialization during
5681 // instantiation, warning was already emitted during pattern
5682 // semantic analysis.
5683 if (!S.ActiveTemplateInstantiations.size())
5684 S.Diag(Loc, diag::ext_function_specialization_in_class)
5685 << Specialized;
5686 } else {
5687 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
5688 << Specialized;
5689 return true;
5690 }
Douglas Gregor40fb7442009-10-07 17:30:37 +00005691 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005692
Douglas Gregor44e5a0a2011-10-20 16:41:18 +00005693 if (S.CurContext->isRecord() &&
5694 !S.CurContext->Equals(Specialized->getDeclContext())) {
5695 // Make sure that we're specializing in the right record context.
5696 // Otherwise, things can go horribly wrong.
5697 S.Diag(Loc, diag::err_template_spec_decl_class_scope)
5698 << Specialized;
5699 return true;
5700 }
5701
Douglas Gregore4b05162009-10-07 17:21:34 +00005702 // C++ [temp.class.spec]p6:
5703 // A class template partial specialization may be declared or redeclared
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005704 // in any namespace scope in which its definition may be defined (14.5.1
5705 // and 14.5.2).
Richard Smitha98f8fc2013-12-07 05:09:50 +00005706 DeclContext *SpecializedContext
Douglas Gregor54888652009-10-07 00:13:32 +00005707 = Specialized->getDeclContext()->getEnclosingNamespaceContext();
Douglas Gregore4b05162009-10-07 17:21:34 +00005708 DeclContext *DC = S.CurContext->getEnclosingNamespaceContext();
Richard Smitha98f8fc2013-12-07 05:09:50 +00005709
5710 // Make sure that this redeclaration (or definition) occurs in an enclosing
5711 // namespace.
5712 // Note that HandleDeclarator() performs this check for explicit
5713 // specializations of function templates, static data members, and member
5714 // functions, so we skip the check here for those kinds of entities.
5715 // FIXME: HandleDeclarator's diagnostics aren't quite as good, though.
5716 // Should we refactor that check, so that it occurs later?
5717 if (!DC->Encloses(SpecializedContext) &&
5718 !(isa<FunctionTemplateDecl>(Specialized) ||
5719 isa<FunctionDecl>(Specialized) ||
5720 isa<VarTemplateDecl>(Specialized) ||
5721 isa<VarDecl>(Specialized))) {
5722 if (isa<TranslationUnitDecl>(SpecializedContext))
5723 S.Diag(Loc, diag::err_template_spec_redecl_global_scope)
5724 << EntityKind << Specialized;
5725 else if (isa<NamespaceDecl>(SpecializedContext))
5726 S.Diag(Loc, diag::err_template_spec_redecl_out_of_scope)
5727 << EntityKind << Specialized
5728 << cast<NamedDecl>(SpecializedContext);
5729 else
5730 llvm_unreachable("unexpected namespace context for specialization");
5731
5732 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
5733 } else if ((!PrevDecl ||
5734 getTemplateSpecializationKind(PrevDecl) == TSK_Undeclared ||
5735 getTemplateSpecializationKind(PrevDecl) ==
5736 TSK_ImplicitInstantiation)) {
Douglas Gregorb1aab432010-09-12 05:08:28 +00005737 // C++ [temp.exp.spec]p2:
5738 // An explicit specialization shall be declared in the namespace of which
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005739 // the template is a member, or, for member templates, in the namespace
Douglas Gregorb1aab432010-09-12 05:08:28 +00005740 // of which the enclosing class or enclosing class template is a member.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005741 // An explicit specialization of a member function, member class or
5742 // static data member of a class template shall be declared in the
Douglas Gregorb1aab432010-09-12 05:08:28 +00005743 // namespace of which the class template is a member.
5744 //
Richard Smitha98f8fc2013-12-07 05:09:50 +00005745 // C++11 [temp.expl.spec]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005746 // An explicit specialization shall be declared in a namespace enclosing
Douglas Gregorb1aab432010-09-12 05:08:28 +00005747 // the specialized template.
Richard Smitha98f8fc2013-12-07 05:09:50 +00005748 // C++11 [temp.explicit]p3:
5749 // An explicit instantiation shall appear in an enclosing namespace of its
5750 // template.
Richard Smith0bf8a4922011-10-18 20:49:44 +00005751 if (!DC->InEnclosingNamespaceSetOf(SpecializedContext)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005752 bool IsCPlusPlus11Extension = DC->Encloses(SpecializedContext);
Richard Smith0bf8a4922011-10-18 20:49:44 +00005753 if (isa<TranslationUnitDecl>(SpecializedContext)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005754 assert(!IsCPlusPlus11Extension &&
Richard Smith0bf8a4922011-10-18 20:49:44 +00005755 "DC encloses TU but isn't in enclosing namespace set");
5756 S.Diag(Loc, diag::err_template_spec_decl_out_of_scope_global)
Douglas Gregor8ce63152010-09-12 05:24:55 +00005757 << EntityKind << Specialized;
Richard Smith0bf8a4922011-10-18 20:49:44 +00005758 } else if (isa<NamespaceDecl>(SpecializedContext)) {
5759 int Diag;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005760 if (!IsCPlusPlus11Extension)
Richard Smith0bf8a4922011-10-18 20:49:44 +00005761 Diag = diag::err_template_spec_decl_out_of_scope;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005762 else if (!S.getLangOpts().CPlusPlus11)
Richard Smith0bf8a4922011-10-18 20:49:44 +00005763 Diag = diag::ext_template_spec_decl_out_of_scope;
5764 else
5765 Diag = diag::warn_cxx98_compat_template_spec_decl_out_of_scope;
5766 S.Diag(Loc, Diag)
5767 << EntityKind << Specialized << cast<NamedDecl>(SpecializedContext);
5768 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005769
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00005770 S.Diag(Specialized->getLocation(), diag::note_specialized_entity);
Douglas Gregorf47b9112009-02-25 22:02:03 +00005771 }
Douglas Gregorf47b9112009-02-25 22:02:03 +00005772 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005773
Douglas Gregorf47b9112009-02-25 22:02:03 +00005774 return false;
5775}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005776
Richard Smith6056d5e2014-02-09 00:54:43 +00005777static SourceRange findTemplateParameter(unsigned Depth, Expr *E) {
5778 if (!E->isInstantiationDependent())
5779 return SourceLocation();
5780 DependencyChecker Checker(Depth);
5781 Checker.TraverseStmt(E);
5782 if (Checker.Match && Checker.MatchLoc.isInvalid())
5783 return E->getSourceRange();
5784 return Checker.MatchLoc;
5785}
5786
5787static SourceRange findTemplateParameter(unsigned Depth, TypeLoc TL) {
5788 if (!TL.getType()->isDependentType())
5789 return SourceLocation();
5790 DependencyChecker Checker(Depth);
5791 Checker.TraverseTypeLoc(TL);
5792 if (Checker.Match && Checker.MatchLoc.isInvalid())
5793 return TL.getSourceRange();
5794 return Checker.MatchLoc;
5795}
5796
Larisse Voufo39a1e502013-08-06 01:03:05 +00005797/// \brief Subroutine of Sema::CheckTemplatePartialSpecializationArgs
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005798/// that checks non-type template partial specialization arguments.
Larisse Voufo39a1e502013-08-06 01:03:05 +00005799static bool CheckNonTypeTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00005800 Sema &S, SourceLocation TemplateNameLoc, NonTypeTemplateParmDecl *Param,
5801 const TemplateArgument *Args, unsigned NumArgs, bool IsDefaultArgument) {
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005802 for (unsigned I = 0; I != NumArgs; ++I) {
5803 if (Args[I].getKind() == TemplateArgument::Pack) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00005804 if (CheckNonTypeTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00005805 S, TemplateNameLoc, Param, Args[I].pack_begin(),
5806 Args[I].pack_size(), IsDefaultArgument))
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005807 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005808
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005809 continue;
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005810 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005811
Eli Friedmanb826a002012-09-26 02:36:12 +00005812 if (Args[I].getKind() != TemplateArgument::Expression)
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005813 continue;
Eli Friedmanb826a002012-09-26 02:36:12 +00005814
5815 Expr *ArgExpr = Args[I].getAsExpr();
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005816
Douglas Gregor98318c22011-01-03 21:37:45 +00005817 // We can have a pack expansion of any of the bullets below.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005818 if (PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(ArgExpr))
5819 ArgExpr = Expansion->getPattern();
Douglas Gregorca4686d2011-01-04 23:35:54 +00005820
5821 // Strip off any implicit casts we added as part of type checking.
5822 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
5823 ArgExpr = ICE->getSubExpr();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005824
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005825 // C++ [temp.class.spec]p8:
5826 // A non-type argument is non-specialized if it is the name of a
5827 // non-type parameter. All other non-type arguments are
5828 // specialized.
5829 //
5830 // Below, we check the two conditions that only apply to
5831 // specialized non-type arguments, so skip any non-specialized
5832 // arguments.
5833 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ArgExpr))
Douglas Gregorca4686d2011-01-04 23:35:54 +00005834 if (isa<NonTypeTemplateParmDecl>(DRE->getDecl()))
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005835 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005836
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005837 // C++ [temp.class.spec]p9:
5838 // Within the argument list of a class template partial
5839 // specialization, the following restrictions apply:
5840 // -- A partially specialized non-type argument expression
5841 // shall not involve a template parameter of the partial
5842 // specialization except when the argument expression is a
5843 // simple identifier.
Richard Smith6056d5e2014-02-09 00:54:43 +00005844 SourceRange ParamUseRange =
5845 findTemplateParameter(Param->getDepth(), ArgExpr);
5846 if (ParamUseRange.isValid()) {
5847 if (IsDefaultArgument) {
5848 S.Diag(TemplateNameLoc,
5849 diag::err_dependent_non_type_arg_in_partial_spec);
5850 S.Diag(ParamUseRange.getBegin(),
5851 diag::note_dependent_non_type_default_arg_in_partial_spec)
5852 << ParamUseRange;
5853 } else {
5854 S.Diag(ParamUseRange.getBegin(),
5855 diag::err_dependent_non_type_arg_in_partial_spec)
5856 << ParamUseRange;
5857 }
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005858 return true;
5859 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005860
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005861 // -- The type of a template parameter corresponding to a
5862 // specialized non-type argument shall not be dependent on a
5863 // parameter of the specialization.
Richard Smith6056d5e2014-02-09 00:54:43 +00005864 //
5865 // FIXME: We need to delay this check until instantiation in some cases:
5866 //
5867 // template<template<typename> class X> struct A {
5868 // template<typename T, X<T> N> struct B;
5869 // template<typename T> struct B<T, 0>;
5870 // };
5871 // template<typename> using X = int;
5872 // A<X>::B<int, 0> b;
5873 ParamUseRange = findTemplateParameter(
5874 Param->getDepth(), Param->getTypeSourceInfo()->getTypeLoc());
5875 if (ParamUseRange.isValid()) {
5876 S.Diag(IsDefaultArgument ? TemplateNameLoc : ArgExpr->getLocStart(),
5877 diag::err_dependent_typed_non_type_arg_in_partial_spec)
5878 << Param->getType() << ParamUseRange;
5879 S.Diag(Param->getLocation(), diag::note_template_param_here)
5880 << (IsDefaultArgument ? ParamUseRange : SourceRange());
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005881 return true;
5882 }
5883 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005884
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005885 return false;
5886}
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005887
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005888/// \brief Check the non-type template arguments of a class template
5889/// partial specialization according to C++ [temp.class.spec]p9.
5890///
Richard Smith6056d5e2014-02-09 00:54:43 +00005891/// \param TemplateNameLoc the location of the template name.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005892/// \param TemplateParams the template parameters of the primary class
Richard Smith6056d5e2014-02-09 00:54:43 +00005893/// template.
5894/// \param NumExplicit the number of explicitly-specified template arguments.
James Dennett634962f2012-06-14 21:40:34 +00005895/// \param TemplateArgs the template arguments of the class template
Richard Smith6056d5e2014-02-09 00:54:43 +00005896/// partial specialization.
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005897///
Richard Smith6056d5e2014-02-09 00:54:43 +00005898/// \returns \c true if there was an error, \c false otherwise.
Larisse Voufo39a1e502013-08-06 01:03:05 +00005899static bool CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00005900 Sema &S, SourceLocation TemplateNameLoc,
5901 TemplateParameterList *TemplateParams, unsigned NumExplicit,
Larisse Voufo39a1e502013-08-06 01:03:05 +00005902 SmallVectorImpl<TemplateArgument> &TemplateArgs) {
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005903 const TemplateArgument *ArgList = TemplateArgs.data();
5904
5905 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
5906 NonTypeTemplateParmDecl *Param
5907 = dyn_cast<NonTypeTemplateParmDecl>(TemplateParams->getParam(I));
5908 if (!Param)
5909 continue;
5910
Richard Smith6056d5e2014-02-09 00:54:43 +00005911 if (CheckNonTypeTemplatePartialSpecializationArgs(
5912 S, TemplateNameLoc, Param, &ArgList[I], 1, I >= NumExplicit))
Douglas Gregor875b6fe2011-01-03 21:13:47 +00005913 return true;
5914 }
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00005915
5916 return false;
5917}
5918
John McCall48871652010-08-21 09:40:31 +00005919DeclResult
John McCall9bb74a52009-07-31 02:45:11 +00005920Sema::ActOnClassTemplateSpecialization(Scope *S, unsigned TagSpec,
5921 TagUseKind TUK,
Mike Stump11289f42009-09-09 15:08:12 +00005922 SourceLocation KWLoc,
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +00005923 SourceLocation ModulePrivateLoc,
Richard Smith4b55a9c2014-04-17 03:29:33 +00005924 TemplateIdAnnotation &TemplateId,
Douglas Gregor67a65642009-02-17 23:15:12 +00005925 AttributeList *Attr,
5926 MultiTemplateParamsArg TemplateParameterLists) {
Douglas Gregor2208a292009-09-26 20:57:03 +00005927 assert(TUK != TUK_Reference && "References are not specializations");
John McCall06f6fe8d2009-09-04 01:14:41 +00005928
Richard Smith4b55a9c2014-04-17 03:29:33 +00005929 CXXScopeSpec &SS = TemplateId.SS;
5930
Abramo Bagnara60804e12011-03-18 15:16:37 +00005931 // NOTE: KWLoc is the location of the tag keyword. This will instead
5932 // store the location of the outermost template keyword in the declaration.
5933 SourceLocation TemplateKWLoc = TemplateParameterLists.size() > 0
Richard Smith4b55a9c2014-04-17 03:29:33 +00005934 ? TemplateParameterLists[0]->getTemplateLoc() : KWLoc;
5935 SourceLocation TemplateNameLoc = TemplateId.TemplateNameLoc;
5936 SourceLocation LAngleLoc = TemplateId.LAngleLoc;
5937 SourceLocation RAngleLoc = TemplateId.RAngleLoc;
Abramo Bagnara60804e12011-03-18 15:16:37 +00005938
Douglas Gregor67a65642009-02-17 23:15:12 +00005939 // Find the class template we're specializing
Richard Smith4b55a9c2014-04-17 03:29:33 +00005940 TemplateName Name = TemplateId.Template.get();
Mike Stump11289f42009-09-09 15:08:12 +00005941 ClassTemplateDecl *ClassTemplate
Douglas Gregordd6c0352009-11-12 00:46:20 +00005942 = dyn_cast_or_null<ClassTemplateDecl>(Name.getAsTemplateDecl());
5943
5944 if (!ClassTemplate) {
5945 Diag(TemplateNameLoc, diag::err_not_class_template_specialization)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005946 << (Name.getAsTemplateDecl() &&
Douglas Gregordd6c0352009-11-12 00:46:20 +00005947 isa<TemplateTemplateParmDecl>(Name.getAsTemplateDecl()));
5948 return true;
5949 }
Douglas Gregor67a65642009-02-17 23:15:12 +00005950
Douglas Gregor5c0405d2009-10-07 22:35:40 +00005951 bool isExplicitSpecialization = false;
Douglas Gregor2373c592009-05-31 09:31:02 +00005952 bool isPartialSpecialization = false;
5953
Douglas Gregorf47b9112009-02-25 22:02:03 +00005954 // Check the validity of the template headers that introduce this
5955 // template.
Douglas Gregor2208a292009-09-26 20:57:03 +00005956 // FIXME: We probably shouldn't complain about these headers for
5957 // friend declarations.
Douglas Gregor5f0e2522010-07-14 23:14:12 +00005958 bool Invalid = false;
Robert Wilhelmf2d2e8f2013-07-21 15:20:44 +00005959 TemplateParameterList *TemplateParams =
5960 MatchTemplateParametersToScopeSpecifier(
Richard Smith4b55a9c2014-04-17 03:29:33 +00005961 KWLoc, TemplateNameLoc, SS, &TemplateId,
5962 TemplateParameterLists, TUK == TUK_Friend, isExplicitSpecialization,
5963 Invalid);
Douglas Gregor5f0e2522010-07-14 23:14:12 +00005964 if (Invalid)
5965 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005966
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005967 if (TemplateParams && TemplateParams->size() > 0) {
5968 isPartialSpecialization = true;
Douglas Gregorf47b9112009-02-25 22:02:03 +00005969
Douglas Gregorec9518b2010-12-21 08:14:57 +00005970 if (TUK == TUK_Friend) {
5971 Diag(KWLoc, diag::err_partial_specialization_friend)
5972 << SourceRange(LAngleLoc, RAngleLoc);
5973 return true;
5974 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00005975
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005976 // C++ [temp.class.spec]p10:
5977 // The template parameter list of a specialization shall not
5978 // contain default template argument values.
5979 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) {
5980 Decl *Param = TemplateParams->getParam(I);
5981 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) {
5982 if (TTP->hasDefaultArgument()) {
Mike Stump11289f42009-09-09 15:08:12 +00005983 Diag(TTP->getDefaultArgumentLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005984 diag::err_default_arg_in_partial_spec);
John McCall0ad16662009-10-29 08:12:44 +00005985 TTP->removeDefaultArgument();
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005986 }
5987 } else if (NonTypeTemplateParmDecl *NTTP
5988 = dyn_cast<NonTypeTemplateParmDecl>(Param)) {
5989 if (Expr *DefArg = NTTP->getDefaultArgument()) {
Mike Stump11289f42009-09-09 15:08:12 +00005990 Diag(NTTP->getDefaultArgumentLoc(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005991 diag::err_default_arg_in_partial_spec)
5992 << DefArg->getSourceRange();
Abramo Bagnara656e3002010-06-09 09:26:05 +00005993 NTTP->removeDefaultArgument();
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005994 }
5995 } else {
5996 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(Param);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00005997 if (TTP->hasDefaultArgument()) {
5998 Diag(TTP->getDefaultArgument().getLocation(),
Douglas Gregor1d5e9f92009-08-25 17:23:04 +00005999 diag::err_default_arg_in_partial_spec)
Douglas Gregor9167f8b2009-11-11 01:00:40 +00006000 << TTP->getDefaultArgument().getSourceRange();
Abramo Bagnara656e3002010-06-09 09:26:05 +00006001 TTP->removeDefaultArgument();
Douglas Gregord5222052009-06-12 19:43:02 +00006002 }
6003 }
6004 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006005 } else if (TemplateParams) {
6006 if (TUK == TUK_Friend)
6007 Diag(KWLoc, diag::err_template_spec_friend)
Douglas Gregora771f462010-03-31 17:46:05 +00006008 << FixItHint::CreateRemoval(
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00006009 SourceRange(TemplateParams->getTemplateLoc(),
6010 TemplateParams->getRAngleLoc()))
6011 << SourceRange(LAngleLoc, RAngleLoc);
6012 else
6013 isExplicitSpecialization = true;
Richard Smith4b55a9c2014-04-17 03:29:33 +00006014 } else {
6015 assert(TUK == TUK_Friend && "should have a 'template<>' for this decl");
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006016 }
Douglas Gregorf47b9112009-02-25 22:02:03 +00006017
Douglas Gregor67a65642009-02-17 23:15:12 +00006018 // Check that the specialization uses the same tag kind as the
6019 // original template.
Abramo Bagnara6150c882010-05-11 21:36:43 +00006020 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
6021 assert(Kind != TTK_Enum && "Invalid enum tag in class template spec!");
Douglas Gregord9034f02009-05-14 16:41:31 +00006022 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieucaa33d32011-06-10 03:11:26 +00006023 Kind, TUK == TUK_Definition, KWLoc,
Douglas Gregord9034f02009-05-14 16:41:31 +00006024 *ClassTemplate->getIdentifier())) {
Mike Stump11289f42009-09-09 15:08:12 +00006025 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregor170512f2009-04-01 23:51:29 +00006026 << ClassTemplate
Douglas Gregora771f462010-03-31 17:46:05 +00006027 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregor170512f2009-04-01 23:51:29 +00006028 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump11289f42009-09-09 15:08:12 +00006029 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregor67a65642009-02-17 23:15:12 +00006030 diag::note_previous_use);
6031 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
6032 }
6033
Douglas Gregorc40290e2009-03-09 23:48:35 +00006034 // Translate the parser's template argument list in our AST format.
Richard Smith4b55a9c2014-04-17 03:29:33 +00006035 TemplateArgumentListInfo TemplateArgs =
6036 makeTemplateArgumentListInfo(*this, TemplateId);
Douglas Gregorc40290e2009-03-09 23:48:35 +00006037
Douglas Gregor14406932011-01-03 20:35:03 +00006038 // Check for unexpanded parameter packs in any of the template arguments.
6039 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006040 if (DiagnoseUnexpandedParameterPack(TemplateArgs[I],
Douglas Gregor14406932011-01-03 20:35:03 +00006041 UPPC_PartialSpecialization))
6042 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006043
Douglas Gregor67a65642009-02-17 23:15:12 +00006044 // Check that the template argument list is well-formed for this
6045 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006046 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00006047 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
6048 TemplateArgs, false, Converted))
Douglas Gregorc08f4892009-03-25 00:13:59 +00006049 return true;
Douglas Gregor67a65642009-02-17 23:15:12 +00006050
Douglas Gregor2373c592009-05-31 09:31:02 +00006051 // Find the class template (partial) specialization declaration that
Douglas Gregor67a65642009-02-17 23:15:12 +00006052 // corresponds to these arguments.
Douglas Gregord5222052009-06-12 19:43:02 +00006053 if (isPartialSpecialization) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00006054 if (CheckTemplatePartialSpecializationArgs(
Richard Smith6056d5e2014-02-09 00:54:43 +00006055 *this, TemplateNameLoc, ClassTemplate->getTemplateParameters(),
6056 TemplateArgs.size(), Converted))
Douglas Gregor8cfd2ba2009-06-12 21:21:02 +00006057 return true;
6058
Douglas Gregor678d76c2011-07-01 01:22:09 +00006059 bool InstantiationDependent;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006060 if (!Name.isDependent() &&
Douglas Gregor92354b62010-02-09 00:37:32 +00006061 !TemplateSpecializationType::anyDependentTemplateArguments(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006062 TemplateArgs.getArgumentArray(),
Douglas Gregor678d76c2011-07-01 01:22:09 +00006063 TemplateArgs.size(),
6064 InstantiationDependent)) {
Douglas Gregor92354b62010-02-09 00:37:32 +00006065 Diag(TemplateNameLoc, diag::err_partial_spec_fully_specialized)
6066 << ClassTemplate->getDeclName();
6067 isPartialSpecialization = false;
Douglas Gregor92354b62010-02-09 00:37:32 +00006068 }
6069 }
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006070
Craig Topperc3ec1492014-05-26 06:22:03 +00006071 void *InsertPos = nullptr;
6072 ClassTemplateSpecializationDecl *PrevDecl = nullptr;
Douglas Gregor2373c592009-05-31 09:31:02 +00006073
6074 if (isPartialSpecialization)
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006075 // FIXME: Template parameter list matters, too
Craig Topper7e0daca2014-06-26 04:58:53 +00006076 PrevDecl = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
Douglas Gregor2373c592009-05-31 09:31:02 +00006077 else
Craig Topper7e0daca2014-06-26 04:58:53 +00006078 PrevDecl = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregor67a65642009-02-17 23:15:12 +00006079
Craig Topperc3ec1492014-05-26 06:22:03 +00006080 ClassTemplateSpecializationDecl *Specialization = nullptr;
Douglas Gregor67a65642009-02-17 23:15:12 +00006081
Douglas Gregorf47b9112009-02-25 22:02:03 +00006082 // Check whether we can declare a class template specialization in
6083 // the current scope.
Douglas Gregor2208a292009-09-26 20:57:03 +00006084 if (TUK != TUK_Friend &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006085 CheckTemplateSpecializationScope(*this, ClassTemplate, PrevDecl,
6086 TemplateNameLoc,
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006087 isPartialSpecialization))
Douglas Gregorc08f4892009-03-25 00:13:59 +00006088 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006089
Douglas Gregor15301382009-07-30 17:40:51 +00006090 // The canonical type
6091 QualType CanonType;
Richard Smith871cd4c2014-05-23 21:00:28 +00006092 if (isPartialSpecialization) {
Douglas Gregor15301382009-07-30 17:40:51 +00006093 // Build the canonical type that describes the converted template
6094 // arguments of the class template partial specialization.
Douglas Gregor92354b62010-02-09 00:37:32 +00006095 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name);
6096 CanonType = Context.getTemplateSpecializationType(CanonTemplate,
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006097 Converted.data(),
6098 Converted.size());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006099
6100 if (Context.hasSameType(CanonType,
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006101 ClassTemplate->getInjectedClassNameSpecialization())) {
6102 // C++ [temp.class.spec]p9b3:
6103 //
6104 // -- The argument list of the specialization shall not be identical
6105 // to the implicit argument list of the primary template.
6106 Diag(TemplateNameLoc, diag::err_partial_spec_args_match_primary_template)
Richard Smith300e0c32013-09-24 04:49:23 +00006107 << /*class template*/0 << (TUK == TUK_Definition)
Douglas Gregor26701a42011-09-09 02:06:17 +00006108 << FixItHint::CreateRemoval(SourceRange(LAngleLoc, RAngleLoc));
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006109 return CheckClassTemplate(S, TagSpec, TUK, KWLoc, SS,
6110 ClassTemplate->getIdentifier(),
6111 TemplateNameLoc,
6112 Attr,
6113 TemplateParams,
Douglas Gregor2820e692011-09-09 19:05:14 +00006114 AS_none, /*ModulePrivateLoc=*/SourceLocation(),
Nikola Smiljanic4fc91532014-07-17 01:59:34 +00006115 /*FriendLoc*/SourceLocation(),
Abramo Bagnara60804e12011-03-18 15:16:37 +00006116 TemplateParameterLists.size() - 1,
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006117 TemplateParameterLists.data());
Douglas Gregordd7ec4632010-12-23 17:13:55 +00006118 }
Douglas Gregor15301382009-07-30 17:40:51 +00006119
Douglas Gregor2373c592009-05-31 09:31:02 +00006120 // Create a new class template partial specialization declaration node.
Douglas Gregor2373c592009-05-31 09:31:02 +00006121 ClassTemplatePartialSpecializationDecl *PrevPartial
6122 = cast_or_null<ClassTemplatePartialSpecializationDecl>(PrevDecl);
Mike Stump11289f42009-09-09 15:08:12 +00006123 ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregore9029562010-05-06 00:28:52 +00006124 = ClassTemplatePartialSpecializationDecl::Create(Context, Kind,
Douglas Gregor2373c592009-05-31 09:31:02 +00006125 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00006126 KWLoc, TemplateNameLoc,
Anders Carlsson1b28c3e2009-06-05 04:06:48 +00006127 TemplateParams,
6128 ClassTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00006129 Converted.data(),
6130 Converted.size(),
John McCall6b51f282009-11-23 01:53:49 +00006131 TemplateArgs,
John McCalle78aac42010-03-10 03:28:59 +00006132 CanonType,
Richard Smithb2f61b42013-08-22 23:27:37 +00006133 PrevPartial);
John McCall3e11ebe2010-03-15 10:12:16 +00006134 SetNestedNameSpecifier(Partial, SS);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006135 if (TemplateParameterLists.size() > 1 && SS.isSet()) {
Douglas Gregor20527e22010-06-15 17:44:38 +00006136 Partial->setTemplateParameterListsInfo(Context,
Abramo Bagnara60804e12011-03-18 15:16:37 +00006137 TemplateParameterLists.size() - 1,
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006138 TemplateParameterLists.data());
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00006139 }
Douglas Gregor2373c592009-05-31 09:31:02 +00006140
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006141 if (!PrevPartial)
6142 ClassTemplate->AddPartialSpecialization(Partial, InsertPos);
Douglas Gregor2373c592009-05-31 09:31:02 +00006143 Specialization = Partial;
Douglas Gregor91772d12009-06-13 00:26:55 +00006144
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006145 // If we are providing an explicit specialization of a member class
Douglas Gregor21610382009-10-29 00:04:11 +00006146 // template specialization, make a note of that.
6147 if (PrevPartial && PrevPartial->getInstantiatedFromMember())
6148 PrevPartial->setMemberSpecialization();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006149
Douglas Gregor91772d12009-06-13 00:26:55 +00006150 // Check that all of the template parameters of the class template
6151 // partial specialization are deducible from the template
6152 // arguments. If not, this class template partial specialization
6153 // will never be used.
Benjamin Kramere0513cb2012-01-30 16:17:39 +00006154 llvm::SmallBitVector DeducibleParams(TemplateParams->size());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006155 MarkUsedTemplateParameters(Partial->getTemplateArgs(), true,
Douglas Gregor21610382009-10-29 00:04:11 +00006156 TemplateParams->getDepth(),
Douglas Gregore1d2ef32009-09-14 21:25:05 +00006157 DeducibleParams);
Douglas Gregor91772d12009-06-13 00:26:55 +00006158
Benjamin Kramere0513cb2012-01-30 16:17:39 +00006159 if (!DeducibleParams.all()) {
6160 unsigned NumNonDeducible = DeducibleParams.size()-DeducibleParams.count();
Douglas Gregor91772d12009-06-13 00:26:55 +00006161 Diag(TemplateNameLoc, diag::warn_partial_specs_not_deducible)
Richard Smith300e0c32013-09-24 04:49:23 +00006162 << /*class template*/0 << (NumNonDeducible > 1)
Douglas Gregor91772d12009-06-13 00:26:55 +00006163 << SourceRange(TemplateNameLoc, RAngleLoc);
6164 for (unsigned I = 0, N = DeducibleParams.size(); I != N; ++I) {
6165 if (!DeducibleParams[I]) {
6166 NamedDecl *Param = cast<NamedDecl>(TemplateParams->getParam(I));
6167 if (Param->getDeclName())
Mike Stump11289f42009-09-09 15:08:12 +00006168 Diag(Param->getLocation(),
Douglas Gregor91772d12009-06-13 00:26:55 +00006169 diag::note_partial_spec_unused_parameter)
6170 << Param->getDeclName();
6171 else
Mike Stump11289f42009-09-09 15:08:12 +00006172 Diag(Param->getLocation(),
Douglas Gregor91772d12009-06-13 00:26:55 +00006173 diag::note_partial_spec_unused_parameter)
David Blaikieabe1a392014-04-02 05:58:29 +00006174 << "(anonymous)";
Douglas Gregor91772d12009-06-13 00:26:55 +00006175 }
6176 }
6177 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006178 } else {
6179 // Create a new class template specialization declaration node for
Douglas Gregor2208a292009-09-26 20:57:03 +00006180 // this explicit specialization or friend declaration.
Douglas Gregor67a65642009-02-17 23:15:12 +00006181 Specialization
Douglas Gregore9029562010-05-06 00:28:52 +00006182 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregor67a65642009-02-17 23:15:12 +00006183 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00006184 KWLoc, TemplateNameLoc,
Mike Stump11289f42009-09-09 15:08:12 +00006185 ClassTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00006186 Converted.data(),
6187 Converted.size(),
Douglas Gregor67a65642009-02-17 23:15:12 +00006188 PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00006189 SetNestedNameSpecifier(Specialization, SS);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006190 if (TemplateParameterLists.size() > 0) {
Douglas Gregor20527e22010-06-15 17:44:38 +00006191 Specialization->setTemplateParameterListsInfo(Context,
Abramo Bagnara60804e12011-03-18 15:16:37 +00006192 TemplateParameterLists.size(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00006193 TemplateParameterLists.data());
Abramo Bagnarada41d0c2010-06-12 08:15:14 +00006194 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006195
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00006196 if (!PrevDecl)
6197 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Douglas Gregor15301382009-07-30 17:40:51 +00006198
6199 CanonType = Context.getTypeDeclType(Specialization);
Douglas Gregor67a65642009-02-17 23:15:12 +00006200 }
6201
Douglas Gregor06db9f52009-10-12 20:18:28 +00006202 // C++ [temp.expl.spec]p6:
6203 // If a template, a member template or the member of a class template is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006204 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00006205 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006206 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00006207 // use occurs; no diagnostic is required.
6208 if (PrevDecl && PrevDecl->getPointOfInstantiation().isValid()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006209 bool Okay = false;
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006210 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006211 // Is there any previous explicit specialization declaration?
6212 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6213 Okay = true;
6214 break;
6215 }
6216 }
Douglas Gregor06db9f52009-10-12 20:18:28 +00006217
Douglas Gregorc854c662010-02-26 06:03:23 +00006218 if (!Okay) {
6219 SourceRange Range(TemplateNameLoc, RAngleLoc);
6220 Diag(TemplateNameLoc, diag::err_specialization_after_instantiation)
6221 << Context.getTypeDeclType(Specialization) << Range;
6222
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006223 Diag(PrevDecl->getPointOfInstantiation(),
Douglas Gregorc854c662010-02-26 06:03:23 +00006224 diag::note_instantiation_required_here)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006225 << (PrevDecl->getTemplateSpecializationKind()
Douglas Gregor06db9f52009-10-12 20:18:28 +00006226 != TSK_ImplicitInstantiation);
Douglas Gregorc854c662010-02-26 06:03:23 +00006227 return true;
6228 }
Douglas Gregor06db9f52009-10-12 20:18:28 +00006229 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006230
Douglas Gregor2208a292009-09-26 20:57:03 +00006231 // If this is not a friend, note that this is an explicit specialization.
6232 if (TUK != TUK_Friend)
6233 Specialization->setSpecializationKind(TSK_ExplicitSpecialization);
Douglas Gregor67a65642009-02-17 23:15:12 +00006234
6235 // Check that this isn't a redefinition of this specialization.
John McCall9bb74a52009-07-31 02:45:11 +00006236 if (TUK == TUK_Definition) {
Douglas Gregor0a5a2212010-02-11 01:04:33 +00006237 if (RecordDecl *Def = Specialization->getDefinition()) {
Douglas Gregor67a65642009-02-17 23:15:12 +00006238 SourceRange Range(TemplateNameLoc, RAngleLoc);
Mike Stump11289f42009-09-09 15:08:12 +00006239 Diag(TemplateNameLoc, diag::err_redefinition)
Douglas Gregor2373c592009-05-31 09:31:02 +00006240 << Context.getTypeDeclType(Specialization) << Range;
Douglas Gregor67a65642009-02-17 23:15:12 +00006241 Diag(Def->getLocation(), diag::note_previous_definition);
6242 Specialization->setInvalidDecl();
Douglas Gregorc08f4892009-03-25 00:13:59 +00006243 return true;
Douglas Gregor67a65642009-02-17 23:15:12 +00006244 }
6245 }
6246
John McCall659a3372010-12-18 03:30:47 +00006247 if (Attr)
6248 ProcessDeclAttributeList(S, Specialization, Attr);
6249
Richard Smith034b94a2012-08-17 03:20:55 +00006250 // Add alignment attributes if necessary; these attributes are checked when
6251 // the ASTContext lays out the structure.
6252 if (TUK == TUK_Definition) {
6253 AddAlignmentAttributesForRecord(Specialization);
6254 AddMsStructLayoutForRecord(Specialization);
6255 }
6256
Douglas Gregor3c7cd6a2011-09-09 20:53:38 +00006257 if (ModulePrivateLoc.isValid())
6258 Diag(Specialization->getLocation(), diag::err_module_private_specialization)
6259 << (isPartialSpecialization? 1 : 0)
6260 << FixItHint::CreateRemoval(ModulePrivateLoc);
6261
Douglas Gregord56a91e2009-02-26 22:19:44 +00006262 // Build the fully-sugared type for this class template
6263 // specialization as the user wrote in the specialization
6264 // itself. This means that we'll pretty-print the type retrieved
6265 // from the specialization's declaration the way that the user
6266 // actually wrote the specialization, rather than formatting the
6267 // name based on the "canonical" representation used to store the
6268 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00006269 TypeSourceInfo *WrittenTy
6270 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
6271 TemplateArgs, CanonType);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006272 if (TUK != TUK_Friend) {
Douglas Gregor2208a292009-09-26 20:57:03 +00006273 Specialization->setTypeAsWritten(WrittenTy);
Abramo Bagnara60804e12011-03-18 15:16:37 +00006274 Specialization->setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006275 }
Douglas Gregor67a65642009-02-17 23:15:12 +00006276
Douglas Gregor1e249f82009-02-25 22:18:32 +00006277 // C++ [temp.expl.spec]p9:
6278 // A template explicit specialization is in the scope of the
6279 // namespace in which the template was defined.
6280 //
6281 // We actually implement this paragraph where we set the semantic
6282 // context (in the creation of the ClassTemplateSpecializationDecl),
6283 // but we also maintain the lexical context where the actual
6284 // definition occurs.
Douglas Gregor67a65642009-02-17 23:15:12 +00006285 Specialization->setLexicalDeclContext(CurContext);
Mike Stump11289f42009-09-09 15:08:12 +00006286
Douglas Gregor67a65642009-02-17 23:15:12 +00006287 // We may be starting the definition of this specialization.
John McCall9bb74a52009-07-31 02:45:11 +00006288 if (TUK == TUK_Definition)
Douglas Gregor67a65642009-02-17 23:15:12 +00006289 Specialization->startDefinition();
6290
Douglas Gregor2208a292009-09-26 20:57:03 +00006291 if (TUK == TUK_Friend) {
6292 FriendDecl *Friend = FriendDecl::Create(Context, CurContext,
6293 TemplateNameLoc,
John McCall15ad0962010-03-25 18:04:51 +00006294 WrittenTy,
Douglas Gregor2208a292009-09-26 20:57:03 +00006295 /*FIXME:*/KWLoc);
6296 Friend->setAccess(AS_public);
6297 CurContext->addDecl(Friend);
6298 } else {
6299 // Add the specialization into its lexical context, so that it can
6300 // be seen when iterating through the list of declarations in that
6301 // context. However, specializations are not found by name lookup.
6302 CurContext->addDecl(Specialization);
6303 }
John McCall48871652010-08-21 09:40:31 +00006304 return Specialization;
Douglas Gregor67a65642009-02-17 23:15:12 +00006305}
Douglas Gregor333489b2009-03-27 23:10:48 +00006306
John McCall48871652010-08-21 09:40:31 +00006307Decl *Sema::ActOnTemplateDeclarator(Scope *S,
Douglas Gregorb52fabb2009-06-23 23:11:28 +00006308 MultiTemplateParamsArg TemplateParameterLists,
John McCall48871652010-08-21 09:40:31 +00006309 Declarator &D) {
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006310 Decl *NewDecl = HandleDeclarator(S, D, TemplateParameterLists);
Dmitri Gribenko34df2202012-07-31 22:37:06 +00006311 ActOnDocumentableDecl(NewDecl);
6312 return NewDecl;
Douglas Gregorb52fabb2009-06-23 23:11:28 +00006313}
6314
John McCall48871652010-08-21 09:40:31 +00006315Decl *Sema::ActOnStartOfFunctionTemplateDef(Scope *FnBodyScope,
Douglas Gregor17a7c122009-06-24 00:54:41 +00006316 MultiTemplateParamsArg TemplateParameterLists,
John McCall48871652010-08-21 09:40:31 +00006317 Declarator &D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006318 assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
Abramo Bagnara924a8f32010-12-10 16:29:40 +00006319 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Mike Stump11289f42009-09-09 15:08:12 +00006320
Douglas Gregor17a7c122009-06-24 00:54:41 +00006321 if (FTI.hasPrototype) {
Mike Stump11289f42009-09-09 15:08:12 +00006322 // FIXME: Diagnose arguments without names in C.
Douglas Gregor17a7c122009-06-24 00:54:41 +00006323 }
Mike Stump11289f42009-09-09 15:08:12 +00006324
Douglas Gregor17a7c122009-06-24 00:54:41 +00006325 Scope *ParentScope = FnBodyScope->getParent();
Mike Stump11289f42009-09-09 15:08:12 +00006326
Douglas Gregor5d1b4e32011-11-07 20:56:01 +00006327 D.setFunctionDefinitionKind(FDK_Definition);
John McCall48871652010-08-21 09:40:31 +00006328 Decl *DP = HandleDeclarator(ParentScope, D,
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006329 TemplateParameterLists);
Argyrios Kyrtzidis6fada2d2012-12-14 06:53:58 +00006330 return ActOnStartOfFunctionDef(FnBodyScope, DP);
Douglas Gregor17a7c122009-06-24 00:54:41 +00006331}
6332
John McCall4f7ced62010-02-11 01:33:53 +00006333/// \brief Strips various properties off an implicit instantiation
6334/// that has just been explicitly specialized.
6335static void StripImplicitInstantiation(NamedDecl *D) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00006336 D->dropAttrs();
John McCall4f7ced62010-02-11 01:33:53 +00006337
6338 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
6339 FD->setInlineSpecified(false);
Jordan Rosea0a86be2013-03-08 22:25:36 +00006340
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +00006341 for (auto I : FD->params())
6342 I->dropAttrs();
John McCall4f7ced62010-02-11 01:33:53 +00006343 }
6344}
6345
Nico Webera8f80b32012-01-09 19:52:25 +00006346/// \brief Compute the diagnostic location for an explicit instantiation
6347// declaration or definition.
6348static SourceLocation DiagLocForExplicitInstantiation(
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006349 NamedDecl* D, SourceLocation PointOfInstantiation) {
Nico Webera8f80b32012-01-09 19:52:25 +00006350 // Explicit instantiations following a specialization have no effect and
6351 // hence no PointOfInstantiation. In that case, walk decl backwards
6352 // until a valid name loc is found.
6353 SourceLocation PrevDiagLoc = PointOfInstantiation;
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006354 for (Decl *Prev = D; Prev && !PrevDiagLoc.isValid();
6355 Prev = Prev->getPreviousDecl()) {
Nico Webera8f80b32012-01-09 19:52:25 +00006356 PrevDiagLoc = Prev->getLocation();
6357 }
6358 assert(PrevDiagLoc.isValid() &&
6359 "Explicit instantiation without point of instantiation?");
6360 return PrevDiagLoc;
6361}
6362
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006363/// \brief Diagnose cases where we have an explicit template specialization
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006364/// before/after an explicit template instantiation, producing diagnostics
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006365/// for those cases where they are required and determining whether the
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006366/// new specialization/instantiation will have any effect.
6367///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006368/// \param NewLoc the location of the new explicit specialization or
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006369/// instantiation.
6370///
6371/// \param NewTSK the kind of the new explicit specialization or instantiation.
6372///
6373/// \param PrevDecl the previous declaration of the entity.
6374///
6375/// \param PrevTSK the kind of the old explicit specialization or instantiatin.
6376///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006377/// \param PrevPointOfInstantiation if valid, indicates where the previus
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006378/// declaration was instantiated (either implicitly or explicitly).
6379///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006380/// \param HasNoEffect will be set to true to indicate that the new
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006381/// specialization or instantiation has no effect and should be ignored.
6382///
6383/// \returns true if there was an error that should prevent the introduction of
6384/// the new declaration into the AST, false otherwise.
Douglas Gregor1d957a32009-10-27 18:42:08 +00006385bool
6386Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
6387 TemplateSpecializationKind NewTSK,
6388 NamedDecl *PrevDecl,
6389 TemplateSpecializationKind PrevTSK,
6390 SourceLocation PrevPointOfInstantiation,
Abramo Bagnara8075c852010-06-12 07:44:57 +00006391 bool &HasNoEffect) {
6392 HasNoEffect = false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006393
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006394 switch (NewTSK) {
6395 case TSK_Undeclared:
6396 case TSK_ImplicitInstantiation:
David Majnemer192d1792013-11-27 08:20:38 +00006397 assert(
6398 (PrevTSK == TSK_Undeclared || PrevTSK == TSK_ImplicitInstantiation) &&
6399 "previous declaration must be implicit!");
6400 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006401
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006402 case TSK_ExplicitSpecialization:
6403 switch (PrevTSK) {
6404 case TSK_Undeclared:
6405 case TSK_ExplicitSpecialization:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006406 // Okay, we're just specializing something that is either already
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006407 // explicitly specialized or has merely been mentioned without any
6408 // instantiation.
6409 return false;
6410
6411 case TSK_ImplicitInstantiation:
6412 if (PrevPointOfInstantiation.isInvalid()) {
6413 // The declaration itself has not actually been instantiated, so it is
6414 // still okay to specialize it.
John McCall4f7ced62010-02-11 01:33:53 +00006415 StripImplicitInstantiation(PrevDecl);
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006416 return false;
6417 }
6418 // Fall through
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006419
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006420 case TSK_ExplicitInstantiationDeclaration:
6421 case TSK_ExplicitInstantiationDefinition:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006422 assert((PrevTSK == TSK_ImplicitInstantiation ||
6423 PrevPointOfInstantiation.isValid()) &&
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006424 "Explicit instantiation without point of instantiation?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006425
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006426 // C++ [temp.expl.spec]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006427 // If a template, a member template or the member of a class template
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006428 // is explicitly specialized then that specialization shall be declared
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006429 // before the first use of that specialization that would cause an
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006430 // implicit instantiation to take place, in every translation unit in
6431 // which such a use occurs; no diagnostic is required.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006432 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Douglas Gregorc854c662010-02-26 06:03:23 +00006433 // Is there any previous explicit specialization declaration?
6434 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization)
6435 return false;
6436 }
6437
Douglas Gregor1d957a32009-10-27 18:42:08 +00006438 Diag(NewLoc, diag::err_specialization_after_instantiation)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006439 << PrevDecl;
Douglas Gregor1d957a32009-10-27 18:42:08 +00006440 Diag(PrevPointOfInstantiation, diag::note_instantiation_required_here)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006441 << (PrevTSK != TSK_ImplicitInstantiation);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006442
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006443 return true;
6444 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006445
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006446 case TSK_ExplicitInstantiationDeclaration:
6447 switch (PrevTSK) {
6448 case TSK_ExplicitInstantiationDeclaration:
6449 // This explicit instantiation declaration is redundant (that's okay).
Abramo Bagnara8075c852010-06-12 07:44:57 +00006450 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006451 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006452
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006453 case TSK_Undeclared:
6454 case TSK_ImplicitInstantiation:
6455 // We're explicitly instantiating something that may have already been
6456 // implicitly instantiated; that's fine.
6457 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006458
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006459 case TSK_ExplicitSpecialization:
6460 // C++0x [temp.explicit]p4:
6461 // For a given set of template parameters, if an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006462 // of a template appears after a declaration of an explicit
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006463 // specialization for that template, the explicit instantiation has no
6464 // effect.
Abramo Bagnara8075c852010-06-12 07:44:57 +00006465 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006466 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006467
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006468 case TSK_ExplicitInstantiationDefinition:
6469 // C++0x [temp.explicit]p10:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006470 // If an entity is the subject of both an explicit instantiation
6471 // declaration and an explicit instantiation definition in the same
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006472 // translation unit, the definition shall follow the declaration.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006473 Diag(NewLoc,
Douglas Gregor1d957a32009-10-27 18:42:08 +00006474 diag::err_explicit_instantiation_declaration_after_definition);
Nico Weberd3bdadf2011-12-23 20:58:04 +00006475
6476 // Explicit instantiations following a specialization have no effect and
6477 // hence no PrevPointOfInstantiation. In that case, walk decl backwards
6478 // until a valid name loc is found.
Nico Webera8f80b32012-01-09 19:52:25 +00006479 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
6480 diag::note_explicit_instantiation_definition_here);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006481 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006482 return false;
6483 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006484
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006485 case TSK_ExplicitInstantiationDefinition:
6486 switch (PrevTSK) {
6487 case TSK_Undeclared:
6488 case TSK_ImplicitInstantiation:
6489 // We're explicitly instantiating something that may have already been
6490 // implicitly instantiated; that's fine.
6491 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006492
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006493 case TSK_ExplicitSpecialization:
6494 // C++ DR 259, C++0x [temp.explicit]p4:
6495 // For a given set of template parameters, if an explicit
6496 // instantiation of a template appears after a declaration of
6497 // an explicit specialization for that template, the explicit
6498 // instantiation has no effect.
6499 //
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006500 // In C++98/03 mode, we only give an extension warning here, because it
Douglas Gregor06aa50412010-04-09 21:02:29 +00006501 // is not harmful to try to explicitly instantiate something that
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006502 // has been explicitly specialized.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006503 Diag(NewLoc, getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00006504 diag::warn_cxx98_compat_explicit_instantiation_after_specialization :
6505 diag::ext_explicit_instantiation_after_specialization)
6506 << PrevDecl;
6507 Diag(PrevDecl->getLocation(),
6508 diag::note_previous_template_specialization);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006509 HasNoEffect = true;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006510 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006511
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006512 case TSK_ExplicitInstantiationDeclaration:
6513 // We're explicity instantiating a definition for something for which we
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006514 // were previously asked to suppress instantiations. That's fine.
Nico Weberd3bdadf2011-12-23 20:58:04 +00006515
6516 // C++0x [temp.explicit]p4:
6517 // For a given set of template parameters, if an explicit instantiation
6518 // of a template appears after a declaration of an explicit
6519 // specialization for that template, the explicit instantiation has no
6520 // effect.
Douglas Gregor0bc8a212012-01-14 15:55:47 +00006521 for (Decl *Prev = PrevDecl; Prev; Prev = Prev->getPreviousDecl()) {
Nico Weberd3bdadf2011-12-23 20:58:04 +00006522 // Is there any previous explicit specialization declaration?
6523 if (getTemplateSpecializationKind(Prev) == TSK_ExplicitSpecialization) {
6524 HasNoEffect = true;
6525 break;
6526 }
6527 }
6528
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006529 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006530
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006531 case TSK_ExplicitInstantiationDefinition:
6532 // C++0x [temp.spec]p5:
6533 // For a given template and a given set of template-arguments,
6534 // - an explicit instantiation definition shall appear at most once
6535 // in a program,
Will Wilsoneadcdbb2014-05-09 09:52:13 +00006536
6537 // MSVCCompat: MSVC silently ignores duplicate explicit instantiations.
6538 Diag(NewLoc, (getLangOpts().MSVCCompat)
Richard Smith1b98ccc2014-07-19 01:39:17 +00006539 ? diag::ext_explicit_instantiation_duplicate
Will Wilsoneadcdbb2014-05-09 09:52:13 +00006540 : diag::err_explicit_instantiation_duplicate)
6541 << PrevDecl;
Nico Webera8f80b32012-01-09 19:52:25 +00006542 Diag(DiagLocForExplicitInstantiation(PrevDecl, PrevPointOfInstantiation),
Douglas Gregor1d957a32009-10-27 18:42:08 +00006543 diag::note_previous_explicit_instantiation);
Abramo Bagnara8075c852010-06-12 07:44:57 +00006544 HasNoEffect = true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006545 return false;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006546 }
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006547 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006548
David Blaikie83d382b2011-09-23 05:06:16 +00006549 llvm_unreachable("Missing specialization/instantiation case?");
Douglas Gregord6ba93d2009-10-15 15:54:05 +00006550}
6551
John McCallb9c78482010-04-08 09:05:18 +00006552/// \brief Perform semantic analysis for the given dependent function
James Dennettf14a6e52012-06-15 22:23:43 +00006553/// template specialization.
John McCallb9c78482010-04-08 09:05:18 +00006554///
James Dennettf14a6e52012-06-15 22:23:43 +00006555/// The only possible way to get a dependent function template specialization
6556/// is with a friend declaration, like so:
6557///
6558/// \code
6559/// template \<class T> void foo(T);
6560/// template \<class T> class A {
John McCallb9c78482010-04-08 09:05:18 +00006561/// friend void foo<>(T);
6562/// };
James Dennettf14a6e52012-06-15 22:23:43 +00006563/// \endcode
John McCallb9c78482010-04-08 09:05:18 +00006564///
6565/// There really isn't any useful analysis we can do here, so we
6566/// just store the information.
6567bool
6568Sema::CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD,
6569 const TemplateArgumentListInfo &ExplicitTemplateArgs,
6570 LookupResult &Previous) {
6571 // Remove anything from Previous that isn't a function template in
6572 // the correct context.
Sebastian Redl50c68252010-08-31 00:36:30 +00006573 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCallb9c78482010-04-08 09:05:18 +00006574 LookupResult::Filter F = Previous.makeFilter();
6575 while (F.hasNext()) {
6576 NamedDecl *D = F.next()->getUnderlyingDecl();
6577 if (!isa<FunctionTemplateDecl>(D) ||
Sebastian Redl50c68252010-08-31 00:36:30 +00006578 !FDLookupContext->InEnclosingNamespaceSetOf(
6579 D->getDeclContext()->getRedeclContext()))
John McCallb9c78482010-04-08 09:05:18 +00006580 F.erase();
6581 }
6582 F.done();
6583
6584 // Should this be diagnosed here?
6585 if (Previous.empty()) return true;
6586
6587 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(),
6588 ExplicitTemplateArgs);
6589 return false;
6590}
6591
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006592/// \brief Perform semantic analysis for the given function template
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006593/// specialization.
6594///
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006595/// This routine performs all of the semantic analysis required for an
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006596/// explicit function template specialization. On successful completion,
6597/// the function declaration \p FD will become a function template
6598/// specialization.
6599///
6600/// \param FD the function declaration, which will be updated to become a
6601/// function template specialization.
6602///
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006603/// \param ExplicitTemplateArgs the explicitly-provided template arguments,
6604/// if any. Note that this may be valid info even when 0 arguments are
6605/// explicitly provided as in, e.g., \c void sort<>(char*, char*);
6606/// as it anyway contains info on the angle brackets locations.
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006607///
Francois Pichet3a44e432011-07-08 06:21:47 +00006608/// \param Previous the set of declarations that may be specialized by
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006609/// this function specialization.
Larisse Voufo98b20f12013-07-19 23:00:19 +00006610bool Sema::CheckFunctionTemplateSpecialization(
6611 FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs,
6612 LookupResult &Previous) {
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006613 // The set of function template specializations that could match this
6614 // explicit function template specialization.
John McCall58cc69d2010-01-27 01:50:18 +00006615 UnresolvedSet<8> Candidates;
Larisse Voufo98b20f12013-07-19 23:00:19 +00006616 TemplateSpecCandidateSet FailedCandidates(FD->getLocation());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006617
Sebastian Redl50c68252010-08-31 00:36:30 +00006618 DeclContext *FDLookupContext = FD->getDeclContext()->getRedeclContext();
John McCall1f82f242009-11-18 22:49:29 +00006619 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6620 I != E; ++I) {
6621 NamedDecl *Ovl = (*I)->getUnderlyingDecl();
6622 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Ovl)) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006623 // Only consider templates found within the same semantic lookup scope as
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006624 // FD.
Sebastian Redl50c68252010-08-31 00:36:30 +00006625 if (!FDLookupContext->InEnclosingNamespaceSetOf(
6626 Ovl->getDeclContext()->getRedeclContext()))
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006627 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006628
Richard Smith574f4f62013-01-14 05:37:29 +00006629 // When matching a constexpr member function template specialization
6630 // against the primary template, we don't yet know whether the
6631 // specialization has an implicit 'const' (because we don't know whether
6632 // it will be a static member function until we know which template it
6633 // specializes), so adjust it now assuming it specializes this template.
6634 QualType FT = FD->getType();
6635 if (FD->isConstexpr()) {
Rafael Espindola92045bc2013-11-19 21:07:04 +00006636 CXXMethodDecl *OldMD =
6637 dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
Richard Smith574f4f62013-01-14 05:37:29 +00006638 if (OldMD && OldMD->isConst()) {
Rafael Espindola92045bc2013-11-19 21:07:04 +00006639 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
Richard Smith574f4f62013-01-14 05:37:29 +00006640 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
6641 EPI.TypeQuals |= Qualifiers::Const;
Alp Toker314cc812014-01-25 16:55:45 +00006642 FT = Context.getFunctionType(FPT->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00006643 FPT->getParamTypes(), EPI);
Richard Smith574f4f62013-01-14 05:37:29 +00006644 }
6645 }
6646
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006647 // C++ [temp.expl.spec]p11:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006648 // A trailing template-argument can be left unspecified in the
6649 // template-id naming an explicit function template specialization
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006650 // provided it can be deduced from the function argument type.
6651 // Perform template argument deduction to determine whether we may be
6652 // specializing this template.
6653 // FIXME: It is somewhat wasteful to build
Larisse Voufo98b20f12013-07-19 23:00:19 +00006654 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Craig Topperc3ec1492014-05-26 06:22:03 +00006655 FunctionDecl *Specialization = nullptr;
Richard Smith32983682013-12-14 03:18:05 +00006656 if (TemplateDeductionResult TDK = DeduceTemplateArguments(
6657 cast<FunctionTemplateDecl>(FunTmpl->getFirstDecl()),
6658 ExplicitTemplateArgs, FT, Specialization, Info)) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00006659 // Template argument deduction failed; record why it failed, so
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006660 // that we can provide nifty diagnostics.
Larisse Voufo98b20f12013-07-19 23:00:19 +00006661 FailedCandidates.addCandidate()
6662 .set(FunTmpl->getTemplatedDecl(),
6663 MakeDeductionFailureInfo(Context, TDK, Info));
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006664 (void)TDK;
6665 continue;
6666 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006667
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006668 // Record this candidate.
John McCall58cc69d2010-01-27 01:50:18 +00006669 Candidates.addDecl(Specialization, I.getAccess());
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006670 }
6671 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006672
Douglas Gregor5de279c2009-09-26 03:41:46 +00006673 // Find the most specialized function template.
Larisse Voufo98b20f12013-07-19 23:00:19 +00006674 UnresolvedSetIterator Result = getMostSpecialized(
Richard Smith35e1da22013-09-10 22:59:25 +00006675 Candidates.begin(), Candidates.end(), FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00006676 FD->getLocation(),
6677 PDiag(diag::err_function_template_spec_no_match) << FD->getDeclName(),
6678 PDiag(diag::err_function_template_spec_ambiguous)
Craig Topperc3ec1492014-05-26 06:22:03 +00006679 << FD->getDeclName() << (ExplicitTemplateArgs != nullptr),
Larisse Voufo98b20f12013-07-19 23:00:19 +00006680 PDiag(diag::note_function_template_spec_matched));
6681
John McCall58cc69d2010-01-27 01:50:18 +00006682 if (Result == Candidates.end())
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006683 return true;
John McCall58cc69d2010-01-27 01:50:18 +00006684
6685 // Ignore access information; it doesn't figure into redeclaration checking.
6686 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
Abramo Bagnarab9893d62011-03-04 17:20:30 +00006687
6688 FunctionTemplateSpecializationInfo *SpecInfo
6689 = Specialization->getTemplateSpecializationInfo();
6690 assert(SpecInfo && "Function template specialization info missing?");
Francois Pichet3a44e432011-07-08 06:21:47 +00006691
6692 // Note: do not overwrite location info if previous template
6693 // specialization kind was explicit.
6694 TemplateSpecializationKind TSK = SpecInfo->getTemplateSpecializationKind();
Richard Smith5b8b3db2012-02-20 23:28:05 +00006695 if (TSK == TSK_Undeclared || TSK == TSK_ImplicitInstantiation) {
Francois Pichet3a44e432011-07-08 06:21:47 +00006696 Specialization->setLocation(FD->getLocation());
Richard Smith5b8b3db2012-02-20 23:28:05 +00006697 // C++11 [dcl.constexpr]p1: An explicit specialization of a constexpr
6698 // function can differ from the template declaration with respect to
6699 // the constexpr specifier.
6700 Specialization->setConstexpr(FD->isConstexpr());
6701 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006702
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006703 // FIXME: Check if the prior specialization has a point of instantiation.
Douglas Gregor06db9f52009-10-12 20:18:28 +00006704 // If so, we have run afoul of .
John McCall816d75b2010-03-24 07:46:06 +00006705
6706 // If this is a friend declaration, then we're not really declaring
6707 // an explicit specialization.
6708 bool isFriend = (FD->getFriendObjectKind() != Decl::FOK_None);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006709
Douglas Gregor54888652009-10-07 00:13:32 +00006710 // Check the scope of this explicit specialization.
John McCall816d75b2010-03-24 07:46:06 +00006711 if (!isFriend &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006712 CheckTemplateSpecializationScope(*this,
Douglas Gregor54888652009-10-07 00:13:32 +00006713 Specialization->getPrimaryTemplate(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006714 Specialization, FD->getLocation(),
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006715 false))
Douglas Gregor54888652009-10-07 00:13:32 +00006716 return true;
Douglas Gregor06db9f52009-10-12 20:18:28 +00006717
6718 // C++ [temp.expl.spec]p6:
6719 // If a template, a member template or the member of a class template is
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006720 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00006721 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006722 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00006723 // use occurs; no diagnostic is required.
Abramo Bagnara8075c852010-06-12 07:44:57 +00006724 bool HasNoEffect = false;
John McCall816d75b2010-03-24 07:46:06 +00006725 if (!isFriend &&
6726 CheckSpecializationInstantiationRedecl(FD->getLocation(),
John McCall4f7ced62010-02-11 01:33:53 +00006727 TSK_ExplicitSpecialization,
6728 Specialization,
6729 SpecInfo->getTemplateSpecializationKind(),
6730 SpecInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00006731 HasNoEffect))
Douglas Gregor06db9f52009-10-12 20:18:28 +00006732 return true;
Douglas Gregor781ba6e2011-05-21 18:53:30 +00006733
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006734 // Mark the prior declaration as an explicit specialization, so that later
6735 // clients know that this is an explicit specialization.
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00006736 if (!isFriend) {
John McCall816d75b2010-03-24 07:46:06 +00006737 SpecInfo->setTemplateSpecializationKind(TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00006738 MarkUnusedFileScopedDecl(Specialization);
6739 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006740
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006741 // Turn the given function declaration into a function template
6742 // specialization, with the template arguments from the previous
6743 // specialization.
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006744 // Take copies of (semantic and syntactic) template argument lists.
6745 const TemplateArgumentList* TemplArgs = new (Context)
6746 TemplateArgumentList(Specialization->getTemplateSpecializationArgs());
Douglas Gregord5058122010-02-11 01:19:42 +00006747 FD->setFunctionTemplateSpecialization(Specialization->getPrimaryTemplate(),
Craig Topperc3ec1492014-05-26 06:22:03 +00006748 TemplArgs, /*InsertPos=*/nullptr,
Abramo Bagnara02ccd282010-05-20 15:32:11 +00006749 SpecInfo->getTemplateSpecializationKind(),
Argyrios Kyrtzidise9a24432011-09-22 20:07:09 +00006750 ExplicitTemplateArgs);
Rafael Espindola6ae7e502013-04-03 19:27:57 +00006751
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006752 // The "previous declaration" for this function template specialization is
6753 // the prior function template specialization.
John McCall1f82f242009-11-18 22:49:29 +00006754 Previous.clear();
6755 Previous.addDecl(Specialization);
Douglas Gregor3a923c2d2009-09-24 23:14:47 +00006756 return false;
6757}
6758
Douglas Gregor86d142a2009-10-08 07:24:58 +00006759/// \brief Perform semantic analysis for the given non-template member
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006760/// specialization.
6761///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006762/// This routine performs all of the semantic analysis required for an
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006763/// explicit member function specialization. On successful completion,
6764/// the function declaration \p FD will become a member function
6765/// specialization.
6766///
Douglas Gregor86d142a2009-10-08 07:24:58 +00006767/// \param Member the member declaration, which will be updated to become a
6768/// specialization.
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006769///
John McCall1f82f242009-11-18 22:49:29 +00006770/// \param Previous the set of declarations, one of which may be specialized
6771/// by this function specialization; the set will be modified to contain the
6772/// redeclared member.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006773bool
John McCall1f82f242009-11-18 22:49:29 +00006774Sema::CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00006775 assert(!isa<TemplateDecl>(Member) && "Only for non-template members");
John McCalle820e5e2010-04-13 20:37:33 +00006776
Douglas Gregor86d142a2009-10-08 07:24:58 +00006777 // Try to find the member we are instantiating.
Craig Topperc3ec1492014-05-26 06:22:03 +00006778 NamedDecl *Instantiation = nullptr;
6779 NamedDecl *InstantiatedFrom = nullptr;
6780 MemberSpecializationInfo *MSInfo = nullptr;
Douglas Gregor06db9f52009-10-12 20:18:28 +00006781
John McCall1f82f242009-11-18 22:49:29 +00006782 if (Previous.empty()) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00006783 // Nowhere to look anyway.
6784 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00006785 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6786 I != E; ++I) {
6787 NamedDecl *D = (*I)->getUnderlyingDecl();
6788 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Rafael Espindola66747222013-12-10 00:59:31 +00006789 QualType Adjusted = Function->getType();
6790 if (!hasExplicitCallingConv(Adjusted))
6791 Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType());
6792 if (Context.hasSameType(Adjusted, Method->getType())) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00006793 Instantiation = Method;
6794 InstantiatedFrom = Method->getInstantiatedFromMemberFunction();
Douglas Gregor06db9f52009-10-12 20:18:28 +00006795 MSInfo = Method->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00006796 break;
6797 }
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006798 }
6799 }
Douglas Gregor86d142a2009-10-08 07:24:58 +00006800 } else if (isa<VarDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00006801 VarDecl *PrevVar;
6802 if (Previous.isSingleResult() &&
6803 (PrevVar = dyn_cast<VarDecl>(Previous.getFoundDecl())))
Douglas Gregor86d142a2009-10-08 07:24:58 +00006804 if (PrevVar->isStaticDataMember()) {
John McCall1f82f242009-11-18 22:49:29 +00006805 Instantiation = PrevVar;
Douglas Gregor86d142a2009-10-08 07:24:58 +00006806 InstantiatedFrom = PrevVar->getInstantiatedFromStaticDataMember();
Douglas Gregor06db9f52009-10-12 20:18:28 +00006807 MSInfo = PrevVar->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00006808 }
6809 } else if (isa<RecordDecl>(Member)) {
John McCall1f82f242009-11-18 22:49:29 +00006810 CXXRecordDecl *PrevRecord;
6811 if (Previous.isSingleResult() &&
6812 (PrevRecord = dyn_cast<CXXRecordDecl>(Previous.getFoundDecl()))) {
6813 Instantiation = PrevRecord;
Douglas Gregor86d142a2009-10-08 07:24:58 +00006814 InstantiatedFrom = PrevRecord->getInstantiatedFromMemberClass();
Douglas Gregor06db9f52009-10-12 20:18:28 +00006815 MSInfo = PrevRecord->getMemberSpecializationInfo();
Douglas Gregor86d142a2009-10-08 07:24:58 +00006816 }
Richard Smith7d137e32012-03-23 03:33:32 +00006817 } else if (isa<EnumDecl>(Member)) {
6818 EnumDecl *PrevEnum;
6819 if (Previous.isSingleResult() &&
6820 (PrevEnum = dyn_cast<EnumDecl>(Previous.getFoundDecl()))) {
6821 Instantiation = PrevEnum;
6822 InstantiatedFrom = PrevEnum->getInstantiatedFromMemberEnum();
6823 MSInfo = PrevEnum->getMemberSpecializationInfo();
6824 }
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006825 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006826
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006827 if (!Instantiation) {
Douglas Gregor86d142a2009-10-08 07:24:58 +00006828 // There is no previous declaration that matches. Since member
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006829 // specializations are always out-of-line, the caller will complain about
6830 // this mismatch later.
6831 return false;
6832 }
John McCalle820e5e2010-04-13 20:37:33 +00006833
6834 // If this is a friend, just bail out here before we start turning
6835 // things into explicit specializations.
6836 if (Member->getFriendObjectKind() != Decl::FOK_None) {
6837 // Preserve instantiation information.
6838 if (InstantiatedFrom && isa<CXXMethodDecl>(Member)) {
6839 cast<CXXMethodDecl>(Member)->setInstantiationOfMemberFunction(
6840 cast<CXXMethodDecl>(InstantiatedFrom),
6841 cast<CXXMethodDecl>(Instantiation)->getTemplateSpecializationKind());
6842 } else if (InstantiatedFrom && isa<CXXRecordDecl>(Member)) {
6843 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
6844 cast<CXXRecordDecl>(InstantiatedFrom),
6845 cast<CXXRecordDecl>(Instantiation)->getTemplateSpecializationKind());
6846 }
6847
6848 Previous.clear();
6849 Previous.addDecl(Instantiation);
6850 return false;
6851 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006852
Douglas Gregor86d142a2009-10-08 07:24:58 +00006853 // Make sure that this is a specialization of a member.
6854 if (!InstantiatedFrom) {
6855 Diag(Member->getLocation(), diag::err_spec_member_not_instantiated)
6856 << Member;
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006857 Diag(Instantiation->getLocation(), diag::note_specialized_decl);
6858 return true;
6859 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006860
Douglas Gregor06db9f52009-10-12 20:18:28 +00006861 // C++ [temp.expl.spec]p6:
6862 // If a template, a member template or the member of a class template is
Nico Weberd3bdadf2011-12-23 20:58:04 +00006863 // explicitly specialized then that specialization shall be declared
Douglas Gregor06db9f52009-10-12 20:18:28 +00006864 // before the first use of that specialization that would cause an implicit
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006865 // instantiation to take place, in every translation unit in which such a
Douglas Gregor06db9f52009-10-12 20:18:28 +00006866 // use occurs; no diagnostic is required.
6867 assert(MSInfo && "Member specialization info missing?");
John McCall4f7ced62010-02-11 01:33:53 +00006868
Abramo Bagnara8075c852010-06-12 07:44:57 +00006869 bool HasNoEffect = false;
John McCall4f7ced62010-02-11 01:33:53 +00006870 if (CheckSpecializationInstantiationRedecl(Member->getLocation(),
6871 TSK_ExplicitSpecialization,
6872 Instantiation,
6873 MSInfo->getTemplateSpecializationKind(),
6874 MSInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00006875 HasNoEffect))
Douglas Gregor06db9f52009-10-12 20:18:28 +00006876 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006877
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006878 // Check the scope of this explicit specialization.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006879 if (CheckTemplateSpecializationScope(*this,
Douglas Gregor86d142a2009-10-08 07:24:58 +00006880 InstantiatedFrom,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006881 Instantiation, Member->getLocation(),
Douglas Gregorba8e1ac2009-10-14 23:50:59 +00006882 false))
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006883 return true;
Douglas Gregord801b062009-10-07 23:56:10 +00006884
Douglas Gregor86d142a2009-10-08 07:24:58 +00006885 // Note that this is an explicit instantiation of a member.
Douglas Gregorbbe8f462009-10-08 15:14:33 +00006886 // the original declaration to note that it is an explicit specialization
6887 // (if it was previously an implicit instantiation). This latter step
6888 // makes bookkeeping easier.
Douglas Gregor86d142a2009-10-08 07:24:58 +00006889 if (isa<FunctionDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00006890 FunctionDecl *InstantiationFunction = cast<FunctionDecl>(Instantiation);
6891 if (InstantiationFunction->getTemplateSpecializationKind() ==
6892 TSK_ImplicitInstantiation) {
6893 InstantiationFunction->setTemplateSpecializationKind(
6894 TSK_ExplicitSpecialization);
6895 InstantiationFunction->setLocation(Member->getLocation());
6896 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006897
Douglas Gregor86d142a2009-10-08 07:24:58 +00006898 cast<FunctionDecl>(Member)->setInstantiationOfMemberFunction(
6899 cast<CXXMethodDecl>(InstantiatedFrom),
6900 TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00006901 MarkUnusedFileScopedDecl(InstantiationFunction);
Douglas Gregor86d142a2009-10-08 07:24:58 +00006902 } else if (isa<VarDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00006903 VarDecl *InstantiationVar = cast<VarDecl>(Instantiation);
6904 if (InstantiationVar->getTemplateSpecializationKind() ==
6905 TSK_ImplicitInstantiation) {
6906 InstantiationVar->setTemplateSpecializationKind(
6907 TSK_ExplicitSpecialization);
6908 InstantiationVar->setLocation(Member->getLocation());
6909 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006910
Larisse Voufo39a1e502013-08-06 01:03:05 +00006911 cast<VarDecl>(Member)->setInstantiationOfStaticDataMember(
6912 cast<VarDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +00006913 MarkUnusedFileScopedDecl(InstantiationVar);
Richard Smith7d137e32012-03-23 03:33:32 +00006914 } else if (isa<CXXRecordDecl>(Member)) {
Douglas Gregorbbe8f462009-10-08 15:14:33 +00006915 CXXRecordDecl *InstantiationClass = cast<CXXRecordDecl>(Instantiation);
6916 if (InstantiationClass->getTemplateSpecializationKind() ==
6917 TSK_ImplicitInstantiation) {
6918 InstantiationClass->setTemplateSpecializationKind(
6919 TSK_ExplicitSpecialization);
6920 InstantiationClass->setLocation(Member->getLocation());
6921 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006922
Douglas Gregor86d142a2009-10-08 07:24:58 +00006923 cast<CXXRecordDecl>(Member)->setInstantiationOfMemberClass(
Douglas Gregorbbe8f462009-10-08 15:14:33 +00006924 cast<CXXRecordDecl>(InstantiatedFrom),
6925 TSK_ExplicitSpecialization);
Richard Smith7d137e32012-03-23 03:33:32 +00006926 } else {
6927 assert(isa<EnumDecl>(Member) && "Only member enums remain");
6928 EnumDecl *InstantiationEnum = cast<EnumDecl>(Instantiation);
6929 if (InstantiationEnum->getTemplateSpecializationKind() ==
6930 TSK_ImplicitInstantiation) {
6931 InstantiationEnum->setTemplateSpecializationKind(
6932 TSK_ExplicitSpecialization);
6933 InstantiationEnum->setLocation(Member->getLocation());
6934 }
6935
6936 cast<EnumDecl>(Member)->setInstantiationOfMemberEnum(
6937 cast<EnumDecl>(InstantiatedFrom), TSK_ExplicitSpecialization);
Douglas Gregor86d142a2009-10-08 07:24:58 +00006938 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006939
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006940 // Save the caller the trouble of having to figure out which declaration
6941 // this specialization matches.
John McCall1f82f242009-11-18 22:49:29 +00006942 Previous.clear();
6943 Previous.addDecl(Instantiation);
Douglas Gregor5c0405d2009-10-07 22:35:40 +00006944 return false;
6945}
6946
Douglas Gregore47f5a72009-10-14 23:41:34 +00006947/// \brief Check the scope of an explicit instantiation.
Douglas Gregor6cc1df52010-07-13 00:10:04 +00006948///
6949/// \returns true if a serious error occurs, false otherwise.
6950static bool CheckExplicitInstantiationScope(Sema &S, NamedDecl *D,
Douglas Gregore47f5a72009-10-14 23:41:34 +00006951 SourceLocation InstLoc,
6952 bool WasQualifiedName) {
Sebastian Redl50c68252010-08-31 00:36:30 +00006953 DeclContext *OrigContext= D->getDeclContext()->getEnclosingNamespaceContext();
6954 DeclContext *CurContext = S.CurContext->getRedeclContext();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006955
Douglas Gregor6cc1df52010-07-13 00:10:04 +00006956 if (CurContext->isRecord()) {
6957 S.Diag(InstLoc, diag::err_explicit_instantiation_in_class)
6958 << D;
6959 return true;
6960 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006961
Richard Smith050d2612011-10-18 02:28:33 +00006962 // C++11 [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006963 // An explicit instantiation shall appear in an enclosing namespace of its
Richard Smith050d2612011-10-18 02:28:33 +00006964 // template. If the name declared in the explicit instantiation is an
6965 // unqualified name, the explicit instantiation shall appear in the
6966 // namespace where its template is declared or, if that namespace is inline
6967 // (7.3.1), any namespace from its enclosing namespace set.
Douglas Gregore47f5a72009-10-14 23:41:34 +00006968 //
6969 // This is DR275, which we do not retroactively apply to C++98/03.
Richard Smith050d2612011-10-18 02:28:33 +00006970 if (WasQualifiedName) {
6971 if (CurContext->Encloses(OrigContext))
6972 return false;
6973 } else {
6974 if (CurContext->InEnclosingNamespaceSetOf(OrigContext))
6975 return false;
6976 }
6977
6978 if (NamespaceDecl *NS = dyn_cast<NamespaceDecl>(OrigContext)) {
6979 if (WasQualifiedName)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006980 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006981 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00006982 diag::err_explicit_instantiation_out_of_scope :
6983 diag::warn_explicit_instantiation_out_of_scope_0x)
Douglas Gregore47f5a72009-10-14 23:41:34 +00006984 << D << NS;
6985 else
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00006986 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006987 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00006988 diag::err_explicit_instantiation_unqualified_wrong_namespace :
6989 diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x)
6990 << D << NS;
6991 } else
6992 S.Diag(InstLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00006993 S.getLangOpts().CPlusPlus11?
Richard Smith050d2612011-10-18 02:28:33 +00006994 diag::err_explicit_instantiation_must_be_global :
6995 diag::warn_explicit_instantiation_must_be_global_0x)
6996 << D;
Douglas Gregore47f5a72009-10-14 23:41:34 +00006997 S.Diag(D->getLocation(), diag::note_explicit_instantiation_here);
Douglas Gregor6cc1df52010-07-13 00:10:04 +00006998 return false;
Douglas Gregore47f5a72009-10-14 23:41:34 +00006999}
7000
7001/// \brief Determine whether the given scope specifier has a template-id in it.
7002static bool ScopeSpecifierHasTemplateId(const CXXScopeSpec &SS) {
7003 if (!SS.isSet())
7004 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007005
Richard Smith050d2612011-10-18 02:28:33 +00007006 // C++11 [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007007 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00007008 // or a static data member of a class template specialization, the name of
7009 // the class template specialization in the qualified-id for the member
7010 // name shall be a simple-template-id.
7011 //
7012 // C++98 has the same restriction, just worded differently.
Aaron Ballman4a979672014-01-03 13:56:08 +00007013 for (NestedNameSpecifier *NNS = SS.getScopeRep(); NNS;
7014 NNS = NNS->getPrefix())
John McCall424cec92011-01-19 06:33:43 +00007015 if (const Type *T = NNS->getAsType())
Douglas Gregore47f5a72009-10-14 23:41:34 +00007016 if (isa<TemplateSpecializationType>(T))
7017 return true;
7018
7019 return false;
7020}
7021
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007022// Explicit instantiation of a class template specialization
John McCallfaf5fb42010-08-26 23:41:50 +00007023DeclResult
Mike Stump11289f42009-09-09 15:08:12 +00007024Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor43e75172009-09-04 06:33:52 +00007025 SourceLocation ExternLoc,
7026 SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00007027 unsigned TagSpec,
Douglas Gregora1f49972009-05-13 00:25:59 +00007028 SourceLocation KWLoc,
7029 const CXXScopeSpec &SS,
7030 TemplateTy TemplateD,
7031 SourceLocation TemplateNameLoc,
7032 SourceLocation LAngleLoc,
7033 ASTTemplateArgsPtr TemplateArgsIn,
Douglas Gregora1f49972009-05-13 00:25:59 +00007034 SourceLocation RAngleLoc,
7035 AttributeList *Attr) {
7036 // Find the class template we're specializing
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00007037 TemplateName Name = TemplateD.get();
Richard Smith392497b2013-06-22 22:03:31 +00007038 TemplateDecl *TD = Name.getAsTemplateDecl();
Douglas Gregora1f49972009-05-13 00:25:59 +00007039 // Check that the specialization uses the same tag kind as the
7040 // original template.
Abramo Bagnara6150c882010-05-11 21:36:43 +00007041 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
7042 assert(Kind != TTK_Enum &&
7043 "Invalid enum tag in class template explicit instantiation!");
Richard Smith392497b2013-06-22 22:03:31 +00007044
7045 if (isa<TypeAliasTemplateDecl>(TD)) {
7046 Diag(KWLoc, diag::err_tag_reference_non_tag) << Kind;
7047 Diag(TD->getTemplatedDecl()->getLocation(),
7048 diag::note_previous_use);
7049 return true;
7050 }
7051
7052 ClassTemplateDecl *ClassTemplate = cast<ClassTemplateDecl>(TD);
7053
Douglas Gregord9034f02009-05-14 16:41:31 +00007054 if (!isAcceptableTagRedeclaration(ClassTemplate->getTemplatedDecl(),
Richard Trieucaa33d32011-06-10 03:11:26 +00007055 Kind, /*isDefinition*/false, KWLoc,
Douglas Gregord9034f02009-05-14 16:41:31 +00007056 *ClassTemplate->getIdentifier())) {
Mike Stump11289f42009-09-09 15:08:12 +00007057 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora1f49972009-05-13 00:25:59 +00007058 << ClassTemplate
Douglas Gregora771f462010-03-31 17:46:05 +00007059 << FixItHint::CreateReplacement(KWLoc,
Douglas Gregora1f49972009-05-13 00:25:59 +00007060 ClassTemplate->getTemplatedDecl()->getKindName());
Mike Stump11289f42009-09-09 15:08:12 +00007061 Diag(ClassTemplate->getTemplatedDecl()->getLocation(),
Douglas Gregora1f49972009-05-13 00:25:59 +00007062 diag::note_previous_use);
7063 Kind = ClassTemplate->getTemplatedDecl()->getTagKind();
7064 }
7065
Douglas Gregore47f5a72009-10-14 23:41:34 +00007066 // C++0x [temp.explicit]p2:
7067 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007068 // definition and an explicit instantiation declaration. An explicit
7069 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor54888652009-10-07 00:13:32 +00007070 TemplateSpecializationKind TSK
7071 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7072 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007073
Douglas Gregora1f49972009-05-13 00:25:59 +00007074 // Translate the parser's template argument list in our AST format.
John McCall6b51f282009-11-23 01:53:49 +00007075 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
Douglas Gregorb53edfb2009-11-10 19:49:08 +00007076 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
Douglas Gregora1f49972009-05-13 00:25:59 +00007077
7078 // Check that the template argument list is well-formed for this
7079 // template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007080 SmallVector<TemplateArgument, 4> Converted;
John McCall6b51f282009-11-23 01:53:49 +00007081 if (CheckTemplateArgumentList(ClassTemplate, TemplateNameLoc,
7082 TemplateArgs, false, Converted))
Douglas Gregora1f49972009-05-13 00:25:59 +00007083 return true;
7084
Douglas Gregora1f49972009-05-13 00:25:59 +00007085 // Find the class template specialization declaration that
7086 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00007087 void *InsertPos = nullptr;
Douglas Gregora1f49972009-05-13 00:25:59 +00007088 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00007089 = ClassTemplate->findSpecialization(Converted, InsertPos);
Douglas Gregora1f49972009-05-13 00:25:59 +00007090
Abramo Bagnara8075c852010-06-12 07:44:57 +00007091 TemplateSpecializationKind PrevDecl_TSK
7092 = PrevDecl ? PrevDecl->getTemplateSpecializationKind() : TSK_Undeclared;
7093
Douglas Gregor54888652009-10-07 00:13:32 +00007094 // C++0x [temp.explicit]p2:
7095 // [...] An explicit instantiation shall appear in an enclosing
7096 // namespace of its template. [...]
7097 //
7098 // This is C++ DR 275.
Douglas Gregor6cc1df52010-07-13 00:10:04 +00007099 if (CheckExplicitInstantiationScope(*this, ClassTemplate, TemplateNameLoc,
7100 SS.isSet()))
7101 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007102
Craig Topperc3ec1492014-05-26 06:22:03 +00007103 ClassTemplateSpecializationDecl *Specialization = nullptr;
Douglas Gregora1f49972009-05-13 00:25:59 +00007104
Abramo Bagnara8075c852010-06-12 07:44:57 +00007105 bool HasNoEffect = false;
Douglas Gregora1f49972009-05-13 00:25:59 +00007106 if (PrevDecl) {
Douglas Gregor1d957a32009-10-27 18:42:08 +00007107 if (CheckSpecializationInstantiationRedecl(TemplateNameLoc, TSK,
Abramo Bagnara8075c852010-06-12 07:44:57 +00007108 PrevDecl, PrevDecl_TSK,
Douglas Gregor12e49d32009-10-15 22:53:21 +00007109 PrevDecl->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007110 HasNoEffect))
John McCall48871652010-08-21 09:40:31 +00007111 return PrevDecl;
Douglas Gregora1f49972009-05-13 00:25:59 +00007112
Abramo Bagnara8075c852010-06-12 07:44:57 +00007113 // Even though HasNoEffect == true means that this explicit instantiation
7114 // has no effect on semantics, we go on to put its syntax in the AST.
7115
7116 if (PrevDecl_TSK == TSK_ImplicitInstantiation ||
7117 PrevDecl_TSK == TSK_Undeclared) {
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007118 // Since the only prior class template specialization with these
7119 // arguments was referenced but not declared, reuse that
Abramo Bagnara8075c852010-06-12 07:44:57 +00007120 // declaration node as our own, updating the source location
7121 // for the template name to reflect our new declaration.
7122 // (Other source locations will be updated later.)
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007123 Specialization = PrevDecl;
7124 Specialization->setLocation(TemplateNameLoc);
Craig Topperc3ec1492014-05-26 06:22:03 +00007125 PrevDecl = nullptr;
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007126 }
Douglas Gregor12e49d32009-10-15 22:53:21 +00007127 }
Abramo Bagnara8075c852010-06-12 07:44:57 +00007128
Douglas Gregor4aa04b12009-09-11 21:19:12 +00007129 if (!Specialization) {
Douglas Gregora1f49972009-05-13 00:25:59 +00007130 // Create a new class template specialization declaration node for
7131 // this explicit specialization.
7132 Specialization
Douglas Gregore9029562010-05-06 00:28:52 +00007133 = ClassTemplateSpecializationDecl::Create(Context, Kind,
Douglas Gregora1f49972009-05-13 00:25:59 +00007134 ClassTemplate->getDeclContext(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00007135 KWLoc, TemplateNameLoc,
Douglas Gregora1f49972009-05-13 00:25:59 +00007136 ClassTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00007137 Converted.data(),
7138 Converted.size(),
7139 PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00007140 SetNestedNameSpecifier(Specialization, SS);
Douglas Gregora1f49972009-05-13 00:25:59 +00007141
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00007142 if (!HasNoEffect && !PrevDecl) {
Abramo Bagnara8075c852010-06-12 07:44:57 +00007143 // Insert the new specialization.
Argyrios Kyrtzidis47470f22010-07-20 13:59:28 +00007144 ClassTemplate->AddSpecialization(Specialization, InsertPos);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007145 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007146 }
7147
7148 // Build the fully-sugared type for this explicit instantiation as
7149 // the user wrote in the explicit instantiation itself. This means
7150 // that we'll pretty-print the type retrieved from the
7151 // specialization's declaration the way that the user actually wrote
7152 // the explicit instantiation, rather than formatting the name based
7153 // on the "canonical" representation used to store the template
7154 // arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00007155 TypeSourceInfo *WrittenTy
7156 = Context.getTemplateSpecializationTypeInfo(Name, TemplateNameLoc,
7157 TemplateArgs,
Douglas Gregora1f49972009-05-13 00:25:59 +00007158 Context.getTypeDeclType(Specialization));
7159 Specialization->setTypeAsWritten(WrittenTy);
Douglas Gregora1f49972009-05-13 00:25:59 +00007160
Abramo Bagnara8075c852010-06-12 07:44:57 +00007161 // Set source locations for keywords.
7162 Specialization->setExternLoc(ExternLoc);
7163 Specialization->setTemplateKeywordLoc(TemplateLoc);
Argyrios Kyrtzidis40bcfd72013-04-22 23:23:42 +00007164 Specialization->setRBraceLoc(SourceLocation());
Abramo Bagnara8075c852010-06-12 07:44:57 +00007165
Rafael Espindola0b062072012-01-03 06:04:21 +00007166 if (Attr)
7167 ProcessDeclAttributeList(S, Specialization, Attr);
7168
Abramo Bagnara8075c852010-06-12 07:44:57 +00007169 // Add the explicit instantiation into its lexical context. However,
7170 // since explicit instantiations are never found by name lookup, we
7171 // just put it into the declaration context directly.
7172 Specialization->setLexicalDeclContext(CurContext);
7173 CurContext->addDecl(Specialization);
7174
7175 // Syntax is now OK, so return if it has no other effect on semantics.
7176 if (HasNoEffect) {
7177 // Set the template specialization kind.
7178 Specialization->setTemplateSpecializationKind(TSK);
John McCall48871652010-08-21 09:40:31 +00007179 return Specialization;
Douglas Gregor0681a352009-11-25 06:01:46 +00007180 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007181
7182 // C++ [temp.explicit]p3:
Douglas Gregora1f49972009-05-13 00:25:59 +00007183 // A definition of a class template or class member template
7184 // shall be in scope at the point of the explicit instantiation of
7185 // the class template or class member template.
7186 //
7187 // This check comes when we actually try to perform the
7188 // instantiation.
Douglas Gregor12e49d32009-10-15 22:53:21 +00007189 ClassTemplateSpecializationDecl *Def
7190 = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007191 Specialization->getDefinition());
Douglas Gregor12e49d32009-10-15 22:53:21 +00007192 if (!Def)
Douglas Gregoref6ab412009-10-27 06:26:26 +00007193 InstantiateClassTemplateSpecialization(TemplateNameLoc, Specialization, TSK);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007194 else if (TSK == TSK_ExplicitInstantiationDefinition) {
Douglas Gregor88d292c2010-05-13 16:44:06 +00007195 MarkVTableUsed(TemplateNameLoc, Specialization, true);
Abramo Bagnara8075c852010-06-12 07:44:57 +00007196 Specialization->setPointOfInstantiation(Def->getPointOfInstantiation());
7197 }
Douglas Gregor88d292c2010-05-13 16:44:06 +00007198
Douglas Gregor1d957a32009-10-27 18:42:08 +00007199 // Instantiate the members of this class template specialization.
7200 Def = cast_or_null<ClassTemplateSpecializationDecl>(
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007201 Specialization->getDefinition());
Rafael Espindola8d04f062010-03-22 23:12:48 +00007202 if (Def) {
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007203 TemplateSpecializationKind Old_TSK = Def->getTemplateSpecializationKind();
7204
7205 // Fix a TSK_ExplicitInstantiationDeclaration followed by a
7206 // TSK_ExplicitInstantiationDefinition
7207 if (Old_TSK == TSK_ExplicitInstantiationDeclaration &&
7208 TSK == TSK_ExplicitInstantiationDefinition)
Richard Smitheb36ddf2014-04-24 22:45:46 +00007209 // FIXME: Need to notify the ASTMutationListener that we did this.
Rafael Espindolafa1708fd2010-03-23 19:55:22 +00007210 Def->setTemplateSpecializationKind(TSK);
Rafael Espindola8d04f062010-03-22 23:12:48 +00007211
Douglas Gregor12e49d32009-10-15 22:53:21 +00007212 InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
Rafael Espindola8d04f062010-03-22 23:12:48 +00007213 }
Douglas Gregora1f49972009-05-13 00:25:59 +00007214
Abramo Bagnara8075c852010-06-12 07:44:57 +00007215 // Set the template specialization kind.
7216 Specialization->setTemplateSpecializationKind(TSK);
John McCall48871652010-08-21 09:40:31 +00007217 return Specialization;
Douglas Gregora1f49972009-05-13 00:25:59 +00007218}
7219
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007220// Explicit instantiation of a member class of a class template.
John McCall48871652010-08-21 09:40:31 +00007221DeclResult
Mike Stump11289f42009-09-09 15:08:12 +00007222Sema::ActOnExplicitInstantiation(Scope *S,
Douglas Gregor43e75172009-09-04 06:33:52 +00007223 SourceLocation ExternLoc,
7224 SourceLocation TemplateLoc,
Mike Stump11289f42009-09-09 15:08:12 +00007225 unsigned TagSpec,
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007226 SourceLocation KWLoc,
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00007227 CXXScopeSpec &SS,
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007228 IdentifierInfo *Name,
7229 SourceLocation NameLoc,
7230 AttributeList *Attr) {
7231
Douglas Gregord6ab8742009-05-28 23:31:59 +00007232 bool Owned = false;
John McCall7f41d982009-09-11 04:59:25 +00007233 bool IsDependent = false;
John McCallfaf5fb42010-08-26 23:41:50 +00007234 Decl *TagD = ActOnTag(S, TagSpec, Sema::TUK_Reference,
John McCall48871652010-08-21 09:40:31 +00007235 KWLoc, SS, Name, NameLoc, Attr, AS_none,
Douglas Gregor2820e692011-09-09 19:05:14 +00007236 /*ModulePrivateLoc=*/SourceLocation(),
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00007237 MultiTemplateParamsArg(), Owned, IsDependent,
Richard Smith649c7b062014-01-08 00:56:48 +00007238 SourceLocation(), false, TypeResult(),
7239 /*IsTypeSpecifier*/false);
John McCall7f41d982009-09-11 04:59:25 +00007240 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
7241
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007242 if (!TagD)
7243 return true;
7244
John McCall48871652010-08-21 09:40:31 +00007245 TagDecl *Tag = cast<TagDecl>(TagD);
Richard Smith7d137e32012-03-23 03:33:32 +00007246 assert(!Tag->isEnum() && "shouldn't see enumerations here");
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007247
Douglas Gregorb8006faf2009-05-27 17:30:49 +00007248 if (Tag->isInvalidDecl())
7249 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007250
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007251 CXXRecordDecl *Record = cast<CXXRecordDecl>(Tag);
7252 CXXRecordDecl *Pattern = Record->getInstantiatedFromMemberClass();
7253 if (!Pattern) {
7254 Diag(TemplateLoc, diag::err_explicit_instantiation_nontemplate_type)
7255 << Context.getTypeDeclType(Record);
7256 Diag(Record->getLocation(), diag::note_nontemplate_decl_here);
7257 return true;
7258 }
7259
Douglas Gregore47f5a72009-10-14 23:41:34 +00007260 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007261 // If the explicit instantiation is for a class or member class, the
7262 // elaborated-type-specifier in the declaration shall include a
Douglas Gregore47f5a72009-10-14 23:41:34 +00007263 // simple-template-id.
7264 //
7265 // C++98 has the same restriction, just worded differently.
7266 if (!ScopeSpecifierHasTemplateId(SS))
Douglas Gregor010815a2010-06-16 16:26:47 +00007267 Diag(TemplateLoc, diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007268 << Record << SS.getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007269
Douglas Gregore47f5a72009-10-14 23:41:34 +00007270 // C++0x [temp.explicit]p2:
7271 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007272 // definition and an explicit instantiation declaration. An explicit
Douglas Gregore47f5a72009-10-14 23:41:34 +00007273 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor5d851972009-10-14 21:46:58 +00007274 TemplateSpecializationKind TSK
7275 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7276 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007277
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007278 // C++0x [temp.explicit]p2:
7279 // [...] An explicit instantiation shall appear in an enclosing
7280 // namespace of its template. [...]
7281 //
7282 // This is C++ DR 275.
Douglas Gregore47f5a72009-10-14 23:41:34 +00007283 CheckExplicitInstantiationScope(*this, Record, NameLoc, true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007284
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007285 // Verify that it is okay to explicitly instantiate here.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007286 CXXRecordDecl *PrevDecl
Douglas Gregorec9fd132012-01-14 16:38:05 +00007287 = cast_or_null<CXXRecordDecl>(Record->getPreviousDecl());
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007288 if (!PrevDecl && Record->getDefinition())
Douglas Gregor8f003d02009-10-15 18:07:02 +00007289 PrevDecl = Record;
7290 if (PrevDecl) {
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007291 MemberSpecializationInfo *MSInfo = PrevDecl->getMemberSpecializationInfo();
Abramo Bagnara8075c852010-06-12 07:44:57 +00007292 bool HasNoEffect = false;
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007293 assert(MSInfo && "No member specialization information?");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007294 if (CheckSpecializationInstantiationRedecl(TemplateLoc, TSK,
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007295 PrevDecl,
7296 MSInfo->getTemplateSpecializationKind(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007297 MSInfo->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007298 HasNoEffect))
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007299 return true;
Abramo Bagnara8075c852010-06-12 07:44:57 +00007300 if (HasNoEffect)
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007301 return TagD;
7302 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007303
Douglas Gregor12e49d32009-10-15 22:53:21 +00007304 CXXRecordDecl *RecordDef
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007305 = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor12e49d32009-10-15 22:53:21 +00007306 if (!RecordDef) {
Douglas Gregor68edf132009-10-15 12:53:22 +00007307 // C++ [temp.explicit]p3:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007308 // A definition of a member class of a class template shall be in scope
Douglas Gregor68edf132009-10-15 12:53:22 +00007309 // at the point of an explicit instantiation of the member class.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007310 CXXRecordDecl *Def
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007311 = cast_or_null<CXXRecordDecl>(Pattern->getDefinition());
Douglas Gregor68edf132009-10-15 12:53:22 +00007312 if (!Def) {
Douglas Gregora8b89d22009-10-15 14:05:49 +00007313 Diag(TemplateLoc, diag::err_explicit_instantiation_undefined_member)
7314 << 0 << Record->getDeclName() << Record->getDeclContext();
Douglas Gregor68edf132009-10-15 12:53:22 +00007315 Diag(Pattern->getLocation(), diag::note_forward_declaration)
7316 << Pattern;
7317 return true;
Douglas Gregor1d957a32009-10-27 18:42:08 +00007318 } else {
7319 if (InstantiateClass(NameLoc, Record, Def,
7320 getTemplateInstantiationArgs(Record),
7321 TSK))
7322 return true;
7323
Douglas Gregor0a5a2212010-02-11 01:04:33 +00007324 RecordDef = cast_or_null<CXXRecordDecl>(Record->getDefinition());
Douglas Gregor1d957a32009-10-27 18:42:08 +00007325 if (!RecordDef)
7326 return true;
7327 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007328 }
7329
Douglas Gregor1d957a32009-10-27 18:42:08 +00007330 // Instantiate all of the members of the class.
7331 InstantiateClassMembers(NameLoc, RecordDef,
7332 getTemplateInstantiationArgs(Record), TSK);
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007333
Douglas Gregor88d292c2010-05-13 16:44:06 +00007334 if (TSK == TSK_ExplicitInstantiationDefinition)
7335 MarkVTableUsed(NameLoc, RecordDef, true);
7336
Mike Stump87c57ac2009-05-16 07:39:55 +00007337 // FIXME: We don't have any representation for explicit instantiations of
7338 // member classes. Such a representation is not needed for compilation, but it
7339 // should be available for clients that want to see all of the declarations in
7340 // the source code.
Douglas Gregor2ec748c2009-05-14 00:28:11 +00007341 return TagD;
7342}
7343
John McCallfaf5fb42010-08-26 23:41:50 +00007344DeclResult Sema::ActOnExplicitInstantiation(Scope *S,
7345 SourceLocation ExternLoc,
7346 SourceLocation TemplateLoc,
7347 Declarator &D) {
Douglas Gregor450f00842009-09-25 18:43:00 +00007348 // Explicit instantiations always require a name.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00007349 // TODO: check if/when DNInfo should replace Name.
7350 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7351 DeclarationName Name = NameInfo.getName();
Douglas Gregor450f00842009-09-25 18:43:00 +00007352 if (!Name) {
7353 if (!D.isInvalidType())
Daniel Dunbar62ee6412012-03-09 18:35:03 +00007354 Diag(D.getDeclSpec().getLocStart(),
Douglas Gregor450f00842009-09-25 18:43:00 +00007355 diag::err_explicit_instantiation_requires_name)
7356 << D.getDeclSpec().getSourceRange()
7357 << D.getSourceRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007358
Douglas Gregor450f00842009-09-25 18:43:00 +00007359 return true;
7360 }
7361
7362 // The scope passed in may not be a decl scope. Zip up the scope tree until
7363 // we find one that is.
7364 while ((S->getFlags() & Scope::DeclScope) == 0 ||
7365 (S->getFlags() & Scope::TemplateParamScope) != 0)
7366 S = S->getParent();
7367
7368 // Determine the type of the declaration.
John McCall8cb7bdf2010-06-04 23:28:52 +00007369 TypeSourceInfo *T = GetTypeForDeclarator(D, S);
7370 QualType R = T->getType();
Douglas Gregor450f00842009-09-25 18:43:00 +00007371 if (R.isNull())
7372 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007373
Douglas Gregor781ba6e2011-05-21 18:53:30 +00007374 // C++ [dcl.stc]p1:
7375 // A storage-class-specifier shall not be specified in [...] an explicit
7376 // instantiation (14.7.2) directive.
Douglas Gregor450f00842009-09-25 18:43:00 +00007377 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregor450f00842009-09-25 18:43:00 +00007378 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_of_typedef)
7379 << Name;
7380 return true;
Douglas Gregor781ba6e2011-05-21 18:53:30 +00007381 } else if (D.getDeclSpec().getStorageClassSpec()
7382 != DeclSpec::SCS_unspecified) {
7383 // Complain about then remove the storage class specifier.
7384 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_storage_class)
7385 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7386
7387 D.getMutableDeclSpec().ClearStorageClassSpecs();
Douglas Gregor450f00842009-09-25 18:43:00 +00007388 }
7389
Douglas Gregor3c74d412009-10-14 20:14:33 +00007390 // C++0x [temp.explicit]p1:
7391 // [...] An explicit instantiation of a function template shall not use the
7392 // inline or constexpr specifiers.
7393 // Presumably, this also applies to member functions of class templates as
7394 // well.
Richard Smith83c19292011-10-18 03:44:03 +00007395 if (D.getDeclSpec().isInlineSpecified())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007396 Diag(D.getDeclSpec().getInlineSpecLoc(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007397 getLangOpts().CPlusPlus11 ?
Richard Smith83c19292011-10-18 03:44:03 +00007398 diag::err_explicit_instantiation_inline :
7399 diag::warn_explicit_instantiation_inline_0x)
Richard Smith465841e2011-10-14 19:58:02 +00007400 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
Larisse Voufo39a1e502013-08-06 01:03:05 +00007401 if (D.getDeclSpec().isConstexprSpecified() && R->isFunctionType())
Richard Smith465841e2011-10-14 19:58:02 +00007402 // FIXME: Add a fix-it to remove the 'constexpr' and add a 'const' if one is
7403 // not already specified.
7404 Diag(D.getDeclSpec().getConstexprSpecLoc(),
7405 diag::err_explicit_instantiation_constexpr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007406
Douglas Gregore47f5a72009-10-14 23:41:34 +00007407 // C++0x [temp.explicit]p2:
7408 // There are two forms of explicit instantiation: an explicit instantiation
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007409 // definition and an explicit instantiation declaration. An explicit
7410 // instantiation declaration begins with the extern keyword. [...]
Douglas Gregor450f00842009-09-25 18:43:00 +00007411 TemplateSpecializationKind TSK
7412 = ExternLoc.isInvalid()? TSK_ExplicitInstantiationDefinition
7413 : TSK_ExplicitInstantiationDeclaration;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007414
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00007415 LookupResult Previous(*this, NameInfo, LookupOrdinaryName);
John McCall27b18f82009-11-17 02:14:36 +00007416 LookupParsedName(Previous, S, &D.getCXXScopeSpec());
Douglas Gregor450f00842009-09-25 18:43:00 +00007417
7418 if (!R->isFunctionType()) {
7419 // C++ [temp.explicit]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007420 // A [...] static data member of a class template can be explicitly
7421 // instantiated from the member definition associated with its class
Douglas Gregor450f00842009-09-25 18:43:00 +00007422 // template.
Larisse Voufo39a1e502013-08-06 01:03:05 +00007423 // C++1y [temp.explicit]p1:
7424 // A [...] variable [...] template specialization can be explicitly
7425 // instantiated from its template.
John McCall27b18f82009-11-17 02:14:36 +00007426 if (Previous.isAmbiguous())
7427 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007428
John McCall67c00872009-12-02 08:25:40 +00007429 VarDecl *Prev = Previous.getAsSingle<VarDecl>();
Larisse Voufo39a1e502013-08-06 01:03:05 +00007430 VarTemplateDecl *PrevTemplate = Previous.getAsSingle<VarTemplateDecl>();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007431
Larisse Voufo39a1e502013-08-06 01:03:05 +00007432 if (!PrevTemplate) {
7433 if (!Prev || !Prev->isStaticDataMember()) {
7434 // We expect to see a data data member here.
7435 Diag(D.getIdentifierLoc(), diag::err_explicit_instantiation_not_known)
7436 << Name;
7437 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
7438 P != PEnd; ++P)
7439 Diag((*P)->getLocation(), diag::note_explicit_instantiation_here);
7440 return true;
7441 }
7442
7443 if (!Prev->getInstantiatedFromStaticDataMember()) {
7444 // FIXME: Check for explicit specialization?
7445 Diag(D.getIdentifierLoc(),
7446 diag::err_explicit_instantiation_data_member_not_instantiated)
7447 << Prev;
7448 Diag(Prev->getLocation(), diag::note_explicit_instantiation_here);
7449 // FIXME: Can we provide a note showing where this was declared?
7450 return true;
7451 }
7452 } else {
7453 // Explicitly instantiate a variable template.
7454
7455 // C++1y [dcl.spec.auto]p6:
7456 // ... A program that uses auto or decltype(auto) in a context not
7457 // explicitly allowed in this section is ill-formed.
7458 //
7459 // This includes auto-typed variable template instantiations.
7460 if (R->isUndeducedType()) {
7461 Diag(T->getTypeLoc().getLocStart(),
7462 diag::err_auto_not_allowed_var_inst);
7463 return true;
7464 }
7465
Richard Smithef985ac2013-09-18 02:10:12 +00007466 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
7467 // C++1y [temp.explicit]p3:
7468 // If the explicit instantiation is for a variable, the unqualified-id
7469 // in the declaration shall be a template-id.
7470 Diag(D.getIdentifierLoc(),
7471 diag::err_explicit_instantiation_without_template_id)
7472 << PrevTemplate;
7473 Diag(PrevTemplate->getLocation(),
7474 diag::note_explicit_instantiation_here);
7475 return true;
Larisse Voufo39a1e502013-08-06 01:03:05 +00007476 }
7477
Richard Smithef985ac2013-09-18 02:10:12 +00007478 // Translate the parser's template argument list into our AST format.
Richard Smith4b55a9c2014-04-17 03:29:33 +00007479 TemplateArgumentListInfo TemplateArgs =
7480 makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
Richard Smithef985ac2013-09-18 02:10:12 +00007481
Larisse Voufo39a1e502013-08-06 01:03:05 +00007482 DeclResult Res = CheckVarTemplateId(PrevTemplate, TemplateLoc,
7483 D.getIdentifierLoc(), TemplateArgs);
7484 if (Res.isInvalid())
7485 return true;
7486
7487 // Ignore access control bits, we don't need them for redeclaration
7488 // checking.
7489 Prev = cast<VarDecl>(Res.get());
Douglas Gregor450f00842009-09-25 18:43:00 +00007490 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007491
Douglas Gregore47f5a72009-10-14 23:41:34 +00007492 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007493 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00007494 // or a static data member of a class template specialization, the name of
7495 // the class template specialization in the qualified-id for the member
7496 // name shall be a simple-template-id.
7497 //
7498 // C++98 has the same restriction, just worded differently.
Larisse Voufo39a1e502013-08-06 01:03:05 +00007499 //
Richard Smith5977d872013-09-18 21:55:14 +00007500 // This does not apply to variable template specializations, where the
7501 // template-id is in the unqualified-id instead.
7502 if (!ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()) && !PrevTemplate)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007503 Diag(D.getIdentifierLoc(),
Douglas Gregor010815a2010-06-16 16:26:47 +00007504 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007505 << Prev << D.getCXXScopeSpec().getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007506
Douglas Gregore47f5a72009-10-14 23:41:34 +00007507 // Check the scope of this explicit instantiation.
7508 CheckExplicitInstantiationScope(*this, Prev, D.getIdentifierLoc(), true);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007509
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007510 // Verify that it is okay to explicitly instantiate here.
Richard Smith8809a0c2013-09-27 20:14:12 +00007511 TemplateSpecializationKind PrevTSK = Prev->getTemplateSpecializationKind();
7512 SourceLocation POI = Prev->getPointOfInstantiation();
Abramo Bagnara8075c852010-06-12 07:44:57 +00007513 bool HasNoEffect = false;
Douglas Gregor1d957a32009-10-27 18:42:08 +00007514 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK, Prev,
Larisse Voufo39a1e502013-08-06 01:03:05 +00007515 PrevTSK, POI, HasNoEffect))
Douglas Gregord6ba93d2009-10-15 15:54:05 +00007516 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007517
Larisse Voufo39a1e502013-08-06 01:03:05 +00007518 if (!HasNoEffect) {
7519 // Instantiate static data member or variable template.
7520
7521 Prev->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
7522 if (PrevTemplate) {
7523 // Merge attributes.
7524 if (AttributeList *Attr = D.getDeclSpec().getAttributes().getList())
7525 ProcessDeclAttributeList(S, Prev, Attr);
7526 }
7527 if (TSK == TSK_ExplicitInstantiationDefinition)
7528 InstantiateVariableDefinition(D.getIdentifierLoc(), Prev);
7529 }
7530
7531 // Check the new variable specialization against the parsed input.
7532 if (PrevTemplate && Prev && !Context.hasSameType(Prev->getType(), R)) {
7533 Diag(T->getTypeLoc().getLocStart(),
7534 diag::err_invalid_var_template_spec_type)
7535 << 0 << PrevTemplate << R << Prev->getType();
7536 Diag(PrevTemplate->getLocation(), diag::note_template_declared_here)
7537 << 2 << PrevTemplate->getDeclName();
7538 return true;
7539 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007540
Douglas Gregor450f00842009-09-25 18:43:00 +00007541 // FIXME: Create an ExplicitInstantiation node?
Craig Topperc3ec1492014-05-26 06:22:03 +00007542 return (Decl*) nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00007543 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007544
7545 // If the declarator is a template-id, translate the parser's template
Douglas Gregor0e876e02009-09-25 23:53:26 +00007546 // argument list into our AST format.
Douglas Gregord90fd522009-09-25 21:45:23 +00007547 bool HasExplicitTemplateArgs = false;
John McCall6b51f282009-11-23 01:53:49 +00007548 TemplateArgumentListInfo TemplateArgs;
Douglas Gregor7861a802009-11-03 01:35:08 +00007549 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
Richard Smith4b55a9c2014-04-17 03:29:33 +00007550 TemplateArgs = makeTemplateArgumentListInfo(*this, *D.getName().TemplateId);
Douglas Gregord90fd522009-09-25 21:45:23 +00007551 HasExplicitTemplateArgs = true;
7552 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007553
Douglas Gregor450f00842009-09-25 18:43:00 +00007554 // C++ [temp.explicit]p1:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007555 // A [...] function [...] can be explicitly instantiated from its template.
7556 // A member function [...] of a class template can be explicitly
7557 // instantiated from the member definition associated with its class
Douglas Gregor450f00842009-09-25 18:43:00 +00007558 // template.
John McCall58cc69d2010-01-27 01:50:18 +00007559 UnresolvedSet<8> Matches;
Larisse Voufo98b20f12013-07-19 23:00:19 +00007560 TemplateSpecCandidateSet FailedCandidates(D.getIdentifierLoc());
Douglas Gregor450f00842009-09-25 18:43:00 +00007561 for (LookupResult::iterator P = Previous.begin(), PEnd = Previous.end();
7562 P != PEnd; ++P) {
7563 NamedDecl *Prev = *P;
Douglas Gregord90fd522009-09-25 21:45:23 +00007564 if (!HasExplicitTemplateArgs) {
7565 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Prev)) {
Rafael Espindola6edca7d2013-12-01 16:54:29 +00007566 QualType Adjusted = adjustCCAndNoReturn(R, Method->getType());
7567 if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
Douglas Gregord90fd522009-09-25 21:45:23 +00007568 Matches.clear();
Douglas Gregorea0a0a92010-01-11 18:40:55 +00007569
John McCall58cc69d2010-01-27 01:50:18 +00007570 Matches.addDecl(Method, P.getAccess());
Douglas Gregorea0a0a92010-01-11 18:40:55 +00007571 if (Method->getTemplateSpecializationKind() == TSK_Undeclared)
7572 break;
Douglas Gregord90fd522009-09-25 21:45:23 +00007573 }
Douglas Gregor450f00842009-09-25 18:43:00 +00007574 }
7575 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007576
Douglas Gregor450f00842009-09-25 18:43:00 +00007577 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Prev);
7578 if (!FunTmpl)
7579 continue;
7580
Larisse Voufo98b20f12013-07-19 23:00:19 +00007581 TemplateDeductionInfo Info(FailedCandidates.getLocation());
Craig Topperc3ec1492014-05-26 06:22:03 +00007582 FunctionDecl *Specialization = nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00007583 if (TemplateDeductionResult TDK
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007584 = DeduceTemplateArguments(FunTmpl,
Craig Topperc3ec1492014-05-26 06:22:03 +00007585 (HasExplicitTemplateArgs ? &TemplateArgs
7586 : nullptr),
Douglas Gregor450f00842009-09-25 18:43:00 +00007587 R, Specialization, Info)) {
Larisse Voufo98b20f12013-07-19 23:00:19 +00007588 // Keep track of almost-matches.
7589 FailedCandidates.addCandidate()
7590 .set(FunTmpl->getTemplatedDecl(),
7591 MakeDeductionFailureInfo(Context, TDK, Info));
Douglas Gregor450f00842009-09-25 18:43:00 +00007592 (void)TDK;
7593 continue;
7594 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007595
John McCall58cc69d2010-01-27 01:50:18 +00007596 Matches.addDecl(Specialization, P.getAccess());
Douglas Gregor450f00842009-09-25 18:43:00 +00007597 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007598
Douglas Gregor450f00842009-09-25 18:43:00 +00007599 // Find the most specialized function template specialization.
Larisse Voufo98b20f12013-07-19 23:00:19 +00007600 UnresolvedSetIterator Result = getMostSpecialized(
Richard Smith35e1da22013-09-10 22:59:25 +00007601 Matches.begin(), Matches.end(), FailedCandidates,
Larisse Voufo98b20f12013-07-19 23:00:19 +00007602 D.getIdentifierLoc(),
7603 PDiag(diag::err_explicit_instantiation_not_known) << Name,
7604 PDiag(diag::err_explicit_instantiation_ambiguous) << Name,
7605 PDiag(diag::note_explicit_instantiation_candidate));
Douglas Gregor450f00842009-09-25 18:43:00 +00007606
John McCall58cc69d2010-01-27 01:50:18 +00007607 if (Result == Matches.end())
Douglas Gregor450f00842009-09-25 18:43:00 +00007608 return true;
John McCall58cc69d2010-01-27 01:50:18 +00007609
7610 // Ignore access control bits, we don't need them for redeclaration checking.
7611 FunctionDecl *Specialization = cast<FunctionDecl>(*Result);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007612
Alexey Bataev73983912014-11-06 10:10:50 +00007613 // C++11 [except.spec]p4
7614 // In an explicit instantiation an exception-specification may be specified,
7615 // but is not required.
7616 // If an exception-specification is specified in an explicit instantiation
7617 // directive, it shall be compatible with the exception-specifications of
7618 // other declarations of that function.
7619 if (auto *FPT = R->getAs<FunctionProtoType>())
7620 if (FPT->hasExceptionSpec()) {
7621 unsigned DiagID =
7622 diag::err_mismatched_exception_spec_explicit_instantiation;
7623 if (getLangOpts().MicrosoftExt)
7624 DiagID = diag::ext_mismatched_exception_spec_explicit_instantiation;
7625 bool Result = CheckEquivalentExceptionSpec(
7626 PDiag(DiagID) << Specialization->getType(),
7627 PDiag(diag::note_explicit_instantiation_here),
7628 Specialization->getType()->getAs<FunctionProtoType>(),
7629 Specialization->getLocation(), FPT, D.getLocStart());
7630 // In Microsoft mode, mismatching exception specifications just cause a
7631 // warning.
7632 if (!getLangOpts().MicrosoftExt && Result)
7633 return true;
7634 }
7635
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007636 if (Specialization->getTemplateSpecializationKind() == TSK_Undeclared) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007637 Diag(D.getIdentifierLoc(),
Douglas Gregor450f00842009-09-25 18:43:00 +00007638 diag::err_explicit_instantiation_member_function_not_instantiated)
7639 << Specialization
7640 << (Specialization->getTemplateSpecializationKind() ==
7641 TSK_ExplicitSpecialization);
7642 Diag(Specialization->getLocation(), diag::note_explicit_instantiation_here);
7643 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007644 }
7645
Douglas Gregorec9fd132012-01-14 16:38:05 +00007646 FunctionDecl *PrevDecl = Specialization->getPreviousDecl();
Douglas Gregor8f003d02009-10-15 18:07:02 +00007647 if (!PrevDecl && Specialization->isThisDeclarationADefinition())
7648 PrevDecl = Specialization;
7649
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007650 if (PrevDecl) {
Abramo Bagnara8075c852010-06-12 07:44:57 +00007651 bool HasNoEffect = false;
Douglas Gregor1d957a32009-10-27 18:42:08 +00007652 if (CheckSpecializationInstantiationRedecl(D.getIdentifierLoc(), TSK,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007653 PrevDecl,
7654 PrevDecl->getTemplateSpecializationKind(),
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007655 PrevDecl->getPointOfInstantiation(),
Abramo Bagnara8075c852010-06-12 07:44:57 +00007656 HasNoEffect))
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007657 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007658
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007659 // FIXME: We may still want to build some representation of this
7660 // explicit specialization.
Abramo Bagnara8075c852010-06-12 07:44:57 +00007661 if (HasNoEffect)
Craig Topperc3ec1492014-05-26 06:22:03 +00007662 return (Decl*) nullptr;
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007663 }
Anders Carlsson65e6d132009-11-24 05:34:41 +00007664
7665 Specialization->setTemplateSpecializationKind(TSK, D.getIdentifierLoc());
Rafael Espindola2aa7acf2012-01-04 05:40:59 +00007666 AttributeList *Attr = D.getDeclSpec().getAttributes().getList();
7667 if (Attr)
7668 ProcessDeclAttributeList(S, Specialization, Attr);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007669
Richard Smitheb36ddf2014-04-24 22:45:46 +00007670 if (Specialization->isDefined()) {
7671 // Let the ASTConsumer know that this function has been explicitly
7672 // instantiated now, and its linkage might have changed.
7673 Consumer.HandleTopLevelDecl(DeclGroupRef(Specialization));
7674 } else if (TSK == TSK_ExplicitInstantiationDefinition)
Chandler Carruthcfe41db2010-08-25 08:27:02 +00007675 InstantiateFunctionDefinition(D.getIdentifierLoc(), Specialization);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007676
Douglas Gregore47f5a72009-10-14 23:41:34 +00007677 // C++0x [temp.explicit]p2:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007678 // If the explicit instantiation is for a member function, a member class
Douglas Gregore47f5a72009-10-14 23:41:34 +00007679 // or a static data member of a class template specialization, the name of
7680 // the class template specialization in the qualified-id for the member
7681 // name shall be a simple-template-id.
7682 //
7683 // C++98 has the same restriction, just worded differently.
Douglas Gregor3d7e69f2009-10-15 17:21:20 +00007684 FunctionTemplateDecl *FunTmpl = Specialization->getPrimaryTemplate();
Douglas Gregor7861a802009-11-03 01:35:08 +00007685 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId && !FunTmpl &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007686 D.getCXXScopeSpec().isSet() &&
Douglas Gregore47f5a72009-10-14 23:41:34 +00007687 !ScopeSpecifierHasTemplateId(D.getCXXScopeSpec()))
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007688 Diag(D.getIdentifierLoc(),
Douglas Gregor010815a2010-06-16 16:26:47 +00007689 diag::ext_explicit_instantiation_without_qualified_id)
Douglas Gregore47f5a72009-10-14 23:41:34 +00007690 << Specialization << D.getCXXScopeSpec().getRange();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007691
Douglas Gregore47f5a72009-10-14 23:41:34 +00007692 CheckExplicitInstantiationScope(*this,
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007693 FunTmpl? (NamedDecl *)FunTmpl
Douglas Gregore47f5a72009-10-14 23:41:34 +00007694 : Specialization->getInstantiatedFromMemberFunction(),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007695 D.getIdentifierLoc(),
Douglas Gregore47f5a72009-10-14 23:41:34 +00007696 D.getCXXScopeSpec().isSet());
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007697
Douglas Gregor450f00842009-09-25 18:43:00 +00007698 // FIXME: Create some kind of ExplicitInstantiationDecl here.
Craig Topperc3ec1492014-05-26 06:22:03 +00007699 return (Decl*) nullptr;
Douglas Gregor450f00842009-09-25 18:43:00 +00007700}
7701
John McCallfaf5fb42010-08-26 23:41:50 +00007702TypeResult
John McCall7f41d982009-09-11 04:59:25 +00007703Sema::ActOnDependentTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
7704 const CXXScopeSpec &SS, IdentifierInfo *Name,
7705 SourceLocation TagLoc, SourceLocation NameLoc) {
7706 // This has to hold, because SS is expected to be defined.
7707 assert(Name && "Expected a name in a dependent tag");
7708
Aaron Ballman4a979672014-01-03 13:56:08 +00007709 NestedNameSpecifier *NNS = SS.getScopeRep();
John McCall7f41d982009-09-11 04:59:25 +00007710 if (!NNS)
7711 return true;
7712
Abramo Bagnara6150c882010-05-11 21:36:43 +00007713 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Daniel Dunbarf4b37e12010-04-01 16:50:48 +00007714
Douglas Gregorba41d012010-04-24 16:38:41 +00007715 if (TUK == TUK_Declaration || TUK == TUK_Definition) {
7716 Diag(NameLoc, diag::err_dependent_tag_decl)
Abramo Bagnara6150c882010-05-11 21:36:43 +00007717 << (TUK == TUK_Definition) << Kind << SS.getRange();
Douglas Gregorba41d012010-04-24 16:38:41 +00007718 return true;
7719 }
Abramo Bagnara6150c882010-05-11 21:36:43 +00007720
Douglas Gregore7c20652011-03-02 00:47:37 +00007721 // Create the resulting type.
Abramo Bagnara6150c882010-05-11 21:36:43 +00007722 ElaboratedTypeKeyword Kwd = TypeWithKeyword::getKeywordForTagTypeKind(Kind);
Douglas Gregore7c20652011-03-02 00:47:37 +00007723 QualType Result = Context.getDependentNameType(Kwd, NNS, Name);
7724
7725 // Create type-source location information for this type.
7726 TypeLocBuilder TLB;
7727 DependentNameTypeLoc TL = TLB.push<DependentNameTypeLoc>(Result);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00007728 TL.setElaboratedKeywordLoc(TagLoc);
Douglas Gregore7c20652011-03-02 00:47:37 +00007729 TL.setQualifierLoc(SS.getWithLocInContext(Context));
7730 TL.setNameLoc(NameLoc);
7731 return CreateParsedType(Result, TLB.getTypeSourceInfo(Context, Result));
John McCall7f41d982009-09-11 04:59:25 +00007732}
7733
John McCallfaf5fb42010-08-26 23:41:50 +00007734TypeResult
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007735Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc,
7736 const CXXScopeSpec &SS, const IdentifierInfo &II,
Douglas Gregorf7d77712010-06-16 22:31:08 +00007737 SourceLocation IdLoc) {
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007738 if (SS.isInvalid())
Douglas Gregor333489b2009-03-27 23:10:48 +00007739 return true;
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007740
Richard Smith0bf8a4922011-10-18 20:49:44 +00007741 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
7742 Diag(TypenameLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007743 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00007744 diag::warn_cxx98_compat_typename_outside_of_template :
7745 diag::ext_typename_outside_of_template)
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007746 << FixItHint::CreateRemoval(TypenameLoc);
7747
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00007748 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
Douglas Gregor844cb502011-03-01 18:12:44 +00007749 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None,
7750 TypenameLoc, QualifierLoc, II, IdLoc);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +00007751 if (T.isNull())
7752 return true;
John McCall99b2fe52010-04-29 23:50:39 +00007753
7754 TypeSourceInfo *TSI = Context.CreateTypeSourceInfo(T);
7755 if (isa<DependentNameType>(T)) {
David Blaikie6adc78e2013-02-18 22:06:02 +00007756 DependentNameTypeLoc TL = TSI->getTypeLoc().castAs<DependentNameTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00007757 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor3d0da5f2011-03-01 01:34:45 +00007758 TL.setQualifierLoc(QualifierLoc);
John McCallf7bcc812010-05-28 23:32:21 +00007759 TL.setNameLoc(IdLoc);
John McCall99b2fe52010-04-29 23:50:39 +00007760 } else {
David Blaikie6adc78e2013-02-18 22:06:02 +00007761 ElaboratedTypeLoc TL = TSI->getTypeLoc().castAs<ElaboratedTypeLoc>();
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00007762 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00007763 TL.setQualifierLoc(QualifierLoc);
David Blaikie6adc78e2013-02-18 22:06:02 +00007764 TL.getNamedTypeLoc().castAs<TypeSpecTypeLoc>().setNameLoc(IdLoc);
John McCall99b2fe52010-04-29 23:50:39 +00007765 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007766
John McCallba7bf592010-08-24 05:47:05 +00007767 return CreateParsedType(T, TSI);
Douglas Gregor333489b2009-03-27 23:10:48 +00007768}
7769
John McCallfaf5fb42010-08-26 23:41:50 +00007770TypeResult
Abramo Bagnara48c05be2012-02-06 14:41:24 +00007771Sema::ActOnTypenameType(Scope *S,
7772 SourceLocation TypenameLoc,
7773 const CXXScopeSpec &SS,
7774 SourceLocation TemplateKWLoc,
Douglas Gregorb09518c2011-02-27 22:46:49 +00007775 TemplateTy TemplateIn,
7776 SourceLocation TemplateNameLoc,
7777 SourceLocation LAngleLoc,
7778 ASTTemplateArgsPtr TemplateArgsIn,
7779 SourceLocation RAngleLoc) {
Richard Smith0bf8a4922011-10-18 20:49:44 +00007780 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent())
7781 Diag(TypenameLoc,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00007782 getLangOpts().CPlusPlus11 ?
Richard Smith0bf8a4922011-10-18 20:49:44 +00007783 diag::warn_cxx98_compat_typename_outside_of_template :
7784 diag::ext_typename_outside_of_template)
7785 << FixItHint::CreateRemoval(TypenameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00007786
7787 // Translate the parser's template argument list in our AST format.
7788 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
7789 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
7790
7791 TemplateName Template = TemplateIn.get();
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007792 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) {
7793 // Construct a dependent template specialization type.
7794 assert(DTN && "dependent template has non-dependent name?");
Aaron Ballman4a979672014-01-03 13:56:08 +00007795 assert(DTN->getQualifier() == SS.getScopeRep());
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007796 QualType T = Context.getDependentTemplateSpecializationType(ETK_Typename,
7797 DTN->getQualifier(),
7798 DTN->getIdentifier(),
7799 TemplateArgs);
Douglas Gregorb09518c2011-02-27 22:46:49 +00007800
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007801 // Create source-location information for this type.
John McCallf7bcc812010-05-28 23:32:21 +00007802 TypeLocBuilder Builder;
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007803 DependentTemplateSpecializationTypeLoc SpecTL
7804 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00007805 SpecTL.setElaboratedKeywordLoc(TypenameLoc);
7806 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +00007807 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00007808 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00007809 SpecTL.setLAngleLoc(LAngleLoc);
7810 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00007811 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
7812 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007813 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
Douglas Gregor12bbfe12009-09-02 13:05:45 +00007814 }
Douglas Gregorb09518c2011-02-27 22:46:49 +00007815
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007816 QualType T = CheckTemplateIdType(Template, TemplateNameLoc, TemplateArgs);
7817 if (T.isNull())
7818 return true;
Douglas Gregorb09518c2011-02-27 22:46:49 +00007819
Abramo Bagnara48c05be2012-02-06 14:41:24 +00007820 // Provide source-location information for the template specialization type.
Douglas Gregorb09518c2011-02-27 22:46:49 +00007821 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +00007822 TemplateSpecializationTypeLoc SpecTL
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007823 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +00007824 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
7825 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00007826 SpecTL.setLAngleLoc(LAngleLoc);
7827 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregorb09518c2011-02-27 22:46:49 +00007828 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
7829 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
7830
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007831 T = Context.getElaboratedType(ETK_Typename, SS.getScopeRep(), T);
7832 ElaboratedTypeLoc TL = Builder.push<ElaboratedTypeLoc>(T);
Abramo Bagnara9033e2b2012-02-06 19:09:27 +00007833 TL.setElaboratedKeywordLoc(TypenameLoc);
Douglas Gregor844cb502011-03-01 18:12:44 +00007834 TL.setQualifierLoc(SS.getWithLocInContext(Context));
7835
Douglas Gregor84a6a0a2011-03-01 16:44:30 +00007836 TypeSourceInfo *TSI = Builder.getTypeSourceInfo(Context, T);
7837 return CreateParsedType(T, TSI);
Douglas Gregordce2b622009-04-01 00:28:59 +00007838}
7839
Douglas Gregorb09518c2011-02-27 22:46:49 +00007840
Richard Smith6f8d2c62012-05-09 05:17:00 +00007841/// Determine whether this failed name lookup should be treated as being
7842/// disabled by a usage of std::enable_if.
7843static bool isEnableIf(NestedNameSpecifierLoc NNS, const IdentifierInfo &II,
7844 SourceRange &CondRange) {
7845 // We must be looking for a ::type...
7846 if (!II.isStr("type"))
7847 return false;
7848
7849 // ... within an explicitly-written template specialization...
7850 if (!NNS || !NNS.getNestedNameSpecifier()->getAsType())
7851 return false;
7852 TypeLoc EnableIfTy = NNS.getTypeLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +00007853 TemplateSpecializationTypeLoc EnableIfTSTLoc =
7854 EnableIfTy.getAs<TemplateSpecializationTypeLoc>();
7855 if (!EnableIfTSTLoc || EnableIfTSTLoc.getNumArgs() == 0)
Richard Smith6f8d2c62012-05-09 05:17:00 +00007856 return false;
7857 const TemplateSpecializationType *EnableIfTST =
David Blaikie6adc78e2013-02-18 22:06:02 +00007858 cast<TemplateSpecializationType>(EnableIfTSTLoc.getTypePtr());
Richard Smith6f8d2c62012-05-09 05:17:00 +00007859
7860 // ... which names a complete class template declaration...
7861 const TemplateDecl *EnableIfDecl =
7862 EnableIfTST->getTemplateName().getAsTemplateDecl();
7863 if (!EnableIfDecl || EnableIfTST->isIncompleteType())
7864 return false;
7865
7866 // ... called "enable_if".
7867 const IdentifierInfo *EnableIfII =
7868 EnableIfDecl->getDeclName().getAsIdentifierInfo();
7869 if (!EnableIfII || !EnableIfII->isStr("enable_if"))
7870 return false;
7871
7872 // Assume the first template argument is the condition.
David Blaikie6adc78e2013-02-18 22:06:02 +00007873 CondRange = EnableIfTSTLoc.getArgLoc(0).getSourceRange();
Richard Smith6f8d2c62012-05-09 05:17:00 +00007874 return true;
7875}
7876
Douglas Gregor333489b2009-03-27 23:10:48 +00007877/// \brief Build the type that describes a C++ typename specifier,
7878/// e.g., "typename T::type".
7879QualType
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007880Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword,
7881 SourceLocation KeywordLoc,
7882 NestedNameSpecifierLoc QualifierLoc,
7883 const IdentifierInfo &II,
Abramo Bagnarad7548482010-05-19 21:37:53 +00007884 SourceLocation IILoc) {
John McCall0b66eb32010-05-01 00:40:08 +00007885 CXXScopeSpec SS;
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007886 SS.Adopt(QualifierLoc);
Douglas Gregor333489b2009-03-27 23:10:48 +00007887
John McCall0b66eb32010-05-01 00:40:08 +00007888 DeclContext *Ctx = computeDeclContext(SS);
7889 if (!Ctx) {
7890 // If the nested-name-specifier is dependent and couldn't be
7891 // resolved to a type, build a typename type.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007892 assert(QualifierLoc.getNestedNameSpecifier()->isDependent());
7893 return Context.getDependentNameType(Keyword,
7894 QualifierLoc.getNestedNameSpecifier(),
7895 &II);
Douglas Gregorc9f9b862009-05-11 19:58:34 +00007896 }
Douglas Gregor333489b2009-03-27 23:10:48 +00007897
John McCall0b66eb32010-05-01 00:40:08 +00007898 // If the nested-name-specifier refers to the current instantiation,
7899 // the "typename" keyword itself is superfluous. In C++03, the
7900 // program is actually ill-formed. However, DR 382 (in C++0x CD1)
7901 // allows such extraneous "typename" keywords, and we retroactively
Douglas Gregorc9d26822010-06-14 22:07:54 +00007902 // apply this DR to C++03 code with only a warning. In any case we continue.
Douglas Gregorc9f9b862009-05-11 19:58:34 +00007903
John McCall0b66eb32010-05-01 00:40:08 +00007904 if (RequireCompleteDeclContext(SS, Ctx))
7905 return QualType();
Douglas Gregor333489b2009-03-27 23:10:48 +00007906
7907 DeclarationName Name(&II);
Abramo Bagnarad7548482010-05-19 21:37:53 +00007908 LookupResult Result(*this, Name, IILoc, LookupOrdinaryName);
Nikola Smiljanic67860242014-09-26 00:28:20 +00007909 NestedNameSpecifier *NNS = SS.getScopeRep();
7910 if (NNS->getKind() == NestedNameSpecifier::Super)
7911 LookupInSuper(Result, NNS->getAsRecordDecl());
7912 else
7913 LookupQualifiedName(Result, Ctx);
Douglas Gregor333489b2009-03-27 23:10:48 +00007914 unsigned DiagID = 0;
Craig Topperc3ec1492014-05-26 06:22:03 +00007915 Decl *Referenced = nullptr;
John McCall27b18f82009-11-17 02:14:36 +00007916 switch (Result.getResultKind()) {
Richard Smith6f8d2c62012-05-09 05:17:00 +00007917 case LookupResult::NotFound: {
7918 // If we're looking up 'type' within a template named 'enable_if', produce
7919 // a more specific diagnostic.
7920 SourceRange CondRange;
7921 if (isEnableIf(QualifierLoc, II, CondRange)) {
7922 Diag(CondRange.getBegin(), diag::err_typename_nested_not_found_enable_if)
7923 << Ctx << CondRange;
7924 return QualType();
7925 }
7926
Douglas Gregore40876a2009-10-13 21:16:44 +00007927 DiagID = diag::err_typename_nested_not_found;
Douglas Gregor333489b2009-03-27 23:10:48 +00007928 break;
Richard Smith6f8d2c62012-05-09 05:17:00 +00007929 }
Douglas Gregoraed2efb2010-12-09 00:06:27 +00007930
7931 case LookupResult::FoundUnresolvedValue: {
7932 // We found a using declaration that is a value. Most likely, the using
7933 // declaration itself is meant to have the 'typename' keyword.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007934 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Douglas Gregoraed2efb2010-12-09 00:06:27 +00007935 IILoc);
7936 Diag(IILoc, diag::err_typename_refers_to_using_value_decl)
7937 << Name << Ctx << FullRange;
7938 if (UnresolvedUsingValueDecl *Using
7939 = dyn_cast<UnresolvedUsingValueDecl>(Result.getRepresentativeDecl())){
Douglas Gregora9d87bc2011-02-25 00:36:19 +00007940 SourceLocation Loc = Using->getQualifierLoc().getBeginLoc();
Douglas Gregoraed2efb2010-12-09 00:06:27 +00007941 Diag(Loc, diag::note_using_value_decl_missing_typename)
7942 << FixItHint::CreateInsertion(Loc, "typename ");
7943 }
7944 }
7945 // Fall through to create a dependent typename type, from which we can recover
7946 // better.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007947
Douglas Gregord0d2ee02010-01-15 01:44:47 +00007948 case LookupResult::NotFoundInCurrentInstantiation:
7949 // Okay, it's a member of an unknown instantiation.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007950 return Context.getDependentNameType(Keyword,
7951 QualifierLoc.getNestedNameSpecifier(),
7952 &II);
Douglas Gregor333489b2009-03-27 23:10:48 +00007953
7954 case LookupResult::Found:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007955 if (TypeDecl *Type = dyn_cast<TypeDecl>(Result.getFoundDecl())) {
Abramo Bagnara6150c882010-05-11 21:36:43 +00007956 // We found a type. Build an ElaboratedType, since the
7957 // typename-specifier was just sugar.
Nico Weber72889432014-09-06 01:25:55 +00007958 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007959 return Context.getElaboratedType(ETK_Typename,
7960 QualifierLoc.getNestedNameSpecifier(),
Abramo Bagnara6150c882010-05-11 21:36:43 +00007961 Context.getTypeDeclType(Type));
Douglas Gregor333489b2009-03-27 23:10:48 +00007962 }
7963
7964 DiagID = diag::err_typename_nested_not_type;
John McCall9f3059a2009-10-09 21:13:30 +00007965 Referenced = Result.getFoundDecl();
Douglas Gregor333489b2009-03-27 23:10:48 +00007966 break;
7967
7968 case LookupResult::FoundOverloaded:
7969 DiagID = diag::err_typename_nested_not_type;
7970 Referenced = *Result.begin();
7971 break;
7972
John McCall6538c932009-10-10 05:48:19 +00007973 case LookupResult::Ambiguous:
Douglas Gregor333489b2009-03-27 23:10:48 +00007974 return QualType();
7975 }
7976
7977 // If we get here, it's because name lookup did not find a
7978 // type. Emit an appropriate diagnostic and return an error.
Douglas Gregor9cbc22b2011-02-28 22:42:13 +00007979 SourceRange FullRange(KeywordLoc.isValid() ? KeywordLoc : SS.getBeginLoc(),
Abramo Bagnarad7548482010-05-19 21:37:53 +00007980 IILoc);
7981 Diag(IILoc, DiagID) << FullRange << Name << Ctx;
Douglas Gregor333489b2009-03-27 23:10:48 +00007982 if (Referenced)
7983 Diag(Referenced->getLocation(), diag::note_typename_refers_here)
7984 << Name;
7985 return QualType();
7986}
Douglas Gregor15acfb92009-08-06 16:20:37 +00007987
7988namespace {
7989 // See Sema::RebuildTypeInCurrentInstantiation
Benjamin Kramer337e3a52009-11-28 19:45:26 +00007990 class CurrentInstantiationRebuilder
Mike Stump11289f42009-09-09 15:08:12 +00007991 : public TreeTransform<CurrentInstantiationRebuilder> {
Douglas Gregor15acfb92009-08-06 16:20:37 +00007992 SourceLocation Loc;
7993 DeclarationName Entity;
Mike Stump11289f42009-09-09 15:08:12 +00007994
Douglas Gregor15acfb92009-08-06 16:20:37 +00007995 public:
Douglas Gregor14cf7522010-04-30 18:55:50 +00007996 typedef TreeTransform<CurrentInstantiationRebuilder> inherited;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00007997
Mike Stump11289f42009-09-09 15:08:12 +00007998 CurrentInstantiationRebuilder(Sema &SemaRef,
Douglas Gregor15acfb92009-08-06 16:20:37 +00007999 SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +00008000 DeclarationName Entity)
8001 : TreeTransform<CurrentInstantiationRebuilder>(SemaRef),
Douglas Gregor15acfb92009-08-06 16:20:37 +00008002 Loc(Loc), Entity(Entity) { }
Mike Stump11289f42009-09-09 15:08:12 +00008003
8004 /// \brief Determine whether the given type \p T has already been
Douglas Gregor15acfb92009-08-06 16:20:37 +00008005 /// transformed.
8006 ///
8007 /// For the purposes of type reconstruction, a type has already been
8008 /// transformed if it is NULL or if it is not dependent.
8009 bool AlreadyTransformed(QualType T) {
8010 return T.isNull() || !T->isDependentType();
8011 }
Mike Stump11289f42009-09-09 15:08:12 +00008012
8013 /// \brief Returns the location of the entity whose type is being
Douglas Gregor15acfb92009-08-06 16:20:37 +00008014 /// rebuilt.
8015 SourceLocation getBaseLocation() { return Loc; }
Mike Stump11289f42009-09-09 15:08:12 +00008016
Douglas Gregor15acfb92009-08-06 16:20:37 +00008017 /// \brief Returns the name of the entity whose type is being rebuilt.
8018 DeclarationName getBaseEntity() { return Entity; }
Mike Stump11289f42009-09-09 15:08:12 +00008019
Douglas Gregoref6ab412009-10-27 06:26:26 +00008020 /// \brief Sets the "base" location and entity when that
8021 /// information is known based on another transformation.
8022 void setBase(SourceLocation Loc, DeclarationName Entity) {
8023 this->Loc = Loc;
8024 this->Entity = Entity;
8025 }
Douglas Gregor0c46b2b2012-02-13 22:00:16 +00008026
8027 ExprResult TransformLambdaExpr(LambdaExpr *E) {
8028 // Lambdas never need to be transformed.
8029 return E;
8030 }
Douglas Gregor15acfb92009-08-06 16:20:37 +00008031 };
8032}
8033
Douglas Gregor15acfb92009-08-06 16:20:37 +00008034/// \brief Rebuilds a type within the context of the current instantiation.
8035///
Mike Stump11289f42009-09-09 15:08:12 +00008036/// The type \p T is part of the type of an out-of-line member definition of
Douglas Gregor15acfb92009-08-06 16:20:37 +00008037/// a class template (or class template partial specialization) that was parsed
Mike Stump11289f42009-09-09 15:08:12 +00008038/// and constructed before we entered the scope of the class template (or
Douglas Gregor15acfb92009-08-06 16:20:37 +00008039/// partial specialization thereof). This routine will rebuild that type now
8040/// that we have entered the declarator's scope, which may produce different
8041/// canonical types, e.g.,
8042///
8043/// \code
8044/// template<typename T>
8045/// struct X {
8046/// typedef T* pointer;
8047/// pointer data();
8048/// };
8049///
8050/// template<typename T>
8051/// typename X<T>::pointer X<T>::data() { ... }
8052/// \endcode
8053///
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00008054/// Here, the type "typename X<T>::pointer" will be created as a DependentNameType,
Douglas Gregor15acfb92009-08-06 16:20:37 +00008055/// since we do not know that we can look into X<T> when we parsed the type.
8056/// This function will rebuild the type, performing the lookup of "pointer"
Abramo Bagnara6150c882010-05-11 21:36:43 +00008057/// in X<T> and returning an ElaboratedType whose canonical type is the same
Douglas Gregor15acfb92009-08-06 16:20:37 +00008058/// as the canonical type of T*, allowing the return types of the out-of-line
8059/// definition and the declaration to match.
John McCall99b2fe52010-04-29 23:50:39 +00008060TypeSourceInfo *Sema::RebuildTypeInCurrentInstantiation(TypeSourceInfo *T,
8061 SourceLocation Loc,
8062 DeclarationName Name) {
8063 if (!T || !T->getType()->isDependentType())
Douglas Gregor15acfb92009-08-06 16:20:37 +00008064 return T;
Mike Stump11289f42009-09-09 15:08:12 +00008065
Douglas Gregor15acfb92009-08-06 16:20:37 +00008066 CurrentInstantiationRebuilder Rebuilder(*this, Loc, Name);
8067 return Rebuilder.TransformType(T);
Benjamin Kramer854d7de2009-08-11 22:33:06 +00008068}
Douglas Gregorbe999392009-09-15 16:23:51 +00008069
John McCalldadc5752010-08-24 06:29:42 +00008070ExprResult Sema::RebuildExprInCurrentInstantiation(Expr *E) {
John McCallba7bf592010-08-24 05:47:05 +00008071 CurrentInstantiationRebuilder Rebuilder(*this, E->getExprLoc(),
8072 DeclarationName());
8073 return Rebuilder.TransformExpr(E);
8074}
8075
John McCall99b2fe52010-04-29 23:50:39 +00008076bool Sema::RebuildNestedNameSpecifierInCurrentInstantiation(CXXScopeSpec &SS) {
Douglas Gregor10176412011-02-25 16:07:42 +00008077 if (SS.isInvalid())
8078 return true;
John McCall2408e322010-04-27 00:57:59 +00008079
Douglas Gregor10176412011-02-25 16:07:42 +00008080 NestedNameSpecifierLoc QualifierLoc = SS.getWithLocInContext(Context);
John McCall2408e322010-04-27 00:57:59 +00008081 CurrentInstantiationRebuilder Rebuilder(*this, SS.getRange().getBegin(),
8082 DeclarationName());
Douglas Gregor10176412011-02-25 16:07:42 +00008083 NestedNameSpecifierLoc Rebuilt
8084 = Rebuilder.TransformNestedNameSpecifierLoc(QualifierLoc);
8085 if (!Rebuilt)
8086 return true;
John McCall99b2fe52010-04-29 23:50:39 +00008087
Douglas Gregor10176412011-02-25 16:07:42 +00008088 SS.Adopt(Rebuilt);
John McCall99b2fe52010-04-29 23:50:39 +00008089 return false;
John McCall2408e322010-04-27 00:57:59 +00008090}
8091
Douglas Gregor041b0842011-10-14 15:31:12 +00008092/// \brief Rebuild the template parameters now that we know we're in a current
8093/// instantiation.
8094bool Sema::RebuildTemplateParamsInCurrentInstantiation(
8095 TemplateParameterList *Params) {
8096 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
8097 Decl *Param = Params->getParam(I);
8098
8099 // There is nothing to rebuild in a type parameter.
8100 if (isa<TemplateTypeParmDecl>(Param))
8101 continue;
8102
8103 // Rebuild the template parameter list of a template template parameter.
8104 if (TemplateTemplateParmDecl *TTP
8105 = dyn_cast<TemplateTemplateParmDecl>(Param)) {
8106 if (RebuildTemplateParamsInCurrentInstantiation(
8107 TTP->getTemplateParameters()))
8108 return true;
8109
8110 continue;
8111 }
8112
8113 // Rebuild the type of a non-type template parameter.
8114 NonTypeTemplateParmDecl *NTTP = cast<NonTypeTemplateParmDecl>(Param);
8115 TypeSourceInfo *NewTSI
8116 = RebuildTypeInCurrentInstantiation(NTTP->getTypeSourceInfo(),
8117 NTTP->getLocation(),
8118 NTTP->getDeclName());
8119 if (!NewTSI)
8120 return true;
8121
8122 if (NewTSI != NTTP->getTypeSourceInfo()) {
8123 NTTP->setTypeSourceInfo(NewTSI);
8124 NTTP->setType(NewTSI->getType());
8125 }
8126 }
8127
8128 return false;
8129}
8130
Douglas Gregorbe999392009-09-15 16:23:51 +00008131/// \brief Produces a formatted string that describes the binding of
8132/// template parameters to template arguments.
8133std::string
8134Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8135 const TemplateArgumentList &Args) {
Douglas Gregor1ccc8412010-11-07 23:05:16 +00008136 return getTemplateArgumentBindingsText(Params, Args.data(), Args.size());
Douglas Gregore62e6a02009-11-11 19:13:48 +00008137}
8138
8139std::string
8140Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
8141 const TemplateArgument *Args,
8142 unsigned NumArgs) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00008143 SmallString<128> Str;
Douglas Gregor0192c232010-12-20 16:52:59 +00008144 llvm::raw_svector_ostream Out(Str);
Douglas Gregorbe999392009-09-15 16:23:51 +00008145
Douglas Gregore62e6a02009-11-11 19:13:48 +00008146 if (!Params || Params->size() == 0 || NumArgs == 0)
Douglas Gregor0192c232010-12-20 16:52:59 +00008147 return std::string();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008148
Douglas Gregorbe999392009-09-15 16:23:51 +00008149 for (unsigned I = 0, N = Params->size(); I != N; ++I) {
Douglas Gregore62e6a02009-11-11 19:13:48 +00008150 if (I >= NumArgs)
8151 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008152
Douglas Gregorbe999392009-09-15 16:23:51 +00008153 if (I == 0)
Douglas Gregor0192c232010-12-20 16:52:59 +00008154 Out << "[with ";
Douglas Gregorbe999392009-09-15 16:23:51 +00008155 else
Douglas Gregor0192c232010-12-20 16:52:59 +00008156 Out << ", ";
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008157
Douglas Gregorbe999392009-09-15 16:23:51 +00008158 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
Douglas Gregor0192c232010-12-20 16:52:59 +00008159 Out << Id->getName();
Douglas Gregorbe999392009-09-15 16:23:51 +00008160 } else {
Douglas Gregor0192c232010-12-20 16:52:59 +00008161 Out << '$' << I;
Douglas Gregorbe999392009-09-15 16:23:51 +00008162 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00008163
Douglas Gregor0192c232010-12-20 16:52:59 +00008164 Out << " = ";
Douglas Gregor75acd922011-09-27 23:30:47 +00008165 Args[I].print(getPrintingPolicy(), Out);
Douglas Gregorbe999392009-09-15 16:23:51 +00008166 }
Douglas Gregor0192c232010-12-20 16:52:59 +00008167
8168 Out << ']';
8169 return Out.str();
Douglas Gregorbe999392009-09-15 16:23:51 +00008170}
Francois Pichet1c229c02011-04-22 22:18:13 +00008171
Richard Smithe40f2ba2013-08-07 21:41:30 +00008172void Sema::MarkAsLateParsedTemplate(FunctionDecl *FD, Decl *FnD,
8173 CachedTokens &Toks) {
Francois Pichet1c229c02011-04-22 22:18:13 +00008174 if (!FD)
8175 return;
Richard Smithe40f2ba2013-08-07 21:41:30 +00008176
8177 LateParsedTemplate *LPT = new LateParsedTemplate;
8178
8179 // Take tokens to avoid allocations
8180 LPT->Toks.swap(Toks);
8181 LPT->D = FnD;
8182 LateParsedTemplateMap[FD] = LPT;
8183
8184 FD->setLateTemplateParsed(true);
8185}
8186
8187void Sema::UnmarkAsLateParsedTemplate(FunctionDecl *FD) {
8188 if (!FD)
8189 return;
8190 FD->setLateTemplateParsed(false);
8191}
Francois Pichet1c229c02011-04-22 22:18:13 +00008192
8193bool Sema::IsInsideALocalClassWithinATemplateFunction() {
8194 DeclContext *DC = CurContext;
8195
8196 while (DC) {
8197 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(CurContext)) {
8198 const FunctionDecl *FD = RD->isLocalClass();
8199 return (FD && FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate);
8200 } else if (DC->isTranslationUnit() || DC->isNamespace())
8201 return false;
8202
8203 DC = DC->getParent();
8204 }
8205 return false;
8206}